From 62e0dfa36e00bea23ebfb43ca3741c52d0533e42 Mon Sep 17 00:00:00 2001 From: Daniel Maya Date: Tue, 14 Jun 2022 13:11:39 +0200 Subject: [PATCH 01/48] #9146 Fixed dbmanager --- pandora_console/extensions/dbmanager.php | 55 +++++++++--------------- 1 file changed, 20 insertions(+), 35 deletions(-) diff --git a/pandora_console/extensions/dbmanager.php b/pandora_console/extensions/dbmanager.php index 8c248367dc..db92dda0a9 100644 --- a/pandora_console/extensions/dbmanager.php +++ b/pandora_console/extensions/dbmanager.php @@ -43,20 +43,11 @@ function dbmanager_query($sql, &$error, $dbconnection) $error = mysqli_error($dbconnection); return false; } - } else { - $result = mysql_query($sql, $dbconnection); - if ($result === false) { - $backtrace = debug_backtrace(); - $error = mysql_error(); - return false; - } } if ($result === true) { if ($config['mysqli']) { return mysqli_affected_rows($dbconnection); - } else { - return mysql_affected_rows(); } } @@ -64,23 +55,17 @@ function dbmanager_query($sql, &$error, $dbconnection) while ($row = mysqli_fetch_array($result, MYSQLI_ASSOC)) { array_push($retval, $row); } - } else { - while ($row = mysql_fetch_array($result, MYSQL_ASSOC)) { - array_push($retval, $row); - } } if ($config['mysqli']) { mysqli_free_result($result); - } else { - mysql_free_result($result); } if (! empty($retval)) { return $retval; } - // Return false, check with === or !== + // Return false, check with === or !== . return 'Empty'; } @@ -171,20 +156,6 @@ function dbmgr_extension_main() $data[1][0] = "Some samples of usage:
SHOW STATUS;
DESCRIBE tagente
SELECT * FROM tserver
UPDATE tagente SET id_grupo = 15 WHERE nombre LIKE '%194.179%'
"; - \enterprise_include_once('include/functions_metaconsole.php'); - $servers = \metaconsole_get_servers(); - if (is_array($servers) === true) { - $servers = array_reduce( - $servers, - function ($carry, $item) { - $carry[$item['id']] = $item['server_name']; - return $carry; - } - ); - } else { - $servers = []; - } - $data[2][0] = html_print_textarea( 'sql', 5, @@ -195,6 +166,21 @@ function dbmgr_extension_main() ); if (is_metaconsole() === true) { + // Get the servers. + \enterprise_include_once('include/functions_metaconsole.php'); + $servers = \metaconsole_get_servers(); + if (is_array($servers) === true) { + $servers = array_reduce( + $servers, + function ($carry, $item) { + $carry[$item['id']] = $item['server_name']; + return $carry; + } + ); + } else { + $servers = []; + } + $data[3][2] = html_print_input( [ 'name' => 'node_id', @@ -223,7 +209,7 @@ function dbmgr_extension_main() html_print_table($table); echo ''; - // Processing SQL Code + // Processing SQL Code. if ($sql == '') { return; } @@ -271,7 +257,7 @@ function dbmgr_extension_main() return; } - if (! is_array($result)) { + if (is_array($result) === false) { echo 'Output: '.$result; db_pandora_audit( @@ -315,11 +301,10 @@ if (is_metaconsole() === true) { ); extensions_add_meta_function('dbmgr_extension_main'); -} else { } -// This adds a option in the operation menu +// This adds a option in the operation menu. extensions_add_godmode_menu_option(__('DB interface'), 'PM', 'gextensions', 'dbmanager/icon.png', 'v1r1', 'gdbman'); -// This sets the function to be called when the extension is selected in the operation menu +// This sets the function to be called when the extension is selected in the operation menu. extensions_add_godmode_function('dbmgr_extension_main'); From 5f05b79e668af6f8de876c27c3b227430411339e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jos=C3=A9=20Gonz=C3=A1lez?= Date: Wed, 22 Jun 2022 12:06:34 +0200 Subject: [PATCH 02/48] Fix issue with header --- pandora_console/include/languages/es.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pandora_console/include/languages/es.po b/pandora_console/include/languages/es.po index 852d2e5bed..0df366f57f 100644 --- a/pandora_console/include/languages/es.po +++ b/pandora_console/include/languages/es.po @@ -13022,7 +13022,7 @@ msgstr "ContraseƱa incorrecta" #: ../../operation/users/user_edit_notifications.php:36 #: ../../operation/users/user_edit_header.php:102 msgid "User notifications" -msgstr "Notifivaciones de usuario" +msgstr "Notificaciones de usuario" #: ../../operation/users/user_edit_notifications.php:64 #: ../../enterprise/include/lib/Metaconsole/Node.php:1165 From 36e2043102f00c373a24f1514c94e615cad28b53 Mon Sep 17 00:00:00 2001 From: "edu.corral" Date: Wed, 6 Jul 2022 10:58:16 +0200 Subject: [PATCH 03/48] ent-9091 setup view --- pandora_console/godmode/setup/setup.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pandora_console/godmode/setup/setup.php b/pandora_console/godmode/setup/setup.php index b1bad59936..8c8587b1ef 100644 --- a/pandora_console/godmode/setup/setup.php +++ b/pandora_console/godmode/setup/setup.php @@ -324,7 +324,7 @@ switch ($section) { } // Put header inside div for special sizing.(No right margin). -echo '
'; +echo '
'; // Header. ui_print_page_header( __('Configuration').$subpage, From 53fa3c8b8db183ff07d97a92d95f28ded45c5fc4 Mon Sep 17 00:00:00 2001 From: "edu.corral" Date: Wed, 6 Jul 2022 12:15:31 +0200 Subject: [PATCH 04/48] ent-9185 tree view alerts modal window --- pandora_console/include/functions_treeview.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pandora_console/include/functions_treeview.php b/pandora_console/include/functions_treeview.php index f0f3d921ff..3fc35f4d84 100755 --- a/pandora_console/include/functions_treeview.php +++ b/pandora_console/include/functions_treeview.php @@ -473,9 +473,9 @@ function treeview_printAlertsTable($id_module, $server_data=[], $no_head=false) if ($user_access_node && check_acl($config['id_user'], $id_group, 'LW')) { // Actions table - echo '
'; + echo ''; } From e58bc4f96ae700c1f1625836671df250d124bfb9 Mon Sep 17 00:00:00 2001 From: Daniel Barbero Martin Date: Thu, 14 Jul 2022 16:06:51 +0200 Subject: [PATCH 05/48] move massive aperation edit agent pandora_enterprise#8564 --- .../godmode/massive/massive_delete_agents.php | 207 +--- .../godmode/massive/massive_edit_agents.php | 965 ++++++++++-------- .../godmode/massive/massive_operations.php | 5 - .../include/functions_massive_operations.php | 165 +++ .../include/javascript/massive_operations.js | 52 + 5 files changed, 769 insertions(+), 625 deletions(-) diff --git a/pandora_console/godmode/massive/massive_delete_agents.php b/pandora_console/godmode/massive/massive_delete_agents.php index cc87efebed..7a42dc721d 100755 --- a/pandora_console/godmode/massive/massive_delete_agents.php +++ b/pandora_console/godmode/massive/massive_delete_agents.php @@ -169,154 +169,6 @@ if ($delete === true) { } } -$table = new stdClass; -$table->id = 'delete_table'; -$table->class = 'databox filters'; -$table->width = '100%'; -$table->data = []; -$table->style = []; -$table->style[0] = 'font-weight: bold;'; -$table->style[2] = 'font-weight: bold'; -$table->size = []; -$table->size[0] = '15%'; -$table->size[1] = '35%'; -$table->size[2] = '15%'; -$table->size[3] = '35%'; - -$table->data = []; -$table->data[0][0] = __('Group'); -$table->data[0][1] = html_print_select_groups( - false, - 'AW', - true, - 'id_group', - $id_group, - false, - '', - '', - true -); -$table->data[0][2] = __('Group recursion'); -$table->data[0][3] = html_print_checkbox( - 'recursion', - 1, - $recursion, - true, - false -); - -$status_list = []; -$status_list[AGENT_STATUS_NORMAL] = __('Normal'); -$status_list[AGENT_STATUS_WARNING] = __('Warning'); -$status_list[AGENT_STATUS_CRITICAL] = __('Critical'); -$status_list[AGENT_STATUS_UNKNOWN] = __('Unknown'); -$status_list[AGENT_STATUS_NOT_NORMAL] = __('Not normal'); -$status_list[AGENT_STATUS_NOT_INIT] = __('Not init'); -$table->data[1][0] = __('Status'); -$table->data[1][1] = html_print_select( - $status_list, - 'status_agents', - 'selected', - '', - __('All'), - AGENT_STATUS_ALL, - true -); - -$table->data[1][2] = __('Show agents'); -$table->data[1][3] = html_print_select( - [ - 0 => 'Only enabled', - 1 => 'Only disabled', - ], - 'disabled', - 2, - '', - __('All'), - 2, - true, - false, - true, - '', - false, - 'width:30%;' -); - -if (is_metaconsole() === true) { - $servers = metaconsole_get_servers(); - $server_fields = []; - foreach ($servers as $key => $server) { - $server_fields[$key] = $server['server_name']; - } - - $table->data[2][2] = __('Node'); - $table->data[2][3] = html_print_select( - $server_fields, - 'nodes[]', - 0, - false, - '', - '', - true, - true, - true, - '', - false, - 'min-width: 500px; max-width: 500px; max-height: 100px', - false, - false, - false, - '', - false, - false, - false, - false, - true, - true, - true - ); -} - -$table->data[3][0] = __('Agents'); -$table->data[3][0] .= ''; - -$agents = []; -if (is_metaconsole() === false) { - $agents = agents_get_group_agents( - array_keys(users_get_groups($config['id_user'], 'AW', false)), - ['disabled' => 2], - 'none' - ); -} - - -$table->data[3][1] = html_print_select( - $agents, - 'id_agents[]', - 0, - false, - '', - '', - true, - true, - true, - '', - false, - 'min-width: 500px; max-width: 500px; max-height: 100px', - false, - false, - false, - '', - false, - false, - false, - false, - true, - true, - true -); $url = 'index.php?sec=gmassive&sec2=godmode/massive/massive_operations&option=delete_agents'; if (is_metaconsole() === true) { @@ -324,10 +176,15 @@ if (is_metaconsole() === true) { } echo '
'; -html_print_table($table); + +$params = [ + 'id_group' => $id_group, + 'recursion' => $recursion, +]; +echo get_table_inputs_masive_agents($params); if (is_metaconsole() === true || is_management_allowed() === true) { - attachActionButton('delete', 'delete', $table->width); + attachActionButton('delete', 'delete', '100%'); } echo '
'; @@ -342,54 +199,6 @@ ui_require_jquery_file('pandora.controls'); $(document).ready (function () { // Check Metaconsole. var metaconsole = ''; - - // Listeners. - var recursion; - $("#checkbox-recursion").click(function () { - recursion = this.checked ? 1 : 0; - $("#id_group").trigger("change"); - }); - - var disabled; - $("#disabled").change(function () { - disabled = this.value; - $("#id_group").trigger("change"); - }); - - var nodes; - $("#nodes").change(function () { - nodes = $("#nodes").val(); - $("#id_group").trigger("change"); - }); - - $("#status_agents").change(function() { - $("#id_group").trigger("change"); - }); - - // Build data. - var data = { - status_agents: function () { - return $("#status_agents").val(); - }, - agentSelect: "select#id_agents", - privilege: "AW", - recursion: function() { - return recursion; - }, - disabled: function() { - return disabled; - }, - } - - if (metaconsole == 1) { - data.serialized = true; - data.serialized_separator = '|'; - data.nodes = function() { - return nodes; - }; - } - - // Change agents. - $("#id_group").pandoraSelectGroupAgent(data); + form_controls_massive_operations_agents(metaconsole); }); diff --git a/pandora_console/godmode/massive/massive_edit_agents.php b/pandora_console/godmode/massive/massive_edit_agents.php index a68104f4e4..940b16c9a8 100755 --- a/pandora_console/godmode/massive/massive_edit_agents.php +++ b/pandora_console/godmode/massive/massive_edit_agents.php @@ -26,6 +26,9 @@ * ============================================================================ */ +use PandoraFMS\Agent; +use PandoraFMS\Enterprise\Metaconsole\Node; + // Begin. check_login(); @@ -48,17 +51,47 @@ require_once $config['homedir'].'/include/functions_users.php'; enterprise_include_once('include/functions_config_agents.php'); if (is_ajax() === true) { - $get_n_conf_files = (bool) get_parameter('get_n_conf_files', false); - $groups_secondary_selected = (bool) get_parameter('groups_secondary_selected', false); + $get_n_conf_files = (bool) get_parameter( + 'get_n_conf_files', + false + ); + + $groups_secondary_selected = (bool) get_parameter( + 'groups_secondary_selected', + false + ); if ($get_n_conf_files === true) { $id_agents = get_parameter('id_agents'); $cont = 0; foreach ($id_agents as $id_agent) { - $name = agents_get_name($id_agent); - $agent_md5 = md5($name); - if (file_exists($config['remote_config'].'/md5/'.$agent_md5.'.md5') === true) { - $cont++; + if (is_metaconsole() === true) { + $array_id = explode('|', $id_agent); + try { + $node = new Node((int) $array_id[0]); + $node->connect(); + + $agent = new Agent((int) $array_id[1]); + if ($agent->hasRemoteConf() === true) { + $cont++; + } + + $node->disconnect(); + } catch (\Exception $e) { + // Unexistent agent. + $cont = 0; + $node->disconnect(); + } + } else { + try { + $agent = new Agent((int) $array_id[1]); + if ($agent->hasRemoteConf() === true) { + $cont++; + } + } catch (\Exception $e) { + // Unexistent agent. + $cont = 0; + } } } @@ -88,12 +121,15 @@ $recursion = get_parameter('recursion'); if ($update_agents) { $values = []; - if (get_parameter('group', '') != -1) { + + if ((int) get_parameter('group', '') !== -1) { $values['id_grupo'] = get_parameter('group'); } - if (!(get_parameter('interval_select') == -1 && empty(get_parameter('interval_text')))) { - if (get_parameter('interval', 0) != 0) { + if (!(get_parameter('interval_select') === -1 + && empty(get_parameter('interval_text'))) + ) { + if (get_parameter('interval') != -2) { $values['intervalo'] = get_parameter('interval'); } } @@ -158,8 +194,14 @@ if ($update_agents) { $values['safe_mode_module'] = '0'; } - $secondary_groups_added = (array) get_parameter('secondary_groups_added', []); - $secondary_groups_removed = (array) get_parameter('secondary_groups_removed', []); + $secondary_groups_added = (array) get_parameter( + 'secondary_groups_added', + [] + ); + $secondary_groups_removed = (array) get_parameter( + 'secondary_groups_removed', + [] + ); $fields = db_get_all_fields_in_table('tagent_custom_fields'); @@ -178,20 +220,26 @@ if ($update_agents) { } } - // Get the id_agente_modulo to update the 'safe_operation_mode' field. - if (isset($values['safe_mode_module']) && ($values['safe_mode_module'] != '0')) { - foreach ($id_agents as $id_agent) { - $id_module_safe[$id_agent] = db_get_value_filter( - 'id_agente_modulo', - 'tagente_modulo', - [ - 'id_agente' => $id_agent, - 'nombre' => $values['safe_mode_module'], - ] - ); + $id_module_safe = []; + if (is_metaconsole() === false) { + // Get the id_agente_modulo to update the 'safe_operation_mode' field. + if (isset($values['safe_mode_module']) === true + && ($values['safe_mode_module'] != '0') + ) { + foreach ($id_agents as $id_agent) { + $id_module_safe[$id_agent] = db_get_value_filter( + 'id_agente_modulo', + 'tagente_modulo', + [ + 'id_agente' => $id_agent, + 'nombre' => $values['safe_mode_module'], + ] + ); + } } } + // TODO:XXX // CONF FILE DELETION. if (isset($values['delete_conf'])) { unset($values['delete_conf']); @@ -229,141 +277,58 @@ if ($update_agents) { ); } - if (empty($values) && empty($fields)) { + if (empty($values) === true + && empty($fields) === true + ) { $id_agents = []; } - $n_edited = 0; + hd($values); + $result = []; foreach ($id_agents as $id_agent) { - $old_interval_value = db_get_value_filter('intervalo', 'tagente', ['id_agente' => $id_agent]); - - if (!empty($values)) { - $disabled_old = false; - if ($values['id_grupo'] || isset($values['disabled'])) { - $values_old = db_get_row_filter('tagente', ['id_agente' => $id_agent], ['id_grupo', 'disabled']); - if (isset($values['disabled'])) { - $disabled_old = $values_old['disabled']; - } - } - - // Get the id_agent_module for this agent to update the 'safe_operation_mode' field. - if (isset($values['safe_mode_module']) && ($values['safe_mode_module'] != '0')) { - $values['safe_mode_module'] = $id_module_safe[$id_agent]; - } - - $result[$id_agent]['db'] = db_process_sql_update( - 'tagente', - $values, - ['id_agente' => $id_agent] - ); - - if ($result[$id_agent]['db'] && $config['metaconsole_agent_cache'] == 1) { - $server_name['server_name'] = db_get_sql('SELECT server_name FROM tagente WHERE id_agente ='.$id_agent); - // Force an update of the agent cache. - $result_metaconsole = agent_update_from_cache($id_agent, $values, $server_name); - } - - // Update the configuration files. - if ($result[$id_agent]['db'] && ($old_interval_value != $values['intervalo']) && !empty($values['intervalo'])) { - enterprise_hook( - 'config_agents_update_config_token', - [ - $id_agent, - 'interval', - $values['intervalo'], - ] - ); - } - - if ($disabled_old !== false && $disabled_old != $values['disabled']) { - enterprise_hook( - 'config_agents_update_config_token', - [ - $id_agent, - 'standby', - $values['disabled'], - ] - ); - // Validate alerts for disabled agents. - if ($values['disabled'] == 1) { - alerts_validate_alert_agent($id_agent); - } - } - } - - $info = []; - // Update Custom Fields. - foreach ($fields as $field) { - $info[$field['id_field']] = $field['name']; - $value = get_parameter('customvalue_'.$field['id_field']); - if (empty($value) === false) { - $key = $field['id_field']; - $old_value = db_get_all_rows_filter( - 'tagent_custom_data', - [ - 'id_agent' => $id_agent, - 'id_field' => $key, - ] - ); - - if ($old_value === false) { - // Create custom field if not exist. - $result[$id_agent]['fields'][$field['id_field']] = db_process_sql_insert( - 'tagent_custom_data', - [ - 'id_field' => $key, - 'id_agent' => $id_agent, - 'description' => $value, - ] - ); - } else { - if ($old_value[0]['description'] !== $value) { - $result[$id_agent]['fields'][$field['id_field']] = db_process_sql_update( - 'tagent_custom_data', - ['description' => $value], - [ - 'id_field' => $key, - 'id_agent' => $id_agent, - ] - ); - } - } - } - } - - // Create or Remove the secondary groups. - if (empty($secondary_groups_added) === false - || empty($secondary_groups_removed) === false - ) { - $result[$id_agent]['secondary'] = enterprise_hook( - 'agents_update_secondary_groups', - [ - $id_agent, + if (is_metaconsole() === true) { + $array_id = explode('|', $id_agent); + try { + $node = new Node((int) $array_id[0]); + $node->connect(); + $result[$id_agent] = edit_massive_agent( + (int) $array_id[1], + $values, + $id_module_safe, + $fields, $secondary_groups_added, - $secondary_groups_removed, - true, - ] - ); - } - - if ($result['db'] !== false) { - db_pandora_audit( - AUDIT_LOG_MASSIVE_MANAGEMENT, - 'Update agent '.$id_agent, - false, - false, - json_encode($info) - ); - } else { - if (isset($id_agent) === true) { - db_pandora_audit( - AUDIT_LOG_MASSIVE_MANAGEMENT, - 'Try to update agent '.$id_agent, - false, - false, - json_encode($info) + $secondary_groups_removed ); + + $agents_values = agents_get_agent((int) $array_id[1]); + $node->disconnect(); + + if (empty($values) === false) { + update_agents_in_metaconsole( + (int) $array_id[1], + $values, + $agents_values + ); + } + } catch (\Exception $e) { + // Unexistent agent. + $result = []; + $node->disconnect(); + } + } else { + try { + $result[$id_agent] = edit_massive_agent( + $id_agent, + $values, + $id_module_safe, + $fields, + $secondary_groups_added, + $secondary_groups_removed + ); + } catch (\Exception $e) { + // Unexistent agent. + $result = []; } } } @@ -488,121 +453,160 @@ if ($update_agents) { } } -$id_group = 0; -$table = new StdClass(); -$table->id = 'delete_table'; -$table->class = 'databox filters'; -$table->width = '100%'; -$table->data = []; -$table->style = []; -$table->style[0] = 'font-weight: bold;'; -$table->style[2] = 'font-weight: bold'; -$table->size = []; -$table->size[0] = '15%'; -$table->size[1] = '35%'; -$table->size[2] = '15%'; -$table->size[3] = '35%'; +/** + * Edit massive agent. + * + * @param integer $id_agent + * @param array $values + * @param array $id_module_safe + * @param array $fields + * @param array $secondary_groups_added + * @param array $secondary_groups_removed + * @return void + */ +function edit_massive_agent( + int $id_agent, + array $values, + array $id_module_safe, + array $fields, + array $secondary_groups_added, + array $secondary_groups_removed +) { + global $config; + $result = false; -$table->data = []; -$table->data[0][0] = __('Group'); -$table->data[0][1] = html_print_select_groups( - false, - 'AW', - true, - 'id_group', - $id_group, - false, - '', - '', - true -); -$table->data[0][2] = __('Group recursion'); -$table->data[0][3] = html_print_checkbox( - 'recursion2', - 1, - $recursion, - true, - false -); + if (empty($values) === false) { + $agent = new Agent($id_agent); + $disabled_old = $agent->disabled(); + + foreach ($values as $key => $value) { + $agent->{$key}($value); + } + + if (is_metaconsole() === false) { + // Get the id_agent_module for this agent to update the 'safe_operation_mode' field. + if (isset($values['safe_mode_module']) === true + && ($values['safe_mode_module'] != '0') + ) { + $values['safe_mode_module'] = $id_module_safe[$id_agent]; + } + } + + $result['db'] = $agent->save(); + + if (is_metaconsole() === false) { + if ($result['db'] !== false + && (bool) $config['metaconsole_agent_cache'] === true + ) { + // Force an update of the agent cache. + $agent->updateFromCache(); + } + } + + if ($disabled_old !== $values['disabled']) { + // Validate alerts for disabled agents. + if ($values['disabled'] == 1) { + alerts_validate_alert_agent($id_agent); + } + } + } + + $info = []; + // Update Custom Fields. + if (isset($fields) === true + && empty($fields) === false + ) { + foreach ($fields as $field) { + $info[$field['id_field']] = $field['name']; + $value = get_parameter('customvalue_'.$field['id_field']); + if (empty($value) === false) { + $key = $field['id_field']; + $old_value = db_get_all_rows_filter( + 'tagent_custom_data', + [ + 'id_agent' => $id_agent, + 'id_field' => $key, + ] + ); + + if ($old_value === false) { + // Create custom field if not exist. + $result['fields'][$field['id_field']] = db_process_sql_insert( + 'tagent_custom_data', + [ + 'id_field' => $key, + 'id_agent' => $id_agent, + 'description' => $value, + ] + ); + } else { + if ($old_value[0]['description'] !== $value) { + $result['fields'][$field['id_field']] = db_process_sql_update( + 'tagent_custom_data', + ['description' => $value], + [ + 'id_field' => $key, + 'id_agent' => $id_agent, + ] + ); + } + } + } + } + } + + // Create or Remove the secondary groups. + if (empty($secondary_groups_added) === false + || empty($secondary_groups_removed) === false + ) { + $result['secondary'] = enterprise_hook( + 'agents_update_secondary_groups', + [ + $id_agent, + $secondary_groups_added, + $secondary_groups_removed, + true, + ] + ); + } + + if ($result['db'] !== false) { + db_pandora_audit( + AUDIT_LOG_MASSIVE_MANAGEMENT, + 'Update agent '.$id_agent, + false, + false, + json_encode($info) + ); + } else { + if (isset($id_agent) === true) { + db_pandora_audit( + AUDIT_LOG_MASSIVE_MANAGEMENT, + 'Try to update agent '.$id_agent, + false, + false, + json_encode($info) + ); + } + } + + return $result; +} -$status_list = []; -$status_list[AGENT_STATUS_NORMAL] = __('Normal'); -$status_list[AGENT_STATUS_WARNING] = __('Warning'); -$status_list[AGENT_STATUS_CRITICAL] = __('Critical'); -$status_list[AGENT_STATUS_UNKNOWN] = __('Unknown'); -$status_list[AGENT_STATUS_NOT_NORMAL] = __('Not normal'); -$status_list[AGENT_STATUS_NOT_INIT] = __('Not init'); -$table->data[1][0] = __('Status'); -$table->data[1][1] = html_print_select( - $status_list, - 'status_agents', - 'selected', - '', - __('All'), - AGENT_STATUS_ALL, - true -); -$table->data[1][2] = __('Show agents'); -$table->data[1][3] = html_print_select( - [ - 0 => 'Only enabled', - 1 => 'Only disabled', - ], - 'disabled', - 2, - '', - __('All'), - 2, - true, - false, - true, - '', - false, - 'width:30%;' -); +$url = 'index.php?sec=gmassive&sec2=godmode/massive/massive_operations&option=edit_agents'; +if (is_metaconsole() === true) { + $url = 'index.php?sec=advanced&sec2=advanced/massive_operations&tab=massive_agents&pure=0&option=edit_agents'; +} -$table->data[2][0] = __('Agents'); -$table->data[2][0] .= ''; -$all_agents = agents_get_group_agents( - array_keys(users_get_groups($config['id_user'], 'AW', false)), - ['disabled' => 2], - 'none' -); - -$table->data[2][1] = html_print_select( - $all_agents, - 'id_agents[]', - 0, - false, - '', - '', - true, - true, - true, - '', - false, - 'min-width: 500px; max-width: 500px; max-height: 100px', - false, - false, - false, - '', - false, - false, - false, - false, - true, - true, - true -); - -echo '
'; +echo ''; echo html_print_avoid_autocomplete(); - -html_print_table($table); +$params = [ + 'id_group' => $id_group, + 'recursion' => $recursion, +]; +echo get_table_inputs_masive_agents($params); $nombre_agente = ''; $direccion_agente = ''; @@ -620,7 +624,6 @@ echo ''; @@ -1123,5 +1123,19 @@ ui_require_jquery_file('bgiframe'); } $("#text-agente").prop('readonly', true); + + // Disable fixed ip button if empty. + if($("#text-direccion").val() == '') { + $("#fixed_ip").prop('disabled',true); + } + + $("#text-direccion").on('input',function(e){ + if($("#text-direccion").val() == '') { + $("#fixed_ip").prop('disabled',true); + } else { + $("#fixed_ip").prop('disabled',false); + } + }); + }); From ea18fda67a1ff6ede4caad6d678cc433ae902176 Mon Sep 17 00:00:00 2001 From: Daniel Maya Date: Mon, 8 Aug 2022 12:04:29 +0200 Subject: [PATCH 13/48] #9151 resize multiselect --- .../agentes/planned_downtime.editor.php | 22 ++++++++++++++++--- 1 file changed, 19 insertions(+), 3 deletions(-) diff --git a/pandora_console/godmode/agentes/planned_downtime.editor.php b/pandora_console/godmode/agentes/planned_downtime.editor.php index f17fbc0ccf..dd4a8c29b0 100644 --- a/pandora_console/godmode/agentes/planned_downtime.editor.php +++ b/pandora_console/godmode/agentes/planned_downtime.editor.php @@ -797,13 +797,29 @@ $table = new StdClass(); $table->class = 'databox filters'; $table->width = '100%'; $table->data = []; +$table->size[0] = '25%'; $table->data[0][0] = __('Group filter'); -$table->data[0][1] = html_print_select_groups(false, $access, $return_all_group, 'filter_group', $filter_group, '', '', '', true, false, true, '', false, 'min-width:180px;margin-right:15px;'); +$table->data[0][1] = html_print_select_groups( + false, + $access, + $return_all_group, + 'filter_group', + $filter_group, + '', + '', + '', + true, + false, + true, + '', + false, + 'min-width:180px;margin-right:15px;' +); $table->data[0][2] = __('Recursion').'  '.html_print_checkbox('recursion', 1, $recursion, true, false, ''); $table->data[1][0] = __('Available agents'); -$table->data[1][1] = html_print_select($agents, 'id_agents[]', -1, '', _('Any'), -2, true, true, true, '', false, 'width: 180px;'); +$table->data[1][1] = html_print_select($agents, 'id_agents[]', -1, '', _('Any'), -2, true, true, true, '', false, 'min-width: 250px;width: 70%;'); if ($type_downtime != 'quiet') { @@ -855,7 +871,7 @@ $table->data[3][1] = html_print_select( true, '', false, - 'width: 180px;' + 'min-width: 250px;width: 70%;' ); echo '
'; From 626d5b1d0dffe8c4998611209e74ad938bfe9f0f Mon Sep 17 00:00:00 2001 From: Daniel Maya Date: Mon, 8 Aug 2022 12:11:56 +0200 Subject: [PATCH 14/48] #9277 new translations --- pandora_console/include/languages/es.mo | Bin 763825 -> 762887 bytes pandora_console/include/languages/es.po | 97718 +++++++++++----------- pandora_console/include/languages/fr.mo | Bin 786167 -> 785062 bytes pandora_console/include/languages/fr.po | 97317 +++++++++++---------- pandora_console/index.pot | 50532 +++++++++++ 5 files changed, 146838 insertions(+), 98729 deletions(-) create mode 100644 pandora_console/index.pot diff --git a/pandora_console/include/languages/es.mo b/pandora_console/include/languages/es.mo index d4fbb38d26ab7996dd3906f767b8fa429fbbee01..a56f2a9710bcef7c1f8841499ab26e34494b2869 100644 GIT binary patch delta 191308 zcmXWk3EWOa|M>BX`?e%YAxgz9`@Zk{PO?YITGmLVl#nhIDoIj`LMbUkl9b3&O4%h( z);7sfC{ihTKA&sm|9idu@0mI0%zWoNGv{2?^E}IURGhrIV)Ag_^yd@&zqU6d64&8~ zyqOZ4DkKtHi)Xeu@!f&UiEQ{i=ECEc2mi#&Fx$b*iL7`fK7&_d4txu<<9nC|*JANZ ziNq(Em-?|osq4waKNK3#kbXEk&>S7G9hS$gSP>^+VO)+5uoJJs16US+!`yh?x1qfp z=BM5Si(oe_fDdAEoQfq9$wcDa*zisCB39>y8@>zPf~BcHg_q+>bY>f(Ut%@tUtvki z_I>6=ORR`aNeiWU-Usw?H{E#`3 z4@*Vsp&fTX2kaHS7t^Uf8hsoMWGW_&@C6E0abCQz8|~mAI>2c(fV3aO+Fym&Q!jzn zVzXH9gYKcR(b?!kR-w;tMkla8`rD70lc~*={Ybd+YV^i3XaM!lwQi55xO==lHC~^G z&g5Nmjn~BXgXnXoWBo!j*H0nC8R!Jc|CG#}C`#c*8l34}=)mL9$Y-FN@O5-E?Lr4S ziY`IcqnQ(Zu`m|HB)WvJp?hQ*x+y=vH}G?8jCcPW##xr6P>99fh(2)WSnwzs$Z7QW zWIi5JmmN)c5lm$$+CF+a8o&s=8polhWEQ$NmZ3|q7M)OX4+SGUjwSFfG^K@4WKQr( zNR&oX*%t5OmCy}yQvc+a5a>>9NPQnV(AB?&%v405Yl-uiU?+5(-%c@MOq@=gj%4Cm z3JzEdO=$)6#uj)V-i&V2&(RF+K=1noU9vOio=HEGIdKgZKr>T0+60^b z&;Qs|A(5Djb~qh<(JVk8{1km)H#*RvSU(-TfTl9bZ((T)p_!|RU9dYE_}ged@1t+b z4OrFlznOw-_79H7Y`=%&_yqdk8Z<+j(1CWu`Vn+5oI;l*$JvmXf@pu0&Y4|_%`2+F#kI_@e zR!aPRmhsGa1HS)n2=GI6Q?19+q#*xA zjwSU5_-wiEh5VvHgeWQFN1@Kr{Jgs595Bp&=LgU;*^T8_=0n zLI-#>IvHKEDd^J7L_3^|9@~Xzz@K3Toa!jp#Amj{Z{m5#3v7(bIMT&0y}F z1mIeiqHqJ&K;K-qqVMRTSP3VfGkq6*0j)+~wOi5qen1EO8~teI&XtyWLl!{;sD%d5 zD%RUadt=fY?xs)`A3Y zf*Cjpy>E7`FUXS&9eqZFsXTx__&fUGzi0rLUlHns(d!k^Kx?6!wOPF05$&f>^g;B# zspx&P(9FDn_PZ)c!ADDQpXdK=3Z`ZQ+Tk{I2FGH1)&ik}ywRd)pq0_g zHAnYAXLRicpcxy62J|5M-k22YFUIR{V$uhfQ!s^}qLJ@Ie@dN+^&AC5M@6Gm(EFR9 zfp$Y@Gy)xHBD$wuKm%Hh2DA}<5p6*;vAZDW-wwW^!4A)(sk;2?U?DVxWw01lLwD~j z@%l)#<4ITxr(qTRJhuOh2A27nu$1}Gj1)%qO2un9|E91W4es7H@j@STm*0i{RC)|e z`K#yvE3q2>j4s`^h0;=gh%JQ%ItYD!3i|wOXdvs+`*&drJd})uV%LUu{hjDQv(S&x z+h~A0&`o+M)-zuh*8B=|sfwY`H9$9QCv?D`=uC&9{ftJJ{PEbHe2Ic<_9hzHYV`bn zhTeDvJ?ClHhmLPRJFb8pqlU5lHZ*_%SOG_&_bo&R{s2w=XVJakdNOg8f)W0Sc932; z416{EU^#R~bUGda`=A}(g$6V>)~BNb&yV%@(2h4nzebPkPw0K8(Iv@LEPNZTK|+04nr>+!;3bY`p30XCz7e2r%4X!Nhxo`XOBIOA*4`%9r8mFj3ebz{9Xx*6M} zYkzCJ-V^h9{)bTT4L2I=<1D-p_oA68S|%+~7t5nBm_gVYSKy=gFFL@uvf=(G(ZHTZ z*Z$R5Ux{XD1J=f!SjzK%S-H@06>La-EIRWwSO>SEDa%$qbX*AC{Uy=B>Z8YYBpS#Z zbl`=t{t=d^z6m||zoVNtPX*4usVhUll+{ExPjhs@?&v^wp`Y0aXhx=>FQS>~eRE>_ zJJFBO06s&%|NGHB@Bub=D%okV%e?osN7OWmVzZJ0>_1n<3ei~h>H_*V>;}HA_YhuS5sU=A!CR6a2&MGX2 z`_Q$^QZxJzsg6Ub_r|jLWo-WgD^M>|E3~(ZK7?lOHEfT|u@NR}rzO&%F}n6GQgZ$} zQgE$%pnG9Jtlt^EAAN8vnyCqBrlz5rZzi_DMc5S2pf9Xyb;38G1-iHHLif^+#wbccZEP6WufA>V*O8qcdwC>)p{nhoTd_FZytF z5++^KXDGO4OVAEJMR)ZMG?fQp`*F0Rb7-Ldp&7_kKOEPh=%%cRZn{qBsThO?G8#Qi z9NN*dvAzI((X2w>8|%;j z4xt%1iB2f3NeK8lG=sI!B~0E#p$LT@=!0X>Q}6^D;Z*d+@CHl=P!eTo3AB$p&zgcDD`__yvnoKZ8!-sy3W|2dqcI$XcOmelxn}z0pVq zMTbT2M+Y8-uK8o=K+mD4VktV~FR(rCLi@?MF|?ON$E$cF=ifrT*w7kHc~@+KSuj;r{E;04k#QRYxaKzil#XrdBlgBI%005${3= zdK{hM?09_OrteJ?umU(r*M?WXWt0kpj|nvtex|Gi@S2y_!aouuHdeHq=YZ^!z2 z^u@Ca-CXC;^PQ_*2&f$TT)pT`=$`3?-ZvcGJJVu)DP~aLiU#s)G@0H$?EY)frKpXr zeG4?T?a@eY#UnTn%|P1@;r_np^NtchmyMRcNzkR?eb)>3fb zPtY~qi4MF6UCYC0N9WO3XSPluz>4VowXhP_LyzxJbW@Ki2(+F5wqUReYTbz0hNm`R4FzxD$E`9zi$fM0BlRMQ6Ga9dHAd#Vu&y=h01gRo7r8 z{F!6_ z^$uu;MxlGJfHlO?1Fp(2hTk?LVWNCwtG3(n4q| z%b*#lgRXH`G{C{J{ZV|L`aGP0HF~9`{wdoRXa;)s=KMcIVQz1JyAff*K52<2)Nkt> zHp|QCURa2(^?Ee*U!c4G5c*0zi4E|I+k@@V7tT}Y(mjg?JS+MZnxPMq6x=*tM!!cl z(O+l=3fvJosEH2P06i^j(Tv<0>qF21MxxJ8M(h67%#6 zDJ+Plv@AN~miQ5NK-co}{vk6NXuTXd)5ho~Y>5us5o=;^G|=a<6)r@N;b|n`Wa0t^ zcYBTjA+_DH67^wN1?OO8+=10FF)+-eI(od?p_{fR`t6v2HE=1qsgGbWEIKF*+yb3g zN6hN?zdHp}*B4Fgz32?aqH8n--CQrn`m$JGkIw8X^!}gFe$JxLr40@f%8#bHbhIIw zshcqe<0pDku!B3%4o1fM?tG|*pS{Zg!7ac2m$7rck|9CX*ei$3@n+R@js{YP|j{fTboD~5!%FNMA*dShvv zghg=~I+0yNIR9>jLo|3yj-ef&MpJe%nr~=$Ka@eg2{)o0+<|7|ZgeTepldr7-PAMD z{^p_+Sb}cW^=PI)8_M~&qrEhY!ynL@^t&qz_%N2EJ_mhge}NV87c7t04htQ(#=+Ek zqHnlO=zZU!_vOAjWTYO}qkbQD!lg+HrX+Ds7~lqUhAq%F?S;OI??z`b6@A0Kgl?ku zF*PGh%_!FQqThmp=zZDl4PJ@%doB80vOEPlu8OXG<5=&CrmP>D;*rtE;`Qn1Oy{A; z^g}d&lj!~bM6(YM8NCYauOj+_YKpvwl8L?)d|)iPc2A<8%Ngiqdl6lth3FcuK=;fh z^i8%C&Csvti!0}S;muhZeXcdSDQ`w!Kts{JwF2{c{=cALDh@_}Kp#Aox`Cfw=;q9J zf0$uzY(u>;y2gXi3A}*q@%89g>`1-oh~NyYK>Y~1IrBci1U>(SC^(Zc=-RaO0^Wi~ zJ`lU(SoFUCp~v+cx@6fN41ryTrno%%d}B1D9pd#{(TNO31Gop1Zl;kG^x5d!=!2Wl z&9e)g=>c@6IYx#}S`gg>mC!xZ1`X^M^!Xv^^Y^2BV=Ow(RCJ+=d3!ALrq{vHgm1 zA+SQ|bEPo5=f4sKQ&StASu->>1JD_d#0-2K-R*Co8Tka=JICVni&&m|;qhVbv_<SOf0nS`G22+FQ8A+8^6RVcnE7^o(Ul{EzytA?N}BcL-)!uG?1-ms=tr* zKhS=1JQ@P7kCmw3j91N=^d$0_HeaNLTa1Jy(KL`U@c&{&^<20RDN*a|cg zpP|R@M{J1yqJh_&9Qx~k8Pxm7`ozg>4%c!v4P|g0+VOF8W|v~U{NtgcrsxZ&8yffn z(P?OaZ=nINM+ZI-ub)Q8x$KFs)D_VeR`nzW&tpCGMbkE3=!b5WA?Rj#2%YKVSf7n% z=q+@hk7Io|I)R_j=Pt&2&L=~EH=w7ZGI~st^(h#68+5n#MQ1QPwm*di@*0}j<(S%} z=)i~2WA_`{;XmlW*{6j23Zj`Ri?%mMC)@=&b;(3O3PyByyf7La;7N3VIq~{(bY^Sg z^{>#tj$#EohrTy%cq)9X8lw}r2VJr!F||Zkg!+2C%Jcsn1!s0X-jHW%c%USD+*+U= z4@Tb)lhCDl6MgruM>{-<&NS=O;rR^Apxy|5zAt+H5j0aTTKD`fpx{i`p=zsiS4hW6J3e+yB(9J@IY)h9zBmPN!l}E zpgib(h0zYn$M(k24rs@{(LZX9L?`ePx|A!?fHtF<+aK${KNHV?`t%TaVf4mI(I)7C zUC;mqMIS)-!lP&=X2te5(E;8^H`#V{B8OxBM66%H)KWdm`S-h=@oZ?QkA4ffp&i_g zuHA67qiNBX&;S;qDPN2BvmO1ooInHr9nDPE8KK`I(X!}L*GN)uEp9|Rx+Pv1jCL>< z4QM+00(lt?Xal+zzC{PTgg&3`xe(aZXuV>zQEcys?P(tv+mkCPIJ3_%19zjZ(zEF9 zzvB6j(rV~{ZPAa_Q1o*=935yhnz1R-m!gZ&Onrm~z6-toG;$o-|1-mb1<}n?3VjvV zjqUx>7tDz0Bj}7DM>F>f+Tk4Zd@n^mI-9T*o{HBCyb%9Titdr#nEL(yAO&ao1e)?C z=%!kaW?~0Az%S?~yomnPy8Ok^UKJgv88*V9=<|!?_0?FH`WCE*S!acQnqpSwpXf-z z)ZK#4Xi&Ui1e%cv(dXm!H{zrZPP7IlU7I%X zLLc;1IRu^Y6KJYtqXWE)cKihz@Hg@LF?0_lUJ3!{M4u}X>$T8K-iRK%L1;hYU*i0y z){q7xpM#$NkIX}|nORT|l=zR~*2^~&D`pb21e>E&!DYT#3 zvEB;p=T`Ljf#`8gj;7$+&W;zBqaAIE^>3oTpbsSGhYm8(dUbS$H>0V)2c6-=u|6Fg za4ve^yJ-L0g2}{p6in?|%#4@47R-sJI1l=wDT*U|UP5_AGPF!lF;2PpVYGLE9DIT7m@F`as*1))7F8t66XE4U0ANG0?eQ3t)h zIXZzh@p}L0-Dv+0p)as0nEL1c?^5uUxgG83Pjn44zY$JFL2N_40s57jjBc*iFtw&w zk@_}tQ~rzgbJfCdUj{nkN@xJ}(4}p^kn``2eQ7XdL(v&MgzInu`ZKxdn_&&xpljF} z4PYR4zz1S|6S|rApaY#mPuG8F;Mctse%9AU_rQR+lA$nx25*>$4)770>K*8sev7H| z9@{UW0pwW}?k|jHtSWkcE3AxNV|^0Z-*eH|(E#5|QgF>aM<3i8Z`hBf>_luok1kRA z;_zSvG*gYy&37ZZ$?ib+#t?K*-HY!25$HH$(Tq$$GoO5gf)6Z4*K#?!mRr#W|3Pm| zUlL}J2OX#g`i&?Rt&L`=4VJ?m=nN;LnVOC6{pncA?Sd^(M>oG?f5BlpxLo~QLMiouYZPSU=RB0{XW+JLH9=X zmEpxx2<@lIO3uFzbfUolq)1H)S<6#r4sEZbUQN8SVEjbeu8hCZCKs89(t71s`}b-tZ2(_G{3Ye-%A~ru>gs z&$2FbQ~;fES@f0N2z}SLMmJeIG;_nyy)zQMZziVx^Z)ZG7}-Mfqp<>g53E8T{22W@ zZpIt&2)YE7*7F9#CfE`uVHw-jDLjXExDHME zF7y~3z;bvV{TSV_DSYi3p)>Cl>kputY6iL~7or2NM*H1?KL0)D$;`(K+fh&E-W)zU zJ<*g*!Q%KbIXTFnX>Zi1nAyjJ%0<@L}`|bjkK%RZQO+*0dIyfyU^P-HbJH9Qw;=6&A() zSPK8evY!9q+rqi*5WO2cw^Q+vO#C}xXb0tYgiY1~{R#C1*2cHd^L`W!_#~Q{e=!4d z>q; zBz4iH>w+%L0CaQSgZ4LJ7w6xOCdY;sqV>_w(Y4!-268BR6kY4n=s z{bt%7_EKJSGnPg7MsxIfhuxh2Dir$CU|bgdslBc6c{xDf4d zMRa|18@k!{qy7C7+s|VI>S_NA&o_y-!_?pZb&m~qp&dVjb}$h=Cevd3g4q5pI>R;S zfM2449gNqHp#lGnE?L%Zg1N97$2mWGz4bma?D_9W!DBHDP0cv0htH#%Y8N`-arBt} ziDs(c{t!S0x<{&_8LN$EuvN5kZ107>QSU}gYaQ;ovej0q>drYM+n)P6qQ6cpB zltGuI4%%S{G($aOeFU1J@o0aqqM3ac4R8~>WM83g(4P)+{yi?29SW(hgr4W-=nJS1 zI>1Bm`ZMT^7N8w1kA8v<@HIN%kLYvf(V6Bx90D(a*6X1Y>YSuthj-x9csDx3i|8@T z_iYI9T6ArjL_4Ab_CW_47TYJHGk-2#Ux4NU8-c(@50(&i8d5MJ1&9l zfofPB+o7BDJ~T6vu_V5N?v2l}F=qQde5_id{S8H*doVf$&A=H_%PF0^QVW(F}ivex!Dz3RYwM#99hX z@Hec0)qV=Q^L8}F6VbqypflKjcKB_)ejZybimqZMmnH@4MM+iPotajZFHbD@%lb&PCaov?4=fH zy-%#aew_1Po`#QUXpJY)0IHt|Gw6(7AB3gwIW&+pn1NrRfuFo!HE3`xyQ3Z5gGF%~y4#ndd*DlS6COr8{0&p@k6%NemC)4p zMDH7pX67-p-x-*JE6~9ABq`LPa2icrnNy*ImgoRI&>QcM?N6iky@qzU9u53E^f%&p zH1KOq2kW87xEDHsk!WC3(EgKiDVUP?(Fb>92Rw&OvH6*J-qE#w1?^}Z8pv0eI!;)Q zdd}bCUO@-wfCf4Uo#XyhYqhsQ(gmYZ;#G!0QzDYgAVuvnwbS? zhwIVj_M?HFMfcJbXTuAuB9@`v1wF1~@dnTT5(*hK>_FG<40gpV=R)K?(DpHC2A+xS z%VK>;ynYHzZQ38FVGI-_Rjz&+6! zk3pAeX1x9Zx+J^M0DeLT_zN516@P~JN=J0&kD$-LjY$XCLBU;o4Etj4ze4Ko!J5=3 zVJ%#XuHhfCUg__U(m`m4(=h{AU}|?`4eF=SJy7C8Xm5d?srS8*mQ4LoY6T6|XgC~i z$oo%Ny9#J#+F~UfjJ^k6MBnl2(Y^3xynYmYgBJKV%(Qv*e)ReISQ~ev{ak*L^PfSX z+QpFin=vc(A?Udsj;`G}G*i#V>r2s;uSCCcU&Q(z^rLeu`dhqy0bQCb{{^o`Khx!s z6zr%z`t|CFcGwI3Y7Itr{Rs3kJORCLA)4CvV*Lbq{{M^?x)kaS(C7Q2{oRdDXf)bS za$3CbGP-HrL^t7jG_bwsj832tpG5;q=l?Vh+EF3&{!+2M9%fK)iOzgbbToS3ROA;> zGVv+}J6MjU{Nq^PhHk3;=zHK_bcXpdrKi@uCK^EFXj^okZb-+8JJEhep-Va`)~BMs zGiGCf)cL32gP&jq?nMLnGqz{V96G!Py{`>At0p);F-rg|Yd&)v$ zDuf1B0u8JVnwb`u`uo4m6nyZuXg~CL-G%On2hk;X8vO;c0NsrLLyzCT=yAF_YkKOq zHpbG_d!g4Sp&6Kuj5AUp zAKeRgqf0Ou&CDY7z8&bmhtZGGDRhZ*UKZLrB`J8}c666ocg-fn`gAlSFQPMj1?})% zbY>gl^_^(OzCrsr60e^`1OGc-&z~bamk~`?q+q1=(Y0@&&Z!!A0{V=wF726M@{hmN4^fzY4oH>1kasKj9a0dC&&6a@%Q~@2hHl}04SZ{{z z<~Hcs-xj?e9pEW6pn2$0yp0C%9{QF21pOKw$Ksy<%W{QdQxWa3EtbUo=$}%j#P((A z=G=@f)nRm#o<~!gH+R@eWzhFRt5|wmuT?8(pRRZzTchE z8I40T@&dZ4-a$Lsgnk=-M2}sTyy>am52ewLd!hl2N3So8^)J!q&Y=C|&Bys~OrdhV zkn-W^%w9xqd>1R>9;}Gz`NJEq8k(U2SQjUtOR*Mxx9>v-{tFG{+N(lfO|UxkfoSGl zO2)zpbjDlIP4okLZvTj0Q6MZqIjli@eKaHYq4!Tl_snecxNSiD`w9*81iF{96%2uu z!&=mn?J0O+68gX*bOswRwOP>Pb^+^P+SS1ZX!}TXw~s@Q?bFe@v3)5{rF{*K#~ZH+ zU)in5^U1`o6g=1G(X~z#3SNT-P!%2Mrf65pLcMpa_eV1^3=Loc8ql-oF@6O-){Eoy z575kRPRaTEF*f{%z6Y+kHk{iM=(#PA?*4jc25!Qea1wUJuh4;uUzeWxcRs44Ydipb zZ_Gv~HV<9%573G2!~&lG6BOKynXV6!6~U&|>!O=*EV{|&p)=W!X6$F2hrgi#PA{CE z`nf(I4SXLC!DHyaU5bQ(hhhfxiI_CCZ%{C$%g~NjqI+N++VNp@2B*=KX3q!#=R>bo zLEm&u(bTs=Kj*hZhenfVU^CDqo1ek?cSfsd@WD^fW40UJjG2mtj;=-nE02w^CYtgG zu^LW7cl~PgxvjDOBO2fznEIUG5N3V@n%QPIBtyf1*f0qVhn^!Yw$=I%iQ8I69{XC~u?x#&#ZLeKZ1ctgJ8VfSB)&agPz zQB8DnH9<4d5`EE3LYHa@dhR!25&QvNqRb`2UbqZh`eacGMp_o#19i}uH$oq{2_3i# znwbIUgZHEF@`ursKZ|bSx6q~f9L?A+G}VXDKrY4hA|+E3NhZos@Wz^GAWdVv6Bi*#1bYKaTF9 z8EC(=Dslcz@mv}PEttQI=1f-Xf{bPx1FGtdv6;REQ*A4XF+1x@+fSYH&cuSEmd8r>f~ zhM8$Uk7nv`O#S&kQ}r;w)#yx%peZVi4p0Z3c?&f1KIk!e5DoY#bY`!_`pW1RvHcKw z|L^GY*=vLVi(u;S|0_^%z}wN3-G`<)iGGG(jn~(sOR@_+UcaE3$x<`C({rLTFODuv zRdfPPW4(Q}cl2&dx+@={U}~R0>o3OoYv>ZZ8{0ocH`k7M{cCiskHq>Zbl{6nG5q_%oWfai~{7 zGu9gIr#Cv0JJA=;NOVb(=!7TP&iILEDEPpO@rKvXHC}`UunrAqD;mflwBujVrTPc` znq_MeHdjt`fYRuiS4I149_!s>eJG~>`@hFgu%j7hg!9mW--z`U=pP_fqp9AFz6Xw? zOY{pGz$J9R^rq>l|3!rYIEeaL^lRCpS$KX1I?lpooPQr&N`nEcK-YR5I^gE$cbNL) zG@7Yvn}?1{qR-bwGt(&A0X^@1&^_}IK8-J829|1(p87{Tty?6+Z?U;FcwRq4U%jW% zSMQZA!!fLk8Psn?*M2CvrjyX6c^XUNJS>BsVF^5g^{_yzkg3jSW(S}Xy)Q|@8H_B4u1jhJT9U=(Iq|gFDfj?CRERM;rtJ#P~+zG#5SCZ%ki$R;cqYtcS}!v zPJIma!e+OmCmzFB@n$S}YkH!O*U=dsz%&9W)IIzWtnh6iz}~o;>n~v=?A9aPKeGqt zzZDH%)6f#H@0p(ZCzJir)U85K!$x#zzCbtI*RlN&n))N?EB0UXzAJl$_r>)%n|ed^ z6zxO%{TAJfCz2FgvvcU?xfpNA+&grX3mxDZbbu=8*Q+JEyZhrI9E1+sqEFa-o$x;D zeXuj`#}8k!B24tuI!(l`mb_pG9W$mA2?o)ej5@4!-Vr98Q_2ai-I4K66mq0jeca>qYvDH z88{-gKabx37CM79XokK(PsjJ@FQ+r;iz>&UkeO2G^=jx6G{vhu|LrJv-Up(`YAj~p z)L37N2KF&}-=5fh5?#Z8(9~xc9M#9EuI_9W08c(1EWQ7M?2|t&2ryziAlf z-&g5fG#L40^fbH}Z+sO^)e3Zm8__l2if+n%SPC=W9W09#sdvV5I3DfyZA>j;bPw9k ziMx{_(m!c%=GWX4BCd#jL|URZ_Ca64cSUDl8S1OC5*|SZ&VO%sLpHbX zjAnK)-iu@7^;1ZI$;5vYeDP!-5q>h&N9%XsjW`qCWZ$C!97hBF3+*`f17RtOp_{H9 zX5c;O(mjLjl{x4{K0`OvHl?1?^I0v`#nMRZSO86DcML_bzHpnInTy4fp_=KT9L>p;U09ER@lZ?H3-L<4I$CO!4P z1=kJRQeTAb=JV)_r@+JE_dySAnTbCmqQ^7wNcd~Lve<{}3^a3R(E!tuoPP(%g9cIx zz2KhDk~);FNLeG9rIXQP*m3ll1We*deYOIjOS<4s8lejJ`h zBc6?>@YCp4^!lFYK6Eo4#_ISBdMb*J4?jvPqbY8SPM{ll|3EbG5$F;=f=)E~JOww; ztLTkO(MZ>z9dC^8LIe8_{WW_GeO3R0KKBQ@SJEbg=dZ#J)UQP+Fcj_Y-e?lZL^AO- z1p}CmM!pP{-h=*v`4*kQ(dY#%K|S}R&|!7-{-)^t?a;t)Mo&Xubl?YL`(s#| z`ZJT_pZ`Ckp)3s_V|P4`{w`=XIds??-OU5gKp#K@oq!HB1$}S4fb($?j>LA4hfHjW zZbP5{8jIl%k8@6qBJOud59rP_dYya&Di zEIM%7)No&ZG(%<3eyd?2&wtZ+p%>c0AoN=>DRl#pqnm9V7RSw49)Cq=T>Y`<)J2%vPdTD0MG&VNO2Y!e$ELR0rBn!0JReSY+9^mKfH2J$hw zmRq9x(F`3&GxImP+jBe{CR7UTzXtkzlV>^q&bU1d4tOiNsfMB*jf*!vgC3(f=>4yw z9WBK^xEjq^p&8-Slt$|n&{Wq$ewQQ~p{J-xY;TjKU`OrHnRSmB`d}mK{o?i4@LB51 za27UwF3jK{`rL8!e4j?wILq^4;M{2cdC~g{qZ28P?uleM3T~R3=y`9AW};oJ_eCQf zfX;jvIdqkCgqY@db(I1k;d?_lch|94PuMn}+N z_`rO-SpdX=u?LsGZ-0Ob-6SG6d zxub>A4lANFXoe2d8SP*o`U~h0G@#k&eT&fhK8*EkXrKqt-F_MkrZ6_e38@1AG*FUsBoThTj3r(cRt~U8*P0)35+t zf=|%Bu`fx%7sSu#Oi!XS{R0gsF)sv|4}FsrLGP=NW}+p!BpuL+OpVuPp)-9g*55?? zeHY8%S}cLdpD7qwu2;gEm&4-JZ^Cjo9NhzRuq3XD*MG!H)U&@DeoECw`{{|La5TEh z=cB3rFxEGtnfn$AIGH$0!IWG=2fAv0_y>{I(GG{99Zf;kdOkXnW$27oqf7G{x+%A# z1AdEc##3k}{zLCedoBD6iI-#Q@Bd~|xPc4rqBH**P0?xG8)(- zbVeJ{rTiKz<34mR<(FVKv&jpqp|s zdf#j`Q}1FeJcyo#{BMR$Sq7U^AB5h&1Rusv(Qi(Zw>baq<}PoARP{n5?2qpD(P(B~ zh|WXTbRpWoDs;dv(EAU^`akGixMERQlA`E1CD8jSp?mA5Mai&PhR|TDN5vZ_pqu6? z^y@VpUF#Rn&9@Zo=tDH+d(ps8VCvW|4)^6l`zef0q!_xC<)U?x@j@$fpbqguSM(1Q z{m@M`79Hp@bjB~D8F(8Va2@)aa5p;hU(uBRhdy6mN!UBrqnoo1I$m-J1&`Ie(XnX6 zPogQChHkQ1=mQJTKo+9|u0sddkKX@1*1(g|qHl-mx1bs5jTtyF$p8Kyg<>?kiKTEW z`eHeU6S4Tx@Q-K~p#%Po?txs(Lg3e<0hL9UsA04#`X0Co&BPe=z8UC*7Gf@c|F586 zsyCpSIDp=GEOi5)ORP&h$2%c~EwC*0+tDR>3QhT3w4Y_M{zbgL9}WB$bg8l}4}lfJ z>;3+hq2Oj}g$~>wz40NehEvd)twU$B7Y+1O^q<(C{oSyuGthtXu_E;f=>0uo`(QNi(dhkC(SBY+19&&O z1zo};D>(lKaE=Ba$nst=ADWS(n3_p!?|`PV7dn%NqR*j$yc4glL7)3yynZZRPhS}_ zcLjR?^(#65rm_qTMpP5+xMjTY4y-`^9&}UAL3j5y^nH=`e%RGH(dY7`Gp&qfq79nr zp0RxbI?hXI#uq1JVQsvy1C9J!G$Uuw8UKfNe9fxxU{$o<9L-cObn}fy_sDbTKugdi zT!RL*CAJ?%15Tcz(2_!q55mBm&oFThJK|MLQUa-SP2w z{RgZ-{X9BQ@pa*+Ty-=9UC{BmqvP~VQm~^T=%#o89q4g1fS02S(6wKR&TJjJ)}P1v zUUY2_M^DD1s&jJbS8_@jy^(vfNYEHKSX~= ze*tCQ5cbB^XrNWm=jx&Z-xRO+L6$g~7)7BE7bc=>`V$t#v*^HAZ43{VKtCq6(cf+z zqQh_o^(p8sFY-zFIMqcndnY>Z2z1j7D?bqM5i2eQp4nkkdW>F2Q@sT3a3lIT-j1&6$=IIwGQ4ndqR*E@1Fnglj@IaS{o?iHFbYQY5W3r^ zpnn>khc3xRbT8~gckOYs!z^3Ej0>V2mqcIPP0-UZ5WVjabiilOO*|VNZxNRA{I8|p z8vcY1a0;DSj;$d@rO=LAp#ybCI~)<)A3-zl3_8F9G~ku7z8xL#Fq*mF(EBf9>YxAT z-4;?-8ht^uLI=DZ4eWk2GY?~GCh_`g^i8=W*4LuX@4$!fI2!OB+e1diq5(dS{_%bR zrvCH)pHeV&htS9}?+5`DMBjL2(9ASO@9T-qaC~$&x<^)^1Ac@q-ClGlj-Z?K-+2A< zouU7dn5@Kw+7ujkFdE@lbY@f049rD4Scne%K9YT~K;OlB=DnewAI(UzCIw$Cx1lq-7oGVNXooMy_IG0ai+KG|^b8tk+W*4w%8f2r zA++C8Xh03n{yL-m4-D7&{>KZ`qOYM3tcq@pejh!L27387A(h3^wXct+xH&rT&FEwqAAa_FQl*xy8G+J`i4|Qxf#^5mQS5?`V?{iO z25|ZQ&~Hif_%=l|Gze4w{_lv`@I-W`7r5aybfzDmf$c(5{VN*KU(sv_LWc#=%~=e6 z(^Wx_aRW3n?a|ZGJ6?YPlWv0X6g*A~;)N~fcm989AcxQge~(^vFr4EIbmom>y*WB? zKP-p$pucusLIa+U2Dm)B?jYyi2e!o<_QeawqUX`IO+OS;o)ZnI0QzDo7u&0&nQ4d) z*al5;N3{Q5=)iZPOEVJf=Z!<0e^dMs4W?)hy0%Bq2T!59_Cl=ZJ{)&9rgk^_25f*1 z&28HV1hRx9x%TOPUcJw+rlND%y>(Mpci5>8J zG~g=Vh4y-A{U&r%cSGL;cSgrVr=k-`&ZA%|SE2)aj1I6Jozb^wCVoXz{C70{`_OS7 ztVDa!Snq@e-Vc55KD3`l(4~9|9q&0Lz+_?$1#f%@GjI+1z#%kcCu4is4`F7-(PLK; zz1|kRzaKjAaCD$?=s=Ih>(kK*&O`58mb%XG?~f_?YxZ;WW3mMs;3=$+<$nyn z)L%i{x1fJE%zh+2^5Pcf$Xdyn0htUp(9Sq0ha3GNg1Ndi}%bC+Hh;8`{rqbRvh) z%$-P5@SL8HUiM4aEZ3o_E*7nW&agwQ_eVPzjb>^Rdd{CiUodZ=n{6|?N%x^Y$r8VY z`|4pcs>yZ~e8WvgBVT}axGcIBJ!V_b$bUpP(;4iJHBW^OpTQfb&qrsv307=(x|WB~z`jRkdfNyd zK8ilS9G&3$=oTzTeJ@t@{Ad0>L|z4bpeY(iCv*?=KvOpyZ^zMC2@j%gx}0Z2VENJG zTN<-s6ZHAkcq8^kGxHYudEbjk2Rul@2Tn$RM^p7Tn!;@7LdpxG4;Df*l!4By8k(7g z=yRRXP1qO5;RH00v_C@XuR+Hv@dxL>G==gsxRzbfUEDo76zy;qc}}|A9-e*oCm!c4ArT$I(pW|0kS|a%g*JG|;hVAkU%`n1k$rWMUZwBY!{odGwp; zar6~>0bAlFG<7Zi4NK4weL;0cKdZyhui-Q_1Iy68vI)(=9`q}E42ygI(=LWomqt72 z8+`=5@#W|$EJ=MgHpRcuRM-D6{D(S;C+Hm(k#E{1okIC%UFTpsBoo{*t*ma|o;!8dyX0__jndatGSaJ?MJjn`$*lKM^90yC%&!{+!j zdjD5w02i@5W?YsfF%a9K0ltT+V}^bU(sE=;l)w_$9or(OA(>b}p(YLM@Gks6OZOe9 z_4EgD{At{KCA5^LZfWnW(%wru(V!t3Xwf21B_$-9b7`~9BtIiEA0=iZX@=!*k$hDCBe`kin-8o)tx`(1TeTIxXRg$D2t*233u zCH{nte9q-*sXwwkk83Dbx*{!c7!P4-_y4+FX^Cg4_!OVY!k5R~X^Dk+Ro=AJf2F!M zUs~#ar*#$!Q{VAQ)&dU6pO*S7nv)8orM~xXK}UG?RcWb@=@#hXT!qg4``8rsVO`8q zFfDPN`@bC*4RIR!X}1ll;z2akSqp{5R|#FD&C&haJ312WXnMT=EE>or%*3zJ#hJBm zTIz@|iPpEqqz?|}q6E&4u1ELhL3Fi#kG1hnw4o|R(o#Q0cSP5~L^ObB(01NN*T7Nq z#LHVWEioM{p;Px7I#quZW&hvkjbdquhwwq1iC0{mmiqB{G5W%3bemNx9u{YREJgWY zbO7t{I{Y-&=gADu)j`jXTcQ)uFQZG)Om4_bhRFBFic|5y>?OhjC8PDx1Eni^LJo@c zGtiMPLj(O34YXj%uqfMNS;}M3OgxRLj$?U$k_%V+Pq8BHn($z8G^O>>hm6M6#v zgFc_HbVzMUw819m;_Z&EodM``W24j1qj@3v+%lv;KL5G!EZ>8U=wrMDze5{7i#C+4 zOfWB6Um})kqa$vCw$nb=cSA=w01bRPR>!B&jPA$OfB$ou3+Ln?Gy_+b4XLY!ZnO62 zF6bZ2qtJ{zgpOn}n(EcDek&UAr_mE=AitsmD_AZp+7g)h|Npe+!bLR-v*TlECYGRc z`V!{AooM6-(T2{(`+uS-&s#oxW|WQAKv#c5G-JK74Gzb4xB-)%OxY@g&+Xi3nt1E`~YoQrwUXlIpjlooSaNLi+ z_zd>N)#ymmD}?}ap#c_0r=$ux^2X?U-O(xOgRc6a==*bH{bKaJ)o8zORbv0!;65tM z#8I@NljxlOioS3~t`ZKcu}LnR z(^s(^?nfiL5X-r$hEKV==x4!gSOMptYi1Kx#AE2EV9sj6y67AaLO(s%qwk%?_E@-j zIJ%R!#fur}$X|@UhK}HEG(#Vu+vrR5JKnG8qRdt!EV|3lzzd>NPz7zT0h-wsvD^iH z|0X2E$;1#YTvSuh)INqTs+Z6g-$OIB7oE$K=r;WgO?B>?VXDfb0k%L_eQ&hg@#ts7 zO!WPi@lxD~sh|J1r!M$HfWGiO8uOuVA^*6Ra&7U=Osx!RRU z69OoJ23#H8ZVk~jGyq*YvoPtRThGN%{2Wbfi)%y5`(akf6VbpXp@Geh<>xRJ5T;T8 z0XhXAp#wUBPSJUEE#;~k%tYI(UYGrEid#_OqUee?GyrXQFna$U^o)N1&BVjeh3NCo z;I+64v*1xQ@UJi%9!CTJK9>KEUaZUhx4~@n!Xmi>O?fRebSX7oxjiRV=?9{RlmYBb;)XrR}{`u6A)+=Bk>cn`Wg7oY=u2~&UncMBJpRP04lcovN?qfvOUC>lT& z^nNomfL>^acgFHWbeqkI<=4^7>_jtg5DoMT^ng09e*e$XI6PP!ZLoZ_9y(`j(K)>V zP2q4fLle(Sl1LmTRZj;IG3cptRk!Ld9Jo$IN%nv-ccn&I}X!t*yK&#_cPrY!hv@UiV*Rh^N%{}kQAV5a+?8mi%3>L;jGiOikpnK7NOEDsv(W}u zU|ZaPlQ3)B(C`E3qM41=@JV!0euTdN4VsBR(UE0s7f#T;Xy7H#HBJUz-(r5>b(ZzKmI=8n(Z%0@2@OXbR+QCDyehHd^wP=Rk!P0mTZRbxkBZ=$T z|E44d7aonJ&=(uUa!2(3;8=bDT@z2C0lbZVI_^aS{wdaH>lo%dKbnCe=-MccX0jH# z+nRJ_|EES6Z`^`LJPiHxn}i1TC>r@1bTPe*Ht;6e;660)Bk21l(U0dur%<1U*5^mx zuYk5+trPp-F9?mPa0;5E9o-Zk=#P$U1p0+y1{&}zw8Q!6oIe}O@1d*z0NUs@5y-4zH=DqGITL*LKovcbfl-yU%h1S5=LAK-QU&Fj#{Hr)gJBWHZ;JI z=pvqs1~wDT*c0fQNv?=D-b6>X4V~LP=py+anyT;6k^Ua<=j$2*Egh|gK7T!~#v9O# zUc_#gzgt@B-vJwfmNy`Q^Y6cR4rG_n(aSpGVi!M$Dl9#3x*MZX7~66Rm$Zx&Yl? zPsj2$G{C)RV27e7V*M|%{FnOqf5{DDgaz;#%B8V9wnZ~CI^G|Lc03&&+1z;lDRj=4 zqa$03u8j}SIX{YK@MJ9i74K*CWdGaH)m%7N70?Enpbhjw=X4~R+6n05d>GBx(`d)* z(7-mL9d3)|18Dn4qTk2+zv5lgCvIf_yUK^(7$Tg7Hn0TUud8GE9W<4@WBD)|@VDr5 zf5-aVH-$ipp$AiCG=R2fyFJjr2cQEPeG~iNkxh>eJdTcJMSSojw4u#thexn1{)}$B zLcK!9ilG5si!RcZ=(*81){jBkor(rB8{JJyl3Wn#(KCJ@I+8P(iRpbp zpk>j6qb3?~D>UG~===TA6c0nsk^9j0XQKfukN4k129`|hoN5TW4_S~Lr3+5YT*JIpyC z{Gd=0Yfx^Djd23j#Ep0-p25-BXJ80qKYH|@Kv(spw}uayYtW8HVL5yVYvapkAm5{l z`?p(@VewoxD5R<^nu$8-95##fozaxt63e5|Ih>4kJTtl?`VOWRGuqzQXeLghQ}!F0 z$@JuHA=1KVCaR$+Z;d|KAKe9`(M7fxo8SxRbEh!X(Cx7uY)E}IwEix%ohkAD0(7lB zj}9RDO1yX*P00>4bw|;~^BcNovJDQuKF^2Nw?qT#j*e^)dT!i-u8o;!2A_%Lm(cgN zqU{~T^6vj{;scir2`MXqMqCMPuo0U2zL<$4usF^|1AQ6I#0O}@U!!Z{=Xn3Bp&^jU z=+A`Lp=+QorvCe%ped<-4Qzzf2y0E}BK?fw2->;7jO8e?>=n`CZ{hsbW}> zavRLVyV0pxh>my_x`uY5ft^JMkaKwa{$Gp>AFPXJpclG0hG6Oo2%3p;@%}Wl!-Z&r z@5TH7LsNS)mj6T#wDb{SjZ{F_SaoFX6KzMZ|5F`Mk?J7cn1%+h9?i@~?1<-Mean#{ z&`#(`Z$?Kn99?{q(N+E!x;UT4F}MKL0WW8f~EH z|NqBbT-f1wG_nWL^I#tO;%jIi+v5GN(C1Ib@&$AX)9(%M7e?1cS+t}2=%Q{O%k9w< zvHQJ@zY7;DsThWTU?vW{FLW>!P4%2ueh$sRt7wNGN54k{{TrRioD;*xdQo%=uSEmu zfWCJNx|T*yWdHlZOe$>PNi+j5qMz$;p&cH?O#B6%+kE$j0866{S4UIc0)4*|+EE`g zb0gyYS?B@uIGVv_NiN(jYtcxzq5&Poa`+<}Sl)P0l|&n?f+evXy6EmiJDiEWzcjiY z4e&j5dwzlj_%qs0@;@&8`doNYc(FDbVXIi~j0V;}ItC4RCZT(-NgM9Wg$?&WKOAmB8y=5NNfHfceyo2M&BPjXO4g%a zFy4;!$IbvHu-;eJY&0*73$@G?n+^4fr^Az%%H`uA3fy zfzTIy|3j>bpQ9hsIUeHN$jW}lvXlot90Ht)mR~_L^2Nif{>ogOrow}$$jtDeaVMIY zC(%Hbq1){3SpNmOsE%Q3gy{bN56xJPS>c;cF?8fj(Lj5m&)*u$qmr>gec%!Fg~e#c z>(MFM6YqbErv8`cg;<|>B)oq)I+cZSA(lcr+!*igM7Q6k=*gNq6K|x=4nJ7r#irco zhBmYiP1RDgp;yp3-xB>0=TSb4e%BlJXbAXG%%r>q9oTO4s2x#7Xw z(L(4*OQNg38v0_BSl6Qx|GStASMBTQT<$~{-KXfBA4f<0E85_tPlo5OMyIAan%dUrZs?B&@*o=E^XQ59 zB|5-A&;b;FDlO56^CwZq3!EQ4haSP#KOO!S+@sOcXant+hUf1>=XMX8fgdmvuXrXr zR}~GsD;oF^^n1g^=sZkjQt=!Ye!A^M8~hF(LAGU~;d1B*JECi4F#7ytGy_ZH{nycs z_Msy_j<)w7+HsNP!D{GKv|P^qH$|hVu!EK8NH(J#e2Zo#+q0pee(3#)SPq}XGWa1@ zz+cgJu3ixWt&7fe7c|iE(MQqDtXz?di;fB-Jcf?^xA;Jzl_8L7(T?bgcc9zs0dyZP ziEc#K(&y-Nr_c;!TNMJzL<6sfW@5K;24;|3pSbtx17IvflNlfkkb6j+xBIgU?!=x{I6c0c%F%mtZ zXQGSjah!nT z#*M$wxk{`LYajQ~9)w&aH_#Aq4{uj%IUkQPgL+@8Y1FVk**ecoyoq`+DwJ{V8VALz@ z|Lj~mLWOfa4^7oFboIZ6F0RdJD)*xueT8;(23_@kp>v-7)lkkE&5v%g;^?ZcjjoAi z=`#FOy z(kosMnM{_87cJ23(hnW!-Ds+&q6f~?fuW2~qD#2hYe$7N{8IW~rdilZZ~hAz^2=%Q?dHqaIga3DJ3k?3<%(T-=J zYhykd_|oVGw4DQ(`uD%Tj1}KSf5z0JLj%gQDJ}6Mmc{0l-wuBxx(C*${3w2sg`e@z zBYWw);X~^Xy67&T?-kk{>igm!lqYRw|G&V+xGmw&`%1l+mbjbpt=I-X$BJ0;{qPIJ zj+jY#DK^C|cpYZl8X9hdj<`Qse<#+(HRx|vzrjo_u`LAFY#aN(1{DLSXp0Nc5go$@ zSa^FFX;1XbpBu}$c7*rZqR-!l?eI;kjafek1FDOTd|dQx>_<7VGt~D_a&ar=mFSI2 zcZJ_z3`1Xh30vSV*aWZL9qy0A>XbJ{Ph&O8#rK5m*%_~)yaG$%PBdeu(Lk$y7^W&Y zfeRme89iD*#d7#FrZVtRSj|1L5B2xpdOV1B_`qHQ=Tqf1G=upMq$QT)E$C{`dN5=n z54NJ*1#SNcWYH%R?{U$Yit-<)CFbA+^lZ-gNl0ZGtW3ENnvsX`LEMXGp!=ucQ*avk z+#9ic0-f_K4~38IZrFwL{n!KdV^Q~ina{#e+8j%AV-R-4htLsyhDKiEaA;^Swx&EE z{dhit?)Ms>hmmzgr))ef!FOZ1*B2qvOR)m=Td}hH{|px^u;`I+<2|fO`4qaHihdau zTQ}@Uc^ck|N6}T@{D0x^^(L_dzr+i>(gg)WW{urHp&-q`WGwA6nm_&oY`JKOi+xsqt0?a_l~cq~7PX7E+) zkH^uJxBMZLN1z!v_(L*$!8l8WBfRRzkm?%f>K}xj{maqC^cK2!{zMz>_*3{VC&pt< z$|ul8Sny={1w<<}z_n`+) zzB8eNj%Y>}<8pip%VVFjVQQwKi}z!^1q+`GQ#1knIV1TL7jC1in2EomtGU3>p`lvn zoZgJ3a58#-RlL6qD^Wg!ekc|BC1kQT`k~Vq?Pv&^iAS*^z8Xv>e&)h29#wx0DQ%9< zV9Suq+OX&PO}kgqe5@{VYlR9uB%nSl0dDh6@`U zfj0CQ`ruKXheSRZ|U0G6iz z#0)M>-MV;V7y9BkG}V{?88T84?Vx@1Hgv8h$NMj!f$u>(Jc~Y`|3X;A)zFSxqnWr1 zlRmgOR%}5dKZVX|uD?P94bXB=bgfLquJ{J}evZGxdsWeo?XKveT!MbOZbaWdjRsKo zpK!nFKkR?^dp{~{cm}#SHen`SKo6k8|Azfu1KlOPu>{USJ9r5jpzq~QOHY{UMrfu6VSSvA4)A^Sd`VuFo}T(uX?t{z9!EdjwqYy0EF;u+ zLl@U1^dww?Hhdi2c4?QSr&3xOt?!IJKMD=xG4#22&_(-gs81$x

YfLFc3w+Q7tE zUK)Kr)_;qx-i%8_!!^-{dqt<9YwGz}{uo`Pf1{ZxkuyED#yVk1_x~fQ3l;?$*~e%A z|3-^n7RpW000+kMv{+t^scna;ZHM)EF8}4}sUPV&q4%doSEKEGh$YrY8y49RG_Y6E=RQMI`w#l5SRr2+c@K0=J&dW{fd+mK z?XS$0{QkoRhF=*XT!0NIzZ=Vc;~>hV^M?$~#3_{DM!!fjE|8x3dEs7kRi8tjZ+TV7 z)C=f0rmO|y+KNs@19_%kGQ4<*3J;Kqg~AKN&8gj4I}T0w^K}_Q}{i4&=o8e_J6x17oK?I(K&w;U4;LO<&3LCLzU4?^+FeC zGM1O2AG15q{e28QunHFs+qfQ%q&yi%;jd^rw`GQak~6t*@w|->;&C*ULrSD4rsBKk z+&3>7URa6uQ$B?4u*Ws&sgLVt&{e$!o8WP5iKR-Vr@qz?MeF}Yr>;TibpK5Ve*edX zDNdA0PyH6_R;)$wHFO*Oh#r~Olntx88|J5cFZ$JNE_&pyMh9{P{q)RQE-cdGXrRr} z49!NrVeP^LS=fJt%cm!nQgNz6n2K2y!yN5KKYaedELr&cu9Tiwg9R#wK(|y0f#t3m zKMSxm&p(BJCVU&~FQP|ypK9r;?+;_q&yM*x%l&_j3%AY0>gkCm>0mXwJzCaGPkpDG zjn`7HUMoE@9*3Z3{c(H|E7uNd<_pYCIeVS-)OW`G=%T$J&Ex@eYI9zjp85|N`eD+= zv6~AQM}xY-bvT-G$$IIjzp?lj-bFc2{oo`VO8G1f!(P{gMYaR)pj@{>a3$J)-iDz( z6$exP8He~@Blf@hbz7tGAylDpn5!}9c6txZM8PIu(ey_@wVpzE%K>z?|A8&AK+|yc z_eR&mRP~UC zI41^SbIMEb6+DKHa9+!F{8XDhU^=>ZenKOx(KgIk zC$u~RT`Q|_6_#n2p85&tBkV`HV*4=CS?H0w3C+L{=+RuHL)gA;u^;6LXl9Z};*CqM z58LoMEWwSXm!XUFu^FPm!NrIZ`tmDm=u;mvpn4#1o^EIJl* zx&I&FB0D$cV-9=*FURH4^>_v4chP`8LVsR37R$fJa$2YK)NjEGp@CFFJG>Tszd5=) zy2kRrRGFNP;(|yL51=p1M*~=jzPJ|c_-%A#d(i-n$NE2FIY;LZKru8^)zFdGMcZwP zwtIan_qObu-p++7z9%{b?f6mj#i!8`Js*8N)^9h*3 zkP)$d0#2Yjr5pR-2L6o?Sxdm(dTc8ofh@L(wT7jh+klBU7AAOyR;cFdzN#`g!zYcL(~}a1@7P zi#`O(QMwMDf?xZF6c@iaG*}wVNO^R7RzurufwtEhJxNESQ!@us|Ni%5T=?LN(XHre z{UUk_o%{dL7caXdWF{~A+|_7GtD#d^58cjf(D!{a&V_7WQFKow7=ogG3Xvb4y{akd!FQ8MoGv5CM?dNMu{r%rRxJWI& z{^9J;gPA-~6RTi%wBZNP$mgI9z8dQ{qpSNvG_Wtxb0YhI5ct*Tc~J??bjxU;0qlQA zG&(-G6pd^x8qn5Qe=zzLx`@u84PHP4$vZG)@M`q@sDakEMxXD7rSWDo(5dM8vS45` z%-u>VeBmW@DmJ2#?u`$Aiw1Tco%73X4PT?LMpN7zt?!2hFbd7s^jNHrup8ZGKcX4Pa(nnXULe{K%Ta$T zI<=1==Rh*?Bp04w&!DMUjW+NG8rUAR!~N(tns2Zg<{um~(h6^)d>7imPPBuc(e@HU z!bq<`r?4#g14u(G?suy3@x~%Fh3n7^>_GSRe)Nd`91ZkK^aMMBehB@5X6SEp)n^P1 z^(D~fYN45|iw4v@mb+ka_kSNQGVwmV9-qPrcoI!*fni}=)<(BqPjvB2Ko{#wG?1le zrd~law+#(!7dkbcqHE$b8pvOmG~!F{2y&}+yG7C^|5>tI+sJy z)ZY`!Gtlk103G4mn2ATw?f6eD7aS3`Up=f&ecvP(e!+MYor<+s1wTMjcOD%Xd&$I$T-d=TbWV4nbAAkM z;4C@?e?`;p3D4(6Gn0vCt~MG-Cv?xIhMlp*1P{d<-(Dli2fDLJvO{p z25qP|+F?`7#BOMVccUFnL8s<%bak&rQ~e4$HG9x@zCpL`8BF@(c`h7L&T(P27C;wK z4fOtvXbSH{Uz~{Ung`LqpFkUa37vwC=z;SAdQKce-~TS&Kacj8Z9Mzm)Lbz>G*ArP zF6GgNTB0NB8t)H8M?4(6;6%I$_o1I^Ntp6*PFS{>HMNxE7mOd zndAP@z!m7+Hboz3i!P%6Xyn7tsY&8aT!PK;Rx(%(pF^kSaP&Jg<-eg*kufQ(`l9Fw z*%TRgGSQC0PI?u?H39dzmrqXGVjc5vmC5Kv8Y z08P=1^*{p}hN=Jle-al){y4grR-y;WMRcDQdLVr5ZiId|3`LL5(P*IK(J6cgZTJba z!?ozzdJkR1A4QL%&!5HA_y3DrxTx|^4KGwezi`w=r{KC+-x7VXODy+C=lD*nixbe* z{c3b0rUF0*^bs1^_vlprjj6x?m+irjfy>Yl6-GNMj|NZ=9YJ$+k#Z7A#X&_GVKz7X1QX*3fx(8bgo z9pO#r0EVE?--ibL5SsE8(G6&ZKSZBDlH|gM&!8{I+uwVq2Y9NJLN&QTQzj?w8zTW z4eeku`sH*E+Rm%!Ir0Je{xNjQ{zIR?>fzLL$wV10OksU=D%znV9*mv`6VVYZM(6Z7 zbPiuf1K$|$??4yd$LP87KdggS%nVc3GI|5r-|cvr-~Y#QVM9~V4~04C2p3>ed=hWR zqu3i;%}P()i_6iDu6`svu@O6ApDg?puGt~b+aC>q--Axkl;|Uv+9jBi{u9gNjhC#T z{8oHmd#vAw&ea#OdJD3Yo zG6H>YQuI;uXnh)6;k(hax#4#~9nj|=N2hER+Ri3)4eUV!I)*;?J35f;^TL=o6+r<{#Y1UF*Kk`Xdq266T6}3#of^d z(KYrM8qne-7w+d3=!v%$UFEN#bNGI&-;Ivw0Q%zBXi85;|3aV7@pyXbzx&IB6DU82 z)|Y%DOhpBBF*ZT_Nw(+0hHgUl?_hKUGtm(}jkn<|csHxN(4z2z#_Yvm5xtI?+~0)m z_b+4pZ)itVx)!#f zQ*a3BKk*$pbw8kU`ZGGR-{bvjo(cC$qa9X3w_gKvs+-~%_kSBMJV-X94V^RzDfdE8ws|-VcVQ{4y*&K!T`z1x`6IObE1nI%PneC>DZhm+@gycoa8Z3l z*yr8wF3O{^Eq;S7u+qwK;*G?CluzRg*kx4+U^Nb>eC2cD53#1=^^`xv9$0vF_*L!* z>`VC&Hpg0P*#AAb7`G;5U_ZW3Im`3m4~@6sKFU2_2!Cc<`o-|u>@j!^^;^*qeUGNT z(Ato>*63pHi%!ub{0nDbCQf}RxbmfBSR6a3sK|{|SQZPe3lB6w8|rVFNuP?|U%5Wi ze}uItpF=ZM`sMJ=XegS&spyB;Ui8!RBszuZuY?b~MoBK%28lk{1ZSZm`Uq>_MRa5} zUJXBv_d{3n6s(V{(GR8LXhs^p795BjDNjcOIE1dTU(xnTy&eKjcICqFa?{ZxaT!*? zEog%$(HC>Q5f)h!bR>hY3{HyW=g`IaK6(xuML#>vM+>|eGFAtD@1|ffF^LOP{~T7q zkI?|KZU{fQRL0Jf??6ZX4i3TNXa=r-EBqPpL-+vY1Nb8L*cbxJx+!eqtI>g!$JN*i zZ*hNQdpkTZ5MSlST{sy_z7qmkfsHADj809ycSB$;(QPypyW(ziUl-e)p8CtGrO=af zB6^a}!G5>`JqOaZ@R{TOyp#)1rUIBcxuR9jld)d3X|ydmr(G};??TpQ;!#Y)x#+5Y z91Y+Z^qbYI(F16pXEB+Zi}PG$!;JUB+~!0--O8W`QNw6Ayqxk7^!c&q`}d-|Vivl% zUPCkU4f}o~Vw!=DYz>;RSJ2Ol z&1mNKVjlb){X%jwmJ?e;eO@&6rO@ZgZ%u|Xy%rU&-WF&8{m`?1FdFeVG-XrKRL?}e z%|3!QxC#yE1@!$5XrNor0q#Nr{TOZM8#I6)lU%qsenUIFWLwx~1<{c=MC-f9@~vn< z_hM?>qT6v!%|Nt+B)ZCHpzSf6j`LUo z3+xUN)0}$YP+Ky4@ReM1lGm7(e1ewZTAB-GoPV>e}^97CzD** z@FgFHKb0zrrgC8PPPBuuv7AIRF$0}~c~}V-qM3Og?O-1o=qJ&i&;Sx2g-ql^%gJI~ zn6gS}M~%=1TA?XxkDdcJVJV!5W@b71{Hy2`Y>K{zj_iY2J`w#1&CoflkG~;nAepGT zH_UZA^u@twMjph*Ox6l?#3%NJ?ROeYePVye)RpL5UyX~fG`d(fqwnpB_dmf_w08u3 zzvMyhv;XUG(UFSAXzFLDZm@c>Cgo*V13$$~yyWB1L3#8U1Q5ySU8Jvc8yw(Ts>*(d5#_foXtTh^NXKaqWumV1fJ#iO0 zg(VJ!538!^VsC?#PnS!m#B80nqILId}q0X>9H(X(jE z*Px4ZCz`Rd=-SBkRTybuG$S?9=Nh3?Gzfiu3i|wG$Zkm{)^g!UccI(j7}`MYuS0zi zbVSv014mv%^hiB_Jd7~?MEJ6KC7PLD=vtV7w(}%@$N-;1Gkf=U;l!Mdsr~;N7jC0> z&=G!s&eeDLApVD*bW^_%+in)R&ljR2dKo=Ix1%HbEP5uI_CuJ0qUhXLM+0kwIo$tk zxo|&sLyy)zn2C3y56(t2um}xoCHmYuXyAL%3?9aEcm_SNuKF?j>ZTpq{>x~48_^SU zJ0@##@gWzcH1Sh<;&I50*WzmQg|E;6PNHk#4|H+mJsC2QiSCjH=ogFju{;D_{o{}s zNX(7S$JDkx$^JK$uTWt`d!wJC5r2s;zHejsWW4`dEdPxLnEg};Fc5%j~RR4kW6 zpR0}zqyhTr+2&L-%x!xroa1h2N_)rhpjf^$mdBzeSrYAFDmv#6p&405BweL(@%#6uRuE}fTpw%=Hj9VcH>6HGpqs1$#dba z?XCVf99-X^{S^5nJuwZ-;**$siHoPXX#Z>Yi^V_TLzL(KmY&##g?|qn9z&<-8@w5R z#Ob7<&3S%{MS1^)@H^qwe}&%x&BLbDe}NvwMgI;RH^s@6cj7%++5heS2_0`|jbTRx;*%-@Hz8xFlTugm?MKg68or*uu0RKjJM^+}lsmh1mFNm2~6x}TiQ?mcM zap4O?(0x21J}?W1QeKYE)#X_-Qj4)5n#!xuIj(>PQUfbu1FVLFF%uV|0dGVPsKe-P z`xCEn|6h`oX0jv_nOK2xiEJ6E|0=cv&ZK-4D{_Bm_6$1Z=uFE<{fEV`r)Q)_+$AG4 zcw=-hdN7Sc51d(Opo`E0ZW)?^EtvZA|3h4qrQ#%-iF}u2q<-sF3hPjAjc%*^(T1m^ z4J|>p??!YN9E$f($NO1wWTZZPGSR82jgGuQv_lU5{WIsf4;77ZINIPkw4*)flpI43 zjGxg|UU6x#61wf$p$*@NnK&42cLrXAPoe>DL7zVsJ$)&E{$a)6RG6Y1IYS2Wp!Fru zIje?#pYI&+4@FPHd(ji_F*Ja6@&0D?MBI;N<`}w&&!f*}UY3z4gVmB;7+KHg81%)3 z=z}ZJjJ$?sWIsB0C(sf873(j*JlrpVF2dUAl=erbbOxHq#pwGlMw9PzVT6a#5uZgz z{4W|nu`5DAm9Z7&2C@7Ant^%IwP;5>(RMyZ+xmbi)aR`=Lzk!#MHn4 zePil^pWV<09zr{KGWsgIjdr7fd=~u?Q)>s!M2@^+wU@$5lKrfB9_Fa`NGI=Mc2YT==Ph6u9Ziy7ruxFoN;A1po*Y@m%$R)5Od-!=y$+j zXuy-uwJ{r0zyE)O3sZO)P5pVSj1}^S$Zy0{Am|9DqN{!Z+TdDrQEfs4J%D!n1-eMT zi(ZIcRv!w_{c6Kf!vKyV)2w07ap&^_3R`f2Fg z9zvi04?Sp#6bUC|GqmG@*aMSybJ3ZL-B{NLi-uL(9UD=;3r+1>tdCpJk^POXnH&|UKwI?&bVf%Z1?TrzQ(3+L*`P?5Oo>aabEp&99j{-`trT?3Dz z+iEG=&|BzQ`83v_#@duKiiZvxqW8O?Yime!3a0-3uO(a<;T!0Pc1FKLBhH=~?iWO- zqyoCl+M=21haNDau@A09w_DZ{;rXl3cIu!9Ry%ZRhGXjA|Cz;wBY6t#;4L(jhp`;~ ziEhUdCBqzcLK_%?Hv9;hsb%N@-bUN|0&VX+Iwkq93D1{77kPb5nwqv;_&|TOp;2gx zA3^Uwhi;?I==Rx(2CyFu;B+i!DHY0BqnW9JuA!Fb0XG%R^bT}UA1=lIw}Wh@L&}Pv zsjP-JJOI5vCOR8kRIB3sw_|yK^gA^5|KO#Vr%V_~Q8b`B=vrzU%frhg!^o#lVMO!M z2Hr*I_~Tgq3Efr~F%!#{4forii}Dt9aScZ^`4F1=MQA2Bpy$LvG_Ygn6#SIr!jtF% z8eyVbXdoY&;!@~bHbv*QFJ|JsXoj9d1744&c01b6XIKq?LIWvMKHRU5-tU06pS*<& zQ+yvf_Y2St*P$KmK}YZ-`eL>U!2;3pXaEh+k#|Ac8Gr^f5mVb14R|Tq@vBHb$;AG6 z<5Vsuh}pI;bo zky>nMM`O^DK7>BFB;J1+&BS(eM90t(pGBWfR1QBM1AC*3cK3B9_unHPb6Lc!O z#qw}8qf@X0F2Q7LE`H$RdaPDGBlV}&_oGMhPV9^)(S{n-2o2we9#F&3PraE~2lvMN zX*I+11<^oip&hoyOk98^@b#MPe?LqoYq9^0uy*Z`@;2Cz@>+CNpF~HVsFRWUHC$12 z^~`1>DR7;#_p#i3}V zqp%e&L<9K}-Pfnk#ag&Q$kjM z!(3FO;%%&or&Bj*pm8X7!fDheu?D6$3H9~RMKlDRqNQlVU!qf3plL?xHzj4!%uT~I z+>K^%KNfQTALqiw@NazJl4hZNMYIrlaFjx)qCA?ZM(C<;g`OL?Vo%(NW-M>>@PkN6 zH1JO70H?|Q@Re_O}o(!K0`bFF5XY;5Oz@}y5^D{x$uRX(7C-04P+rYSMOtfJcKU3 zQ?Z=o`cQurn%c_foYzEC+ZjC(`=Ei1L8oRe+U`0egUQ5JE==ji=!<`$4W@St<;&1W z3&!#_XdqS5=UQMzY=!Wko8x3R>x)!FRDStecSE0|nfv%yC(1YnKbP?w4%!d*ECmL~K#rWup=srD$ z%`jJ&@EgpoXoojoX&i=*d@i~@--&*Oc9^YeumE~qlt*_>^;m9(Nf$>uE=<*s_`m~b z7h8*>4OD6+-JPpi@#GowFwBr&?=t(RN1Xx-XiM(dfQkgl^Z@aUgC+GjPpK!HQ`6 zHE&}7d(k{rbi-Pd2jb261lr*r=nZRhzPxYfunjh%dZ z^!e?$2@jyV;F10rslP}34EkQ)0b#LMK>qzZ4iGM!i+0GOP27kE&<9Q7?dXfMunw+3 z=l%%#{0Vf;{D4kDv4NqznrJ{x(f6;9+u^au={Th=^xX3jqe1qwX`zSwxqpV_d zWB!ov+pELq2+Iu(p9$S?I^_x25VH;oi>V1-OL-{zVYM7<;6AMFb9aOc)o zt&J|OX6Sj)BRT{_<<;lSseGM8^2o0UAhY%*5-^Mb`&U;2`wH zb`wJ6x1r^+=;E7?ZsVuW&w>}wwRHep0|oBQNc}aRy6AVw>3F64{~0a@QSmxD@*?+z zA1E4Ob;?uG{rv{sgeNf*TTToC--aGw_o0h&Q!M|AO(@s6KYlo&YiALq2s*aYsL`R_q)O_^)4d`0gkE!j3ezUrKQV5_HTJD7gG8t3< z{?B|ad~p@p@wQk#8vO@NVd2Rkbq&zf-UIFU4m7~2XvZsJd294Ix|Xs{3H_8sr>^A` z_P;Omr^3i4p>y|KEPoXJ4Lui%JP;O9E41VOXhY*;{X#U*_2@x#5X<3ZQ^TUHjb`jt zboI}eN{XC|#Z>_8Z!9;RizlHPGjqqr0Fh+Rkn0t{IMIbS#?k zxtNa6qU}GQbyhTIGS+WE7uAPY6VIW~ zm6{cvtB<~aJ-R0Pqx=2=bO29c>fis~#D!CE7(GaSMCa~T^vL`hjXdWg;km2O5tTzz zUlUzy9noF%5SqbN=zF`+HS;Onj;GN@+haBXbN(boa$$qh(NxYuGw=ka8bSlwg$8s0 zJL1=9$JHJUfepo5DBp|D?U87sIpKg?hE8$D+|XV*t_n_fi~z zuc7f zT@Q3h`lG9U7@CZ<**U@{_P9c|IW=sD(r9} zx)zq9i|rM(;qB-YeG==Bq0j$0hPI${{|&l$enA7j;_+}UltI4(c8v~4r*syY*%#2=asZv0-_d@P z8Bc_WGtm*(Mvurg=!19SXdgtU;#YL!|DscoV^K!pJYI#K6IUz_sjrRRZ-gzd1N#14 zbSjo0nNB9wabZVWq6g8Doxt(<4|*<)SrU%YW#~5BgueHA^knp3bZ&D!88T8D3sG){ zZr46&X2xRb@BclZ1n*T+_rTg3XA=!v%gouVb^oWFpt zt zu{vJ)OnAQ)I@dR$sUL-AZW^XO|DWK(5xjt@Rgc$F-j2@Qzi7&uEeiqmN4Mh~G*kQ0 zhJQf=PhTFUpcooRO>_|sLcgxh#4@;HIs4y;k5S>a%l~Xxd}Yu%Ymd(LAoL)50PW}r zG{6_p?RNsN!z)*W-;#AkpC5-c@e%a7_ploNjINQAE0bY6)m<4H?vB1V7|p~)bVPH| zqxd;=aqdPN_y$ewpXdnltO{O>9Vz!kpL-E)=Y4d_K9BYPCb@7f^F0^luo3#gICMm_ z(S5xeE8_R)TFAFLSQEY94Luh|pd+0XeH#t@6q@>6Yr@&zAewB!g&lT4=Xe07;be6G zPDfYsLUhrri1lxv9d1Jd_$rqFMKe<9`S5-XG~g!a&kg<1#eQcnnHbN7`|?3_4LpN3 z_%fQZy=WlcqN)EC4J79aA@E}8cB+ZiH$Xe;h)!j1bSg)n19<@5rt?zeBtJ^UikGAB zp)VXj7uyLmfIra&(_ajM7C}c+2^(TvbT^E_+V}*zc=w{K{S=zvd~3s0*1%%)pSalz zyboRVi!l>l!}9nkx@az94ZP;1(9sR(_8NyC+0Uby+lQ$Ru`K0$>%#ljp#j{2X6SxQ z{rg`txiGaW(E#2-AN&k`@O(7e`mnllqjOvbow817hWf?wU1)nrbd5Y7>t99R+lFTD zf9u)*cJLz=&dvFFBkko-&Vx3b8Lfgg+#ufXj((^NL>s;n9r?6aUW=}Y9q3dZMi=8L zbXQ#V3j5!YR(&PRc}H|N^hX!p*jS#82D$=WJTIfEelOM^MFTyF266#?F7K;hq$SaE z6*Oaw&_&-V$%PFKjTO_;Of1J#N9c+59-6XW(2o8?7vp8Gg%OrOzuDBpbnJr;WFS_- z@o1)2qhDlRLDyXJ9WET%5wyb}(1!nvUjBNxUlLtxRnf)PA5*DDznrc`NB%mx3--qH zxoD0zLdPZXdhS<7o=+z3<-!0KpsRHmI+9&j34cN7toWN@S2RZVd%x%qbdE=%1DG1i z3(yp=LKpRWXuwC%?VWXlQ_ud(&xJ46inhSYl)Iy;o`R-q4mt%(V);2V@K?|&+l-mG z7wh3!tb^s>3X8TMHlREXo$}W)_22&;wdX^HNR-q8u@u2_W5 z^?Ee0UFe*DfgV`@pzoJ?CmzY@6m*Q`!RWa#;T`tBbNv_t(FM*KtcU#vda zqu|aESsipF-7pi!VhwyEmiNT+DRhk#-xU^HTXc=|Mz{57^c;8qT@z2Ei+CFrasMCT z!V&+0SuywSU_NvT3ZVPD8hRcyMgzMZT{|Pujvhoawh$fZyJ$u}MyK#EtcXSTgkR0H z!J_n^cz_G1;2HE&X%BkTp25bL`C+KlQ8?<5J+zHU@DAhSQ^bxMKp7r z(9GS8c6aYf|oxF0zNvx&97KeeV5X?UcgWlslmN zdkWg|bLhG92AYvw=;Awq#qol_D)qra2SUf?&=J?gpRgrnV6}r`1a;9h(Fz^$|5>{4 zz?-W+faBMQpC2As4JB9h-h1zvJ+eX~3RzJZx0EtUDxys(QrRjRN&_h?rA0zYS~5~p z&-;DP`RjGgcbxG#pL4#KdU^)o&3JRXz8_7tld+!X({MhNMhD&s>)zSX2`o-w|;^gXyvUH0Geb0<+^9H1w~c?QBDL#ZKh? zRN@Q;L!4!Q2vsgDMZGMV<(<$axfY%IP_*M)(Hyudx&YmFFJc3H8;#)K=!^?|5q4QQ zbP0N3(*1uw1z&sx-3?o?HGZ3ZfMonKgtQG-=K2V1gp1JK@Hsl8pRpkp{3>j-E?A%X zENp@AV{^>-IwWfcY)b!$yC~Su7Ib7^pr74~zX@ww1r2$Btb&u!WLk!Xb`P2hN6;nA zaUkT%rD(F&K_}J~-3_DBrMwGMy(w&<-~p8PVAz*+(Ia^rX5iy!N6(=H+khtHK6K!x z(S|d>4Hm^o)T`o6xEz1Pf`@V@_TdFIH}-tT{&(#^|1NZR5bZF>;m~2eXmNDyYeZY1 z2TFHzKMzJ{o{HD!VUqgO=zE*d2<}3c@F(=W%a5c&a@08zlBpA#EZ3uF`R(XTpG6zm zf_AhQlXxUv&wez#UkDvoSv2Ie(dWCP@81yX6VP*KMk-#Ik7oJv=*MU+I*=V`Lx*Gi zKXkiY@_n#6dg66L&yVrwOrJrQbQAji_vm|BkA=T@yb8^=RCfwKI0x;duVKJN(HT}kBUT&DsX^%Tx1$4i z6jQGG8VZhl8#;i`;sZy}ef=*wko>=e21-SnqX*AGOyYEOAkU$peg!>fUPs^m86804 z_b|YszsLPwnhPdZW%P$gBlKKohBnj=&E6i^1IM5_@Bwzi{n!P|pA2g~8U2B=5`F(i z^qX)B+hdhK!hr7hgZ=Le=f(?5uqO2lvHlaLBM|HPPleEz!b^Fs1150@`rJL}E?9`> zPOj4-qL-sfSO$HrAsYG4sd!^pbTXR7^U$OAHS~qg(Ih;MZp;7B28x~u*K4AYX^$RQ z&)^u`j6PrWY-q0&x?dTQs zh~11;@B}9DihqI)@nY%&(20yjllU%lBD1hIJ{Ie{u?YPq4pDIA=dn8G`!@`vIU3qN zXv34xT{07GXdyPlo#>k8{x7ss7;925hqdrJG;;IN+**%LV0quS9PX!4E2 z$FuOyY|!8H6|-ifJM4n4pGDt)AI*s$(1~0? z2b8>s|NgN_Qud;Z^sm7%A-qKGeyBAXcccvKxZ@!O}dApOVOFVigvUe4fTFBtN%eGQY2@v1{#r$Xva69 z@6SbZV+l6J)aMkMQMfcCbleB4Q6Gg_@fo}bpT!)w9Nm7a&_z< zw85%qJB`s0UxOy|5H!N0aZVQgMP^XLvssY;XlS^7ZHe^bvY49LGLb zAb%LhNHqIX=ufcc(T>)jk=TL`Xm`ASH2QnIe*qmxW&!rU2SJ$vVXdp618R%TY#2I| zsb~ZqKyzX-+Tlj@`Hy1#M=VeMFSLV_1;g{r(52~%PH+U4!BmQZXYn$$;ZM;J|BRm5 z`3i+2vg@fG=wjp2hw}!nw~*_R_D4bgt{{Jrrrme;u`dX`vcAXGM9%LSC4i$S%4ftnF3kQQ8Q7@kUJIJ@NYUXpZbcXZ#zwwk59&&o##?)Q80S zBUpp_daQ##VyZ5MWYLU78|;IPa0!}}-(o$?eN`AxD|A3N#QI$H{wsJB{(x@FZpFe3 zZ^P!)A4Vhj89LBEaT-=kvi}EAcqtiXo~w8m`PJw)YJoO58jZ|+G#OvPO1KYgIP29R zcS@r5T4>Jn#$GrJlXwWbVwMtNLfuQGGSYuHGmZ;p=d0+p$x||J7j%a0(2(7YX8Rjx zX!m0hbCwGGxh%T2U9dIYgyV5dyk4qwXuk>i-1R96hI$HmFf2!B{5Dp^qv+b_FB7bc z9?>1phzvmwk||glm!i*qjUHg<(4@>)Hbk@-+FyG#QmKg)no?MVhW1Oe;Y7KRT$iH{ z)ram^-*YY&W*l|yq8LRM8T8n2XxJHRLDq-!n)WE zUqD0t7n*#9D~1l6pdI#)PDitQIU3q;&<@XHEi64^z0W}7V$X)0`^jxfOL!bKzjXa;Jw%sH(?p~|9J|2 z;O8WywyU7WzgK{hz{g-wBskxZ^0&X?LR}4`DgUGeAP43|Bh)j z^!Yb1WoW;mU`J=sNR+M-wpUB^#c}9N=c5g7M3?HDc>jMj!*f;9$aTXcjzf3VBUm4g zM@!ZUyJ=u8_P-r3O&G7O%;d(#x{YTM`KSU>R3{BST zb;Ft$MJL(^-DS7p4LGMR`@bHA-?`8f%hwAtxfz}51DM3s*a-KaCs@Av;Rj1g^tn#h z9LJ)`wjLYePw{%01{sOA)NjHDxDM_2w-g0OT&`ir<~Ha@V-)7YTd^R{K==J)=;w3| zI>Xn|=k}mW^&R>PC|jfO70r+Nsb7WmQx(nrPH3*AZl+)|+>1W=Jo*FUH8k5lL!I(BN6(KL=z;WdtnZ8W&!g?+Z4&w`j)mO+O)1z>Pjm*uqBEl_(2;(O zcJu@K{9oumGn{+b>;Ix_S+GUe4b{*!9gkk0hel{6ImRd^9@M4#J?4(xq&K!?$vcxPL){|!yH zHsKdg?r0(OCsR>0>&v1cZi*&hH#FJqkFLY2)W3@L+-<|!S4VSa5W4>-V+Jlnmu_*} zRG85!E|`4p#|Ms~Bm4~w*#$JD`PzknB+)glj^1yMzTXp_>7?iabl~gI_dh_F;`8V) zDGH7-d;2isVrYoVqcd!R>0N;)*G#m*WM)(-8sKl+Pm6n4c$ zXuqkS;*ELEHNkZ^OdfLekB} zB=wExdtagF#kp?mf6wSEyN9G`j~+Nf(2vMWH2YVhA>NDr`1}rC^SnL6dskx(>J6|C z-hy>;8G2qE!m?PTXP8I}bk|(pll|`uXT}Q~(fYUOfpKxKFye~n%-f?c-iU6e2e2l- zj$QBgd&$u>BuvUsf6D|xuL;e){!dCRbv)Bkr^a&2e7Sx|X zBXk7qICtML!~W>NW?&Uu9qWhCGe38~@I$3BnmehxD7Y=2KxgkZ#_#`n3jSoudR+*4T})E% zfo_*u(Qm{9*a{b*A^sZOHMs_c-EaxoaoK1?G)KDNY8;A>;w6K^fL=lJpR+h!V9n7E ze~cyuhXGxN4xlEw?;E1qs#UCaKqJrt-Ik-!fu!(ad<662QuJG~7LD8oSc?Anzsn9C zWxYOR`BmsXuY@*G6MeB28oFz-8_vV-cm$nkogra=cSLh$7CP{)=)txN-LBuGOPX;* z{QX~%f=SaB&F=B&N8&Lw2~S{ayliL~$Ut#nP*0*CvpQJa{ok6xP`n*y;kW2E95F7e-Gk^1m!bpQ zj8n4kHN>^lJ5LCo-K@7}r2o^(<&`<)21V6w2Tm=tz&C zp+18qPp(P9tI%y(13gfBp;SPc3apzP0@3pBbr+`-^TtoWaGJD zM|YzkUWBgI)98#pMnm~6`utgRfH`gt^&)7!Ji4}x(Sh|skLGc)J_k+8W$5|v!R_pS zv;A8xbi<-|WTgKEgfZv{Cty~bf(|4V>kp&n!2)!xm!NC93QfMZV|^Q%Tl-`ED7qx4 z&?Nrb2Axs1$*d_BL_;|b9pSU++P{fzyZz|%hp|5Xf#yo3DdD~DXrzXsOEd)?_`~Qx zpO5u*=s;5+QZV$pqu<8|{*LCI8fKP6U#NmMTrbu;qf6EYJ)j1n1091#a56gJyU~F? zf<|fuvQ(+WMhcE_Pki8L^gI^ldVy)7p_=G^Z-^#QAGG1yVtpnW>SbtX*P~1H7MdH| zF^LDzA1eQ1`oI5Go*XbK`lBPf1GC{nXh#dsHCvBn{~K5u527Kx=+5w5LA0alXe3&r z_j^Z&qPa94ZEqr`|NGxlDHy^9Xvm&G*Zw(l?cYMP`HSdjG^;PZD=bC1XcKh6J<)+o zKqEF2-4)Nr`detEzQR;%3O`VA=9Q<17h9pB?}PqOn2a|33_6gv(E)sg&g2x@!QbeN z3)~&rOQK6q2hFh-=#pKFMriom?0=Kxb}pFp_n`Gh;{!|3nXE+{{t#W;eP|LMKxc9) z))V)H$X$YVP!%0;Gjsw2;`J%$fF8JqHFV_9a={2}LhE~?$I*_m%m`i@trTq$?GwEP zUAh_Q(mfO1gyzm?Xg}w$9Og^i8)jY)9bpG_#y4RNoQ95cEf&MA=*)gVpF4-uFwcGA z^W7LLQNIn#;tS|f?!xkT5^d+onc>_>HKbr@uSaJ-25opI`r?!5z~07+cmO?cGG~SD zR27|BS9D+#(Cs_}JuepF(kw(6jZB+4;r+qLd#S{I6b$hSY>V%pNt5gT&`@FQOT8@C z!n@I3vJvmbcd;I}dLTq9h3=;L=)@jJ+g~1i8_l(SnEvPg$0(RYXV4jBof{q~h^}EN zbU;lpi5=0%j6!GnAi5i#MW25I?cj4X+kcGpb7=dS4~FyO3QYg+|C(Fi#vt^8Y3LF> z80*iWIj|mWcsttB*XVm^(KRhJFNC-zdc<}@2QUELHKQR?(eHS{AW6|?y2NypS{+=(14yY8mja#5u-U&TNZbRRH65W<-9%BEyHlJ|8 zRoz*d80> zeOMnq#A`9jV__nF(MV53Bb}N{!B9MguJvLxBI}}Wpbx%>&TMD&Fgo+Iv3?#+x_pm^ zWV;G|z6`os8ldeDK%X0fL@dRBfh=U>Lui9f#QI`1)GN@neLY@(8(orZ*b0xL2TS=U z!teZ+=x25U`u-$z0yEgo8vT69M5px^JWumS#wNv!cy7+4Q< zACE&jo`Mc+7CNB0(Z|pqG)vJ)E=O}_C8kWWtrXmDzo8?`@pM?TOR*XCdRPG`qt7ji zzK!nZ&#*N9ghnp^Ga&*+(3#iAme>{>;R84XcRa)Xw@_tqMq)WWf)8QCCE-snJ8=f} ztDntCtit734X=GJBQX+ZV<-F*OJ?CG*V6FZ&Ch3~|Cf+gybwAXil6e_cJ%qDmW7G^ zyet*|=v8?+YefU|aV8Hed@&<29Fr?D5d}mH7A7Fw@M}!rz1z z#_BxSGuCHf4eHyl2VOvvw(IMmemjn#z7zk(CL6=Q$W(t*M*9B&eJ9??^>%NBWL<+! z_(RO3|HSTi<7;$V{EqJPTyKVKFNWo**GBITMn5ulppjaDM&?=cWP1}mH+G=sz;QG( zx!wv(Qy5*^QkbOwL{$pz|E}no48>A75&ftT%{V?FzOArb}Ak4bg3 z<5t)YJE32}73dF-AJC5SzaN&g2D)3?p*b}8efGbhp2Y=2y$Vf^chQq>2Rfs}=uFO{ zq0RC^=qMjHq23YQw)bOg+=Ue|$A{tl>S#Z$(a?`XBR@MuAxU8&I6|N6K2lxm&!)3Al3A!}jq3{0`?`PW)IxdGqJeBA`A^pPu zeQ*pq;#ufP_9FU`*@!ODPIM^_VP!mlZm%LAhovix4yY+VMy< z*{5Ur`@f9BbzJxWZLs9-u$Ij*N&Q~*Tv&!C-|OfSeTXLMNp!{;d%`cHE79bui=G=d zpb@wm9r)Aef%PV)yzn^%A3TjNLBYMD;fm;kEij1#(2!0;JA5hL-;56MOLPK1p~;-{ z)9{rnh9=uoG?LGtky!C5``;VyaKSY{j1DC0zVJZtXdN^eufZfvKxe)Huf~^SeHVK0 z97A*BS2Sn-#;lmXHr3OO++`gDqdGgyNTWFH#Zv(e12LsDLa zwYc5|-7WW`+5Z?C`fcdJ^Cdd4i@yo&Rz}ypD|)bvL}xw`2VrUfh3pj0VpBYi7h%H# z;Ri!=wB9b-8C~0+=z%i|U5d5nM7EnS3LRMP!=at4 zFlERpQSimqXouak9PhHNc_)~`YbS{hxVCg=&+4}I@mbZO?J$@&7iG%uqE(mSz! z08PG=SQqnrp9&qd`ab+Qy)%yB#(n4+ei9u(;bS3$MbR15!gR#Y0dzxWItVx6czhfy z{}3XvJ-QcNvahiwo=j12-I_^u5P0ec&MjNG0}B@WF#<$0yM>{44q&I`WH7gtaV$EzXi>O&(MkefyLebSNVSbf7n&&)dR>zTiY1`DDyDvlm7 z)zO)Bi}#121DFu&_oC0wkM-x#iLAqH`1bGYe;?QqANVx-9eVvYbjFF3pi8=F|7IbhkB2QE){4y&`^Gbx8V2aQuI6%cF_oQDaN9o_q#C*&W!hGqf3x_n1VBW6zyPXys-ki zQeTPYLgH*jVl(8y#rQEAkx_q!_wGOkekVG>#b^gFq7!@tZU0U5JlTTun@Vh_;9BfQ zXYdPpP-Hn5PN>V#j!K|2s*2ukjyBvEjnoKqDQ-t6bU!BXapa&$yn&wiA7E$v7oW_M zVlDp)51jZrtkD^)#sm4!hwaz`9oSH`qubG+P_xiAT#ha9J#?vZUI+)xm1w;l`hF*L z;Mb$?-+}4h|Bq2{X0M?q)OIX^$9w=Y{|WcYqBE?I9w^tKA-@4VQtv?rv<#iV7PQ^d zXnQ&S4bPRwB=u`BqaE%?v;0?dU>W~~_e!JhH9+6%6tCZm z&iKxFe-XM1UP6<1>woNj*J>{p4DBH_7kNmB+ouYeG`+AH4nRA627P`l+Tb>H z#-E}C{vOT#3uyaUvIO&^?-kFI3J=!df-~!c?(5;`4DZ5pN9aJ;q7A)+uIX+xf=AK! z&!B6YFKe!JwpWhUL_4gH?v5_#()CGEu%X+d51`q)1Wl@!uoM1<4xn+iU`O<0)fbCn z3a`f{@p|^`xzZT#QZdQ}nA=FlVlW z-|Ka5@gX{|uV-pQB6jHyVjTxpJj-Xj-lE9Hxk;!f9Mj_$QzcR9uB467Tty` zG3CMW5d|Cm1uNhgEQ7`W7qYb-x~;llMZ5ux)I;c6Z$NY9T{OwQMVBlyU#|2)R1+&v zABG-K^U(pX%9ksZ{(is51-Hlf_(1-PL%kxpkDFr^?1RpD7CP`H*bd*vR`|dCVP-vW z5cM%Q1oxo3q*j4k>3_b^80054OT+gd3+Q7`kETcDe`MCJ&-7J{5fqo%xIL{<~-d zcA*3K0}XAi!eM`xMB8bJCSNyniTlLsgQKZi;*F_jhcnO!%t0ft7;RuHmcpHAho{l! za$gb#mPA8b7d!8Wo6id^8;sy#0xiANv;WqRD`W0tm z<;!!We+g|wvp9E=Fyne?7I#GlG8A2sd(cQMLnE~vUGqa|j^w%`M5r?6cmFq|U<2Lb zjd5t`X2kll=((@~UE^P|GUmE645Ti)pSz&jb7ZVP7VmFBbL|&qI&e7toQvhIQ~`w1e!)Fz`#!v%V%euuk#%AS_0GYOFtn zwzDaj3NP&9f+IeTc9FvxaC#{bGGI8mR}+h^#>0`xu?!VYI!At`7Ap(Ijqy z4yi?2j0Y5)OVsekiA6MK8?@=X&QP!%|vJT5c>Waw4=|^ocIBa zOrer7`OpZYno)27z0eTf6d#xzADD}--E(LIo6#lu5|j7`8i9hPLcJDxzZV*jThM{b zK$CYN+Rj>JpsB>i6#8-DcQj-jONS8-!6fyG=tpTGx)krB13rv)d=_o+vNB=j)zOZ7 zp&gGzkL+pa^K&s9uEzBL|JQm79w3|05pF?eZ~zU_S#I|!TWHSgL4N@qMc+Gxwwu2k_uc=cDR`q^v^P5PTQQ0Ep)**HuKDX|16$DN_M;sg zM`v~c?J!Y3BwfDfmFS6D4jo`EOqo3G;sf2H1JR>&WUSv2>-V8AEe*P&S*sX zqucBzbf&Y>h95&aegm$&Jjg3x6C-4Y5kY~{jH=-x!$H7$MI0YNdQ7xQoN%XK%(4**fdj;)qJNo=r@%k_5z;aa&OK~;YPHFVHy68u*1LpSoKZe36E=<8p{0Ys0 zGw6#~)CezD!qU{6VhOx4*5}{`>TA&hYIx1?WA#2X00?mcLu!Q^nqFSMY za_EhQXwtPsXWSEwz(};gDd<5pCtiO6t5JUyYvPYs3yancKV-V219${Y;^)zma2=-H zpPx}Ml!-dwvzj06upJueKInjMMSp}&k3NoubZxxu=~0T%>WhUmuM`Z>)|J(E+`P zcDM&!x-;l=S(=0aCb6dbzZnG|n1~(>)6o}~p$+Z8B%VT(tx(hOe0}twX^m#}Ky)IL z(E%<%JKTUt+=uCbpi7pe8PB`_3sESGmC+7*qmh`3F2NJAz5;Dv8`|MMG(x{e^EMA_ zT^{e^dUJHG-$w`X6*}O*umTon!Tz^_#uRE`KeYZJCh=wT*X$=)6@SN;SiEJJ;V?8p z_o6wp5{=;NXwn@(-#>$Pd|9gy*=lILXDjx`Q$!8o?rM!qSvOBitg^N3=k)FTuO{RXt5y=aKf zqcgg+V;DfmXgjo{(P&5Wu_3;LN&E+G_^N9{J5AB;+#lT)v(R(oMPy>B#O_c?oWUeF zigXGMG(eMR06MT+(fd!M4Q)mT{w=yh7tl!luXFH9bRy-^=Ubx@9TvR@)Bpb;&r)#T zzKdq%*XZZJx`OEC?z<5C=oFJdFi*F6mI8gzS4z$UmH z{TBR)DLc48!3MAF5pGmMuQx;2a&WBQjXw7rx;xgRGv6Aoe-=F!@BfK*l-VpbhOoL;O7&$_tniOZ5uRRYK2;Yp@FT#vFJb z`gxy=w*NGmGcWgI|2vYmwKm!vw{aeK^$J<#2A zE&ANh=vegkz*KZXYf}`=;t$azJc1ec586PEYr`2{5N)Vjv=+Jq&Cn$4fzB+2HvB-W zFTqOGSE216z{>b1-hipneZm8C(5&1T>))Xv%hxvyq!`*kMKpBvaU^z(*EgaQ*&6Fd z(cSb%yq>#XsFy_})(q48zYhgxIt~4$GY9=@Ek;BBD%$b8=ySW!P=AB&nq%m%-7{!J zD)bKnZ;a+jC-nWH==0;F)3Ko6|A#0T+UL=2w+8KKA13iTtdCg-gaI`|ueU{$a|HVS zEcCqvvHomyCED>Obb#B@iGG9RKmTx>g4uo^UCS)jg}-*I7@dTzxxNKGfN~8C|9qel zy0*9AKzs_v;6FGBM-K|QunSG%BWTAb&;u$lnEn4CmZ#vzHevdEk9PDs*1NiL*AnYeza3fQ#9Hi$`_Uz-bVC?e%Nv-#N9?s+a6eDPBtC58)Gd$0hk9qV1t+_*N@hobF{N>Omz zOpZ4ep)*;Gj&LbDkY#A3-a;Gx8b84A(evV^;UTo^(fz*zP0DZ40i8g%^C>hLvyBMP zr3z4R?MtI;QxEN+3%Y;%q5~Ws>+`TU^%v0wcf{*oqXRvSwv%~Nh*)uKK)pJe#G}#u zzX99({r`l5FJ5+Y7;$B^V=M3-PDcEQKctp5p}K>Ly5vpfI|?JRVF3(?3e zLnHD5dVuXo-)H|Fq2L;xLbLu~G^?*371r!VbVd`fE6zce<^Z}>htQB7jh;exL)OvZ zz3S+$YKIPNB--B{nEw0!85GR+h4IE~=*+jEGyXi*e?SLv9xGyjTf)!sCg{M&UKe>QmjRjYzIDy`_La4H;)b1Uqla< zwdgOWt>|a>aI7E48>wd>7q;_A^uT*|9Q)t3Th0Yvcq6(6o%wcj4ZlJ|{uBD*FKCCS z&}7XRA7)wrU5e6J9&6zu9E5)T{z8|a;Dpdl@d@mIPq;Gi!a%g+p=g#)L?bg7jlg2G zgBQ^TUq|=#UNqF-qDyfK4f&;97(*o#{ttG9E-bI)g?m_ibSSCD2@Gght|8^!*#6kA~~1#5M}fcpuirKhW$hcYFBf zc)jo)>d&GP8FELi^uLI-8trh*TX?B0WQF~^jUD^1XW^gtst2-AQ6e+LEE z{7y8f9*XrBV*NEV=|08|xEGDURZ~NQ)zJwwM!$CbG5wW9BeNJiL0?59@+p?WUzPJG zQD|D&PW7<@_1n-0EXC5e2g~3&tcw0at9IBGoyik84mY3?DSKz=pedRg!_XX61C>QCWdywKpTaMboiADE1W@^Q?LyW;(Q=#0;xYg%x6I44@6+xR*(mxiLd=N5En z?m~CRA~X_jPG|oc^8H+}!=KTa<-R*4T~G8Nx-L2bZFoX-8k)s3(T<*o^;gg(dIt^t zK6HssMzh`%mZso6ge<*%xL|U0KnKzro#8}u#PiXHUPpJsXVHV`TK<4;&%86j{i5gq zN}~g;AFp47N$S0#lTs9HcoBNkZa_QUiO%$AG(u<5f#tq8%(OhZBn`0W|-ZnEN>+5)!`cdqK zTW5uT72~Se;cwM%!27wr7yZ@@oD)vI2eGl=|4kIk>c7H;MEU!}M`A?u87#~F&#(vn z8?SeNASBT&Y{vDacsCxy-gwj8ki1*aCHfQHMMWPBzph(hDS!XZqfnn4ui_v)iEgWI z^Fq>$L_<6kJ%HZ8?wIjVXt00u9<0apmvIdq!`pDt!{HZD{zq~pc2U0uvt?l*^BI8q zzxaY&iI=bqZsW!&^lS0v!Vvnm9?O;fACX-Ac&^0DJa<1fGFSS4T=FK? zaFa-|LsL z6>dV;F!5~og;N$QQ|*Pta0c4(^JvH0(e|=Dmn-oA7R0W&1kJfq&!uuDhEXWFG*|lH z*Pnxnsh55}SNi{@b}P1_UigI&$^qzrr=dBr8a>HA!lw8=I>XY-LI-`(Z^9fja;woJ zeQ&J)m7?I8eZ}(7K@Idg=z+d47LCLs=nR*mNwy8I#;h-fH7|vOsrN;;RpL$b2gZ3c zBBfV^^PxR@jtq~c?xWxcUqBn&fl2%|K9KLFFp$dV0J@+d9fPj@bWGx7Xhb%l-++DS zIr23+kke?##a<4%)EHT!RH7RNkI30*5fn}_8;OxKR6moK*IXa{E=q?x>>m$()?~e6H(WCa2czp+Y z#2!T7`w?BTQ|JIQR)q-E#!l1+qY+3{zJ8HMUx_z`XRiq&Dn_0R$JM3ZbJ7RUSI z^%v3Hc?WIqi+KMZbil>dgzZ=zz26r7$c;k#yB$;R`r0{=(GK^ZOL_)9;Qm3s0c|#f>VA1&R|4zDjJc8&=9UfL;fDR?LJ1AazEz9-{bv%(ROma z9g_PBbcwIVqVE4H6x=S?pa;jGSWlrR-NR^ZEJZuqg-QGZO{%}pkQUn*penlWJEO@q7EQwY&?H=hMrIkB0~;}k z$It=id@re4Uttmtplkdu z8i7kc2pyJ3Lt6)pKvQ%nhoKXjfiB4k^jq)|+Rm{LQXx710(BF^llE={ZUPW_j51IqV(WT9~Elem?j)E`LK$oHm8k%YG`a(3c z>(P+E72S=_=mJ)UXosEA0ggrAn}$R*m3V-HGh2v`^jY-9P3R1^ z#p_3~5%u%f4C{Rqa%3_ZfdzOUF2Pz@Zbul{K(ze{XvZlu(sQw}`+p4uL%tPV^DodO z`7zeBe;fu@2#ridbYHiM_D6GLJlf7wbl1#9BeN78&_;AZzs2jBpD-Z$PZXn27AvDm z(Hm`G0(x@IMjLt>9l$y?QXiu;I*KmMDYTs&JHz``(1Eo=Bh)$8`=JvYiYd3rT@(z_ zVzk4TqMOkMK1D}<09~4M=yuAnE4)`48&a=^{(cyZPT*Gby*Ze~7qBI6MJJkPH~ZfK zl-nITZi~LyKROOQ$!5m-%Q%qw7956G?+G8HS=gNV2bjc+y&)3iuqO3xX!6~MCi8rB zsh--){`bX|Trh+u(UUFvry-j!L9f?D52Q9|$Ooe#9D^>&{pdiS#~QdD&H8`P2o~EH zB2f{#q2W?!gH_Pvt%DA@4LXs& z=)gwe&MbTb&|Dh0Kip4Epx_Jl#tVNdxxNk!KZ|y}6074o=s-`QGtBc% zh(vKTLgmqc)JF%{4wKj&o!A7tn*I}yQgDqo#v2E{K|OIG%(w)at(CDcHo?j`4Gr-t zXau*%>))bZ!T%i$5vqyiR0kZ2H)9g_V0!=mLBVa9|J!h*DjJEd=*UN+=flM4U1;{+ zkIsBCx;r+Y1KNeo@C3S~c@Kq%l}FndfG*YWL+pPan7{>pnLLDsbR!ypz35EN#QGKA zg&&cP(E$!eBX>7e!R6?CU!WbGN0U3p;jna6~9A&P#i^P@*^6#bLe}?qhUam(dX);?=?mv(hRd>M;wf)t`x>lScge0 z`F%KuTA`sGfQEWHx)e{LS^XZGGkejFPNEYygGQwAv5>UI(a2UubEXM;zdN#`8*YlutRs5AZ@fMboyg7TE}DV1`*idb zbl`8IOSAoF_P-4t;(}}YGkPB6{3Tct4RJGcd$mVHIRI_oR&*)uM;l&<4s0np^R?&z z-jDY`jrBt~mFvI#!u~HoVbrhT!H3X>7NawG1#R#{bP4vw`$y4%oJ60?^;>xEYBU$B zVp(h!uiu0Y^fol&ccbqwN>T8I)o4fWqHDSfoxzvrwmN}EDEII2FBs8n*B70@b?7%> zI(l9#iq|)xOL7pM*tzIMC&M4>Qw1n^qaL~qTcZsRMF%nh9r<{ygwxQaco|)~&1eL6 zpi6ZWJt2QVJ3fQ9pYM+_<15h#)kIFvRH6q3*L)KC;CysOOVAmAfSz!N&<-6 z$P#x&m!bpNiaz%pI)Jn204_Qk>X)MtDT}t>0A12nnDRy!3WjJ1*2KwZ60Jr(E)A3^zK4)Y8T#vKmEo2H~DV)JN)g} z{n(QFhu95spAUcke;wXS{RNzXl`e#a)?qE`JJB4;{!jS0ltl+V2dm=>Y>EfaT)67r zunQ`rC^&!)Xvl`6Gnk4-;6Y4hEqdauMU>rM2*@397+i}i}6PFw0t(C22N@2^3>jvrw={4rjyo+UHA zq#e-vL(qZWg(P7rF*_6z3$PqF7Naxx2pzy5(TlQXrbBrddc6Z0sq4@gjzN=l3cAKm zqsg~1);~cb{A2VVtnU6VkS#NPkhDVg>o9brlh6SzK-Y3Jy3Y@y=R)r6ndz*qgT<)# zMVIOhbRhH4rCo~-co){g!|1@Tyol%A|CKFZ7xck#XoEA*5kHURaTD6X_tEoMoqGNp zndv2JiPmpJBk&U5gdbvWtd=t~F&AfHWxOnd|Nd!J3T-I3rng}md>0K}u3VYvY%Pk{ zP%n?}?~49t9gVqgKDtexM&H|#CzYAr z7C&>rH93ujI!E5{LN#noy#e;YX-L*4zCd&32pXx==u&0;FXT>9^fzP!G~1iuBy5jv z-!15Sds7rVnU0||KaCC~XTFe>m!mVOk6o}gdgd=j8`u)-pQDla9o^R#UmWh2LAPfE zwEZ6O`i*GLr6yBwCQqSjyAqw@9(3g2prQL7eeO4OfQkHJn-)MjtdFg*E4q6YViGsR z`=6sr_zRj7c?zWOrxNukxSjf;4c~_*(_?6set|VGXTh*$4X`xzq3DTsKN_Ls=mb7M zv;RkQ;Mod=f#*e^zY0yh`dGmI-;IJH8j3bBEq#L@AecUK(ShwiXK(IiW1t@E|n1Z;7U&52DHX44Q=N&?Ec9%h~^Sv^PF@DEd3PPZLGLOiH5l z`e8mTx)Celjxy|jM|O@2CQY`oVPsdJ*XyGlwL)LK9_?rX+R>DFeHK=w{semF ze~j+?&(Ze}qsjOmngf@Y3nyZ|a;eZzb1pd2&hf@1^uar^2QJ2I@eC%hQ~AvF|Lp!2 zbZNdt*Zy~Gjb$tFyCEwlA)0(^D}@1miRM&h!3(4}69oGYoshZKDA8|;cdM;liU zOEVAc;3;(EE79HYR;=&A=cyk;BYAI)5P|hriuykE{lC#1$Xzo;rW9W3{%=RY5DmkD zco(_^-=W*+A2itt)yho&%}8;~pk69k8NFWzoq0=4FA2KehoA!(i$-pGygnP#|NL(e z1z%hiU4yRW8|aIlpf4UokK$u!NH3tCtG8Ov98T ze42s}zKk~TDtdhjzKFZg2Jfg78oCP|*!<}8=<~0l&%KWhcn8|yr|8lhK_~VH`gP1+ zm;LWqUZ!q%uoapdJ<&BDg@*PnbOv+L29}^}yAI3YmzczC^}>EHiMG=WZKn_V{wQ={ zccM!;vmX23gXSSFWXC7tgGGq>J^$WUm*;5U|2#cZ*R*Tk+HbGx#jm}^|bPPJfyU_?efp)MQ9pKyX{&q|! zGdAP;KUf-@Gz@=KOAVu7$B&_FxERgem1qa=MZZS3&na}|c^ic!DvcgAt+68Bgs$zv zczqMv;X!oCE@~XMX$7q5{_jJ<2Iit2tVREj_;I{`5v@`oNYzIN+8t})JgkQAV@b}R#90ci?G-IT$Cc6Ks)H^`YqaAYXk7(T=}BJNy$Jc;R*-$11jC|C^o7xZq3% zpbt*P^hnW=z7y}Ci1%~14-Jn-i_#c2hjI2t_cIGfOV;NL_3~=Cizpb{#uHH zBi)6D<~MX?IXZ=U4Yb}K9l#{Cg9YeJUq>Ug6aA%g3T@}&&LR2Apu49j`uz1+8*f7g zl3EoD+oMO&4*x+LF5e{_6rItdb~;wYm(hj~UMJREBetng`VlzyNBm4!zA@u=try<`i&Tb*>D_s z=1)Yo^)$4d`!N0A|6D}D9iBi3b^%A?|9W!1q$o_L&<9^aKff3C3SYzgSdV&f^c?7it#Aa+$5m*hu!ezSbrPsXeau6;W+x$%X)p-6*ZBZ z0Uh41vz7)*gtyswY{{;p2=`ZMZ%04V4M-B9P5A-W}Gn$E&URxM z$mM8qH$n%{7G2Uo=x2KZro8bug{im}lUQ|l2whin35KCFzXgrNL`>p6XeggYL;X6s zB%h!&{1grOQ7n(A(ToZ_QTR+L#|B6;nbI)U%$+8VQG4y+ix1y!P!_7w_pSO6J5d@^r6@Gx!kyUF z2hr_UXhQH>Y)$=1d;pKc`q*2;{nyd^7tr@xObow<7od^Yjh*n4Ntx;Y?blGef%*n) zi>V^FWv2g`?hqWpg&o)(tK1&E8*N}ecE-|ogl#wx|IgJ~Ku4K0Uw;TraCaubJ;B`; zcXxMpx53>lxGwI_;_i#PyDjd{_q+4dykE}0&Kd60-PKjMqlA?fuNfA z1sDWon&`aEHUM?bM}UfW4X6x9p5**RWL+>R<4uz||KoT#%Y;%=f3m}DGpLkb1@$Hp zW{Pv+Bn4w~ZVQ67z=~6yeaogragApD3sgWOXE?pH+3-84V^=i9IUQ|41@w0aO|y!J zr%b3uQ)W7)*aJ3U`~d6(7N6ymWDBUSPchpeSQS+1`hx-BA}}3z2+Rq-1a+zc=QvG0 z0_?zeKd37`i)XHVz6VvCUZA>uHrN=v59Qz843z#@P{(oy*ckM@r&6&5-d#vD)%?t@BE;YCrr|83q7P#4B$u&m}6 zJNLsFP?6jL4}sr7?c2M=2_($l&KIGj!K%!U1eK{9AYU1ITt9gbqnt~frf37Y8IJ(P zc)5))fhib&vT?j+&U!9T5jO+lf}=sb3(g1CWLs?gJSfLsz#?FxT2}#e410ol_nQZ*<{Lnrg6p6Hin7va#zLU%v<1~;BS6{T z2ztN%KgWX%egb7E=_+Sq2~Z!Mx`2vs45*uM1E|a#2fh11b$8O$&S@zQDv(B?dS@u8 z^?5db#PB)jk>O}-9L4OQy14=<$6alHtl?5n$8n#HZ-9#EBdAoTSnCii0Lo5NP=rT< zF~J3(H&dWK=v-gR`4_WD>zoTG2$Z2#pw9m=Fg~~r)RlU~@E52zqnzuV$cBS*xE9nM zf5FBvH#i?sbAqzh0+i#4pibM~4IYQleI`UC%0`DsHc*ka0b_x~K&5mBSQy+1is*Mx z=RCnC=W{>>@HgXGU?XtmW+(EmpzKH9;t&Z2wXdFs2R9FsLET)Nz_#EWPzK6ubxN@k zR4osJD%mZtBj~ryNpTlY21kQx!hN86sh`)H|Jb&uU;b#&bY2 z>2bZ`K^H^TUCxFfppM%*P&NJo>fNo~)xy19hzWfHJTURP&qym5EQF2*lXujH?*7167*gHeL;i z&=F82cnzxQBJX$Jo-=_#_;>Z>!3{14<@h+Ll)V8Jd9nje&GLh~NLqs`(J)YkcYq>x z5!5Mo1(pY6A9RQ}0#)JKX7IiPyu2$&cA2mAy$&WZ#3Ka3qpfWfC6v2ON{vxPA-W}omm*XMYQKyD=499?Cx(ie$ zo`M~~c*mUMHx!h?L!b=Z29?@xpsv=W#~sJ{L6xK>sJHELpzQ4fby{8>_c)GIo^YC` zI+&k@4xo<5O0Wrd9;91c*-tv(5$y)@?&bOn4hFNHax$_Jti|{vSPCqE+IiQU28!5i zFaZ1sYCXB&Nv^vN`dtm4g(v5_rbPcv9pfDwcr58Z^2$*$8!!o z0TpS(^Ui0$abQ8lkuNxrmooGW;6agX2DRY>sGbP8=rm(BP|ed9R0PXG9k-)4{{>Vt zrMl!0FAA#mqrisXGO#lk{&E!WKR)RRs<&=|l)&SPaK&kw0^np8T7atc7jU-5SDlYg zu4~T6>*nBa=4XL*!4%gWVtqjwo&_p{hrkA4lp9gJ|J_b&ums~+H=TfMf%A0!LwM-P zLe5)`qcva=#xZX@r=kidgL6UMY!5+29OsUML0}=q6+kuHI8d3|1S+HFK^@0GU;(iF zUFX|;rZ|ZyTta zG~H9@U9%rpoADG-CHW5&!N|{?54BlA&n6}o@Sqx3eICWN4+kDl%~<$9=NpYvK{Zdh zmrgUa1nV(=2p*N*E5~qz*Ur0LCU7wG1woZyAE=&6_QuIXC2$hsxo zeRFQI#h_C76>I^P`|f--yAjj}kO)7Vo3Ie5Ug!<#3SI#!BZoj;%_)95rKtw$KA8mS z)SL$OX7meGh66mmoYeOKbpIOYv<7j;Q z;SS?wpfXh~jK3=-B|QrM!}x`tzv~J3cUXV#dxd9gIDc0kCN_X#o*}%y%MCUJb!B=$ zUA3FQ5#VX?G*~Tyzqje!5&d0l7*7GU|0k%cH7JrZZVBph!)#Ee(}Fp9sw_nTF*KpoG-U|29W zsP+6{EU*|Td(}bjzyEE)LpUb-f&SniFa|gdl%ctx9R369_*@0`Hv7xQfl;0L(x5J& zj-d9>1m$Q2s83e^fC<10Hhv-0`+wMIj-#ZYHs%FmgJr-tV0};*N@q|+CK|4_`BR23 zK<@{P=>FbsP-X(7pq~qj2NngDfm$|h1A4UJ;XyT?ZVT%TkANa_6I3Lx!KmOLFd7&& zhGRG}s4u;OY+S;y9w@tAK-n1!#s}wv3TSH#{{538x?~gY4P(W0A_)TJuo|e8HwFX1 z;h;*f9F(DdL1pfx;ZLv#$=aZrusx{Ku8!sL_kM~!ZVJypIrs@G;^eWN zaaK?@tOCkWTTr#^3o5cHp!Am-ZUdG2W1v!g0aPH5Z2cX$oUxxLj+2sAV00!9fGWv3 zP$_-_DnlP_K6YH^SfvAHus$eaZ9rvW2p9=m1V#i`fhx@=PdH{qaCW zk{Hy@ml+g+sbDv75vYjb#dl7L8`OFxP{i|re}QGd`rvqQ8TbO!+w|lF{@xq#B`E!5 z3H|k+;&El-p)?b1!93t*P!YTY72zka0_c~>-+KdA21RfycnVCC*x&n6>M7WTan>Zx z&9?|F&Ny{a$6;Ggg!_QH4@QFCpZ}e}gPLIxsM_xZm8yGSBk(uaA8eS64PiJ9U`fWW zlRE@+rf>)s19g9t167h*pzL-A^)@~pRMV~m!-Ho*@Av;M^Pt*&&;%IU?esv9VM$QT z>x0_Z7L=pTpqj2fsM3rF)#Wn{*MKVNeo*@^f@(L- zVtN+To&EsK2>Pe=Hi;`YC;~k|IT``#l&k~QOou^b@FJ*v??LG$Pvz_@2`aO-K^1=vfTtG^8F-ils(B8BVt5VIo5?d!UF)CDseLe*opEDO^V2{P-wBG~F;G|a z1DlVS-XRhfR3-vJ?aK_3F^{Vn4?2%sKt;OIh3xbt1IalihPys9iRr`&gh+hVE(R~2Z=>0!aW~b)WK-IDnD2C%e-Gp;M zKk#o*y|Nq(3vLFLvF)HTbRJaKKL%BTXjvS+Y@kw~3sh!`+PEg@{r^9j@F2$n!D`?f zP|fuQ6ytdj*&D1)m&m13WbFM}ff0#qO$KoRo`a`ZER(k~pu`B&4_ zU_zJ)tk)f@4H9l`}bm7*dj z;$4F||B8Gh6Jqo?_y*hwDy6HkIf{EhjW2@IdkX6K`~uZ0DY82bvVjVuxQ%OoBGAg_ z$Ak44&j%IYcMlI@6d{LmGi3m^PzDsk8lVie1(ouCpsv#Kpa{(Y75RFw5V#vu>3)D& z!Bjb&j8+Ggk@lc&z)_&qJC>k#?X6&Ic9YCQy+dxB0uEoAC!w?#b1=KSjz)nq~! zMQ>2490}@*+z2Yd7oeDjE8;|y2o%xuplVwZ)G25IDsx>y*%=1XWUh5KzXg<^qlTA@ zcpQU|m{6)df;uMQiaKLAsK|pr9lN47UkPl?xDlxHydTu*NLtL_`&X~UL8W{GsAgUc zdNTyd-f=K2c-_N;7~KZdy)VHWV8Xwg)KvhLx{lxga5AV1B}Q>4GdV#Su4LE(R0;Zl zD%BKF4p)I{)?J{Q{3fVCJ)dnNb_u5kGJ`5fIl~U1BAW=x;C92apol#M3xQEeI)uxB za?}=7#>Rlvz?q;*@)A^L;+OJXgw%1m$ovD2E$C^}q>GUHcIH0LCiq ze4!D(jPthK6jTXkgWiZiHT5n~8M+SU1mA#a-qdB)Q=I?WJcvLCP>#2N+Heaj2EI4U zSQtlzbqw=>inu(e6t}hYp@uU-)qX9g%pM25KmT)& z2W|Wc>RiUJ2dDs&RB?!Aslxe}p`1)8q6)Uq2vjq+1XZ&xpiadEP#M|)Dw5rxGIZ1M5vTxO zfwK40FnU#os2dc~44^U^IC(02RnH zP54Ww0rj9qa;%@KR7E+7Id!-367QNHraOH<(1{KdViY1Jj~V7nFe^pdy|JD#g1% zmE=4a4txNr1W!Rl`WqCHD7Bog0}_Ec6}3RkF9vl?H-fTv1dNG)*G(SOEH6R5Df|Xy z(66@hozduE6UKGHPT+2EE|{r~b1$3#A2R+4P7A{^tLt=skNQq2hJ!j4Q$X2W2&!aj zK#!PhvxOs|YIol7j^Tfxj@?%q$7B%noW_VNfM156VF&P$};NDpQj|>8~){ z(!jp{-_L|@veTeab02hrUqBg5*wEkmHyQcCx{RlR4Z$~{8?4yKY1U4l9F7B3`@g{e z@DQlpdJM|`S5UnYy|KrsNwLQMuKi5Z1jmC3n)rMFPuHbjEynelIvLmuDw5Nn3_S#O zyuR5uPBW)x(t~nX3RJ{(L6x|r&G!a#F&^u&iG!e0c-im)sFc3}mC8uXo$qqR2Gvw` zK}EO}R8t-X)wGvEW%4bU6Aa(NS&bI;D3g#TRM&&gCh7Alpp_AUP2yMLLNjQ9he@>2P(zQ zK}FaP>;ldPN6_6-TRWeWrna$r0+ilSP#4x?Pz3$jI*y}&I>zz9++cQ4sc#47*ZE(} zgErg&bsC<4qrgv~A{p4u-}|@TKR_M3s_l9IhsYaHnQGY4anu%6se0Jh1M12h17-u4 zfy&f%PyxTvSm*zbO~mQsq%<|C=E?;sRpmkTLLFQ03gX{26qLc?pze)Xpdy=R>z8c( z3Mhv!K$Y?*sM?3=%=sU~LsT9Lf+3&`T?W-e*Fhbp*I*7XLKo+=UVbn?5v=j^$~v1LIV^{9OaVDPTn~R&RgrPfj)l8!_GlwgY4L@%R37|AAnA#vl4{ z{#)@-xv%pV20Oq$jK6`$z;6AV`yhXR$MFfUA@i9AI88Se%*uEb7zEw`bt?P^Iv-Y( zf_gJ63nrvyRY3JbTl}T~M|gNp*DnLro#$*EX^_*+*+5+|mB7pxXank8hYWU7{x7JM zz6Yy->4!KsW1B02@C=08A{CTN(` z3$;Mix)Z3LnFgu^7r>NYk>Spj+Z=4ocm$|({{~c`QARkQ1#>v)aW&yV3?~?_1~W1~ z4(cnNk2X#`(s5i8RM)oyMbrbv2iJpgbkx@GgR=VxRH|c-astT)7GPWl^#1(c3?7t$ zGhi0bZ?r=o7?ffIumLz53;@4^J;20coWEe01Xg8y8JrBJ8|&}d3GM_%w8uE-Gva8l zFykqpdg}t%(Zj>+@s2{|3C==na0>G`z+kY$M1SuO5G(-IWG}%YV6sV0%^QNM^#)MQ z_5-XB`b~BSHv(1r!C)tFGN_9y%oNVQ?)Ydt=)5NZH4XxG6BYt>Ggh#14I4KHmD2X0 z-k!&S^rmY)s87QiK{?n7ssu+t^~OU``yx(t?53T{`Pa>ql?mNUML{W)1l64_LEY^` zK&5^WDE&jA99{->+^&Lh@C;PbMxExAt|+K0c_65OMuECXLqNS*ZJ5S!6XR`6=;qr8 zD&j++9G(K*;44sFAAP!GFgvIS3xYCS2Go^W8`O>23{*4r1JwgFKxJwbs1p4PYX2n< z4~pm>D2MM&A?^%kJ_#tr%%Dn>7gXe>KxL>5s7P9X`oPf+R6qkk?HdV-;8ald7lR^j z7!+a8DIS#aE1(#E2K8BM}PppM~BP=sR5ahfMSs0cF{76heV z8B{9kf{L^ysG7D0wZ9vf8SD+Jbjv_B=V8NJphq?Q$b$?eoa<~%1?m)}2Sq3tR0c|d zBGL%dY3K^N!4Oc9?XdL&ph|cNl*1dKKFGWWMf?xw1|!eo{QL2cVV-ldWd=p4At(Yv zK%MU~pf=6{WoRj=eVafXtF53SzXpovLr|so3Cd2=`4$+cK+}Wiz?}0r|9bOi$b@dH z9-uCqDPRD&5mW{)f^zT-6oC(*QtVpbWF$N&M+reSo7=`&L1iX4C_hC&m8zD_*YWV6 z2%CaBX5Bzt7^6WEmgd~B9sj*0pM}g zX=Bf09;6t4kyC>7ptq?&b$?4xwd?>YwcS8PG!9fG(?K2I5Kvux5|o1*paOej_z6@X z5f(f5M>3FJ;`@I*DB@zE9M=Su%BG+kwgu&2D5$2}2FmbFQ2H-H>3;=9)V0LPTm(== z(t(=K28IRmfQ7&UU~>KAjD9?*iDnz_0d-N_0~KKe)dgvZw?SAeLEh7Gp2`zW9Qzf1gWAZH9 z^W!D~^I0%=m(t#ae0w!La!i3BSIPK4;7d>+Iew_rNE9UqY0LhqT$&5L|Is-U;URGp z5)T9T^p1l>H1$K~hp0D@^i*QEu6JYvjUJIhF^Y13!tqnJgUN87Jp_@P#Jy+k6a-eV zFOXLg$fjg`$Vh05n_u+lm9%Vp;O4}ell_(vXVv*LDkR@SsE=i(1karz+Z@9$iM*rA zjto^FA}?`to98pm&{dA0s-e4vY^0`zZc(U9F>#!cbdSa85GE6c97yArz;nS!*4ODq zW>DDp+*!#`AFk>nnc4D|t*f~i`r@a6PB_xV`1RAxffU1RR^pk!I5RxAlFUnRt;_rs z_`I=w{K9HiDrZkVS1~f>lXn0G%g1AH`iM zV&})mT}j*^bJcjw)4LdwhJ9Dq-&?;vw+38_5?ogt_GfV-3oB4;M`CkeU?WC5L9nhR zYaes1aL^92_1IUHB5lW6dn20){hTE6AL32PTw&JFvF=X+>ar%;gAGX*y?u^hAu5@z zfa887O|qWW{Y@orL#`V06WO?hP5H^pJ{-Tab0Xcp7)vT+gC8&TN-$YD1L2z3UO;9f z4G8dwn}Tqj<`d9D>>u^8xE!OBJQ)4ND;H;?EXEE{;!#8zgY`8Kh|5}i=GL=z82w&u zzAU3Xy5XcKdUGH<5#swvucSK;`E{{g`NsZ}%*gOk?VLV?X zTMdjL+o(TI`V&j*gI(>|{dn5To1O5W-F!*7jm^ zEP+Xe(<3uYFDaSjr@>vfCs~*H6!(Kxw$1wk&){uj4!hJDK8JT8pwDKB$hyQ z3cB|o_Y%E(IBi9vWhFb3&2BQvt1UUWEuVZJsIFS(p2sc zYhAWV%2AMgY~Sk)U6&chrK)|Q)QcE9kdMCPDX$%@c&tkzVDCM4d~%LfY|pDZ-EoOr z^|!M!5PHeHe}`q77uoa->KDycA)Oee9&~$Xl z@d|^pZRBbKIqnXz+$4UT>6E94fA|dN@}qqu+l^TW+1SFkAkMeKvKj`;id+Eihh!uy zm3&803fsQr6fwvu9>Cma%b?dNe+=e~>}79ZiZljNpCCMo=S=Krq2FO&hp5(JMDiSm zlIS>3%cj*hi~{3^Zq5XZB}33TNCvh->=CaToR1Y&S*`!TK~Hq&Q6`@p!ImE#u#>XQ zC&10vc*vOe`Jkm1L}pn;J;FHSKNu*&a}FYqEG6otkjZRkA+g&#?b=Nw$06_lCsiPP z96ND|^f=>H=q$JMb&;SdneAT$UL_I!$6&A(b+5;U_&6v=WD_wslT8bW?hMf-qj4g$ zSu&IUxPwk>GM17(Dra=o^Dr-2PV^rjT!9Gl@p{K|M%Kb%rxW(#;`lr|W5_~7{S0FS zoHt{#IL-0ajC8RBb&g2dVqmpJu#kxS(K`W|dhC&m#z`~AL#%|(EMJYHyMky}&{r)W z>XW{Vt6*NO8-iZN;ri>*C2>33<+NZ$( zO&UhBlT4ImQ)I?JF&2w@NuHD1^E}TdJ7t+aM!K8g=oc@axpigp;7X5MspKK+6)_^@QK8dJ5*lB5M>)P|0OvIqE zDq6}v(pxn{1_$wJEjB^NA%-l0d>prA7p4^k1`s!usg3z^W{R&jT!}EVn>|ykt%l*& z&EEFJA$fsr8R#`s`(dXzx{~*n@Rd-AjP65<^}=`2F2hNEk`PNoNJ>xmO~l9#Hm+n& za+a~=D0xUhF>Vs)OALL3z%Gc7Cc%5$5U0`ytV3=x*PfirM)whGL68qNLNVD>Bfuk* zyepCQk#6s!_mBPd+=B?JG4l)M=tNWlz4JKqNnA)3X8t9FCGi+X$4Mpv8fk@z=jLzC zAXLzjKZ5ad2o1$f4gH!0$sbsr;Psh^))8SV6eRI5(#ay%cs1+KFt*0c=L5*K<@J_V zJ6@7l7+o1k|BNbcy&uGL63VuoAfoephAet!(4U*AOFKR5g;;52t*y$Q6g6dJ^0%svn8@ZP?0+o+JpL6~of2 z4=r=^QRe?sa7DrKTRVx(c`jq*w5c&hx9b6E4FSo1<|H#2Hzy-IA({jt{Vdthz}FD? z$iXQL;W7~6-)(s%V=5l*(E?>i?J1a6A&tRoc*rXjnw2y;i~2r;+M-Ww&xKQtcmUCyzY@3fBfwSf3W{Q_SBTJ z$p=eRe}dUyygFj96uNWif-Ai0Q|Rn=jm~86SoW^PURjbf*y8iqOQN5{3`46)UbuNz zCa{dkIKj0r$Ez^*5|Y2H3ZKy(!k*T4!`&rGb*=iCs z0)a#L2@laL_-O;FG|UHjFp?jorj*PlrHM2=J)?hgGKcamWr1(|xe~KU!guOjh26YU zL$(PxnQ{zc-X}T&`p$D>D^W>G+tPvvR{PUNaUfX`AD(gyBw2A5$r?Nnn=kRI4O2-r zQXP#Ahuz+x>kp+VhtuU2`5p)jf%HK3>G}Lc8CT;VlB=B%s~$8m#JhU z2wRdE1bdXe2>ZX1c{uJE%tX^2hGAsNQ3&Jji8z>du*eu(1wqMr#xE>GLoJ=daNL{M zH1;K;Jeg_MqD0Bx#QjhHf#7Luw88OBUQbn8NbVxYRQi8-dSYxd8)A^sDHwT-Q^^v> zR~gqQk_hNLGUwSb@EW6wAn6bJOXx^0QwNu*t+iS;#a5pApeME6Hw{C&kG~D?u!rNJ1d99Vgq+I|!k@JRgMcBi61$HXe53 zknXLJtA>rPte?c!bzU#sG&pPf^fkB=R)EUYmsmg&Zm#ge#Ya_ze0fgPd%=8Jb#3EQnKA1f0N>SaAeK#7RSYi z6Q;Us9cY02;&^VN_ab~uxC8?4N z)&em}Xfx}{5hP&(@$DeqO19@2T<2KgCa}K`6)efRgFl**j4K#?NBQ#y^5u{9ZdQ^zod72J6b%R9tb~#MmqWA#hhuz6Lgy~~ z^6A4xQpz|8wk{%=LZb8!lJR^A48E@gP}(3xxspDunh?gEu~ri4?B_+ z*lNUjQA_$4vK9>auT(P~^GEbs^N;anJ=d5;Ao3GztY{^Wk$NaLL2o@|rlNZtqn%0l zI_7h5kctrL5DbQg^bj|11EI)%BWrz#J}z0_5+G}2i&9o|dmqU^(gK6oV0{DD{6vpe zqLLoTc-AC-MrZ-XQ$QpU1peSW10*Du+;un)5w|8&xvC<1l*=y8IotPb%>IT_2B3)oTpd1h~yh5p}HCR zWhq~uf(w-L954g_;Vd3|R$^czQNDwmBrlOQb(3%6c2N86W4lah#JriiiF^2yDi24@fkER4U8nEQ0IJt1JObi%9(?JxN_T((xJs zrD1m+PsLEGL8LF3E5YWEq&hvN$rH%2!)QxqE58Q79t?g^u1FX!gMJst`DB7+ArPBa zAh{4yr9DK`fM^@S_A^&o?6!ga^91h|2 z4_QcrjiV5s4&jt!#wXFpTp9vB%KUOjdgEV+;uaXqgOOw^M&gk6`($7=hE@`-q!ye0 zMNd+mC?ua)`wyd%X6)&Yb4g{Kd^Mfbl%pVl9!Kv5WHzEx5g&-h<;Fo6GBDB%Yj!%! zKH9}{i|Bl^kYb1D!~rM`Ec|r>t9Vg#Xvs>8(=<|2n$i~G$=M^u8l?U%@sVIYWTR|W*?Hvctym-Y25MCZC>FA6jbtwQuW&CeTGIoVoqWDIVnUQE6%~_oZg-oT#3W&HYpop$i8GAWG+H#88|3Z z`)I8{*>8s7$?X44f?JZH56pK)UlP*|Y1@IGB*;`9L^ZXN*qlt70PI|%m zwkfwIic%=`f_XQb6lJ^*V$;#r&&TX0@x9p-#PdhXfE>p`|0rEST}wk{o4yJ##Uv1&N=YA}x1`pn#ie14B0yA##sRH5i|VoMbewl%)MTB)781 zCo`>di|COZL|nvboyAV^726*hLW`N3j@=Co0k404`3mo*#;}H2?Lg`!D@c=1qG2Eo zYTNm^u>Qf1B+Ng?(G;iN0JDp?~BMMpB8tVJcDhc@02j{L8IO&^@E zCB5~)s5q9)N6F#ZUEZ;Y>^pBf|StyEqm{#c50 zNqKBlwFdL!vP#R|JJz^O3G5O3b-7+4(5(3LL~*kjmYpfVVqTJr)VK?g)PZ$A41{&l zwWN3^bLqiC5bQ)FNt%-l$q#Hu@~9b^I|A{i?B8G|%?9b&>?^~3I!N|)^Bpa>^?zlH zb|6ZPp!bYag`m&`qX*cOfVnwD7y@fa5$2-Xv&P*qD5;HJ03=hgcE)UWC(52=?~RqU zAa;JDvxKpJ=aZ{A5lZ4%M0(x;^Cvd`%JUzHZQ~Uq)MeC$NGg#rH)MN;;S(FABoE0z z0i0fEEd$Yq;Wn&KNeV(j5+CQO(I169Z~W0%OazIpmcqk~!*G`8U^qRB<1D)PR`b*l zni{J9Gl-}>j*6l?2cx;!|K6M>Gn<>4?}?ACWMvPp4{|R5nQ$Z-ZK&snfqV{uWhSD{ z2z!4c(A%0!I{!l83#yiY>;HZ(Fz(fAv%&kJHvV|VznJb31$=BVzP0V3}nOMKI{Gk;B0IZ zuqK}kvAwa%@#)J9_23*Qqiz>act;1vH)6wZxWSrfBsE{G4u(iLUVkw7!<>%^>C%P| zRCh^O23}>bzlVM-PCWhKQHp@yQh|fKO5t(~YcELhEzGwk&Xl~ylE4no_=Af-PzelF zbo455<%d=j*6Xl#hSr=+eBUWrcDkXCn`dHf6!U*?D15d?VKG&S4@aNGW^*c?0;iUQX8g;c}~fuzrhX=aPfSBtW_YQWH=uPRtG;qaxMuTL=dqo z8~LzT5gYu1M%OR0H<64f{U~&;iq7y@JF)k%l{*QkDFs_g#Rs3RkCXn5n1YdzQ7GS6 z-i&N=^t^wDA>u?B@rSJBJIU-#bS=ozIw~m1O=aTn{2y(U5F2;QVOPuK94c6Xxg2C9 z6S|j}ALIMBjtuZ?E?wUtGMI|yAOmf2u-nq7^*Yu9HHhE{2I`}ip1C4{TICyJkU9g= zTvCbaCb8I6$dQ|Y_0{D zgl6l^-a+i~$vv{}sSe8m7-@uo6{PCFP?45(b4x<559vzFdP0mA0oQTMgqE8)mi%o* z^?a5-ki^6GP=Z=SfRYMi=wC>_W`0f>E`dSH2a=pjDriD{zb;O7tiV!=Uj8*@=f)@=Al`my$j=Y&+C5ebg~#~HY~ z45u&fuY`U^VvRwY__>KiKkGh>hk=yOjUh=xE9F!wa1dj$F`5J%fb)-Jw+sd)`i4U= zdmce%8kv?9AOVuQtd)XJelUbQ@8b@Q^!4K;sg7oW@o=I!vTV%}9UN&yc$P^wJ>8at%T`$kJsZki2%l`)6amdsBwE z1o{A5KJheR@rr7VoW*fH%fuoxet}36;qWz?c!FMaqP$Pq!xPmj_P!*YSk3xooZqrjT*=LsR0OdGJHsI+8Ohp4#*^IMp(_P@y0Eql zQafnUn*_T7+p#?uPG(9sNq-2@`mUWVI4cn9s@TMO0!XyQP#6d#rYybC{|NEJltQwQ z%}+7j1HDT`Tf(yX7a5$7y&IHu3}hC#`2v&up2lpJ1ev2KDAmHKBq0tZaWV3ZjXBLp zW|5$d>q%=i$P{94B$_p{F~4P5sLT2?=7LFiR5xedvKas|H?MsBs&ub|Y$!-BIN<6+ z)0uDALwe&GM#eL7i|1nK@Egos>B&GR>ywp~ue}A*!s@;Un=jc@0H;~lUo})FE%ohODp;H#t$I&0d+yJ6Gik>7hd%802i_;5s z2?e5?-JH$~fM{{bmxQ}@iWHs4b93v5^Zyd%a!L7_mVo`#hZoZNukfzvt&stS%^~KH>?4>0;CDGmG)#eZU zyLPi-B@2DcQ4Kbo#K8v$Nn&`JI?t&wENMs?BBN82v=+qh5sd!Bv8zJ~RzUO*sr~~2 z$xE^k-x@F&KgDl-{yIQZ{5j6F#yYuwpf^u4v2NV)!{h2ov32O;=2wJCeg}Y>kWWgQh!#>fgiX zZ`LKJ%+?#@uDKk{9kLwd#&%lfmJ)Ax<|{;|W&go&GLqAQ$pANBb{fCs1a+AtZDvzj z3%on{gaj2~{u)UI>-o0}sRHu6#Igd}ggTJ{Ty z9Wiu)^RSGpjj#&HP#!i_cJp;H)qcmCfsExf1|QGxRhrjXvf){Z!-6O+v6KHBc9K3QmtxH)ec0Fn$4zXa z2b(32Arzf{SWAWyk^b09JGzn^wtopxS42OfmG&!HTg_{+uB@}9CL3&O!M?UBdCfKTOS=fZ_8`M66jipnTei6S_UVG%f0Y)AZ z!CSYMxe+jMmGn(;^R<$dLi24H_oK1=cu7vvu$yrFi0p;6G~W%Cu_)-N3iG|%d`uyG z;c0Y9KCltD%Y6@y3z5Rou&N6Y$!+W6#<1^#g*>6yry;@zcAQG%EXej~Umon#v~g^^ zpj$yODtc?eNQ3uHqHe|b9d-+mIpQbvwkZ=N^gE#1(*p--s?{ieA_JWuR0iWd*+C@p ziN1?Y4wLQJpN?p&6HL`m8Czq-OS1n1S(RL)9KGnRzpzmz9{*sanVZXo^!qqjqpc0KvRlOb4F0nfQOm)s#CbI4>lH9V3D!(-rHJP=}b zI5giJ=L4CS^v2kKJZ~i#>CuUVvj#>sEq1Em_!RcXVf#Eq2+w*TFG(fuZ(`&jI|kaZ zsX44Ju%VK%{hN)IEDJqw`UJAYEovF4j`PV}A>}kcc0sjN0 zUdSbb)HI@>74ZMHt`f{W2zb6=a3ejH6sFgWZ8YZcqVO6+hcNKi%|%M&F-hki$edz4 z09$KKUuGXcE+hDzz17(3llKI-mFRO4z)sWuo9HtW;5Gdwo>DlF#9-4+4o5pucabK$ z%0@Se6>;2xdC7gJX+j z6#FHqB8sv}0u~lxus=?+fLC!E$n!@C^uh30=Wm_ThbsRtI7;$@?NR;9%@?#J;yzm@ z!DBln9^!K{@)a91TXNq8d7C}Uz{3;S&B&9r?9isE{bPVJS(@D8))k-4@s; z#*M!7zEyQZ)Db~1bXHk`D@9Bu57r^h7pAQn0&XRL6b0d zhPCV%kYs0Wshguse6Jvq2%=Ltf;VZ#SL|6pjBBh8P;GdGR7otZBt|L0m)7fN>A&PNakOZ@->0n#!(#ht;DG$mz|R6 z7C;~7R-n@reZy!H}dQP9)PI@-OKc4+)=) zWGrcJbNOk%=jQw$oJJzGk`*{>L7Pser!Hc9EGVf?5RzF@ssD6XoTM3Eg6XNRWD8Ms z#&I$uaf3dPoPv2iOXU#OYv8z+In#PrGI^5uD(DQg=+Bx{t@p&w5jSbaP8^8Eh(Z0! zlkQK{q$v}zc~!VWaLb{R|V)hNolGhzL>`Kb9zZR{QCZs|qzXV}EgtX}7m%?PZ% z#mj6S$%e^nY)h6>V#p`gC~HwR9YaSF0|%8MpOLvOW_*sNW+tWRN3Tdm;9N4n0@L#z z_6CsNBMI~KCcy<1&2l-9NCNECbf#4C$m=PhElSka*i@V6tr!}M-jk3$o&6Hj$;k8r zRF7D>{NNs1{?YvgpZ4fUKC%5eF<&zMEdQq)x}%$mJ%>Uvci}^52kKIuS`;SKtadg} z<9#`u(we4@& z%I3waZNyPd49?=!4#%f0;Sty$g}L)2`XzQ=qt^*%v&iT*g6RVKWTw8y-xtNBROviU zCb6*_(PSb;Y2AE0=jBg1ekcnVkt`*e?sP;p(!bu#ap85Il9VG5f04#!C2TfDuR5f% z2Xe94-CqSeqnJyGzxH&BXQH()+gyG)NMP)iW8?$M1L(|!L|lhXy+wcAU}GQ~`?KEB z(%Ogl>69V{ftLG z>e}79HWO@9TB;&5A7sztscD>0BplOxTEW;lA`Or6s1T2iqr>d+H+#hiq$s7?irrUa z;ItbZ%HfmLjZt_-+WJxZIY68E~?Lj4UG?W7reMvap1-SH_y3 zjd!zN1cxQT#@Ndr63~N>jfLRTPc3B97gGZ*K~Yir#w#ydBv0X5j98OW$v0p{TB@p> z3zM}~P-(@pPueoRkA4xGC`XK=NbVcIwEXDtiSjl}3-$mFK|KXHNdvFHnvxx-XJa-BdTLvpIw+C&DvlAXdLihr+k zV?r|DqW?m~U5s&BHv6Owj`)R*u3XlwzWG(8R??F7WRyX&k$vll)J^IoOCZ&my^HDI zFa(jBb)SD%Ln3QVyPQVJ%|cdZk1H#V22jKQ?6NOTx!Pe=@&(-mMErwn?P7kJk?Kok zGV$Dja-M{Y@o^0xsN1$z`&Y|)F2ddqp*nQVAd|RX>I^p2cAcH(HLor(qY z#@~>aB*gv(vmZjqy!C&@Y+F*3QAT|lBJN8#0x{ssqa7x7=o8b%kUzveMS<_(9~5o3BP4-ICJv%3z|1k5V-=asb0!Q2vCY>KvtT z7(5KgOmuSqL^9f^5N%!+vZyb2Sx2^4)=4!9XMuW1-ZZ$@ChGy1>y6o&#IpofqcA;| zA}p~zx$PjuXRac9B(d0&fW4CZ^!8j1>p8kavdVH&A{rvuD4Nx+2~4MGWUe^R$x6DCP(nvft!uwsR-2nvxe#zD#c6CjY8hi zSkqn7k5FA^@P^G9Fr1jhB{Y&`2FV?YG0ARXX@H?~W~>{eqY_t3h(6@G3W+>HuJ*C_ zI!z>*fwMc7zc#FYBR82XD6RWZxXpEysLo}SE}|5bL?t9aUpQO)F;?BpIc4n? z(PlD2TOiVa=Ul9Ho!<7IT_W9s z@y=`xEsHQX4CUr*loUf}Fb1-K*U46ENKb|2RLGSH7Q3%;{2$RaWbHm{d$BW|pu*yJ zmtQGuqvKIbgQ6r0m*Ft7nab8woS6#leR@Y5m~N5;mZf0{^#hP)fd-(j91DZ8kU zBq2Wjrb>_Svy-hYc`m|ba30RFc$Qpcd>0p%d)GN!)g!hkRO&Wnhp|_34*g}c)f(1g zlaKY#>j}-wHV`86F!Lwne>c@*<5pTto6TfBuRsl-xzpq2PY#5lGJwd zmoMbyq4TSsk`bGS?S0`~3A0-uy^Ys)UORaG!)qt6UAzjD=RII;OIb5ao@37)YOsm< z(2~z$oXy%;dSE|spP}|sNOKNiz2(r1?yAdT3X&QJu8Bhi40h^ZP>Sy7|N5PKxz|$ z&q@I_?=}Yi5M(D7#^cZ@#|dIFM%H2MBAbsuv>?W2TkjO7=#r<*J+lO?MQ=Cb^t^H~ zmmKmtEP&PQTY|mNa#Y__3vW&Ph3v&bxlsV;9p7;e&2NFpbBCAFa|B~%0=uTxmKG>b$8adf_r4CiKy6jy;wo`aej716$(vIgbG?>&% z>f#_SC8&c^9>$A!4k6-27(2z>Qpk<~mqX?Zof)6Vi!=VpSn?9RvqXCm`;tuf=z)(M zIBsm&%0hs|&&|hTc#K3KihO2ZvSno;O2_P?8qemfys`#r7vE*U;S%(cvu_)O-jL$I ziE_Ig1L-UxV?Jp_aGBhc5&~Ix9+Lq7F)$)&PU;H7Ftjv=SZ7M`3a3Nu{PiRgfkeB9 zbjOC+HTGABq)*-uc~eN$rHl#L-<8+@m89szCD1?m!XpI?=VNdcQTUVM2&DcQ&Z=7K znppHcBUfNv8so*-bCzi5VW<#JTA@&a{nM<;{$srawo5WTOAyEC1)ro~e|+|g^T6aA z2IivNi2Cm!(h7Fu!}C0nRCXoe8*GqFCfe|1syz|jDg7&5i+>zQKFmBeT~W4M%bmWNOe@TZleB2JbO$v$hIlCZyOwS8pd-ax!4 zeIU8az7-J2ihbYD@)d{lSAz0M^zh!K(L_XY7-N%Rxt$2-W8?;@l;ng|9otk7_IWAG zIhapmPc=%hf$+gLf-xD7vEEtxe5>}NU&+i_8>PIAy7#Z zf?WfLXApm9J=qK&4Ve228>kJNpWCk}kCc4kOCNYR!VjNs1Nv{atDb7DDyJk;nO{q?A z2#+R#(~Q7+0+T$66-Pb^b`v4S zn?NWlIxE=|*>oc@KZ49wC94CdR!!#TvOZ3k@%hiqz@O5EmWHH!3>%;Es)fUYY_5cn z6qcnlL|faA^78<`1!t*W?WP>GN&-q#3PPU*n4>ya^(c$wF2lSwfFoXT1&cg}^!xerKdNGAEget*=(f zhGgY5{>~6klf?A@F=}{(1`NaGEtD!-SAe)i&{%c(? zNAEEn%v=o0IS2j!E3KIKhx8&c_?>{Z=*{j9#zM*z^l@yp)8*TLNha(e3)|D>;cmd<>1j zkYunM=cG-t$Ld{~4WT6qBv;tliBOF?#d;wtfh{w8Bfy@aH}mXA28o~d0#ec;l!0}W z;5G~kuxT}E+6KwHH0n2A$9TSg;h!|?Xd+wy@whm=&e|EuHJ7Yh!SEX*PlSy&l;;9O zJv7@qGI+D)o*d*rfxVbeUe1krcoFcQ+Ssxz`gRfy*1a^(Bey>9&kK->YyRk1F z`^S)sk=g^l0r(9j0o$n5H3DCb|HmZb5jq!1U?3*$dp(d;=H}reFZ%KEy&5+)Ntomf z@l0laLF{EmXCHe}t=o6nwc7 z*BVbsz}=R;^Ds zk$ho&9_ts_IF)21;`JAXzFK0W6A=>i3HBGxZjiuhkbaK6L(I3NQrB6_fW71p{7DcC zArn6_mD$YVO)@>p+9Co*TU!QBF?Z7DTR}jQl4O=dKM}7>kln-FoKQs8(|`Z3uk!$p zs_OdvOlFeFB!u4U2_2MxG-=X%FM?FC!hKDD*lTdc5eh&S)>U#n< zJu+!#kyR+v1$7K)^OwYsjTZ~j>3WhJ(hWR@5>+(fwKbW`^fAqGA+(k zh&31B`{7sQBC%$WbuF053y|TIFY_m|DG9A2wN>#86rTg=W1P&;Om3sx31@>Tg~(yu zeRY@@*#dyI*llGK>}M>)B~prjl4LV{FQ+s%03J1%$8JZVz}X+r3;eMcFqL3n2+oqB zHzaN4uT192oT*r3`ZmdagZc%kR{};WlF%&X&a##Z-~Z_5d{c9qOgyIlgobay@kEV8Em6~5t1jYJ(hpfcML|GDCzGQhI21coWP|aYAesXA*cYLRt1+V zQ83*BrxA=I_q3JXAh%6`jz-r?ABQBK8#`6I2T6ajULm+iEWZSFwEwOXsJK7ZY`(cN zUIF`9+JvqT`|kMMOH#+QKx1?)Li;r#sZ-z`fd7!xBcBKo+zUZFh%*3e_c`f`LEJz+ z#kU(l?NmbV!uCAAkW5R>EES1h@*0T_P@|wp@XwPNHN&_t!ED%UX1XJ!t<@?`R}$)x zP#=7BBzP=9E~AqJf4Knoh@{$-1RNDi;<>8)lIwUT*TZThvg`!|`?;T?Y|n&=`K;em zmLBOIlHWD##@rk1rEdV`AoC}>mV*{e;mWRUev&{pw8akrwhVwo7Q-U>b6%6#UX;G4 z1eug>17$nG+$iqjxEJ|``yGIaBFi_qJ|(C~O?5mFpefil1$;SxH3YPaK+Uml4Y*hF z7tmLhX7c{H8!Uo{ROP|<2n@dYZ(Bg zD=ABBbo&rA6Mu6E5Jef%(G&TL;7;a5-ldPM^39ckP`MkrN-);I$jY^W06oa?D3s;| z>H1)^SRS+XuV&DO3Dw8k6 zKwXJI&spmRBO)89b9sRF1pG__tY^Hh=RyL0OQWC4 z^)dFRU}7od*^9q&(bRt@C_h(6EpQ_88+3L9eq+q5Izdae zAa>sY;41YNxg+=ZdmG&`%G?xXWS#te(H(10QT{AQ-9#Et!|oXUL$J#r-GbqMYBo;| zU$Rz|Em;y!^Vo9h05%(6eaUQx1{Oa@VQ~%XS*4FMvkAZC&!KG3R3QC6Zse= zXhgQBVdEfn=XJe0O&pTHm>-7kIhmjn$;U)njCvCMFEU-Uw<+{#N1HZrT@ROGS|7%bB?Xnz7N zAd{XrnG97Ti^#4f_se1COM0OfW#~@8RFYTuFX{l(LgOhNmSP8mh1tSiuWDrZEv@+z0M)dDr$OpK6fd{rb_@2{a3&Bwt-=&Dv zi%KPcc`C7|DG^Q3zXYMHbW=PdTzzt!3Mq{lzXL~AavTrtce(PA-x$?>6*zA~)Eaz> zd|b>@-;#rbE@}gBrfnLNd|eW24*rrj%t2L#;A8_8Sxk@(uv~!oQ#fzupS6e_%8{C6 zT9Ydol>w;BLC^$~%H;7B)m50x#AP?|H3we{=G(*FaH#SK7-TirME)Se8-$&Qo`<<5 z*j~WjK46IyWW5nFSL1(E7<;ZixZi=4v5-+4#kuUQ8oG~igKQ6Ac6{fMpT@5sljX|lVs%;vlp>|c zJ|u&v;u6)9IVX-5;pjY$uHn232~^Pi)t8_V%*{pbq`_BfB(VkEyK<7@+XleRT;1eb zA0jzv8XrGMy#FGAQ6DMj$Jic?Wmrkm05Fhy#PRO?ToPi6e*}W zFR|N-&kB?@vov-31SeI<{1q~I2jzhTYYVy)fH{nlGz=Cnw}pD!OY(6A=ieFhDE%O^ zTKl^ajP%vh%SU2|2=X0sO~|+hrD(+!5<9-C%KwDaL7m7#ak5)TuxOCJhC)676$Hpc zKzyg!M3J2rMJFc>T{|voN0Ix#BRR_R7FcOmbfa`!>s+M*t>$kWs1emJwnX3c= zW3_u1VfY)*A!(_ZMP_k0NEg$!bpOzNGpKbT08dgsoyl6HsM^)jljZ}0eoI2Nh;f;O zeyR>dA{B7XXL{WCTLAn$KzlTfj=e4C7v&2aV7>eA)=@fyG?o+vi1X_3~N(EeJPucfVT+#6wnVf z_kSTcBy+G687Y5#xvxRBnCK62KTrXYc?8~v1CeKd8VR7e246W*f#U=kz+fM9Bz6#I!|^=rvt1~DK}LpT zrII9$0Gpd}1J1(Keg%O~Vpj`*KLA>!EB0xCYXVD~>G^=*KUMEDt5W}31f7U+R+$6? z^VNyWx5A0YY3wOaQPKTQ|9t(*5?8m!9Ql|Tyb{(=Kzh8zY_SP2Kfy7 z?rFXEabzrq%E6SSFvw%6VMprSl{r5YE+#{}HsX6Y9ZF+0#o=V`yOD^Eq;6uDRqFD5 zgr*hw5e7;V_eAKYbMwh25(iyyI-WoxBXrCTm}<~m!3a!S<}mJ;ejsRe=&i%^R?S>A zx|5yAb98!;Kv(RW0_+R)@4)m@bhEJoMgy{^{FL@>f=94e2c?h<#qlu=uP|1n_9pDq zqoiYdV3+ToX3$bgvw=yju9PYupO{E9RrPEGuu&@#&04%p1h#vdYK1QYoh zFhz~Pt)(zEEzcE_1f}#_oZet^7T}y&9ES8t0BD85>js)z6If)jmia5#c}fZY4K`q= za&|n% zt{BRnBvS)54?m2)J)?G1CFreon?n9c~rE&LAvPs}Asf`~;tmlxC zPTXqv`7eDv7(jW+NSaOiu)G+yZd4WtOtPt21 z{AWd%yiVZbAH`h`jJ3(76~5Xs-hsCo;IGDgSx%GFhPVvM2Ml+?mr7Biu`5cBH+k+y zxZ%=0%s*mGqP<(-|1~(5_?B{76uGZt$e%&UWAF;qc9WU*B=`x*rz*GwI2=Yt4Ft$$ zNb8HAL6GUDOMX+IhIEG#C_Y9S@+Y4e=#XOaErT`c4J|t8taMUp9J}Uniz9wpJH}LTWzRsgpH<){-+0S;C&V! zX;Kp40Ew-`xQ05g>0X~jkXpJQ_hWMlP`iDPS#oi@-5axDoLWmw|s&#kz$Hc?i*0OgK~rHMRAO7;Ku4u=5s0oR#;gYq|@>N zAVmJ6L^A{E4#^_GApXaz_>UdA z`HAa-%piZ`WIg`AhgFfXJP(8ENa9zdw?1O74HyQ2%daP_=zYbrh!rwUX!)m+->=M1 z<$BJw-w=(Ud`*t)z?Hcb0xl7(FUidy(0yfSqQNViK&NrCm1K*;{u0_{3x=x!bqp{f z6A0Lf=X%%`V=WIhJK2NvAoLgJyJ3G?NiJV9XyY~baRn86U%vWVMGL&md|MQ|U~n9E z9s#I04(7nxL#{L&L=t=wb7f@1s6%l#1^ZpFBXSqpzTE$abCIC{Iu0Axv{!?(d_2&$ zJ5>b!e^eSj0zeT03?!2SXeJS`A3d{LxBMA0ew(%C1eivdJ771HOkbhgg$N`vRQpoy zOKHgs?q_IuQUG%ZHVxL&v0EWONm>WG3^Hzp(tBhk|9z3jsx0-rN?(G{Vk+`q0h&ti zkc^@X53Fn`z};hV0}K?-vSCE;y0UUzK*O{M`Sa`~Y=d#Pzg8mh0D!@-skTL48uWoU%-OTzfo}&Pg9p+{eV=7s^rRDfQ{zjk3S|%@| z)YU*)o1{1M=gIOV0bgKz5NG=_tVLNWkZpegwxroab^`Jh?kht7aP5uk3hai^hFro< z#EM=^Vl`ox-H~5}`UTof1^!|}@;YqegS*r6In!@vIqfTAe@T-RKTp84kmP^eacODaCb1MyqNV{~bvl{HcfmtQ3o z+0Hecf_A`3C5%Nf!J9^qkd(k60SDEYKf{=Zx-3`FqSIJ;T9L)3F7wMsW*4K0{bvN; zqqQiDes=lo8j;y_+G-r%LSYilLt>D{Xh=RKMQ6SX&ilc@R^0;g=thxq=!n!N`uEuMgZMJKCyT*IApa;R*^ELll)IyFfri+@Tw&PQNZ^oc1YjjPbC#AM z9Izq>anujJ#{{~gf$O1H9I%7v#*0Qk&C*AG{X!`R!@_-%Nd6caow~uzgM9zNwiD~u3|f}82q1d0oI&%n5V=`@2N*Z; zIUG(!zLQ_(`5wIaz&Z|R)4@6rlHbSC5QCm)tz}6J!Cjf0HsE|O#wO3Z&^IW+;Vi)# zVYgMeTZm3~z<)*oBIuL^$hQ+bBvuLWU`nHjrpPY01Sxa zBG4c*m_?SOK^jgFkvjyf58!@`Hs(#TYJz=Fm=ak6JMR!U7rwILQ)D6Q*I`(soC2t= z`k6-w0O0?~1n61;dKG%7 zWa$M_75PS->v?|ypv}1kky$-@rH1OaRe++uhIJq7AsGRS$;27T{BRO*X7bPzgB`J) zWuUu7#tB-RxhV0aq~%M>F&99C0V;ACkSS!m)Zh#x=qZAW+(EZC*L7GBS;Ja$bT7~g zz3`u+Z{be#(gi@RLN{|RlW$7H&?N1c2uVGH#g^nK(Np|y0!{^NNCrZ2Gn^g;>{Dtv zm-{3r-izaEjHU4THmnZhJ{8sq;xCcpZUV|h6V?r~m}$8Ux^_%{N%jshse@t$29*Ic zgJ>rJ)q)^ja6b$%RWV-9y2uP{MRKAm(gCI}!)66t@2Bgs_6*<00dx%}v*YI|ey(QE zBrpN*Xv3u7XethpKyOE}2WuiRQVNxP%zHFoXzo*Jjx*Tz^iC&&wuPzpVM62b5Y z4i1qev_NyJR~k}Bk=sV{@jyy`Mv)1)f5!8Au6pRcWXyoPeu7`Cyqb;k4r})a--2}~ zHmgIpgKjKg6b zp{JG#IFPF|W zp_O-Ye?r~fCcio4{EoqQy1;u&IUlLxGjh6!udh^pC@{KdN9B}%JR&4DtiihmugWj0@4MESDBwgA|lIzgXIYcb?0ag zyb0%l^fU~Ld`otv7}LmVFxA^b;MF)eL*UH@-_-^EajNqp=!U@`fVe>>A!!mo$bQ05WIUi&X&K%o=u_Q4H39uC z_rtMoshd~y=K!ueK#Qo)XV_SoTR^Ol0R9l20RQt*S^~YHjXo7XgHWD9HjS9fO$O)C zDM_CkppMrR#BH)`M_;}q@YmRjY%}|>m*e?1_NDQC3jjZ&UrYX7 zy!J}v9BR~*rml+dNV52zYZ{J^W7HJ1RWPhTEkA(%9|5#p>)jE$o8a&oU<;t%lt4)U zsiaL^5wHaT6;Hsb_<63IKZd!F4DxS-!LMZ7gHnX#A@>isw%}C#1eV_6xdQVI0aKi@ zFhEA&bPWyJT+8tn&mzrX#*W{$21x{Fh@*nHkWdh*N?CS8)sK|pF+u86j@mdG%=$wd*HD|W%xwd3Q!+}V5g!5~n)~aF zUV`)n^arqX&tNCvV+{T-5pxZ?NTwxRyWEE38+5qHEoc)t#W))vqjB_;WXiRhdN;#? z$X;dX4)Y<|uE44oe6Jp6ZotfLt|S64Q2MWF@3hDR|KE`1N7OToMmYk~FHjr?5H}Pq z0I{Fo9j%v4 znqhC~njW!^qjl7>88$n~xSj%73zc^4O5kTGYu5! zeTt0h3f1_0NusOqQAm>zznNz+TA|1a;Iu+XndWm3&C-jt>^PVS6Ja=RNY*Wkz_R5x zfTXZ~jP=i$UjbwCZ!+a)3`b`*zPc0i3R%9-{W<)JyvKSE>_ke(1kaz~6Mw!ysiSuJ zX=oRDj}nx_Njc{0GBzOK1I_#=GTH~Y7Bt)fvaZQmQ_At2t1G=z3){iW9bo+3;6MY= z1nzgSeju`5sg1L@0TGf*y2Y+AUlu(PtHFm^ z0xZLC2W`-o_#F*9A|0?vg1s}8%rC!IJexqTg4O`tZms!Po=f25G{IJKZ&x;M;PjoK zpTM8p0e+4ki*qNPz9wv;*Wg0DMY@XUOg}4fYy9LoxvtMFycS zGQtQ9mb>!rzSn1QKMoRcxJ$F>r4&D+=IPY64MA#S{57Cjp(pZwmM$Jn4}_$Zbi2w< zGA_aMpV$?Jnaz~pI*jKe^CN~R`44yF2d4)qor7x~Izw1n%y^Kve-QI(mPEEQCo&Vi z`Kj6(@C_sOU~F1b&U4%!BA=XEY7g_hzz;jhmEgbV-n9%=*9v#BoCnY zDbJ1dT$v2GQIvEO{;B{niS_<48xlKAw!zmlkba2Ye8jhW1JYcedjhhqN?Q?(m*MO~ z*1n>4e?#j69JOS93Lsx0$Z4EaAfv2ulYk;OD9yjv?ZfXbe6(RcMoY6j)LSr@Sy>%C zHt1{&A1eR@12+`+0_7g=*KvJKrsEk+f*0aC2cWrt5pi?PGUSfehQWtw`XrGof78aB z!hL4|v`{v_21HT$5Zo1XA#s7aoYu7#!LDS956yn=azj}A~Sat5C@@%4-R7)+i!3nbd21g?X1+zGbf-*PGPhpr-X>7)G6ZB64tgJFv$A9%`Sh<=D zA?r=1#*^E2AxUK_>OH8W$m{fGI2Hd<-&sFJ2mif`t5nUwTr#6bE^@30?&T2Ng1ifG z#W8n7*MnMoV-aYNnLEt237wt9U!~RG#X)>e^}7=PDV(;UbAG^Y48{FOyQz=-%Tzf5 zyny_l;JG0S%W(7_N~aa51iXMwf1IqqSsVEHk>GXE>q;w5=lU1@os4T(TTi0j;BOO~ zFrDZ30QUfHJ28f26#VXhoWJFFVVxlTm~6YCGz600(p}q#Y;F@&qzKM@I9-R~eXa}` zc?Sm~a{#qkv-PU&Av$WUvf<8>$Ry?sd`_ZL*@*W}CK>O+u@|KR+5w%Eo|cRa3G|Tc z>;x&Q2e$;>#@u`C?zsehn|m8q3s|`cDTq3!z(a%+xd4P=`Egr#UGhu0JEw3e3F17r7#=>h{t6AF6;jgtS*87AlO%|odL`f z=H8&yxg1)L4SA?a#IGcvsmZKPiBmsjxYOoK--MRl=**Y0g(s8oEd!Nkf(Gw}q z{ShE;XbGl}$bR}^DU?42bW3#KgoPRM6PJ(a&d$_x0J<5T7)DwzBvI8qWL?!8QuMi6Wv=sW~I#Nrn` zi#&qr**H$rdcDBOeS^0YObnwWBdFgo0%k*J3lz)01>u58gSB(m+Q>8~06S{nky=ji zJx5t2fA+BkECq;j)Ugi^uhH3a2;2nYbs#MbwIaCzaSZ44Su4-;Y!cW@hII-0P%~Zx zsDrFGP*#SbFH%-O;kP8&52sN-m;VxVIL2O(_0=Y84&n@h*9BumHEfOXLS>;mJK{8f zHgL^DZxz>b-Q&pwe4+OzV4@|@f5XZ=0xqPK2S_AC`{@qx(&S65GX#H2>--KzAvvsj z`+L@3;l2!Nl7*d;I? zWbHUf%;otJAoJ5ZBAM4fQZ+;^rT9t%$zpC4%V^zy$GAAUB3*Gfn#{juy#mZl=6)K9 zG{SZ}j;AyCk%G%c#wB24zQH#((d$4{mL!fyF8KxhAvB$clK=@AI&qN7{Q`Ax1bRoJ zGf_f6w`U;?>@zRlWl~D8HtC=S9CbpBb(Q}})1;ByFsRVl;=Q|BDz;Fc)$1su|C(5kCg94e?nTl7l-c#NYB0HdM0*)(!>@m)M zB=A#^isT}*#{}=8*&L^~3vpBffM;N<6ajie{o4Q%$**HOg3Q9^guz$FluyJ%oKoB; z;bS0x$)9G?#l;wYjlxxWq$pW8){I5xywEbo{V|v>>^~+PN|&N;OgI-{a2k=#bh%`ZO4@uo8)0)gLV(zd4i39u~u6_bIz&~Rt=spj+iYPB; ztVAh(V*HFi#g)EF1n$LrIKkdhK$u!~P_DV?-UIkfWklv%!t8G(x02CAuZUd6e@I&6 zD{}xSPD0fIoZkV&KFI)dO|(PT0KkLMJd_J&aV}08L33|)H~~<-G{e6M){yxT_}Hs$d>s! zm^L)M7mxi2UW>#<%1e?26xpbRRfX*v+#jTEjuOblwFL6^W9KEAKgo9}VCHeZNfWpp zNQhpzLB_Xf_{Sid2wIVksZJv7`Y?Eb<6{P27!u?IvVE=&s-V||jNawC#Qjlh$FVL_ zf`FH_a@p`-0>BMP>O-#l^ypFi21I)C01ubAPU0Yqz;+CV!N!-|Pl3`mVBvJgK<#9h zfqqWdc!u6X-8|Eo8?L4PlerA+i@@AclB)`!Uv$HLpx`oJV$h!JG}(!CAcOi`iwqit z%v%vWB-=sWNsol~>ga839{}J6^ReiURG?L1=^gFOO884bzcDOyrbNH<{4`k3#sS~k zsnvWOy^FyJ#*j3m1YMslm8EttTZ4Msb6|15(bM zfxk)5sX*XmOw1&QD_lizIFz|9j7QaZKOCP0RD?l~n)fb*wXua)_E`*mS7od%kH7up zus!~Fi`h#18(ayS8vdu)DE$W}DQyj0dU)9y@j4>H^X-D&A&(kr&hG5)T#ZL`CTR8NB2 zpS_N)p!siYTU<_O67D>GyslKUY-?L$g%~5<)!Qdp87Xd``GL>Y-C2s|bYHBIp5*qr z4}NrD)PV&)Bh8bZl$_SbNcR}NB+nrKh2ggOk^Q}%-YM=>pXnZ9D{PI4_oO8z_sPII z*^_1t9BF&tjPj(Vx#QF87-f8BkBPQfxx-U3Qqz3?s|#(Pnada19J!+2YS+qWoSf$J z4l$Q*uzi^`($$9~%KIvqZFk%HIh^hU!-K`zQToi#9j> zYTIlxKfG)E-07ct!&bl?`q(z!;SYal`_er3(ss-G#kck%R8#=t@p;Q9dI%O`0IZZEiVbf7O~l;MNEfp|a2Lxl^d0JHb4A+8$#yAD*%AvBr4a z@g8r2FG!oY@~l0==HK;$J=x#zynSeRsw+J{$^7`deP^U2)L7lG+O0Xv{txW6qs{Gq z+Y=i`HW#qc7J2K1Z;dc-H4e`e=Fi?Nyp=hlS@=F9H>iAsNlTzHj6PmZMt^_v#PBYW z%z6hV$GgqhiQy}(X5FOlY1vGBM))mTB+AKw*1It{ylzCD)c)ye>607-J_5vAy3oOf z`~SHf=P#5QUdBwx3{SO3CVAa7d`g1<%-HaK(JAhIy>~xLUJw1 zNxWnt+pV`-`XtfgO=TyeUvaW0#lZt(VTryFVR^g$kP zKVO{rtZ2j#ySXejVr7_Jrp(r*BQ}>e-)kS?vfCw7b4TZhU3PQKTM<2?a_BbtPjjDh zMXU%b^S_#3+K$sGumNPx#V65ao`i@vySXMQBBQw3azaGMsEFRdqhZdhhKa|M6tD3Hbpq?axVD)Fe41}iW%`Fr~l#6h#pm3gOgJ;QjPx=FGwZ3pnr;M2vq(D zU+ZHLJ#FTm;}KVEQMD>nsb#$OTAdoz&2^_DCfXxi-uR^Cfu73#6`LdT_*fy@(4HtzG>y8#?ouWeYlPS{+h$cjZ*mUf9vu zY9<$PB<3>jzv{>lk;mgRQn&)=HX~IVXg;m#IG)RYrm167u6CXTkKyti+?W>c^`v<$ zjr^leIP;pzn>otn%hxh=l)H=sx6wPrGa!Q_{7?_a`8adwB!|mUOy*Nua?beDT?aqo zj)~NRTRH4KKJ(d3NAu{i2UavoOY(SKy))ctu2`eJ$4GJwG16QKE(3qO8RYfj_19nQ zSelDocMncJxHZj4R1@Pd03+x;>F9qiPv5v?B=HcHRwQSZ{f5VxM;%3o@4kIFOBY8~(lJv!A^iB>un022z zYUVJzJ0e>a_5WNtGSWO;D)IxnIj?-=^lW}l4JKOEh)j2yU)7JyYc>CB5V8~!We)d5Rk3^XluSIsXnyqd`o-gPOV1P}pKS!7|-@Ja#-2TE=XHNh7 z|3=#Vt*p-C=C+rS)w27)&E_oZ3~2*N9Cs4Y=cxzOLR{oNxVKSIq8l z&ak|8sf@o%W9I`W$4sy`W|bz+CU$@Brq29P!ASBJ@^@-WgO6$9>|yo4+0mIN*TJ1> z!IzP{a)OYaX8zF9nP~MVuZfQFUuo}*G*eqU=Z59?y88gs3$l1ma$0+GCXRL;quo{`4eUcv<5EXkfYb600)zUTt&bf<7cWv#Dy zs+Y4`ZnJQI=ZzRM|48SKoaU+N&Sr&k9Ng)3rFf*OvX4FfrPH0&%>L`0l}p)p(fM7+ zorTQh$DMJJ=7Y1&!D0S!KRCyk9nL!|RmcMYa;yY+jptS1@+SMe)~J3_-v6L7f3QY9 zwVLN`QI4FZkvFPHc%Hy(JDv{_^j<=8yfma)t58&OWG8ht&=r4hBToNMB?Da?ShchZ zZtYOu|DUce&i`R-R5jC4GAhGv|7FyYICDhVsP5JXKGBf#+7soXtl8z=m`n!;-i|Kw z>+(@iQQ0{%_{ieo1((Jl=N$t&{U#sC!NlM_6=6J_vOI(U;gEG@z9E=A2EeK_O zf(K8W;oscQk>7v6fg>VHwk>ZbBjyc|K~1!@uH6R0(tCm8j(v&12c3i$&z<=nZ^4hsQvI=Jnjst0K&$g`#Ii z7kbl^&Zj_F3B51mpbTv4%4MSa*lKlgb9lo)FLDl8nl{BqJGe8|?e*}v;J-|13APih zDrdsH^3g`PxvNsNFV-4wR_PG^$ZmFgGdeDtLyu*1$otXtV~TQK`1m-IK|*{K@%8~F zF$N_k@Oi;Jn;JbQkAH>3kr%2fmHja4TlP&#`o-MB*FF zNBR7|)cs^4=l;xzCRALBKF}E*uqRf=JFzOx#cOagI>14^3Qu4~%yb}gA{SOh>+9o{ zcrzBqJFoyw!P58)mPsTNiT7j05j23D2SbA^(a7s#Eo>4UiRCFTM+f>E9q3r}BAS_e zKZgE_M$2GL>Z@W|?1wEGKQWyPXS@SV%`UWq6KKl+jHdmRIY9;!S71)ekC$WdXmz}T za#M7sov4wfJ|euW~3nR~H?iEgC>C zbdTJF#c%=^!G*E>4!YNN9mryAkL>Q_#SlMEAsU zG{tM;{bTX|-{?eg{~Y#0LG-!0KPSV3ZDYl)(Lrd6A3$gD5SG9f(3x&SJJ^E;bQ0aH z|Dk)K@{ur5Q*;UXVjmoXrSJ!||4T_O+;lmPW=`b6{P-f4#Ov`Bbf6r^GAFKP@r$AD z>-`dJir#OFZq}Y?=K7;49~_K<)S#)#cI37AGgwCiM8sH6B z20NiC9fQ0&5|hy-coB#4>R62)$7_BIfmXunDAz*A8G&RbnV8On4=%w)%y0!dP`lrm zG2V`DzWdMt$D=8I7;U#0hvO==UCBSffECepHPI!z5#2Mru`u3?`8@wKQWxw_bmpt0 zo6x{MM+e>&{R!>xSM-IHI2E2Nj<&CY4pc9e+eU9iGua1Sno(HN^FN1+PPhhL+ia&p zM^~V))}nYVmO|I83r@s-vHmdLNV(vd@O*zX;GyV%_r>xIbl@k@rCE(hQ}iAecKjVW zv!9TaNcWf0fuEsOLV7xIGWPW z(dYJ{pVy061xsF*mU_Q*Kr=NMU5XLN3oDrz&4n|4Fy5FRor&(!IcO>u#_~(Cyas*l z-B|w#I@9ma0V-woF>P z@UpyVsh`yfqMzNm=mWQ+5A=`a;piGqK$m6;x~8+yj65A(5$|t8XS^Mq;6Zdx{E;^q zI{1f*)VaSr40Hu%&>#bC*ff^gp&i|grg9Sc+|y`)%g_Mch~*FC{her_`_WB(Jl;Q- zW4I`C99pvTY*JdXza8oEU5WBCNy?k}{TocTig z`Gh_sS1w#{a~;p8tznn3CKDLPw?1nN&qPYK+dXIXYlxG&6(H4o9LBcr4bxhCcsx z^kek7@6pqA0uA5-CQVhQg5g-?KwlVF$8u%#ej_v^Ezs0;MFYMY{ZVR4EH6Zl*V^cZ zX!~!`0FR>+$yO+gQ@9Z4-_2Bs3M0A+9k2`f0_u%sU;x^|P_)BG&>1d5Q@;{R;d*ql z?v3~VMf=NHI4w~Zuf!VI4y_+wnDcK$4^iP}dJ0{`7too!9_!ynQ};RgX4@0%PocZ} z68fzuaCJy^O?04ESQE#fOZFNz!MD+XFC@9JgJMNO2er|FZb2XDk1cRmbS+k+{13XO zm5PSb(gY2#FZwYX7R!&LOScqVs2ja#P6Vid>8AF zpaY*lQ<*g*obM9oCT@Tgu_t;gA4c0RLpSSN=-&AV-Nbvbpy&S-7j~GvM3_-2G>|&c z=4k3Wpfl}UmMGv(3JN>pT8g7Gt=Vzr%NY8gO{l=^7qgg zeU1KraUeE4guaMQqaB?`Pr+qnLWlXHWzc@=p{Z|&PG|rc@F=wZsc1iQlU$VLVln#Q zw%A|~`rt7%_27zt08=rQ(OAC}4SW^)3Qum}!VbQU z4UWbJXVEoHlnVo0fqu;@pvSBkI-~YzyPoJk|BLkx#_~)wpl8w4FGn-8G2BlkzT?7o z`_E{HY5X$9ndL`2tb{(;0NvH?V|{0IhW*h2?nMI`k7nYr=#p6fCOY%2X!{+Q#q+<9 z3p+ZLs$e&xoAMmG2QpO%_p_h@=11RjrLYk;!?u`2GxI4nz;E$Jyu4ysqBZuw$@l`= ze}zi4_x#u7!pN>e_dwfN?uGRz4?&OTGPJ|(cpVn39A?}F>r)SBr=-Q7%19=>s`DS!4{DOn6Xk1%wYnaSygLrTB-X*>=#rGE6MoX^ zh;}prUAjeB0l&bz@H|$;JL-n|$FK_Jx6%5e(R}sH9Othw7dLU^Mr?u$FdctDckzMf zadfT!MEAmfv7A;v)aOQ@D~M*QD4MAX=q9g@F4Ya#0&l@)p8uz~@PR#87LTEuEN_Fb znQG%LlzXBxejVLh2hgQEhPCk=x@oI43@Pu0W^@#q@&)ML`2u}I9>AnCJQXYcMI+AB zD9q@pXz^$TbZu**$Mk0O`GM%>8;;I!e5`*I&DeZ2&?RUlUPs>_TN`oy-JQFsaPyr- zk4KKiA&_F|u_}$Gwmo{zZ$V#B_o0EzL;HCZo!LidV7t(P4xuwYk8Z~7*M)I1uH*ds zLa0fF9kq+zfj%$}Jq0t-nLUSYzE{yqe2+eVCYq~B_*t+F8fa^rghSB)e@6q#aec^G z@gx^^TnXI+_0cz1OEeRG&^<8%P2~bK)z71A{W@mgk7&S|o5qh6nu$_qKec1IHTtIQ zj=n#V{kSlI31|jpp)-0Bjd&9p@ek-4{*J}*68hXV&BAG@j0RX8-JA_#xjFh=dvpnV zpwIV3GMh|HB%UbbwiCM^B&wyoMgjE$HU^CDvbdLs+t+=-#M<2HFoD zZ~*$;*yv(3!yn<5p8o?}7}442f9M+JXc6{AK6IwV(GJU?OHv=*3pd63?&vG|e|QVd zM1M{=h;6WV%P`L1=txZc{(q8-eVI9@=;j;MCd}Y5EKPYHI)nA-fcw$SdK_KzbLg69 zY8wL05xqQG0G(h_wEuGG-fG&G^Y2W1P;nF9fzI?zwEk^$pv}=QqI=L(AHx=S<&9y< zx}&M@i|(a6WBq6}(D7)$52H&v`^IE=@MS7|U=8u^##Cj9|@fgD56|9|Ln zMcRd9R|UP_7+s>yu{;=^`2_SdEI^-Io{Tp(pegwl?ck4CpS67$xCDACs-c_o`dIFS z{^IivbW=Tqp6kWvi|ak~xi6vz&^`1Arp|x*O<~iNL@SzN2KGh+nGl_i?)sJJl59uU zd>5M9AJGh*z{7X}&A|SfL;Ex6{X~b5(LA`&^IwF67C0UF?DwEd^(&kWnJ$BEb8Qh32$q(rB7tuiSbP5?Qh_)eO!rl3D^aDIf zc`r7>tzFVm{{=+)ZQ)lu^|1`~_o2@}i^FgOR>ewP!)ES|20jXl<8$cy5VG^4MfncRpT*U!); zK8BvQe|m8Ky-}cNTH*=37U$u|_&E0H6*6!N@26a&H$Srx;49da@^5{@Ua8hM?1cvC zT6aQI-vizC_nJn$UEKve@59jJ@+kW1T#Baf6*P12qBGu& z8}KLe+%LQ%Wadq@{2n^dZ_rJ+8yPp5IK)LADo&x1mcKLnc6kHz7*0Y1n~CoB=g`#t ziq$YNApAn3I##FH4{PE)bRyf(y>JlSw7;X@j;jXxQ*)9x9v6+M7>%WH4La~HbY_Rp z)c%SFat2Lp+MtlR%h4se2F*;hSZ)@}ozRI5Kr?+m+Rrq+obeM+a^Z|#LQ}mV`W2e0 zqi8^<&<_4ZJIFCOl&?n1<%=cXb6S z?63wpgC^*1?S#&}8`{xeoPeXynf!$rnD_3msj8!|>>gMZlUNy7qW$i{LHIlRg6o?6 zUuZZSZMX!@$QRfUvkXg1bi}4u0_ULvtVL(I3tiJc&{uJ$d%{FA&^KIFbPu(`)PyiK zp;%51=At4EhM^4?M4v}HUWq=q3C+-l=vsdh%g4}}{e`AD$GyRVX#3LWOs~Zn*bWU~ zJkmaym=!J(&!8!N8SQX0`iA=!eG#2O2e^EASi54FPPr_)*(#w+)BxSYEzv#G6@9)x znxP5ki)#@U_xx|*!Uy-DyYeWu!b|ApYB?h8@*Zd=hDArA&pm){%7@UI&B8Xg5ZwdE z(7+3h3@@KmYqOHrR#EFMNW&KfXtwKR%lCZwF_nFv5%IfVuAvGcAwKpgy{mH=*siMF*oZ8H4uo za4gS7+b==ad<8nO?dbDgqtE?xKj+`bPEnD8|Dne$V@%j2&CmdPp?hHjmci**9#>)N z7@{5i5zGIfOH*)cXkQgAcShUag>LrANiOX8S#(#vf$rWfV*NohWq+XqWPc#6aUpas z)W*Ts5?!*_(M+sIm*NA>#4ljt{k`Kt{b8)l{p2YwOjWrDLu#%?185fQj0P|OhvFFY zCz&H?06E8pj1@&Qc^!Hx+M)e)MFSavZobjzL}mn&i3MC3`EqQ6tI<7h3O)b1SRyw| z#rUeO8Osf^F7-FW`f=#{U<#Un>1ZJHa1kzw^-U&(fZAYI&wm##9H1APiGk=I7>>^1 zadf6HVg|m2?&@7=CQhS!q~OGGzcN;)+#cN{W6^$=p_yEZX6j?in^NwhLV`F)C^zG<#$yJ~dx%Y8 z#TqJ1%_mp^Pofu7g$z@caW6QZ-wz3?m=;2W`iGdjSRXvU7B z6FC>lX>&t4KRRylxtxDLyY*wmt>`yk7}~*DbnPBNJ9;^~1`XhSH09r+{TxLB7#m{or$axt<7G)I26JHs?m=fXAvTzaX5^XZ%6NZsy#EE7 znZ4-DkDw{Ohz3w(LD)ML(bH2qmYbs!y$O@9O}}{Ke)P>Z8J*cuG*xe+18heF{VCR; zM)yvRXF{L_(DoH#xha~#&ggNw7Y$?v8sO8a~%TyToTJ-#XgU1&;cJrKSDFm47`Y*`}fgtzD;uB%zud$Sr^B( zLmO5^J8FWrV|(<$<>-s$UAz^)Lj$h7BrIJMG{qfaxi{L+J?Qh}(c_$)%Y|$EM!fL} z+R?sP{v(>cG(1oU?Vw&Pw?k(*6ixj@XyA{>@^ZBOI<(!VX#YP4lZo?OnA)7n!e1;X z5iO0TxE%VTsgIufX6TZ&MF;E>>-(cibyvLq2%7RI(dS=B19=-=qR%n)^Z#)!+|{R} znV%1l=0m?`RnYq#(E$3Q$8K;ek3e_*189opp@A)l<(24j8`1a7R&)YKG4AV|BPg)O zcrC1q9nd}S;PPa+SP&b$g%0oyn(CwInx4bdd4DC;7eoUnhqkYS?)tW9``%a`?~dh# zXn!lB8_@tiOLF0w9Y7yE92=ZQQ3((9b*K^?mThO)q1YOI+=!5xJgoZ`Y8I(f@s*8RjnnXLG8S0Cba0Hs6 zMd+?yiJqpf&^_`eGT~$*&ubxdMbUS54K$E}Xv0b9kKNCpYxXXh@*mKdoJ0f8wKDvT zhlXgT{)g7jN7wu#tb%8-4whJDzo1yRId(jlnK~wlN8raL|Cfke- z@Ey7&zo2{P0`|hJZ=@x<-~il;@8SlW^k&!t*R2Ul-W-#j?>1a`%!Z)@-iL0!sc6S@ z(18}k`c<*KA>QAPW?(n^$~_XxiM3%* zT94k}fv)9&=%46b$oW=SvWn>awwQr^(0(RHpF-QOLYMdp%)paLE{rtq`tYhPjy~7| z?XU+rgW+fg(DpdHgx7+p>M83=!{OH?f*gt&b%>9q#!y_m1u)l-wHj>Ju&s?|4A;K z*$iBS3(yoccsDKaEVf5a$#Jy)^7q1xu4}foQvF=)jMm zfz8LHABkmLc>Z5PA6$vP+16uQ+=-^X`1|3_RRdd6z7H$lyI2>Gq5~A)9QI5(wEk8! zQ!~-bJQK^WZ07uDP_aH%>_$^`G?veznaTV?c(5?KN6Mq^uE(C(9?jIN=u9`n@>X=f zooHqc#rm_+^exGd$}6{oV^IN(v>DoA2Xs^QK{GH4?eHP2k58hfW(VGmN6_}owuZoO zLj(FB8t`bWh*Qu^uS#;^v3VOS;ZF49llU-v-HM?zZWzm*&^>T3x*4aU13rZY_!|2B zCd`|ej|{e_{Oh*xjcM?4$i!eQO?`4K7tUxA+VRTh2WVj5p&g$>zvF42gmz`ofg7N^ z{$_N~3`PT(8ta$F@KmGLY(u@c+E5>-c+pe1^oJEh8;zcF06Ii{f<%#Xf=uGL$3E&hbA=Z}wnzKxgZ6W0EZ>K=d*Cb1ziT>`3L{?_ zeF0s&6=)zEqFd3m{v7S#TeRZ?=qCIF-4i*!4)s@I4a#NF=eoxFKImS!_iN6-7vrfg zl{3&+VocJJ2=Wk3M%QdI^0m59UV$EFR0(qWxZnK7S*o ze*gd0c;l{k<9>98lh6TYqa81e_gA6;uSb{cv*L|DNmXsIWm7bVhff9gU7oM+bNY9dJ4N+(vY!JJG;T#B!$nVM2w_ z{>tMltcAAQf*!-&NiK}=M>G>z4+IOK1C~Jtsu}BVL}%VT-oFd&Xbk#|n1}}c4!TsI zp=x^J5sG2Aa7>(T-?F z21Fl3-*}IsfxV7q@B?HilZkJ+NUcr0k>jVZM#a#E^)Lf(MEAf@^!$!NXEqs4@uTR+ z=_z!;b?7Ph8f~`=9p^`M5B!A%89#Bwp|C3}ppiF5zlNRBwYnFp;zO~#4(;GG%)q1Q zbJ-4uk4^DtN32QxWNeCWVHLc9Zq9N)lVQeB+{lHI4M%725Zd7jHo%S83J;+lrAkLa z`?lzdq&FJyGe}Ak>#;xX!j9PJXb5-~+W+!c-iE2)|NDsx2fT!CwyTbXfvcbcc1Abn z2=x9Wbif5@fN$XqxF6kArG5$J#%OsGR>o(sHGYBylJ7X@-^>j`wgWoTwLp&kB!K6e%kEccnPxhkS-+!`z3-RLo% zk7n#6%<%mG!iA~NaW?!>N^vyuQE2@WXa-)1^`FG@FY$i1KSOGZp>MeAXkg9I=X;== z^IkMFd(nxV#iER#$njUGD2L9xF&aQ;bY>&b0A`{yUx6;!ws`*+bZIi53xO0s2daQg zuqpcDnTTd!75e;sOgcc~d{~ph*oR^hG?2wu2j9ZFcoJR9vKKX$}`si;Xs-hV=a=I9He7rLh7uo^y%z8^k8zX7Mv zJ@HSxU+~{B(^lwAM@64UpZ^ByVcNyePos;R{|qYbpu#noivGm%40?W-qHDMs&D2Nn z{sA=QN6?SV-{|KyaVga2L_a#kqvg^2HPB<&D0*{}3%}?6&<;nSU%7|S2OdYiZi~=U z@G2V6+vx880&RZ=Yh&WSP_BdS^5)S2(dlSEE6{$E?{HynOyub z!T?L6GpmCJ-UJP_L-cmEp8=SfP^^ClGpL`7o{~3_Oe7N@hKs~5^nnxT&w~G<9p%lG zo?42cXt@%)+3KO2v^zS}d(l1dI2zEx=yEjWYtVkTq5XW1cX|E~bK#nI$Q*9mhDLY? zI>3Es2Qx7P7o&S)bFANic6=z7&!Btdvb6Nn<}Qvt-xi%zgWsDozcCai&XqMLF)dMr1h$8{Haj1yVYQ@^!S z487knYkK(mKmDk1pb=yQ1UKQ!xjf@r&pwcpZ)WBQyg)p>MRm(Lk=s9@>{im#`|j z1g+4_3_;sHhVGe#NiJN&mFOCO7H?dUBh;5bH)j)c&05BCM>Hc{(V6x^I~&#bC*O_@cE%eAqbJcw|3zn-GiT_y6q>0T=zuq%?K;Q%{iF9{>ID<; z&p*gw-sn=?jj8iLl8Z7_Oh(W9a&)tNf*zZbXoorTq^Ew|E{*;)dm~yu4Bea$ zqZwR?ZqjvVX1_-F*e~dNA#2`Hz5|oqn8bxCS{!``9e5|YxlYCUw97+%v1kMI8*m#M z@F29GnP?y{p%dGL74T=QhInz=GprKkRzuV&~{Jcz#9pGF5>kB+-1$%T<+Dv+M~!{M@M z>TZvYK-X{vx`~#e=XPy$2f73&ur~gSX5`v}p?xcK0^QN2oQU=}4-GW=3KwpsZD?dC zurB5)6zW@|4-7$PFcDLG1wC%>V13*Yy%_8377n}pdi2=d6zvu3|A#X@|KqrrNP`?# zhtKPyXveRi=XxEw*6&AmqXC>o+vO?}yb7~Wz9yDSqnW6J2G9&Wez%~_*S+&*&TPS2Xqipc%+jG(FJ{TVe;ChYoxgtK(U$g=LC`_eOUt z#Lpjz-dwom_oFkLji&q+bTe*713Q4t@NaYzHohiovfk(mY5|(Dmv9lTMg#0vJU#Ve zd_Oesr*R0rjH$o>pFblETnRI{(E?5F05qk;(2hr;dmxE+ybxWQRcJ~-Mg#sP-amzA zEOUvF`t0cEykN9a3C_P2O{g%kPUxETLuWJ^U9&0ZF`J8KW;6QSE;O)Tu?hZ#ro2wc zaPC{8yM8SC+@rC)44uH*lF9fzr@{w+!VEl(rZ|78P_B)ZyPyHxj|MmmeQqAQN0!C= ztD^6s6Wbo||9~FHBbb4?lcht0s%S@z(NwlaUmRUy{YdnCKPBFO6n(SJN6-ECct2B_ zuyoncndd|MD~;(`4b4<7^aYe0$%SjU0DU36iN$dTx^{n{oAVsHC-RmJ0T)8|MmaPS zRnYbg(1Dwxnd*c-*B5=o4?&k=0D6 z)nmB{8pw^Y+!YP*4ou<@Gy})c%>It4KmX5JJ_JxOS_1935~gN^Zoa128SlZ-_#tLs z;|gKZ_Ck;82=rAw3%h6HcRp}2<$o)NH|%qj(i7t;zmH9ftV!h%X%c+}Peo_=GWz55 z8uS~n7c($Zm9SSzqA9)>Jq_1KJEKc5C^|OQKZ<60G2V`^VAA7uS=G>S5p>{2=vuW# zGtdj&oOj0ZC@f2P9GdcF@&4=R^Y6#g2~2KG0)rkSdT^L!Z^P(gI2rP0k-HJ0nfa#QqFw5`thx8bd^qBpu} zhM*nagQj*A4#Mf^0H5i1EeXk5apPP(kd=4^hGVx5f zNW6>=xE5XePti^GBf2ND)e1{d65RuJ&y6X}yEgg-X6AvtXvz+t0UbpLx`fU+OYM-UJm>($(LgJq?OULys0X@-hNBal7R%45 z=YLhau?2l#7uvx|G-X-pgm-;@bZJ_lOV$-l^_}Qv`Js6KMRaN2LXX+kXy7N%SNUnQ z-yC&0|E^IXE}TJmv|KBCL$ouxIqyJIJS>*S$MSS^DV~b;ub`W3ZM?q$UGq<4c_%u~ zp}L%ZJ3d2&skww^Ab-8kpaL3ceRSYfvA#h=u^4@EY(?Mw2hjntGzhJTpN;4Q zlH0g&bL_+se69ANGq|~NI7WTZO*ayKU@F$bx#*tRjt=}iw#MJED%QC!tofZdl=3jF zhI`Qfay3cqkz}GE7jBMX=#0vtsjq_$*b;r96WXpZVJ_KEB5pYxYLb-{mffi|py&bSfUL3=cnccI5}0vgbKwB1rP&^OV*-;d=T z=u+&9o{#2l8ZuTDQ~&+{4O}>ro6#3ePjpG{L}xrS*58K?JU-r^js`Xx4d4Ydpf}J! zwxIofgD%yN=tu20bZ?!;qyyw>7S_BF+F`|5ZW7BK(Uc89I~s!qI29fE(O7;OeZee7 zQ@tL24}69`|1}!G&*&aI-i-6Vmy3U?7>K)@htFoy8$t(T(1B*64?d0t@HD#CFQ5ai zjDCdv1hpT{RHhc8pIqqk8E9t8L~FN5hV$Nn3O7wJoQ2~t19P`bPyO|ps#uQl6!f^R zKwrJzqOaa_=rJtNDm+&mUHgvck`BexDZ;Xpr(y+Mk>sKb7vEt+{1;7Cz1AVMH=;A` ziq4=fnt=gm$HSvz(HT!dXE-zZ9QxdA=;nSSx*6>^xq}PWa5s96kDvkk8ynh+v>0~&P4{`drT!wa|wJKYq11#f4&k@!4xrEF?wFqX z7nTNM7QQjhqo?eZTR8tsxv1YM{Eox}_zLAC*b3)#PEXz6je{r`xivlUIZnaVcuSY? zJDTaYr6;yg?u$LKLf7=f6nqFfW3F!LiQeAF>u@us5lEst=f4T2-yR~o0pFoK5v_03 zBRnt;4QKT?;k@uI)e`IA38w6-r?g_8Qt7%aUZrv+gIun_FS?q z7sIJ&fw$m#yb*Kui7Tma^buC1p3CxGAN{|BzlahqD#>j{c*ZA`g1^E z^myHm8TfE4FGmA=8*TSxtUrP-|}Fggo8C2O%79>A)YH+gS(RbGdc zsThiO^fa2{H=>`QoAe->iNDb$xq5gw=k?LedmH+-9EtAwNoZ!CK>K|u-hUtc88G<; z7apJEXv!|da<&m+prUBUjnK?=iw;3E^gz5nC)Te-2i$}%#aHOwI*1kV1iCj0j7%*Z z|Nk#sxH&4JYts--ZGXH6?~nI?K?A&izIf6`g`b@2qUE007U!UwY%dzXVKmS)XusL- z3rlegmhk)Enu`o>3_;g!2D(|ELT9oW-IU*;9i6~Nm}ztocSZ-8k1oLqG-K~z z25v|D`!&{I!qmV2oA>^(sY;`3-V$Asp0Ru{+VR6^0MEtpo6(Qaf%c)#okaIa<}o4V zMbQkmLZ814o#@?|bilD(IKUkAIKGIk`C&BWnZ}05bE26j7Ojmw*B%X^A3DPk=;oS= z_P-?7uSfg+6m5TWEa%^~I!}e0BJn`DkqiB56+<^q2D;lTVKHorLvRqfXTCvq`#*RK z<{1|P?Tei#kHH)9bM*8SelWa%>OaW&?@7gYDq3b@)1c?H6!n9!J@&?RXbKBV2!WPG zGjT1Z0*dv6&~_uyfu>*vK96SdLo{Pw#`57L7tY`$x;6zS1}md8YKHzia4WjDw_|G@ zhJGW~qXEB*X7XtC_jvzY^j~ySW||cK5GpTvI+8bV;VZQhn(F_dGZ=$DFddD2KBm?Z zU8?oyCfbU&`w9*80NU}-(X(h^X_Lbbw>dEz<-Evq{QVCu+%#p;4(j2}cpW;!S!jpz zqD#?CtVRR)5DolmG_ZZK{7WpKMFUJs37awxy7?+%4$pr>F6^i!I#4Hc#{JMphoS?F zicUZ?F#~PC6n%bmy#HSG6Liz=M0fp}SbzD{&|eX}g7Fh&xiG?d@kUGZUEL9lbO<`* z2cnOmfh|L4yaL@T>(Risqv!uyH1OZic7LORUN$Y5A5;JSPX-q@tQv3BM>}eXu3ZOo zPjp3pEjI`a_<3|@Z(t+*5*;AdLm|MzXul=VA8e|i6R8z#{SfEB3>7`7u)|5{1GCWw zoWvOXN%c)73}<+|wRo`d$c0-ea4XrNmj=3JY~9aK2b zZZwrY<5E12qw$&PArtu@2^K*+D21i4IvPl4bcPRNYGAa#73jd5&~d&*mv&E*3wQmm zXoRQHwYz}MIRA|B!l-~gcpaL7w&;wzqD#~h-Hdml861iBn?yI^RJ8r`Xduhcev)r< z;Y_y08#~dpKa9SqPND;+JsJYci>VhCy7raP0NS7(cSHy78y$!ad^g(9aJ2pSP);VM zap8k=(TJ9!Gk6`#;RbYOhtQOrj`!1MhMDC-1FC}FZ;n3KIo6LupP!44vjnT*YE1q5 z|3@yI>EGyD<((BeE{Q(S6z#Yp+O8j(q0wl^6VbJv9qV63Q@$4cHtdY|PosM+_haE# zLb%x56|KJSK{J{*kCi7y5F%P=9wFRx<%`6LkGAoIx+evR;7M^EPsR!^c9-9 zeX;(J=s)Nty=)%m-$-)J3u{?8S{_YNT{JVT(B0k@o#`lafXV3dkD)Vu79H?Kbg#UP z_VWeWZa;d=PoV8jC%Lerf3Y`adpry<2t79U#qtAas;47ArzB>gYyMcQpO5zQ3_7!y zV*P8_g!1Zm{}j%pd=a0<as;4W6hHBqAl9NE$CVeK!2oq0R4Gj zJ-X|^MwjX$dMXMp4ogrM-E{5I4Bd{-v^Scm!Dv7u(EuMpUuemBT-fk+G?njQW88u^ z%(Nuj&y8lFU@R9!J1&bAum*bkZbt)~h#9yDOXK@k34ccSz!ghVzeAEtROiA5w_!CL zhox`@+R+XyhbPfpUSL^BeHFCa2+dq4G~j{grW}Fwa5~!02Wb0)=n|j9)cH?;K0KHg z-Ni-F%~%Ru<67t@Y>sB26WXpT&cr_GUO9;+G3yIqLKV@>+>Cv347!*0pi6ZIv-95B(dZ1u<83$tZGQ;eE9cMvuXrg0QW#D7b?6fJL<1Or zslWd>k_%@r8%^PIG}5(b$Dc=kjP-xUa_*Nys!O2l>S6}o7|TP^ekR27Q_&Szllu2x z=KQ-W&&GyXmxq)U$GX(FK~KX(bW=WwH{edR%=KzAtnHOl*gT$TpHbizBdkI zIn1^yyicm*RLXs@6&^vytNOZ2&-rV^g^_ndQ!)Tuo3YV3=$gKaX5cNf-IwT$4xvl% zJDTE)XnzG)hjyjW`}ME^wnQ^G5i5HBpX0*K_c5C4AJC3Y#B!E5!uJmiqI+mE8sK8I-5RWk+t7*qgH9yho1A|mt;mJeMQ_}IcGv?AXe>H|8R&cBX>W=ZZFd%(NR~ArGX>EBOQC@_K>KNfw!3W&=f5f!gQ+l;PsJP0qmi#eANU0A=zC1P zYNJ`#hU1%o22dSs-!ytNnvtII{@7SQ1I^^qYdQbUWDOO%0}bTY*x)?casGATerfdn z^=QW0#d5b;z7zdc3`hH$6zdma70R!oAGzJ==FXmcE4(P0pu4&?`d|lirbE$8Ohr@u zRIGmw9q4;Bl}Do&Vtvl_A@Cw-Mk=E-Zh-cCEBajWf3ac$nyRPK&9@HS3p>z(j-hLK z9t|k#+oAqyG~kNZ5?i7fn~Anxhz|T3md20KaehPE@!x;F6Do?J57vw2Ht4_u(2njy zQ$97;&qZIwOVRhji)aR4L;G2aKKD`dTeQE!(X*J}^Pj#UL|6!YpeEWuvsmsF?H9c_ z-k%W5bE1pUW48(&XbT$fH?e#WeTDylejEP5e4hXGjbV)nM$4eD$eL&e_0d;oOLT@E z&_KJQOED1ba4edM$>=71B>E)U&(c_470Vki_2+*dbK$#scWkg9-89G1fzG1=WPLYe z>I$^O%IJ*hqk-LkZmxD{2JS@r8HJs2GCHyE(LJ{BUCw_6F3wS5McVc9&fjD%=5b>Q z`lhPAHT-5$2Q;-ww1Y>`z@9@h^%lCBwxR*luITXYFdME^mT zAm=vDza3|A;hJ5GcGNtUJD?r)MKf^^`rrd-MrNa%Y#G{aMXcX|z6ZXD^+#jDH?G*^mOz>2OJacPeucqh3@tx=&yp;qD!(1 z-3v$1P5U3(Uy;vJ6HX?oaAC)d(0BK3=XH@X> zkeOQO^PSQD2cZ2-jP)}x_4EI8To~bNsS1t_I>2{ms(wK;^e39a9AAVCWuWhaCg?!j z&`o+5nu(Fm(dWiQ=c0S!RZRW)-R^3CWb+>Hiu4DC4WtMG!l3LUTo z8d!I9MnlkG!rw>3_p*4oHnA*?N4%1lZ#X6gJr%A4Qrzf z+M@yXK?fKa%hS>0`5Zdam(dh|fWBDvNB_m^C|~_u=%*Xn&)sN-lashGqQ_&!x>)`g z&BSqZ*XQ{@%%n6LSYtG>4zd1@Sbi|xpA&sP`W71Sr|7Br7Fn`n;zuqV;3OJZ`mV6~ z3ZnzmLI-S(w!1yn-y5BZKKFEVWpoRg`dw)1PoZm{eRs(86`1<>|4MM-Zm)}WbW1D` zjO9t_!1K{SUPDv;KAQTyXe$3gcYn4YLb)KiXDXn3t0www=zyK@R;=pJ|I4{BfL&5o`nk?=AoO1mooKye ztZ0R%>Q;2Ojzo{;qj(Fh#0<=IFzk(zSb=gYw4-~`0VkjV&P12=IlLKHq5)ru_1S(5 zn)KPe(Jg0L{S5=%!l}-Guh{DOSV1v7GCt5b!m~ zbA11~u%r6u8n!|QycrFwD>}ekn1Q3w_D`XidNJ0&htBW-dfa}A_b)pX+FyfasxmrG zL(Jx{|C`4K?a&!^M;i`FHDJc*uL&oiACYO;7?)!sJc|C9UixtOBbwXM`f2E|{kC9x zJdQoF-p}E$-#&?{fB*Y57w*POXlk<@3GeU%IF)iOwEi9Rcx^||`A=8{FJU>Xd^EgA zI-`LO!~Ey zboZZ*<^RxuvYrU{3!=xkIJ&oLp_{ewiDYQdI^O7jM%oSSxF@<7?nEOV8SjsdK7e+V zMB6=rZo;Q=11>|K>-}rUXg~D+$msYa7rq)FMmw5`&g3aHbuXZ&V0CmWx>vqOQ@uZW z7M)>^-$H$H^!eIorkbKldNcZ7>5J~E34!0e~PtGgmrVf;jAF6>|uI@3APXR#9H zm#`{+g9eiMOlY4U4WuMG^U7!jn_*wP5v$>A=w{xB2KF=hF}r|CH&ec|p@YKMmU1<$ zjAPO7`%7qmuc7TXMz^4Q;Zrn&yU>&$L!Uc=X6O_;vGhMf0C~~pO8v?CcQ@9cVghzT zXR;Gb{c&`_zpy-BMAx$HUtv>Kj5b0$ya}CY4>VJEpn;Db@2^R6 z;hKDi4!9fLr9Yz|nbT8n{o!;mR=^Lj68?^_V3EJWN9iM6LHR5?@REPR zrh6SLQvL+VNHTGj3y(?8f5VMy(TIDZ0S!lI@*uhw9z$pFWb~!z`sgR<8}$cli3iXO zmc1C3qB?qv>tiv`e@8C-JPt!M@faHM3uq?RpkKj{(U~7YQ=aWo_)K3P?S-}*7oCqz z>+ChcBB0qM3?RuI*~K6d=c$GTjmfz!OZ;qCnK*wg*WQQ8?Dhb?jGy!Lifbj=ws-n zd>)<2>*$((fM)Us^aq>sXkZ1?LSWaR$G9w-k!ESk-;Qpk!WrL=&hUR|$VVUe%QeV0Dcmw7Cq3z#91K5X^F_9w+ z|3)b1uL>7N_&BDH8Tw5)gk}EE(tQWsSp5MUzmzWum55Y)?Y%OyXEsr0*&{0wNk-Sm z3QeJ?WJF2%Wsi&~5)mTpq@AcxME&0Hd(L04=bYzx&iS0r8TWoo%yf08)E9};=x&&d zRq-Vpj7QP;8fFV?q#ODjaX1>lTj=)t3(I1S>>+^uSlRvmEEh|;u@@cr{W&tFesA_D zzDhaUHJSLwNtp^XpeL@)lvs>w@r4Y0;kYhS;#vGFXQtF&R-KhAQ|iCrI)M48FPEFO zfX!~ml=`EXJ@RBq{T#3mi_(AMUoLuLk-TAbPC@5>5!S~yu{!>aezPfcW2V$+LqGIW zZwZ#ix6o9dKo?)Od|{CmMz?RxXj^m_+>5C{|2K&XM>ZeRaR<6OPhb(ucvGk^jy~5E z3*wOIlj!z*3tg0xo!M+Y(xQ&Wg$a&0>M-y6Tj2X81C z4v@OhuIQK3G3b7uhep0CmiM6t&dFHLSSUP~4?RzAMNi1av3>wL&B z+VFmKU;h{%xTa`0ph}{ds*N_-3+-T7bQY#leic2a_M(gMbM*N?(M)A57TQZk7H=|9 znF|+B1N6a;(SGRB{2;o@C!ifZfquxWKu5G1v*3GpJsv>Y`8N7Ttj|z9)aOPATm)19 z|7YoVqY^s82598>VnuueT?4DohWDdW@;MsNSu}IkmI&LdG`b7w$8tL~BmL2Vj7FcI zX1)7=F&8$xHo6N9aDPbWRVW z&;J(v4_zzQmJ0!wKtH^iqxBP#T$q99&==o|H+Et#%Advib;^emt0Ow6&tM5$g$8y! zmQQ0@%6Th<&w|^r6y^KTH8USe<2LlXN&XTq@>UFU+!+1%d=h=}0Jgx3=-GYyt-%54 z$Y(}pqXSrgW@sh4i?*OsaTr~c-=b^o6cRYU|IdY~&QU2ecr%*XBC%W%ZQwRE#m&$~ z)dx-CNOVy>j=uLYnxQw)sr&%lrbp0BpF!KnTG;^Ee?_=()z?HD?u>4?L1+U{p%Fii zj&Nyo9s2xkG!w_sfqa9v;c4^$D_JE3SOsmbDZ0qpV(Rz*rf^|I3$Z$GMn`rQ4J=#L zkh)UnNGqcqH;LuW=yn~9rhYsc@Dpf8o{!~am`?dEwEe@F+W)_BVF2gRh_9;_w%aY} z7m5bx;u(xCx+ifUZbVaCq1g7%(BO4wii@CY;#Rbw257@gO;tcnA9aICTHdz+w0-mUI7S zt{pN^744u2`a&Bt(ynMA4@8sk{!BD;&&T=|mSE zrvClUm$>l7HRw68ADz1&(UIn^A69i)bfnGDDY+Z%s6YDLNHiml;~ls-dKQ`MMB@g* z5$F-UxB>g$9}u=v;iuBqXlk-G3>{QNBd>#Y)EFz_ooEK8q6gMobP5;8`iw#<-CoO;p4Ib6{#;2=oE}cM>-AN70;s`E<~qh724p&=tpP(KcQ>jzgT~L z<4`Ugt&3*pPPG00NiLkD(P&3A&=Eg{j%*&<@se0xgRY6~xSW&gOLQuxHVMzqjxI#s zdmU|mODyk?zpfws`S9Fo}LwC=F zSbjdb7G32Bqo>gJu4)-FoeL|w|I@j!f%fQ!#}G8~$I!WcF_yQWsXvHj;!CW8zsGX% zR$;Ddpc!a^9%Mby_Q#-WYc@Ky^D*hgVlG^bE8+uhqaEyu^~cZ*{Dfxc0v5#_twTeV z(TvnWGtwCCxCi>)=vaO%-d_^S+gh{#T@=TuFo3_&3|!SFL|hE5uZzxkTQmb5(Y4VR zU9|V3+i@(WMi}eoqX92Nr)~=x*azsqziY$(x8YM%*ubA?gIC`XBF}?1P#pdIt`+O+ z$NIMD`~A=k2BY5}#-LM>L_2ym-hTm|ir3Na8}Isn5${1$bpW07uVVQ!y85%X4Grf* zU(AnYpdcDp8ElUgqf^n5eu1u~ztF{ab-OUo66ndBtjC2T?t$*_!RQDkp>sJE?Pw7i z;7W8Azl{dA8-4!>x@NwP^?#xROWYZzFf+PFZbUOx2pMQHQ87Ny29305^g;B6>9`!9 zMpIhzu1u*vKGPOkQ(hX&XVJi$why*MGjj(zMeWf6+>Hh>2vh(6-)JtJqo>i4J&!K3 zCFl!p#rk*9k?xE4KZ*ChM^k+sZRgq!VH@T}%OzvEBHDffwB43C!2N$uyzyT2AQq+m z(^yV)3=Lg{29`6L9_!1+a@A-fbcF4&F!scfI2p~zoALe{O#SL7 zqBj>F97EBFC!(2n4sGBCGqT2Yb-~zKr+(L`QaIx3J2yqk-l`2XqS-!_w$` z?Jy_(C+5UzdaYO+F|HaJdTd|1@yr;&=)tv`uEU=kD-D5j6U~gtiK$+wnv!b!sw!F zf(FHvPl=>VbaYkUj;*mf+R+mI`aR}DN4IH1e_NQtPDEx z2ADcO(C3Dut9~-Nre4Q-_%`}n@?S2Tv%LMooR>ixtcIeLE@+TenC{|)qf*oBT{ zU-T%t&%Z|7`5VnhjsamRZ^4R`%Ods3M0YNXYzR8SB>J6j3Z@PiG=-aDc@Ns)7wFpf z6-(l!c)!@dkhz*@z_+9AbwX4B5T@f}Sit?if(s-408Pm^Xv6=YAH!D<3im6bfiyvX zR&0;X{X^)8A4S_)fCl&$nzij)987@j|LeGLQ58m0(=wJHLHF%4ybE{Y z9hmpNOo`Dr03G>B^t~KI!mkn6!>W|WqHAY0dQNP^Mz{wZX!fD(e@9xJi&9t(OJgrg z$H&pBc@rJ+c62eFKm*Hqe@Jmr^u(-&KGzP-zzB40OhQkt3} z&*B4rp{dO@EWD5t{j^F)*GMBYJ&I)L1+h7&E7d`7=h;EAakD(o%MgzEdWC*+{`hHEcgFCS-c1PQpg-+RP znC|{R!iC>l&Y>f`{-H4PV(1Ii(QVZpUB!dY)Q&(;yhmesKAM>oXlgg2?e35Dzo743 zKnI+4l!3DUZs5Wj<lK9}e&3LDy0t zG$Yl}%r(Rt-2dIVsE;G@LEL~wUT$>AL`(E1m~LnW`k*7d4;{&vcz+ri=;K%ipF=zR z1nux7x=Rvc!q0x0FzM{{m>LXjK26N+QCz3%9h6aJJ5q?AKK7Sba$LU z1N<8eB>VXAnUWt3s0sRfN3^}(SO}9zE?jJj&0g;h?j>RdD znGqsfjF$JJbNmOoZ!^sd2Tmm{M|m=unKfu28_`{LB-a0duBE@w#hPVS*zPwZxiDn~ z(Qi0a(2;jWBOMwYi@rELmgl0+EkQfngigiBXhu(?Q*<7m#l+*`{W)m6OVC}E{2vz{ zjeFybZ?GQa->^QGeIb0>jK(W)D!L|Spd+3gogZC{#bbkQ8(!bSKK+Q4OWjA0wZJ-hQemiu|2czf5ljvGm72Szu=qTFm z2{f>?v)TWS_!1R%oax!Hjjlxl${ouk(GJU@FV;feYZS|^(CybA%}^J-3wvM-T#IHT z!<;aHENJ_A=dl01C_{yFSr6@?4f;aIXt#L3FPec7(MQqUGaF6qideq^4R8-S;*Zen z`Yjg43+TaCAUQXD?XHEU=x#KSd(pr~Mjt~PcrljOpn>j*^#{>i^ga4D{y+57GXK0_ zRkXv_=#&k@)aU7} zX!hsBVlINVS0$KCwB^Ev?n7UE6pd^ix@|V24Zn-Ncp82F>iMBu2rE*qgAU|=EP``l zc{AGXH&_bKVOdOH;L*GI zT`P^y=ewdA7!&V5g?6+89q~4_y-(4O|B7Z?%>H*S3N8*QYJ;xM322A&(GGT?8Ttxs zsMeBjzcZGgoWx?d9G&9>Xge3tKyxh(ALC`wK-)(L`L)_Poj^ru(P8SV5<2pO=>2nO zAlY6CmO|^BqT8%Hx?3KK&Oz74TJ*U+Xy9L=0bN1^&z)QrQdI}-xLx#KGy`MNju)W; zZbt+AHr~&&JTzPmt5DwptKkInxsB-V`4Y`YmRCang|Il~WKAwiNpCdbhtav4iN3H9 zJ(@S6AG`0O2haPMI@!<+e2b3oA9UO1eJ$+wLg;&y&=a*9dNS5Qc3CpfgbN$G3*Bb@ z&`-UQ;eo_dtV(${nxPM(U!#GZL*LK3BD{AK+D;iX&|2tojbeSLXn(xZ{XdEeSLr@% zi$CC%c-!mYD6WHMq7`~X--|A?;W!RoL_55BW%%QJWzgsQq9abCflomLosUlGN-RMC z{L_fx!C%mk|ABUN#T%h~4R)ZMj{Wc<9EM+_C*mD%hHtZju?^(~I1_(Gr}p7hA;2fl zDSinv;#-*d`~PdXa87oh9q+|Vcr@03j;?|4(78N=K6f_WPy8>`XT|Zc8!_n2c1Z{X9I`U6r`8*ofm8--3ENFl? zpaUxuEsah=Wpr)azMB1S0IjKT&Ih0$zeCVejYCKNBsw+o(Ybyd4P*7ttrNd&~pqY9um`p6@!bny|cSpZLr{zXn8tB~C$8>BS z9Tc63PT@*4!`sooK0yQfF(v!&LcDR+#_&Ks^vEoQ&e>gP@qF#ilpZ{0JiuKWV(8abN4dev=gnwg0%UeRj#oi9T z1am9apnfnO$-oy8^vE8&EqrLLMi<>t^!@X(zQ%U;|6f#e-JU720^9EhzfYIpolJ=l zlp(D<=CwK?; zpgcR4&n3C&L&a_HhZ`?q1IquQFE-d4e$QqK)}#CZdOzC-@f%Zg0#=}YHM%WNVqvVl zFPx~m7B0Eoc>rDg$FK}u|793RJxr(E3tQnNbj^H(Eiu22bEX%>GOGg9W3|#rit7z)#Tti~Sl#+#C&T3_7qCNiOUt^QrJaBXl=Bh?Vd? z?2i}G)!+NKaNsOMJ2-*<;8E^$*mkYZOrAmKI^UVFc<;sTl;1!Xd5+)1&lkyxT)2%o zVmeMoSMzIVLwnE{{=g!b`;TzH2712}y7(rdA4+ecnS3Ap&^d|zAafbbMBzWfpDSn* zOeQ9C;TMjbXiATvbD8mM2&fQx4m3mqc^GYQ0p`Yc&~HkgU~&8}TKrt-unneDKO9|z zv+*X}j;WvjKj*>*uRI?bDuqVc7H`G}(UCumzPKJ8@nQ76#9!gPV(7?Qp@H^C-=Bd# zw;T=dLp0#?)+f2RY_|8}teQpFgfZ1rr z8_@T@L>Kb~w4ZA)vj0sFAnih3znjzJCaP?{931 zH(d&gvk$tfCZX-ELj(Bs68qoPd)4KzpG%?*x5L`_D5m2(=t1-?y6^u%50E1Nh7+$n z+QCCu7hl73_%r%x`1OBbtyJclV>!yr(QW#$|Ne;)FQXzI_eOugyC`SNke2#X>xl-s z0-ch*cn|)FuKLCq(^7wRt2-LVyyyq$^Z%lY_~t9pQv1Ih8pyiU?z^oooGfHWlBqZ>AVM3>{~LWiU)B&v9rU@r z=%Sq!>XV7}T=?LZXagCq3Jn)U%T1yKWBn|2k-mwJ@H4dGj8_Lsp=+dFERR7K=VCN7 z@1tw$FD&Hef0b;ZqfTgKW6+T;jqZ;Aga&kV_He%(TD}7vz;Lvqx#)Msx3Mz*74MhH z5uUpPeQyL7r2oWRE_`vL75G&wXSgQ3P#j(DEwBTQMHkayY>8Q~4VmZ=9fxLQNpv4N zu(RkvmjAj?ZivY?RNTjf`}J*Xj%hi=gKe=o<&oGE-$WPLb=QZ$?nWC-qN!bi9^r@3 zkzYpF&aJuP?mz>dhxYejuC!#TfjqfGM76LMH~Pi$V(d$KKbnC`H>4#dVjrxDKi~)~ zoF}a6dFb<}&`jN#H!byz=`}Rv8E*_0MFVMiBm3X&@CX$i9EZ`bSl8zZ4-CTIlwU?q zx=c5PhC5*c%5P#f{3F)4y*VxQC3896OZ`PO@Lsp1r4F`d(0%_dx(LrExp3}p%^xz* z2`x`VQ@0#V@yF=exERYf7f4Heyw=AW)OSG-sAsVWuEAk=2_L{A>7ku((16kkhBcF{ z#)Tbq!^t=U&B%3y(h`qiKXmSYL0@cDIE{a3hK!-#882f2Y*{3vb}-hX`~)_}gZL!g zP&CvpL#OUXoXXNk6e$)`{5rZAuPq)HPY-k(J&S&2I)JX~|1dWeFOin|G^>psxp$%G z!Bq6q^9^)cet<6O(`cq@luQfXu<)Y{?7#Q8c!?YHN{2bAUM9@dNc4zZju|o}65H`r ze5Y&(ba43)*cSA&;8!&D%_@Y?gs0H@73imDmWpYq?+=C1`noui{u2whaNCr;H7&7# z4(>v?$M2QWQa?)7sGOGirI#=8Vd`^N3ES`qe4X-fbbn8&nwI(nhE>>~@(y&-mZ}yq zIS!rL^*8{tRcHUZNJetuBKa|T_ibsZKNb5Sj;6jrjkMHnpT8X~Q!_2~t#>{S;(l7K zu-G2J!IV!%+tv>CThaOobwXe-paG=SW&ii(;{LkfL+B_vSB2_@ZFV1;iCyTT$zDHv zYBfW5$vAY?FUCgr4wk^o4Z@nJfNrGUkP12bI=ICL|6Ymv0SA&b49rwzJiCaD?Z#JEztvyp(Cx{GHmC2(Ooec zJ(_ppbUcTjVzO1(&dDyVLjyC=27X2N`Au!Ywrq(7DX+ro@DOIhlb9KQM>BN+P4Ufl zq@{lGsWDzfxeeyRE_ekF#Vj}+uXg{B4Ht=NcnvpZu_UMs*?_KQw8@QNDg}#A~>|M0MgJ?kCq5J$i zn!?=e!*lu3z)PYX*NXK`(Tv@RroLCaKM)OMWUL?Gp8f9$H!VJJMThXfHRu|+5&f_! ziGDq=i)NxLmc~J7Ky%UO7or`nLKpEi%!IpQ{a*CBFYCa(VO%O+S1Lw_;0d);WA;BzIr+gIKW5K)A5^M1xtcPXq3H3v8Jmp34#QMk4 z&y?k8pzp@}A7RoCzvP0sNSs9@{trF#bMy{B6<5G=l-r^Wk4FQZg*Lb<)^9;q_xosI z$I){lL!S`%P3U=163uXfK5_qdjt|_A2J{FT$n03ZIQl;{&~0c#d(i;CMKg99JvXlC z8|w3-&lka>SRM_qJ-XKV_GSM&S0kygp(NVS3^c-*;)CnZz;>f^`~?=l(`agQ^^0?l z2G9`ARHsikM%!eI`^~Q8&X;-+77KBjRrm+4R{&4 zYqp{Re2T82AJ9zvj)n0On!#jx|8P>>hNh+t`a)~;g-&P(y<`1QGy@N#&(AK z+B4|3yym{J{VJl1=q_~8_C*7E7|qm7G;=Safh|U-=1p{M?8emp|8ay1BR+x7>7{74 zAtBP6(M*&=8?20;V7H-1Y+W=Xx1*VAji$b1v>&=l9z;j}G&-P#L)ia5xQzaEOc}On!@6-TnXJBjnLG$iRIqtVjO~wa1N&9T69|;jpaYkZFqh1f$+m- zHS`O{0CXy*VmW*nP2E9s1gFprG7gXDL9`vZ>PMs7Z83V{?TzI#*n@JO5#ha2=<~^i zTsW8Sqa!+irtDL6Zhu4<-RW3=-GedJ=oFMgpRbFiz7?9mF6f8RFtpv7v3@RYrThl6 z9g~UsMurBbpbb5X&go)wEo?*^cpsgDBhjzX=YK^ra}mwlH4lYAN}^L!6}{gaZLd2T z*wEB{_TOV%*x`$*3V!J%miM3?e2I?i*XRW_khD=Du$<_2yCs&($8rs{Aq7Al2JG=*-nqlbTo`{}&GtsG8 ziUza=Q~&5c~e0NU_0G-I>T1LtLQ zEp0^K-yZKD9L@f>!!M{XH9w*a{DlT^#hB1g0dz!V(EGK~5jVrO*bzJ9tLV16Vr=;F zyf`|rf#`clG~gL%KrfDE|9dtsjSswv9>r_XhCW6|Z~ZsaS-L zY)y1mtUnUV-=kA;9$l1)N5Xr#l3Z9(3~itWI#)?=BzY=XX`2iQ6>EEIa{D{u&P2r=~OR!3VJc z)|n7Kjwhf~^Hy{_n(`0PsrUwq;CbYPOeSuc7)Oq^xzQXw@us0`VkuU@HCPe9LmSL9 zDg2^RDRjhh(W!e24e$_p1pkHxl>N~#fSb^amB(Cu{x{|#bz-3p4nr4H5}otoXvBYF zY0Nu0d^R*fPtI0opm(BE*b5!$18BykqKj`nx`>xWH(=`j|9hVcBRY--avFUhZA$pU zkrSPQ+-Q9Pw4>6oToaw+CRiQsLRa^!=xj^{fDULG8rTj@?f;Lt@YC)KGy~tGBRY$A zbj8%L=&nZtDT=1NJUXK0=%T$F?O+7Dtsh4-^c?!$OK2dkqV2Ao%Kmq*-lf8hzd<8E zjb`FJI@j5!g+-Z;-YK3|~`Uq&0sIz2Ry6Rl52-!Fq^;x=?Do1-J_fezq)^!Z6>z)zr4up${RwxKCM zjJ|LJZTKAeV#dcpN^_tc+=!_RpqXlf26#6*fIjFHjEv<8XnW6~?JY$6OTHd&Y>w_h z8~7M~@CP)~Khe3&JR>xm9o=4e(X~(wJvZ86S?q##Fb(}#aW2}5L5gAdoG-_ zOf$m^`OycLl@Bh=eFv8hrhc9{qUyJ3n@&1lj{{cEhM`QU%G}V8i?`M2Eyq^P8 zYXuFwJi4~3q0cwRq$%sng>%~teXtLjiNWZDW1}-GBz7Bn%0@`o`^nUAD-#OL~!iLm8gl1wh zx(zeV3j??j4X6YfNG(jqHt0EVe{@2U3m4bZXhd_+eY_Ao>0U)w_bPO1w#NGR&=KuN z-}?g1+z-+7=<}JLOH2Lzzw9`g@?x|;|MOuglEt`igtgF)nxGA}NB3{J`-xhEnJkPq9vBc(P)IP zp@F=GV{r!#!#Xd9)UU#)DWAn*1TyudkdX@u!+Tj@4jIggc3c2me5J4`*2C1_|Lezv zBOi{YbVBL|zaWXG_QhCUjyALwT_fAk=MN$MCr+SKcM_e_Q|Q2ckM|2K3ik`5{gp!g z{~La#k_+d$Hjczb=mD}BZRl4t@-t}a(iVr`1uKNrD0e_lw8wD}zKcb$;*#*&dL6JH z<@eG4u38#?UEwiIR-|Gr7me`;EQn=a3H!Va4xv00o8gz(2umyrC*6J6oAOWC0b4B( z0W86xl&^g?{HE4;Y(;qww#OS@3%`^*_%-%_S1Jxs(GV-F2)|lA0?oiad2hTh5DsfnerYqLzmHSLJd}j%-w^2XuX1dTJA)r?#m<> ze!AVTCanI-SdVfabVN(>Ry>A|?5ee4imIclxC_?6@#u%pW-N?()&*-~Ys%fx0Ny|| z`vKZs@)8$DUTS@axI6l}{xFupdFTr}(M5F@9l?zo!oIJJmhVOv=SXzlKaGA?ycXSy zo+m$JG0eU(CI9|E7pDAfEQeFkj@Mxw{08s9^i5&J!*BrQx#-9;k%L zs&5a!&Hf0wjX%Op_z8M)R@@Oz&PLdSawohJH)87l|J%xipGtetK#oOEpeNy}=(*@+ zbS^W!6BcJ7WKAX-VkT^iuJ#sa0C%Bl?B3{PG|QAx$+)nntN9+YEGU64x!idw* zMU(>#q!_xGYNHKxMKjh9bKr0^a})78oP~Y?c`26HMBhVG{|Wm17rT<-4F8b|SMT3w z%5%LN>TgCPE`z45I-2Ub=$F>|XoFqQfV!ja4@LtWfevsS8t7ECojGU#FC@9}V|6+D zVX_6?X8X{Q{~qhJycf!O(SXXM2TV51RUq(dW*hDZXld2p~T? zg~hNsmO{5_Z?ye!XohB?16Yvc!n6EkwBfB-6Td*`?8Xm+h0zg~jpZt6M(Uzd(G<&I z3pCJCXa|$gKp%@PL<3ldW+eG;tT>FO?gZM=S+s#m=z|#!g!AAUEJC>wnwd`M^8?VS z7#4j99oV>7em=So&Cn}Y!~Opn7cPeH&^b>W3@_$KGg1@lGHG4V5kLP?*nW%A)UQJ` zwHKZ9BlsMChA!F%4~6$8p!Xlc+iCA9Ozr9`f`;45?y|AJ*P*SYA3$I!Vh|4C@5Ho7}H zpa)S;^!`Y68$F74Fa-M#c06WKV|=Wae@jvzVfrM zs7j(Eu8oDU9UACJH1a3V#kVY$H^=*j(e3psy8r({->>|6XulIWka1|{rzN?tqt)n0 z_MjadK|4Byra03VVQu7$R!4VDH}q5RVRYm(u`(`-`d~|Rj)tQzJc+)r1pTntjE?je`hETs`hNazLw!kfKy`5gM`H{0 z=)Lm$Fu+{cm~tUZ{rjK&xo{0kLmPSx_c6k?Xlf_^7>?Fw(QWh&x{W?SNBA*1RcCQB zX8S2@*QYUcV4;C8MhCPFJ!ubP>fitS&I>9oMX&!kOhGAh?(3p~wM0Aah&J34J%R^f zI*vh~TYzR@85-DX^tlhv_diE7_&p{|aB+zXPqw1JgkRg~gm$nEZEz2IbRNb^_$ivw z9KWU|=3;)VhU@Si{0)7t#i@Lw{rco2t?A#uW6^>4{i=CO)_T zQz=D1Zdap6^1A3&G_~)=^1)dCB$iL02inhQ`=`+<|1-&jDY@!&XgDw0@J(ogg=4vF zv}bg-v+iGS&biDG)5OGoTtZs;IyWZ%& z9*$1t3@k-?W~R)kzfHRyXHagIM!Veq81rL>ESXb(Avry381NQM{rkT=xv=5G=n3^L zdhq;(MtbE{G=SOA43tJcBkH56?to_E5iEpHU{!nz-Htz@?f!wblXi9H)c!Aeb>{H> zzdjW{&8G$NL|nC*k+# z0hb|}BLt8SZJ-o-0@g$ii00@j?uiCE1B>B&G*jskSAIe4X`1anJ(yv`=fzQLj#(Jx8t%{{teB* zYfB$m?7q0dv&=D>{7tKfL>iq@HK$hI$e8`LGl$&9F9Efha*U^z5KvVxU zy8TY0Yvph3f_ZKT19|{c|Nq|@4wT69W2 zjDC-H_%E7~95;r=TL9hGRnUGq-^l)VZU<9g3df@zEsnm9?(eneLG(7-z%KN?AJGwB zie8;BbLuy-^5JdNH%Bx3D7qHrV*^}{P4Sl`7p9`}O`*XCXk;DG$OoV!939KgpdBwk zGqE9-52JJZ1G+2HZVnl$h@OzGqmQHQeu!-_`4tz=Y57~i3mwq|W(20=eDsAa*dF)e z9auPj=G0F(BhbaV66@e@bO31uGN*od{zi0wccDjcFSNh$$gWE!mUCeTd(ac=IJ#X< zqa)3b9!|2{=yMg(scI0*eX#=Nk!VJiVNrYsT?0R&0sf7ih&c;}wNegm^z;9AE~;>& z2ioDB_`qvu>fecehIVik4e**mVMGO^b#J^m) z&F(H7Ubr7^=n3?sT8ystJ!l5LLq~ER?I357aDY|B5|rDb+i*0d<8t)<_tAF0M+b5d zlg>%*qM^Y`XoGFgj)tHwB+*s=47$x0#rvDkhCV=3{C&KiC>C~6UUc^qL<1;^ws(6h zcPYmHx8flxOw9~*5xt1@@e4GS1&W7NT@el79yDVk&{R%G+u0oNABg^duBrdx{oEx& zxn#6%iDYP~Jr!5+;6QXF5267*fi9*+vAhS(%xCB}`xOl&PsuRHWzcd%bd`6)bQ~Y= zzl<)*4d~k1ljOn%zd=*~2O7Y2rNV(x8V#&EIt2~UgQy)EU}yCG!Dx!dp=;xLbZXaO zIvznYbPf$LYw3{LWPUDer~+2NhG-xo;sejb`%BRdHlS1RF*^6B&sMpdB`g^?jocqjNnAP3>Z| zoh_L9Y(O*ceJo$Z{O4au8jFKVW;z zSs`=k-;(N&wzD5w;a4~S%T~;s=!bK04*rWtAAI)K@WL{51RK#5?~COhu_fhyun9J; z6dHaKn^FD}J(5dQ4xbGz(DxUh?QKA(_yhFQ?-#6!<*Km%eV}iZ@WLpxJR9wB8K&b| zEQqrW^z-O@!F2~xKy?R*HEzptoz{)rl9r^#zem+9``5avnXOdjFTCch- z95jWoE9GWrN|&KuO824-oR4Ox5xxayLl;w3ba6GoTG%l<8_mo|@&31H=Ke%?Me;u` z{AQA;W*B)9G<9Xs0IEbgp$&~eGcXHnU?KV;wE+#_3v_>y-y z4>ra>u#x+}dfm|BIJ}h`%dr}Mh70iedf~g=Dy&HPXY{1JxqkSr*9xs47t3$r6v|(r z?e%LAo_h{mL+_(g^dH_v|A|@+!yJypZj`5@srw#17fLk>DXf4lnuh3F=!)L&AIn3c z52NSBqv%vjM>F*zx~N~l?6?b)9vp|b=!hj6hla;v8Ok%z5p2Nn_zSkhn{E#oxepCw z89JwLVSU_%jx?=Fn3`Hxj&gUbi;tsI{b3XKzuV;}DqKvNnuas}7EGgD1Kq#%(KXNl zeX%=wRF6jIbUFI|A+)`p(QTL3EbOjgXnkFDx7;1egPSEoN~cj_Y8J&C+oPYODgGPH z#J}kFsn|S>ur~Vhz;N{ax#-$ii#hQWI)Frr@U8kPba7ThcSHRo7wKH|h!0FaSO0P> zj)&0`>mT%moGrumfQo1;>!DLM9=*RZx)06FFK9ctTV+oDIl$WJNqQLFHOX^an9{th z!?vn~e$l9hHrNKeKLkzrbac+wqucNubZ!rzf&7b3Rp~b2Q?M?&2;0Z2fXr=!1RS!!~V-4Y)rF4RkZw;WjLa zN3b+r#H5R$*j-^UG($Ta98IDJ$J6Mxc|Mj`plf3_nyEwa{;z1@m(de4SNqJVf83%m zwxqlqd*eBD7j*8x{!SxpKXku8iSF;MXo^pvtNLHG z!TjArxgNSGd!QZ8$2zzT-M0UtQ<}3!2(%*delpRH3p*Tv9w0Bq@&~be4t=pu&#=Af zqYZaM7wZdXDp#S~bThgpc4OuYeAPlTaSyPnTt-v3&>hctUv>J6V2cz^u4dJD*lDeeYw8j`D*BzsfoGiKXE@7HaG{Xc|AI}C8I6Tb7LqvbtQeS8_Z%nfM4SSxT=5nUQl>I2&^j_P(O6hPDcZokM6eD z2eAKd<6<2Z74QtYxC#yob6y|)hemr~2kM^~3o$?!Seen?2+40Kh$jMX#pE10o->Hg4g{$ZiRSI}MY5zfTK z17QHO(2lpFi}n&a@|%W-k(WhxM;$b?y^>tm;luI9e0-boHhclcjmVt(OC&cv7=DI3 zimy;#Z)E1gU^4Rq4x)V5s4#`w@fOPa(7FB@T}$Vp*&hy5QWV{;$)@pQ5_(i_jlPSX zc>AKCqjUEwdT?BhUOzf6I&@?$(Sz)M^!-ujkvk1tThF5B!SY}-v4sm$c@W)~|Dmfp z$C&W>Ul=_R>!2NX!BhvaJPOmPe;nNnZ{kVZfWG&_*bw+ew7eHxeBWd0|NlC}g-7MT z=;A6eE=XkdS0U(E7I82J!vO!+CSh{w?Vot3rK8S7v=&O-;V5k0^T zU^VxDj`5-5cC1HvG8)i(=;HYm-JbuV8Mwlcg92n^pQ^Ltr6iZO{J$Wc2wt=q^~AI_M(0f+EJ#N zVYOGrLX`WVb37fLnuX|E*^N%wr|5^=1scrWGp=&F4c9of5RgP)xa{X||`s z+z!RQlnS)Am(GmAUPsWGQDSQ!!<0^D2 zip&oqFNaP=4Lpxc(Tvw!kg886nsU*IiVosr?!aFyl+%xol`T zH{Ol~VtqgKKpToq#Yl9{r{G$AHrBUT$bI@x+|7j@4?-8u2z1dTu^i4oSL-G;^&g>u zokZvK%9leXDxgz$H@YU0=o;CGuBp@L`vn(;DXol2Q{9RSQ`QrGU^qI0DX}~Yt5IHv zPSq!9#%@_00<48~DGx$3wE}H-KN|QqXzKq)1Ie)@thIVe*#CYX??**3d2 z&_$MEX_&KO=p5HW7h^ZHqv2?PQ_*d<4Qt|QERLmL3D4h&l_>W|pIh)sGJJ2}M}-ky zMvvO-mxYGQqa8IwGt&tj(IE85o`^2WrRe)_qr2rWx|@ED=3E|*;_B#gQ_*%_NOIwv zt%)~2L09!}=p5eoYIxyJbVLKtIbVvdfsdlUqx<^0*TMkGp(AV_9gPP38k+I_=x0Up zV!X(>B6M^WI=AVV3G1T!w=uek??l&1uUJ0<&DcaVfEQzVGp0U0(f7}w0so8sJdpqO z)FS8qe-9UlYUsyfLv-%Dp$!g2Q#BK9Xfc}d|Dl1rkEZl9bQk>|>o1}mWm_4h@J4hB z%b^3QkJq^W?}!yWQWbO3S2RPHe9={(eQju{1X^y4W}*kCI>HK+lW0S$(2lmCi*YYH z!mqFd{*GywZ(SHjK`ckP8v3Et5B;o3-p_@ra|}AN=g3A94 z@A)?di=!E+fDWKREVn~5+6P_aNpx*IhdJH<+qrP=52G*s5zV+M{Hj+@G}ZOc$XlaR z&^ea-qM5rNow9M5jx*6Cd?i-JAJ9dce{=Y1R~2t|{}1QFR6mK%@zPj6igx@9rsD;4 z(d63_0x6BoX;pO5_C?Z1!$0vfo_HtJAKDoj{ymyyS4epQG&A?2flrU+MM*Ad zQLzghd4_kxqRWM@(gtYC2A~a0LPxqZx(UluK7f_*zgVvHUKmJkH1MfthF?H;*L#?b z$=|qegxBm2Up&g7H#(w`jzV923T=dmm0QE1>t(W$!}&Ha8TmqiEA z7|C!l(S?i3zKBM)GTcafj0W~6IwjZc4INd+TPe4XE9yI)uILund%)ULp~_(iP0<--tgJIC(sQ2h-NO^!H~I|(Dq9nWdD0a)~CXhjlnv&1da4tbQ}JOuI}qT3X7~UI@gQQ zgK9szcD}(XnDtQD=XKGJ`=GmPIGT|uXuI>AnN5p8f!i zKkesv8d_3FH)-#^xAvf=l7{wFNu}i`EhRLNtsx;)6p`#iB$7~8nnI=YQyIVa`=0aH z>wC`k`#s}xKIh!~H2=h3FzcT1>Gm7C_J5)|k?qSczi5L+z6t}bjt;a7nkzS>pOUlDlWqf=YzMJ9 zX5SZbrZw8mK=cGm&WJabp=-7tO{UGU{9!DA8q43KOK}KosOZ-r2Wq0bsA(+s!JL$b zVRpO)ozMidpE<~`NTx01!X(;=xo{gAs_p1LJ&Yz-?r*}9T#C;8YV^GtXbv=qc15?{ zP;7|P(3!r9?yg-}7tdqD{a^jt@IqH~+YH0jI2#kV6Ak6BSOxR#58v|}qq|@ly1y4= zBYX|rUVmZ(ta2dyah?&_g7OP!lAgk5?*B61g@%TqBb$LnU=zBgU!tMT@_jh#uSAom zBO204m^v@erF$Mt>aA!p9zZ8{4&4QXeh5og29rIhxRDD(vk~2n-=W*-vLC}&tEOm2 zZP9_&MMLx)y5>935g)~>cn;lWWsc`c{TECPaXjVq=<`?q5^|$CI`f{%~m! zd!RWs08{_|*9b0}P%#NTXf~lCdkY=;0W`~hjrX(u7CO#@9zZ3dmC>2iN8fLaPHYgG z6Z7N!2hjnq!tzNjwsGMuIEFrW3ZKS*(Fm;mJy+T@_!@d54mcS)n2Qd06*|xt(3!o7 zMru2nOQ+BQWt<8fmqBx@Ii|k<_u|5ihr|aap!@k=bO0;R1~x^%Ko6Xgn81Rk!$4}H zA#RK{u`T-kboBlE(E+}IPI&Wa_PU_jjyCiS8mdFs9sfhuzWX2HCzzpl zJ>@M}12fNr1FSLn{$%tsU>3H=ZRmh9&V~sVKg<5Nq8b%$i)+#Hl=#4+Sbho({VRAG zev1kG15-!ppCS9ppi8kFjp$l5NjIaXP$eprz26)BSJ~Y=5WTOQzN1!VWv2 zp_`6=YTbhlU=5lB+tG%9LX+D59YeGFB07<5|An9X3!&xq=tOQr2R;#N zxc~3w!ZqEBhIS9y@M&~+WM$LT!2;L_+oDT02W{v+Go$)?&1}D(a zXXH#zeMP$xeZL8sj5njnI|&`oBWRAS#GJS_XEMy>Jt|64u?tg2aD3ojbmTd5g&AHE zt$;pPA3f39phpX!KKB$F;+N3v_yHQ?-MEl#ybsOxLHWagXP^UJj3()}yMz^3d{umw5QFMa8qwVD>7zSRX zAp75grxFz&2pzCD-i8ij7n=P)p-GghQ0S--8i{Mr0o6e7w~ls=_xqs(8IA7$yV0dy zj1K6zLhOHMwu1_1@&nrO$@pN_!lA<}&=)Gja(k>mxewaGT(sd;=+bOOmu4rH#h=h4 zIOEdrTy6BA>YU`lvwA!xa537^Mzo>bXoP-1x8uKP=!+FePkqW&K^tn1?*B39QZ7c@ zc^;k6N9Y6(;8Oe*eLgw!vXDHhu?!V2q1)=K=rMF{FQ6Z*xr>Gd%c9RUh~{wiMwjS&w7p-DBu}PYdIU348&>3aD zG9*_%bRb3036(^bq6zw`*9-lu=!Xt$7+&S)|4c4CN}ohu{0I|xB-ZCD9&)5Q)}p=( zI?%c3bE~l`eh|xlVol0Lu1Zh+DAykAQJ#fu@C|H?*-Ehg&C2Fn)WgVEQ$ogZ|is@=SDMUtmi-jV5XB z(#f!W7M2b(c@d4o4y=n=%Y>|NfQI-6OyFE}Uq6FJ;4^HE$8iEyD;w%pquX;^EdPW? z{33cjlueck4L3%UVhkFIxmXF;p)>s^dJa9i3zZMgS40PLE!M%&=<}=4gY9iJS@)rl zK8g;YV1*FTWD_o$Q854w`3iI(JJ5saCp7d~Du((}XakL+!_f|xp#$H5Rd8Q4XQdFa z+Gx_=5WNj~FPXN43)ki)bPadm7)-02p88#?ThN2&9W*JwLp#h>C3JXAv^|>j;8X_3qSo%pffF8BR%y?D%H@Wdm5e5UbMrLXl@j) z83xiE?RXIS88Hi8`^VAbdj%cvKD-;xqtD+}i~VnhE4i?vZD=HZkLIZzwqFIbfnMkU zrlJi$i7wf@@&4IpkvbuQ^)SKxUg&n4f(`JqXl7mZzuT-;-7tU|crE1@a3cPJ4sdwA z@ZxN2O8G5pj{n8_=Jmt-)6u0{hfd@ZG?{-v*FIZ=&|Xt?`}JwS{vXW6cq-iYUtu%M z-!RO$3p&#Yn7{|IF}{i(#eZT3R%jHStA#Bn_e7KK5p0CJV}0Jn>1k~#Uylyx;UpJ! zycZquB~3zBSH@hFyP^BH4;I2v=>AWlAGZ&oGkhYJUqzqahA!DI^yBvw`knG$EP%P2 zhW?Vpxo|r*M3bi%nj90*2bZ86NU&e*|bRD|ZyU{E^gASx<%P_#o(dKBwJGBlj=* zeBNtAa+W}ss43=m|6j+&QXGJ;`B`+${zmt4W~*RHG;8aj9d||tI5~O`+VP55eg(~` zkI>z66kW3NtwVilO#S)4!Cd&_?Pzi>#2UB?6ZjRn1pmW9SgcKY>OYa5fkvuV+u#gz zKr1mjzKXZuRy4xZ+lAfI19MRB-;Vw7gF~orq$APfnvZ7dV`xO4#dO>deI5O(^&UFl zU1*4ppvm|bnshbV2YX{R$}?km1DXS0w@-#7%Gn_t3?>> zK7dAUC7OJj(1C16*ZAvr{}}rIMRcOYI|dsjx$uSFXal3rHJ=_`ie~w9=!`!=2eccV z;bFAlJe@*vRYBY9j6OdA{a7A_ekd)DzKsq%d6Ek|&e}PAK`4Y>C^tbnzCYGKkDhd2 zVQ%~pJ%D~iBX$NI*x%>?3S1Z7FNHqW1dUiL^!ctxzsa;dTo{tkXvi0!C)&f&jp#sj zVlg~|K9_cVC|`n3pgbD#2I&3v(cb95hNHPM1C8(lsr&4|b@72W&<~H@=!2)C>0QE% z6X^D&U04M%5qYjhg=+-&q9S{my&V(Q=jeuE3MemC0jAB{|JUjf8t#wg!c6qQ zcmmz0@1i+z3O#T#ZU`SHRnY9e0S)o(=$F%Z=$gNbzPAHw;!ju?FYOtABI?wW{qKP> zmx^-uHagSeSQ^uNg&9^s%l%_{4*JDpGdkce&>5aWpUc}j?53Jni*i4_9+#pMIuz>* zCT|S;vJE=2NoeR_L_aR~V^hr5CxpBuR-rrweeN-Aj2}gF-4uSpX@$OjH`?(Abb?v? zhJjVYs+5yA#EQA-nZE&B;2|`5%JvJpqB%Olo6-6^&`2#um+DnCsrF-YJc(|z>ixqK zv_+TZX7ss5m~j8E;KGr;i*@h>8i}h1q^JJfjvLXhQftwWe~$^gfbNznZVsOjHL(@t zhG>ZIM0d?g=x*4GcDyTk5L5sE-#ISUb0hb_^wd9#vlSgsw?SbaPmj()JG?i#1|85g z^h4@fOvi(m15d>AX*3BhpaUs1I1HpTrau4cbCH)D?a?#27aF=zXfn-0J6elo`TOWT z--G$_TlBpXXypFIu2^SCdRjNU8{G}xVI%wl&6%o0+5e7w3>Thk6Vd&;5M9$3(T=}B ze|Y>I9Z<1h;WMHsnuLq7HEu%(l4E$7X;IujxdNIi2hiNO81FY8!T!I4it9#%2X;k& zL)S3R$k1Q|G_;-2HN62H=pb}S=Em|9Xhhz@1b%_e{0thg^ikn6;u188ON>f}i~3X; z@@{AYBhiMZp&?(2ez>eelW`-u?~kD$PB}-1&xn%Pg>q$dt&?bE7GvuB0J@8gVJcF| zF)>tVs4Jkk&>E{@cXXf5iRDePd<5;F$SvXda_9u=pcCkX4!j@w+?ZIOjOF{W2KC96 zTvX>`FFK-JV?)R;N4HB=Okhj&{$O+|CZk_4W}+wPLNuv9KyxbFxbR$VG(v^Z=c}Th zk`1uG`~O-l{4iOK&R`cB+QZRo=$G#wY4>vBi!Y%geiL1@FJt)#x|aW74a{>}dg_m0HpROsKaFn7suRP~ z^*}>D5*^qaoSucF8aGnDbaMC@-hs(GsW{1n2gUf?!^l3snv_358%UcHa-3Q^gxpHbq@*3!Sou{(@Z{lJA6$yM3ZTNfiOJ>e#;an() zCRKH`gZgMlJEKd}9UbT_G=dMHOSBFh*w$Fy9m_wWOL=x0``>MsXL>lJ%c14wXcG2C z4~l7Mc0Yh!aSvw0GBd)!DqvR1HPC_7j^(!KL^_~L+!I~OA!x4MmW&m5pvkl-mLEZr z4YRnT%1G}3*M{AZhR;Tlaq zlO>4>T#9~Uc?GNEk7!O5oD~LG4b6czXu}=QB^!xm{dg>c%g~6v5&Z~#ejgTc|DWT+ zkYwH!9=sx29!;vcXu}QANHj;Yzc)JL{%Dd8Lv!FxG>IRJzJ`7Q`4U}{-=f)OGk-@? zj0k1o+4=zAG+!V(lmzc(~R+Z}`sWEMJrC(wz!inhOP z4*TEGd_{!~9zvJmBARTu=7zPq5{*zLG`kz4S==_3Z;bbcpaYtOwz~k`J+P;|g|#PS2t7toGAi0+S`j^>&l?iY{N zOmg7>+M#PVD0&B)L=U4KZN>7q2c7vpXoxSlJIuHW)}-759q1%1feXV7NOU_b#R|9yZRkhz07+XILR$unL@l)8j_7*>(1FduO1J`jZx<%; zEIP4E?@0}eKmWsp`??)^aNLBevk+o5GP&;!4U|S-?0|;&7Ho^N(VY1dZRZ=j5r4(n z*yg^lOJ?9*l;@x`&$!=6vHx0f;dbhUCQU!IgVE7hXvmkN2hwwB5^X_4yFK3Dhc4l9 zbU@h`hZ*NbBU2q6U^jF(48_#H|DEK*4j#eOr&cU)MLXDq9wa}Y2T;x>!E4a_Ezl+C z7R$rX9Jn2AcM&?UC(-v`N0;<#Od8_9xNv3#mxck9M7K?KOdUMv(ln3t9neU1kM{?n zNjd_Z;mlZGiVozt=v(LnzeIo8@6b~Azau(Mh5I_!vXJEk(SxKB+Q0yGTTVomW-*$4 z&!F$Ug%03jbihBM?H)rTlksBp{Yy7r6gTfoI-i{gW>c3Ai7qG zheE^k(IdAR+E80`t#3p_Iusq~T&#>M(Mat^2mU=e^Rwvt=aXDG!raTlwkd&iDL27a za1y$WDn6W^`li$i>rvi>X7TT6Zj^f@d~>=E{S}hQ=zEW00zX0{^$R+oKd})e^F5lL z`qQr+umKeduor%S&g81cLZ};{4Rl3A+!tNz!DvJ#N0aDt^U#SciLOCs{(3CGh2&f^ zZ4VbF+rfC_1iD@RLpvz>cu3A#XvkWk$=CyJuzxHMMnioIy0+6}{Va4M_h2hrizfZ= zSk?WX{zUkgt%o+y5S>B0Sl=D(s3*EhZi@Fuq36IPbOLvwNq0}Y{~WsJo6z@nqPem= z-amk;KmT)-3zO$8`gvdY$uN-1qNUM&UK8!$S~Ro+WCoWQJ8|{mJvl)(tax|JWw_;gbh;Fx+(Sd!8F4=x;j{jgqY`P*m zH!3;{-OdlAN&Dgo_P?RqON9~m9$kWe@mkEYGHk;xIEeCn(KEP~a?e%issHgLZFTqo zW(m%r{s_K=qn{3+c2}-RPa93SGj_%|@R}@q<9a3;9;~`HJ@r>6e?U7b|7?2N9$bXJ zaPxCvX6tbXxe!1>ZbP2ylx94#* z*-oL`^Y3W(SHgDAgXT=~8ZJDOo1kmb8Q;f=XhRJ)g>BayUF&Y>_8W|5^(|;JO^Ekr zqDi(Cj!yCuwY z7y23S4K~HoSOcrS9?FBUCgs)G9lu7CxAGgI+ylqC|DWUH0ynPM8h#tD$eZb@|0?}C z97cWVZ6RwHp)+5JhI(DBe-+&wpP>8wFuFS~Vg)StR=D37{j9kGjo5fBM*nGdaN)tS z9NnkSpu6D%bjF9#B|43EoaOBh(md!nP#ImC=2#lLq9^6;=vT1?(Pz=;ccASYz@!}< z<-#O6gKoczv7GTv7-<14N&Qvm0Gq}7eprw4DEtyvV+Kn#<=yZxe%E{H{9$B%J0G3U z-1ozT)uflaYoa!1&|!?6w(&tpYAh&GV#qtMaSXz1Ib$ukraI022& zvUq=8tp6B&{{*^3|6voX_i-4&WNbq@`3e`;a`88Mur%KpPP%#Mntgl(*u1`W_ zDqi% zMKr|Uqch9;ML5weMLTYbW_v%hp}Vjju0R`1+Y^?uI3_3#M9+o0(BxZ&F40OfNk7HZ z@Bbg-!mmhwp~+YH%dlOVp%Lhhb~qJ1)0fBcMs!>4Mwj3u+Hm^b@LUN@P_B`-s6D_naBx89@ zaQ}LAfaB4hCFk#B|6B1q6&^hAq9@|VXwrOzerg>?naaD z3=Y8bZ$if-&<~*n*aLq+BU(H8ZP<3*a55DSD<&OCPn$;lV>lj*eiw3M zLG*F7#g5+{8T!Ig=4t|Y}?2;cs!p+67&N)(qT6vLy3{Wq|NkY)$AuBtioWnE8p0#! zKE8my(Dh&l-Hqt|F=+DLiN3!A?Pw!9pT+SybU+&# zfUePa^u^g|M3$lrJ{9XF5FhD zqpzd8U^m*qfmr`Hx^@K*hZ$BtJ8q6P*d2}FAoTs|SQ+P|1K*5B=KbjY!|Z=6{-DB! zGLD1?uSC!A3TVR(&^2v`KGzl9PD9X$y^d!8PHc_8p&iyb8kVjFn!N2}xjQ=0n~o;K znoXp_qj53%;#PF6K1Q?m0J`P}(Szz-EEhT!lCdn-qrL^&(KM`!b8rN{i5~4`kB0$u zKqJ{L$%Qi*g{hFC1DKD_^g()=i3HeHH-W^6>4 zcptjtzo8RMX8kpETo}#r1RCmcn851Mu4qFO&;c$-mu3z6bHXNc=3CK7ZAZ81w`jY6 zVtM=reZK5(sr$*aDqI+fcIb$1j!uZqLATXIXhdE{2e=)5?=$q=IEoG+^Y`#vVYK72 z=n__q)0)CcC@2KvHTQPr@RS$?r6OK7n%#XPllP5LzA#8`u=Tb z#O9&faUI(6c66e9u{Qmu9p%C!xA>{BMh&A~up0Hl&=;1Y19%SIHE+c77ih?TMhEae zbcu?c4&}0#pxh2!l9A|1I0utv>HSw#X@u& zJ&7*GGngH>U>4jK@4t;M!47nWpP(Il8|#0>E|d?UxlrePdfHol{T`sEeKt*P)^BjRoBQL*oOt zqYdAWhU!T)v@f9zzl#anjW%=|J@YT(by(}~^t8ta$!x4ax#Yj$x$fuz)(@-WR4j?> zF!lMriwiqEh@RPhpley+zwl?dDxqsO4n1(@#PUjXiC#r#xD$QY}a#sHTV>@g{h1uQ{9ocyF#rxuetI-!>gXUUe43UOgH ziL0SY))0+sJ2WSHV>uj)?xN+{k{PMwd5enXRBT5_nw~wpa0S|6b#%s!&;fTwcfk;} zgOSmxXh#ds=bl0*_A0u)KSw9{3#R%><_IIb0&S=~x~BEf5OzWv=!dTD?P%6N6nz}+ za22{swxCP*F51q)=s8S%I_Ats{SBzX*qQsuUR)TeXQG?XPp$XREIoz;F*8@FAA>b0 zFTv9I0am~hXvam;Gg7;#4m!|QX!{*veQz`Z!$W;CZ7vr!unb+}x6qIuz>atnjYO@C zjMTx=3T?Oxx?Ovs9SlW3#BRfyxE`IzA#}hQnHi~Ha%qGeC{M@o?*AQJG^XMYtb^5Z zhw?D2P5Ei8g!|F^>3KrdH$|6b5E_XY=q_1>F6FjZ-i0kGA4dmNId6EsD;A;uv`JjJ zHjB`iJ`~Gq(Os|+ZSX@h>-V82-bwUmK8I`ZUrgXL`NBYVpa;}{XmZ!PBqR05@u#8# zIf+R_S2%xY=xVfF0qv+Bnnc%Qb{vd`b_BWvkE2Vl3WwlE^rS0VAe;xa&;j~`40@8~E}W6p4y#}*yd9m{HXMN8;vj5zY1k!C z;$q70U;?`p2}^n#8i6~|rJRc%JddIgcsI#~Yrhj+}pXV*SqOH?jUG+Tlqw0)L_r$Sjt6KbcmYi_%ooLp$t;J~$B_*aGw*T8SQ+ z@1y6$K6C(Q(cHL*c2wr_kd&3sfi^^ww;h^Oozc(#8!`3s|1d5*n{Ppn*m>xT)?jL; z=z*~nufy~!!u?+88V*2{b_6=JMc4>mK__+^o8o0xW~42^p4bHsVrBP#t>R&(1JUfA ziVoynbSYjyBd{Bd&>!epXIvF>qXrt8o@nljMBkqt>mNlU_F^pWM9+oqG3nY~Rw5(y zi$OKekl&1E`xJCrJ`l_A#{1u+$#o8mT;W7mvdU<(wm=6w4DI-CbU(%iFQ!AR2X?P^o;L|4s3F)zZ=~RYhrmj+TqXW^M9cOE_h8CPL znxYdMg7z~z87m$_L$w)=$R2bie`4xDDjgcEf|gsMSv(va*u>~OG>0CJzJMm@JMsQu z^h51`XbvPRm&r(L#>G(dAbJMP>J8`&Uq>7G7VYR?G$-GX z@*!dq(E;9r349X$FnSwP|Nrl=TsY#~6+*`)&<2~M4fa7hPNE$@fF9M)paXpsv*9=B z0rVYue*BCM@B})6oE1ZaN}#)^7AD;PU1P-r^z2@YhG+{K!oBDKkDxQTfPU=etrQx% z5)FL=^!|0ReqeMaI`Ahjf$Px;e2(Nle_VzO8#sYJm{vJ7R1lq6X|%)gXwub-wnC58 zuIK>!p}BKwygw~EA3aGQh^~tD8!EH^y|Il78~6kb;g9jbBj|w6q65fTCEULhO~NZ; zxoxy_v^!Sj{*7ov=A-RAio@{*w4WkXnZIjzW!3O?xCuItMQDgtpliPY&4~}u7k|Pm zcodD$arDFJw^%-lr78b~F5y+xLgcEV6K;g=uJ%bToY_dU;VEdx*4yxX=n^eOJ9r!o z`ReHUcz z%*E>5co1vh4y=v;U{kDFKMY_3n#FU_-Ln+^3bqN21njX@(sd)Rv#Tu5A=J+ zzy|DpFQ!uA$d|+io{nxrNBS1p;VyK>2hbDp7^2@+mrltc}C{%h30)LAPBE^!@A6b7L^NB)6dN zB{6}^(8wn@abbu)MVH`L^uhnoq$%7abWjm}p+4F{7j%CQK|7v?cK9%6#Z}k_*Ps#j z9i7lW=(ps|rm2DP{htdfTA(M>2y{k^F@aB_p?Vt~&`vbl52B&Y*(@|%1l|9o&;d2Z zO4tWIC+4FE*wbjTeugF7{}JNa62zPSG{=faWK#1hyE?O+Th@E-Jq7tkfzfS}ynwFl^j2XYOVE>W16IV3(f7__ zO)S(pl-po}@?i8!>Kv?wYw=qA2A$wlZ9-(4v|<07G()Ly0OQaX=c64ykB0L7SU!fX zVV1U`!;0v0ZPA>$8EtPYn)OrA881MWbPc*B-$b*tOJ=10uz2})A!M`B&@M$o`a&%4 zL6hn?G~~J4hwpZ^&^5mfU7Fj_b7LNs#D~#jdjlQ#5%l@|9YWI9PI6&I3ryfJbcFNK z{k|TZ$ze1n&Y?5Cv}1@&DRgbypablNwl^N#Ef1oReE}W72k693qDz^)v{UG~IX0zY zAllJNtc>rVGdYQ_d4bL$0#(q^_C)vf1hnIs(WlXlK1Mq_g^lpa>q39Mk#>`5Q@OCA z$I$)y8k!`B(Q_fk^`YTP(Jq*veiAychtL^rL6_$9c>e<0&J|t4k~Tyq&;wnfTQT+j zf6h)_@Zp0FBp6;RJTA143XvhbmyJj9b@aNEhe2hlsFq%XE zpi7dkNB9+yT9_O{MSU(B)(v^pQB51I+hFd z4A0d>cgMA8^7f4NLwd6RZD>+_U>@4hBj|_Fi|CTPhi3T?n7|X!JiS7Ll`#kP4bcHM zN87m>jpRf$lJ{UP+=M>&W-s=?2gY|)RK=s16EEu>K3uLsM_dI>nnvhAI>+*j=!ekg zSU(-@U_Sbxbw9ckkH-6((It5o?f2Ux7umQtgl?l_Xa|2rv)mZYfxPI9TA*2c1Dbpj zFdY}6?>~qh-K)@cwnRTbm*8_W#}1(rOJ33^G+Z35sE(DfDcZpptb+4!Fm8_bued2B zWjplw@n|HTL)DVWvgVP**|QsgFL_1`Tm{bhq?Fzs!z7Be4oo|NiG@E=-c`XanD&FPw;8KtrF= zKZLY6y4}j79d*P6_QnP{6&=u~SpPPfY(Jq(l4U@6FE8d!QgOK#SO)F520Fs#=uEq# zGZ}$q`2=(gr(kk#&T zJuXgD;Tl&MnvweBao3?s@-#ZIt>}@u8{NmhV*)Q57D8JOUE5yxDBg>1y9&cYEW=&(!2-Ld=~I`YHlzCRP|^N$QODT)s8N^~G4&`8xr z+wF!QU|;l{C^afXwh|iIWJ@kgzMkla2BG_S6q=0F&<7WwYySkgG#k(kcA(q#3v_@d zVmWj$C}co!?;UQB)dXBittcnKQ15@-jF(UYrPyx#|1!%=9~ zPr_^Q5p>CZKqK>OG~2lF>-?9aOEelyzOiUzC#d^>78h=d#b^WXpa;y?=-OXIJI)v% z22>bJP%eYkw?-q-1)cejSe}How*V{Q3ao~^&Hfexe&x+KlfWV;a`#6jryiwm*7-fiK0X?`2~-+g)m6@KiFN6WY4 zFkFhY@glk{t4|DTSQmZ1eY6WY^ImAOjX*;_1$}QidZ5ihllCEWqAMn{|6PksR8+wC zaXFquKmF!U3QMpOZD>7u(ru3A-_efGqRE`W^@3zB)M=c zW??F;qZ`o~Y>VZ0&;fpm9w2|A$yE6EkhDdyBjq}1{at7z=0zVu2l@<_#MjUxI{7UZ zj_f?Ty$VeUBP<`Sg9E5sfyfT`|Q6eTsX1;XqHdLdbkcvn#1UTE}#R=NzRxH2{fc-(C6yLa>rQii#~TN zI_cf;e|L;Rw`01B*W>}N5Xoy;)N9s*zWTs$gTo!#D-Bv$hMZD_H5Q+9! zhVo=Ai%(!R+>Y(=f9OP-&tm`I%0(Y849PCEgCl5? z8uA(FfR>;$+khtDMf5<*J~wy?nyi;cuR)W!%3MNkN6lkJH*}4LqM@IPuJJ?Bwdm4p zK_m1Tx|XNWf&7Ec@XC2%zzxuL`k@1x7M+bodQp-K_vy>=#(U@hK0!zLW2`@e3Ce#* zi_Z@YH$fxV2krPabf!zt2t9@lYy&#c-RP1WL~|#3lnY-heRp`FWwaOC&=~Xtn~ctQ zZoI!1%Taz46Lz`U_|dRlDDB$L#+O zT--&)BJ7C;7KiK|fv(XL=r(#E+vBgXzV4FneZMabpnf@~PEs^y3M~yGz6L#-2VysT z32iUiGNk{sid@vkZnyy#;qBP;f$)v!HT;b7SOgwPLuEF<-IM_$EsJXiB^ehG%>e#BOki$BT!AJ4@gF5Its@fOT{Dy-=gbo)Jm z*Wm_ifLT_A?bZl8P@ao!w=b{;eup(N|H_ce*J4S^z0ln=6>azamF#~%&7O%j-b45K zH&_?{!8%xbRcLTDy5>(szd%EoeRW8>N@&(MLBBb5LuYz3`rI>E89&1+_|Izge+e!s zJsmpkh;}><3*cH@gs)>4Y`Z2LrH|lH$~*B9tno}n+Ee%`cEVfMhF|^OiY{&TXT!jo zpgA%QO~M69E}C)iG#aua=vjUFbKx_g0~)$<=$XDGmbais_I^y@8T6nj{Cs%6IvR;? z=mdwO1DTIkq8C{#X|1?)~O4=t)d;>f*#3>(1ssJPrxncz;<8) zf5Kdtbwij@Cb|ns#&RXJ!cbO#!NbJ!V6ZVVwG zhc^5Gy4}{I4ev(>d>#$)r7wphtAs8^8?=4|nmaQw=^8GN54?#s`~$jA|3L4jzY;#> zDx)3NNB8|`bbG#rF5O9V0_V^Ub8m|8q2>DMXG$M5`-f~|{*HWReDI0rb7=ByMhEgO zdH|imA=qql_+qjKU6Pm4kJnGotloBQ?%nT=n~DvJh%ae<2H0aWw(S}s)kOa8Jd(gpb;3Ed z{)|TQR4li7FAT6dnp?v#*_Mm(TsWfF(KY@N-QU^Y4>P?U{rJ2EeepqbW>2B#!%p<% zJcaJ_OFjt6Rvk^kHfR#|LL)N_&4DQ&u>TWWtf9gYe~32tC3*y(N7p!Gdl*nd^wV)3 zx(#2$8F&Oe`38R&A~_TJB9!(BCh&1|iMOFkv=8m?mk*O6WdEbW2&C-@Gbw`(q!pIH zk!S}C(1zBax$zddkN049{2d+mnP|3;Lc|JTCiTUm<LT@!x`wn7sc|k=zzAMx$-%>oqvgD`7BJJD5n1X->bQ> z;hN|G+MxsLhc3mkSpO0_p!cyH?m*zxS?H2Hj_#u8(f4*@BmC-f z_P_R*K4IOxvJ;BS+1FUi^cftOYhv88C5F28Z zFEdjAbi>Fm+5ZVDUZBG4-i1cw6xPCGdqeVdMzgsOy7q&y1x`dm`5Jn%?L?FLyI6k_ zO}czvh0vEnbEPi2G~JS1IO5S*6Yoa{@;(~MBWOfUp`Y)$_l21kLI+e9UE6ACh})ta z3`Ykt8$HNY#`_;)g7Q&xV9E5aLjzZ%Nz(xB_&T)1-e{KJjLvjCI@8(cz#qh2S@`Tg z-@p6YaQ_MP`Sr2{(_FQ_zz)*b`=NMyMZ}bQ5t1K7a|lh;Gv>4+a~e^*5qRI1L^6g9q9Fj^rsS^m%mcHlu6%F`A`6 zpaVLO&hXNo!#e;&G2OXB?}&@V1;pb`BUjm+QZ$9)NZ>D7u>hr*Z4;phmL zprLyKtKt{vb6F3Ej!L81T@78jmgv&-KqE5*-96LM53kwi02ZU~J%>){%_J8&xcCNr z;Rm#%qv%XBkAxSBp!>Nz`g|L7X*$LFLFh?(CmOl=XwE#2F3}qFDBd3Le~Csid7O)^ zT;x6)zHsD2XHpOi-PP!e?a=}C!fZGgeQ!7#`car2C*jRF4aebkn841*!Z|Y*jqE%m z(#f=ST(}k=qFMbLnmm7_9bIue%%B81fTn2Dc0faW6Phz4;{6%ulH859^C%jb*U^*m z9W?pA!PM{n{mg}HemXvo=a-Ol*IUFggYpab|l-v1|- zGf#&fNQ$9n|3m0=Z=mgbj80%5+TN)o7cRlS@qv7Qgn?XvK3Efdup^oaH)1&)73-Iw z16_%R{snX*@1oCti@tvXP2%(D1hSn8yDE7p7iNEL^b5%KX!g!VXD}Z{f@b5WU!wdhiOg|6LkGy;F3YnAWM za6(>&c3c7tX?=9Yt8cX^4-7?pAbW^U#p3 zz)JWwnnb^$C*9xZ+UEZ&G+Yv`uYx|;0*zc3G;$-+2~3FP8EAiVF}436<-(9XAKirx zvfgce~fd>YN6Z_$YTeV+Yq0|hUH-|sJt z{V6X(cg1gL!~dXXc&>|KK>5&tltKqy7oG8qXnPaTj_0E7JQ2$;q7mATMtJW<_P-Tp zsc`MH{T&)AfgYvx(E7gUwwZ#xa3MONLzvoLXi}ZW*;x3WkbDngeaf5hT0DhavG%{= z_Xp-DxtL4EZk&TX{|gO$hqWpHg=TFP0_%rMS9Ii?um*mK%`jJ%%v6%KMR!3Dbm=Cd z17Cnn^f5H_&!Y!j@*OTrlCRMa{)Eo>0{Z!1Bx@#Juq)7Q*$&O_9%!ihq798h-=7zK z3O%T{pwAt|n)qidm(P}&*4F*shzlQ_gEsIYI-n2HPsQEX4u6mL>t)YOt!)?d{s{E> zdFVjzk3Nd!DX&2%vKt-9U(wt-j3E2(DlWXy1r60;bf%NgY@LO!?P@gX-iqZtXo!E0 zX3H6tq$nn+?|^R8(da;DpaXgoUBVBrlKcM<7aj-&a%HBnxiPwi1JJdai4NpJ^hA3N z9q?W>xsIU&zdAiUS1Wo0`rPekdkfJ4KaUmgZA{w12`)5CMwr26=vuXpt&YAPJS3iP0O z6`SC%SOY8O4N2Ay{j8XX)o~TNP4}Yv{Q|ny1@nb=8lVvviypzV&~1Akx&#mAONP*F zqM{xZd(kz@cS&aI;HZago3?1^d!k=fZ^I0H1l^vi(f4+syWJ z3x=dDflj0uUXRJXTzJ;Mh&HezmJgswa}M3#MGA%cmCFdC_K==&eU`eW$CE@A=tPb*k7%-|Zd!Io%)-O=4J4sGD+cz*{rru+?> zBbOBm*Vpnwd@SFMexG;}eeV-Ynw>v!VOHn4JTt95*1&sk23ntaMQE@Z zx*J-fN!TNn`=Q%w44R}2>_&InkFk6q$%RXhnFtZ6jb?F2 z^uej<(Yp-IftS#Me1Wd*Ni@lFl?>Z8fvNqCMy4;iG~>{mnt`_aFgl>*%Um?%;yrYm z{D(%Oz}4Y_tI-#0U^(oJ-k*#v!F+V79zzHEJUXE5Xp;SaRq-qu`fEysb{il|l1yvQ zh5Pgtbl*RMcK9wj!|%}%pF{V5{%gW^t%44u7dqn+=o-&O2lgB~^KJ3|PPE-)v7EiM z?Xmw#a$zW%Vr{$*UHduc3(uhY^*uCuzeP{REM>w$QxY3eZh>}u2O5DTXat@|Blk9% z+{e-WN|q%e?*HmsIFmN$n)N~-9EIk_Dzu?pXmCswL5ZJb?~m zBl@Yg6K&@UbO1*&X^8$8Z)7hYW?C#-4Kuml23^ChXa}><{ksBf=vlO#E$9Tc$MQGm zd2j^n_*ZnPvQ!8Ix~c;E--b$4VFQ)X>~DbP!f-(S8P_{fv(FQz|CIH&nLCDH4HlfM3vRWA6M`#jV zKto)rdWcjV>_~YqnyeepkbjB}WDh3r3>tyLH9~S}=8=CC{V|fxjO?eKQOBL&ciS@?Pl&7Gfe-ewi|JQTjj6X)# z{C9Nbx$9=8ei$u-hITG`4y;56vIVo@c1*{QqkH201L(|;qoF>7Zr}8JVE{!i7yYM| z<-!|P(HS*HU+fsY0bQa2=*VwH*YYkjVhhobu0VIoE3y7lG?{-!m*OPa?m6`NwEFCS zLtTgq*S-`wke29!UC;*l#QI_QEai!4gC!b-hRUD=s~>HTw$lfFZUj2uacFMociQSF3NCm2y0;OrlI2|=o+>{v$q@C!SLuz^kiI)4tyh;Lp#ykbOI~k zCC$RpHbU$Bqy625ELk$`IW8(wu^VgQzvzQCn}-g1qCew}N9!NNlK6ToA3z6|)*>_Y zo61G80mU9@{r%{Ytwj&2_t3~3#MIya|0_OFv}H(^n&^wyqXQa_uJz+s71y9i`W5=z zS+wCi*M=EaL?_e>E8yH%-hf8x2W*6YVNLgc?N;HZ*%9bWA4S*pZM5S(XmTAum*fQ6 z@p<(50j&Tp8&tewJImqMSfAMK6i#FS3S5Xxm# z7^-zx6TgWM`lF zAF{j!T5%IP(%aC;EJFwOd@O$*%O}wRT-hab&;ZTqzG$Q-peNsQw4F_8@_mBtp2O(# z$y{ACQ-6lDIJ%#^M{kMFM+dMHZTK_voH&afwPm}7FDPBmhG$_1T#fDV6qdz?-9tZv z&~_d{B9lyei;EUi97G3Dx<^>Urs&AKqca(WnK&P_<5KiPXE}OeK8rs0CMNJ(^h4|- z`WcbqhVXHH8G7Vjf&BZ|eClywLzU1^r^aYx1;AkTJP{H zBl&O{#qMas$FU_|KzBux8^bx$7mesp^tl0wu;!=Hj*IjQ5h~k{{hyVJMpU?VO)(GNgobzo zx`xwZ{oGi;6thvk22&A2b7OO?e+TcP`~e!NcKyT0cTaQxebE!~mj3MjUR*pxg^@Ug zHdJUpIC8H-BU2e`VGlI>7sUH-q6gL|v3v|Yvj2zXK-$eAf|sHbsvK>G=1jLF7tVML zCU7b`<44i``83+W8?n3(eet(g&NVP}P#o=`Haf$$=u-AZBXo0g4Ep{QG^dhFxiH&T zp&f2RPp~hs5&nfHQ|&=vn@vHVTZA4!t1utFgC_58wBfYDnW^9D$d8r>q5Vui52AaK z&yHl;GhDbWzCn}jJh~J`hlGwAqM_`9hIS}Au(3D**P%(7cW7AS+tCj1K==KWF4<%8{u=c8570;+ zMI)Abcu4Y+Xg^Ib_4EG?T)1YV(Gku-_vsRJJ3WgD{5sa3M{^?oh>)C>&>RoTxkrVW7e?=2frhvd z`rLKsx8=d;#73e^G7T%>LiBsW=27f_v-1EIj_ep(J`>CTp$%q^4iPDVXDHXf##muY zcz!rGqOUJB4xmfNg`{nOO{woSj{Wba(Q5kLy16I`e-%mrih(an<92G!SYcEi*cC$f6ei2l0CK~Fz z`OE=sqrVDNYJ!JR&AgaQ0hN*%BLiHA!G54_*g~V6Z$y*_RXgLrGk0zTgn0p&>RF-{K0ff?u@0u{k4a15AhtnP~eGq5!M*`NZv z12zUDj}LIw#lEXG4PB*sLDj-dFcbJ2>;Pt(;N)}`CGxlWXhOGvA6k!hy1691GraA8gM}g_-?*Mhq?}3Uq!gMEq7GOR4Tc>mWlhO#B;e5j(Jy@6ic2JH* zo#{}X9n_0QL(mQO24iwuXMy#=&_A4gzh?!w#?h}E;skVmwo^M%=QvmkOvnDYpial( zITV#5`pLi=u=rdjN3TGoBL2Jp?@zN80#zdmK&2$we5dOBfvSnMpw?djgTQZ~7)ZLn z`I>SWuqFM0po;n)*cnXZS?Jv5W5CP|ECW-5=RsBd2e3IXNQ z{o7!9u=;Z6{rw!U7X8PdUX=2$2yh(%YlC7o;YufvMqp9;OTn7p0}!S>uH2!{v8fBn zqbZ}u6;LZs zr)xGShK_<6!TVrxo&Ugfj>3$f6jlSJs1K-(i$J|)Is+=g$DnS)fb~w~DM9Z(P&w`c z>a;8b70517@A>Z7{1+QfvBA!NDH>AT7SzH?pdt(fW%w@}e`5F>lz~JWo%OjvMN}2k zvFZUI3-<3n<5vZgSoiKwaTpqF}3iWY%#UMB5x{Gl4pe)j&Bq1{0-{G=r*W*`S&`3v;*~; zG7~HZ9tOEL`1$XB4uwrXT?`9BRsB0q$1T}@C%0Wdy}IoO#n^4I1Q_vvlZx`7BJKn# zg$qChavW4~-UD?S0uDOkS-r^lD@Q{YNHfDppgi3T>R3Gor69&3$8bSVOtb>!z!2*n zG`tC_>OWdP@nOfI+@Mkr4C;#S2UgJepGQNUKLOof{3DLxe4rd@0xI%}pd4KT>LR%Y zDn%baDNc9PajYb$zkX zOXD++;pw1?<_K5_ybbDfB>c;H87&UV@KSI%_z=tww*K2W4GTdr;y&xV!)Xbs+V_Cv z!Eoms$0~zC^gDWJXu%|~40r|PSh$j$cV0HTf`#et02_lJz-D0e3(mc;8I-}K7oAVp znu2}l-!ZIn$$9VhH>jJi;$AbzZ0*;~|a4W$3CtRn3-l7G)MSI(EC^s0)x`E&-@CGQRhu=}) zoWGMa7BCR`uJeh-N>GN9-E%%+7zXN890nC(wEGSNwLwKb%5W)Il>Pxw#r6x7L#ZD) z%$5Rm9J_-`>3*;Q_W5<00M{EozPR)-z;%dz>Bo+uh)7*tYl!F67PgfdCXlwyvy>fDT6g+@|cc6-K z^K0h|j1k^AMKl*2#Q1fv5m@JKfcKx(Zw95f-@neQ+(K{|{f(efkmH?GTT?(Wap)cA ze=3dW?*m-p!9|7{KREsEhQ&WR{WGA}*Zt&teeW5le#g%a{xF>M#px&i&%up`#lJfJ z3x+MeasH>E;KMg(V#IgnCX4&Sp|Atkn)!X8KATPT(|P0357bS#2~^R(1a$=`{^c-| z2h`O(4OFg=fx1upe>=5P6x54RR}T$QJOk7*dj_i5;_~H#>R?k)H{d2vl-&kfff@V) zy`PRx26gq`0d<4s@^|_k@Gku;;0SPAxIkAbQkp+}plcWX#t{NtPeD)oh=JZ0i=SYB z22w@}^m;xYbkjc%>dJfv>Z(m0Inet9%SFMz=pO@Bbkm~*y4r)`1DyR`K)n%JYW?e= z-Zw-I40J69OM#E|`u~`Qj?Jm4f!=Q_MUEEey>dOEA_@g%-~*_;y>;|J?`aqd#-zU- zi~w#2b@A*0b)Vb-BZB@h0=-|fiUR7m#s<7jGM}kr`6O_TtpsM~HsF&SO)=wPM87~g%LTUqQ|5Q+R7K7fu|Gk-p-n*UF0Qk`G zJ19eOV>ughfU)V90ONqQL0vHIKshqTaD|N@F?C0?b5|qCBp!WBO!|y-p zh8o3yBAE|*b7=h=hW~+zAVFNmU_nq+mji>qPM}gS8I+!Fps2oN_y{ac{{yJVbH{TS zEEdn>6kja{MD=tq1-Q``oC9Ux5vZI+i0|~{gGyC?P=;!NN?~(Qk@W|)exl(5P=+^v zVtN-S=FWI*!F4c{fft|{nU)~X`*wO2C<=FiqWEu64BfKvub?iP7zrJPr9e4W9TXGo z!N}lPFcLTo)Mv+YKVJTW#4k~x_Xdm$%7Fo(92yJu1Q&veEOuh& zlq3VSE(55~2l9cXz_MUta6GsYd)lLmUR7J{mQJ)kJN12zS}gM+|EL9F-V)etO8|5ZxI!JMfahl_!_KgxqjO>Izm zJA+B|`ahnAs&^%*o9r)8hAx82;lI|8k=mg?i(x5HjyC|cuPrD;ok0~}e^99z59+@7 z!*DgI0QZ3&Z9GpyReTkchffWEgR1I;X&lAb4GV)ZP#(+*HURU0V?n*D?FZ9=4?*b- zNb5wL7}QOe50vB0)7ts(%7BjDXiyQX1m)otPORJRtLpY7f`A2fMRGoC}uWjK#l#NB0mdC@l8P!UcjYcj| z3{?fiP;*d4HQvTULER&}K{!5d?u587Kv+Sh|36Y&fW^cRHvd z-3}_}w?JJy0hyigqM#ga1J(o*PyrMJv+MkKp`n~E0`P!1LWbpuug{lPk*YNkFY$6JAVd2I)Zso|iieio=y z><6{(5vUYA13jYVy$wXl=@^V{m<_DOd}UBYwip!Ur@%bmGf>AXSuQ8S3ZV2g0+o_( z)*lVZ@p+&ESq{pvt+_b=+Hi{jZTJ^d@kGq+P!$B~0?G+0(u!adur8<+H3K7oZEe1* z;XqKuI0jUzW`bgLEvVW!0qVu>b#BhTa`Br1Ig%=m!$5ve4%GqQf*nCo+9%eT_6;O;uDBv*SNk&743V>QrA5@OVf?Bu| z%n9xX72!KjH)EWFP7ZT{Ip{Y6WoVM&4zK|Id!X+8M1>qI1-7Q&+39=u*GkUBPcQ-# z=?XiMWdY?tF;LZ756l9#07das!)2fX*a3>6E1;--392~1gR1^?MV#@T~HU)JL~%ubC`(>D&pLrQq%;LzHXqd=rN#b zW;vJ|`>x$I#u(y5W8pd73QD#Dha9O!T3 zQ$aWV<)B_uj+Ny6i^}H=sQSNyDzZqWoQom@C@S-Vx*=PDif|sNTyF;z>1j}o-UP+u z7f`1lerdmyFdR4@lp~WtRqp~YH+TwkgTFvg zm!e#t_eV5Jg1XTTf@0<=D8;Vw4#o$Sg3O>&RSJ~7Mxc(drxOiT`9x5WhFbp!s2aEn zDkVP*lUHyeD-KFwJHw%%9GeXm1^0k%@Ea&YNh&&w6#{F~uK#^!84;(o&SM0FdNiOwGEUbH^6$}8_*4wt>Ij;Z9zFa6%=DfK)t-40k!WksAKp7 zRK!0)F`T5PGoRbA0_gq!e@$qJ+Wv;qKy6$N>R6rt{lQD13|$3PRQEs~-_M}#g($Tg z%9DT<>1P7z@C~Tb@XPwqYC8s#fm)v( zR0;}!%5g1Fk+uRA&|okM_y?$SzX;T^T>(n}*4mtZ<@N{zs?r;vBKiu-^Qd(kMR7ny zmZu!7)&b+yN8&Pzqmy^}%Q@ zykAUmwE>&ZKLol#cT1;8OMo)i1k|zY0|tSAwB-D&sCF_S1E;}U;C)c3h}$aAbr4Js zP6A(m+rhrAovS%Z8;5~WpmMzsl%DONPR|+ZKLJ%M-$B_+)Yb_&vxkOqn;+CfMKCWI zZ2g&_s1G&V28!}Sps2hFmIEJyx^gqOb0X{us&;09D%Ma?OdbaFfY)r^6Ro{d49P)N zZB|gnEf*-qih^>WI;a!{gQ}JGpw{=b{vc4tZagT%(?Kz~4Ah0T6C4EYGc4G_Yscf- zNkbkU24(0DsJr&kCn99+^F;oOps>)lxCa8NQ7|f~j-=Bu4S_dlPgVw)j{imQP{SQ=eMd|4$^P zWCk@~2E@LrE+~EVLERUfK-E+?n-8`5)u2ZP_t8);&w--mGB_T*2kNHk(92P@3RDrT z19hAZfw{pOU{Nr7Z-==mpconlrUoPS33M$5Gl6Bnv*2VfUSH0Cb{fn3Iv!pDb!SKI z=bX=)U|RaUz=7aAupyYBzf<)+z+v=vgDt?q1Ds>I2<%M%3pfO9J<$1X*<-K<{ak~b zFX4_F#QE>Yz!L^~fi(s@Zz7L_ZRw{P;(X&^0@$DaU*HL_EcGvB0d-Sm8|~Z=H9_fF0P2)^cGJj8<20zM{0im*j1?6D03C{gc1eAf=pys=Rig*O5_X&$Z1#l27 ztoQ%VXo%|66P?H#gJNVVD8mQ9!r&_~7)(FOiD)#~oBk@WG?;vHp!WxuT7uK)?*Mm$ z<)=7~gq!NT7fb*aW84j%(D`phqYIdRnzJATRFN$Pr-SXLJ6~e?4pye0WrkB+1Hj_+ z*MiFRKVU_$=uD@`#(|CLPX(2N*PwD9;}7S3LJE*N<_!mpXy80h=Xt{{`wM zyk-4I)_)I*(r=)OEb%Po0xAOPU2ic^`pbh#L2Xbq(H+#jKW1_MrFc67vA}(x_ad?d zmq8WfM^JZp%n&D%Y@pWH067G%mY|MVYfuLIfGXCxpi*}Z)D;|cwi8f%P&a3q*~G6` zr=kqV39dK7^BQ_Y9KWz zrt*Wj2O4>3NI?rw5p@A&aHuU1vx70V(}jvWSd zqn!Y?{+8hzQ2YEAIk^r56>$PksZ9iGe`-*v%K)l4%Yhy>n$l1X`+_R6d7w6gf=bOg zP!4Sa#lR_04m<=?gP%Y*n0T=hSs_sKr9m-U50sr?P;c>igK~KIV$Q#t#zY4E!S$ft z4{QSE&;w8oL|EdS?`WVlCI_V`J*a(oK<}{v6>%d_ju&*-^WC8A z908T0n;x6E4eADa0_vE329@im%bX%|gF*Dmf>O}V`W{g42bO?xa1SU4&x3O87FY(n z4~o&W%boQVK`%3{Xo%90HZU2~!VO>!@FFOx!mn^nK}=9NO#q7GWS}C;3o4>wU{0_E zsPox)*@!McHz5YL>QIv_NpmLrj)G4OYhHXKe>+zr>jH>(~?Xflp zjTPZNJ?E+>;glc}UbS5vxDd*)?yWpQp5WnTy!pk&^40Afaz2D4OXDBO)1SZ_+tRCS zZN$>JZ1-RDc(#O;l#&fHC6CIv?ZW z2IwvRvi?Mm(JDd?&MQ$Bf(@~v#Djl(&3s^HWcswo)+ z?8c#kY`lfh2sl$IWLP@?IG*P4Scffn@cB2-Y?6|iWR<~YLaUOI_}zr(BT1J$VEhGU zV`46p{XH4)hw4K*8ORCDRU!7Hm{0CzocUTjOZAG0q-Nhe_Vid*WadBkM3@?J&?AXPdFFAxYYcu^#4Z8rJ85#6O8Q17qcwzs!6r zVs2~>9z=&EZ)^|me3_8c#qdx_lWe1Of0M~aIMXm}9at?<}p) zN2GC?Uxx$9m}|_~cIHmAzQ3EhgYxK)k&>)ig0nMmd>`~m24j#vHS3jc>_5)BP?COVtK^DO#7M(=tNa`UNI`@M^i7FT+wU}EErCUsi6!nMhr9o=3 zmNnVTu&&*r=sb@DlURQTwi+?t+ga;z)y2plq6*K3G;FTQ21x)l@YdQBF?N^K@I@G} z__O&mtQ4>V@fxMO++5@6X~5h8bWYU!KV&>Lve4EggIRte-1|eXzrD_Tcy|n~*~y2W zn_I#bvd{G#kFT@&A07|6^3Y#`6N_+kCTm~d+ObU5yfW5pqUv#qH?62m3HzCYz7*=L?D zfQ{YsOJaOCUIwF}I>w&|akaxpI5PQxq!hD#>q%k`luLpb8*dCcBYa1KGqRt(M zoce^rOKE3ePe*-!y9rTkLy6=q1|@MYo}NvsFc<}oo4a}C#AC@=)*OO?1331Yr!MDX zgJo9p-!U+VwF^m;PmZB092KySv@IvVKhg1+zL)=D&?A{+5e@Wn`Yt#3Bkh7jAX!1w zt8gZ}orPp>@33nhkzB-qM;NJw!za;`h)7S;U&oqdb|9}4R2}q5!lAQ){=V5{6m}x- zP1z7110{)UDhg+^X${exCAxGJPINX)mQWveSko28(z8eDOvrq3#wDwW{wvDs5MfE4 zFSPS87Xdx}(3c3tFS2GTEHu&2Hw9w6J%d#!j<2R z+)Ny)g^q8qCy9;|t?18llP&^&j3b@(_pPo`Fp{G%QH4#B>3>IAZ1N>}3$+($&xM_e zjGuw-jyMz1=+>G%7tiRWGD_cHXVUA?O&ykS!(5)0UK> z6ov$Gy%0+<>T8=SKBsY|K+QhZ&9*qlVsy*9Yt9zA7D=YK}{I$Vgt z+7~42U*AQ$79-6eIvS4TMA<<6n~D-YVqU?R)1&MGgxm$*!Go(OLiScNb`wR4&k)qk;Z8vpa*`n*ld_IEMhn}q{mOLbo zaIhem2s^QOZqpu&-b>J5&gRDWc|SuW0wx08yiTFKBVI{Pm=j}Jd?Vz-N#2<^pxFf5 zS+Mib0)A^al7McxIq>*Wnz4TPHGy^h!A+T)2Qxe;{<(~CKi zcQ^w+X&m3Vlw8RyjZsn(6u!n_(H0EeWYa;Ew8Q9-Fb7%+IzaA7i)$1a%m+a+aHn{Om1hUUwPySiMjKh#tY!=q zuKNBV@ALS__Piv6jnMsp=Ox@k#olSq#l8>hsjtN*{~1w(31+kT)en7@v9*9IxXROt zL>I7YbT)gZvUdmiszA~hi_fPobu7x&k5ZHTUDxvEa3TD$b@rS4tfBCLs!*72zgJLBtz~YPyxL zKUt9sCn`w`w->x0mQo6*bo=3?8>3<67EzY6fvq^wi(um5z;Wz^$I)BZX^&Is7*FXz zNg)=sv(#x{WmpKHX7o+O5YoGbF}`HzO2Q@yU;cNMbW@`^+X|dcI>u?jL`NV35jM9J zRVKA2=$LCG%q|Cr&CM(21858;`~zQm*_7sXnRDEV&P|Hy6}JcEud z7{1T*8fKE<>+|aDBHn?m{2+$CI46fE~kHuelsG8$eO2SJUDx{ ztdU%$7*{j4gvwq6b`Mkai7{N3x(LEKexKDVXVKxA48@P|CMOd$ai%5snuv~CO7`G+ z5Jsk23S!%_48fT_7}>+RlQ?vk_9+;AiRx=On*==xp?f>d)j~%f=Feg4F3%e`1eKL=YjK&s@Xl|W1gZDTb#6%u9=-!9^< zW_w=a>p~-L2K)Py!E($?KGOfeIzsTcTJy0xY-VMmBR(G@1G8}8g8A>=!H1TRaRY_# zNPl61zUix7Vwp<-fA|&}4#8MebM_L4Xd4E{_()>S3-%S)n~Q{`Q9lwCfe1n%DlYBO zD6By?ZsYYDH(3bd%sLb`V$WUXqk|nGIINUs{u6p6Y0%Z2`7%T-`3!40asC(C%)t0j z4+H0US(sy<#U%1`EUa%S(57G(HfP;NoSDzsyD04s; zeuXvt)^1W*-WDWnuuCfIy1h;KM>?V~Ctg3sYkq3TEAgR6GJ`ouRC8zr%2VJ-DjbMF zI}=VwuDW?22i+$Kq$K^eq-Qh8PZ796DLqL5`*K+QPh?%HB-mdE?S07W38>s*Mdr`u zOVBI1gaZq0Q+vkNV6+TI(^xcrpV4C_m$z zq%e`Sc5@mqR+WB24Bf+ljdl#{;>ah~ZnkvHB!!-gHd&7ivzffiWJ)$lVqx$rY+PaN zZ)b>qyv2ox@n<+*i}}{1Vh2>7B1P3PHi7_>68Q%72BWVr`%akS(@aN8OXo0sN38~f z*@#F|&^&7e#p^AvL-G0q25w?lL%AuOS44P%f?SXB4~##?$rKnbgy9_2Q4-ca!hx+A z9)J^Vb-!2vFCw@hJQWFGhW9V(qqINN)q#!=I8X)eu4Ab@i-Mu}Eo0Seb1qU+ASDk< zJIZ6Ej1`pA<7OjW0VuCPYWm`wPo@|P8PRzKCs*QBSr5^)Alhbl`vVphxjD}kxi+Ro zSvlzL%($eYIkE+#*_iu)(zxtRL4AzF;0T`Gu#gBHXK;KW4rhiLpTvi`>;!tA@lc%f zXksM`H{;PVJd(^rNnB`u1_NVJw1H?P&Diu8>m;>_Lh_Bdk0_P2V$TqaOB!P2r>)sc zItmf!1=hXCnJuiTiVei$a$_J842&?v8vO&$K9Sq=M0tg0Sd>n2&+d`=gE5kDA`>~wp<>+>Xq4bM8ft7h~S!Lzp*kILh3g|-zV&GEj3&+j;;lc|5**-94!KsrfaDq8N)8f9NvPfeaa2ghp$qcorwAs4DUBa>fr2A+V6Qz>)o0pfM`Brw5(Nf zbPP%2L3J#g>Sj0AJaU*5HYAZzI+^uVoUZFO46HCF@3B6Rr=w9G2L@tTP26DYC279M z-s}0H>NrMp!tTI8SEKn2w5})e6fBB}b7z^aX3@rkl{6v2Wq9`%jV;5`8y}nsUWeIr zRt}A^aoO!Sm(To)hKj#1$4|(4g&$^gCAXNLIzul0NR{g&S#Q9)@3_&Jm{Z#Nf+V82 zCFhj>9>O3LZp7eT89SL@;KAZ=DV}EQ5+AKCSFb_(#06*i`NfraVMfE&!Pc%-X9|+=pVqbS*(vp z=8i*rZ}#M+{mU4TXYpBohs@<7o9~#vOJMyWJgkIg%#SsDd|$@gNQO#dJSnAe$QCak zs!2E|S;#Yj=dv9tjfEqUb|~qK!N^u7iO?~Y6JHFPBZF=WW(K+>$C=;8SS%|+;^*3c zmghuJ%uSw9bdv}rPuNt0{zaUVOy)@i?Z0tyH+y`tz*4uA8re?7r7YJfP02OepA_fU zF*Xmqn;Zu`uIo(h$9OgKu%WZZ)dlJ$>!8sm2~ZFh=T5`Q0COO+MWQvEQ9h0cC1b-l zXe7FJ*rD7*U3`R{)`8ymoelaJk-;5CSu7|V4!wtQ>OT*{_QrHk1o~L}s z#xocP+M!I617%TgVkn-^v)qkgOcLFc=g0dlC~ohjI8h#i(rB>vg6KQ3cPryQDGu$o zF?f;nH(?+G&bNi#N_zLszuI*rpi>4VUoGk;Y@UdcIc!>JhNY}1W&j z78BtTyq1(^ETOg4?~X!Aeb%MK$t=uWH=P5Bav6F1Cd)PqQB!&n-e9ps0DI3;-u10^wfm$|G&AD-K=1t}?o6OsfN z&&2vM=<~)Oo5{pD(T`{)r|J8rAX*e>W8pZ9E~(`_D-O*GlmB@{R2@U*SUVS`h1vhZ zjHNN1TNv+)js384oaeoaBc3c6l8iT0J5ox%j*6E#h&C(U2bcqct;n?IG7enA!I#W6 zW?e1nViXQY${I^+VInUD=aZ^9md4F7=lK0_9PqftgvsM)6mG%e3K*)$qI%#aHb^pK zXcdK-j5U%>c81k1X1N_l3YHOFC~TaCfqWP|Xw|xEAN5$7c!uFe zIRbu11`hL7$K*EVUPAH%)ORP&^gPobunTTPVo!MbsZuIBl0jU>aVsYCEiiwX(ws$n z-$_~_s-dx)+ku$d$NZlc6z@LQ3bGOxAAOR9%{eg~nemovEKEN?PRzuqy0kMAeHf3RVAWS825k;!FVt=AA$!HL@Z;YB>HNigFn{j^2hj87?aGw zmiO&=R5to#h%P)RE{&oSWOR+O(TV7Cx_QfB{SQ!n3q~X_Szn51q7&tG99)UM1t`yf zjy)J(1WJ-IKiXItY1LBX2~o%8iGt!fL?Jneml$wQXt2^lj?+a=Yoou_Z++%FUtU`=$MOgQM1X^gwb>{ART zFv7YM<91t+k@bD3@mChLI_5#|Hy`;w{A&YDIhxfF@on*#WHxfRVXEr=a9$Nv_BGh}dTT;-u;5R1g ztFk5@9%m=qf_Nfng{Q;lZ=wowvt})85909=yzGkC={aSc**6leOgyf(Y(B~2+ZN^y zH?IU#*>Y%*?8ZoS`t#s@jGGFykQZAug~IOz=4x5LE`}i!>V2~uk!}rm#${f|)HR?bTkMVH?6{^busRBb6 zaq?frm-ulB46{R;943n5rB7Zneg)$-aB7j=NY!AdqP6*5NLK{bv?Y%Zh$I<({n|%+ ztDA0&m9rx;8RibKZ(N^WotLlg_H zI>dD3*#^tMu@_f9AdgWO2wBVVJuj&r%-k>9$;m)#2#rGMvv&6b7P6-sGHl6 zHQ{mU9T-An9~hJ5wCqg9Xcu!N1p(}^DkuoUx6!%N!@?^>RDozm5UFG=n@*uLjVT$( z{1vD>Of8KfEe~<12rS(r0?9`QydMYiaVSQLqidh(>xAyDjQ1xEiD2V}Re?5mnlO0_ zrIK?PZfbO`HRbwy*{Lx21}6StU2UR#4DEqL^@6=0i6S298O>NB<|Nmct3r-@^DH72 zl8$cPis1Aam^xEHFH-680cknvWE0^w?JB3-jAU3ANCZ(Xh!zewE#`6YYKa#>8C$$6G;V} zkZdOMIVfJ`CL%T*fT~}NmjH9JrZQfiXZ;k$h7;XM)=9Fkr!W1X7`VGD_;I$VKDfG=r^JKE5-TTj^`UvvB=rt zT5W8s$G}-4KO>gdQwv>^ze!;~*creH`H%y#$wq!}+bfY-SBJ=IvbiEk zB9Y%X^v{4>7?Z>&1;5i3svkMsAA6SWM6m;S0mycIR63` zd~%(jzM-!MPS&PqE1{=>P3A~S{C}`f(#fLC&QUvyfw)lHnz3(e`U}O9Jvb#fO|;uF z8l7~-wv#XoHb!GOH~S?UF({dio=k4u=Ng+EEb<=&o**jxcYvOOFyNCVDCk9%=3+c8 zMphG1c)QVdkjpdH&cob3);%D?9%j@JqZiPXjXl-a9}gn~Ee$^XK+HWWq4 zN-F#<5l=+PWTk`l7^6Qu5pN>bl7Sc=f|6#|?@hn4DSbqggJ@?XO-a#N$;Q*e%stlq z%h--E>G4k2XYn39J{@wX89!wG&@vH?RAr!jgz5DJxDy`^((eP)2guqRnD3823m`#~ z!uBO2=#m64X=V1a1UdaFWcF{eCP_uS_lYk9>$kGL1DG$FDmRQoV9~#}p;Aca=DcM+ zY{_bFRnd*T<*;*_5T?1Ey|HNbg2TLQjfd^ywsr#9e}c{5%uD_uXJQ>IMH?+r0YVzYR)W5W#!5rg?cm!FA}H>gJ}m zRA{^t{ecu#cpk}B3U&*IpTJ&tqxoJK#-g%LSy<*>&6m7jF9L-wDFim-Y(CL{zAXiX zRq?8&QGd^>xINzYMMK^&-lrwPXLg**W2}Jfk`Y(HtI5ge?;MN(0z*}L}We{kEB6NZ>}f@6m(`&XS}+^hFa$B8aCE976xMU z8O~O;sHLDb#;0+GR96StgYymC)F>=Uy4l|AoQ_8rufh7IDmV0xR#s(yGwD0UX zBnS8aqnT-c!U6rD{xs*iPT9hwe;htaih#XYTGq`Q8i;tvmTCBL2o*1|Ii3Dw)Jujy zYDKf}jBuNn9`)z2R+5E%4~&~n1UrDz35w_aV>r%&GHz-J0}EjG4gN(0ukhRsDY3{u zPMxz%MJDbG=viwQ#WR&0vI-wgGS=V9RAa^9@ji!m8n!aBM{)=bzmxFo@Y#jiZD`1_ z4!r*gWGEY|3)yx*LSJSSub?f-g6kQry$W@mNySE^ZWrDr#LP&--l9Ar>j^Ifd-|Hr zow(B7nfjlP_n7N28TbmaliIoh#>gzlJb+`b3FH}L3E8*W0xD*wB#s3z1U;KsGZ1@aaXzVsg_Tj< z(I}Up1Q@An3e;ar#!{hlBg#hOSW`|?Uiy`I(qUYZm1yS}-MLaaV|Bvl)W}F2><(-B z*f*NBkzmRb1!L98TOOVgc-b69lI|Fh{DC7EpldQt_+%1&Nh=#GLHWHmAamjtbs#y9=f#Z5;mkL} za6>bu`3Nxi7vptVGs2?3VMaAS5IZN_=tWN)980Lb>{S;Aevy+F48-R7gz;2h6YVf* zMs$s6_ama=q@fy5ZJg?h^3Qe|Xz2rrS2C7^-yY{ygQam~D%7XLP6G?bS;c2h`i4~t zBFI4W`B=0N&wMh2NMd2=3s?YSp(yBJ#aN7XDpGdV3`X|z?c&vyBV8VfqhdH326v-7 zBX(AyqZrRe9Inm22LzSJjh92n;}TQsQ=Cuv;bC`!G*FO5~@N+bJCAHb#lv2wa zQlzVY0>2+2b-Mbe@I_!G7yUEI7TF*cqx z^RXo9gNKV4TM7G*U@QoIEzld2RQqHa8EDEAFFXZ%gN+fb+OM*C5*wzou_G)6p~xq9 zNo#R7on(z95Cb)FJ`-cRP5BC=W(oQRi34N;#w9Z?FtvBHH!bv@OIV2efD0(9ak+#@ z(%Gr$Nvh((>lLD{K-AaR)PnYI6is2>i;(r*{1Y@t$M8dzp0;#_!}qXq0QHgaryc7g z-`IYam~YtnZ2zYk2D7#>drpQV>&~0dp5&!6xhO%XIqhto$NDBJr8AWgX!(=sv9u4m zp^okPiR{u)RV*c3GuND=%tw^_r~=6$^h#>uMn>A5SpR`%Aa0IeO(KUrzQ<$9c9!!w zDqLT8JH2&KRn<7(W_)WVE%TMgT{&}Zycr7*HzR_ay(gK^L30#b+_k-}$>lxK&)jh^ zZF~kaMc5|cgTqPyt2qY$s{RZo!vnA^q;8bo>6q)o$8sWes#u8z#haYL2 zY2~ZQk1Pr@@7CbhPZp1$G8YhW11j|)^>K@h>9vvht{9LEV*C$M5tIG}=6a!XCV@zL zurCpPKT0?zj!h*PpM2*}CAxkxSRINQfPPSyhlOQn$7QSp4*ZJ)>FrEvV^VW)2@FK! z`H9m5LCGtetBrwJ^qb?fBr(pVr(ML>G@>8Hf*z)S74a{59c)#b8E;b=RnZyGZtV~p zOB%)rM>Q{*DBD1!fhdoK7Ffk;?jd?ES$wUTFGTExF&RUZ$kP*B>F`_fHlT{(k|nafXfV^De$ zX9`pP-?>2gSoCFJ?r*Xnxkn(;adNil+AIdxUtEr2-z$TlOR~tK|3bt)%;PL<_DL{? zR?47NYd?WW6{H*v31LvV8It4Y9g@rM&gmzBm?vajOJ}rzlJn5%Xuk(aR-*r+1yT^_eD+<>iK0BwtVU@Za#MhOM|EofpUlI`TpX!DU3@{=IMztk zV#FQhWN0iYV|CGW3WF`^=Yr-^wqEnIuyKbJoMHY4jzrUs;YdE?^#wM%F_0JfC8=3h z$?GM>L%S|xFJU3NTeJTw!B!_L{&&cA2t(uSRIH#jR^YrO8Txma{>3=&&Ho1m{fW3I z#>Vjc<_RF`kr*oiN>-DSjW{Vu;>USrjifm3q(sTTrFP9QgBnj~>FNP>#?&-ak0%MMY*S%7Nbwn~XW31_o`md`l%ckl zQ@@v~63I5>q+)ni2iGfD-^>ZVh>sU(?=ljm7`A0&A=)kMYUm4TFNh-{W6R8dlorJC z%mlNScq8M;8H{Gd&_0~&ivDaN4{{UlItnHY+b)$cCSsts^L_=jNO;_nv68nM2!fq#5l3%=P9;ijJsM z&0Z8QWN#^)st!Yg>{z{E%{11`$LKTWQrUHS+k1A2^f1bMvpK9RMd2_Ow`QZHJZr|F zAUF63wz}Z-9Gskua}`tKps_Ow$9iJm0qKx5Lq}F}0et+4dmh}(C0EeV6!(z2 z-jBmD;FEYblZ*aj8*6WdHNOf&l8hMnhJt_W;N*ZHNh3F(+`!9Y=TAQ+C$^DnAA!Ak zsNIFrdwBNp?Bm(bbAaa{Pa$|d3^p*z+N1IUdmfX6os5T-q88%<<|a@B$B6qZxeuXG z3J~jk$Ia-jMogxL)L8iH4(UD=z9*xrGHEKHHSi-ThQ8l$x`yRl$-86#zGrn)xD@1S z{7+9DN$_zdK4rw#|0htj6f>jI*@HEbuIxKN43(iMJ-L~U&1(8fEPLtfCdlqgOva#3 z{w9c3DA|Ug>uf%aqXkg5$g00I4oaRf_S^{A%DP?j)9~bHEIrO2wg5Ja zExHx$PuNSs;-*1V8lEr4fj2nRnjPibe3FL)9jKNcB(yLQkE4?QWPK_ki9}?z3E~25 z*JkYk#uI@92(GQezH2^hpEP9eI@r$OVPRq@JVQBNMA3Mtl{CaaY_imVMMdZ@q& zSD@?+W247d(wu0wYcA}>w%Jb~}R0=H{yp zIFOI_%mmnvff7kOs4I_$VWl08bteUHF*?c4Ur(5L%(EZ5z~+76oBI+VJ`V`LqX9JJ!8iuZRdw@=Kue{rrfbs)KmL#uEgJNk!OimTxC z*D&=HCxZ81B2hF%at3A7@Ny@Mm!RZ^o$o?8)xb72#`{t@bOq06vZpbr*iHW-isyrV zRtGiM^T6(j{_LHfAmqVv|M;G!j8(&-k_4L`wuig9hzV5EhP_+x;T?{@^VK9aS~6A= z9cu`39{px+EUsyNN^l4cevNHsS`Nu-8x#qw&BjsUa z?_qbeZ6j6RQ1lM_2U`LSZgXFnI6c%&|@G=cI7Y<$5}4}-_pTn8l?jHPTu+suygiy&Ut zjr#R&jya{0jMP-Yp-%)QdFbYPU`+Dd&~ufj5?X=A$I})#k^}=6cs6mA`?$U9T?1es zJT(4`liS!MiDF9Bu49LwzRk77p^`W^)W$=M&3Me8L`P&NMNa(R7#M((!g#$3!b|SiL~tb3x^^Q-4Zi$)`~PS`TdLZoM+!G7#qu)^%(BJY28DR zRS9xF^S@#n|MeM^jN!?P6Z0?>f&(*n{;y0Rsy0L?sY)LGQS=iBl4AT0DM+HoV00vU zW?G@$W&Keci9m4Mm3JgQx|8eA4i@D&NYbi!P*4ViF^sPB30}&FSroN#>*LtEI9DtX#$31$4GZO#PoF zho_(`kik1Fs$r4;X8f>uT7mW^47MV=^W?u4MyKFxcIdroRWC#DP@b2uc%*ZQIjnJ? zbY?sfPKUzaH;&;heU zVi}A1VC^sla)OlzOfn9g{wbYyWt{j#AT4q9kjIYDITj>9(Rd0)GQv%6piOeb@?D1w zVI?b0Zm_uvVG4D+)j}=;TWR`6g9F2ErX2|eiJ$kFP|_!if{mo$0Uj1%(^_cShm-dx z)UP}jXkSCIKRB8QSKxSD4BlYw66sn5E0Rw{9)yk_q~{`zj-=Q^Vep=%rK+1x#`Fzj zNjVl}VzJ~S2K%EVlP$bVgl&1+F#eK)I?3907S(Oq15nxoV^xiv-|TzKSWQ2!a2%Y) z_8-FC9h$n>oMbTG)H7D3R ziFLWH-m}Msn0suHRHdi~Fezz_Q^O%*3Wn3b`U?DRi=kL3YmFkwpEx&-xbDy%ibJhg zlhep4Z?$@iJyYDgYGZI8PDnaf=I+tH>Q7>pv*}Ni79+yE7`+IqJ{inhAC$C#(Y82R z9Y(Lgw3b}ZgVa6KU*h{cjm7?FHoelhbG*f<9= zlJgWp(N7~rYog*rFv0p`O;}vOplohD|~fS&ASXk+RYRqzj0EFo=LcC?Zv=SSeDZD53(2 z;P*SbXElGn^E{KebMGnddC$2svmpt4G=X>$il*w{pubRk&&K8zFU>5n28EWO&I{U@ zINp!gc$GlCa3=G8QRK;4%>P5!Xi{s3@Q|29_+*Fx?lYQJh5{vo6w{ z+_nNbH@eT1NSPnXk&~)DfTZ78uMyZJmaFu-|20TXKN6_0FXS!0xiVJ)kEAtCbVsv1 z0H0YTby)p+^<0$pYe!O-z?+W$qI8)^Bl5{j@&_Pj7jZJd_JmDc4C3Uw2O@h6|H+b0 z=ufcy5?_ed(kNR+>`dM!(Xnb2FbRA;i&00xO)v*GyO{0{Y3sF0GyDniIhTZz@zIUo zWdU*poml)80pJso>ICTDso)5%8_5s3PG@o}tX3k+!7y-~@j@JkEP{z8tUpkee$zc9 zKWq33b4}PwX8>g<^C!AikXuzcM{aHN%LKZiEq)lVWdS7eE-aEi4+JthhSE2bU>c>{ zLfOtRH=S_}#vfGN;?#k0lHPg}VI`mTKs`3+GW3_Qp3HIF@0J@rly0OfJ<%Ob z&?)#^K!8ZfkcpniZv>BIP9%Xoijr@x6oSfw&}DFLh>@LRI{{uH!(&hy4bqK)X0beD z?YU;qjSMq6#_R691OvY+<8z^VRlG=Gx&mB+^T5KwXDGuaosd z*!Y-n1?6xd?Q|LT5wDaEtMIY|G;CsrG~D zm!RvHvDSbrt8g4(eIh=?RHqU^3n~cjda@J|@Dn(;gZ?CQRTX&`0(T`?Tj&dl3pz!P z;(Rw5{Xn0*Pa>lY-aP?V+P}&}oV9(}_5@^!IPNdZpT_nOWfa*_z~BFYi@H!Qa*n;a z4#!8J_5o)R8^%jP_y^8J@&j%+YyGslw^8Q`0CfU>2?4fpexUb-A^0tgehSA{?7x7C z<&@_W{8f}cy|fRMJJnG;ZM2`D>LpO#Qc#(!|3*EJay~?c4(*BCoC~T>02*5kyUPIh zk$Q{#!uTfsdZ9Z@ncJ-lY?2?-c@Pp%l&{68n@CG)I1r=f1iJ##y%-*$W=o+`Bn-X6 zY{@u4y~CE<2(U%?8b)RZG_dHMg2k<@XO|>p=6(E z`2>HPV2^QpS2GaZ!sx!MfaLlb^p2-@Y7q2(wtl$@s~-YzvX*l%Kt(o06aPAs&(&!b z#%BrmGd232Y>#jj*)7+wF_HBjp?fZ@h|Ge8-OP#XL}#a#LgV=7Kf=#Y63hhbWL=+v z{Y|dR$@iOTL&qS!(}~4q&=xi5dK{l1yPOzzfr<9a^$-Q*V`WRmr3t)JK{O%qXOy5d z*qGdMPxUNF9PTLr3H|e$U}+7<$u``gI|E+JX&l1MS4ChN$w;(V!y; z^fsCF#mRiA5?MiZO&PBv+bnuv05lFHpob*hfyGO#+W{`}ocYZp^<0^{&)N=3J4JU` zL3*TJoTZ{=0Zwv3#cI&G6^u9tA%l{NR<2Wh+m`SGcSOcW1@MK588~X;yEL(eP^m;P zzeVi%N<=$!uS4i&-4uTkt^qmDhLk3pFN32RInDt0AdaHs_gM3-0i1piwHBWu?-k?Q zG0`M+1zaV;_W^CwmgHNKSR3#c$6+j0nS_IFRAf0pw!(5g<}cv9hi~Fiau8pVX+w?_ zRK}t{3773KsYV{pP+f`1o4D)`zEd9O*j#lF6dmP=sc`p*EsQb%JP#bfL(fh)H0g^D$y+^XW@clRJYzAb1FPV!Jplw7h zqxiD6M_`8iL`mjT8j%jHozWmRz}&{JF|Bq?@1xaN8_W@cpG2j7y3`kmRh?(p?ZsyW zO6rXR$yS`yCiBW~dJrrU9lpi3o0C7>Xi6T1> z$a_=Y7dR>bemi;}0=y0lR|^2PYz(#nTp#p2TH4vH-)CG3Fg4_zs{{edY4@&$%G+EA zrHf{km-(QK)4>=m-7}hRF13yW@LcuNhpcDQS7p_%F=LT833`%*>Jj4_30auFTeGkx| z0kVMFiv3uv+6)-DL2@ftyA=c|uhk#35ELtj^Wb=i_SpdxcT=@e96@oRe-*F;aJB_! zA!@&gz~`}R0KiLt7U_%qD8RLZrER+7!||W0V{aqsUyq<~X^#cW=s_6psS}y&ffJDn z+M6dh+W;Z*CVjJ$V}Sx`&s;&x`fI;N;LALnE5*+L2%ypOD}k3a$TsNvP3wJ_TgE!5 z98XyagS-MY>`T4-Gq;kgmyw}E8}SvK%J;b2<8TJ!S4bo$N!`RQyENqb5KSxcEew<= z?y=y%&MhOGoH*!%(>VkZnX2b}fT;z|l@0&2Wg+LI=q)B_KIm=C^#|EXIDqW@0@y($ z&>#EO0NacHU6@{qZVq<9OhERRzqm4h;5k@qsPu^OcpRU?@CN7F)ZT=h+8jp#DV3_v zTv-KpMmzjA3nO8sAbJBS*PjN@F8qo#BTilXU(zzl+$R9^=H-isonRuT0aL>84=u6O zv^+;p5|z>~B@-qW0WM!Qhe5q^09tLZ4$U11EHYEed<=F%C4)e+UdvUvK;EG?DWGqN z)4u`pP_kF!qttvIl;6q*CKCEY;tbv^vB?WFM@vGr?(Lh|?j3(%SDb*2@wZk>mFTzj z-K-Uw%liRwzXDhh-4(O(_Xxdl#C=SYCurQyh&dm;<+SnZ63fb5265}*?-W(J!MPil zB)=_O?^HZLV0V(rv=hJBJm&B~5MsB;_oCklm47cU=w-qIfjz)~2HjEQbqXJUFn)^D z@?dPhxjnu*bG`#_b-`bYaaryr=L~TfkeQrHl5@Ir79kR_?p1+01~N%ukQh|m(2e{|22-)WG&K4{eOc^dhv2R=RjD4@_ZF2kEI3KiKH3+ zlf_^@&bN3SzszJMsnt~KJK|2|d<(x3n6ARNn{g46iiY8Lxh{uUIT-H3d{ByFcM`iP z`1u5kKM|?}IO-X^Kv8*<6{?)5nYX%yU#*xUnDQOV`NlmJigMdx65(mk+CzbdSr!HlFA?u$pzn*pyX$p`g1bYGyk%wfPkG1ZA ze3>k29(!*k78lcJBJ&9{nO*rlyX>^mR2t_4nJ*2+@!U<;U|boX z`vKCEwSvrFC(}wCyI_k;%RLEx zupHk0;_%=gC&6bkS4OfXNKh8gM2BHVlu63fX+k4ol#04({YSN)@G~kO{fB&5rx5-Zb3W;7yoE>5$1L>#=2L|_oAgega)>V33+%qQ%*Aat2fi%u)$X-ALV8_sn-y424O9DC~*C^$yu<(Q=lHP-cKcO-x6UjIzUtv&{>kz=);#>rl zegbG0fNoP7doph$$U!oX!tqS{AQ!AmW_*!SW@009Jn)M~zi@e#rTN6p%kiEPDJs#p zy$3np5#qj9b}Q@e%OX;ie4k<4kM$b{@6Ln_1>(qT_n<{uhytt+2F6`{2IWh6&U^{p z;uy}r*?h2$gXAQFyo$jQ*4jhdOW>|aP8)Fk2?a5^K7f813h;ThVC}KnrQ9t+Cjs!= zDL^hdB?TTHnU*lxE4fw4P)Iy_NTB5%00SdmX~U~$zldH#z6527!b)zpiyMtBg-iujV6f5 z1sG`wU=P6~nBPlQ?Xd69yvTCc8A#wf_{xD#k(I39fMJnR3ZS0qdruMo!2ifJ=voPd zXE7KD;{AS__+|i^RmNy7piZFul)GF-)_O7i4c6`vv=bR^(?H^I1z%PQ(B)E(0-yq0M=zTL=FNmth8JzdjJHT0h zcI0@C%v#ec4OG9k0u=o>DBBp;gE9^lhY@E2c3u*Q^m37i!AH>A2Xwc{I8ke}1SLL9 zTJ}?p#Q>TJP?0NuOd{iz1`j@hUY15h?x0(r;|?r{Y+|h~x?j@^FXP`s$wc}A>I$G% zqw8J5K-YuGPsl!+Oj@Bh27_7vT0pcDfND#Sj~R~x zOgzSGSr>T|Tag0jigbmkTd-M0*N5x6tcBtCB7kngWHf#b(3to$IHPT(Ng+R>}$RgkDoqV&Q1UN)i(*kX&UIj>< zN^T#J&tQ^{!gL&A4NFCR8rg17^2ERouJ za%qzvmT0NHTU9atK>2+T@Cx%CX_J*We+>eklk0PUt;1pVQn65X$C(xK(<^f7%+kg7Gmx8>f07T~x+O1^>pCs^k4*g`xC9)pY zL|jEIp_bvklDk8zdi%l79^!ALv?8-e_HBqM0i!*^(g(jszOBIm69}$#>A%W31Byb;4w{%xWknIrWrZbn0vt_8& zP~G+tUNW{p<$8X#S;c!&AfBqFjVaI*YGLN9V}_dg1kfb>f!6gf?H?_!un zR%0k%7J=Wx$$0{AH~1_8`m>a0ua>SUIx8sI+X}WjV5ea74FN=kW1ESsNFmnB{-@>Y z$@B0{01Uw32_SwTlb|&BBjg^Yy*3?C?*UH4Nzli-f$9SKB;!fg_t4!dItu_-9iRo( zXDEI`nJa=HFMyY$^jq! zD{y=cdy(A+FBSCBSnM7E>T~p`lXYde#=auH@008`^y|r=#(Pnz^iiXBbahRPr)d`R z$>Ea?9lKs&VFy`j4!4zB~Y82arAlmd_%*ojmFY!QQlN9Y4&OU5J_P|O3dLRP8V_|ANK3@l<$=SP_FDJBig$=&BfPzRv%CaA- zzM>qD2-1#{)W*qp)*s`ziQ34I%9#M}L`Fks#3z8r&-e~!4?zY4dMYgaZ18WX_?V2p zYs6fSF5dvfwQP>fM`YYW0c?Ou2X+R2MzVIDU?WIkK3QMHwh`-*__jT$4BUSLS9}enS$b)ge*x_xNtB=*PAW0qfO9JX z{;8RNMMj4K*Oi7_Le>pgYfm};<`_Wlw7_;eb0;`IFnCq~XddHFSwHIE9n^m$wfF!> zBFmu6t>`+?kO?6F7UyFy5@~|7K7a_yb-xonIx$}rJ&`bjw><)^#cx+_(C7Gl4R%C& zVUr4bmnhjv`AY&KbwFDYbbGYsv$!selXC>y%-E)E+`*|cVB-J!GQiIhWQEe(67UaL znaWX*vi!(eSt!qIa5JJOV)1oHlbyrZ+l5kOqR+2?@! z71TY^JIVZ2&VLc$AU2%=`33+sk>Mq>yF`Q41!z#-kot2y0eum#;XhgK%AbC3!eSN< z5^(s5X7RF8{DhikP}klBX@T(>K($3rWN@}Fo=6V_r32uCvWJWfuK&cY7|eV?8ScS& zVKP5vh?Z~H3;f&Z){=Z{mhx>xXA*16IcE{~DKT$mOJp~5K`BmqYy#f|Vo$`TE9Lx( z@nQ1Gp`{+p{1C9;!mbRyUW7m|gq8yPc=SXX#p))w16Yw(ILd=jKb&Pyz7w1$10ru6 z2{3;ha&9xX2y`L&8&nfgMAGF) zznL80re``_2(Rv`?{Nh*QpH3 zvOb<9YXYVW<52lsnO{(xL#c{$#FA-8f|S(FF&P$aL*W9w?yUh10;37` z;7d#$18OOwi}^%Y$|A8gFcg#@@P7dP`@+@@0_3JQZb0KTCQEZ{1>qmeuNOlA*`a=% zZjSEIEYgt-QqXNdpm{LSQ30CT$33B1WDUMM!0-f0ToPT8LCS2h)c7~V^nQk6xU z`~cA{3=3SFj%1I2T$LKZ_|BMUa>a-AF9H~YhW$hHT3&G(s9CcxRfn-OJ zuW?q9jIzs30*d@ZX(FV~_&tJ;j?CxQ(tN6=dL8Dx)zrZggU-hADFH+b3{r3~2$cI7 zZ{+x#Os8_*NAThtUjk@3U_^#-%r|7j=Me+o^vPhd{8bxoCga`!Xsc|T1w>JK2_6VK zkx+xr44|$?P?7osyP7RKQ}y2G?0}s~1eifNL@sMT^uTr^<0D$%{BgWUdqTYLPm`=bMI9W>F8dIWmltttvs1@l7kTU>pWY9bM zbdH9_PWX($zKVi*hL5gLF7gdN8{+G>?Eg?4xu8>|2p~>CO=XO?2c|5aLirprosQl^ z#_O0LNPvd0lMnlF&Hkd+^+OzQK(D{DSAuL`M?bslR95`?*H+Xsadu1qsufM1c#2^pIJO=;J zfI)0FC;6dl7|t(Xm|JP=z;!3|PXnxyGT7Aj#b=@A>MVtCH$g{-r*%u0#d?+k? ziN8^+{}DIhpH#m$@t?tIPdevI{N|&$tF@bo-xItkdIM?2w>j)2dWiEn*0z)A3H-g!Cd}YE5pWOS_65#CnE}5Cv3V{( z4x1OG+sU>UO7a^4eRS8hA)B8FDpEw8;dDEOe{ej*#)Sisw*a+Cv&~T3&*`Ym%7!yr zB6FE9gU>lsDkt$?mJjIrah!@$A?<)3N>6*v&7l4d*sv0$B;^arKIRhG-Af2OfU$$4 z1FYPG6_ErEyMmbpGeIdt8BXD=J4vi1>DIY*BZbpeU8q}>f)ImIntdrUy$|AF(aFhq z6M7=KsHezJzUJ=WH=4=|2v|I%Kx93f1cP#g!1qb28NNRy);djU9{T$rp)*N$4}lbp zn=p8qcp^W5VIoNeB@Z#)L`S4Nel8irmH#yO9-!`OIrfn0c_^O`fZaH+OBuHlup$P% zaa;%8pOmF$%*_PUpR8YE{sf7L93t?01Ure(+8p2Njp0N54%E`FHTDUV{X?*Z1b#%YW2}7xn8(Zw)oL_1U`C&_%K;-2OF)tQH1bFIDy{(2 zu&c~mC($Rq<+R=cYB1hT5GO%eYB^q0I&ZQ|QlYOV#uZ`dAkOBYyHK5C>X!qir4X)bYyDCfi??v$g7H0=ySdL*3 zl))J6Q-fnT?#uW$W$QvvNzbzkUX{qUIX#gI-Kzj`M@uk|L=MplE1>*2pgW@52No8} zzqxE>i@k`^Q_wfT;9G*c11kvxdKE`Oxr;%FA14~HG9WIH-4Gn!CD_{pZjbS1 zke1O#DoS>zaK4naD%dV1fkR~2jG#|7<7I&QjP<6<$^`U9Ds#?(-#D@#L!*8u|1Ihy zj7NjatxeVj#G?$h8|P|j*cIay%0fIl;%fr!--W%K{*9dk#AXlj?;o5-Uh{^G^wO=p;n{^ zx`)vXN;2bZ%uNJTF^<0szFCQ%Y1pN3&SLEZNi5|02_TCoE8e5B=at$jl;V&E632y6 zEUR_@3FA_r78!uUsbqeN^@=bzm+^cOX@Tv29M5HLgMy18Nmd zkss3c(sUvYty?Y}q%dBg4h})@>*!3-CjA}|op3sljDoTT$BpTS-IQQ6lf~7StRJGz z5dsu{86>(BFgaPjh|OL*_5X`{O$Jdt&3q1xw~L^oK`L^IU?a3{_q8;uadMdE{7n1B z#7A+)3kZ@#i56j>-{2txE5EBvZh#yDz(Ru0XT1pk8pzM~T|i+D&UWHNWCu^F<$xHV zWs$k1fJ@`rN7l6f`?moL1dGD{F^9o=Cs9PE67+^PUmkq5(?ohGUsL3 zoJVg8en$a%EcP=f#R8acvx}xs)_cTl%droeLD~HEqs%9{&MlwAI^keC3X@O_$~&-D zRvWTA>p=+t+;NiFMerE}_*=_5ja@NS?VW%XsQ{o4bte>4J(;ghto>T@N%GC;ZIosY z4n?*Sz`^);8tyP4dN4ksw05HbMXczLMZ*0gy-x z=TFh;P7oh9rwwjmlusmsI29NVW!(#4^5+dk7nfmp8ilL$NHMZ*sTqsTd97b(0<|E! z3JPun*RAOGBbr$X^lo6SEazv+z>{pu)MlI)U>oS6WAd4!KMrQ$pb$oV)QJRqmHLi` zwiL1x>7%#icX4nS^djFWh%lH4Q-Cr*2KF*Z>Ld-iABIG_kXVy!{=fG31o=mh9|cW9jTNWYR;apGUyU7=Dia-(;7@y2vY>hXeQ~K}0&D_Zdn3Or}kkU&-8Y z1yT%fqex(=0QU3GxioZt2fCUlzstD_rMSZRLjsjk`r--vGV_rHdr1LdYWawAEkXAl zz_XMQnePU(cSvqM=g}}Eas~fE>3}b9Dkv^O)j^!!1H@s;0Ca6ZF0v5-vkllmIWC)X zS!+%v!_?tyKqY8~VFYZ){8)UqrJ_*5{+Dk?pKQKOp?G#x@N)Yh2RxUsOOW?CTNv+~2N{@bqU%yB%9^~RX zjte-*AaD*0M#IKI#s+(s4a}%}HzcV)y`=T)S4#_nH z&`sTNa}}J|3YuORT_8J=?qtx6W4Xb@kjy&~JSYdz?XI_kp6X}-wvPe&1M_9j5B_j{ zU1%Ppy%~?cH1wOp!b_CsXRezL6nHWWE=*iH6@s;fyxr3Jw}ZI>SAt_ zGBVkh=WF`76{>cyz5^j6z|x->El>$%(>8>VNY=&^e+dl$SHE2hTmL3DxBN@Cz;5Bz$=(oL=HDOV%6bR&UwKvG91TW zg5P2Au5Et%b!f-15Q}eKnXnjN^Y26V*<2%CsTt|Mr{9NG_LaO6y3kj>vo(J$i;q1 zn3V1ul+DXo zXCG*FP>#7x)!vgqr$KfG|+%0^nU%L(xbxOFCE7^9Lh zhEfHW;Y>_PN=-`7@HjKv=IbHWiXoL#oT<(st`wTW(%Rn|RK%Gmh5qOAp8}abgj(B_ zuuE1X=_?s$J#0&MI}=@rzVG6!`yEDRTB3i+Tv*CFJIt(7&f4E*E~sM7W3zYjxcyDD zyr#8Qe4aFqdx*!CF1?WKO2C_W(rL{bYdDjW-J_^xBGVa~T)IKwF-Sn)yfoJ8i^wfN zvv-bf$YkqpIsWY=!)f+>-RjDhW4N%NK;;bgVBgg%p#?(S9&@M9>WVb$ziaIs8tope zt!t#y#;N9%HP&5rGkLT1k6gaKA6qB;9(`=BZ?@fQT^H?pblkee+JGdammpkgwY|7>j-W$QU6J;Rk^p8nJ7Zf16C7{1Zwdu)c~iu|{9 z<}b~|V?)DTsY8-deSfqJ?^jc|6x7k3__g%N#!hllN>axE%&@OqW|vmshYer6E4+jG zhAVtYh#5O1d|{5-#;Bn#kL+UlCy<1{uc;E``S&)P+(VNkC$r`0J!b;-T%R8PQ<%AW zRCsNhFLr!*@p6IYN~Zgyp2_Y6XRc35PcDmAJb)oV7WUekPd$~MjFTeZPn z#JA|2?U!i3OLuy_g%V_@xqVfO+hcsi&)IU=GLl@WF2lF^ylr+jBf*(6C<&h2hSO-- zBWrfA_AR?w{%5vT>z*yUcIn!(eXIX0G;j4n>mI#YcWK$axy6t!Pa5eqTU@ZcQ=nyB zXSdw#J%PmB>2ZcDJtJ!s_t*5H&Ou4ZNf}Nernx;Mpx>9}3)2`%hfBbw9Y37)JSW{H;eCI!s&KK4uT1ncmI-Dx*Z&9OI&^3`5q zUvB=e#NIr_Y_ZI~ILbGnSA@e1*&y-k=e@m+f!bHW3A6`OhRk-c`b8EuQGRy40WEeVR0Iiqu{+WhAnr6Tf~ zZQ~-QT76AQM>q-^W1NPcqX2z@M?Fc1p6`o&kum1UvJrD~n2l>jEOD4;8buTd@eQnC zFJRa5n|B&VtPCxvcj1JjtR3tCeZaZXeP^0Q6gSs5i+DSvN-|ISboS1_tN+%Fhk4RS zsaT?GP?B)zYrHn1i0_lch>D>`n(s|_WHHEV+#+H`NX@ns@IPTJooL-mk29O^;8Vbl z$o!>c#D`@gctpwl*zK!6JR;6_U|7ThdxFz5L}oS)k9d}oxVT}n3C-rp1!jJQ|4L|Uec^ai;-*;>8=&pwa2ucO{~zS@v4Q;X?UZf?PIHCig2Iv`OUZ zTd~1jG>n|hJAXzj%4M!`IBa31J7=vLos{A>QnU7?xIF%**HZD4DSJjbXk!jXzDV;~ zjAK$h--wEi>Ao_R9L?lQL32YT$GLpIH<~(bn=_j^s#$%DIyj=upIbTlg_xc;4rfRn zB0@$ImWl`oTHHM^{$RtW_&kCz9?UpWV_90Z|cZvj_B_w zoY&gZo$U5)t7Xq;&P;LK$Qjd<$FM8K-w54=FI=|i+|zWw>e!Rpw|thPl-ZFlg?)3^ zIl@aN^K4HX!b`gwT8xpdu>lMoS3)K?ey1nd9dEw2&M~Nz`R6f5)d;I}o^RgH$e2ZE z9Z_cGvyRNrh|cZ|e^2}JTp+1c=N+%tX|Jy)e(tlgVCj^#g%=b_`G454@M*wp=D*-* zQo-kb?r@q{o;x0f>^v5kJ9j-J(VdDqFTI(Ac=z#St&(>Po;>oN!1F86(cB_H0X)>w zGo79!w|ORaWa)4-GA43xgzxj>krivo8%p*aB7NznTV7RQ-v8oKp0V4IS68-E1@mt4 z$nn;YI5VYGWZw|qh0>9a&2P&@+9Q3xR*hU2($&0JEplyLbNbN8PN8-`pazC{W?1Cq za9^J8jzVUR5s{_xvvI3ViOegv+UCn6Z$?|?O~zMhLu5(c_D+rhX4x%~`yx!ouE;?} z%*9_seq+ro$)+ZeDvu0#buoKijNE7U#eWxRnAN|FTv;)y^}m_=yrZLH^6~f@oHPW? z9v=0H?s%hjs_*^Ajuh*I-9l={YYShYot@*4Bq6nsfme=y z-$5|WrpOyh);6$umc_t#NxXpL9e`J2&z%o%bGd4PEnyo-{f2nzg5&XJ+8<;B# zM9q&fJC}?a9A@4t9aSRS);nd8$C+$KR*cFh88XuJc8vPfTGjv`FAy>%SR!;?0m@QS-TNjgHD?9(XOPro$}! zM%3ecwyZtL8A&O=rabDc{#TydOQVLG>y}164vPqUmgPmjvDD6Q?w3jQZA)_G^BuqH U$Z3AEB5Fwp9ou(R)cc|T2g+crRR910 diff --git a/pandora_console/include/languages/es.po b/pandora_console/include/languages/es.po index 70b0644222..3260334f6c 100644 --- a/pandora_console/include/languages/es.po +++ b/pandora_console/include/languages/es.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-06-21 12:49+0200\n" -"PO-Revision-Date: 2022-06-21 13:13+0200\n" +"POT-Creation-Date: 2022-08-08 08:54+0200\n" +"PO-Revision-Date: 2022-08-08 11:54+0200\n" "Last-Translator: Laura Cano \n" "Language-Team: Spanish\n" "Language: es\n" @@ -19,599 +19,567 @@ msgstr "" "X-Launchpad-Export-Date: 2021-04-22 12:47+0000\n" "X-Generator: Poedit 3.0\n" -#: ../../views/calendar/edit.php:40 -msgid "Calendars Edit" -msgstr "Editar calendarios" +#: ../../views/calendar/list.php:39 +msgid "Calendars" +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 -#: ../../views/calendar/special_days_edit.php:58 ../../views/calendar/list.php:57 -#: ../../operation/users/user_edit.php:244 -#: ../../enterprise/operation/agentes/policy_view.php:51 -#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:206 -#: ../../enterprise/include/lib/Policy/Queue.php:162 -#: ../../enterprise/include/lib/Policy/Queue.php:163 -#: ../../enterprise/include/lib/Policy/Queue.php:406 #: ../../enterprise/extensions/csv_import_group.php:43 -#: ../../enterprise/godmode/modules/local_components.php:256 #: ../../enterprise/godmode/modules/manage_inventory_modules.php:56 -#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:31 -#: ../../enterprise/godmode/massive/massive_delete_alerts_policy.php:31 +#: ../../enterprise/godmode/modules/local_components.php:256 +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:343 +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.php:118 +#: ../../enterprise/godmode/agentes/collections.data.php:398 +#: ../../enterprise/godmode/agentes/collections.editor.php:112 +#: ../../enterprise/godmode/agentes/collections.php:95 +#: ../../enterprise/godmode/policies/policy_plugins.php:31 +#: ../../enterprise/godmode/policies/policy_alerts.php:57 +#: ../../enterprise/godmode/policies/configure_policy.php:74 +#: ../../enterprise/godmode/policies/policy_modules.php:469 +#: ../../enterprise/godmode/policies/policy_queue.php:211 +#: ../../enterprise/godmode/policies/policies.php:261 +#: ../../enterprise/godmode/policies/policy_linking.php:110 +#: ../../enterprise/godmode/policies/policy_external_alerts.php:302 +#: ../../enterprise/godmode/policies/policy_inventory_modules.php:84 +#: ../../enterprise/godmode/policies/policy_collections.php:43 +#: ../../enterprise/godmode/policies/policy_agents.php:319 #: ../../enterprise/godmode/massive/massive_edit_tags_policy.php:33 #: ../../enterprise/godmode/massive/massive_add_alerts_policy.php:31 #: ../../enterprise/godmode/massive/massive_add_modules_policy.php:33 #: ../../enterprise/godmode/massive/massive_tags_edit_policy.php:33 -#: ../../enterprise/godmode/agentes/agent_autoconfiguration.php:118 -#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:281 -#: ../../enterprise/godmode/agentes/collections.editor.php:112 -#: ../../enterprise/godmode/agentes/collections.data.php:398 -#: ../../enterprise/godmode/agentes/collections.php:95 -#: ../../enterprise/godmode/policies/policy_agents.php:319 -#: ../../enterprise/godmode/policies/policy_queue.php:211 -#: ../../enterprise/godmode/policies/policy_linking.php:110 -#: ../../enterprise/godmode/policies/policy_modules.php:469 -#: ../../enterprise/godmode/policies/policies.php:261 -#: ../../enterprise/godmode/policies/policy_external_alerts.php:302 -#: ../../enterprise/godmode/policies/configure_policy.php:74 -#: ../../enterprise/godmode/policies/policy_inventory_modules.php:84 -#: ../../enterprise/godmode/policies/policy_alerts.php:57 -#: ../../enterprise/godmode/policies/policy_collections.php:43 -#: ../../enterprise/godmode/policies/policy_plugins.php:31 +#: ../../enterprise/godmode/massive/massive_delete_alerts_policy.php:31 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:31 +#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:206 +#: ../../enterprise/include/lib/Policy/Queue.php:162 +#: ../../enterprise/include/lib/Policy/Queue.php:163 +#: ../../enterprise/include/lib/Policy/Queue.php:406 +#: ../../enterprise/operation/agentes/policy_view.php:51 #: ../../extensions/resource_registration.php:1107 -#: ../../godmode/setup/os.list.php:49 -#: ../../godmode/servers/plugin_registration.php:79 -#: ../../godmode/modules/manage_network_components.php:306 #: ../../godmode/modules/manage_nc_groups.php:286 -#: ../../godmode/category/category.php:101 ../../godmode/tag/tag.php:188 -#: ../../godmode/massive/massive_operations.php:410 -#: ../../godmode/massive/massive_add_profiles.php:45 -#: ../../godmode/massive/massive_delete_profiles.php:45 +#: ../../godmode/modules/manage_network_components.php:306 +#: ../../godmode/groups/group_list.php:396 ../../godmode/groups/modu_group_list.php:85 +#: ../../godmode/users/profile_list.php:108 ../../godmode/users/user_list.php:425 #: ../../godmode/agentes/modificar_agente.php:117 -#: ../../godmode/alerts/configure_alert_template.php:412 -#: ../../godmode/alerts/alert_actions.php:215 -#: ../../godmode/alerts/alert_templates.php:261 -#: ../../godmode/alerts/alert_commands.php:636 +#: ../../godmode/massive/massive_operations.php:410 +#: ../../godmode/massive/massive_delete_profiles.php:45 +#: ../../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:636 +#: ../../godmode/alerts/alert_templates.php:261 #: ../../godmode/alerts/configure_alert_action.php:113 -#: ../../godmode/users/user_list.php:425 ../../godmode/users/profile_list.php:108 -#: ../../godmode/groups/modu_group_list.php:85 -#: ../../godmode/groups/group_list.php:396 +#: ../../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:244 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 -#: ../../views/calendar/special_days_edit.php:61 ../../views/calendar/list.php:60 -#: ../../operation/users/user_edit.php:246 -#: ../../enterprise/operation/agentes/policy_view.php:53 -#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:208 #: ../../enterprise/extensions/csv_import_group.php:45 -#: ../../enterprise/godmode/modules/local_components.php:258 #: ../../enterprise/godmode/modules/manage_inventory_modules.php:58 -#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:33 -#: ../../enterprise/godmode/massive/massive_delete_alerts_policy.php:33 +#: ../../enterprise/godmode/modules/local_components.php:258 +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:345 +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.php:120 +#: ../../enterprise/godmode/policies/policy_plugins.php:33 +#: ../../enterprise/godmode/policies/policy_alerts.php:59 +#: ../../enterprise/godmode/policies/configure_policy.php:76 +#: ../../enterprise/godmode/policies/policy_modules.php:471 +#: ../../enterprise/godmode/policies/policy_queue.php:213 +#: ../../enterprise/godmode/policies/policies.php:263 +#: ../../enterprise/godmode/policies/policy_linking.php:112 +#: ../../enterprise/godmode/policies/policy_external_alerts.php:304 +#: ../../enterprise/godmode/policies/policy_inventory_modules.php:86 +#: ../../enterprise/godmode/policies/policy_collections.php:45 +#: ../../enterprise/godmode/policies/policy_agents.php:321 #: ../../enterprise/godmode/massive/massive_edit_tags_policy.php:35 #: ../../enterprise/godmode/massive/massive_add_alerts_policy.php:33 #: ../../enterprise/godmode/massive/massive_add_modules_policy.php:35 #: ../../enterprise/godmode/massive/massive_tags_edit_policy.php:35 -#: ../../enterprise/godmode/agentes/agent_autoconfiguration.php:120 -#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:283 -#: ../../enterprise/godmode/policies/policy_agents.php:321 -#: ../../enterprise/godmode/policies/policy_queue.php:213 -#: ../../enterprise/godmode/policies/policy_linking.php:112 -#: ../../enterprise/godmode/policies/policy_modules.php:471 -#: ../../enterprise/godmode/policies/policies.php:263 -#: ../../enterprise/godmode/policies/policy_external_alerts.php:304 -#: ../../enterprise/godmode/policies/configure_policy.php:76 -#: ../../enterprise/godmode/policies/policy_inventory_modules.php:86 -#: ../../enterprise/godmode/policies/policy_alerts.php:59 -#: ../../enterprise/godmode/policies/policy_collections.php:45 -#: ../../enterprise/godmode/policies/policy_plugins.php:33 +#: ../../enterprise/godmode/massive/massive_delete_alerts_policy.php:33 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:33 +#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:208 +#: ../../enterprise/operation/agentes/policy_view.php:53 #: ../../extensions/resource_registration.php:1109 -#: ../../godmode/setup/os.list.php:51 -#: ../../godmode/modules/manage_network_components.php:308 #: ../../godmode/modules/manage_nc_groups.php:288 -#: ../../godmode/category/category.php:103 ../../godmode/tag/tag.php:190 -#: ../../godmode/massive/massive_operations.php:412 -#: ../../godmode/massive/massive_add_profiles.php:47 -#: ../../godmode/massive/massive_delete_profiles.php:47 +#: ../../godmode/modules/manage_network_components.php:308 +#: ../../godmode/groups/group_list.php:398 ../../godmode/groups/modu_group_list.php:87 +#: ../../godmode/users/profile_list.php:110 ../../godmode/users/user_list.php:427 #: ../../godmode/agentes/modificar_agente.php:119 -#: ../../godmode/alerts/configure_alert_template.php:414 -#: ../../godmode/alerts/alert_actions.php:217 -#: ../../godmode/alerts/alert_templates.php:263 -#: ../../godmode/alerts/alert_commands.php:638 +#: ../../godmode/massive/massive_operations.php:412 +#: ../../godmode/massive/massive_delete_profiles.php:47 +#: ../../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:638 +#: ../../godmode/alerts/alert_templates.php:263 #: ../../godmode/alerts/configure_alert_action.php:115 -#: ../../godmode/users/user_list.php:427 ../../godmode/users/profile_list.php:110 -#: ../../godmode/groups/modu_group_list.php:87 -#: ../../godmode/groups/group_list.php:398 +#: ../../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:246 msgid "any node" msgstr "cualquier nodo" +#: ../../views/calendar/list.php:65 ../../views/calendar/special_days_edit.php:66 #: ../../views/calendar/edit.php:66 ../../views/calendar/special_days.php:67 -#: ../../views/calendar/special_days_edit.php:66 ../../views/calendar/list.php:65 #, php-format msgid "" -"This node is configured with centralized mode. All alert calendar information " -"is read only. Go to %s to manage it." +"This node is configured with centralized mode. All alert calendar information is read " +"only. Go to %s to manage it." msgstr "" -"Este nodo se configura en modo centralizado. Toda la informaciĆ³n de plantillas " -"de alertas es solo de lectura. Vaya a %s para gestionarlo." +"Este nodo se configura en modo centralizado. Toda la informaciĆ³n de plantillas de " +"alertas es solo de lectura. Vaya a %s para gestionarlo." -#: ../../views/calendar/edit.php:80 ../../views/calendar/list.php:93 -#: ../../views/dashboard/formDashboard.php:77 ../../views/dashboard/list.php:95 -#: ../../operation/search_policies.php:35 -#: ../../operation/gis_maps/gis_map.php:102 ../../operation/search_users.php:44 -#: ../../operation/search_maps.php:28 -#: ../../operation/netflow/nf_live_view.php:370 -#: ../../operation/agentes/pandora_networkmap.php:707 -#: ../../operation/agentes/pandora_networkmap.editor.php:273 -#: ../../operation/agentes/pandora_networkmap.view.php:100 -#: ../../operation/search_helps.php:31 -#: ../../operation/incidents/configure_integriaims_incident.php:217 -#: ../../include/class/ModuleTemplates.class.php:892 -#: ../../include/class/ModuleTemplates.class.php:1050 -#: ../../include/class/ManageNetScanScripts.class.php:403 -#: ../../include/class/ManageNetScanScripts.class.php:545 -#: ../../include/class/CalendarManager.class.php:975 -#: ../../include/class/NetworkMap.class.php:2906 -#: ../../include/class/NetworkMap.class.php:2947 -#: ../../include/class/NetworkMap.class.php:2965 -#: ../../include/class/NetworkMap.class.php:3268 -#: ../../include/functions_events.php:4452 -#: ../../include/functions_events.php:4541 -#: ../../include/functions_filemanager.php:604 -#: ../../include/functions_treeview.php:78 -#: ../../include/functions_snmp_browser.php:1662 -#: ../../include/functions_reporting_html.php:1048 -#: ../../include/functions_reporting_html.php:1056 -#: ../../include/functions_reporting_html.php:2389 -#: ../../include/functions_reporting_html.php:2739 -#: ../../include/functions_reporting_html.php:3436 -#: ../../include/functions_reporting_html.php:6150 -#: ../../enterprise/tools/ipam/ipam_excel.php:131 -#: ../../enterprise/tools/ipam/ipam_excel.php:200 -#: ../../enterprise/tools/ipam/ipam_vlan_config.php:667 -#: ../../enterprise/tools/ipam/ipam_network_location_config.php:135 -#: ../../enterprise/tools/ipam/ipam_network_location_config.php:257 -#: ../../enterprise/tools/ipam/ipam_supernet_config.php:1053 -#: ../../enterprise/tools/ipam/ipam_list.php:576 -#: ../../enterprise/tools/ipam/ipam_editor.php:140 -#: ../../enterprise/views/ncm/snippets/edit.php:81 +#: ../../views/calendar/list.php:92 +#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:91 +#: ../../enterprise/tools/ipam/ipam_excel.php:130 +#: ../../enterprise/tools/ipam/ipam_excel.php:199 +#: ../../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 ../../godmode/groups/modu_group_list.php:251 +#: ../../godmode/agentes/fields_manager.php:118 +#: ../../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:656 ../../godmode/setup/os.list.php:68 +#: ../../operation/incidents/list_integriaims_incidents.php:515 +msgid "ID" +msgstr "ID" + +#: ../../views/calendar/list.php:93 ../../views/calendar/edit.php:86 +#: ../../views/dashboard/list.php:95 ../../views/dashboard/formDashboard.php:77 #: ../../enterprise/views/ncm/snippets/list.php:70 -#: ../../enterprise/views/ncm/firmwares/edit.php:80 -#: ../../enterprise/views/ncm/firmwares/list.php:73 -#: ../../enterprise/views/ncm/vendors/edit.php:67 -#: ../../enterprise/views/ncm/vendors/list.php:70 -#: ../../enterprise/views/ncm/devices/list.php:114 -#: ../../enterprise/views/ncm/templates/edit.php:81 +#: ../../enterprise/views/ncm/snippets/edit.php:81 #: ../../enterprise/views/ncm/templates/list.php:73 -#: ../../enterprise/views/ncm/models/edit.php:68 +#: ../../enterprise/views/ncm/templates/edit.php:81 +#: ../../enterprise/views/ncm/devices/list.php:114 +#: ../../enterprise/views/ncm/firmwares/list.php:73 +#: ../../enterprise/views/ncm/firmwares/edit.php:80 #: ../../enterprise/views/ncm/models/list.php:71 -#: ../../enterprise/views/ipam/sites/edit.php:40 -#: ../../enterprise/views/ipam/sites/list.php:46 +#: ../../enterprise/views/ncm/models/edit.php:68 +#: ../../enterprise/views/ncm/vendors/list.php:70 +#: ../../enterprise/views/ncm/vendors/edit.php:67 #: ../../enterprise/views/cluster/list.php:58 -#: ../../enterprise/operation/services/services.service.php:118 -#: ../../enterprise/operation/services/services.list.php:497 -#: ../../enterprise/operation/agentes/tag_view.php:677 -#: ../../enterprise/operation/agentes/policy_view.php:163 -#: ../../enterprise/operation/agentes/policy_view.php:395 -#: ../../enterprise/operation/agentes/collection_view.php:75 -#: ../../enterprise/operation/agentes/manage_transmap_creation.php:186 -#: ../../enterprise/operation/agentes/manage_transmap_creation.php:363 -#: ../../enterprise/operation/agentes/manage_transmap_creation.php:489 -#: ../../enterprise/include/ajax/servers.ajax.php:100 -#: ../../enterprise/include/ajax/servers.ajax.php:158 -#: ../../enterprise/include/ajax/servers.ajax.php:284 -#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:379 -#: ../../enterprise/include/class/Omnishell.class.php:668 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:765 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2903 -#: ../../enterprise/include/functions_services.php:1603 -#: ../../enterprise/include/functions_ipam.php:1348 -#: ../../enterprise/include/functions_ipam.php:1981 -#: ../../enterprise/meta/include/functions_autoprovision.php:474 -#: ../../enterprise/meta/include/functions_wizard_meta.php:466 -#: ../../enterprise/meta/include/functions_wizard_meta.php:584 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1134 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1460 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1582 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1685 +#: ../../enterprise/views/ipam/sites/list.php:46 +#: ../../enterprise/views/ipam/sites/edit.php:40 #: ../../enterprise/meta/advanced/servers.build_table.php:60 +#: ../../enterprise/meta/include/functions_autoprovision.php:474 +#: ../../enterprise/meta/include/functions_wizard_meta.php:463 +#: ../../enterprise/meta/include/functions_wizard_meta.php:581 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1131 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1457 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1579 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1682 #: ../../enterprise/meta/agentsearch.php:327 -#: ../../enterprise/mobile/include/enterprise.class.php:87 +#: ../../enterprise/godmode/modules/configure_local_component.php:156 +#: ../../enterprise/godmode/modules/manage_inventory_modules.php:272 +#: ../../enterprise/godmode/modules/local_components.php:621 +#: ../../enterprise/godmode/modules/manage_inventory_modules_form.php:99 +#: ../../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:220 +#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:76 +#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:535 +#: ../../enterprise/godmode/agentes/pandora_networkmap_empty.editor.php:130 +#: ../../enterprise/godmode/policies/configure_policy.php:100 +#: ../../enterprise/godmode/policies/policy_modules.php:1464 +#: ../../enterprise/godmode/policies/policies.php:406 +#: ../../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/massive/massive_create_services.php:636 +#: ../../enterprise/godmode/alerts/alert_inventory_builder.php:163 +#: ../../enterprise/godmode/services/services.service.php:546 +#: ../../enterprise/godmode/setup/setup_skins.php:87 #: ../../enterprise/godmode/setup/setup_auth.php:102 #: ../../enterprise/godmode/setup/edit_skin.php:233 -#: ../../enterprise/godmode/setup/setup_skins.php:87 -#: ../../enterprise/godmode/servers/manage_export_form.php:75 -#: ../../enterprise/godmode/servers/credential_boxes_satellite.php:249 -#: ../../enterprise/godmode/servers/manage_export.php:137 -#: ../../enterprise/godmode/servers/list_satellite.php:37 -#: ../../enterprise/godmode/servers/manage_credential_boxes.php:58 -#: ../../enterprise/godmode/modules/configure_local_component.php:156 -#: ../../enterprise/godmode/modules/local_components.php:621 -#: ../../enterprise/godmode/modules/manage_inventory_modules.php:272 -#: ../../enterprise/godmode/modules/manage_inventory_modules_form.php:99 -#: ../../enterprise/godmode/services/services.service.php:546 +#: ../../enterprise/godmode/reporting/reporting_builder.template_editor.php:182 +#: ../../enterprise/godmode/reporting/reporting_builder.template_editor.php:186 +#: ../../enterprise/godmode/reporting/graph_template_editor.php:191 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:108 #: ../../enterprise/godmode/reporting/visual_console_template.php:203 #: ../../enterprise/godmode/reporting/visual_console_template.php:270 #: ../../enterprise/godmode/reporting/mysql_builder.php:96 #: ../../enterprise/godmode/reporting/mysql_builder.php:227 #: ../../enterprise/godmode/reporting/mysql_builder.php:228 -#: ../../enterprise/godmode/reporting/graph_template_editor.php:191 -#: ../../enterprise/godmode/reporting/reporting_builder.template_editor.php:182 -#: ../../enterprise/godmode/reporting/reporting_builder.template_editor.php:186 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1674 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:107 -#: ../../enterprise/godmode/massive/massive_create_services.php:636 -#: ../../enterprise/godmode/agentes/inventory_manager.php:220 -#: ../../enterprise/godmode/agentes/agent_autoconfiguration.php:136 -#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:309 -#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:596 -#: ../../enterprise/godmode/agentes/collection_manager.php:109 -#: ../../enterprise/godmode/agentes/collection_manager.php:206 -#: ../../enterprise/godmode/agentes/pandora_networkmap_empty.editor.php:130 -#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:76 -#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:535 -#: ../../enterprise/godmode/alerts/alert_inventory_builder.php:163 -#: ../../enterprise/godmode/policies/policy_agents.php:847 -#: ../../enterprise/godmode/policies/policy_agents.php:1367 -#: ../../enterprise/godmode/policies/policy_modules.php:1464 -#: ../../enterprise/godmode/policies/policies.php:406 -#: ../../enterprise/godmode/policies/configure_policy.php:100 -#: ../../enterprise/godmode/policies/policy_inventory_modules.php:302 -#: ../../enterprise/godmode/policies/policy_collections.php:169 -#: ../../enterprise/godmode/policies/policy_collections.php:263 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1677 +#: ../../enterprise/godmode/servers/manage_export.php:137 +#: ../../enterprise/godmode/servers/credential_boxes_satellite.php:249 +#: ../../enterprise/godmode/servers/manage_credential_boxes.php:58 +#: ../../enterprise/godmode/servers/manage_export_form.php:75 +#: ../../enterprise/godmode/servers/list_satellite.php:37 +#: ../../enterprise/mobile/include/enterprise.class.php:86 +#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:379 +#: ../../enterprise/include/ajax/servers.ajax.php:100 +#: ../../enterprise/include/ajax/servers.ajax.php:158 +#: ../../enterprise/include/ajax/servers.ajax.php:284 +#: ../../enterprise/include/class/Omnishell.class.php:668 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:764 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2945 +#: ../../enterprise/include/functions_services.php:1603 +#: ../../enterprise/include/functions_ipam.php:1348 +#: ../../enterprise/include/functions_ipam.php:1981 +#: ../../enterprise/operation/agentes/policy_view.php:163 +#: ../../enterprise/operation/agentes/policy_view.php:395 +#: ../../enterprise/operation/agentes/tag_view.php:677 +#: ../../enterprise/operation/agentes/collection_view.php:75 +#: ../../enterprise/operation/agentes/manage_transmap_creation.php:186 +#: ../../enterprise/operation/agentes/manage_transmap_creation.php:363 +#: ../../enterprise/operation/agentes/manage_transmap_creation.php:489 +#: ../../enterprise/operation/services/services.service.php:118 +#: ../../enterprise/operation/services/services.list.php:497 +#: ../../enterprise/tools/ipam/ipam_supernet_config.php:1053 +#: ../../enterprise/tools/ipam/ipam_list.php:576 +#: ../../enterprise/tools/ipam/ipam_network_location_config.php:135 +#: ../../enterprise/tools/ipam/ipam_network_location_config.php:257 +#: ../../enterprise/tools/ipam/ipam_excel.php:131 +#: ../../enterprise/tools/ipam/ipam_excel.php:200 +#: ../../enterprise/tools/ipam/ipam_vlan_config.php:667 +#: ../../enterprise/tools/ipam/ipam_editor.php:140 #: ../../extensions/files_repo/files_repo_list.php:55 -#: ../../godmode/setup/os.list.php:69 ../../godmode/setup/setup_integria.php:337 -#: ../../godmode/setup/setup_integria.php:458 -#: ../../godmode/setup/os.builder.php:36 ../../godmode/servers/plugin.php:339 -#: ../../godmode/servers/plugin.php:815 -#: ../../godmode/servers/modificar_server.php:58 -#: ../../godmode/servers/servers.build_table.php:79 -#: ../../godmode/modules/module_list.php:62 -#: ../../godmode/modules/manage_network_templates.php:246 +#: ../../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_network_components_form_common.php:46 -#: ../../godmode/modules/manage_nc_groups_form.php:68 -#: ../../godmode/category/edit_category.php:180 -#: ../../godmode/reporting/reporting_builder.main.php:89 -#: ../../godmode/reporting/reporting_builder.main.php:93 -#: ../../godmode/reporting/create_container.php:223 -#: ../../godmode/reporting/reporting_builder.item_editor.php:1014 -#: ../../godmode/reporting/graph_builder.main.php:125 -#: ../../godmode/tag/edit_tag.php:211 ../../godmode/tag/tag.php:228 -#: ../../godmode/events/event_responses.editor.php:86 -#: ../../godmode/events/event_responses.list.php:50 -#: ../../godmode/events/event_filter.php:136 -#: ../../godmode/netflow/nf_edit.php:159 -#: ../../godmode/netflow/nf_edit_form.php:199 -#: ../../godmode/agentes/module_manager.php:827 -#: ../../godmode/agentes/configure_field.php:74 -#: ../../godmode/agentes/module_manager_editor_common.php:215 -#: ../../godmode/agentes/module_manager_editor_common.php:1212 +#: ../../godmode/modules/module_list.php:62 +#: ../../godmode/modules/manage_network_templates.php:246 +#: ../../godmode/groups/configure_group.php:150 ../../godmode/groups/group_list.php:842 +#: ../../godmode/groups/configure_modu_group.php:67 +#: ../../godmode/groups/modu_group_list.php:252 ../../godmode/users/user_list.php:480 #: ../../godmode/agentes/planned_downtime.editor.php:552 #: ../../godmode/agentes/planned_downtime.editor.php:920 #: ../../godmode/agentes/pandora_networkmap_empty.editor.php:132 -#: ../../godmode/alerts/configure_alert_template.php:1052 -#: ../../godmode/alerts/alert_actions.php:326 -#: ../../godmode/alerts/alert_templates.php:383 -#: ../../godmode/alerts/alert_commands.php:655 +#: ../../godmode/agentes/configure_field.php:74 +#: ../../godmode/agentes/module_manager_editor_common.php:215 +#: ../../godmode/agentes/module_manager_editor_common.php:1212 +#: ../../godmode/agentes/module_manager.php:827 ../../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:655 +#: ../../godmode/alerts/alert_templates.php:384 #: ../../godmode/alerts/configure_alert_action.php:181 -#: ../../godmode/users/user_list.php:480 -#: ../../godmode/groups/configure_group.php:150 -#: ../../godmode/groups/modu_group_list.php:252 -#: ../../godmode/groups/group_list.php:842 -#: ../../godmode/groups/configure_modu_group.php:67 +#: ../../godmode/alerts/configure_alert_template.php:1052 +#: ../../godmode/setup/os.builder.php:36 ../../godmode/setup/os.list.php:69 +#: ../../godmode/setup/setup_integria.php:337 ../../godmode/setup/setup_integria.php:458 +#: ../../godmode/reporting/create_container.php:223 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1064 +#: ../../godmode/reporting/reporting_builder.main.php:89 +#: ../../godmode/reporting/reporting_builder.main.php:93 +#: ../../godmode/reporting/graph_builder.main.php:125 +#: ../../godmode/events/event_filter.php:136 +#: ../../godmode/events/event_responses.editor.php:86 +#: ../../godmode/events/event_responses.list.php:50 +#: ../../godmode/servers/servers.build_table.php:79 +#: ../../godmode/servers/modificar_server.php:58 ../../godmode/servers/plugin.php:339 +#: ../../godmode/servers/plugin.php:815 ../../godmode/tag/tag.php:228 +#: ../../godmode/tag/edit_tag.php:211 ../../godmode/category/edit_category.php:180 +#: ../../include/functions_reporting_html.php:1048 +#: ../../include/functions_reporting_html.php:1056 +#: ../../include/functions_reporting_html.php:2425 +#: ../../include/functions_reporting_html.php:2784 +#: ../../include/functions_reporting_html.php:3481 +#: ../../include/functions_reporting_html.php:6170 +#: ../../include/functions_treeview.php:78 ../../include/class/NetworkMap.class.php:2906 +#: ../../include/class/NetworkMap.class.php:2947 +#: ../../include/class/NetworkMap.class.php:2965 +#: ../../include/class/NetworkMap.class.php:3268 +#: ../../include/class/ManageNetScanScripts.class.php:403 +#: ../../include/class/ManageNetScanScripts.class.php:545 +#: ../../include/class/ModuleTemplates.class.php:892 +#: ../../include/class/ModuleTemplates.class.php:1050 +#: ../../include/class/CalendarManager.class.php:1026 +#: ../../include/functions_filemanager.php:604 +#: ../../include/functions_snmp_browser.php:1670 ../../include/functions_events.php:4001 +#: ../../include/functions_events.php:4090 ../../operation/search_users.php:44 +#: ../../operation/search_helps.php:31 +#: ../../operation/agentes/pandora_networkmap.editor.php:273 +#: ../../operation/agentes/pandora_networkmap.php:707 +#: ../../operation/agentes/pandora_networkmap.view.php:100 +#: ../../operation/netflow/nf_live_view.php:370 ../../operation/gis_maps/gis_map.php:102 +#: ../../operation/incidents/configure_integriaims_incident.php:217 +#: ../../operation/search_policies.php:35 ../../operation/search_maps.php:28 msgid "Name" msgstr "Nombre" -#: ../../views/calendar/edit.php:91 ../../views/calendar/special_days.php:112 -#: ../../views/calendar/special_days_edit.php:106 -#: ../../views/calendar/list.php:94 ../../views/dashboard/formDashboard.php:108 -#: ../../views/dashboard/list.php:97 ../../general/ui/agents_list.php:76 -#: ../../operation/visual_console/view.php:351 -#: ../../operation/gis_maps/ajax.php:332 ../../operation/gis_maps/ajax.php:438 -#: ../../operation/gis_maps/gis_map.php:103 ../../operation/search_maps.php:29 -#: ../../operation/heatmap.php:115 ../../operation/heatmap.php:117 -#: ../../operation/search_agents.php:46 ../../operation/search_agents.php:52 -#: ../../operation/events/sound_events.php:109 -#: ../../operation/events/events.build_table.php:222 -#: ../../operation/events/events.php:1061 -#: ../../operation/events/events_list.php:917 -#: ../../operation/netflow/nf_live_view.php:380 -#: ../../operation/agentes/status_monitor.php:450 -#: ../../operation/agentes/group_view.php:222 -#: ../../operation/agentes/interface_view.functions.php:37 -#: ../../operation/agentes/exportdata.php:227 -#: ../../operation/agentes/alerts_status.functions.php:89 -#: ../../operation/agentes/estado_agente.php:254 -#: ../../operation/agentes/estado_agente.php:754 -#: ../../operation/agentes/pandora_networkmap.editor.php:289 -#: ../../operation/agentes/pandora_networkmap.editor.php:337 -#: ../../operation/agentes/estado_generalagente.php:405 -#: ../../operation/agentes/pandora_networkmap.view.php:103 -#: ../../operation/agentes/pandora_networkmap.view.php:137 -#: ../../operation/agentes/ver_agente.php:1018 -#: ../../operation/users/user_edit.php:814 -#: ../../operation/incidents/configure_integriaims_incident.php:266 -#: ../../operation/incidents/list_integriaims_incidents.php:331 -#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:324 -#: ../../include/functions_cron.php:468 ../../include/functions_gis.php:228 +#: ../../views/calendar/list.php:94 ../../views/calendar/special_days_edit.php:106 +#: ../../views/calendar/edit.php:97 ../../views/calendar/special_days.php:112 +#: ../../views/dashboard/list.php:97 ../../views/dashboard/formDashboard.php:108 +#: ../../enterprise/views/ncm/devices/list.php:116 +#: ../../enterprise/views/cluster/list.php:60 +#: ../../enterprise/meta/advanced/cron_main.php:422 +#: ../../enterprise/meta/advanced/collections.php:366 +#: ../../enterprise/meta/monitoring/custom_fields_view.php:146 +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:273 +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:370 +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:435 +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:703 +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:782 +#: ../../enterprise/meta/include/functions_wizard_meta.php:191 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1805 +#: ../../enterprise/meta/include/functions_events_meta.php:74 +#: ../../enterprise/meta/agentsearch.php:138 ../../enterprise/meta/agentsearch.php:329 +#: ../../enterprise/godmode/modules/configure_local_component.php:274 +#: ../../enterprise/godmode/modules/local_components.php:498 +#: ../../enterprise/godmode/modules/local_components.php:623 +#: ../../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:381 +#: ../../enterprise/godmode/policies/configure_policy.php:103 +#: ../../enterprise/godmode/policies/policies.php:308 +#: ../../enterprise/godmode/policies/policies.php:408 +#: ../../enterprise/godmode/policies/policy_agents.php:798 +#: ../../enterprise/godmode/policies/policy_agents.php:855 +#: ../../enterprise/godmode/massive/massive_add_modules_policy.php:102 +#: ../../enterprise/godmode/massive/massive_create_services.php:658 +#: ../../enterprise/godmode/alerts/alert_inventory_list.php:139 +#: ../../enterprise/godmode/services/services.service.php:569 +#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:329 +#: ../../enterprise/godmode/reporting/reporting_builder.template_editor.php:194 +#: ../../enterprise/godmode/reporting/graph_template_list.php:205 +#: ../../enterprise/godmode/reporting/graph_template_editor.php:196 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:500 +#: ../../enterprise/godmode/reporting/visual_console_template.php:218 +#: ../../enterprise/godmode/reporting/visual_console_template.php:271 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:318 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1398 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2000 +#: ../../enterprise/godmode/reporting/visual_console_builder.wizard_services.php:110 +#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:669 +#: ../../enterprise/include/functions_tasklist.php:157 +#: ../../enterprise/include/ajax/ipam.ajax.php:487 +#: ../../enterprise/include/functions_reporting_csv.php:718 +#: ../../enterprise/include/functions_reporting_csv.php:2559 +#: ../../enterprise/include/functions_reporting_csv.php:2738 +#: ../../enterprise/include/class/Azure.cloud.php:835 +#: ../../enterprise/include/class/VMware.app.php:763 +#: ../../enterprise/include/class/Omnishell.class.php:399 +#: ../../enterprise/include/class/Omnishell.class.php:428 +#: ../../enterprise/include/class/Omnishell.class.php:678 +#: ../../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: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 +#: ../../enterprise/include/class/MicrosoftSQLServer.app.php:471 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:776 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:926 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2841 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2946 +#: ../../enterprise/include/lib/ClusterViewer/ClusterWizard.php:823 +#: ../../enterprise/include/functions_events.php:30 +#: ../../enterprise/operation/agentes/transactional_map.php:208 +#: ../../enterprise/operation/agentes/tag_view.php:108 +#: ../../enterprise/operation/agentes/tag_view.php:604 +#: ../../enterprise/operation/agentes/ver_agente.php:52 +#: ../../enterprise/operation/agentes/ver_agente.php:73 +#: ../../enterprise/operation/agentes/manage_transmap_creation.php:366 +#: ../../enterprise/operation/agentes/manage_transmap_creation.php:492 +#: ../../enterprise/operation/log/log_viewer.php:533 +#: ../../enterprise/operation/inventory/inventory.php:336 +#: ../../enterprise/operation/services/services.service.php:121 +#: ../../enterprise/operation/services/services.list.php:260 +#: ../../enterprise/operation/services/services.list.php:502 +#: ../../enterprise/operation/services/services.table_services.php:182 +#: ../../enterprise/tools/ipam/ipam_editor.php:293 +#: ../../extensions/agents_modules.php:404 +#: ../../godmode/modules/manage_network_templates_form.php:235 +#: ../../godmode/modules/manage_network_templates_form.php:303 +#: ../../godmode/modules/manage_network_templates_form.php:339 +#: ../../godmode/modules/manage_network_components_form_common.php:131 +#: ../../godmode/modules/manage_network_components.php:618 +#: ../../godmode/modules/manage_network_components.php:752 +#: ../../godmode/users/user_list.php:390 ../../godmode/agentes/configurar_agente.php:495 +#: ../../godmode/agentes/modificar_agente.php:289 +#: ../../godmode/agentes/modificar_agente.php:651 +#: ../../godmode/agentes/planned_downtime.list.php:612 +#: ../../godmode/agentes/planned_downtime.editor.php:562 +#: ../../godmode/agentes/planned_downtime.editor.php:921 +#: ../../godmode/agentes/pandora_networkmap_empty.editor.php:141 +#: ../../godmode/agentes/agent_incidents.php:92 ../../godmode/netflow/nf_edit.php:160 +#: ../../godmode/netflow/nf_edit_form.php:203 +#: ../../godmode/snmpconsole/snmp_alert.php:802 +#: ../../godmode/gis_maps/configure_gis_map.php:498 +#: ../../godmode/gis_maps/configure_gis_map.php:635 +#: ../../godmode/massive/massive_copy_modules.php:100 +#: ../../godmode/massive/massive_copy_modules.php:253 +#: ../../godmode/massive/massive_standby_alerts.php:185 +#: ../../godmode/massive/massive_delete_action_alerts.php:209 +#: ../../godmode/massive/massive_add_alerts.php:211 +#: ../../godmode/massive/massive_delete_agents.php:187 +#: ../../godmode/massive/massive_enable_disable_alerts.php:169 +#: ../../godmode/massive/massive_edit_agents.php:508 +#: ../../godmode/massive/massive_edit_agents.php:685 +#: ../../godmode/massive/massive_delete_profiles.php:152 +#: ../../godmode/massive/massive_delete_alerts.php:289 +#: ../../godmode/massive/massive_add_action_alerts.php:197 +#: ../../godmode/massive/massive_add_profiles.php:203 +#: ../../godmode/alerts/configure_alert_command.php:265 +#: ../../godmode/alerts/alert_actions.php:260 ../../godmode/alerts/alert_actions.php:328 +#: ../../godmode/alerts/alert_list.list.php:157 +#: ../../godmode/alerts/alert_commands.php:657 +#: ../../godmode/alerts/alert_templates.php:385 +#: ../../godmode/alerts/configure_alert_action.php:212 +#: ../../godmode/alerts/configure_alert_template.php:1074 +#: ../../godmode/setup/news.php:186 ../../godmode/setup/gis.php:69 +#: ../../godmode/setup/gis_step_2.php:216 ../../godmode/setup/setup_integria.php:361 +#: ../../godmode/setup/setup_integria.php:483 +#: ../../godmode/reporting/visual_console_builder.data.php:136 +#: ../../godmode/reporting/create_container.php:244 +#: ../../godmode/reporting/create_container.php:534 +#: ../../godmode/reporting/create_container.php:625 +#: ../../godmode/reporting/map_builder.php:356 +#: ../../godmode/reporting/map_builder.php:385 ../../godmode/reporting/graphs.php:231 +#: ../../godmode/reporting/graphs.php:313 +#: ../../godmode/reporting/visual_console_favorite.php:161 +#: ../../godmode/reporting/reporting_builder.item_editor.php:72 +#: ../../godmode/reporting/reporting_builder.item_editor.php:202 +#: ../../godmode/reporting/reporting_builder.item_editor.php:874 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1558 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3413 +#: ../../godmode/reporting/visual_console_builder.elements.php:104 +#: ../../godmode/reporting/visual_console_builder.elements.php:314 +#: ../../godmode/reporting/reporting_builder.main.php:101 +#: ../../godmode/reporting/reporting_builder.php:758 +#: ../../godmode/reporting/reporting_builder.php:946 +#: ../../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:304 +#: ../../godmode/events/event_responses.list.php:52 +#: ../../godmode/events/custom_events.php:100 +#: ../../godmode/wizards/HostDevices.class.php:932 ../../mobile/operation/agents.php:95 +#: ../../mobile/operation/agents.php:157 ../../mobile/operation/agents.php:234 +#: ../../mobile/operation/agents.php:235 ../../mobile/operation/agents.php:405 +#: ../../mobile/operation/modules.php:171 ../../mobile/operation/modules.php:176 +#: ../../mobile/operation/modules.php:266 ../../mobile/operation/modules.php:267 +#: ../../mobile/operation/alerts.php:113 ../../mobile/operation/alerts.php:118 +#: ../../mobile/operation/alerts.php:231 ../../mobile/operation/alerts.php:232 +#: ../../mobile/operation/visualmaps.php:113 ../../mobile/operation/visualmaps.php:118 +#: ../../mobile/operation/events.php:666 ../../mobile/operation/events.php:671 +#: ../../mobile/operation/events.php:832 ../../mobile/operation/events.php:954 +#: ../../mobile/operation/events.php:955 #: ../../include/functions_visual_map_editor.php:70 #: ../../include/functions_visual_map_editor.php:594 #: ../../include/functions_visual_map_editor.php:1397 -#: ../../include/ajax/heatmap.ajax.php:110 -#: ../../include/ajax/heatmap.ajax.php:344 -#: ../../include/ajax/custom_fields.php:628 -#: ../../include/ajax/custom_fields.php:677 -#: ../../include/class/ModuleTemplates.class.php:780 +#: ../../include/functions_reporting_html.php:1565 +#: ../../include/functions_reporting_html.php:2142 +#: ../../include/functions_reporting_html.php:3432 +#: ../../include/functions_reporting_html.php:3485 +#: ../../include/functions_reporting_html.php:6258 ../../include/functions_cron.php:468 +#: ../../include/ajax/heatmap.ajax.php:110 ../../include/ajax/heatmap.ajax.php:344 +#: ../../include/ajax/custom_fields.php:628 ../../include/ajax/custom_fields.php:677 +#: ../../include/functions_graph.php:5159 ../../include/functions_gis.php:228 +#: ../../include/functions_profile.php:214 ../../include/functions_visual_map.php:4259 +#: ../../include/rest-api/models/VisualConsole/Items/Group.php:549 +#: ../../include/rest-api/models/VisualConsole/Item.php:2139 +#: ../../include/functions_html.php:1531 ../../include/class/NetworkMap.class.php:2841 +#: ../../include/class/NetworkMap.class.php:2890 +#: ../../include/class/NetworkMap.class.php:3206 #: ../../include/class/AgentsAlerts.class.php:761 #: ../../include/class/CredentialStore.class.php:802 #: ../../include/class/CredentialStore.class.php:833 #: ../../include/class/CredentialStore.class.php:923 #: ../../include/class/CustomNetScan.class.php:500 -#: ../../include/class/CalendarManager.class.php:976 -#: ../../include/class/NetworkMap.class.php:2841 -#: ../../include/class/NetworkMap.class.php:2890 -#: ../../include/class/NetworkMap.class.php:3206 -#: ../../include/lib/Dashboard/Widgets/alerts_fired.php:226 -#: ../../include/functions_events.php:195 ../../include/functions_events.php:248 -#: ../../include/functions_events.php:5109 -#: ../../include/functions_events.php:6710 +#: ../../include/class/ModuleTemplates.class.php:780 +#: ../../include/class/CalendarManager.class.php:1027 #: ../../include/functions_container.php:149 -#: ../../include/functions_graph.php:5218 -#: ../../include/functions_snmp_browser.php:1665 -#: ../../include/functions_visual_map.php:4229 -#: ../../include/functions_profile.php:214 -#: ../../include/rest-api/models/VisualConsole/Item.php:2139 -#: ../../include/rest-api/models/VisualConsole/Items/Group.php:549 -#: ../../include/functions_html.php:1521 -#: ../../include/functions_reporting_html.php:1529 -#: ../../include/functions_reporting_html.php:2106 -#: ../../include/functions_reporting_html.php:3387 -#: ../../include/functions_reporting_html.php:3440 -#: ../../include/functions_reporting_html.php:6238 -#: ../../enterprise/tools/ipam/ipam_editor.php:293 -#: ../../enterprise/views/ncm/devices/list.php:116 -#: ../../enterprise/views/cluster/list.php:60 -#: ../../enterprise/operation/log/log_viewer.php:533 -#: ../../enterprise/operation/services/services.service.php:121 -#: ../../enterprise/operation/services/services.list.php:260 -#: ../../enterprise/operation/services/services.list.php:502 -#: ../../enterprise/operation/services/services.table_services.php:182 -#: ../../enterprise/operation/agentes/tag_view.php:108 -#: ../../enterprise/operation/agentes/tag_view.php:604 -#: ../../enterprise/operation/agentes/transactional_map.php:208 -#: ../../enterprise/operation/agentes/manage_transmap_creation.php:366 -#: ../../enterprise/operation/agentes/manage_transmap_creation.php:492 -#: ../../enterprise/operation/agentes/ver_agente.php:52 -#: ../../enterprise/operation/agentes/ver_agente.php:73 -#: ../../enterprise/operation/inventory/inventory.php:336 -#: ../../enterprise/include/functions_reporting_csv.php:718 -#: ../../enterprise/include/functions_reporting_csv.php:2559 -#: ../../enterprise/include/functions_reporting_csv.php:2738 -#: ../../enterprise/include/ajax/ipam.ajax.php:487 -#: ../../enterprise/include/class/MicrosoftSQLServer.app.php:471 -#: ../../enterprise/include/class/Aws.cloud.php:578 -#: ../../enterprise/include/class/Aws.cloud.php:1233 -#: ../../enterprise/include/class/Aws.S3.php:434 -#: ../../enterprise/include/class/MySQL.app.php:474 -#: ../../enterprise/include/class/Oracle.app.php:476 -#: ../../enterprise/include/class/DB2.app.php:469 -#: ../../enterprise/include/class/SAP.app.php:644 -#: ../../enterprise/include/class/Omnishell.class.php:399 -#: ../../enterprise/include/class/Omnishell.class.php:428 -#: ../../enterprise/include/class/Omnishell.class.php:678 -#: ../../enterprise/include/class/VMware.app.php:763 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:777 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:927 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2799 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2904 -#: ../../enterprise/include/class/Azure.cloud.php:835 -#: ../../enterprise/include/class/Google.cloud.php:785 -#: ../../enterprise/include/functions_tasklist.php:157 -#: ../../enterprise/include/lib/ClusterViewer/ClusterWizard.php:823 -#: ../../enterprise/include/functions_events.php:97 -#: ../../enterprise/meta/include/functions_events_meta.php:74 -#: ../../enterprise/meta/include/functions_wizard_meta.php:194 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1808 -#: ../../enterprise/meta/monitoring/custom_fields_view.php:146 -#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:276 -#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:373 -#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:438 -#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:706 -#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:785 -#: ../../enterprise/meta/advanced/cron_main.php:422 -#: ../../enterprise/meta/advanced/collections.php:366 -#: ../../enterprise/meta/agentsearch.php:138 -#: ../../enterprise/meta/agentsearch.php:329 -#: ../../enterprise/godmode/modules/configure_local_component.php:274 -#: ../../enterprise/godmode/modules/local_components.php:498 -#: ../../enterprise/godmode/modules/local_components.php:623 -#: ../../enterprise/godmode/services/services.service.php:569 -#: ../../enterprise/godmode/reporting/visual_console_template.php:218 -#: ../../enterprise/godmode/reporting/visual_console_template.php:271 -#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:329 -#: ../../enterprise/godmode/reporting/graph_template_editor.php:196 -#: ../../enterprise/godmode/reporting/graph_template_list.php:205 -#: ../../enterprise/godmode/reporting/reporting_builder.template_editor.php:194 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:318 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1395 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1997 -#: ../../enterprise/godmode/reporting/visual_console_builder.wizard_services.php:110 -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:500 -#: ../../enterprise/godmode/massive/massive_add_modules_policy.php:102 -#: ../../enterprise/godmode/massive/massive_create_services.php:658 -#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:669 -#: ../../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:381 -#: ../../enterprise/godmode/alerts/alert_inventory_list.php:139 -#: ../../enterprise/godmode/policies/policy_agents.php:798 -#: ../../enterprise/godmode/policies/policy_agents.php:855 -#: ../../enterprise/godmode/policies/policies.php:308 -#: ../../enterprise/godmode/policies/policies.php:408 -#: ../../enterprise/godmode/policies/configure_policy.php:103 -#: ../../extensions/agents_modules.php:404 ../../mobile/operation/modules.php:171 -#: ../../mobile/operation/modules.php:176 ../../mobile/operation/modules.php:266 -#: ../../mobile/operation/modules.php:267 -#: ../../mobile/operation/visualmaps.php:113 -#: ../../mobile/operation/visualmaps.php:118 -#: ../../mobile/operation/alerts.php:113 ../../mobile/operation/alerts.php:118 -#: ../../mobile/operation/alerts.php:231 ../../mobile/operation/alerts.php:232 -#: ../../mobile/operation/events.php:385 ../../mobile/operation/events.php:390 -#: ../../mobile/operation/events.php:544 ../../mobile/operation/events.php:663 -#: ../../mobile/operation/events.php:664 ../../mobile/operation/agents.php:95 -#: ../../mobile/operation/agents.php:157 ../../mobile/operation/agents.php:234 -#: ../../mobile/operation/agents.php:235 ../../mobile/operation/agents.php:405 -#: ../../godmode/setup/setup_integria.php:361 -#: ../../godmode/setup/setup_integria.php:483 -#: ../../godmode/setup/gis_step_2.php:216 ../../godmode/setup/news.php:186 -#: ../../godmode/setup/gis.php:69 -#: ../../godmode/modules/manage_network_components.php:618 -#: ../../godmode/modules/manage_network_components.php:752 -#: ../../godmode/modules/manage_network_templates_form.php:235 -#: ../../godmode/modules/manage_network_templates_form.php:303 -#: ../../godmode/modules/manage_network_templates_form.php:339 -#: ../../godmode/modules/manage_network_components_form_common.php:131 -#: ../../godmode/gis_maps/configure_gis_map.php:498 -#: ../../godmode/gis_maps/configure_gis_map.php:635 -#: ../../godmode/reporting/reporting_builder.main.php:101 -#: ../../godmode/reporting/map_builder.php:356 -#: ../../godmode/reporting/map_builder.php:385 -#: ../../godmode/reporting/graphs.php:231 ../../godmode/reporting/graphs.php:313 -#: ../../godmode/reporting/visual_console_builder.data.php:136 -#: ../../godmode/reporting/create_container.php:244 -#: ../../godmode/reporting/create_container.php:534 -#: ../../godmode/reporting/create_container.php:625 -#: ../../godmode/reporting/visual_console_favorite.php:161 -#: ../../godmode/reporting/visual_console_builder.elements.php:104 -#: ../../godmode/reporting/visual_console_builder.elements.php:313 -#: ../../godmode/reporting/reporting_builder.item_editor.php:72 -#: ../../godmode/reporting/reporting_builder.item_editor.php:198 -#: ../../godmode/reporting/reporting_builder.item_editor.php:824 -#: ../../godmode/reporting/reporting_builder.item_editor.php:1462 -#: ../../godmode/reporting/reporting_builder.item_editor.php:3300 -#: ../../godmode/reporting/reporting_builder.php:757 -#: ../../godmode/reporting/reporting_builder.php:948 -#: ../../godmode/reporting/graph_builder.main.php:143 -#: ../../godmode/snmpconsole/snmp_alert.php:802 -#: ../../godmode/events/event_edit_filter.php:299 -#: ../../godmode/events/event_responses.editor.php:105 -#: ../../godmode/events/custom_events.php:100 -#: ../../godmode/events/event_responses.list.php:52 -#: ../../godmode/events/event_filter.php:137 -#: ../../godmode/netflow/nf_edit.php:160 -#: ../../godmode/netflow/nf_edit_form.php:203 -#: ../../godmode/massive/massive_add_alerts.php:211 -#: ../../godmode/massive/massive_copy_modules.php:100 -#: ../../godmode/massive/massive_copy_modules.php:253 -#: ../../godmode/massive/massive_add_profiles.php:203 -#: ../../godmode/massive/massive_standby_alerts.php:185 -#: ../../godmode/massive/massive_add_action_alerts.php:197 -#: ../../godmode/massive/massive_edit_agents.php:508 -#: ../../godmode/massive/massive_edit_agents.php:685 -#: ../../godmode/massive/massive_delete_profiles.php:152 -#: ../../godmode/massive/massive_delete_action_alerts.php:209 -#: ../../godmode/massive/massive_delete_alerts.php:289 -#: ../../godmode/massive/massive_delete_agents.php:187 -#: ../../godmode/massive/massive_enable_disable_alerts.php:169 -#: ../../godmode/wizards/HostDevices.class.php:932 -#: ../../godmode/agentes/configurar_agente.php:495 -#: ../../godmode/agentes/planned_downtime.editor.php:562 -#: ../../godmode/agentes/planned_downtime.editor.php:921 -#: ../../godmode/agentes/planned_downtime.list.php:612 -#: ../../godmode/agentes/agent_incidents.php:92 -#: ../../godmode/agentes/pandora_networkmap_empty.editor.php:141 -#: ../../godmode/agentes/modificar_agente.php:289 -#: ../../godmode/agentes/modificar_agente.php:651 -#: ../../godmode/alerts/configure_alert_template.php:1074 -#: ../../godmode/alerts/alert_list.list.php:147 -#: ../../godmode/alerts/alert_actions.php:260 -#: ../../godmode/alerts/alert_actions.php:328 -#: ../../godmode/alerts/alert_templates.php:384 -#: ../../godmode/alerts/alert_commands.php:657 -#: ../../godmode/alerts/configure_alert_command.php:265 -#: ../../godmode/alerts/configure_alert_action.php:212 -#: ../../godmode/users/user_list.php:390 +#: ../../include/lib/Dashboard/Widgets/alerts_fired.php:226 +#: ../../include/functions_snmp_browser.php:1673 ../../include/functions_events.php:203 +#: ../../include/functions_events.php:256 ../../include/functions_events.php:4645 +#: ../../operation/heatmap.php:115 ../../operation/heatmap.php:117 +#: ../../operation/search_agents.php:46 ../../operation/search_agents.php:52 +#: ../../operation/users/user_edit.php:814 ../../operation/visual_console/view.php:351 +#: ../../operation/agentes/estado_agente.php:254 +#: ../../operation/agentes/estado_agente.php:754 +#: ../../operation/agentes/pandora_networkmap.editor.php:289 +#: ../../operation/agentes/pandora_networkmap.editor.php:337 +#: ../../operation/agentes/interface_view.functions.php:37 +#: ../../operation/agentes/exportdata.php:227 +#: ../../operation/agentes/status_monitor.php:450 +#: ../../operation/agentes/group_view.php:222 +#: ../../operation/agentes/pandora_networkmap.view.php:103 +#: ../../operation/agentes/pandora_networkmap.view.php:137 +#: ../../operation/agentes/ver_agente.php:1018 +#: ../../operation/agentes/estado_generalagente.php:403 +#: ../../operation/agentes/alerts_status.functions.php:91 +#: ../../operation/netflow/nf_live_view.php:380 ../../operation/gis_maps/gis_map.php:103 +#: ../../operation/gis_maps/ajax.php:332 ../../operation/gis_maps/ajax.php:438 +#: ../../operation/incidents/configure_integriaims_incident.php:266 +#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:324 +#: ../../operation/incidents/list_integriaims_incidents.php:331 +#: ../../operation/events/events.php:1577 ../../operation/search_maps.php:29 +#: ../../general/ui/agents_list.php:76 msgid "Group" msgstr "Grupo" -#: ../../views/calendar/edit.php:103 -#: ../../views/calendar/special_days_edit.php:138 -#: ../../views/calendar/list.php:95 ../../operation/search_reports.php:43 -#: ../../operation/search_reports.php:59 ../../operation/search_policies.php:36 -#: ../../operation/gis_maps/ajax.php:325 ../../operation/gis_maps/ajax.php:459 -#: ../../operation/search_users.php:48 -#: ../../operation/reporting/graph_viewer.php:525 -#: ../../operation/reporting/custom_reporting.php:35 -#: ../../operation/search_graphs.php:31 ../../operation/search_agents.php:43 -#: ../../operation/search_agents.php:49 -#: ../../operation/agentes/custom_fields.php:69 -#: ../../operation/agentes/estado_agente.php:742 -#: ../../operation/agentes/pandora_networkmap.editor.php:321 -#: ../../operation/agentes/estado_generalagente.php:239 -#: ../../operation/agentes/pandora_networkmap.view.php:109 -#: ../../operation/agentes/gis_view.php:222 -#: ../../operation/incidents/configure_integriaims_incident.php:342 -#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:117 -#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:248 -#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:261 -#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:392 -#: ../../include/ajax/module.php:979 ../../include/ajax/events_extended.php:91 -#: ../../include/ajax/heatmap.ajax.php:232 -#: ../../include/ajax/heatmap.ajax.php:271 -#: ../../include/ajax/heatmap.ajax.php:331 -#: ../../include/class/ModuleTemplates.class.php:893 -#: ../../include/class/ModuleTemplates.class.php:1062 -#: ../../include/class/ModuleTemplates.class.php:1210 -#: ../../include/class/ManageNetScanScripts.class.php:404 -#: ../../include/class/ManageNetScanScripts.class.php:558 -#: ../../include/class/ManageNetScanScripts.class.php:607 -#: ../../include/class/AgentWizard.class.php:1183 -#: ../../include/class/AgentWizard.class.php:4035 -#: ../../include/class/ConfigPEN.class.php:448 -#: ../../include/class/ConfigPEN.class.php:599 -#: ../../include/functions_events.php:3855 -#: ../../include/functions_treeview.php:127 -#: ../../include/functions_treeview.php:652 -#: ../../include/functions_container.php:147 -#: ../../include/functions_snmp_browser.php:570 -#: ../../include/functions_snmp_browser.php:1682 -#: ../../include/functions_reporting_html.php:155 -#: ../../include/functions_reporting_html.php:1533 -#: ../../include/functions_reporting_html.php:3390 -#: ../../include/functions_reporting_html.php:3441 -#: ../../include/functions_reporting_html.php:5204 -#: ../../include/functions_reporting_html.php:6151 -#: ../../enterprise/tools/ipam/ipam_excel.php:132 -#: ../../enterprise/tools/ipam/ipam_excel.php:201 -#: ../../enterprise/tools/ipam/ipam_vlan_config.php:345 -#: ../../enterprise/tools/ipam/ipam_vlan_config.php:681 -#: ../../enterprise/tools/ipam/ipam_supernet_network.php:84 -#: ../../enterprise/tools/ipam/ipam_vlan_network.php:40 -#: ../../enterprise/tools/ipam/ipam_vlan_wizard.php:411 -#: ../../enterprise/tools/ipam/ipam_supernet_config.php:619 -#: ../../enterprise/tools/ipam/ipam_supernet_config.php:1061 -#: ../../enterprise/tools/ipam/ipam_list.php:582 -#: ../../enterprise/tools/ipam/ipam_editor.php:177 -#: ../../enterprise/views/ncm/devices/list.php:115 -#: ../../enterprise/views/ipam/sites/edit.php:51 -#: ../../enterprise/views/ipam/sites/list.php:47 -#: ../../enterprise/views/cluster/view.php:286 +#: ../../views/calendar/list.php:95 ../../views/calendar/special_days_edit.php:138 +#: ../../views/calendar/edit.php:109 ../../enterprise/views/ncm/devices/list.php:115 #: ../../enterprise/views/cluster/list.php:59 -#: ../../enterprise/operation/services/services.service.php:119 -#: ../../enterprise/operation/services/services.list.php:500 -#: ../../enterprise/operation/agentes/tag_view.php:600 -#: ../../enterprise/operation/agentes/policy_view.php:68 -#: ../../enterprise/operation/agentes/collection_view.php:77 -#: ../../enterprise/operation/agentes/transactional_map.php:207 -#: ../../enterprise/operation/agentes/manage_transmap_creation.php:364 -#: ../../enterprise/operation/agentes/manage_transmap_creation.php:490 -#: ../../enterprise/operation/agentes/ver_agente.php:60 +#: ../../enterprise/views/cluster/view.php:286 +#: ../../enterprise/views/ipam/sites/list.php:47 +#: ../../enterprise/views/ipam/sites/edit.php:51 +#: ../../enterprise/meta/advanced/collections.php:389 +#: ../../enterprise/meta/include/functions_autoprovision.php:475 +#: ../../enterprise/meta/include/functions_wizard_meta.php:196 +#: ../../enterprise/meta/include/functions_wizard_meta.php:473 +#: ../../enterprise/meta/include/functions_wizard_meta.php:586 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1141 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1461 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1583 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1686 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1809 +#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:77 +#: ../../enterprise/meta/agentsearch.php:135 ../../enterprise/meta/agentsearch.php:328 +#: ../../enterprise/godmode/modules/configure_local_component.php:477 +#: ../../enterprise/godmode/modules/configure_local_component.php:636 +#: ../../enterprise/godmode/modules/manage_inventory_modules.php:273 +#: ../../enterprise/godmode/modules/manage_inventory_modules_form.php:101 +#: ../../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:221 +#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:386 +#: ../../enterprise/godmode/agentes/pandora_networkmap_empty.editor.php:162 +#: ../../enterprise/godmode/agentes/collections.php:382 +#: ../../enterprise/godmode/policies/configure_policy.php:119 +#: ../../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:76 +#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:386 +#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:297 +#: ../../enterprise/godmode/massive/massive_create_services.php:647 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:679 +#: ../../enterprise/godmode/alerts/alert_inventory_builder.php:166 +#: ../../enterprise/godmode/alerts/alert_inventory_list.php:222 +#: ../../enterprise/godmode/services/services.service.php:558 +#: ../../enterprise/godmode/services/services.elements.php:103 +#: ../../enterprise/godmode/setup/setup_skins.php:127 +#: ../../enterprise/godmode/setup/edit_skin.php:259 +#: ../../enterprise/godmode/reporting/reporting_builder.template_editor.php:205 +#: ../../enterprise/godmode/reporting/graph_template_list.php:204 +#: ../../enterprise/godmode/reporting/graph_template_editor.php:199 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:448 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:498 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1694 +#: ../../enterprise/mobile/include/enterprise.class.php:87 #: ../../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:1817 #: ../../enterprise/include/functions_reporting_csv.php:482 #: ../../enterprise/include/functions_reporting_csv.php:485 #: ../../enterprise/include/functions_reporting_csv.php:705 @@ -691,178 +659,211 @@ msgstr "Grupo" #: ../../enterprise/include/functions_reporting_csv.php:2723 #: ../../enterprise/include/functions_reporting_csv.php:2795 #: ../../enterprise/include/functions_reporting_csv.php:2797 -#: ../../enterprise/include/ajax/ipam.ajax.php:371 -#: ../../enterprise/include/ajax/ipam.ajax.php:615 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:796 #: ../../enterprise/include/class/ManageBackups.class.php:162 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:797 -#: ../../enterprise/include/lib/ClusterViewer/ClusterWizard.php:812 #: ../../enterprise/include/functions_services.php:1604 +#: ../../enterprise/include/lib/ClusterViewer/ClusterWizard.php:812 #: ../../enterprise/include/functions_ipam.php:1374 #: ../../enterprise/include/functions_ipam.php:1982 -#: ../../enterprise/include/functions_reporting_pdf.php:1817 -#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:77 -#: ../../enterprise/meta/include/functions_autoprovision.php:475 -#: ../../enterprise/meta/include/functions_wizard_meta.php:199 -#: ../../enterprise/meta/include/functions_wizard_meta.php:476 -#: ../../enterprise/meta/include/functions_wizard_meta.php:589 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1144 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1464 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1586 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1689 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1812 -#: ../../enterprise/meta/advanced/collections.php:389 -#: ../../enterprise/meta/agentsearch.php:135 -#: ../../enterprise/meta/agentsearch.php:328 -#: ../../enterprise/mobile/include/enterprise.class.php:88 -#: ../../enterprise/godmode/setup/edit_skin.php:259 -#: ../../enterprise/godmode/setup/setup_skins.php:127 -#: ../../enterprise/godmode/modules/configure_local_component.php:477 -#: ../../enterprise/godmode/modules/configure_local_component.php:636 -#: ../../enterprise/godmode/modules/manage_inventory_modules.php:273 -#: ../../enterprise/godmode/modules/manage_inventory_modules_form.php:101 -#: ../../enterprise/godmode/services/services.elements.php:103 -#: ../../enterprise/godmode/services/services.service.php:558 -#: ../../enterprise/godmode/reporting/graph_template_editor.php:199 -#: ../../enterprise/godmode/reporting/graph_template_list.php:204 -#: ../../enterprise/godmode/reporting/reporting_builder.template_editor.php:205 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1691 -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:498 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:447 -#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor_form.php:76 -#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:386 -#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:679 -#: ../../enterprise/godmode/massive/massive_create_services.php:647 -#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:297 -#: ../../enterprise/godmode/agentes/inventory_manager.php:221 -#: ../../enterprise/godmode/agentes/agent_autoconfiguration.php:137 -#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:312 -#: ../../enterprise/godmode/agentes/collection_manager.php:111 -#: ../../enterprise/godmode/agentes/collection_manager.php:208 -#: ../../enterprise/godmode/agentes/pandora_networkmap_empty.editor.php:162 -#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:386 -#: ../../enterprise/godmode/agentes/collections.php:382 -#: ../../enterprise/godmode/alerts/alert_inventory_list.php:222 -#: ../../enterprise/godmode/alerts/alert_inventory_builder.php:166 -#: ../../enterprise/godmode/policies/configure_policy.php:119 -#: ../../enterprise/godmode/policies/policy_inventory_modules.php:303 -#: ../../enterprise/godmode/policies/policy_collections.php:171 -#: ../../enterprise/godmode/policies/policy_collections.php:265 +#: ../../enterprise/operation/agentes/policy_view.php:68 +#: ../../enterprise/operation/agentes/transactional_map.php:207 +#: ../../enterprise/operation/agentes/tag_view.php:600 +#: ../../enterprise/operation/agentes/ver_agente.php:60 +#: ../../enterprise/operation/agentes/collection_view.php:77 +#: ../../enterprise/operation/agentes/manage_transmap_creation.php:364 +#: ../../enterprise/operation/agentes/manage_transmap_creation.php:490 +#: ../../enterprise/operation/services/services.service.php:119 +#: ../../enterprise/operation/services/services.list.php:500 +#: ../../enterprise/tools/ipam/ipam_supernet_config.php:619 +#: ../../enterprise/tools/ipam/ipam_supernet_config.php:1061 +#: ../../enterprise/tools/ipam/ipam_list.php:582 +#: ../../enterprise/tools/ipam/ipam_vlan_wizard.php:411 +#: ../../enterprise/tools/ipam/ipam_vlan_network.php:40 +#: ../../enterprise/tools/ipam/ipam_excel.php:132 +#: ../../enterprise/tools/ipam/ipam_excel.php:201 +#: ../../enterprise/tools/ipam/ipam_vlan_config.php:345 +#: ../../enterprise/tools/ipam/ipam_vlan_config.php:681 +#: ../../enterprise/tools/ipam/ipam_supernet_network.php:84 +#: ../../enterprise/tools/ipam/ipam_editor.php:177 #: ../../extensions/files_repo/files_repo_form.php:83 #: ../../extensions/files_repo/files_repo_list.php:56 -#: ../../mobile/operation/tactical.php:352 ../../godmode/setup/snmp_wizard.php:41 -#: ../../godmode/setup/os.list.php:70 ../../godmode/setup/os.builder.php:37 -#: ../../godmode/servers/plugin.php:358 ../../godmode/servers/plugin.php:485 -#: ../../godmode/servers/modificar_server.php:66 -#: ../../godmode/modules/module_list.php:63 -#: ../../godmode/modules/manage_network_components.php:751 -#: ../../godmode/modules/manage_network_templates.php:247 #: ../../godmode/modules/manage_network_templates_form.php:172 #: ../../godmode/modules/manage_network_templates_form.php:234 -#: ../../godmode/modules/manage_network_components_form_wizard.php:451 #: ../../godmode/modules/manage_network_components_form_common.php:335 -#: ../../godmode/reporting/reporting_builder.main.php:215 -#: ../../godmode/reporting/graphs.php:311 -#: ../../godmode/reporting/create_container.php:266 -#: ../../godmode/reporting/reporting_builder.item_editor.php:74 -#: ../../godmode/reporting/reporting_builder.item_editor.php:1086 -#: ../../godmode/reporting/reporting_builder.php:911 -#: ../../godmode/reporting/graph_builder.main.php:180 +#: ../../godmode/modules/manage_network_components.php:751 +#: ../../godmode/modules/manage_network_components_form_wizard.php:451 +#: ../../godmode/modules/module_list.php:63 +#: ../../godmode/modules/manage_network_templates.php:247 +#: ../../godmode/groups/configure_group.php:242 ../../godmode/groups/group_list.php:850 +#: ../../godmode/users/user_list.php:485 ../../godmode/agentes/agent_template.php:237 +#: ../../godmode/agentes/modificar_agente.php:652 +#: ../../godmode/agentes/planned_downtime.list.php:611 +#: ../../godmode/agentes/planned_downtime.editor.php:578 +#: ../../godmode/agentes/pandora_networkmap_empty.editor.php:164 +#: ../../godmode/agentes/agent_manager.php:470 +#: ../../godmode/agentes/module_manager_editor_common.php:1081 +#: ../../godmode/agentes/module_manager.php:862 +#: ../../godmode/netflow/nf_item_list.php:175 #: ../../godmode/snmpconsole/snmp_alert.php:766 #: ../../godmode/snmpconsole/snmp_alert.php:1269 #: ../../godmode/snmpconsole/snmp_filters.php:201 #: ../../godmode/snmpconsole/snmp_filters.php:289 -#: ../../godmode/tag/edit_tag.php:219 ../../godmode/tag/tag.php:228 -#: ../../godmode/tag/tag.php:278 +#: ../../godmode/massive/massive_edit_plugins.php:494 +#: ../../godmode/massive/massive_edit_agents.php:760 +#: ../../godmode/massive/massive_edit_modules.php:743 +#: ../../godmode/alerts/configure_alert_command.php:283 +#: ../../godmode/alerts/alert_commands.php:658 +#: ../../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 +#: ../../godmode/setup/snmp_wizard.php:41 +#: ../../godmode/reporting/create_container.php:266 +#: ../../godmode/reporting/graphs.php:311 +#: ../../godmode/reporting/reporting_builder.item_editor.php:74 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1136 +#: ../../godmode/reporting/reporting_builder.main.php:215 +#: ../../godmode/reporting/reporting_builder.php:909 +#: ../../godmode/reporting/graph_builder.main.php:180 #: ../../godmode/events/event_responses.editor.php:111 #: ../../godmode/events/event_responses.list.php:51 -#: ../../godmode/netflow/nf_item_list.php:175 -#: ../../godmode/massive/massive_edit_agents.php:760 -#: ../../godmode/massive/massive_edit_plugins.php:494 -#: ../../godmode/massive/massive_edit_modules.php:743 -#: ../../godmode/agentes/module_manager.php:862 -#: ../../godmode/agentes/module_manager_editor_common.php:1081 -#: ../../godmode/agentes/agent_manager.php:470 -#: ../../godmode/agentes/planned_downtime.editor.php:578 -#: ../../godmode/agentes/planned_downtime.list.php:611 -#: ../../godmode/agentes/agent_template.php:237 -#: ../../godmode/agentes/pandora_networkmap_empty.editor.php:164 -#: ../../godmode/agentes/modificar_agente.php:652 -#: ../../godmode/alerts/configure_alert_template.php:1106 -#: ../../godmode/alerts/alert_templates.php:46 -#: ../../godmode/alerts/alert_commands.php:658 -#: ../../godmode/alerts/configure_alert_command.php:283 -#: ../../godmode/users/user_list.php:485 -#: ../../godmode/groups/configure_group.php:242 -#: ../../godmode/groups/group_list.php:850 +#: ../../godmode/servers/modificar_server.php:66 ../../godmode/servers/plugin.php:358 +#: ../../godmode/servers/plugin.php:485 ../../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:1569 +#: ../../include/functions_reporting_html.php:3435 +#: ../../include/functions_reporting_html.php:3486 +#: ../../include/functions_reporting_html.php:5250 +#: ../../include/functions_reporting_html.php:6171 +#: ../../include/ajax/events_extended.php:91 ../../include/ajax/heatmap.ajax.php:232 +#: ../../include/ajax/heatmap.ajax.php:271 ../../include/ajax/heatmap.ajax.php:331 +#: ../../include/ajax/module.php:979 ../../include/functions_treeview.php:127 +#: ../../include/functions_treeview.php:652 ../../include/class/ConfigPEN.class.php:448 +#: ../../include/class/ConfigPEN.class.php:599 +#: ../../include/class/ManageNetScanScripts.class.php:404 +#: ../../include/class/ManageNetScanScripts.class.php:558 +#: ../../include/class/ManageNetScanScripts.class.php:607 +#: ../../include/class/ModuleTemplates.class.php:893 +#: ../../include/class/ModuleTemplates.class.php:1062 +#: ../../include/class/ModuleTemplates.class.php:1210 +#: ../../include/class/AgentWizard.class.php:1198 +#: ../../include/class/AgentWizard.class.php:4061 +#: ../../include/functions_container.php:147 +#: ../../include/functions_snmp_browser.php:570 +#: ../../include/functions_snmp_browser.php:1690 ../../include/functions_events.php:3440 +#: ../../operation/search_users.php:48 ../../operation/search_agents.php:43 +#: ../../operation/search_agents.php:49 ../../operation/agentes/gis_view.php:222 +#: ../../operation/agentes/estado_agente.php:742 +#: ../../operation/agentes/pandora_networkmap.editor.php:321 +#: ../../operation/agentes/custom_fields.php:69 +#: ../../operation/agentes/pandora_networkmap.view.php:109 +#: ../../operation/agentes/estado_generalagente.php:237 +#: ../../operation/gis_maps/ajax.php:325 ../../operation/gis_maps/ajax.php:459 +#: ../../operation/incidents/configure_integriaims_incident.php:342 +#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:117 +#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:248 +#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:261 +#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:392 +#: ../../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/search_policies.php:36 msgid "Description" msgstr "DescripciĆ³n" -#: ../../views/calendar/edit.php:120 ../../views/calendar/special_days.php:323 -#: ../../views/calendar/special_days.php:406 -#: ../../views/calendar/special_days.php:481 -#: ../../views/calendar/special_days.php:505 -#: ../../views/calendar/special_days_edit.php:163 -#: ../../views/calendar/special_days_edit.php:206 -#: ../../views/calendar/list.php:144 ../../operation/gis_maps/gis_map.php:207 -#: ../../operation/incidents/configure_integriaims_incident.php:380 -#: ../../operation/incidents/list_integriaims_incidents.php:573 -#: ../../include/functions_visual_map_editor.php:884 -#: ../../include/class/ModuleTemplates.class.php:960 -#: ../../include/class/ModuleTemplates.class.php:1007 -#: ../../include/class/ManageNetScanScripts.class.php:763 -#: ../../include/functions_filemanager.php:813 -#: ../../include/functions_filemanager.php:874 -#: ../../enterprise/tools/ipam/ipam_network_location_config.php:148 -#: ../../enterprise/tools/ipam/ipam_network_location_config.php:315 -#: ../../enterprise/tools/ipam/ipam_vlan_wizard.php:454 -#: ../../enterprise/tools/ipam/ipam_list.php:746 -#: ../../enterprise/tools/ipam/ipam_editor.php:361 -#: ../../enterprise/views/ncm/snippets/edit.php:106 +#: ../../views/calendar/list.php:96 ../../views/dashboard/header.php:80 +#: ../../enterprise/views/ncm/snippets/list.php:71 +#: ../../enterprise/views/ncm/agent/details.php:92 +#: ../../enterprise/views/ncm/templates/list.php:77 +#: ../../enterprise/views/ncm/firmwares/list.php:77 +#: ../../enterprise/views/ncm/models/list.php:73 +#: ../../enterprise/views/ncm/vendors/list.php:71 +#: ../../enterprise/views/cluster/list.php:64 +#: ../../enterprise/views/ipam/sites/list.php:49 +#: ../../enterprise/meta/monitoring/wizard/wizard.create_module.php:266 +#: ../../enterprise/extensions/vmware/vmware_view.php:1338 +#: ../../enterprise/godmode/reporting/reporting_builder.template_list_item.php:261 +#: ../../enterprise/include/class/DeploymentCenter.class.php:764 +#: ../../enterprise/include/class/AgentRepository.class.php:645 +#: ../../enterprise/include/class/Omnishell.class.php:402 +#: ../../enterprise/include/class/LogSource.class.php:630 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2341 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2950 +#: ../../godmode/menu.php:541 +#: ../../godmode/reporting/reporting_builder.list_items.php:427 +#: ../../include/ajax/events.php:2251 ../../include/class/ConfigPEN.class.php:601 +#: ../../include/class/CredentialStore.class.php:807 +#: ../../include/class/ExternalTools.class.php:383 +#: ../../include/functions_events.php:310 +msgid "Options" +msgstr "Opciones" + +#: ../../views/calendar/list.php:119 ../../enterprise/views/ncm/snippets/list.php:102 +#: ../../enterprise/views/ncm/templates/list.php:108 +#: ../../enterprise/views/ncm/devices/list.php:155 +#: ../../enterprise/views/ncm/firmwares/list.php:108 +#: ../../enterprise/views/ncm/models/list.php:96 +#: ../../enterprise/views/ncm/vendors/list.php:94 +#: ../../enterprise/views/cluster/list.php:96 +#: ../../enterprise/views/ipam/sites/list.php:73 +#: ../../enterprise/meta/advanced/metasetup.consoles.php:872 +#: ../../enterprise/godmode/massive/massive_delete_alerts_snmp.php:197 +#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:257 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:755 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3255 +#: ../../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 +#: ../../godmode/update_manager/update_manager.history.php:67 +#: ../../godmode/snmpconsole/snmp_alert.php:1161 +#: ../../godmode/events/event_edit_filter.php:366 ../../mobile/operation/agents.php:253 +#: ../../mobile/operation/modules.php:318 ../../mobile/operation/alerts.php:241 +#: ../../mobile/operation/events.php:992 ../../include/ajax/module.php:292 +#: ../../include/class/ConfigPEN.class.php:627 +#: ../../include/class/CredentialStore.class.php:845 +#: ../../operation/snmpconsole/snmp_view.php:600 ../../operation/events/events.php:1644 +msgid "Free search" +msgstr "BĆŗsqueda libre" + +#: ../../views/calendar/list.php:144 ../../views/calendar/special_days_edit.php:163 +#: ../../views/calendar/special_days_edit.php:206 ../../views/calendar/edit.php:126 +#: ../../views/calendar/special_days.php:323 ../../views/calendar/special_days.php:406 +#: ../../views/calendar/special_days.php:481 ../../views/calendar/special_days.php:505 #: ../../enterprise/views/ncm/snippets/list.php:127 -#: ../../enterprise/views/ncm/firmwares/edit.php:169 -#: ../../enterprise/views/ncm/firmwares/list.php:133 -#: ../../enterprise/views/ncm/vendors/edit.php:104 -#: ../../enterprise/views/ncm/vendors/list.php:119 -#: ../../enterprise/views/ncm/templates/edit.php:315 +#: ../../enterprise/views/ncm/snippets/edit.php:106 #: ../../enterprise/views/ncm/templates/list.php:133 -#: ../../enterprise/views/ncm/models/edit.php:103 +#: ../../enterprise/views/ncm/templates/edit.php:315 +#: ../../enterprise/views/ncm/firmwares/list.php:133 +#: ../../enterprise/views/ncm/firmwares/edit.php:169 #: ../../enterprise/views/ncm/models/list.php:121 -#: ../../enterprise/views/ipam/sites/edit.php:80 +#: ../../enterprise/views/ncm/models/edit.php:103 +#: ../../enterprise/views/ncm/vendors/list.php:119 +#: ../../enterprise/views/ncm/vendors/edit.php:104 #: ../../enterprise/views/ipam/sites/list.php:98 -#: ../../enterprise/operation/agentes/manage_transmap_creation.php:405 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3097 -#: ../../enterprise/meta/include/functions_autoprovision.php:588 -#: ../../enterprise/meta/include/functions_autoprovision.php:789 -#: ../../enterprise/meta/monitoring/wizard/wizard.create_module.php:300 -#: ../../enterprise/meta/monitoring/wizard/wizard.manage_alert.php:105 -#: ../../enterprise/meta/advanced/collections.editor.php:136 -#: ../../enterprise/meta/advanced/cron_main.php:471 +#: ../../enterprise/views/ipam/sites/edit.php:80 +#: ../../enterprise/meta/advanced/links.php:137 #: ../../enterprise/meta/advanced/collections.data.php:42 #: ../../enterprise/meta/advanced/collections.data.php:71 #: ../../enterprise/meta/advanced/collections.data.php:93 #: ../../enterprise/meta/advanced/collections.data.php:113 #: ../../enterprise/meta/advanced/collections.data.php:138 #: ../../enterprise/meta/advanced/collections.data.php:184 +#: ../../enterprise/meta/advanced/collections.editor.php:136 +#: ../../enterprise/meta/advanced/cron_main.php:471 #: ../../enterprise/meta/advanced/collections.php:498 #: ../../enterprise/meta/advanced/collections.php:509 -#: ../../enterprise/meta/advanced/links.php:137 -#: ../../enterprise/godmode/setup/edit_skin.php:299 -#: ../../enterprise/godmode/servers/manage_export.php:130 -#: ../../enterprise/godmode/servers/manage_export.php:169 +#: ../../enterprise/meta/monitoring/wizard/wizard.manage_alert.php:105 +#: ../../enterprise/meta/monitoring/wizard/wizard.create_module.php:300 +#: ../../enterprise/meta/include/functions_autoprovision.php:588 +#: ../../enterprise/meta/include/functions_autoprovision.php:789 #: ../../enterprise/godmode/modules/configure_local_component.php:680 -#: ../../enterprise/godmode/modules/local_components.php:716 #: ../../enterprise/godmode/modules/manage_inventory_modules.php:343 +#: ../../enterprise/godmode/modules/local_components.php:716 #: ../../enterprise/godmode/modules/manage_inventory_modules_form.php:145 -#: ../../enterprise/godmode/services/services.service.php:940 -#: ../../enterprise/godmode/reporting/aws_view.php:194 -#: ../../enterprise/godmode/reporting/graph_template_editor.php:269 -#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor_form.php:24 -#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor_form.php:87 -#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:428 -#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:599 -#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:636 -#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:685 -#: ../../enterprise/godmode/agentes/collections.editor.php:169 +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:791 +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:840 #: ../../enterprise/godmode/agentes/collections.agents.php:38 #: ../../enterprise/godmode/agentes/collections.data.php:68 #: ../../enterprise/godmode/agentes/collections.data.php:169 @@ -870,238 +871,521 @@ msgstr "DescripciĆ³n" #: ../../enterprise/godmode/agentes/collections.data.php:213 #: ../../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:466 -#: ../../enterprise/godmode/alerts/alert_inventory_list.php:433 +#: ../../enterprise/godmode/policies/configure_policy.php:139 #: ../../enterprise/godmode/policies/policy_modules.php:432 #: ../../enterprise/godmode/policies/policies.php:645 -#: ../../enterprise/godmode/policies/configure_policy.php:139 -#: ../../godmode/setup/os.php:95 ../../godmode/setup/os.php:177 -#: ../../godmode/setup/news.php:231 ../../godmode/setup/gis.php:97 -#: ../../godmode/setup/links.php:127 ../../godmode/servers/plugin.php:596 +#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor_form.php:24 +#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor_form.php:87 +#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:428 +#: ../../enterprise/godmode/alerts/alert_inventory_list.php:433 +#: ../../enterprise/godmode/services/services.service.php:940 +#: ../../enterprise/godmode/setup/edit_skin.php:299 +#: ../../enterprise/godmode/reporting/aws_view.php:194 +#: ../../enterprise/godmode/reporting/graph_template_editor.php:269 +#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:599 +#: ../../enterprise/godmode/servers/manage_export.php:130 +#: ../../enterprise/godmode/servers/manage_export.php:169 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3139 +#: ../../enterprise/operation/agentes/manage_transmap_creation.php:405 +#: ../../enterprise/tools/ipam/ipam_list.php:746 +#: ../../enterprise/tools/ipam/ipam_vlan_wizard.php:454 +#: ../../enterprise/tools/ipam/ipam_network_location_config.php:148 +#: ../../enterprise/tools/ipam/ipam_network_location_config.php:315 +#: ../../enterprise/tools/ipam/ipam_editor.php:361 +#: ../../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_network_components_form.php:376 #: ../../godmode/modules/manage_network_components.php:934 #: ../../godmode/modules/manage_network_templates.php:309 -#: ../../godmode/modules/manage_network_templates_form.php:180 -#: ../../godmode/modules/manage_nc_groups.php:318 -#: ../../godmode/modules/manage_nc_groups_form.php:93 -#: ../../godmode/category/edit_category.php:205 -#: ../../godmode/reporting/map_builder.php:559 -#: ../../godmode/reporting/create_container.php:333 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2170 -#: ../../godmode/reporting/graph_builder.main.php:294 +#: ../../godmode/groups/configure_group.php:279 +#: ../../godmode/groups/configure_modu_group.php:86 +#: ../../godmode/users/profile_list.php:463 ../../godmode/users/configure_user.php:1447 +#: ../../godmode/agentes/module_manager_editor.php:788 +#: ../../godmode/agentes/planned_downtime.list.php:582 +#: ../../godmode/agentes/planned_downtime.list.php:873 +#: ../../godmode/agentes/agent_manager.php:972 +#: ../../godmode/agentes/configure_field.php:141 +#: ../../godmode/agentes/module_manager.php:229 +#: ../../godmode/netflow/nf_edit_form.php:272 #: ../../godmode/snmpconsole/snmp_alert.php:1142 #: ../../godmode/snmpconsole/snmp_alert.php:1514 #: ../../godmode/snmpconsole/snmp_filters.php:263 #: ../../godmode/snmpconsole/snmp_filters.php:336 -#: ../../godmode/tag/edit_tag.php:281 -#: ../../godmode/events/event_edit_filter.php:676 -#: ../../godmode/events/event_responses.editor.php:219 -#: ../../godmode/netflow/nf_edit_form.php:272 -#: ../../godmode/agentes/module_manager.php:229 -#: ../../godmode/agentes/configure_field.php:141 -#: ../../godmode/agentes/agent_manager.php:972 -#: ../../godmode/agentes/module_manager_editor.php:788 -#: ../../godmode/agentes/planned_downtime.list.php:582 -#: ../../godmode/agentes/planned_downtime.list.php:873 -#: ../../godmode/alerts/alert_list.list.php:961 -#: ../../godmode/alerts/alert_actions.php:471 -#: ../../godmode/alerts/alert_templates.php:481 -#: ../../godmode/alerts/alert_commands.php:748 -#: ../../godmode/alerts/alert_list.php:496 #: ../../godmode/alerts/configure_alert_command.php:387 +#: ../../godmode/alerts/alert_actions.php:471 +#: ../../godmode/alerts/alert_list.list.php:976 +#: ../../godmode/alerts/alert_commands.php:748 +#: ../../godmode/alerts/alert_templates.php:482 #: ../../godmode/alerts/configure_alert_action.php:402 -#: ../../godmode/users/configure_user.php:1475 -#: ../../godmode/users/profile_list.php:463 -#: ../../godmode/groups/configure_group.php:279 -#: ../../godmode/groups/configure_modu_group.php:86 +#: ../../godmode/alerts/alert_list.php:496 ../../godmode/setup/news.php:231 +#: ../../godmode/setup/gis.php:97 ../../godmode/setup/os.php:95 +#: ../../godmode/setup/os.php:177 ../../godmode/setup/links.php:127 +#: ../../godmode/reporting/create_container.php:333 +#: ../../godmode/reporting/map_builder.php:559 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2266 +#: ../../godmode/reporting/graph_builder.main.php:294 +#: ../../godmode/events/event_responses.editor.php:219 +#: ../../godmode/events/event_edit_filter.php:681 ../../godmode/servers/plugin.php:596 +#: ../../godmode/tag/edit_tag.php:281 ../../godmode/category/edit_category.php:205 +#: ../../include/functions_visual_map_editor.php:884 +#: ../../include/class/ManageNetScanScripts.class.php:763 +#: ../../include/class/ModuleTemplates.class.php:960 +#: ../../include/class/ModuleTemplates.class.php:1007 +#: ../../include/functions_filemanager.php:813 +#: ../../include/functions_filemanager.php:874 ../../operation/gis_maps/gis_map.php:207 +#: ../../operation/incidents/configure_integriaims_incident.php:380 +#: ../../operation/incidents/list_integriaims_incidents.php:573 msgid "Create" msgstr "Crear" -#: ../../views/calendar/edit.php:120 -#: ../../views/calendar/special_days_edit.php:163 -#: ../../operation/reporting/reporting_viewer.php:311 -#: ../../operation/network/network_report.php:132 -#: ../../operation/snmpconsole/snmp_view.php:660 -#: ../../operation/events/events_list.php:1073 -#: ../../operation/agentes/datos_agente.php:218 -#: ../../operation/users/user_edit.php:777 -#: ../../operation/incidents/configure_integriaims_incident.php:378 -#: ../../include/functions_visual_map_editor.php:880 -#: ../../include/ajax/alert_list.ajax.php:551 -#: ../../include/class/ModuleTemplates.class.php:1012 -#: ../../include/class/ManageNetScanScripts.class.php:765 -#: ../../include/class/ExternalTools.class.php:392 -#: ../../include/class/ConfigPEN.class.php:697 -#: ../../include/class/ConfigPEN.class.php:698 -#: ../../include/class/CredentialStore.class.php:1246 -#: ../../include/class/NetworkMap.class.php:3069 -#: ../../include/functions_events.php:3646 -#: ../../include/functions_events.php:3726 -#: ../../enterprise/tools/ipam/ipam_network_location_config.php:145 -#: ../../enterprise/tools/ipam/ipam_massive.php:112 -#: ../../enterprise/tools/ipam/ipam_network.php:695 -#: ../../enterprise/tools/ipam/ipam_editor.php:359 +#: ../../views/calendar/special_days_edit.php:40 +#: ../../enterprise/meta/monitoring/wizard/wizard.module.local.php:109 +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:794 +#: ../../enterprise/meta/monitoring/wizard/wizard.module.network.php:121 +#: ../../enterprise/meta/monitoring/wizard/wizard.module.web.php:102 +#: ../../enterprise/meta/monitoring/wizard/wizard.php:291 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1534 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1627 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1752 +#: ../../enterprise/meta/agentsearch.php:141 +#: ../../enterprise/godmode/policies/policy_alerts.php:46 +#: ../../enterprise/godmode/policies/policies.php:519 +#: ../../enterprise/godmode/massive/massive_create_services.php:877 +#: ../../enterprise/godmode/alerts/alert_inventory.php:78 +#: ../../enterprise/godmode/alerts/alert_inventory.php:80 +#: ../../enterprise/godmode/services/services.service.php:931 +#: ../../enterprise/include/functions_policies.php:3763 +#: ../../enterprise/operation/agentes/tag_view.php:608 +#: ../../godmode/groups/configure_group.php:230 ../../godmode/groups/group_list.php:846 +#: ../../godmode/agentes/configurar_agente.php:422 +#: ../../godmode/agentes/modificar_agente.php:823 +#: ../../godmode/snmpconsole/snmp_alert.php:114 ../../godmode/menu.php:251 +#: ../../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:494 +#: ../../godmode/alerts/alert_templates.php:131 +#: ../../godmode/alerts/alert_templates.php:183 +#: ../../godmode/alerts/alert_templates.php:206 +#: ../../godmode/alerts/alert_templates.php:227 +#: ../../godmode/alerts/configure_alert_action.php:74 +#: ../../godmode/alerts/configure_alert_action.php:87 +#: ../../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:494 ../../godmode/alerts/alert_list.php:496 +#: ../../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:2378 +#: ../../include/functions_reporting_html.php:5430 +#: ../../include/functions_treeview.php:405 ../../include/functions_reports.php:843 +#: ../../include/functions_reports.php:847 ../../include/functions_reports.php:853 +#: ../../include/functions_reports.php:859 +#: ../../include/class/AgentsAlerts.class.php:542 ../../operation/search_agents.php:57 +#: ../../operation/search_results.php:106 ../../operation/agentes/estado_agente.php:766 +#: ../../operation/agentes/ver_agente.php:1427 +msgid "Alerts" +msgstr "Alertas" + +#: ../../views/calendar/special_days_edit.php:40 +msgid "Configure special day" +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:712 +#: ../../enterprise/include/functions_reporting_csv.php:776 +#: ../../enterprise/include/functions_reporting_csv.php:832 +#: ../../enterprise/include/functions_reporting_csv.php:877 +#: ../../enterprise/include/functions_reporting_csv.php:2518 +#: ../../enterprise/include/class/ManageBackups.class.php:163 +#: ../../enterprise/include/functions_reporting.php:2144 +#: ../../enterprise/include/functions_reporting.php:2181 +#: ../../enterprise/include/functions_reporting.php:2216 +#: ../../enterprise/include/functions_reporting.php:2234 +#: ../../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:2153 +#: ../../mobile/operation/tactical.php:350 +#: ../../include/functions_reporting_html.php:1814 +#: ../../include/functions_reporting_html.php:2628 +#: ../../include/functions_reporting_html.php:2637 +#: ../../include/functions_reporting_html.php:2642 +#: ../../include/functions_reporting_html.php:2651 +#: ../../include/functions_reporting_html.php:2656 +#: ../../include/functions_reporting_html.php:2663 +#: ../../include/functions_reporting_html.php:2712 +#: ../../include/functions_reporting_html.php:2785 +#: ../../include/functions_reporting_html.php:5772 ../../include/functions.php:3053 +#: ../../include/class/AuditLog.class.php:110 ../../include/functions_reporting.php:4193 +#: ../../include/functions_reporting.php:4234 +#: ../../operation/incidents/list_integriaims_incidents.php:371 +#: ../../operation/reporting/graph_viewer.php:348 ../../general/logon_ok.php:242 +msgid "Date" +msgstr "Fecha" + +#: ../../views/calendar/special_days_edit.php:116 +#: ../../views/calendar/special_days.php:92 ../../views/calendar/special_days.php:358 +#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:95 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1851 +#: ../../enterprise/include/functions_reporting.php:1732 +#: ../../enterprise/include/functions_reporting.php:2463 +#: ../../enterprise/include/functions_reporting.php:2781 +#: ../../enterprise/include/functions_reporting.php:3406 +#: ../../enterprise/include/functions_reporting.php:4382 +#: ../../godmode/alerts/alert_templates.php:64 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1447 +#: ../../include/functions_html.php:2270 +msgid "Monday" +msgstr "Lunes" + +#: ../../views/calendar/special_days_edit.php:117 +#: ../../views/calendar/special_days.php:93 ../../views/calendar/special_days.php:362 +#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:96 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1859 +#: ../../enterprise/include/functions_reporting.php:1733 +#: ../../enterprise/include/functions_reporting.php:2464 +#: ../../enterprise/include/functions_reporting.php:2782 +#: ../../enterprise/include/functions_reporting.php:3407 +#: ../../enterprise/include/functions_reporting.php:4383 +#: ../../godmode/alerts/alert_templates.php:65 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1455 +#: ../../include/functions_html.php:2271 +msgid "Tuesday" +msgstr "Martes" + +#: ../../views/calendar/special_days_edit.php:118 +#: ../../views/calendar/special_days.php:94 ../../views/calendar/special_days.php:366 +#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:97 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1867 +#: ../../enterprise/include/functions_reporting.php:1734 +#: ../../enterprise/include/functions_reporting.php:2465 +#: ../../enterprise/include/functions_reporting.php:2783 +#: ../../enterprise/include/functions_reporting.php:3408 +#: ../../enterprise/include/functions_reporting.php:4384 +#: ../../godmode/alerts/alert_templates.php:66 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1463 +#: ../../include/functions_html.php:2272 +msgid "Wednesday" +msgstr "MiĆ©rcoles" + +#: ../../views/calendar/special_days_edit.php:119 +#: ../../views/calendar/special_days.php:95 ../../views/calendar/special_days.php:370 +#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:98 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1875 +#: ../../enterprise/include/functions_reporting.php:1735 +#: ../../enterprise/include/functions_reporting.php:2466 +#: ../../enterprise/include/functions_reporting.php:2784 +#: ../../enterprise/include/functions_reporting.php:3409 +#: ../../enterprise/include/functions_reporting.php:4385 +#: ../../godmode/alerts/alert_templates.php:67 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1471 +#: ../../include/functions_html.php:2273 +msgid "Thursday" +msgstr "Jueves" + +#: ../../views/calendar/special_days_edit.php:120 +#: ../../views/calendar/special_days.php:96 ../../views/calendar/special_days.php:374 +#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:99 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1883 +#: ../../enterprise/include/functions_reporting.php:1736 +#: ../../enterprise/include/functions_reporting.php:2467 +#: ../../enterprise/include/functions_reporting.php:2785 +#: ../../enterprise/include/functions_reporting.php:3410 +#: ../../enterprise/include/functions_reporting.php:4386 +#: ../../godmode/alerts/alert_templates.php:68 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1479 +#: ../../include/functions_html.php:2274 +msgid "Friday" +msgstr "Viernes" + +#: ../../views/calendar/special_days_edit.php:121 +#: ../../views/calendar/special_days.php:97 ../../views/calendar/special_days.php:378 +#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:100 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1891 +#: ../../enterprise/include/functions_reporting.php:1737 +#: ../../enterprise/include/functions_reporting.php:2468 +#: ../../enterprise/include/functions_reporting.php:2786 +#: ../../enterprise/include/functions_reporting.php:3411 +#: ../../enterprise/include/functions_reporting.php:4387 +#: ../../godmode/alerts/alert_templates.php:69 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1487 +#: ../../include/functions_html.php:2275 +msgid "Saturday" +msgstr "SĆ”bado" + +#: ../../views/calendar/special_days_edit.php:122 +#: ../../views/calendar/special_days.php:98 ../../views/calendar/special_days.php:382 +#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:101 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1899 +#: ../../enterprise/include/functions_reporting.php:1738 +#: ../../enterprise/include/functions_reporting.php:2469 +#: ../../enterprise/include/functions_reporting.php:2787 +#: ../../enterprise/include/functions_reporting.php:3412 +#: ../../enterprise/include/functions_reporting.php:4388 +#: ../../godmode/alerts/alert_templates.php:70 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1495 +#: ../../include/functions_html.php:2269 +msgid "Sunday" +msgstr "Domingo" + +#: ../../views/calendar/special_days_edit.php:123 +#: ../../views/calendar/special_days.php:386 +msgid "Holidays" +msgstr "Vacaciones" + +#: ../../views/calendar/special_days_edit.php:127 +#: ../../views/calendar/special_days.php:102 +msgid "Same day of the week" +msgstr "Mismo dĆ­a de la semana" + +#: ../../views/calendar/special_days_edit.php:163 ../../views/calendar/edit.php:126 #: ../../enterprise/views/ncm/snippets/edit.php:106 -#: ../../enterprise/views/ncm/firmwares/edit.php:169 -#: ../../enterprise/views/ncm/vendors/edit.php:104 #: ../../enterprise/views/ncm/templates/edit.php:315 +#: ../../enterprise/views/ncm/firmwares/edit.php:169 #: ../../enterprise/views/ncm/models/edit.php:103 +#: ../../enterprise/views/ncm/vendors/edit.php:104 #: ../../enterprise/views/ipam/sites/edit.php:80 -#: ../../enterprise/operation/agentes/policy_view.php:208 -#: ../../enterprise/operation/agentes/policy_view.php:209 -#: ../../enterprise/operation/agentes/manage_transmap_creation_phases_data.php:87 -#: ../../enterprise/operation/agentes/collection_view.php:117 -#: ../../enterprise/operation/agentes/collection_view.php:118 -#: ../../enterprise/operation/agentes/manage_transmap_creation.php:264 -#: ../../enterprise/operation/agentes/manage_transmap_creation.php:532 -#: ../../enterprise/include/ajax/log_viewer.ajax.php:99 -#: ../../enterprise/include/ajax/servers.ajax.php:102 -#: ../../enterprise/include/ajax/servers.ajax.php:303 -#: ../../enterprise/include/class/SAPView.class.php:325 -#: ../../enterprise/include/class/AgentRepository.class.php:902 -#: ../../enterprise/include/class/LogSource.class.php:849 -#: ../../enterprise/include/class/Omnishell.class.php:646 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2242 -#: ../../enterprise/include/class/DeploymentCenter.class.php:1672 -#: ../../enterprise/include/class/DatabaseHA.class.php:891 -#: ../../enterprise/include/functions_HA_cluster.php:495 -#: ../../enterprise/meta/event/custom_events.php:213 -#: ../../enterprise/meta/include/functions_autoprovision.php:590 -#: ../../enterprise/meta/include/functions_autoprovision.php:791 -#: ../../enterprise/meta/advanced/metasetup.mail.php:133 -#: ../../enterprise/meta/advanced/metasetup.relations.php:278 +#: ../../enterprise/meta/advanced/metasetup.visual.php:1158 #: ../../enterprise/meta/advanced/metasetup.translate_string.php:231 -#: ../../enterprise/meta/advanced/collections.editor.php:149 -#: ../../enterprise/meta/advanced/collections.editor.php:223 -#: ../../enterprise/meta/advanced/metasetup.performance.php:174 -#: ../../enterprise/meta/advanced/cron_main.php:463 +#: ../../enterprise/meta/advanced/metasetup.relations.php:278 +#: ../../enterprise/meta/advanced/metasetup.password.php:157 +#: ../../enterprise/meta/advanced/metasetup.mail.php:133 +#: ../../enterprise/meta/advanced/metasetup.consoles.php:718 +#: ../../enterprise/meta/advanced/links.php:139 #: ../../enterprise/meta/advanced/collections.data.php:157 #: ../../enterprise/meta/advanced/collections.data.php:232 #: ../../enterprise/meta/advanced/collections.data.php:273 #: ../../enterprise/meta/advanced/collections.data.php:360 #: ../../enterprise/meta/advanced/collections.data.php:361 +#: ../../enterprise/meta/advanced/collections.editor.php:149 +#: ../../enterprise/meta/advanced/collections.editor.php:223 +#: ../../enterprise/meta/advanced/cron_main.php:463 #: ../../enterprise/meta/advanced/metasetup.setup.php:375 -#: ../../enterprise/meta/advanced/metasetup.consoles.php:718 -#: ../../enterprise/meta/advanced/metasetup.password.php:157 -#: ../../enterprise/meta/advanced/metasetup.visual.php:1150 -#: ../../enterprise/meta/advanced/links.php:139 +#: ../../enterprise/meta/advanced/metasetup.performance.php:188 +#: ../../enterprise/meta/event/custom_events.php:213 +#: ../../enterprise/meta/include/functions_autoprovision.php:590 +#: ../../enterprise/meta/include/functions_autoprovision.php:791 #: ../../enterprise/extensions/translate_string.php:364 #: ../../enterprise/extensions/vmware/vmware_view.php:1257 #: ../../enterprise/extensions/vmware/vmware_view.php:1768 -#: ../../enterprise/godmode/setup/setup.php:438 -#: ../../enterprise/godmode/setup/setup.php:627 -#: ../../enterprise/godmode/setup/setup_history.php:524 -#: ../../enterprise/godmode/setup/setup_metaconsole.php:245 -#: ../../enterprise/godmode/setup/setup_log_collector.php:74 -#: ../../enterprise/godmode/setup/edit_skin.php:290 -#: ../../enterprise/godmode/setup/setup_module_library.php:62 -#: ../../enterprise/godmode/servers/manage_export_form.php:136 -#: ../../enterprise/godmode/servers/credential_boxes_satellite.php:251 -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:357 -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:889 -#: ../../enterprise/godmode/servers/manage_credential_boxes.php:90 #: ../../enterprise/godmode/modules/configure_local_component.php:677 #: ../../enterprise/godmode/modules/manage_inventory_modules.php:313 #: ../../enterprise/godmode/modules/manage_inventory_modules_form.php:143 -#: ../../enterprise/godmode/services/services.service.php:947 -#: ../../enterprise/godmode/reporting/mysql_builder.php:143 -#: ../../enterprise/godmode/reporting/mysql_builder.php:155 -#: ../../enterprise/godmode/reporting/mysql_builder.php:164 -#: ../../enterprise/godmode/reporting/mysql_builder.php:242 -#: ../../enterprise/godmode/reporting/reporting_builder.advanced.php:187 -#: ../../enterprise/godmode/reporting/graph_template_editor.php:267 -#: ../../enterprise/godmode/reporting/reporting_builder.template_advanced.php:176 -#: ../../enterprise/godmode/reporting/reporting_builder.template_editor.php:129 -#: ../../enterprise/godmode/reporting/reporting_builder.template_editor.php:149 -#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor_form.php:84 -#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:408 -#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:1169 -#: ../../enterprise/godmode/massive/massive_tags_edit_policy.php:190 -#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:343 -#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:590 -#: ../../enterprise/godmode/agentes/inventory_manager.php:183 -#: ../../enterprise/godmode/agentes/inventory_manager.php:253 -#: ../../enterprise/godmode/agentes/agent_disk_conf_editor.php:257 -#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:320 -#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:638 +#: ../../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/collections.editor.php:182 -#: ../../enterprise/godmode/agentes/collections.editor.php:254 +#: ../../enterprise/godmode/agentes/inventory_manager.php:183 +#: ../../enterprise/godmode/agentes/inventory_manager.php:253 #: ../../enterprise/godmode/agentes/collections.data.php:107 #: ../../enterprise/godmode/agentes/collections.data.php:264 #: ../../enterprise/godmode/agentes/collections.data.php:342 #: ../../enterprise/godmode/agentes/collections.data.php:454 #: ../../enterprise/godmode/agentes/collections.data.php:455 +#: ../../enterprise/godmode/agentes/collections.editor.php:182 +#: ../../enterprise/godmode/agentes/collections.editor.php:254 #: ../../enterprise/godmode/agentes/plugins_manager.php:194 #: ../../enterprise/godmode/agentes/plugins_manager.php:251 -#: ../../enterprise/godmode/alerts/alert_inventory_list.php:337 +#: ../../enterprise/godmode/agentes/agent_disk_conf_editor.php:257 +#: ../../enterprise/godmode/policies/configure_policy.php:136 #: ../../enterprise/godmode/policies/policy_modules.php:428 #: ../../enterprise/godmode/policies/policy_external_alerts.php:364 -#: ../../enterprise/godmode/policies/configure_policy.php:136 #: ../../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:84 +#: ../../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 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:1169 +#: ../../enterprise/godmode/alerts/alert_inventory_list.php:337 +#: ../../enterprise/godmode/services/services.service.php:947 +#: ../../enterprise/godmode/setup/setup_history.php:528 +#: ../../enterprise/godmode/setup/setup.php:354 +#: ../../enterprise/godmode/setup/setup.php:543 +#: ../../enterprise/godmode/setup/setup_module_library.php:62 +#: ../../enterprise/godmode/setup/setup_metaconsole.php:245 +#: ../../enterprise/godmode/setup/setup_log_collector.php:74 +#: ../../enterprise/godmode/setup/edit_skin.php:290 +#: ../../enterprise/godmode/reporting/reporting_builder.template_editor.php:129 +#: ../../enterprise/godmode/reporting/reporting_builder.template_editor.php:149 +#: ../../enterprise/godmode/reporting/graph_template_editor.php:267 +#: ../../enterprise/godmode/reporting/reporting_builder.advanced.php:187 +#: ../../enterprise/godmode/reporting/mysql_builder.php:143 +#: ../../enterprise/godmode/reporting/mysql_builder.php:155 +#: ../../enterprise/godmode/reporting/mysql_builder.php:164 +#: ../../enterprise/godmode/reporting/mysql_builder.php:242 +#: ../../enterprise/godmode/reporting/reporting_builder.template_advanced.php:176 +#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:590 +#: ../../enterprise/godmode/servers/credential_boxes_satellite.php:251 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:357 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:889 +#: ../../enterprise/godmode/servers/manage_credential_boxes.php:90 +#: ../../enterprise/godmode/servers/manage_export_form.php:136 +#: ../../enterprise/include/ajax/log_viewer.ajax.php:99 +#: ../../enterprise/include/ajax/servers.ajax.php:102 +#: ../../enterprise/include/ajax/servers.ajax.php:303 +#: ../../enterprise/include/functions_HA_cluster.php:495 +#: ../../enterprise/include/class/DeploymentCenter.class.php:1672 +#: ../../enterprise/include/class/DatabaseHA.class.php:891 +#: ../../enterprise/include/class/AgentRepository.class.php:915 +#: ../../enterprise/include/class/Omnishell.class.php:646 +#: ../../enterprise/include/class/LogSource.class.php:849 +#: ../../enterprise/include/class/SAPView.class.php:325 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2284 +#: ../../enterprise/operation/agentes/manage_transmap_creation_phases_data.php:87 +#: ../../enterprise/operation/agentes/policy_view.php:208 +#: ../../enterprise/operation/agentes/policy_view.php:209 +#: ../../enterprise/operation/agentes/collection_view.php:117 +#: ../../enterprise/operation/agentes/collection_view.php:118 +#: ../../enterprise/operation/agentes/manage_transmap_creation.php:264 +#: ../../enterprise/operation/agentes/manage_transmap_creation.php:532 +#: ../../enterprise/tools/ipam/ipam_network.php:695 +#: ../../enterprise/tools/ipam/ipam_network_location_config.php:145 +#: ../../enterprise/tools/ipam/ipam_massive.php:112 +#: ../../enterprise/tools/ipam/ipam_editor.php:359 #: ../../extensions/files_repo/files_repo_form.php:99 -#: ../../godmode/setup/snmp_wizard.php:100 -#: ../../godmode/setup/setup_integria.php:632 -#: ../../godmode/setup/setup_visuals.php:1529 ../../godmode/setup/os.php:73 -#: ../../godmode/setup/os.php:142 ../../godmode/setup/news.php:233 -#: ../../godmode/setup/setup_auth.php:467 -#: ../../godmode/setup/setup_general.php:627 -#: ../../godmode/setup/performance.php:710 -#: ../../godmode/setup/setup_ehorus.php:179 -#: ../../godmode/setup/setup_netflow.php:81 -#: ../../godmode/setup/setup_websocket_engine.php:89 -#: ../../godmode/setup/links.php:129 ../../godmode/servers/plugin.php:198 -#: ../../godmode/servers/plugin.php:598 -#: ../../godmode/servers/modificar_server.php:100 -#: ../../godmode/update_manager/update_manager.setup.php:382 -#: ../../godmode/modules/manage_network_components_form.php:372 -#: ../../godmode/modules/manage_network_templates_form.php:178 #: ../../godmode/modules/manage_nc_groups_form.php:90 -#: ../../godmode/category/edit_category.php:195 -#: ../../godmode/reporting/reporting_builder.main.php:56 -#: ../../godmode/reporting/visual_console_builder.data.php:232 -#: ../../godmode/reporting/create_container.php:330 -#: ../../godmode/reporting/visual_console_builder.elements.php:761 -#: ../../godmode/reporting/graph_builder.main.php:294 +#: ../../godmode/modules/manage_network_templates_form.php:178 +#: ../../godmode/modules/manage_network_components_form.php:372 +#: ../../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:1454 +#: ../../godmode/agentes/agent_template.php:260 +#: ../../godmode/agentes/status_monitor_custom_fields.php:206 +#: ../../godmode/agentes/module_manager_editor.php:770 +#: ../../godmode/agentes/agent_conf_gis.php:134 +#: ../../godmode/agentes/planned_downtime.list.php:761 +#: ../../godmode/agentes/planned_downtime.list.php:806 +#: ../../godmode/agentes/planned_downtime.editor.php:873 +#: ../../godmode/agentes/agent_manager.php:963 +#: ../../godmode/agentes/configure_field.php:138 +#: ../../godmode/netflow/nf_edit_form.php:269 #: ../../godmode/snmpconsole/snmp_alert.php:1140 #: ../../godmode/snmpconsole/snmp_alert.php:1364 #: ../../godmode/snmpconsole/snmp_filters.php:261 #: ../../godmode/snmpconsole/snmp_filters.php:301 #: ../../godmode/snmpconsole/snmp_filters.php:312 -#: ../../godmode/tag/edit_tag.php:272 -#: ../../godmode/events/event_edit_filter.php:673 -#: ../../godmode/events/event_responses.editor.php:227 -#: ../../godmode/events/custom_events.php:169 -#: ../../godmode/netflow/nf_edit_form.php:269 -#: ../../godmode/agentes/configure_field.php:138 -#: ../../godmode/agentes/status_monitor_custom_fields.php:206 -#: ../../godmode/agentes/agent_manager.php:963 -#: ../../godmode/agentes/module_manager_editor.php:770 -#: ../../godmode/agentes/planned_downtime.editor.php:873 -#: ../../godmode/agentes/planned_downtime.list.php:761 -#: ../../godmode/agentes/planned_downtime.list.php:806 -#: ../../godmode/agentes/agent_conf_gis.php:134 -#: ../../godmode/agentes/agent_template.php:260 -#: ../../godmode/alerts/alert_list.list.php:161 -#: ../../godmode/alerts/alert_list.list.php:168 -#: ../../godmode/alerts/alert_list.list.php:920 #: ../../godmode/alerts/configure_alert_command.php:384 -#: ../../godmode/alerts/configure_alert_action.php:387 -#: ../../godmode/users/configure_user.php:1482 -#: ../../godmode/users/configure_profile.php:408 -#: ../../godmode/groups/configure_group.php:276 -#: ../../godmode/groups/configure_modu_group.php:83 +#: ../../godmode/alerts/alert_list.list.php:171 +#: ../../godmode/alerts/alert_list.list.php:178 +#: ../../godmode/alerts/alert_list.list.php:935 +#: ../../godmode/alerts/configure_alert_action.php:387 ../../godmode/setup/news.php:233 +#: ../../godmode/setup/setup_ehorus.php:179 +#: ../../godmode/setup/setup_websocket_engine.php:89 ../../godmode/setup/os.php:73 +#: ../../godmode/setup/os.php:142 ../../godmode/setup/setup_auth.php:467 +#: ../../godmode/setup/setup_integria.php:632 ../../godmode/setup/links.php:129 +#: ../../godmode/setup/snmp_wizard.php:100 ../../godmode/setup/setup_netflow.php:81 +#: ../../godmode/setup/setup_visuals.php:1583 ../../godmode/setup/setup_general.php:627 +#: ../../godmode/setup/performance.php:720 +#: ../../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:678 +#: ../../godmode/events/custom_events.php:188 +#: ../../godmode/servers/modificar_server.php:100 ../../godmode/servers/plugin.php:198 +#: ../../godmode/servers/plugin.php:598 ../../godmode/tag/edit_tag.php:272 +#: ../../godmode/category/edit_category.php:195 +#: ../../include/functions_visual_map_editor.php:880 +#: ../../include/ajax/alert_list.ajax.php:564 +#: ../../include/class/ConfigPEN.class.php:697 +#: ../../include/class/ConfigPEN.class.php:698 +#: ../../include/class/NetworkMap.class.php:3069 +#: ../../include/class/ManageNetScanScripts.class.php:765 +#: ../../include/class/CredentialStore.class.php:1246 +#: ../../include/class/ModuleTemplates.class.php:1012 +#: ../../include/class/ExternalTools.class.php:392 +#: ../../include/functions_events.php:3236 ../../include/functions_events.php:3315 +#: ../../operation/users/user_edit.php:777 ../../operation/agentes/datos_agente.php:218 +#: ../../operation/network/network_report.php:132 +#: ../../operation/snmpconsole/snmp_view.php:660 +#: ../../operation/incidents/configure_integriaims_incident.php:378 +#: ../../operation/reporting/reporting_viewer.php:311 msgid "Update" msgstr "Actualizar" +#: ../../views/calendar/special_days_edit.php:207 +#: ../../views/calendar/special_days.php:407 ../../views/calendar/special_days.php:506 +#: ../../views/dashboard/header.php:69 ../../views/dashboard/header.php:103 +#: ../../views/dashboard/list.php:225 ../../enterprise/views/ncm/agent/details.php:690 +#: ../../enterprise/meta/monitoring/custom_fields_view.php:1152 +#: ../../enterprise/meta/event/custom_events.php:250 +#: ../../enterprise/godmode/services/services.service.php:994 +#: ../../enterprise/godmode/services/services.elements.php:849 +#: ../../enterprise/godmode/services/services.elements.php:860 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:281 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:355 +#: ../../enterprise/include/functions_HA_cluster.php:492 +#: ../../enterprise/include/class/DeploymentCenter.class.php:1567 +#: ../../enterprise/include/class/DeploymentCenter.class.php:1669 +#: ../../enterprise/include/class/DeploymentCenter.class.php:1721 +#: ../../enterprise/include/class/DeploymentCenter.class.php:1753 +#: ../../enterprise/include/class/DeploymentCenter.class.php:1788 +#: ../../enterprise/include/class/AgentRepository.class.php:814 +#: ../../enterprise/include/class/AgentRepository.class.php:912 +#: ../../enterprise/include/class/LogSource.class.php:845 +#: ../../enterprise/include/class/LogSource.class.php:898 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3051 +#: ../../enterprise/include/class/ManageBackups.class.php:446 +#: ../../enterprise/tools/ipam/ipam_supernet_config.php:1298 +#: ../../enterprise/tools/ipam/ipam_supernet_config.php:1322 +#: ../../enterprise/tools/ipam/ipam_vlan_config.php:808 +#: ../../enterprise/tools/ipam/ipam_vlan_config.php:831 +#: ../../update_manager_client/views/register.php:85 +#: ../../godmode/agentes/status_monitor_custom_fields.php:242 +#: ../../godmode/snmpconsole/snmp_alert.php:1547 +#: ../../godmode/snmpconsole/snmp_alert.php:1562 +#: ../../godmode/massive/massive_operations.php:393 +#: ../../godmode/setup/snmp_wizard.php:100 ../../godmode/events/custom_events.php:224 +#: ../../include/functions_visual_map_editor.php:880 +#: ../../include/functions_visual_map_editor.php:884 +#: ../../include/functions_register.php:179 ../../include/class/ConfigPEN.class.php:669 +#: ../../include/class/ConfigPEN.class.php:693 +#: ../../include/class/TreeGroupEdition.class.php:165 +#: ../../include/class/NetworkMap.class.php:2807 +#: ../../include/class/CredentialStore.class.php:1242 +#: ../../include/class/CredentialStore.class.php:1294 +#: ../../include/class/ModuleTemplates.class.php:1382 +#: ../../include/class/WelcomeWindow.class.php:174 +#: ../../include/class/AgentWizard.class.php:6041 +#: ../../operation/agentes/pandora_networkmap.editor.php:603 +#: ../../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:814 +msgid "Cancel" +msgstr "Cancelar" + +#: ../../views/calendar/special_days_edit.php:211 +#: ../../views/calendar/special_days.php:411 ../../views/calendar/special_days.php:510 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:4349 +#: ../../godmode/agentes/planned_downtime.list.php:695 +#: ../../godmode/alerts/configure_alert_template.php:1550 +#: ../../include/class/AgentWizard.class.php:5993 +msgid "Loading, this operation might take several minutes..." +msgstr "Cargando, esta operaciĆ³n podrĆ­a llevar varios minutos..." + +#: ../../views/calendar/edit.php:40 +msgid "Calendars Edit" +msgstr "Editar calendarios" + #: ../../views/calendar/special_days.php:41 -#: ../../include/class/CalendarManager.class.php:669 +#: ../../include/class/CalendarManager.class.php:720 msgid "Special days" msgstr "DĆ­as especiales" @@ -1109,123 +1393,6 @@ msgstr "DĆ­as especiales" msgid "iCalendar(.ics) file" msgstr "Archivo iCalendar (.ics)" -#: ../../views/calendar/special_days.php:92 -#: ../../views/calendar/special_days.php:358 -#: ../../views/calendar/special_days_edit.php:116 -#: ../../include/functions_html.php:2258 -#: ../../enterprise/include/functions_reporting.php:1731 -#: ../../enterprise/include/functions_reporting.php:2462 -#: ../../enterprise/include/functions_reporting.php:2780 -#: ../../enterprise/include/functions_reporting.php:3405 -#: ../../enterprise/include/functions_reporting.php:4381 -#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:95 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1848 -#: ../../godmode/reporting/reporting_builder.item_editor.php:1351 -#: ../../godmode/alerts/alert_templates.php:64 -msgid "Monday" -msgstr "Lunes" - -#: ../../views/calendar/special_days.php:93 -#: ../../views/calendar/special_days.php:362 -#: ../../views/calendar/special_days_edit.php:117 -#: ../../include/functions_html.php:2259 -#: ../../enterprise/include/functions_reporting.php:1732 -#: ../../enterprise/include/functions_reporting.php:2463 -#: ../../enterprise/include/functions_reporting.php:2781 -#: ../../enterprise/include/functions_reporting.php:3406 -#: ../../enterprise/include/functions_reporting.php:4382 -#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:96 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1856 -#: ../../godmode/reporting/reporting_builder.item_editor.php:1359 -#: ../../godmode/alerts/alert_templates.php:65 -msgid "Tuesday" -msgstr "Martes" - -#: ../../views/calendar/special_days.php:94 -#: ../../views/calendar/special_days.php:366 -#: ../../views/calendar/special_days_edit.php:118 -#: ../../include/functions_html.php:2260 -#: ../../enterprise/include/functions_reporting.php:1733 -#: ../../enterprise/include/functions_reporting.php:2464 -#: ../../enterprise/include/functions_reporting.php:2782 -#: ../../enterprise/include/functions_reporting.php:3407 -#: ../../enterprise/include/functions_reporting.php:4383 -#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:97 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1864 -#: ../../godmode/reporting/reporting_builder.item_editor.php:1367 -#: ../../godmode/alerts/alert_templates.php:66 -msgid "Wednesday" -msgstr "MiĆ©rcoles" - -#: ../../views/calendar/special_days.php:95 -#: ../../views/calendar/special_days.php:370 -#: ../../views/calendar/special_days_edit.php:119 -#: ../../include/functions_html.php:2261 -#: ../../enterprise/include/functions_reporting.php:1734 -#: ../../enterprise/include/functions_reporting.php:2465 -#: ../../enterprise/include/functions_reporting.php:2783 -#: ../../enterprise/include/functions_reporting.php:3408 -#: ../../enterprise/include/functions_reporting.php:4384 -#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:98 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1872 -#: ../../godmode/reporting/reporting_builder.item_editor.php:1375 -#: ../../godmode/alerts/alert_templates.php:67 -msgid "Thursday" -msgstr "Jueves" - -#: ../../views/calendar/special_days.php:96 -#: ../../views/calendar/special_days.php:374 -#: ../../views/calendar/special_days_edit.php:120 -#: ../../include/functions_html.php:2262 -#: ../../enterprise/include/functions_reporting.php:1735 -#: ../../enterprise/include/functions_reporting.php:2466 -#: ../../enterprise/include/functions_reporting.php:2784 -#: ../../enterprise/include/functions_reporting.php:3409 -#: ../../enterprise/include/functions_reporting.php:4385 -#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:99 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1880 -#: ../../godmode/reporting/reporting_builder.item_editor.php:1383 -#: ../../godmode/alerts/alert_templates.php:68 -msgid "Friday" -msgstr "Viernes" - -#: ../../views/calendar/special_days.php:97 -#: ../../views/calendar/special_days.php:378 -#: ../../views/calendar/special_days_edit.php:121 -#: ../../include/functions_html.php:2263 -#: ../../enterprise/include/functions_reporting.php:1736 -#: ../../enterprise/include/functions_reporting.php:2467 -#: ../../enterprise/include/functions_reporting.php:2785 -#: ../../enterprise/include/functions_reporting.php:3410 -#: ../../enterprise/include/functions_reporting.php:4386 -#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:100 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1888 -#: ../../godmode/reporting/reporting_builder.item_editor.php:1391 -#: ../../godmode/alerts/alert_templates.php:69 -msgid "Saturday" -msgstr "SĆ”bado" - -#: ../../views/calendar/special_days.php:98 -#: ../../views/calendar/special_days.php:382 -#: ../../views/calendar/special_days_edit.php:122 -#: ../../include/functions_html.php:2257 -#: ../../enterprise/include/functions_reporting.php:1737 -#: ../../enterprise/include/functions_reporting.php:2468 -#: ../../enterprise/include/functions_reporting.php:2786 -#: ../../enterprise/include/functions_reporting.php:3411 -#: ../../enterprise/include/functions_reporting.php:4387 -#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:101 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1896 -#: ../../godmode/reporting/reporting_builder.item_editor.php:1399 -#: ../../godmode/alerts/alert_templates.php:70 -msgid "Sunday" -msgstr "Domingo" - -#: ../../views/calendar/special_days.php:102 -#: ../../views/calendar/special_days_edit.php:127 -msgid "Same day of the week" -msgstr "Mismo dĆ­a de la semana" - #: ../../views/calendar/special_days.php:122 msgid "Overwrite" msgstr "Sobrescribir" @@ -1235,15 +1402,15 @@ msgid "Check this box, if you want to overwrite existing same days." msgstr "Marca esta casilla si quieres sobrescribir los dĆ­as existentes." #: ../../views/calendar/special_days.php:138 -#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:218 -#: ../../enterprise/tools/ipam/ipam_vlan_config.php:420 +#: ../../enterprise/include/functions_policies.php:4479 #: ../../enterprise/tools/ipam/ipam_network.php:142 #: ../../enterprise/tools/ipam/ipam_supernet_config.php:746 #: ../../enterprise/tools/ipam/ipam_list.php:77 -#: ../../enterprise/include/functions_policies.php:4479 +#: ../../enterprise/tools/ipam/ipam_vlan_config.php:420 #: ../../extensions/extension_uploader.php:92 #: ../../extensions/resource_registration.php:1137 #: ../../godmode/servers/plugin_registration.php:113 +#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:218 msgid "Upload" msgstr "Subir" @@ -1251,176 +1418,175 @@ msgstr "Subir" msgid "Display range: " msgstr "Mostrar rango " -#: ../../views/calendar/special_days.php:174 -#: ../../views/calendar/special_days.php:186 -#: ../../operation/gis_maps/gis_map.php:106 -#: ../../operation/snmpconsole/snmp_view.php:566 -#: ../../operation/events/events_list.php:863 -#: ../../operation/users/user_edit.php:317 -#: ../../operation/users/user_edit.php:320 -#: ../../operation/users/user_edit.php:331 -#: ../../operation/users/user_edit.php:356 -#: ../../include/class/AgentsAlerts.class.php:928 -#: ../../include/functions_ui.php:1234 -#: ../../enterprise/operation/agentes/policy_view.php:332 -#: ../../enterprise/meta/monitoring/wizard/wizard.php:141 +#: ../../views/calendar/special_days.php:174 ../../views/calendar/special_days.php:186 #: ../../enterprise/meta/advanced/metasetup.visual.php:513 #: ../../enterprise/meta/advanced/metasetup.visual.php:547 -#: ../../enterprise/meta/advanced/metasetup.visual.php:1062 +#: ../../enterprise/meta/advanced/metasetup.visual.php:1070 +#: ../../enterprise/meta/monitoring/wizard/wizard.php:141 +#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:443 +#: ../../enterprise/godmode/policies/policy_alerts.php:406 +#: ../../enterprise/godmode/policies/policy_external_alerts.php:436 #: ../../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:128 #: ../../enterprise/godmode/reporting/reporting_builder.template_advanced.php:134 -#: ../../enterprise/godmode/reporting/visual_console_builder.wizard_services.php:105 -#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:443 -#: ../../enterprise/godmode/policies/policy_external_alerts.php:436 -#: ../../enterprise/godmode/policies/policy_alerts.php:406 -#: ../../godmode/setup/gis_step_2.php:578 ../../godmode/setup/gis_step_2.php:664 -#: ../../godmode/setup/setup_visuals.php:196 -#: ../../godmode/setup/setup_visuals.php:218 -#: ../../godmode/setup/setup_visuals.php:438 -#: ../../godmode/setup/setup_visuals.php:457 -#: ../../godmode/setup/setup_visuals.php:1159 -#: ../../godmode/events/event_edit_filter.php:399 -#: ../../godmode/massive/massive_edit_agents.php:981 +#: ../../enterprise/operation/agentes/policy_view.php:332 +#: ../../godmode/users/configure_user.php:907 +#: ../../godmode/users/configure_user.php:1090 #: ../../godmode/agentes/module_manager_editor_common.php:635 -#: ../../godmode/alerts/alert_list.list.php:616 -#: ../../godmode/alerts/alert_view.php:58 -#: ../../godmode/users/configure_user.php:910 -#: ../../godmode/users/configure_user.php:1109 +#: ../../godmode/massive/massive_edit_agents.php:981 +#: ../../godmode/alerts/alert_list.list.php:631 ../../godmode/alerts/alert_view.php:58 +#: ../../godmode/setup/gis_step_2.php:578 ../../godmode/setup/gis_step_2.php:664 +#: ../../godmode/setup/setup_visuals.php:197 ../../godmode/setup/setup_visuals.php:219 +#: ../../godmode/setup/setup_visuals.php:439 ../../godmode/setup/setup_visuals.php:458 +#: ../../godmode/setup/setup_visuals.php:1204 +#: ../../godmode/events/event_edit_filter.php:404 ../../include/functions_ui.php:1240 +#: ../../include/class/AgentsAlerts.class.php:928 +#: ../../operation/users/user_edit.php:317 ../../operation/users/user_edit.php:320 +#: ../../operation/users/user_edit.php:331 ../../operation/users/user_edit.php:356 +#: ../../operation/snmpconsole/snmp_view.php:566 +#: ../../operation/gis_maps/gis_map.php:106 msgid "Default" msgstr "Por defecto" #: ../../views/calendar/special_days.php:224 -#: ../../include/class/CalendarManager.class.php:984 -#: ../../include/functions_reporting.php:14101 ../../include/functions.php:1101 +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:431 #: ../../godmode/agentes/planned_downtime.editor.php:674 +#: ../../include/functions.php:1101 ../../include/class/CalendarManager.class.php:1035 +#: ../../include/functions_reporting.php:14254 msgid "Sun" msgstr "Dom" #: ../../views/calendar/special_days.php:225 -#: ../../include/class/CalendarManager.class.php:978 -#: ../../include/functions_reporting.php:14071 ../../include/functions.php:1077 +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:425 #: ../../godmode/agentes/planned_downtime.editor.php:668 +#: ../../include/functions.php:1077 ../../include/class/CalendarManager.class.php:1029 +#: ../../include/functions_reporting.php:14224 msgid "Mon" msgstr "Lun" #: ../../views/calendar/special_days.php:226 -#: ../../include/class/CalendarManager.class.php:979 -#: ../../include/functions_reporting.php:14076 ../../include/functions.php:1081 +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:426 #: ../../godmode/agentes/planned_downtime.editor.php:669 +#: ../../include/functions.php:1081 ../../include/class/CalendarManager.class.php:1030 +#: ../../include/functions_reporting.php:14229 msgid "Tue" msgstr "Mar" #: ../../views/calendar/special_days.php:227 -#: ../../include/class/CalendarManager.class.php:980 -#: ../../include/functions_reporting.php:14081 ../../include/functions.php:1085 +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:427 #: ../../godmode/agentes/planned_downtime.editor.php:670 +#: ../../include/functions.php:1085 ../../include/class/CalendarManager.class.php:1031 +#: ../../include/functions_reporting.php:14234 msgid "Wed" msgstr "MiĆ©" #: ../../views/calendar/special_days.php:228 -#: ../../include/class/CalendarManager.class.php:981 -#: ../../include/functions_reporting.php:14086 ../../include/functions.php:1089 +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:428 #: ../../godmode/agentes/planned_downtime.editor.php:671 +#: ../../include/functions.php:1089 ../../include/class/CalendarManager.class.php:1032 +#: ../../include/functions_reporting.php:14239 msgid "Thu" msgstr "Jue" #: ../../views/calendar/special_days.php:229 -#: ../../include/class/CalendarManager.class.php:982 -#: ../../include/functions_reporting.php:14091 ../../include/functions.php:1093 +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:429 #: ../../godmode/agentes/planned_downtime.editor.php:672 +#: ../../include/functions.php:1093 ../../include/class/CalendarManager.class.php:1033 +#: ../../include/functions_reporting.php:14244 msgid "Fri" msgstr "Vie" #: ../../views/calendar/special_days.php:230 -#: ../../include/class/CalendarManager.class.php:983 -#: ../../include/functions_reporting.php:14096 ../../include/functions.php:1097 +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:430 #: ../../godmode/agentes/planned_downtime.editor.php:673 +#: ../../include/functions.php:1097 ../../include/class/CalendarManager.class.php:1034 +#: ../../include/functions_reporting.php:14249 msgid "Sat" msgstr "SĆ”b" #: ../../views/calendar/special_days.php:245 -#: ../../enterprise/include/functions_reporting.php:1774 -#: ../../enterprise/include/functions_reporting.php:2821 -#: ../../enterprise/include/functions_reporting.php:3823 +#: ../../enterprise/include/functions_reporting.php:1775 +#: ../../enterprise/include/functions_reporting.php:2822 +#: ../../enterprise/include/functions_reporting.php:3824 msgid "January" msgstr "Enero" #: ../../views/calendar/special_days.php:249 -#: ../../enterprise/include/functions_reporting.php:1778 -#: ../../enterprise/include/functions_reporting.php:2825 -#: ../../enterprise/include/functions_reporting.php:3827 +#: ../../enterprise/include/functions_reporting.php:1779 +#: ../../enterprise/include/functions_reporting.php:2826 +#: ../../enterprise/include/functions_reporting.php:3828 msgid "February" msgstr "Febrero" #: ../../views/calendar/special_days.php:253 -#: ../../enterprise/include/functions_reporting.php:1782 -#: ../../enterprise/include/functions_reporting.php:2829 -#: ../../enterprise/include/functions_reporting.php:3831 +#: ../../enterprise/include/functions_reporting.php:1783 +#: ../../enterprise/include/functions_reporting.php:2830 +#: ../../enterprise/include/functions_reporting.php:3832 msgid "March" msgstr "Marzo" #: ../../views/calendar/special_days.php:257 -#: ../../enterprise/include/functions_reporting.php:1786 -#: ../../enterprise/include/functions_reporting.php:2833 -#: ../../enterprise/include/functions_reporting.php:3835 +#: ../../enterprise/include/functions_reporting.php:1787 +#: ../../enterprise/include/functions_reporting.php:2834 +#: ../../enterprise/include/functions_reporting.php:3836 msgid "April" msgstr "Abril" #: ../../views/calendar/special_days.php:261 -#: ../../enterprise/include/functions_reporting.php:1790 -#: ../../enterprise/include/functions_reporting.php:2837 -#: ../../enterprise/include/functions_reporting.php:3839 +#: ../../enterprise/include/functions_reporting.php:1791 +#: ../../enterprise/include/functions_reporting.php:2838 +#: ../../enterprise/include/functions_reporting.php:3840 msgid "May" msgstr "Mayo" #: ../../views/calendar/special_days.php:265 -#: ../../enterprise/include/functions_reporting.php:1794 -#: ../../enterprise/include/functions_reporting.php:2841 -#: ../../enterprise/include/functions_reporting.php:3843 +#: ../../enterprise/include/functions_reporting.php:1795 +#: ../../enterprise/include/functions_reporting.php:2842 +#: ../../enterprise/include/functions_reporting.php:3844 msgid "June" msgstr "Junio" #: ../../views/calendar/special_days.php:269 -#: ../../enterprise/include/functions_reporting.php:1798 -#: ../../enterprise/include/functions_reporting.php:2845 -#: ../../enterprise/include/functions_reporting.php:3847 +#: ../../enterprise/include/functions_reporting.php:1799 +#: ../../enterprise/include/functions_reporting.php:2846 +#: ../../enterprise/include/functions_reporting.php:3848 msgid "July" msgstr "Julio" #: ../../views/calendar/special_days.php:273 -#: ../../enterprise/include/functions_reporting.php:1802 -#: ../../enterprise/include/functions_reporting.php:2849 -#: ../../enterprise/include/functions_reporting.php:3851 +#: ../../enterprise/include/functions_reporting.php:1803 +#: ../../enterprise/include/functions_reporting.php:2850 +#: ../../enterprise/include/functions_reporting.php:3852 msgid "August" msgstr "Agosto" #: ../../views/calendar/special_days.php:277 -#: ../../enterprise/include/functions_reporting.php:1806 -#: ../../enterprise/include/functions_reporting.php:2853 -#: ../../enterprise/include/functions_reporting.php:3855 +#: ../../enterprise/include/functions_reporting.php:1807 +#: ../../enterprise/include/functions_reporting.php:2854 +#: ../../enterprise/include/functions_reporting.php:3856 msgid "September" msgstr "Septiembre" #: ../../views/calendar/special_days.php:281 -#: ../../enterprise/include/functions_reporting.php:1810 -#: ../../enterprise/include/functions_reporting.php:2857 -#: ../../enterprise/include/functions_reporting.php:3859 +#: ../../enterprise/include/functions_reporting.php:1811 +#: ../../enterprise/include/functions_reporting.php:2858 +#: ../../enterprise/include/functions_reporting.php:3860 msgid "October" msgstr "Octubre" #: ../../views/calendar/special_days.php:285 -#: ../../enterprise/include/functions_reporting.php:1814 -#: ../../enterprise/include/functions_reporting.php:2861 -#: ../../enterprise/include/functions_reporting.php:3863 +#: ../../enterprise/include/functions_reporting.php:1815 +#: ../../enterprise/include/functions_reporting.php:2862 +#: ../../enterprise/include/functions_reporting.php:3864 msgid "November" msgstr "Noviembre" #: ../../views/calendar/special_days.php:289 -#: ../../enterprise/include/functions_reporting.php:1819 -#: ../../enterprise/include/functions_reporting.php:2866 -#: ../../enterprise/include/functions_reporting.php:3868 +#: ../../enterprise/include/functions_reporting.php:1820 +#: ../../enterprise/include/functions_reporting.php:2867 +#: ../../enterprise/include/functions_reporting.php:3869 msgid "December" msgstr "Diciembre" @@ -1428,315 +1594,229 @@ msgstr "Diciembre" msgid "As " msgstr "Como " -#: ../../views/calendar/special_days.php:386 -#: ../../views/calendar/special_days_edit.php:123 -msgid "Holidays" -msgstr "Vacaciones" - -#: ../../views/calendar/special_days.php:407 -#: ../../views/calendar/special_days.php:506 -#: ../../views/calendar/special_days_edit.php:207 -#: ../../views/dashboard/header.php:69 ../../views/dashboard/header.php:103 -#: ../../views/dashboard/list.php:225 ../../general/header.php:814 -#: ../../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/agentes/pandora_networkmap.editor.php:603 -#: ../../include/functions_visual_map_editor.php:880 -#: ../../include/functions_visual_map_editor.php:884 -#: ../../include/class/ModuleTemplates.class.php:1382 -#: ../../include/class/AgentWizard.class.php:6015 -#: ../../include/class/WelcomeWindow.class.php:174 -#: ../../include/class/ConfigPEN.class.php:669 -#: ../../include/class/ConfigPEN.class.php:693 -#: ../../include/class/CredentialStore.class.php:1242 -#: ../../include/class/CredentialStore.class.php:1294 -#: ../../include/class/NetworkMap.class.php:2807 -#: ../../include/class/TreeGroupEdition.class.php:165 -#: ../../include/functions_register.php:179 -#: ../../update_manager_client/views/register.php:85 -#: ../../enterprise/tools/ipam/ipam_vlan_config.php:808 -#: ../../enterprise/tools/ipam/ipam_vlan_config.php:831 -#: ../../enterprise/tools/ipam/ipam_supernet_config.php:1298 -#: ../../enterprise/tools/ipam/ipam_supernet_config.php:1322 -#: ../../enterprise/views/ncm/agent/details.php:690 -#: ../../enterprise/include/class/AgentRepository.class.php:801 -#: ../../enterprise/include/class/AgentRepository.class.php:899 -#: ../../enterprise/include/class/LogSource.class.php:845 -#: ../../enterprise/include/class/LogSource.class.php:898 -#: ../../enterprise/include/class/ManageBackups.class.php:446 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3009 -#: ../../enterprise/include/class/DeploymentCenter.class.php:1567 -#: ../../enterprise/include/class/DeploymentCenter.class.php:1669 -#: ../../enterprise/include/class/DeploymentCenter.class.php:1721 -#: ../../enterprise/include/class/DeploymentCenter.class.php:1753 -#: ../../enterprise/include/class/DeploymentCenter.class.php:1788 -#: ../../enterprise/include/functions_HA_cluster.php:492 -#: ../../enterprise/meta/event/custom_events.php:250 -#: ../../enterprise/meta/monitoring/custom_fields_view.php:1152 -#: ../../enterprise/godmode/services/services.elements.php:844 -#: ../../enterprise/godmode/services/services.elements.php:855 -#: ../../enterprise/godmode/services/services.service.php:994 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:355 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:280 -#: ../../godmode/setup/snmp_wizard.php:100 -#: ../../godmode/snmpconsole/snmp_alert.php:1547 -#: ../../godmode/snmpconsole/snmp_alert.php:1562 -#: ../../godmode/events/custom_events.php:205 -#: ../../godmode/massive/massive_operations.php:393 -#: ../../godmode/agentes/status_monitor_custom_fields.php:242 -msgid "Cancel" -msgstr "Cancelar" - -#: ../../views/calendar/special_days.php:411 -#: ../../views/calendar/special_days.php:510 -#: ../../views/calendar/special_days_edit.php:211 -#: ../../include/class/AgentWizard.class.php:5967 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:4323 -#: ../../godmode/agentes/planned_downtime.list.php:695 -#: ../../godmode/alerts/configure_alert_template.php:1550 -msgid "Loading, this operation might take several minutes..." -msgstr "Cargando, esta operaciĆ³n podrĆ­a llevar varios minutos..." - #: ../../views/calendar/special_days.php:421 msgid "Show templates" msgstr "Mostrar plantillas" #: ../../views/calendar/special_days.php:431 -#: ../../operation/search_reports.php:68 ../../operation/gis_maps/gis_map.php:190 -#: ../../operation/agentes/status_monitor.php:1509 -#: ../../operation/agentes/pandora_networkmap.php:713 -#: ../../operation/agentes/estado_agente.php:877 -#: ../../operation/agentes/estado_agente.php:880 -#: ../../operation/incidents/list_integriaims_incidents.php:550 -#: ../../include/functions_cron.php:881 ../../include/functions_cron.php:909 -#: ../../include/ajax/module.php:1110 -#: ../../include/class/CalendarManager.class.php:652 -#: ../../include/class/NetworkMap.class.php:3013 -#: ../../enterprise/tools/ipam/ipam_ajax.php:122 -#: ../../enterprise/tools/ipam/ipam_ajax.php:527 -#: ../../enterprise/tools/ipam/ipam.php:417 -#: ../../enterprise/operation/agentes/tag_view.php:742 +#: ../../enterprise/meta/screens/screens.visualmap.php:73 +#: ../../enterprise/meta/advanced/collections.editor.php:203 +#: ../../enterprise/meta/monitoring/wizard/wizard.manage_alert.php:74 +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:295 +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:461 +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:812 +#: ../../enterprise/meta/include/functions_autoprovision.php:506 +#: ../../enterprise/meta/include/functions_autoprovision.php:507 +#: ../../enterprise/meta/include/functions_autoprovision.php:672 +#: ../../enterprise/meta/include/functions_autoprovision.php:673 +#: ../../enterprise/meta/include/functions_wizard_meta.php:2064 +#: ../../enterprise/meta/include/functions_wizard_meta.php:2159 +#: ../../enterprise/meta/include/functions_wizard_meta.php:2723 +#: ../../enterprise/godmode/agentes/collections.editor.php:234 +#: ../../enterprise/godmode/massive/massive_edit_tags_policy.php:204 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:612 +#: ../../enterprise/godmode/reporting/reporting_builder.template_list_item.php:382 +#: ../../enterprise/include/functions_tasklist.php:595 +#: ../../enterprise/include/functions_tasklist.php:637 #: ../../enterprise/include/ajax/transactional.ajax.php:117 #: ../../enterprise/include/ajax/transactional.ajax.php:205 -#: ../../enterprise/include/class/Omnishell.class.php:1137 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2384 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3038 #: ../../enterprise/include/class/NetworkConfigManager.class.php:612 #: ../../enterprise/include/class/NetworkConfigManager.class.php:784 #: ../../enterprise/include/class/NetworkConfigManager.class.php:960 #: ../../enterprise/include/class/NetworkConfigManager.class.php:1107 #: ../../enterprise/include/class/NetworkConfigManager.class.php:1315 -#: ../../enterprise/include/functions_tasklist.php:595 -#: ../../enterprise/include/functions_tasklist.php:637 +#: ../../enterprise/include/class/Omnishell.class.php:1137 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2426 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3080 #: ../../enterprise/include/lib/ClusterViewer/ClusterManager.php:618 -#: ../../enterprise/include/lib/Metaconsole/Node.php:1149 -#: ../../enterprise/include/lib/Metaconsole/Node.php:1150 -#: ../../enterprise/meta/screens/screens.visualmap.php:73 -#: ../../enterprise/meta/include/functions_autoprovision.php:506 -#: ../../enterprise/meta/include/functions_autoprovision.php:507 -#: ../../enterprise/meta/include/functions_autoprovision.php:672 -#: ../../enterprise/meta/include/functions_autoprovision.php:673 -#: ../../enterprise/meta/include/functions_wizard_meta.php:2067 -#: ../../enterprise/meta/include/functions_wizard_meta.php:2162 -#: ../../enterprise/meta/include/functions_wizard_meta.php:2726 -#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:298 -#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:464 -#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:815 -#: ../../enterprise/meta/monitoring/wizard/wizard.manage_alert.php:74 -#: ../../enterprise/meta/advanced/collections.editor.php:203 -#: ../../enterprise/godmode/reporting/reporting_builder.template_list_item.php:382 -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:612 -#: ../../enterprise/godmode/massive/massive_edit_tags_policy.php:204 -#: ../../enterprise/godmode/agentes/collections.editor.php:234 +#: ../../enterprise/include/lib/Metaconsole/Node.php:1097 +#: ../../enterprise/include/lib/Metaconsole/Node.php:1098 +#: ../../enterprise/operation/agentes/tag_view.php:742 +#: ../../enterprise/tools/ipam/ipam.php:417 +#: ../../enterprise/tools/ipam/ipam_ajax.php:122 +#: ../../enterprise/tools/ipam/ipam_ajax.php:527 #: ../../extensions/files_repo/files_repo_list.php:138 -#: ../../godmode/setup/snmp_wizard.php:110 ../../godmode/servers/plugin.php:179 -#: ../../godmode/servers/plugin.php:880 -#: ../../godmode/servers/servers.build_table.php:234 -#: ../../godmode/reporting/reporting_builder.list_items.php:624 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2178 -#: ../../godmode/reporting/reporting_builder.php:1169 -#: ../../godmode/events/event_responses.list.php:79 -#: ../../godmode/agentes/planned_downtime.list.php:624 -#: ../../godmode/agentes/fields_manager.php:154 +#: ../../godmode/groups/group_list.php:917 ../../godmode/groups/group_list.php:918 +#: ../../godmode/users/profile_list.php:434 ../../godmode/users/user_list.php:796 #: ../../godmode/agentes/modificar_agente.php:803 #: ../../godmode/agentes/modificar_agente.php:809 -#: ../../godmode/users/user_list.php:796 ../../godmode/users/profile_list.php:434 -#: ../../godmode/groups/group_list.php:917 -#: ../../godmode/groups/group_list.php:918 +#: ../../godmode/agentes/planned_downtime.list.php:624 +#: ../../godmode/agentes/fields_manager.php:154 ../../godmode/setup/snmp_wizard.php:110 +#: ../../godmode/reporting/reporting_builder.list_items.php:624 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2274 +#: ../../godmode/reporting/reporting_builder.php:1167 +#: ../../godmode/events/event_responses.list.php:79 +#: ../../godmode/servers/servers.build_table.php:234 +#: ../../godmode/servers/plugin.php:179 ../../godmode/servers/plugin.php:880 +#: ../../include/functions_cron.php:881 ../../include/functions_cron.php:909 +#: ../../include/ajax/module.php:1110 ../../include/class/NetworkMap.class.php:3013 +#: ../../include/class/CalendarManager.class.php:703 +#: ../../operation/agentes/estado_agente.php:877 +#: ../../operation/agentes/estado_agente.php:880 +#: ../../operation/agentes/pandora_networkmap.php:713 +#: ../../operation/agentes/status_monitor.php:1509 +#: ../../operation/gis_maps/gis_map.php:190 +#: ../../operation/incidents/list_integriaims_incidents.php:550 +#: ../../operation/search_reports.php:68 msgid "Edit" msgstr "Editar" #: ../../views/calendar/special_days.php:438 ../../views/dashboard/list.php:185 -#: ../../operation/messages/message_list.php:272 -#: ../../operation/messages/message_list.php:275 -#: ../../operation/snmpconsole/snmp_browser.php:643 -#: ../../operation/snmpconsole/snmp_view.php:1033 -#: ../../operation/snmpconsole/snmp_view.php:1046 -#: ../../operation/snmpconsole/snmp_view.php:1220 -#: ../../operation/events/events.build_table.php:983 -#: ../../operation/agentes/pandora_networkmap.php:801 -#: ../../operation/agentes/pandora_networkmap.editor.php:600 -#: ../../operation/users/user_edit.php:1168 -#: ../../operation/incidents/list_integriaims_incidents.php:554 -#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:197 -#: ../../include/class/ModuleTemplates.class.php:918 -#: ../../include/class/ModuleTemplates.class.php:933 -#: ../../include/class/WelcomeWindow.class.php:171 -#: ../../include/class/ConfigPEN.class.php:666 -#: ../../include/class/CredentialStore.class.php:1288 -#: ../../include/class/TreeGroupEdition.class.php:166 -#: ../../include/lib/Dashboard/Widgets/events_list.php:680 -#: ../../include/functions_events.php:3784 -#: ../../include/functions_filemanager.php:715 -#: ../../include/functions_container.php:190 -#: ../../include/functions_container.php:324 -#: ../../include/functions_profile.php:278 -#: ../../update_manager_client/views/online.php:122 -#: ../../update_manager_client/views/online.php:163 -#: ../../update_manager_client/views/offline.php:72 -#: ../../enterprise/tools/ipam/ipam_vlan_config.php:726 -#: ../../enterprise/tools/ipam/ipam_vlan_config.php:856 -#: ../../enterprise/tools/ipam/ipam_network_location_config.php:287 -#: ../../enterprise/tools/ipam/ipam_supernet_config.php:1209 -#: ../../enterprise/tools/ipam/ipam_supernet_config.php:1347 -#: ../../enterprise/operation/services/services.list.php:649 -#: ../../enterprise/operation/services/services.list.php:743 -#: ../../enterprise/operation/agentes/transactional_map.php:414 -#: ../../enterprise/operation/agentes/transactional_map.php:478 -#: ../../enterprise/operation/agentes/manage_transmap_creation.php:268 -#: ../../enterprise/include/ajax/transactional.ajax.php:118 -#: ../../enterprise/include/ajax/transactional.ajax.php:207 -#: ../../enterprise/include/ajax/ipam.ajax.php:755 -#: ../../enterprise/include/ajax/ipam.ajax.php:833 -#: ../../enterprise/include/class/AgentRepository.class.php:792 -#: ../../enterprise/include/class/LogSource.class.php:892 -#: ../../enterprise/include/class/ManageBackups.class.php:443 -#: ../../enterprise/include/class/Omnishell.class.php:504 -#: ../../enterprise/include/class/Omnishell.class.php:1155 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3046 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3358 -#: ../../enterprise/include/class/DeploymentCenter.class.php:1558 -#: ../../enterprise/include/functions_tasklist.php:610 -#: ../../enterprise/include/functions_tasklist.php:645 -#: ../../enterprise/include/lib/Metaconsole/Node.php:1242 -#: ../../enterprise/include/functions_services.php:2022 -#: ../../enterprise/meta/monitoring/custom_fields_view.php:1150 -#: ../../enterprise/meta/monitoring/wizard/wizard.php:143 #: ../../enterprise/meta/advanced/agents_setup.move_agents.php:566 -#: ../../enterprise/meta/advanced/policymanager.queue.php:349 #: ../../enterprise/meta/advanced/metasetup.relations.php:584 #: ../../enterprise/meta/advanced/links.php:173 -#: ../../enterprise/godmode/setup/setup_skins.php:147 -#: ../../enterprise/godmode/servers/credential_boxes_satellite.php:287 -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:349 -#: ../../enterprise/godmode/modules/local_components.php:694 +#: ../../enterprise/meta/advanced/policymanager.queue.php:349 +#: ../../enterprise/meta/monitoring/custom_fields_view.php:1150 +#: ../../enterprise/meta/monitoring/wizard/wizard.php:143 #: ../../enterprise/godmode/modules/manage_inventory_modules.php:316 -#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:638 -#: ../../enterprise/godmode/reporting/graph_template_wizard.php:447 -#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:837 -#: ../../enterprise/godmode/reporting/mysql_builder.php:104 -#: ../../enterprise/godmode/reporting/graph_template_item_editor.php:214 -#: ../../enterprise/godmode/reporting/graph_template_list.php:234 -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:619 -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:638 -#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:412 +#: ../../enterprise/godmode/modules/local_components.php:694 #: ../../enterprise/godmode/agentes/inventory_manager.php:248 #: ../../enterprise/godmode/agentes/agent_disk_conf_editor.php:249 -#: ../../enterprise/godmode/agentes/manage_config_remote.php:203 #: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:93 -#: ../../enterprise/godmode/alerts/alert_inventory_list.php:415 -#: ../../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_queue.php:770 -#: ../../enterprise/godmode/policies/policy_queue.php:804 -#: ../../enterprise/godmode/policies/policy_queue.php:820 +#: ../../enterprise/godmode/policies/policy_alerts.php:518 #: ../../enterprise/godmode/policies/policy_modules.php:1545 #: ../../enterprise/godmode/policies/policy_modules.php:1561 #: ../../enterprise/godmode/policies/policy_modules.php:1612 +#: ../../enterprise/godmode/policies/policy_queue.php:770 +#: ../../enterprise/godmode/policies/policy_queue.php:804 +#: ../../enterprise/godmode/policies/policy_queue.php:820 #: ../../enterprise/godmode/policies/policies.php:560 #: ../../enterprise/godmode/policies/policies.php:581 #: ../../enterprise/godmode/policies/policies.php:616 #: ../../enterprise/godmode/policies/policy_external_alerts.php:513 #: ../../enterprise/godmode/policies/policy_inventory_modules.php:328 #: ../../enterprise/godmode/policies/policy_inventory_modules.php:333 -#: ../../enterprise/godmode/policies/policy_alerts.php:518 +#: ../../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/snmpconsole/snmp_trap_editor.php:412 +#: ../../enterprise/godmode/alerts/alert_inventory_list.php:415 +#: ../../enterprise/godmode/setup/setup_skins.php:147 +#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:837 +#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:638 +#: ../../enterprise/godmode/reporting/graph_template_list.php:234 +#: ../../enterprise/godmode/reporting/graph_template_wizard.php:447 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:619 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:638 +#: ../../enterprise/godmode/reporting/graph_template_item_editor.php:214 +#: ../../enterprise/godmode/reporting/mysql_builder.php:104 +#: ../../enterprise/godmode/servers/credential_boxes_satellite.php:287 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:349 +#: ../../enterprise/include/functions_tasklist.php:610 +#: ../../enterprise/include/functions_tasklist.php:645 +#: ../../enterprise/include/ajax/transactional.ajax.php:118 +#: ../../enterprise/include/ajax/transactional.ajax.php:207 +#: ../../enterprise/include/ajax/ipam.ajax.php:755 +#: ../../enterprise/include/ajax/ipam.ajax.php:833 +#: ../../enterprise/include/class/DeploymentCenter.class.php:1558 +#: ../../enterprise/include/class/AgentRepository.class.php:805 +#: ../../enterprise/include/class/Omnishell.class.php:504 +#: ../../enterprise/include/class/Omnishell.class.php:1155 +#: ../../enterprise/include/class/LogSource.class.php:892 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3088 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3400 +#: ../../enterprise/include/class/ManageBackups.class.php:443 +#: ../../enterprise/include/functions_services.php:2026 +#: ../../enterprise/include/lib/Metaconsole/Node.php:1183 +#: ../../enterprise/operation/agentes/transactional_map.php:414 +#: ../../enterprise/operation/agentes/transactional_map.php:478 +#: ../../enterprise/operation/agentes/manage_transmap_creation.php:268 +#: ../../enterprise/operation/services/services.list.php:649 +#: ../../enterprise/operation/services/services.list.php:743 +#: ../../enterprise/tools/ipam/ipam_supernet_config.php:1209 +#: ../../enterprise/tools/ipam/ipam_supernet_config.php:1347 +#: ../../enterprise/tools/ipam/ipam_network_location_config.php:287 +#: ../../enterprise/tools/ipam/ipam_vlan_config.php:726 +#: ../../enterprise/tools/ipam/ipam_vlan_config.php:856 +#: ../../update_manager_client/views/offline.php:72 +#: ../../update_manager_client/views/online.php:123 +#: ../../update_manager_client/views/online.php:164 #: ../../extensions/files_repo/files_repo_list.php:146 -#: ../../godmode/setup/news.php:290 ../../godmode/setup/links.php:160 -#: ../../godmode/servers/plugin.php:884 +#: ../../godmode/modules/manage_nc_groups.php:275 #: ../../godmode/modules/manage_network_components.php:864 #: ../../godmode/modules/manage_network_templates.php:272 #: ../../godmode/modules/manage_network_templates.php:287 -#: ../../godmode/modules/manage_nc_groups.php:275 -#: ../../godmode/category/category.php:192 -#: ../../godmode/category/category.php:211 -#: ../../godmode/reporting/map_builder.php:512 -#: ../../godmode/reporting/map_builder.php:523 -#: ../../godmode/reporting/graphs.php:362 -#: ../../godmode/reporting/create_container.php:682 -#: ../../godmode/reporting/visual_console_builder.elements.php:497 -#: ../../godmode/reporting/reporting_builder.php:1179 -#: ../../godmode/reporting/reporting_builder.php:1201 -#: ../../godmode/snmpconsole/snmp_alert.php:1308 -#: ../../godmode/snmpconsole/snmp_alert.php:1641 -#: ../../godmode/snmpconsole/snmp_filters.php:301 -#: ../../godmode/snmpconsole/snmp_filters.php:312 ../../godmode/tag/tag.php:395 -#: ../../godmode/events/event_filter.php:188 -#: ../../godmode/netflow/nf_edit.php:195 -#: ../../godmode/netflow/nf_item_list.php:262 -#: ../../godmode/massive/massive_operations.php:391 -#: ../../godmode/massive/massive_standby_alerts.php:254 -#: ../../godmode/massive/massive_edit_plugins.php:576 -#: ../../godmode/massive/massive_enable_disable_alerts.php:226 -#: ../../godmode/wizards/DiscoveryTaskList.class.php:664 -#: ../../godmode/wizards/DiscoveryTaskList.class.php:971 -#: ../../godmode/wizards/DiscoveryTaskList.class.php:997 -#: ../../godmode/wizards/DiscoveryTaskList.class.php:1010 -#: ../../godmode/wizards/DiscoveryTaskList.class.php:1021 +#: ../../godmode/groups/group_list.php:926 ../../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:1605 +#: ../../godmode/users/configure_user.php:1900 +#: ../../godmode/agentes/agent_template.php:259 +#: ../../godmode/agentes/modificar_agente.php:929 +#: ../../godmode/agentes/planned_downtime.editor.php:1015 +#: ../../godmode/agentes/fields_manager.php:155 +#: ../../godmode/agentes/agent_manager.php:237 +#: ../../godmode/agentes/module_manager_editor_common.php:233 #: ../../godmode/agentes/module_manager.php:1161 #: ../../godmode/agentes/module_manager.php:1175 #: ../../godmode/agentes/module_manager.php:1200 #: ../../godmode/agentes/module_manager.php:1223 #: ../../godmode/agentes/module_manager.php:1248 -#: ../../godmode/agentes/module_manager_editor_common.php:233 -#: ../../godmode/agentes/agent_manager.php:237 -#: ../../godmode/agentes/planned_downtime.editor.php:1015 -#: ../../godmode/agentes/fields_manager.php:155 -#: ../../godmode/agentes/agent_template.php:259 -#: ../../godmode/agentes/modificar_agente.php:929 -#: ../../godmode/alerts/alert_list.list.php:1116 +#: ../../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_filters.php:301 +#: ../../godmode/snmpconsole/snmp_filters.php:312 +#: ../../godmode/massive/massive_operations.php:391 +#: ../../godmode/massive/massive_standby_alerts.php:254 +#: ../../godmode/massive/massive_edit_plugins.php:576 +#: ../../godmode/massive/massive_enable_disable_alerts.php:226 #: ../../godmode/alerts/alert_actions.php:424 -#: ../../godmode/alerts/alert_templates.php:436 +#: ../../godmode/alerts/alert_list.list.php:1131 #: ../../godmode/alerts/alert_commands.php:721 #: ../../godmode/alerts/alert_commands.php:724 -#: ../../godmode/users/configure_user.php:1635 -#: ../../godmode/users/configure_user.php:1930 -#: ../../godmode/users/profile_list.php:439 -#: ../../godmode/groups/modu_group_list.php:273 -#: ../../godmode/groups/modu_group_list.php:276 -#: ../../godmode/groups/group_list.php:926 +#: ../../godmode/alerts/alert_templates.php:437 ../../godmode/setup/news.php:290 +#: ../../godmode/setup/links.php:160 ../../godmode/reporting/create_container.php:682 +#: ../../godmode/reporting/map_builder.php:512 +#: ../../godmode/reporting/map_builder.php:523 ../../godmode/reporting/graphs.php:362 +#: ../../godmode/reporting/visual_console_builder.elements.php:497 +#: ../../godmode/reporting/reporting_builder.php:1177 +#: ../../godmode/reporting/reporting_builder.php:1199 +#: ../../godmode/events/event_filter.php:188 +#: ../../godmode/wizards/DiscoveryTaskList.class.php:664 +#: ../../godmode/wizards/DiscoveryTaskList.class.php:971 +#: ../../godmode/wizards/DiscoveryTaskList.class.php:997 +#: ../../godmode/wizards/DiscoveryTaskList.class.php:1010 +#: ../../godmode/wizards/DiscoveryTaskList.class.php:1021 +#: ../../godmode/servers/plugin.php:884 ../../godmode/tag/tag.php:395 +#: ../../godmode/category/category.php:192 ../../godmode/category/category.php:211 +#: ../../include/functions_profile.php:278 ../../include/class/ConfigPEN.class.php:666 +#: ../../include/class/TreeGroupEdition.class.php:166 +#: ../../include/class/CredentialStore.class.php:1288 +#: ../../include/class/ModuleTemplates.class.php:918 +#: ../../include/class/ModuleTemplates.class.php:933 +#: ../../include/class/WelcomeWindow.class.php:171 +#: ../../include/functions_filemanager.php:715 ../../include/functions_container.php:190 +#: ../../include/functions_container.php:324 +#: ../../include/lib/Dashboard/Widgets/events_list.php:643 +#: ../../include/functions_events.php:3370 ../../operation/users/user_edit.php:1168 +#: ../../operation/agentes/pandora_networkmap.editor.php:600 +#: ../../operation/agentes/pandora_networkmap.php:801 +#: ../../operation/messages/message_list.php:272 +#: ../../operation/messages/message_list.php:275 +#: ../../operation/snmpconsole/snmp_browser.php:643 +#: ../../operation/snmpconsole/snmp_view.php:1033 +#: ../../operation/snmpconsole/snmp_view.php:1046 +#: ../../operation/snmpconsole/snmp_view.php:1220 +#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:197 +#: ../../operation/incidents/list_integriaims_incidents.php:554 msgid "Are you sure?" msgstr "ĀæEstĆ”s seguro?" #: ../../views/calendar/special_days.php:442 -#: ../../operation/events/events.php:638 ../../operation/events/events.php:710 -#: ../../operation/events/events_list.php:630 -#: ../../operation/events/events_list.php:703 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:4321 -#: ../../enterprise/include/functions_ui.php:120 -#: ../../enterprise/include/functions_ui.php:168 -#: ../../enterprise/godmode/massive/massive_edit_tags_policy.php:177 -#: ../../enterprise/godmode/massive/massive_tags_edit_policy.php:161 #: ../../enterprise/godmode/agentes/collection_manager.php:210 #: ../../enterprise/godmode/policies/policy_collections.php:173 -#: ../../godmode/events/event_edit_filter.php:537 -#: ../../godmode/events/event_edit_filter.php:590 +#: ../../enterprise/godmode/massive/massive_edit_tags_policy.php:177 +#: ../../enterprise/godmode/massive/massive_tags_edit_policy.php:161 +#: ../../enterprise/include/functions_ui.php:120 +#: ../../enterprise/include/functions_ui.php:168 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:4347 #: ../../godmode/alerts/configure_alert_template.php:1548 +#: ../../godmode/events/event_edit_filter.php:542 +#: ../../godmode/events/event_edit_filter.php:595 ../../operation/events/events.php:1167 +#: ../../operation/events/events.php:1239 msgid "Remove" msgstr "Eliminar" @@ -1744,285 +1824,28 @@ msgstr "Eliminar" msgid "Load calendar" msgstr "Cargar calendario" -#: ../../views/calendar/special_days_edit.php:40 -#: ../../operation/search_agents.php:57 -#: ../../operation/agentes/estado_agente.php:766 -#: ../../operation/agentes/ver_agente.php:1427 -#: ../../operation/search_results.php:106 ../../include/functions_reports.php:843 -#: ../../include/functions_reports.php:847 -#: ../../include/functions_reports.php:853 -#: ../../include/functions_reports.php:859 -#: ../../include/class/AgentsAlerts.class.php:542 -#: ../../include/functions_treeview.php:405 -#: ../../include/functions_reporting_html.php:2342 -#: ../../include/functions_reporting_html.php:5384 -#: ../../enterprise/operation/agentes/tag_view.php:608 -#: ../../enterprise/include/functions_policies.php:3763 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1537 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1630 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1755 -#: ../../enterprise/meta/monitoring/wizard/wizard.php:297 -#: ../../enterprise/meta/monitoring/wizard/wizard.module.web.php:102 -#: ../../enterprise/meta/monitoring/wizard/wizard.module.local.php:109 -#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:797 -#: ../../enterprise/meta/monitoring/wizard/wizard.module.network.php:121 -#: ../../enterprise/meta/agentsearch.php:141 -#: ../../enterprise/godmode/services/services.service.php:931 -#: ../../enterprise/godmode/massive/massive_create_services.php:877 -#: ../../enterprise/godmode/alerts/alert_inventory.php:78 -#: ../../enterprise/godmode/alerts/alert_inventory.php:80 -#: ../../enterprise/godmode/policies/policies.php:519 -#: ../../enterprise/godmode/policies/policy_alerts.php:46 -#: ../../mobile/operation/agent.php:355 ../../mobile/operation/home.php:74 -#: ../../mobile/operation/alerts.php:194 ../../mobile/operation/agents.php:98 -#: ../../mobile/operation/agents.php:407 -#: ../../mobile/include/functions_web.php:26 ../../godmode/menu.php:220 -#: ../../godmode/snmpconsole/snmp_alert.php:114 -#: ../../godmode/massive/massive_copy_modules.php:216 -#: ../../godmode/agentes/configurar_agente.php:422 -#: ../../godmode/agentes/modificar_agente.php:823 -#: ../../godmode/alerts/configure_alert_template.php:99 -#: ../../godmode/alerts/configure_alert_template.php:123 -#: ../../godmode/alerts/configure_alert_template.php:155 -#: ../../godmode/alerts/alert_actions.php:74 -#: ../../godmode/alerts/alert_templates.php:131 -#: ../../godmode/alerts/alert_templates.php:183 -#: ../../godmode/alerts/alert_templates.php:206 -#: ../../godmode/alerts/alert_templates.php:227 -#: ../../godmode/alerts/alert_commands.php:494 -#: ../../godmode/alerts/alert_list.php:494 -#: ../../godmode/alerts/alert_list.php:496 -#: ../../godmode/alerts/configure_alert_command.php:60 -#: ../../godmode/alerts/configure_alert_action.php:74 -#: ../../godmode/alerts/configure_alert_action.php:87 -#: ../../godmode/groups/configure_group.php:230 -#: ../../godmode/groups/group_list.php:846 -msgid "Alerts" -msgstr "Alertas" - -#: ../../views/calendar/special_days_edit.php:40 -msgid "Configure special day" -msgstr "Configurar dĆ­a especial" - -#: ../../views/calendar/special_days_edit.php:80 ../../general/logon_ok.php:249 -#: ../../operation/reporting/graph_viewer.php:348 -#: ../../operation/events/events.build_table.php:705 -#: ../../operation/incidents/list_integriaims_incidents.php:371 -#: ../../include/class/AuditLog.class.php:110 -#: ../../include/functions_events.php:7123 -#: ../../include/functions_reporting.php:4016 -#: ../../include/functions_reporting.php:4057 ../../include/functions.php:3046 -#: ../../include/functions_reporting_html.php:1778 -#: ../../include/functions_reporting_html.php:2583 -#: ../../include/functions_reporting_html.php:2592 -#: ../../include/functions_reporting_html.php:2597 -#: ../../include/functions_reporting_html.php:2606 -#: ../../include/functions_reporting_html.php:2611 -#: ../../include/functions_reporting_html.php:2618 -#: ../../include/functions_reporting_html.php:2667 -#: ../../include/functions_reporting_html.php:2740 -#: ../../include/functions_reporting_html.php:5726 -#: ../../enterprise/operation/agentes/agent_inventory.php:127 -#: ../../enterprise/operation/inventory/inventory.php:432 -#: ../../enterprise/include/functions_reporting_csv.php:776 -#: ../../enterprise/include/functions_reporting_csv.php:832 -#: ../../enterprise/include/functions_reporting_csv.php:877 -#: ../../enterprise/include/functions_reporting_csv.php:2518 -#: ../../enterprise/include/class/ManageBackups.class.php:163 -#: ../../enterprise/include/functions_inventory.php:882 -#: ../../enterprise/include/functions_log.php:279 -#: ../../enterprise/include/functions_log.php:282 -#: ../../enterprise/include/functions_reporting.php:2143 -#: ../../enterprise/include/functions_reporting.php:2180 -#: ../../enterprise/include/functions_reporting.php:2215 -#: ../../enterprise/include/functions_reporting.php:2233 -#: ../../enterprise/include/functions_reporting_pdf.php:712 -#: ../../extensions/insert_data.php:196 ../../mobile/operation/tactical.php:350 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2057 -msgid "Date" -msgstr "Fecha" - -#: ../../views/calendar/list.php:39 -msgid "Calendars" -msgstr "Calendarios" - -#: ../../views/calendar/list.php:92 -#: ../../operation/events/events.build_table.php:146 -#: ../../operation/incidents/list_integriaims_incidents.php:515 -#: ../../include/functions_events.php:6656 -#: ../../enterprise/tools/ipam/ipam_excel.php:130 -#: ../../enterprise/tools/ipam/ipam_excel.php:199 -#: ../../enterprise/tools/ipam/ipam_vlan_config.php:660 -#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:91 -#: ../../extensions/api_checker.php:161 ../../godmode/setup/os.list.php:68 -#: ../../godmode/modules/module_list.php:61 -#: ../../godmode/agentes/module_manager_editor_common.php:230 -#: ../../godmode/agentes/agent_manager.php:219 -#: ../../godmode/agentes/fields_manager.php:118 -#: ../../godmode/agentes/agent_incidents.php:88 -#: ../../godmode/alerts/alert_commands.php:656 -#: ../../godmode/groups/modu_group_list.php:251 -#: ../../godmode/groups/group_list.php:840 -msgid "ID" -msgstr "ID" - -#: ../../views/calendar/list.php:96 ../../views/dashboard/header.php:80 -#: ../../include/class/ExternalTools.class.php:383 -#: ../../include/class/ConfigPEN.class.php:601 -#: ../../include/class/CredentialStore.class.php:807 -#: ../../include/functions_events.php:302 -#: ../../enterprise/views/ncm/agent/details.php:92 -#: ../../enterprise/views/ncm/snippets/list.php:71 -#: ../../enterprise/views/ncm/firmwares/list.php:77 -#: ../../enterprise/views/ncm/vendors/list.php:71 -#: ../../enterprise/views/ncm/templates/list.php:77 -#: ../../enterprise/views/ncm/models/list.php:73 -#: ../../enterprise/views/ipam/sites/list.php:49 -#: ../../enterprise/views/cluster/list.php:64 -#: ../../enterprise/include/class/AgentRepository.class.php:635 -#: ../../enterprise/include/class/LogSource.class.php:630 -#: ../../enterprise/include/class/Omnishell.class.php:402 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2299 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2908 -#: ../../enterprise/include/class/DeploymentCenter.class.php:764 -#: ../../enterprise/meta/monitoring/wizard/wizard.create_module.php:266 -#: ../../enterprise/extensions/vmware/vmware_view.php:1338 -#: ../../enterprise/godmode/reporting/reporting_builder.template_list_item.php:261 -#: ../../godmode/reporting/reporting_builder.list_items.php:427 -#: ../../godmode/menu.php:539 -msgid "Options" -msgstr "Opciones" - -#: ../../views/calendar/list.php:119 -#: ../../operation/snmpconsole/snmp_view.php:600 -#: ../../operation/events/events.php:1128 -#: ../../operation/events/events_list.php:767 ../../include/ajax/module.php:292 -#: ../../include/class/ConfigPEN.class.php:627 -#: ../../include/class/CredentialStore.class.php:845 -#: ../../enterprise/views/ncm/snippets/list.php:102 -#: ../../enterprise/views/ncm/firmwares/list.php:108 -#: ../../enterprise/views/ncm/vendors/list.php:94 -#: ../../enterprise/views/ncm/devices/list.php:155 -#: ../../enterprise/views/ncm/templates/list.php:108 -#: ../../enterprise/views/ncm/models/list.php:96 -#: ../../enterprise/views/ipam/sites/list.php:73 -#: ../../enterprise/views/cluster/list.php:96 -#: ../../enterprise/include/class/LogSource.class.php:656 -#: ../../enterprise/include/lib/Metaconsole/Node.php:623 -#: ../../enterprise/include/functions_events.php:117 -#: ../../enterprise/include/functions_ipam.php:1663 -#: ../../enterprise/meta/advanced/metasetup.consoles.php:874 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3244 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:740 -#: ../../enterprise/godmode/massive/massive_delete_alerts_snmp.php:197 -#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:257 -#: ../../mobile/operation/modules.php:318 ../../mobile/operation/alerts.php:241 -#: ../../mobile/operation/events.php:701 ../../mobile/operation/agents.php:253 -#: ../../godmode/update_manager/update_manager.history.php:67 -#: ../../godmode/snmpconsole/snmp_alert.php:1161 -#: ../../godmode/events/event_edit_filter.php:361 -msgid "Free search" -msgstr "BĆŗsqueda libre" - -#: ../../views/dashboard/slides.php:41 -#: ../../operation/snmpconsole/snmp_view.php:741 -msgid "Exit fullscreen" -msgstr "Salir de pantalla completa" - -#: ../../views/dashboard/slides.php:181 -msgid "Change every" -msgstr "Cambiar cada" - -#: ../../views/dashboard/slides.php:203 ../../include/functions.php:3868 -#: ../../enterprise/meta/monitoring/wizard/wizard.module.web.php:212 -#: ../../enterprise/meta/monitoring/wizard/wizard.module.local.php:211 -#: ../../enterprise/meta/monitoring/wizard/wizard.agent.php:146 -#: ../../enterprise/meta/monitoring/wizard/wizard.module.network.php:252 -msgid "Previous" -msgstr "Anterior" - -#: ../../views/dashboard/slides.php:218 -#: ../../enterprise/operation/agentes/transactional_map.php:402 -msgid "Stop" -msgstr "Parar" - -#: ../../views/dashboard/slides.php:229 -msgid "Pause" -msgstr "Pausar" - -#: ../../views/dashboard/slides.php:240 -#: ../../include/class/CustomNetScan.class.php:550 -#: ../../enterprise/include/class/MicrosoftSQLServer.app.php:568 -#: ../../enterprise/include/class/Aws.cloud.php:1423 -#: ../../enterprise/include/class/MySQL.app.php:589 -#: ../../enterprise/include/class/Oracle.app.php:574 -#: ../../enterprise/include/class/DB2.app.php:567 -#: ../../enterprise/include/class/SAP.app.php:442 -#: ../../enterprise/include/class/Omnishell.class.php:643 -#: ../../enterprise/include/class/VMware.app.php:534 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:833 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1095 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1967 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2064 -#: ../../enterprise/include/lib/ClusterViewer/ClusterWizard.php:1200 -#: ../../enterprise/meta/monitoring/wizard/wizard.php:132 -#: ../../enterprise/meta/monitoring/wizard/wizard.module.web.php:215 -#: ../../enterprise/meta/monitoring/wizard/wizard.module.local.php:214 -#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:733 -#: ../../enterprise/meta/monitoring/wizard/wizard.agent.php:149 -#: ../../enterprise/meta/monitoring/wizard/wizard.module.network.php:262 -#: ../../enterprise/godmode/wizards/Cloud.class.php:579 -#: ../../godmode/wizards/HostDevices.class.php:769 -#: ../../godmode/alerts/configure_alert_template.php:1181 -#: ../../godmode/alerts/configure_alert_template.php:1188 -msgid "Next" -msgstr "Siguiente" - -#: ../../views/dashboard/slides.php:252 -msgid "Mode Cell" -msgstr "Modo celdas" - -#: ../../views/dashboard/slides.php:258 -msgid "Mode Layout" -msgstr "Modo esquema" - -#: ../../views/dashboard/cell.php:42 -msgid "New widget" -msgstr "Nuevo widget" - -#: ../../views/dashboard/cell.php:56 -msgid "Configure widget" -msgstr "Configurar widget" - -#: ../../views/dashboard/cell.php:68 -msgid "Delete widget" -msgstr "Eliminar widget" - #: ../../views/dashboard/header.php:43 -#: ../../operation/visual_console/legacy_view.php:205 -#: ../../operation/visual_console/view.php:210 -#: ../../operation/gis_maps/render_view.php:136 -#: ../../operation/reporting/graph_viewer.php:234 -#: ../../operation/reporting/reporting_viewer.php:186 -#: ../../include/class/AgentsAlerts.class.php:792 -#: ../../enterprise/operation/agentes/manage_transmap.php:141 #: ../../enterprise/meta/screens/screens.visualmap.php:274 +#: ../../enterprise/operation/agentes/manage_transmap.php:141 #: ../../extensions/disabled/matrix_events.php:35 -#: ../../extensions/agents_modules.php:380 -#: ../../extensions/agents_modules.php:387 +#: ../../extensions/agents_modules.php:380 ../../extensions/agents_modules.php:387 #: ../../extensions/agents_modules.php:390 +#: ../../include/class/AgentsAlerts.class.php:792 +#: ../../operation/visual_console/view.php:210 +#: ../../operation/visual_console/legacy_view.php:205 +#: ../../operation/gis_maps/render_view.php:136 +#: ../../operation/reporting/reporting_viewer.php:186 +#: ../../operation/reporting/graph_viewer.php:234 msgid "Full screen mode" msgstr "Modo pantalla completa" -#: ../../views/dashboard/header.php:57 -#: ../../operation/visual_console/legacy_view.php:253 +#: ../../views/dashboard/header.php:57 ../../extensions/agents_modules.php:531 +#: ../../include/class/AgentsAlerts.class.php:797 ../../operation/heatmap.php:210 #: ../../operation/visual_console/view.php:444 +#: ../../operation/visual_console/legacy_view.php:253 #: ../../operation/gis_maps/render_view.php:138 -#: ../../operation/reporting/graph_viewer.php:243 #: ../../operation/reporting/reporting_viewer.php:195 -#: ../../operation/heatmap.php:210 ../../operation/events/events.php:764 -#: ../../include/class/AgentsAlerts.class.php:797 -#: ../../extensions/agents_modules.php:531 +#: ../../operation/reporting/graph_viewer.php:243 ../../operation/events/events.php:1293 msgid "Back to normal mode" msgstr "Volver a modo normal" @@ -2031,29 +1854,27 @@ msgid "Update Dashboard" msgstr "Actualizar el panel de control" #: ../../views/dashboard/header.php:68 ../../views/dashboard/header.php:102 -#: ../../views/dashboard/list.php:224 -#: ../../operation/gis_maps/render_view.php:166 -#: ../../include/lib/Dashboard/Widgets/wux_transaction.php:377 -#: ../../include/functions_config.php:1286 -#: ../../include/functions_config.php:3181 -#: ../../enterprise/operation/services/services.service.php:161 -#: ../../enterprise/operation/services/services.list.php:237 -#: ../../enterprise/operation/services/services.list.php:552 -#: ../../enterprise/operation/services/services.service_map.php:151 -#: ../../enterprise/operation/services/services.table_services.php:159 +#: ../../views/dashboard/list.php:224 ../../enterprise/load_enterprise.php:643 +#: ../../enterprise/load_enterprise.php:1139 +#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:444 +#: ../../enterprise/godmode/services/services.elements.php:848 +#: ../../enterprise/godmode/services/services.elements.php:859 +#: ../../enterprise/include/class/Omnishell.class.php:1499 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3050 +#: ../../enterprise/include/lib/Metaconsole/Node.php:406 #: ../../enterprise/operation/agentes/transactional_map.php:321 #: ../../enterprise/operation/agentes/manage_transmap_creation.php:64 -#: ../../enterprise/include/class/Omnishell.class.php:1499 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3008 -#: ../../enterprise/include/lib/Metaconsole/Node.php:458 -#: ../../enterprise/load_enterprise.php:638 -#: ../../enterprise/load_enterprise.php:1134 -#: ../../enterprise/godmode/services/services.elements.php:843 -#: ../../enterprise/godmode/services/services.elements.php:854 -#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:444 +#: ../../enterprise/operation/services/services.service.php:161 +#: ../../enterprise/operation/services/services.service_map.php:151 +#: ../../enterprise/operation/services/services.list.php:237 +#: ../../enterprise/operation/services/services.list.php:552 +#: ../../enterprise/operation/services/services.table_services.php:159 #: ../../godmode/snmpconsole/snmp_alert.php:1548 #: ../../godmode/snmpconsole/snmp_alert.php:1563 #: ../../godmode/massive/massive_edit_agents.php:981 +#: ../../include/functions_config.php:1272 ../../include/functions_config.php:3159 +#: ../../include/lib/Dashboard/Widgets/wux_transaction.php:377 +#: ../../operation/gis_maps/render_view.php:166 msgid "Ok" msgstr "Aceptar" @@ -2073,27 +1894,25 @@ msgstr "Modo diapositivas" msgid "Show link to public dashboard" msgstr "Mostrar el enlace al dashboard pĆŗblico" -#: ../../views/dashboard/header.php:158 ../../general/login_page.php:75 -#: ../../general/login_page.php:318 -#: ../../operation/visual_console/legacy_public_view.php:141 -#: ../../operation/visual_console/legacy_view.php:267 -#: ../../operation/visual_console/view.php:457 -#: ../../operation/visual_console/public_view.php:123 -#: ../../operation/gis_maps/render_view.php:160 -#: ../../operation/reporting/graph_viewer.php:399 ../../operation/heatmap.php:168 -#: ../../operation/events/events.php:776 ../../include/ajax/module.php:1054 -#: ../../include/ajax/heatmap.ajax.php:47 -#: ../../include/class/AgentsAlerts.class.php:836 -#: ../../include/class/NetworkMap.class.php:2801 -#: ../../enterprise/views/ncm/devices/list.php:171 +#: ../../views/dashboard/header.php:158 ../../enterprise/views/ncm/devices/list.php:171 +#: ../../enterprise/meta/advanced/policymanager.queue.php:238 +#: ../../enterprise/godmode/policies/policy_queue.php:801 +#: ../../enterprise/godmode/servers/HA_cluster.php:416 #: ../../enterprise/include/class/Omnishell.class.php:544 #: ../../enterprise/include/class/Omnishell.class.php:1329 #: ../../enterprise/include/functions_ipam.php:1396 -#: ../../enterprise/meta/advanced/policymanager.queue.php:238 -#: ../../enterprise/godmode/servers/HA_cluster.php:416 -#: ../../enterprise/godmode/policies/policy_queue.php:801 #: ../../extensions/agents_modules.php:543 #: ../../godmode/wizards/DiscoveryTaskList.class.php:191 +#: ../../include/ajax/heatmap.ajax.php:47 ../../include/ajax/module.php:1054 +#: ../../include/class/NetworkMap.class.php:2801 +#: ../../include/class/AgentsAlerts.class.php:836 ../../operation/heatmap.php:168 +#: ../../operation/visual_console/view.php:457 +#: ../../operation/visual_console/legacy_public_view.php:141 +#: ../../operation/visual_console/legacy_view.php:267 +#: ../../operation/visual_console/public_view.php:123 +#: ../../operation/gis_maps/render_view.php:160 +#: ../../operation/reporting/graph_viewer.php:399 ../../operation/events/events.php:1305 +#: ../../general/login_page.php:75 ../../general/login_page.php:318 msgid "Refresh" msgstr "Actualizar" @@ -2102,152 +1921,113 @@ msgid "Add Cell" msgstr "AƱadir celda" #: ../../views/dashboard/header.php:278 ../../views/dashboard/list.php:42 -#: ../../enterprise/meta/general/main_menu.php:309 #: ../../enterprise/meta/general/main_header.php:222 +#: ../../enterprise/meta/general/main_menu.php:311 msgid "Dashboards" msgstr "Dashboards" #: ../../views/dashboard/header.php:278 -#: ../../operation/snmpconsole/snmp_statistics.php:66 -#: ../../operation/snmpconsole/snmp_view.php:107 -#: ../../operation/events/events.php:932 ../../include/functions_html.php:1894 -#: ../../include/functions_html.php:1895 ../../include/functions_html.php:2005 -#: ../../include/functions_html.php:2006 ../../include/functions_html.php:2185 -#: ../../include/functions_html.php:2186 #: ../../enterprise/godmode/alerts/alert_inventory.php:78 -#: ../../godmode/category/category.php:89 #: ../../godmode/agentes/planned_downtime.editor.php:59 -#: ../../godmode/alerts/alert_list.php:494 +#: ../../godmode/alerts/alert_list.php:494 ../../godmode/category/category.php:89 +#: ../../include/functions_html.php:1906 ../../include/functions_html.php:1907 +#: ../../include/functions_html.php:2017 ../../include/functions_html.php:2018 +#: ../../include/functions_html.php:2197 ../../include/functions_html.php:2198 +#: ../../operation/snmpconsole/snmp_statistics.php:66 +#: ../../operation/snmpconsole/snmp_view.php:107 ../../operation/events/events.php:1461 msgid "List" msgstr "Lista" -#: ../../views/dashboard/widget.php:35 ../../views/dashboard/listWidgets.php:85 -msgid "Add widget" -msgstr "Agregar widget" - -#: ../../views/dashboard/widget.php:45 -msgid "Please select widget" -msgstr "Seleccione un widget" - -#: ../../views/dashboard/jsLayout.php:42 -#: ../../operation/snmpconsole/snmp_view.php:1298 -#: ../../operation/events/events.php:2763 ../../extensions/agents_modules.php:76 -msgid "Until next" -msgstr "Hasta el prĆ³ximo" - -#: ../../views/dashboard/formDashboard.php:91 -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:499 -#: ../../godmode/reporting/reporting_builder.php:938 -msgid "Private" -msgstr "Privado" - -#: ../../views/dashboard/formDashboard.php:122 -#: ../../enterprise/godmode/services/services.service.php:736 -#: ../../enterprise/godmode/reporting/visual_console_template.php:272 -#: ../../enterprise/godmode/massive/massive_create_services.php:809 -msgid "Favourite" -msgstr "Favorito" - #: ../../views/dashboard/list.php:53 -#: ../../operation/messages/message_list.php:113 -#: ../../operation/messages/message_list.php:135 -#: ../../operation/gis_maps/gis_map.php:86 -#: ../../operation/reporting/graph_viewer.php:57 -#: ../../operation/reporting/graph_viewer.php:65 -#: ../../operation/snmpconsole/snmp_view.php:155 -#: ../../operation/incidents/list_integriaims_incidents.php:295 -#: ../../include/class/ConfigPEN.class.php:486 -#: ../../enterprise/tools/ipam/ipam_vlan_config.php:132 -#: ../../enterprise/tools/ipam/ipam_network_location_config.php:87 -#: ../../enterprise/tools/ipam/ipam_action.php:102 -#: ../../enterprise/tools/ipam/ipam_supernet_config.php:152 -#: ../../enterprise/operation/agentes/transactional_map.php:182 -#: ../../enterprise/operation/agentes/manage_transmap_creation.php:82 -#: ../../enterprise/include/class/DatabaseHA.class.php:1057 #: ../../enterprise/meta/advanced/agents_setup.move_agents.php:288 #: ../../enterprise/meta/advanced/metasetup.relations.php:86 #: ../../enterprise/meta/advanced/links.php:84 -#: ../../enterprise/godmode/setup/setup_metaconsole.php:138 #: ../../enterprise/godmode/modules/local_components.php:417 -#: ../../enterprise/godmode/reporting/reporting_builder.template_list_item.php:165 -#: ../../enterprise/godmode/reporting/graph_template_item_editor.php:129 -#: ../../enterprise/godmode/reporting/graph_template_item_editor.php:157 +#: ../../enterprise/godmode/alerts/alert_inventory_list.php:68 +#: ../../enterprise/godmode/alerts/alert_inventory_list.php:118 +#: ../../enterprise/godmode/setup/setup_metaconsole.php:138 #: ../../enterprise/godmode/reporting/graph_template_list.php:155 #: ../../enterprise/godmode/reporting/graph_template_list.php:182 #: ../../enterprise/godmode/reporting/reporting_builder.template.php:424 #: ../../enterprise/godmode/reporting/reporting_builder.template.php:442 -#: ../../enterprise/godmode/alerts/alert_inventory_list.php:68 -#: ../../enterprise/godmode/alerts/alert_inventory_list.php:118 -#: ../../extensions/files_repo.php:184 ../../godmode/setup/news.php:120 -#: ../../godmode/setup/gis.php:61 ../../godmode/setup/links.php:76 +#: ../../enterprise/godmode/reporting/graph_template_item_editor.php:129 +#: ../../enterprise/godmode/reporting/graph_template_item_editor.php:157 +#: ../../enterprise/godmode/reporting/reporting_builder.template_list_item.php:165 +#: ../../enterprise/include/class/DatabaseHA.class.php:1057 +#: ../../enterprise/operation/agentes/transactional_map.php:182 +#: ../../enterprise/operation/agentes/manage_transmap_creation.php:82 +#: ../../enterprise/tools/ipam/ipam_supernet_config.php:152 +#: ../../enterprise/tools/ipam/ipam_action.php:102 +#: ../../enterprise/tools/ipam/ipam_network_location_config.php:87 +#: ../../enterprise/tools/ipam/ipam_vlan_config.php:132 +#: ../../extensions/files_repo.php:184 ../../godmode/modules/manage_nc_groups.php:152 #: ../../godmode/modules/manage_network_components.php:552 -#: ../../godmode/modules/manage_nc_groups.php:152 -#: ../../godmode/reporting/map_builder.php:209 -#: ../../godmode/reporting/graphs.php:150 ../../godmode/reporting/graphs.php:162 -#: ../../godmode/reporting/graphs.php:213 -#: ../../godmode/reporting/reporting_builder.php:668 +#: ../../godmode/users/profile_list.php:133 ../../godmode/users/user_list.php:293 +#: ../../godmode/users/user_list.php:340 ../../godmode/users/configure_user.php:137 +#: ../../godmode/users/configure_user.php:157 +#: ../../godmode/agentes/planned_downtime.list.php:242 +#: ../../godmode/netflow/nf_item_list.php:120 ../../godmode/netflow/nf_item_list.php:148 +#: ../../godmode/netflow/nf_edit.php:104 ../../godmode/netflow/nf_edit.php:137 #: ../../godmode/snmpconsole/snmp_alert.php:686 #: ../../godmode/snmpconsole/snmp_filters.php:180 -#: ../../godmode/events/event_filter.php:69 -#: ../../godmode/events/event_filter.php:96 ../../godmode/netflow/nf_edit.php:104 -#: ../../godmode/netflow/nf_edit.php:137 -#: ../../godmode/netflow/nf_item_list.php:120 -#: ../../godmode/netflow/nf_item_list.php:148 -#: ../../godmode/massive/massive_delete_modules.php:162 #: ../../godmode/massive/massive_delete_action_alerts.php:170 +#: ../../godmode/massive/massive_delete_modules.php:162 #: ../../godmode/massive/massive_delete_alerts.php:201 -#: ../../godmode/agentes/planned_downtime.list.php:242 #: ../../godmode/alerts/alert_actions.php:205 -#: ../../godmode/alerts/alert_templates.php:252 #: ../../godmode/alerts/alert_commands.php:604 -#: ../../godmode/alerts/alert_list.php:232 -#: ../../godmode/alerts/alert_list.php:339 ../../godmode/users/user_list.php:293 -#: ../../godmode/users/user_list.php:340 -#: ../../godmode/users/configure_user.php:137 -#: ../../godmode/users/configure_user.php:157 -#: ../../godmode/users/profile_list.php:133 +#: ../../godmode/alerts/alert_templates.php:252 ../../godmode/alerts/alert_list.php:232 +#: ../../godmode/alerts/alert_list.php:339 ../../godmode/setup/news.php:120 +#: ../../godmode/setup/gis.php:61 ../../godmode/setup/links.php:76 +#: ../../godmode/reporting/map_builder.php:209 ../../godmode/reporting/graphs.php:150 +#: ../../godmode/reporting/graphs.php:162 ../../godmode/reporting/graphs.php:213 +#: ../../godmode/reporting/reporting_builder.php:668 +#: ../../godmode/events/event_filter.php:69 ../../godmode/events/event_filter.php:96 +#: ../../include/class/ConfigPEN.class.php:486 +#: ../../operation/messages/message_list.php:113 +#: ../../operation/messages/message_list.php:135 +#: ../../operation/snmpconsole/snmp_view.php:155 ../../operation/gis_maps/gis_map.php:86 +#: ../../operation/incidents/list_integriaims_incidents.php:295 +#: ../../operation/reporting/graph_viewer.php:57 +#: ../../operation/reporting/graph_viewer.php:65 msgid "Successfully deleted" msgstr "Eliminado correctamente" #: ../../views/dashboard/list.php:54 -#: ../../operation/messages/message_list.php:114 -#: ../../operation/gis_maps/gis_map.php:87 -#: ../../operation/snmpconsole/snmp_view.php:156 -#: ../../operation/agentes/pandora_networkmap.php:547 -#: ../../operation/incidents/list_integriaims_incidents.php:296 -#: ../../enterprise/tools/ipam/ipam_vlan_config.php:130 -#: ../../enterprise/tools/ipam/ipam_action.php:100 -#: ../../enterprise/tools/ipam/ipam_supernet_config.php:150 -#: ../../enterprise/operation/agentes/transactional_map.php:183 -#: ../../enterprise/operation/agentes/manage_transmap_creation.php:83 -#: ../../enterprise/godmode/setup/setup_metaconsole.php:139 #: ../../enterprise/godmode/modules/local_components.php:418 -#: ../../enterprise/godmode/reporting/reporting_builder.template_list_item.php:166 -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:425 -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:443 -#: ../../enterprise/godmode/alerts/alert_inventory_list.php:69 -#: ../../enterprise/godmode/alerts/alert_inventory_list.php:119 -#: ../../enterprise/godmode/policies/policy_agents.php:104 -#: ../../enterprise/godmode/policies/policy_agents.php:126 +#: ../../enterprise/godmode/policies/policy_alerts.php:256 +#: ../../enterprise/godmode/policies/policy_alerts.php:302 #: ../../enterprise/godmode/policies/policy_modules.php:1313 #: ../../enterprise/godmode/policies/policy_external_alerts.php:147 #: ../../enterprise/godmode/policies/policy_external_alerts.php:174 #: ../../enterprise/godmode/policies/policy_inventory_modules.php:166 -#: ../../enterprise/godmode/policies/policy_alerts.php:256 -#: ../../enterprise/godmode/policies/policy_alerts.php:302 #: ../../enterprise/godmode/policies/policy_collections.php:100 -#: ../../extensions/files_repo.php:184 ../../godmode/setup/news.php:121 -#: ../../godmode/setup/gis.php:59 +#: ../../enterprise/godmode/policies/policy_agents.php:104 +#: ../../enterprise/godmode/policies/policy_agents.php:126 +#: ../../enterprise/godmode/alerts/alert_inventory_list.php:69 +#: ../../enterprise/godmode/alerts/alert_inventory_list.php:119 +#: ../../enterprise/godmode/setup/setup_metaconsole.php:139 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:425 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:443 +#: ../../enterprise/godmode/reporting/reporting_builder.template_list_item.php:166 +#: ../../enterprise/operation/agentes/transactional_map.php:183 +#: ../../enterprise/operation/agentes/manage_transmap_creation.php:83 +#: ../../enterprise/tools/ipam/ipam_supernet_config.php:150 +#: ../../enterprise/tools/ipam/ipam_action.php:100 +#: ../../enterprise/tools/ipam/ipam_vlan_config.php:130 +#: ../../extensions/files_repo.php:184 #: ../../godmode/modules/manage_network_components.php:553 -#: ../../godmode/reporting/reporting_builder.php:669 +#: ../../godmode/users/configure_user.php:138 #: ../../godmode/massive/massive_delete_action_alerts.php:171 #: ../../godmode/massive/massive_delete_alerts.php:202 #: ../../godmode/alerts/alert_actions.php:206 -#: ../../godmode/alerts/alert_templates.php:253 #: ../../godmode/alerts/alert_commands.php:605 -#: ../../godmode/alerts/alert_list.php:233 -#: ../../godmode/alerts/alert_list.php:340 -#: ../../godmode/users/configure_user.php:138 +#: ../../godmode/alerts/alert_templates.php:253 ../../godmode/alerts/alert_list.php:233 +#: ../../godmode/alerts/alert_list.php:340 ../../godmode/setup/news.php:121 +#: ../../godmode/setup/gis.php:59 ../../godmode/reporting/reporting_builder.php:669 +#: ../../operation/agentes/pandora_networkmap.php:547 +#: ../../operation/messages/message_list.php:114 +#: ../../operation/snmpconsole/snmp_view.php:156 ../../operation/gis_maps/gis_map.php:87 +#: ../../operation/incidents/list_integriaims_incidents.php:296 msgid "Could not be deleted" msgstr "No se pudo eliminar" @@ -2271,206 +2051,195 @@ msgstr "Celdas" msgid "Favorite" msgstr "Favorito" -#: ../../views/dashboard/list.php:99 -#: ../../operation/snmpconsole/snmp_browser.php:68 -#: ../../operation/snmpconsole/snmp_statistics.php:54 -#: ../../operation/snmpconsole/snmp_view.php:128 ../../operation/heatmap.php:87 -#: ../../operation/events/events.php:819 -#: ../../operation/agentes/networkmap.dinamic.php:115 +#: ../../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:2279 -#: ../../include/class/AgentsAlerts.class.php:822 +#: ../../operation/snmpconsole/snmp_statistics.php:54 +#: ../../operation/snmpconsole/snmp_browser.php:68 +#: ../../operation/snmpconsole/snmp_view.php:128 ../../operation/events/events.php:1348 msgid "Full screen" msgstr "Pantalla completa" #: ../../views/dashboard/list.php:102 -#: ../../operation/agentes/pandora_networkmap.php:712 -#: ../../operation/agentes/pandora_networkmap.php:799 -#: ../../enterprise/godmode/massive/massive_add_modules_policy.php:230 #: ../../enterprise/godmode/policies/policy_modules.php:1673 #: ../../enterprise/godmode/policies/policies.php:570 -#: ../../godmode/reporting/map_builder.php:387 +#: ../../enterprise/godmode/massive/massive_add_modules_policy.php:230 #: ../../godmode/agentes/planned_downtime.list.php:623 #: ../../godmode/agentes/planned_downtime.list.php:749 #: ../../godmode/agentes/planned_downtime.list.php:795 #: ../../godmode/alerts/alert_actions.php:330 +#: ../../godmode/reporting/map_builder.php:387 +#: ../../operation/agentes/pandora_networkmap.php:712 +#: ../../operation/agentes/pandora_networkmap.php:799 msgid "Copy" msgstr "Copiar" #: ../../views/dashboard/list.php:103 -#: ../../operation/messages/message_list.php:201 -#: ../../operation/messages/message_list.php:272 -#: ../../operation/messages/message_list.php:275 -#: ../../operation/messages/message_list.php:293 -#: ../../operation/visual_console/view.php:733 -#: ../../operation/gis_maps/gis_map.php:190 -#: ../../operation/snmpconsole/snmp_view.php:1038 -#: ../../operation/snmpconsole/snmp_view.php:1051 -#: ../../operation/snmpconsole/snmp_view.php:1220 -#: ../../operation/snmpconsole/snmp_view.php:1269 -#: ../../operation/agentes/pandora_networkmap.php:714 -#: ../../operation/agentes/pandora_networkmap.php:801 -#: ../../operation/incidents/list_integriaims_incidents.php:555 -#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:120 -#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:198 -#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:251 -#: ../../include/functions_cron.php:895 ../../include/functions_cron.php:923 -#: ../../include/class/ModuleTemplates.class.php:933 -#: ../../include/class/ModuleTemplates.class.php:1211 -#: ../../include/class/ManageNetScanScripts.class.php:405 -#: ../../include/class/ConfigPEN.class.php:264 -#: ../../include/class/CredentialStore.class.php:1102 -#: ../../include/class/CredentialStore.class.php:1290 -#: ../../include/class/CalendarManager.class.php:686 -#: ../../include/class/NetworkMap.class.php:2798 -#: ../../include/functions_container.php:191 -#: ../../include/functions_container.php:325 -#: ../../enterprise/tools/ipam/ipam_vlan_config.php:807 -#: ../../enterprise/tools/ipam/ipam_network_location_config.php:288 -#: ../../enterprise/tools/ipam/ipam_network_location_config.php:304 -#: ../../enterprise/tools/ipam/ipam_ajax.php:136 -#: ../../enterprise/tools/ipam/ipam_supernet_config.php:1297 -#: ../../enterprise/operation/services/services.list.php:655 -#: ../../enterprise/operation/agentes/transactional_map.php:483 -#: ../../enterprise/operation/agentes/manage_transmap_creation.php:269 -#: ../../enterprise/include/ajax/log_viewer.ajax.php:96 -#: ../../enterprise/include/ajax/servers.ajax.php:103 +#: ../../enterprise/meta/advanced/servers.build_table.php:133 +#: ../../enterprise/meta/advanced/metasetup.visual.php:434 +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:570 +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:598 +#: ../../enterprise/meta/advanced/metasetup.relations.php:589 +#: ../../enterprise/meta/advanced/metasetup.relations.php:590 +#: ../../enterprise/meta/advanced/metasetup.relations.php:634 +#: ../../enterprise/meta/advanced/links.php:157 +#: ../../enterprise/meta/advanced/policymanager.queue.php:220 +#: ../../enterprise/meta/advanced/policymanager.queue.php:262 +#: ../../enterprise/meta/advanced/policymanager.queue.php:319 +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:298 +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:464 +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:815 +#: ../../enterprise/meta/include/functions_autoprovision.php:517 +#: ../../enterprise/meta/include/functions_autoprovision.php:518 +#: ../../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:317 +#: ../../enterprise/godmode/modules/manage_inventory_modules.php:332 +#: ../../enterprise/godmode/modules/local_components.php:698 +#: ../../enterprise/godmode/modules/local_components.php:715 +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:807 +#: ../../enterprise/godmode/agentes/inventory_manager.php:249 +#: ../../enterprise/godmode/agentes/plugins_manager.php:196 +#: ../../enterprise/godmode/agentes/plugins_manager.php:281 +#: ../../enterprise/godmode/policies/policy_plugins.php:169 +#: ../../enterprise/godmode/policies/policy_alerts.php:539 +#: ../../enterprise/godmode/policies/policy_modules.php:1586 +#: ../../enterprise/godmode/policies/policy_modules.php:1618 +#: ../../enterprise/godmode/policies/policy_queue.php:611 +#: ../../enterprise/godmode/policies/policy_queue.php:675 +#: ../../enterprise/godmode/policies/policy_queue.php:722 +#: ../../enterprise/godmode/policies/policies.php:591 +#: ../../enterprise/godmode/policies/policy_external_alerts.php:550 +#: ../../enterprise/godmode/policies/policy_inventory_modules.php:334 +#: ../../enterprise/godmode/policies/policy_agents.php:1083 +#: ../../enterprise/godmode/policies/policy_agents.php:1545 +#: ../../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 +#: ../../enterprise/godmode/massive/massive_delete_services.php:92 +#: ../../enterprise/godmode/setup/setup_acl.php:595 +#: ../../enterprise/godmode/reporting/graph_template_list.php:246 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:646 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:674 +#: ../../enterprise/godmode/reporting/graph_template_item_editor.php:215 +#: ../../enterprise/godmode/reporting/graph_template_item_editor.php:225 +#: ../../enterprise/godmode/reporting/visual_console_template.php:273 +#: ../../enterprise/godmode/reporting/mysql_builder.php:97 +#: ../../enterprise/godmode/reporting/mysql_builder.php:104 +#: ../../enterprise/godmode/reporting/reporting_builder.template_list_item.php:389 +#: ../../enterprise/godmode/servers/credential_boxes_satellite.php:252 +#: ../../enterprise/godmode/servers/credential_boxes_satellite.php:287 +#: ../../enterprise/include/functions_tasklist.php:615 +#: ../../enterprise/include/functions_tasklist.php:650 #: ../../enterprise/include/ajax/transactional.ajax.php:119 #: ../../enterprise/include/ajax/transactional.ajax.php:208 -#: ../../enterprise/include/class/AgentRepository.class.php:775 -#: ../../enterprise/include/class/AgentRepository.class.php:810 -#: ../../enterprise/include/class/LogSource.class.php:772 -#: ../../enterprise/include/class/LogSource.class.php:894 -#: ../../enterprise/include/class/ManageBackups.class.php:275 -#: ../../enterprise/include/class/Omnishell.class.php:1163 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2399 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3054 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3374 +#: ../../enterprise/include/ajax/log_viewer.ajax.php:96 +#: ../../enterprise/include/ajax/servers.ajax.php:103 +#: ../../enterprise/include/class/DeploymentCenter.class.php:1537 +#: ../../enterprise/include/class/DeploymentCenter.class.php:1576 #: ../../enterprise/include/class/NetworkConfigManager.class.php:644 #: ../../enterprise/include/class/NetworkConfigManager.class.php:800 #: ../../enterprise/include/class/NetworkConfigManager.class.php:976 #: ../../enterprise/include/class/NetworkConfigManager.class.php:1123 #: ../../enterprise/include/class/NetworkConfigManager.class.php:1331 -#: ../../enterprise/include/class/DeploymentCenter.class.php:1537 -#: ../../enterprise/include/class/DeploymentCenter.class.php:1576 -#: ../../enterprise/include/functions_tasklist.php:615 -#: ../../enterprise/include/functions_tasklist.php:650 +#: ../../enterprise/include/class/AgentRepository.class.php:788 +#: ../../enterprise/include/class/AgentRepository.class.php:823 +#: ../../enterprise/include/class/Omnishell.class.php:1163 +#: ../../enterprise/include/class/LogSource.class.php:772 +#: ../../enterprise/include/class/LogSource.class.php:894 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2441 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3096 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3416 +#: ../../enterprise/include/class/ManageBackups.class.php:275 #: ../../enterprise/include/lib/ClusterViewer/ClusterManager.php:634 -#: ../../enterprise/include/lib/Metaconsole/Node.php:1252 -#: ../../enterprise/include/lib/Metaconsole/Node.php:1253 -#: ../../enterprise/meta/include/functions_autoprovision.php:517 -#: ../../enterprise/meta/include/functions_autoprovision.php:518 -#: ../../enterprise/meta/include/functions_autoprovision.php:685 -#: ../../enterprise/meta/include/functions_autoprovision.php:686 -#: ../../enterprise/meta/include/functions_wizard_meta.php:398 -#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:301 -#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:467 -#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:818 -#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:570 -#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:598 -#: ../../enterprise/meta/advanced/policymanager.queue.php:220 -#: ../../enterprise/meta/advanced/policymanager.queue.php:262 -#: ../../enterprise/meta/advanced/policymanager.queue.php:319 -#: ../../enterprise/meta/advanced/metasetup.relations.php:589 -#: ../../enterprise/meta/advanced/metasetup.relations.php:590 -#: ../../enterprise/meta/advanced/metasetup.relations.php:634 -#: ../../enterprise/meta/advanced/servers.build_table.php:133 -#: ../../enterprise/meta/advanced/metasetup.visual.php:434 -#: ../../enterprise/meta/advanced/links.php:157 -#: ../../enterprise/godmode/setup/setup_acl.php:595 -#: ../../enterprise/godmode/servers/credential_boxes_satellite.php:252 -#: ../../enterprise/godmode/servers/credential_boxes_satellite.php:287 -#: ../../enterprise/godmode/modules/local_components.php:698 -#: ../../enterprise/godmode/modules/local_components.php:715 -#: ../../enterprise/godmode/modules/manage_inventory_modules.php:317 -#: ../../enterprise/godmode/modules/manage_inventory_modules.php:332 -#: ../../enterprise/godmode/reporting/visual_console_template.php:273 -#: ../../enterprise/godmode/reporting/reporting_builder.template_list_item.php:389 -#: ../../enterprise/godmode/reporting/mysql_builder.php:97 -#: ../../enterprise/godmode/reporting/mysql_builder.php:104 -#: ../../enterprise/godmode/reporting/graph_template_item_editor.php:215 -#: ../../enterprise/godmode/reporting/graph_template_item_editor.php:225 -#: ../../enterprise/godmode/reporting/graph_template_list.php:246 -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:646 -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:674 -#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:413 -#: ../../enterprise/godmode/massive/massive_delete_alerts_policy.php:148 -#: ../../enterprise/godmode/massive/massive_delete_services.php:92 -#: ../../enterprise/godmode/massive/massive_delete_alerts_snmp.php:238 -#: ../../enterprise/godmode/agentes/inventory_manager.php:249 -#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:652 -#: ../../enterprise/godmode/agentes/plugins_manager.php:196 -#: ../../enterprise/godmode/agentes/plugins_manager.php:281 -#: ../../enterprise/godmode/policies/policy_agents.php:1083 -#: ../../enterprise/godmode/policies/policy_agents.php:1545 -#: ../../enterprise/godmode/policies/policy_queue.php:611 -#: ../../enterprise/godmode/policies/policy_queue.php:675 -#: ../../enterprise/godmode/policies/policy_queue.php:722 -#: ../../enterprise/godmode/policies/policy_modules.php:1586 -#: ../../enterprise/godmode/policies/policy_modules.php:1618 -#: ../../enterprise/godmode/policies/policies.php:591 -#: ../../enterprise/godmode/policies/policy_external_alerts.php:550 -#: ../../enterprise/godmode/policies/policy_inventory_modules.php:334 -#: ../../enterprise/godmode/policies/policy_alerts.php:539 -#: ../../enterprise/godmode/policies/policy_plugins.php:169 +#: ../../enterprise/include/lib/Metaconsole/Node.php:1193 +#: ../../enterprise/include/lib/Metaconsole/Node.php:1194 +#: ../../enterprise/operation/agentes/transactional_map.php:483 +#: ../../enterprise/operation/agentes/manage_transmap_creation.php:269 +#: ../../enterprise/operation/services/services.list.php:655 +#: ../../enterprise/tools/ipam/ipam_supernet_config.php:1297 +#: ../../enterprise/tools/ipam/ipam_network_location_config.php:288 +#: ../../enterprise/tools/ipam/ipam_network_location_config.php:304 +#: ../../enterprise/tools/ipam/ipam_ajax.php:136 +#: ../../enterprise/tools/ipam/ipam_vlan_config.php:807 #: ../../extensions/files_repo/files_repo_list.php:151 -#: ../../godmode/setup/snmp_wizard.php:110 -#: ../../godmode/setup/setup_visuals.php:1320 -#: ../../godmode/setup/setup_visuals.php:1359 -#: ../../godmode/setup/setup_visuals.php:1379 ../../godmode/setup/news.php:251 -#: ../../godmode/setup/gis.php:70 ../../godmode/setup/links.php:146 -#: ../../godmode/servers/servers.build_table.php:259 +#: ../../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_network_components.php:868 #: ../../godmode/modules/manage_network_components.php:869 #: ../../godmode/modules/manage_network_components.php:898 #: ../../godmode/modules/manage_network_templates.php:287 #: ../../godmode/modules/manage_network_templates.php:300 -#: ../../godmode/modules/manage_network_templates_form.php:254 -#: ../../godmode/modules/manage_nc_groups.php:276 -#: ../../godmode/modules/manage_nc_groups.php:305 -#: ../../godmode/extensions.php:257 ../../godmode/extensions.php:259 -#: ../../godmode/reporting/map_builder.php:388 -#: ../../godmode/reporting/map_builder.php:512 -#: ../../godmode/reporting/map_builder.php:523 -#: ../../godmode/reporting/graphs.php:367 ../../godmode/reporting/graphs.php:368 -#: ../../godmode/reporting/graphs.php:394 +#: ../../godmode/groups/group_list.php:937 ../../godmode/groups/group_list.php:938 +#: ../../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:825 ../../godmode/agentes/agent_template.php:259 +#: ../../godmode/agentes/planned_downtime.list.php:625 +#: ../../godmode/agentes/planned_downtime.list.php:774 +#: ../../godmode/agentes/planned_downtime.editor.php:968 +#: ../../godmode/agentes/planned_downtime.editor.php:971 +#: ../../godmode/agentes/planned_downtime.editor.php:1021 +#: ../../godmode/agentes/fields_manager.php:155 +#: ../../godmode/agentes/module_manager_editor_common.php:1307 +#: ../../godmode/agentes/module_manager.php:868 +#: ../../godmode/agentes/module_manager.php:1228 +#: ../../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 +#: ../../godmode/snmpconsole/snmp_alert.php:1313 +#: ../../godmode/snmpconsole/snmp_filters.php:301 +#: ../../godmode/snmpconsole/snmp_filters.php:312 +#: ../../godmode/alerts/alert_actions.php:331 ../../godmode/alerts/alert_actions.php:449 +#: ../../godmode/alerts/alert_list.list.php:927 +#: ../../godmode/alerts/alert_templates.php:446 ../../godmode/setup/news.php:251 +#: ../../godmode/setup/gis.php:70 ../../godmode/setup/links.php:146 +#: ../../godmode/setup/snmp_wizard.php:110 ../../godmode/setup/setup_visuals.php:1374 +#: ../../godmode/setup/setup_visuals.php:1413 ../../godmode/setup/setup_visuals.php:1433 #: ../../godmode/reporting/reporting_builder.list_items.php:629 #: ../../godmode/reporting/reporting_builder.list_items.php:667 #: ../../godmode/reporting/reporting_builder.list_items.php:690 #: ../../godmode/reporting/reporting_builder.list_items.php:791 #: ../../godmode/reporting/create_container.php:630 #: ../../godmode/reporting/create_container.php:683 -#: ../../godmode/reporting/visual_console_builder.elements.php:763 -#: ../../godmode/reporting/reporting_builder.php:1209 -#: ../../godmode/reporting/reporting_builder.php:1293 +#: ../../godmode/reporting/map_builder.php:388 +#: ../../godmode/reporting/map_builder.php:512 +#: ../../godmode/reporting/map_builder.php:523 ../../godmode/reporting/graphs.php:367 +#: ../../godmode/reporting/graphs.php:368 ../../godmode/reporting/graphs.php:394 #: ../../godmode/reporting/graph_builder.graph_editor.php:216 #: ../../godmode/reporting/graph_builder.graph_editor.php:256 -#: ../../godmode/snmpconsole/snmp_alert.php:1313 -#: ../../godmode/snmpconsole/snmp_filters.php:301 -#: ../../godmode/snmpconsole/snmp_filters.php:312 +#: ../../godmode/reporting/visual_console_builder.elements.php:763 +#: ../../godmode/reporting/reporting_builder.php:1207 +#: ../../godmode/reporting/reporting_builder.php:1291 +#: ../../godmode/events/event_filter.php:192 ../../godmode/events/event_filter.php:211 #: ../../godmode/events/event_responses.list.php:71 -#: ../../godmode/events/event_filter.php:192 -#: ../../godmode/events/event_filter.php:211 -#: ../../godmode/netflow/nf_edit.php:196 ../../godmode/netflow/nf_edit.php:208 -#: ../../godmode/netflow/nf_item_list.php:263 -#: ../../godmode/netflow/nf_item_list.php:273 -#: ../../godmode/agentes/module_manager.php:868 -#: ../../godmode/agentes/module_manager.php:1228 -#: ../../godmode/agentes/module_manager_editor_common.php:1307 -#: ../../godmode/agentes/planned_downtime.editor.php:968 -#: ../../godmode/agentes/planned_downtime.editor.php:971 -#: ../../godmode/agentes/planned_downtime.editor.php:1021 -#: ../../godmode/agentes/planned_downtime.list.php:625 -#: ../../godmode/agentes/planned_downtime.list.php:774 -#: ../../godmode/agentes/fields_manager.php:155 -#: ../../godmode/agentes/agent_template.php:259 -#: ../../godmode/alerts/alert_list.list.php:912 -#: ../../godmode/alerts/alert_actions.php:331 -#: ../../godmode/alerts/alert_actions.php:449 -#: ../../godmode/alerts/alert_templates.php:445 -#: ../../godmode/users/user_list.php:825 ../../godmode/users/profile_list.php:443 -#: ../../godmode/groups/modu_group_list.php:254 -#: ../../godmode/groups/group_list.php:937 -#: ../../godmode/groups/group_list.php:938 +#: ../../godmode/servers/servers.build_table.php:259 +#: ../../include/functions_cron.php:895 ../../include/functions_cron.php:923 +#: ../../include/class/ConfigPEN.class.php:264 +#: ../../include/class/NetworkMap.class.php:2798 +#: ../../include/class/ManageNetScanScripts.class.php:405 +#: ../../include/class/CredentialStore.class.php:1102 +#: ../../include/class/CredentialStore.class.php:1290 +#: ../../include/class/ModuleTemplates.class.php:933 +#: ../../include/class/ModuleTemplates.class.php:1211 +#: ../../include/class/CalendarManager.class.php:737 +#: ../../include/functions_container.php:191 ../../include/functions_container.php:325 +#: ../../operation/visual_console/view.php:733 +#: ../../operation/agentes/pandora_networkmap.php:714 +#: ../../operation/agentes/pandora_networkmap.php:801 +#: ../../operation/messages/message_list.php:201 +#: ../../operation/messages/message_list.php:272 +#: ../../operation/messages/message_list.php:275 +#: ../../operation/messages/message_list.php:293 +#: ../../operation/snmpconsole/snmp_view.php:1038 +#: ../../operation/snmpconsole/snmp_view.php:1051 +#: ../../operation/snmpconsole/snmp_view.php:1220 +#: ../../operation/snmpconsole/snmp_view.php:1269 +#: ../../operation/gis_maps/gis_map.php:190 +#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:120 +#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:198 +#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:251 +#: ../../operation/incidents/list_integriaims_incidents.php:555 msgid "Delete" msgstr "Eliminar" @@ -2483,2391 +2252,907 @@ msgstr "Privado por (%s)" msgid "Create a new dashboard" msgstr "Crear un nuevo cuadro de mando" -#: ../../views/dashboard/list.php:233 +#: ../../views/dashboard/list.php:232 msgid "New dashboard" msgstr "Nuevo dashboard" -#: ../../general/maintenance.php:36 -msgid "Maintenance tasks in progress" -msgstr "Tareas de mantenimiento en curso" +#: ../../views/dashboard/widget.php:35 ../../views/dashboard/listWidgets.php:84 +msgid "Add widget" +msgstr "Agregar widget" -#: ../../general/maintenance.php:53 ../../general/node_deactivated.php:64 -msgid "You will be automatically redirected when all tasks finish" -msgstr "Se le redirigirĆ” automĆ”ticamente cuando finalicen todas las tareas" +#: ../../views/dashboard/widget.php:45 +msgid "Please select widget" +msgstr "Seleccione un widget" -#: ../../general/logon_failed.php:18 ../../general/register.php:154 -#: ../../operation/users/user_edit.php:1061 -#: ../../operation/users/user_edit.php:1127 -#: ../../operation/users/user_edit.php:1198 -#: ../../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 -#: ../../enterprise/include/functions_login.php:485 -#: ../../godmode/users/configure_user.php:1822 -#: ../../godmode/users/configure_user.php:1892 -#: ../../godmode/users/configure_user.php:1964 -msgid "Authentication error" -msgstr "Error de autentificaciĆ³n" +#: ../../views/dashboard/jsLayout.php:42 ../../extensions/agents_modules.php:76 +#: ../../operation/snmpconsole/snmp_view.php:1298 ../../operation/events/events.php:2922 +msgid "Until next" +msgstr "Hasta el prĆ³ximo" -#: ../../general/logon_failed.php:30 -msgid "" -"Either, your password or your login are incorrect. Please check your CAPS LOCK " -"key, username and password are case SeNSiTiVe.

All actions, included " -"failed login attempts are logged in Pandora FMS System logs, and these can be " -"reviewed by each user, please report to admin any incident or malfunction." +#: ../../views/dashboard/formDashboard.php:91 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:499 +#: ../../godmode/reporting/reporting_builder.php:936 +msgid "Private" +msgstr "Privado" + +#: ../../views/dashboard/formDashboard.php:122 +#: ../../enterprise/godmode/massive/massive_create_services.php:809 +#: ../../enterprise/godmode/services/services.service.php:736 +#: ../../enterprise/godmode/reporting/visual_console_template.php:272 +msgid "Favourite" +msgstr "Favorito" + +#: ../../views/dashboard/cell.php:42 +msgid "New widget" +msgstr "Nuevo widget" + +#: ../../views/dashboard/cell.php:56 +msgid "Configure widget" +msgstr "Configurar widget" + +#: ../../views/dashboard/cell.php:68 +msgid "Delete widget" +msgstr "Eliminar widget" + +#: ../../views/dashboard/slides.php:41 ../../operation/snmpconsole/snmp_view.php:741 +msgid "Exit fullscreen" +msgstr "Salir de pantalla completa" + +#: ../../views/dashboard/slides.php:181 +msgid "Change every" +msgstr "Cambiar cada" + +#: ../../views/dashboard/slides.php:203 +#: ../../enterprise/meta/monitoring/wizard/wizard.agent.php:146 +#: ../../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:3875 +msgid "Previous" +msgstr "Anterior" + +#: ../../views/dashboard/slides.php:218 +#: ../../enterprise/operation/agentes/transactional_map.php:402 +#: ../../operation/menu.php:431 +msgid "Stop" +msgstr "Parar" + +#: ../../views/dashboard/slides.php:229 +msgid "Pause" +msgstr "Pausar" + +#: ../../views/dashboard/slides.php:240 +#: ../../enterprise/meta/monitoring/wizard/wizard.agent.php:149 +#: ../../enterprise/meta/monitoring/wizard/wizard.module.local.php:214 +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:730 +#: ../../enterprise/meta/monitoring/wizard/wizard.module.network.php:262 +#: ../../enterprise/meta/monitoring/wizard/wizard.module.web.php:215 +#: ../../enterprise/meta/monitoring/wizard/wizard.php:132 +#: ../../enterprise/godmode/wizards/Cloud.class.php:579 +#: ../../enterprise/include/class/VMware.app.php:534 +#: ../../enterprise/include/class/Omnishell.class.php:643 +#: ../../enterprise/include/class/DB2.app.php:567 +#: ../../enterprise/include/class/SAP.app.php:442 +#: ../../enterprise/include/class/Aws.cloud.php:1423 +#: ../../enterprise/include/class/MySQL.app.php:589 +#: ../../enterprise/include/class/Oracle.app.php:574 +#: ../../enterprise/include/class/MicrosoftSQLServer.app.php:568 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:832 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1094 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1966 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2106 +#: ../../enterprise/include/lib/ClusterViewer/ClusterWizard.php:1200 +#: ../../godmode/alerts/configure_alert_template.php:1181 +#: ../../godmode/alerts/configure_alert_template.php:1188 +#: ../../godmode/wizards/HostDevices.class.php:769 +#: ../../include/class/CustomNetScan.class.php:550 +msgid "Next" +msgstr "Siguiente" + +#: ../../views/dashboard/slides.php:252 +msgid "Mode Cell" +msgstr "Modo celdas" + +#: ../../views/dashboard/slides.php:258 +msgid "Mode Layout" +msgstr "Modo esquema" + +#: ../../enterprise/views/ncm/snippets/list.php:32 +#: ../../enterprise/views/ncm/snippets/edit.php:42 +#: ../../enterprise/views/ncm/templates/list.php:32 +#: ../../enterprise/views/ncm/templates/edit.php:42 +#: ../../enterprise/views/ncm/devices/list.php:32 +#: ../../enterprise/views/ncm/devices/list.php:67 +#: ../../enterprise/views/ncm/firmwares/list.php:32 +#: ../../enterprise/views/ncm/firmwares/edit.php:41 +#: ../../enterprise/views/ncm/models/list.php:32 +#: ../../enterprise/views/ncm/models/edit.php:37 +#: ../../enterprise/views/ncm/vendors/list.php:32 +#: ../../enterprise/views/ncm/vendors/edit.php:35 ../../include/functions.php:1238 +#: ../../include/functions_events.php:2893 +msgid "Network configuration manager" +msgstr "Administrador de configuraciĆ³n de red" + +#: ../../enterprise/views/ncm/snippets/list.php:32 +#: ../../enterprise/views/ncm/snippets/edit.php:42 +msgid "Snippets" +msgstr "Snippets" + +#: ../../enterprise/views/ncm/snippets/list.php:94 +#: ../../enterprise/views/ncm/templates/list.php:100 +#: ../../enterprise/views/ncm/devices/list.php:147 +#: ../../enterprise/views/ncm/firmwares/list.php:100 +#: ../../enterprise/views/cluster/list.php:87 +#: ../../enterprise/godmode/policies/policy_agents.php:436 +#: ../../enterprise/godmode/policies/policy_agents.php:468 +#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:335 +#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:358 +#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:209 +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:98 +#: ../../enterprise/godmode/reporting/graph_template_wizard.php:207 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:116 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:211 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:723 +#: ../../enterprise/include/class/Omnishell.class.php:812 +#: ../../enterprise/include/class/Omnishell.class.php:891 +#: ../../include/ajax/events.php:768 ../../include/functions_html.php:1244 +#: ../../include/functions_html.php:1397 ../../include/functions_snmp_browser.php:1486 +msgid "Filter group" +msgstr "Filtrar grupo" + +#: ../../enterprise/views/ncm/snippets/edit.php:73 +#: ../../enterprise/views/ncm/templates/edit.php:73 +#: ../../enterprise/views/ncm/firmwares/edit.php:72 +msgid "Script not defined" +msgstr "Script no definido" + +#: ../../enterprise/views/ncm/snippets/edit.php:91 +#: ../../enterprise/views/ncm/templates/edit.php:160 +#: ../../enterprise/views/ncm/templates/edit.php:188 +#: ../../enterprise/views/ncm/templates/edit.php:216 +#: ../../enterprise/views/ncm/templates/edit.php:244 +#: ../../enterprise/views/ncm/templates/edit.php:271 +#: ../../enterprise/views/ncm/templates/edit.php:298 +msgid "Script details" +msgstr "Detalles del script" + +#: ../../enterprise/views/ncm/snippets/edit.php:138 +#: ../../enterprise/views/ncm/agent/manage.php:135 +#: ../../enterprise/views/ncm/agent/manage.php:148 +#: ../../enterprise/views/ncm/agent/manage.php:181 +#: ../../enterprise/views/ncm/agent/manage.php:274 +#: ../../enterprise/views/ncm/agent/manage.php:309 +#: ../../enterprise/views/ncm/agent/details.php:256 +#: ../../enterprise/views/ncm/templates/edit.php:347 +#: ../../enterprise/godmode/massive/massive_delete_service_elements.php:188 +#: ../../enterprise/godmode/massive/massive_add_service_elements.php:329 +#: ../../enterprise/godmode/massive/massive_edit_service_elements.php:230 +#: ../../include/class/ExternalTools.class.php:537 +msgid "Please select" +msgstr "Seleccione" + +#: ../../enterprise/views/ncm/agent/manage.php:57 +msgid "For instance Cisco" +msgstr "Por ejemplo, Cisco" + +#: ../../enterprise/views/ncm/agent/manage.php:59 +msgid "Device manufacturer" +msgstr "Fabricante del dispositivo" + +#: ../../enterprise/views/ncm/agent/manage.php:87 +msgid "For instance Catalyst 9400" +msgstr "Por ejemplo, Catalyst 9400" + +#: ../../enterprise/views/ncm/agent/manage.php:89 +msgid "Device model" +msgstr "Modelo del dispositivo" + +#: ../../enterprise/views/ncm/agent/manage.php:102 +#: ../../godmode/agentes/module_manager_editor_network.php:482 +msgid "Connection method" +msgstr "Modo de conexiĆ³n" + +#: ../../enterprise/views/ncm/agent/manage.php:107 +msgid "connect using SSH" +msgstr "conectarse mediante SSH" + +#: ../../enterprise/views/ncm/agent/manage.php:108 +msgid "connect using telnet" +msgstr "conectarse mediante telnet" + +#: ../../enterprise/views/ncm/agent/manage.php:118 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:1063 +#: ../../enterprise/godmode/setup/setup_history.php:178 +#: ../../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: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:1533 +#: ../../include/class/AgentWizard.class.php:638 +#: ../../include/functions_snmp_browser.php:714 +msgid "Port" +msgstr "Puerto" + +#: ../../enterprise/views/ncm/agent/manage.php:131 +msgid "Credentials to access device" +msgstr "Credenciales para acceder al dispositivo" + +#: ../../enterprise/views/ncm/agent/manage.php:144 +msgid "Credentials to administrate device" +msgstr "Credenciales para administrar el dispositivo" + +#: ../../enterprise/views/ncm/agent/manage.php:177 +msgid "NCM template to be used" +msgstr "Plantilla NCM que se utilizarĆ”" + +#: ../../enterprise/views/ncm/agent/manage.php:190 +msgid "Backup schedule (if defined)" +msgstr "ProgramaciĆ³n de copia de seguridad (si se define)" + +#: ../../enterprise/views/ncm/agent/manage.php:195 +msgid "No schedule" +msgstr "No programado" + +#: ../../enterprise/views/ncm/agent/manage.php:197 +msgid "Once a day" +msgstr "Una vez al dĆ­a" + +#: ../../enterprise/views/ncm/agent/manage.php:198 +msgid "Once a week" +msgstr "Una vez a la semana" + +#: ../../enterprise/views/ncm/agent/manage.php:199 +msgid "Once a month" +msgstr "Una vez al mes" + +#: ../../enterprise/views/ncm/agent/manage.php:218 +msgid "Launch event if configuration changes" +msgstr "Iniciar evento si cambia la configuraciĆ³n" + +#: ../../enterprise/views/ncm/agent/manage.php:243 +msgid "NCM state" +msgstr "Estado de NCM" + +#: ../../enterprise/views/ncm/agent/manage.php:259 +#: ../../enterprise/godmode/reporting/reporting_builder.template_editor.php:109 +#: ../../enterprise/godmode/reporting/mysql_builder.php:240 +#: ../../enterprise/include/ajax/transactional.ajax.php:83 +#: ../../extensions/insert_data.php:208 ../../godmode/setup/gis_step_2.php:521 +#: ../../godmode/setup/snmp_wizard.php:100 +#: ../../godmode/reporting/visual_console_builder.data.php:229 +#: ../../godmode/reporting/reporting_builder.main.php:45 +#: ../../operation/agentes/graphs.php:342 +msgid "Save" +msgstr "Guardar" + +#: ../../enterprise/views/ncm/agent/modalOnDemandScript.php:63 +msgid "Select firmware file to update to" +msgstr "Seleccione el archivo de firmware al que desea actualizar" + +#: ../../enterprise/views/ncm/agent/modalOnDemandScript.php:75 +msgid "Transfer from url" +msgstr "Transferir desde url" + +#: ../../enterprise/views/ncm/agent/modalOnDemandScript.php:86 +msgid "Target file name" +msgstr "Nombre del archivo de destino" + +#: ../../enterprise/views/ncm/agent/modalOnDemandScript.php:105 +msgid "Customize execution" +msgstr "Personalizar la ejecuciĆ³n" + +#: ../../enterprise/views/ncm/agent/details.php:89 +msgid "Script type" +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 +#: ../../include/functions_reporting_html.php:4091 +#: ../../include/functions_reporting_html.php:4238 +#: ../../include/functions_reporting_html.php:4579 +#: ../../include/functions_reporting_html.php:4590 ../../include/functions_db.php:1918 +msgid "Result" +msgstr "Resultado" + +#: ../../enterprise/views/ncm/agent/details.php:91 +msgid "Execution last timestamp" +msgstr "ƚltima marca de tiempo de ejecuciĆ³n" + +#: ../../enterprise/views/ncm/agent/details.php:107 +msgid "Retrieve running configuration" +msgstr "Recuperar la configuraciĆ³n en ejecuciĆ³n" + +#: ../../enterprise/views/ncm/agent/details.php:120 +#: ../../enterprise/views/ncm/agent/details.php:383 +msgid "Restore from backup" +msgstr "Restaurar desde la copia de seguridad" + +#: ../../enterprise/views/ncm/agent/details.php:133 +#: ../../enterprise/views/ncm/agent/details.php:325 +#: ../../enterprise/include/lib/NetworkManager.php:85 +msgid "Retrieve firmware version" +msgstr "Recuperar la versiĆ³n del firmware" + +#: ../../enterprise/views/ncm/agent/details.php:172 +msgid "Running without a backup" +msgstr "EjecuciĆ³n sin copia de seguridad" + +#: ../../enterprise/views/ncm/agent/details.php:181 +msgid "Latest configuration retrieved is different from backed one" msgstr "" -"La combinaciĆ³n usuario/contraseƱa es incorrecta. Comprueba que no estĆ” " -"habilitado el bloqueo de mayĆŗsculas, los campos distinguen entre mayĆŗsculas y " -"minĆŗsculas.

Todas las acciones, incluidos los intentos fallidos de " -"acceso son guardados en el sistema de registro de logs de Pandora FMS y pueden " -"ser revisados por cada usuario. Contacta al administrador cualquier incidente " -"o fallo." +"La Ćŗltima configuraciĆ³n recuperada es diferente de la que tiene copia de seguridad" -#: ../../general/register.php:157 ../../operation/users/user_edit.php:1064 -#: ../../operation/users/user_edit.php:1130 -#: ../../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/class/Diagnostics.class.php:1827 -#: ../../include/functions_events.php:2929 -#: ../../include/functions_events.php:3284 ../../include/functions_ui.php:290 -#: ../../include/functions.php:1236 -#: ../../enterprise/include/class/CommandCenter.class.php:473 -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:4052 -#: ../../enterprise/include/lib/Metaconsole/Node.php:593 -#: ../../enterprise/include/functions_login.php:104 -#: ../../enterprise/include/functions_login.php:488 -#: ../../enterprise/meta/include/functions_ui_meta.php:970 -#: ../../enterprise/godmode/services/services.elements.php:841 -#: ../../enterprise/godmode/services/services.elements.php:852 -#: ../../mobile/operation/visualmap.php:182 -#: ../../godmode/massive/massive_edit_plugins.php:856 -#: ../../godmode/massive/massive_edit_plugins.php:857 -#: ../../godmode/users/configure_user.php:1825 -#: ../../godmode/users/configure_user.php:1895 -msgid "Error" -msgstr "Error" +#: ../../enterprise/views/ncm/agent/details.php:184 +msgid "Backup up to date with latest configuration" +msgstr "Copia de seguridad actualizada con la configuraciĆ³n mĆ”s reciente" -#: ../../general/register.php:161 ../../operation/users/user_edit.php:1068 -#: ../../operation/users/user_edit.php:1134 -#: ../../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 -#: ../../enterprise/include/functions_login.php:492 -#: ../../godmode/users/configure_user.php:1829 -#: ../../godmode/users/configure_user.php:1899 -msgid "There was an error loading the data" -msgstr "Error al cargar los datos" +#: ../../enterprise/views/ncm/agent/details.php:208 +msgid "Configuration backup status" +msgstr "Estado de la copia de seguridad de la configuraciĆ³n" -#: ../../general/register.php:170 ../../operation/users/user_edit.php:1142 -#: ../../operation/users/user_edit.php:1218 -#: ../../enterprise/include/functions_login.php:501 -#: ../../godmode/users/configure_user.php:1907 -#: ../../godmode/users/configure_user.php:1985 -msgid "Double autentication activation" -msgstr "ActivaciĆ³n de la doble autentificaciĆ³n" +#: ../../enterprise/views/ncm/agent/details.php:238 +msgid "Last on demand execution" +msgstr "ƚltima ejecuciĆ³n bajo demanda" -#: ../../general/noaccess.php:130 ../../general/noaccess2.php:16 -#: ../../general/noaccess2.php:18 ../../general/noaccesssaml.php:130 -#: ../../enterprise/meta/general/metaconsole_no_activated.php:12 -#: ../../enterprise/meta/general/noaccess.php:130 -#: ../../enterprise/meta/general/noaccesssaml.php:130 -#: ../../mobile/operation/agent.php:117 ../../mobile/operation/modules.php:218 -#: ../../mobile/operation/visualmaps.php:159 -#: ../../mobile/operation/visualmap.php:185 -#: ../../mobile/operation/tactical.php:79 ../../mobile/operation/alerts.php:176 -#: ../../mobile/operation/events.php:468 -#: ../../mobile/operation/module_graph.php:255 -#: ../../mobile/operation/agents.php:186 ../../mobile/operation/groups.php:59 -#: ../../mobile/index.php:258 -msgid "You don't have access to this page" -msgstr "No tienes permiso para acceder a esta pĆ”gina" - -#: ../../general/noaccess.php:135 ../../enterprise/meta/general/noaccess.php:135 -msgid "" -"Access to this page is restricted to authorized users only, please contact " -"system administrator if you need assistance." -msgstr "" -"El acceso a esta pĆ”gina estĆ” restringido a usuarios autorizados, pĆ³ngase en " -"contacto con el administrador del sistema si necesita ayuda." - -#: ../../general/noaccess.php:137 ../../enterprise/meta/general/noaccess.php:137 +#: ../../enterprise/views/ncm/agent/details.php:246 #, php-format -msgid "" -"Please know that all attempts to access this page are recorded in security " -"logs of %s System Database" -msgstr "" -"Todos los intentos de acceso a estĆ” pĆ”gina se grabarĆ”n en los logs de " -"seguridad de la base de datos del sistema de %s" +msgid "Customize %s" +msgstr "Personalizar %s" -#: ../../general/login_help_dialog.php:39 -#: ../../include/lib/Dashboard/Widgets/example.php:245 +#: ../../enterprise/views/ncm/agent/details.php:250 +msgid "Execute snippet" +msgstr "Ejecutar snippet" + +#: ../../enterprise/views/ncm/agent/details.php:265 +#: ../../enterprise/meta/monitoring/wizard/wizard.agent.php:66 +#: ../../enterprise/meta/monitoring/wizard/wizard.module.local.php:110 +#: ../../enterprise/meta/monitoring/wizard/wizard.module.network.php:122 +#: ../../enterprise/meta/monitoring/wizard/wizard.module.web.php:103 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1539 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1632 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1757 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1832 +msgid "Preview" +msgstr "Vista previa" + +#: ../../enterprise/views/ncm/agent/details.php:312 +#: ../../enterprise/meta/monitoring/custom_fields_csv.php:131 +#: ../../enterprise/meta/monitoring/custom_fields_view.php:182 +#: ../../enterprise/meta/monitoring/group_view.php:236 +#: ../../enterprise/meta/monitoring/group_view.php:242 +#: ../../enterprise/meta/monitoring/tactical.php:225 +#: ../../enterprise/godmode/massive/massive_add_modules_policy.php:122 +#: ../../enterprise/godmode/services/services.elements.php:377 +#: ../../enterprise/include/functions_cron.php:585 +#: ../../enterprise/include/functions_reporting_pdf.php:637 +#: ../../enterprise/include/functions_HA_cluster.php:70 +#: ../../enterprise/include/class/DatabaseHA.class.php:223 +#: ../../enterprise/include/functions_reporting.php:1890 +#: ../../enterprise/include/functions_reporting.php:2940 +#: ../../enterprise/include/functions_reporting.php:3928 +#: ../../enterprise/include/functions_reporting.php:4848 +#: ../../enterprise/include/functions_reporting.php:6159 +#: ../../enterprise/include/lib/NetworkManager.php:103 +#: ../../enterprise/include/lib/ClusterViewer/ClusterManager.php:582 +#: ../../enterprise/operation/agentes/transactional_map.php:339 +#: ../../enterprise/operation/agentes/transactional_map.php:385 +#: ../../enterprise/operation/agentes/tag_view.php:134 +#: ../../enterprise/operation/services/services.service.php:180 +#: ../../enterprise/operation/services/services.service_map.php:152 +#: ../../enterprise/operation/services/services.treeview_services.php:285 +#: ../../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 +#: ../../godmode/massive/massive_copy_modules.php:118 +#: ../../godmode/massive/massive_copy_modules.php:278 +#: ../../godmode/massive/massive_delete_modules.php:421 +#: ../../godmode/massive/massive_delete_modules.php:442 +#: ../../godmode/massive/massive_delete_agents.php:212 +#: ../../godmode/massive/massive_edit_agents.php:534 +#: ../../godmode/massive/massive_edit_modules.php:388 +#: ../../godmode/massive/massive_edit_modules.php:474 +#: ../../godmode/alerts/alert_list.builder.php:290 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3737 +#: ../../mobile/operation/agents.php:60 ../../mobile/operation/modules.php:72 +#: ../../include/graphs/functions_flot.php:305 +#: ../../include/functions_reporting_html.php:2347 +#: ../../include/functions_reporting_html.php:2360 +#: ../../include/functions_reporting_html.php:3340 +#: ../../include/functions_reporting_html.php:3748 ../../include/functions.php:1225 +#: ../../include/functions.php:4108 ../../include/ajax/module.php:1071 +#: ../../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_alerts.php:702 +#: ../../include/rest-api/models/VisualConsole/Items/Group.php:437 +#: ../../include/functions_reports.php:557 ../../include/functions_maps.php:54 +#: ../../include/functions_netflow.php:1865 ../../include/functions_reporting.php:6285 +#: ../../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:670 +#: ../../include/functions_events.php:2841 ../../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:1728 +#: ../../operation/agentes/tactical.php:181 ../../operation/events/events.php:725 +msgid "Unknown" +msgstr "Desconocido" + +#: ../../enterprise/views/ncm/agent/details.php:314 #, php-format -msgid "Welcome to %s" -msgstr "Bienvenido a %s" +msgid "Current firmware version: %s" +msgstr "VersiĆ³n actual del firmware: %s" -#: ../../general/login_help_dialog.php:43 +#: ../../enterprise/views/ncm/agent/details.php:339 #, php-format -msgid "" -"If this is your first time using %s, we suggest a few links that'll help you " -"learn more about the software. Monitoring can be overwhelming, but take your " -"time to learn how to harness the power of %s!" -msgstr "" -"Si esta es la primera vez que usa %s, le sugerimos algunos enlaces que le " -"ayudarĆ”n a saber mĆ”s sobre este software. La monitorizaciĆ³n puede ser " -"abrumadora, pero tĆ³mese su tiempo en aprender a aprovechar todo el potencial " -"de %s!" +msgid "Configuration backup present, %s" +msgstr "Copia de seguridad de configuraciĆ³n presente, %s" -#: ../../general/login_help_dialog.php:57 ../../general/login_help_dialog.php:62 -msgid "Online help" -msgstr "Ayuda en lĆ­nea" +#: ../../enterprise/views/ncm/agent/details.php:346 +msgid "There is no configuration backup" +msgstr "No hay copia de seguridad de configuraciĆ³n" -#: ../../general/login_help_dialog.php:70 ../../general/login_help_dialog.php:75 -msgid "Enterprise version" -msgstr "VersiĆ³n Enterprise" +#: ../../enterprise/views/ncm/agent/details.php:359 +msgid "Backup latest retrieved configuration" +msgstr "Copia de seguridad de la Ćŗltima configuraciĆ³n recuperada" -#: ../../general/login_help_dialog.php:83 ../../general/login_help_dialog.php:88 -#: ../../general/login_page.php:148 ../../general/login_page.php:151 -#: ../../enterprise/include/reset_pass.php:53 -#: ../../enterprise/include/process_reset_pass.php:58 -#: ../../enterprise/meta/general/login_page.php:64 -#: ../../enterprise/meta/include/reset_pass.php:47 -#: ../../enterprise/meta/include/process_reset_pass.php:47 -msgid "Support" -msgstr "Soporte" +#: ../../enterprise/views/ncm/agent/details.php:372 +#: ../../enterprise/include/class/ManageBackups.class.php:302 +#: ../../extensions/files_repo/files_repo_list.php:123 +msgid "Download" +msgstr "Descargar" -#: ../../general/login_help_dialog.php:88 -msgid "Forums" -msgstr "Foros" - -#: ../../general/login_help_dialog.php:96 ../../general/login_help_dialog.php:101 -#: ../../general/mysqlerr.php:142 -msgid "Documentation" -msgstr "DocumentaciĆ³n" - -#: ../../general/login_help_dialog.php:110 -msgid "Click here to don't show again this message" -msgstr "Pincha aquĆ­ para no volver a ver este mensaje" - -#: ../../general/ui/agents_list.php:100 ../../general/ui/agents_list.php:113 -#: ../../operation/agentes/status_monitor.php:547 -#: ../../operation/agentes/alerts_status.functions.php:194 -#: ../../operation/agentes/alerts_status.functions.php:203 -#: ../../operation/agentes/estado_agente.php:280 -#: ../../operation/agentes/estado_agente.php:291 -#: ../../operation/search_results.php:192 ../../include/ajax/heatmap.ajax.php:70 -#: ../../include/class/AuditLog.class.php:180 -#: ../../include/class/AgentWizard.class.php:2617 -#: ../../include/class/CalendarManager.class.php:1020 -#: ../../include/functions_snmp.php:358 -#: ../../include/functions_snmp_browser.php:925 -#: ../../include/functions_snmp_browser.php:1501 -#: ../../enterprise/tools/ipam/ipam_vlan_config.php:432 -#: ../../enterprise/tools/ipam/ipam_vlan_config.php:439 -#: ../../enterprise/tools/ipam/ipam_network_location_config.php:164 -#: ../../enterprise/tools/ipam/ipam_network_location_config.php:173 -#: ../../enterprise/tools/ipam/ipam_supernet_config.php:760 -#: ../../enterprise/tools/ipam/ipam_supernet_config.php:797 -#: ../../enterprise/tools/ipam/ipam_list.php:90 -#: ../../enterprise/tools/ipam/ipam_list.php:164 -#: ../../enterprise/operation/log/log_viewer.php:513 -#: ../../enterprise/operation/log/log_viewer.php:796 -#: ../../enterprise/operation/services/services.treeview_services.php:128 -#: ../../enterprise/operation/services/services.list.php:225 -#: ../../enterprise/operation/services/services.list.php:318 -#: ../../enterprise/operation/services/services.table_services.php:147 -#: ../../enterprise/operation/services/services.table_services.php:238 -#: ../../enterprise/operation/agentes/tag_view.php:219 -#: ../../enterprise/operation/agentes/agent_inventory.php:138 -#: ../../enterprise/operation/agentes/agent_inventory.php:140 -#: ../../enterprise/operation/inventory/inventory.php:374 -#: ../../enterprise/operation/inventory/inventory.php:427 -#: ../../enterprise/meta/general/header.php:44 -#: ../../enterprise/meta/general/header.php:46 -#: ../../enterprise/meta/general/main_header.php:689 -#: ../../enterprise/meta/general/main_header.php:691 -#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:265 -#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:362 -#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:419 -#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:687 -#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:758 -#: ../../enterprise/meta/advanced/metasetup.relations.php:451 -#: ../../enterprise/meta/advanced/metasetup.translate_string.php:186 -#: ../../enterprise/meta/advanced/collections.php:217 -#: ../../enterprise/meta/advanced/collections.php:230 -#: ../../enterprise/meta/agentsearch.php:110 -#: ../../enterprise/extensions/translate_string.php:323 -#: ../../enterprise/godmode/modules/local_components.php:573 -#: ../../enterprise/godmode/modules/local_components.php:598 -#: ../../enterprise/godmode/agentes/collection_manager.php:48 -#: ../../enterprise/godmode/agentes/collections.php:365 -#: ../../enterprise/godmode/alerts/alert_inventory_list.php:151 -#: ../../enterprise/godmode/alerts/alert_inventory_list.php:162 -#: ../../enterprise/godmode/policies/policy_agents.php:822 -#: ../../enterprise/godmode/policies/policy_agents.php:835 -#: ../../enterprise/godmode/policies/policy_collections.php:254 -#: ../../extensions/module_groups.php:283 ../../mobile/operation/agent.php:320 -#: ../../godmode/modules/manage_network_components.php:678 -#: ../../godmode/reporting/map_builder.php:350 -#: ../../godmode/reporting/map_builder.php:372 -#: ../../godmode/reporting/graphs.php:241 -#: ../../godmode/reporting/visual_console_favorite.php:158 -#: ../../godmode/reporting/visual_console_favorite.php:188 -#: ../../godmode/reporting/reporting_builder.item_editor.php:1142 -#: ../../godmode/reporting/reporting_builder.php:795 -#: ../../godmode/agentes/module_manager.php:65 -#: ../../godmode/agentes/planned_downtime.list.php:284 -#: ../../godmode/agentes/planned_downtime.list.php:368 -#: ../../godmode/agentes/modificar_agente.php:363 -#: ../../godmode/agentes/modificar_agente.php:372 -#: ../../godmode/alerts/alert_actions.php:244 -#: ../../godmode/alerts/alert_actions.php:302 -#: ../../godmode/alerts/alert_templates.php:314 -#: ../../godmode/alerts/alert_templates.php:325 -#: ../../godmode/users/user_list.php:402 ../../godmode/users/user_list.php:412 -#: ../../godmode/module_library/module_library_view.php:102 -#: ../../godmode/module_library/module_library_view.php:112 -#: ../../godmode/groups/group_list.php:785 -#: ../../godmode/groups/group_list.php:795 -msgid "Search" -msgstr "Buscar" - -#: ../../general/ui/agents_list.php:146 -#: ../../operation/reporting/graph_viewer.php:316 -#: ../../operation/reporting/reporting_viewer.php:347 -#: ../../include/functions_events.php:4380 -#: ../../enterprise/operation/log/log_viewer.php:845 -#: ../../enterprise/operation/log/log_viewer.php:867 -#: ../../enterprise/include/class/CommandCenter.class.php:463 -#: ../../enterprise/meta/monitoring/wizard/wizard.php:149 -#: ../../enterprise/godmode/massive/massive_add_modules_policy.php:195 -#: ../../enterprise/godmode/policies/policy_modules.php:1636 -#: ../../godmode/massive/massive_copy_modules.php:235 -#: ../../godmode/massive/massive_operations.php:361 -#: ../../godmode/massive/massive_add_profiles.php:292 -msgid "Loading" -msgstr "Cargando" - -#: ../../general/ui/agents_list.php:152 -msgid "No agents found" -msgstr "No se encontrĆ³ ningĆŗn agente" - -#: ../../general/alert_enterprise.php:107 +#: ../../enterprise/views/ncm/agent/details.php:401 #, php-format -msgid "" -"This is the online help for %s console. This help is -in best cases- just a " -"brief contextual help, not intented to teach you how to use %s. Official " -"documentation of %s is about 900 pages, and you probably don't need to read it " -"entirely, but sure, you should download it and take a look.

\n" -" Download the official documentation" -msgstr "" -"Esta es la ayuda en lĆ­nea para la consola %s. Esta ayuda (en el mejor de los " -"casos) es solo una breve ayuda contextual, que no pretende enseƱarle como usar " -"%s. La documentaciĆ³n oficial de %s es de unas 900 pĆ”ginas, y probablemente no " -"necesite leerla entera, pero por supuesto deberĆ­a descargarla y echarle un " -"vistazo.

\n" -" Descargar la documentaciĆ³n oficial" +msgid "Latest operation \"%s\" was executed %s ago with result: %s %s" +msgstr "La Ćŗltima operaciĆ³n \"%s\" se ejecutĆ³ hace %s con el resultado: %s %s" -#: ../../general/alert_enterprise.php:120 +#: ../../enterprise/views/ncm/agent/details.php:414 #, php-format -msgid "" -"Access to this page is restricted to authorized users only, please contact " -"system administrator if you need assistance.

\n" -" Please know that all attempts to access this page are recorded in security " -"logs of %s System Database." -msgstr "" -"El acceso a esta pĆ”gina estĆ” restringido exclusivamente a usuarios " -"autorizados, pĆ³ngase en contacto con el administrador del sistema si necesita " -"ayuda.

\n" -" Note que todos los intentos de acceso al la pĆ”gina se guardarĆ”n en los " -"logs de seguridad de la base de datos de %s." +msgid "Script executions queued: %d" +msgstr "Ejecuciones de scripts en cola: %d" -#: ../../general/alert_enterprise.php:130 +#: ../../enterprise/views/ncm/agent/details.php:424 #, php-format +msgid "Configuration backup schedule: %s" +msgstr "ProgramaciĆ³n de copia de seguridad de la configuraciĆ³n: %s" + +#: ../../enterprise/views/ncm/agent/details.php:441 +msgid "Device details" +msgstr "Detalles del dispositivo" + +#: ../../enterprise/views/ncm/agent/details.php:483 +msgid "Configuration timestamp" +msgstr "Marca de tiempo de configuraciĆ³n" + +#: ../../enterprise/views/ncm/agent/details.php:484 +msgid "Diff" +msgstr "Diferencia" + +#: ../../enterprise/views/ncm/agent/details.php:485 +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:468 +#: ../../enterprise/meta/advanced/collections.php:391 +#: ../../enterprise/meta/monitoring/wizard/wizard.php:140 +#: ../../enterprise/meta/include/functions_autoprovision.php:477 +#: ../../enterprise/meta/include/functions_alerts_meta.php:133 +#: ../../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:224 +#: ../../enterprise/godmode/agentes/collections.php:384 +#: ../../enterprise/godmode/policies/policy_alerts.php:353 +#: ../../enterprise/godmode/policies/policy_external_alerts.php:350 +#: ../../enterprise/godmode/policies/policy_external_alerts.php:384 +#: ../../enterprise/godmode/policies/policy_external_alerts.php:682 +#: ../../enterprise/godmode/policies/policy_inventory_modules.php:305 +#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:387 +#: ../../enterprise/godmode/alerts/alert_inventory_list.php:223 +#: ../../enterprise/godmode/setup/setup_skins.php:128 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2120 +#: ../../enterprise/include/functions_reporting_csv.php:2465 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2337 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2505 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3476 +#: ../../enterprise/include/class/ManageBackups.class.php:167 +#: ../../enterprise/operation/agentes/transactional_map.php:213 +#: ../../enterprise/operation/agentes/manage_transmap_creation.php:190 +#: ../../enterprise/operation/services/services.list.php:513 +#: ../../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/agentes/modificar_agente.php:653 +#: ../../godmode/agentes/planned_downtime.editor.php:927 +#: ../../godmode/agentes/fields_manager.php:121 ../../godmode/menu.php:265 +#: ../../godmode/alerts/alert_list.list.php:130 +#: ../../godmode/alerts/alert_list.list.php:499 +#: ../../godmode/alerts/alert_commands.php:659 ../../godmode/alerts/alert_view.php:301 +#: ../../godmode/alerts/alert_list.builder.php:96 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2045 +#: ../../godmode/events/event_responses.list.php:53 ../../godmode/tag/tag.php:284 +#: ../../godmode/category/category.php:170 +#: ../../include/functions_reporting_html.php:3228 ../../include/functions_cron.php:469 +#: ../../include/functions_treeview.php:413 +#: ../../include/class/AgentsAlerts.class.php:254 +#: ../../include/class/AgentsAlerts.class.php:285 +#: ../../include/functions_reporting.php:2843 +#: ../../include/functions_filemanager.php:607 +msgid "Actions" +msgstr "Acciones" + +#: ../../enterprise/views/ncm/agent/details.php:490 +msgid "No changes with current backup" +msgstr "Sin cambios en la copia de seguridad actual" + +#: ../../enterprise/views/ncm/agent/details.php:494 +msgid "This is the latest configuration retrieved" +msgstr "Esta es la Ćŗltima configuraciĆ³n recuperada" + +#: ../../enterprise/views/ncm/agent/details.php:507 +#: ../../enterprise/views/ncm/agent/details.php:511 +msgid "This is the current backup." +msgstr "Esta es la copia de seguridad actual." + +#: ../../enterprise/views/ncm/agent/details.php:523 +msgid "Review this configuration" +msgstr "Revisar esta configuraciĆ³n" + +#: ../../enterprise/views/ncm/agent/details.php:534 +msgid "There is no backup to compare with" +msgstr "No hay ninguna copia de seguridad con la que comparar" + +#: ../../enterprise/views/ncm/agent/details.php:545 +msgid "Backup this configuration" +msgstr "Hacer copia de seguridad de esta configuraciĆ³n" + +#: ../../enterprise/views/ncm/agent/details.php:563 +msgid "Configurations registry" +msgstr "Registro de configuraciones" + +#: ../../enterprise/views/ncm/agent/details.php:574 +msgid "Diff between: backup - selected" +msgstr "Diferencia entre: copia de seguridad - seleccionada" + +#: ../../enterprise/views/ncm/agent/details.php:600 +#: ../../enterprise/meta/monitoring/wizard/wizard.agent.php:64 +#: ../../enterprise/meta/monitoring/wizard/wizard.module.local.php:107 +#: ../../enterprise/meta/monitoring/wizard/wizard.module.network.php:119 +#: ../../enterprise/meta/monitoring/wizard/wizard.module.web.php:100 +#: ../../enterprise/godmode/modules/configure_local_component.php:483 +#: ../../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:351 +#: ../../godmode/agentes/planned_downtime.list.php:615 ../../godmode/menu.php:241 +#: ../../godmode/setup/setup.php:330 ../../godmode/events/events.php:124 +#: ../../include/functions_reports.php:898 ../../include/functions_reports.php:902 +#: ../../include/class/ConfigPEN.class.php:327 +#: ../../include/class/ModuleTemplates.class.php:195 +#: ../../include/class/ModuleTemplates.class.php:213 +msgid "Configuration" +msgstr "ConfiguraciĆ³n" + +#: ../../enterprise/views/ncm/agent/details.php:624 +msgid "Retrieve firmware version?" +msgstr "ĀæRecuperar la versiĆ³n del firmware?" + +#: ../../enterprise/views/ncm/agent/details.php:625 msgid "" -"The Update Manager client is included on %s. It helps system administrators " -"update their %s automatically, since the Update Manager retrieves new modules, " -"new plugins and new features (even full migrations tools for future versions) " -"automatically." +"This action will connect to the device to retrieve firmware version. Are you sure?" msgstr "" -"Update Manager cliente estĆ” incluido en %s. Ayuda a los administradores de " -"sistemas a actualizar su %s automĆ”ticamente, puesto que Update manager obtiene " -"nuevos mĆ³dulos, plugins y funcionalidades (incluso herramientas de migraciĆ³n " -"completa para futuras versiones) automĆ”ticamente." +"Esta acciĆ³n conectarĆ” con dispositivo para recuperar la versiĆ³n del firmware. ĀæEstĆ” " +"seguro?" -#: ../../general/alert_enterprise.php:130 +#: ../../enterprise/views/ncm/agent/details.php:635 +msgid "Get running config?" +msgstr "Obtener running-config" + +#: ../../enterprise/views/ncm/agent/details.php:636 msgid "" -"OpenSource version updates are automated packages generated each week. " -"These updates come WITHOUT ANY warranty or support. If your system is " -"corrupted or a feature stops working properly, you will need to recover a " -"backup by yourself." +"This action will connect to the device to retrieve latest configuration. Are you sure?" msgstr "" -"Las actualizaciones de la versiĆ³n OpenSource son paquetes automatizados " -"generados cada semana. Estas actualizaciones vienen sin garantĆ­a o soporte. Si " -"tu sistema estĆ” daƱado o una caracterĆ­stica deja de funcionar correctamente, " -"necesitarĆ”s recuperar una copia de seguridad tĆŗ mismo." +"Esta acciĆ³n se conectarĆ” al dispositivo para recuperar la configuraciĆ³n mĆ”s reciente. " +"ĀæEstĆ”s seguro?" -#: ../../general/alert_enterprise.php:130 -#, php-format +#: ../../enterprise/views/ncm/agent/details.php:647 +msgid "Backup latest config?" +msgstr "ĀæCopia de seguridad de la Ćŗltima configuraciĆ³n?" + +#: ../../enterprise/views/ncm/agent/details.php:648 msgid "" -"The Enterprise version comes with a different update system, with fully " -"tested, professionally-supported packages, and our support team is there to " -"help you in case of problems or queries. Update Manager is another feature " -"present in the Enterprise version and not included in the OpenSource version. " -"There are lots of advanced business-oriented features contained in %s " -"Enterprise Edition. For more information visit pandorafms.com" +"This action will overwrite current backup to use latest retrieved configuration. Are " +"you sure?" msgstr "" -"La versiĆ³n Enterprise tiene un sistema de actualizaciĆ³n diferente, con " -"paquetes completamente probador y con asistencia profesional. Nuestro equipo " -"de soporte le asistirĆ” en caso de duda o problema, Update Manager es otra " -"funcionalidad presente en %s versiĆ³n Enterprise no incluida en la versiĆ³n " -"OpenSource. \r\n" -"La versiĆ³n Enterprise contiene cientos de funcionalidades diseƱadas para su " -"negocio. Para mĆ”s informaciĆ³n visite pandorafms.com" +"Esta acciĆ³n sobrescribirĆ” la copia de seguridad actual para utilizar la Ćŗltima " +"configuraciĆ³n recuperada. ĀæEstĆ”s seguro?" -#: ../../general/alert_enterprise.php:132 -#, php-format +#: ../../enterprise/views/ncm/agent/details.php:656 +msgid "Backup target config?" +msgstr "ĀæConfiguraciĆ³n de destino de copia de seguridad?" + +#: ../../enterprise/views/ncm/agent/details.php:657 msgid "" -"The new Update Manager " -"client is included on %s. It helps system administrators update their %s " -"automatically, since the Update Manager retrieves new modules, new plugins and " -"new features (even full migrations tools for future versions) automatically." +"This action will overwrite current backup to use selected configuration. Are you sure?" msgstr "" -"El nuevo Update Manager " -"cliente estĆ” incluido en %s. Ayuda a los administradores de sistemas a " -"actualizar %s automĆ”ticamente, puesto que Update Manager obtiene nuevos " -"mĆ³dulos, plugins y funcionalidades (incluso herramientas de migraciĆ³n completa " -"para futuras versiones) automĆ”ticamente." +"Esta acciĆ³n sobreescribirĆ” la copia de seguridad actual para utilizar la " +"configuraciĆ³n seleccionada. ĀæEstĆ” seguro?" -#: ../../general/alert_enterprise.php:132 -#, php-format +#: ../../enterprise/views/ncm/agent/details.php:668 +msgid "Restore device configuration?" +msgstr "ĀæRestaurar la configuraciĆ³n del dispositivo?" + +#: ../../enterprise/views/ncm/agent/details.php:669 msgid "" -"The Update Manager is one of the most advanced features on the %s Enterprise " -"Edition. For more information visit http://" -"pandorafms.com." +"This action will overwrite device configuration with latest backup. Are you sure?" msgstr "" -"Update Manager es una de las funcionalidades mĆ”s avanzadas de %s versiĆ³n " -"Enterprise. Para obtener mĆ”s informaciĆ³n visite http://pandorafms.com." +"Esta acciĆ³n sobrescribirĆ” la configuraciĆ³n del dispositivo con la copia de seguridad " +"mĆ”s reciente. ĀæEstĆ”s seguro?" -#: ../../general/alert_enterprise.php:132 -#, php-format +#: ../../enterprise/views/ncm/agent/details.php:688 +msgid "Customize script execution" +msgstr "Personalizar la ejecuciĆ³n del script" + +#: ../../enterprise/views/ncm/agent/details.php:689 ../../include/ajax/events.php:2142 +#: ../../include/class/ExternalTools.class.php:581 +#: ../../include/functions_events.php:3422 +msgid "Execute" +msgstr "Ejecutar" + +#: ../../enterprise/views/ncm/templates/list.php:32 +#: ../../enterprise/meta/include/functions_alerts_meta.php:129 +#: ../../enterprise/meta/include/functions_alerts_meta.php:160 +#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:261 +#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:191 +#: ../../enterprise/godmode/reporting/graph_template_wizard.php:192 +#: ../../enterprise/godmode/reporting/visual_console_template.php:109 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2097 +#: ../../enterprise/include/functions_reporting.php:146 +#: ../../enterprise/include/functions_reporting.php:7984 +#: ../../enterprise/include/functions_reporting.php:8012 +#: ../../enterprise/include/functions_reporting.php:8083 +#: ../../godmode/agentes/configurar_agente.php:740 ../../godmode/menu.php:159 +#: ../../godmode/menu.php:261 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1980 +#: ../../include/functions_menu.php:510 ../../include/class/ConfigPEN.class.php:332 +#: ../../include/class/ModuleTemplates.class.php:196 +#: ../../include/class/ModuleTemplates.class.php:214 +msgid "Templates" +msgstr "Plantillas" + +#: ../../enterprise/views/ncm/templates/list.php:74 +#: ../../enterprise/views/ncm/templates/edit.php:107 +#: ../../enterprise/views/ncm/firmwares/edit.php:106 +#: ../../enterprise/views/ncm/vendors/list.php:32 +#: ../../enterprise/views/ncm/vendors/edit.php:35 +msgid "Vendors" +msgstr "Fabricantes" + +#: ../../enterprise/views/ncm/templates/list.php:75 +#: ../../enterprise/views/ncm/templates/edit.php:134 +#: ../../enterprise/views/ncm/firmwares/list.php:76 +#: ../../enterprise/views/ncm/firmwares/edit.php:133 +#: ../../enterprise/views/ncm/models/list.php:32 +msgid "Models" +msgstr "Modelos" + +#: ../../enterprise/views/ncm/templates/list.php:76 +msgid "Scripts defined" +msgstr "Scripts definidos" + +#: ../../enterprise/views/ncm/templates/edit.php:42 +#: ../../enterprise/views/ncm/devices/list.php:32 +#: ../../enterprise/views/ncm/models/edit.php:37 +msgid "Devices" +msgstr "Dispositivos" + +#: ../../enterprise/views/ncm/templates/edit.php:102 +msgid "Comma separated, a vendors list compatible with scripts defined within template." +msgstr "" +"Separado por comas, una lista de proveedores compatible con scripts definidos dentro " +"de la plantilla." + +#: ../../enterprise/views/ncm/templates/edit.php:130 +msgid "Comma separated, a model list compatible with scripts defined within template." +msgstr "" +"Separado por comas, una lista de modelos compatibles con scripts definidos dentro de " +"la plantilla." + +#: ../../enterprise/views/ncm/templates/edit.php:148 +msgid "This script will be used to test devices availability" +msgstr "Este script se utilizarĆ” para probar la disponibilidad de los dispositivos" + +#: ../../enterprise/views/ncm/templates/edit.php:153 +msgid "Script: Test" +msgstr "Script: prueba" + +#: ../../enterprise/views/ncm/templates/edit.php:176 +msgid "This script will be used to retrieve configuration from devices" +msgstr "Este script se utilizarĆ” para recuperar la configuraciĆ³n de los dispositivos" + +#: ../../enterprise/views/ncm/templates/edit.php:181 +msgid "Script: Get configuration" +msgstr "Script: obtener configuraciĆ³n" + +#: ../../enterprise/views/ncm/templates/edit.php:204 msgid "" -"Update Manager sends anonymous information about %s usage (number of agents " -"and modules running). To disable it, please remove the remote server address " -"from the Update Manager plugin setup." +"This script will be used to apply configuration, previously backed up, to devices" msgstr "" -"Update Manager envĆ­a informaciĆ³n anĆ³nima sobre el uso de %s (nĆŗmero de agentes " -"en ejecuciĆ³n). Para deshabilitarlo, elimine la direcciĆ³n del servidor remoto " -"de la configuraciĆ³n del plugin Update Manager." +"Este script se utilizarĆ” para aplicar la configuraciĆ³n, previamente respaldada, a los " +"dispositivos" -#: ../../general/alert_enterprise.php:138 +#: ../../enterprise/views/ncm/templates/edit.php:209 +msgid "Script: set configuration" +msgstr "Script: establecer la configuraciĆ³n" + +#: ../../enterprise/views/ncm/templates/edit.php:232 +msgid "This script will be used to retrieve firmware version from devices" +msgstr "" +"Este script se utilizarĆ” para recuperar la versiĆ³n del firmware de los dispositivos" + +#: ../../enterprise/views/ncm/templates/edit.php:237 +msgid "Script: get firmware" +msgstr "Script: obtener firmware" + +#: ../../enterprise/views/ncm/templates/edit.php:259 +msgid "This script will be used to upgrade firmware version of the devices" +msgstr "" +"Este script se utilizarĆ” para actualizar la versiĆ³n de firmware de los dispositivos" + +#: ../../enterprise/views/ncm/templates/edit.php:264 +msgid "Script: set firmware" +msgstr "Script: establecer firmware" + +#: ../../enterprise/views/ncm/templates/edit.php:286 +msgid "This script will be executed on the devices when selecting CUSTOM task" +msgstr "Este script se ejecutarĆ” en los dispositivos al seleccionar la tarea CUSTOM" + +#: ../../enterprise/views/ncm/templates/edit.php:291 +msgid "Script: custom task" +msgstr "Script: tarea personalizada" + +#: ../../enterprise/views/ncm/devices/list.php:64 +#: ../../include/functions_reports.php:938 +msgid "NCM" +msgstr "NCM" + +#: ../../enterprise/views/ncm/devices/list.php:69 msgid "" -"The community version doesn't have the ability to define your own library of " -"local modules, or distribute it to remote agents. You need to make those " -"changes individually on each agent which is possible by using external tools " -"and time and effort. Nor can it distribute local plugins, or have access to " -"the library of enterprise plugins to monitor applications such as VMWare, RHEV " -"or Informix between others. The Enterprise version will have all this, plus " -"the ability to distribute and manage your own local modules on your systems, " -"individually or through policies.\n" -"

pandorafms." -"com" +"Network configuration manager is used to keep configurations and software versions of " +"any network device in your infrastructure under your control." msgstr "" -"ĀæQuiere consolidar toda la monitorizaciĆ³n de sus sistemas? ĀæTiene tantos " -"sistemas que le resulta difĆ­cil gestionarlos completamente? ĀæLe gustarĆ­a " -"desplegar monitorizaciĆ³n, alertas e incluso plugins locales en un solo click? " -"Las polĆ­ticas Enterprise de %s son exactamente lo que usted necesita. Se " -"ahorrarĆ” tiempo, esfuerzos y molestias. MĆ”s informaciĆ³n en pandorafms.com" +"El administrador de configuraciĆ³n de red se utiliza para mantener las configuraciones " +"y versiones de software de cualquier dispositivo de red en su infraestructura bajo su " +"control." -#: ../../general/alert_enterprise.php:148 -#, php-format +#: ../../enterprise/views/ncm/devices/list.php:77 msgid "" -"%s Enterprise also features event correlation. Through correlation you can " -"generate realtime alerts and / or new events based on logical rules. This " -"allows you to automate troubleshooting. If you know the value of working with " -"events, event correlation will take you to a new level." +"To start using it, navigatenavigate to your desired agent, tab Network Config " +"Manager, and enable the ncm features,\n" +" you will be asked for the vendor and model of the device." msgstr "" -"%s Enterprise tambiĆ©n incluye correlaciĆ³n de eventos. A travĆ©s de esta " -"correlaciĆ³n puede generar alertas en tiempo real y / o nuevos eventos basados " -"en reglas lĆ³gicas. Esto le permite automatizar la resoluciĆ³n de errores. Si ya " -"conoce la importancia de trabajar con eventos, la correlaciĆ³n de eventos le " -"llevarĆ” a otro nivel." +"Para comenzar a usarlo, navegue por el agente que desee, seleccione Administrador de " +"configuraciĆ³n de red y habilite las funciones de ncm,\n" +" se le pedirĆ” el proveedor y el modelo del dispositivo." + +#: ../../enterprise/views/ncm/devices/list.php:84 +msgid "Define a NCM template" +msgstr "Definir una plantilla de NCM" + +#: ../../enterprise/views/ncm/devices/list.php:87 +msgid "Configure agents to use NCM templates" +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:2036 +#: ../../enterprise/tools/ipam/ipam_network.php:395 +#: ../../enterprise/tools/ipam/ipam_supernet_config.php:546 +#: ../../enterprise/tools/ipam/ipam_vlan_wizard.php:53 +#: ../../enterprise/tools/ipam/ipam_vlan_wizard.php:254 +#: ../../enterprise/tools/ipam/ipam_excel.php:133 +#: ../../enterprise/tools/ipam/ipam_ajax.php:359 +#: ../../enterprise/tools/ipam/ipam_calculator.php:62 +#: ../../godmode/setup/setup_general.php:649 ../../operation/agentes/ver_agente.php:1181 +msgid "Address" +msgstr "DirecciĆ³n" + +#: ../../enterprise/views/ncm/devices/list.php:118 +#: ../../enterprise/views/ncm/firmwares/list.php:75 +#: ../../enterprise/views/ncm/models/list.php:72 +#: ../../enterprise/views/ncm/models/edit.php:88 +msgid "Vendor" +msgstr "Fabricante" + +#: ../../enterprise/views/ncm/devices/list.php:119 +msgid "Model" +msgstr "Modelo" -#: ../../general/alert_enterprise.php:152 -#, php-format -msgid "" -"Report generating on the Enterprise version is also more powerful: it has " -"wizards, you can schedule emails in PDF to be sent according to the schedule " -"you decide, and it has a template system to create personalized reports " -"quickly for each of your customers. It will even allow your customers to " -"generate their own reports from templates created by you. If reports are key " -"to your business, %s Enterprise version is for you." -msgstr "" -"La generaciĆ³n de informes en la versiĆ³n Enterprise tambiĆ©n es mĆ”s potente: " -"tiene asistentes, puede programar el envĆ­o de emails en PDF cuando usted " -"decida y tiene un sistema de plantillas para crear informes personalizados " -"rĆ”pidamente para todos sus clientes. TambiĆ©n le permitirĆ” a sus clientes crear " -"sus propios informes a partir de las plantillas que usted haya creado. Si los " -"informes son la clave de su negocio, %s versiĆ³n Enterprise es para usted." - -#: ../../general/alert_enterprise.php:156 -msgid "These options are only effective on the Enterprise version." -msgstr "Estas opciones solo funcionan en la versiĆ³n Enterprise." - -#: ../../general/alert_enterprise.php:160 -msgid "" -"WARNING: You are just one click away from an automated update. This may result " -"in a damaged system, including loss of data and operativity. Check you have a " -"recent backup. OpenSource updates are automatically created packages, and " -"there is no WARRANTY or SUPPORT. If you need professional support and " -"warranty, please upgrade to Enterprise Version." -msgstr "" -"ADVERTENCIA: EstĆ”s a un solo clic de una actualizaciĆ³n automĆ”tica. Esto podrĆ­a " -"daƱar el sistema, incluyendo pĆ©rdida de datos y operatividad. Comprueba que " -"tienes una copia de seguridad reciente. Las actualizaciones de la versiĆ³n " -"OpenSource son paquetes creados automĆ”ticamente, y no hay GARANTƍA o SOPORTE. " -"Si necesitas asistencia profesional y una garantĆ­a, actualiza a la versiĆ³n " -"Enterprise." - -#: ../../general/alert_enterprise.php:164 -msgid "" -"This system is heavily loaded. OpenSource version could get a lot more agents " -"but fine tuning requires knowledge and time. Checkout the Enterprise Version " -"for a professional supported system." -msgstr "" -"Este sistema estĆ” muy congestionado. La versiĆ³n OpenSource podrĆ­a obtener " -"muchos mĆ”s agentes, pero la precisiĆ³n requiere de tiempo y conocimiento. " -"Instala la versiĆ³n Enterprise para obtener un sistema profesional compatible." - -#: ../../general/alert_enterprise.php:173 -#, php-format -msgid "" -"This system has too many modules per agent. OpenSource version could manage " -"thousands of modules, but is not recommended to have more than 100 modules per " -"agent. This configuration has %d modules per agent. Checkout the Enterprise " -"Version for a professional supported system." -msgstr "" -"El sistema tiene demasiados mĆ³dulos por agente. La versiĆ³n OpenSource puede " -"manejar miles de mĆ³dulos, pero no es recomendable tener mĆ”s de 100 mĆ³dulos por " -"agente. Esta configuraciĆ³n tiene %d mĆ³dulos por agente. Vea la versiĆ³n " -"Enterprise para tener un sistema profesional con soporte." - -#: ../../general/alert_enterprise.php:177 -msgid "" -"Too much remote modules has been detected on this system. OpenSource version " -"could manage thousands of modules, but performance is limited on high amount " -"of SNMP or ICMP request. Checkout the Enterprise Version for a professional " -"supported system with improved capacity on network monitoring, including " -"distributed servers." -msgstr "" -"Se han detectado muchos mĆ³dulos remotos en este sistema. La versiĆ³n OpenSource " -"puede manejar miles de mĆ³dulos, pero el rendimiento serĆ” limitado con un gran " -"nĆŗmero de peticiones SNMP o ICMP. Instala la versiĆ³n Enterprise para obtener " -"un sistema profesional compatible." - -#: ../../general/alert_enterprise.php:181 -msgid "" -"This system has too much events in the database. Checkout database purge " -"options. Checkout the Enterprise Version for a professional supported system." -msgstr "" -"Este sistema tiene muchos eventos en la base de datos. Consulta las opciones " -"de purga de la base de datos. Instala la versiĆ³n Enterprise para obtener un " -"sistema profesional compatible." - -#: ../../general/alert_enterprise.php:185 -msgid "" -"You have defined a high number of alerts, this may cause you performance " -"problems in the future. In the Enterprise version, you can use event " -"correlation alerts to simplify the alerting system and have easier " -"administration and increased performance." -msgstr "" -"Tiene definido un gran nĆŗmero de agentes que podrĆ­an provocar problemas de " -"rendimiento en un futuro. En la versiĆ³n Enterprise puedes usar la correlaciĆ³n " -"de alertas de eventos para simplificar el sistema de alertas y poder manejarlo " -"de forma sencilla y aumentar el rendimiento." - -#: ../../general/noaccess2.php:23 -msgid "Access to this page is restricted" -msgstr "El acceso a esta pĆ”gina estĆ” restringido" - -#: ../../general/noaccess2.php:28 -#: ../../enterprise/meta/general/metaconsole_no_activated.php:20 -msgid "No access" -msgstr "Acceso denegado" - -#: ../../general/noaccess2.php:35 -msgid "" -"Access to this page is restricted to authorized users only, please contact " -"system administrator if you need assistance.

\n" -"\t\t\tPlease know that all attempts to access this page are recorded in " -"security logs of Pandora System Database" -msgstr "" -"El acceso a esta pƔgina estƔ restringido a usuarios autorizados solamente. Por " -"favor, contacta con el administrador del sistema si necesitas ayuda.

\n" -"\t\t\tTen en cuenta que todos los intentos de acceso a esta pĆ”gina son " -"guardados en los logs de seguridad de la base de datos de Pandora FMS" - -#: ../../general/header.php:48 ../../general/header.php:54 -#: ../../enterprise/meta/general/header.php:66 -#: ../../enterprise/meta/general/header.php:72 -#: ../../enterprise/meta/general/main_header.php:518 -#: ../../enterprise/meta/general/main_header.php:524 -msgid "All systems" -msgstr "Todos los sistemas" - -#: ../../general/header.php:48 ../../enterprise/meta/general/header.php:66 -#: ../../enterprise/meta/general/main_header.php:518 -msgid "Down" -msgstr "CaĆ­do(s)" - -#: ../../general/header.php:51 ../../enterprise/meta/general/header.php:69 -#: ../../enterprise/meta/general/main_header.php:521 -msgid "servers down" -msgstr "servidor(es) caĆ­do(s)" - -#: ../../general/header.php:54 ../../enterprise/meta/general/header.php:72 -#: ../../enterprise/meta/general/main_header.php:524 -msgid "Ready" -msgstr "Preparado" - -#: ../../general/header.php:77 -msgid "Sobre actualizaciƃĀ³n de revisiƃĀ³n menor" -msgstr "Sobre actualizaciĆ³n de revisiĆ³n menor" - -#: ../../general/header.php:79 -msgid "About minor release update" -msgstr "Sobre la actualizaciĆ³n menor" - -#: ../../general/header.php:112 ../../general/header.php:114 -msgid "Enter keywords to search" -msgstr "Introduce palabras clave para buscar" - -#: ../../general/header.php:235 ../../enterprise/meta/general/header.php:110 -#: ../../enterprise/meta/general/main_header.php:552 -msgid "Configure autorefresh" -msgstr "Configurar actualizaciĆ³n automĆ”tica" - -#: ../../general/header.php:265 -#: ../../operation/incidents/configure_integriaims_incident.php:240 -#: ../../operation/incidents/configure_integriaims_incident.php:256 -#: ../../operation/incidents/configure_integriaims_incident.php:302 -#: ../../include/functions_reports.php:1351 -#: ../../include/class/AgentsAlerts.class.php:354 -#: ../../enterprise/meta/general/header.php:121 -#: ../../enterprise/meta/general/main_header.php:558 -#: ../../enterprise/meta/include/ajax/wizard.ajax.php:742 -#: ../../enterprise/meta/monitoring/wizard/wizard.php:150 -#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:260 -#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:357 -#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:414 -#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:682 -#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:753 -#: ../../enterprise/meta/monitoring/wizard/wizard.create_module.php:231 -#: ../../enterprise/meta/monitoring/wizard/wizard.manage_alert.php:231 -#: ../../enterprise/godmode/services/services.service.php:873 -#: ../../enterprise/godmode/services/services.service.php:885 -#: ../../enterprise/godmode/services/services.service.php:897 -#: ../../enterprise/godmode/services/services.service.php:909 -#: ../../enterprise/godmode/massive/massive_add_modules_policy.php:141 -#: ../../enterprise/godmode/massive/massive_create_services.php:902 -#: ../../enterprise/godmode/massive/massive_create_services.php:914 -#: ../../enterprise/godmode/massive/massive_create_services.php:926 -#: ../../enterprise/godmode/massive/massive_create_services.php:938 -#: ../../enterprise/godmode/policies/policy_external_alerts.php:676 -#: ../../enterprise/godmode/policies/policy_alerts.php:648 -#: ../../extensions/insert_data.php:186 -#: ../../godmode/setup/setup_integria.php:367 -#: ../../godmode/setup/setup_integria.php:385 -#: ../../godmode/setup/setup_integria.php:414 -#: ../../godmode/setup/setup_integria.php:432 -#: ../../godmode/setup/setup_integria.php:489 -#: ../../godmode/setup/setup_integria.php:507 -#: ../../godmode/setup/setup_integria.php:536 -#: ../../godmode/setup/setup_integria.php:554 -#: ../../godmode/snmpconsole/snmp_trap_generator.php:159 -#: ../../godmode/massive/massive_add_alerts.php:286 -#: ../../godmode/massive/massive_delete_modules.php:334 -#: ../../godmode/massive/massive_delete_modules.php:469 -#: ../../godmode/massive/massive_copy_modules.php:138 -#: ../../godmode/massive/massive_delete_alerts.php:277 -#: ../../godmode/massive/massive_edit_modules.php:318 -#: ../../godmode/massive/massive_edit_modules.php:431 -#: ../../godmode/alerts/alert_list.builder.php:82 -#: ../../godmode/alerts/alert_list.builder.php:156 -msgid "Select" -msgstr "Seleccionar" - -#: ../../general/header.php:301 ../../general/header.php:320 -#: ../../enterprise/meta/general/header.php:137 -#: ../../enterprise/meta/general/header.php:149 -#: ../../enterprise/meta/general/main_header.php:569 -#: ../../enterprise/meta/general/main_header.php:581 -msgid "Disabled autorefresh" -msgstr "ActualizaciĆ³n automĆ”tica desactivada" - -#: ../../general/header.php:356 ../../general/header.php:358 -#: ../../include/class/HelpFeedBack.class.php:213 -#: ../../include/class/Diagnostics.class.php:1967 -msgid "Feedback" -msgstr "Feedback" - -#: ../../general/header.php:379 -msgid "Go to support" -msgstr "Ir a soporte" - -#: ../../general/header.php:393 -msgid "Go to documentation" -msgstr "Ir a documentaciĆ³n" - -#: ../../general/header.php:407 ../../general/header.php:417 -#: ../../operation/menu.php:460 ../../enterprise/meta/general/header.php:204 -#: ../../enterprise/meta/general/header.php:214 -#: ../../enterprise/meta/general/main_header.php:624 -#: ../../enterprise/meta/general/main_header.php:630 -#: ../../enterprise/meta/include/functions_users_meta.php:193 -#: ../../enterprise/meta/include/functions_users_meta.php:208 -msgid "Edit my user" -msgstr "Editar mi usuario" - -#: ../../general/header.php:432 ../../general/header.php:434 -#: ../../enterprise/meta/general/header.php:231 -#: ../../enterprise/meta/general/header.php:233 -#: ../../enterprise/meta/general/main_header.php:535 -#: ../../mobile/operation/home.php:148 ../../mobile/include/user.class.php:440 -#: ../../mobile/include/ui.class.php:225 -#: ../../mobile/include/functions_web.php:34 -msgid "Logout" -msgstr "Salir" - -#: ../../general/header.php:813 ../../godmode/setup/setup_general.php:660 -msgid "Send" -msgstr "Enviar" - -#: ../../general/header.php:815 -msgid "Report an issue" -msgstr "Notificar un error" - -#: ../../general/first_task/map_builder.php:23 -#: ../../godmode/reporting/map_builder.php:462 -msgid "There are no visual console defined yet." -msgstr "No hay consola visual definida todavĆ­a." - -#: ../../general/first_task/map_builder.php:31 -#: ../../include/class/OrderInterpreter.class.php:233 -#: ../../include/lib/Dashboard/Widgets/maps_made_by_user.php:174 -#: ../../include/lib/Dashboard/Widgets/maps_made_by_user.php:471 -#: ../../enterprise/include/functions_enterprise.php:456 -#: ../../enterprise/meta/general/main_menu.php:346 -#: ../../enterprise/meta/general/main_header.php:240 -msgid "Visual Console" -msgstr "Consola visual" - -#: ../../general/first_task/map_builder.php:34 -#: ../../general/first_task/map_builder.php:45 -msgid "Create Visual Console" -msgstr "Crear consola visual" - -#: ../../general/first_task/map_builder.php:37 -#, php-format -msgid "" -"%s allows users to create visual maps on which each user is able to create his " -"or her own monitoring map. The new visual console editor is much more " -"practical, although the prior visual console editor had its advantages. On the " -"new visual console, we've been successful in imitating the sensation and touch " -"of a drawing application like GIMP. We've also simplified the editor by " -"dividing it into several subject-divided tabs named 'Data', 'Preview', " -"'Wizard', 'List of Elements' and 'Editor'. The items the %s Visual Map was " -"designed to handle are 'static images', 'percentage bars', 'module graphs' and " -"'simple values'." -msgstr "" -"%s permite a los usuarios crear mapas visuales en los que cada usuario puede " -"crear su propio mapa de monitorizaciĆ³n. El nuevo editor de consola visual es " -"mucho mĆ”s prĆ”ctico, a pesar de que el editor de consola visual anterior tenĆ­a " -"sus ventajas. Hemos conseguido imitar la sensaciĆ³n y el toque de una " -"aplicaciĆ³n de dibujo como GIMP en la nueva consola visual. TambiĆ©n hemos " -"simplificado el editor dividiĆ©ndolo en diferentes pestaƱas clasificadas " -"temĆ”ticamente llamadas \"Datos\", \"Vista previa\", \"Asistente\", \"Lista de " -"elementos\" y \"Editor\". Los elementos para los que el mapa visual de %s fue " -"diseƱado son las \"imĆ”genes estĆ”ticas\", las \"barras de porcentajes\" y los " -"\"valores simples\"." - -#: ../../general/first_task/service_list.php:19 -msgid "There are no services defined yet." -msgstr "No hay servicios definidos todavĆ­a." - -#: ../../general/first_task/service_list.php:23 -#: ../../operation/agentes/ver_agente.php:1654 -#: ../../enterprise/operation/services/services.treeview_services.php:61 -#: ../../enterprise/operation/services/services.treeview_services.php:81 -#: ../../enterprise/operation/services/services.service.php:83 -#: ../../enterprise/operation/services/services.list.php:58 -#: ../../enterprise/operation/services/services.list.php:75 -#: ../../enterprise/operation/services/services.service_map.php:97 -#: ../../enterprise/operation/services/services.service_map.php:144 -#: ../../enterprise/operation/services/services.table_services.php:38 -#: ../../enterprise/operation/services/services.table_services.php:58 -#: ../../enterprise/operation/menu.php:77 -#: ../../enterprise/include/functions_groups.php:65 -#: ../../enterprise/meta/general/main_menu.php:329 -#: ../../enterprise/meta/general/main_header.php:210 -#: ../../enterprise/godmode/services/services.elements.php:778 -#: ../../enterprise/godmode/services/services.elements.php:798 -#: ../../enterprise/godmode/services/services.service.php:477 -#: ../../enterprise/godmode/services/services.service.php:497 -#: ../../enterprise/godmode/services/services.massive.meta.php:42 -#: ../../enterprise/godmode/services/services.massive.elements.php:44 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:314 -#: ../../enterprise/godmode/reporting/visual_console_builder.wizard_services.php:136 -#: ../../enterprise/godmode/menu.php:137 -#: ../../enterprise/godmode/massive/massive_add_service_elements.php:363 -#: ../../enterprise/godmode/massive/massive_create_services.php:966 -msgid "Services" -msgstr "Servicios" - -#: ../../general/first_task/service_list.php:26 -#: ../../general/first_task/service_list.php:40 -msgid "Create Services" -msgstr "Crear servicios" - -#: ../../general/first_task/service_list.php:30 -msgid "" -"A service is a way to group your IT resources based on their " -"functionalities. \n" -"\t\t\t\t\t\tA service could be e.g. your official website, your CRM system, " -"your support application, or even your printers.\n" -"\t\t\t\t\t\t Services are logical groups which can include hosts, routers, " -"switches, firewalls, CRMs, ERPs, websites and numerous other services. \n" -"\t\t\t\t\t\t By the following example, you're able to see more clearly what a " -"service is:\n" -"\t\t\t\t\t\t\tA chip manufacturer sells computers by its website all around " -"the world. \n" -"\t\t\t\t\t\t\tHis company consists of three big departments: A management, an " -"on-line shop and support." -msgstr "" -"Un servicio es una forma de agrupar recursos de TI basados en tus " -"funcionalidades.\n" -"\t\t\t\t\t\tUn servicio puede ser por ejemplo tu pĆ”gina web oficial, tu " -"sistema CRM, tu aplicaciĆ³n de soporte o incluso tus impresoras.\n" -"\t\t\t\t\t\t Los servicios son grupos lĆ³gicos que pueden incluir hosts, " -"routers, switches, firewalls, CRMs, ERPs, sitios web y muchos otros " -"servicios. \n" -"\t\t\t\t\t\t Mediante el siguiente ejemplo, podrĆ” ver mĆ”s claramente lo que es " -"un servicio:\n" -"\t\t\t\t\t\t\tUn fabricante de chips vende computadoras por su pĆ”gina web en " -"todo el mundo. \n" -"\t\t\t\t\t\t\tSu empresa se compone de tres grandes departamentos: gestiĆ³n, " -"tienda online y apoyo." - -#: ../../general/first_task/HA_cluster_builder.php:37 -msgid "There are no HA clusters defined yet." -msgstr "AĆŗn no se han definido clusters de alta disponibilidad." - -#: ../../general/first_task/HA_cluster_builder.php:42 -#: ../../general/first_task/cluster_builder.php:29 -#: ../../general/first_task/cluster_builder.php:51 -#: ../../enterprise/views/cluster/list.php:31 -msgid "Clusters" -msgstr "ClĆŗsters" - -#: ../../general/first_task/HA_cluster_builder.php:45 -msgid "PANDORA FMS DB CLUSTER" -msgstr "CLUSTER DE LA BASE DE DATOS DE PANDORA FMS" - -#: ../../general/first_task/HA_cluster_builder.php:48 -msgid "" -"With Pandora FMS Enterprise you can add high availability to your Pandora FMS " -"installation by adding redundant MySQL servers" -msgstr "" -"Con Pandora FMS Enterprise puede aƱadir la alta disponibilidad a su " -"instalaciĆ³n de Pandora FMS aƱadiendo servidores MySQL redundantes" - -#: ../../general/first_task/HA_cluster_builder.php:50 -msgid "" -"Click on \"add new node\" to start transforming your Pandora FMS DB Cluster " -"into a Pandora FMS DB Cluster." -msgstr "" -"Pinche en \"aƱadir nuevo mĆ³dulo\" para empezar a convertir su cluster de base " -"de datos de Pandora FMS en un cluster de base de datos de Pandora FMS." - -#: ../../general/first_task/HA_cluster_builder.php:59 -msgid "Add new node" -msgstr "AƱadir nuevo nodo" - -#: ../../general/first_task/tags.php:18 -msgid "There are no tags defined yet." -msgstr "No hay etiquetas definidas todavĆ­a." - -#: ../../general/first_task/tags.php:22 ../../operation/tree.php:66 -#: ../../operation/events/events.build_table.php:283 -#: ../../operation/agentes/status_monitor.php:550 -#: ../../operation/agentes/group_view.php:222 -#: ../../operation/agentes/alerts_status.functions.php:107 -#: ../../operation/users/user_edit.php:815 -#: ../../include/lib/Dashboard/Widgets/events_list.php:450 -#: ../../include/lib/Dashboard/Widgets/tree_view.php:329 -#: ../../include/functions_events.php:203 ../../include/functions_events.php:272 -#: ../../include/functions_events.php:5138 -#: ../../include/functions_events.php:6747 -#: ../../include/functions_treeview.php:168 -#: ../../include/functions_profile.php:215 -#: ../../include/functions_reporting_html.php:3445 -#: ../../enterprise/operation/agentes/tag_view.php:223 -#: ../../enterprise/operation/agentes/tag_view.php:225 -#: ../../enterprise/operation/agentes/tag_view.php:678 -#: ../../enterprise/meta/include/functions_events_meta.php:106 -#: ../../enterprise/godmode/setup/setup_auth.php:231 -#: ../../enterprise/godmode/setup/setup_auth.php:510 -#: ../../enterprise/godmode/setup/setup_auth.php:1307 -#: ../../enterprise/godmode/modules/configure_local_component.php:550 -#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:971 -#: ../../enterprise/godmode/massive/massive_add_modules_policy.php:163 -#: ../../enterprise/godmode/massive/massive_tags_edit_policy.php:120 -#: ../../mobile/operation/events.php:557 -#: ../../godmode/modules/manage_network_components_form_common.php:351 -#: ../../godmode/tag/edit_tag.php:66 ../../godmode/events/custom_events.php:108 -#: ../../godmode/massive/massive_delete_modules.php:401 -#: ../../godmode/massive/massive_delete_modules.php:515 -#: ../../godmode/massive/massive_copy_modules.php:172 -#: ../../godmode/massive/massive_edit_modules.php:405 -#: ../../godmode/massive/massive_edit_modules.php:491 -#: ../../godmode/massive/massive_edit_modules.php:1047 -msgid "Tags" -msgstr "Etiquetas" - -#: ../../general/first_task/tags.php:25 ../../general/first_task/tags.php:35 -msgid "Create Tags" -msgstr "Crear etiquetas" - -#: ../../general/first_task/tags.php:28 -msgid "" -"Access to modules can be configured by a tagging system.\n" -"\t\t\t\t\t\t\t\tTags are configured on the system and are assigned to the " -"chosen modules.\n" -"\t\t\t\t\t\t\t\tA user's access can therefore be restricted to modules with " -"certain tags." -msgstr "" -"El acceso a los mĆ³dulos puede configurarse mediante etiquetas.\n" -"\t\t\t\t\t\t\t\tLas etiquetas se configuran en el sistema y se asignan a los " -"mĆ³dulos elegidos.\n" -"\t\t\t\t\t\t\t\tPor ello, se puede restringir el acceso de un usuario a los " -"mĆ³dulos mediante ciertas etiquetas." - -#: ../../general/first_task/custom_fields.php:19 -#: ../../general/first_task/fields_manager.php:18 -msgid "There are no custom fields defined yet." -msgstr "No hay campos personalizados definidos todavĆ­a." - -#: ../../general/first_task/custom_fields.php:24 -#: ../../enterprise/meta/monitoring/custom_fields_view.php:250 -msgid "Custom Fields" -msgstr "Campos personalizados" - -#: ../../general/first_task/custom_fields.php:27 -#: ../../general/first_task/custom_fields.php:36 -msgid "Create Custom Fields" -msgstr "Crear campos personalizados" - -#: ../../general/first_task/custom_fields.php:30 -msgid "" -"Custom fields are an easy way to personalized agent's information.\n" -"\t\t You're able to create custom fields by klicking on 'Administration' -> " -"'Manage monitoring' -> 'Manage custom fields'. " -msgstr "" -"Los campos personalizados son una manera fĆ”cil de personalizar la informaciĆ³n " -"del agente.\n" -"\t \t Puedes crear campos personalizados haciendo clic en \"AdministraciĆ³n\" -" -"> \"Administrar monitorizaciĆ³n\" -> \"Administrar campos personalizados\". " - -#: ../../general/first_task/omnishell.php:27 -msgid "There is no command defined yet." -msgstr "AĆŗn no hay un comando definido." - -#: ../../general/first_task/omnishell.php:31 -#: ../../general/first_task/omnishell.php:34 -#: ../../enterprise/godmode/menu.php:308 -msgid "Omnishell" -msgstr "Omnishell" - -#: ../../general/first_task/omnishell.php:37 -#, php-format -msgid "" -"Omnishell is an enterprise feature which allows you to execute a structured " -"command along any agent in your %s. The only requirement is to have remote " -"configuration enabled in your agent." -msgstr "" -"Omnishell es una funciĆ³n Enterprise que le permite ejecutar un comando " -"estructurado junto con cualquier agente en %s. El Ćŗnico requisito es tener la " -"configuraciĆ³n remota habilitada en el agente." - -#: ../../general/first_task/omnishell.php:42 -msgid "" -"You can execute any command on as many agents you need, and check the " -"execution on all of them using the Omnishell Command View" -msgstr "" -"Puede ejecutar cualquier comando en tantos agentes como desee y comprobar la " -"ejecuciĆ³n de todos ellos mediante la vista del comando Omnishell" - -#: ../../general/first_task/omnishell.php:50 -msgid "Define a command" -msgstr "Definir un comando" - -#: ../../general/first_task/planned_downtime.php:18 -msgid "There are no scheduled downtime defined yet." -msgstr "No se ha definido aĆŗn un tiempo de parada planificada." - -#: ../../general/first_task/planned_downtime.php:22 -msgid "Scehduled Downtime" -msgstr "Parada planificada" - -#: ../../general/first_task/planned_downtime.php:25 -#: ../../general/first_task/planned_downtime.php:37 -msgid "Create Scheduled Downtime" -msgstr "Parada planificada" - -#: ../../general/first_task/planned_downtime.php:28 -#, php-format -msgid "" -"%s contains a scheduled downtime management system.\n" -"\t\t\t\t\t\tThis system was designed to deactivate alerts during specific " -"intervals whenever there is down time by deactivating the agent.\n" -"\t\t\t\t\t\tIf an agent is deactivated, it doesn't gather information. During " -"down time, down-time intervals aren't taken into\n" -"\t\t\t\t\t\taccount for most metrics or report types, because agents don't " -"contain any data within those intervals." -msgstr "" -"%s contiene un sistema de gestiĆ³n de paradas planificadas.\n" -"\t\t\t\t\t\tEste sistema fue diseƱado para desactivar las alertas durante " -"intervalos especĆ­ficos siempre que haya una parada a causa de un agente " -"desactivado.\n" -"\t\t\t\t\t\tSi un agente estĆ” desactivado, no recoge informaciĆ³n. Durante esta " -"parada, los intervalos de parada no se tienen en\n" -"\t\t\t\t\t\tcuenta en la mayorĆ­a de las mĆ©tricas e informes, porque los " -"agentes no contienen datos durante dichos intervalos." - -#: ../../general/first_task/cluster_builder.php:38 ../../operation/tree.php:183 -#: ../../operation/menu.php:31 ../../operation/menu.php:154 -#: ../../operation/snmpconsole/snmp_mib_uploader.php:56 -#: ../../operation/snmpconsole/snmp_browser.php:86 -#: ../../operation/snmpconsole/snmp_statistics.php:98 -#: ../../operation/snmpconsole/snmp_view.php:693 -#: ../../operation/snmpconsole/snmp_view.php:802 ../../operation/heatmap.php:133 -#: ../../operation/agentes/status_monitor.php:104 -#: ../../operation/agentes/alerts_status.php:200 -#: ../../operation/agentes/group_view.php:98 -#: ../../operation/agentes/interface_view.php:72 -#: ../../operation/agentes/tactical.php:78 -#: ../../operation/agentes/estado_agente.php:224 -#: ../../operation/agentes/ver_agente.php:1915 -#: ../../include/class/AgentsAlerts.class.php:738 -#: ../../enterprise/tools/ipam/ipam_editor.php:261 -#: ../../enterprise/views/cluster/list.php:31 -#: ../../enterprise/operation/services/services.treeview_services.php:61 -#: ../../enterprise/operation/services/services.list.php:58 -#: ../../enterprise/operation/services/services.table_services.php:38 -#: ../../enterprise/operation/agentes/tag_view.php:50 -#: ../../enterprise/operation/inventory/inventory.php:146 -#: ../../enterprise/include/ajax/ipam.ajax.php:455 -#: ../../enterprise/include/class/SAPView.class.php:155 -#: ../../enterprise/include/class/SAPView.class.php:199 -#: ../../enterprise/meta/general/main_menu.php:181 -#: ../../enterprise/meta/general/logon_ok.php:75 -#: ../../enterprise/meta/general/main_header.php:91 -#: ../../enterprise/extensions/vmware/vmware_view.php:1394 -#: ../../enterprise/godmode/services/services.massive.meta.php:42 -#: ../../enterprise/godmode/services/services.massive.elements.php:44 -#: ../../enterprise/godmode/reporting/aws_view.php:115 -#: ../../enterprise/godmode/reporting/aws_view.php:148 -#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:53 -#: ../../extensions/realtime_graphs.php:67 ../../extensions/module_groups.php:260 -#: ../../extensions/agents_modules.php:474 -#: ../../godmode/snmpconsole/snmp_filters.php:55 -#: ../../godmode/snmpconsole/snmp_trap_generator.php:47 -msgid "Monitoring" -msgstr "MonitorizaciĆ³n" - -#: ../../general/first_task/cluster_builder.php:46 -msgid "There are no clusters defined yet." -msgstr "No hay clĆŗsters definidos todavĆ­a." - -#: ../../general/first_task/cluster_builder.php:54 -#: ../../general/first_task/cluster_builder.php:72 -msgid "Create Cluster" -msgstr "Crear clĆŗster" - -#: ../../general/first_task/cluster_builder.php:57 -msgid "" -"A cluster is a group of devices that provide the same service in high " -"availability." -msgstr "" -"Un clĆŗster es un grupo de servicios que proporciona el mismo servicio en alta " -"disponibilidad." - -#: ../../general/first_task/cluster_builder.php:59 -msgid "Depending on how they provide that service, we can find two types:" -msgstr "Dependiendo de cĆ³mo proporcionen ese servicio, hay dos tipos:" - -#: ../../general/first_task/cluster_builder.php:61 -msgid "" -"Clusters to balance the service load: these are active - active (A/A) " -"mode clusters. It means that all the nodes (or machines that compose it) are " -"working. They must be working because if one stops working, it will overload " -"the others." -msgstr "" -"ClĆŗsters para equilibrar la carga del servicio: son clĆŗsters de modo " -"activo-activo(A/A), por lo tanto todos los nodos (o mĆ”quinas que lo componen) " -"estĆ”n funcionando. Tienen que estar todos en funcionamiento porque si uno se " -"detiene, sobrecargarĆ” a los demĆ”s." - -#: ../../general/first_task/cluster_builder.php:63 -msgid "" -"Clusters to guarantee service: these are active - passive (A/P) mode " -"clusters. It means that one of the nodes (or machines that make up the " -"cluster) will be running (primary) and another won't (secondary). When the " -"primary goes down, the secondary must take over and give the service instead. " -"Although many of the elements of this cluster are active-passive, it will also " -"have active elements in both of them that indicate that the passive node is " -"\"online\", so that in the case of a service failure in the master, the active " -"node collects this information." -msgstr "" -"ClĆŗsters para garantizar el servicio: son clĆŗsters de modo activo-" -"pasivo (A/P). Quiere decir que uno de los nodos (o mĆ”quinas que componen el " -"clĆŗster) estarĆ” en funcionamiento (primario) y el otro no (secundario). Cuando " -"uno primario se detiene, el secundario lo releva y proporciona el servicio en " -"su lugar. Aunque muchos de los elementos de este clĆŗster son activo-pasivo, " -"tambiĆ©n tendrĆ” elementos activos en los dos que indican que el nodo pasivo se " -"encuentra \"en lĆ­nea\", para que en caso de fallo del sistema en el maestro, " -"sea el nodo activo el que recoja esta informaciĆ³n." - -#: ../../general/first_task/snmp_filters.php:18 -msgid "There are no SNMP filter defined yet." -msgstr "No hay filtro SNMP definido todavĆ­a." - -#: ../../general/first_task/snmp_filters.php:22 -msgid "SNMP Filter" -msgstr "Filtro SNMP" - -#: ../../general/first_task/snmp_filters.php:25 -#: ../../general/first_task/snmp_filters.php:37 -msgid "Create SNMP Filter" -msgstr "Crear un filtro SNMP" - -#: ../../general/first_task/snmp_filters.php:28 -msgid "" -"Some systems receive a high number of traps. \n" -"\t\t\t\tWe're only interested in monitoring a tiny percentage of them. From " -"Pandora FMS versions 3.2 and above, \n" -"\t\t\t\tit's possible to filter the traps that the server obtains in order to " -"avoid straining the application unnecessarily.\n" -"\t\t\t\tIn order to define different filters, please go to 'Administration' -> " -"'Manage SNMP Console' and 'SNMP Filters'. \n" -"\t\t\t\tOne trap which is going to run in conjunction with any of them - just " -"the ones for the server are going to get ruled out automatically. " -msgstr "" -"Algunos sistemas reciben un alto nĆŗmero de traps.\n" -"\t \t \t \t Solo es interesante realizar un seguimiento de un pequeƱo " -"porcentaje de ellos. En las versiones de Pandora FMS 3.2 y superiores,\n" -"\t \t \t \t es posible filtrar los traps que el servidor obtiene con el fin de " -"evitar forzar la aplicaciĆ³n innecesariamente.\n" -"\t \t \t \t Con el fin de definir diferentes filtros, por favor ve a " -"\"AdministraciĆ³n\" -> \"Administrar consola SNMP\" y \"Filtros SNMP\".\n" -"\t \t \t \t Un trap que se va a ejecutar en conjunto con cualquiera de ellos - " -"solo los del servidor van a ser descartado automĆ”ticamente. " - -#: ../../general/first_task/fields_manager.php:22 -msgid "Fields Manager" -msgstr "Gestor de campos" - -#: ../../general/first_task/fields_manager.php:25 -msgid "Create Fields Manager" -msgstr "Gestor de creaciĆ³n de archivos" - -#: ../../general/first_task/fields_manager.php:28 -msgid "" -"Custom fields are an easy way to personalized agent's information.\n" -"\t\t\t\tYou're able to create custom fields by klicking on 'Administration' -> " -"'Manage monitoring' -> 'Manage custom fields'. " -msgstr "" -"Los campos personalizados son una forma fĆ”cil de personalizar la informaciĆ³n " -"de los agentes.\n" -"\t\t\t\tPuedes crear campos personalizados haciendo clic en \"AdministraciĆ³n\" " -"-> \"Gestionar monitorizaciĆ³n\" -> \"Gestionar campos personalizados\". " - -#: ../../general/first_task/fields_manager.php:34 -msgid "Create Fields " -msgstr "Crear campos " - -#: ../../general/first_task/custom_graphs.php:19 -msgid "There are no custom graphs defined yet." -msgstr "No hay grĆ”ficos personalizados definidos todavĆ­a." - -#: ../../general/first_task/custom_graphs.php:24 -msgid "Custom Graphs" -msgstr "GrĆ”ficos personalizados" - -#: ../../general/first_task/custom_graphs.php:27 -#: ../../general/first_task/custom_graphs.php:39 -msgid "Create Custom Graph" -msgstr "Crear grĆ”fico personalizado" - -#: ../../general/first_task/custom_graphs.php:30 -#, php-format -msgid "" -"Graphs are designed to show the data collected by %s in a temporary scale " -"defined by the user.\n" -"\t\t\t\t%s Graphs display data in real time. They are generated every time the " -"operator requires any of them and display the up-to-date state.\n" -"\t\t\t\tThere are two types of graphs: The agent's automated graphs and the " -"graphs the user customizes by using one or more modules to do so." -msgstr "" -"Las grĆ”ficas estĆ”n diseƱadas para mostrar los datos recogidos por %s en una " -"escala temporal definida por el usuario.\n" -"\t\t\t\tLas grĆ”ficas de %s muestran datos en tiempo real. Se generan cada vez " -"que el operador necesita cualquiera de ellas y muestran su estado " -"actualizado.\n" -"\t\t\t\tHay dos tipos de grĆ”ficas: Las grĆ”ficas automatizadas del agente y las " -"grĆ”ficas personalizadas por el usuario mediante uno o mĆ”s mĆ³dulos." - -#: ../../general/first_task/recon_view.php:18 -msgid "There are no discovery tasks defined yet." -msgstr "AĆŗn no hay tareas de discovery definidas." - -#: ../../general/first_task/recon_view.php:22 -#: ../../include/class/CustomNetScan.class.php:479 -#: ../../include/functions_servers.php:595 -#: ../../include/functions_servers.php:1341 -#: ../../enterprise/tools/ipam/ipam_editor.php:163 -#: ../../enterprise/include/ajax/ipam.ajax.php:357 -#: ../../enterprise/include/class/MicrosoftSQLServer.app.php:450 -#: ../../enterprise/include/class/Aws.cloud.php:522 -#: ../../enterprise/include/class/Aws.cloud.php:1212 -#: ../../enterprise/include/class/Aws.S3.php:412 -#: ../../enterprise/include/class/MySQL.app.php:453 -#: ../../enterprise/include/class/Oracle.app.php:455 -#: ../../enterprise/include/class/DB2.app.php:448 -#: ../../enterprise/include/class/SAP.app.php:481 -#: ../../enterprise/include/class/VMware.app.php:593 -#: ../../enterprise/include/class/Azure.cloud.php:781 -#: ../../enterprise/include/class/Google.cloud.php:769 -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:431 -#: ../../godmode/wizards/HostDevices.class.php:848 -msgid "Discovery server" -msgstr "Servidor Discovery" - -#: ../../general/first_task/recon_view.php:25 -msgid "Create Discovery Task" -msgstr "Crear tarea de Discovery" - -#: ../../general/first_task/recon_view.php:28 -msgid "" -"Discovery Task are used to find new elements in the network. \n" -"\t\tIf it detects any item, it will add that item to the monitoring, and if " -"that item it is already being monitored, then it will \n" -"\t\tignore it or will update its information.There are three types of " -"detection: Based on ICMP (pings), \n" -"\t\tSNMP (detecting the topology of networks " -"and their interfaces), and other customized \n" -"\t\ttype. You can define your own customized recon script." -msgstr "" -"Las tareas de Discovery sirven para encontrar nuevos elementos en la red. \n" -"\t\tSi detecta alguno, lo aƱadirĆ” a la monitorizaciĆ³n y si ese elemento ya " -"estĆ” siendo monitorizado lo\n" -"\t\tignorarĆ” o actualizarĆ” la informaciĆ³n de este. Hay tres tipos de " -"detecciĆ³n: Basada en ICMP (pings), \n" -"\t\tSNMP (detecta la topologĆ­a de redes y sus " -"interfaces), y otro personalizado \n" -"\t\t. Puede definir su propio guiĆ³n de reconocimiento personalizado." - -#: ../../general/first_task/recon_view.php:37 -msgid "Discover" -msgstr "Descubrir" - -#: ../../general/first_task/incidents.php:21 -msgid "There are no incidents defined yet." -msgstr "No hay incidentes definidos todavĆ­a." - -#: ../../general/first_task/incidents.php:28 ../../operation/menu.php:474 -#: ../../operation/agentes/ver_agente.php:1507 -#: ../../operation/incidents/incident_statistics.php:21 -#: ../../godmode/agentes/configurar_agente.php:582 -#: ../../godmode/agentes/configurar_agente.php:750 -msgid "Incidents" -msgstr "Incidentes" - -#: ../../general/first_task/incidents.php:31 -#: ../../general/first_task/incidents.php:46 -msgid "Create Incidents" -msgstr "Crear incidentes" - -#: ../../general/first_task/incidents.php:34 -#, php-format -msgid "" -"Besides receiving and processing data to monitor systems or applications,\n" -"\t\t\tyou're also required to monitor possible incidents which might take " -"place on these subsystems within the system's monitoring process.\n" -"\t\t\tFor it, the %s team has designed an incident manager from which any user " -"is able to open incidents,\n" -"\t\t\tthat explain what's happened on the network, and update them with " -"comments and files, at any time, in case there is a need to do so.\n" -"\t\t\tThis system allows users to work as a team, along with different roles " -"and work-flow systems which allow an incident to be\n" -"\t\t\tmoved from one group to another, and members from different groups and " -"different people could work on the same incident, sharing information and " -"files.\n" -"\t\t" -msgstr "" -"A parte recibir y procesar datos para monitorizar sistemas y aplicaciones,\n" -"\t\t\ttambiĆ©n tiene que monitorizar las posibles incidencias que puedan " -"ocurrir en estos subsistemas en el proceso de monitorizaciĆ³n del sistema.\n" -"\t\t\tPara ello, el equipo de %s ha diseƱado un gestor de incidencias desde el " -"que cualquier usuario puede crear incidencias\n" -"\t\t\tque explican quĆ© ha sucedido en la red y actualizar su estado a travĆ©s " -"de comentarios y archivos en cualquier momento, en caso de que sea necesario " -"hacerlo.\n" -"\t\t\tEste sistema permite que los usuarios trabajen como un equipo, junto con " -"diferentes tareas y sistemas de flujo de trabajo que permiten que la " -"incidencia pase\n" -"\t\t\t de un equipo a otro, y los diferentes miembros de los diferentes " -"equipos puedan trabajar sobre la misma incidencia, compartiendo informaciĆ³n y " -"archivos.\n" -"\t\t" - -#: ../../general/first_task/network_map.php:19 -msgid "There are no network map defined yet." -msgstr "No hay mapas de red definidos todavĆ­a." - -#: ../../general/first_task/network_map.php:26 -msgid "Network Map" -msgstr "Mapa de red" - -#: ../../general/first_task/network_map.php:29 -#: ../../general/first_task/network_map.php:50 -msgid "Create Network Map" -msgstr "Crear mapa de red" - -#: ../../general/first_task/network_map.php:32 -msgid "" -"There is also an open-source version of the network map. \n" -"\t\t\t\t\t\t\t\tThis functionality allows to graphically display the nodes and " -"relationships, agents, modules and groups available to the user. \n" -"\t\t\t\t\t\t\t\tThere are three types of network maps:\n" -"\t\t\t" -msgstr "" -"Existe tambiĆ©n una versiĆ³n de cĆ³digo abierto del mapa de red. \n" -"\t\t\t\t\t\t\t\tEsta funcionalidad permite visualizar grĆ”ficamente los nodos y " -"sus relaciones, agentes, mĆ³dulos y grupos disponibles para el usuario. \n" -"\t\t\t\t\t\t\t\tHay tres tipos de mapas de red:\n" -"\t\t\t" - -#: ../../general/first_task/network_map.php:37 -msgid "Topology Map" -msgstr "Mapa de topologĆ­a" - -#: ../../general/first_task/network_map.php:38 -msgid "Group Map" -msgstr "Mapa de grupo" - -#: ../../general/first_task/network_map.php:39 -msgid "Radial Map (User without strict user)" -msgstr "Mapa radial (sin usuario estricto)" - -#: ../../general/first_task/network_map.php:40 -msgid "Dinamic Map" -msgstr "Mapa dinĆ”mico" - -#: ../../general/first_task/network_map.php:41 -msgid "Policy Map (Only Enterprise version)" -msgstr "Mapa de polĆ­ticas (solo versiĆ³n Enterprise)" - -#: ../../general/first_task/collections.php:18 -#: ../../enterprise/meta/advanced/collections.php:504 -msgid "There are no collections defined yet." -msgstr "No hay colecciones definidas todavĆ­a." - -#: ../../general/first_task/collections.php:22 -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2109 -#: ../../enterprise/include/functions_policies.php:3798 -#: ../../enterprise/meta/include/functions_agents_meta.php:533 -#: ../../enterprise/meta/advanced/collections.editor.php:60 -#: ../../enterprise/meta/advanced/collections.data.php:33 -#: ../../enterprise/godmode/menu.php:70 -#: ../../enterprise/godmode/agentes/collections.editor.php:71 -#: ../../enterprise/godmode/agentes/collections.agents.php:44 -#: ../../enterprise/godmode/agentes/collections.data.php:54 -#: ../../enterprise/godmode/policies/policies.php:505 -#: ../../enterprise/godmode/policies/policy_collections.php:31 -msgid "Collections" -msgstr "Colecciones" - -#: ../../general/first_task/collections.php:25 -#: ../../general/first_task/collections.php:39 -msgid "Create Collections" -msgstr "Crear colecciones" - -#: ../../general/first_task/collections.php:28 -msgid "" -"A file collection is a group of files (e.g. scripts or executables) which " -"are \n" -"\t\tautomatically copied to a specific directory of the agent (under Windows " -"or UNIX). The file collections allow to be propagated\n" -"\t\t along with the policies in order to be used by a group of agents, using a " -"'package' of scripts and modules which use them.\n" -"\t\tFirst we learn how to use the file collections in the agent's view, how to " -"conduct it manually, agent by agent, without using collections,\n" -"\t\t and how to do the same thing by using policies.Our first task is to " -"arrange a compilation of files. In order to do this, please go to the " -"agent's \n" -"\t\t administrator. Subsequently, we're going to see a 'sub option' called " -"'Collections'. Please click on it in order to create a new collection as we " -"can see on \n" -"\t\t the picture below. " -msgstr "" -"Una colecciĆ³n de archivos es un grupo de archivos (ej: scripts o ejecutable) " -"los cuales son \n" -"\t\t automĆ”ticamente copiados a un directorio especĆ­fico del agente (bajo " -"Windows o UNIX). Las colecciones de archivos permiten ser propagadas\n" -"\t\t junto con las polĆ­ticas con el fin de ser utilizadas por un grupo de " -"agentes, utilizando un \"paquete\" de scripts y mĆ³dulos que los utilizan.\n" -"\t\t Primero aprendemos a utilizar las colecciones de archivos en la vista del " -"agente y llevarla a cabo de forma manual, agente por agente, sin necesidad de " -"utilizar las colecciones,\n" -"\t\t y hacer lo mismo usando polĆ­ticas. Nuestra primera tarea es organizar una " -"compilaciĆ³n de archivos. Para hacer esto, por favor ve al administrador \n" -"\t\t de agentes. Posteriormente, vamos a ver una \"sub opciĆ³n\" llamada " -"\"Colecciones\". Por favor, pincha en ella para crear una nueva colecciĆ³n como " -"se puede ver en \n" -"\t\t la imagen de abajo. " - -#: ../../general/first_task/transactional_list.php:21 -msgid "There are no transactions defined yet." -msgstr "No hay transacciones definidas por el momento." - -#: ../../general/first_task/transactional_list.php:28 -msgid "Transactions" -msgstr "Transacciones" - -#: ../../general/first_task/transactional_list.php:31 -#: ../../general/first_task/transactional_list.php:41 -msgid "Create Transactions" -msgstr "Crear transacciones" - -#: ../../general/first_task/transactional_list.php:34 -msgid "" -"The new transactional server allows you to execute tasks dependent on the " -"others following a user-defined design. This means that it is possible to " -"coordinate several executions to check a target at a given time.\n" -"\n" -"Transaction graphs represent the different processes within our infrastructure " -"that we use to deliver our service." -msgstr "" -"El nuevo servidor transaccional le permite ejecutar tareas dependientes de las " -"demĆ”s siguiendo un diseƱo definido por el usuario. Esto significa que es " -"posible coordinar varias ejecuciones para comprobar un objetivo en un momento " -"dado.\n" -"\n" -"Las grĆ”ficas de transacciĆ³n representan los diferentes procesos dentro de " -"nuestra infraestructura, la cual usamos para llevar a cabo nuestros servicios." - -#: ../../general/links_menu.php:17 -#: ../../enterprise/meta/general/main_menu.php:596 -#: ../../enterprise/meta/general/main_menu.php:616 -#: ../../enterprise/meta/general/main_header.php:381 -#: ../../enterprise/meta/general/main_header.php:448 ../../godmode/menu.php:390 -#: ../../godmode/menu.php:510 -msgid "Links" -msgstr "Enlaces" - -#: ../../general/logon_ok.php:167 -#, php-format -msgid "%s Overview" -msgstr "Esquema %s" - -#: ../../general/logon_ok.php:191 -#: ../../enterprise/operation/agentes/wux_console_view.php:357 -#: ../../enterprise/operation/agentes/wux_console_view.php:378 -#: ../../godmode/setup/performance.php:188 -#: ../../godmode/setup/performance.php:243 -msgid "ago" -msgstr "hace" - -#: ../../general/logon_ok.php:206 ../../include/functions_events.php:5276 -msgid "by" -msgstr "por" - -#: ../../general/logon_ok.php:220 -msgid "News board" -msgstr "TablĆ³n de noticias" - -#: ../../general/logon_ok.php:247 ../../general/login_page.php:230 -#: ../../general/login_page.php:272 ../../operation/search_users.php:71 -#: ../../operation/events/events.build_table.php:202 -#: ../../operation/events/events.build_table.php:707 -#: ../../operation/users/user_edit.php:696 -#: ../../operation/users/user_edit.php:742 -#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:118 -#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:249 -#: ../../include/functions_cron.php:463 -#: ../../include/class/AuditLog.class.php:108 -#: ../../include/class/AuditLog.class.php:211 -#: ../../include/class/CredentialStore.class.php:805 -#: ../../include/class/CredentialStore.class.php:1134 -#: ../../include/functions_events.php:194 ../../include/functions_events.php:245 -#: ../../include/functions_events.php:6698 -#: ../../include/functions_events.php:7125 ../../include/functions_config.php:708 -#: ../../include/functions_config.php:728 ../../include/functions.php:3046 -#: ../../include/functions_reporting_html.php:5723 -#: ../../enterprise/include/class/MicrosoftSQLServer.app.php:502 -#: ../../enterprise/include/class/MySQL.app.php:523 -#: ../../enterprise/include/class/Oracle.app.php:508 -#: ../../enterprise/include/class/DB2.app.php:501 -#: ../../enterprise/include/functions_tasklist.php:152 -#: ../../enterprise/meta/general/login_page.php:125 -#: ../../enterprise/meta/general/login_page.php:167 -#: ../../enterprise/meta/include/functions_events_meta.php:70 -#: ../../enterprise/meta/include/functions_meta.php:1165 -#: ../../enterprise/meta/include/functions_meta.php:1219 -#: ../../enterprise/meta/include/functions_meta.php:1273 -#: ../../enterprise/meta/include/functions_wizard_meta.php:519 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1473 -#: ../../enterprise/extensions/disabled/check_acls.php:47 -#: ../../enterprise/extensions/disabled/check_acls.php:132 -#: ../../enterprise/godmode/setup/setup_auth.php:1039 -#: ../../enterprise/godmode/setup/setup_auth.php:1071 -#: ../../enterprise/godmode/servers/manage_export_form.php:113 -#: ../../extensions/users_connected.php:143 ../../extensions/api_checker.php:138 -#: ../../mobile/operation/tactical.php:349 -#: ../../mobile/include/user.class.php:373 -#: ../../godmode/setup/setup_integria.php:283 -#: ../../godmode/setup/setup_ehorus.php:80 -#: ../../godmode/update_manager/update_manager.history.php:43 -#: ../../godmode/reporting/reporting_builder.item_editor.php:3331 -#: ../../godmode/events/custom_events.php:99 -msgid "User" -msgstr "Usuario" - -#: ../../general/logon_ok.php:248 ../../operation/snmpconsole/snmp_view.php:891 -#: ../../operation/snmpconsole/snmp_view.php:1266 -#: ../../operation/events/events.build_table.php:369 -#: ../../operation/agentes/alerts_status.php:550 -#: ../../operation/agentes/alerts_status.php:585 -#: ../../operation/agentes/alerts_status.php:620 -#: ../../operation/agentes/alerts_status.php:652 -#: ../../operation/agentes/alerts_status.functions.php:126 -#: ../../operation/search_alerts.php:37 -#: ../../include/ajax/alert_list.ajax.php:281 -#: ../../include/ajax/alert_list.ajax.php:306 -#: ../../include/ajax/alert_list.ajax.php:482 -#: ../../include/class/ModuleTemplates.class.php:894 -#: ../../include/class/AuditLog.class.php:109 -#: ../../include/class/AuditLog.class.php:201 -#: ../../include/class/AgentsAlerts.class.php:892 -#: ../../include/functions_events.php:6789 -#: ../../include/functions_ui_renders.php:117 -#: ../../include/functions_profile.php:217 ../../include/functions.php:3046 -#: ../../include/functions_reporting_html.php:3184 -#: ../../include/functions_reporting_html.php:5725 -#: ../../enterprise/tools/ipam/ipam_network_location_config.php:258 -#: ../../enterprise/tools/ipam/ipam_list.php:639 -#: ../../enterprise/operation/agentes/policy_view.php:260 -#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:413 -#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:475 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2587 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2907 -#: ../../enterprise/include/functions_services.php:1615 -#: ../../enterprise/meta/monitoring/wizard/wizard.manage_alert.php:257 -#: ../../enterprise/meta/advanced/metasetup.relations.php:550 -#: ../../enterprise/godmode/servers/manage_export.php:142 -#: ../../enterprise/godmode/modules/manage_inventory_modules.php:278 -#: ../../enterprise/godmode/services/services.massive.elements.php:66 -#: ../../enterprise/godmode/reporting/graph_template_item_editor.php:191 -#: ../../enterprise/godmode/reporting/graph_template_list.php:209 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3524 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3722 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3745 -#: ../../enterprise/godmode/admin_access_logs.php:54 -#: ../../enterprise/godmode/alerts/alert_inventory_list.php:379 -#: ../../enterprise/godmode/alerts/alert_inventory_builder.php:241 -#: ../../enterprise/godmode/policies/policy_modules.php:1466 -#: ../../enterprise/godmode/policies/policy_alerts.php:575 -#: ../../mobile/operation/tactical.php:348 -#: ../../godmode/modules/manage_network_components.php:755 -#: ../../godmode/modules/manage_network_templates.php:248 -#: ../../godmode/modules/manage_nc_groups.php:243 -#: ../../godmode/reporting/visual_console_builder.elements.php:118 -#: ../../godmode/reporting/reporting_builder.item_editor.php:3828 -#: ../../godmode/reporting/reporting_builder.item_editor.php:4319 -#: ../../godmode/reporting/reporting_builder.item_editor.php:4340 -#: ../../godmode/snmpconsole/snmp_alert.php:1278 -#: ../../godmode/snmpconsole/snmp_alert.php:1435 -#: ../../godmode/snmpconsole/snmp_filters.php:291 -#: ../../godmode/events/event_filter.php:141 -#: ../../godmode/netflow/nf_edit.php:161 -#: ../../godmode/netflow/nf_item_list.php:178 -#: ../../godmode/massive/massive_operations.php:426 -#: ../../godmode/massive/massive_standby_alerts.php:250 -#: ../../godmode/massive/massive_add_action_alerts.php:248 -#: ../../godmode/massive/massive_delete_action_alerts.php:270 -#: ../../godmode/massive/massive_enable_disable_alerts.php:222 -#: ../../godmode/agentes/module_manager.php:867 -#: ../../godmode/agentes/planned_downtime.editor.php:1008 -#: ../../godmode/agentes/agent_template.php:238 -#: ../../godmode/alerts/alert_list.list.php:745 -#: ../../godmode/alerts/alert_view.php:388 -msgid "Action" -msgstr "AcciĆ³n" - -#: ../../general/logon_ok.php:250 -#: ../../operation/snmpconsole/snmp_statistics.php:182 -#: ../../include/class/AuditLog.class.php:111 -#: ../../include/functions_netflow.php:347 ../../include/functions.php:3046 -#: ../../include/functions_reporting_html.php:5727 -#: ../../enterprise/include/functions_reporting_csv.php:2808 -#: ../../mobile/operation/tactical.php:351 -msgid "Source IP" -msgstr "IP origen" - -#: ../../general/logon_ok.php:251 ../../operation/users/user_edit.php:606 -#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:317 -#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:410 -#: ../../include/ajax/events.php:1517 ../../include/class/AuditLog.class.php:112 -#: ../../include/functions.php:3046 -#: ../../include/functions_reporting_html.php:5728 -#: ../../enterprise/tools/ipam/ipam_ajax.php:293 -#: ../../enterprise/tools/ipam/ipam_ajax.php:479 -#: ../../enterprise/tools/ipam/ipam_massive.php:83 -#: ../../enterprise/tools/ipam/ipam_network.php:403 -#: ../../enterprise/tools/ipam/ipam_network.php:672 -#: ../../enterprise/include/functions_reporting_csv.php:1935 -#: ../../enterprise/include/functions_reporting.php:2317 -#: ../../enterprise/include/functions_ipam.php:2040 -#: ../../mobile/operation/events.php:561 -#: ../../godmode/users/configure_user.php:1042 -msgid "Comments" -msgstr "Comentarios" - -#: ../../general/logon_ok.php:296 -msgid "Latest activity" -msgstr "Actividad reciente" - -#: ../../general/php7_message.php:30 -#: ../../include/class/ConsoleSupervisor.php:1606 -msgid "" -"For a correct operation of PandoraFMS, PHP must be updated to version 7.0 or " -"higher." -msgstr "" -"Para que Pandora FMS funcione correctamente, PHP debe estar actualizado a la " -"versiĆ³n 7.0 o superior." - -#: ../../general/php7_message.php:31 -#: ../../include/class/ConsoleSupervisor.php:1606 -msgid "Otherwise, functionalities will be lost." -msgstr "Si no, ciertas funcionalidades no estarĆ”n disponibles." - -#: ../../general/php7_message.php:33 -#: ../../include/class/ConsoleSupervisor.php:1606 -msgid "Report download in PDF format" -msgstr "Descarga de informes en formato PDF" - -#: ../../general/php7_message.php:34 -#: ../../include/class/ConsoleSupervisor.php:1606 -msgid "Emails Sending" -msgstr "EnvĆ­o de emails" - -#: ../../general/php7_message.php:35 -#: ../../include/class/ConsoleSupervisor.php:1606 -msgid "Metaconsole Collections" -msgstr "Colecciones de la metaconsola" - -#: ../../general/php7_message.php:38 -msgid "Access Help" -msgstr "Ayuda de acceso" - -#: ../../general/php7_message.php:41 -msgid "Warning php version" -msgstr "Advertencia de la versiĆ³n php" - -#: ../../general/subselect_data_module.php:62 ../../operation/tree.php:210 -#: ../../operation/tree.php:267 ../../operation/snmpconsole/snmp_view.php:549 -#: ../../operation/snmpconsole/snmp_view.php:578 -#: ../../operation/snmpconsole/snmp_view.php:586 -#: ../../operation/snmpconsole/snmp_view.php:902 ../../operation/heatmap.php:115 -#: ../../operation/events/events.build_table.php:626 -#: ../../operation/events/events.php:1073 ../../operation/events/events.php:1146 -#: ../../operation/events/events.php:1258 ../../operation/events/events.php:1310 -#: ../../operation/events/events.php:2315 -#: ../../operation/events/events_list.php:827 -#: ../../operation/events/events_list.php:839 -#: ../../operation/events/events_list.php:948 -#: ../../operation/events/events_list.php:960 -#: ../../operation/agentes/status_monitor.php:651 -#: ../../operation/agentes/estado_monitores.php:520 -#: ../../operation/agentes/estado_monitores.php:565 -#: ../../operation/agentes/alerts_status.functions.php:94 -#: ../../operation/agentes/alerts_status.functions.php:100 -#: ../../operation/agentes/alerts_status.functions.php:114 -#: ../../operation/agentes/alerts_status.functions.php:131 -#: ../../operation/agentes/alerts_status.functions.php:134 -#: ../../operation/agentes/estado_agente.php:276 -#: ../../operation/incidents/list_integriaims_incidents.php:326 -#: ../../operation/incidents/list_integriaims_incidents.php:337 -#: ../../operation/incidents/list_integriaims_incidents.php:354 -#: ../../operation/incidents/list_integriaims_incidents.php:365 -#: ../../include/ajax/events.php:438 ../../include/class/AuditLog.class.php:203 -#: ../../include/class/AuditLog.class.php:213 -#: ../../include/class/CredentialStore.class.php:535 -#: ../../include/lib/Dashboard/Widgets/system_group_status.php:399 -#: ../../include/lib/Dashboard/Widgets/events_list.php:401 -#: ../../include/lib/Dashboard/Widgets/tree_view.php:384 -#: ../../include/lib/Dashboard/Widgets/tree_view.php:417 -#: ../../include/functions_events.php:6438 -#: ../../include/functions_events.php:7044 ../../include/functions_groups.php:646 -#: ../../include/functions_groups.php:1940 -#: ../../include/functions_notifications.php:105 -#: ../../include/functions_reporting.php:2835 -#: ../../include/functions_reporting.php:2932 -#: ../../include/functions_modules.php:3542 -#: ../../include/functions_modules.php:3544 -#: ../../include/functions_groupview.php:95 ../../include/functions_html.php:915 -#: ../../include/functions_html.php:1566 ../../include/functions.php:1071 -#: ../../include/functions.php:1331 ../../include/functions_users.php:416 -#: ../../include/functions_users.php:674 -#: ../../enterprise/operation/log/log_viewer.php:620 -#: ../../enterprise/operation/log/log_viewer.php:638 -#: ../../enterprise/operation/log/log_viewer.php:688 -#: ../../enterprise/operation/snmpconsole/snmp_view.php:33 -#: ../../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/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 -#: ../../enterprise/include/class/ManageBackups.class.php:191 -#: ../../enterprise/include/functions_metaconsole.php:960 -#: ../../enterprise/include/functions_metaconsole.php:961 -#: ../../enterprise/include/functions_metaconsole.php:1309 -#: ../../enterprise/include/functions_ipam.php:1688 -#: ../../enterprise/include/functions_ipam.php:1733 -#: ../../enterprise/meta/include/ajax/wizard.ajax.php:400 -#: ../../enterprise/meta/include/ajax/wizard.ajax.php:444 -#: ../../enterprise/meta/include/functions_html_meta.php:75 -#: ../../enterprise/meta/include/functions_users_meta.php:87 -#: ../../enterprise/meta/include/functions_users_meta.php:98 -#: ../../enterprise/meta/include/functions_wizard_meta.php:322 -#: ../../enterprise/meta/monitoring/custom_fields_view.php:193 -#: ../../enterprise/meta/monitoring/custom_fields_view.php:209 -#: ../../enterprise/meta/monitoring/custom_fields_view.php:272 -#: ../../enterprise/meta/monitoring/custom_fields_view.php:762 -#: ../../enterprise/meta/monitoring/wizard/wizard.php:148 -#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:414 -#: ../../enterprise/meta/monitoring/wizard/wizard.create_module.php:218 -#: ../../enterprise/meta/advanced/policymanager.queue.php:212 -#: ../../enterprise/meta/advanced/policymanager.queue.php:217 -#: ../../enterprise/meta/advanced/policymanager.queue.php:228 -#: ../../enterprise/meta/advanced/policymanager.queue.php:304 -#: ../../enterprise/meta/advanced/metasetup.relations.php:419 -#: ../../enterprise/meta/advanced/collections.data.php:412 -#: ../../enterprise/meta/advanced/metasetup.visual.php:290 -#: ../../enterprise/godmode/setup/setup_acl.php:487 -#: ../../enterprise/godmode/setup/setup_acl.php:504 -#: ../../enterprise/godmode/setup/setup_acl.php:521 -#: ../../enterprise/godmode/setup/setup_acl.php:753 -#: ../../enterprise/godmode/setup/setup_acl.php:761 -#: ../../enterprise/godmode/setup/setup_acl.php:772 -#: ../../enterprise/godmode/setup/setup_acl.php:813 -#: ../../enterprise/godmode/setup/setup_acl.php:844 -#: ../../enterprise/godmode/modules/local_components.php:541 -#: ../../enterprise/godmode/modules/local_components.php:567 -#: ../../enterprise/godmode/modules/local_components.php:592 -#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:241 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:243 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2022 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2825 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2852 -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:143 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:187 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:626 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:652 -#: ../../enterprise/godmode/massive/massive_add_modules_policy.php:131 -#: ../../enterprise/godmode/agentes/collections.data.php:506 -#: ../../enterprise/godmode/alerts/alert_inventory_builder.php:264 -#: ../../enterprise/godmode/policies/policy_agents.php:833 -#: ../../enterprise/godmode/policies/policy_queue.php:603 -#: ../../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:358 -#: ../../extensions/files_repo/files_repo_form.php:46 -#: ../../extensions/agents_modules.php:416 ../../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:683 ../../mobile/operation/events.php:693 -#: ../../mobile/operation/events.php:1165 ../../mobile/operation/events.php:1194 -#: ../../mobile/operation/agents.php:56 ../../godmode/setup/gis_step_2.php:217 -#: ../../godmode/setup/setup_visuals.php:950 -#: ../../godmode/modules/manage_network_components.php:653 -#: ../../godmode/modules/manage_network_templates_form.php:303 -#: ../../godmode/reporting/reporting_builder.list_items.php:209 -#: ../../godmode/reporting/reporting_builder.list_items.php:211 -#: ../../godmode/reporting/reporting_builder.list_items.php:213 -#: ../../godmode/reporting/reporting_builder.list_items.php:235 -#: ../../godmode/reporting/reporting_builder.list_items.php:245 -#: ../../godmode/reporting/reporting_builder.list_items.php:255 -#: ../../godmode/reporting/create_container.php:546 -#: ../../godmode/reporting/reporting_builder.item_editor.php:1531 -#: ../../godmode/reporting/reporting_builder.item_editor.php:1549 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2010 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2829 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2856 -#: ../../godmode/reporting/reporting_builder.item_editor.php:3491 -#: ../../godmode/reporting/reporting_builder.item_editor.php:3557 -#: ../../godmode/reporting/reporting_builder.item_editor.php:3579 -#: ../../godmode/reporting/reporting_builder.item_editor.php:3637 -#: ../../godmode/reporting/visual_console_builder.wizard.php:340 -#: ../../godmode/reporting/visual_console_builder.wizard.php:354 -#: ../../godmode/events/event_edit_filter.php:323 -#: ../../godmode/events/event_edit_filter.php:338 -#: ../../godmode/events/event_edit_filter.php:601 -#: ../../godmode/massive/massive_delete_modules.php:327 -#: ../../godmode/massive/massive_delete_modules.php:374 -#: ../../godmode/massive/massive_delete_modules.php:429 -#: ../../godmode/massive/massive_delete_modules.php:450 -#: ../../godmode/massive/massive_copy_modules.php:127 -#: ../../godmode/massive/massive_copy_modules.php:287 -#: ../../godmode/massive/massive_edit_agents.php:543 -#: ../../godmode/massive/massive_edit_agents.php:556 -#: ../../godmode/massive/massive_delete_agents.php:221 -#: ../../godmode/massive/massive_delete_agents.php:235 -#: ../../godmode/massive/massive_edit_modules.php:311 -#: ../../godmode/massive/massive_edit_modules.php:358 -#: ../../godmode/massive/massive_edit_modules.php:396 -#: ../../godmode/massive/massive_edit_modules.php:482 -#: ../../godmode/alerts/alert_list.list.php:121 -#: ../../godmode/alerts/alert_list.list.php:127 -#: ../../godmode/alerts/alert_list.list.php:136 -#: ../../godmode/alerts/alert_list.list.php:145 -#: ../../godmode/alerts/alert_templates.php:308 -#: ../../godmode/alerts/alert_list.php:460 -#: ../../godmode/alerts/alert_list.php:509 -#: ../../godmode/alerts/alert_list.php:523 -msgid "All" -msgstr "Todo" - -#: ../../general/footer.php:51 ../../enterprise/meta/general/footer.php:41 -#, php-format -msgid "%s %s - %s - MR %s" -msgstr "%s %s - %s - MR %s" - -#: ../../general/footer.php:56 -#, php-format -msgid "Page generated on %s" -msgstr "PĆ”gina generada en %s" - -#: ../../general/mysqlerr.php:105 -msgid "Database error" -msgstr "Error en la base de datos" - -#: ../../general/mysqlerr.php:115 -msgid "" -"Failure to connect to historical database, please check the configuration or " -"contact system administrator if you need assistance." -msgstr "" -"Error al conectar con la base de datos histĆ³rica, revise la configuraciĆ³n o " -"pĆ³ngase en contacto con el administrador del sistema si necesita ayuda." - -#: ../../general/mysqlerr.php:117 -msgid "" -"Failure to connect to Database server, please check the configuration file " -"config.php or contact system administrator if you need assistance." -msgstr "" -"Error al conectar con el servidor de la base de datos. Revise el archivo de " -"configuraciĆ³n config.php o pĆ³ngase en contacto con el administrador del " -"sistema si necesita ayuda." - -#: ../../general/node_deactivated.php:36 -msgid "You cannot use this node until system is unified" -msgstr "No puede utilizar este nodo hasta que el sistema estĆ© unificado" - -#: ../../general/node_deactivated.php:59 -#: ../../enterprise/meta/monitoring/wizard/wizard.php:53 -#: ../../enterprise/meta/advanced/massive_operations.php:57 -msgid "command center" -msgstr "command center" - -#: ../../general/node_deactivated.php:56 -#, php-format -msgid "Please navigate to %s to unify system" -msgstr "Navegue a %s para unificar el sistema" - -#: ../../general/login_page.php:54 -#, php-format -msgid "Go to %s Website" -msgstr "Ir a la pĆ”gina web de %s" - -#: ../../general/login_page.php:68 -msgid "Go to Login" -msgstr "Ir a la pantalla de inicio" - -#: ../../general/login_page.php:79 -#: ../../enterprise/meta/general/login_page.php:45 -#: ../../enterprise/meta/include/reset_pass.php:28 -#: ../../enterprise/meta/include/process_reset_pass.php:28 -msgid "Splash login" -msgstr "Splash login" - -#: ../../general/login_page.php:136 ../../general/login_page.php:139 -#: ../../general/login_page.php:155 ../../enterprise/include/reset_pass.php:48 -#: ../../enterprise/include/process_reset_pass.php:53 -msgid "Docs" -msgstr "Documentos" - -#: ../../general/login_page.php:244 ../../general/login_page.php:285 -#: ../../operation/users/user_edit.php:702 -#: ../../operation/users/user_edit.php:748 -#: ../../include/class/AgentWizard.class.php:672 -#: ../../include/class/CredentialStore.class.php:958 -#: ../../include/class/CredentialStore.class.php:995 -#: ../../include/class/CredentialStore.class.php:1135 -#: ../../include/class/CredentialStore.class.php:1158 -#: ../../include/functions_config.php:712 ../../include/functions_config.php:732 -#: ../../enterprise/include/ajax/servers.ajax.php:101 -#: ../../enterprise/include/ajax/servers.ajax.php:159 -#: ../../enterprise/include/ajax/servers.ajax.php:285 -#: ../../enterprise/include/class/MicrosoftSQLServer.app.php:514 -#: ../../enterprise/include/class/MySQL.app.php:535 -#: ../../enterprise/include/class/Oracle.app.php:520 -#: ../../enterprise/include/class/DB2.app.php:513 -#: ../../enterprise/include/class/VMware.app.php:732 -#: ../../enterprise/include/functions_setup.php:55 -#: ../../enterprise/include/functions_setup.php:113 -#: ../../enterprise/include/functions_ui.php:104 -#: ../../enterprise/meta/general/login_page.php:139 -#: ../../enterprise/meta/general/login_page.php:181 -#: ../../enterprise/meta/include/functions_meta.php:1177 -#: ../../enterprise/meta/include/functions_meta.php:1231 -#: ../../enterprise/meta/include/functions_meta.php:1285 -#: ../../enterprise/meta/include/functions_wizard_meta.php:523 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1477 -#: ../../enterprise/godmode/setup/setup_auth.php:1045 -#: ../../enterprise/godmode/setup/setup_auth.php:1077 -#: ../../enterprise/godmode/setup/setup_module_library.php:52 -#: ../../enterprise/godmode/servers/manage_export_form.php:117 -#: ../../enterprise/godmode/servers/credential_boxes_satellite.php:250 -#: ../../enterprise/godmode/servers/manage_credential_boxes.php:59 -#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:851 -#: ../../extensions/api_checker.php:143 ../../mobile/include/user.class.php:380 -#: ../../godmode/setup/setup_integria.php:289 -#: ../../godmode/setup/setup_ehorus.php:86 -#: ../../godmode/modules/manage_network_components_form_wmi.php:49 -#: ../../godmode/massive/massive_edit_modules.php:908 -#: ../../godmode/agentes/module_manager_editor_wmi.php:116 -#: ../../godmode/users/configure_user.php:934 -msgid "Password" -msgstr "ContraseƱa" - -#: ../../general/login_page.php:251 -msgid "Login as admin" -msgstr "Entrar como administrador" - -#: ../../general/login_page.php:259 -#: ../../enterprise/meta/general/login_page.php:154 -#: ../../mobile/include/user.class.php:404 -msgid "Login with SAML" -msgstr "Entrar con SAML" - -#: ../../general/login_page.php:291 -#: ../../enterprise/meta/general/login_page.php:146 -#: ../../enterprise/meta/general/login_page.php:187 -#: ../../mobile/include/user.class.php:384 -msgid "Login" -msgstr "Iniciar sesiĆ³n" - -#: ../../general/login_page.php:307 -#: ../../enterprise/meta/general/login_page.php:109 -msgid "Authentication code" -msgstr "CĆ³digo de autentificaciĆ³n" - -#: ../../general/login_page.php:310 -#: ../../enterprise/meta/general/login_page.php:112 -#: ../../mobile/include/user.class.php:473 -msgid "Check code" -msgstr "CĆ³digo de comprobaciĆ³n" - -#: ../../general/login_page.php:319 -msgid "View details" -msgstr "Ver detalles" - -#: ../../general/login_page.php:334 ../../general/login_page.php:337 -#: ../../enterprise/meta/general/login_page.php:195 -msgid "Forgot your password?" -msgstr "ĀæHas olvidado tu contraseƱa?" - -#: ../../general/login_page.php:340 ../../general/login_page.php:343 -#: ../../general/login_page.php:428 ../../general/login_page.php:431 -#: ../../general/login_page.php:445 ../../general/login_page.php:448 -#: ../../general/login_page.php:465 ../../general/login_page.php:468 -#: ../../enterprise/meta/general/login_page.php:235 -#: ../../enterprise/meta/general/login_page.php:238 -#: ../../enterprise/meta/general/login_page.php:252 -#: ../../enterprise/meta/general/login_page.php:255 -#: ../../enterprise/meta/general/login_page.php:272 -#: ../../enterprise/meta/general/login_page.php:275 -msgid "Password reset" -msgstr "Restablecer contraseƱa" - -#: ../../general/login_page.php:347 -msgid "" -"This node is configured with centralized mode. Go to metaconsole to reset the " -"password" -msgstr "" -"Este nodo estĆ” configurado en modo centralizado. Vaya a la Metaconsola para " -"respetar la contraseƱa." - -#: ../../general/login_page.php:372 ../../general/login_page.php:375 -#, php-format -msgid "WELCOME TO %s" -msgstr "BIENVENIDO A %s" - -#: ../../general/login_page.php:384 ../../general/login_page.php:387 -msgid "NEXT GENERATION" -msgstr "NEXT GENERATION" - -#: ../../general/login_page.php:424 ../../enterprise/include/reset_pass.php:170 -#: ../../enterprise/include/process_reset_pass.php:183 -#: ../../enterprise/meta/general/login_page.php:232 -#: ../../enterprise/meta/include/reset_pass.php:161 -#: ../../enterprise/meta/include/process_reset_pass.php:164 -msgid "Build" -msgstr "Crear" - -#: ../../general/login_page.php:435 -#: ../../enterprise/meta/general/login_page.php:242 -msgid "INFO" -msgstr "INFO" - -#: ../../general/login_page.php:436 -#: ../../enterprise/meta/general/login_page.php:243 -msgid "An email has been sent to your email address" -msgstr "Se ha enviado un email a su direcciĆ³n de correo electrĆ³nico" - -#: ../../general/login_page.php:452 ../../general/login_page.php:494 -#: ../../enterprise/include/reset_pass.php:181 -#: ../../enterprise/meta/general/login_page.php:259 -#: ../../enterprise/meta/general/login_page.php:301 -#: ../../enterprise/meta/include/reset_pass.php:172 -msgid "ERROR" -msgstr "ERROR" - -#: ../../general/login_page.php:472 -#: ../../enterprise/meta/general/login_page.php:279 -msgid "SUCCESS" -msgstr "CORRECTO" - -#: ../../general/login_page.php:487 ../../general/login_page.php:490 -#: ../../general/login_page.php:644 ../../general/login_page.php:647 -#: ../../enterprise/include/functions_login.php:141 -#: ../../enterprise/meta/general/login_page.php:294 -#: ../../enterprise/meta/general/login_page.php:297 -msgid "Login failed" -msgstr "Error de inicio de sesiĆ³n" - -#: ../../general/login_page.php:512 ../../general/login_page.php:515 -#: ../../general/login_page.php:519 -#: ../../enterprise/meta/general/login_page.php:319 -#: ../../enterprise/meta/general/login_page.php:322 -#: ../../enterprise/meta/general/login_page.php:326 -msgid "Logged out" -msgstr "Desconectado" - -#: ../../general/login_page.php:521 -#: ../../enterprise/meta/general/login_page.php:327 -#: ../../mobile/include/user.class.php:342 -#, php-format -msgid "" -"Your session has ended. Please close your browser window to close this %s " -"session." -msgstr "La sesiĆ³n ha terminado. Cierre el navegador para cerrar la sesiĆ³n de %s." - -#: ../../general/login_page.php:536 -msgid "User node access not enabled" -msgstr "Acceso de usuario al nodo no habilitado" - -#: ../../general/login_page.php:539 ../../general/login_page.php:543 -msgid "Centralized user in metaconsole" -msgstr "Usuario centralizado en metaconsola" - -#: ../../general/login_page.php:544 -msgid "" -"This user does not have access on node, please enable node access on this user " -"from metaconsole." -msgstr "" -"Este usuario no tiene acceso en el nodo, habilite el acceso al nodo en este " -"usuario desde la metaconsola." - -#: ../../general/login_page.php:559 ../../general/login_page.php:561 -#, php-format -msgid "Problem with %s database" -msgstr "Problema con la base de datos de %s" - -#: ../../general/login_page.php:565 -msgid "" -"Cannot connect to the database, please check your database setup in the " -"include/config.php file.

\n" -"\t\tProbably your database, hostname, user or password values are incorrect " -"or\n" -"\t\tthe database server is not running." -msgstr "" -"No se pudo conectar con la base de datos, comprueba la configuraciĆ³n de su " -"base de datos en el archivo include/config.php.

\n" -"\t\tProbablemente, los valores de la base de datos, nombre del host, usuario o " -"contraseƱa son incorrectos o\n" -"\t\t el servidor de la base de datos no estƔ activo." - -#: ../../general/login_page.php:570 -msgid "DB ERROR" -msgstr "ERROR de la BD" - -#: ../../general/login_page.php:576 -#, php-format -msgid "" -"If you have modified the auth system, the origin of this problem could be that " -"%s cannot override the authorization variables from the config database. " -"Please remove them from your database by executing:

DELETE FROM "
-"tconfig WHERE token = \"auth\";
" -msgstr "" -"Si ha modificado el sistema de permisos, el origen de este problema podrĆ­a ser " -"que %s no puede saltarse las variables de permisos de la base de datos de " -"configuraciĆ³n. ElimĆ­nelas de la base de datos ejecutando:
DELETE FROM "
-"tconfig WHERE token = \"auth\";
" - -#: ../../general/login_page.php:581 -msgid "Empty configuration table" -msgstr "Tabla de configuraciĆ³n vacĆ­a" - -#: ../../general/login_page.php:583 -#, php-format -msgid "" -"Cannot load configuration variables from database. Please check your database " -"setup in the\n" -"\t\t\tinclude/config.php file.

\n" -"\t\t\tMost likely your database schema has been created but there are is no " -"data in it, you have a problem with the database access credentials or your " -"schema is out of date.\n" -"\t\t\t

%s Console cannot find include/config.php or this file " -"has invalid\n" -"\t\t\tpermissions and HTTP server cannot read it. Please read documentation to " -"fix this problem.
" -msgstr "" -"No se puede aƱadir variables de configuraciĆ³n desde la base de datos. Revise " -"la configuraciĆ³n de la base de datos en el\n" -"\t\t\tinclude/config.php archivo.

\n" -"\t\t\tProbablemente el esquema de su base de datos se ha creado pero no " -"contiene datos, tiene un problema con los credenciales de acceso a la base de " -"datos o su esquema estĆ” desactualizado.\n" -"\t\t\t

%s La consola no ha podido encontrarinclude/config.php o " -"este archivo no tiene\n" -"\t\t\tpermisos vĆ”lidos y el servidor HTTP no puede leerlo. Lea la " -"documentaciĆ³n para solucionar el problema.
" - -#: ../../general/login_page.php:593 -msgid "No configuration file found" -msgstr "No se ha encontrado el archivo de configuraciĆ³n" - -#: ../../general/login_page.php:595 -#, php-format -msgid "" -"%s Console cannot find include/config.php or this file has invalid\n" -"\t\tpermissions and HTTP server cannot read it. Please read documentation to " -"fix this problem." -msgstr "" -"La consola %s no ha podido encontrar include/config.php o este archivo " -"no tiene \n" -"\t\tpermisos vĆ”lidos y el servidor HTTP no puede leerlo. Lea la documentaciĆ³n " -"para solucionar el problema." - -#: ../../general/login_page.php:607 -#, php-format -msgid "You may try to run the %sinstallation wizard%s to create one." -msgstr "" -"Puedes intentar ejecutar el %sasistente de instalaciĆ³n%s para crear " -"uno." - -#: ../../general/login_page.php:611 -msgid "Installer active" -msgstr "Instalador activo" - -#: ../../general/login_page.php:613 -#, php-format -msgid "" -"For security reasons, normal operation is not possible until you delete " -"installer file.\n" -"\t\tPlease delete the ./install.php file before running %s Console." -msgstr "" -"Por motivos de seguridad, el funcionamiento no es posible hasta que elimine el " -"archivo de instalador.\n" -"\t\tBorre el archivo ./install.php antes de ejecutar la consola de %s." - -#: ../../general/login_page.php:620 -msgid "Bad permission for include/config.php" -msgstr "Permiso incorrecto para include/config.php" - -#: ../../general/login_page.php:622 -msgid "" -"For security reasons, config.php must have restrictive permissions, and " -"\"other\" users\n" -"\t\tshould not read it or write to it. It should be written only for owner\n" -"\t\t(usually www-data or http daemon user), normal operation is not possible " -"until you change\n" -"\t\tpermissions for include/config.php file. Please do it, it is for " -"your security." -msgstr "" -"Por motivos de seguridad, config.php ha de tener permisos restrictivos, " -"y \"otros\" usuarios\n" -"\t\t no deberĆ­an leerlo o editarlo. DeberĆ­a escribirlo solo el propietario\n" -"\t\t (normalmente www-data o http daemon user), el funcionamiento normal no " -"serĆ” posible hasta que se cambien\n" -"\t\t los permisos para el archivo include/config.php. Por tu seguridad, " -"procede a cambiarlos." - -#: ../../general/login_page.php:630 -msgid "Bad defined homedir" -msgstr "Homedir mal definida" - -#: ../../general/login_page.php:631 -msgid "" -"In the config.php file in the variable $config[\"homedir\"] = add the correct " -"path" -msgstr "" -"En el archivo config.php en la variable $config[\"homedir\"] = aƱade la ruta " -"correcta" - -#: ../../general/login_page.php:635 -msgid "Bad defined homeurl or homeurl_static" -msgstr "Homeurl o homeurl_static mal definida" - -#: ../../general/login_page.php:636 -msgid "" -"In the config.php file in the variable $config[\"homeurl\"] or " -"$config[\"homeurl_static\"] = add the correct path" -msgstr "" -"En el archivo config.php en la variable $config[\"homeurl\"] o " -"$config[\"homeurl_static\"] = aƱade la ruta correcta" - -#: ../../general/noaccesssaml.php:135 -#: ../../enterprise/meta/general/noaccesssaml.php:135 -msgid "" -"Access to this page is restricted to authorized users SAML only, please " -"contact system administrator if you need assistance." -msgstr "" -"El acceso a esta pĆ”gina estĆ” restringido solo a los los usuarios SAML, pĆ³ngase " -"en contacto con el administrador del sistema si necesita ayuda." - -#: ../../general/noaccesssaml.php:137 -#: ../../enterprise/meta/general/noaccesssaml.php:137 -#, php-format -msgid "" -"Please make sure you have SAML authentication properly configured. For more " -"information the error to access this page are recorded in security logs of %s " -"System Database" -msgstr "" -"AsegĆŗrese de que la autenticaciĆ³n SAML esta configurada correctamente. Para " -"mĆ”s informaciĆ³n, el error de acceso a esta pĆ”gina estĆ” grabado en los logs de " -"seguridad de la base de datos del sistema de %s" - -#: ../../general/pandora_help.php:23 -#, php-format -msgid "%s help system" -msgstr "Ayuda del sistema de %s" - -#: ../../general/pandora_help.php:72 -msgid "Help system error" -msgstr "Error del sistema de ayuda" - -#: ../../general/pandora_help.php:77 -#, php-format -msgid "" -"%s help system has been called with a help reference that currently don't " -"exist. There is no help content to show." -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." - -#: ../../operation/messages/message_list.php:46 -#: ../../operation/messages/message_list.php:55 -#: ../../operation/messages/message_edit.php:66 -msgid "Sent messages" -msgstr "Mensajes enviados" - -#: ../../operation/messages/message_list.php:46 -#: ../../operation/messages/message_list.php:50 -#: ../../operation/messages/message_edit.php:54 -msgid "Received messages" -msgstr "Mensajes recibidos" - -#: ../../operation/messages/message_list.php:64 -#: ../../operation/messages/message_list.php:304 -#: ../../operation/messages/message_edit.php:78 -msgid "Create message" -msgstr "Crear mensaje" - -#: ../../operation/messages/message_list.php:86 -#: ../../operation/messages/message_edit.php:99 ../../operation/menu.php:453 -#: ../../operation/users/user_edit_header.php:127 -msgid "Workspace" -msgstr "Ɓrea de trabajo" - -#: ../../operation/messages/message_list.php:90 -#: ../../operation/messages/message_edit.php:103 ../../operation/menu.php:493 -#: ../../enterprise/meta/general/main_menu.php:318 -msgid "Messages" -msgstr "Mensajes" - -#: ../../operation/messages/message_list.php:136 -msgid "Not deleted. Error deleting messages" -msgstr "No borrado. Error al suprimir mensajes." - -#: ../../operation/messages/message_list.php:144 -#: ../../operation/messages/message_list.php:153 -msgid "You have" -msgstr "Tienes" - -#: ../../operation/messages/message_list.php:144 -msgid "sent message(s)" -msgstr "mensaje(s) enviado(s)" - -#: ../../operation/messages/message_list.php:153 -msgid "unread message(s)" -msgstr "mensaje(s) sin leer" - -#: ../../operation/messages/message_list.php:164 -msgid "There are no messages." -msgstr "No hay mensajes." - -#: ../../operation/messages/message_list.php:192 -#: ../../operation/search_policies.php:38 ../../operation/search_modules.php:36 -#: ../../operation/snmpconsole/snmp_view.php:584 -#: ../../operation/snmpconsole/snmp_view.php:849 -#: ../../operation/snmpconsole/snmp_view.php:1226 -#: ../../operation/search_agents.php:56 -#: ../../operation/events/events.build_table.php:358 -#: ../../operation/agentes/status_monitor.php:1334 -#: ../../operation/agentes/alerts_status.php:552 -#: ../../operation/agentes/alerts_status.php:587 -#: ../../operation/agentes/alerts_status.php:622 -#: ../../operation/agentes/alerts_status.php:654 -#: ../../operation/agentes/interface_view.functions.php:497 -#: ../../operation/agentes/alerts_status.functions.php:104 -#: ../../operation/agentes/estado_agente.php:275 -#: ../../operation/agentes/estado_agente.php:763 -#: ../../operation/incidents/integriaims_export_csv.php:83 -#: ../../operation/incidents/configure_integriaims_incident.php:250 -#: ../../operation/incidents/list_integriaims_incidents.php:320 -#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:322 -#: ../../include/ajax/module.php:980 ../../include/ajax/alert_list.ajax.php:283 -#: ../../include/ajax/alert_list.ajax.php:308 -#: ../../include/ajax/custom_fields.php:416 -#: ../../include/class/AgentsAlerts.class.php:894 -#: ../../include/class/ExternalTools.class.php:795 -#: ../../include/class/NetworkMap.class.php:2907 -#: ../../include/lib/Dashboard/Widgets/system_group_status.php:318 -#: ../../include/functions_events.php:196 ../../include/functions_events.php:251 -#: ../../include/functions_events.php:2625 -#: ../../include/functions_events.php:5072 -#: ../../include/functions_events.php:6666 ../../include/functions_snmp.php:369 -#: ../../include/functions_snmp_browser.php:594 -#: ../../include/functions_reporting_html.php:547 -#: ../../include/functions_reporting_html.php:1046 -#: ../../include/functions_reporting_html.php:1055 -#: ../../include/functions_reporting_html.php:1281 -#: ../../include/functions_reporting_html.php:1289 -#: ../../include/functions_reporting_html.php:1549 -#: ../../include/functions_reporting_html.php:2107 -#: ../../include/functions_reporting_html.php:2384 -#: ../../include/functions_reporting_html.php:2742 -#: ../../include/functions_reporting_html.php:3391 -#: ../../include/functions_reporting_html.php:3444 -#: ../../include/functions_reporting_html.php:5016 -#: ../../enterprise/tools/ipam/ipam_vlan_wizard.php:412 #: ../../enterprise/views/ncm/devices/list.php:120 #: ../../enterprise/views/cluster/list.php:63 -#: ../../enterprise/operation/services/services.service.php:127 -#: ../../enterprise/operation/services/services.list.php:243 -#: ../../enterprise/operation/services/services.list.php:507 -#: ../../enterprise/operation/services/services.table_services.php:165 -#: ../../enterprise/operation/agentes/tag_view.php:607 -#: ../../enterprise/operation/agentes/tag_view.php:685 -#: ../../enterprise/operation/agentes/policy_view.php:66 -#: ../../enterprise/operation/agentes/policy_view.php:166 -#: ../../enterprise/operation/agentes/policy_view.php:262 -#: ../../enterprise/operation/agentes/policy_view.php:397 -#: ../../enterprise/operation/agentes/collection_view.php:78 +#: ../../enterprise/meta/advanced/servers.build_table.php:61 +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:466 +#: ../../enterprise/meta/advanced/policymanager.queue.php:225 +#: ../../enterprise/meta/monitoring/custom_fields_view.php:707 +#: ../../enterprise/meta/include/functions_events_meta.php:78 +#: ../../enterprise/meta/agentsearch.php:140 ../../enterprise/meta/agentsearch.php:330 +#: ../../enterprise/extensions/vmware/vmware_view.php:1085 +#: ../../enterprise/godmode/agentes/collection_manager.php:112 +#: ../../enterprise/godmode/agentes/collection_manager.php:209 +#: ../../enterprise/godmode/policies/policy_alerts.php:354 +#: ../../enterprise/godmode/policies/policy_modules.php:1466 +#: ../../enterprise/godmode/policies/policy_queue.php:616 +#: ../../enterprise/godmode/policies/policies.php:405 +#: ../../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/massive/massive_add_modules_policy.php:125 +#: ../../enterprise/godmode/admin_access_logs.php:50 +#: ../../enterprise/godmode/servers/HA_cluster.php:170 +#: ../../enterprise/godmode/servers/list_satellite.php:38 #: ../../enterprise/include/functions_reporting_csv.php:718 #: ../../enterprise/include/functions_reporting_csv.php:881 #: ../../enterprise/include/functions_reporting_csv.php:1993 #: ../../enterprise/include/functions_reporting_csv.php:2739 #: ../../enterprise/include/class/ManageBackups.class.php:165 +#: ../../enterprise/include/functions_reporting.php:1858 +#: ../../enterprise/include/functions_reporting.php:2897 +#: ../../enterprise/include/functions_reporting.php:3884 +#: ../../enterprise/include/functions_reporting.php:6140 #: ../../enterprise/include/functions_services.php:1613 -#: ../../enterprise/include/functions_reporting.php:1857 -#: ../../enterprise/include/functions_reporting.php:2896 -#: ../../enterprise/include/functions_reporting.php:3883 -#: ../../enterprise/include/functions_reporting.php:6139 -#: ../../enterprise/meta/include/functions_events_meta.php:78 -#: ../../enterprise/meta/monitoring/custom_fields_view.php:707 -#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:466 -#: ../../enterprise/meta/advanced/policymanager.queue.php:225 -#: ../../enterprise/meta/advanced/servers.build_table.php:61 -#: ../../enterprise/meta/agentsearch.php:140 -#: ../../enterprise/meta/agentsearch.php:330 -#: ../../enterprise/extensions/vmware/vmware_view.php:1085 -#: ../../enterprise/godmode/servers/list_satellite.php:38 -#: ../../enterprise/godmode/servers/HA_cluster.php:170 -#: ../../enterprise/godmode/admin_access_logs.php:50 -#: ../../enterprise/godmode/massive/massive_add_modules_policy.php:125 -#: ../../enterprise/godmode/agentes/collection_manager.php:112 -#: ../../enterprise/godmode/agentes/collection_manager.php:209 -#: ../../enterprise/godmode/policies/policy_agents.php:852 -#: ../../enterprise/godmode/policies/policy_agents.php:1368 -#: ../../enterprise/godmode/policies/policy_queue.php:616 -#: ../../enterprise/godmode/policies/policy_modules.php:1466 -#: ../../enterprise/godmode/policies/policies.php:405 -#: ../../enterprise/godmode/policies/policy_alerts.php:354 -#: ../../enterprise/godmode/policies/policy_collections.php:172 -#: ../../enterprise/godmode/policies/policy_collections.php:266 +#: ../../enterprise/operation/agentes/policy_view.php:66 +#: ../../enterprise/operation/agentes/policy_view.php:166 +#: ../../enterprise/operation/agentes/policy_view.php:262 +#: ../../enterprise/operation/agentes/policy_view.php:397 +#: ../../enterprise/operation/agentes/tag_view.php:607 +#: ../../enterprise/operation/agentes/tag_view.php:685 +#: ../../enterprise/operation/agentes/collection_view.php:78 +#: ../../enterprise/operation/services/services.service.php:127 +#: ../../enterprise/operation/services/services.list.php:243 +#: ../../enterprise/operation/services/services.list.php:507 +#: ../../enterprise/operation/services/services.table_services.php:165 +#: ../../enterprise/tools/ipam/ipam_vlan_wizard.php:412 +#: ../../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:863 +#: ../../godmode/massive/massive_copy_modules.php:121 +#: ../../godmode/massive/massive_copy_modules.php:281 +#: ../../godmode/massive/massive_delete_modules.php:415 +#: ../../godmode/massive/massive_delete_agents.php:215 +#: ../../godmode/massive/massive_edit_agents.php:537 +#: ../../godmode/massive/massive_edit_agents.php:905 +#: ../../godmode/alerts/alert_list.list.php:142 +#: ../../godmode/alerts/alert_list.list.php:497 ../../godmode/alerts/alert_view.php:114 +#: ../../godmode/setup/setup_integria.php:426 ../../godmode/setup/setup_integria.php:548 +#: ../../godmode/reporting/reporting_builder.item_editor.php:77 +#: ../../godmode/events/custom_events.php:101 +#: ../../godmode/wizards/DiscoveryTaskList.class.php:600 +#: ../../godmode/servers/servers.build_table.php:80 ../../mobile/operation/agents.php:97 +#: ../../mobile/operation/agents.php:144 ../../mobile/operation/agents.php:243 +#: ../../mobile/operation/agents.php:244 ../../mobile/operation/agents.php:406 #: ../../mobile/operation/modules.php:163 ../../mobile/operation/modules.php:164 #: ../../mobile/operation/modules.php:275 ../../mobile/operation/modules.php:276 #: ../../mobile/operation/modules.php:603 ../../mobile/operation/modules.php:609 @@ -4877,1900 +3162,5370 @@ msgstr "No hay mensajes." #: ../../mobile/operation/modules.php:732 ../../mobile/operation/modules.php:850 #: ../../mobile/operation/alerts.php:105 ../../mobile/operation/alerts.php:106 #: ../../mobile/operation/alerts.php:247 ../../mobile/operation/alerts.php:248 -#: ../../mobile/operation/alerts.php:350 ../../mobile/operation/events.php:368 -#: ../../mobile/operation/events.php:369 ../../mobile/operation/events.php:536 -#: ../../mobile/operation/events.php:672 ../../mobile/operation/events.php:673 -#: ../../mobile/operation/agents.php:97 ../../mobile/operation/agents.php:144 -#: ../../mobile/operation/agents.php:243 ../../mobile/operation/agents.php:244 -#: ../../mobile/operation/agents.php:406 -#: ../../godmode/setup/setup_integria.php:426 -#: ../../godmode/setup/setup_integria.php:548 -#: ../../godmode/servers/servers.build_table.php:80 -#: ../../godmode/reporting/reporting_builder.item_editor.php:77 -#: ../../godmode/events/custom_events.php:101 -#: ../../godmode/massive/massive_delete_modules.php:415 -#: ../../godmode/massive/massive_copy_modules.php:121 -#: ../../godmode/massive/massive_copy_modules.php:281 -#: ../../godmode/massive/massive_edit_agents.php:537 -#: ../../godmode/massive/massive_edit_agents.php:905 -#: ../../godmode/massive/massive_delete_agents.php:215 -#: ../../godmode/wizards/DiscoveryTaskList.class.php:600 -#: ../../godmode/agentes/module_manager.php:863 -#: ../../godmode/agentes/status_monitor_custom_fields.php:97 -#: ../../godmode/agentes/status_monitor_custom_fields.php:148 -#: ../../godmode/agentes/agent_incidents.php:89 -#: ../../godmode/alerts/alert_list.list.php:132 -#: ../../godmode/alerts/alert_list.list.php:482 -#: ../../godmode/alerts/alert_view.php:114 +#: ../../mobile/operation/alerts.php:350 ../../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:547 +#: ../../include/functions_reporting_html.php:1046 +#: ../../include/functions_reporting_html.php:1055 +#: ../../include/functions_reporting_html.php:1309 +#: ../../include/functions_reporting_html.php:1317 +#: ../../include/functions_reporting_html.php:1585 +#: ../../include/functions_reporting_html.php:2143 +#: ../../include/functions_reporting_html.php:2420 +#: ../../include/functions_reporting_html.php:2787 +#: ../../include/functions_reporting_html.php:3436 +#: ../../include/functions_reporting_html.php:3489 +#: ../../include/functions_reporting_html.php:5062 +#: ../../include/ajax/alert_list.ajax.php:296 ../../include/ajax/alert_list.ajax.php:321 +#: ../../include/ajax/module.php:980 ../../include/ajax/custom_fields.php:416 +#: ../../include/functions_snmp.php:369 ../../include/class/NetworkMap.class.php:2907 +#: ../../include/class/AgentsAlerts.class.php:894 +#: ../../include/class/ExternalTools.class.php:795 +#: ../../include/lib/Dashboard/Widgets/system_group_status.php:318 +#: ../../include/functions_snmp_browser.php:594 ../../include/functions_events.php:204 +#: ../../include/functions_events.php:259 ../../include/functions_events.php:2377 +#: ../../include/functions_events.php:4608 ../../operation/search_agents.php:56 +#: ../../operation/agentes/estado_agente.php:275 +#: ../../operation/agentes/estado_agente.php:763 +#: ../../operation/agentes/interface_view.functions.php:497 +#: ../../operation/agentes/status_monitor.php:1334 +#: ../../operation/agentes/alerts_status.functions.php:105 +#: ../../operation/messages/message_list.php:192 +#: ../../operation/snmpconsole/snmp_view.php:584 +#: ../../operation/snmpconsole/snmp_view.php:849 +#: ../../operation/snmpconsole/snmp_view.php:1226 +#: ../../operation/incidents/integriaims_export_csv.php:83 +#: ../../operation/incidents/configure_integriaims_incident.php:250 +#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:322 +#: ../../operation/incidents/list_integriaims_incidents.php:320 +#: ../../operation/search_modules.php:36 ../../operation/search_policies.php:38 msgid "Status" msgstr "Estado" -#: ../../operation/messages/message_list.php:194 -#: ../../operation/messages/message_edit.php:269 -msgid "Destination" -msgstr "Destino" +#: ../../enterprise/views/ncm/devices/list.php:121 +msgid "Last queued task" +msgstr "ƚltima tarea en cola" -#: ../../operation/messages/message_list.php:196 -#: ../../operation/messages/message_edit.php:265 -msgid "Sender" -msgstr "Remitente" +#: ../../enterprise/views/ncm/devices/list.php:122 +#: ../../enterprise/operation/services/services.service.php:133 +#: ../../enterprise/operation/services/services.list.php:510 +#: ../../enterprise/tools/ipam/ipam_list.php:631 ../../extensions/agents_modules.php:317 +#: ../../operation/agentes/group_view.php:80 ../../operation/agentes/tactical.php:60 +msgid "Last update" +msgstr "ƚltima actualizaciĆ³n" -#: ../../operation/messages/message_list.php:199 -#: ../../operation/messages/message_edit.php:350 -#: ../../enterprise/operation/reporting/custom_reporting.php:132 -#: ../../enterprise/include/functions_cron.php:190 -#: ../../enterprise/include/functions_cron.php:240 -#: ../../enterprise/include/functions_reporting.php:8186 -#: ../../godmode/setup/news.php:183 ../../godmode/setup/news.php:246 -msgid "Subject" -msgstr "Asunto" +#: ../../enterprise/views/ncm/devices/list.php:123 +#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:136 +#: ../../enterprise/godmode/policies/policy_alerts.php:354 +#: ../../enterprise/godmode/alerts/alert_inventory_list.php:224 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:520 +#: ../../enterprise/include/functions_tasklist.php:158 +#: ../../godmode/massive/massive_copy_modules.php:185 +#: ../../godmode/alerts/alert_list.list.php:500 +#: ../../godmode/wizards/DiscoveryTaskList.class.php:612 +msgid "Operations" +msgstr "Operaciones" -#: ../../operation/messages/message_list.php:200 -#: ../../operation/search_modules.php:39 -#: ../../operation/snmpconsole/snmp_view.php:881 -#: ../../operation/events/events.build_table.php:192 -#: ../../operation/agentes/status_monitor.php:1364 -#: ../../operation/agentes/exportdata.csv.php:74 -#: ../../operation/agentes/exportdata.php:83 -#: ../../operation/agentes/exportdata.excel.php:74 -#: ../../operation/agentes/estado_generalagente.php:645 -#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:116 -#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:247 -#: ../../include/ajax/events_extended.php:90 -#: ../../include/ajax/custom_fields.php:415 ../../include/ajax/events.php:1809 -#: ../../include/functions_events.php:197 ../../include/functions_events.php:254 -#: ../../include/functions_events.php:2621 -#: ../../include/functions_events.php:4998 -#: ../../include/functions_events.php:6692 -#: ../../include/functions_netflow.php:278 -#: ../../include/functions_reporting_html.php:1053 -#: ../../include/functions_reporting_html.php:1061 -#: ../../include/functions_reporting_html.php:1286 -#: ../../include/functions_reporting_html.php:1293 -#: ../../include/functions_reporting_html.php:2393 -#: ../../include/functions_reporting_html.php:5019 -#: ../../enterprise/operation/agentes/tag_view.php:686 -#: ../../enterprise/include/functions_reporting_csv.php:802 -#: ../../enterprise/include/functions_reporting_csv.php:875 -#: ../../enterprise/include/functions_reporting_csv.php:1458 -#: ../../enterprise/include/functions_reporting_csv.php:2281 -#: ../../enterprise/include/functions_reporting_csv.php:2317 -#: ../../enterprise/include/functions_reporting_csv.php:2629 -#: ../../enterprise/include/class/LogSource.class.php:628 -#: ../../enterprise/include/class/Omnishell.class.php:400 -#: ../../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/meta/include/functions_events_meta.php:82 -#: ../../mobile/operation/modules.php:661 ../../mobile/operation/modules.php:852 -#: ../../mobile/operation/events.php:516 ../../godmode/setup/news.php:249 -#: ../../godmode/update_manager/update_manager.history.php:44 -#: ../../godmode/events/custom_events.php:102 -#: ../../godmode/agentes/status_monitor_custom_fields.php:117 -#: ../../godmode/agentes/status_monitor_custom_fields.php:153 -msgid "Timestamp" -msgstr "Marca temporal" +#: ../../enterprise/views/ncm/firmwares/list.php:32 +msgid "Firmwares" +msgstr "Firmwares" -#: ../../operation/messages/message_list.php:214 -msgid "Click to read" -msgstr "Haz clic para leer" +#: ../../enterprise/views/ncm/firmwares/list.php:74 +#: ../../enterprise/include/class/Omnishell.class.php:398 +#: ../../include/class/CredentialStore.class.php:803 +#: ../../include/class/CredentialStore.class.php:911 +msgid "Identifier" +msgstr "Identificador" -#: ../../operation/messages/message_list.php:218 -msgid "Mark as unread" -msgstr "Marcar como no leĆ­do" +#: ../../enterprise/views/ncm/firmwares/edit.php:41 +msgid "Firmware" +msgstr "Firmware" -#: ../../operation/messages/message_list.php:224 -#: ../../operation/messages/message_list.php:228 -msgid "Message unread - click to read" -msgstr "Mensaje sin leer. Haz clic para leerlo." - -#: ../../operation/messages/message_list.php:256 -msgid "No Subject" -msgstr "Sin asunto" - -#: ../../operation/messages/message_edit.php:90 -msgid "Compose message" -msgstr "Componer mensaje" - -#: ../../operation/messages/message_edit.php:119 -msgid "This message does not exist in the system" -msgstr "Este mensaje no existe en el sistema." - -#: ../../operation/messages/message_edit.php:188 -msgid "wrote" -msgstr "escribiĆ³" - -#: ../../operation/messages/message_edit.php:203 -msgid "Delete conversation" -msgstr "Eliminar conversaciĆ³n" - -#: ../../operation/messages/message_edit.php:211 -msgid "Reply" -msgstr "Responder" - -#: ../../operation/messages/message_edit.php:226 -msgid "User or group must be selected." -msgstr "Usuario o grupo no especificados." - -#: ../../operation/messages/message_edit.php:244 -#, php-format -msgid "Message successfully sent to user %s" -msgstr "Mensaje enviado correctamente al usuario %s" - -#: ../../operation/messages/message_edit.php:245 -#, php-format -msgid "Error sending message to user %s" -msgstr "Error al enviar el mensaje al usuario %s" - -#: ../../operation/messages/message_edit.php:324 -msgid "Select user" -msgstr "Seleccionar usuario" - -#: ../../operation/messages/message_edit.php:330 -msgid "OR" -msgstr "O" - -#: ../../operation/messages/message_edit.php:341 -msgid "Select group" -msgstr "Seleccionar grupo" - -#: ../../operation/messages/message_edit.php:360 -#: ../../enterprise/operation/reporting/custom_reporting.php:150 -#: ../../enterprise/include/functions_cron.php:194 -#: ../../enterprise/include/functions_cron.php:244 -#: ../../enterprise/include/functions_reporting.php:8204 -msgid "Message" -msgstr "Mensaje" - -#: ../../operation/messages/message_edit.php:396 -msgid "Send message" -msgstr "Enviar mensaje" - -#: ../../operation/visual_console/legacy_public_view.php:57 -#: ../../operation/visual_console/public_view.php:38 -#: ../../operation/gis_maps/public_console.php:277 -#: ../../operation/events/sound_events.php:90 -#: ../../operation/agentes/stat_win.php:92 ../../index.php:1396 -#: ../../enterprise/meta/index.php:206 -msgid "Connection with server has been lost" -msgstr "Se ha perdido la conexiĆ³n con el servidor" - -#: ../../operation/visual_console/legacy_public_view.php:58 -#: ../../operation/visual_console/public_view.php:39 -#: ../../operation/gis_maps/public_console.php:278 -#: ../../operation/events/sound_events.php:91 -#: ../../operation/agentes/stat_win.php:93 ../../index.php:1397 -#: ../../enterprise/meta/index.php:207 -msgid "" -"Connection to the server has been lost. Please check your internet connection " -"or contact with administrator." +#: ../../enterprise/views/ncm/firmwares/edit.php:101 +msgid "Comma separated, a vendors list compatible with scripts defined within firmware." msgstr "" -"Se ha perdido la conexiĆ³n con el servidor. Compruebe su conexiĆ³n a Internet o " -"pĆ³ngase en contacto con el administrador" +"Separado por comas, una lista de proveedores compatible con scripts definidos dentro " +"del firmware." -#: ../../operation/visual_console/legacy_public_view.php:168 -#: ../../operation/visual_console/public_view.php:150 -msgid "QR code of the page" -msgstr "CĆ³digo QR de la pĆ”gina" +#: ../../enterprise/views/ncm/firmwares/edit.php:129 +msgid "Comma separated, a model list compatible with scripts defined within firmware." +msgstr "" +"Separado por comas, una lista de modelos compatibles con scripts definidos dentro del " +"firmware." -#: ../../operation/visual_console/legacy_public_view.php:198 -#: ../../operation/visual_console/legacy_view.php:339 -msgid "Until refresh" -msgstr "Hasta la actualizaciĆ³n" - -#: ../../operation/visual_console/legacy_view.php:121 -#: ../../operation/visual_console/view.php:122 -#: ../../enterprise/meta/screens/screens.visualmap.php:286 -#: ../../godmode/reporting/visual_console_builder.php:801 -msgid "Visual consoles list" -msgstr "Lista de consolas visuales" - -#: ../../operation/visual_console/legacy_view.php:137 -#: ../../operation/visual_console/view.php:150 -#: ../../enterprise/meta/screens/screens.visualmap.php:261 -#: ../../godmode/reporting/visual_console_builder.php:805 -msgid "Show link to public Visual Console" -msgstr "Mostrar enlace a la Consola Visual pĆŗblica" - -#: ../../operation/visual_console/legacy_view.php:147 -#: ../../operation/visual_console/view.php:160 -#: ../../operation/reporting/graph_viewer.php:193 -#: ../../operation/reporting/reporting_viewer.php:139 -#: ../../enterprise/meta/screens/screens.visualmap.php:241 -#: ../../godmode/reporting/reporting_builder.main.php:73 -#: ../../godmode/reporting/visual_console_builder.php:809 -#: ../../godmode/reporting/graph_builder.php:298 -#: ../../godmode/reporting/reporting_builder.php:3541 -msgid "Main data" -msgstr "Datos principales" - -#: ../../operation/visual_console/legacy_view.php:155 -#: ../../operation/visual_console/view.php:168 -#: ../../enterprise/meta/screens/screens.visualmap.php:230 -#: ../../godmode/reporting/visual_console_builder.php:813 -msgid "List elements" -msgstr "Lista de elementos" - -#: ../../operation/visual_console/legacy_view.php:165 -#: ../../operation/visual_console/view.php:178 -#: ../../godmode/reporting/visual_console_builder.php:819 -msgid "Services wizard" -msgstr "Asistente de servicios" - -#: ../../operation/visual_console/legacy_view.php:175 -#: ../../operation/visual_console/view.php:188 -#: ../../enterprise/include/functions_reporting.php:60 -#: ../../enterprise/include/functions_reporting.php:7990 -#: ../../enterprise/include/functions_reporting.php:8016 -#: ../../enterprise/meta/screens/screens.visualmap.php:219 -#: ../../enterprise/meta/general/main_menu.php:238 -#: ../../enterprise/meta/general/logon_ok.php:48 -#: ../../enterprise/meta/general/main_header.php:134 -#: ../../enterprise/meta/monitoring/wizard/wizard.php:123 -#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:61 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:94 -#: ../../godmode/reporting/visual_console_builder.php:825 -#: ../../godmode/reporting/visual_console_builder.wizard.php:518 -msgid "Wizard" -msgstr "Asistente" - -#: ../../operation/visual_console/legacy_view.php:183 -#: ../../enterprise/meta/screens/screens.visualmap.php:206 -#: ../../enterprise/godmode/alerts/alert_inventory.php:80 -#: ../../godmode/reporting/visual_console_builder.php:830 -msgid "Builder" -msgstr "Creador" - -#: ../../operation/visual_console/legacy_view.php:193 -#: ../../operation/visual_console/view.php:198 ../../operation/tree.php:187 -#: ../../operation/agentes/status_monitor.php:75 -#: ../../operation/agentes/estado_agente.php:858 -#: ../../operation/agentes/estado_agente.php:861 -#: ../../operation/agentes/ver_agente.php:1916 -#: ../../enterprise/operation/agentes/policy_view.php:70 -#: ../../enterprise/include/lib/ClusterViewer/ClusterManager.php:601 -#: ../../enterprise/meta/screens/screens.visualmap.php:163 -#: ../../enterprise/meta/screens/screens.visualmap.php:194 -#: ../../enterprise/godmode/reporting/visual_console_builder.wizard_services.php:106 -#: ../../godmode/setup/setup_visuals.php:163 -#: ../../godmode/setup/setup_visuals.php:227 -#: ../../godmode/setup/setup_visuals.php:281 -#: ../../godmode/setup/setup_visuals.php:286 -#: ../../godmode/setup/setup_visuals.php:325 -#: ../../godmode/setup/setup_visuals.php:362 -#: ../../godmode/setup/setup_visuals.php:384 -#: ../../godmode/setup/setup_visuals.php:409 -#: ../../godmode/setup/setup_visuals.php:428 -#: ../../godmode/setup/setup_visuals.php:447 -#: ../../godmode/setup/setup_visuals.php:466 -#: ../../godmode/setup/setup_visuals.php:608 -#: ../../godmode/reporting/visual_console_builder.php:836 -#: ../../godmode/menu.php:554 ../../godmode/agentes/configurar_agente.php:373 -#: ../../godmode/agentes/modificar_agente.php:82 -#: ../../godmode/agentes/modificar_agente.php:836 -#: ../../godmode/agentes/modificar_agente.php:841 -#: ../../godmode/module_library/module_library_view.php:59 -msgid "View" -msgstr "Vista" - -#: ../../operation/visual_console/view.php:226 ../../operation/menu.php:300 -#: ../../operation/agentes/pandora_networkmap.php:665 -#: ../../operation/agentes/pandora_networkmap.editor.php:214 -#: ../../enterprise/operation/services/services.treeview_services.php:77 -#: ../../enterprise/operation/services/services.service.php:79 -#: ../../enterprise/operation/services/services.list.php:71 -#: ../../enterprise/operation/services/services.service_map.php:93 -#: ../../enterprise/operation/services/services.table_services.php:54 -#: ../../enterprise/godmode/services/services.elements.php:794 -#: ../../enterprise/godmode/services/services.service.php:493 -#: ../../enterprise/godmode/reporting/visual_console_template.php:118 -#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:117 -#: ../../enterprise/godmode/agentes/pandora_networkmap_empty.editor.php:102 -#: ../../godmode/reporting/map_builder.php:130 -#: ../../godmode/reporting/visual_console_builder.php:863 -#: ../../godmode/reporting/visual_console_favorite.php:127 -#: ../../godmode/agentes/pandora_networkmap_empty.editor.php:104 -msgid "Topology maps" -msgstr "Mapas topolĆ³gicos" - -#: ../../operation/visual_console/view.php:230 ../../operation/menu.php:177 -#: ../../operation/menu.php:181 ../../operation/users/user_edit.php:357 -#: ../../include/lib/Dashboard/Widgets/maps_made_by_user.php:324 -#: ../../enterprise/meta/screens/screens.visualmap.php:305 -#: ../../enterprise/meta/screens/screens.visualmap.php:310 -#: ../../enterprise/godmode/reporting/visual_console_template.php:122 -#: ../../enterprise/godmode/reporting/visual_console_template.php:128 -#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:121 -#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:127 -#: ../../extensions/resource_exportation.php:436 -#: ../../godmode/reporting/map_builder.php:134 -#: ../../godmode/reporting/map_builder.php:140 -#: ../../godmode/reporting/visual_console_builder.php:867 -#: ../../godmode/reporting/visual_console_favorite.php:131 -#: ../../godmode/reporting/visual_console_favorite.php:137 -#: ../../godmode/users/configure_user.php:1110 -msgid "Visual console" -msgstr "Consola visual" - -#: ../../operation/visual_console/view.php:296 -#: ../../include/functions_visual_map_editor.php:1387 -#: ../../include/functions_visual_map.php:4214 -#: ../../godmode/setup/gis_step_2.php:233 -#: ../../godmode/reporting/visual_console_builder.elements.php:182 -msgid "Static Image" -msgstr "Imagen estĆ”tica" - -#: ../../operation/visual_console/view.php:301 -#: ../../include/functions_visual_map_editor.php:57 -#: ../../include/functions_visual_map_editor.php:1388 -#: ../../godmode/reporting/visual_console_builder.wizard.php:128 -msgid "Percentile Item" -msgstr "Elemento percentil" - -#: ../../operation/visual_console/view.php:306 -#: ../../include/functions_visual_map_editor.php:1389 -#: ../../include/rest-api/models/VisualConsole/Items/ModuleGraph.php:555 -#: ../../mobile/operation/events.php:549 -#: ../../godmode/reporting/visual_console_builder.elements.php:221 -msgid "Module Graph" -msgstr "GrĆ”fico de mĆ³dulo" - -#: ../../operation/visual_console/view.php:311 -#: ../../include/rest-api/models/VisualConsole/Item.php:2155 -#: ../../godmode/reporting/visual_console_builder.elements.php:351 -msgid "Basic chart" -msgstr "GrĆ”fico bĆ”sico" - -#: ../../operation/visual_console/view.php:316 -#: ../../include/functions_visual_map_editor.php:1390 -msgid "Serialized pie graph" -msgstr "GrĆ”fico circular serializado" - -#: ../../operation/visual_console/view.php:321 -#: ../../include/functions_visual_map_editor.php:1391 -msgid "Bars Graph" -msgstr "GrĆ”fico de barras" - -#: ../../operation/visual_console/view.php:326 -#: ../../include/functions_visual_map_editor.php:59 -#: ../../include/functions_visual_map_editor.php:1392 -#: ../../include/functions_visual_map.php:4194 -#: ../../godmode/reporting/visual_console_builder.elements.php:231 -msgid "Event history graph" -msgstr "GrĆ”fica de histĆ³rico de eventos" - -#: ../../operation/visual_console/view.php:331 -#: ../../include/functions_visual_map_editor.php:1393 -#: ../../include/functions_visual_map.php:4219 -#: ../../include/rest-api/models/VisualConsole/Item.php:2131 -#: ../../godmode/reporting/visual_console_builder.elements.php:240 -msgid "Simple Value" -msgstr "Valor simple" - -#: ../../operation/visual_console/view.php:336 -#: ../../include/functions_visual_map_editor.php:67 -#: ../../include/functions_visual_map_editor.php:193 -#: ../../include/functions_visual_map_editor.php:779 -#: ../../include/functions_visual_map_editor.php:1394 -#: ../../include/lib/Dashboard/Widgets/sla_percent.php:285 -#: ../../include/lib/Dashboard/Widgets/module_value.php:278 -#: ../../include/lib/Dashboard/Widgets/module_status.php:294 -#: ../../include/lib/Dashboard/Widgets/graph_module_histogram.php:274 -#: ../../include/lib/Dashboard/Widgets/module_icon.php:304 -#: ../../include/functions_visual_map.php:4224 -#: ../../include/rest-api/models/VisualConsole/Item.php:1941 -#: ../../include/rest-api/models/VisualConsole/Item.php:2135 -#: ../../enterprise/include/functions_reporting_csv.php:1158 -#: ../../enterprise/meta/advanced/metasetup.consoles.php:513 -#: ../../enterprise/meta/advanced/metasetup.consoles.php:837 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1702 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:512 -#: ../../godmode/reporting/visual_console_builder.elements.php:104 -#: ../../godmode/reporting/visual_console_builder.elements.php:283 -#: ../../godmode/reporting/reporting_builder.item_editor.php:1119 -#: ../../godmode/reporting/graph_builder.graph_editor.php:214 -#: ../../godmode/reporting/visual_console_builder.wizard.php:446 -msgid "Label" -msgstr "Etiqueta" - -#: ../../operation/visual_console/view.php:341 -#: ../../include/functions_visual_map_editor.php:68 -#: ../../include/functions_visual_map_editor.php:1395 -#: ../../include/lib/Dashboard/Widgets/module_status.php:374 -#: ../../include/lib/Dashboard/Widgets/module_icon.php:384 -#: ../../include/functions_visual_map.php:4239 -#: ../../include/rest-api/models/VisualConsole/Item.php:2147 -#: ../../enterprise/godmode/reporting/visual_console_builder.wizard_services.php:103 -#: ../../godmode/setup/os.builder.php:40 ../../godmode/modules/module_list.php:60 -#: ../../godmode/reporting/visual_console_builder.elements.php:292 -#: ../../godmode/groups/configure_group.php:153 -#: ../../godmode/groups/group_list.php:844 -msgid "Icon" -msgstr "Icono" - -#: ../../operation/visual_console/view.php:346 -#: ../../include/functions_visual_map_editor.php:69 -#: ../../include/functions_visual_map_editor.php:1396 -#: ../../include/lib/Dashboard/Widgets/clock.php:158 -#: ../../include/lib/Dashboard/Widgets/clock.php:310 -#: ../../include/functions_visual_map.php:4184 -#: ../../include/rest-api/models/VisualConsole/Item.php:2103 -#: ../../godmode/reporting/visual_console_builder.elements.php:367 -msgid "Clock" -msgstr "Reloj" - -#: ../../operation/visual_console/view.php:356 -#: ../../include/functions_visual_map_editor.php:71 -#: ../../include/functions_visual_map_editor.php:1398 -#: ../../include/functions_visual_map.php:4174 -#: ../../godmode/reporting/visual_console_builder.elements.php:303 -msgid "Box" -msgstr "Caja" - -#: ../../operation/visual_console/view.php:361 -#: ../../operation/reporting/graph_viewer.php:372 -#: ../../operation/agentes/graphs.php:238 ../../operation/agentes/graphs.php:244 -#: ../../operation/agentes/graphs.php:417 ../../operation/agentes/graphs.php:432 -#: ../../include/functions_visual_map_editor.php:72 -#: ../../include/functions_visual_map_editor.php:557 -#: ../../include/functions_visual_map_editor.php:1399 -#: ../../include/lib/Dashboard/Widgets/custom_graph.php:317 -#: ../../include/rest-api/models/VisualConsole/Items/ModuleGraph.php:651 -#: ../../enterprise/meta/advanced/metasetup.visual.php:357 -#: ../../enterprise/godmode/reporting/graph_template_editor.php:247 -#: ../../godmode/setup/setup_visuals.php:909 -#: ../../godmode/setup/setup_visuals.php:926 -#: ../../godmode/reporting/create_container.php:359 -#: ../../godmode/reporting/visual_console_builder.elements.php:333 -#: ../../godmode/reporting/graph_builder.main.php:216 -msgid "Line" -msgstr "LĆ­nea" - -#: ../../operation/visual_console/view.php:366 -#: ../../include/functions_visual_map_editor.php:73 -#: ../../include/functions_visual_map_editor.php:1400 -#: ../../include/functions_visual_map.php:4234 -#: ../../include/rest-api/models/VisualConsole/Item.php:2143 -#: ../../godmode/reporting/visual_console_builder.elements.php:343 -msgid "Color cloud" -msgstr "Nube de color" - -#: ../../operation/visual_console/view.php:371 -#: ../../include/functions_visual_map_editor.php:1405 -#: ../../godmode/reporting/visual_console_builder.elements.php:322 -msgid "Network link" -msgstr "Link de red" - -#: ../../operation/visual_console/view.php:376 -#: ../../include/rest-api/models/VisualConsole/Item.php:2151 -#: ../../godmode/reporting/visual_console_builder.elements.php:359 -msgid "Odometer" -msgstr "OdĆ³metro #1" - -#: ../../operation/visual_console/view.php:387 -msgid "Delete Item" -msgstr "Eliminar elemento" - -#: ../../operation/visual_console/view.php:393 -msgid "Copy Item" -msgstr "Copiar elemento" - -#: ../../operation/visual_console/view.php:406 -#: ../../operation/agentes/estado_generalagente.php:347 -msgid "Force remote checks" -msgstr "Forzar comprobaciĆ³n remota" - -#: ../../operation/visual_console/view.php:734 -msgid "Are you sure" -msgstr "ĀæEstĆ” seguro?" - -#: ../../operation/visual_console/view.php:806 -#: ../../include/ajax/snmp_browser.ajax.php:260 -#: ../../include/class/ModuleTemplates.class.php:1417 -#: ../../include/class/HelpFeedBack.class.php:359 -#: ../../include/class/WebServerModuleDebug.class.php:359 -#: ../../include/class/AgentWizard.class.php:5808 -#: ../../include/class/Diagnostics.class.php:2087 -#: ../../include/class/ConfigPEN.class.php:737 -#: ../../include/class/CredentialStore.class.php:1185 -#: ../../include/functions_ui.php:294 -#: ../../enterprise/include/class/AgentRepository.class.php:842 -#: ../../enterprise/include/class/LogSource.class.php:788 -#: ../../enterprise/include/class/ManageBackups.class.php:473 -#: ../../enterprise/include/class/Omnishell.class.php:1083 -#: ../../enterprise/include/class/DeploymentCenter.class.php:1611 -#: ../../enterprise/include/functions_HA_cluster.php:535 -#: ../../enterprise/include/functions_visual_map.php:677 -#: ../../enterprise/godmode/services/services.elements.php:840 -#: ../../enterprise/godmode/services/services.elements.php:851 -#: ../../godmode/wizards/DiscoveryTaskList.class.php:1057 -msgid "Success" -msgstr "Finalizado correctamente" - -#: ../../operation/visual_console/view.php:813 -#: ../../operation/visual_console/view.php:818 -#: ../../include/ajax/snmp_browser.ajax.php:259 -#: ../../include/class/ModuleTemplates.class.php:1424 -#: ../../include/class/ModuleTemplates.class.php:1429 -#: ../../include/class/HelpFeedBack.class.php:354 -#: ../../include/class/WebServerModuleDebug.class.php:366 -#: ../../include/class/WebServerModuleDebug.class.php:371 -#: ../../include/class/AgentWizard.class.php:5815 -#: ../../include/class/AgentWizard.class.php:5820 -#: ../../include/class/Diagnostics.class.php:2086 -#: ../../include/class/ConfigPEN.class.php:744 -#: ../../include/class/ConfigPEN.class.php:749 -#: ../../include/class/CredentialStore.class.php:1192 -#: ../../include/class/CredentialStore.class.php:1197 -#: ../../include/lib/Dashboard/Widgets/wux_transaction.php:372 -#: ../../enterprise/operation/agentes/wux_console_view.php:452 -#: ../../enterprise/operation/agentes/transactional_map.php:327 -#: ../../enterprise/operation/agentes/ux_console_view.php:210 -#: ../../enterprise/operation/agentes/ux_console_view.php:352 -#: ../../enterprise/include/class/AgentRepository.class.php:849 -#: ../../enterprise/include/class/AgentRepository.class.php:854 -#: ../../enterprise/include/class/LogSource.class.php:795 -#: ../../enterprise/include/class/LogSource.class.php:800 -#: ../../enterprise/include/class/ManageBackups.class.php:484 -#: ../../enterprise/include/class/ManageBackups.class.php:489 -#: ../../enterprise/include/class/Omnishell.class.php:1079 -#: ../../enterprise/include/class/DeploymentCenter.class.php:1618 -#: ../../enterprise/include/class/DeploymentCenter.class.php:1623 -#: ../../enterprise/include/class/DatabaseHA.class.php:208 -#: ../../enterprise/include/functions_HA_cluster.php:542 -#: ../../enterprise/include/functions_HA_cluster.php:547 -#: ../../enterprise/include/functions_ux_console.php:473 -#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:539 -#: ../../godmode/wizards/DiscoveryTaskList.class.php:1058 -msgid "Failed" -msgstr "Fallo" - -#: ../../operation/search_reports.php:25 ../../operation/search_policies.php:22 -#: ../../operation/search_modules.php:23 ../../operation/search_users.php:23 -#: ../../operation/search_maps.php:19 ../../operation/search_graphs.php:21 -#: ../../operation/search_agents.php:30 ../../operation/search_alerts.php:24 -msgid "Zero results found" -msgstr "No se encontrĆ³ ningĆŗn resultado" - -#: ../../operation/search_reports.php:42 ../../operation/search_reports.php:58 -#: ../../operation/reporting/custom_reporting.php:34 -#: ../../include/functions_cron.php:665 -#: ../../enterprise/include/functions_cron.php:232 -#: ../../enterprise/include/functions_reporting_csv.php:2218 -#: ../../enterprise/include/functions_reporting_csv.php:2222 -#: ../../enterprise/include/functions_tasklist.php:340 -#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:282 -#: ../../godmode/reporting/reporting_builder.php:910 -msgid "Report name" -msgstr "Nombre del informe" - -#: ../../operation/search_reports.php:44 ../../operation/search_reports.php:60 -#: ../../operation/reporting/custom_reporting.php:36 -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:501 -#: ../../godmode/reporting/reporting_builder.php:912 -msgid "HTML" -msgstr "HTML" - -#: ../../operation/search_reports.php:45 ../../operation/search_reports.php:61 -#: ../../operation/reporting/custom_reporting.php:37 -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:502 -#: ../../godmode/reporting/reporting_builder.php:913 -msgid "XML" -msgstr "XML" - -#: ../../operation/search_main.php:54 ../../enterprise/meta/agentsearch.php:122 -msgid "Agents found" -msgstr "Agentes encontrados" - -#: ../../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 -#: ../../operation/search_main.php:74 -#, php-format -msgid "%s Found" -msgstr "%s encontrados" - -#: ../../operation/search_main.php:56 ../../operation/tree.php:432 -#: ../../include/lib/Dashboard/Widgets/tree_view.php:617 -msgid "Modules found" -msgstr "MĆ³dulos encontrados" - -#: ../../operation/search_main.php:64 -msgid "Users found" -msgstr "Usuarios encontrados" - -#: ../../operation/search_main.php:66 -msgid "Graphs found" -msgstr "GrĆ”ficos encontrados" - -#: ../../operation/search_main.php:68 -msgid "Reports found" -msgstr "Informes encontrados" - -#: ../../operation/search_main.php:70 ../../operation/search_results.php:145 -#: ../../mobile/operation/visualmaps.php:184 ../../mobile/operation/home.php:66 -msgid "Visual consoles" -msgstr "Consola visual" - -#: ../../operation/search_main.php:73 ../../operation/tree.php:127 -#: ../../operation/search_results.php:171 -#: ../../include/lib/Dashboard/Widgets/tree_view.php:333 -#: ../../include/functions_maps.php:42 -#: ../../include/functions_networkmap.php:1299 -#: ../../enterprise/operation/agentes/ver_agente.php:239 -#: ../../enterprise/include/functions_groups.php:33 -#: ../../enterprise/meta/advanced/policymanager.apply.php:198 -msgid "Policies" -msgstr "PolĆ­ticas" - -#: ../../operation/search_main.php:83 -#, php-format -msgid "Show %s of %s. View all matches" -msgstr "Mostrar %s de %s. Ver todas las coincidencias." - -#: ../../operation/tree.php:78 ../../operation/tree.php:146 -#: ../../operation/gis_maps/ajax.php:297 ../../operation/search_agents.php:44 -#: ../../operation/search_agents.php:50 -#: ../../operation/agentes/estado_agente.php:748 -#: ../../operation/agentes/estado_generalagente.php:196 -#: ../../include/ajax/heatmap.ajax.php:325 -#: ../../include/class/Diagnostics.class.php:748 -#: ../../include/lib/Dashboard/Widgets/os_quick_report.php:283 -#: ../../include/lib/Dashboard/Widgets/tree_view.php:332 -#: ../../include/functions_events.php:4490 -#: ../../include/functions_reporting_html.php:1525 -#: ../../include/functions_reporting_html.php:3388 -#: ../../enterprise/tools/ipam/ipam_network.php:398 -#: ../../enterprise/views/cluster/view.php:253 -#: ../../enterprise/operation/agentes/tag_view.php:602 -#: ../../enterprise/include/functions_reporting_csv.php:718 -#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:254 -#: ../../enterprise/include/class/AgentRepository.class.php:342 -#: ../../enterprise/include/class/AgentRepository.class.php:630 -#: ../../enterprise/include/class/AgentRepository.class.php:673 -#: ../../enterprise/include/class/DeploymentCenter.class.php:756 -#: ../../enterprise/include/class/DeploymentCenter.class.php:817 -#: ../../enterprise/include/class/DeploymentCenter.class.php:1289 -#: ../../enterprise/include/class/DeploymentCenter.class.php:1397 -#: ../../enterprise/meta/agentsearch.php:136 -#: ../../enterprise/godmode/modules/configure_local_component.php:177 -#: ../../enterprise/godmode/modules/local_components.php:561 -#: ../../enterprise/godmode/modules/local_components.php:586 -#: ../../enterprise/godmode/modules/local_components.php:622 -#: ../../enterprise/godmode/modules/manage_inventory_modules.php:274 -#: ../../enterprise/godmode/modules/manage_inventory_modules_form.php:103 -#: ../../mobile/operation/agents.php:94 ../../mobile/operation/agents.php:404 -#: ../../godmode/reporting/reporting_builder.item_editor.php:71 -#: ../../godmode/massive/massive_edit_agents.php:719 -#: ../../godmode/agentes/agent_manager.php:392 -#: ../../godmode/agentes/planned_downtime.editor.php:922 -#: ../../godmode/agentes/modificar_agente.php:649 -msgid "OS" -msgstr "SO" - -#: ../../operation/tree.php:90 ../../operation/agentes/pandora_networkmap.php:710 -#: ../../include/lib/Dashboard/Widgets/top_n_events_by_group.php:301 -#: ../../include/lib/Dashboard/Widgets/top_n_events_by_module.php:301 -#: ../../include/lib/Dashboard/Widgets/system_group_status.php:295 -#: ../../include/lib/Dashboard/Widgets/groups_status.php:216 -#: ../../include/lib/Dashboard/Widgets/events_list.php:420 -#: ../../include/lib/Dashboard/Widgets/tree_view.php:328 -#: ../../include/lib/Dashboard/Widgets/tree_view.php:337 -#: ../../include/lib/Dashboard/Widgets/tree_view.php:359 -#: ../../include/functions_maps.php:46 -#: ../../include/functions_networkmap.php:1295 -#: ../../enterprise/godmode/setup/setup_auth.php:230 -#: ../../enterprise/godmode/setup/setup_auth.php:509 -#: ../../enterprise/godmode/setup/setup_auth.php:1306 -#: ../../enterprise/godmode/policies/policy_agents.php:566 -#: ../../enterprise/godmode/policies/policy_agents.php:1215 -#: ../../extensions/files_repo/files_repo_form.php:55 -#: ../../extensions/module_groups.php:311 ../../mobile/operation/home.php:57 -#: ../../mobile/operation/groups.php:77 ../../mobile/include/functions_web.php:27 -#: ../../godmode/reporting/visual_console_builder.wizard.php:362 -msgid "Groups" -msgstr "Grupos" - -#: ../../operation/tree.php:102 -#: ../../include/lib/Dashboard/Widgets/tree_view.php:330 -#: ../../extensions/module_groups.php:422 ../../godmode/menu.php:90 -msgid "Module groups" -msgstr "Grupos de mĆ³dulos" - -#: ../../operation/tree.php:114 ../../operation/search_agents.php:55 -#: ../../operation/agentes/group_view.php:184 -#: ../../operation/agentes/group_view.php:217 -#: ../../operation/agentes/graphs.php:188 -#: ../../operation/agentes/exportdata.php:282 -#: ../../operation/agentes/estado_agente.php:760 -#: ../../operation/search_results.php:158 ../../include/functions_reports.php:733 -#: ../../include/functions_reports.php:737 -#: ../../include/functions_reports.php:741 -#: ../../include/functions_reports.php:745 -#: ../../include/functions_reports.php:749 -#: ../../include/functions_reports.php:753 -#: ../../include/functions_reports.php:757 -#: ../../include/functions_reports.php:761 -#: ../../include/functions_reports.php:765 -#: ../../include/class/AgentsAlerts.class.php:253 -#: ../../include/lib/Dashboard/Widgets/groups_status.php:385 -#: ../../include/lib/Dashboard/Widgets/groups_status.php:391 -#: ../../include/lib/Dashboard/Widgets/agent_module.php:448 -#: ../../include/lib/Dashboard/Widgets/tree_view.php:331 -#: ../../include/functions_html.php:1708 -#: ../../include/functions_reporting_html.php:1845 -#: ../../include/functions_reporting_html.php:5375 -#: ../../enterprise/operation/services/services.service_map.php:163 -#: ../../enterprise/operation/agentes/tag_view.php:606 -#: ../../enterprise/include/functions_reporting_pdf.php:861 -#: ../../enterprise/include/functions_policies.php:3722 -#: ../../enterprise/meta/include/functions_wizard_meta.php:409 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1824 -#: ../../enterprise/meta/monitoring/group_view.php:155 -#: ../../enterprise/meta/monitoring/group_view.php:221 -#: ../../enterprise/meta/monitoring/wizard/wizard.php:292 -#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:447 -#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:715 -#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:794 -#: ../../enterprise/meta/monitoring/wizard/wizard.agent.php:65 -#: ../../enterprise/meta/advanced/servers.build_table.php:64 -#: ../../enterprise/meta/agentsearch.php:139 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:311 -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:230 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:243 -#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:473 -#: ../../enterprise/godmode/massive/massive_edit_tags_policy.php:128 -#: ../../enterprise/godmode/massive/massive_add_service_elements.php:362 -#: ../../enterprise/godmode/massive/massive_add_modules_policy.php:176 -#: ../../enterprise/godmode/massive/massive_create_services.php:965 -#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:111 -#: ../../enterprise/godmode/policies/policy_modules.php:458 -#: ../../enterprise/godmode/policies/policies.php:509 -#: ../../extensions/agents_modules.php:758 ../../mobile/operation/agent.php:327 -#: ../../mobile/operation/modules.php:236 ../../mobile/operation/home.php:88 -#: ../../mobile/operation/agents.php:96 ../../mobile/operation/agents.php:409 -#: ../../godmode/servers/servers.build_table.php:83 -#: ../../godmode/reporting/reporting_builder.list_items.php:210 -#: ../../godmode/reporting/reporting_builder.list_items.php:239 -#: ../../godmode/reporting/reporting_builder.item_editor.php:1803 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2024 -#: ../../godmode/reporting/visual_console_builder.wizard.php:432 -#: ../../godmode/massive/massive_delete_modules.php:463 -#: ../../godmode/massive/massive_copy_modules.php:199 -#: ../../godmode/massive/massive_edit_plugins.php:383 -#: ../../godmode/massive/massive_edit_modules.php:425 -#: ../../godmode/agentes/configurar_agente.php:406 -#: ../../godmode/agentes/configurar_agente.php:724 -#: ../../godmode/agentes/planned_downtime.editor.php:924 -#: ../../godmode/agentes/planned_downtime.editor.php:999 -#: ../../godmode/agentes/planned_downtime.list.php:85 -#: ../../godmode/agentes/planned_downtime.list.php:115 -#: ../../godmode/agentes/modificar_agente.php:817 -msgid "Modules" -msgstr "MĆ³dulos" - -#: ../../operation/tree.php:138 ../../operation/menu.php:51 -#: ../../include/lib/Dashboard/Widgets/tree_view.php:173 -#: ../../include/lib/Dashboard/Widgets/tree_view.php:714 -#: ../../enterprise/operation/services/services.treeview_services.php:61 -#: ../../enterprise/operation/services/services.treeview_services.php:68 -#: ../../enterprise/meta/general/main_menu.php:188 -#: ../../enterprise/meta/general/main_header.php:97 -#: ../../godmode/groups/group_list.php:344 -msgid "Tree view" -msgstr "Vista de Ć”rbol" - -#: ../../operation/tree.php:139 -#, php-format -msgid "Sort the agents by %s" -msgstr "Ordenar los agentes por %s" - -#: ../../operation/tree.php:142 -msgid "tags" -msgstr "Etiquetas" - -#: ../../operation/tree.php:150 -msgid "groups" -msgstr "Grupos" - -#: ../../operation/tree.php:154 -msgid "module groups" -msgstr "Grupos de mĆ³dulos" - -#: ../../operation/tree.php:158 ../../godmode/setup/license.php:136 -#: ../../godmode/setup/license.php:139 ../../godmode/setup/license.php:142 -#: ../../godmode/setup/license.php:145 -msgid "modules" -msgstr "mĆ³dulos" - -#: ../../operation/tree.php:163 -msgid "policies" -msgstr "PolĆ­ticas" - -#: ../../operation/tree.php:212 ../../operation/tree.php:269 -#: ../../operation/tree.php:486 ../../operation/netflow/nf_live_view.php:392 -#: ../../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/estado_agente.php:268 -#: ../../include/lib/Dashboard/Widgets/system_group_status.php:311 -#: ../../include/lib/Dashboard/Widgets/tree_view.php:385 -#: ../../include/lib/Dashboard/Widgets/tree_view.php:418 -#: ../../include/lib/Dashboard/Widgets/tree_view.php:680 -#: ../../include/functions_events.php:3336 ../../include/functions_graph.php:3543 -#: ../../include/functions_graph.php:3544 ../../include/functions_graph.php:5123 -#: ../../include/rest-api/models/VisualConsole/Items/Group.php:430 -#: ../../include/functions.php:1031 ../../include/functions.php:1271 -#: ../../include/functions.php:1278 ../../include/functions.php:1311 -#: ../../include/functions_reporting_html.php:2321 -#: ../../enterprise/operation/services/services.treeview_services.php:286 -#: ../../enterprise/operation/agentes/tag_view.php:131 -#: ../../enterprise/include/functions_services.php:1428 -#: ../../enterprise/meta/monitoring/custom_fields_csv.php:117 -#: ../../enterprise/meta/monitoring/custom_fields_csv.php:140 -#: ../../enterprise/meta/monitoring/group_view.php:238 -#: ../../enterprise/meta/monitoring/group_view.php:244 -#: ../../enterprise/meta/monitoring/custom_fields_view.php:179 -#: ../../enterprise/meta/monitoring/tactical.php:241 -#: ../../enterprise/godmode/services/services.elements.php:390 -#: ../../enterprise/godmode/massive/massive_add_modules_policy.php:119 -#: ../../mobile/operation/modules.php:69 ../../mobile/operation/agents.php:58 -#: ../../godmode/reporting/reporting_builder.item_editor.php:3621 -#: ../../godmode/netflow/nf_edit_form.php:236 -#: ../../godmode/massive/massive_delete_modules.php:418 -#: ../../godmode/massive/massive_delete_modules.php:439 -#: ../../godmode/massive/massive_copy_modules.php:115 -#: ../../godmode/massive/massive_copy_modules.php:275 -#: ../../godmode/massive/massive_edit_agents.php:531 -#: ../../godmode/massive/massive_delete_agents.php:209 -#: ../../godmode/massive/massive_edit_modules.php:385 -#: ../../godmode/massive/massive_edit_modules.php:471 -#: ../../godmode/groups/group_list.php:1074 -msgid "Normal" -msgstr "Normal" - -#: ../../operation/tree.php:213 ../../operation/tree.php:270 -#: ../../operation/tree.php:471 ../../operation/gis_maps/render_view.php:165 -#: ../../operation/netflow/nf_live_view.php:459 -#: ../../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/estado_agente.php:269 -#: ../../include/class/AgentWizard.class.php:1300 -#: ../../include/class/AgentWizard.class.php:3995 +#: ../../enterprise/views/ncm/firmwares/edit.php:149 +#: ../../enterprise/meta/advanced/metasetup.consoles.php:439 +#: ../../enterprise/meta/monitoring/custom_fields_csv.php:127 +#: ../../enterprise/meta/monitoring/custom_fields_view.php:180 +#: ../../enterprise/meta/monitoring/group_view.php:239 +#: ../../enterprise/meta/monitoring/group_view.php:245 +#: ../../enterprise/meta/monitoring/tactical.php:223 +#: ../../enterprise/meta/include/functions_wizard_meta.php:977 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1062 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1265 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1285 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1502 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1587 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1707 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1727 +#: ../../enterprise/meta/index.php:863 ../../enterprise/meta/index.php:932 +#: ../../enterprise/godmode/agentes/manage_config_remote.php:313 +#: ../../enterprise/godmode/massive/massive_add_modules_policy.php:120 +#: ../../enterprise/godmode/massive/massive_create_services.php:747 +#: ../../enterprise/godmode/services/services.service.php:707 +#: ../../enterprise/godmode/services/services.service.php:958 +#: ../../enterprise/godmode/services/services.elements.php:368 +#: ../../enterprise/godmode/setup/setup_history.php:585 +#: ../../enterprise/include/class/CommandCenter.class.php:564 +#: ../../enterprise/include/class/CommandCenter.class.php:603 +#: ../../enterprise/include/functions_reporting.php:4838 +#: ../../enterprise/include/functions_services.php:1448 +#: ../../enterprise/include/functions_login.php:23 +#: ../../enterprise/operation/agentes/transactional_map.php:333 +#: ../../enterprise/operation/agentes/tag_view.php:132 +#: ../../enterprise/operation/services/services.service.php:123 +#: ../../enterprise/operation/services/services.service.php:174 +#: ../../enterprise/operation/services/services.service_map.php:150 +#: ../../enterprise/operation/services/services.treeview_services.php:280 +#: ../../enterprise/operation/services/services.list.php:238 +#: ../../enterprise/operation/services/services.list.php:505 +#: ../../enterprise/operation/services/services.list.php:564 +#: ../../enterprise/operation/services/services.table_services.php:160 +#: ../../update_manager_client/views/offline.php:80 ../../extensions/dbmanager.php:129 +#: ../../godmode/modules/manage_network_components_form_wizard.php:384 +#: ../../godmode/groups/group_list.php:1059 ../../godmode/users/configure_user.php:1644 +#: ../../godmode/massive/massive_copy_modules.php:116 +#: ../../godmode/massive/massive_copy_modules.php:276 +#: ../../godmode/massive/massive_delete_modules.php:419 +#: ../../godmode/massive/massive_delete_modules.php:440 +#: ../../godmode/massive/massive_delete_agents.php:210 +#: ../../godmode/massive/massive_edit_agents.php:532 +#: ../../godmode/massive/massive_edit_agents.php:981 +#: ../../godmode/massive/massive_edit_modules.php:386 +#: ../../godmode/massive/massive_edit_modules.php:472 +#: ../../godmode/setup/setup_netflow.php:71 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3735 +#: ../../mobile/operation/agents.php:59 ../../mobile/operation/modules.php:70 +#: ../../include/functions_reporting_html.php:2359 ../../include/functions.php:1035 +#: ../../include/functions.php:1273 ../../include/functions.php:1276 +#: ../../include/functions.php:1315 ../../include/functions_graph.php:3493 +#: ../../include/functions_graph.php:3494 ../../include/functions_graph.php:5068 +#: ../../include/functions_ui.php:298 ../../include/functions_ui.php:2610 +#: ../../include/rest-api/models/VisualConsole/Items/Group.php:423 #: ../../include/class/Diagnostics.class.php:1809 +#: ../../include/class/AgentWizard.class.php:1315 +#: ../../include/class/AgentWizard.class.php:4021 #: ../../include/lib/Dashboard/Widgets/system_group_status.php:312 #: ../../include/lib/Dashboard/Widgets/tree_view.php:386 #: ../../include/lib/Dashboard/Widgets/tree_view.php:419 #: ../../include/lib/Dashboard/Widgets/tree_view.php:665 -#: ../../include/functions_events.php:3340 ../../include/functions_graph.php:3553 -#: ../../include/functions_graph.php:3554 ../../include/functions_graph.php:5127 -#: ../../include/functions_ui.php:298 ../../include/functions_ui.php:2604 -#: ../../include/rest-api/models/VisualConsole/Items/Group.php:423 -#: ../../include/functions.php:1035 ../../include/functions.php:1273 -#: ../../include/functions.php:1276 ../../include/functions.php:1315 -#: ../../include/functions_reporting_html.php:2323 -#: ../../update_manager_client/views/offline.php:80 ../../index.php:1176 -#: ../../enterprise/views/ncm/firmwares/edit.php:149 -#: ../../enterprise/operation/services/services.treeview_services.php:271 -#: ../../enterprise/operation/services/services.service.php:123 -#: ../../enterprise/operation/services/services.service.php:174 -#: ../../enterprise/operation/services/services.list.php:238 -#: ../../enterprise/operation/services/services.list.php:505 -#: ../../enterprise/operation/services/services.list.php:564 -#: ../../enterprise/operation/services/services.service_map.php:150 -#: ../../enterprise/operation/services/services.table_services.php:160 -#: ../../enterprise/operation/agentes/tag_view.php:132 -#: ../../enterprise/operation/agentes/transactional_map.php:333 -#: ../../enterprise/include/class/CommandCenter.class.php:564 -#: ../../enterprise/include/class/CommandCenter.class.php:603 -#: ../../enterprise/include/functions_services.php:1448 -#: ../../enterprise/include/functions_login.php:23 -#: ../../enterprise/include/functions_reporting.php:4837 -#: ../../enterprise/meta/include/functions_wizard_meta.php:980 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1065 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1268 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1288 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1505 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1590 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1710 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1730 -#: ../../enterprise/meta/monitoring/custom_fields_csv.php:127 -#: ../../enterprise/meta/monitoring/group_view.php:239 -#: ../../enterprise/meta/monitoring/group_view.php:245 -#: ../../enterprise/meta/monitoring/custom_fields_view.php:180 -#: ../../enterprise/meta/monitoring/tactical.php:240 -#: ../../enterprise/meta/advanced/metasetup.consoles.php:439 -#: ../../enterprise/meta/index.php:862 ../../enterprise/meta/index.php:931 -#: ../../enterprise/godmode/setup/setup_history.php:583 -#: ../../enterprise/godmode/services/services.elements.php:372 -#: ../../enterprise/godmode/services/services.service.php:707 -#: ../../enterprise/godmode/services/services.service.php:958 -#: ../../enterprise/godmode/massive/massive_add_modules_policy.php:120 -#: ../../enterprise/godmode/massive/massive_create_services.php:747 -#: ../../extensions/dbmanager.php:129 ../../mobile/operation/modules.php:70 -#: ../../mobile/operation/agents.php:59 ../../godmode/setup/setup_netflow.php:71 -#: ../../godmode/modules/manage_network_components_form_wizard.php:384 -#: ../../godmode/reporting/reporting_builder.item_editor.php:3622 -#: ../../godmode/massive/massive_delete_modules.php:419 -#: ../../godmode/massive/massive_delete_modules.php:440 -#: ../../godmode/massive/massive_copy_modules.php:116 -#: ../../godmode/massive/massive_copy_modules.php:276 -#: ../../godmode/massive/massive_edit_agents.php:532 -#: ../../godmode/massive/massive_edit_agents.php:981 -#: ../../godmode/massive/massive_delete_agents.php:210 -#: ../../godmode/massive/massive_edit_modules.php:386 -#: ../../godmode/massive/massive_edit_modules.php:472 -#: ../../godmode/users/configure_user.php:1674 -#: ../../godmode/groups/group_list.php:1059 +#: ../../include/functions_events.php:2937 ../../index.php:1179 +#: ../../operation/tree.php:213 ../../operation/tree.php:270 +#: ../../operation/tree.php:471 ../../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/netflow/nf_live_view.php:459 +#: ../../operation/gis_maps/render_view.php:165 msgid "Warning" msgstr "Advertencia" -#: ../../operation/tree.php:214 ../../operation/tree.php:271 -#: ../../operation/tree.php:466 ../../operation/gis_maps/render_view.php:164 -#: ../../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/estado_agente.php:270 -#: ../../include/class/AgentWizard.class.php:1303 -#: ../../include/class/AgentWizard.class.php:4009 -#: ../../include/lib/Dashboard/Widgets/system_group_status.php:313 -#: ../../include/lib/Dashboard/Widgets/tree_view.php:387 -#: ../../include/lib/Dashboard/Widgets/tree_view.php:420 -#: ../../include/lib/Dashboard/Widgets/tree_view.php:660 -#: ../../include/functions_events.php:3344 ../../include/functions_graph.php:3563 -#: ../../include/functions_graph.php:3564 ../../include/functions_graph.php:5131 -#: ../../include/functions_ui.php:2604 -#: ../../include/rest-api/models/VisualConsole/Items/Group.php:416 -#: ../../include/functions.php:1039 ../../include/functions.php:1275 -#: ../../include/functions.php:1276 ../../include/functions.php:1278 -#: ../../include/functions.php:1319 -#: ../../include/functions_reporting_html.php:859 -#: ../../include/functions_reporting_html.php:2322 -#: ../../include/functions_reporting_html.php:4605 -#: ../../enterprise/operation/services/services.treeview_services.php:266 -#: ../../enterprise/operation/services/services.service.php:122 -#: ../../enterprise/operation/services/services.service.php:168 -#: ../../enterprise/operation/services/services.list.php:239 -#: ../../enterprise/operation/services/services.list.php:504 -#: ../../enterprise/operation/services/services.list.php:558 -#: ../../enterprise/operation/services/services.service_map.php:149 -#: ../../enterprise/operation/services/services.table_services.php:161 -#: ../../enterprise/operation/agentes/tag_view.php:133 -#: ../../enterprise/include/functions_services.php:1440 -#: ../../enterprise/include/functions_reporting.php:3190 -#: ../../enterprise/include/functions_reporting.php:4191 -#: ../../enterprise/include/functions_reporting.php:4842 -#: ../../enterprise/include/functions_reporting.php:6198 -#: ../../enterprise/meta/include/functions_wizard_meta.php:989 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1074 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1277 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1301 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1514 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1599 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1719 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1737 -#: ../../enterprise/meta/monitoring/custom_fields_csv.php:122 -#: ../../enterprise/meta/monitoring/group_view.php:240 -#: ../../enterprise/meta/monitoring/group_view.php:246 -#: ../../enterprise/meta/monitoring/custom_fields_view.php:181 -#: ../../enterprise/meta/monitoring/tactical.php:239 -#: ../../enterprise/godmode/services/services.elements.php:363 -#: ../../enterprise/godmode/services/services.service.php:693 -#: ../../enterprise/godmode/massive/massive_add_modules_policy.php:121 -#: ../../enterprise/godmode/massive/massive_create_services.php:733 -#: ../../extensions/module_groups.php:50 ../../mobile/operation/modules.php:71 -#: ../../mobile/operation/agents.php:57 -#: ../../godmode/modules/manage_network_components_form_wizard.php:412 -#: ../../godmode/reporting/reporting_builder.item_editor.php:3623 -#: ../../godmode/massive/massive_delete_modules.php:420 -#: ../../godmode/massive/massive_delete_modules.php:441 -#: ../../godmode/massive/massive_copy_modules.php:117 -#: ../../godmode/massive/massive_copy_modules.php:277 -#: ../../godmode/massive/massive_edit_agents.php:533 -#: ../../godmode/massive/massive_delete_agents.php:211 -#: ../../godmode/massive/massive_edit_modules.php:387 -#: ../../godmode/massive/massive_edit_modules.php:473 -#: ../../godmode/groups/group_list.php:1054 -msgid "Critical" -msgstr "CrĆ­tico" +#: ../../enterprise/views/ncm/firmwares/edit.php:149 +msgid "Current binary file will be overwritten, are you sure?" +msgstr "El archivo binario actual se sobrescribirĆ”, ĀæestĆ” seguro?" -#: ../../operation/tree.php:215 ../../operation/tree.php:272 -#: ../../operation/tree.php:476 ../../operation/events/events.php:2245 -#: ../../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/tactical.php:181 -#: ../../operation/agentes/estado_agente.php:271 -#: ../../operation/agentes/pandora_networkmap.view.php:1728 -#: ../../include/functions_reports.php:557 ../../include/ajax/module.php:1071 -#: ../../include/lib/Dashboard/Widgets/tree_view.php:388 -#: ../../include/lib/Dashboard/Widgets/tree_view.php:421 -#: ../../include/lib/Dashboard/Widgets/tree_view.php:670 -#: ../../include/functions_events.php:3244 ../../include/functions_alerts.php:702 -#: ../../include/functions_netflow.php:1865 -#: ../../include/functions_filemanager.php:668 -#: ../../include/functions_reporting.php:6108 -#: ../../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/graphs/functions_flot.php:305 -#: ../../include/functions_maps.php:54 ../../include/functions_ui.php:549 -#: ../../include/functions_ui.php:550 -#: ../../include/rest-api/models/VisualConsole/Items/Group.php:437 -#: ../../include/functions.php:1225 ../../include/functions.php:4101 -#: ../../include/functions_reporting_html.php:2311 -#: ../../include/functions_reporting_html.php:2324 -#: ../../include/functions_reporting_html.php:3295 -#: ../../include/functions_reporting_html.php:3703 -#: ../../enterprise/views/ncm/agent/details.php:312 -#: ../../enterprise/operation/services/services.treeview_services.php:276 -#: ../../enterprise/operation/services/services.service.php:180 -#: ../../enterprise/operation/services/services.list.php:240 -#: ../../enterprise/operation/services/services.list.php:571 -#: ../../enterprise/operation/services/services.service_map.php:152 -#: ../../enterprise/operation/services/services.table_services.php:162 -#: ../../enterprise/operation/agentes/tag_view.php:134 -#: ../../enterprise/operation/agentes/transactional_map.php:339 -#: ../../enterprise/operation/agentes/transactional_map.php:385 -#: ../../enterprise/include/functions_cron.php:585 -#: ../../enterprise/include/class/DatabaseHA.class.php:223 -#: ../../enterprise/include/lib/ClusterViewer/ClusterManager.php:582 -#: ../../enterprise/include/lib/NetworkManager.php:103 -#: ../../enterprise/include/functions_HA_cluster.php:70 -#: ../../enterprise/include/functions_reporting.php:1889 -#: ../../enterprise/include/functions_reporting.php:2939 -#: ../../enterprise/include/functions_reporting.php:3927 -#: ../../enterprise/include/functions_reporting.php:4847 +#: ../../enterprise/views/ncm/firmwares/edit.php:154 +msgid "Binary file" +msgstr "Archivo binario" + +#: ../../enterprise/views/ncm/vendors/edit.php:89 +msgid "icon" +msgstr "icono" + +#: ../../enterprise/views/cluster/list.php:31 +#: ../../enterprise/meta/general/main_header.php:91 +#: ../../enterprise/meta/general/logon_ok.php:75 +#: ../../enterprise/meta/general/main_menu.php:181 +#: ../../enterprise/extensions/vmware/vmware_view.php:1394 +#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:53 +#: ../../enterprise/godmode/services/services.massive.meta.php:42 +#: ../../enterprise/godmode/services/services.massive.elements.php:44 +#: ../../enterprise/godmode/reporting/aws_view.php:115 +#: ../../enterprise/godmode/reporting/aws_view.php:148 +#: ../../enterprise/include/ajax/ipam.ajax.php:455 +#: ../../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/services.treeview_services.php:62 +#: ../../enterprise/operation/services/services.list.php:58 +#: ../../enterprise/operation/services/services.table_services.php:38 +#: ../../enterprise/tools/ipam/ipam_editor.php:261 +#: ../../extensions/agents_modules.php:474 ../../extensions/module_groups.php:260 +#: ../../extensions/realtime_graphs.php:67 +#: ../../godmode/snmpconsole/snmp_trap_generator.php:47 +#: ../../godmode/snmpconsole/snmp_filters.php:55 +#: ../../include/class/AgentsAlerts.class.php:738 ../../operation/heatmap.php:133 +#: ../../operation/tree.php:183 ../../operation/agentes/alerts_status.php:199 +#: ../../operation/agentes/estado_agente.php:224 +#: ../../operation/agentes/interface_view.php:72 +#: ../../operation/agentes/status_monitor.php:104 +#: ../../operation/agentes/group_view.php:98 ../../operation/agentes/ver_agente.php:1915 +#: ../../operation/agentes/tactical.php:78 +#: ../../operation/snmpconsole/snmp_statistics.php:98 +#: ../../operation/snmpconsole/snmp_browser.php:86 +#: ../../operation/snmpconsole/snmp_view.php:693 +#: ../../operation/snmpconsole/snmp_view.php:802 +#: ../../operation/snmpconsole/snmp_mib_uploader.php:56 ../../operation/menu.php:31 +#: ../../operation/menu.php:154 ../../general/first_task/cluster_builder.php:38 +msgid "Monitoring" +msgstr "MonitorizaciĆ³n" + +#: ../../enterprise/views/cluster/list.php:31 +#: ../../general/first_task/HA_cluster_builder.php:42 +#: ../../general/first_task/cluster_builder.php:29 +#: ../../general/first_task/cluster_builder.php:51 +msgid "Clusters" +msgstr "ClĆŗsters" + +#: ../../enterprise/views/cluster/list.php:61 +#: ../../enterprise/meta/advanced/servers.build_table.php:62 +#: ../../enterprise/meta/advanced/metasetup.relations.php:335 +#: ../../enterprise/meta/advanced/metasetup.relations.php:413 +#: ../../enterprise/meta/advanced/metasetup.relations.php:548 +#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:68 +#: ../../enterprise/godmode/modules/configure_local_component.php:212 +#: ../../enterprise/godmode/policies/policy_modules.php:1465 +#: ../../enterprise/godmode/services/services.elements.php:113 +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:83 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:104 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:207 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1654 +#: ../../enterprise/godmode/reporting/reporting_builder.template_list_item.php:201 +#: ../../enterprise/include/functions_reporting_csv.php:1605 +#: ../../enterprise/include/functions_reporting_csv.php:1721 +#: ../../enterprise/include/functions_reporting_csv.php:1961 +#: ../../enterprise/include/functions_reporting_csv.php:2029 +#: ../../enterprise/include/functions_services.php:1602 +#: ../../enterprise/operation/agentes/policy_view.php:396 +#: ../../enterprise/operation/agentes/tag_view.php:605 +#: ../../enterprise/operation/agentes/ver_agente.php:32 +#: ../../godmode/modules/manage_network_templates_form.php:232 +#: ../../godmode/modules/manage_network_components_form_common.php:64 +#: ../../godmode/modules/manage_network_components.php:750 +#: ../../godmode/update_manager/update_manager.history.php:41 +#: ../../godmode/agentes/agent_template.php:236 +#: ../../godmode/agentes/modificar_agente.php:650 +#: ../../godmode/agentes/planned_downtime.list.php:613 +#: ../../godmode/agentes/planned_downtime.editor.php:588 +#: ../../godmode/agentes/module_manager_editor_common.php:288 +#: ../../godmode/agentes/module_manager_editor_common.php:401 +#: ../../godmode/agentes/module_manager_editor_common.php:1305 +#: ../../godmode/agentes/module_manager.php:850 +#: ../../godmode/alerts/alert_templates.php:37 +#: ../../godmode/alerts/alert_templates.php:302 +#: ../../godmode/alerts/alert_templates.php:387 ../../godmode/setup/news.php:247 +#: ../../godmode/setup/gis_step_2.php:235 ../../godmode/setup/setup_integria.php:408 +#: ../../godmode/setup/setup_integria.php:530 +#: ../../godmode/reporting/reporting_builder.list_items.php:212 +#: ../../godmode/reporting/reporting_builder.list_items.php:249 +#: ../../godmode/reporting/reporting_builder.list_items.php:372 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1034 +#: ../../godmode/reporting/visual_console_builder.wizard.php:135 +#: ../../godmode/reporting/visual_console_builder.wizard.php:283 +#: ../../godmode/events/event_responses.editor.php:159 +#: ../../godmode/servers/servers.build_table.php:81 +#: ../../godmode/servers/modificar_server.php:72 ../../godmode/servers/plugin.php:816 +#: ../../mobile/operation/visualmaps.php:125 ../../mobile/operation/visualmaps.php:126 +#: ../../mobile/operation/events.php:658 ../../mobile/operation/events.php:659 +#: ../../mobile/operation/events.php:812 ../../mobile/operation/events.php:972 +#: ../../mobile/operation/events.php:973 +#: ../../include/functions_visual_map_editor.php:702 +#: ../../include/functions_visual_map_editor.php:720 +#: ../../include/functions_visual_map_editor.php:848 +#: ../../include/functions_reporting_html.php:1049 +#: ../../include/functions_reporting_html.php:1057 +#: ../../include/functions_reporting_html.php:1311 +#: ../../include/functions_reporting_html.php:1319 +#: ../../include/functions_reporting_html.php:2426 +#: ../../include/functions_reporting_html.php:3482 +#: ../../include/functions_reporting_html.php:5249 +#: ../../include/ajax/heatmap.ajax.php:75 ../../include/ajax/module.php:977 +#: ../../include/rest-api/models/VisualConsole/Items/Percentile.php:467 +#: ../../include/functions_reports.php:1067 ../../include/functions_html.php:5502 +#: ../../include/class/ModuleTemplates.class.php:1209 +#: ../../include/class/CalendarManager.class.php:1028 +#: ../../include/class/CalendarManager.class.php:1062 +#: ../../include/class/AgentWizard.class.php:1197 +#: ../../include/class/AgentWizard.class.php:4054 +#: ../../include/lib/Dashboard/Widgets/service_view.php:251 +#: ../../include/lib/Dashboard/Widgets/custom_graph.php:327 +#: ../../include/lib/Dashboard/Widgets/clock.php:221 +#: ../../include/functions_snmp_browser.php:564 ../../include/functions_events.php:2359 +#: ../../include/functions_events.php:4563 ../../operation/agentes/estado_agente.php:757 +#: ../../operation/agentes/ver_agente.php:1153 +#: ../../operation/netflow/nf_live_view.php:319 +#: ../../operation/incidents/configure_integriaims_incident.php:234 +#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:326 +#: ../../operation/search_modules.php:34 +msgid "Type" +msgstr "Tipo" + +#: ../../enterprise/views/cluster/list.php:62 +#: ../../include/functions_reporting_html.php:5684 +#: ../../operation/agentes/pandora_networkmap.php:708 +msgid "Nodes" +msgstr "Nodos" + +#: ../../enterprise/views/cluster/list.php:122 +msgid "New cluster" +msgstr "Nuevo clĆŗster" + +#: ../../enterprise/views/cluster/view.php:44 ../../enterprise/views/cluster/view.php:63 +#: ../../enterprise/views/cluster/edit.php:41 ../../enterprise/views/cluster/edit.php:68 +msgid "Cluster list" +msgstr "Lista de clĆŗsters" + +#: ../../enterprise/views/cluster/view.php:50 ../../enterprise/views/cluster/view.php:81 +msgid "Cluster details" +msgstr "Detalles del clĆŗster" + +#: ../../enterprise/views/cluster/view.php:74 +msgid "Edit this cluster" +msgstr "Editar el clĆŗster" + +#: ../../enterprise/views/cluster/view.php:162 +#: ../../enterprise/views/cluster/view.php:164 +#: ../../enterprise/meta/include/functions_wizard_meta.php:240 +#: ../../enterprise/meta/include/functions_wizard_meta.php:525 +#: ../../enterprise/meta/include/functions_wizard_meta.php:597 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1145 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1530 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1623 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1817 +#: ../../enterprise/meta/agentsearch.php:251 ../../enterprise/meta/agentsearch.php:258 +#: ../../enterprise/godmode/modules/configure_local_component.php:459 +#: ../../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/massive/massive_edit_policy_modules.php:701 +#: ../../enterprise/godmode/setup/edit_skin.php:276 +#: ../../enterprise/include/class/VMware.app.php:888 +#: ../../enterprise/include/class/DatabaseHA.class.php:211 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2038 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3255 +#: ../../enterprise/include/lib/NetworkManager.php:190 +#: ../../enterprise/include/functions_policies.php:4782 +#: ../../godmode/groups/group_list.php:908 +#: ../../godmode/agentes/modificar_agente.php:761 +#: ../../godmode/agentes/module_manager_editor_common.php:257 +#: ../../godmode/agentes/module_manager_editor_common.php:897 +#: ../../godmode/agentes/module_manager_editor_common.php:1059 +#: ../../godmode/massive/massive_edit_agents.php:917 +#: ../../godmode/massive/massive_edit_agents.php:1017 +#: ../../godmode/massive/massive_edit_modules.php:765 +#: ../../godmode/alerts/alert_list.list.php:149 +#: ../../godmode/alerts/configure_alert_template.php:899 +#: ../../godmode/alerts/alert_view.php:541 ../../mobile/operation/agent.php:167 +#: ../../mobile/operation/alerts.php:68 +#: ../../include/functions_visual_map_editor.php:826 +#: ../../include/functions_reporting_html.php:3448 +#: ../../include/functions_treeview.php:72 ../../include/functions_treeview.php:613 +#: ../../include/rest-api/models/VisualConsole/Items/StaticGraph.php:405 +#: ../../include/functions_reporting.php:6505 ../../operation/search_agents.php:93 +#: ../../operation/agentes/estado_generalagente.php:99 +#: ../../operation/agentes/estado_generalagente.php:101 +#: ../../operation/agentes/alerts_status.functions.php:99 +msgid "Disabled" +msgstr "Deshabilitado" + +#: ../../enterprise/views/cluster/view.php:168 +#: ../../enterprise/views/cluster/view.php:170 +#: ../../enterprise/godmode/massive/massive_create_services.php:819 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:1028 +#: ../../enterprise/godmode/services/services.service.php:746 +#: ../../godmode/agentes/modificar_agente.php:775 +#: ../../godmode/agentes/planned_downtime.list.php:655 +#: ../../godmode/agentes/planned_downtime.editor.php:594 +#: ../../godmode/agentes/agent_manager.php:683 +#: ../../godmode/agentes/module_manager_editor_common.php:1056 +#: ../../godmode/agentes/module_manager.php:985 +#: ../../godmode/massive/massive_edit_agents.php:990 +#: ../../godmode/massive/massive_edit_modules.php:1104 +#: ../../mobile/operation/agent.php:174 ../../include/ajax/module.php:1128 +#: ../../include/class/Tree.class.php:907 ../../operation/search_agents.php:100 +#: ../../operation/agentes/estado_agente.php:831 +#: ../../operation/agentes/estado_generalagente.php:110 +#: ../../operation/agentes/estado_generalagente.php:120 +msgid "Quiet" +msgstr "Modo silencioso" + +#: ../../enterprise/views/cluster/view.php:178 +#: ../../enterprise/views/cluster/view.php:186 +#: ../../godmode/agentes/modificar_agente.php:783 ../../operation/search_agents.php:111 +#: ../../operation/agentes/estado_agente.php:839 +#: ../../operation/agentes/estado_generalagente.php:131 +#: ../../operation/agentes/estado_generalagente.php:139 +msgid "Agent in scheduled downtime" +msgstr "Agente en parada programada" + +#: ../../enterprise/views/cluster/view.php:223 +msgid "Force cluster status calculation" +msgstr "Forzar cĆ”lculo del estado del clĆŗster" + +#: ../../enterprise/views/cluster/view.php:253 ../../enterprise/meta/agentsearch.php:136 +#: ../../enterprise/godmode/modules/configure_local_component.php:177 +#: ../../enterprise/godmode/modules/manage_inventory_modules.php:274 +#: ../../enterprise/godmode/modules/local_components.php:561 +#: ../../enterprise/godmode/modules/local_components.php:586 +#: ../../enterprise/godmode/modules/local_components.php:622 +#: ../../enterprise/godmode/modules/manage_inventory_modules_form.php:103 +#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:254 +#: ../../enterprise/include/functions_reporting_csv.php:718 +#: ../../enterprise/include/class/DeploymentCenter.class.php:756 +#: ../../enterprise/include/class/DeploymentCenter.class.php:817 +#: ../../enterprise/include/class/DeploymentCenter.class.php:1289 +#: ../../enterprise/include/class/DeploymentCenter.class.php:1397 +#: ../../enterprise/include/class/AgentRepository.class.php:352 +#: ../../enterprise/include/class/AgentRepository.class.php:640 +#: ../../enterprise/include/class/AgentRepository.class.php:686 +#: ../../enterprise/operation/agentes/tag_view.php:602 +#: ../../enterprise/tools/ipam/ipam_network.php:398 +#: ../../godmode/agentes/modificar_agente.php:649 +#: ../../godmode/agentes/planned_downtime.editor.php:922 +#: ../../godmode/agentes/agent_manager.php:392 +#: ../../godmode/massive/massive_edit_agents.php:719 +#: ../../godmode/reporting/reporting_builder.item_editor.php:71 +#: ../../mobile/operation/agents.php:94 ../../mobile/operation/agents.php:404 +#: ../../include/functions_reporting_html.php:1561 +#: ../../include/functions_reporting_html.php:3433 +#: ../../include/ajax/heatmap.ajax.php:325 ../../include/class/Diagnostics.class.php:748 +#: ../../include/lib/Dashboard/Widgets/os_quick_report.php:283 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:332 +#: ../../include/functions_events.php:4039 ../../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 +#: ../../operation/gis_maps/ajax.php:297 +msgid "OS" +msgstr "SO" + +#: ../../enterprise/views/cluster/view.php:273 +#: ../../operation/agentes/estado_generalagente.php:212 +msgid "IP address" +msgstr "DirecciĆ³n IP" + +#: ../../enterprise/views/cluster/view.php:278 +#: ../../enterprise/views/cluster/view.php:293 +#: ../../enterprise/meta/advanced/servers.build_table.php:100 +#: ../../enterprise/meta/advanced/servers.build_table.php:101 +#: ../../enterprise/meta/advanced/servers.build_table.php:107 +#: ../../enterprise/meta/advanced/metasetup.visual.php:895 +#: ../../enterprise/include/functions_visual_map.php:320 +#: ../../enterprise/include/functions_servicemap.php:471 +#: ../../enterprise/include/functions_aws.php:507 +#: ../../enterprise/include/functions_aws.php:508 #: ../../enterprise/include/functions_reporting.php:6158 -#: ../../enterprise/include/functions_reporting_pdf.php:637 -#: ../../enterprise/meta/monitoring/custom_fields_csv.php:131 -#: ../../enterprise/meta/monitoring/group_view.php:236 -#: ../../enterprise/meta/monitoring/group_view.php:242 -#: ../../enterprise/meta/monitoring/custom_fields_view.php:182 -#: ../../enterprise/meta/monitoring/tactical.php:242 -#: ../../enterprise/godmode/services/services.elements.php:381 -#: ../../enterprise/godmode/massive/massive_add_modules_policy.php:122 -#: ../../extensions/module_groups.php:52 ../../mobile/operation/modules.php:72 -#: ../../mobile/operation/agents.php:60 -#: ../../godmode/reporting/reporting_builder.item_editor.php:3624 -#: ../../godmode/massive/massive_delete_modules.php:421 -#: ../../godmode/massive/massive_delete_modules.php:442 -#: ../../godmode/massive/massive_copy_modules.php:118 -#: ../../godmode/massive/massive_copy_modules.php:278 -#: ../../godmode/massive/massive_edit_agents.php:534 -#: ../../godmode/massive/massive_delete_agents.php:212 -#: ../../godmode/massive/massive_edit_modules.php:388 -#: ../../godmode/massive/massive_edit_modules.php:474 -#: ../../godmode/alerts/alert_list.builder.php:290 -#: ../../godmode/groups/group_list.php:1064 -msgid "Unknown" -msgstr "Desconocido" +#: ../../enterprise/include/functions_services.php:1190 +#: ../../enterprise/include/functions_services.php:1371 +#: ../../enterprise/include/functions_services.php:2081 +#: ../../enterprise/include/lib/Metaconsole/Node.php:453 +#: ../../enterprise/include/lib/Metaconsole/Node.php:1129 +#: ../../enterprise/tools/ipam/ipam_network.php:435 +#: ../../enterprise/tools/ipam/ipam_network.php:515 +#: ../../enterprise/tools/ipam/ipam_ajax.php:366 +#: ../../enterprise/tools/ipam/ipam_ajax.php:387 +#: ../../godmode/modules/manage_network_components.php:776 +#: ../../godmode/modules/manage_network_components.php:777 +#: ../../godmode/extensions.php:186 ../../godmode/extensions.php:201 +#: ../../godmode/agentes/planned_downtime.list.php:812 +#: ../../godmode/alerts/alert_view.php:135 +#: ../../godmode/servers/servers.build_table.php:147 +#: ../../godmode/servers/servers.build_table.php:148 +#: ../../godmode/servers/servers.build_table.php:154 +#: ../../mobile/operation/agent.php:192 ../../mobile/operation/agent.php:200 +#: ../../mobile/operation/events.php:307 ../../mobile/operation/events.php:319 +#: ../../mobile/operation/events.php:334 ../../mobile/operation/events.php:443 +#: ../../mobile/operation/events.php:493 ../../mobile/operation/events.php:509 +#: ../../include/functions_servers.php:1362 +#: ../../include/functions_reporting_html.php:651 +#: ../../include/functions_reporting_html.php:654 +#: ../../include/functions_reporting_html.php:5323 +#: ../../include/functions_reporting_html.php:5376 ../../include/functions.php:1124 +#: ../../include/functions.php:1130 ../../include/functions.php:1134 +#: ../../include/ajax/module.php:1168 ../../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/functions_events.php:3396 +#: ../../include/functions_events.php:3509 ../../include/functions_events.php:3529 +#: ../../include/functions_events.php:3538 ../../include/functions_events.php:3547 +#: ../../include/functions_events.php:3548 ../../include/functions_events.php:3560 +#: ../../include/functions_events.php:3611 ../../include/functions_events.php:3644 +#: ../../include/functions_events.php:3710 ../../include/functions_events.php:3727 +#: ../../include/functions_events.php:3734 ../../include/functions_events.php:3800 +#: ../../include/functions_events.php:3872 ../../include/functions_events.php:3996 +#: ../../include/functions_events.php:4035 ../../include/functions_events.php:4049 +#: ../../include/functions_events.php:4054 ../../include/functions_events.php:4084 +#: ../../include/functions_events.php:4170 ../../include/functions_events.php:4250 +#: ../../include/functions_events.php:4260 ../../include/functions_events.php:4477 +#: ../../include/functions_events.php:4548 ../../include/functions_events.php:4637 +#: ../../include/functions_events.php:4666 ../../include/functions_events.php:4681 +#: ../../include/functions_events.php:4691 ../../include/functions_events.php:4701 +#: ../../include/functions_events.php:5131 ../../include/functions_events.php:5145 +#: ../../include/functions_events.php:5150 ../../include/functions_events.php:5153 +#: ../../include/functions_events.php:5161 ../../include/functions_events.php:5170 +#: ../../include/functions_events.php:5182 ../../include/functions_events.php:5235 +#: ../../include/functions_events.php:5262 ../../include/functions_events.php:5287 +#: ../../include/functions_events.php:5331 +#: ../../operation/agentes/interface_view.functions.php:682 +#: ../../operation/agentes/interface_view.functions.php:683 +#: ../../operation/agentes/interface_view.functions.php:684 +#: ../../operation/agentes/interface_view.functions.php:685 +#: ../../operation/agentes/interface_view.functions.php:686 +#: ../../operation/agentes/status_monitor.php:1710 +#: ../../operation/agentes/estado_generalagente.php:217 +#: ../../operation/agentes/estado_generalagente.php:230 +#: ../../operation/agentes/estado_generalagente.php:242 +#: ../../operation/agentes/estado_generalagente.php:411 +#: ../../operation/agentes/estado_generalagente.php:427 +#: ../../operation/agentes/estado_generalagente.php:438 +#: ../../operation/snmpconsole/snmp_view.php:974 +#: ../../operation/snmpconsole/snmp_view.php:994 +msgid "N/A" +msgstr "N/A" -#: ../../operation/tree.php:216 ../../operation/tree.php:273 -#: ../../operation/tree.php:481 ../../operation/agentes/status_monitor.php:498 -#: ../../operation/agentes/group_view.php:225 -#: ../../operation/agentes/group_view.php:230 -#: ../../operation/agentes/tactical.php:182 -#: ../../operation/agentes/estado_agente.php:273 -#: ../../include/lib/Dashboard/Widgets/tree_view.php:389 -#: ../../include/lib/Dashboard/Widgets/tree_view.php:422 -#: ../../include/lib/Dashboard/Widgets/tree_view.php:675 -#: ../../include/functions_reporting_html.php:652 -#: ../../include/functions_reporting_html.php:2325 -#: ../../include/functions_reporting_html.php:4413 -#: ../../enterprise/operation/services/services.treeview_services.php:281 -#: ../../enterprise/operation/agentes/tag_view.php:137 -#: ../../enterprise/operation/agentes/transactional_map.php:345 -#: ../../enterprise/meta/monitoring/group_view.php:237 -#: ../../enterprise/meta/monitoring/group_view.php:243 -#: ../../enterprise/meta/monitoring/custom_fields_view.php:185 -#: ../../enterprise/meta/monitoring/tactical.php:243 -#: ../../enterprise/godmode/massive/massive_add_modules_policy.php:124 -#: ../../mobile/operation/modules.php:75 -#: ../../godmode/reporting/reporting_builder.item_editor.php:3626 -#: ../../godmode/massive/massive_delete_modules.php:423 -#: ../../godmode/massive/massive_delete_modules.php:444 -#: ../../godmode/massive/massive_copy_modules.php:120 -#: ../../godmode/massive/massive_copy_modules.php:280 -#: ../../godmode/massive/massive_edit_agents.php:536 -#: ../../godmode/massive/massive_delete_agents.php:214 -#: ../../godmode/massive/massive_edit_modules.php:390 -#: ../../godmode/massive/massive_edit_modules.php:476 -#: ../../godmode/groups/group_list.php:1069 -msgid "Not init" -msgstr "No iniciados" +#: ../../enterprise/views/cluster/view.php:309 ../../include/functions_treeview.php:731 +#: ../../operation/agentes/estado_generalagente.php:225 +#: ../../operation/gis_maps/ajax.php:341 +msgid "Agent Version" +msgstr "VersiĆ³n del agente" -#: ../../operation/tree.php:219 -msgid "Search group" -msgstr "Buscar grupo" +#: ../../enterprise/views/cluster/view.php:314 +msgid "Cluster agent" +msgstr "Agente del clĆŗster" -#: ../../operation/tree.php:223 ../../operation/tree.php:279 -msgid "Show not init modules" -msgstr "Mostrar mĆ³dulos no iniciados" +#: ../../enterprise/views/cluster/view.php:369 +#: ../../operation/agentes/estado_generalagente.php:890 +msgid "Events (Last 24h)" +msgstr "Eventos (Ćŗltimas 24h)" -#: ../../operation/tree.php:232 -msgid "Search agent" -msgstr "Buscar agente" +#: ../../enterprise/views/cluster/view.php:441 ../../operation/agentes/stat_win.php:451 +#: ../../operation/agentes/interface_traffic_graph_win.php:276 +msgid "Reload" +msgstr "Actualizar" -#: ../../operation/tree.php:235 -msgid "Show not init agents" -msgstr "Mostrar agentes no iniciados" +#: ../../enterprise/views/cluster/edit.php:57 +msgid "cluster " +msgstr "clĆŗster " -#: ../../operation/tree.php:243 -msgid "Show full hirearchy" -msgstr "Mostrar jerarquĆ­a completa" +#: ../../enterprise/views/cluster/edit.php:88 +msgid "View this cluster" +msgstr "Ver clĆŗster" -#: ../../operation/tree.php:246 -#: ../../enterprise/include/functions_reporting_csv.php:2348 -#: ../../enterprise/godmode/servers/HA_cluster.php:163 -msgid "Agent status" -msgstr "Estado de agente" +#: ../../enterprise/views/ipam/sites/list.php:48 +#: ../../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/agentes/agent_manager.php:565 +#: ../../godmode/massive/massive_edit_agents.php:648 +#: ../../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:1218 +#: ../../operation/agentes/estado_generalagente.php:425 +msgid "Parent" +msgstr "Padre" -#: ../../operation/tree.php:254 -msgid "Show only disabled" -msgstr "Mostrar solo deshabilitados" +#: ../../enterprise/views/ipam/sites/edit.php:71 +#: ../../enterprise/meta/advanced/metasetup.visual.php:289 +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:833 +#: ../../enterprise/meta/advanced/metasetup.relations.php:245 +#: ../../enterprise/meta/advanced/metasetup.setup.php:394 +#: ../../enterprise/meta/advanced/metasetup.setup.php:400 +#: ../../enterprise/meta/advanced/metasetup.setup.php:410 +#: ../../enterprise/meta/advanced/metasetup.setup.php:416 +#: ../../enterprise/meta/monitoring/custom_fields_view.php:256 +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:266 +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:363 +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:420 +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:688 +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:759 +#: ../../enterprise/meta/monitoring/wizard/wizard.php:142 +#: ../../enterprise/meta/event/custom_events.php:227 +#: ../../enterprise/meta/event/custom_events.php:273 +#: ../../enterprise/godmode/modules/configure_local_component.php:543 +#: ../../enterprise/godmode/modules/configure_local_component.php:698 +#: ../../enterprise/godmode/modules/configure_local_component.php:704 +#: ../../enterprise/godmode/modules/configure_local_component.php:712 +#: ../../enterprise/godmode/modules/configure_local_component.php:718 +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:992 +#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:473 +#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:604 +#: ../../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:579 +#: ../../enterprise/godmode/policies/policy_external_alerts.php:688 +#: ../../enterprise/godmode/policies/policy_agents.php:391 +#: ../../enterprise/godmode/policies/policy_agents.php:1694 +#: ../../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 +#: ../../enterprise/godmode/massive/massive_add_alerts_policy.php:132 +#: ../../enterprise/godmode/massive/massive_add_alerts_policy.php:144 +#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:396 +#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:473 +#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:549 +#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:550 +#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:551 +#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:552 +#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:601 +#: ../../enterprise/godmode/massive/massive_delete_alerts_snmp.php:28 +#: ../../enterprise/godmode/massive/massive_delete_alerts_snmp.php:205 +#: ../../enterprise/godmode/massive/massive_delete_alerts_snmp.php:244 +#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:29 +#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:265 +#: ../../enterprise/godmode/massive/massive_tags_edit_policy.php:117 +#: ../../enterprise/godmode/massive/massive_tags_edit_policy.php:197 +#: ../../enterprise/godmode/massive/massive_delete_alerts_policy.php:121 +#: ../../enterprise/godmode/massive/massive_delete_alerts_policy.php:142 +#: ../../enterprise/godmode/massive/massive_delete_alerts_policy.php:154 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:471 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:862 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:977 +#: ../../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:591 +#: ../../enterprise/godmode/setup/setup.php:608 +#: ../../enterprise/godmode/setup/setup.php:617 +#: ../../enterprise/godmode/setup/setup.php:634 +#: ../../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 +#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:810 +#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:820 +#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:830 +#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:834 +#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:861 +#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:194 +#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:578 +#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:597 +#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:611 +#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:621 +#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:631 +#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:635 +#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:661 +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:60 +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:527 +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:544 +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:560 +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:576 +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:600 +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:616 +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:658 +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:691 +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:702 +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:721 +#: ../../enterprise/godmode/reporting/graph_template_wizard.php:193 +#: ../../enterprise/godmode/reporting/graph_template_wizard.php:398 +#: ../../enterprise/godmode/reporting/graph_template_wizard.php:417 +#: ../../enterprise/godmode/reporting/graph_template_wizard.php:428 +#: ../../enterprise/godmode/reporting/graph_template_wizard.php:443 +#: ../../enterprise/godmode/reporting/graph_template_wizard.php:475 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:81 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:401 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:424 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:937 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:953 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:974 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:983 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:1340 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:1368 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:1389 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:1416 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:184 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:451 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:596 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:604 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:614 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:636 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:689 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:722 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:744 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:754 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:775 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:797 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:822 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:845 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:866 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:1148 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:1272 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:1287 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:1297 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:1312 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:1334 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:314 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2988 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3205 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3289 +#: ../../enterprise/godmode/reporting/visual_console_builder.wizard_services.php:215 +#: ../../enterprise/godmode/reporting/visual_console_builder.wizard_services.php:247 +#: ../../enterprise/godmode/reporting/visual_console_builder.wizard_services.php:253 +#: ../../enterprise/godmode/reporting/visual_console_builder.wizard_services.php:265 +#: ../../enterprise/godmode/reporting/visual_console_builder.wizard_services.php:275 +#: ../../enterprise/godmode/servers/manage_export_form.php:85 +#: ../../enterprise/include/functions_tasklist.php:317 +#: ../../enterprise/include/ajax/ipam.ajax.php:400 +#: ../../enterprise/include/ajax/ipam.ajax.php:428 +#: ../../enterprise/include/class/Omnishell.class.php:858 +#: ../../enterprise/include/class/Omnishell.class.php:859 +#: ../../enterprise/include/class/SAP.app.php:615 +#: ../../enterprise/include/class/SAP.app.php:810 +#: ../../enterprise/include/class/SAP.app.php:811 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:895 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:922 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1032 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1185 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1195 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2002 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2511 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2556 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3523 +#: ../../enterprise/operation/agentes/ver_agente.php:38 +#: ../../enterprise/operation/log/log_viewer.php:735 +#: ../../enterprise/tools/ipam/ipam_network.php:594 +#: ../../enterprise/tools/ipam/ipam_supernet_config.php:611 +#: ../../enterprise/tools/ipam/ipam_supernet_config.php:783 +#: ../../enterprise/tools/ipam/ipam_list.php:112 +#: ../../enterprise/tools/ipam/ipam_list.php:135 +#: ../../enterprise/tools/ipam/ipam_list.php:157 +#: ../../enterprise/tools/ipam/ipam_editor.php:206 +#: ../../enterprise/tools/ipam/ipam_editor.php:234 +#: ../../godmode/modules/manage_nc_groups_form.php:77 +#: ../../godmode/modules/manage_network_components_form_plugin.php:41 +#: ../../godmode/modules/manage_network_components_form_common.php:343 +#: ../../godmode/modules/manage_network_components_form_network.php:248 +#: ../../godmode/modules/manage_network_components_form.php:642 +#: ../../godmode/modules/manage_network_components_form.php:648 +#: ../../godmode/modules/manage_network_components_form.php:657 +#: ../../godmode/modules/manage_network_components_form.php:663 +#: ../../godmode/groups/configure_group.php:188 +#: ../../godmode/groups/configure_group.php:210 +#: ../../godmode/users/configure_user.php:1054 +#: ../../godmode/users/configure_user.php:1068 +#: ../../godmode/users/configure_user.php:1262 +#: ../../godmode/users/configure_user.php:1274 +#: ../../godmode/agentes/status_monitor_custom_fields.php:218 +#: ../../godmode/agentes/status_monitor_custom_fields.php:266 +#: ../../godmode/agentes/module_manager_editor_plugin.php:55 +#: ../../godmode/agentes/module_manager_editor_network.php:465 +#: ../../godmode/agentes/agent_manager.php:428 +#: ../../godmode/agentes/agent_manager.php:461 +#: ../../godmode/agentes/agent_manager.php:718 +#: ../../godmode/agentes/agent_manager.php:884 +#: ../../godmode/agentes/module_manager_editor_common.php:733 +#: ../../godmode/agentes/module_manager_editor_common.php:1149 +#: ../../godmode/agentes/module_manager_editor_common.php:1405 +#: ../../godmode/agentes/module_manager_editor_common.php:1412 +#: ../../godmode/agentes/module_manager_editor_common.php:1423 +#: ../../godmode/agentes/module_manager_editor_common.php:1431 +#: ../../godmode/snmpconsole/snmp_alert.php:40 +#: ../../godmode/snmpconsole/snmp_alert.php:1169 +#: ../../godmode/massive/massive_copy_modules.php:374 +#: ../../godmode/massive/massive_copy_modules.php:508 +#: ../../godmode/massive/massive_delete_modules.php:502 +#: ../../godmode/massive/massive_delete_modules.php:594 +#: ../../godmode/massive/massive_delete_modules.php:679 +#: ../../godmode/massive/massive_delete_modules.php:728 +#: ../../godmode/massive/massive_delete_modules.php:736 +#: ../../godmode/massive/massive_delete_modules.php:737 +#: ../../godmode/massive/massive_delete_modules.php:738 +#: ../../godmode/massive/massive_delete_modules.php:739 +#: ../../godmode/massive/massive_delete_modules.php:805 +#: ../../godmode/massive/massive_delete_modules.php:835 +#: ../../godmode/massive/massive_add_alerts.php:304 +#: ../../godmode/massive/massive_edit_plugins.php:338 +#: ../../godmode/massive/massive_edit_agents.php:740 +#: ../../godmode/massive/massive_delete_alerts.php:365 +#: ../../godmode/massive/massive_add_action_alerts.php:341 +#: ../../godmode/massive/massive_edit_modules.php:458 +#: ../../godmode/massive/massive_edit_modules.php:919 +#: ../../godmode/massive/massive_edit_modules.php:1053 +#: ../../godmode/massive/massive_edit_modules.php:1169 +#: ../../godmode/massive/massive_edit_modules.php:1204 +#: ../../godmode/massive/massive_edit_modules.php:1259 +#: ../../godmode/massive/massive_edit_modules.php:1345 +#: ../../godmode/massive/massive_edit_modules.php:1418 +#: ../../godmode/massive/massive_edit_modules.php:1527 +#: ../../godmode/massive/massive_edit_modules.php:1528 +#: ../../godmode/massive/massive_edit_modules.php:1529 +#: ../../godmode/massive/massive_edit_modules.php:1530 +#: ../../godmode/massive/massive_edit_modules.php:1769 +#: ../../godmode/massive/massive_edit_modules.php:1829 +#: ../../godmode/alerts/alert_actions.php:291 +#: ../../godmode/alerts/alert_list.list.php:763 +#: ../../godmode/alerts/alert_commands.php:302 +#: ../../godmode/alerts/alert_commands.php:316 +#: ../../godmode/alerts/alert_commands.php:376 +#: ../../godmode/alerts/alert_commands.php:389 +#: ../../godmode/alerts/configure_alert_template.php:650 +#: ../../godmode/alerts/configure_alert_template.php:777 +#: ../../godmode/alerts/configure_alert_template.php:798 +#: ../../godmode/setup/os.builder.php:41 ../../godmode/setup/setup_visuals.php:401 +#: ../../godmode/setup/setup_visuals.php:420 ../../godmode/setup/setup_visuals.php:950 +#: ../../godmode/reporting/create_container.php:489 +#: ../../godmode/reporting/graph_builder.graph_editor.php:329 +#: ../../godmode/reporting/reporting_builder.item_editor.php:198 +#: ../../godmode/reporting/reporting_builder.item_editor.php:959 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2128 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2201 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2222 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2254 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3167 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3328 +#: ../../godmode/reporting/visual_console_builder.elements.php:482 +#: ../../godmode/reporting/visual_console_builder.elements.php:633 +#: ../../godmode/reporting/visual_console_builder.elements.php:643 +#: ../../godmode/reporting/visual_console_builder.wizard.php:266 +#: ../../godmode/reporting/visual_console_builder.wizard.php:438 +#: ../../godmode/reporting/visual_console_builder.wizard.php:451 +#: ../../godmode/reporting/visual_console_builder.wizard.php:485 +#: ../../godmode/reporting/visual_console_builder.wizard.php:498 +#: ../../godmode/reporting/visual_console_builder.wizard.php:536 +#: ../../godmode/reporting/visual_console_builder.wizard.php:537 +#: ../../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:699 +#: ../../godmode/events/custom_events.php:200 ../../godmode/events/custom_events.php:248 +#: ../../godmode/wizards/HostDevices.class.php:1098 +#: ../../mobile/operation/events.php:930 +#: ../../include/functions_visual_map_editor.php:404 +#: ../../include/functions_visual_map_editor.php:406 +#: ../../include/functions_visual_map_editor.php:622 +#: ../../include/functions_visual_map_editor.php:957 +#: ../../include/functions_visual_map_editor.php:1010 +#: ../../include/functions_visual_map_editor.php:1072 ../../include/functions.php:1073 +#: ../../include/functions_cron.php:642 ../../include/functions_networkmap.php:1519 +#: ../../include/ajax/planned_downtime.ajax.php:85 +#: ../../include/ajax/custom_fields.php:668 ../../include/ajax/events.php:577 +#: ../../include/functions_integriaims.php:135 ../../include/functions_profile.php:297 +#: ../../include/functions_profile.php:315 ../../include/functions_profile.php:330 +#: ../../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:2319 +#: ../../include/rest-api/models/VisualConsole/Item.php:2441 +#: ../../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 +#: ../../include/functions_html.php:1392 ../../include/functions_html.php:1442 +#: ../../include/functions_html.php:4664 ../../include/functions_html.php:6055 +#: ../../include/class/NetworkMap.class.php:2789 +#: ../../include/class/NetworkMap.class.php:3024 +#: ../../include/class/NetworkMap.class.php:3047 +#: ../../include/class/NetworkMap.class.php:3119 +#: ../../include/class/NetworkMap.class.php:3129 +#: ../../include/class/NetworkMap.class.php:3214 +#: ../../include/class/NetworkMap.class.php:3230 +#: ../../include/lib/Dashboard/Widgets/sla_percent.php:336 +#: ../../include/lib/Dashboard/Widgets/BlockHistogram.php:301 +#: ../../include/lib/Dashboard/Widgets/events_list.php:312 +#: ../../include/lib/Dashboard/Widgets/events_list.php:470 +#: ../../include/lib/Dashboard/Widgets/graph_module_histogram.php:326 +#: ../../include/lib/Dashboard/Widgets/service_map.php:273 +#: ../../include/lib/Dashboard/Widgets/service_map.php:314 +#: ../../include/lib/Dashboard/Widgets/maps_made_by_user.php:537 +#: ../../include/lib/Dashboard/Widgets/custom_graph.php:355 +#: ../../include/lib/Dashboard/Widgets/single_graph.php:310 +#: ../../include/lib/Dashboard/Widgets/reports.php:501 +#: ../../include/lib/Dashboard/Widgets/top_n.php:241 +#: ../../include/functions_events.php:3209 ../../include/functions_events.php:3225 +#: ../../operation/users/user_edit.php:402 ../../operation/users/user_edit.php:414 +#: ../../operation/users/user_edit.php:455 ../../operation/users/user_edit.php:491 +#: ../../operation/users/user_edit.php:505 ../../operation/users/user_edit.php:898 +#: ../../operation/users/user_edit.php:905 ../../operation/users/user_edit.php:914 +#: ../../operation/users/user_edit.php:921 +#: ../../operation/agentes/pandora_networkmap.editor.php:349 +#: ../../operation/agentes/pandora_networkmap.view.php:174 +#: ../../operation/agentes/ver_agente.php:1164 +#: ../../operation/agentes/ver_agente.php:1220 +#: ../../operation/agentes/ver_agente.php:1235 +#: ../../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/snmpconsole/snmp_view.php:630 +#: ../../operation/snmpconsole/snmp_view.php:1114 +#: ../../operation/snmpconsole/snmp_view.php:1125 +#: ../../operation/gis_maps/render_view.php:163 +#: ../../operation/incidents/list_integriaims_incidents.php:530 +#: ../../operation/incidents/list_integriaims_incidents.php:534 +#: ../../operation/events/events.php:2414 +msgid "None" +msgstr "Ninguno" -#: ../../operation/tree.php:260 ../../operation/netflow/nf_live_view.php:391 -#: ../../operation/agentes/graphs.php:265 -#: ../../operation/agentes/estado_monitores.php:594 -#: ../../operation/agentes/alerts_status.functions.php:137 -#: ../../operation/agentes/alerts_status.functions.php:146 -#: ../../operation/incidents/list_integriaims_incidents.php:435 -#: ../../operation/incidents/list_integriaims_incidents.php:439 -#: ../../include/class/ModuleTemplates.class.php:765 -#: ../../include/functions_ui.php:3371 ../../include/functions_ui.php:3392 -#: ../../include/functions_ui.php:3403 -#: ../../enterprise/operation/services/services.treeview_services.php:156 -#: ../../enterprise/operation/services/services.treeview_services.php:160 +#: ../../enterprise/meta/screens/screens.visualmap.php:71 +msgid "Create visualmap" +msgstr "Crear mapa visual" + +#: ../../enterprise/meta/screens/screens.visualmap.php:163 +#: ../../enterprise/meta/screens/screens.visualmap.php:194 +#: ../../enterprise/godmode/reporting/visual_console_builder.wizard_services.php:106 +#: ../../enterprise/include/lib/ClusterViewer/ClusterManager.php:601 +#: ../../enterprise/operation/agentes/policy_view.php:70 +#: ../../godmode/agentes/configurar_agente.php:373 +#: ../../godmode/agentes/modificar_agente.php:82 +#: ../../godmode/agentes/modificar_agente.php:836 +#: ../../godmode/agentes/modificar_agente.php:841 ../../godmode/menu.php:556 +#: ../../godmode/setup/setup_visuals.php:163 ../../godmode/setup/setup_visuals.php:228 +#: ../../godmode/setup/setup_visuals.php:282 ../../godmode/setup/setup_visuals.php:287 +#: ../../godmode/setup/setup_visuals.php:326 ../../godmode/setup/setup_visuals.php:363 +#: ../../godmode/setup/setup_visuals.php:385 ../../godmode/setup/setup_visuals.php:410 +#: ../../godmode/setup/setup_visuals.php:429 ../../godmode/setup/setup_visuals.php:448 +#: ../../godmode/setup/setup_visuals.php:467 ../../godmode/setup/setup_visuals.php:609 +#: ../../godmode/reporting/visual_console_builder.php:851 +#: ../../godmode/module_library/module_library_view.php:59 ../../operation/tree.php:187 +#: ../../operation/visual_console/view.php:198 +#: ../../operation/visual_console/legacy_view.php:193 +#: ../../operation/agentes/estado_agente.php:858 +#: ../../operation/agentes/estado_agente.php:861 +#: ../../operation/agentes/status_monitor.php:75 +#: ../../operation/agentes/ver_agente.php:1916 +msgid "View" +msgstr "Vista" + +#: ../../enterprise/meta/screens/screens.visualmap.php:206 +#: ../../enterprise/godmode/alerts/alert_inventory.php:80 +#: ../../godmode/reporting/visual_console_builder.php:845 +#: ../../operation/visual_console/legacy_view.php:183 +msgid "Builder" +msgstr "Creador" + +#: ../../enterprise/meta/screens/screens.visualmap.php:219 +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:61 +#: ../../enterprise/meta/monitoring/wizard/wizard.php:123 +#: ../../enterprise/meta/general/main_header.php:134 +#: ../../enterprise/meta/general/logon_ok.php:48 +#: ../../enterprise/meta/general/main_menu.php:238 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:95 +#: ../../enterprise/include/functions_reporting.php:60 +#: ../../enterprise/include/functions_reporting.php:7991 +#: ../../enterprise/include/functions_reporting.php:8017 +#: ../../godmode/reporting/visual_console_builder.php:840 +#: ../../godmode/reporting/visual_console_builder.wizard.php:518 +#: ../../operation/visual_console/view.php:188 +#: ../../operation/visual_console/legacy_view.php:175 +msgid "Wizard" +msgstr "Asistente" + +#: ../../enterprise/meta/screens/screens.visualmap.php:230 +#: ../../godmode/reporting/visual_console_builder.php:828 +#: ../../operation/visual_console/view.php:168 +#: ../../operation/visual_console/legacy_view.php:155 +msgid "List elements" +msgstr "Lista de elementos" + +#: ../../enterprise/meta/screens/screens.visualmap.php:241 +#: ../../godmode/reporting/visual_console_builder.php:824 +#: ../../godmode/reporting/graph_builder.php:298 +#: ../../godmode/reporting/reporting_builder.main.php:73 +#: ../../godmode/reporting/reporting_builder.php:3573 +#: ../../operation/visual_console/view.php:160 +#: ../../operation/visual_console/legacy_view.php:147 +#: ../../operation/reporting/reporting_viewer.php:139 +#: ../../operation/reporting/graph_viewer.php:193 +msgid "Main data" +msgstr "Datos principales" + +#: ../../enterprise/meta/screens/screens.visualmap.php:261 +#: ../../godmode/reporting/visual_console_builder.php:820 +#: ../../operation/visual_console/view.php:150 +#: ../../operation/visual_console/legacy_view.php:137 +msgid "Show link to public Visual Console" +msgstr "Mostrar enlace a la Consola Visual pĆŗblica" + +#: ../../enterprise/meta/screens/screens.visualmap.php:286 +#: ../../godmode/reporting/visual_console_builder.php:816 +#: ../../operation/visual_console/view.php:122 +#: ../../operation/visual_console/legacy_view.php:121 +msgid "Visual consoles list" +msgstr "Lista de consolas visuales" + +#: ../../enterprise/meta/screens/screens.visualmap.php:297 +#: ../../godmode/reporting/visual_console_builder.php:859 +msgid "New visual console" +msgstr "Nueva consola visual" + +#: ../../enterprise/meta/screens/screens.visualmap.php:305 +#: ../../enterprise/meta/screens/screens.visualmap.php:310 +#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:121 +#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:127 +#: ../../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:1091 +#: ../../godmode/reporting/visual_console_builder.php:882 +#: ../../godmode/reporting/map_builder.php:134 +#: ../../godmode/reporting/map_builder.php:140 +#: ../../godmode/reporting/visual_console_favorite.php:131 +#: ../../godmode/reporting/visual_console_favorite.php:137 +#: ../../include/lib/Dashboard/Widgets/maps_made_by_user.php:335 +#: ../../operation/users/user_edit.php:357 ../../operation/visual_console/view.php:230 +#: ../../operation/menu.php:177 ../../operation/menu.php:181 +msgid "Visual console" +msgstr "Consola visual" + +#: ../../enterprise/meta/screens/screens.php:37 +#: ../../enterprise/meta/general/main_header.php:232 +#: ../../enterprise/meta/general/logon_ok.php:84 +#: ../../enterprise/meta/general/main_menu.php:340 +msgid "Screens" +msgstr "Pantallas" + +#: ../../enterprise/meta/advanced/servers.build_table.php:34 +#: ../../godmode/servers/servers.build_table.php:52 +msgid "There are no servers configured into the database" +msgstr "No hay ningĆŗn servidor configurado en la base de datos" + +#: ../../enterprise/meta/advanced/servers.build_table.php:63 +#: ../../enterprise/meta/advanced/metasetup.consoles.php:836 +#: ../../enterprise/godmode/servers/list_satellite.php:39 +#: ../../enterprise/include/functions_reporting_csv.php:718 +#: ../../enterprise/include/class/AgentRepository.class.php:376 +#: ../../enterprise/include/class/AgentRepository.class.php:642 +#: ../../enterprise/tools/ipam/ipam_calculator.php:52 ../../godmode/extensions.php:139 +#: ../../godmode/update_manager/update_manager.history.php:40 +#: ../../godmode/reporting/reporting_builder.item_editor.php:78 +#: ../../godmode/servers/servers.build_table.php:82 +#: ../../include/functions_reporting_html.php:1589 +#: ../../include/functions_snmp_browser.php:746 +msgid "Version" +msgstr "VersiĆ³n" + +#: ../../enterprise/meta/advanced/servers.build_table.php:64 +#: ../../enterprise/meta/monitoring/wizard/wizard.agent.php:65 +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:444 +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:712 +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:791 +#: ../../enterprise/meta/monitoring/wizard/wizard.php:286 +#: ../../enterprise/meta/monitoring/group_view.php:155 +#: ../../enterprise/meta/monitoring/group_view.php:221 +#: ../../enterprise/meta/include/functions_wizard_meta.php:406 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1821 +#: ../../enterprise/meta/agentsearch.php:139 +#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:111 +#: ../../enterprise/godmode/policies/policy_modules.php:458 +#: ../../enterprise/godmode/policies/policies.php:509 +#: ../../enterprise/godmode/massive/massive_edit_tags_policy.php:128 +#: ../../enterprise/godmode/massive/massive_add_modules_policy.php:176 +#: ../../enterprise/godmode/massive/massive_add_service_elements.php:362 +#: ../../enterprise/godmode/massive/massive_create_services.php:965 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:473 +#: ../../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:861 +#: ../../enterprise/include/functions_policies.php:3722 +#: ../../enterprise/operation/agentes/tag_view.php:606 +#: ../../enterprise/operation/services/services.service_map.php:163 +#: ../../extensions/agents_modules.php:758 +#: ../../godmode/agentes/configurar_agente.php:406 +#: ../../godmode/agentes/configurar_agente.php:724 +#: ../../godmode/agentes/modificar_agente.php:817 +#: ../../godmode/agentes/planned_downtime.list.php:85 +#: ../../godmode/agentes/planned_downtime.list.php:115 +#: ../../godmode/agentes/planned_downtime.editor.php:924 +#: ../../godmode/agentes/planned_downtime.editor.php:999 +#: ../../godmode/massive/massive_copy_modules.php:199 +#: ../../godmode/massive/massive_delete_modules.php:463 +#: ../../godmode/massive/massive_edit_plugins.php:383 +#: ../../godmode/massive/massive_edit_modules.php:425 +#: ../../godmode/reporting/reporting_builder.list_items.php:210 +#: ../../godmode/reporting/reporting_builder.list_items.php:239 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1899 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2120 +#: ../../godmode/reporting/visual_console_builder.wizard.php:432 +#: ../../godmode/servers/servers.build_table.php:83 ../../mobile/operation/agents.php:96 +#: ../../mobile/operation/agents.php:409 ../../mobile/operation/modules.php:236 +#: ../../mobile/operation/home.php:88 ../../mobile/operation/agent.php:327 +#: ../../include/functions_reporting_html.php:1881 +#: ../../include/functions_reporting_html.php:5421 +#: ../../include/functions_reports.php:733 ../../include/functions_reports.php:737 +#: ../../include/functions_reports.php:741 ../../include/functions_reports.php:745 +#: ../../include/functions_reports.php:749 ../../include/functions_reports.php:753 +#: ../../include/functions_reports.php:757 ../../include/functions_reports.php:761 +#: ../../include/functions_reports.php:765 ../../include/functions_html.php:1720 +#: ../../include/functions_html.php:5530 ../../include/class/AgentsAlerts.class.php:253 +#: ../../include/lib/Dashboard/Widgets/groups_status.php:403 +#: ../../include/lib/Dashboard/Widgets/groups_status.php:409 +#: ../../include/lib/Dashboard/Widgets/agent_module.php:448 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:331 +#: ../../operation/search_agents.php:55 ../../operation/tree.php:114 +#: ../../operation/search_results.php:158 ../../operation/agentes/estado_agente.php:760 +#: ../../operation/agentes/graphs.php:188 ../../operation/agentes/exportdata.php:282 +#: ../../operation/agentes/group_view.php:184 ../../operation/agentes/group_view.php:217 +msgid "Modules" +msgstr "MĆ³dulos" + +#: ../../enterprise/meta/advanced/servers.build_table.php:65 +#: ../../godmode/servers/servers.build_table.php:84 +msgid "Lag" +msgstr "Retraso" + +#: ../../enterprise/meta/advanced/servers.build_table.php:65 +#: ../../godmode/servers/servers.build_table.php:84 +msgid "Avg. Delay(sec)/Modules delayed" +msgstr "Media de retraso (seg.)/MĆ³dulos retrasados" + +#: ../../enterprise/meta/advanced/servers.build_table.php:66 +#: ../../godmode/servers/servers.build_table.php:85 +msgid "T/Q" +msgstr "H/C" + +#: ../../enterprise/meta/advanced/servers.build_table.php:66 +#: ../../godmode/servers/servers.build_table.php:85 +msgid "Threads / Queued modules currently" +msgstr "Hilos/Cola actual de mĆ³dulos" + +#: ../../enterprise/meta/advanced/servers.build_table.php:68 +#: ../../enterprise/include/class/DatabaseHA.class.php:798 +#: ../../enterprise/tools/ipam/ipam_ajax.php:494 +#: ../../godmode/agentes/agent_incidents.php:93 +#: ../../godmode/servers/servers.build_table.php:87 +#: ../../operation/incidents/integriaims_export_csv.php:86 +msgid "Updated" +msgstr "Actualizado" + +#: ../../enterprise/meta/advanced/servers.build_table.php:72 +#: ../../enterprise/meta/include/functions_autoprovision.php:644 +#: ../../enterprise/godmode/modules/local_components.php:625 +#: ../../enterprise/godmode/policies/policy_alerts.php:354 +#: ../../enterprise/godmode/policies/policies.php:409 +#: ../../enterprise/godmode/alerts/alert_inventory_list.php:224 +#: ../../enterprise/godmode/reporting/reporting_builder.template_list_item.php:261 +#: ../../godmode/users/profile_list.php:349 ../../godmode/users/user_list.php:487 +#: ../../godmode/alerts/alert_list.list.php:500 +#: ../../godmode/alerts/alert_templates.php:388 +#: ../../godmode/reporting/reporting_builder.list_items.php:427 +#: ../../godmode/reporting/graphs.php:323 +#: ../../godmode/reporting/reporting_builder.php:955 +#: ../../godmode/reporting/reporting_builder.php:1154 +#: ../../godmode/servers/servers.build_table.php:91 ../../godmode/servers/plugin.php:819 +#: ../../include/functions_container.php:157 ../../operation/gis_maps/gis_map.php:109 +msgid "Op." +msgstr "Op." + +#: ../../enterprise/meta/advanced/servers.build_table.php:91 +#: ../../godmode/servers/servers.build_table.php:134 +msgid "This is a master server" +msgstr "Este es un servidor maestro" + +#: ../../enterprise/meta/advanced/servers.build_table.php:106 +#: ../../enterprise/meta/advanced/servers.build_table.php:112 +#: ../../godmode/servers/servers.build_table.php:153 +#: ../../godmode/servers/servers.build_table.php:159 +msgid "of" +msgstr "de" + +#: ../../enterprise/meta/advanced/servers.build_table.php:134 +#: ../../godmode/servers/servers.build_table.php:260 +msgid "Modules run by this server will stop working. Do you want to continue?" +msgstr "" +"Los mĆ³dulos ejecutados por este servidor podrĆ­an dejar de funcionar. ĀæQuieres " +"continuar?" + +#: ../../enterprise/meta/advanced/servers.build_table.php:160 +#: ../../godmode/servers/servers.build_table.php:287 +msgid "Tactical server information" +msgstr "Vista tĆ”ctica del servidor" + +#: ../../enterprise/meta/advanced/massive_operations.php:57 +#: ../../enterprise/meta/monitoring/wizard/wizard.php:53 +#: ../../general/node_deactivated.php:59 +msgid "command center" +msgstr "command center" + +#: ../../enterprise/meta/advanced/massive_operations.php:54 +#: ../../enterprise/meta/monitoring/wizard/wizard.php:50 +#, php-format +msgid "You should centralise management in order to use Wizard section. Please go to %s" +msgstr "" +"Debe centralizar la administraciĆ³n para utilizar la secciĆ³n Asistente. Por favor, " +"vaya a %s" + +#: ../../enterprise/meta/advanced/component_management.php:52 +#: ../../include/functions_menu.php:531 +msgid "Tags management" +msgstr "GestiĆ³n de etiquetas" + +#: ../../enterprise/meta/advanced/component_management.php:56 +msgid "Module groups Management" +msgstr "Gestor de grupos de mĆ³dulo" + +#: ../../enterprise/meta/advanced/component_management.php:60 +msgid "OS Management" +msgstr "AdministraciĆ³n de SO" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:51 +#: ../../enterprise/meta/advanced/metasetup.relations.php:96 +#: ../../enterprise/meta/advanced/metasetup.password.php:46 +#: ../../enterprise/meta/advanced/metasetup.log.php:41 +#: ../../enterprise/meta/advanced/metasetup.setup.php:79 +#: ../../enterprise/meta/advanced/metasetup.auth.php:47 +#: ../../enterprise/meta/advanced/metasetup.performance.php:47 +#, php-format +msgid "Could not be update: Error in %s" +msgstr "No se puede actualizar: error en %s" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:58 +#: ../../enterprise/meta/advanced/metasetup.relations.php:103 +#: ../../enterprise/meta/advanced/metasetup.password.php:53 +#: ../../enterprise/meta/advanced/metasetup.consoles.php:219 +#: ../../enterprise/meta/advanced/metasetup.log.php:48 +#: ../../enterprise/meta/advanced/metasetup.setup.php:86 +#: ../../enterprise/meta/advanced/metasetup.auth.php:54 +#: ../../enterprise/meta/advanced/metasetup.performance.php:54 +#: ../../enterprise/godmode/setup/setup_metaconsole.php:85 +msgid "Successfully update" +msgstr "Actualizado correctamente" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:98 ../../godmode/menu.php:345 +#: ../../godmode/setup/setup.php:137 ../../godmode/setup/setup.php:266 +msgid "Visual styles" +msgstr "Estilos visuales" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:105 +#: ../../enterprise/meta/include/functions_meta.php:1298 +#: ../../godmode/setup/setup_visuals.php:1310 ../../include/functions_config.php:932 +msgid "Date format string" +msgstr "Formato de fecha a mostrar" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:109 +#: ../../godmode/setup/setup_visuals.php:1311 +msgid "Example" +msgstr "Ejemplo" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:136 +#: ../../godmode/setup/setup_visuals.php:1329 +msgid "Timestamp, time comparison, or compact mode" +msgstr "Marca horaria, comparaciĆ³n horaria o modo compacto" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:139 +#: ../../godmode/setup/setup_visuals.php:1331 +msgid "Comparation in rollover" +msgstr "Fecha en comparaciĆ³n" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:148 +#: ../../godmode/setup/setup_visuals.php:1332 +msgid "Timestamp in rollover" +msgstr "Fecha literal" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:157 +#: ../../godmode/setup/setup_visuals.php:1333 +msgid "Compact mode" +msgstr "Modo compacto" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:166 +#: ../../godmode/setup/setup_visuals.php:699 ../../include/functions_config.php:940 +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:944 +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:948 +msgid "Graph color #3" +msgstr "Color de la grĆ”fica #3" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:197 +msgid "Data precision for reports and visual consoles" +msgstr "PrecisiĆ³n de datos para informes y consolas visuales" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:200 +msgid "Precision must be a integer number between 0 and 5" +msgstr "La precisiĆ³n debe ser un nĆŗmero entero entre 0 y 5" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:216 +#: ../../enterprise/meta/include/functions_meta.php:1348 +#: ../../godmode/setup/setup_visuals.php:936 +#: ../../godmode/reporting/visual_console_builder.elements.php:213 +#: ../../godmode/reporting/visual_console_builder.wizard.php:285 +#: ../../include/functions_visual_map_editor.php:686 +#: ../../include/rest-api/models/VisualConsole/Items/Percentile.php:458 +msgid "Percentile" +msgstr "Percentil" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:219 +msgid "Show percentile 95 in graphs" +msgstr "Mostrar el percentil 95 en los grĆ”ficos" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:232 +#: ../../enterprise/meta/include/functions_meta.php:1433 +#: ../../godmode/setup/setup_visuals.php:809 ../../include/functions_config.php:980 +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:1446 +#: ../../godmode/users/configure_user.php:1164 ../../godmode/setup/setup_visuals.php:66 +#: ../../godmode/events/event_edit_filter.php:398 ../../include/functions_config.php:997 +#: ../../operation/users/user_edit.php:308 ../../operation/snmpconsole/snmp_view.php:555 +msgid "Block size for pagination" +msgstr "TamaƱo de bloque para la paginaciĆ³n" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:252 +#: ../../enterprise/meta/include/functions_meta.php:1362 +#: ../../godmode/setup/setup_visuals.php:870 +msgid "Number of elements in Custom Graph" +msgstr "NĆŗmero de elementos en grĆ”fica personalizada" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:265 +#: ../../enterprise/meta/include/functions_meta.php:1456 +#: ../../godmode/setup/setup_visuals.php:884 ../../include/functions_config.php:1001 +msgid "Use round corners" +msgstr "Usar bordes redondeados" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:273 +#: ../../enterprise/meta/include/functions_meta.php:1467 +#: ../../godmode/setup/setup_visuals.php:893 ../../include/functions_config.php:1005 +msgid "Chart fit to content" +msgstr "Tabla adaptada al contenido" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:281 +#: ../../enterprise/meta/include/functions_meta.php:1478 +#: ../../include/functions_config.php:1217 +msgid "Disable help" +msgstr "Deshabilitar ayuda" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:290 +#: ../../enterprise/meta/advanced/metasetup.relations.php:419 +#: ../../enterprise/meta/advanced/collections.data.php:412 +#: ../../enterprise/meta/advanced/policymanager.queue.php:212 +#: ../../enterprise/meta/advanced/policymanager.queue.php:217 +#: ../../enterprise/meta/advanced/policymanager.queue.php:228 +#: ../../enterprise/meta/advanced/policymanager.queue.php:304 +#: ../../enterprise/meta/monitoring/custom_fields_view.php:193 +#: ../../enterprise/meta/monitoring/custom_fields_view.php:209 +#: ../../enterprise/meta/monitoring/custom_fields_view.php:272 +#: ../../enterprise/meta/monitoring/custom_fields_view.php:762 +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:411 +#: ../../enterprise/meta/monitoring/wizard/wizard.create_module.php:218 +#: ../../enterprise/meta/monitoring/wizard/wizard.php:148 +#: ../../enterprise/meta/include/functions_users_meta.php:87 +#: ../../enterprise/meta/include/functions_users_meta.php:98 +#: ../../enterprise/meta/include/functions_wizard_meta.php:319 +#: ../../enterprise/meta/include/ajax/wizard.ajax.php:400 +#: ../../enterprise/meta/include/ajax/wizard.ajax.php:444 +#: ../../enterprise/meta/include/functions_html_meta.php:75 +#: ../../enterprise/godmode/modules/local_components.php:541 +#: ../../enterprise/godmode/modules/local_components.php:567 +#: ../../enterprise/godmode/modules/local_components.php:592 +#: ../../enterprise/godmode/agentes/collections.data.php:506 +#: ../../enterprise/godmode/policies/policy_queue.php:603 +#: ../../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:358 +#: ../../enterprise/godmode/policies/policy_agents.php:833 +#: ../../enterprise/godmode/massive/massive_add_modules_policy.php:131 +#: ../../enterprise/godmode/alerts/alert_inventory_builder.php:264 +#: ../../enterprise/godmode/setup/setup_acl.php:487 +#: ../../enterprise/godmode/setup/setup_acl.php:504 +#: ../../enterprise/godmode/setup/setup_acl.php:521 +#: ../../enterprise/godmode/setup/setup_acl.php:753 +#: ../../enterprise/godmode/setup/setup_acl.php:761 +#: ../../enterprise/godmode/setup/setup_acl.php:772 +#: ../../enterprise/godmode/setup/setup_acl.php:813 +#: ../../enterprise/godmode/setup/setup_acl.php:844 +#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:241 +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:143 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:188 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:641 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:667 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:243 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2025 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2836 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2863 +#: ../../enterprise/include/class/ManageBackups.class.php:191 +#: ../../enterprise/include/functions_metaconsole.php:863 +#: ../../enterprise/include/functions_metaconsole.php:864 +#: ../../enterprise/include/functions_metaconsole.php:1212 +#: ../../enterprise/include/functions_ipam.php:1688 +#: ../../enterprise/include/functions_ipam.php:1733 +#: ../../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:620 +#: ../../enterprise/operation/log/log_viewer.php:638 +#: ../../enterprise/operation/log/log_viewer.php:688 +#: ../../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 +#: ../../godmode/modules/manage_network_components.php:653 +#: ../../godmode/massive/massive_copy_modules.php:127 +#: ../../godmode/massive/massive_copy_modules.php:287 +#: ../../godmode/massive/massive_delete_modules.php:327 +#: ../../godmode/massive/massive_delete_modules.php:374 +#: ../../godmode/massive/massive_delete_modules.php:429 +#: ../../godmode/massive/massive_delete_modules.php:450 +#: ../../godmode/massive/massive_delete_agents.php:221 +#: ../../godmode/massive/massive_delete_agents.php:235 +#: ../../godmode/massive/massive_edit_agents.php:543 +#: ../../godmode/massive/massive_edit_agents.php:556 +#: ../../godmode/massive/massive_edit_modules.php:311 +#: ../../godmode/massive/massive_edit_modules.php:358 +#: ../../godmode/massive/massive_edit_modules.php:396 +#: ../../godmode/massive/massive_edit_modules.php:482 +#: ../../godmode/alerts/alert_list.list.php:131 +#: ../../godmode/alerts/alert_list.list.php:137 +#: ../../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:460 +#: ../../godmode/alerts/alert_list.php:509 ../../godmode/alerts/alert_list.php:523 +#: ../../godmode/setup/gis_step_2.php:217 ../../godmode/setup/setup_visuals.php:951 +#: ../../godmode/reporting/reporting_builder.list_items.php:209 +#: ../../godmode/reporting/reporting_builder.list_items.php:211 +#: ../../godmode/reporting/reporting_builder.list_items.php:213 +#: ../../godmode/reporting/reporting_builder.list_items.php:235 +#: ../../godmode/reporting/reporting_builder.list_items.php:245 +#: ../../godmode/reporting/reporting_builder.list_items.php:255 +#: ../../godmode/reporting/create_container.php:546 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1627 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1645 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2106 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2942 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2969 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3604 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3670 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3692 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3750 +#: ../../godmode/reporting/visual_console_builder.wizard.php:340 +#: ../../godmode/reporting/visual_console_builder.wizard.php:354 +#: ../../godmode/events/event_edit_filter.php:328 +#: ../../godmode/events/event_edit_filter.php:343 +#: ../../godmode/events/event_edit_filter.php:606 ../../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:1071 +#: ../../include/functions.php:1331 ../../include/ajax/events.php:506 +#: ../../include/functions_groupview.php:95 ../../include/functions_modules.php:3576 +#: ../../include/functions_modules.php:3578 ../../include/functions_users.php:416 +#: ../../include/functions_users.php:674 ../../include/functions_notifications.php:105 +#: ../../include/functions_html.php:915 ../../include/functions_html.php:1576 +#: ../../include/class/CredentialStore.class.php:535 +#: ../../include/class/AuditLog.class.php:203 ../../include/class/AuditLog.class.php:213 +#: ../../include/functions_reporting.php:2953 ../../include/functions_reporting.php:3050 +#: ../../include/lib/Dashboard/Widgets/system_group_status.php:399 +#: ../../include/lib/Dashboard/Widgets/events_list.php:412 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:384 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:417 +#: ../../include/functions_groups.php:646 ../../include/functions_groups.php:1940 +#: ../../operation/heatmap.php:115 ../../operation/tree.php:210 +#: ../../operation/tree.php:267 ../../operation/agentes/estado_agente.php:276 +#: ../../operation/agentes/status_monitor.php:651 +#: ../../operation/agentes/estado_monitores.php:520 +#: ../../operation/agentes/estado_monitores.php:565 +#: ../../operation/agentes/alerts_status.functions.php:96 +#: ../../operation/agentes/alerts_status.functions.php:115 +#: ../../operation/agentes/alerts_status.functions.php:125 +#: ../../operation/agentes/alerts_status.functions.php:130 +#: ../../operation/snmpconsole/snmp_view.php:549 +#: ../../operation/snmpconsole/snmp_view.php:578 +#: ../../operation/snmpconsole/snmp_view.php:586 +#: ../../operation/snmpconsole/snmp_view.php:902 +#: ../../operation/incidents/list_integriaims_incidents.php:326 +#: ../../operation/incidents/list_integriaims_incidents.php:337 +#: ../../operation/incidents/list_integriaims_incidents.php:354 +#: ../../operation/incidents/list_integriaims_incidents.php:365 +#: ../../operation/events/events.php:748 ../../operation/events/events.php:1589 +#: ../../operation/events/events.php:1662 ../../operation/events/events.php:1794 +#: ../../operation/events/events.php:1846 ../../general/subselect_data_module.php:62 +msgid "All" +msgstr "Todo" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:291 +#: ../../godmode/setup/setup_visuals.php:952 +msgid "On Boolean graphs" +msgstr "En grĆ”ficos booleanos" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:294 +msgid "Graph TIP view" +msgstr "Visor de grĆ”fico TIP" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:295 +msgid "This option may cause performance issues" +msgstr "Esta opciĆ³n puede generar problemas de rendimiento" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:309 +#: ../../godmode/setup/setup_visuals.php:971 +msgid "Show only average by default" +msgstr "Mostrar solo la media por defecto" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:310 +#: ../../godmode/setup/setup_visuals.php:972 +msgid "Show MAX/AVG/MIN by default" +msgstr "Mostrar MƁX/MEDIA/MƍN por defecto" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:312 +#: ../../godmode/setup/setup_visuals.php:968 +msgid "Graph mode" +msgstr "Modo de grĆ”fico" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:332 +#: ../../godmode/setup/setup_visuals.php:987 +msgid "Zoom graphs:" +msgstr "GrĆ”ficas ampliadas:" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:346 +#: ../../godmode/setup/setup_visuals.php:902 +msgid "Type of module charts" +msgstr "Tipo de grĆ”ficos de mĆ³dulos" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:348 +#: ../../enterprise/godmode/reporting/graph_template_editor.php:245 +#: ../../godmode/setup/setup_visuals.php:903 ../../godmode/setup/setup_visuals.php:920 +#: ../../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/lib/Dashboard/Widgets/custom_graph.php:315 +#: ../../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 +msgid "Area" +msgstr "Ɓrea" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:357 +#: ../../enterprise/godmode/reporting/graph_template_editor.php:247 +#: ../../godmode/setup/setup_visuals.php:910 ../../godmode/setup/setup_visuals.php:927 +#: ../../godmode/reporting/create_container.php:359 +#: ../../godmode/reporting/visual_console_builder.elements.php:334 +#: ../../godmode/reporting/graph_builder.main.php:216 +#: ../../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/lib/Dashboard/Widgets/custom_graph.php:317 +#: ../../operation/visual_console/view.php:361 ../../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 +msgid "Line" +msgstr "LĆ­nea" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:367 +#: ../../enterprise/meta/include/functions_meta.php:1548 +msgid "Metaconsole elements" +msgstr "Elementos de la Metaconsola" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:369 +msgid "The number of elements retrieved for each instance in some views." +msgstr "NĆŗmero de elementos recuperados para cada instancia en algunas vistas" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:382 +#: ../../enterprise/meta/advanced/metasetup.visual.php:849 +#: ../../enterprise/meta/advanced/metasetup.visual.php:850 +#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:327 +#: ../../enterprise/include/ajax/log_viewer.ajax.php:274 +#: ../../godmode/snmpconsole/snmp_alert.php:1102 +#: ../../godmode/setup/setup_visuals.php:1031 ../../godmode/setup/setup_visuals.php:1032 +#: ../../godmode/setup/setup_visuals.php:1396 +#: ../../include/functions_visual_map_editor.php:1223 +#: ../../include/functions_visual_map_editor.php:1224 ../../include/functions.php:499 +#: ../../include/functions.php:630 ../../include/ajax/events.php:2295 +#: ../../include/ajax/events.php:2296 ../../include/ajax/events.php:2297 +#: ../../include/ajax/events.php:2298 ../../include/ajax/events.php:2302 +#: ../../include/ajax/events.php:2303 ../../include/ajax/events.php:2304 +#: ../../include/ajax/events.php:2305 ../../include/ajax/events.php:2306 +#: ../../include/ajax/events.php:2307 ../../include/functions_html.php:2119 +#: ../../include/class/AgentsAlerts.class.php:387 +#: ../../operation/events/sound_events.php:199 +#: ../../operation/events/sound_events.php:200 +#: ../../operation/events/sound_events.php:201 +#: ../../operation/events/sound_events.php:202 +#: ../../operation/events/sound_events.php:206 +#: ../../operation/events/sound_events.php:207 +#: ../../operation/events/sound_events.php:208 +#: ../../operation/events/sound_events.php:209 +#: ../../operation/events/sound_events.php:210 +#: ../../operation/events/sound_events.php:211 +msgid "seconds" +msgstr "segundos" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:383 +#: ../../enterprise/meta/advanced/metasetup.visual.php:851 +#: ../../enterprise/meta/advanced/metasetup.visual.php:852 +#: ../../enterprise/meta/advanced/metasetup.visual.php:853 +#: ../../enterprise/meta/advanced/metasetup.visual.php:854 +#: ../../enterprise/include/ajax/log_viewer.ajax.php:276 +#: ../../godmode/setup/setup_visuals.php:1033 ../../godmode/setup/setup_visuals.php:1034 +#: ../../godmode/setup/setup_visuals.php:1035 ../../godmode/setup/setup_visuals.php:1036 +#: ../../godmode/setup/setup_visuals.php:1397 +#: ../../include/functions_visual_map_editor.php:1225 +#: ../../include/functions_visual_map_editor.php:1226 +#: ../../include/functions_visual_map_editor.php:1227 +#: ../../include/functions_visual_map_editor.php:1228 ../../include/functions.php:503 +#: ../../include/functions.php:634 ../../include/functions_html.php:2120 +msgid "minutes" +msgstr "minutos" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:384 +#: ../../enterprise/include/ajax/log_viewer.ajax.php:278 +#: ../../godmode/setup/setup_visuals.php:1398 ../../include/functions.php:504 +#: ../../include/functions.php:635 ../../include/functions_snmp.php:402 +#: ../../include/functions_html.php:2121 +msgid "hours" +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:1399 +#: ../../include/functions.php:500 ../../include/functions.php:631 +#: ../../include/functions_html.php:2122 +msgid "days" +msgstr "dĆ­as" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:386 +#: ../../godmode/setup/setup_visuals.php:1400 ../../include/functions.php:501 +#: ../../include/functions.php:632 ../../include/functions_html.php:2124 +msgid "months" +msgstr "meses" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:387 +#: ../../godmode/setup/setup_visuals.php:1401 ../../include/functions.php:502 +#: ../../include/functions.php:633 ../../include/functions_html.php:2125 +msgid "years" +msgstr "aƱos" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:390 +msgid "Add new custom value to intervals" +msgstr "AƱadir nuevo valor personalizado para intervalos" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:411 +#: ../../enterprise/meta/advanced/metasetup.consoles.php:739 +#: ../../enterprise/meta/advanced/links.php:189 +#: ../../enterprise/meta/include/functions_autoprovision.php:703 +#: ../../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:144 +#: ../../enterprise/godmode/policies/policy_alerts.php:605 +#: ../../enterprise/godmode/policies/policy_alerts.php:670 +#: ../../enterprise/godmode/policies/policy_external_alerts.php:607 +#: ../../enterprise/godmode/policies/policy_external_alerts.php:703 +#: ../../enterprise/godmode/policies/policy_inventory_modules.php:263 +#: ../../enterprise/godmode/policies/policy_collections.php:267 +#: ../../enterprise/godmode/massive/massive_edit_tags_policy.php:168 +#: ../../enterprise/godmode/massive/massive_add_alerts_policy.php:138 +#: ../../enterprise/godmode/massive/massive_tags_edit_policy.php:152 +#: ../../enterprise/godmode/alerts/alert_inventory_list.php:398 +#: ../../enterprise/godmode/setup/setup_metaconsole.php:247 +#: ../../enterprise/godmode/setup/setup_metaconsole.php:357 +#: ../../enterprise/godmode/setup/setup_acl.php:532 +#: ../../enterprise/godmode/setup/setup_acl.php:558 +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:245 +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:506 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:269 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:862 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:354 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:512 +#: ../../enterprise/godmode/reporting/graph_template_item_editor.php:251 +#: ../../enterprise/godmode/reporting/visual_console_builder.wizard_services.php:190 +#: ../../enterprise/godmode/servers/credential_boxes_satellite.php:298 +#: ../../enterprise/godmode/servers/manage_credential_boxes.php:82 +#: ../../enterprise/godmode/servers/manage_export_form.php:138 +#: ../../enterprise/include/ajax/log_viewer.ajax.php:93 +#: ../../enterprise/include/ajax/servers.ajax.php:144 +#: ../../enterprise/include/ajax/servers.ajax.php:177 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2284 +#: ../../enterprise/operation/agentes/manage_transmap_creation.php:308 +#: ../../enterprise/tools/ipam/ipam_supernet_config.php:1321 +#: ../../enterprise/tools/ipam/ipam_vlan_config.php:830 +#: ../../extensions/files_repo/files_repo_form.php:105 +#: ../../godmode/modules/manage_network_templates_form.php:347 +#: ../../godmode/users/configure_profile.php:403 +#: ../../godmode/agentes/planned_downtime.editor.php:881 +#: ../../godmode/agentes/planned_downtime.editor.php:1055 +#: ../../godmode/snmpconsole/snmp_alert.php:1494 +#: ../../godmode/gis_maps/configure_gis_map.php:631 +#: ../../godmode/alerts/alert_list.list.php:816 ../../godmode/setup/news.php:299 +#: ../../godmode/setup/links.php:173 ../../godmode/setup/setup_visuals.php:1351 +#: ../../godmode/setup/setup_visuals.php:1406 ../../godmode/setup/setup_visuals.php:1426 +#: ../../godmode/reporting/graph_builder.graph_editor.php:352 +#: ../../godmode/reporting/visual_console_builder.wizard.php:531 +#: ../../godmode/events/event_edit_filter.php:514 +#: ../../godmode/events/event_edit_filter.php:567 ../../godmode/servers/plugin.php:909 +#: ../../include/functions_notifications.php:963 +#: ../../include/class/ManageNetScanScripts.class.php:471 +#: ../../include/functions_snmp_browser.php:1566 +#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:271 +#: ../../operation/events/events.php:1150 ../../operation/events/events.php:1224 +msgid "Add" +msgstr "AƱadir" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:420 +#: ../../enterprise/meta/include/functions_meta.php:1767 +#: ../../godmode/setup/setup_visuals.php:1411 ../../include/functions_config.php:1388 +msgid "Delete interval" +msgstr "Borrar intervalo" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:454 +#: ../../enterprise/meta/include/functions_meta.php:1558 +#: ../../godmode/setup/setup_visuals.php:1292 +msgid "Show only the group name" +msgstr "Mostrar solo el nombre del grupo" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:456 +#: ../../include/functions_config.php:1245 +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:1859 +#: ../../godmode/setup/setup_visuals.php:88 ../../include/functions_config.php:1269 +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:1869 +#: ../../godmode/setup/setup_visuals.php:97 ../../include/functions_config.php:1273 +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:1879 +#: ../../godmode/setup/setup_visuals.php:101 ../../include/functions_config.php:1277 +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:1598 +#: ../../godmode/setup/setup_visuals.php:191 ../../include/functions_config.php:1025 +msgid "Custom favicon" +msgstr "Personalizar favicon" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:505 +msgid "" +"You can place your favicon into the folder images/custom_favicon/. This file should " +"be in .ico format with a size of 16x16." +msgstr "" +"Puede poner su favicon en la carpeta images/custom_favicon/. Este archivo debe estar " +"en formato .ico y tener un tamaƱo de 16x16." + +#: ../../enterprise/meta/advanced/metasetup.visual.php:531 +#: ../../godmode/setup/setup_visuals.php:213 +msgid "Custom background logo" +msgstr "Fondo del logo personalizado" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:533 +msgid "You can place your custom images into the folder images/backgrounds/" +msgstr "Puedes poner tus propias imĆ”genes en el directorio images/backgrounds/" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:576 +#: ../../godmode/setup/setup_visuals.php:280 +msgid "Custom logo (menu)" +msgstr "Logo personalizado (menu)" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:607 +#: ../../godmode/setup/setup_visuals.php:285 +msgid "Custom logo collapsed (menu)" +msgstr "Icono menĆŗ reducido" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:638 +#: ../../godmode/setup/setup_visuals.php:290 +msgid "Custom logo (header white background)" +msgstr "Logo personalizado (fondo blanco de cabecera)" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:667 +#: ../../godmode/setup/setup_visuals.php:329 +msgid "Custom logo (login)" +msgstr "Logo personalizado (inicio de sesiĆ³n)" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:696 +#: ../../godmode/setup/setup_visuals.php:368 +msgid "Custom Splash (login)" +msgstr "Splash personalizado (inicio de sesiĆ³n)" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:724 +#: ../../enterprise/meta/advanced/metasetup.visual.php:795 +#: ../../enterprise/meta/include/functions_meta.php:1628 +#: ../../godmode/setup/setup_visuals.php:508 ../../include/functions_config.php:1101 +msgid "Product name" +msgstr "Nombre del producto" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:735 +#: ../../enterprise/meta/advanced/metasetup.visual.php:805 +#: ../../enterprise/meta/include/functions_meta.php:1638 +#: ../../godmode/setup/setup_visuals.php:514 ../../include/functions_config.php:1105 +msgid "Copyright notice" +msgstr "Aviso de copyright" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:746 +#: ../../godmode/setup/setup_visuals.php:472 +msgid "Title (header)" +msgstr "TĆ­tulo (encabezado)" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:750 +#: ../../godmode/setup/setup_visuals.php:477 +msgid "Subtitle (header)" +msgstr "SubtĆ­tulo (encabezado)" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:754 +#: ../../godmode/setup/setup_visuals.php:483 +msgid "Title 1 (login)" +msgstr "TĆ­tulo 1 (inicio de sesiĆ³n)" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:765 +#: ../../godmode/setup/setup_visuals.php:490 +msgid "Title 2 (login)" +msgstr "TĆ­tulo 2 (inicio de sesiĆ³n)" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:775 +#: ../../enterprise/meta/include/functions_meta.php:1688 +#: ../../godmode/setup/setup_visuals.php:496 +msgid "Docs URL (login)" +msgstr "URL de documentos (inicio de sesiĆ³n)" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:785 +#: ../../enterprise/meta/include/functions_meta.php:1698 +#: ../../godmode/setup/setup_visuals.php:502 +msgid "Support URL (login)" +msgstr "URL soporte (inicio de sesiĆ³n)" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:815 +msgid "Graphs font family" +msgstr "Familia tipogrĆ”fica de las grĆ”ficas" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:826 +#: ../../enterprise/meta/include/functions_meta.php:1528 +#: ../../godmode/setup/setup_visuals.php:564 +msgid "Visual effects and animation" +msgstr "Efectos visuales y animaciĆ³n" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:836 +#: ../../godmode/setup/setup_visuals.php:1021 +msgid "Legacy Visual Console View" +msgstr "Vista de la consola visual heredada" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:838 +msgid "To use the old view when using the Visual Console visor" +msgstr "Para usar la vista antigua al utilizar el visor de la Consola visual" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:855 +#: ../../godmode/setup/setup_visuals.php:1037 +#: ../../include/functions_visual_map_editor.php:1229 +msgid "hour" +msgstr "hora" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:857 +#: ../../godmode/setup/setup_visuals.php:1039 +msgid "Default cache expiration" +msgstr "Caducidad del cachĆ© por defecto" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:862 +#: ../../godmode/setup/setup_visuals.php:1044 +#: ../../include/functions_visual_map_editor.php:1255 +msgid "No cache" +msgstr "No hay chachĆ©" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:874 +#: ../../enterprise/meta/include/functions_meta.php:1906 +#: ../../godmode/setup/setup_visuals.php:1056 ../../include/functions_config.php:1149 +msgid "Default interval for refresh on Visual Console" +msgstr "Intervalo de actualizaciĆ³n por defecto en la consola visual" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:877 +msgid "This interval will affect to Visual Console pages" +msgstr "Este intervalo afectarĆ” todas las pĆ”ginas de la consola visual." + +#: ../../enterprise/meta/advanced/metasetup.visual.php:903 +#: ../../godmode/setup/setup_visuals.php:1505 +msgid "Data multiplier to use in graphs/data" +msgstr "Multiplicador de datos para usar en grĆ”ficas/datos" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:907 +#: ../../godmode/setup/setup_visuals.php:1507 +msgid "Use 1024 when module unit are bytes" +msgstr "Utilizar 1024 cuando la unidad del mĆ³dulo sea bytes" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:908 +#: ../../godmode/setup/setup_visuals.php:1508 +msgid "Use always 1000" +msgstr "Utilizar siempre 1000" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:909 +#: ../../godmode/setup/setup_visuals.php:1509 +msgid "Use always 1024" +msgstr "Utilizar siempre 1024" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:923 +#: ../../enterprise/meta/include/functions_meta.php:1911 +#: ../../godmode/setup/setup_visuals.php:1098 ../../include/functions_config.php:1165 +msgid "Mobile view not allow visual console orientation" +msgstr "No permitir orientaciĆ³n de la consola visual en la vista mĆ³vil" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:941 +msgid "Reports configuration" +msgstr "ConfiguraciĆ³n de informes" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:947 +#: ../../godmode/setup/setup_visuals.php:1132 +msgid "Show report info with description" +msgstr "Mostrar la informaciĆ³n del informe con la descripciĆ³n" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:948 +msgid "" +"Custom report description info. It will be applied to all reports and templates by " +"default." +msgstr "" +"DescripciĆ³n del informe personalizado. SerĆ” aplicado a todas las plantillas e " +"informes por defecto." + +#: ../../enterprise/meta/advanced/metasetup.visual.php:959 +#: ../../godmode/setup/setup_visuals.php:1141 +msgid "Custom report front page" +msgstr "Portada de informe personalizado" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:960 +msgid "" +"Custom report front page. It will be applied to all reports and templates by default." +msgstr "" +"Portada de informe personalizado. Se aplicarĆ” por defecto a todos los informes y " +"plantillas." + +#: ../../enterprise/meta/advanced/metasetup.visual.php:971 +#: ../../enterprise/meta/include/functions_meta.php:1393 +#: ../../godmode/setup/setup_visuals.php:1151 ../../include/functions_config.php:1419 +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:1383 +#: ../../godmode/setup/setup_visuals.php:1156 ../../include/functions_config.php:1415 +msgid "HTML font size for SLA (em)" +msgstr "TamaƱo de fuente en SLA (em)" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:977 +#: ../../enterprise/meta/include/functions_meta.php:1508 +#: ../../godmode/setup/setup_visuals.php:1161 +msgid "Graph image height for HTML reports" +msgstr "Altura de la imagen de la grĆ”fica en informes HTML" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:979 +msgid "" +"This is the height in pixels of the module graph or custom graph in the reports " +"(only: HTML)" +msgstr "" +"Esta es la altura en pixeles de la grĆ”fica de mĆ³dulos o la grĆ”fica personalizada en " +"los informes (solo HTML)" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:996 +#: ../../enterprise/meta/include/functions_meta.php:1413 +#: ../../godmode/setup/setup_visuals.php:1454 ../../include/functions_config.php:1447 +msgid "CSV divider" +msgstr "Separador CSV" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:1036 +#: ../../enterprise/meta/include/functions_meta.php:1423 +#: ../../godmode/setup/setup_visuals.php:1500 ../../include/functions_config.php:1451 +msgid "CSV decimal separator" +msgstr "Separador decimal CSV" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:1044 +#: ../../enterprise/meta/include/functions_meta.php:1403 +#: ../../godmode/setup/setup_visuals.php:1170 +msgid "Interval description" +msgstr "DescripciĆ³n del intervalo" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:1046 +msgid "" +"A long interval description is for example 10 hours, 20 minutes 33 secondsĆ¢Ā€Ā, a short " +"one is 10h 20m 33s" +msgstr "" +"Una descripciĆ³n larga del intervalo dura por ejemplo 10 horas, 20 minutos 33 " +"segundosĆ¢Ā€Ā, una corta es 10h 20m 33s" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:1061 +#: ../../enterprise/meta/advanced/metasetup.visual.php:1074 +#: ../../enterprise/meta/advanced/metasetup.visual.php:1085 +#: ../../enterprise/meta/advanced/metasetup.visual.php:1095 +#: ../../enterprise/meta/include/functions_meta.php:1793 +#: ../../enterprise/meta/include/functions_meta.php:1809 +#: ../../enterprise/meta/include/functions_meta.php:1819 +#: ../../enterprise/meta/include/functions_meta.php:1829 +#: ../../enterprise/meta/include/functions_meta.php:1839 +#: ../../enterprise/meta/include/functions_meta.php:1849 +#: ../../godmode/setup/setup_visuals.php:1194 ../../godmode/setup/setup_visuals.php:1209 +#: ../../godmode/setup/setup_visuals.php:1217 ../../godmode/setup/setup_visuals.php:1237 +#: ../../godmode/setup/setup_visuals.php:1253 ../../include/functions_config.php:1423 +#: ../../include/functions_config.php:1427 ../../include/functions_config.php:1431 +#: ../../include/functions_config.php:1435 ../../include/functions_config.php:1439 +#: ../../include/functions_config.php:1443 +msgid "Custom report front" +msgstr "Portada de informe personalizado" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:1061 +#: ../../enterprise/meta/include/functions_meta.php:1568 +#: ../../enterprise/meta/include/functions_meta.php:1819 +#: ../../enterprise/godmode/reporting/reporting_builder.advanced.php:127 +#: ../../enterprise/godmode/reporting/reporting_builder.template_advanced.php:130 +#: ../../godmode/setup/setup_visuals.php:1194 ../../include/functions_config.php:1029 +#: ../../include/functions_config.php:1431 +msgid "Custom logo" +msgstr "Logo personalizado" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:1062 +#: ../../enterprise/godmode/reporting/reporting_builder.advanced.php:128 +#: ../../enterprise/godmode/reporting/reporting_builder.template_advanced.php:131 +msgid "" +"The path of custom logos is 'images/custom_logo' in the console installation. You can " +"upload more files (ONLY JPEG AND PNG) with the upload tool." +msgstr "" +"La ruta de los logos personalizados es \"images/custom_logo\" en la instalaciĆ³n de la " +"consola. Puede aƱadir mĆ”s archivos (SOLO JPEG Y PNG) con la herramienta de aƱadir." + +#: ../../enterprise/meta/advanced/metasetup.visual.php:1085 +#: ../../enterprise/meta/include/functions_meta.php:1829 +#: ../../enterprise/godmode/reporting/reporting_builder.advanced.php:153 +#: ../../enterprise/godmode/reporting/reporting_builder.template_advanced.php:142 +#: ../../godmode/setup/setup_visuals.php:1217 ../../include/functions_config.php:1435 +msgid "Header" +msgstr "Encabezado" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:1095 +#: ../../enterprise/meta/include/functions_meta.php:1839 +#: ../../enterprise/godmode/reporting/reporting_builder.advanced.php:163 +#: ../../enterprise/godmode/reporting/reporting_builder.template_advanced.php:152 +#: ../../godmode/setup/setup_visuals.php:1237 ../../include/functions_config.php:1439 +msgid "First page" +msgstr "Primera pĆ”gina" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:1324 +#: ../../godmode/setup/setup_visuals.php:1806 +msgid "Logo preview" +msgstr "Logo de vista previa" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:1346 +#: ../../godmode/setup/setup_visuals.php:1836 +msgid "Splash Preview" +msgstr "Vista previa de Splash" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:1351 +#: ../../godmode/setup/setup_visuals.php:1860 +msgid "Background preview" +msgstr "Vista previa del fondo" + +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:124 +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:127 +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:131 +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:135 +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:139 +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:143 +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:147 +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:151 +msgid "Agent: " +msgstr "Agente: " + +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:124 +msgid " already exists in target node" +msgstr " ya existe en el nodo de destino" + +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:127 +msgid " group does not exist in target node" +msgstr " grupo no existe en el nodo de destino" + +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:131 +msgid " policies definitions does not match with defined ones in target node" +msgstr "" +" definiciones de polĆ­ticas no concuerdan con aquellas definidas en el nodo de destino." + +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:135 +msgid " plugins does not exist in target node" +msgstr " plugins no existen en el nodo de destino." + +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:139 +msgid " collections does not exist in target node" +msgstr " colecciones no existen en el nodo de destino" + +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:143 +msgid " inventory does not exist in target node" +msgstr " inventario no existe en el nodo de destino" + +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:147 +msgid " alerts template does not exist in target node" +msgstr " modelo de alertas no existe en el nodo de destino" + +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:151 +msgid " alerts action does not exist in target node" +msgstr " acciĆ³n de alertas no existe en el nodo de destino" + +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:155 +msgid "Exists agent conf for agent: " +msgstr "Existe una configuraciĆ³n para el agente: " + +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:155 +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:159 +#: ../../enterprise/include/functions_metaconsole.php:2820 +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:163 +#: ../../enterprise/include/functions_metaconsole.php:2813 +msgid "Target server ip address is set" +msgstr "DirecciĆ³n IP del servidor de destino configurada" + +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:267 +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:269 +msgid "The agent: " +msgstr "El agente: " + +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:267 +msgid " has been successfully added to the migration queue " +msgstr " se aƱadiĆ³ correctamente a la cola de migraciĆ³n " + +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:269 +msgid " has not been added due to problems in the insertion" +msgstr " no se aƱadiĆ³ por problemas de inserciĆ³n" + +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:272 +#, php-format +msgid "The agent: %d has already been added to the migration queue" +msgstr "El agente: %d ya se ha aƱadido a la cola de migraciĆ³n" + +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:289 +#: ../../enterprise/meta/advanced/metasetup.relations.php:87 +#: ../../enterprise/godmode/reporting/graph_template_list.php:156 +#: ../../enterprise/godmode/reporting/graph_template_list.php:183 +#: ../../enterprise/godmode/reporting/graph_template_item_editor.php:130 +#: ../../enterprise/godmode/reporting/graph_template_item_editor.php:158 +#: ../../enterprise/tools/ipam/ipam_network_location_config.php:88 +#: ../../godmode/modules/manage_nc_groups.php:153 +#: ../../godmode/agentes/planned_downtime.list.php:243 +#: ../../godmode/netflow/nf_item_list.php:121 ../../godmode/netflow/nf_item_list.php:149 +#: ../../godmode/netflow/nf_edit.php:105 ../../godmode/netflow/nf_edit.php:138 +#: ../../godmode/reporting/map_builder.php:210 ../../godmode/reporting/graphs.php:152 +#: ../../godmode/reporting/graphs.php:163 ../../godmode/reporting/graphs.php:214 +#: ../../godmode/events/event_filter.php:70 ../../godmode/events/event_filter.php:97 +#: ../../operation/reporting/graph_viewer.php:59 +#: ../../operation/reporting/graph_viewer.php:67 +msgid "Not deleted. Error deleting data" +msgstr "No se pudo borrar. Error al borrar los datos." + +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:292 +msgid "Problems delete queue" +msgstr "Error al borrar la cola" + +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:312 +msgid "Move Agents" +msgstr "Mover agentes" + +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:328 +msgid "Source Server" +msgstr "Servidor de origen" + +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:330 +msgid "Destination Server" +msgstr "Servidor de destino" + +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:362 +#: ../../enterprise/meta/advanced/policymanager.queue.php:258 +#: ../../enterprise/meta/monitoring/wizard/wizard.php:298 +#: ../../enterprise/meta/monitoring/group_view.php:154 +#: ../../enterprise/meta/monitoring/group_view.php:215 +#: ../../enterprise/meta/include/functions_autoprovision.php:476 +#: ../../enterprise/godmode/agentes/collections.agents.php:53 +#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:100 +#: ../../enterprise/godmode/agentes/collections.data.php:137 +#: ../../enterprise/godmode/agentes/collections.data.php:283 +#: ../../enterprise/godmode/agentes/collections.editor.php:74 +#: ../../enterprise/godmode/policies/policy_queue.php:648 +#: ../../enterprise/godmode/policies/policies.php:407 +#: ../../enterprise/godmode/policies/policies.php:531 +#: ../../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.php:71 +#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:248 +#: ../../enterprise/godmode/massive/massive_add_service_elements.php:361 +#: ../../enterprise/godmode/massive/massive_create_services.php:964 +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:228 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:220 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:305 +#: ../../enterprise/include/functions_cron.php:215 +#: ../../enterprise/include/functions_tasklist.php:338 +#: ../../enterprise/include/functions_reporting_pdf.php:861 +#: ../../enterprise/include/functions_policies.php:3824 +#: ../../enterprise/operation/services/services.service_map.php:158 +#: ../../extensions/agents_modules.php:431 ../../extensions/agents_modules.php:758 +#: ../../godmode/agentes/planned_downtime.list.php:84 +#: ../../godmode/agentes/planned_downtime.list.php:108 +#: ../../godmode/massive/massive_standby_alerts.php:203 +#: ../../godmode/massive/massive_delete_modules.php:535 +#: ../../godmode/massive/massive_add_alerts.php:231 +#: ../../godmode/massive/massive_delete_agents.php:280 +#: ../../godmode/massive/massive_edit_plugins.php:367 +#: ../../godmode/massive/massive_enable_disable_alerts.php:174 +#: ../../godmode/massive/massive_edit_agents.php:566 +#: ../../godmode/massive/massive_delete_alerts.php:314 +#: ../../godmode/massive/massive_edit_modules.php:511 +#: ../../godmode/alerts/alert_list.list.php:79 +#: ../../godmode/reporting/reporting_builder.list_items.php:208 +#: ../../godmode/reporting/reporting_builder.list_items.php:229 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1770 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1832 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2079 +#: ../../godmode/reporting/visual_console_builder.wizard.php:408 +#: ../../mobile/include/functions_web.php:23 ../../mobile/operation/agents.php:204 +#: ../../mobile/operation/home.php:81 ../../mobile/operation/agent.php:155 +#: ../../include/functions_reporting_html.php:1881 +#: ../../include/functions_reporting_html.php:2350 +#: ../../include/functions_reporting_html.php:3128 ../../include/functions_cron.php:663 +#: ../../include/functions_html.php:1655 ../../include/functions_html.php:5464 +#: ../../include/class/Diagnostics.class.php:1161 +#: ../../include/class/Diagnostics.class.php:1165 +#: ../../include/class/Diagnostics.class.php:1169 +#: ../../include/class/Diagnostics.class.php:1173 +#: ../../include/class/NetworkMap.class.php:3228 +#: ../../include/class/AgentsAlerts.class.php:252 +#: ../../include/class/AgentsAlerts.class.php:542 +#: ../../include/lib/Dashboard/Widgets/groups_status.php:329 +#: ../../include/lib/Dashboard/Widgets/groups_status.php:334 +#: ../../include/lib/Dashboard/Widgets/agent_module.php:448 +#: ../../include/functions_groups.php:53 ../../operation/search_results.php:80 +#: ../../operation/agentes/interface_view.functions.php:71 +#: ../../operation/agentes/group_view.php:183 ../../operation/agentes/group_view.php:216 +msgid "Agents" +msgstr "Agentes" + +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:364 +msgid "Agents to move" +msgstr "Agentes para desplazar" + +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:385 +msgid "Add agents to destination server" +msgstr "AƱadir agentes al servidor de destino" + +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:394 +msgid "Remove agents to doesn't move to destination server" +msgstr "Si eliminas los agentes, no se desplazarĆ”n al servidor de destino" + +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:413 +msgid "Discard history data" +msgstr "Descartar datos de histĆ³rico" + +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:426 +msgid "Agents do not exist in target server." +msgstr "Los agentes no existen en el servidor de destino." + +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:427 +msgid "Check group is synchronized with target server." +msgstr "Comprueba que el grupo estĆ” sincronizado con el servidor de destino." + +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:428 +msgid "All policies needed are synchronized with target server." +msgstr "Todas las polĆ­ticas necesarias se sincronizaron con el servidor de destino." + +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:429 +msgid "All remote plugins needed are synchronized with target server." +msgstr "Todos los plugins necesarios se sincronizaron con el servidor de destino." + +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:430 +msgid "All collections needed are syncronized with target server." +msgstr "Todas las colecciones necesarias se sincronizaron con el servidor de destino." + +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:431 +msgid "All remote inventory definitions needed are syncronized with target server." +msgstr "Todos los inventarios necesarios se sincronizaron con el servidor de destino." + +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:432 +msgid "All alert templates definitions needed are syncronized with target server." +msgstr "" +"Todas las definiciones de modelos de alertas necesarias se sincronizaron con el " +"servidor de destino." + +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:433 +msgid "All alert actions needed are syncronized with target server." +msgstr "" +"Todas las acciones de alertas necesarias se sincronizaron con el servidor de destino." + +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:434 +msgid "Agents conf does not exists in target server." +msgstr "La configuraciĆ³n del agente no existe en el servidor de destino." + +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:435 +#, php-format +msgid "Both %s servers must be in the same version" +msgstr "Ambos servidores %s deben estar en la misma versiĆ³n" + +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:436 +msgid "Check target server ip address is set" +msgstr "Comprueba que la IP del servidor de destino estĆ” configurada." + +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:446 +msgid "Move" +msgstr "Mover" + +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:461 +#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:123 +#: ../../enterprise/include/functions_inventory.php:142 +#: ../../enterprise/include/functions_inventory.php:176 +#: ../../include/functions_events.php:250 +msgid "Agent alias" +msgstr "Alias del agente" + +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:462 +msgid "Source node" +msgstr "Nodo de origen" + +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:463 +msgid "Target node" +msgstr "Nodo de destino" + +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:464 +#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:82 +#: ../../enterprise/godmode/massive/massive_delete_alerts_snmp.php:204 +#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:264 +#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:328 +#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:423 +#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:483 +#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:530 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:816 +#: ../../godmode/agentes/agent_incidents.php:91 +#: ../../godmode/snmpconsole/snmp_alert.php:1105 +#: ../../godmode/snmpconsole/snmp_alert.php:1168 +#: ../../godmode/alerts/alert_list.list.php:136 +#: ../../godmode/alerts/alert_templates.php:51 +#: ../../godmode/alerts/configure_alert_template.php:1118 +#: ../../godmode/alerts/alert_view.php:124 ../../godmode/setup/setup_integria.php:379 +#: ../../godmode/setup/setup_integria.php:501 +#: ../../include/functions_reporting_html.php:5133 +#: ../../include/functions_events.php:4213 +#: ../../operation/agentes/estado_generalagente.php:651 +#: ../../operation/incidents/integriaims_export_csv.php:85 +#: ../../operation/incidents/configure_integriaims_incident.php:296 +#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:325 +#: ../../operation/incidents/list_integriaims_incidents.php:348 +#: ../../operation/incidents/list_integriaims_incidents.php:519 +msgid "Priority" +msgstr "Prioridad" + +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:465 +#: ../../enterprise/include/class/CommandCenter.class.php:456 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:743 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:1048 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:1143 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:1493 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:1778 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2103 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2534 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2547 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2875 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:3052 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:3142 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:3181 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:3246 +#: ../../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:1578 +msgid "Step" +msgstr "Paso" + +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:467 +msgid "Active db only" +msgstr "BD activa solamente" + +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:520 +msgid "Creating modules in target node" +msgstr "Creando mĆ³dulos en el nodo de destino" + +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:524 +msgid "Disabling agent in source node and enabling in target one" +msgstr "" +"Deshabilitando el agente en el nodo de origen y habilitĆ”ndolo en el nodo de destino" + +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:528 +msgid "Transferring data" +msgstr "Transfiriendo datos" + +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:533 +msgid "Creating agent in target node" +msgstr "Creando agente en el nodo de destino" + +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:539 +#: ../../enterprise/include/functions_HA_cluster.php:542 +#: ../../enterprise/include/functions_HA_cluster.php:547 +#: ../../enterprise/include/class/DeploymentCenter.class.php:1618 +#: ../../enterprise/include/class/DeploymentCenter.class.php:1623 +#: ../../enterprise/include/class/DatabaseHA.class.php:208 +#: ../../enterprise/include/class/AgentRepository.class.php:862 +#: ../../enterprise/include/class/AgentRepository.class.php:867 +#: ../../enterprise/include/class/Omnishell.class.php:1079 +#: ../../enterprise/include/class/LogSource.class.php:795 +#: ../../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/operation/agentes/transactional_map.php:327 +#: ../../enterprise/operation/agentes/ux_console_view.php:210 +#: ../../enterprise/operation/agentes/ux_console_view.php:352 +#: ../../enterprise/operation/agentes/wux_console_view.php:452 +#: ../../godmode/wizards/DiscoveryTaskList.class.php:1058 +#: ../../include/ajax/snmp_browser.ajax.php:259 +#: ../../include/class/ConfigPEN.class.php:744 +#: ../../include/class/ConfigPEN.class.php:749 +#: ../../include/class/HelpFeedBack.class.php:354 +#: ../../include/class/Diagnostics.class.php:2086 +#: ../../include/class/CredentialStore.class.php:1192 +#: ../../include/class/CredentialStore.class.php:1197 +#: ../../include/class/ModuleTemplates.class.php:1424 +#: ../../include/class/ModuleTemplates.class.php:1429 +#: ../../include/class/WebServerModuleDebug.class.php:366 +#: ../../include/class/WebServerModuleDebug.class.php:371 +#: ../../include/class/AgentWizard.class.php:5841 +#: ../../include/class/AgentWizard.class.php:5846 +#: ../../include/lib/Dashboard/Widgets/wux_transaction.php:372 +#: ../../operation/visual_console/view.php:813 +#: ../../operation/visual_console/view.php:818 +msgid "Failed" +msgstr "Fallo" + +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:543 +#: ../../enterprise/meta/advanced/policymanager.queue.php:261 +#: ../../enterprise/godmode/policies/policy_queue.php:671 +#: ../../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:4064 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:4183 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:4337 +msgid "Finished" +msgstr "Terminado" + +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:544 +#: ../../update_manager_client/lib/UpdateManager/Client.php:1874 +msgid "Completed" +msgstr "Completado" + +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:549 +msgid "Queued" +msgstr "En espera" + +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:554 +#: ../../enterprise/operation/agentes/transactional_map.php:265 +#: ../../godmode/agentes/planned_downtime.list.php:616 +#: ../../godmode/agentes/planned_downtime.list.php:688 +msgid "Running" +msgstr "EjecutĆ”ndose" + +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:679 +msgid "checking migration requirements" +msgstr "Comprobando requisitos de migraciĆ³n" + +#: ../../enterprise/meta/advanced/servers.php:39 +#: ../../godmode/servers/modificar_server.php:180 +msgid "Server deleted successfully" +msgstr "Servidor eliminado correctamente" + +#: ../../enterprise/meta/advanced/servers.php:41 +#: ../../godmode/servers/modificar_server.php:182 +msgid "There was a problem deleting the server" +msgstr "Hubo un problema al eliminar el servidor" + +#: ../../enterprise/meta/advanced/metasetup.translate_string.php:129 +#: ../../enterprise/extensions/translate_string.php:253 +msgid "Translation added successfully" +msgstr "TraducciĆ³n aƱadida correctamente" + +#: ../../enterprise/meta/advanced/metasetup.translate_string.php:131 +#: ../../enterprise/extensions/translate_string.php:255 +msgid "Translation string could not be created" +msgstr "No se ha podido crear la cadena de traducciĆ³n" + +#: ../../enterprise/meta/advanced/metasetup.translate_string.php:144 +#: ../../enterprise/extensions/translate_string.php:268 +msgid "Translation updated successfully" +msgstr "TraducciĆ³n actualizada correctamente" + +#: ../../enterprise/meta/advanced/metasetup.translate_string.php:146 +#: ../../enterprise/extensions/translate_string.php:270 +msgid "Translation string could not be updated" +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:901 ../../operation/users/user_edit.php:325 +msgid "Language" +msgstr "Idioma" + +#: ../../enterprise/meta/advanced/metasetup.translate_string.php:186 +#: ../../enterprise/meta/advanced/metasetup.relations.php:451 +#: ../../enterprise/meta/advanced/collections.php:217 +#: ../../enterprise/meta/advanced/collections.php:230 +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:262 +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:359 +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:416 +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:684 +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:755 +#: ../../enterprise/meta/agentsearch.php:110 ../../enterprise/meta/general/header.php:44 +#: ../../enterprise/meta/general/header.php:46 +#: ../../enterprise/meta/general/main_header.php:689 +#: ../../enterprise/meta/general/main_header.php:691 +#: ../../enterprise/extensions/translate_string.php:323 +#: ../../enterprise/godmode/modules/local_components.php:573 +#: ../../enterprise/godmode/modules/local_components.php:598 +#: ../../enterprise/godmode/agentes/collection_manager.php:48 +#: ../../enterprise/godmode/agentes/collections.php:365 +#: ../../enterprise/godmode/policies/policy_collections.php:254 +#: ../../enterprise/godmode/policies/policy_agents.php:822 +#: ../../enterprise/godmode/policies/policy_agents.php:835 +#: ../../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:513 +#: ../../enterprise/operation/log/log_viewer.php:796 +#: ../../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 +#: ../../enterprise/operation/services/services.table_services.php:147 +#: ../../enterprise/operation/services/services.table_services.php:238 +#: ../../enterprise/tools/ipam/ipam_supernet_config.php:760 +#: ../../enterprise/tools/ipam/ipam_supernet_config.php:797 +#: ../../enterprise/tools/ipam/ipam_list.php:90 +#: ../../enterprise/tools/ipam/ipam_list.php:164 +#: ../../enterprise/tools/ipam/ipam_network_location_config.php:164 +#: ../../enterprise/tools/ipam/ipam_network_location_config.php:173 +#: ../../enterprise/tools/ipam/ipam_vlan_config.php:432 +#: ../../enterprise/tools/ipam/ipam_vlan_config.php:439 +#: ../../extensions/module_groups.php:283 +#: ../../godmode/modules/manage_network_components.php:678 +#: ../../godmode/groups/group_list.php:785 ../../godmode/groups/group_list.php:795 +#: ../../godmode/users/user_list.php:402 ../../godmode/users/user_list.php:412 +#: ../../godmode/agentes/modificar_agente.php:363 +#: ../../godmode/agentes/modificar_agente.php:372 +#: ../../godmode/agentes/planned_downtime.list.php:284 +#: ../../godmode/agentes/planned_downtime.list.php:368 +#: ../../godmode/agentes/module_manager.php:65 +#: ../../godmode/alerts/alert_actions.php:244 ../../godmode/alerts/alert_actions.php:302 +#: ../../godmode/alerts/alert_templates.php:314 +#: ../../godmode/alerts/alert_templates.php:325 +#: ../../godmode/reporting/map_builder.php:350 +#: ../../godmode/reporting/map_builder.php:372 ../../godmode/reporting/graphs.php:241 +#: ../../godmode/reporting/visual_console_favorite.php:158 +#: ../../godmode/reporting/visual_console_favorite.php:188 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1238 +#: ../../godmode/reporting/reporting_builder.php:796 +#: ../../godmode/module_library/module_library_view.php:102 +#: ../../godmode/module_library/module_library_view.php:112 +#: ../../mobile/operation/agent.php:320 ../../include/ajax/heatmap.ajax.php:70 +#: ../../include/functions_snmp.php:358 ../../include/class/AuditLog.class.php:180 +#: ../../include/class/CalendarManager.class.php:1071 +#: ../../include/class/AgentWizard.class.php:2632 +#: ../../include/functions_snmp_browser.php:925 +#: ../../include/functions_snmp_browser.php:1509 ../../operation/search_results.php:192 +#: ../../operation/agentes/estado_agente.php:280 +#: ../../operation/agentes/estado_agente.php:291 +#: ../../operation/agentes/status_monitor.php:547 ../../general/ui/agents_list.php:100 +#: ../../general/ui/agents_list.php:113 +msgid "Search" +msgstr "Buscar" + +#: ../../enterprise/meta/advanced/metasetup.translate_string.php:187 +#: ../../enterprise/meta/advanced/metasetup.translate_string.php:188 +#: ../../enterprise/extensions/translate_string.php:313 +#: ../../enterprise/extensions/translate_string.php:314 +#: ../../enterprise/godmode/agentes/collection_manager.php:42 +#: ../../enterprise/godmode/agentes/collections.php:361 +#: ../../enterprise/godmode/policies/policies.php:326 +#: ../../enterprise/godmode/policies/policy_collections.php:248 +msgid "Free text for search (*)" +msgstr "Texto libre para buscar (*)" + +#: ../../enterprise/meta/advanced/metasetup.translate_string.php:206 +#: ../../enterprise/extensions/translate_string.php:334 +msgid "Original string" +msgstr "Cadena original" + +#: ../../enterprise/meta/advanced/metasetup.translate_string.php:207 +#: ../../enterprise/extensions/translate_string.php:335 +msgid "Translation in selected language" +msgstr "TraducciĆ³n en el idioma seleccionado" + +#: ../../enterprise/meta/advanced/metasetup.translate_string.php:208 +#: ../../enterprise/extensions/translate_string.php:336 +msgid "Customize translation" +msgstr "Personalizar traducciĆ³n" + +#: ../../enterprise/meta/advanced/metasetup.relations.php:218 +#: ../../enterprise/meta/advanced/metasetup.relations.php:572 +#: ../../enterprise/meta/include/functions_autoprovision.php:388 +#: ../../enterprise/meta/include/functions_wizard_meta.php:494 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:755 +#: ../../enterprise/godmode/setup/setup_acl.php:463 +#: ../../enterprise/godmode/setup/setup_acl.php:765 +#: ../../enterprise/include/functions_cron.php:582 +#: ../../enterprise/include/lib/NetworkManager.php:87 +#: ../../godmode/agentes/module_manager_editor_wmi.php:61 +#: ../../godmode/agentes/module_manager_editor_network.php:96 +#: ../../godmode/massive/massive_edit_modules.php:819 +#: ../../include/functions_html.php:1890 ../../include/functions_html.php:1891 +#: ../../include/functions_html.php:2001 ../../include/functions_html.php:2002 +#: ../../include/functions_html.php:2162 ../../include/functions_html.php:2163 +#: ../../include/class/CredentialStore.class.php:945 +#: ../../operation/netflow/nf_live_view.php:392 +msgid "Custom" +msgstr "Personalizado" + +#: ../../enterprise/meta/advanced/metasetup.relations.php:239 +msgid "Node Address Default" +msgstr "DirecciĆ³n del nodo por defecto" + +#: ../../enterprise/meta/advanced/metasetup.relations.php:271 +#: ../../enterprise/meta/advanced/metasetup.relations.php:388 +msgid "This value will be the one returned by the API" +msgstr "Este serĆ” el valor devuelto por la API" + +#: ../../enterprise/meta/advanced/metasetup.relations.php:305 +msgid "Import file" +msgstr "Importar archivo" + +#: ../../enterprise/meta/advanced/metasetup.relations.php:319 +msgid "Ip Gateway" +msgstr "Puerta de enlace de la IP" + +#: ../../enterprise/meta/advanced/metasetup.relations.php:320 +#: ../../enterprise/meta/advanced/metasetup.relations.php:564 +msgid "Imei" +msgstr "IMEI" + +#: ../../enterprise/meta/advanced/metasetup.relations.php:330 +#: ../../include/class/NetworkMap.class.php:3086 +#: ../../include/class/NetworkMap.class.php:3087 +msgid "Relations" +msgstr "Relaciones" + +#: ../../enterprise/meta/advanced/metasetup.relations.php:351 +msgid "Relation" +msgstr "RelaciĆ³n" + +#: ../../enterprise/meta/advanced/metasetup.relations.php:361 +#: ../../enterprise/meta/advanced/metasetup.relations.php:440 +msgid "Node Address" +msgstr "DirecciĆ³n del nodo" + +#: ../../enterprise/meta/advanced/metasetup.relations.php:398 +msgid "Insert relation" +msgstr "Insertar relaciĆ³n" + +#: ../../enterprise/meta/advanced/metasetup.relations.php:406 +msgid "Show list relations" +msgstr "Mostrar lista de relaciones" + +#: ../../enterprise/meta/advanced/metasetup.relations.php:430 +#: ../../enterprise/meta/include/functions_autoprovision.php:643 +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:496 +#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:548 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:827 +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:413 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2530 +#: ../../enterprise/include/functions_reporting_csv.php:1158 +#: ../../enterprise/include/functions_reporting_csv.php:1184 +#: ../../enterprise/include/functions_reporting_csv.php:1215 +#: ../../enterprise/include/functions_reporting_csv.php:1270 +#: ../../enterprise/include/functions_reporting_csv.php:1374 +#: ../../enterprise/include/functions_reporting_csv.php:2681 +#: ../../enterprise/operation/services/services.service.php:124 +#: ../../enterprise/operation/services/services.list.php:506 +#: ../../godmode/agentes/module_manager_editor_common.php:1214 +#: ../../godmode/snmpconsole/snmp_trap_generator.php:115 +#: ../../godmode/massive/massive_edit_modules.php:884 +#: ../../godmode/alerts/configure_alert_template.php:816 +#: ../../godmode/setup/setup_visuals.php:1342 ../../godmode/setup/setup_visuals.php:1403 +#: ../../godmode/setup/setup_visuals.php:1423 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2643 +#: ../../godmode/reporting/visual_console_builder.wizard.php:319 +#: ../../include/functions_visual_map_editor.php:693 +#: ../../include/functions_reporting_html.php:940 +#: ../../include/functions_reporting_html.php:2245 +#: ../../include/functions_reporting_html.php:4740 +#: ../../include/functions_reporting_html.php:5251 ../../include/ajax/events.php:2116 +#: ../../include/functions_graph.php:5394 +#: ../../include/rest-api/models/VisualConsole/Items/Percentile.php:505 +#: ../../include/functions_reports.php:1068 ../../include/functions_netflow.php:212 +#: ../../include/functions_snmp_browser.php:560 +msgid "Value" +msgstr "Valor" + +#: ../../enterprise/meta/advanced/metasetup.relations.php:462 +msgid "Show Filters" +msgstr "Mostrar filtros" + +#: ../../enterprise/meta/advanced/metasetup.relations.php:549 +msgid "Node address" +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:278 +#: ../../enterprise/godmode/policies/policy_alerts.php:575 +#: ../../enterprise/godmode/policies/policy_modules.php:1466 +#: ../../enterprise/godmode/admin_access_logs.php:54 +#: ../../enterprise/godmode/alerts/alert_inventory_builder.php:241 +#: ../../enterprise/godmode/alerts/alert_inventory_list.php:379 +#: ../../enterprise/godmode/services/services.massive.elements.php:66 +#: ../../enterprise/godmode/reporting/graph_template_list.php:209 +#: ../../enterprise/godmode/reporting/graph_template_item_editor.php:191 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3535 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3733 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3756 +#: ../../enterprise/godmode/servers/manage_export.php:142 +#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:413 +#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:475 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2629 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2949 +#: ../../enterprise/include/functions_services.php:1615 +#: ../../enterprise/operation/agentes/policy_view.php:260 +#: ../../enterprise/tools/ipam/ipam_list.php:639 +#: ../../enterprise/tools/ipam/ipam_network_location_config.php:258 +#: ../../godmode/modules/manage_nc_groups.php:243 +#: ../../godmode/modules/manage_network_components.php:755 +#: ../../godmode/modules/manage_network_templates.php:248 +#: ../../godmode/agentes/agent_template.php:238 +#: ../../godmode/agentes/planned_downtime.editor.php:1008 +#: ../../godmode/agentes/module_manager.php:867 +#: ../../godmode/netflow/nf_item_list.php:178 ../../godmode/netflow/nf_edit.php:161 +#: ../../godmode/snmpconsole/snmp_alert.php:1278 +#: ../../godmode/snmpconsole/snmp_alert.php:1435 +#: ../../godmode/snmpconsole/snmp_filters.php:291 +#: ../../godmode/massive/massive_operations.php:426 +#: ../../godmode/massive/massive_standby_alerts.php:250 +#: ../../godmode/massive/massive_delete_action_alerts.php:270 +#: ../../godmode/massive/massive_enable_disable_alerts.php:222 +#: ../../godmode/massive/massive_add_action_alerts.php:248 +#: ../../godmode/alerts/alert_list.list.php:760 ../../godmode/alerts/alert_view.php:388 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3941 +#: ../../godmode/reporting/reporting_builder.item_editor.php:4432 +#: ../../godmode/reporting/reporting_builder.item_editor.php:4453 +#: ../../godmode/reporting/visual_console_builder.elements.php:118 +#: ../../godmode/events/event_filter.php:141 ../../mobile/operation/tactical.php:348 +#: ../../include/functions_reporting_html.php:3229 +#: ../../include/functions_reporting_html.php:5771 ../../include/functions.php:3053 +#: ../../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 +#: ../../include/class/AgentsAlerts.class.php:892 +#: ../../include/class/AuditLog.class.php:109 ../../include/class/AuditLog.class.php:201 +#: ../../include/class/ModuleTemplates.class.php:894 +#: ../../include/functions_ui_renders.php:117 +#: ../../operation/agentes/alerts_status.functions.php:127 +#: ../../operation/snmpconsole/snmp_view.php:891 +#: ../../operation/snmpconsole/snmp_view.php:1266 ../../operation/search_alerts.php:37 +#: ../../general/logon_ok.php:241 +msgid "Action" +msgstr "AcciĆ³n" + +#: ../../enterprise/meta/advanced/metasetup.relations.php:562 +msgid "Gateway" +msgstr "Puerta de enlace" + +#: ../../enterprise/meta/advanced/metasetup.relations.php:642 +msgid "There are no relations yet" +msgstr "AĆŗn no hay relaciones" + +#: ../../enterprise/meta/advanced/metasetup.password.php:73 +msgid "Passwords" +msgstr "ContraseƱas" + +#: ../../enterprise/meta/advanced/metasetup.password.php:79 +#: ../../enterprise/meta/include/functions_meta.php:344 +#: ../../enterprise/godmode/setup/setup.php:383 ../../include/functions_config.php:466 +msgid "Enable password policy" +msgstr "Habilitar polĆ­tica de contraseƱas" + +#: ../../enterprise/meta/advanced/metasetup.password.php:80 +#: ../../enterprise/meta/advanced/metasetup.password.php:122 +#: ../../enterprise/meta/advanced/metasetup.password.php:127 +#: ../../enterprise/meta/advanced/metasetup.password.php:133 +#: ../../enterprise/meta/advanced/metasetup.password.php:139 +#: ../../enterprise/meta/advanced/metasetup.password.php:143 +#: ../../enterprise/meta/advanced/metasetup.password.php:147 +#: ../../enterprise/meta/advanced/metasetup.setup.php:149 +#: ../../enterprise/meta/advanced/metasetup.setup.php:203 +#: ../../enterprise/meta/advanced/metasetup.setup.php:219 +#: ../../enterprise/meta/advanced/metasetup.setup.php:223 +#: ../../enterprise/meta/advanced/metasetup.setup.php:285 +#: ../../enterprise/meta/advanced/metasetup.setup.php:299 +#: ../../enterprise/meta/advanced/metasetup.setup.php:321 +#: ../../enterprise/meta/advanced/metasetup.setup.php:325 +#: ../../enterprise/meta/advanced/metasetup.setup.php:347 +#: ../../enterprise/meta/advanced/metasetup.performance.php:85 +#: ../../enterprise/meta/advanced/metasetup.performance.php:89 +#: ../../enterprise/meta/monitoring/wizard/wizard.php:136 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:553 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:574 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:644 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:665 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:705 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:967 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:1005 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:1033 +#: ../../enterprise/godmode/setup/setup_auth.php:208 +#: ../../enterprise/godmode/setup/setup_auth.php:338 +#: ../../enterprise/godmode/setup/setup_auth.php:386 +#: ../../enterprise/godmode/setup/setup_auth.php:1181 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:553 +#: ../../enterprise/godmode/reporting/graph_template_item_editor.php:209 +#: ../../enterprise/godmode/reporting/visual_console_template.php:286 +#: ../../enterprise/include/functions_cron.php:757 +#: ../../enterprise/include/functions_tasklist.php:323 +#: ../../enterprise/include/functions_reporting_csv.php:1940 +#: ../../enterprise/include/functions_reporting.php:2338 +#: ../../godmode/update_manager/update_manager.setup.php:372 +#: ../../godmode/users/configure_user.php:1080 +#: ../../godmode/agentes/agent_conf_gis.php:125 +#: ../../godmode/massive/massive_edit_agents.php:663 +#: ../../godmode/massive/massive_edit_agents.php:986 +#: ../../godmode/massive/massive_edit_agents.php:995 +#: ../../godmode/massive/massive_edit_modules.php:616 +#: ../../godmode/massive/massive_edit_modules.php:638 +#: ../../godmode/massive/massive_edit_modules.php:707 +#: ../../godmode/massive/massive_edit_modules.php:729 +#: ../../godmode/massive/massive_edit_modules.php:769 +#: ../../godmode/massive/massive_edit_modules.php:1043 +#: ../../godmode/massive/massive_edit_modules.php:1081 +#: ../../godmode/massive/massive_edit_modules.php:1109 +#: ../../godmode/alerts/alert_view.php:129 ../../godmode/alerts/alert_view.php:259 +#: ../../godmode/reporting/reporting_builder.main.php:194 +#: ../../godmode/reporting/reporting_builder.php:1090 +#: ../../godmode/reporting/visual_console_builder.wizard.php:380 +#: ../../godmode/reporting/visual_console_builder.wizard.php:467 +#: ../../godmode/servers/modificar_server.php:47 +#: ../../include/functions_reporting_html.php:1625 ../../include/functions_cron.php:648 +#: ../../include/functions_profile.php:276 ../../include/functions_snmp.php:390 +#: ../../operation/users/user_edit.php:321 ../../operation/netflow/nf_live_view.php:460 +#: ../../operation/snmpconsole/snmp_view.php:653 +msgid "Yes" +msgstr "SĆ­" + +#: ../../enterprise/meta/advanced/metasetup.password.php:81 +#: ../../enterprise/meta/advanced/metasetup.password.php:123 +#: ../../enterprise/meta/advanced/metasetup.password.php:128 +#: ../../enterprise/meta/advanced/metasetup.password.php:134 +#: ../../enterprise/meta/advanced/metasetup.password.php:140 +#: ../../enterprise/meta/advanced/metasetup.password.php:144 +#: ../../enterprise/meta/advanced/metasetup.password.php:148 +#: ../../enterprise/meta/advanced/metasetup.setup.php:150 +#: ../../enterprise/meta/advanced/metasetup.setup.php:213 +#: ../../enterprise/meta/advanced/metasetup.setup.php:220 +#: ../../enterprise/meta/advanced/metasetup.setup.php:224 +#: ../../enterprise/meta/advanced/metasetup.setup.php:286 +#: ../../enterprise/meta/advanced/metasetup.setup.php:309 +#: ../../enterprise/meta/advanced/metasetup.setup.php:322 +#: ../../enterprise/meta/advanced/metasetup.setup.php:335 +#: ../../enterprise/meta/advanced/metasetup.setup.php:357 +#: ../../enterprise/meta/advanced/metasetup.performance.php:86 +#: ../../enterprise/meta/advanced/metasetup.performance.php:90 +#: ../../enterprise/meta/monitoring/wizard/wizard.php:137 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:554 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:575 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:645 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:666 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:706 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:967 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:1006 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:1034 +#: ../../enterprise/godmode/setup/setup.php:64 +#: ../../enterprise/godmode/setup/setup_auth.php:208 +#: ../../enterprise/godmode/setup/setup_auth.php:341 +#: ../../enterprise/godmode/setup/setup_auth.php:389 +#: ../../enterprise/godmode/setup/setup_auth.php:1184 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:555 +#: ../../enterprise/godmode/reporting/graph_template_item_editor.php:211 +#: ../../enterprise/godmode/reporting/visual_console_template.php:286 +#: ../../enterprise/include/functions_cron.php:756 +#: ../../enterprise/include/functions_tasklist.php:323 +#: ../../enterprise/include/functions_reporting_csv.php:1940 +#: ../../enterprise/include/functions_reporting.php:2338 +#: ../../godmode/update_manager/update_manager.setup.php:373 +#: ../../godmode/users/configure_user.php:1081 +#: ../../godmode/agentes/agent_conf_gis.php:126 +#: ../../godmode/massive/massive_edit_agents.php:664 +#: ../../godmode/massive/massive_edit_agents.php:987 +#: ../../godmode/massive/massive_edit_agents.php:996 +#: ../../godmode/massive/massive_edit_modules.php:617 +#: ../../godmode/massive/massive_edit_modules.php:639 +#: ../../godmode/massive/massive_edit_modules.php:708 +#: ../../godmode/massive/massive_edit_modules.php:730 +#: ../../godmode/massive/massive_edit_modules.php:770 +#: ../../godmode/massive/massive_edit_modules.php:1043 +#: ../../godmode/massive/massive_edit_modules.php:1082 +#: ../../godmode/massive/massive_edit_modules.php:1110 +#: ../../godmode/alerts/alert_view.php:129 ../../godmode/alerts/alert_view.php:259 +#: ../../godmode/alerts/alert_view.php:352 ../../godmode/setup/news.php:287 +#: ../../godmode/reporting/reporting_builder.main.php:204 +#: ../../godmode/reporting/reporting_builder.php:1092 +#: ../../godmode/reporting/visual_console_builder.wizard.php:390 +#: ../../godmode/reporting/visual_console_builder.wizard.php:468 +#: ../../godmode/servers/modificar_server.php:45 ../../mobile/operation/events.php:365 +#: ../../mobile/operation/events.php:373 ../../include/functions_reporting_html.php:1625 +#: ../../include/functions_cron.php:648 ../../include/functions_profile.php:276 +#: ../../include/functions_snmp.php:382 ../../include/functions_events.php:4576 +#: ../../include/functions_events.php:4581 ../../operation/users/user_edit.php:322 +#: ../../operation/netflow/nf_live_view.php:470 +#: ../../operation/snmpconsole/snmp_view.php:654 +msgid "No" +msgstr "No" + +#: ../../enterprise/meta/advanced/metasetup.password.php:101 +#: ../../enterprise/meta/include/functions_meta.php:354 +#: ../../enterprise/godmode/setup/setup.php:392 ../../include/functions_config.php:470 +msgid "Min. size password" +msgstr "ContraseƱa con tamaƱo mĆ­nimo" + +#: ../../enterprise/meta/advanced/metasetup.password.php:102 +#: ../../enterprise/godmode/setup/setup.php:400 +msgid " Caracters" +msgstr " Caracteres" + +#: ../../enterprise/meta/advanced/metasetup.password.php:105 +#: ../../enterprise/meta/include/functions_meta.php:384 +#: ../../enterprise/godmode/setup/setup.php:421 ../../include/functions_config.php:474 +msgid "Password expiration" +msgstr "ExpiraciĆ³n de contraseƱa" + +#: ../../enterprise/meta/advanced/metasetup.password.php:105 +msgid "Set 0 if never expire." +msgstr "Introduce 0 para que nunca expire." + +#: ../../enterprise/meta/advanced/metasetup.password.php:106 +#: ../../enterprise/godmode/setup/setup.php:429 +msgid " Days" +msgstr " DĆ­as" + +#: ../../enterprise/meta/advanced/metasetup.password.php:109 +#: ../../enterprise/meta/include/functions_meta.php:404 +#: ../../enterprise/godmode/setup/setup.php:441 ../../include/functions_config.php:482 +msgid "User blocked if login fails" +msgstr "Usuario bloqueado si la identificaciĆ³n falla" + +#: ../../enterprise/meta/advanced/metasetup.password.php:110 +#: ../../enterprise/godmode/setup/setup.php:449 +msgid " Minutes" +msgstr " Minutos" + +#: ../../enterprise/meta/advanced/metasetup.password.php:113 +#: ../../enterprise/meta/include/functions_meta.php:414 +#: ../../enterprise/godmode/setup/setup.php:452 ../../include/functions_config.php:486 +msgid "Number of failed login attempts" +msgstr "NĆŗmero de intentos de identificaciĆ³n fallidos" + +#: ../../enterprise/meta/advanced/metasetup.password.php:113 +msgid "Two attempts minimum" +msgstr "2 intentos mĆ­nimo" + +#: ../../enterprise/meta/advanced/metasetup.password.php:114 +#: ../../enterprise/godmode/setup/setup.php:460 +msgid " Attempts" +msgstr " Intentos" + +#: ../../enterprise/meta/advanced/metasetup.password.php:117 +#: ../../enterprise/meta/include/functions_meta.php:436 +#: ../../enterprise/godmode/setup/setup.php:481 ../../include/functions_config.php:506 +msgid "Compare previous password" +msgstr "Comparar la contraseƱa anterior" + +#: ../../enterprise/meta/advanced/metasetup.password.php:121 +#: ../../enterprise/meta/include/functions_meta.php:424 +#: ../../enterprise/godmode/setup/setup.php:472 ../../include/functions_config.php:502 +msgid "Enable password history" +msgstr "Activar histĆ³rico de contraseƱas" + +#: ../../enterprise/meta/advanced/metasetup.password.php:126 +#: ../../enterprise/meta/include/functions_meta.php:447 +#: ../../enterprise/godmode/setup/setup.php:463 ../../include/functions_config.php:498 +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:132 +#: ../../enterprise/meta/include/functions_meta.php:394 +#: ../../enterprise/godmode/setup/setup.php:432 ../../include/functions_config.php:478 +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:138 +#: ../../enterprise/meta/include/functions_meta.php:364 +#: ../../enterprise/godmode/setup/setup.php:403 ../../include/functions_config.php:490 +msgid "Password must have numbers" +msgstr "La contraseƱa debe contener nĆŗmeros." + +#: ../../enterprise/meta/advanced/metasetup.password.php:142 +#: ../../enterprise/meta/include/functions_meta.php:374 +#: ../../enterprise/godmode/setup/setup.php:412 ../../include/functions_config.php:494 +msgid "Password must have symbols" +msgstr "La contraseƱa debe contener sĆ­mbolos." + +#: ../../enterprise/meta/advanced/metasetup.password.php:146 +#: ../../enterprise/meta/include/functions_meta.php:458 +#: ../../enterprise/godmode/setup/setup.php:493 ../../include/functions_config.php:510 +msgid "Activate reset password" +msgstr "Activar reseteo de contraseƱa" + +#: ../../enterprise/meta/advanced/agents_setup.php:60 +#: ../../enterprise/meta/advanced/policymanager.php:54 +#: ../../enterprise/meta/monitoring/custom_fields_view.php:50 +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:55 +#: ../../enterprise/meta/monitoring/group_view.php:51 +#: ../../enterprise/meta/monitoring/tactical.php:38 ../../enterprise/meta/index.php:956 +#: ../../enterprise/meta/agentsearch.php:48 +#: ../../enterprise/meta/general/logon_ok.php:16 +#: ../../enterprise/extensions/vmware/vmware_view.php:1373 +#: ../../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:1377 +#: ../../operation/netflow/nf_live_view.php:149 +msgid "Main" +msgstr "Principal" + +#: ../../enterprise/meta/advanced/agents_setup.php:64 +msgid "Propagation" +msgstr "PropagaciĆ³n" + +#: ../../enterprise/meta/advanced/agents_setup.autoprovision_rules.php:64 +msgid "Cannot create an unnamed rule." +msgstr "No se pudo crear una regla sin nombre." + +#: ../../enterprise/meta/advanced/agents_setup.autoprovision_rules.php:75 +#: ../../enterprise/meta/advanced/agents_setup.autoprovision_rules.php:105 +msgid "Error creating provisioning rule." +msgstr "Error al crear la regla de aprovisionamiento" + +#: ../../enterprise/meta/advanced/agents_setup.autoprovision_rules.php:91 +#: ../../enterprise/meta/advanced/agents_setup.autoprovision_rules.php:119 +msgid "Error updating provisioning rule." +msgstr "Error al actualizar la regla de aprovisionamiento" + +#: ../../enterprise/meta/advanced/agents_setup.autoprovision_rules.php:125 +msgid "Error deleting provisioning rule." +msgstr "Error al borrar la regla de aprovisionamiento." + +#: ../../enterprise/meta/advanced/agents_setup.autoprovision_rules.php:135 +msgid "There was an error rule when moving the provisioning." +msgstr "Error al mover la regla de aprovisionamiento." + +#: ../../enterprise/meta/advanced/agents_setup.autoprovision_rules.php:201 +#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:190 +msgid "Create rule" +msgstr "Crear regla" + +#: ../../enterprise/meta/advanced/agents_setup.autoprovision_rules.php:202 +msgid "Edit rule" +msgstr "Editar regla" + +#: ../../enterprise/meta/advanced/metasetup.mail.php:79 +#: ../../godmode/update_manager/update_manager.setup.php:168 +#: ../../godmode/update_manager/update_manager.setup.php:243 +msgid "Succesful Update the url config vars." +msgstr "Variables de configuraciĆ³n de la URL actualizadas correctamente." + +#: ../../enterprise/meta/advanced/metasetup.mail.php:80 +#: ../../godmode/update_manager/update_manager.setup.php:169 +#: ../../godmode/update_manager/update_manager.setup.php:244 +msgid "Unsuccesful Update the url config vars." +msgstr "Error al actualizar las variables de configuraciĆ³n de la URL." + +#: ../../enterprise/meta/advanced/metasetup.mail.php:98 +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 587.\n" +"\n" +"If you have manual settings in your pandora_server.conf, please note these settings " +"will ignore this console setup." +msgstr "" +"Tenga en cuenta que algunos proveedores como Gmail o Office 365 necesitan ajustar/" +"habilitar conexiones externas manualmente utilizando SMTP y necesita usar STARTTLS en " +"el puerto 587.\n" +"\n" +"Si tiene configuraciones manuales en su pandora_server.conf, tenga presente que " +"dichos ajustes ignorarĆ”n los ajustes de la consola." + +#: ../../enterprise/meta/advanced/metasetup.mail.php:104 +#: ../../godmode/setup/setup_general.php:518 +msgid "Mail configuration" +msgstr "ConfiguraciĆ³n de email" + +#: ../../enterprise/meta/advanced/metasetup.mail.php:109 +#: ../../include/functions_config.php:370 +msgid "From dir" +msgstr "Desde dir" + +#: ../../enterprise/meta/advanced/metasetup.mail.php:112 +#: ../../godmode/setup/setup_general.php:538 ../../include/functions_config.php:374 +msgid "From name" +msgstr "Desde nombre" + +#: ../../enterprise/meta/advanced/metasetup.mail.php:115 +#: ../../include/functions_config.php:366 +msgid "Server SMTP" +msgstr "Servidor SMTP" + +#: ../../enterprise/meta/advanced/metasetup.mail.php:118 +#: ../../include/functions_config.php:378 +msgid "Port SMTP" +msgstr "Puerto SMTP" + +#: ../../enterprise/meta/advanced/metasetup.mail.php:121 +#: ../../godmode/setup/setup_general.php:579 ../../include/functions_config.php:386 +msgid "Email user" +msgstr "Usuario de email" + +#: ../../enterprise/meta/advanced/metasetup.mail.php:124 +#: ../../godmode/setup/setup_general.php:589 ../../include/functions_config.php:390 +msgid "Email password" +msgstr "ContraseƱa de email" + +#: ../../enterprise/meta/advanced/metasetup.php:55 +msgid "Consoles Setup" +msgstr "ConfiguraciĆ³n de consolas" + +#: ../../enterprise/meta/advanced/metasetup.php:63 +#: ../../enterprise/meta/advanced/metasetup.php:216 +msgid "General setup" +msgstr "ConfiguraciĆ³n general" + +#: ../../enterprise/meta/advanced/metasetup.php:71 +#: ../../enterprise/meta/advanced/metasetup.php:219 +msgid "Passwords setup" +msgstr "ConfiguraciĆ³n de contraseƱas" + +#: ../../enterprise/meta/advanced/metasetup.php:80 +#: ../../enterprise/meta/advanced/metasetup.php:223 +#: ../../enterprise/meta/include/functions_meta.php:293 +#: ../../enterprise/meta/general/main_header.php:143 +#: ../../enterprise/meta/general/main_menu.php:249 +#: ../../enterprise/operation/log/elasticsearch_interface.php:31 +#: ../../enterprise/operation/log/log_viewer.php:377 +#: ../../enterprise/operation/log/log_viewer.php:417 +#: ../../enterprise/operation/menu.php:181 +msgid "Log viewer" +msgstr "Visor de logs" + +#: ../../enterprise/meta/advanced/metasetup.php:91 +#: ../../enterprise/meta/advanced/metasetup.php:227 ../../godmode/menu.php:339 +#: ../../godmode/setup/setup.php:113 ../../godmode/setup/setup.php:255 +msgid "Authentication" +msgstr "AutentificaciĆ³n" + +#: ../../enterprise/meta/advanced/metasetup.php:101 +#: ../../enterprise/meta/advanced/metasetup.php:231 +msgid "Visual setup" +msgstr "ConfiguraciĆ³n visual" + +#: ../../enterprise/meta/advanced/metasetup.php:109 +#: ../../enterprise/meta/advanced/metasetup.php:235 +msgid "Performance setup" +msgstr "ConfiguraciĆ³n del rendimiento" + +#: ../../enterprise/meta/advanced/metasetup.php:117 +#: ../../enterprise/meta/advanced/metasetup.php:239 ../../godmode/menu.php:407 +#: ../../godmode/setup/file_manager.php:47 ../../godmode/setup/file_manager.php:60 +msgid "File manager" +msgstr "Gestor de archivos" + +#: ../../enterprise/meta/advanced/metasetup.php:125 +#: ../../enterprise/meta/advanced/metasetup.php:243 +msgid "Strings translation" +msgstr "TraducciĆ³n de cadenas" + +#: ../../enterprise/meta/advanced/metasetup.php:133 +#: ../../enterprise/meta/advanced/metasetup.php:247 +msgid "Mail" +msgstr "Correo electrĆ³nico" + +#: ../../enterprise/meta/advanced/metasetup.php:141 +#: ../../enterprise/meta/advanced/metasetup.php:251 ../../godmode/menu.php:363 +#: ../../godmode/setup/setup.php:204 ../../godmode/setup/setup.php:300 +msgid "Notifications" +msgstr "Notificaciones" + +#: ../../enterprise/meta/advanced/metasetup.php:153 +msgid "Relations rules" +msgstr "Normas de relaciĆ³n" + +#: ../../enterprise/meta/advanced/metasetup.php:166 +msgid "Warp Update Setup" +msgstr "ConfiguraciĆ³n de Warp Update" + +#: ../../enterprise/meta/advanced/metasetup.php:174 +msgid "Warp Update Journal" +msgstr "Diario de Warp update" + +#: ../../enterprise/meta/advanced/metasetup.php:182 +msgid "Warp Update Offline" +msgstr "Warp update Sin conexiĆ³n" + +#: ../../enterprise/meta/advanced/metasetup.php:190 +msgid "Warp Update Online" +msgstr "Warp Update En lĆ­nea" + +#: ../../enterprise/meta/advanced/metasetup.php:211 +msgid "Consoles setup" +msgstr "ConfiguraciĆ³n de las consolas" + +#: ../../enterprise/meta/advanced/metasetup.php:255 +msgid "Relations Rules" +msgstr "Normas de relaciĆ³n" + +#: ../../enterprise/meta/advanced/metasetup.php:259 +msgid "Online Update Options" +msgstr "Opciones de actualizaciĆ³n online" + +#: ../../enterprise/meta/advanced/metasetup.php:263 +msgid "Online Update Journal" +msgstr "Update Journal en lĆ­nea" + +#: ../../enterprise/meta/advanced/metasetup.php:268 +msgid "Online Update Offline" +msgstr "ActualizaciĆ³n sin conexiĆ³n" + +#: ../../enterprise/meta/advanced/metasetup.php:275 +msgid "Online Update Online" +msgstr "ActualizaciĆ³n en lĆ­nea" + +#: ../../enterprise/meta/advanced/policymanager.apply.php:129 +#: ../../enterprise/godmode/policies/policy.php:198 +#: ../../enterprise/godmode/policies/policy.php:246 +msgid "Duplicated or incompatible operation in the queue" +msgstr "OperaciĆ³n duplicada o incompatible en la cola" + +#: ../../enterprise/meta/advanced/policymanager.apply.php:137 +#: ../../enterprise/meta/advanced/policymanager.apply.php:141 +#: ../../enterprise/godmode/policies/policy.php:186 +#: ../../enterprise/godmode/policies/policy.php:241 +msgid "Operation successfully added to the queue" +msgstr "OperaciĆ³n aƱadida correctamente a la cola" + +#: ../../enterprise/meta/advanced/policymanager.apply.php:141 +#: ../../enterprise/meta/advanced/policymanager.apply.php:149 +msgid "Only database" +msgstr "Bases de datos solamente" + +#: ../../enterprise/meta/advanced/policymanager.apply.php:145 +#: ../../enterprise/meta/advanced/policymanager.apply.php:149 +#: ../../enterprise/meta/advanced/policymanager.apply.php:153 +#: ../../enterprise/godmode/policies/policy.php:192 +#: ../../enterprise/godmode/policies/policy.php:242 +msgid "Operation cannot be added to the queue" +msgstr "La operaciĆ³n no se puede aƱadir a la cola." + +#: ../../enterprise/meta/advanced/policymanager.apply.php:186 +msgid "Apply Policies" +msgstr "Aplicar polĆ­ticas" + +#: ../../enterprise/meta/advanced/policymanager.apply.php:198 +#: ../../enterprise/include/functions_groups.php:33 +#: ../../enterprise/operation/agentes/ver_agente.php:239 +#: ../../include/functions_networkmap.php:1299 ../../include/functions_maps.php:42 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:333 ../../operation/tree.php:127 +#: ../../operation/search_results.php:171 ../../operation/search_main.php:73 +msgid "Policies" +msgstr "PolĆ­ticas" + +#: ../../enterprise/meta/advanced/policymanager.apply.php:200 +#: ../../enterprise/godmode/servers/HA_cluster.php:97 ../../godmode/menu.php:286 +#: ../../godmode/setup/os.php:225 +#: ../../godmode/reporting/visual_console_builder.wizard.php:333 +#: ../../mobile/include/functions_web.php:28 +msgid "Servers" +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 +#: ../../include/functions_visual_map_editor.php:641 +msgid "Apply" +msgstr "Aplicar" + +#: ../../enterprise/meta/advanced/metasetup.consoles.php:99 +#: ../../enterprise/include/class/Omnishell.class.php:1553 +#: ../../enterprise/include/lib/Metaconsole/Node.php:140 +#: ../../enterprise/include/lib/Metaconsole/Node.php:189 +#: ../../enterprise/include/lib/Metaconsole/Node.php:240 +#: ../../enterprise/include/lib/Metaconsole/Node.php:284 +#: ../../enterprise/include/lib/Metaconsole/Node.php:337 +msgid "success" +msgstr "con Ć©xito" + +#: ../../enterprise/meta/advanced/metasetup.consoles.php:105 +#, php-format +msgid "Node %s is not recognized as metaconsole node." +msgstr "El nodo %s no ha sido reconocido como nodo de la Metaconsola." + +#: ../../enterprise/meta/advanced/metasetup.consoles.php:112 +#, php-format +msgid "Node %s license missmatch." +msgstr "El nodo %s no coincide en la licencia." + +#: ../../enterprise/meta/advanced/metasetup.consoles.php:119 +#, php-format +msgid "Cannot connect to node %s" +msgstr "No puede conectarse al nodo %s" + +#: ../../enterprise/meta/advanced/metasetup.consoles.php:126 +#, php-format +msgid "Unknown error synchronizing %s" +msgstr "Error desconocido al sincronizar %s" + +#: ../../enterprise/meta/advanced/metasetup.consoles.php:136 +#, php-format +msgid "Synchronized %d nodes, but some failed to synchronize %s" +msgstr "Nodos %d sincronizados, pero algunos no han podido sincronizarse %s" + +#: ../../enterprise/meta/advanced/metasetup.consoles.php:143 +#, php-format +msgid "Successfully synchronized all nodes (%d)" +msgstr "Todos los nodos se han sincronizado correctamente (%d)" + +#: ../../enterprise/meta/advanced/metasetup.consoles.php:210 +msgid "Node synchronization process failed" +msgstr "Error al sincronizar con el nodo" + +#: ../../enterprise/meta/advanced/metasetup.consoles.php:210 +#: ../../enterprise/meta/advanced/metasetup.consoles.php:324 +msgid "" +"If you are trying to migrate this node to a new metaconsole, please use the form " +"available at Settings > Enterprise at node console." +msgstr "" +"Si intenta migrar este nodo a una Metaconsola nueva, use el formulario disponible en " +"ConfiguraciĆ³n > Enterprise en la consola de nodos." + +#: ../../enterprise/meta/advanced/metasetup.consoles.php:220 +#: ../../enterprise/godmode/setup/setup_metaconsole.php:86 +msgid "Could not be update" +msgstr "No se pudo actualizar" + +#: ../../enterprise/meta/advanced/metasetup.consoles.php:260 +msgid "Could not be created, duplicated register found." +msgstr "No se pudo crear, se encontrĆ³ un registro duplicado." + +#: ../../enterprise/meta/advanced/metasetup.consoles.php:322 +msgid "Node synchronization process failed: " +msgstr "Error al sincronizar con el nodo" + +#: ../../enterprise/meta/advanced/metasetup.consoles.php:322 +#: ../../godmode/setup/license.php:101 +msgid "Unknown error" +msgstr "Error desconocido" + +#: ../../enterprise/meta/advanced/metasetup.consoles.php:343 +msgid "Successfully registered" +msgstr "Registrado con Ć©xito" + +#: ../../enterprise/meta/advanced/metasetup.consoles.php:344 +#, php-format +msgid "Could not be registered %s" +msgstr "No se pudo registrar %s" + +#: ../../enterprise/meta/advanced/metasetup.consoles.php:370 +msgid "Successfully delete" +msgstr "Borrado correctamente" + +#: ../../enterprise/meta/advanced/metasetup.consoles.php:371 +msgid "Could not be delete" +msgstr "No se puede eliminar" + +#: ../../enterprise/meta/advanced/metasetup.consoles.php:387 +#: ../../enterprise/godmode/policies/policy_alerts.php:126 +#: ../../enterprise/godmode/policies/policy_modules.php:517 +#: ../../enterprise/godmode/setup/setup_metaconsole.php:147 +#: ../../godmode/users/user_list.php:372 +#: ../../godmode/agentes/configurar_agente.php:2175 +#: ../../godmode/agentes/modificar_agente.php:234 +#: ../../godmode/massive/massive_enable_disable_alerts.php:102 +#: ../../godmode/alerts/alert_list.php:366 ../../include/ajax/alert_list.ajax.php:358 +msgid "Successfully enabled" +msgstr "Activado correctamente" + +#: ../../enterprise/meta/advanced/metasetup.consoles.php:388 +#: ../../enterprise/godmode/policies/policy_alerts.php:127 +#: ../../enterprise/godmode/policies/policy_modules.php:518 +#: ../../enterprise/godmode/setup/setup_metaconsole.php:148 +#: ../../godmode/agentes/configurar_agente.php:2176 +#: ../../godmode/agentes/modificar_agente.php:235 +#: ../../godmode/massive/massive_enable_disable_alerts.php:102 +#: ../../godmode/alerts/alert_list.php:367 ../../include/ajax/alert_list.ajax.php:360 +msgid "Could not be enabled" +msgstr "No se pudo activar" + +#: ../../enterprise/meta/advanced/metasetup.consoles.php:412 +#: ../../enterprise/godmode/policies/policy_alerts.php:152 +#: ../../enterprise/godmode/policies/policy_modules.php:534 +#: ../../enterprise/godmode/setup/setup_metaconsole.php:156 +#: ../../godmode/users/user_list.php:366 +#: ../../godmode/agentes/configurar_agente.php:2200 +#: ../../godmode/agentes/modificar_agente.php:277 +#: ../../godmode/massive/massive_enable_disable_alerts.php:124 +#: ../../godmode/alerts/alert_list.php:393 ../../include/ajax/alert_list.ajax.php:379 +msgid "Successfully disabled" +msgstr "Desactivado correctamente" + +#: ../../enterprise/meta/advanced/metasetup.consoles.php:413 +#, php-format +msgid "Could not be disabled: %s" +msgstr "No se pudo deshabilitar: %s" + +#: ../../enterprise/meta/advanced/metasetup.consoles.php:429 +#, php-format +msgid "" +"System is centralised, but you just modify nodes registered, please go to %s to " +"perform a database merge process." +msgstr "" +"El sistema estĆ” centralizado, pero solo modifica los nodos registrados, vaya a %s " +"para realizar un proceso de combinaciĆ³n de bases de datos." + +#: ../../enterprise/meta/advanced/metasetup.consoles.php:432 +msgid "This node will not be usable until unifying the environment" +msgstr "Este nodo no serĆ” utilizable hasta unificar el entorno" + +#: ../../enterprise/meta/advanced/metasetup.consoles.php:507 +#, php-format +msgid "%s Metaconsole item edition" +msgstr "EdiciĆ³n de elemento de Metaconsola %s" + +#: ../../enterprise/meta/advanced/metasetup.consoles.php:513 +#: ../../enterprise/meta/advanced/metasetup.consoles.php:835 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:513 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1705 +#: ../../enterprise/include/functions_reporting_csv.php:1158 +#: ../../godmode/reporting/graph_builder.graph_editor.php:214 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1215 +#: ../../godmode/reporting/visual_console_builder.elements.php:104 +#: ../../godmode/reporting/visual_console_builder.elements.php:284 +#: ../../godmode/reporting/visual_console_builder.wizard.php:446 +#: ../../include/functions_visual_map_editor.php:67 +#: ../../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:4254 +#: ../../include/rest-api/models/VisualConsole/Item.php:1941 +#: ../../include/rest-api/models/VisualConsole/Item.php:2135 +#: ../../include/lib/Dashboard/Widgets/sla_percent.php:285 +#: ../../include/lib/Dashboard/Widgets/BlockHistogram.php:284 +#: ../../include/lib/Dashboard/Widgets/module_icon.php:304 +#: ../../include/lib/Dashboard/Widgets/module_value.php:278 +#: ../../include/lib/Dashboard/Widgets/ColorModuleTabs.php:260 +#: ../../include/lib/Dashboard/Widgets/graph_module_histogram.php:274 +#: ../../include/lib/Dashboard/Widgets/module_status.php:294 +#: ../../operation/visual_console/view.php:336 +msgid "Label" +msgstr "Etiqueta" + +#: ../../enterprise/meta/advanced/metasetup.consoles.php:513 +msgid "Custom label to identify this setup." +msgstr "Etiqueta personalizada para identificar esta configuraciĆ³n." + +#: ../../enterprise/meta/advanced/metasetup.consoles.php:516 +#: ../../enterprise/meta/advanced/metasetup.consoles.php:837 +#: ../../enterprise/godmode/setup/setup_metaconsole.php:206 +msgid "Console URL" +msgstr "URL de la consola" + +#: ../../enterprise/meta/advanced/metasetup.consoles.php:516 +#, php-format +msgid "Full path to %s console (without index.php). Example %s" +msgstr "Ruta completa de la consola %s (sin index.php). Ejemplo %s" + +#: ../../enterprise/meta/advanced/metasetup.consoles.php:519 +#: ../../enterprise/godmode/setup/setup_metaconsole.php:202 +msgid "Auth token" +msgstr "Hash de autentificaciĆ³n" + +#: ../../enterprise/meta/advanced/metasetup.consoles.php:520 +#, php-format +msgid "" +"Token previously configured on the destination %s console in order to use delegated " +"authentification." +msgstr "" +"Token previamente configurado en la consola %s de destino para usar la autenticaciĆ³n " +"delegada." + +#: ../../enterprise/meta/advanced/metasetup.consoles.php:533 +#: ../../enterprise/meta/advanced/metasetup.setup.php:267 +#: ../../enterprise/meta/include/functions_meta.php:218 +#: ../../enterprise/meta/include/functions_meta.php:228 +#: ../../enterprise/godmode/setup/setup_metaconsole.php:210 +#: ../../godmode/setup/setup_general.php:212 ../../include/functions_config.php:234 +msgid "API password" +msgstr "ContraseƱa de la API" + +#: ../../enterprise/meta/advanced/metasetup.consoles.php:544 +#: ../../enterprise/godmode/setup/setup_metaconsole.php:233 +msgid "Console User" +msgstr "Usuario de la consola" + +#: ../../enterprise/meta/advanced/metasetup.consoles.php:553 +#: ../../enterprise/godmode/setup/setup_metaconsole.php:237 +msgid "Console Password" +msgstr "ContraseƱa de la consola" + +#: ../../enterprise/meta/advanced/metasetup.consoles.php:564 +#: ../../enterprise/meta/advanced/metasetup.consoles.php:838 +#: ../../enterprise/godmode/setup/setup_metaconsole.php:215 +#: ../../enterprise/godmode/setup/setup_metaconsole.php:275 +msgid "DB Host" +msgstr "Host de la BD" + +#: ../../enterprise/meta/advanced/metasetup.consoles.php:573 +#: ../../enterprise/godmode/setup/setup_metaconsole.php:219 +msgid "DB Name" +msgstr "Nombre de la BD" + +#: ../../enterprise/meta/advanced/metasetup.consoles.php:582 +#: ../../enterprise/godmode/setup/setup_metaconsole.php:224 +msgid "DB User" +msgstr "Usuario de la BD" + +#: ../../enterprise/meta/advanced/metasetup.consoles.php:591 +#: ../../enterprise/godmode/setup/setup_metaconsole.php:228 +msgid "DB Password" +msgstr "ContraseƱa de la BD" + +#: ../../enterprise/meta/advanced/metasetup.consoles.php:602 +#: ../../enterprise/include/class/DatabaseHA.class.php:959 +msgid "DB port" +msgstr "Puerto de la BD" + +#: ../../enterprise/meta/advanced/metasetup.consoles.php:613 +#: ../../enterprise/meta/advanced/metasetup.consoles.php:699 +#: ../../enterprise/meta/advanced/metasetup.consoles.php:704 +#: ../../enterprise/godmode/policies/policy_modules.php:412 +#: ../../enterprise/godmode/policies/policy_external_alerts.php:598 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:141 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:230 +#: ../../extensions/quick_shell.php:521 +#: ../../godmode/agentes/module_manager_editor.php:746 +#: ../../godmode/agentes/agent_manager.php:787 +#: ../../godmode/agentes/agent_manager.php:921 +#: ../../godmode/massive/massive_edit_agents.php:1027 +#: ../../godmode/massive/massive_add_action_alerts.php:250 +#: ../../include/functions_visual_map_editor.php:895 +#: ../../operation/agentes/status_monitor.php:848 ../../operation/events/events.php:2068 +msgid "Advanced options" +msgstr "Opciones avanzadas" + +#: ../../enterprise/meta/advanced/metasetup.consoles.php:613 +msgid "Define database connection from Pandora FMS node to this Metaconsole" +msgstr "" +"Definir conexiĆ³n con la base de datos desde el nodo de Pandora FMs a esta Metaconsola." + +#: ../../enterprise/meta/advanced/metasetup.consoles.php:635 +msgid "Metaconsole DB Host" +msgstr "Host de la base de datos de la Metaconsola" + +#: ../../enterprise/meta/advanced/metasetup.consoles.php:644 +msgid "Metaconsole DB Name" +msgstr "Nombre de base de datos de la Metaconsola" + +#: ../../enterprise/meta/advanced/metasetup.consoles.php:653 +msgid "Metaconsole DB User" +msgstr "Usuario de la base de datos de la Metaconsola" + +#: ../../enterprise/meta/advanced/metasetup.consoles.php:662 +msgid "Metaconsole DB Password" +msgstr "ContraseƱa de la base de datos de la Metaconsola" + +#: ../../enterprise/meta/advanced/metasetup.consoles.php:673 +#: ../../enterprise/godmode/setup/setup.php:179 +msgid "Metaconsole DB port" +msgstr "Puerto BD Metaconsola" + +#: ../../enterprise/meta/advanced/metasetup.consoles.php:726 +msgid "Register empty node" +msgstr "Registrar nodo vacĆ­o" + +#: ../../enterprise/meta/advanced/metasetup.consoles.php:732 +msgid "Register node with data to merge" +msgstr "Nodo de registro con datos para combinar" + +#: ../../enterprise/meta/advanced/metasetup.consoles.php:769 +msgid "Node data will be wiped out" +msgstr "Los datos del nodo se borrarĆ”n" + +#: ../../enterprise/meta/advanced/metasetup.consoles.php:770 +msgid "" +"Information contained in this node is not needed. Node information will be erased, " +"and replaced with new data from this metaconsole automatically after register the " +"node. Are you sure?" +msgstr "" +"La informaciĆ³n contenida en este nodo no es necesaria. La informaciĆ³n del nodo se " +"borrarĆ” y se reemplazarĆ” con nuevos datos de esta metaconsola automĆ”ticamente despuĆ©s " +"de registrar el nodo. ĀæEstĆ”s seguro?" + +#: ../../enterprise/meta/advanced/metasetup.consoles.php:786 +msgid "Node data will be merged" +msgstr "Los datos del nodo se fusionarĆ”n" + +#: ../../enterprise/meta/advanced/metasetup.consoles.php:787 +msgid "" +"Information contained in this node is useful. After register the node, you must " +"launch a merge process from command center, which will combine information in current " +"environment with information contained in this new node. Are you sure?" +msgstr "" +"La informaciĆ³n contenida en este nodo es Ćŗtil. DespuĆ©s de registrar el nodo, debe " +"iniciar un proceso de combinaciĆ³n desde el centro de comandos, que combinarĆ” la " +"informaciĆ³n del entorno actual con la informaciĆ³n contenida en este nuevo nodo. " +"ĀæEstĆ”s seguro?" + +#: ../../enterprise/meta/advanced/metasetup.consoles.php:829 +#: ../../enterprise/godmode/setup/setup_metaconsole.php:270 +#: ../../enterprise/include/class/CommandCenter.class.php:317 +msgid "DB" +msgstr "BD" + +#: ../../enterprise/meta/advanced/metasetup.consoles.php:830 +#: ../../enterprise/godmode/setup/setup_metaconsole.php:271 +#: ../../enterprise/include/class/CommandCenter.class.php:318 +msgid "API" +msgstr "API" + +#: ../../enterprise/meta/advanced/metasetup.consoles.php:831 +#: ../../enterprise/godmode/setup/setup_metaconsole.php:272 +msgid "Compatibility" +msgstr "Compatibilidad" + +#: ../../enterprise/meta/advanced/metasetup.consoles.php:832 +#: ../../enterprise/include/functions_setup.php:192 +msgid "Agent cache" +msgstr "CachĆ© de agente" + +#: ../../enterprise/meta/advanced/metasetup.consoles.php:833 +#: ../../enterprise/meta/advanced/policymanager.sync.php:328 +#: ../../enterprise/godmode/servers/HA_cluster.php:166 +#: ../../enterprise/include/functions_setup.php:201 +msgid "Sync" +msgstr "Sincronizar" + +#: ../../enterprise/meta/advanced/metasetup.consoles.php:834 +msgid "Database sync" +msgstr "SincronizaciĆ³n de bases de datos" + +#: ../../enterprise/meta/advanced/metasetup.consoles.php:839 +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:328 +#: ../../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:1357 +msgid "Manage" +msgstr "Gestionar" + +#: ../../enterprise/meta/advanced/metasetup.consoles.php:901 +msgid "New node" +msgstr "Nuevo nodo" + +#: ../../enterprise/meta/advanced/metasetup.consoles.php:933 +msgid "Synchronize all" +msgstr "Sincronizar todo" + +#: ../../enterprise/meta/advanced/links.php:47 ../../godmode/setup/links.php:42 +msgid "There was a problem creating link" +msgstr "Error al crear el enlace" + +#: ../../enterprise/meta/advanced/links.php:49 +#: ../../enterprise/meta/advanced/cron_main.php:158 +#: ../../enterprise/meta/advanced/cron_main.php:202 +#: ../../enterprise/meta/advanced/cron_main.php:295 +#: ../../enterprise/godmode/alerts/alert_inventory_builder.php:76 +#: ../../enterprise/godmode/setup/setup_metaconsole.php:125 +#: ../../enterprise/godmode/reporting/reporting_builder.template_editor.php:47 +#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:221 +#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:234 +#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:283 +#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:302 +#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:382 +#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:399 +#: ../../enterprise/godmode/servers/manage_export.php:112 +#: ../../enterprise/godmode/servers/manage_export.php:119 +#: ../../enterprise/godmode/servers/credential_boxes_satellite.php:80 +#: ../../enterprise/godmode/servers/credential_boxes_satellite.php:111 +#: ../../enterprise/include/ajax/servers.ajax.php:197 +#: ../../enterprise/include/ajax/servers.ajax.php:330 +#: ../../enterprise/include/class/NetworkConfigManager.class.php:1787 +#: ../../enterprise/include/class/NetworkConfigManager.class.php:1877 +#: ../../enterprise/include/class/NetworkConfigManager.class.php:1972 +#: ../../enterprise/include/class/NetworkConfigManager.class.php:2066 +#: ../../enterprise/operation/agentes/transactional_map.php:134 +#: ../../enterprise/tools/ipam/ipam_action.php:214 +#: ../../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:472 +#: ../../godmode/agentes/configurar_agente.php:881 +#: ../../godmode/agentes/planned_downtime.editor.php:416 +#: ../../godmode/snmpconsole/snmp_alert.php:302 +#: ../../godmode/snmpconsole/snmp_filters.php:164 +#: ../../godmode/alerts/alert_commands.php:572 +#: ../../godmode/alerts/configure_alert_template.php:536 +#: ../../godmode/alerts/alert_list.php:178 ../../godmode/setup/news.php:66 +#: ../../godmode/setup/gis.php:47 ../../godmode/setup/links.php:44 +#: ../../include/functions_alerts.php:2747 +#: ../../include/class/CalendarManager.class.php:537 +#: ../../include/class/CalendarManager.class.php:894 +#: ../../include/functions_planned_downtimes.php:114 +#: ../../include/functions_planned_downtimes.php:832 +msgid "Successfully created" +msgstr "Creado correctamente" + +#: ../../enterprise/meta/advanced/links.php:60 +msgid "The link was not updated, the data is identical" +msgstr "No se ha actualizado el link, los datos son idĆ©nticos" + +#: ../../enterprise/meta/advanced/links.php:68 ../../godmode/setup/links.php:61 +msgid "There was a problem modifying link" +msgstr "Error al modificar el enlace" + +#: ../../enterprise/meta/advanced/links.php:70 +#: ../../enterprise/godmode/agentes/agent_disk_conf_editor.php:111 +#: ../../enterprise/godmode/policies/policy_modules.php:1249 +#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:122 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:398 +#: ../../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:329 +#: ../../enterprise/include/class/NetworkConfigManager.class.php:1784 +#: ../../enterprise/include/class/NetworkConfigManager.class.php:1874 +#: ../../enterprise/include/class/NetworkConfigManager.class.php:1969 +#: ../../enterprise/include/class/NetworkConfigManager.class.php:2063 +#: ../../enterprise/include/class/NetworkConfigManager.class.php:2688 +#: ../../enterprise/operation/agentes/transactional_map.php:166 +#: ../../enterprise/tools/ipam/ipam_action.php:255 +#: ../../enterprise/tools/ipam/ipam_network_location_config.php:71 +#: ../../enterprise/tools/ipam/ipam_massive.php:47 +#: ../../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:1173 +#: ../../godmode/agentes/planned_downtime.editor.php:418 +#: ../../godmode/netflow/nf_edit_form.php:139 +#: ../../godmode/snmpconsole/snmp_alert.php:444 +#: ../../godmode/snmpconsole/snmp_filters.php:110 +#: ../../godmode/massive/massive_edit_modules.php:184 +#: ../../godmode/alerts/configure_alert_command.php:144 +#: ../../godmode/alerts/alert_templates.php:156 +#: ../../godmode/alerts/configure_alert_template.php:554 +#: ../../godmode/alerts/alert_list.php:94 ../../godmode/alerts/alert_list.php:312 +#: ../../godmode/setup/news.php:107 ../../godmode/setup/gis.php:39 +#: ../../godmode/setup/links.php:63 ../../godmode/events/event_edit_filter.php:220 +#: ../../include/functions_alerts.php:2747 +#: ../../include/class/CalendarManager.class.php:534 +#: ../../include/class/CalendarManager.class.php:891 +#: ../../include/functions_planned_downtimes.php:124 +#: ../../operation/snmpconsole/snmp_view.php:174 +msgid "Successfully updated" +msgstr "Actualizado correctamente" + +#: ../../enterprise/meta/advanced/links.php:82 ../../godmode/setup/links.php:74 +msgid "There was a problem deleting link" +msgstr "Error al borrar el enlace" + +#: ../../enterprise/meta/advanced/links.php:100 +msgid "Link Name error" +msgstr "Error en el nombre de link" + +#: ../../enterprise/meta/advanced/links.php:127 +#: ../../enterprise/meta/advanced/links.php:156 ../../godmode/setup/links.php:116 +#: ../../godmode/setup/links.php:145 +msgid "Link name" +msgstr "Nombre del enlace" + +#: ../../enterprise/meta/advanced/links.php:130 +#: ../../enterprise/godmode/policies/policy_linking.php:204 +#: ../../godmode/setup/links.php:119 +msgid "Link" +msgstr "Enlace" + +#: ../../enterprise/meta/advanced/links.php:152 ../../godmode/setup/links.php:141 +msgid "There isn't links" +msgstr "No hay enlaces" + +#: ../../enterprise/meta/advanced/policymanager.php:58 +msgid "Policy Manager" +msgstr "Gestor de polĆ­ticas" + +#: ../../enterprise/meta/advanced/policymanager.php:75 +msgid "Apply policies" +msgstr "Aplicar polĆ­ticas" + +#: ../../enterprise/meta/advanced/policymanager.php:79 +#: ../../enterprise/meta/advanced/policymanager.php:97 +msgid "Policies queue" +msgstr "Cola de polĆ­ticas" + +#: ../../enterprise/meta/advanced/policymanager.php:93 +msgid "Policies apply" +msgstr "Aplicar polĆ­ticas" + +#: ../../enterprise/meta/advanced/collections.data.php:33 +#: ../../enterprise/meta/advanced/collections.editor.php:60 +#: ../../enterprise/meta/include/functions_agents_meta.php:533 +#: ../../enterprise/godmode/agentes/collections.agents.php:44 +#: ../../enterprise/godmode/agentes/collections.data.php:54 +#: ../../enterprise/godmode/agentes/collections.editor.php:71 +#: ../../enterprise/godmode/policies/policies.php:505 +#: ../../enterprise/godmode/policies/policy_collections.php:31 +#: ../../enterprise/godmode/menu.php:70 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2106 +#: ../../enterprise/include/functions_policies.php:3798 +#: ../../general/first_task/collections.php:22 +msgid "Collections" +msgstr "Colecciones" + +#: ../../enterprise/meta/advanced/collections.data.php:46 +#: ../../enterprise/meta/advanced/collections.data.php:86 +#: ../../enterprise/meta/advanced/collections.data.php:104 +#: ../../enterprise/meta/advanced/collections.data.php:124 +#: ../../enterprise/meta/advanced/collections.data.php:149 +#: ../../enterprise/meta/advanced/collections.data.php:172 +#: ../../enterprise/meta/advanced/collections.data.php:197 +#: ../../enterprise/meta/advanced/collections.data.php:238 +#: ../../enterprise/meta/advanced/collections.data.php:263 +#: ../../enterprise/meta/advanced/collections.editor.php:54 +#: ../../enterprise/meta/include/functions_events_meta.php:134 +#: ../../enterprise/godmode/agentes/collections.agents.php:47 +#: ../../enterprise/godmode/agentes/collections.agents.php:56 +#: ../../enterprise/godmode/agentes/collections.data.php:74 +#: ../../enterprise/godmode/agentes/collections.data.php:117 +#: ../../enterprise/godmode/agentes/collections.data.php:184 +#: ../../enterprise/godmode/agentes/collections.data.php:204 +#: ../../enterprise/godmode/agentes/collections.data.php:224 +#: ../../enterprise/godmode/agentes/collections.data.php:251 +#: ../../enterprise/godmode/agentes/collections.data.php:279 +#: ../../enterprise/godmode/agentes/collections.data.php:309 +#: ../../enterprise/godmode/agentes/collections.data.php:332 +#: ../../enterprise/godmode/agentes/collections.editor.php:56 +#: ../../enterprise/include/functions_reporting_pdf.php:702 +#: ../../enterprise/include/functions_reporting_csv.php:802 +#: ../../enterprise/include/functions_reporting_csv.php:832 +#: ../../enterprise/include/functions_reporting_csv.php:879 +#: ../../enterprise/include/functions_reporting_csv.php:915 +#: ../../enterprise/include/functions_reporting_csv.php:954 +#: ../../enterprise/include/functions_reporting_csv.php:1014 +#: ../../enterprise/include/functions_reporting_csv.php:1458 +#: ../../enterprise/include/functions_reporting_csv.php:2281 +#: ../../enterprise/include/functions_reporting_csv.php:2317 +#: ../../enterprise/include/functions_reporting_csv.php:2423 +#: ../../enterprise/include/functions_reporting_csv.php:2518 +#: ../../enterprise/include/functions_reporting_csv.php:2740 +#: ../../enterprise/include/functions_reporting.php:2185 +#: ../../enterprise/include/functions_reporting.php:2218 +#: ../../enterprise/include/functions_reporting.php:2222 +#: ../../enterprise/include/functions_services.php:1612 +#: ../../enterprise/operation/agentes/policy_view.php:398 +#: ../../enterprise/operation/agentes/tag_view.php:684 +#: ../../extensions/insert_data.php:194 ../../extensions/insert_data.php:195 +#: ../../godmode/agentes/status_monitor_custom_fields.php:113 +#: ../../godmode/agentes/status_monitor_custom_fields.php:152 +#: ../../godmode/events/custom_events.php:115 ../../mobile/operation/modules.php:715 +#: ../../mobile/operation/modules.php:718 ../../mobile/operation/modules.php:719 +#: ../../mobile/operation/modules.php:720 ../../mobile/operation/modules.php:721 +#: ../../mobile/operation/modules.php:722 ../../mobile/operation/modules.php:723 +#: ../../mobile/operation/modules.php:724 ../../mobile/operation/modules.php:725 +#: ../../mobile/operation/modules.php:727 ../../mobile/operation/modules.php:730 +#: ../../mobile/operation/modules.php:731 ../../mobile/operation/modules.php:732 +#: ../../mobile/operation/modules.php:733 ../../mobile/operation/modules.php:734 +#: ../../mobile/operation/modules.php:735 ../../mobile/operation/modules.php:736 +#: ../../mobile/operation/modules.php:737 ../../mobile/operation/modules.php:853 +#: ../../include/functions_reporting_html.php:2144 +#: ../../include/functions_reporting_html.php:2629 +#: ../../include/functions_reporting_html.php:2633 +#: ../../include/functions_reporting_html.php:2634 +#: ../../include/functions_reporting_html.php:2638 +#: ../../include/functions_reporting_html.php:2643 +#: ../../include/functions_reporting_html.php:2648 +#: ../../include/functions_reporting_html.php:2652 +#: ../../include/functions_reporting_html.php:2657 +#: ../../include/functions_reporting_html.php:2664 +#: ../../include/functions_reporting_html.php:2713 +#: ../../include/functions_reporting_html.php:2786 ../../include/ajax/module.php:982 +#: ../../include/ajax/custom_fields.php:412 ../../include/functions_graph.php:3709 +#: ../../include/functions_netflow.php:301 ../../include/functions_reporting.php:4194 +#: ../../include/functions_reporting.php:4235 ../../include/functions_reporting.php:4986 +#: ../../include/functions_events.php:218 ../../include/functions_events.php:301 +#: ../../operation/agentes/exportdata.csv.php:74 +#: ../../operation/agentes/exportdata.php:83 +#: ../../operation/agentes/status_monitor.php:1356 +#: ../../operation/agentes/exportdata.excel.php:74 ../../operation/search_modules.php:38 +msgid "Data" +msgstr "Datos" + +#: ../../enterprise/meta/advanced/collections.data.php:76 +#: ../../enterprise/godmode/agentes/collections.data.php:174 +msgid "Unable to create the collection. Another collection with the same short name." +msgstr "" +"No se ha podido crear la colecciĆ³n. Hay otra colecciĆ³n con el mismo nombre corto." + +#: ../../enterprise/meta/advanced/collections.data.php:97 +#: ../../enterprise/meta/advanced/collections.data.php:117 +#: ../../enterprise/godmode/agentes/collections.data.php:197 +#: ../../enterprise/godmode/agentes/collections.data.php:217 +msgid "Unable to create the collection" +msgstr "Error al crear la colecciĆ³n" + +#: ../../enterprise/meta/advanced/collections.data.php:97 +#: ../../enterprise/godmode/agentes/collections.data.php:197 +msgid "Invalid characters in short name" +msgstr "Caracteres no vĆ”lidos en el nombre" + +#: ../../enterprise/meta/advanced/collections.data.php:111 +#: ../../enterprise/godmode/agentes/collections.data.php:59 +#: ../../enterprise/godmode/agentes/collections.data.php:167 +#: ../../enterprise/godmode/agentes/collections.data.php:191 +#: ../../enterprise/godmode/agentes/collections.data.php:211 +#: ../../enterprise/godmode/agentes/collections.data.php:238 +#: ../../enterprise/godmode/agentes/collections.data.php:294 +msgid "Manager configuration > New" +msgstr "Gestionar la configuraciĆ³n > Nuevo" + +#: ../../enterprise/meta/advanced/collections.data.php:117 +#: ../../enterprise/godmode/agentes/collections.data.php:217 +#: ../../enterprise/include/functions_local_components.php:174 +msgid "Empty name" +msgstr "Nombre vacĆ­o" + +#: ../../enterprise/meta/advanced/collections.data.php:142 +#: ../../enterprise/meta/advanced/collections.data.php:190 +#: ../../enterprise/godmode/agentes/collections.data.php:244 +#: ../../enterprise/godmode/agentes/collections.data.php:302 +msgid "Unable to create the collection." +msgstr "Error al crear la colecciĆ³n" + +#: ../../enterprise/meta/advanced/collections.data.php:163 +#: ../../enterprise/meta/advanced/collections.data.php:309 +#: ../../enterprise/godmode/agentes/collections.data.php:270 +msgid "Correct create collection" +msgstr "ColecciĆ³n de ficheros creada correctamente" + +#: ../../enterprise/meta/advanced/collections.data.php:174 +#: ../../enterprise/meta/advanced/collections.data.php:241 +#: ../../enterprise/meta/advanced/collections.data.php:265 +#: ../../enterprise/meta/advanced/collections.editor.php:57 +#: ../../enterprise/meta/advanced/collections.editor.php:385 +#: ../../enterprise/meta/advanced/collections.editor.php:402 +#: ../../enterprise/godmode/agentes/collections.agents.php:50 +#: ../../enterprise/godmode/agentes/collections.data.php:127 +#: ../../enterprise/godmode/agentes/collections.data.php:281 +#: ../../enterprise/godmode/agentes/collections.data.php:334 +#: ../../enterprise/godmode/agentes/collections.editor.php:65 +#: ../../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:1665 +msgid "Files" +msgstr "Archivos" + +#: ../../enterprise/meta/advanced/collections.data.php:231 +#: ../../enterprise/godmode/agentes/collections.data.php:106 +#: ../../enterprise/godmode/agentes/collections.data.php:262 +#: ../../enterprise/godmode/agentes/collections.data.php:351 +#: ../../enterprise/godmode/agentes/collections.data.php:367 +#: ../../enterprise/godmode/agentes/collections.data.php:375 +#: ../../enterprise/godmode/agentes/collections.editor.php:84 +msgid "Manager configuration > Edit " +msgstr "Gestionar la configuraciĆ³n > Editar " + +#: ../../enterprise/meta/advanced/collections.data.php:287 +#: ../../enterprise/godmode/agentes/collections.data.php:358 +msgid "Unable to edit the collection, empty name." +msgstr "Error al crear colecciĆ³n: nombre vacĆ­o" + +#: ../../enterprise/meta/advanced/collections.data.php:300 +#: ../../enterprise/godmode/agentes/collections.data.php:373 +msgid "Unable to edit the collection." +msgstr "Error al editar la colecciĆ³n" + +#: ../../enterprise/meta/advanced/collections.data.php:320 +#: ../../enterprise/meta/advanced/collections.editor.php:79 +msgid "This console is not manager of this environment." +msgstr "Esta consola no es el administrador de este entorno." + +#: ../../enterprise/meta/advanced/collections.data.php:332 +#: ../../enterprise/meta/include/functions_autoprovision.php:566 +#: ../../enterprise/godmode/agentes/collections.data.php:425 +#: ../../godmode/setup/os.builder.php:35 +#: ../../godmode/reporting/visual_console_builder.data.php:106 +msgid "Name:" +msgstr "Nombre:" + +#: ../../enterprise/meta/advanced/collections.data.php:345 +#: ../../enterprise/godmode/agentes/collections.data.php:438 +msgid "Recreate file" +msgstr "Volver a crear el archivo" + +#: ../../enterprise/meta/advanced/collections.data.php:373 +#: ../../enterprise/meta/advanced/collections.data.php:374 +#: ../../enterprise/godmode/agentes/collection_manager.php:166 +#: ../../enterprise/godmode/agentes/collection_manager.php:167 +#: ../../enterprise/godmode/agentes/collection_manager.php:281 +#: ../../enterprise/godmode/agentes/collection_manager.php:282 +#: ../../enterprise/godmode/agentes/collections.data.php:467 +#: ../../enterprise/godmode/agentes/collections.data.php:468 +msgid "Need to regenerate" +msgstr "Necesita volver a regenerarse" + +#: ../../enterprise/meta/advanced/collections.data.php:383 +#: ../../enterprise/meta/advanced/collections.data.php:384 +#: ../../enterprise/godmode/agentes/collection_manager.php:175 +#: ../../enterprise/godmode/agentes/collection_manager.php:176 +#: ../../enterprise/godmode/agentes/collection_manager.php:290 +#: ../../enterprise/godmode/agentes/collection_manager.php:291 +#: ../../enterprise/godmode/agentes/collections.data.php:477 +#: ../../enterprise/godmode/agentes/collections.data.php:478 +#: ../../enterprise/operation/agentes/collection_view.php:139 +#: ../../enterprise/operation/agentes/collection_view.php:140 +msgid "The collection directory does not exist." +msgstr "El directorio donde se guardan las colecciones no existe." + +#: ../../enterprise/meta/advanced/collections.data.php:397 +#: ../../enterprise/godmode/agentes/collections.data.php:492 +msgid "Group:" +msgstr "Grupo:" + +#: ../../enterprise/meta/advanced/collections.data.php:420 +#: ../../enterprise/godmode/agentes/collections.data.php:514 +msgid "Short name:" +msgstr "Nombre corto:" + +#: ../../enterprise/meta/advanced/collections.data.php:426 +#: ../../enterprise/godmode/agentes/collections.data.php:519 +msgid "" +"The collection's short name is the name of dir in attachment dir and the package " +"collection." +msgstr "" +"El nombre corto de la colecciĆ³n es el nombre del directorio en el directorio de " +"adjuntos y la colecciĆ³n de paquetes." + +#: ../../enterprise/meta/advanced/collections.data.php:426 +#: ../../enterprise/godmode/agentes/collections.data.php:519 +msgid "Short name must contain only alphanumeric characters, - or _ ." +msgstr "Los nombres cortos deben contener solo caracteres alfanumĆ©ricos, - o _." + +#: ../../enterprise/meta/advanced/collections.data.php:426 +#: ../../enterprise/godmode/agentes/collections.data.php:519 +msgid "Empty for default short name fc_X where X is the collection id." +msgstr "" +"DĆ©jalo vacĆ­o para el nombre corto por defecto (fc_X) donde X es el ID de la colecciĆ³n." + +#: ../../enterprise/meta/advanced/collections.data.php:432 +#: ../../enterprise/meta/include/functions_autoprovision.php:569 +#: ../../enterprise/godmode/agentes/collections.data.php:523 +#: ../../operation/snmpconsole/snmp_view.php:1107 +msgid "Description:" +msgstr "DescripciĆ³n:" + +#: ../../enterprise/meta/advanced/agents_setup.autoprovision.php:72 +#, php-format +msgid "Provisioning custom data %s successfully deleted." +msgstr "Datos personalizados de aprovisionamiento %s borrados correctamente." + +#: ../../enterprise/meta/advanced/agents_setup.autoprovision.php:79 +#, php-format +msgid "Cannot delete custom data %s." +msgstr "Error al borrar los datos personalizados %s" + +#: ../../enterprise/meta/advanced/agents_setup.autoprovision.php:92 +msgid "There was an error when moving the custom provisioning data." +msgstr "Error al mover los datos de aprovisionamiento personalizado" + +#: ../../enterprise/meta/advanced/collections.editor.php:125 +#: ../../enterprise/meta/advanced/collections.editor.php:193 +#: ../../enterprise/godmode/agentes/collections.editor.php:158 +#: ../../enterprise/godmode/agentes/collections.editor.php:224 +#: ../../godmode/servers/plugin.php:173 ../../include/functions_filemanager.php:737 +msgid "Edit file" +msgstr "Editar archivo" + +#: ../../enterprise/meta/advanced/collections.editor.php:128 +#: ../../enterprise/meta/advanced/collections.editor.php:195 +#: ../../enterprise/godmode/agentes/collections.editor.php:161 +#: ../../enterprise/godmode/agentes/collections.editor.php:226 +msgid "Back to file explorer" +msgstr "Volver al explorador de archivos" + +#: ../../enterprise/meta/advanced/collections.editor.php:167 +#: ../../enterprise/godmode/agentes/collections.editor.php:198 +#: ../../include/functions_filemanager.php:296 +msgid "Security error." +msgstr "Error de seguridad" + +#: ../../enterprise/meta/advanced/collections.editor.php:217 +#: ../../enterprise/godmode/agentes/collections.editor.php:248 +#: ../../godmode/servers/plugin.php:192 +msgid "Compatibility mode" +msgstr "Modo de compatibilidad" + +#: ../../enterprise/meta/advanced/collections.editor.php:269 +#: ../../enterprise/godmode/agentes/collections.editor.php:299 +msgid "Correct update file." +msgstr "ActualizaciĆ³n correcta del archivo" + +#: ../../enterprise/meta/advanced/collections.editor.php:270 +#: ../../enterprise/godmode/agentes/collections.editor.php:300 +msgid "Incorrect update file." +msgstr "Error al actualizar el archivo" + +#: ../../enterprise/meta/advanced/collections.editor.php:403 +#: ../../enterprise/godmode/agentes/collections.editor.php:447 +msgid "Please, first save a new collection before to upload files." +msgstr "Por favor, antes de subir archivos, guarda una nueva colecciĆ³n." + +#: ../../enterprise/meta/advanced/cron_main.php:75 +#: ../../enterprise/extensions/cron.php:156 +msgid "Cron jobs" +msgstr "Tareas cron" + +#: ../../enterprise/meta/advanced/cron_main.php:87 +#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:551 +msgid "Add new job" +msgstr "AƱadir nueva tarea" + +#: ../../enterprise/meta/advanced/cron_main.php:159 +#: ../../enterprise/meta/advanced/cron_main.php:203 +#: ../../enterprise/meta/advanced/cron_main.php:296 +#: ../../enterprise/meta/include/functions_meta.php:122 +#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:213 +#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:276 +#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:371 +#: ../../include/functions_config.php:219 +msgid "Path doesn't exists or is not writable" +msgstr "La ruta no existe o no se puede escribir en ella." + +#: ../../enterprise/meta/advanced/cron_main.php:173 +#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:244 +msgid "Only administrator users can create this type of functions" +msgstr "Solo los usuarios administradores pueden crear este tipo de funciones." + +#: ../../enterprise/meta/advanced/cron_main.php:244 +#: ../../enterprise/meta/advanced/cron_main.php:278 +#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:356 +msgid "Edit job" +msgstr "Editar tarea" + +#: ../../enterprise/meta/advanced/cron_main.php:333 +msgid "In order to make backups it is necessary to have mysqldump on your console." +msgstr "Para hacer una copia de seguridad, debe tener mysquldump en la consola." + +#: ../../enterprise/meta/advanced/cron_main.php:354 +#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:630 +#: ../../enterprise/include/functions_tasklist.php:153 +#: ../../include/functions_cron.php:464 +msgid "Task" +msgstr "Tarea" + +#: ../../enterprise/meta/advanced/cron_main.php:385 +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:381 +#: ../../enterprise/godmode/setup/setup_history.php:680 +#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:640 +#: ../../enterprise/include/functions_tasklist.php:154 +#: ../../include/functions_cron.php:465 +msgid "Scheduled" +msgstr "Programado" + +#: ../../enterprise/meta/advanced/cron_main.php:398 +#: ../../enterprise/include/functions_tasklist.php:155 +#: ../../include/functions_cron.php:466 +msgid "Next execution" +msgstr "Siguiente ejecuciĆ³n" + +#: ../../enterprise/meta/advanced/cron_main.php:407 +msgid "Date format in Pandora is year/month/day" +msgstr "El formato de fecha de Pandora FMS es aƱo/mes/dĆ­a" + +#: ../../enterprise/meta/advanced/cron_main.php:418 +msgid "Time format in Pandora is hours(24h):minutes:seconds" +msgstr "El formato de hora en Pandora FMS es horas(24h):minutos:segundos" + +#: ../../enterprise/meta/advanced/cron_main.php:444 +#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:566 +#: ../../godmode/events/event_responses.editor.php:146 +#: ../../include/ajax/events.php:2111 ../../include/class/ExternalTools.class.php:354 +#: ../../include/lib/Dashboard/Widgets/events_list.php:628 +#: ../../include/functions_events.php:3447 ../../operation/events/events.php:2394 +msgid "Parameters" +msgstr "ParĆ”metros" + +#: ../../enterprise/meta/advanced/cron_main.php:530 +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:868 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:1169 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3973 +#: ../../enterprise/godmode/wizards/consoletask_js.php:41 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:4339 +#: ../../enterprise/operation/log/log_viewer.php:981 +#: ../../enterprise/operation/log/log_viewer.php:993 +#: ../../enterprise/operation/services/services.treeview_services.php:384 +#: ../../extensions/insert_data.php:224 +#: ../../godmode/agentes/planned_downtime.editor.php:1494 +#: ../../godmode/alerts/configure_alert_template.php:1456 +#: ../../godmode/alerts/configure_alert_template.php:1540 +#: ../../godmode/setup/news.php:322 +#: ../../godmode/reporting/reporting_builder.item_editor.php:4965 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:683 ../../operation/tree.php:573 +#: ../../operation/agentes/stat_win.php:604 +#: ../../operation/agentes/interface_traffic_graph_win.php:434 +#: ../../operation/agentes/datos_agente.php:312 +#: ../../operation/agentes/estado_monitores.php:455 +#: ../../operation/network/network_report.php:336 +#: ../../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/events/events.php:2972 +msgid "Choose time" +msgstr "Seleccionar hora" + +#: ../../enterprise/meta/advanced/cron_main.php:531 +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:869 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:1170 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3974 +#: ../../enterprise/godmode/wizards/consoletask_js.php:42 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:4030 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:4340 +#: ../../enterprise/include/lib/Metaconsole/Node.php:539 +#: ../../enterprise/operation/log/log_viewer.php:982 +#: ../../enterprise/operation/log/log_viewer.php:994 +#: ../../enterprise/operation/services/services.treeview_services.php:385 +#: ../../extensions/insert_data.php:225 +#: ../../godmode/agentes/planned_downtime.editor.php:1495 +#: ../../godmode/alerts/configure_alert_template.php:1457 +#: ../../godmode/alerts/configure_alert_template.php:1541 +#: ../../godmode/setup/news.php:323 +#: ../../godmode/reporting/reporting_builder.item_editor.php:4966 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:684 ../../operation/tree.php:574 +#: ../../operation/agentes/stat_win.php:605 +#: ../../operation/agentes/interface_traffic_graph_win.php:435 +#: ../../operation/agentes/datos_agente.php:313 +#: ../../operation/agentes/estado_monitores.php:456 +#: ../../operation/network/network_report.php:337 +#: ../../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/events/events.php:2973 +msgid "Time" +msgstr "Hora" + +#: ../../enterprise/meta/advanced/cron_main.php:532 +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:870 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:1171 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3975 +#: ../../enterprise/godmode/wizards/consoletask_js.php:43 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:4031 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:4341 +#: ../../enterprise/operation/log/log_viewer.php:983 +#: ../../enterprise/operation/log/log_viewer.php:995 +#: ../../enterprise/operation/services/services.treeview_services.php:386 +#: ../../extensions/insert_data.php:226 +#: ../../godmode/agentes/planned_downtime.editor.php:1496 +#: ../../godmode/alerts/configure_alert_template.php:1458 +#: ../../godmode/alerts/configure_alert_template.php:1542 +#: ../../godmode/setup/news.php:324 +#: ../../godmode/reporting/reporting_builder.item_editor.php:4967 +#: ../../include/functions_html.php:2283 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:685 ../../operation/tree.php:575 +#: ../../operation/agentes/stat_win.php:606 +#: ../../operation/agentes/interface_traffic_graph_win.php:436 +#: ../../operation/agentes/datos_agente.php:314 +#: ../../operation/agentes/estado_monitores.php:457 +#: ../../operation/network/network_report.php:338 +#: ../../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/events/events.php:2974 +msgid "Hour" +msgstr "Hora" + +#: ../../enterprise/meta/advanced/cron_main.php:533 +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:871 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:1172 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3976 +#: ../../enterprise/godmode/wizards/consoletask_js.php:44 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:4032 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:4342 +#: ../../enterprise/operation/log/log_viewer.php:984 +#: ../../enterprise/operation/log/log_viewer.php:996 +#: ../../enterprise/operation/services/services.treeview_services.php:387 +#: ../../extensions/insert_data.php:227 +#: ../../godmode/agentes/planned_downtime.editor.php:1497 +#: ../../godmode/alerts/configure_alert_template.php:1459 +#: ../../godmode/alerts/configure_alert_template.php:1543 +#: ../../godmode/setup/news.php:325 +#: ../../godmode/reporting/reporting_builder.item_editor.php:4968 +#: ../../include/functions_html.php:2284 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:686 ../../operation/tree.php:576 +#: ../../operation/agentes/stat_win.php:607 +#: ../../operation/agentes/interface_traffic_graph_win.php:437 +#: ../../operation/agentes/datos_agente.php:315 +#: ../../operation/agentes/estado_monitores.php:458 +#: ../../operation/network/network_report.php:339 +#: ../../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/events/events.php:2975 +msgid "Minute" +msgstr "Minuto" + +#: ../../enterprise/meta/advanced/cron_main.php:534 +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:872 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:1173 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3977 +#: ../../enterprise/godmode/wizards/consoletask_js.php:45 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:4033 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:4343 +#: ../../enterprise/operation/log/log_viewer.php:985 +#: ../../enterprise/operation/log/log_viewer.php:997 +#: ../../enterprise/operation/services/services.treeview_services.php:388 +#: ../../extensions/insert_data.php:228 +#: ../../godmode/agentes/planned_downtime.editor.php:1498 +#: ../../godmode/alerts/configure_alert_template.php:1460 +#: ../../godmode/alerts/configure_alert_template.php:1544 +#: ../../godmode/setup/news.php:326 +#: ../../godmode/reporting/reporting_builder.item_editor.php:4969 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:687 ../../operation/tree.php:577 +#: ../../operation/agentes/stat_win.php:608 +#: ../../operation/agentes/interface_traffic_graph_win.php:438 +#: ../../operation/agentes/datos_agente.php:316 +#: ../../operation/agentes/estado_monitores.php:459 +#: ../../operation/network/network_report.php:340 +#: ../../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/events/events.php:2976 +msgid "Second" +msgstr "Segundo" + +#: ../../enterprise/meta/advanced/cron_main.php:535 +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:873 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:1174 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3978 +#: ../../enterprise/godmode/wizards/consoletask_js.php:46 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:4034 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:4344 +#: ../../enterprise/operation/agentes/agent_inventory.php:133 +#: ../../enterprise/operation/log/log_viewer.php:986 +#: ../../enterprise/operation/log/log_viewer.php:998 +#: ../../enterprise/operation/services/services.treeview_services.php:389 +#: ../../extensions/insert_data.php:229 +#: ../../godmode/agentes/planned_downtime.editor.php:1499 +#: ../../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:4970 +#: ../../include/functions.php:505 ../../include/functions.php:636 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:688 ../../operation/tree.php:578 +#: ../../operation/agentes/stat_win.php:609 +#: ../../operation/agentes/interface_traffic_graph_win.php:439 +#: ../../operation/agentes/datos_agente.php:317 +#: ../../operation/agentes/estado_monitores.php:460 +#: ../../operation/network/network_report.php:341 +#: ../../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/events/events.php:2977 +msgid "Now" +msgstr "Ahora" + +#: ../../enterprise/meta/advanced/cron_main.php:536 +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:874 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:1175 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3979 +#: ../../enterprise/godmode/wizards/consoletask_js.php:47 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:4035 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:4345 +#: ../../enterprise/operation/log/log_viewer.php:987 +#: ../../enterprise/operation/log/log_viewer.php:999 +#: ../../enterprise/operation/services/services.treeview_services.php:390 +#: ../../extensions/insert_data.php:230 +#: ../../godmode/agentes/planned_downtime.editor.php:1500 +#: ../../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:4971 +#: ../../godmode/wizards/HostDevices.class.php:796 ../../mobile/include/ui.class.php:691 +#: ../../mobile/include/ui.class.php:749 ../../include/class/WelcomeWindow.class.php:159 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:689 +#: ../../include/functions_snmp_browser.php:600 ../../operation/tree.php:579 +#: ../../operation/agentes/stat_win.php:610 +#: ../../operation/agentes/interface_traffic_graph_win.php:440 +#: ../../operation/agentes/datos_agente.php:318 +#: ../../operation/agentes/estado_monitores.php:461 +#: ../../operation/network/network_report.php:342 +#: ../../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/events/events.php:2978 +msgid "Close" +msgstr "Cerrar" + +#: ../../enterprise/meta/advanced/metasetup.setup.php:108 +#: ../../enterprise/godmode/modules/configure_local_component.php:164 +#: ../../godmode/modules/manage_network_components_form_common.php:52 +#: ../../godmode/users/configure_user.php:1191 +#: ../../godmode/alerts/alert_commands.php:141 +#: ../../godmode/alerts/alert_commands.php:182 +#: ../../godmode/alerts/configure_alert_template.php:933 +#: ../../godmode/alerts/configure_alert_template.php:974 +#: ../../godmode/alerts/configure_alert_template.php:1137 +msgid "Basic" +msgstr "BĆ”sico" + +#: ../../enterprise/meta/advanced/metasetup.setup.php:113 +#: ../../enterprise/meta/include/functions_meta.php:77 +#: ../../include/functions_config.php:178 +msgid "Language settings" +msgstr "ConfiguraciĆ³n de idioma" + +#: ../../enterprise/meta/advanced/metasetup.setup.php:126 +#: ../../enterprise/meta/include/functions_meta.php:82 +#: ../../godmode/setup/setup_general.php:110 ../../include/functions_config.php:190 +msgid "Auto login (hash) password" +msgstr "ContraseƱa (Ā«hashĀ») de inicio de sesiĆ³n automĆ”tico" + +#: ../../enterprise/meta/advanced/metasetup.setup.php:142 +#: ../../enterprise/meta/include/functions_meta.php:92 +#: ../../godmode/setup/setup_general.php:124 ../../include/functions_config.php:194 +msgid "Time source" +msgstr "Hora de referencia" + +#: ../../enterprise/meta/advanced/metasetup.setup.php:144 +#: ../../godmode/setup/setup_general.php:125 ../../mobile/operation/events.php:248 +#: ../../include/functions_reporting_html.php:1147 +#: ../../include/functions_reporting_html.php:2495 ../../include/functions.php:1235 +#: ../../include/functions_graph.php:2869 ../../include/functions_graph.php:3570 +#: ../../include/functions_graph.php:3572 +#: ../../include/lib/Dashboard/Widgets/top_n_events_by_module.php:433 +#: ../../include/lib/Dashboard/Widgets/top_n_events_by_group.php:429 +#: ../../include/functions_events.php:2444 ../../include/functions_events.php:2877 +#: ../../operation/events/events.php:743 +msgid "System" +msgstr "Sistema" + +#: ../../enterprise/meta/advanced/metasetup.setup.php:145 +#: ../../godmode/setup/setup_general.php:126 +msgid "Database" +msgstr "Base de datos" + +#: ../../enterprise/meta/advanced/metasetup.setup.php:148 +#: ../../enterprise/meta/include/functions_meta.php:102 +#: ../../godmode/setup/setup_general.php:149 ../../include/functions_config.php:206 +msgid "Enforce https" +msgstr "Forzar https" + +#: ../../enterprise/meta/advanced/metasetup.setup.php:149 +#, php-format +msgid "" +"If SSL is not properly configured, you will lose access to the %s Console. Do you " +"want to continue?" +msgstr "" +"Si el SSL no esta correctamente configurado, perderĆ” el acceso a la consola %s. " +"ĀæDesea continuar?" + +#: ../../enterprise/meta/advanced/metasetup.setup.php:152 +#: ../../enterprise/meta/include/functions_meta.php:127 +#: ../../godmode/setup/setup_general.php:183 ../../include/functions_config.php:217 +msgid "Attachment store" +msgstr "Almacenamiento de adjuntos" + +#: ../../enterprise/meta/advanced/metasetup.setup.php:152 +msgid "Directory where temporary data is stored." +msgstr "Directorio donde se almacenan los datos temporales" + +#: ../../enterprise/meta/advanced/metasetup.setup.php:155 +#: ../../enterprise/meta/include/functions_meta.php:138 +#: ../../godmode/setup/setup_general.php:88 ../../include/functions_config.php:182 +msgid "Remote config directory" +msgstr "Directorio remoto de configuraciĆ³n" + +#: ../../enterprise/meta/advanced/metasetup.setup.php:158 +#: ../../enterprise/meta/include/functions_meta.php:148 +#: ../../godmode/setup/setup_general.php:98 +msgid "Phantomjs bin directory" +msgstr "Directorio Phantomjs bin" + +#: ../../enterprise/meta/advanced/metasetup.setup.php:158 +msgid "Directory where phantomjs binary file exists and has execution grants." +msgstr "Directorio que contiene en archivo binario phantomjs con permisos de ejecuciĆ³n." + +#: ../../enterprise/meta/advanced/metasetup.setup.php:162 +#: ../../godmode/setup/setup_general.php:249 +#: ../../include/functions_visual_map_editor.php:290 +#: ../../include/rest-api/models/VisualConsole/Items/Clock.php:271 +#: ../../include/functions_register.php:134 +msgid "Africa" +msgstr "Ɓfrica" + +#: ../../enterprise/meta/advanced/metasetup.setup.php:163 +#: ../../godmode/setup/setup_general.php:250 +#: ../../include/functions_visual_map_editor.php:291 +#: ../../include/rest-api/models/VisualConsole/Items/Clock.php:272 +#: ../../include/functions_register.php:135 +msgid "America" +msgstr "AmĆ©rica" + +#: ../../enterprise/meta/advanced/metasetup.setup.php:164 +#: ../../godmode/setup/setup_general.php:251 +#: ../../include/functions_visual_map_editor.php:292 +#: ../../include/rest-api/models/VisualConsole/Items/Clock.php:273 +#: ../../include/functions_register.php:136 +msgid "Antarctica" +msgstr "AntĆ”rtida" + +#: ../../enterprise/meta/advanced/metasetup.setup.php:165 +#: ../../godmode/setup/setup_general.php:252 +#: ../../include/functions_visual_map_editor.php:293 +#: ../../include/rest-api/models/VisualConsole/Items/Clock.php:274 +#: ../../include/functions_register.php:137 +msgid "Arctic" +msgstr "Ɓrtico" + +#: ../../enterprise/meta/advanced/metasetup.setup.php:166 +#: ../../godmode/setup/setup_general.php:253 +#: ../../include/functions_visual_map_editor.php:294 +#: ../../include/rest-api/models/VisualConsole/Items/Clock.php:275 +#: ../../include/functions_register.php:138 +msgid "Asia" +msgstr "Asia" + +#: ../../enterprise/meta/advanced/metasetup.setup.php:167 +#: ../../godmode/setup/setup_general.php:254 +#: ../../include/functions_visual_map_editor.php:295 +#: ../../include/rest-api/models/VisualConsole/Items/Clock.php:276 +#: ../../include/functions_register.php:139 +msgid "Atlantic" +msgstr "AtlĆ”ntico" + +#: ../../enterprise/meta/advanced/metasetup.setup.php:168 +#: ../../godmode/setup/setup_general.php:255 +#: ../../include/functions_visual_map_editor.php:296 +#: ../../include/rest-api/models/VisualConsole/Items/Clock.php:277 +#: ../../include/functions_register.php:140 +msgid "Australia" +msgstr "Australia" + +#: ../../enterprise/meta/advanced/metasetup.setup.php:169 +#: ../../godmode/setup/setup_general.php:256 +#: ../../include/functions_visual_map_editor.php:297 +#: ../../include/rest-api/models/VisualConsole/Items/Clock.php:278 +#: ../../include/functions_register.php:141 +msgid "Europe" +msgstr "Europa" + +#: ../../enterprise/meta/advanced/metasetup.setup.php:170 +#: ../../godmode/setup/setup_general.php:257 +#: ../../include/functions_visual_map_editor.php:298 +#: ../../include/rest-api/models/VisualConsole/Items/Clock.php:279 +#: ../../include/functions_register.php:142 +msgid "Indian" +msgstr "ƍndico" + +#: ../../enterprise/meta/advanced/metasetup.setup.php:171 +#: ../../godmode/setup/setup_general.php:258 +#: ../../include/functions_visual_map_editor.php:299 +#: ../../include/rest-api/models/VisualConsole/Items/Clock.php:280 +#: ../../include/functions_register.php:143 +msgid "Pacific" +msgstr "PacĆ­fico" + +#: ../../enterprise/meta/advanced/metasetup.setup.php:172 +#: ../../godmode/setup/setup_general.php:259 +#: ../../include/functions_visual_map_editor.php:300 +#: ../../include/rest-api/models/VisualConsole/Items/Clock.php:281 +#: ../../include/functions_register.php:144 +msgid "UTC" +msgstr "UTC" + +#: ../../enterprise/meta/advanced/metasetup.setup.php:191 +#: ../../enterprise/meta/include/functions_meta.php:158 +#: ../../godmode/setup/setup_general.php:279 ../../include/functions_register.php:164 +#: ../../include/functions_config.php:259 +msgid "Timezone setup" +msgstr "ConfiguraciĆ³n de zona horaria" + +#: ../../enterprise/meta/advanced/metasetup.setup.php:193 +#: ../../godmode/setup/setup_general.php:296 +msgid "Change timezone" +msgstr "Cambiar zona horaria" + +#: ../../enterprise/meta/advanced/metasetup.setup.php:197 +#: ../../enterprise/meta/include/functions_meta.php:168 +#: ../../godmode/setup/setup_general.php:319 ../../include/functions_config.php:290 +msgid "Public URL" +msgstr "URL pĆŗblica" + +#: ../../enterprise/meta/advanced/metasetup.setup.php:198 +#, php-format +msgid "" +"Set this value when you need your %s to be accessible via a public URL (for example " +"using Apache mod_proxy settings)." +msgstr "" +"Ajuste este valor cuando necesite que %s estĆ© accesible a travĆ©s de una URL pĆŗblica " +"(por ejemplo usando los ajustes mod_proxy de Apache)." + +#: ../../enterprise/meta/advanced/metasetup.setup.php:201 +#: ../../enterprise/meta/include/functions_meta.php:178 +#: ../../godmode/setup/setup_general.php:329 ../../include/functions_config.php:294 +msgid "Force use Public URL" +msgstr "Forzar el uso de la URL pĆŗblica" + +#: ../../enterprise/meta/advanced/metasetup.setup.php:202 +msgid "Force using defined public URL)." +msgstr "Forzar usando la URL pĆŗblica definida." + +#: ../../enterprise/meta/advanced/metasetup.setup.php:209 +#, php-format +msgid "" +"If public URL is not properly configured, you will lose access to the %s Console. Do " +"you want to continue?" +msgstr "" +"Si la URL no estĆ” correctamente configurada, no tendrĆ” acceso a la consola %s. ĀæDesea " +"continuar?" + +#: ../../enterprise/meta/advanced/metasetup.setup.php:215 +#: ../../enterprise/meta/include/functions_meta.php:188 +#: ../../godmode/setup/setup_general.php:343 ../../include/functions_config.php:298 +msgid "Public URL host exclusions" +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:1485 +msgid "Disable custom live view filters" +msgstr "Desactiva los filtros de vista activa personalizados" + +#: ../../enterprise/meta/advanced/metasetup.setup.php:218 +msgid "" +"Disable the definition of custom filters in the live view. Only existing filters can " +"be used." +msgstr "" +"Desactiva la definiciĆ³n de filtros personalizados en la vista activa. Solo pueden " +"usarse los filtros existentes." + +#: ../../enterprise/meta/advanced/metasetup.setup.php:222 +#: ../../enterprise/meta/include/functions_meta.php:208 +#: ../../godmode/setup/setup_general.php:370 ../../include/functions_config.php:310 +msgid "Command Snapshot" +msgstr "Salida de comandos como capturas" + +#: ../../enterprise/meta/advanced/metasetup.setup.php:222 +msgid "The string modules with several lines show as command output" +msgstr "" +"Los mĆ³dulos de tipo cadena de texto con varias lĆ­neas se mostrarĆ”n como una salida de " +"comando" + +#: ../../enterprise/meta/advanced/metasetup.setup.php:227 +msgid "Customize sections" +msgstr "Personalizar secciones" + +#: ../../enterprise/meta/advanced/metasetup.setup.php:248 +msgid "Disabled sections" +msgstr "Secciones desactivadas" + +#: ../../enterprise/meta/advanced/metasetup.setup.php:250 +msgid "Enabled sections" +msgstr "Activar secciones" + +#: ../../enterprise/meta/advanced/metasetup.setup.php:255 +msgid "Push selected sections to enable it" +msgstr "Selecciona las secciones elegidas para activarlo" + +#: ../../enterprise/meta/advanced/metasetup.setup.php:257 +msgid "Pop selected sections to disable it" +msgstr "Deshacer selecciĆ³n de las secciones para desactivarlo" + +#: ../../enterprise/meta/advanced/metasetup.setup.php:267 +msgid "Please be careful if you put a password put https access." +msgstr "" +"Por favor, ten cuidado. Si tienes que introducir una contraseƱa pon acceso https." + +#: ../../enterprise/meta/advanced/metasetup.setup.php:272 +#: ../../enterprise/meta/include/functions_meta.php:238 +#: ../../godmode/setup/setup_general.php:193 ../../include/functions_config.php:230 +msgid "IP list with API access" +msgstr "Lista de IPs con acceso a la API" + +#: ../../enterprise/meta/advanced/metasetup.setup.php:283 +#: ../../enterprise/meta/include/functions_meta.php:248 +#: ../../enterprise/godmode/setup/setup.php:294 +msgid "Enable update manager" +msgstr "Habilitar gestor de actualizaciones" + +#: ../../enterprise/meta/advanced/metasetup.setup.php:288 +#: ../../enterprise/meta/include/functions_meta.php:273 +#: ../../enterprise/godmode/setup/setup.php:90 ../../include/functions_config.php:409 +msgid "Size of collection" +msgstr "TamaƱo de la colecciĆ³n" + +#: ../../enterprise/meta/advanced/metasetup.setup.php:289 +#: ../../enterprise/godmode/setup/setup.php:98 +msgid " Bytes" +msgstr " Bytes" + +#: ../../enterprise/meta/advanced/metasetup.setup.php:291 +msgid "Max. agents to add in policy concurrently" +msgstr "MĆ”x. de agentes a aƱadir a una polĆ­tica simultĆ”neamente" + +#: ../../enterprise/meta/advanced/metasetup.setup.php:291 +msgid "" +"Maximum allowed number of agents to be added in policy concurrently (adding a high " +"number of agents at a time can lead to performance issues)" +msgstr "" +"NĆŗmero mĆ”ximo de agentes permitido a aƱadir a una polĆ­tica simultĆ”neamente (aƱadir un " +"gran nĆŗmero de agentes de una vex puede causar problemas de funcionamiento)" + +#: ../../enterprise/meta/advanced/metasetup.setup.php:294 +msgid "Synchronization queue items warn detection" +msgstr "Los elementos de la cola de sincronizaciĆ³n advierten a la detecciĆ³n" + +#: ../../enterprise/meta/advanced/metasetup.setup.php:294 +msgid "Number of items in synchronization queue before be notified, per node" +msgstr "" +"NĆŗmero de elementos en la cola de sincronizaciĆ³n antes de ser notificados, por nodo" + +#: ../../enterprise/meta/advanced/metasetup.setup.php:298 +msgid "Enable Agent API" +msgstr "Habilitar API del agente" + +#: ../../enterprise/meta/advanced/metasetup.setup.php:320 +msgid "Enable log viewer" +msgstr "Habilitar el visor de logs" + +#: ../../enterprise/meta/advanced/metasetup.setup.php:324 +#: ../../enterprise/meta/include/functions_meta.php:303 +#: ../../godmode/setup/setup_general.php:467 +msgid "Enable console log" +msgstr "Habilitar log de consola" + +#: ../../enterprise/meta/advanced/metasetup.setup.php:324 +msgid "Log location: pandora_console/log/console.log" +msgstr "LocalizaciĆ³n de logs: pandora_console/log/console.log" + +#: ../../enterprise/meta/advanced/metasetup.setup.php:345 +#: ../../enterprise/meta/include/functions_meta.php:313 +#: ../../godmode/setup/setup_general.php:478 +msgid "Enable audit log" +msgstr "Habilitar auditorĆ­a de logs" + +#: ../../enterprise/meta/advanced/metasetup.setup.php:345 +msgid "Log location: pandora_console/log/audit.log" +msgstr "LocalizaciĆ³n de logs: pandora_console/log/audit.log" + +#: ../../enterprise/meta/advanced/policymanager.sync.php:247 +#: ../../enterprise/meta/include/functions_groups_meta.php:174 +#: ../../godmode/groups/group_list.php:667 +#, php-format +msgid "Error connecting to %s" +msgstr "Error al conectar con %s" + +#: ../../enterprise/meta/advanced/policymanager.sync.php:255 +#, php-format +msgid "Error creating %s policies" +msgstr "Error al crear las polĆ­ticas %s" + +#: ../../enterprise/meta/advanced/policymanager.sync.php:259 +#, php-format +msgid "Created %s policies" +msgstr "%s polĆ­ticas creadas" + +#: ../../enterprise/meta/advanced/policymanager.sync.php:264 +#, php-format +msgid "Error creating/updating %s/%s policy modules" +msgstr "Error al crear/actualizar %s/%s mĆ³dulos de polĆ­ticas" + +#: ../../enterprise/meta/advanced/policymanager.sync.php:268 +#, php-format +msgid "Created/Updated %s/%s policy modules" +msgstr "Creados/actualizados %s/%s mĆ³dulos de polĆ­ticas" + +#: ../../enterprise/meta/advanced/policymanager.sync.php:273 +#, php-format +msgid "Error deleting %s policy modules" +msgstr "Error al eliminar %s mĆ³dulos de polĆ­ticas" + +#: ../../enterprise/meta/advanced/policymanager.sync.php:277 +#, php-format +msgid "Deleted %s policy modules" +msgstr "Eliminados %s mĆ³dulos de polĆ­ticas" + +#: ../../enterprise/meta/advanced/policymanager.sync.php:282 +#, php-format +msgid "Error creating %s policy alerts" +msgstr "Error al crear %s alertas de polĆ­ticas" + +#: ../../enterprise/meta/advanced/policymanager.sync.php:286 +#, php-format +msgid "Created %s policy alerts" +msgstr "Alertas de polĆ­ticas %s creadas correctamente" + +#: ../../enterprise/meta/advanced/policymanager.sync.php:291 +#, php-format +msgid "Error deleting %s policy alerts" +msgstr "Error al eliminar %s alertas de polĆ­ticas" + +#: ../../enterprise/meta/advanced/policymanager.sync.php:295 +#, php-format +msgid "Deleted %s policy alerts" +msgstr "%s alertas de polĆ­ticas eliminadas correctamente" + +#: ../../enterprise/meta/advanced/policymanager.sync.php:307 +#: ../../enterprise/meta/include/functions_events_meta.php:110 +#: ../../enterprise/godmode/massive/massive_add_modules_policy.php:147 +#: ../../enterprise/include/functions_log.php:279 +#: ../../enterprise/include/functions_log.php:282 +#: ../../enterprise/include/class/LogSource.class.php:626 +#: ../../enterprise/operation/log/log_viewer.php:654 +#: ../../godmode/massive/massive_copy_modules.php:144 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1594 +#: ../../godmode/events/event_edit_filter.php:632 +#: ../../godmode/events/custom_events.php:109 ../../include/functions_events.php:212 +#: ../../include/functions_events.php:283 ../../include/functions_events.php:4175 +#: ../../include/functions_events.php:4256 +#: ../../operation/agentes/log_sources_status.php:56 +#: ../../operation/agentes/pandora_networkmap.editor.php:336 +#: ../../operation/agentes/pandora_networkmap.view.php:136 +#: ../../operation/events/events.php:1722 +msgid "Source" +msgstr "Origen" + +#: ../../enterprise/meta/advanced/policymanager.sync.php:308 +#: ../../extensions/dbmanager.php:204 ../../include/lib/Dashboard/Widget.php:601 +msgid "This metaconsole" +msgstr "Esta Metaconsola" + +#: ../../enterprise/meta/advanced/policymanager.sync.php:319 +#: ../../enterprise/meta/advanced/policymanager.queue.php:210 +#: ../../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:219 +#: ../../enterprise/godmode/agentes/plugins_manager.php:193 +#: ../../enterprise/godmode/policies/policy_queue.php:593 +#: ../../enterprise/godmode/policies/policy_queue.php:647 +#: ../../enterprise/godmode/massive/massive_edit_tags_policy.php:116 +#: ../../enterprise/godmode/massive/massive_add_alerts_policy.php:102 +#: ../../enterprise/godmode/massive/massive_add_modules_policy.php:208 +#: ../../enterprise/godmode/massive/massive_tags_edit_policy.php:108 +#: ../../enterprise/godmode/massive/massive_delete_alerts_policy.php:112 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:462 +#: ../../enterprise/include/functions_policies.php:4070 +#: ../../enterprise/operation/agentes/policy_view.php:67 +#: ../../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:841 ../../godmode/alerts/alert_view.php:148 +#: ../../include/ajax/alert_list.ajax.php:285 ../../include/ajax/module.php:974 +#: ../../operation/agentes/status_monitor.php:1302 +msgid "Policy" +msgstr "PolĆ­tica" + +#: ../../enterprise/meta/advanced/policymanager.sync.php:321 +#: ../../enterprise/godmode/massive/massive_add_modules_policy.php:199 +#: ../../godmode/massive/massive_copy_modules.php:239 +msgid "Targets" +msgstr "Destinos" + +#: ../../enterprise/meta/advanced/license_meta.php:52 ../../godmode/setup/license.php:80 +msgid "Failed to Update license file" +msgstr "Error al actualizar el archivo de licencia" + +#: ../../enterprise/meta/advanced/license_meta.php:59 +msgid "Metaconsole and all nodes license updated" +msgstr "Licencia de la Metaconsola y todos sus mĆ³dulos actualizada correctamente" + +#: ../../enterprise/meta/advanced/license_meta.php:61 +#, php-format +msgid "Metaconsole license updated but %d of %d node synchronization failed" +msgstr "" +"Licencia de la Metaconsola actualizada pero %d de %d de los nodos no se sincronizaron " +"correctamente" + +#: ../../enterprise/meta/advanced/metasetup.auth.php:27 +msgid "" +"Be aware that group synchronization can change the group configuration of the node" +msgstr "" +"Tenga en cuenta que la sincronizaciĆ³n de grupos puede cambiar la configuraciĆ³n de " +"grupo del nodo" + +#: ../../enterprise/meta/advanced/metasetup.performance.php:74 +#: ../../godmode/menu.php:342 ../../godmode/setup/setup.php:125 +#: ../../godmode/setup/setup.php:260 +msgid "Performance" +msgstr "Rendimiento" + +#: ../../enterprise/meta/advanced/metasetup.performance.php:79 +#: ../../enterprise/meta/include/functions_meta.php:1924 +#: ../../godmode/setup/performance.php:259 ../../godmode/setup/performance.php:449 +#: ../../include/functions_config.php:787 +msgid "Max. days before delete events" +msgstr "NĀŗ max. de dĆ­as antes de borrar eventos" + +#: ../../enterprise/meta/advanced/metasetup.performance.php:83 +#: ../../enterprise/meta/include/functions_meta.php:1934 +msgid "Active events history" +msgstr "HistĆ³rico de eventos activos" + +#: ../../enterprise/meta/advanced/metasetup.performance.php:88 +msgid "Use real-time statistics" +msgstr "Usar estadĆ­sticas en tiempo real" + +#: ../../enterprise/meta/advanced/metasetup.performance.php:92 +#: ../../enterprise/meta/include/functions_meta.php:1949 +#: ../../godmode/setup/performance.php:283 ../../include/functions_config.php:800 +msgid "Max. days before delete audit events" +msgstr "NĀŗ max. de dĆ­as antes de borrar eventos de auditorĆ­a interna" + +#: ../../enterprise/meta/advanced/metasetup.performance.php:95 +#: ../../enterprise/meta/include/functions_meta.php:1959 +#: ../../godmode/setup/performance.php:540 ../../include/functions_config.php:832 +msgid "Default hours for event view" +msgstr "NĀŗ de horas predeterminado para la visualizaciĆ³n de eventos" + +#: ../../enterprise/meta/advanced/metasetup.performance.php:98 +msgid "Migration block size" +msgstr "TamaƱo del bloque de migraciĆ³n" + +#: ../../enterprise/meta/advanced/metasetup.performance.php:108 +#: ../../godmode/setup/performance.php:614 +msgid "Events response max. execution" +msgstr "MĆ”x. tiempo de ejecuciĆ³n de respuesta de eventos" + +#: ../../enterprise/meta/advanced/metasetup.performance.php:110 +msgid "Number of events that will perform the desired action at the same time" +msgstr "NĆŗmero de eventos que llevarĆ”n a cabo la acciĆ³n deseada a la vez." + +#: ../../enterprise/meta/advanced/metasetup.performance.php:122 +#: ../../enterprise/meta/include/functions_meta.php:1989 +msgid "Max. number of events per node" +msgstr "NĆŗmero mĆ”ximo de alertas por nodo" + +#: ../../enterprise/meta/advanced/metasetup.performance.php:124 +msgid "maximum number of events to be displayed per node" +msgstr "NĆŗmero mĆ”ximo de eventos a mostrar por nodo" + +#: ../../enterprise/meta/advanced/metasetup.performance.php:136 +#: ../../godmode/setup/performance.php:624 ../../include/functions_config.php:894 +msgid "Row limit in csv log" +msgstr "LĆ­mite de lĆ­neas en log CSV" + +#: ../../enterprise/meta/advanced/metasetup.performance.php:145 +#: ../../enterprise/meta/include/functions_meta.php:2022 +#: ../../godmode/setup/performance.php:363 ../../include/functions_config.php:868 +msgid "Max. macro data fields" +msgstr "NĀŗ mĆ”x. de campos de macro de datos" + +#: ../../enterprise/meta/advanced/metasetup.performance.php:160 +#: ../../godmode/setup/performance.php:660 +#, 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:165 +#: ../../godmode/setup/performance.php:677 +msgid "PhantomJS cache cleanup " +msgstr "Limpieza de cachĆ© de PhantomJS " + +#: ../../enterprise/meta/advanced/metasetup.performance.php:172 +#: ../../godmode/setup/performance.php:684 +msgid "No scheduled" +msgstr "No programado" + +#: ../../enterprise/meta/advanced/metasetup.performance.php:173 +#: ../../godmode/setup/performance.php:685 +msgid "Each week" +msgstr "Cada semana" + +#: ../../enterprise/meta/advanced/metasetup.performance.php:174 +#: ../../godmode/setup/performance.php:686 +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" + +#: ../../enterprise/meta/advanced/collections.php:122 +#: ../../enterprise/meta/advanced/collections.php:138 +#: ../../enterprise/godmode/agentes/collection_manager.php:94 +#: ../../enterprise/godmode/agentes/collections.php:188 +#: ../../enterprise/godmode/agentes/collections.php:210 +msgid "Successful create collection package." +msgstr "Paquete de la colecciĆ³n creado correctamente" + +#: ../../enterprise/meta/advanced/collections.php:139 +#: ../../enterprise/godmode/agentes/collection_manager.php:95 +#: ../../enterprise/godmode/agentes/collections.php:211 +msgid "Can not create collection package." +msgstr "No se puede crear el paquete de la colecciĆ³n" + +#: ../../enterprise/meta/advanced/collections.php:149 +#: ../../enterprise/godmode/agentes/collections.php:246 +msgid "Error: Id must not be empty" +msgstr "Error: El ID no puede estar vacĆ­o" + +#: ../../enterprise/meta/advanced/collections.php:163 +#: ../../enterprise/godmode/agentes/collections.php:260 +msgid "Successful re-create collection directory." +msgstr "Directorio de la colecciĆ³n creado nuevamente correctamente." + +#: ../../enterprise/meta/advanced/collections.php:164 +#: ../../enterprise/godmode/agentes/collections.php:261 +msgid "Can not re-create collection directory." +msgstr "No se puede volver a crear crear el directorio de la colecciĆ³n." + +#: ../../enterprise/meta/advanced/collections.php:190 +#: ../../enterprise/godmode/agentes/collections.php:287 +msgid "Successful re-create collections directories." +msgstr "Directorios de la colecciĆ³n creados correctamente." + +#: ../../enterprise/meta/advanced/collections.php:191 +#: ../../enterprise/godmode/agentes/collections.php:288 +msgid "Can not re-create collections directories." +msgstr "No se puede volver a crear los directorios de la colecciĆ³n." + +#: ../../enterprise/meta/advanced/collections.php:205 +msgid "To manage collections you must activate centralized management" +msgstr "Para administrar colecciones, active la gestiĆ³n centralizada" + +#: ../../enterprise/meta/advanced/collections.php:218 +#: ../../enterprise/meta/advanced/collections.php:224 +#: ../../godmode/users/user_list.php:402 ../../godmode/users/user_list.php:406 +msgid "Search by username, fullname or email" +msgstr "Buscar por nombre de usuario, nombre completo o email" + +#: ../../enterprise/meta/advanced/collections.php:243 +#: ../../enterprise/meta/advanced/policymanager.queue.php:246 +#: ../../enterprise/meta/monitoring/custom_fields_view.php:334 +#: ../../enterprise/meta/agentsearch.php:113 +#: ../../enterprise/godmode/modules/local_components.php:584 +#: ../../godmode/modules/manage_network_components.php:690 +#: ../../godmode/users/user_list.php:444 ../../godmode/alerts/alert_actions.php:315 +#: ../../godmode/alerts/alert_templates.php:337 +#: ../../godmode/reporting/reporting_builder.list_items.php:273 +#: ../../godmode/tag/tag.php:246 ../../godmode/tag/tag.php:412 +#: ../../operation/tree.php:304 +msgid "Show Options" +msgstr "Mostrar opciones" + +#: ../../enterprise/meta/advanced/collections.php:250 +#: ../../godmode/users/user_list.php:451 +msgid "Users control filter" +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:373 +#: ../../enterprise/godmode/alerts/alert_inventory_list.php:174 +#: ../../godmode/users/user_list.php:452 ../../godmode/snmpconsole/snmp_alert.php:1180 +#: ../../godmode/alerts/alert_list.list.php:188 ../../operation/agentes/graphs.php:269 +#: ../../operation/snmpconsole/snmp_view.php:714 +#: ../../operation/snmpconsole/snmp_view.php:813 +msgid "Toggle filter(s)" +msgstr "Conmutar filtro(s)" + +#: ../../enterprise/meta/advanced/collections.php:259 +#: ../../enterprise/godmode/agentes/collections.php:296 +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:379 +#: ../../enterprise/include/functions_groups.php:81 +#: ../../enterprise/operation/agentes/ver_agente.php:215 +#: ../../godmode/agentes/configurar_agente.php:702 +msgid "Collection" +msgstr "ColecciĆ³n" + +#: ../../enterprise/meta/advanced/collections.php:364 +#: ../../enterprise/godmode/agentes/collection_manager.php:110 +#: ../../enterprise/godmode/agentes/collections.php:380 +#: ../../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:412 +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:413 +msgid "Delete collection" +msgstr "Eliminar colecciĆ³n" + +#: ../../enterprise/meta/advanced/collections.php:440 +#: ../../enterprise/godmode/agentes/collections.php:420 +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:421 +msgid "Re-Apply changes" +msgstr "Volver a aplicar los cambios" + +#: ../../enterprise/meta/advanced/collections.php:448 +#: ../../enterprise/godmode/agentes/collections.php:428 +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:429 +msgid "Apply changes" +msgstr "Aplicar cambios" + +#: ../../enterprise/meta/advanced/collections.php:454 +#: ../../enterprise/godmode/agentes/collections.php:434 +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:439 +#: ../../enterprise/godmode/agentes/collections.php:440 +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:460 +msgid "Re-create directories" +msgstr "Volver a crear directorios" + +#: ../../enterprise/meta/advanced/collections.php:504 +#: ../../general/first_task/collections.php:18 +msgid "There are no collections defined yet." +msgstr "No hay colecciones definidas todavĆ­a." + +#: ../../enterprise/meta/advanced/policymanager.queue.php:58 +#: ../../enterprise/godmode/policies/policy_queue.php:96 +msgid "Operation successfully deleted from the queue" +msgstr "OperaciĆ³n eliminada correctamente de la cola" + +#: ../../enterprise/meta/advanced/policymanager.queue.php:59 +#: ../../enterprise/godmode/policies/policy_queue.php:97 +msgid "Operation cannot be deleted from the queue" +msgstr "La operaciĆ³n no puede ser eliminada de la cola." + +#: ../../enterprise/meta/advanced/policymanager.queue.php:214 +#: ../../enterprise/meta/advanced/policymanager.queue.php:259 +#: ../../enterprise/meta/include/functions_autoprovision.php:641 +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:494 +#: ../../enterprise/godmode/policies/policy_queue.php:605 +#: ../../enterprise/godmode/policies/policy_queue.php:649 +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:231 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3751 +#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:155 +#: ../../enterprise/include/functions_reporting_csv.php:1014 +#: ../../enterprise/include/class/CommandCenter.class.php:451 +#: ../../extensions/api_checker.php:156 ../../godmode/extensions.php:148 +#: ../../godmode/reporting/reporting_builder.item_editor.php:4445 +#: ../../include/functions_reporting_html.php:2244 +#: ../../include/functions_reporting_html.php:4737 ../../include/functions_menu.php:592 +#: ../../include/class/ExternalTools.class.php:530 +msgid "Operation" +msgstr "OperaciĆ³n" + +#: ../../enterprise/meta/advanced/policymanager.queue.php:218 +#: ../../enterprise/godmode/policies/policy_queue.php:609 +msgid "Apply (database and files)" +msgstr "Aplicar (base de datos y archivos)" + +#: ../../enterprise/meta/advanced/policymanager.queue.php:219 +#: ../../enterprise/meta/advanced/policymanager.queue.php:315 +#: ../../enterprise/godmode/policies/policy_queue.php:610 +#: ../../enterprise/godmode/policies/policy_queue.php:718 +msgid "Apply (only database)" +msgstr "Aplicar (solo en la base de datos)" + +#: ../../enterprise/meta/advanced/policymanager.queue.php:229 +#: ../../enterprise/godmode/policies/policy_queue.php:620 +msgid "Complete" +msgstr "Completo" + +#: ../../enterprise/meta/advanced/policymanager.queue.php:230 +#: ../../enterprise/godmode/policies/policy_queue.php:621 +msgid "Incomplete" +msgstr "Incompleto" + +#: ../../enterprise/meta/advanced/policymanager.queue.php:235 +#: ../../enterprise/godmode/policies/policy_queue.php:626 +#: ../../enterprise/godmode/policies/policies.php:337 +#: ../../enterprise/godmode/policies/policy_linking.php:129 +#: ../../enterprise/godmode/massive/massive_delete_alerts_snmp.php:209 +#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:269 +#: ../../enterprise/godmode/setup/setup_skins.php:96 +#: ../../enterprise/godmode/setup/setup_acl.php:574 +#: ../../enterprise/include/class/SAPView.class.php:409 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2868 +#: ../../enterprise/include/functions_ipam.php:1779 +#: ../../enterprise/operation/services/services.treeview_services.php:164 +#: ../../enterprise/operation/services/services.treeview_services.php:168 #: ../../enterprise/operation/services/services.list.php:454 #: ../../enterprise/operation/services/services.list.php:459 #: ../../enterprise/operation/services/services.table_services.php:363 #: ../../enterprise/operation/services/services.table_services.php:368 -#: ../../enterprise/include/class/SAPView.class.php:409 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2826 -#: ../../enterprise/include/functions_ipam.php:1779 -#: ../../enterprise/meta/advanced/policymanager.queue.php:235 -#: ../../enterprise/godmode/setup/setup_skins.php:96 -#: ../../enterprise/godmode/setup/setup_acl.php:574 -#: ../../enterprise/godmode/massive/massive_delete_alerts_snmp.php:209 -#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:269 -#: ../../enterprise/godmode/agentes/manage_config_remote.php:148 -#: ../../enterprise/godmode/policies/policy_queue.php:626 -#: ../../enterprise/godmode/policies/policy_linking.php:129 -#: ../../enterprise/godmode/policies/policies.php:337 #: ../../godmode/modules/manage_network_templates_form.php:277 #: ../../godmode/modules/manage_network_templates_form.php:337 -#: ../../godmode/reporting/reporting_builder.list_items.php:217 -#: ../../godmode/reporting/reporting_builder.list_items.php:261 -#: ../../godmode/reporting/reporting_builder.item_editor.php:1049 +#: ../../godmode/agentes/module_manager.php:83 +#: ../../godmode/netflow/nf_item_list.php:174 #: ../../godmode/snmpconsole/snmp_alert.php:1176 #: ../../godmode/snmpconsole/snmp_filters.php:203 -#: ../../godmode/snmpconsole/snmp_filters.php:290 ../../godmode/tag/tag.php:233 -#: ../../godmode/netflow/nf_item_list.php:174 -#: ../../godmode/agentes/module_manager.php:83 +#: ../../godmode/snmpconsole/snmp_filters.php:290 +#: ../../godmode/reporting/reporting_builder.list_items.php:217 +#: ../../godmode/reporting/reporting_builder.list_items.php:261 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1099 +#: ../../godmode/tag/tag.php:233 ../../include/functions_ui.php:3386 +#: ../../include/functions_ui.php:3408 ../../include/functions_ui.php:3420 +#: ../../include/class/ModuleTemplates.class.php:765 ../../operation/tree.php:260 +#: ../../operation/agentes/graphs.php:265 +#: ../../operation/agentes/estado_monitores.php:594 +#: ../../operation/netflow/nf_live_view.php:391 +#: ../../operation/incidents/list_integriaims_incidents.php:435 +#: ../../operation/incidents/list_integriaims_incidents.php:439 msgid "Filter" msgstr "Filtro" -#: ../../operation/tree.php:276 -msgid "Search module" -msgstr "Buscar mĆ³dulo" +#: ../../enterprise/meta/advanced/policymanager.queue.php:256 +#: ../../enterprise/meta/monitoring/custom_fields_csv.php:101 +#: ../../enterprise/meta/monitoring/custom_fields_view.php:706 +#: ../../enterprise/meta/monitoring/wizard/wizard.manage_alert.php:197 +#: ../../enterprise/meta/include/functions_wizard_meta.php:174 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1796 +#: ../../enterprise/meta/agentsearch.php:133 ../../enterprise/meta/agentsearch.php:326 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1965 +#: ../../enterprise/include/functions_reporting_csv.php:2733 +#: ../../enterprise/include/class/CSVImportAgents.class.php:154 +#: ../../enterprise/include/class/SAPView.class.php:226 +#: ../../enterprise/include/functions_events.php:216 +#: ../../enterprise/operation/log/log_viewer.php:613 +#: ../../enterprise/operation/inventory/inventory.php:331 +#: ../../godmode/modules/manage_network_components.php:749 +#: ../../godmode/agentes/agent_manager.php:414 +#: ../../godmode/agentes/module_manager.php:844 +#: ../../godmode/massive/massive_edit_agents.php:743 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1194 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3614 +#: ../../godmode/wizards/DiscoveryTaskList.class.php:1043 +#: ../../include/functions_reporting_html.php:2137 +#: ../../include/class/AgentWizard.class.php:1196 ../../operation/events/events.php:1788 +msgid "Server" +msgstr "Servidor" -#: ../../operation/tree.php:285 -#: ../../include/lib/Dashboard/Widgets/module_status.php:173 -#: ../../include/lib/Dashboard/Widgets/module_status.php:538 -#: ../../include/functions_events.php:211 ../../include/functions_events.php:6783 -#: ../../include/functions_reporting_html.php:4948 -#: ../../enterprise/meta/include/functions_events_meta.php:138 -msgid "Module status" -msgstr "Estado del mĆ³dulo" +#: ../../enterprise/meta/advanced/policymanager.queue.php:260 +#: ../../enterprise/godmode/policies/policy_queue.php:650 +#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:702 +#: ../../enterprise/include/class/Omnishell.class.php:401 +#: ../../enterprise/include/functions_ipam.php:1411 +#: ../../enterprise/include/functions_ipam.php:1418 +#: ../../enterprise/include/functions_ipam.php:1423 +#: ../../godmode/wizards/DiscoveryTaskList.class.php:606 +msgid "Progress" +msgstr "Progreso" -#: ../../operation/tree.php:304 ../../operation/events/events_list.php:1102 -#: ../../operation/agentes/alerts_status.php:484 -#: ../../enterprise/meta/monitoring/custom_fields_view.php:334 -#: ../../enterprise/meta/advanced/policymanager.queue.php:246 -#: ../../enterprise/meta/advanced/collections.php:243 -#: ../../enterprise/meta/agentsearch.php:113 -#: ../../enterprise/godmode/modules/local_components.php:584 -#: ../../godmode/modules/manage_network_components.php:690 -#: ../../godmode/reporting/reporting_builder.list_items.php:273 -#: ../../godmode/tag/tag.php:246 ../../godmode/tag/tag.php:412 -#: ../../godmode/alerts/alert_actions.php:315 -#: ../../godmode/alerts/alert_templates.php:337 -#: ../../godmode/users/user_list.php:444 -msgid "Show Options" -msgstr "Mostrar opciones" +#: ../../enterprise/meta/advanced/policymanager.queue.php:298 +#: ../../enterprise/godmode/policies/policy_queue.php:688 +msgid "Policy " +msgstr "PolĆ­tica " -#: ../../operation/tree.php:308 -msgid "Tree search" -msgstr "BĆŗsqueda de Ć”rbol" +#: ../../enterprise/meta/advanced/policymanager.queue.php:339 +#: ../../enterprise/godmode/policies/policy_queue.php:748 +#: ../../enterprise/godmode/policies/policy_queue.php:757 +msgid "Policy applying timeout" +msgstr "Tiempo de espera de la aplicaciĆ³n de la polĆ­tica" -#: ../../operation/tree.php:415 ../../operation/tree.php:446 -#: ../../operation/network/network_report.php:313 -#: ../../include/class/Heatmap.class.php:684 -#: ../../include/lib/Dashboard/Widgets/tree_view.php:645 -#: ../../enterprise/tools/ipam/ipam_supernet_treeview.php:93 -#: ../../enterprise/operation/services/services.treeview_services.php:246 -#: ../../enterprise/operation/agentes/tag_view.php:578 -#: ../../enterprise/include/functions_inventory.php:301 -#: ../../godmode/groups/group_list.php:1034 -msgid "No data found" -msgstr "No se encontraron datos" +#: ../../enterprise/meta/advanced/policymanager.queue.php:353 +#: ../../enterprise/godmode/policies/policy_queue.php:776 +msgid "Delete from queue" +msgstr "Eliminar de la cola" -#: ../../operation/tree.php:420 -#: ../../include/lib/Dashboard/Widgets/tree_view.php:601 -#: ../../enterprise/meta/agentsearch.php:315 -msgid "Policies found" -msgstr "PolĆ­ticas encontradas" +#: ../../enterprise/meta/advanced/policymanager.queue.php:371 +msgid "Empty queue." +msgstr "Cola vacĆ­a" -#: ../../operation/tree.php:423 -#: ../../include/lib/Dashboard/Widgets/tree_view.php:605 -msgid "Operating systems found" -msgstr "Sistemas operativos encontrados" - -#: ../../operation/tree.php:426 -#: ../../include/lib/Dashboard/Widgets/tree_view.php:609 -msgid "Tags found" -msgstr "Etiquetas encontradas" - -#: ../../operation/tree.php:429 -#: ../../include/lib/Dashboard/Widgets/tree_view.php:613 -msgid "Module Groups found" -msgstr "Grupos de mĆ³dulos encontrados" - -#: ../../operation/tree.php:436 -#: ../../include/lib/Dashboard/Widgets/tree_view.php:622 -msgid "Groups found" -msgstr "Grupos encontrados" - -#: ../../operation/tree.php:454 ../../include/class/Diagnostics.class.php:549 -#: ../../include/lib/Dashboard/Widgets/tree_view.php:648 -#: ../../include/functions_reporting.php:11500 -#: ../../include/functions_reporting_html.php:5609 -#: ../../enterprise/operation/services/services.treeview_services.php:254 -#: ../../enterprise/include/functions_reporting_csv.php:983 -#: ../../mobile/operation/groups.php:147 ../../godmode/db/db_main.php:102 -#: ../../godmode/groups/group_list.php:1042 -msgid "Total agents" -msgstr "Agentes totales" - -#: ../../operation/tree.php:455 ../../include/class/Diagnostics.class.php:553 -#: ../../include/lib/Dashboard/Widgets/tree_view.php:649 -#: ../../enterprise/operation/services/services.treeview_services.php:255 -#: ../../enterprise/include/functions_reporting_csv.php:983 -#: ../../godmode/module_library/module_library_view.php:159 -#: ../../godmode/groups/group_list.php:1043 -msgid "Total modules" -msgstr "MĆ³dulos totales" - -#: ../../operation/tree.php:456 ../../operation/agentes/group_view.php:223 -#: ../../include/lib/Dashboard/Widgets/tree_view.php:650 -#: ../../include/functions_alerts.php:3363 -#: ../../include/functions_reporting_html.php:2310 -#: ../../include/functions_reporting_html.php:2320 -#: ../../enterprise/operation/services/services.treeview_services.php:256 -#: ../../enterprise/operation/agentes/agent_inventory.php:266 -#: ../../enterprise/include/functions_inventory.php:511 -#: ../../enterprise/include/functions_inventory.php:654 -#: ../../enterprise/meta/monitoring/group_view.php:235 -#: ../../godmode/groups/group_list.php:1044 -msgid "Total" -msgstr "Total" - -#: ../../operation/tree.php:459 ../../operation/tree.php:460 -#: ../../operation/tree.php:461 -#: ../../include/lib/Dashboard/Widgets/tree_view.php:653 -#: ../../include/lib/Dashboard/Widgets/tree_view.php:654 -#: ../../include/lib/Dashboard/Widgets/tree_view.php:655 -#: ../../include/functions_graph.php:2631 -#: ../../include/functions_reporting.php:11361 -#: ../../include/functions_reporting.php:11384 -#: ../../enterprise/operation/services/services.treeview_services.php:259 -#: ../../enterprise/operation/services/services.treeview_services.php:260 -#: ../../enterprise/operation/services/services.treeview_services.php:261 -#: ../../enterprise/include/functions_reporting_csv.php:983 -#: ../../godmode/groups/group_list.php:1047 -#: ../../godmode/groups/group_list.php:1048 -#: ../../godmode/groups/group_list.php:1049 -msgid "Fired alerts" -msgstr "Alertas disparadas" - -#: ../../operation/tree.php:464 -#: ../../include/lib/Dashboard/Widgets/tree_view.php:658 -#: ../../enterprise/operation/services/services.treeview_services.php:264 -#: ../../enterprise/meta/monitoring/custom_fields_view.php:533 -#: ../../godmode/groups/group_list.php:1052 -msgid "Critical agents" -msgstr "Agentes crĆ­ticos" - -#: ../../operation/tree.php:465 -#: ../../include/lib/Dashboard/Widgets/tree_view.php:659 -#: ../../enterprise/operation/services/services.treeview_services.php:265 -#: ../../enterprise/include/functions_reporting_csv.php:983 -#: ../../enterprise/meta/monitoring/custom_fields_view.php:602 -#: ../../mobile/operation/groups.php:171 ../../godmode/groups/group_list.php:1053 -msgid "Critical modules" -msgstr "MĆ³dulos crĆ­ticos" - -#: ../../operation/tree.php:469 -#: ../../include/lib/Dashboard/Widgets/tree_view.php:663 -#: ../../enterprise/operation/services/services.treeview_services.php:269 -#: ../../enterprise/meta/monitoring/custom_fields_view.php:543 -#: ../../godmode/groups/group_list.php:1057 -msgid "Warning agents" -msgstr "Agentes en estado de advertencia" - -#: ../../operation/tree.php:470 -#: ../../include/lib/Dashboard/Widgets/tree_view.php:664 -#: ../../enterprise/operation/services/services.treeview_services.php:270 -#: ../../enterprise/include/functions_reporting_csv.php:983 -#: ../../enterprise/meta/monitoring/custom_fields_view.php:613 -#: ../../mobile/operation/groups.php:168 ../../godmode/groups/group_list.php:1058 -msgid "Warning modules" -msgstr "MĆ³dulos de advertencia" - -#: ../../operation/tree.php:474 -#: ../../include/lib/Dashboard/Widgets/tree_view.php:668 -#: ../../enterprise/operation/services/services.treeview_services.php:274 -#: ../../enterprise/meta/monitoring/custom_fields_view.php:563 -#: ../../godmode/groups/group_list.php:1062 -msgid "Unknown agents" -msgstr "Agentes en desconocido" - -#: ../../operation/tree.php:475 -#: ../../include/lib/Dashboard/Widgets/tree_view.php:669 -#: ../../enterprise/operation/services/services.treeview_services.php:275 -#: ../../enterprise/include/functions_reporting_csv.php:983 -#: ../../enterprise/meta/monitoring/custom_fields_view.php:635 -#: ../../mobile/operation/groups.php:159 ../../godmode/groups/group_list.php:1063 -msgid "Unknown modules" -msgstr "MĆ³dulos desconocidos" - -#: ../../operation/tree.php:479 -#: ../../include/lib/Dashboard/Widgets/tree_view.php:673 -#: ../../enterprise/operation/services/services.treeview_services.php:279 -#: ../../enterprise/meta/monitoring/custom_fields_view.php:573 -#: ../../godmode/groups/group_list.php:1067 -msgid "Not init agents" -msgstr "Agentes no iniciados" - -#: ../../operation/tree.php:480 -#: ../../include/lib/Dashboard/Widgets/tree_view.php:674 -#: ../../enterprise/operation/services/services.treeview_services.php:280 -#: ../../enterprise/include/functions_reporting_csv.php:983 -#: ../../enterprise/meta/monitoring/custom_fields_view.php:646 -#: ../../mobile/operation/groups.php:162 ../../godmode/groups/group_list.php:1068 -msgid "Not init modules" -msgstr "MĆ³dulos no iniciados" - -#: ../../operation/tree.php:484 -#: ../../include/lib/Dashboard/Widgets/tree_view.php:678 -#: ../../enterprise/operation/services/services.treeview_services.php:284 -#: ../../enterprise/meta/monitoring/custom_fields_view.php:553 -#: ../../godmode/groups/group_list.php:1072 -msgid "Normal agents" -msgstr "Agentes en normal" - -#: ../../operation/tree.php:485 -#: ../../include/lib/Dashboard/Widgets/tree_view.php:679 -#: ../../enterprise/operation/services/services.treeview_services.php:285 -#: ../../enterprise/include/functions_reporting_csv.php:983 -#: ../../enterprise/meta/monitoring/custom_fields_view.php:624 -#: ../../mobile/operation/groups.php:165 ../../godmode/groups/group_list.php:1073 -msgid "Normal modules" -msgstr "MĆ³dulos normales" - -#: ../../operation/tree.php:539 ../../operation/agentes/status_monitor.php:2055 -#: ../../operation/agentes/estado_monitores.php:421 -#: ../../enterprise/operation/services/services.treeview_services.php:341 -msgid "Module: " -msgstr "MĆ³dulo: " - -#: ../../operation/tree.php:573 ../../operation/reporting/graph_viewer.php:423 -#: ../../operation/reporting/reporting_viewer.php:367 -#: ../../operation/reporting/reporting_viewer.php:387 -#: ../../operation/network/network_report.php:336 -#: ../../operation/network/network_usage_map.php:184 -#: ../../operation/events/events.php:2806 -#: ../../operation/events/events_list.php:2031 -#: ../../operation/netflow/nf_live_view.php:753 -#: ../../operation/agentes/estado_monitores.php:455 -#: ../../operation/agentes/stat_win.php:617 -#: ../../operation/agentes/datos_agente.php:312 -#: ../../operation/agentes/interface_traffic_graph_win.php:434 -#: ../../include/lib/Dashboard/Widgets/tree_view.php:683 -#: ../../enterprise/operation/log/log_viewer.php:981 -#: ../../enterprise/operation/log/log_viewer.php:993 -#: ../../enterprise/operation/services/services.treeview_services.php:375 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:4313 -#: ../../enterprise/meta/advanced/cron_main.php:530 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3962 -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:1169 -#: ../../enterprise/godmode/wizards/consoletask_js.php:41 -#: ../../extensions/insert_data.php:224 ../../godmode/setup/news.php:322 -#: ../../godmode/reporting/reporting_builder.item_editor.php:4852 -#: ../../godmode/agentes/planned_downtime.editor.php:1494 -#: ../../godmode/alerts/configure_alert_template.php:1456 -#: ../../godmode/alerts/configure_alert_template.php:1540 -msgid "Choose time" -msgstr "Seleccionar hora" - -#: ../../operation/tree.php:574 ../../operation/reporting/graph_viewer.php:424 -#: ../../operation/reporting/reporting_viewer.php:368 -#: ../../operation/reporting/reporting_viewer.php:388 -#: ../../operation/network/network_report.php:337 -#: ../../operation/network/network_usage_map.php:185 -#: ../../operation/events/events.php:2807 -#: ../../operation/events/events_list.php:2032 -#: ../../operation/netflow/nf_live_view.php:754 -#: ../../operation/agentes/estado_monitores.php:456 -#: ../../operation/agentes/stat_win.php:618 -#: ../../operation/agentes/datos_agente.php:313 -#: ../../operation/agentes/interface_traffic_graph_win.php:435 -#: ../../include/lib/Dashboard/Widgets/tree_view.php:684 -#: ../../enterprise/operation/log/log_viewer.php:982 -#: ../../enterprise/operation/log/log_viewer.php:994 -#: ../../enterprise/operation/services/services.treeview_services.php:376 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3988 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:4314 -#: ../../enterprise/include/lib/Metaconsole/Node.php:591 -#: ../../enterprise/meta/advanced/cron_main.php:531 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3963 -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:1170 -#: ../../enterprise/godmode/wizards/consoletask_js.php:42 -#: ../../extensions/insert_data.php:225 ../../godmode/setup/news.php:323 -#: ../../godmode/reporting/reporting_builder.item_editor.php:4853 -#: ../../godmode/agentes/planned_downtime.editor.php:1495 -#: ../../godmode/alerts/configure_alert_template.php:1457 -#: ../../godmode/alerts/configure_alert_template.php:1541 -msgid "Time" -msgstr "Hora" - -#: ../../operation/tree.php:575 ../../operation/reporting/graph_viewer.php:425 -#: ../../operation/reporting/reporting_viewer.php:369 -#: ../../operation/reporting/reporting_viewer.php:389 -#: ../../operation/network/network_report.php:338 -#: ../../operation/network/network_usage_map.php:186 -#: ../../operation/events/events.php:2808 -#: ../../operation/events/events_list.php:2033 -#: ../../operation/netflow/nf_live_view.php:755 -#: ../../operation/agentes/estado_monitores.php:457 -#: ../../operation/agentes/stat_win.php:619 -#: ../../operation/agentes/datos_agente.php:314 -#: ../../operation/agentes/interface_traffic_graph_win.php:436 -#: ../../include/lib/Dashboard/Widgets/tree_view.php:685 -#: ../../include/functions_html.php:2271 -#: ../../enterprise/operation/log/log_viewer.php:983 -#: ../../enterprise/operation/log/log_viewer.php:995 -#: ../../enterprise/operation/services/services.treeview_services.php:377 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3989 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:4315 -#: ../../enterprise/meta/advanced/cron_main.php:532 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3964 -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:1171 -#: ../../enterprise/godmode/wizards/consoletask_js.php:43 -#: ../../extensions/insert_data.php:226 ../../godmode/setup/news.php:324 -#: ../../godmode/reporting/reporting_builder.item_editor.php:4854 -#: ../../godmode/agentes/planned_downtime.editor.php:1496 -#: ../../godmode/alerts/configure_alert_template.php:1458 -#: ../../godmode/alerts/configure_alert_template.php:1542 -msgid "Hour" -msgstr "Hora" - -#: ../../operation/tree.php:576 ../../operation/reporting/graph_viewer.php:426 -#: ../../operation/reporting/reporting_viewer.php:370 -#: ../../operation/reporting/reporting_viewer.php:390 -#: ../../operation/network/network_report.php:339 -#: ../../operation/network/network_usage_map.php:187 -#: ../../operation/events/events.php:2809 -#: ../../operation/events/events_list.php:2034 -#: ../../operation/netflow/nf_live_view.php:756 -#: ../../operation/agentes/estado_monitores.php:458 -#: ../../operation/agentes/stat_win.php:620 -#: ../../operation/agentes/datos_agente.php:315 -#: ../../operation/agentes/interface_traffic_graph_win.php:437 -#: ../../include/lib/Dashboard/Widgets/tree_view.php:686 -#: ../../include/functions_html.php:2272 -#: ../../enterprise/operation/log/log_viewer.php:984 -#: ../../enterprise/operation/log/log_viewer.php:996 -#: ../../enterprise/operation/services/services.treeview_services.php:378 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3990 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:4316 -#: ../../enterprise/meta/advanced/cron_main.php:533 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3965 -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:1172 -#: ../../enterprise/godmode/wizards/consoletask_js.php:44 -#: ../../extensions/insert_data.php:227 ../../godmode/setup/news.php:325 -#: ../../godmode/reporting/reporting_builder.item_editor.php:4855 -#: ../../godmode/agentes/planned_downtime.editor.php:1497 -#: ../../godmode/alerts/configure_alert_template.php:1459 -#: ../../godmode/alerts/configure_alert_template.php:1543 -msgid "Minute" -msgstr "Minuto" - -#: ../../operation/tree.php:577 ../../operation/reporting/graph_viewer.php:427 -#: ../../operation/reporting/reporting_viewer.php:371 -#: ../../operation/reporting/reporting_viewer.php:391 -#: ../../operation/network/network_report.php:340 -#: ../../operation/network/network_usage_map.php:188 -#: ../../operation/events/events.php:2810 -#: ../../operation/events/events_list.php:2035 -#: ../../operation/netflow/nf_live_view.php:757 -#: ../../operation/agentes/estado_monitores.php:459 -#: ../../operation/agentes/stat_win.php:621 -#: ../../operation/agentes/datos_agente.php:316 -#: ../../operation/agentes/interface_traffic_graph_win.php:438 -#: ../../include/lib/Dashboard/Widgets/tree_view.php:687 -#: ../../enterprise/operation/log/log_viewer.php:985 -#: ../../enterprise/operation/log/log_viewer.php:997 -#: ../../enterprise/operation/services/services.treeview_services.php:379 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3991 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:4317 -#: ../../enterprise/meta/advanced/cron_main.php:534 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3966 -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:1173 -#: ../../enterprise/godmode/wizards/consoletask_js.php:45 -#: ../../extensions/insert_data.php:228 ../../godmode/setup/news.php:326 -#: ../../godmode/reporting/reporting_builder.item_editor.php:4856 -#: ../../godmode/agentes/planned_downtime.editor.php:1498 -#: ../../godmode/alerts/configure_alert_template.php:1460 -#: ../../godmode/alerts/configure_alert_template.php:1544 -msgid "Second" -msgstr "Segundo" - -#: ../../operation/tree.php:578 ../../operation/reporting/graph_viewer.php:428 -#: ../../operation/reporting/reporting_viewer.php:372 -#: ../../operation/reporting/reporting_viewer.php:392 -#: ../../operation/network/network_report.php:341 -#: ../../operation/network/network_usage_map.php:189 -#: ../../operation/events/events.php:2811 -#: ../../operation/events/events_list.php:2036 -#: ../../operation/netflow/nf_live_view.php:758 -#: ../../operation/agentes/estado_monitores.php:460 -#: ../../operation/agentes/stat_win.php:622 -#: ../../operation/agentes/datos_agente.php:317 -#: ../../operation/agentes/interface_traffic_graph_win.php:439 -#: ../../include/lib/Dashboard/Widgets/tree_view.php:688 -#: ../../include/functions.php:505 ../../include/functions.php:636 -#: ../../enterprise/operation/log/log_viewer.php:986 -#: ../../enterprise/operation/log/log_viewer.php:998 -#: ../../enterprise/operation/services/services.treeview_services.php:380 -#: ../../enterprise/operation/agentes/agent_inventory.php:133 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3992 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:4318 -#: ../../enterprise/meta/advanced/cron_main.php:535 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3967 -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:1174 -#: ../../enterprise/godmode/wizards/consoletask_js.php:46 -#: ../../extensions/insert_data.php:229 ../../godmode/setup/news.php:327 -#: ../../godmode/reporting/reporting_builder.item_editor.php:4857 -#: ../../godmode/agentes/planned_downtime.editor.php:1499 -#: ../../godmode/alerts/configure_alert_template.php:1461 -#: ../../godmode/alerts/configure_alert_template.php:1545 -msgid "Now" -msgstr "Ahora" - -#: ../../operation/tree.php:579 ../../operation/reporting/graph_viewer.php:429 -#: ../../operation/reporting/reporting_viewer.php:373 -#: ../../operation/reporting/reporting_viewer.php:393 -#: ../../operation/network/network_report.php:342 -#: ../../operation/network/network_usage_map.php:190 -#: ../../operation/events/events.php:2812 -#: ../../operation/events/events_list.php:2037 -#: ../../operation/netflow/nf_live_view.php:759 -#: ../../operation/agentes/estado_monitores.php:461 -#: ../../operation/agentes/stat_win.php:623 -#: ../../operation/agentes/datos_agente.php:318 -#: ../../operation/agentes/interface_traffic_graph_win.php:440 -#: ../../include/class/WelcomeWindow.class.php:159 -#: ../../include/lib/Dashboard/Widgets/tree_view.php:689 -#: ../../include/functions_snmp_browser.php:600 -#: ../../enterprise/operation/log/log_viewer.php:987 -#: ../../enterprise/operation/log/log_viewer.php:999 -#: ../../enterprise/operation/services/services.treeview_services.php:381 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3993 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:4319 -#: ../../enterprise/meta/advanced/cron_main.php:536 -#: ../../enterprise/godmode/setup/setup.php:736 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3968 -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:1175 -#: ../../enterprise/godmode/wizards/consoletask_js.php:47 -#: ../../extensions/insert_data.php:230 ../../mobile/include/ui.class.php:691 -#: ../../mobile/include/ui.class.php:749 ../../godmode/setup/news.php:328 -#: ../../godmode/reporting/reporting_builder.item_editor.php:4858 -#: ../../godmode/wizards/HostDevices.class.php:796 -#: ../../godmode/agentes/planned_downtime.editor.php:1500 -#: ../../godmode/alerts/configure_alert_template.php:1462 -#: ../../godmode/alerts/configure_alert_template.php:1546 -msgid "Close" -msgstr "Cerrar" - -#: ../../operation/search_policies.php:37 -msgid "Id_group" -msgstr "Id_group" - -#: ../../operation/search_policies.php:50 -#: ../../enterprise/meta/agentsearch.php:409 -#: ../../enterprise/godmode/policies/policies.php:471 -msgid "Policy updated" -msgstr "PolĆ­tica actualizada" - -#: ../../operation/search_policies.php:58 -#: ../../enterprise/meta/agentsearch.php:417 -#: ../../enterprise/godmode/policies/policies.php:479 -msgid "Pending update policy only database" -msgstr "Pendiente de actualizar la polĆ­tica, solo para cambios en base de datos." - -#: ../../operation/search_policies.php:66 -#: ../../enterprise/meta/agentsearch.php:425 -#: ../../enterprise/godmode/policies/policies.php:487 -msgid "Pending update policy" -msgstr "Pendiente actualizar polĆ­tica" - -#: ../../operation/search_modules.php:32 -#: ../../operation/agentes/alerts_status.php:548 -#: ../../operation/agentes/alerts_status.php:583 -#: ../../operation/agentes/alerts_status.php:618 -#: ../../operation/agentes/alerts_status.php:650 -#: ../../operation/agentes/estado_monitores.php:125 -#: ../../operation/agentes/exportdata.csv.php:74 -#: ../../operation/agentes/exportdata.php:83 -#: ../../operation/agentes/exportdata.excel.php:74 -#: ../../operation/search_alerts.php:35 -#: ../../include/functions_visual_map_editor.php:497 -#: ../../include/functions_reports.php:1344 -#: ../../include/ajax/alert_list.ajax.php:279 -#: ../../include/ajax/alert_list.ajax.php:304 -#: ../../include/ajax/alert_list.ajax.php:467 -#: ../../include/class/AgentsAlerts.class.php:412 -#: ../../include/class/AgentsAlerts.class.php:891 -#: ../../include/lib/Dashboard/Widgets/sla_percent.php:315 -#: ../../include/lib/Dashboard/Widgets/module_table_value.php:283 -#: ../../include/lib/Dashboard/Widgets/module_value.php:308 -#: ../../include/lib/Dashboard/Widgets/single_graph.php:279 -#: ../../include/lib/Dashboard/Widgets/module_status.php:324 -#: ../../include/lib/Dashboard/Widgets/graph_module_histogram.php:304 -#: ../../include/lib/Dashboard/Widgets/tree_view.php:682 -#: ../../include/lib/Dashboard/Widgets/module_icon.php:334 -#: ../../include/lib/Dashboard/Widgets/top_n.php:221 -#: ../../include/functions_treeview.php:64 ../../include/functions_graph.php:5450 -#: ../../include/functions_reporting.php:6662 -#: ../../include/rest-api/models/VisualConsole/Items/BasicChart.php:299 -#: ../../include/rest-api/models/VisualConsole/Items/DonutGraph.php:242 -#: ../../include/rest-api/models/VisualConsole/Items/StaticGraph.php:380 -#: ../../include/rest-api/models/VisualConsole/Items/ColorCloud.php:411 -#: ../../include/rest-api/models/VisualConsole/Items/SimpleValue.php:349 -#: ../../include/rest-api/models/VisualConsole/Items/BarsGraph.php:529 -#: ../../include/rest-api/models/VisualConsole/Items/Percentile.php:563 -#: ../../include/rest-api/models/VisualConsole/Items/ModuleGraph.php:604 -#: ../../include/rest-api/models/VisualConsole/Items/Odometer.php:385 -#: ../../include/rest-api/models/VisualConsole/Items/EventsHistory.php:252 -#: ../../include/functions_reporting_html.php:543 -#: ../../include/functions_reporting_html.php:939 -#: ../../include/functions_reporting_html.php:1777 -#: ../../include/functions_reporting_html.php:2105 -#: ../../include/functions_reporting_html.php:2207 -#: ../../include/functions_reporting_html.php:3181 -#: ../../include/functions_reporting_html.php:3564 -#: ../../include/functions_reporting_html.php:3572 -#: ../../include/functions_reporting_html.php:3581 -#: ../../include/functions_reporting_html.php:3593 -#: ../../include/functions_reporting_html.php:3749 -#: ../../include/functions_reporting_html.php:3877 -#: ../../include/functions_reporting_html.php:3971 -#: ../../include/functions_reporting_html.php:4690 -#: ../../include/functions_reporting_html.php:4738 -#: ../../enterprise/operation/agentes/policy_view.php:258 -#: ../../enterprise/operation/agentes/agent_inventory.php:116 -#: ../../enterprise/operation/inventory/inventory.php:357 -#: ../../enterprise/include/functions_reporting_csv.php:491 -#: ../../enterprise/include/functions_reporting_csv.php:776 -#: ../../enterprise/include/functions_reporting_csv.php:802 -#: ../../enterprise/include/functions_reporting_csv.php:915 -#: ../../enterprise/include/functions_reporting_csv.php:954 -#: ../../enterprise/include/functions_reporting_csv.php:1014 -#: ../../enterprise/include/functions_reporting_csv.php:1030 -#: ../../enterprise/include/functions_reporting_csv.php:1184 -#: ../../enterprise/include/functions_reporting_csv.php:1215 -#: ../../enterprise/include/functions_reporting_csv.php:1270 -#: ../../enterprise/include/functions_reporting_csv.php:1325 -#: ../../enterprise/include/functions_reporting_csv.php:1374 -#: ../../enterprise/include/functions_reporting_csv.php:1429 -#: ../../enterprise/include/functions_reporting_csv.php:1458 -#: ../../enterprise/include/functions_reporting_csv.php:1503 -#: ../../enterprise/include/functions_reporting_csv.php:1549 -#: ../../enterprise/include/functions_reporting_csv.php:1622 -#: ../../enterprise/include/functions_reporting_csv.php:1741 -#: ../../enterprise/include/functions_reporting_csv.php:1976 -#: ../../enterprise/include/functions_reporting_csv.php:2049 -#: ../../enterprise/include/functions_reporting_csv.php:2281 -#: ../../enterprise/include/functions_reporting_csv.php:2317 -#: ../../enterprise/include/functions_reporting_csv.php:2465 -#: ../../enterprise/include/functions_reporting_csv.php:2737 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:925 -#: ../../enterprise/include/functions_services.php:1779 -#: ../../enterprise/include/functions_events.php:157 -#: ../../enterprise/include/functions_inventory.php:881 -#: ../../enterprise/include/functions_inventory.php:937 -#: ../../enterprise/include/functions_reporting.php:1853 -#: ../../enterprise/include/functions_reporting.php:2892 -#: ../../enterprise/include/functions_reporting.php:3879 -#: ../../enterprise/include/functions_reporting.php:4903 -#: ../../enterprise/include/functions_reporting_pdf.php:525 -#: ../../enterprise/include/functions_reporting_pdf.php:533 -#: ../../enterprise/include/functions_reporting_pdf.php:541 -#: ../../enterprise/include/functions_reporting_pdf.php:557 -#: ../../enterprise/include/functions_ui.php:47 -#: ../../enterprise/meta/include/functions_wizard_meta.php:3512 -#: ../../enterprise/meta/monitoring/wizard/wizard.create_module.php:222 -#: ../../enterprise/meta/monitoring/wizard/wizard.manage_alert.php:213 -#: ../../enterprise/extensions/disabled/check_acls.php:133 -#: ../../enterprise/godmode/services/services.elements.php:93 -#: ../../enterprise/godmode/services/services.elements.php:157 -#: ../../enterprise/godmode/services/services.elements.php:275 -#: ../../enterprise/godmode/reporting/reporting_builder.template_list_item.php:239 -#: ../../enterprise/godmode/reporting/graph_template_item_editor.php:185 -#: ../../enterprise/godmode/reporting/graph_template_item_editor.php:240 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:317 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1394 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2055 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3504 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3717 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3735 -#: ../../enterprise/godmode/agentes/agent_disk_conf_editor.php:211 -#: ../../enterprise/godmode/alerts/alert_inventory_list.php:371 -#: ../../enterprise/godmode/policies/policy_linking.php:151 -#: ../../enterprise/godmode/policies/policy_alerts.php:352 -#: ../../enterprise/godmode/policies/policy_alerts.php:567 -#: ../../extensions/agents_modules.php:444 ../../extensions/insert_data.php:175 -#: ../../mobile/operation/alerts.php:338 ../../godmode/servers/plugin.php:88 -#: ../../godmode/reporting/reporting_builder.list_items.php:410 -#: ../../godmode/reporting/create_container.php:410 -#: ../../godmode/reporting/create_container.php:560 -#: ../../godmode/reporting/create_container.php:628 -#: ../../godmode/reporting/visual_console_builder.elements.php:105 -#: ../../godmode/reporting/reporting_builder.item_editor.php:197 -#: ../../godmode/reporting/reporting_builder.item_editor.php:823 -#: ../../godmode/reporting/reporting_builder.item_editor.php:1613 -#: ../../godmode/reporting/reporting_builder.item_editor.php:3788 -#: ../../godmode/reporting/reporting_builder.item_editor.php:4304 -#: ../../godmode/reporting/reporting_builder.item_editor.php:4328 -#: ../../godmode/reporting/graph_builder.graph_editor.php:213 -#: ../../godmode/reporting/visual_console_builder.wizard.php:449 -#: ../../godmode/reporting/visual_console_builder.wizard.php:770 -#: ../../godmode/massive/massive_standby_alerts.php:223 -#: ../../godmode/massive/massive_standby_alerts.php:258 -#: ../../godmode/massive/massive_edit_agents.php:674 -#: ../../godmode/massive/massive_edit_agents.php:1026 -#: ../../godmode/massive/massive_enable_disable_alerts.php:195 -#: ../../godmode/massive/massive_enable_disable_alerts.php:230 -#: ../../godmode/agentes/module_manager_editor_prediction.php:154 -#: ../../godmode/agentes/module_manager_editor_common.php:1260 -#: ../../godmode/agentes/module_manager_editor_common.php:1304 -#: ../../godmode/agentes/agent_manager.php:520 -#: ../../godmode/agentes/agent_manager.php:592 -#: ../../godmode/agentes/planned_downtime.editor.php:1007 -#: ../../godmode/agentes/planned_downtime.list.php:357 -#: ../../godmode/alerts/alert_list.list.php:479 -#: ../../godmode/alerts/alert_list.list.php:737 -#: ../../godmode/alerts/alert_list.builder.php:70 -#: ../../godmode/alerts/alert_view.php:91 -msgid "Module" -msgstr "MĆ³dulo" - -#: ../../operation/search_modules.php:33 ../../operation/gis_maps/ajax.php:236 -#: ../../operation/gis_maps/ajax.php:269 ../../operation/search_agents.php:42 -#: ../../operation/search_agents.php:48 -#: ../../operation/events/sound_events.php:165 -#: ../../operation/events/events.build_table.php:80 -#: ../../operation/events/events.php:1953 -#: ../../operation/agentes/status_monitor.php:1307 -#: ../../operation/agentes/alerts_status.php:547 -#: ../../operation/agentes/alerts_status.php:617 -#: ../../operation/agentes/estado_monitores.php:123 -#: ../../operation/agentes/interface_view.functions.php:480 -#: ../../operation/agentes/exportdata.csv.php:74 -#: ../../operation/agentes/exportdata.php:83 -#: ../../operation/agentes/exportdata.excel.php:74 -#: ../../operation/agentes/estado_agente.php:739 -#: ../../operation/agentes/ver_agente.php:1169 -#: ../../operation/search_alerts.php:34 ../../include/functions_gis.php:229 -#: ../../include/functions_visual_map_editor.php:422 -#: ../../include/functions_visual_map_editor.php:455 -#: ../../include/functions_reports.php:1313 -#: ../../include/ajax/alert_list.ajax.php:446 -#: ../../include/ajax/heatmap.ajax.php:238 -#: ../../include/ajax/heatmap.ajax.php:277 -#: ../../include/ajax/heatmap.ajax.php:312 -#: ../../include/class/AgentsAlerts.class.php:410 -#: ../../include/class/AgentsAlerts.class.php:962 -#: ../../include/class/NetworkMap.class.php:2835 -#: ../../include/class/NetworkMap.class.php:2884 -#: ../../include/class/NetworkMap.class.php:3162 -#: ../../include/lib/Dashboard/Widgets/sla_percent.php:297 -#: ../../include/lib/Dashboard/Widgets/module_table_value.php:265 -#: ../../include/lib/Dashboard/Widgets/module_value.php:290 -#: ../../include/lib/Dashboard/Widgets/wux_transaction.php:239 -#: ../../include/lib/Dashboard/Widgets/single_graph.php:261 -#: ../../include/lib/Dashboard/Widgets/module_status.php:306 -#: ../../include/lib/Dashboard/Widgets/graph_module_histogram.php:286 -#: ../../include/lib/Dashboard/Widgets/wux_transaction_stats.php:250 -#: ../../include/lib/Dashboard/Widgets/module_icon.php:316 -#: ../../include/lib/Dashboard/Widgets/top_n.php:206 -#: ../../include/functions_graph.php:5343 -#: ../../include/functions_snmp_browser.php:1625 -#: ../../include/functions_reporting.php:6661 -#: ../../include/rest-api/models/VisualConsole/Items/BasicChart.php:281 -#: ../../include/rest-api/models/VisualConsole/Items/DonutGraph.php:224 -#: ../../include/rest-api/models/VisualConsole/Items/StaticGraph.php:363 -#: ../../include/rest-api/models/VisualConsole/Items/ColorCloud.php:394 -#: ../../include/rest-api/models/VisualConsole/Items/SimpleValue.php:332 -#: ../../include/rest-api/models/VisualConsole/Items/BarsGraph.php:511 -#: ../../include/rest-api/models/VisualConsole/Items/Percentile.php:546 -#: ../../include/rest-api/models/VisualConsole/Items/ModuleGraph.php:585 -#: ../../include/rest-api/models/VisualConsole/Items/Odometer.php:368 -#: ../../include/rest-api/models/VisualConsole/Items/EventsHistory.php:235 -#: ../../include/functions_reporting_html.php:542 -#: ../../include/functions_reporting_html.php:938 -#: ../../include/functions_reporting_html.php:1050 -#: ../../include/functions_reporting_html.php:1058 -#: ../../include/functions_reporting_html.php:1776 -#: ../../include/functions_reporting_html.php:2104 -#: ../../include/functions_reporting_html.php:2206 -#: ../../include/functions_reporting_html.php:3046 -#: ../../include/functions_reporting_html.php:3180 -#: ../../include/functions_reporting_html.php:3483 -#: ../../include/functions_reporting_html.php:3563 -#: ../../include/functions_reporting_html.php:3571 -#: ../../include/functions_reporting_html.php:3580 -#: ../../include/functions_reporting_html.php:3592 -#: ../../include/functions_reporting_html.php:3748 -#: ../../include/functions_reporting_html.php:3871 -#: ../../include/functions_reporting_html.php:3965 -#: ../../include/functions_reporting_html.php:4689 -#: ../../include/functions_reporting_html.php:4737 -#: ../../include/functions_reporting_html.php:4775 -#: ../../include/functions_reporting_html.php:5084 -#: ../../include/functions_reporting_html.php:5124 -#: ../../include/functions_reporting_html.php:5374 -#: ../../enterprise/tools/ipam/ipam_ajax.php:379 -#: ../../enterprise/tools/ipam/ipam_network.php:397 -#: ../../enterprise/operation/log/log_viewer.php:632 -#: ../../enterprise/operation/agentes/tag_view.php:599 -#: ../../enterprise/operation/agentes/manage_transmap_creation.php:187 -#: ../../enterprise/operation/agentes/manage_transmap_creation.php:365 -#: ../../enterprise/operation/agentes/manage_transmap_creation.php:491 -#: ../../enterprise/operation/inventory/inventory.php:401 +#: ../../enterprise/meta/monitoring/custom_fields_csv.php:99 +#: ../../enterprise/meta/monitoring/custom_fields_view.php:704 +#: ../../enterprise/meta/monitoring/wizard/wizard.manage_alert.php:205 +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:279 +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:374 +#: ../../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:3502 +#: ../../enterprise/meta/agentsearch.php:134 +#: ../../enterprise/godmode/modules/manage_inventory_modules.php:299 +#: ../../enterprise/godmode/agentes/collections.agents.php:94 +#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:85 +#: ../../enterprise/godmode/policies/policy_linking.php:150 +#: ../../enterprise/godmode/massive/massive_add_modules_policy.php:136 +#: ../../enterprise/godmode/services/services.elements.php:94 +#: ../../enterprise/godmode/services/services.elements.php:132 +#: ../../enterprise/godmode/services/services.elements.php:270 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:316 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1396 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2034 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3512 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3723 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3741 +#: ../../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:524 +#: ../../enterprise/include/functions_reporting_pdf.php:532 +#: ../../enterprise/include/functions_reporting_pdf.php:540 +#: ../../enterprise/include/functions_reporting_pdf.php:556 +#: ../../enterprise/include/functions_reporting_pdf.php:714 #: ../../enterprise/include/functions_reporting_csv.php:490 #: ../../enterprise/include/functions_reporting_csv.php:776 #: ../../enterprise/include/functions_reporting_csv.php:802 @@ -6799,449 +8554,4648 @@ msgstr "MĆ³dulo" #: ../../enterprise/include/functions_reporting_csv.php:2518 #: ../../enterprise/include/functions_reporting_csv.php:2736 #: ../../enterprise/include/class/LogSource.class.php:627 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:924 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:923 +#: ../../enterprise/include/functions_reporting.php:1853 +#: ../../enterprise/include/functions_reporting.php:2186 +#: ../../enterprise/include/functions_reporting.php:2217 +#: ../../enterprise/include/functions_reporting.php:2235 +#: ../../enterprise/include/functions_reporting.php:2892 +#: ../../enterprise/include/functions_reporting.php:3879 +#: ../../enterprise/include/functions_reporting.php:4903 #: ../../enterprise/include/functions_services.php:1666 -#: ../../enterprise/include/functions_events.php:147 -#: ../../enterprise/include/functions_inventory.php:393 -#: ../../enterprise/include/functions_inventory.php:880 -#: ../../enterprise/include/functions_inventory.php:936 -#: ../../enterprise/include/functions_log.php:279 -#: ../../enterprise/include/functions_log.php:282 -#: ../../enterprise/include/functions_reporting.php:1852 -#: ../../enterprise/include/functions_reporting.php:2185 -#: ../../enterprise/include/functions_reporting.php:2216 -#: ../../enterprise/include/functions_reporting.php:2234 -#: ../../enterprise/include/functions_reporting.php:2891 -#: ../../enterprise/include/functions_reporting.php:3878 -#: ../../enterprise/include/functions_reporting.php:4902 -#: ../../enterprise/include/functions_reporting_pdf.php:524 -#: ../../enterprise/include/functions_reporting_pdf.php:532 -#: ../../enterprise/include/functions_reporting_pdf.php:540 -#: ../../enterprise/include/functions_reporting_pdf.php:556 -#: ../../enterprise/include/functions_reporting_pdf.php:714 -#: ../../enterprise/meta/include/functions_wizard_meta.php:3505 -#: ../../enterprise/meta/monitoring/custom_fields_csv.php:99 -#: ../../enterprise/meta/monitoring/custom_fields_view.php:704 -#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:282 -#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:377 -#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:444 -#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:712 -#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:791 -#: ../../enterprise/meta/monitoring/wizard/wizard.manage_alert.php:205 -#: ../../enterprise/meta/agentsearch.php:134 -#: ../../enterprise/godmode/modules/manage_inventory_modules.php:299 -#: ../../enterprise/godmode/services/services.elements.php:94 -#: ../../enterprise/godmode/services/services.elements.php:133 -#: ../../enterprise/godmode/services/services.elements.php:274 -#: ../../enterprise/godmode/reporting/reporting_builder.template_list_item.php:220 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:316 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1393 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2031 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3501 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3712 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3730 -#: ../../enterprise/godmode/massive/massive_add_modules_policy.php:136 -#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:85 -#: ../../enterprise/godmode/agentes/collections.agents.php:94 -#: ../../enterprise/godmode/policies/policy_linking.php:150 -#: ../../extensions/insert_data.php:158 ../../mobile/operation/modules.php:597 -#: ../../mobile/operation/home.php:96 ../../mobile/operation/alerts.php:335 -#: ../../mobile/operation/events.php:553 ../../mobile/operation/agents.php:93 -#: ../../mobile/operation/agents.php:403 ../../godmode/servers/plugin.php:87 +#: ../../enterprise/include/functions_events.php:80 +#: ../../enterprise/operation/agentes/tag_view.php:599 +#: ../../enterprise/operation/agentes/manage_transmap_creation.php:187 +#: ../../enterprise/operation/agentes/manage_transmap_creation.php:365 +#: ../../enterprise/operation/agentes/manage_transmap_creation.php:491 +#: ../../enterprise/operation/log/log_viewer.php:632 +#: ../../enterprise/operation/inventory/inventory.php:401 +#: ../../enterprise/tools/ipam/ipam_network.php:397 +#: ../../enterprise/tools/ipam/ipam_ajax.php:379 ../../extensions/insert_data.php:158 +#: ../../godmode/agentes/status_monitor_custom_fields.php:77 +#: ../../godmode/agentes/status_monitor_custom_fields.php:143 +#: ../../godmode/agentes/module_manager_editor_prediction.php:126 +#: ../../godmode/agentes/planned_downtime.list.php:353 +#: ../../godmode/agentes/module_manager_editor_common.php:1250 +#: ../../godmode/agentes/module_manager_editor_common.php:1303 #: ../../godmode/gis_maps/configure_gis_map.php:581 -#: ../../godmode/reporting/reporting_builder.list_items.php:391 -#: ../../godmode/reporting/create_container.php:387 -#: ../../godmode/reporting/create_container.php:554 -#: ../../godmode/reporting/create_container.php:627 -#: ../../godmode/reporting/visual_console_builder.elements.php:104 -#: ../../godmode/reporting/reporting_builder.item_editor.php:196 -#: ../../godmode/reporting/reporting_builder.item_editor.php:822 -#: ../../godmode/reporting/reporting_builder.item_editor.php:1556 -#: ../../godmode/reporting/reporting_builder.item_editor.php:3783 -#: ../../godmode/reporting/reporting_builder.item_editor.php:4301 -#: ../../godmode/reporting/reporting_builder.item_editor.php:4325 -#: ../../godmode/reporting/graph_builder.graph_editor.php:212 -#: ../../godmode/reporting/visual_console_builder.wizard.php:450 -#: ../../godmode/reporting/visual_console_builder.wizard.php:738 -#: ../../godmode/reporting/visual_console_builder.wizard.php:761 #: ../../godmode/massive/massive_copy_modules.php:131 #: ../../godmode/massive/massive_copy_modules.php:295 #: ../../godmode/massive/massive_standby_alerts.php:223 #: ../../godmode/massive/massive_standby_alerts.php:258 #: ../../godmode/massive/massive_enable_disable_alerts.php:195 #: ../../godmode/massive/massive_enable_disable_alerts.php:230 -#: ../../godmode/agentes/module_manager_editor_prediction.php:126 -#: ../../godmode/agentes/module_manager_editor_common.php:1250 -#: ../../godmode/agentes/module_manager_editor_common.php:1303 -#: ../../godmode/agentes/status_monitor_custom_fields.php:77 -#: ../../godmode/agentes/status_monitor_custom_fields.php:143 -#: ../../godmode/agentes/planned_downtime.list.php:353 -#: ../../godmode/alerts/alert_list.list.php:477 -#: ../../godmode/alerts/alert_list.list.php:727 +#: ../../godmode/alerts/alert_list.list.php:492 +#: ../../godmode/alerts/alert_list.list.php:742 ../../godmode/alerts/alert_view.php:87 #: ../../godmode/alerts/alert_list.builder.php:56 -#: ../../godmode/alerts/alert_view.php:87 +#: ../../godmode/reporting/reporting_builder.list_items.php:391 +#: ../../godmode/reporting/create_container.php:387 +#: ../../godmode/reporting/create_container.php:554 +#: ../../godmode/reporting/create_container.php:627 +#: ../../godmode/reporting/graph_builder.graph_editor.php:212 +#: ../../godmode/reporting/reporting_builder.item_editor.php:200 +#: ../../godmode/reporting/reporting_builder.item_editor.php:872 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1147 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1652 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3896 +#: ../../godmode/reporting/reporting_builder.item_editor.php:4414 +#: ../../godmode/reporting/reporting_builder.item_editor.php:4438 +#: ../../godmode/reporting/visual_console_builder.elements.php:104 +#: ../../godmode/reporting/visual_console_builder.wizard.php:450 +#: ../../godmode/reporting/visual_console_builder.wizard.php:738 +#: ../../godmode/reporting/visual_console_builder.wizard.php:761 +#: ../../godmode/servers/plugin.php:87 ../../mobile/operation/agents.php:93 +#: ../../mobile/operation/agents.php:403 ../../mobile/operation/modules.php:597 +#: ../../mobile/operation/home.php:96 ../../mobile/operation/alerts.php:335 +#: ../../mobile/operation/events.php:841 +#: ../../include/functions_visual_map_editor.php:422 +#: ../../include/functions_visual_map_editor.php:455 +#: ../../include/functions_reporting_html.php:542 +#: ../../include/functions_reporting_html.php:938 +#: ../../include/functions_reporting_html.php:1050 +#: ../../include/functions_reporting_html.php:1058 +#: ../../include/functions_reporting_html.php:1812 +#: ../../include/functions_reporting_html.php:2140 +#: ../../include/functions_reporting_html.php:2242 +#: ../../include/functions_reporting_html.php:3091 +#: ../../include/functions_reporting_html.php:3225 +#: ../../include/functions_reporting_html.php:3528 +#: ../../include/functions_reporting_html.php:3608 +#: ../../include/functions_reporting_html.php:3616 +#: ../../include/functions_reporting_html.php:3625 +#: ../../include/functions_reporting_html.php:3637 +#: ../../include/functions_reporting_html.php:3793 +#: ../../include/functions_reporting_html.php:3916 +#: ../../include/functions_reporting_html.php:4010 +#: ../../include/functions_reporting_html.php:4734 +#: ../../include/functions_reporting_html.php:4782 +#: ../../include/functions_reporting_html.php:4821 +#: ../../include/functions_reporting_html.php:5130 +#: ../../include/functions_reporting_html.php:5170 +#: ../../include/functions_reporting_html.php:5420 +#: ../../include/ajax/heatmap.ajax.php:238 ../../include/ajax/heatmap.ajax.php:277 +#: ../../include/ajax/heatmap.ajax.php:312 ../../include/ajax/alert_list.ajax.php:459 +#: ../../include/functions_graph.php:5284 ../../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/Odometer.php:368 +#: ../../include/functions_reports.php:1313 +#: ../../include/class/NetworkMap.class.php:2835 +#: ../../include/class/NetworkMap.class.php:2884 +#: ../../include/class/NetworkMap.class.php:3162 +#: ../../include/class/AgentsAlerts.class.php:410 +#: ../../include/class/AgentsAlerts.class.php:962 +#: ../../include/functions_reporting.php:6838 +#: ../../include/lib/Dashboard/Widgets/sla_percent.php:297 +#: ../../include/lib/Dashboard/Widgets/BlockHistogram.php:279 +#: ../../include/lib/Dashboard/Widgets/wux_transaction_stats.php:250 +#: ../../include/lib/Dashboard/Widgets/module_icon.php:316 +#: ../../include/lib/Dashboard/Widgets/module_value.php:290 +#: ../../include/lib/Dashboard/Widgets/wux_transaction.php:239 +#: ../../include/lib/Dashboard/Widgets/ColorModuleTabs.php:255 +#: ../../include/lib/Dashboard/Widgets/module_table_value.php:265 +#: ../../include/lib/Dashboard/Widgets/graph_module_histogram.php:286 +#: ../../include/lib/Dashboard/Widgets/module_status.php:306 +#: ../../include/lib/Dashboard/Widgets/single_graph.php:261 +#: ../../include/lib/Dashboard/Widgets/top_n.php:206 +#: ../../include/functions_snmp_browser.php:1633 ../../operation/search_agents.php:42 +#: ../../operation/search_agents.php:48 ../../operation/agentes/exportdata.csv.php:74 +#: ../../operation/agentes/estado_agente.php:739 +#: ../../operation/agentes/interface_view.functions.php:480 +#: ../../operation/agentes/exportdata.php:83 +#: ../../operation/agentes/status_monitor.php:1307 +#: ../../operation/agentes/estado_monitores.php:123 +#: ../../operation/agentes/ver_agente.php:1169 +#: ../../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:2455 msgid "Agent" msgstr "Agente" -#: ../../operation/search_modules.php:34 -#: ../../operation/events/sound_events.php:127 -#: ../../operation/netflow/nf_live_view.php:319 -#: ../../operation/agentes/estado_agente.php:757 -#: ../../operation/agentes/ver_agente.php:1153 -#: ../../operation/incidents/configure_integriaims_incident.php:234 -#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:326 -#: ../../include/functions_visual_map_editor.php:702 -#: ../../include/functions_visual_map_editor.php:720 -#: ../../include/functions_visual_map_editor.php:848 -#: ../../include/functions_reports.php:1067 ../../include/ajax/module.php:977 -#: ../../include/ajax/heatmap.ajax.php:75 -#: ../../include/class/ModuleTemplates.class.php:1209 -#: ../../include/class/AgentWizard.class.php:1182 -#: ../../include/class/AgentWizard.class.php:4028 -#: ../../include/class/CalendarManager.class.php:977 -#: ../../include/class/CalendarManager.class.php:1011 -#: ../../include/lib/Dashboard/Widgets/custom_graph.php:327 -#: ../../include/lib/Dashboard/Widgets/clock.php:221 -#: ../../include/lib/Dashboard/Widgets/service_view.php:251 -#: ../../include/functions_events.php:2607 -#: ../../include/functions_events.php:5027 -#: ../../include/functions_snmp_browser.php:564 -#: ../../include/rest-api/models/VisualConsole/Items/Percentile.php:467 -#: ../../include/functions_reporting_html.php:1049 -#: ../../include/functions_reporting_html.php:1057 -#: ../../include/functions_reporting_html.php:1283 -#: ../../include/functions_reporting_html.php:1291 -#: ../../include/functions_reporting_html.php:2390 -#: ../../include/functions_reporting_html.php:3437 -#: ../../include/functions_reporting_html.php:5203 -#: ../../enterprise/views/cluster/list.php:61 -#: ../../enterprise/operation/agentes/tag_view.php:605 -#: ../../enterprise/operation/agentes/policy_view.php:396 -#: ../../enterprise/operation/agentes/ver_agente.php:32 -#: ../../enterprise/include/functions_reporting_csv.php:1605 -#: ../../enterprise/include/functions_reporting_csv.php:1721 -#: ../../enterprise/include/functions_reporting_csv.php:1961 -#: ../../enterprise/include/functions_reporting_csv.php:2029 -#: ../../enterprise/include/functions_services.php:1602 -#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:68 -#: ../../enterprise/meta/advanced/metasetup.relations.php:335 -#: ../../enterprise/meta/advanced/metasetup.relations.php:413 -#: ../../enterprise/meta/advanced/metasetup.relations.php:548 -#: ../../enterprise/meta/advanced/servers.build_table.php:62 -#: ../../enterprise/godmode/modules/configure_local_component.php:212 -#: ../../enterprise/godmode/services/services.elements.php:113 -#: ../../enterprise/godmode/reporting/reporting_builder.template_list_item.php:201 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:207 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1651 -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:83 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:103 -#: ../../enterprise/godmode/policies/policy_modules.php:1465 -#: ../../mobile/operation/visualmaps.php:125 -#: ../../mobile/operation/visualmaps.php:126 -#: ../../mobile/operation/events.php:377 ../../mobile/operation/events.php:378 -#: ../../mobile/operation/events.php:524 ../../mobile/operation/events.php:681 -#: ../../mobile/operation/events.php:682 -#: ../../godmode/setup/setup_integria.php:408 -#: ../../godmode/setup/setup_integria.php:530 -#: ../../godmode/setup/gis_step_2.php:235 ../../godmode/setup/news.php:247 -#: ../../godmode/servers/plugin.php:816 -#: ../../godmode/servers/modificar_server.php:72 -#: ../../godmode/servers/servers.build_table.php:81 -#: ../../godmode/update_manager/update_manager.history.php:41 -#: ../../godmode/modules/manage_network_components.php:750 -#: ../../godmode/modules/manage_network_templates_form.php:232 -#: ../../godmode/modules/manage_network_components_form_common.php:64 -#: ../../godmode/reporting/reporting_builder.list_items.php:212 -#: ../../godmode/reporting/reporting_builder.list_items.php:249 -#: ../../godmode/reporting/reporting_builder.list_items.php:372 -#: ../../godmode/reporting/reporting_builder.item_editor.php:984 -#: ../../godmode/reporting/visual_console_builder.wizard.php:135 -#: ../../godmode/reporting/visual_console_builder.wizard.php:283 -#: ../../godmode/events/event_responses.editor.php:159 -#: ../../godmode/agentes/module_manager.php:850 -#: ../../godmode/agentes/module_manager_editor_common.php:288 -#: ../../godmode/agentes/module_manager_editor_common.php:401 -#: ../../godmode/agentes/module_manager_editor_common.php:1305 -#: ../../godmode/agentes/planned_downtime.editor.php:588 -#: ../../godmode/agentes/planned_downtime.list.php:613 -#: ../../godmode/agentes/agent_template.php:236 -#: ../../godmode/agentes/modificar_agente.php:650 -#: ../../godmode/alerts/alert_templates.php:37 -#: ../../godmode/alerts/alert_templates.php:302 -#: ../../godmode/alerts/alert_templates.php:386 -msgid "Type" -msgstr "Tipo" +#: ../../enterprise/meta/monitoring/custom_fields_csv.php:100 +#: ../../enterprise/godmode/servers/HA_cluster.php:161 +#: ../../enterprise/include/functions_reporting_csv.php:1933 +#: ../../enterprise/include/class/Azure.cloud.php:803 +#: ../../enterprise/include/class/VMware.app.php:621 +#: ../../enterprise/include/class/DeploymentCenter.class.php:755 +#: ../../enterprise/include/class/DeploymentCenter.class.php:805 +#: ../../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:546 +#: ../../enterprise/include/functions_reporting.php:2316 +#: ../../enterprise/include/functions_ipam.php:1646 +#: ../../enterprise/include/functions_ipam.php:1647 ../../extensions/api_checker.php:123 +#: ../../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 +#: ../../include/functions_reporting_html.php:3108 +#: ../../include/functions_reporting_html.php:3434 +#: ../../include/ajax/heatmap.ajax.php:319 ../../include/class/AuditLog.class.php:194 +#: ../../operation/network/network_report.php:184 +msgid "IP" +msgstr "IP" -#: ../../operation/search_modules.php:35 ../../operation/search_agents.php:45 -#: ../../operation/search_agents.php:51 -#: ../../operation/netflow/nf_live_view.php:270 -#: ../../operation/agentes/status_monitor.php:1328 -#: ../../operation/agentes/estado_agente.php:751 -#: ../../operation/agentes/estado_generalagente.php:359 -#: ../../include/class/CustomNetScan.class.php:520 -#: ../../include/lib/Dashboard/Widgets/sla_percent.php:331 -#: ../../include/lib/Dashboard/Widgets/custom_graph.php:350 -#: ../../include/lib/Dashboard/Widgets/single_graph.php:306 -#: ../../include/lib/Dashboard/Widgets/graph_module_histogram.php:321 -#: ../../include/lib/Dashboard/Widgets/top_n.php:236 -#: ../../include/functions_treeview.php:84 -#: ../../include/functions_treeview.php:646 -#: ../../include/functions_reporting_html.php:3442 -#: ../../enterprise/tools/ipam/ipam_list.php:617 -#: ../../enterprise/operation/agentes/tag_view.php:603 -#: ../../enterprise/operation/agentes/tag_view.php:681 -#: ../../enterprise/include/class/MicrosoftSQLServer.app.php:537 -#: ../../enterprise/include/class/Aws.cloud.php:591 -#: ../../enterprise/include/class/Aws.cloud.php:1318 -#: ../../enterprise/include/class/Aws.S3.php:506 -#: ../../enterprise/include/class/MySQL.app.php:558 -#: ../../enterprise/include/class/Oracle.app.php:543 -#: ../../enterprise/include/class/DB2.app.php:536 -#: ../../enterprise/include/class/SAP.app.php:513 -#: ../../enterprise/include/class/VMware.app.php:667 -#: ../../enterprise/include/class/Azure.cloud.php:847 -#: ../../enterprise/include/class/Google.cloud.php:797 -#: ../../enterprise/include/functions_ipam.php:1354 -#: ../../enterprise/include/functions_ui.php:84 -#: ../../enterprise/meta/include/functions_wizard_meta.php:921 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1038 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1205 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1523 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1608 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1745 +#: ../../enterprise/meta/monitoring/custom_fields_csv.php:102 +#: ../../godmode/massive/massive_edit_modules.php:468 +msgid "Agent Status" +msgstr "Estado de agente" + +#: ../../enterprise/meta/monitoring/custom_fields_csv.php:117 +#: ../../enterprise/meta/monitoring/custom_fields_csv.php:140 +#: ../../enterprise/meta/monitoring/custom_fields_view.php:179 +#: ../../enterprise/meta/monitoring/group_view.php:238 +#: ../../enterprise/meta/monitoring/group_view.php:244 +#: ../../enterprise/meta/monitoring/tactical.php:224 +#: ../../enterprise/godmode/massive/massive_add_modules_policy.php:119 +#: ../../enterprise/godmode/services/services.elements.php:386 +#: ../../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/netflow/nf_edit_form.php:236 +#: ../../godmode/massive/massive_copy_modules.php:115 +#: ../../godmode/massive/massive_copy_modules.php:275 +#: ../../godmode/massive/massive_delete_modules.php:418 +#: ../../godmode/massive/massive_delete_modules.php:439 +#: ../../godmode/massive/massive_delete_agents.php:209 +#: ../../godmode/massive/massive_edit_agents.php:531 +#: ../../godmode/massive/massive_edit_modules.php:385 +#: ../../godmode/massive/massive_edit_modules.php:471 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3734 +#: ../../mobile/operation/agents.php:58 ../../mobile/operation/modules.php:69 +#: ../../include/functions_reporting_html.php:2357 ../../include/functions.php:1031 +#: ../../include/functions.php:1271 ../../include/functions.php:1278 +#: ../../include/functions.php:1311 ../../include/functions_graph.php:3483 +#: ../../include/functions_graph.php:3484 ../../include/functions_graph.php:5064 +#: ../../include/rest-api/models/VisualConsole/Items/Group.php:430 +#: ../../include/lib/Dashboard/Widgets/system_group_status.php:311 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:385 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:418 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:680 +#: ../../include/functions_events.php:2933 ../../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/netflow/nf_live_view.php:392 +msgid "Normal" +msgstr "Normal" + +#: ../../enterprise/meta/monitoring/custom_fields_csv.php:122 +#: ../../enterprise/meta/monitoring/custom_fields_view.php:181 +#: ../../enterprise/meta/monitoring/group_view.php:240 +#: ../../enterprise/meta/monitoring/group_view.php:246 +#: ../../enterprise/meta/monitoring/tactical.php:222 +#: ../../enterprise/meta/include/functions_wizard_meta.php:986 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1071 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1274 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1298 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1511 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1596 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1716 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1734 +#: ../../enterprise/godmode/massive/massive_add_modules_policy.php:121 +#: ../../enterprise/godmode/massive/massive_create_services.php:733 +#: ../../enterprise/godmode/services/services.service.php:693 +#: ../../enterprise/godmode/services/services.elements.php:359 +#: ../../enterprise/include/functions_reporting.php:3191 +#: ../../enterprise/include/functions_reporting.php:4192 +#: ../../enterprise/include/functions_reporting.php:4843 +#: ../../enterprise/include/functions_reporting.php:6199 +#: ../../enterprise/include/functions_services.php:1440 +#: ../../enterprise/operation/agentes/tag_view.php:133 +#: ../../enterprise/operation/services/services.service.php:122 +#: ../../enterprise/operation/services/services.service.php:168 +#: ../../enterprise/operation/services/services.service_map.php:149 +#: ../../enterprise/operation/services/services.treeview_services.php:275 +#: ../../enterprise/operation/services/services.list.php:239 +#: ../../enterprise/operation/services/services.list.php:504 +#: ../../enterprise/operation/services/services.list.php:558 +#: ../../enterprise/operation/services/services.table_services.php:161 +#: ../../extensions/module_groups.php:50 +#: ../../godmode/modules/manage_network_components_form_wizard.php:412 +#: ../../godmode/groups/group_list.php:1054 +#: ../../godmode/massive/massive_copy_modules.php:117 +#: ../../godmode/massive/massive_copy_modules.php:277 +#: ../../godmode/massive/massive_delete_modules.php:420 +#: ../../godmode/massive/massive_delete_modules.php:441 +#: ../../godmode/massive/massive_delete_agents.php:211 +#: ../../godmode/massive/massive_edit_agents.php:533 +#: ../../godmode/massive/massive_edit_modules.php:387 +#: ../../godmode/massive/massive_edit_modules.php:473 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3736 +#: ../../mobile/operation/agents.php:57 ../../mobile/operation/modules.php:71 +#: ../../include/functions_reporting_html.php:859 +#: ../../include/functions_reporting_html.php:2358 +#: ../../include/functions_reporting_html.php:4650 ../../include/functions.php:1039 +#: ../../include/functions.php:1275 ../../include/functions.php:1276 +#: ../../include/functions.php:1278 ../../include/functions.php:1319 +#: ../../include/functions_graph.php:3503 ../../include/functions_graph.php:3504 +#: ../../include/functions_graph.php:5072 ../../include/functions_ui.php:2610 +#: ../../include/rest-api/models/VisualConsole/Items/Group.php:416 +#: ../../include/class/AgentWizard.class.php:1318 +#: ../../include/class/AgentWizard.class.php:4035 +#: ../../include/lib/Dashboard/Widgets/system_group_status.php:313 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:387 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:420 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:660 +#: ../../include/functions_events.php:2941 ../../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/gis_maps/render_view.php:164 +msgid "Critical" +msgstr "CrĆ­tico" + +#: ../../enterprise/meta/monitoring/custom_fields_csv.php:136 +msgid "No init" +msgstr "No iniciados" + +#: ../../enterprise/meta/monitoring/custom_fields_view.php:54 +msgid "Custom fields View" +msgstr "Vista de campos personalizados" + +#: ../../enterprise/meta/monitoring/custom_fields_view.php:66 +msgid "Custom Fields View" +msgstr "Vista de campos personalizados" + +#: ../../enterprise/meta/monitoring/custom_fields_view.php:168 +#: ../../enterprise/godmode/policies/policies.php:324 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:746 +#: ../../extensions/agents_modules.php:407 +#: ../../godmode/agentes/modificar_agente.php:322 +#: ../../godmode/agentes/planned_downtime.editor.php:803 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1584 +#: ../../include/functions_html.php:1545 ../../include/class/NetworkMap.class.php:3226 +#: ../../operation/agentes/estado_agente.php:262 +#: ../../operation/agentes/interface_view.functions.php:59 +#: ../../operation/agentes/status_monitor.php:488 +msgid "Recursion" +msgstr "Recurrencia" + +#: ../../enterprise/meta/monitoring/custom_fields_view.php:183 +#: ../../enterprise/godmode/massive/massive_add_modules_policy.php:123 +#: ../../enterprise/operation/agentes/tag_view.php:135 +#: ../../godmode/massive/massive_copy_modules.php:119 +#: ../../godmode/massive/massive_copy_modules.php:279 +#: ../../godmode/massive/massive_delete_modules.php:422 +#: ../../godmode/massive/massive_delete_modules.php:443 +#: ../../godmode/massive/massive_delete_agents.php:213 +#: ../../godmode/massive/massive_edit_agents.php:535 +#: ../../godmode/massive/massive_edit_modules.php:389 +#: ../../godmode/massive/massive_edit_modules.php:475 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3738 +#: ../../godmode/events/event_edit_filter.php:320 ../../mobile/operation/modules.php:73 +#: ../../include/functions.php:1277 +#: ../../include/lib/Dashboard/Widgets/events_list.php:319 +#: ../../include/functions_events.php:2889 ../../operation/agentes/estado_agente.php:272 +#: ../../operation/agentes/status_monitor.php:496 ../../operation/events/events.php:1583 +msgid "Not normal" +msgstr "No normal" + +#: ../../enterprise/meta/monitoring/custom_fields_view.php:185 +#: ../../enterprise/meta/monitoring/group_view.php:237 +#: ../../enterprise/meta/monitoring/group_view.php:243 +#: ../../enterprise/meta/monitoring/tactical.php:226 +#: ../../enterprise/godmode/massive/massive_add_modules_policy.php:124 +#: ../../enterprise/operation/agentes/transactional_map.php:345 +#: ../../enterprise/operation/agentes/tag_view.php:137 +#: ../../enterprise/operation/services/services.treeview_services.php:290 +#: ../../godmode/groups/group_list.php:1069 +#: ../../godmode/massive/massive_copy_modules.php:120 +#: ../../godmode/massive/massive_copy_modules.php:280 +#: ../../godmode/massive/massive_delete_modules.php:423 +#: ../../godmode/massive/massive_delete_modules.php:444 +#: ../../godmode/massive/massive_delete_agents.php:214 +#: ../../godmode/massive/massive_edit_agents.php:536 +#: ../../godmode/massive/massive_edit_modules.php:390 +#: ../../godmode/massive/massive_edit_modules.php:476 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3739 +#: ../../mobile/operation/modules.php:75 ../../include/functions_reporting_html.php:652 +#: ../../include/functions_reporting_html.php:2361 +#: ../../include/functions_reporting_html.php:4458 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:389 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:422 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:675 ../../operation/tree.php:216 +#: ../../operation/tree.php:273 ../../operation/tree.php:481 +#: ../../operation/agentes/estado_agente.php:273 +#: ../../operation/agentes/status_monitor.php:498 +#: ../../operation/agentes/group_view.php:225 ../../operation/agentes/group_view.php:230 +#: ../../operation/agentes/tactical.php:182 +msgid "Not init" +msgstr "No iniciados" + +#: ../../enterprise/meta/monitoring/custom_fields_view.php:187 +msgid "Status agents" +msgstr "Agentes de estado" + +#: ../../enterprise/meta/monitoring/custom_fields_view.php:203 +msgid "Status module" +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:829 ../../operation/events/events.php:1708 +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:587 ../../include/ajax/events.php:571 +#: ../../include/ajax/events.php:587 ../../operation/netflow/nf_live_view.php:397 +#: ../../operation/events/sound_events.php:184 ../../operation/events/events.php:1700 +msgid "Load filter" +msgstr "Cargar filtro" + +#: ../../enterprise/meta/monitoring/custom_fields_view.php:250 +#: ../../general/first_task/custom_fields.php:24 +msgid "Custom Fields" +msgstr "Campos personalizados" + +#: ../../enterprise/meta/monitoring/custom_fields_view.php:266 +msgid "Custom Fields Data" +msgstr "Datos de campos personalizados" + +#: ../../enterprise/meta/monitoring/custom_fields_view.php:293 +#: ../../godmode/events/event_edit_filter.php:619 ../../operation/events/events.php:1799 +msgid "Module search" +msgstr "BĆŗsqueda por mĆ³dulo" + +#: ../../enterprise/meta/monitoring/custom_fields_view.php:304 +#: ../../enterprise/extensions/vmware/vmware_view.php:1519 +#: ../../enterprise/include/class/DeploymentCenter.class.php:1533 +#: ../../enterprise/include/class/AgentRepository.class.php:784 +#: ../../enterprise/include/class/Omnishell.class.php:1124 +#: ../../enterprise/include/class/LogSource.class.php:766 +#: ../../enterprise/operation/agentes/tag_view.php:175 +#: ../../godmode/users/user_list.php:693 ../../include/class/ConfigPEN.class.php:252 +#: ../../include/class/CredentialStore.class.php:1098 ../../operation/heatmap.php:291 +#: ../../operation/agentes/interface_view.functions.php:120 +#: ../../operation/agentes/interface_view.functions.php:158 +#: ../../operation/agentes/status_monitor.php:861 +msgid "Show" +msgstr "Mostrar" + +#: ../../enterprise/meta/monitoring/custom_fields_view.php:319 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:597 +#: ../../enterprise/include/functions_ipam.php:339 +#: ../../enterprise/operation/log/log_viewer.php:805 +#: ../../enterprise/operation/reporting/custom_reporting.php:80 +#: ../../godmode/modules/manage_network_templates.php:288 +#: ../../godmode/agentes/planned_downtime.list.php:860 +#: ../../include/graphs/functions_flot.php:377 +#: ../../include/class/ModuleTemplates.class.php:934 +#: ../../operation/network/network_report.php:140 +#: ../../operation/incidents/list_integriaims_incidents.php:428 +msgid "Export to CSV" +msgstr "Exportar a CSV" + +#: ../../enterprise/meta/monitoring/custom_fields_view.php:347 +#: ../../enterprise/meta/monitoring/custom_fields_view.php:349 +#: ../../enterprise/include/class/DatabaseHA.class.php:217 +#: ../../godmode/wizards/DiscoveryTaskList.class.php:1861 +#: ../../include/functions_ui.php:3432 +msgid "Processing" +msgstr "Procesando" + +#: ../../enterprise/meta/monitoring/custom_fields_view.php:374 +#: ../../mobile/operation/groups.php:153 ../../include/functions_reporting_html.php:5602 +#: ../../include/functions_agents.php:3860 +msgid "Agents critical" +msgstr "Agentes crĆ­ticos" + +#: ../../enterprise/meta/monitoring/custom_fields_view.php:387 +#: ../../include/functions_reporting_html.php:5605 +#: ../../include/functions_agents.php:3870 +msgid "Agents warning" +msgstr "Agentes en estado de advertencia" + +#: ../../enterprise/meta/monitoring/custom_fields_view.php:400 +#: ../../include/functions_reporting_html.php:5611 +#: ../../include/functions_agents.php:3850 ../../include/functions_agents.php:3904 +msgid "Agents ok" +msgstr "Agentes OK" + +#: ../../enterprise/meta/monitoring/custom_fields_view.php:413 +#: ../../mobile/operation/groups.php:156 ../../include/functions_reporting_html.php:5614 +#: ../../include/functions_agents.php:3880 +msgid "Agents unknown" +msgstr "Agentes desconocidos" + +#: ../../enterprise/meta/monitoring/custom_fields_view.php:426 +#: ../../mobile/operation/groups.php:150 ../../include/functions_reporting_html.php:5620 +#: ../../include/functions_agents.php:3894 +msgid "Agents not init" +msgstr "Agentes no iniciados" + +#: ../../enterprise/meta/monitoring/custom_fields_view.php:452 +#: ../../include/functions_reporting.php:11572 +msgid "Monitor critical" +msgstr "Monitor crĆ­tico" + +#: ../../enterprise/meta/monitoring/custom_fields_view.php:463 +#: ../../include/functions_reporting.php:11576 +msgid "Monitor warning" +msgstr "Monitor en estado de advertencia" + +#: ../../enterprise/meta/monitoring/custom_fields_view.php:474 +#: ../../include/functions_reporting.php:11583 +msgid "Monitor normal" +msgstr "Monitor normal" + +#: ../../enterprise/meta/monitoring/custom_fields_view.php:485 +#: ../../include/functions_reporting.php:11587 +msgid "Monitor unknown" +msgstr "Monitor en estado desconocido" + +#: ../../enterprise/meta/monitoring/custom_fields_view.php:496 +#: ../../include/functions_reporting.php:11594 +msgid "Monitor not init" +msgstr "Monitor en estado no iniciado" + +#: ../../enterprise/meta/monitoring/custom_fields_view.php:511 +#: ../../include/functions_reporting_html.php:5629 +#: ../../include/functions_reporting_html.php:5634 +msgid "Agents by status" +msgstr "Agentes por estado" + +#: ../../enterprise/meta/monitoring/custom_fields_view.php:519 +#: ../../include/functions_reporting.php:11614 +#: ../../include/functions_reporting.php:11620 +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 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:658 ../../operation/tree.php:464 +msgid "Critical agents" +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 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:663 ../../operation/tree.php:469 +msgid "Warning agents" +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 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:678 ../../operation/tree.php:484 +msgid "Normal agents" +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 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:668 ../../operation/tree.php:474 +msgid "Unknown agents" +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 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:673 ../../operation/tree.php:479 +msgid "Not init agents" +msgstr "Agentes no iniciados" + +#: ../../enterprise/meta/monitoring/custom_fields_view.php:602 +#: ../../enterprise/include/functions_reporting_csv.php:983 +#: ../../enterprise/operation/services/services.treeview_services.php:274 +#: ../../godmode/groups/group_list.php:1053 ../../mobile/operation/groups.php:171 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:659 ../../operation/tree.php:465 +msgid "Critical modules" +msgstr "MĆ³dulos crĆ­ticos" + +#: ../../enterprise/meta/monitoring/custom_fields_view.php:613 +#: ../../enterprise/include/functions_reporting_csv.php:983 +#: ../../enterprise/operation/services/services.treeview_services.php:279 +#: ../../godmode/groups/group_list.php:1058 ../../mobile/operation/groups.php:168 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:664 ../../operation/tree.php:470 +msgid "Warning modules" +msgstr "MĆ³dulos de advertencia" + +#: ../../enterprise/meta/monitoring/custom_fields_view.php:624 +#: ../../enterprise/include/functions_reporting_csv.php:983 +#: ../../enterprise/operation/services/services.treeview_services.php:294 +#: ../../godmode/groups/group_list.php:1073 ../../mobile/operation/groups.php:165 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:679 ../../operation/tree.php:485 +msgid "Normal modules" +msgstr "MĆ³dulos normales" + +#: ../../enterprise/meta/monitoring/custom_fields_view.php:635 +#: ../../enterprise/include/functions_reporting_csv.php:983 +#: ../../enterprise/operation/services/services.treeview_services.php:284 +#: ../../godmode/groups/group_list.php:1063 ../../mobile/operation/groups.php:159 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:669 ../../operation/tree.php:475 +msgid "Unknown modules" +msgstr "MĆ³dulos desconocidos" + +#: ../../enterprise/meta/monitoring/custom_fields_view.php:646 +#: ../../enterprise/include/functions_reporting_csv.php:983 +#: ../../enterprise/operation/services/services.treeview_services.php:289 +#: ../../godmode/groups/group_list.php:1068 ../../mobile/operation/groups.php:162 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:674 ../../operation/tree.php:480 +msgid "Not init modules" +msgstr "MĆ³dulos no iniciados" + +#: ../../enterprise/meta/monitoring/custom_fields_view.php:672 +msgid "Total counters" +msgstr "Contadores totales" + +#: ../../enterprise/meta/monitoring/custom_fields_view.php:675 +msgid "Total Agents" +msgstr "Agentes totales" + +#: ../../enterprise/meta/monitoring/custom_fields_view.php:684 +msgid "Total Modules" +msgstr "MĆ³dulos totales" + +#: ../../enterprise/meta/monitoring/custom_fields_view.php:705 +msgid "I.P" +msgstr "IP" + +#: ../../enterprise/meta/monitoring/custom_fields_view.php:719 +#: ../../include/functions_api.php:168 +msgid "No data to show." +msgstr "No hay datos." + +#: ../../enterprise/meta/monitoring/custom_fields_view.php:727 +msgid "There are no custom search defined." +msgstr "No hay bĆŗsquedas personalizadas definidas." + +#: ../../enterprise/meta/monitoring/custom_fields_view.php:1151 +#: ../../enterprise/meta/event/custom_events.php:249 +#: ../../godmode/agentes/status_monitor_custom_fields.php:241 +#: ../../godmode/events/custom_events.php:223 +#: ../../include/class/TreeGroupEdition.class.php:164 +msgid "Confirm" +msgstr "Confirmar" + +#: ../../enterprise/meta/monitoring/wizard/wizard.agent.php:76 +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:229 +#: ../../godmode/agentes/configurar_agente.php:842 +#: ../../godmode/agentes/modificar_agente.php:952 +#: ../../operation/agentes/estado_agente.php:968 +#: ../../operation/agentes/estado_agente.php:978 +#: ../../operation/snmpconsole/snmp_statistics.php:193 +#: ../../operation/snmpconsole/snmp_view.php:956 +msgid "Create agent" +msgstr "Crear agente" + +#: ../../enterprise/meta/monitoring/wizard/wizard.agent.php:80 +msgid "Edit agent" +msgstr "Editar agente" + +#: ../../enterprise/meta/monitoring/wizard/wizard.agent.php:198 +#: ../../enterprise/meta/monitoring/wizard/wizard.module.network.php:280 +msgid "Please, set a valid IP/Name address" +msgstr "Por favor, introduce una IP/Nombre de direcciĆ³n vĆ”lido." + +#: ../../enterprise/meta/monitoring/wizard/wizard.agent.php:209 +msgid "Please, select a group first" +msgstr "Por favor, seleccione primero un grupo" + +#: ../../enterprise/meta/monitoring/wizard/wizard.manage_alert.php:73 +#: ../../enterprise/godmode/alerts/alert_inventory_list.php:337 +msgid "Edit alert" +msgstr "Editar alerta" + +#: ../../enterprise/meta/monitoring/wizard/wizard.manage_alert.php:104 +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:648 +#: ../../godmode/snmpconsole/snmp_alert.php:97 +msgid "Create alert" +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:3509 +#: ../../enterprise/extensions/disabled/check_acls.php:133 +#: ../../enterprise/godmode/agentes/agent_disk_conf_editor.php:211 +#: ../../enterprise/godmode/policies/policy_alerts.php:352 +#: ../../enterprise/godmode/policies/policy_alerts.php:567 +#: ../../enterprise/godmode/policies/policy_linking.php:151 +#: ../../enterprise/godmode/alerts/alert_inventory_list.php:371 +#: ../../enterprise/godmode/services/services.elements.php:93 +#: ../../enterprise/godmode/services/services.elements.php:155 +#: ../../enterprise/godmode/services/services.elements.php:271 +#: ../../enterprise/godmode/reporting/graph_template_item_editor.php:185 +#: ../../enterprise/godmode/reporting/graph_template_item_editor.php:240 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:317 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1397 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2058 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3515 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3728 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3746 +#: ../../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:525 +#: ../../enterprise/include/functions_reporting_pdf.php:533 +#: ../../enterprise/include/functions_reporting_pdf.php:541 +#: ../../enterprise/include/functions_reporting_pdf.php:557 +#: ../../enterprise/include/functions_reporting_csv.php:491 +#: ../../enterprise/include/functions_reporting_csv.php:776 +#: ../../enterprise/include/functions_reporting_csv.php:802 +#: ../../enterprise/include/functions_reporting_csv.php:915 +#: ../../enterprise/include/functions_reporting_csv.php:954 +#: ../../enterprise/include/functions_reporting_csv.php:1014 +#: ../../enterprise/include/functions_reporting_csv.php:1030 +#: ../../enterprise/include/functions_reporting_csv.php:1184 +#: ../../enterprise/include/functions_reporting_csv.php:1215 +#: ../../enterprise/include/functions_reporting_csv.php:1270 +#: ../../enterprise/include/functions_reporting_csv.php:1325 +#: ../../enterprise/include/functions_reporting_csv.php:1374 +#: ../../enterprise/include/functions_reporting_csv.php:1429 +#: ../../enterprise/include/functions_reporting_csv.php:1458 +#: ../../enterprise/include/functions_reporting_csv.php:1503 +#: ../../enterprise/include/functions_reporting_csv.php:1549 +#: ../../enterprise/include/functions_reporting_csv.php:1622 +#: ../../enterprise/include/functions_reporting_csv.php:1741 +#: ../../enterprise/include/functions_reporting_csv.php:1976 +#: ../../enterprise/include/functions_reporting_csv.php:2049 +#: ../../enterprise/include/functions_reporting_csv.php:2281 +#: ../../enterprise/include/functions_reporting_csv.php:2317 +#: ../../enterprise/include/functions_reporting_csv.php:2465 +#: ../../enterprise/include/functions_reporting_csv.php:2737 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:924 +#: ../../enterprise/include/functions_reporting.php:1854 +#: ../../enterprise/include/functions_reporting.php:2893 +#: ../../enterprise/include/functions_reporting.php:3880 +#: ../../enterprise/include/functions_reporting.php:4904 +#: ../../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:357 +#: ../../godmode/agentes/planned_downtime.editor.php:1007 +#: ../../godmode/agentes/agent_manager.php:520 +#: ../../godmode/agentes/agent_manager.php:592 +#: ../../godmode/agentes/module_manager_editor_common.php:1260 +#: ../../godmode/agentes/module_manager_editor_common.php:1304 +#: ../../godmode/massive/massive_standby_alerts.php:223 +#: ../../godmode/massive/massive_standby_alerts.php:258 +#: ../../godmode/massive/massive_enable_disable_alerts.php:195 +#: ../../godmode/massive/massive_enable_disable_alerts.php:230 +#: ../../godmode/massive/massive_edit_agents.php:674 +#: ../../godmode/massive/massive_edit_agents.php:1026 +#: ../../godmode/alerts/alert_list.list.php:494 +#: ../../godmode/alerts/alert_list.list.php:752 ../../godmode/alerts/alert_view.php:91 +#: ../../godmode/alerts/alert_list.builder.php:70 +#: ../../godmode/reporting/reporting_builder.list_items.php:410 +#: ../../godmode/reporting/create_container.php:410 +#: ../../godmode/reporting/create_container.php:560 +#: ../../godmode/reporting/create_container.php:628 +#: ../../godmode/reporting/graph_builder.graph_editor.php:213 +#: ../../godmode/reporting/reporting_builder.item_editor.php:201 +#: ../../godmode/reporting/reporting_builder.item_editor.php:873 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1170 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1709 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3901 +#: ../../godmode/reporting/reporting_builder.item_editor.php:4417 +#: ../../godmode/reporting/reporting_builder.item_editor.php:4441 +#: ../../godmode/reporting/visual_console_builder.elements.php:105 +#: ../../godmode/reporting/visual_console_builder.wizard.php:449 +#: ../../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:543 +#: ../../include/functions_reporting_html.php:939 +#: ../../include/functions_reporting_html.php:1813 +#: ../../include/functions_reporting_html.php:2141 +#: ../../include/functions_reporting_html.php:2243 +#: ../../include/functions_reporting_html.php:3226 +#: ../../include/functions_reporting_html.php:3609 +#: ../../include/functions_reporting_html.php:3617 +#: ../../include/functions_reporting_html.php:3626 +#: ../../include/functions_reporting_html.php:3638 +#: ../../include/functions_reporting_html.php:3794 +#: ../../include/functions_reporting_html.php:3922 +#: ../../include/functions_reporting_html.php:4016 +#: ../../include/functions_reporting_html.php:4735 +#: ../../include/functions_reporting_html.php:4783 +#: ../../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:5391 +#: ../../include/functions_treeview.php:64 +#: ../../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/Odometer.php:385 +#: ../../include/functions_reports.php:1344 +#: ../../include/class/AgentsAlerts.class.php:412 +#: ../../include/class/AgentsAlerts.class.php:891 +#: ../../include/functions_reporting.php:6839 +#: ../../include/lib/Dashboard/Widgets/sla_percent.php:315 +#: ../../include/lib/Dashboard/Widgets/BlockHistogram.php:278 +#: ../../include/lib/Dashboard/Widgets/module_icon.php:334 +#: ../../include/lib/Dashboard/Widgets/module_value.php:308 +#: ../../include/lib/Dashboard/Widgets/ColorModuleTabs.php:254 +#: ../../include/lib/Dashboard/Widgets/module_table_value.php:283 +#: ../../include/lib/Dashboard/Widgets/graph_module_histogram.php:304 +#: ../../include/lib/Dashboard/Widgets/module_status.php:324 +#: ../../include/lib/Dashboard/Widgets/single_graph.php:279 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:682 +#: ../../include/lib/Dashboard/Widgets/top_n.php:221 +#: ../../operation/agentes/exportdata.csv.php:74 +#: ../../operation/agentes/exportdata.php:83 +#: ../../operation/agentes/estado_monitores.php:125 +#: ../../operation/agentes/exportdata.excel.php:74 ../../operation/search_alerts.php:35 +#: ../../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:329 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:321 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1402 +#: ../../enterprise/include/functions_tasklist.php:328 +#: ../../enterprise/include/functions_reporting_csv.php:2465 +#: ../../enterprise/operation/agentes/policy_view.php:259 +#: ../../godmode/alerts/alert_list.list.php:498 ../../godmode/alerts/alert_view.php:95 +#: ../../godmode/alerts/alert_list.builder.php:140 +#: ../../godmode/reporting/reporting_builder.item_editor.php:205 +#: ../../godmode/reporting/reporting_builder.item_editor.php:878 +#: ../../mobile/operation/alerts.php:342 ../../include/functions_reporting_html.php:3227 +#: ../../include/functions_reporting_html.php:3230 ../../include/functions_cron.php:653 +#: ../../include/ajax/alert_list.ajax.php:293 ../../include/ajax/alert_list.ajax.php:318 +#: ../../include/functions_treeview.php:412 ../../include/functions_treeview.php:453 +#: ../../include/class/AgentsAlerts.class.php:338 +#: ../../include/class/AgentsAlerts.class.php:964 ../../operation/search_alerts.php:36 +msgid "Template" +msgstr "Plantilla" + +#: ../../enterprise/meta/monitoring/wizard/wizard.manage_alert.php:231 +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:257 +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:354 +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:411 +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:679 +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:750 +#: ../../enterprise/meta/monitoring/wizard/wizard.create_module.php:231 +#: ../../enterprise/meta/monitoring/wizard/wizard.php:150 +#: ../../enterprise/meta/include/ajax/wizard.ajax.php:742 +#: ../../enterprise/meta/general/header.php:121 +#: ../../enterprise/meta/general/main_header.php:558 +#: ../../enterprise/godmode/policies/policy_alerts.php:648 +#: ../../enterprise/godmode/policies/policy_external_alerts.php:676 +#: ../../enterprise/godmode/massive/massive_add_modules_policy.php:141 +#: ../../enterprise/godmode/massive/massive_create_services.php:902 +#: ../../enterprise/godmode/massive/massive_create_services.php:914 +#: ../../enterprise/godmode/massive/massive_create_services.php:926 +#: ../../enterprise/godmode/massive/massive_create_services.php:938 +#: ../../enterprise/godmode/services/services.service.php:873 +#: ../../enterprise/godmode/services/services.service.php:885 +#: ../../enterprise/godmode/services/services.service.php:897 +#: ../../enterprise/godmode/services/services.service.php:909 +#: ../../extensions/insert_data.php:186 +#: ../../godmode/snmpconsole/snmp_trap_generator.php:159 +#: ../../godmode/massive/massive_copy_modules.php:138 +#: ../../godmode/massive/massive_delete_modules.php:334 +#: ../../godmode/massive/massive_delete_modules.php:469 +#: ../../godmode/massive/massive_add_alerts.php:286 +#: ../../godmode/massive/massive_delete_alerts.php:277 +#: ../../godmode/massive/massive_edit_modules.php:318 +#: ../../godmode/massive/massive_edit_modules.php:431 +#: ../../godmode/alerts/alert_list.builder.php:82 +#: ../../godmode/alerts/alert_list.builder.php:156 +#: ../../godmode/setup/setup_integria.php:367 ../../godmode/setup/setup_integria.php:385 +#: ../../godmode/setup/setup_integria.php:414 ../../godmode/setup/setup_integria.php:432 +#: ../../godmode/setup/setup_integria.php:489 ../../godmode/setup/setup_integria.php:507 +#: ../../godmode/setup/setup_integria.php:536 ../../godmode/setup/setup_integria.php:554 +#: ../../include/functions_reports.php:1351 +#: ../../include/class/AgentsAlerts.class.php:354 +#: ../../operation/incidents/configure_integriaims_incident.php:240 +#: ../../operation/incidents/configure_integriaims_incident.php:256 +#: ../../operation/incidents/configure_integriaims_incident.php:302 +#: ../../general/header.php:265 +msgid "Select" +msgstr "Seleccionar" + +#: ../../enterprise/meta/monitoring/wizard/wizard.manage_alert.php:248 +msgid "Create new template" +msgstr "Crear nueva plantilla" + +#: ../../enterprise/meta/monitoring/wizard/wizard.manage_alert.php:263 +#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:441 +#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:548 +#: ../../godmode/alerts/configure_alert_template.php:758 +#: ../../godmode/alerts/alert_list.builder.php:117 +#: ../../include/class/AgentsAlerts.class.php:304 +msgid "Default action" +msgstr "AcciĆ³n predeterminada" + +#: ../../enterprise/meta/monitoring/wizard/wizard.manage_alert.php:280 +msgid "Create new action" +msgstr "Crear nueva acciĆ³n" + +#: ../../enterprise/meta/monitoring/wizard/wizard.manage_alert.php:290 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2340 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2552 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3387 +#: ../../godmode/alerts/alert_list.list.php:666 +#: ../../godmode/alerts/alert_list.list.php:792 +#: ../../godmode/alerts/configure_alert_action.php:284 +#: ../../godmode/alerts/alert_view.php:361 +#: ../../godmode/alerts/alert_list.builder.php:173 +#: ../../include/functions_reporting_html.php:3484 +#: ../../include/functions_reporting_html.php:5252 +#: ../../include/ajax/alert_list.ajax.php:540 ../../include/ajax/custom_fields.php:413 +#: ../../include/class/AgentsAlerts.class.php:385 +#: ../../include/class/AgentWizard.class.php:1199 +msgid "Threshold" +msgstr "Umbral" + +#: ../../enterprise/meta/monitoring/wizard/wizard.module.local.php:108 +#: ../../enterprise/meta/monitoring/wizard/wizard.module.network.php:120 +#: ../../enterprise/meta/monitoring/wizard/wizard.module.web.php:101 +msgid "Advanced configuration" +msgstr "ConfiguraciĆ³n avanzada" + +#: ../../enterprise/meta/monitoring/wizard/wizard.module.local.php:122 +#: ../../enterprise/meta/monitoring/wizard/wizard.create_agent.php:40 +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:327 +#: ../../enterprise/meta/monitoring/wizard/wizard.module.network.php:135 +#: ../../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 +msgid "Create module" +msgstr "Crear mĆ³dulo" + +#: ../../enterprise/meta/monitoring/wizard/wizard.module.local.php:126 +#: ../../enterprise/meta/monitoring/wizard/wizard.module.network.php:142 +#: ../../enterprise/meta/monitoring/wizard/wizard.module.web.php:117 +#: ../../enterprise/meta/monitoring/wizard/wizard.update_module.php:39 +#: ../../enterprise/godmode/policies/policy_modules.php:380 +msgid "Edit module" +msgstr "Editar mĆ³dulo" + +#: ../../enterprise/meta/monitoring/wizard/wizard.module.local.php:156 +#: ../../enterprise/meta/monitoring/wizard/wizard.module.network.php:195 +#: ../../enterprise/meta/monitoring/wizard/wizard.update_agent.php:46 +#: ../../enterprise/meta/monitoring/wizard/wizard.module.web.php:147 +#: ../../enterprise/meta/monitoring/wizard/wizard.update_module.php:92 +#: ../../enterprise/meta/monitoring/wizard/wizard.create_module.php:131 +#: ../../enterprise/meta/monitoring/wizard/wizard.php:155 +#: ../../enterprise/meta/monitoring/wizard/wizard.php:207 +#, php-format +msgid "Cannot connect to %s instance." +msgstr "No se ha podido conectar con la instancia de %s." + +#: ../../enterprise/meta/monitoring/wizard/wizard.module.local.php:229 +#: ../../enterprise/meta/monitoring/wizard/wizard.module.network.php:281 +#: ../../enterprise/meta/monitoring/wizard/wizard.module.web.php:238 +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:819 +#: ../../godmode/agentes/configurar_agente.php:841 +#: ../../godmode/agentes/modificar_agente.php:108 ../../godmode/menu.php:87 +msgid "Manage agents" +msgstr "Gestionar agentes" + +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:276 +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:372 +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:438 +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:706 +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:785 +#: ../../enterprise/meta/agentsearch.php:52 ../../enterprise/meta/agentsearch.php:58 +#: ../../godmode/events/event_edit_filter.php:376 ../../mobile/operation/home.php:168 +#: ../../operation/events/events.php:1782 +msgid "Agent search" +msgstr "BĆŗsqueda de agente" + +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:283 +msgid "Select the agent to be edited or deleted" +msgstr "Selecciona el agente que quieras editar o eliminar" + +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:292 +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:388 +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:458 +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:727 +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:809 +#: ../../godmode/groups/configure_group.php:272 +#: ../../godmode/snmpconsole/snmp_alert.php:1138 +#: ../../godmode/alerts/configure_alert_action.php:395 +#: ../../mobile/operation/agents.php:209 ../../mobile/operation/modules.php:241 +#: ../../mobile/operation/groups.php:82 ../../mobile/operation/agent.php:148 +#: ../../mobile/operation/alerts.php:199 ../../mobile/operation/visualmap.php:256 +#: ../../mobile/operation/visualmaps.php:189 ../../mobile/operation/module_graph.php:364 +#: ../../mobile/operation/module_graph.php:377 ../../mobile/operation/events.php:913 +#: ../../mobile/operation/tactical.php:102 +msgid "Back" +msgstr "AtrĆ”s" + +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:332 +msgid "Manage modules" +msgstr "Gestionar mĆ³dulos" + +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:378 +msgid "Select the agent where the module will be created" +msgstr "Selecciona el agente donde quieres crear el mĆ³dulo" + +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:391 +msgid "Create Module" +msgstr "Crear mĆ³dulo" + +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:448 +msgid "Select the module to be edited or deleted" +msgstr "Selecciona el mĆ³dulo para editarlo o borrarlo" + +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:503 +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:543 +msgid "Error creating alert" +msgstr "Error al crear una alerta" + +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:507 +msgid "Alert could not be created" +msgstr "No se pudo crear la alerta" + +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:527 +msgid "Perform create alert" +msgstr "Realizar crear alerta" + +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:531 +msgid "Alert created correctly" +msgstr "Alerta creada correctamente" + +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:547 +msgid "Alert template must be setted" +msgstr "La plantilla de alerta debe estar configurada" + +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:586 +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:619 +msgid "Error updating alert" +msgstr "Alerta de actualizaciĆ³n de error" + +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:590 +msgid "Something gone wrong with alert update" +msgstr "Algo saliĆ³ mal con la actualizaciĆ³n de alertas" + +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:601 +msgid "Perform update alert" +msgstr "Realizar alerta de actualizaciĆ³n" + +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:605 +msgid "Alert updated correctly" +msgstr "Alerta actualizada correctamente" + +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:623 +msgid "Template must be set." +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:494 +#: ../../godmode/alerts/alert_list.php:496 +msgid "Manage alerts" +msgstr "Gestionar alertas" + +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:716 +msgid "Select the module where the alert will be created" +msgstr "Selecciona el mĆ³dulo donde se crearĆ” la alerta" + +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:798 +msgid "Select the alert to be edited or deleted" +msgstr "Selecciona la alerta que quieres editar o eliminar" + +#: ../../enterprise/meta/monitoring/wizard/wizard.module.web.php:231 +msgid "Please, set a name" +msgstr "Por favor, introduce un nombre." + +#: ../../enterprise/meta/monitoring/wizard/wizard.module.web.php:252 +msgid "Please, set an interval" +msgstr "Por favor, introduce un intervalo." + +#: ../../enterprise/meta/monitoring/wizard/wizard.create_module.php:148 +#: ../../godmode/modules/manage_network_components_form_wizard.php:336 +#: ../../godmode/massive/massive_delete_modules.php:323 +#: ../../godmode/massive/massive_edit_modules.php:309 +msgid "Module type" +msgstr "Tipo mĆ³dulo" + +#: ../../enterprise/meta/monitoring/wizard/wizard.create_module.php:148 +#: ../../mobile/include/functions_web.php:24 +#: ../../include/functions_reporting_html.php:5171 +#: ../../include/functions_reporting_html.php:5325 +msgid "Monitor" +msgstr "Monitor" + +#: ../../enterprise/meta/monitoring/wizard/wizard.create_module.php:148 +msgid "Web check" +msgstr "ComprobaciĆ³n web" + +#: ../../enterprise/meta/monitoring/wizard/wizard.create_module.php:155 +#: ../../enterprise/godmode/modules/configure_local_component.php:259 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:832 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2017 +#: ../../enterprise/operation/agentes/tag_view.php:156 +#: ../../enterprise/operation/agentes/ver_agente.php:35 +#: ../../extensions/agents_modules.php:410 +#: ../../godmode/modules/manage_network_components_form_common.php:111 +#: ../../godmode/agentes/module_manager_editor_common.php:265 +#: ../../godmode/massive/massive_edit_modules.php:889 +#: ../../godmode/reporting/create_container.php:540 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1637 +#: ../../mobile/operation/modules.php:183 ../../mobile/operation/modules.php:184 +#: ../../mobile/operation/modules.php:293 ../../mobile/operation/modules.php:294 +#: ../../include/ajax/heatmap.ajax.php:190 ../../include/ajax/heatmap.ajax.php:249 +#: ../../include/ajax/heatmap.ajax.php:288 ../../include/functions_graph.php:5307 +#: ../../include/functions_treeview.php:122 ../../include/functions_html.php:1570 +#: ../../include/functions_events.php:4096 ../../operation/heatmap.php:96 +#: ../../operation/heatmap.php:98 ../../operation/agentes/status_monitor.php:517 +#: ../../operation/agentes/estado_monitores.php:552 +#: ../../operation/agentes/ver_agente.php:1157 +msgid "Module group" +msgstr "Grupo del mĆ³dulo" + +#: ../../enterprise/meta/monitoring/wizard/wizard.create_module.php:245 +msgid "Module description" +msgstr "DescripciĆ³n del mĆ³dulo" + +#: ../../enterprise/meta/monitoring/wizard/wizard.create_module.php:267 +msgid "Step by step wizard" +msgstr "Wizard paso a paso" + +#: ../../enterprise/meta/monitoring/wizard/wizard.create_module.php:268 +#: ../../enterprise/meta/general/main_header.php:309 +#: ../../enterprise/meta/general/main_header.php:391 +#: ../../enterprise/godmode/modules/configure_local_component.php:165 +#: ../../enterprise/godmode/agentes/plugins_manager.php:126 +#: ../../enterprise/godmode/policies/policy_plugins.php:108 +#: ../../godmode/modules/manage_network_components_form_common.php:53 +#: ../../godmode/users/configure_user.php:1192 +#: ../../godmode/netflow/nf_edit_form.php:237 +#: ../../godmode/alerts/alert_commands.php:157 +#: ../../godmode/alerts/alert_commands.php:194 +#: ../../godmode/alerts/configure_alert_template.php:946 +#: ../../godmode/alerts/configure_alert_template.php:987 +#: ../../godmode/alerts/configure_alert_template.php:1138 +#: ../../operation/netflow/nf_live_view.php:490 +msgid "Advanced" +msgstr "Avanzado" + +#: ../../enterprise/meta/monitoring/wizard/wizard.create_module.php:275 +#: ../../enterprise/meta/monitoring/wizard/wizard.create_module.php:280 +msgid "Click Create to continue" +msgstr "Haz clic en Crear para continuar" + +#: ../../enterprise/meta/monitoring/wizard/wizard.create_module.php:384 +#: ../../enterprise/meta/monitoring/wizard/wizard.php:145 +#: ../../godmode/reporting/graph_builder.graph_editor.php:367 +msgid "Please, select a module" +msgstr "Por favor, selecciona un mĆ³dulo." + +#: ../../enterprise/meta/monitoring/wizard/wizard.php:133 +#: ../../enterprise/godmode/wizards/Cloud.class.php:579 +#: ../../enterprise/include/class/VMware.app.php:863 +#: ../../enterprise/include/class/Omnishell.class.php:852 +#: ../../enterprise/include/class/DB2.app.php:840 +#: ../../enterprise/include/class/SAP.app.php:802 +#: ../../enterprise/include/class/Aws.cloud.php:1423 +#: ../../enterprise/include/class/MySQL.app.php:908 +#: ../../enterprise/include/class/Oracle.app.php:949 +#: ../../enterprise/include/class/MicrosoftSQLServer.app.php:793 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2180 +#: ../../enterprise/include/lib/ClusterViewer/ClusterWizard.php:1206 +#: ../../godmode/alerts/configure_alert_template.php:1171 +#: ../../godmode/wizards/HostDevices.class.php:1569 +#: ../../include/class/CustomNetScan.class.php:725 +msgid "Finish" +msgstr "Finalizar" + +#: ../../enterprise/meta/monitoring/wizard/wizard.php:134 +msgid "The alert you are trying to add is already in the list of alerts" +msgstr "La alerta que estĆ”s intentando aƱadir ya se encuentra en la lista de alertas." + +#: ../../enterprise/meta/monitoring/wizard/wizard.php:135 +#: ../../enterprise/meta/include/ajax/wizard.ajax.php:609 +#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:124 +msgid "No description available" +msgstr "Sin descripciĆ³n disponible" + +#: ../../enterprise/meta/monitoring/wizard/wizard.php:138 +#: ../../enterprise/operation/agentes/policy_view.php:184 +#: ../../enterprise/operation/agentes/policy_view.php:277 +#: ../../enterprise/operation/agentes/policy_view.php:570 +#: ../../godmode/modules/manage_network_components_form_plugin.php:54 +#: ../../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:2712 +#: ../../include/class/AgentWizard.class.php:2510 +msgid "Empty" +msgstr "VacĆ­o" + +#: ../../enterprise/meta/monitoring/wizard/wizard.php:139 +#: ../../include/functions_events.php:2983 ../../include/functions_events.php:3263 +msgid "New" +msgstr "Nuevo" + +#: ../../enterprise/meta/monitoring/wizard/wizard.php:144 +msgid "Are you sure? If the agent is on a policy, it will be removed from the policy." +msgstr "" +"ĀæEstĆ” seguro? Si el agente esta incluido en una polĆ­tica, se eliminarĆ” de dicha " +"polĆ­tica." + +#: ../../enterprise/meta/monitoring/wizard/wizard.php:146 +msgid "Please, select an alert" +msgstr "Por favor, selecciona una alerta." + +#: ../../enterprise/meta/monitoring/wizard/wizard.php:147 +msgid "Please, select an agent" +msgstr "Por favor, selecciona un agente." + +#: ../../enterprise/meta/monitoring/wizard/wizard.php:149 +#: ../../enterprise/godmode/policies/policy_modules.php:1636 +#: ../../enterprise/godmode/massive/massive_add_modules_policy.php:195 +#: ../../enterprise/include/class/CommandCenter.class.php:463 +#: ../../enterprise/operation/log/log_viewer.php:845 +#: ../../enterprise/operation/log/log_viewer.php:867 +#: ../../godmode/massive/massive_copy_modules.php:235 +#: ../../godmode/massive/massive_operations.php:361 +#: ../../godmode/massive/massive_add_profiles.php:292 +#: ../../include/functions_events.php:3944 +#: ../../operation/reporting/reporting_viewer.php:347 +#: ../../operation/reporting/graph_viewer.php:316 ../../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:6969 +#: ../../include/lib/Dashboard/Widgets/url.php:216 +msgid "Url" +msgstr "URL" + +#: ../../enterprise/meta/monitoring/wizard/wizard.php:152 +#: ../../godmode/modules/manage_network_components_form_wizard.php:393 +#: ../../godmode/modules/manage_network_components_form_wizard.php:435 +#: ../../include/functions_reports.php:1080 ../../include/functions_reports.php:1210 +msgid "String" +msgstr "Cadena" + +#: ../../enterprise/meta/monitoring/wizard/wizard.php:153 +msgid "No agent name specified" +msgstr "No se especificĆ³ el nombre del agente." + +#: ../../enterprise/meta/monitoring/wizard/wizard.php:154 +msgid "Another agent already exists with the same name" +msgstr "Ya hay otro agente con ese nombre." + +#: ../../enterprise/meta/monitoring/wizard/wizard.php:156 +#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:430 +#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:433 +#: ../../godmode/agentes/module_manager_editor_common.php:627 +#: ../../godmode/agentes/module_manager_editor_common.php:629 +#, php-format +msgid "Agent interval x %s" +msgstr "Intervalo del agente x %s" + +#: ../../enterprise/meta/monitoring/group_view.php:55 +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:1093 +#: ../../operation/users/user_edit.php:359 ../../operation/agentes/group_view.php:89 +#: ../../operation/menu.php:48 +msgid "Group view" +msgstr "Vista de grupo" + +#: ../../enterprise/meta/monitoring/group_view.php:151 +msgid "Summary by status" +msgstr "Resumen por estados" + +#: ../../enterprise/meta/monitoring/group_view.php:160 +#: ../../enterprise/meta/monitoring/group_view.php:172 +msgid "% Agents not init" +msgstr "% agentes no iniciados" + +#: ../../enterprise/meta/monitoring/group_view.php:163 +msgid "% Agents Warning" +msgstr "% Agentes en advertencia" + +#: ../../enterprise/meta/monitoring/group_view.php:166 +msgid "% Agents OK" +msgstr "% Agentes OK" + +#: ../../enterprise/meta/monitoring/group_view.php:169 +msgid "% Agents Unknown" +msgstr "% monitores en estado desconocido" + +#: ../../enterprise/meta/monitoring/group_view.php:177 +msgid "% Monitors Critical" +msgstr "% monitores en estado crĆ­tico" + +#: ../../enterprise/meta/monitoring/group_view.php:180 +msgid "% Monitors Warning" +msgstr "% monitores en estado de advertencia" + +#: ../../enterprise/meta/monitoring/group_view.php:183 +msgid "% Monitors OK" +msgstr "% monitores en estado OK" + +#: ../../enterprise/meta/monitoring/group_view.php:186 +msgid "% Monitors Unknown" +msgstr "% mĆ³dulos en estado desconocido" + +#: ../../enterprise/meta/monitoring/group_view.php:189 +msgid "% Monitors Not init" +msgstr "% mĆ³dulos no iniciados" + +#: ../../enterprise/meta/monitoring/group_view.php:205 +#: ../../godmode/agentes/modificar_agente.php:944 +#: ../../operation/agentes/estado_agente.php:975 +#: ../../operation/agentes/group_view.php:577 +msgid "There are no defined agents" +msgstr "No hay ningĆŗn agente definido" + +#: ../../enterprise/meta/monitoring/group_view.php:217 +#: ../../enterprise/meta/monitoring/group_view.php:223 +msgid "This data doesn't show in realtime" +msgstr "Estos datos no se muestran en tiempo real" + +#: ../../enterprise/meta/monitoring/group_view.php:234 +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 +#: ../../include/functions_reporting_html.php:2346 +#: ../../include/functions_reporting_html.php:2356 +#: ../../include/functions_alerts.php:3360 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:650 ../../operation/tree.php:456 +#: ../../operation/agentes/group_view.php:223 +msgid "Total" +msgstr "Total" + +#: ../../enterprise/meta/monitoring/group_view.php:247 +#: ../../enterprise/operation/agentes/policy_view.php:345 +#: ../../godmode/alerts/alert_list.list.php:574 ../../godmode/alerts/alert_view.php:105 +#: ../../mobile/operation/alerts.php:324 ../../include/functions.php:1228 +#: ../../include/functions_agents.php:2942 ../../include/functions_agents.php:2953 +#: ../../include/functions_ui.php:1253 ../../include/class/AgentsAlerts.class.php:937 +#: ../../include/functions_reporting.php:12488 ../../include/functions_events.php:2657 +#: ../../include/functions_events.php:2857 ../../operation/agentes/group_view.php:234 +#: ../../operation/snmpconsole/snmp_view.php:1018 +msgid "Alert fired" +msgstr "Alerta disparada" + +#: ../../enterprise/meta/monitoring/group_view.php:359 +#: ../../operation/agentes/group_view.php:320 +#, php-format +msgid "" +"This %s installation are using the secondary groups feature. For this reason, an " +"agent can be counted several times." +msgstr "" +"Esta instalaciĆ³n de %s estĆ” usando la funcionalidad de grupos secundarios. Por ello, " +"los agentes se pueden contar varias veces." + +#: ../../enterprise/meta/monitoring/tactical.php:42 +#: ../../include/class/OrderInterpreter.class.php:105 +msgid "Tactical View" +msgstr "Vista tĆ”ctica" + +#: ../../enterprise/meta/monitoring/tactical.php:63 +#: ../../enterprise/meta/general/main_header.php:103 +#: ../../enterprise/meta/general/main_menu.php:194 +#: ../../godmode/users/configure_user.php:1094 ../../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:360 ../../operation/agentes/tactical.php:69 +#: ../../operation/menu.php:45 +msgid "Tactical view" +msgstr "Vista tĆ”ctica" + +#: ../../enterprise/meta/monitoring/tactical.php:234 +msgid "Report of state" +msgstr "Informe de estado" + +#: ../../enterprise/meta/monitoring/tactical.php:272 +#: ../../enterprise/meta/general/main_header.php:154 +#: ../../enterprise/meta/general/logon_ok.php:57 +#: ../../enterprise/meta/general/main_menu.php:259 +#: ../../enterprise/include/class/CommandCenter.class.php:1071 +#: ../../enterprise/tools/ipam/ipam_network.php:399 +#: ../../enterprise/tools/ipam/ipam_massive.php:103 ../../godmode/menu.php:232 +#: ../../godmode/events/events.php:128 ../../mobile/include/functions_web.php:25 +#: ../../mobile/operation/home.php:51 ../../mobile/operation/events.php:908 +#: ../../include/functions.php:4094 ../../include/ajax/events.php:2162 +#: ../../include/functions_reports.php:864 ../../include/functions_reports.php:868 +#: ../../include/functions_reports.php:872 ../../operation/menu.php:373 +#: ../../operation/events/events.php:1477 ../../operation/events/events.php:1485 +msgid "Events" +msgstr "Eventos" + +#: ../../enterprise/meta/monitoring/tactical.php:278 +msgid "Report of events" +msgstr "Informe de eventos" + +#: ../../enterprise/meta/monitoring/tactical.php:288 +msgid "Info of state in events" +msgstr "InformaciĆ³n de estado en eventos" + +#: ../../enterprise/meta/monitoring/tactical.php:308 +msgid "More events" +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:379 +msgid "View events" +msgstr "Ver eventos" + +#: ../../enterprise/meta/event/custom_events.php:44 +#: ../../godmode/netflow/nf_edit.php:217 ../../godmode/netflow/nf_edit_form.php:190 +#: ../../godmode/snmpconsole/snmp_filters.php:37 +#: ../../godmode/events/event_filter.php:225 ../../include/ajax/custom_fields.php:652 +msgid "Create filter" +msgstr "Crear filtro" + +#: ../../enterprise/meta/event/custom_events.php:50 ../../godmode/menu.php:227 +#: ../../godmode/events/events.php:68 +msgid "Event responses" +msgstr "Respuestas de evento" + +#: ../../enterprise/meta/event/custom_events.php:56 +#: ../../enterprise/meta/event/custom_events.php:61 +#: ../../enterprise/meta/event/custom_events.php:74 +#: ../../enterprise/meta/event/custom_events.php:92 +#: ../../godmode/agentes/agent_manager.php:907 +#: ../../godmode/agentes/agent_manager.php:932 ../../godmode/menu.php:93 +#: ../../godmode/massive/massive_edit_agents.php:1103 +#: ../../godmode/reporting/reporting_builder.item_editor.php:76 +#: ../../include/functions_reporting_html.php:1581 +#: ../../include/functions_events.php:4058 ../../operation/agentes/status_monitor.php:62 +#: ../../operation/agentes/status_monitor.php:85 +#: ../../operation/agentes/ver_agente.php:1544 +msgid "Custom fields" +msgstr "Campos personalizados" + +#: ../../enterprise/meta/event/custom_events.php:69 +#: ../../enterprise/meta/event/custom_events.php:88 +#: ../../enterprise/meta/general/main_header.php:291 +#: ../../enterprise/meta/general/main_menu.php:402 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2887 +#: ../../godmode/reporting/reporting_builder.list_items.php:222 +#: ../../godmode/events/events.php:90 ../../godmode/events/events.php:109 +msgid "Filters" +msgstr "Filtros" + +#: ../../enterprise/meta/event/custom_events.php:79 ../../godmode/events/events.php:100 +#: ../../include/ajax/events.php:1749 +msgid "Responses" +msgstr "Respuestas" + +#: ../../enterprise/meta/event/custom_events.php:98 +msgid "The user is not in neither group with EW profile" +msgstr "El usuario no se encuentra en ninguno de los grupos con el perfil EW." + +#: ../../enterprise/meta/event/custom_events.php:160 +#: ../../enterprise/include/ajax/log_viewer.ajax.php:75 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1250 +msgid "Fields" +msgstr "Campos" + +#: ../../enterprise/meta/event/custom_events.php:175 +#: ../../godmode/agentes/status_monitor_custom_fields.php:164 +#: ../../godmode/events/custom_events.php:129 +msgid "Fields available" +msgstr "Campos disponibles" + +#: ../../enterprise/meta/event/custom_events.php:177 +#: ../../godmode/agentes/status_monitor_custom_fields.php:186 +#: ../../godmode/events/custom_events.php:149 +msgid "Fields selected" +msgstr "Campos seleccionados" + +#: ../../enterprise/meta/event/custom_events.php:187 +#: ../../godmode/agentes/status_monitor_custom_fields.php:171 +#: ../../godmode/events/custom_events.php:136 +msgid "Add fields to select" +msgstr "AƱadir campos para seleccionar" + +#: ../../enterprise/meta/event/custom_events.php:197 +#: ../../godmode/agentes/status_monitor_custom_fields.php:180 +#: ../../godmode/events/custom_events.php:144 +msgid "Delete fields to select" +msgstr "Eliminar campos para seleccionar" + +#: ../../enterprise/meta/event/custom_events.php:207 +#: ../../godmode/events/custom_events.php:74 +msgid "Show event fields" +msgstr "Mostrar campos de eventos" + +#: ../../enterprise/meta/event/custom_events.php:248 +#: ../../godmode/agentes/status_monitor_custom_fields.php:240 +#: ../../godmode/events/custom_events.php:222 +msgid "There must be at least one custom field. Timestamp will be set by default" +msgstr "" +"Debe haber al menos un campo personalizado. La marca horaria estĆ” establecida por " +"defecto." + +#: ../../enterprise/meta/include/functions_autoprovision.php:378 +msgid "Round Robin" +msgstr "Round Robin" + +#: ../../enterprise/meta/include/functions_autoprovision.php:383 +msgid "Less loaded" +msgstr "Menos cargado" + +#: ../../enterprise/meta/include/functions_autoprovision.php:422 +msgid "" +"It uses the Round-robin planning method to distribute, \n" +" in an equitable way and in a rational order, all the new Pandora " +"software agents that reach the Metaconsole.\n" +" The distribution of the agents will be done in a circular way, " +"assigning the corresponding server to each new agent.\n" +" " +msgstr "" +"Utiliza el mĆ©todo de planificaciĆ³n Round-robin para distribuir, \n" +" de forma equitativa y en un orden racional, todos los nuevos agentes " +"de software de Pandora que llegan a la Metaconsola.\n" +" La distribuciĆ³n de los agentes se realizarĆ” de forma circular, " +"asignando el servidor correspondiente a cada nuevo agente.\n" +" " + +#: ../../enterprise/meta/include/functions_autoprovision.php:430 +msgid "The new agents will be dynamically assigned to those servers with less load." +msgstr "" +"Los nuevos agentes se asignarĆ”n dinĆ”micamente a aquellos servidores con menos carga." + +#: ../../enterprise/meta/include/functions_autoprovision.php:435 +msgid "" +"In the customized classification, we will be able to define our own classification " +"rules, \n" +" based on certain parameters retrieved from the information reported " +"by the agent (name of the agent and its IP address).\n" +" " +msgstr "" +"En la clasificaciĆ³n personalizada, podremos definir nuestras propias reglas de " +"clasificaciĆ³n, \n" +" basado en ciertos parĆ”metros recuperados de la informaciĆ³n reportada " +"por el agente (nombre del agente y su direcciĆ³n IP).\n" +" " + +#: ../../enterprise/meta/include/functions_autoprovision.php:473 +#: ../../enterprise/meta/include/functions_autoprovision.php:640 +#: ../../enterprise/godmode/reporting/reporting_builder.template_list_item.php:190 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2944 +#: ../../enterprise/include/functions_ipam.php:1643 +#: ../../godmode/reporting/reporting_builder.list_items.php:440 +#: ../../godmode/reporting/reporting_builder.list_items.php:740 +#: ../../godmode/reporting/graph_builder.graph_editor.php:217 +#: ../../godmode/reporting/graph_builder.graph_editor.php:318 +msgid "Sort" +msgstr "Ordenar" + +#: ../../enterprise/meta/include/functions_autoprovision.php:529 +msgid "" +"There is no custom entries defined. Click on \"Create custom entry\" to add the first." +msgstr "" +"Ninguna entrada personalizada definida. Haz clic en \"Crear entrada personalizada\" " +"para aƱadir la primera." + +#: ../../enterprise/meta/include/functions_autoprovision.php:534 +msgid "Create custom entry" +msgstr "Crear entrada personalizada" + +#: ../../enterprise/meta/include/functions_autoprovision.php:561 +msgid "Provisioning configuration" +msgstr "ConfiguraciĆ³n de aprovisionamiento" + +#: ../../enterprise/meta/include/functions_autoprovision.php:572 +msgid "Configuration:" +msgstr "ConfiguraciĆ³n:" + +#: ../../enterprise/meta/include/functions_autoprovision.php:610 +msgid "" +"There is no rules configured for this custom entry. Click on Add button to create the " +"first." +msgstr "" +"No hay reglas configuradas en esta entrada personalizada. Haz clic en el botĆ³n AƱadir " +"para crear la primera." + +#: ../../enterprise/meta/include/functions_autoprovision.php:642 +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:495 +#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:272 +#: ../../extensions/quick_shell.php:190 +msgid "Method" +msgstr "MĆ©todo" + +#: ../../enterprise/meta/include/functions_autoprovision.php:723 +msgid "There was an error when editing the rule." +msgstr "Error al editar la regla" + +#: ../../enterprise/meta/include/functions_autoprovision.php:737 +msgid "Operation:" +msgstr "OperaciĆ³n:" + +#: ../../enterprise/meta/include/functions_autoprovision.php:751 +msgid "Method:" +msgstr "MĆ©todo:" + +#: ../../enterprise/meta/include/functions_autoprovision.php:765 +#: ../../enterprise/include/functions_visual_map.php:215 +#: ../../enterprise/include/functions_visual_map.php:280 +msgid "Value:" +msgstr "Valor:" + +#: ../../enterprise/meta/include/functions_autoprovision.php:816 +msgid "Move up" +msgstr "Subir" + +#: ../../enterprise/meta/include/functions_autoprovision.php:824 +msgid "Move down" +msgstr "Bajar" + +#: ../../enterprise/meta/include/functions_groups_meta.php:114 +#, php-format +msgid "Error Duplicate name (%s) " +msgstr "Error al duplicar nombre (%s) " + +#: ../../enterprise/meta/include/functions_groups_meta.php:132 +#, php-format +msgid "(Error Duplicate ID (%d) ) " +msgstr "(Error ID Duplicado (%d) ) " + +#: ../../enterprise/meta/include/functions_groups_meta.php:153 +msgid "Error Duplicate name" +msgstr "Error al duplicar nombre" + +#: ../../enterprise/meta/include/functions_users_meta.php:182 +#: ../../enterprise/meta/include/functions_users_meta.php:204 +#: ../../enterprise/meta/general/main_header.php:321 +#: ../../enterprise/meta/general/main_header.php:401 +#: ../../enterprise/meta/general/main_header.php:408 +#: ../../enterprise/meta/general/main_menu.php:462 +#: ../../enterprise/meta/general/main_menu.php:522 +#: ../../enterprise/meta/general/main_menu.php:529 +#: ../../godmode/users/profile_list.php:63 ../../godmode/users/profile_list.php:84 +#: ../../godmode/users/configure_profile.php:55 +#: ../../godmode/users/configure_profile.php:76 ../../godmode/users/user_list.php:214 +#: ../../godmode/users/user_list.php:239 ../../godmode/users/user_list.php:250 +#: ../../godmode/users/configure_user.php:223 +#: ../../operation/users/user_edit_header.php:91 +msgid "User management" +msgstr "GestiĆ³n de usuarios" + +#: ../../enterprise/meta/include/functions_users_meta.php:186 +#: ../../enterprise/meta/include/functions_users_meta.php:212 +#: ../../godmode/users/profile_list.php:74 ../../godmode/users/configure_profile.php:66 +#: ../../godmode/users/user_list.php:225 ../../godmode/users/configure_user.php:234 +#: ../../godmode/menu.php:146 +msgid "Profile management" +msgstr "Gestionar perfiles" + +#: ../../enterprise/meta/include/functions_users_meta.php:193 +#: ../../enterprise/meta/include/functions_users_meta.php:208 +#: ../../enterprise/meta/general/header.php:204 +#: ../../enterprise/meta/general/header.php:214 +#: ../../enterprise/meta/general/main_header.php:624 +#: ../../enterprise/meta/general/main_header.php:630 ../../operation/menu.php:481 +#: ../../general/header.php:407 ../../general/header.php:417 +msgid "Edit my user" +msgstr "Editar mi usuario" + +#: ../../enterprise/meta/include/functions_users_meta.php:200 +msgid "User synchronization" +msgstr "SincronizaciĆ³n de usuarios" + +#: ../../enterprise/meta/include/functions_users_meta.php:216 +msgid "Group synchronization" +msgstr "SincronizaciĆ³n de grupos" + +#: ../../enterprise/meta/include/functions_wizard_meta.php:186 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1801 +#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:255 +#: ../../enterprise/include/functions_reporting_csv.php:718 +#: ../../godmode/agentes/agent_manager.php:292 +#: ../../godmode/reporting/reporting_builder.item_editor.php:69 +#: ../../include/functions_reporting_html.php:1553 +msgid "Alias" +msgstr "Alias" + +#: ../../enterprise/meta/include/functions_wizard_meta.php:207 +#: ../../enterprise/meta/include/functions_wizard_meta.php:211 +#: ../../enterprise/meta/include/functions_wizard_meta.php:479 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1465 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1813 +#: ../../enterprise/include/functions_reporting_csv.php:718 +#: ../../godmode/agentes/agent_manager.php:301 +#: ../../godmode/servers/modificar_server.php:62 +#: ../../include/functions_reporting_html.php:1557 +#: ../../include/functions_reporting_html.php:3920 +#: ../../include/functions_reporting_html.php:4014 +#: ../../include/functions_treeview.php:640 ../../include/functions_events.php:4034 +#: ../../operation/gis_maps/ajax.php:290 +msgid "IP Address" +msgstr "DirecciĆ³n IP" + +#: ../../enterprise/meta/include/functions_wizard_meta.php:236 +#: ../../enterprise/meta/include/functions_wizard_meta.php:682 +#: ../../enterprise/godmode/modules/configure_local_component.php:503 +#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:183 +#: ../../enterprise/godmode/setup/setup_log_collector.php:49 +#: ../../enterprise/include/functions_metaconsole.php:1311 +#: ../../enterprise/include/functions_metaconsole.php:1344 +#: ../../enterprise/include/functions_metaconsole.php:1377 +#: ../../enterprise/include/functions_metaconsole.php:1410 +#: ../../enterprise/include/functions_metaconsole.php:1443 +#: ../../enterprise/include/functions_metaconsole.php:1474 +#: ../../enterprise/include/functions_metaconsole.php:1507 +#: ../../godmode/agentes/module_manager_editor_web.php:172 +msgid "Check" +msgstr "Comprobar" + +#: ../../enterprise/meta/include/functions_wizard_meta.php:245 +#: ../../enterprise/meta/include/functions_wizard_meta.php:530 +#: ../../enterprise/meta/include/functions_wizard_meta.php:602 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1150 +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:48 +#: ../../enterprise/include/functions_reporting_csv.php:992 +#: ../../enterprise/include/class/Aws.cloud.php:345 +#: ../../godmode/alerts/configure_alert_template.php:229 +#: ../../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:1699 ../../include/functions_reports.php:771 +#: ../../include/functions_reporting.php:9585 +msgid "General" +msgstr "General" + +#: ../../enterprise/meta/include/functions_wizard_meta.php:306 +#: ../../godmode/modules/manage_network_templates_form.php:341 +#: ../../include/class/ModuleTemplates.class.php:804 +msgid "Components" +msgstr "Componentes" + +#: ../../enterprise/meta/include/functions_wizard_meta.php:308 +#: ../../enterprise/include/functions_reporting_csv.php:2334 +msgid "Agent modules" +msgstr "MĆ³dulos de agentes" + +#: ../../enterprise/meta/include/functions_wizard_meta.php:361 +msgid "Add selected modules to agent" +msgstr "AƱadir los mĆ³dulos seleccionados al agente" + +#: ../../enterprise/meta/include/functions_wizard_meta.php:399 +msgid "Undo changes" +msgstr "Deshacer los cambios" + +#: ../../enterprise/meta/include/functions_wizard_meta.php:492 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:753 +#: ../../godmode/agentes/module_manager_editor_wmi.php:59 +#: ../../godmode/agentes/module_manager_editor_network.php:94 +#: ../../godmode/massive/massive_edit_modules.php:817 +msgid "Auto" +msgstr "AutomĆ”tico" + +#: ../../enterprise/meta/include/functions_wizard_meta.php:493 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:754 +#: ../../godmode/agentes/module_manager_editor_wmi.php:60 +#: ../../godmode/agentes/module_manager_editor_network.php:95 +#: ../../godmode/massive/massive_edit_modules.php:818 +msgid "Force primary key" +msgstr "Forzar clave primaria" + +#: ../../enterprise/meta/include/functions_wizard_meta.php:516 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1470 +#: ../../enterprise/meta/include/functions_events_meta.php:70 +#: ../../enterprise/meta/include/functions_meta.php:1165 +#: ../../enterprise/meta/include/functions_meta.php:1219 +#: ../../enterprise/meta/include/functions_meta.php:1273 +#: ../../enterprise/meta/general/login_page.php:125 +#: ../../enterprise/meta/general/login_page.php:167 +#: ../../enterprise/extensions/disabled/check_acls.php:47 +#: ../../enterprise/extensions/disabled/check_acls.php:132 +#: ../../enterprise/godmode/setup/setup_auth.php:1039 +#: ../../enterprise/godmode/setup/setup_auth.php:1071 +#: ../../enterprise/godmode/servers/manage_export_form.php:113 +#: ../../enterprise/include/functions_tasklist.php:152 +#: ../../enterprise/include/class/DB2.app.php:501 +#: ../../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 +#: ../../godmode/update_manager/update_manager.history.php:43 +#: ../../godmode/setup/setup_ehorus.php:80 ../../godmode/setup/setup_integria.php:283 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3444 +#: ../../godmode/events/custom_events.php:99 ../../mobile/include/user.class.php:396 +#: ../../mobile/operation/tactical.php:349 +#: ../../include/functions_reporting_html.php:5769 ../../include/functions.php:3053 +#: ../../include/functions_cron.php:463 ../../include/functions_config.php:682 +#: ../../include/functions_config.php:702 +#: ../../include/class/CredentialStore.class.php:805 +#: ../../include/class/CredentialStore.class.php:1134 +#: ../../include/class/AuditLog.class.php:108 ../../include/class/AuditLog.class.php:211 +#: ../../include/functions_events.php:202 ../../include/functions_events.php:253 +#: ../../operation/search_users.php:71 ../../operation/users/user_edit.php:696 +#: ../../operation/users/user_edit.php:742 +#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:118 +#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:249 +#: ../../general/logon_ok.php:240 ../../general/login_page.php:230 +#: ../../general/login_page.php:272 +msgid "User" +msgstr "Usuario" + +#: ../../enterprise/meta/include/functions_wizard_meta.php:520 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1474 +#: ../../enterprise/meta/include/functions_meta.php:1177 +#: ../../enterprise/meta/include/functions_meta.php:1231 +#: ../../enterprise/meta/include/functions_meta.php:1285 +#: ../../enterprise/meta/general/login_page.php:139 +#: ../../enterprise/meta/general/login_page.php:181 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:851 +#: ../../enterprise/godmode/setup/setup_module_library.php:52 +#: ../../enterprise/godmode/setup/setup_auth.php:1045 +#: ../../enterprise/godmode/setup/setup_auth.php:1077 +#: ../../enterprise/godmode/servers/credential_boxes_satellite.php:250 +#: ../../enterprise/godmode/servers/manage_credential_boxes.php:59 +#: ../../enterprise/godmode/servers/manage_export_form.php:117 +#: ../../enterprise/include/ajax/servers.ajax.php:101 +#: ../../enterprise/include/ajax/servers.ajax.php:159 +#: ../../enterprise/include/ajax/servers.ajax.php:285 +#: ../../enterprise/include/functions_ui.php:104 +#: ../../enterprise/include/functions_setup.php:55 +#: ../../enterprise/include/functions_setup.php:113 +#: ../../enterprise/include/class/VMware.app.php:732 +#: ../../enterprise/include/class/DB2.app.php:513 +#: ../../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 +#: ../../godmode/modules/manage_network_components_form_wmi.php:49 +#: ../../godmode/users/configure_user.php:931 +#: ../../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:686 +#: ../../include/functions_config.php:706 +#: ../../include/class/CredentialStore.class.php:958 +#: ../../include/class/CredentialStore.class.php:995 +#: ../../include/class/CredentialStore.class.php:1135 +#: ../../include/class/CredentialStore.class.php:1158 +#: ../../include/class/AgentWizard.class.php:680 ../../operation/users/user_edit.php:702 +#: ../../operation/users/user_edit.php:748 ../../general/login_page.php:244 +#: ../../general/login_page.php:285 +msgid "Password" +msgstr "ContraseƱa" + +#: ../../enterprise/meta/include/functions_wizard_meta.php:590 +msgid "Latency" +msgstr "Latencia" + +#: ../../enterprise/meta/include/functions_wizard_meta.php:591 +msgid "Response" +msgstr "Respuesta" + +#: ../../enterprise/meta/include/functions_wizard_meta.php:593 +#: ../../godmode/agentes/module_manager_editor_web.php:199 +msgid "Check type" +msgstr "Comprueba el tipo" + +#: ../../enterprise/meta/include/functions_wizard_meta.php:610 +#: ../../enterprise/meta/include/functions_wizard_meta.php:667 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:1066 +#: ../../enterprise/include/functions_enterprise.php:460 +#: ../../godmode/agentes/module_manager_editor_web.php:93 +#: ../../godmode/massive/massive_edit_modules.php:1141 +msgid "Web checks" +msgstr "Comprobaciones web" + +#: ../../enterprise/meta/include/functions_wizard_meta.php:646 +msgid "String to check" +msgstr "Cadena para comprobar" + +#: ../../enterprise/meta/include/functions_wizard_meta.php:652 +msgid "Add check" +msgstr "AƱadir comprobaciĆ³n" + +#: ../../enterprise/meta/include/functions_wizard_meta.php:661 +msgid "Delete check" +msgstr "Eliminar comprobaciĆ³n" + +#: ../../enterprise/meta/include/functions_wizard_meta.php:674 +#: ../../enterprise/godmode/modules/configure_local_component.php:494 +#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:180 +#: ../../godmode/agentes/module_manager_editor_web.php:164 +msgid "Load basic" +msgstr "cargar bĆ”sicos" + +#: ../../enterprise/meta/include/functions_wizard_meta.php:680 +#: ../../godmode/agentes/module_manager_editor_web.php:170 +msgid "Load a basic structure on Web Checks" +msgstr "Cargar una estructura bĆ”sica en las comprobaciones web" + +#: ../../enterprise/meta/include/functions_wizard_meta.php:688 +#: ../../godmode/agentes/module_manager_editor_web.php:178 +msgid "Check the correct structure of the WebCheck" +msgstr "Cargar la estructura correcta de las comprobaciones web" + +#: ../../enterprise/meta/include/functions_wizard_meta.php:695 +#: ../../godmode/agentes/module_manager_editor_web.php:253 +msgid "First line must be \"task_begin\"" +msgstr "La primera lĆ­nea tiene que ser \"task_begin\"." + +#: ../../enterprise/meta/include/functions_wizard_meta.php:696 +#: ../../godmode/agentes/module_manager_editor_web.php:254 +msgid "Webchecks configuration is empty" +msgstr "La configuraciĆ³n de comprobaciones web estĆ” vacĆ­a." + +#: ../../enterprise/meta/include/functions_wizard_meta.php:697 +#: ../../enterprise/meta/include/functions_wizard_meta.php:698 +#: ../../godmode/agentes/module_manager_editor_web.php:255 +#: ../../godmode/agentes/module_manager_editor_web.php:256 +msgid "Last line must be \"task_end\"" +msgstr "La Ćŗltima lĆ­nea tiene que ser \"task_end\"." + +#: ../../enterprise/meta/include/functions_wizard_meta.php:699 +#: ../../enterprise/godmode/modules/configure_local_component.php:513 +#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:203 +#: ../../godmode/agentes/module_manager_editor_web.php:257 +msgid "There is a line with a unknown token 'token_fail'." +msgstr "Hay una lĆ­nea con un token desconocido \"token_fail\"." + +#: ../../enterprise/meta/include/functions_wizard_meta.php:700 +#: ../../godmode/agentes/module_manager_editor_web.php:259 +msgid "Web checks are built correctly" +msgstr "Las comprobaciones web se han efectuado correctamente." + +#: ../../enterprise/meta/include/functions_wizard_meta.php:918 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1035 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1202 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1520 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1605 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1742 #: ../../enterprise/meta/agentsearch.php:137 -#: ../../enterprise/godmode/servers/manage_export_form.php:95 -#: ../../enterprise/godmode/servers/manage_export.php:139 #: ../../enterprise/godmode/modules/configure_local_component.php:289 -#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:690 #: ../../enterprise/godmode/agentes/inventory_manager.php:223 #: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:421 #: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:463 #: ../../enterprise/godmode/policies/policy_inventory_modules.php:304 -#: ../../mobile/operation/modules.php:657 ../../mobile/operation/modules.php:659 -#: ../../mobile/operation/modules.php:851 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:690 +#: ../../enterprise/godmode/servers/manage_export.php:139 +#: ../../enterprise/godmode/servers/manage_export_form.php:95 +#: ../../enterprise/include/functions_ui.php:84 +#: ../../enterprise/include/class/Azure.cloud.php:847 +#: ../../enterprise/include/class/VMware.app.php:667 +#: ../../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: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 +#: ../../enterprise/include/class/MicrosoftSQLServer.app.php:537 +#: ../../enterprise/include/functions_ipam.php:1354 +#: ../../enterprise/operation/agentes/tag_view.php:603 +#: ../../enterprise/operation/agentes/tag_view.php:681 +#: ../../enterprise/tools/ipam/ipam_list.php:617 #: ../../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/agent_manager.php:369 +#: ../../godmode/agentes/module_manager_editor_common.php:617 +#: ../../godmode/agentes/module_manager_editor_common.php:642 +#: ../../godmode/agentes/module_manager.php:856 #: ../../godmode/massive/massive_edit_agents.php:705 #: ../../godmode/massive/massive_edit_modules.php:754 #: ../../godmode/wizards/HostDevices.class.php:798 #: ../../godmode/wizards/DiscoveryTaskList.class.php:594 -#: ../../godmode/agentes/module_manager.php:856 -#: ../../godmode/agentes/module_manager_editor_common.php:617 -#: ../../godmode/agentes/module_manager_editor_common.php:642 -#: ../../godmode/agentes/status_monitor_custom_fields.php:93 -#: ../../godmode/agentes/status_monitor_custom_fields.php:147 -#: ../../godmode/agentes/agent_manager.php:369 +#: ../../mobile/operation/modules.php:657 ../../mobile/operation/modules.php:659 +#: ../../mobile/operation/modules.php:851 +#: ../../include/functions_reporting_html.php:3487 ../../include/ajax/events.php:2315 +#: ../../include/functions_treeview.php:84 ../../include/functions_treeview.php:646 +#: ../../include/class/CustomNetScan.class.php:520 +#: ../../include/lib/Dashboard/Widgets/sla_percent.php:331 +#: ../../include/lib/Dashboard/Widgets/BlockHistogram.php:296 +#: ../../include/lib/Dashboard/Widgets/graph_module_histogram.php:321 +#: ../../include/lib/Dashboard/Widgets/custom_graph.php:350 +#: ../../include/lib/Dashboard/Widgets/single_graph.php:305 +#: ../../include/lib/Dashboard/Widgets/top_n.php:236 +#: ../../operation/search_agents.php:45 ../../operation/search_agents.php:51 +#: ../../operation/agentes/estado_agente.php:751 +#: ../../operation/agentes/status_monitor.php:1328 +#: ../../operation/agentes/estado_generalagente.php:357 +#: ../../operation/netflow/nf_live_view.php:270 ../../operation/search_modules.php:35 +#: ../../operation/events/sound_events.php:219 msgid "Interval" msgstr "Intervalo" -#: ../../operation/search_modules.php:37 -#: ../../operation/agentes/status_monitor.php:1346 -#: ../../include/functions_visual_map_editor.php:58 -#: ../../include/ajax/module.php:983 -#: ../../include/class/NetworkMap.class.php:2908 -#: ../../include/lib/Dashboard/Widgets/custom_graph.php:303 -#: ../../include/functions_events.php:4584 -#: ../../enterprise/operation/services/services.service.php:130 -#: ../../enterprise/operation/services/services.list.php:509 -#: ../../enterprise/operation/agentes/tag_view.php:682 -#: ../../extensions/realtime_graphs.php:161 -#: ../../godmode/agentes/status_monitor_custom_fields.php:105 -#: ../../godmode/agentes/status_monitor_custom_fields.php:150 -msgid "Graph" -msgstr "GrĆ”fico" +#: ../../enterprise/meta/include/functions_wizard_meta.php:924 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1041 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1222 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1525 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1610 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1747 +#: ../../enterprise/godmode/modules/configure_local_component.php:468 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:868 +#: ../../enterprise/include/functions_reporting_csv.php:2741 +#: ../../godmode/modules/manage_network_components_form_common.php:312 +#: ../../godmode/agentes/module_manager_editor_common.php:582 +#: ../../godmode/massive/massive_edit_modules.php:925 +#: ../../include/functions_reporting_html.php:3488 +msgid "Unit" +msgstr "Unidad" -#: ../../operation/search_modules.php:38 -#: ../../operation/events/events.build_table.php:330 -#: ../../operation/agentes/status_monitor.php:1356 -#: ../../operation/agentes/exportdata.csv.php:74 -#: ../../operation/agentes/exportdata.php:83 -#: ../../operation/agentes/exportdata.excel.php:74 -#: ../../include/ajax/module.php:982 ../../include/ajax/custom_fields.php:412 -#: ../../include/functions_events.php:210 ../../include/functions_events.php:293 -#: ../../include/functions_events.php:6777 -#: ../../include/functions_netflow.php:301 ../../include/functions_graph.php:3769 -#: ../../include/functions_reporting.php:4017 -#: ../../include/functions_reporting.php:4058 -#: ../../include/functions_reporting.php:4809 -#: ../../include/functions_reporting_html.php:2108 -#: ../../include/functions_reporting_html.php:2584 -#: ../../include/functions_reporting_html.php:2588 -#: ../../include/functions_reporting_html.php:2589 -#: ../../include/functions_reporting_html.php:2593 -#: ../../include/functions_reporting_html.php:2598 -#: ../../include/functions_reporting_html.php:2603 -#: ../../include/functions_reporting_html.php:2607 -#: ../../include/functions_reporting_html.php:2612 -#: ../../include/functions_reporting_html.php:2619 -#: ../../include/functions_reporting_html.php:2668 -#: ../../include/functions_reporting_html.php:2741 -#: ../../enterprise/operation/agentes/tag_view.php:684 -#: ../../enterprise/operation/agentes/policy_view.php:398 +#: ../../enterprise/meta/include/functions_wizard_meta.php:956 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1047 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1259 +msgid "Various" +msgstr "Varios" + +#: ../../enterprise/meta/include/functions_wizard_meta.php:964 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1481 +#: ../../include/class/ExternalTools.class.php:570 +msgid "SNMP Community" +msgstr "Comunidad SNMP" + +#: ../../enterprise/meta/include/functions_wizard_meta.php:971 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1055 +#: ../../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:1470 +msgid "Credentials" +msgstr "Credenciales" + +#: ../../enterprise/meta/include/functions_wizard_meta.php:978 +#: ../../enterprise/meta/include/functions_wizard_meta.php:987 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1063 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1072 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1266 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1275 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1503 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1512 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1588 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1597 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1708 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1717 +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:281 +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:393 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:766 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1813 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2452 +#: ../../enterprise/include/functions_reporting_csv.php:1030 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2250 +#: ../../godmode/alerts/alert_view.php:266 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1400 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2510 +#: ../../include/functions_reporting_html.php:4786 ../../include/functions_ui.php:2610 +#: ../../include/functions_reporting.php:1526 +msgid "Min" +msgstr "MĆ­n." + +#: ../../enterprise/meta/include/functions_wizard_meta.php:980 +#: ../../enterprise/meta/include/functions_wizard_meta.php:989 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1065 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1074 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1268 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1277 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1505 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1514 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1590 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1599 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1710 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1719 +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:293 +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:386 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:774 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1811 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2445 +#: ../../enterprise/include/functions_reporting_csv.php:1030 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2250 +#: ../../godmode/alerts/alert_view.php:266 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1402 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2503 +#: ../../include/functions_reporting_html.php:4785 ../../include/functions_ui.php:2610 +#: ../../include/functions_reporting.php:1522 +msgid "Max" +msgstr "MĆ”x." + +#: ../../enterprise/meta/include/functions_wizard_meta.php:982 +#: ../../enterprise/meta/include/functions_wizard_meta.php:991 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1067 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1076 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1270 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1279 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1507 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1516 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1592 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1601 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1712 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1721 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1737 +#: ../../enterprise/godmode/modules/configure_local_component.php:338 +#: ../../enterprise/godmode/modules/configure_local_component.php:381 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:547 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:638 +#: ../../godmode/modules/manage_network_components_form_common.php:192 +#: ../../godmode/modules/manage_network_components_form_common.php:233 +#: ../../godmode/modules/manage_network_components_form_wizard.php:396 +#: ../../godmode/modules/manage_network_components_form_wizard.php:438 +#: ../../godmode/agentes/module_manager_editor_common.php:459 +#: ../../godmode/agentes/module_manager_editor_common.php:520 +#: ../../godmode/massive/massive_edit_modules.php:610 +#: ../../godmode/massive/massive_edit_modules.php:701 +msgid "Inverse interval" +msgstr "Intervalo inverso" + +#: ../../enterprise/meta/include/functions_wizard_meta.php:996 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1081 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1314 +#: ../../include/ajax/module.php:981 +msgid "Thresholds" +msgstr "Umbrales" + +#: ../../enterprise/meta/include/functions_wizard_meta.php:1087 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1619 +#: ../../godmode/agentes/module_manager_editor_web.php:224 +msgid "Proxy URL" +msgstr "Proxy URL" + +#: ../../enterprise/meta/include/functions_wizard_meta.php:1092 +msgid "Web configuration" +msgstr "ConfiguraciĆ³n web" + +#: ../../enterprise/meta/include/functions_wizard_meta.php:1286 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1299 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1728 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1735 +msgid "Str: " +msgstr "Cadena: " + +#: ../../enterprise/meta/include/functions_wizard_meta.php:1295 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1308 +msgid " Inverse interval " +msgstr " Intervalo inverso " + +#: ../../enterprise/meta/include/functions_wizard_meta.php:1368 +msgid "Alerts in module" +msgstr "Alertas en el mĆ³dulo" + +#: ../../enterprise/meta/include/functions_wizard_meta.php:1376 +#: ../../include/functions_reporting_html.php:5131 +msgid "Alert description" +msgstr "DescripciĆ³n de la alerta" + +#: ../../enterprise/meta/include/functions_wizard_meta.php:1615 +msgid "Checks" +msgstr "Comprobaciones" + +#: ../../enterprise/meta/include/functions_wizard_meta.php:1826 +msgid "Deleted modules" +msgstr "MĆ³dulos eliminados" + +#: ../../enterprise/meta/include/functions_wizard_meta.php:2014 +#: ../../enterprise/meta/include/functions_wizard_meta.php:2114 +#: ../../enterprise/meta/include/functions_wizard_meta.php:2669 +#: ../../enterprise/meta/include/functions_wizard_meta.php:2788 +#: ../../enterprise/meta/include/functions_wizard_meta.php:2879 +#: ../../enterprise/meta/include/functions_wizard_meta.php:3074 +msgid "Another module already exists with the same name" +msgstr "Ya existe otro mĆ³dulo con el mismo nombre." + +#: ../../enterprise/meta/include/functions_wizard_meta.php:2026 +#: ../../enterprise/meta/include/functions_wizard_meta.php:2121 +#: ../../enterprise/meta/include/functions_wizard_meta.php:2681 +#, php-format +msgid "Error adding module %s" +msgstr "Error al aƱadir el mĆ³dulo %s" + +#: ../../enterprise/meta/include/functions_wizard_meta.php:2035 +#: ../../enterprise/meta/include/functions_wizard_meta.php:2130 +msgid "There was an error creating the alerts, the operation has been cancelled" +msgstr "Error al crear las alertas; operaciĆ³n cancelada" + +#: ../../enterprise/meta/include/functions_wizard_meta.php:2064 +#: ../../enterprise/meta/include/functions_wizard_meta.php:2159 +#: ../../enterprise/godmode/policies/policy_modules.php:919 +msgid "Successfully added module." +msgstr "MĆ³dulo aƱadido correctamente" + +#: ../../enterprise/meta/include/functions_wizard_meta.php:2219 +#, php-format +msgid "Could not create agent %s" +msgstr "No se pudieron crear agentes %s" + +#: ../../enterprise/meta/include/functions_wizard_meta.php:2232 +msgid "Agent successfully added" +msgstr "Agentes aƱadidos correctamente" + +#: ../../enterprise/meta/include/functions_wizard_meta.php:2253 +#: ../../enterprise/meta/include/functions_wizard_meta.php:2371 +#, php-format +msgid "%s Modules created" +msgstr "%s mĆ³dulos creados" + +#: ../../enterprise/meta/include/functions_wizard_meta.php:2329 +#, php-format +msgid "Could not update agent %s" +msgstr "No se pudo actualizar el agente %s" + +#: ../../enterprise/meta/include/functions_wizard_meta.php:2338 +#: ../../enterprise/include/class/AgentRepository.class.php:522 +msgid "Agent successfully updated" +msgstr "Agente actualizado correctamente" + +#: ../../enterprise/meta/include/functions_wizard_meta.php:2377 +#, php-format +msgid "%s Modules deleted" +msgstr "%s mĆ³dulos eliminados" + +#: ../../enterprise/meta/include/functions_wizard_meta.php:2693 +msgid "There was an error creating the alerts, the operation has been cancelled ." +msgstr "Error al crear las alertas; operaciĆ³n cancelada" + +#: ../../enterprise/meta/include/functions_wizard_meta.php:2723 +msgid "Module successfully added." +msgstr "MĆ³dulo aƱadido correctamente" + +#: ../../enterprise/meta/include/functions_wizard_meta.php:2795 +#: ../../enterprise/meta/include/functions_wizard_meta.php:2886 +#: ../../enterprise/meta/include/functions_wizard_meta.php:3081 +#, php-format +msgid "Error updating module %s" +msgstr "Error al actualizar el mĆ³dulo %s" + +#: ../../enterprise/meta/include/functions_wizard_meta.php:2817 +#: ../../enterprise/meta/include/functions_wizard_meta.php:2908 +#: ../../enterprise/meta/include/functions_wizard_meta.php:3103 +msgid "There was an error updating the alerts, the operation has been cancelled" +msgstr "Error al actualizar las alertas, operaciĆ³n cancelada" + +#: ../../enterprise/meta/include/functions_wizard_meta.php:2838 +#: ../../enterprise/meta/include/functions_wizard_meta.php:2929 +#: ../../enterprise/meta/include/functions_wizard_meta.php:3124 +msgid "Successfully updated module." +msgstr "MĆ³dulo actualizado correctamente" + +#: ../../enterprise/meta/include/functions_wizard_meta.php:3504 +msgid "Manage agent modules" +msgstr "Gestionar mĆ³dulos de agentes" + +#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:92 +#: ../../godmode/alerts/alert_templates.php:61 +msgid "Everyday" +msgstr "Cada dĆ­a" + +#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:104 +#: ../../enterprise/include/ajax/ipam.ajax.php:521 +#: ../../enterprise/tools/ipam/ipam_editor.php:327 +#: ../../godmode/alerts/alert_templates.php:73 ../../include/functions_config.php:1562 +msgid "Days" +msgstr "DĆ­as" + +#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:104 +#: ../../godmode/alerts/alert_templates.php:73 +msgid "Every" +msgstr "Cada" + +#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:115 +#: ../../godmode/alerts/alert_templates.php:84 +msgid "and" +msgstr "y" + +#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:122 +#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:313 +#: ../../enterprise/godmode/alerts/alert_inventory_builder.php:230 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2245 +#: ../../godmode/snmpconsole/snmp_alert.php:1083 +#: ../../godmode/alerts/alert_templates.php:91 +#: ../../godmode/alerts/configure_alert_template.php:676 +#: ../../godmode/alerts/alert_view.php:262 +msgid "Time threshold" +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:467 +#: ../../enterprise/include/functions_reporting_pdf.php:1794 +#: ../../enterprise/include/functions_reporting_pdf.php:1867 +#: ../../enterprise/include/functions_reporting_pdf.php:1982 +#: ../../enterprise/include/functions_reporting_csv.php:715 +#: ../../enterprise/include/functions_reporting_csv.php:951 +#: ../../enterprise/include/functions_reporting_csv.php:1325 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2375 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2379 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3379 +#: ../../godmode/agentes/planned_downtime.list.php:293 +#: ../../godmode/alerts/alert_list.list.php:659 +#: ../../godmode/alerts/alert_list.list.php:662 +#: ../../godmode/alerts/alert_templates.php:96 +#: ../../include/functions_reporting_html.php:147 +#: ../../include/functions_reporting_html.php:2990 +#: ../../include/functions_reporting_html.php:3795 ../../include/rest-api/index.php:359 +#: ../../include/rest-api/models/VisualConsole/Items/ColorCloud.php:449 +#: ../../include/rest-api/models/VisualConsole/Items/ColorCloud.php:510 +#: ../../operation/agentes/gis_view.php:220 +#: ../../operation/reporting/reporting_viewer.php:304 +msgid "From" +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:467 +#: ../../enterprise/godmode/policies/policy_external_alerts.php:602 +#: ../../enterprise/include/functions_reporting_pdf.php:1800 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1017 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2375 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2379 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2536 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3381 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3510 +#: ../../godmode/massive/massive_add_action_alerts.php:254 +#: ../../godmode/alerts/alert_list.list.php:659 +#: ../../godmode/alerts/alert_list.list.php:779 +#: ../../godmode/alerts/alert_templates.php:98 +#: ../../godmode/alerts/alert_list.builder.php:129 +#: ../../include/functions_reporting_html.php:148 +#: ../../include/functions_reporting_html.php:2995 +#: ../../include/ajax/alert_list.ajax.php:527 +#: ../../include/class/AgentsAlerts.class.php:316 +#: ../../include/functions_reporting.php:14211 +#: ../../operation/reporting/reporting_viewer.php:308 +msgid "to" +msgstr "a" + +#: ../../enterprise/meta/include/ajax/wizard.ajax.php:56 +msgid "Agent succesfully deleted" +msgstr "Agente eliminado correctamente" + +#: ../../enterprise/meta/include/ajax/wizard.ajax.php:58 +msgid "Could not delete agent" +msgstr "No se pudo borrar el agente" + +#: ../../enterprise/meta/include/functions_events_meta.php:58 +#: ../../include/functions_events.php:199 +msgid "Event id" +msgstr "IdentificaciĆ³n del evento" + +#: ../../enterprise/meta/include/functions_events_meta.php:62 +#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:419 +#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:479 +#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:526 +#: ../../include/functions_reporting_html.php:1310 +#: ../../include/functions_reporting_html.php:1318 +#: ../../include/functions_reporting_html.php:5063 +#: ../../include/functions_events.php:200 ../../include/functions_events.php:2363 +#: ../../include/functions_events.php:4521 +msgid "Event name" +msgstr "Nombre del evento" + +#: ../../enterprise/meta/include/functions_events_meta.php:66 +#: ../../enterprise/include/functions_reporting_csv.php:871 +#: ../../enterprise/include/functions_ipam.php:2039 +#: ../../godmode/agentes/modificar_agente.php:647 +#: ../../godmode/agentes/agent_manager.php:213 ../../mobile/operation/modules.php:597 +#: ../../mobile/operation/modules.php:849 +#: ../../include/functions_reporting_html.php:3431 +#: ../../include/functions_treeview.php:617 ../../include/functions_events.php:201 +#: ../../include/functions_events.php:247 ../../include/functions_events.php:2368 +#: ../../operation/events/events.php:2436 +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:802 -#: ../../enterprise/include/functions_reporting_csv.php:832 -#: ../../enterprise/include/functions_reporting_csv.php:879 -#: ../../enterprise/include/functions_reporting_csv.php:915 -#: ../../enterprise/include/functions_reporting_csv.php:954 -#: ../../enterprise/include/functions_reporting_csv.php:1014 +#: ../../enterprise/include/functions_reporting_csv.php:875 #: ../../enterprise/include/functions_reporting_csv.php:1458 #: ../../enterprise/include/functions_reporting_csv.php:2281 #: ../../enterprise/include/functions_reporting_csv.php:2317 -#: ../../enterprise/include/functions_reporting_csv.php:2423 -#: ../../enterprise/include/functions_reporting_csv.php:2518 -#: ../../enterprise/include/functions_reporting_csv.php:2740 -#: ../../enterprise/include/functions_services.php:1612 -#: ../../enterprise/include/functions_reporting.php:2184 -#: ../../enterprise/include/functions_reporting.php:2217 -#: ../../enterprise/include/functions_reporting.php:2221 -#: ../../enterprise/include/functions_reporting_pdf.php:702 -#: ../../enterprise/meta/include/functions_events_meta.php:134 -#: ../../enterprise/meta/advanced/collections.editor.php:54 -#: ../../enterprise/meta/advanced/collections.data.php:46 -#: ../../enterprise/meta/advanced/collections.data.php:86 -#: ../../enterprise/meta/advanced/collections.data.php:104 -#: ../../enterprise/meta/advanced/collections.data.php:124 -#: ../../enterprise/meta/advanced/collections.data.php:149 -#: ../../enterprise/meta/advanced/collections.data.php:172 -#: ../../enterprise/meta/advanced/collections.data.php:197 -#: ../../enterprise/meta/advanced/collections.data.php:238 -#: ../../enterprise/meta/advanced/collections.data.php:263 -#: ../../enterprise/godmode/agentes/collections.editor.php:56 -#: ../../enterprise/godmode/agentes/collections.agents.php:47 -#: ../../enterprise/godmode/agentes/collections.agents.php:56 -#: ../../enterprise/godmode/agentes/collections.data.php:74 -#: ../../enterprise/godmode/agentes/collections.data.php:117 -#: ../../enterprise/godmode/agentes/collections.data.php:184 -#: ../../enterprise/godmode/agentes/collections.data.php:204 -#: ../../enterprise/godmode/agentes/collections.data.php:224 -#: ../../enterprise/godmode/agentes/collections.data.php:251 -#: ../../enterprise/godmode/agentes/collections.data.php:279 -#: ../../enterprise/godmode/agentes/collections.data.php:309 -#: ../../enterprise/godmode/agentes/collections.data.php:332 -#: ../../extensions/insert_data.php:194 ../../extensions/insert_data.php:195 -#: ../../mobile/operation/modules.php:715 ../../mobile/operation/modules.php:718 -#: ../../mobile/operation/modules.php:719 ../../mobile/operation/modules.php:720 -#: ../../mobile/operation/modules.php:721 ../../mobile/operation/modules.php:722 -#: ../../mobile/operation/modules.php:723 ../../mobile/operation/modules.php:724 -#: ../../mobile/operation/modules.php:725 ../../mobile/operation/modules.php:727 -#: ../../mobile/operation/modules.php:730 ../../mobile/operation/modules.php:731 -#: ../../mobile/operation/modules.php:732 ../../mobile/operation/modules.php:733 -#: ../../mobile/operation/modules.php:734 ../../mobile/operation/modules.php:735 -#: ../../mobile/operation/modules.php:736 ../../mobile/operation/modules.php:737 -#: ../../mobile/operation/modules.php:853 -#: ../../godmode/events/custom_events.php:115 -#: ../../godmode/agentes/status_monitor_custom_fields.php:113 -#: ../../godmode/agentes/status_monitor_custom_fields.php:152 -msgid "Data" -msgstr "Datos" +#: ../../enterprise/include/functions_reporting_csv.php:2629 +#: ../../enterprise/include/class/Omnishell.class.php:400 +#: ../../enterprise/include/class/LogSource.class.php:628 +#: ../../enterprise/operation/agentes/tag_view.php:686 +#: ../../godmode/update_manager/update_manager.history.php:44 +#: ../../godmode/agentes/status_monitor_custom_fields.php:117 +#: ../../godmode/agentes/status_monitor_custom_fields.php:153 +#: ../../godmode/setup/news.php:249 ../../godmode/events/custom_events.php:102 +#: ../../mobile/operation/modules.php:661 ../../mobile/operation/modules.php:852 +#: ../../mobile/operation/events.php:804 ../../include/functions_reporting_html.php:1053 +#: ../../include/functions_reporting_html.php:1061 +#: ../../include/functions_reporting_html.php:1314 +#: ../../include/functions_reporting_html.php:1321 +#: ../../include/functions_reporting_html.php:2429 +#: ../../include/functions_reporting_html.php:5065 +#: ../../include/ajax/events_extended.php:90 ../../include/ajax/custom_fields.php:415 +#: ../../include/functions_netflow.php:278 ../../include/functions_events.php:205 +#: ../../include/functions_events.php:262 ../../include/functions_events.php:2373 +#: ../../include/functions_events.php:4534 ../../operation/agentes/exportdata.csv.php:74 +#: ../../operation/agentes/exportdata.php:83 +#: ../../operation/agentes/status_monitor.php:1364 +#: ../../operation/agentes/estado_generalagente.php:644 +#: ../../operation/agentes/exportdata.excel.php:74 +#: ../../operation/messages/message_list.php:200 +#: ../../operation/snmpconsole/snmp_view.php:881 +#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:116 +#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:247 +#: ../../operation/search_modules.php:39 +msgid "Timestamp" +msgstr "Marca temporal" -#: ../../operation/search_modules.php:108 ../../operation/events/events.php:2164 -#: ../../operation/agentes/status_monitor.php:1572 -#: ../../include/functions_events.php:62 ../../include/functions_modules.php:2840 -#: ../../include/functions_modules.php:4076 -#: ../../enterprise/operation/agentes/tag_view.php:935 -#: ../../mobile/operation/modules.php:542 ../../mobile/operation/modules.php:605 -msgid "NOT INIT" -msgstr "No iniciado" +#: ../../enterprise/meta/include/functions_events_meta.php:86 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:658 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2854 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1382 +#: ../../enterprise/include/lib/AlertCorrelation.class.php:1123 +#: ../../enterprise/include/functions_events.php:60 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2960 +#: ../../godmode/events/event_filter.php:138 +#: ../../godmode/events/event_edit_filter.php:322 +#: ../../include/lib/Dashboard/Widgets/events_list.php:332 +#: ../../include/functions_events.php:206 ../../operation/events/events.php:1593 +msgid "Event type" +msgstr "Tipo de evento" -#: ../../operation/search_modules.php:114 ../../operation/search_modules.php:141 -#: ../../operation/events/events.php:2060 ../../operation/events/events.php:2127 -#: ../../operation/events/events.php:2154 +#: ../../enterprise/meta/include/functions_events_meta.php:90 +#: ../../enterprise/godmode/policies/policy_external_alerts.php:338 +#: ../../enterprise/include/functions_reporting_csv.php:873 +#: ../../enterprise/operation/agentes/tag_view.php:205 +#: ../../godmode/modules/manage_network_templates_form.php:231 +#: ../../godmode/modules/manage_network_components.php:748 +#: ../../godmode/modules/manage_network_components_form_wizard.php:272 +#: ../../godmode/agentes/agent_template.php:235 +#: ../../godmode/agentes/status_monitor_custom_fields.php:85 +#: ../../godmode/agentes/status_monitor_custom_fields.php:145 +#: ../../godmode/alerts/alert_list.list.php:99 ../../mobile/operation/modules.php:594 +#: ../../mobile/operation/modules.php:848 ../../include/ajax/heatmap.ajax.php:225 +#: ../../include/ajax/heatmap.ajax.php:264 ../../include/ajax/module.php:978 +#: ../../include/ajax/custom_fields.php:411 +#: ../../operation/agentes/status_monitor.php:536 +#: ../../operation/agentes/status_monitor.php:1318 +msgid "Module name" +msgstr "Nombre del mĆ³dulo" + +#: ../../enterprise/meta/include/functions_events_meta.php:94 +#: ../../enterprise/godmode/policies/policy_external_alerts.php:382 +#: ../../enterprise/godmode/alerts/alert_inventory_list.php:362 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:4351 +#: ../../godmode/agentes/configurar_agente.php:734 +#: ../../godmode/alerts/configure_alert_template.php:1552 +#: ../../godmode/events/custom_events.php:105 ../../include/functions.php:4101 +#: ../../include/functions_snmp.php:324 ../../include/functions_events.php:208 +#: ../../include/functions_events.php:271 +#: ../../operation/agentes/estado_monitores.php:522 +#: ../../operation/snmpconsole/snmp_view.php:543 +#: ../../operation/snmpconsole/snmp_view.php:886 +#: ../../operation/snmpconsole/snmp_view.php:1246 +msgid "Alert" +msgstr "Alerta" + +#: ../../enterprise/meta/include/functions_events_meta.php:98 +#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor_form.php:72 +#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:384 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:632 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2827 +#: ../../enterprise/include/functions_reporting.php:2026 +#: ../../enterprise/include/functions_events.php:70 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2933 +#: ../../godmode/events/event_filter.php:140 +#: ../../godmode/events/event_edit_filter.php:337 +#: ../../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 ../../mobile/operation/events.php:983 +#: ../../include/functions_reporting_html.php:1051 +#: ../../include/functions_reporting_html.php:1059 +#: ../../include/functions_reporting_html.php:1312 +#: ../../include/functions_reporting_html.php:1320 +#: ../../include/functions_reporting_html.php:2427 ../../include/functions_snmp.php:335 +#: ../../include/lib/Dashboard/Widgets/events_list.php:404 +#: ../../include/functions_events.php:209 ../../include/functions_events.php:274 +#: ../../include/functions_events.php:2355 ../../include/functions_events.php:4587 +#: ../../operation/snmpconsole/snmp_view.php:572 ../../operation/events/events.php:1673 +msgid "Severity" +msgstr "Gravedad" + +#: ../../enterprise/meta/include/functions_events_meta.php:102 +#: ../../godmode/events/event_edit_filter.php:638 +#: ../../godmode/events/custom_events.php:107 +#: ../../godmode/wizards/HostDevices.class.php:958 +#: ../../include/class/CustomNetScan.class.php:468 +#: ../../include/functions_events.php:210 ../../include/functions_events.php:277 +#: ../../include/functions_events.php:3340 ../../operation/events/events.php:1742 +msgid "Comment" +msgstr "Comentar" + +#: ../../enterprise/meta/include/functions_events_meta.php:106 +#: ../../enterprise/godmode/modules/configure_local_component.php:550 +#: ../../enterprise/godmode/massive/massive_add_modules_policy.php:163 +#: ../../enterprise/godmode/massive/massive_tags_edit_policy.php:120 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:971 +#: ../../enterprise/godmode/setup/setup_auth.php:231 +#: ../../enterprise/godmode/setup/setup_auth.php:510 +#: ../../enterprise/godmode/setup/setup_auth.php:1307 +#: ../../enterprise/operation/agentes/tag_view.php:223 +#: ../../enterprise/operation/agentes/tag_view.php:225 +#: ../../enterprise/operation/agentes/tag_view.php:678 +#: ../../godmode/modules/manage_network_components_form_common.php:351 +#: ../../godmode/massive/massive_copy_modules.php:172 +#: ../../godmode/massive/massive_delete_modules.php:401 +#: ../../godmode/massive/massive_delete_modules.php:515 +#: ../../godmode/massive/massive_edit_modules.php:405 +#: ../../godmode/massive/massive_edit_modules.php:491 +#: ../../godmode/massive/massive_edit_modules.php:1047 +#: ../../godmode/events/custom_events.php:108 ../../godmode/tag/edit_tag.php:66 +#: ../../mobile/operation/events.php:845 ../../include/functions_reporting_html.php:3490 +#: ../../include/functions_treeview.php:168 ../../include/functions_profile.php:215 +#: ../../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:4674 ../../operation/tree.php:66 +#: ../../operation/users/user_edit.php:815 +#: ../../operation/agentes/status_monitor.php:550 +#: ../../operation/agentes/group_view.php:222 +#: ../../operation/agentes/alerts_status.functions.php:108 +#: ../../general/first_task/tags.php:22 +msgid "Tags" +msgstr "Etiquetas" + +#: ../../enterprise/meta/include/functions_events_meta.php:114 +#: ../../include/functions_events.php:213 ../../include/functions_events.php:4246 +msgid "Extra id" +msgstr "ID extra" + +#: ../../enterprise/meta/include/functions_events_meta.php:118 +#: ../../godmode/setup/setup_integria.php:397 ../../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:4546 +#: ../../operation/incidents/integriaims_export_csv.php:89 +#: ../../operation/incidents/configure_integriaims_incident.php:312 +#: ../../operation/incidents/list_integriaims_incidents.php:342 +#: ../../operation/incidents/list_integriaims_incidents.php:522 +msgid "Owner" +msgstr "Propietario" + +#: ../../enterprise/meta/include/functions_events_meta.php:122 +#: ../../godmode/events/custom_events.php:112 ../../include/functions_events.php:215 +#: ../../include/functions_events.php:292 +msgid "ACK Timestamp" +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:4234 +#: ../../operation/events/events.php:2988 +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/include/ajax/agent_autoconfiguration.ajax.php:69 +#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:252 +#: ../../godmode/wizards/DiscoveryTaskList.class.php:591 +#: ../../include/functions_events.php:217 +msgid "Server name" +msgstr "Nombre del servidor" + +#: ../../enterprise/meta/include/functions_events_meta.php:138 +#: ../../include/functions_reporting_html.php:4994 +#: ../../include/lib/Dashboard/Widgets/module_status.php:173 +#: ../../include/lib/Dashboard/Widgets/module_status.php:538 +#: ../../include/functions_events.php:219 ../../operation/tree.php:285 +msgid "Module status" +msgstr "Estado del mĆ³dulo" + +#: ../../enterprise/meta/include/process_reset_pass.php:28 +#: ../../enterprise/meta/include/reset_pass.php:28 +#: ../../enterprise/meta/general/login_page.php:45 ../../general/login_page.php:79 +msgid "Splash login" +msgstr "Splash login" + +#: ../../enterprise/meta/include/process_reset_pass.php:41 +#: ../../enterprise/meta/include/reset_pass.php:41 +#: ../../enterprise/meta/general/login_page.php:58 +msgid "Go to Pandora FMS Support" +msgstr "Ir a soporte de Pandora FMS" + +#: ../../enterprise/meta/include/process_reset_pass.php:43 +#: ../../enterprise/meta/include/process_reset_pass.php:54 +#: ../../enterprise/meta/include/reset_pass.php:43 +#: ../../enterprise/meta/include/reset_pass.php:54 +#: ../../enterprise/meta/general/login_page.php:60 +#: ../../enterprise/meta/general/login_page.php:71 +msgid "Go to " +msgstr "Ir a " + +#: ../../enterprise/meta/include/process_reset_pass.php:47 +#: ../../enterprise/meta/include/reset_pass.php:47 +#: ../../enterprise/meta/general/login_page.php:64 +#: ../../enterprise/include/process_reset_pass.php:58 +#: ../../enterprise/include/reset_pass.php:53 ../../general/login_help_dialog.php:83 +#: ../../general/login_help_dialog.php:88 ../../general/login_page.php:148 +#: ../../general/login_page.php:151 +msgid "Support" +msgstr "Soporte" + +#: ../../enterprise/meta/include/process_reset_pass.php:52 +#: ../../enterprise/meta/include/reset_pass.php:52 +#: ../../enterprise/meta/general/login_page.php:69 +msgid "Go to Pandora FMS Wiki" +msgstr "Ir a la Wiki de Pandora FMS" + +#: ../../enterprise/meta/include/process_reset_pass.php:58 +#: ../../enterprise/meta/include/reset_pass.php:58 +#: ../../enterprise/meta/general/login_page.php:75 +#: ../../enterprise/godmode/modules/configure_local_component.php:645 +#: ../../godmode/servers/plugin.php:526 ../../include/functions_ui.php:1452 +#: ../../include/class/ManageNetScanScripts.class.php:690 +msgid "Help" +msgstr "Ayuda" + +#: ../../enterprise/meta/include/process_reset_pass.php:96 +#: ../../enterprise/include/process_reset_pass.php:103 +#: ../../operation/users/user_edit.php:298 +msgid "New Password" +msgstr "ContraseƱa nueva" + +#: ../../enterprise/meta/include/process_reset_pass.php:114 +#: ../../enterprise/include/process_reset_pass.php:118 +msgid "Repeat password" +msgstr "Repetir contraseƱa" + +#: ../../enterprise/meta/include/process_reset_pass.php:120 +#: ../../enterprise/include/process_reset_pass.php:124 +msgid "Change password" +msgstr "Cambiar contraseƱa" + +#: ../../enterprise/meta/include/process_reset_pass.php:123 +#: ../../enterprise/meta/index.php:626 +#: ../../enterprise/include/process_reset_pass.php:127 ../../index.php:803 +msgid "Passwords must be the same" +msgstr "Las contraseƱas deben coincidir" + +#: ../../enterprise/meta/include/process_reset_pass.php:132 +#: ../../enterprise/meta/include/reset_pass.php:122 +#: ../../enterprise/include/process_reset_pass.php:136 +#: ../../enterprise/include/reset_pass.php:123 +msgid "Back to login" +msgstr "Volver a identificarse" + +#: ../../enterprise/meta/include/process_reset_pass.php:142 +#: ../../enterprise/meta/include/reset_pass.php:139 +#, php-format +msgid "%s NEXT GENERATION" +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:2444 +msgid "METACONSOLE" +msgstr "METACONSOLA" + +#: ../../enterprise/meta/include/process_reset_pass.php:164 +#: ../../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 +msgid "Build" +msgstr "Crear" + +#: ../../enterprise/meta/include/functions_agents_meta.php:478 +#: ../../enterprise/meta/include/functions_agents_meta.php:542 +#: ../../enterprise/meta/include/functions_agents_meta.php:577 +msgid "Agents movement" +msgstr "Movimiento de agentes" + +#: ../../enterprise/meta/include/functions_agents_meta.php:489 +#: ../../enterprise/meta/include/functions_agents_meta.php:557 +msgid "Provisioning management" +msgstr "GestiĆ³n de aprovisionamiento" + +#: ../../enterprise/meta/include/functions_agents_meta.php:500 +#: ../../enterprise/meta/include/functions_agents_meta.php:567 +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:328 +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:542 +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:800 +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.php:99 +msgid "Agent autoconfiguration" +msgstr "AutoconfiguraciĆ³n de agente" + +#: ../../enterprise/meta/include/functions_agents_meta.php:511 +#: ../../enterprise/meta/include/functions_agents_meta.php:547 +#: ../../enterprise/meta/include/functions_agents_meta.php:552 +msgid "Group management" +msgstr "Gestionar grupos" + +#: ../../enterprise/meta/include/functions_agents_meta.php:522 +msgid "Tree group" +msgstr "Ɓrbol de grupos" + +#: ../../enterprise/meta/include/functions_agents_meta.php:562 +msgid "Provisioning rules management" +msgstr "GestiĆ³n de reglas de aprovisionamiento" + +#: ../../enterprise/meta/include/functions_agents_meta.php:572 +msgid "Colecctions" +msgstr "Colecciones" + +#: ../../enterprise/meta/include/functions_agents_meta.php:605 +msgid "Agents Management" +msgstr "GestiĆ³n de agentes" + +#: ../../enterprise/meta/include/functions_agents_meta.php:614 +#: ../../enterprise/meta/include/functions_agents_meta.php:619 +#: ../../enterprise/extensions/disabled/check_acls.php:50 +#: ../../enterprise/extensions/disabled/check_acls.php:137 +#: ../../include/functions_menu.php:492 +msgid "Agents management" +msgstr "GestiĆ³n de agentes" + +#: ../../enterprise/meta/include/functions_meta.php:49 +msgid "No admin user" +msgstr "No hay usuario administrador" + +#: ../../enterprise/meta/include/functions_meta.php:68 +#: ../../include/functions_config.php:405 +msgid "Activate Metaconsole" +msgstr "Activar la Metaconsola" + +#: ../../enterprise/meta/include/functions_meta.php:112 +msgid "Centralized management" +msgstr "GestiĆ³n centralizada" + +#: ../../enterprise/meta/include/functions_meta.php:120 +#: ../../include/functions_config.php:224 +msgid "Attachment store." +msgstr "Almacenamiento de adjuntos." + +#: ../../enterprise/meta/include/functions_meta.php:198 +msgid "Netflow disable custom live view filters" +msgstr "Desactivar filtros personalizados en la vista en vivo de Netflow" + +#: ../../enterprise/meta/include/functions_meta.php:262 +msgid "Customizable section" +msgstr "SecciĆ³n personalizable" + +#: ../../enterprise/meta/include/functions_meta.php:283 +msgid "Agent API" +msgstr "API del agente" + +#: ../../enterprise/meta/include/functions_meta.php:323 +msgid "Policy add max. agents" +msgstr "MĆ”x. de agentes a aƱadir en la polĆ­tica" + +#: ../../enterprise/meta/include/functions_meta.php:332 +msgid "Sync items warn detection" +msgstr "SincronizaciĆ³n de elementos de advertencia de detecciĆ³n" + +#: ../../enterprise/meta/include/functions_meta.php:470 +msgid "IP ElasticSearch" +msgstr "IP ElasticSearch" + +#: ../../enterprise/meta/include/functions_meta.php:480 +msgid "Port ElasticSearch" +msgstr "Puerto ElasticSearch" + +#: ../../enterprise/meta/include/functions_meta.php:490 +#: ../../enterprise/godmode/setup/setup_log_collector.php:41 +#: ../../include/functions_config.php:1507 +msgid "Number of logs viewed" +msgstr "NĆŗmero de logs vistos" + +#: ../../enterprise/meta/include/functions_meta.php:502 +#: ../../godmode/setup/setup_auth.php:440 ../../include/functions_config.php:518 +#: ../../include/class/AgentWizard.class.php:839 +msgid "Authentication method" +msgstr "MĆ©todo de autentificaciĆ³n" + +#: ../../enterprise/meta/include/functions_meta.php:512 +#: ../../godmode/setup/setup_auth.php:56 ../../include/functions_config.php:642 +msgid "Fallback to local authentication" +msgstr "Alternativa si falla la autentificaciĆ³n" + +#: ../../enterprise/meta/include/functions_meta.php:522 +#: ../../enterprise/meta/include/functions_meta.php:741 +#: ../../godmode/setup/setup_auth.php:69 ../../include/functions_config.php:522 +msgid "Autocreate remote users" +msgstr "Crear usuarios remotos automĆ”ticamente" + +#: ../../enterprise/meta/include/functions_meta.php:532 +#: ../../enterprise/godmode/setup/setup_auth.php:55 +#: ../../enterprise/godmode/setup/setup_auth.php:303 +#: ../../enterprise/godmode/setup/setup_auth.php:364 +#: ../../enterprise/godmode/setup/setup_auth.php:1159 +#: ../../include/functions_config.php:526 +msgid "Autocreate profile" +msgstr "Crear el perfil automĆ”ticamente" + +#: ../../enterprise/meta/include/functions_meta.php:542 +#: ../../enterprise/godmode/setup/setup_auth.php:61 +#: ../../enterprise/godmode/setup/setup_auth.php:309 +#: ../../enterprise/godmode/setup/setup_auth.php:370 +#: ../../enterprise/godmode/setup/setup_auth.php:1165 +#: ../../include/functions_config.php:530 +msgid "Autocreate profile group" +msgstr "Crear perfil de grupo automĆ”ticamente" + +#: ../../enterprise/meta/include/functions_meta.php:552 +#: ../../enterprise/godmode/setup/setup_auth.php:68 +#: ../../enterprise/godmode/setup/setup_auth.php:318 +#: ../../enterprise/godmode/setup/setup_auth.php:379 +#: ../../enterprise/godmode/setup/setup_auth.php:1174 +#: ../../include/functions_config.php:534 +msgid "Autocreate profile tags" +msgstr "Crear etiquetas de perfil automĆ”ticamente" + +#: ../../enterprise/meta/include/functions_meta.php:562 +#: ../../enterprise/godmode/setup/setup_auth.php:324 +#: ../../include/functions_config.php:538 +msgid "Automatically assigned no hierarchy" +msgstr "JerarquĆ­a no asignada automĆ”ticamente" + +#: ../../enterprise/meta/include/functions_meta.php:572 +#: ../../enterprise/godmode/setup/setup_auth.php:569 +#: ../../enterprise/godmode/setup/setup_auth.php:1371 +#: ../../include/functions_config.php:542 +msgid "Autocreate blacklist" +msgstr "Crear una lista negra automĆ”ticamente" + +#: ../../enterprise/meta/include/functions_meta.php:582 +#: ../../enterprise/meta/include/functions_meta.php:884 +#: ../../godmode/users/configure_user.php:1313 ../../godmode/setup/setup_auth.php:353 +#: ../../include/functions_config.php:750 ../../operation/users/user_edit.php:426 +msgid "Double authentication" +msgstr "Doble autentificaciĆ³n" + +#: ../../enterprise/meta/include/functions_meta.php:592 +msgid "2FA_all_users" +msgstr "2FA_all_users" + +#: ../../enterprise/meta/include/functions_meta.php:604 +#: ../../enterprise/meta/include/functions_meta.php:897 +#: ../../include/functions_config.php:758 ../../include/functions_config.php:764 +msgid "Session timeout" +msgstr "SesiĆ³n expirada" + +#: ../../enterprise/meta/include/functions_meta.php:618 +#: ../../enterprise/meta/include/functions_meta.php:1082 +#: ../../enterprise/godmode/setup/setup_auth.php:82 +#: ../../enterprise/godmode/setup/setup_auth.php:348 +#: ../../include/functions_config.php:655 ../../include/functions_config.php:771 +msgid "Save Password" +msgstr "Guardar contraseƱa" + +#: ../../enterprise/meta/include/functions_meta.php:635 +#: ../../enterprise/godmode/setup/setup_auth.php:577 +#: ../../enterprise/godmode/setup/setup_auth.php:1379 +#: ../../include/functions_config.php:546 +msgid "Active directory server" +msgstr "Servidor de directorio activo" + +#: ../../enterprise/meta/include/functions_meta.php:645 +#: ../../enterprise/godmode/setup/setup_auth.php:583 +#: ../../enterprise/godmode/setup/setup_auth.php:1385 +#: ../../include/functions_config.php:550 +msgid "Active directory port" +msgstr "Puerto del directorio activo" + +#: ../../enterprise/meta/include/functions_meta.php:655 +#: ../../enterprise/meta/include/functions_meta.php:939 +#: ../../enterprise/godmode/setup/setup_auth.php:589 +#: ../../enterprise/godmode/setup/setup_auth.php:1391 +#: ../../godmode/setup/setup_auth.php:137 ../../include/functions_config.php:554 +#: ../../include/functions_config.php:590 +msgid "Start TLS" +msgstr "Start TLS" + +#: ../../enterprise/meta/include/functions_meta.php:665 +#: ../../enterprise/godmode/setup/setup_auth.php:353 +#: ../../enterprise/godmode/setup/setup_auth.php:1148 +#: ../../include/functions_config.php:558 +msgid "Advanced Config AD" +msgstr "ConfiguraciĆ³n avanzada AD" + +#: ../../enterprise/meta/include/functions_meta.php:675 +#: ../../enterprise/godmode/setup/setup_auth.php:595 +#: ../../enterprise/godmode/setup/setup_auth.php:1397 +#: ../../include/functions_config.php:566 +msgid "Domain" +msgstr "Dominio" + +#: ../../enterprise/meta/include/functions_meta.php:685 +#: ../../enterprise/godmode/setup/setup_auth.php:413 +#: ../../enterprise/godmode/setup/setup_auth.php:1208 +#: ../../include/functions_config.php:570 +msgid "Advanced Permisions AD" +msgstr "Permisos avanzados de AD" + +#: ../../enterprise/meta/include/functions_meta.php:695 +#: ../../enterprise/godmode/setup/setup_auth.php:129 +#: ../../include/functions_config.php:574 +msgid "Advanced Permissions LDAP" +msgstr "Permisos LDAP avanzados" + +#: ../../enterprise/meta/include/functions_meta.php:705 +#: ../../enterprise/godmode/setup/setup_auth.php:106 +#: ../../include/functions_config.php:562 +msgid "Advanced Config LDAP" +msgstr "ConfiguraciĆ³n LDAP avanzada" + +#: ../../enterprise/meta/include/functions_meta.php:715 +#: ../../enterprise/meta/include/functions_meta.php:727 +#: ../../enterprise/godmode/setup/setup_auth.php:337 +#: ../../enterprise/godmode/setup/setup_auth.php:385 +#: ../../enterprise/godmode/setup/setup_auth.php:1180 +msgid "Auto enable node access" +msgstr "Auto-habilitar acceso al nodo" + +#: ../../enterprise/meta/include/functions_meta.php:754 +#: ../../include/functions_config.php:710 +msgid "Saml path" +msgstr "Ruta de SAML" + +#: ../../enterprise/meta/include/functions_meta.php:767 +#: ../../include/functions_config.php:714 +msgid "Saml source" +msgstr "Saml origen" + +#: ../../enterprise/meta/include/functions_meta.php:780 +#: ../../include/functions_config.php:718 +msgid "Saml user id parameter" +msgstr "ParĆ”metro de ID de usuario saml" + +#: ../../enterprise/meta/include/functions_meta.php:793 +#: ../../include/functions_config.php:722 +msgid "Saml mail parameter" +msgstr "ParĆ”metro de correo de saml" + +#: ../../enterprise/meta/include/functions_meta.php:806 +#: ../../include/functions_config.php:726 +msgid "Saml group name parameter" +msgstr "ParĆ”metro de nombre de grupo saml" + +#: ../../enterprise/meta/include/functions_meta.php:819 +#: ../../include/functions_config.php:730 +msgid "Saml attr type parameter" +msgstr "ParĆ”metro de tipo de attr saml" + +#: ../../enterprise/meta/include/functions_meta.php:832 +#: ../../include/functions_config.php:734 +msgid "Saml profiles and tags parameter" +msgstr "ParĆ”metro de perfiles y etiquetas saml" + +#: ../../enterprise/meta/include/functions_meta.php:845 +#: ../../include/functions_config.php:746 +msgid "Saml profile and tag separator" +msgstr "Separador de perfil y etiqueta saml" + +#: ../../enterprise/meta/include/functions_meta.php:858 +msgid "SAML profile parameters" +msgstr "ParĆ”metros de perfil SAML" + +#: ../../enterprise/meta/include/functions_meta.php:871 +#: ../../include/functions_config.php:742 +msgid "Saml tag parameter" +msgstr "ParĆ”metro de etiqueta saml" + +#: ../../enterprise/meta/include/functions_meta.php:909 +#: ../../godmode/setup/setup_auth.php:92 ../../include/functions_config.php:578 +msgid "LDAP server" +msgstr "Servidor LDAP" + +#: ../../enterprise/meta/include/functions_meta.php:919 +#: ../../godmode/setup/setup_auth.php:105 ../../include/functions_config.php:582 +msgid "LDAP port" +msgstr "Puerto LDAP" + +#: ../../enterprise/meta/include/functions_meta.php:929 +#: ../../godmode/setup/setup_auth.php:123 ../../include/functions_config.php:586 +msgid "LDAP version" +msgstr "VersiĆ³n LDAP" + +#: ../../enterprise/meta/include/functions_meta.php:949 +#: ../../godmode/setup/setup_auth.php:148 ../../include/functions_config.php:594 +msgid "Base DN" +msgstr "DN base" + +#: ../../enterprise/meta/include/functions_meta.php:959 +#: ../../godmode/setup/setup_auth.php:161 ../../include/functions_config.php:598 +msgid "Login attribute" +msgstr "Atributo de acceso" + +#: ../../enterprise/meta/include/functions_meta.php:969 +#: ../../godmode/setup/setup_auth.php:174 ../../include/functions_config.php:602 +msgid "Admin LDAP login" +msgstr "Inicio de sesiĆ³n de administrador LDAP" + +#: ../../enterprise/meta/include/functions_meta.php:979 +#: ../../godmode/setup/setup_auth.php:187 ../../include/functions_config.php:606 +msgid "Admin LDAP password" +msgstr "ContraseƱa de administrador LDAP" + +#: ../../enterprise/meta/include/functions_meta.php:990 +#: ../../include/functions_config.php:666 +msgid "LDAP secondary enabled" +msgstr "LDAP secundario habilitado" + +#: ../../enterprise/meta/include/functions_meta.php:999 +#: ../../godmode/setup/setup_auth.php:222 ../../include/functions_config.php:610 +msgid "Secondary LDAP server" +msgstr "Servidor LDAP secundario" + +#: ../../enterprise/meta/include/functions_meta.php:1009 +#: ../../godmode/setup/setup_auth.php:235 ../../include/functions_config.php:614 +msgid "Secondary LDAP port" +msgstr "Puerto LDAP secundario" + +#: ../../enterprise/meta/include/functions_meta.php:1019 +#: ../../godmode/setup/setup_auth.php:253 ../../include/functions_config.php:618 +msgid "Secondary LDAP version" +msgstr "VersiĆ³n LDAP secundaria" + +#: ../../enterprise/meta/include/functions_meta.php:1029 +#: ../../godmode/setup/setup_auth.php:267 +msgid "Secondary start TLS" +msgstr "TLS de inicio secundario" + +#: ../../enterprise/meta/include/functions_meta.php:1039 +#: ../../include/functions_config.php:626 +msgid "Secondary base DN" +msgstr "Base secundaria DN" + +#: ../../enterprise/meta/include/functions_meta.php:1049 +#: ../../include/functions_config.php:630 +msgid "Secondary login attribute" +msgstr "Atributo de inicio de sesiĆ³n secundario" + +#: ../../enterprise/meta/include/functions_meta.php:1059 +#: ../../godmode/setup/setup_auth.php:304 ../../include/functions_config.php:634 +msgid "Admin secondary LDAP login" +msgstr "Inicio de sesiĆ³n LDAP secundario del administrador" + +#: ../../enterprise/meta/include/functions_meta.php:1069 +#: ../../godmode/setup/setup_auth.php:317 ../../include/functions_config.php:638 +msgid "Admin secondary LDAP password" +msgstr "ContraseƱa LDAP secundaria del administrador" + +#: ../../enterprise/meta/include/functions_meta.php:1102 +#: ../../enterprise/godmode/setup/setup_auth.php:101 +#: ../../include/functions_config.php:646 +msgid "Login user attribute" +msgstr "Identificar atributo de usuario" + +#: ../../enterprise/meta/include/functions_meta.php:1112 +#: ../../include/functions_config.php:662 +msgid "Save profile" +msgstr "Guardar perfil" + +#: ../../enterprise/meta/include/functions_meta.php:1123 +#: ../../enterprise/godmode/setup/setup_auth.php:94 +#: ../../include/functions_config.php:650 +msgid "LDAP function" +msgstr "FunciĆ³n LDAP" + +#: ../../enterprise/meta/include/functions_meta.php:1135 +#, php-format +msgid "%s host" +msgstr "Host %s" + +#: ../../enterprise/meta/include/functions_meta.php:1145 +#: ../../enterprise/meta/include/functions_meta.php:1199 +#: ../../enterprise/meta/include/functions_meta.php:1253 +#: ../../enterprise/godmode/setup/setup_auth.php:1027 +#: ../../enterprise/godmode/setup/setup_auth.php:1059 +#: ../../include/functions_config.php:674 ../../include/functions_config.php:694 +msgid "MySQL port" +msgstr "Puerto de MySQL" + +#: ../../enterprise/meta/include/functions_meta.php:1155 +#: ../../enterprise/meta/include/functions_meta.php:1209 +#: ../../enterprise/meta/include/functions_meta.php:1263 +#: ../../enterprise/godmode/setup/setup_history.php:193 +#: ../../enterprise/godmode/setup/setup_auth.php:1033 +#: ../../enterprise/godmode/setup/setup_auth.php:1065 +#: ../../include/functions_config.php:678 ../../include/functions_config.php:698 +#: ../../include/functions_config.php:1537 +msgid "Database name" +msgstr "Nombre de la base de datos" + +#: ../../enterprise/meta/include/functions_meta.php:1189 +msgid "Babel Enterprise host" +msgstr "Servidor de Babel Enterprise" + +#: ../../enterprise/meta/include/functions_meta.php:1243 +#: ../../enterprise/godmode/setup/setup_auth.php:1053 +#: ../../include/functions_config.php:690 +msgid "Integria host" +msgstr "Servidor de Integria IMS" + +#: ../../enterprise/meta/include/functions_meta.php:1308 +#: ../../include/functions_config.php:936 +msgid "Timestamp or time comparation" +msgstr "Marca o comparaciĆ³n temporal" + +#: ../../enterprise/meta/include/functions_meta.php:1318 +msgid "Graph color (min)" +msgstr "Color del grĆ”fico (mĆ­n.)" + +#: ../../enterprise/meta/include/functions_meta.php:1328 +msgid "Graph color (avg)" +msgstr "Color del grĆ”fico (med.)" + +#: ../../enterprise/meta/include/functions_meta.php:1338 +msgid "Graph color (max)" +msgstr "Color del grĆ”fico (mĆ”x.)" + +#: ../../enterprise/meta/include/functions_meta.php:1373 +#: ../../include/functions_config.php:984 +msgid "Data precision for reports" +msgstr "PrecisiĆ³n de los datos en los informes" + +#: ../../enterprise/meta/include/functions_meta.php:1488 +msgid "full scale charts" +msgstr "GrĆ”ficas a escala completa" + +#: ../../enterprise/meta/include/functions_meta.php:1498 +msgid "type mode type charts" +msgstr "tipo de grĆ”fica" + +#: ../../enterprise/meta/include/functions_meta.php:1518 +msgid "type mode zoom charts" +msgstr "zoom de grĆ”fica" + +#: ../../enterprise/meta/include/functions_meta.php:1538 +msgid "Type of charts" +msgstr "Tipo de grĆ”ficos" + +#: ../../enterprise/meta/include/functions_meta.php:1578 +#: ../../include/functions_config.php:1033 +msgid "Custom logo collapsed" +msgstr "Icono menĆŗ reducido" + +#: ../../enterprise/meta/include/functions_meta.php:1588 +msgid "Custom logo (white background)" +msgstr "Logo personalizado (fondo blanco)" + +#: ../../enterprise/meta/include/functions_meta.php:1608 +#: ../../include/functions_config.php:1041 +msgid "Custom logo login" +msgstr "Logo personalizado en la pantalla de bienvenida" + +#: ../../enterprise/meta/include/functions_meta.php:1618 +#: ../../include/functions_config.php:1045 +msgid "Custom splash login" +msgstr "Login de Splash personalizado" + +#: ../../enterprise/meta/include/functions_meta.php:1648 +#: ../../include/functions_config.php:1081 +msgid "Custom title1 login" +msgstr "TĆ­tulo1 conexiĆ³n personalizado" + +#: ../../enterprise/meta/include/functions_meta.php:1658 +#: ../../include/functions_config.php:1085 +msgid "Custom title2 login" +msgstr "TĆ­tulo2 conexiĆ³n personalizado" + +#: ../../enterprise/meta/include/functions_meta.php:1668 +#: ../../include/functions_config.php:1073 +msgid "Meta custom title header" +msgstr "Encabezado de tĆ­tulo personalizado" + +#: ../../enterprise/meta/include/functions_meta.php:1678 +#: ../../include/functions_config.php:1077 +msgid "Meta custom subtitle header" +msgstr "Encabezado de subtĆ­tulos meta personalizado" + +#: ../../enterprise/meta/include/functions_meta.php:1708 +msgid "Custom background login" +msgstr "Fondo personalizado del inicio de sesiĆ³n" + +#: ../../enterprise/meta/include/functions_meta.php:1718 +msgid "Custom product name" +msgstr "Nombre de producto personalizado" + +#: ../../enterprise/meta/include/functions_meta.php:1728 +msgid "Custom copyright notice" +msgstr "Aviso de copyright personalizado" + +#: ../../enterprise/meta/include/functions_meta.php:1777 +#: ../../include/functions_config.php:1017 +msgid "Font path" +msgstr "Ruta de la tipografĆ­a" + +#: ../../enterprise/meta/include/functions_meta.php:1787 +#: ../../include/functions_config.php:1455 +msgid "Use data multiplier" +msgstr "Usar multiplicador de datos" + +#: ../../enterprise/meta/include/functions_meta.php:1799 +#: ../../include/functions_config.php:1411 +msgid "Custom report info" +msgstr "InformaciĆ³n del informe personalizado" + +#: ../../enterprise/meta/include/functions_meta.php:1809 +#: ../../enterprise/godmode/reporting/reporting_builder.advanced.php:116 +#: ../../enterprise/godmode/reporting/reporting_builder.template_advanced.php:127 +#: ../../include/functions_config.php:1427 +msgid "Font family" +msgstr "Tipo de letra" + +#: ../../enterprise/meta/include/functions_meta.php:1849 +#: ../../enterprise/godmode/reporting/reporting_builder.advanced.php:173 +#: ../../enterprise/godmode/reporting/reporting_builder.template_advanced.php:162 +#: ../../godmode/setup/setup_visuals.php:1253 ../../include/functions_config.php:1443 +msgid "Footer" +msgstr "Pie de pĆ”gina" + +#: ../../enterprise/meta/include/functions_meta.php:1884 +#: ../../include/functions_config.php:1141 +msgid "Use the legacy Visual Console" +msgstr "Usar la consola visual heredada" + +#: ../../enterprise/meta/include/functions_meta.php:1895 +#: ../../include/functions_config.php:1145 +msgid "Default expiration of the Visual Console item's cache" +msgstr "Caducidad del cachĆ© de los elementos de la consola visual por defecto" + +#: ../../enterprise/meta/include/functions_meta.php:1939 +msgid "Realtime stats" +msgstr "EstadĆ­sticas en tiempo real" + +#: ../../enterprise/meta/include/functions_meta.php:1969 +#: ../../godmode/setup/performance.php:568 ../../include/functions_config.php:844 +msgid "Use agent access graph" +msgstr "Usar la grĆ”fica de acceso del agente" + +#: ../../enterprise/meta/include/functions_meta.php:1979 +msgid "Default block size migration agents" +msgstr "TamaƱo del bloque de migraciĆ³n de agentes por defecto" + +#: ../../enterprise/meta/include/functions_meta.php:2001 +msgid "Default block size execution event" +msgstr "Evento de ejecuciĆ³n en bloque por defecto" + +#: ../../enterprise/meta/include/functions_meta.php:2012 +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:2042 +#: ../../include/functions_config.php:925 +msgid "PhantomJS cache interval" +msgstr "Intervalo de cachĆ© de PhantomJS" + +#: ../../enterprise/meta/include/functions_meta.php:2058 +msgid "Node address default" +msgstr "DirecciĆ³n del nodo por defecto" + +#: ../../enterprise/meta/include/functions_components_meta.php:80 +#: ../../enterprise/meta/include/functions_components_meta.php:135 +#: ../../godmode/menu.php:96 +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:99 ../../godmode/menu.php:168 +msgid "Local components" +msgstr "Componentes locales" + +#: ../../enterprise/meta/include/functions_components_meta.php:96 +#: ../../enterprise/meta/include/functions_components_meta.php:143 +msgid "Network components" +msgstr "Componentes de red" + +#: ../../enterprise/meta/include/functions_components_meta.php:104 +#: ../../enterprise/meta/include/functions_components_meta.php:147 +msgid "Plugin management" +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:90 +#: ../../enterprise/godmode/alerts/alert_inventory_builder.php:198 +#: ../../enterprise/include/functions_policies.php:3755 +msgid "Inventory modules" +msgstr "MĆ³dulos de inventario" + +#: ../../enterprise/meta/include/functions_components_meta.php:124 +#: ../../enterprise/meta/include/functions_components_meta.php:164 +#: ../../godmode/servers/plugin_registration.php:99 ../../godmode/servers/plugin.php:295 +msgid "Plugin registration" +msgstr "Registro de plugins" + +#: ../../enterprise/meta/include/functions_components_meta.php:153 +msgid "Create plugin" +msgstr "Crear plugin" + +#: ../../enterprise/meta/include/functions_components_meta.php:155 +msgid "Edit plugin" +msgstr "Editar plugin" + +#: ../../enterprise/meta/include/functions_ui_meta.php:53 +#, php-format +msgid "%s - the Flexible Monitoring System" +msgstr "%s - Flexible Monitoring System" + +#: ../../enterprise/meta/include/functions_ui_meta.php:971 +#: ../../enterprise/godmode/services/services.elements.php:846 +#: ../../enterprise/godmode/services/services.elements.php:857 +#: ../../enterprise/include/class/CommandCenter.class.php:473 +#: ../../enterprise/include/functions_login.php:104 +#: ../../enterprise/include/functions_login.php:488 +#: ../../enterprise/include/lib/Metaconsole/Node.php:541 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:4035 +#: ../../godmode/users/configure_user.php:1795 +#: ../../godmode/users/configure_user.php:1865 +#: ../../godmode/massive/massive_edit_plugins.php:856 +#: ../../godmode/massive/massive_edit_plugins.php:857 +#: ../../mobile/operation/visualmap.php:182 ../../include/functions.php:1236 +#: ../../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:2216 +#: ../../include/functions_ui.php:290 ../../include/class/Diagnostics.class.php:1827 +#: ../../include/functions_events.php:2681 ../../include/functions_events.php:2881 +#: ../../index.php:1516 ../../operation/users/user_edit.php:1064 +#: ../../operation/users/user_edit.php:1130 ../../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:268 +msgid "Commands" +msgstr "Comandos" + +#: ../../enterprise/meta/include/functions_alerts_meta.php:141 +msgid "Calendar" +msgstr "Calendario" + +#: ../../enterprise/meta/include/reset_pass.php:93 +#: ../../enterprise/include/reset_pass.php:98 +msgid "User to reset password" +msgstr "Usuario de la contraseƱa a resetear" + +#: ../../enterprise/meta/include/reset_pass.php:103 ../../enterprise/meta/index.php:692 +#: ../../enterprise/include/reset_pass.php:108 ../../index.php:875 +msgid "Reset password" +msgstr "Restablecer la contraseƱa" + +#: ../../enterprise/meta/include/reset_pass.php:165 +#: ../../enterprise/meta/include/reset_pass.php:168 +#: ../../enterprise/include/reset_pass.php:174 +#: ../../enterprise/include/reset_pass.php:177 +msgid "Reset password failed" +msgstr "Error al restablecer la contraseƱa" + +#: ../../enterprise/meta/include/reset_pass.php:172 +#: ../../enterprise/meta/general/login_page.php:259 +#: ../../enterprise/meta/general/login_page.php:301 +#: ../../enterprise/include/reset_pass.php:181 ../../general/login_page.php:452 +#: ../../general/login_page.php:494 +msgid "ERROR" +msgstr "ERROR" + +#: ../../enterprise/meta/include/functions_relations.php:49 +msgid "Invalid file content" +msgstr "Contenido del archivo no vĆ”lido" + +#: ../../enterprise/meta/include/functions_relations.php:54 +msgid "No relations found" +msgstr "No se han encontrado relaciones" + +#: ../../enterprise/meta/include/functions_relations.php:80 +#: ../../enterprise/meta/include/functions_relations.php:91 +#: ../../enterprise/meta/include/functions_relations.php:102 +#, php-format +msgid "The relation type: %s to %s -> %s was not saved" +msgstr "El tipo de relaciĆ³n: %s a %s -> %s no se ha guardado" + +#: ../../enterprise/meta/include/functions_relations.php:123 +#, php-format +msgid "The relation %s -> %s was not saved" +msgstr "La relaciĆ³n %s -> %s no se ha guardado" + +#: ../../enterprise/meta/include/functions_relations.php:133 +msgid "File imported successfully" +msgstr "El archivo se ha importado con Ć©xito" + +#: ../../enterprise/meta/include/functions_relations.php:136 +msgid "Error inserting relations" +msgstr "Error al insertar relaciones" + +#: ../../enterprise/meta/include/functions_relations.php:165 +msgid "Empty string" +msgstr "Cadena vacĆ­a" + +#: ../../enterprise/meta/include/functions_relations.php:170 +msgid "Empty custom node address" +msgstr "DirecciĆ³n del nodo personalizada vacĆ­a" + +#: ../../enterprise/meta/include/functions_relations.php:208 +#, php-format +msgid "" +"The relation type: %s to %s -> %s was not saved. This relationship already exists in " +"the database" +msgstr "" +"El tipo de relaciĆ³n: %s a %s -> %s no se ha guardado. Esta relaciĆ³n ya existe en la " +"base de datos" + +#: ../../enterprise/meta/include/functions_relations.php:230 +#, php-format +msgid "Error inserting the relation %s -> %s" +msgstr "Error al insertar la relaciĆ³n %s -> %s" + +#: ../../enterprise/meta/include/functions_relations.php:238 +msgid "Relation created successfully" +msgstr "RelaciĆ³n creada con Ć©xito" + +#: ../../enterprise/meta/include/functions_relations.php:263 +msgid "Error deleting the relation" +msgstr "Error al eliminar la relaciĆ³n" + +#: ../../enterprise/meta/include/functions_relations.php:269 +msgid "Relation deleted successfully" +msgstr "RelaciĆ³n eliminada con Ć©xito" + +#: ../../enterprise/meta/index.php:206 ../../index.php:1399 +#: ../../operation/visual_console/legacy_public_view.php:57 +#: ../../operation/visual_console/public_view.php:38 +#: ../../operation/agentes/stat_win.php:92 +#: ../../operation/gis_maps/public_console.php:277 +#: ../../operation/events/sound_events.php:168 +msgid "Connection with server has been lost" +msgstr "Se ha perdido la conexiĆ³n con el servidor" + +#: ../../enterprise/meta/index.php:207 ../../index.php:1400 +#: ../../operation/visual_console/legacy_public_view.php:58 +#: ../../operation/visual_console/public_view.php:39 +#: ../../operation/agentes/stat_win.php:93 +#: ../../operation/gis_maps/public_console.php:278 +#: ../../operation/events/sound_events.php:169 +msgid "" +"Connection to the server has been lost. Please check your internet connection or " +"contact with administrator." +msgstr "" +"Se ha perdido la conexiĆ³n con el servidor. Compruebe su conexiĆ³n a Internet o pĆ³ngase " +"en contacto con el administrador" + +#: ../../enterprise/meta/index.php:296 ../../mobile/include/user.class.php:303 +#: ../../include/ajax/double_auth.ajax.php:500 ../../index.php:336 +msgid "Invalid code" +msgstr "CĆ³digo no vĆ”lido" + +#: ../../enterprise/meta/index.php:308 ../../index.php:348 +msgid "The code shouldn't be empty" +msgstr "El cĆ³digo no deberĆ­a estar vacĆ­o" + +#: ../../enterprise/meta/index.php:321 ../../index.php:361 +msgid "Expired login" +msgstr "Inicio de sesiĆ³n caducado" + +#: ../../enterprise/meta/index.php:328 ../../enterprise/meta/index.php:334 +#: ../../index.php:368 ../../index.php:374 +msgid "Login error" +msgstr "Error de conexiĆ³n" + +#: ../../enterprise/meta/index.php:617 ../../index.php:792 +msgid "Password changed successfully" +msgstr "ContraseƱa modificada correctamente" + +#: ../../enterprise/meta/index.php:623 ../../index.php:798 +msgid "Failed to change password" +msgstr "No se pudo modificar la contraseƱa" + +#: ../../enterprise/meta/index.php:637 ../../index.php:815 +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:644 ../../index.php:822 +msgid "This user has not requested a password change" +msgstr "Este usuario no ha solicitado un cambio de contraseƱa" + +#: ../../enterprise/meta/index.php:660 ../../index.php:849 +msgid "Id user cannot be empty" +msgstr "El ID de usuario no puede estar vacĆ­o" + +#: ../../enterprise/meta/index.php:668 ../../index.php:857 +msgid "Error in reset password request" +msgstr "Error en la solicitud para restablecer la contraseƱa" + +#: ../../enterprise/meta/index.php:676 ../../index.php:865 +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:693 ../../index.php:876 +msgid "This is an automatically sent message for user " +msgstr "Este es un mensaje enviado automĆ”ticamente para el usuario " + +#: ../../enterprise/meta/index.php:696 ../../index.php:879 +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:698 ../../index.php:881 +msgid "Reset your password" +msgstr "Restablecer la contraseƱa" + +#: ../../enterprise/meta/index.php:702 ../../index.php:885 +msgid "Please do not reply to this email." +msgstr "No respondas a este email." + +#: ../../enterprise/meta/index.php:708 ../../index.php:890 +msgid "Error at sending the email" +msgstr "Error al enviar el email" + +#: ../../enterprise/meta/index.php:849 +#, php-format +msgid "System is not centralised, please go to %s to perform a database merge process." +msgstr "" +"El sistema no estĆ” centralizado, vaya a %s para realizar un proceso de fusiĆ³n de " +"bases de datos." + +#: ../../enterprise/meta/index.php:917 +#, php-format +msgid "There are nodes with different MR than this (%d):" +msgstr "Hay nodos con RM diferente a esta (%d):" + +#: ../../enterprise/meta/index.php:926 ../../index.php:1173 +msgid "Please keep all environment updated to same version." +msgstr "Mantenga todo el entorno actualizado a la misma versiĆ³n." + +#: ../../enterprise/meta/index.php:983 ../../enterprise/meta/index.php:1062 +#: ../../index.php:1261 +msgid "Sorry! I can't find the page!" +msgstr "No se puede encontrar la pĆ”gina" + +#: ../../enterprise/meta/agentsearch.php:121 +msgid "Search results for" +msgstr "Buscar resultados para" + +#: ../../enterprise/meta/agentsearch.php:122 ../../operation/search_main.php:54 +msgid "Agents found" +msgstr "Agentes encontrados" + +#: ../../enterprise/meta/agentsearch.php:142 +#: ../../enterprise/godmode/reporting/aws_view.php:61 +#: ../../enterprise/operation/agentes/policy_view.php:399 +#: ../../enterprise/operation/agentes/tag_view.php:609 +#: ../../enterprise/operation/agentes/ver_agente.php:77 +#: ../../extensions/users_connected.php:146 ../../godmode/users/user_list.php:481 +#: ../../godmode/agentes/planned_downtime.editor.php:923 +#: ../../mobile/operation/agents.php:99 ../../mobile/operation/agents.php:417 +#: ../../mobile/operation/agents.php:419 ../../mobile/operation/agents.php:422 +#: ../../mobile/operation/agent.php:193 ../../include/ajax/module.php:984 +#: ../../include/functions_treeview.php:668 ../../include/functions_events.php:4048 +#: ../../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:1028 +#: ../../operation/agentes/estado_generalagente.php:362 +#: ../../operation/gis_maps/ajax.php:239 ../../operation/gis_maps/ajax.php:349 +#: ../../operation/gis_maps/ajax.php:466 +msgid "Last contact" +msgstr "ƚltimo contacto" + +#: ../../enterprise/meta/agentsearch.php:301 +msgid "There are no agents included in this group" +msgstr "No hay ningĆŗn agente en este grupo" + +#: ../../enterprise/meta/agentsearch.php:315 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:601 ../../operation/tree.php:420 +msgid "Policies found" +msgstr "PolĆ­ticas encontradas" + +#: ../../enterprise/meta/agentsearch.php:409 +#: ../../enterprise/godmode/policies/policies.php:471 +#: ../../operation/search_policies.php:50 +msgid "Policy updated" +msgstr "PolĆ­tica actualizada" + +#: ../../enterprise/meta/agentsearch.php:417 +#: ../../enterprise/godmode/policies/policies.php:479 +#: ../../operation/search_policies.php:58 +msgid "Pending update policy only database" +msgstr "Pendiente de actualizar la polĆ­tica, solo para cambios en base de datos." + +#: ../../enterprise/meta/agentsearch.php:425 +#: ../../enterprise/godmode/policies/policies.php:487 +#: ../../operation/search_policies.php:66 +msgid "Pending update policy" +msgstr "Pendiente actualizar polĆ­tica" + +#: ../../enterprise/meta/agentsearch.php:450 +msgid "There are no policies included in this group" +msgstr "No hay polĆ­ticas incluidas en este grupo" + +#: ../../enterprise/meta/general/footer.php:45 ../../general/footer.php:51 +#, php-format +msgid "%s %s - %s - MR %s" +msgstr "%s %s - %s - MR %s" + +#: ../../enterprise/meta/general/footer.php:50 +msgid "Page generated at" +msgstr "PĆ”gina generada en" + +#: ../../enterprise/meta/general/metaconsole_no_activated.php:12 +#: ../../enterprise/meta/general/noaccesssaml.php:130 +#: ../../enterprise/meta/general/noaccess.php:130 ../../mobile/index.php:266 +#: ../../mobile/operation/agents.php:186 ../../mobile/operation/modules.php:218 +#: ../../mobile/operation/groups.php:59 ../../mobile/operation/agent.php:117 +#: ../../mobile/operation/alerts.php:176 ../../mobile/operation/visualmap.php:185 +#: ../../mobile/operation/visualmaps.php:159 ../../mobile/operation/module_graph.php:255 +#: ../../mobile/operation/events.php:744 ../../mobile/operation/tactical.php:79 +#: ../../general/noaccesssaml.php:130 ../../general/noaccess2.php:16 +#: ../../general/noaccess2.php:18 +msgid "You don't have access to this page" +msgstr "No tienes permiso para acceder a esta pĆ”gina" + +#: ../../enterprise/meta/general/metaconsole_no_activated.php:20 +#: ../../general/noaccess2.php:28 +msgid "No access" +msgstr "Acceso denegado" + +#: ../../enterprise/meta/general/metaconsole_no_activated.php:24 +msgid "" +"Metaconsole needs previous activation from regular console, please contact system " +"administrator if you need assistance.
" +msgstr "" +"La Metaconsola necesita una activaciĆ³n previa desde una consola regular. Contacta con " +"el administrador del sistema si necesitas asistencia.
" + +#: ../../enterprise/meta/general/header.php:66 +#: ../../enterprise/meta/general/header.php:72 +#: ../../enterprise/meta/general/main_header.php:518 +#: ../../enterprise/meta/general/main_header.php:524 ../../general/header.php:48 +#: ../../general/header.php:54 +msgid "All systems" +msgstr "Todos los sistemas" + +#: ../../enterprise/meta/general/header.php:66 +#: ../../enterprise/meta/general/main_header.php:518 ../../general/header.php:48 +msgid "Down" +msgstr "CaĆ­do(s)" + +#: ../../enterprise/meta/general/header.php:69 +#: ../../enterprise/meta/general/main_header.php:521 ../../general/header.php:51 +msgid "servers down" +msgstr "servidor(es) caĆ­do(s)" + +#: ../../enterprise/meta/general/header.php:72 +#: ../../enterprise/meta/general/main_header.php:524 ../../general/header.php:54 +msgid "Ready" +msgstr "Preparado" + +#: ../../enterprise/meta/general/header.php:110 +#: ../../enterprise/meta/general/main_header.php:552 ../../general/header.php:235 +msgid "Configure autorefresh" +msgstr "Configurar actualizaciĆ³n automĆ”tica" + +#: ../../enterprise/meta/general/header.php:137 +#: ../../enterprise/meta/general/header.php:149 +#: ../../enterprise/meta/general/main_header.php:569 +#: ../../enterprise/meta/general/main_header.php:581 ../../general/header.php:301 +#: ../../general/header.php:320 +msgid "Disabled autorefresh" +msgstr "ActualizaciĆ³n automĆ”tica desactivada" + +#: ../../enterprise/meta/general/header.php:231 +#: ../../enterprise/meta/general/header.php:233 +#: ../../enterprise/meta/general/main_header.php:535 +#: ../../mobile/include/functions_web.php:34 ../../mobile/include/ui.class.php:225 +#: ../../mobile/include/user.class.php:463 ../../mobile/operation/home.php:148 +#: ../../general/header.php:432 ../../general/header.php:434 +msgid "Logout" +msgstr "Salir" + +#: ../../enterprise/meta/general/main_header.php:97 +#: ../../enterprise/meta/general/main_menu.php:188 +#: ../../enterprise/operation/services/services.treeview_services.php:62 +#: ../../enterprise/operation/services/services.treeview_services.php:69 +#: ../../godmode/groups/group_list.php:344 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:173 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:714 ../../operation/tree.php:138 +#: ../../operation/menu.php:51 +msgid "Tree view" +msgstr "Vista de Ć”rbol" + +#: ../../enterprise/meta/general/main_header.php:109 +#: ../../enterprise/meta/general/main_menu.php:200 +msgid "Groups view" +msgstr "Visor de grupos" + +#: ../../enterprise/meta/general/main_header.php:115 +#: ../../enterprise/meta/general/main_menu.php:206 +#: ../../operation/agentes/alerts_status.php:208 +msgid "Alerts view" +msgstr "Vista de alertas" + +#: ../../enterprise/meta/general/main_header.php:121 +#: ../../enterprise/meta/general/main_menu.php:212 +msgid "Monitors view" +msgstr "Visor de monitores" + +#: ../../enterprise/meta/general/main_header.php:127 +#: ../../enterprise/meta/general/main_menu.php:218 +msgid "Custom fields view" +msgstr "Vista de campos personalizados" + +#: ../../enterprise/meta/general/main_header.php:167 +#: ../../enterprise/meta/general/main_header.php:183 +#: ../../enterprise/meta/general/main_menu.php:271 +#: ../../enterprise/mobile/include/functions_web.php:15 +#: ../../include/functions_reporting.php:15186 ../../include/functions_groups.php:139 +#: ../../operation/search_results.php:132 +msgid "Reports" +msgstr "Informes" + +#: ../../enterprise/meta/general/main_header.php:174 +#: ../../enterprise/meta/general/main_menu.php:278 +msgid "Create new report" +msgstr "Crear un nuevo informe" + +#: ../../enterprise/meta/general/main_header.php:190 +#: ../../enterprise/meta/general/main_menu.php:288 +msgid "Report templates" +msgstr "Plantillas de informes" + +#: ../../enterprise/meta/general/main_header.php:200 +#: ../../enterprise/meta/general/main_menu.php:298 +#: ../../enterprise/include/functions_reporting.php:124 +#: ../../include/functions_menu.php:509 +msgid "Templates wizard" +msgstr "Asistente de plantillas" + +#: ../../enterprise/meta/general/main_header.php:210 +#: ../../enterprise/meta/general/main_menu.php:331 ../../enterprise/godmode/menu.php:137 +#: ../../enterprise/godmode/massive/massive_add_service_elements.php:363 +#: ../../enterprise/godmode/massive/massive_create_services.php:966 +#: ../../enterprise/godmode/services/services.massive.meta.php:42 +#: ../../enterprise/godmode/services/services.service.php:477 +#: ../../enterprise/godmode/services/services.service.php:497 +#: ../../enterprise/godmode/services/services.elements.php:783 +#: ../../enterprise/godmode/services/services.elements.php:803 +#: ../../enterprise/godmode/services/services.massive.elements.php:44 +#: ../../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/services/services.service.php:83 +#: ../../enterprise/operation/services/services.service_map.php:97 +#: ../../enterprise/operation/services/services.service_map.php:144 +#: ../../enterprise/operation/services/services.treeview_services.php:62 +#: ../../enterprise/operation/services/services.treeview_services.php:82 +#: ../../enterprise/operation/services/services.list.php:58 +#: ../../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:1654 +#: ../../general/first_task/service_list.php:23 +msgid "Services" +msgstr "Servicios" + +#: ../../enterprise/meta/general/main_header.php:240 +#: ../../enterprise/meta/general/main_menu.php:348 +#: ../../enterprise/include/functions_enterprise.php:456 +#: ../../include/class/OrderInterpreter.class.php:233 +#: ../../include/lib/Dashboard/Widgets/maps_made_by_user.php:174 +#: ../../include/lib/Dashboard/Widgets/maps_made_by_user.php:488 +#: ../../general/first_task/map_builder.php:31 +msgid "Visual Console" +msgstr "Consola visual" + +#: ../../enterprise/meta/general/main_header.php:247 +#: ../../enterprise/meta/general/main_menu.php:355 +#: ../../godmode/reporting/visual_console_favorite.php:118 +msgid "Favourite Visual Console" +msgstr "Consola visual favorita" + +#: ../../enterprise/meta/general/main_header.php:255 +#: ../../enterprise/meta/general/main_menu.php:363 +msgid "Template Visual Console" +msgstr "Consola visual de plantillas" + +#: ../../enterprise/meta/general/main_header.php:262 +#: ../../enterprise/meta/general/main_menu.php:370 +msgid "Wizard Visual Console" +msgstr "Consola visual de asistente" + +#: ../../enterprise/meta/general/main_header.php:275 +#: ../../enterprise/meta/general/logon_ok.php:37 +#: ../../enterprise/meta/general/main_menu.php:385 +#: ../../enterprise/include/functions_enterprise.php:452 ../../godmode/menu.php:350 +#: ../../godmode/setup/setup.php:151 ../../godmode/setup/setup.php:271 +#: ../../include/functions_reports.php:906 ../../include/functions_reports.php:910 +#: ../../include/functions_reports.php:914 ../../include/functions_reports.php:918 +msgid "Netflow" +msgstr "Netflow" + +#: ../../enterprise/meta/general/main_header.php:281 +#: ../../enterprise/meta/general/main_menu.php:393 +msgid "Live view" +msgstr "Vista en vivo" + +#: ../../enterprise/meta/general/main_header.php:315 +#: ../../enterprise/meta/general/main_header.php:417 +#: ../../enterprise/meta/general/main_menu.php:438 +#: ../../enterprise/meta/general/main_menu.php:538 +msgid "Agent management" +msgstr "GestiĆ³n de agentes" + +#: ../../enterprise/meta/general/main_header.php:327 +#: ../../enterprise/meta/general/main_header.php:423 +#: ../../enterprise/meta/general/main_menu.php:444 +#: ../../enterprise/meta/general/main_menu.php:544 +#: ../../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_network_components.php:290 +#: ../../godmode/modules/module_list.php:29 +#: ../../godmode/modules/manage_network_templates.php:39 +msgid "Module management" +msgstr "GestiĆ³n de mĆ³dulos" + +#: ../../enterprise/meta/general/main_header.php:333 +#: ../../enterprise/meta/general/main_header.php:439 +#: ../../enterprise/meta/general/main_menu.php:450 +#: ../../enterprise/meta/general/main_menu.php:567 +msgid "Alert management" +msgstr "GestiĆ³n de alertas" + +#: ../../enterprise/meta/general/main_header.php:339 +#: ../../enterprise/meta/general/main_menu.php:456 +msgid "Component management" +msgstr "GestiĆ³n de componentes" + +#: ../../enterprise/meta/general/main_header.php:345 +#: ../../enterprise/meta/general/main_menu.php:468 +#: ../../enterprise/meta/general/main_menu.php:558 +msgid "Policy management" +msgstr "GestiĆ³n de polĆ­ticas" + +#: ../../enterprise/meta/general/main_header.php:351 +#: ../../enterprise/meta/general/main_menu.php:474 +msgid "Category management" +msgstr "GestiĆ³n de categorĆ­as" + +#: ../../enterprise/meta/general/main_header.php:357 +#: ../../enterprise/meta/general/main_header.php:430 +#: ../../enterprise/meta/general/main_menu.php:480 +#: ../../enterprise/meta/general/main_menu.php:551 +msgid "Server management" +msgstr "GestiĆ³n de servidores" + +#: ../../enterprise/meta/general/main_header.php:363 +#: ../../enterprise/meta/general/main_menu.php:500 +msgid "Command Center" +msgstr "command center" + +#: ../../enterprise/meta/general/main_header.php:369 +#: ../../enterprise/meta/general/main_menu.php:588 ../../godmode/menu.php:379 +msgid "License" +msgstr "Licencia" + +#: ../../enterprise/meta/general/main_header.php:375 +#: ../../enterprise/meta/general/main_menu.php:594 +msgid "Metasetup" +msgstr "Metasetup" + +#: ../../enterprise/meta/general/main_header.php:381 +#: ../../enterprise/meta/general/main_header.php:448 +#: ../../enterprise/meta/general/main_menu.php:600 +#: ../../enterprise/meta/general/main_menu.php:620 ../../godmode/menu.php:398 +#: ../../godmode/menu.php:511 ../../general/links_menu.php:17 +msgid "Links" +msgstr "Enlaces" + +#: ../../enterprise/meta/general/main_header.php:458 +#: ../../enterprise/meta/general/main_menu.php:630 ../../godmode/extensions.php:28 +msgid "Extensions" +msgstr "Extensiones" + +#: ../../enterprise/meta/general/main_header.php:492 +msgid "Audit Logs" +msgstr "Registros de auditorĆ­a" + +#: ../../enterprise/meta/general/logon_ok.php:66 +#: ../../enterprise/godmode/reporting/graph_template_list.php:128 +#: ../../enterprise/godmode/reporting/graph_template_editor.php:103 +#: ../../enterprise/godmode/reporting/graph_template_wizard.php:144 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:272 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:285 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:306 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:319 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:340 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:353 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:374 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:387 +#: ../../enterprise/godmode/reporting/graph_template_item_editor.php:74 +#: ../../enterprise/godmode/reporting/mysql_builder.php:75 +#: ../../enterprise/godmode/reporting/mysql_builder.php:202 +#: ../../enterprise/operation/agentes/transactional_map.php:70 +#: ../../enterprise/operation/agentes/manage_transmap.php:172 +#: ../../enterprise/operation/agentes/manage_transmap_creation.php:169 +#: ../../enterprise/operation/agentes/manage_transmap_creation.php:349 +#: ../../enterprise/operation/agentes/manage_transmap_creation.php:471 +#: ../../godmode/reporting/graph_builder.php:366 +#: ../../godmode/reporting/graph_container.php:118 +#: ../../godmode/reporting/graphs.php:129 +#: ../../godmode/reporting/reporting_builder.php:572 +#: ../../godmode/reporting/reporting_builder.php:579 +#: ../../godmode/reporting/reporting_builder.php:592 +#: ../../godmode/reporting/reporting_builder.php:3515 +#: ../../godmode/reporting/reporting_builder.php:3522 +#: ../../godmode/reporting/reporting_builder.php:3535 +#: ../../godmode/reporting/reporting_builder.php:3626 +#: ../../godmode/reporting/reporting_builder.php:3633 +#: ../../godmode/reporting/reporting_builder.php:3649 +#: ../../godmode/reporting/reporting_builder.php:3678 ../../operation/menu.php:311 +#: ../../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 +msgid "Reporting" +msgstr "Informes" + +#: ../../enterprise/meta/general/logon_ok.php:99 +#: ../../enterprise/meta/general/main_menu.php:581 +#: ../../enterprise/meta/general/main_menu.php:611 +#: ../../enterprise/godmode/policies/configure_policy.php:38 +#: ../../enterprise/godmode/servers/HA_cluster.php:70 +#: ../../enterprise/include/functions_policies.php:3714 +#: ../../godmode/update_manager/update_manager.php:57 +#: ../../godmode/update_manager/update_manager.php:87 +#: ../../godmode/agentes/configurar_agente.php:391 +#: ../../godmode/agentes/configurar_agente.php:696 ../../godmode/menu.php:317 +#: ../../godmode/menu.php:324 ../../godmode/module_library/module_library_view.php:48 +#: ../../operation/agentes/estado_agente.php:201 +#: ../../operation/gis_maps/render_view.php:173 +msgid "Setup" +msgstr "ConfiguraciĆ³n" + +#: ../../enterprise/meta/general/noaccesssaml.php:135 ../../general/noaccesssaml.php:135 +msgid "" +"Access to this page is restricted to authorized users SAML only, please contact " +"system administrator if you need assistance." +msgstr "" +"El acceso a esta pĆ”gina estĆ” restringido solo a los los usuarios SAML, pĆ³ngase en " +"contacto con el administrador del sistema si necesita ayuda." + +#: ../../enterprise/meta/general/noaccesssaml.php:137 ../../general/noaccesssaml.php:137 +#, php-format +msgid "" +"Please make sure you have SAML authentication properly configured. For more " +"information the error to access this page are recorded in security logs of %s System " +"Database" +msgstr "" +"AsegĆŗrese de que la autenticaciĆ³n SAML esta configurada correctamente. Para mĆ”s " +"informaciĆ³n, el error de acceso a esta pĆ”gina estĆ” grabado en los logs de seguridad " +"de la base de datos del sistema de %s" + +#: ../../enterprise/meta/general/noaccess.php:135 ../../general/noaccess.php:152 +msgid "" +"Access to this page is restricted to authorized users only, please contact system " +"administrator if you need assistance." +msgstr "" +"El acceso a esta pĆ”gina estĆ” restringido a usuarios autorizados, pĆ³ngase en contacto " +"con el administrador del sistema si necesita ayuda." + +#: ../../enterprise/meta/general/noaccess.php:137 ../../general/noaccess.php:154 +#, php-format +msgid "" +"Please know that all attempts to access this page are recorded in security logs of %s " +"System Database" +msgstr "" +"Todos los intentos de acceso a estĆ” pĆ”gina se grabarĆ”n en los logs de seguridad de la " +"base de datos del sistema de %s" + +#: ../../enterprise/meta/general/main_menu.php:229 +#: ../../enterprise/godmode/agentes/configurar_agente.php:88 +#: ../../enterprise/godmode/policies/policies.php:539 +#: ../../enterprise/include/functions_reporting_csv.php:754 +#: ../../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:712 +#: ../../godmode/setup/setup_integria.php:314 ../../include/functions_reports.php:878 +#: ../../include/functions_reports.php:885 ../../include/functions_reports.php:886 +#: ../../include/functions_reports.php:890 ../../include/functions_reporting.php:2734 +msgid "Inventory" +msgstr "Inventario" + +#: ../../enterprise/meta/general/main_menu.php:320 +#: ../../operation/messages/message_list.php:90 +#: ../../operation/messages/message_edit.php:103 ../../operation/menu.php:514 +msgid "Messages" +msgstr "Mensajes" + +#: ../../enterprise/meta/general/main_menu.php:411 ../../enterprise/godmode/menu.php:257 +msgid "Alert correlation" +msgstr "CorrelaciĆ³n de alertas" + +#: ../../enterprise/meta/general/main_menu.php:431 +#: ../../enterprise/meta/general/main_menu.php:512 +msgid "Centralised management" +msgstr "GestiĆ³n centralizada" + +#: ../../enterprise/meta/general/main_menu.php:486 ../../godmode/menu.php:189 +#: ../../godmode/massive/massive_operations.php:329 +msgid "Bulk operations" +msgstr "Operaciones masivas" + +#: ../../enterprise/meta/general/main_menu.php:492 +msgid "Agent operations" +msgstr "Operaciones del agente" + +#: ../../enterprise/meta/general/main_menu.php:675 ../../godmode/menu.php:396 +msgid "System audit log" +msgstr "Logs de auditorĆ­a del sistema" + +#: ../../enterprise/meta/general/login_page.php:109 ../../general/login_page.php:307 +msgid "Authentication code" +msgstr "CĆ³digo de autentificaciĆ³n" + +#: ../../enterprise/meta/general/login_page.php:112 +#: ../../mobile/include/user.class.php:496 ../../general/login_page.php:310 +msgid "Check code" +msgstr "CĆ³digo de comprobaciĆ³n" + +#: ../../enterprise/meta/general/login_page.php:146 +#: ../../enterprise/meta/general/login_page.php:187 +#: ../../mobile/include/user.class.php:407 ../../general/login_page.php:291 +msgid "Login" +msgstr "Iniciar sesiĆ³n" + +#: ../../enterprise/meta/general/login_page.php:154 +#: ../../mobile/include/user.class.php:427 ../../general/login_page.php:259 +msgid "Login with SAML" +msgstr "Entrar con SAML" + +#: ../../enterprise/meta/general/login_page.php:195 ../../general/login_page.php:334 +#: ../../general/login_page.php:337 +msgid "Forgot your password?" +msgstr "ĀæHas olvidado tu contraseƱa?" + +#: ../../enterprise/meta/general/login_page.php:209 +#: ../../include/functions_config.php:2440 +msgid "PANDORA FMS NEXT GENERATION" +msgstr "PANDORA FMS NEXT GENERATION" + +#: ../../enterprise/meta/general/login_page.php:235 +#: ../../enterprise/meta/general/login_page.php:238 +#: ../../enterprise/meta/general/login_page.php:252 +#: ../../enterprise/meta/general/login_page.php:255 +#: ../../enterprise/meta/general/login_page.php:272 +#: ../../enterprise/meta/general/login_page.php:275 ../../general/login_page.php:340 +#: ../../general/login_page.php:343 ../../general/login_page.php:428 +#: ../../general/login_page.php:431 ../../general/login_page.php:445 +#: ../../general/login_page.php:448 ../../general/login_page.php:465 +#: ../../general/login_page.php:468 +msgid "Password reset" +msgstr "Restablecer contraseƱa" + +#: ../../enterprise/meta/general/login_page.php:242 ../../general/login_page.php:435 +msgid "INFO" +msgstr "INFO" + +#: ../../enterprise/meta/general/login_page.php:243 ../../general/login_page.php:436 +msgid "An email has been sent to your email address" +msgstr "Se ha enviado un email a su direcciĆ³n de correo electrĆ³nico" + +#: ../../enterprise/meta/general/login_page.php:279 ../../general/login_page.php:472 +msgid "SUCCESS" +msgstr "CORRECTO" + +#: ../../enterprise/meta/general/login_page.php:294 +#: ../../enterprise/meta/general/login_page.php:297 +#: ../../enterprise/include/functions_login.php:141 ../../general/login_page.php:487 +#: ../../general/login_page.php:490 ../../general/login_page.php:644 +#: ../../general/login_page.php:647 +msgid "Login failed" +msgstr "Error de inicio de sesiĆ³n" + +#: ../../enterprise/meta/general/login_page.php:319 +#: ../../enterprise/meta/general/login_page.php:322 +#: ../../enterprise/meta/general/login_page.php:326 ../../general/login_page.php:512 +#: ../../general/login_page.php:515 ../../general/login_page.php:519 +msgid "Logged out" +msgstr "Desconectado" + +#: ../../enterprise/meta/general/login_page.php:327 +#: ../../mobile/include/user.class.php:365 ../../general/login_page.php:521 +#, php-format +msgid "" +"Your session has ended. Please close your browser window to close this %s session." +msgstr "La sesiĆ³n ha terminado. Cierre el navegador para cerrar la sesiĆ³n de %s." + +#: ../../enterprise/load_enterprise.php:564 ../../godmode/setup/license.php:83 +msgid "License updated" +msgstr "Licencia actualizada" + +#: ../../enterprise/load_enterprise.php:565 +msgid "Failed while updating license." +msgstr "Error al actualizar la licencia." + +#: ../../enterprise/load_enterprise.php:590 ../../enterprise/load_enterprise.php:655 +msgid "Invalid licence." +msgstr "Licencia no vĆ”lida" + +#: ../../enterprise/load_enterprise.php:590 +msgid "Please contact your system administrator." +msgstr "Por favor, contacta con el administrador del sistema." + +#: ../../enterprise/load_enterprise.php:655 +#, php-format +msgid "Please contact %s for a valid licence." +msgstr "PĆ³ngase en contacto con %s para obtener una licencia vĆ”lida." + +#: ../../enterprise/load_enterprise.php:656 +#, php-format +msgid "Or disable %s enterprise" +msgstr "O desabilite %s enterprise" + +#: ../../enterprise/load_enterprise.php:754 +#: ../../enterprise/godmode/reporting/aws_view.php:181 +#: ../../enterprise/godmode/wizards/Cloud.class.php:325 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3174 +#: ../../godmode/setup/license.php:165 ../../mobile/operation/events.php:858 +#: ../../include/ajax/alert_list.ajax.php:280 ../../include/ajax/alert_list.ajax.php:306 +#: ../../operation/agentes/alerts_status.php:429 +#: ../../operation/snmpconsole/snmp_view.php:1027 +#: ../../operation/snmpconsole/snmp_view.php:1217 +#: ../../operation/snmpconsole/snmp_view.php:1267 +msgid "Validate" +msgstr "Validar" + +#: ../../enterprise/load_enterprise.php:758 ../../enterprise/load_enterprise.php:1053 +msgid "Request new licence" +msgstr "Solicitar una nueva licencia" + +#: ../../enterprise/load_enterprise.php:837 +msgid "" +"Metaconsole unreached

This node " +"has a metaconsole license and cannot contact with the metaconsole." +msgstr "" +"No se pudo conectar con la Metaconsola " +"

Este nodo tiene una licencia de Metaconsola pero no pudo establecer contacto." + +#: ../../enterprise/load_enterprise.php:854 ../../enterprise/load_enterprise.php:860 +#: ../../enterprise/load_enterprise.php:876 +#, php-format +msgid "" +"License exceeded

This license " +"allows %d agents and you have %d agents configured." +msgstr "" +"Ha excedido los tƩrminos de la licencia " +"

Esta licencia permite %d agentes y tiene %d agentes configurados." + +#: ../../enterprise/load_enterprise.php:855 ../../enterprise/load_enterprise.php:862 +#: ../../enterprise/load_enterprise.php:871 ../../enterprise/load_enterprise.php:878 +#: ../../enterprise/load_enterprise.php:890 +#, php-format +msgid "Please contact %s to extend the license." +msgstr "PĆ³ngase en contacto con %s para ampliar la licencia." + +#: ../../enterprise/load_enterprise.php:861 ../../enterprise/load_enterprise.php:863 +#: ../../enterprise/load_enterprise.php:877 ../../enterprise/load_enterprise.php:879 +#: ../../enterprise/load_enterprise.php:906 ../../enterprise/load_enterprise.php:912 +msgid "This console will work in limited mode. Enterprise features will not work." +msgstr "" +"Esta consola funcionarĆ” en modo limitado. Las funcionalidades Enterprise no " +"funcionarĆ”n." + +#: ../../enterprise/load_enterprise.php:870 +#, php-format +msgid "" +"License exceeded

This license " +"allows %d agents and you have %d agents configured." +msgstr "" +"Licencia superada

Esta licencia " +"permite %d agentes y tiene %d agentes configurados." + +#: ../../enterprise/load_enterprise.php:889 +#, php-format +msgid "" +"License exceeded

This license " +"allows %d modules and you have %d modules configured." +msgstr "" +"Ha excedido los tƩrminos de la licencia " +"

Esta licencia permite %d mĆ³dulos y tiene %d mĆ³dulos configurados." + +#: ../../enterprise/load_enterprise.php:899 ../../enterprise/load_enterprise.php:905 +msgid "" +"This license has expired.

You can " +"not get updates until you renew the license." +msgstr "" +"Licencia caducada.

No podrĆ”s " +"actualizar Pandora FMS hasta que no renueves la licencia." + +#: ../../enterprise/load_enterprise.php:900 ../../enterprise/load_enterprise.php:907 +#, php-format +msgid "Please contact %s to renew the license." +msgstr "PĆ³ngase en contacto con %s para renovar la licencia." + +#: ../../enterprise/load_enterprise.php:910 ../../enterprise/load_enterprise.php:1049 +msgid "Renew" +msgstr "Renovar" + +#: ../../enterprise/load_enterprise.php:919 +#, php-format +msgid "" +"This license is outside of support. " +"

This %s installation will continue working normally and without limitations, " +"but without support or updates." +msgstr "" +"Esta licencia no incluye soporte. " +"

La instalaciĆ³n de %s continuarĆ” funcionando con normalidad y sin lĆ­mites, " +"pero sin soporte ni actualizaciones." + +#: ../../enterprise/extensions/disabled/check_acls.php:16 +msgid "ACL users for this agent" +msgstr "Usuarios ACL para este agente" + +#: ../../enterprise/extensions/disabled/check_acls.php:49 +#: ../../enterprise/extensions/disabled/check_acls.php:136 +msgid "Agents reading" +msgstr "Lectura de agentes" + +#: ../../enterprise/extensions/disabled/check_acls.php:51 +#: ../../enterprise/extensions/disabled/check_acls.php:138 +msgid "Agents disable" +msgstr "Deshabilitar agentes" + +#: ../../enterprise/extensions/disabled/check_acls.php:52 +#: ../../enterprise/extensions/disabled/check_acls.php:139 +msgid "Alerts editing" +msgstr "EdiciĆ³n de alertas" + +#: ../../enterprise/extensions/disabled/check_acls.php:53 +#: ../../enterprise/extensions/disabled/check_acls.php:140 ../../godmode/menu.php:141 +msgid "Users management" +msgstr "GestiĆ³n de usuarios" + +#: ../../enterprise/extensions/disabled/check_acls.php:54 +#: ../../enterprise/extensions/disabled/check_acls.php:141 +msgid "Database management" +msgstr "GestiĆ³n de la BD" + +#: ../../enterprise/extensions/disabled/check_acls.php:55 +#: ../../enterprise/extensions/disabled/check_acls.php:142 +msgid "Alerts management" +msgstr "GestiĆ³n de alertas" + +#: ../../enterprise/extensions/disabled/check_acls.php:56 +#: ../../enterprise/extensions/disabled/check_acls.php:143 +msgid "Reports reading" +msgstr "Lectura de informes" + +#: ../../enterprise/extensions/disabled/check_acls.php:57 +#: ../../enterprise/extensions/disabled/check_acls.php:144 +msgid "Reports writing" +msgstr "Escritura de informes" + +#: ../../enterprise/extensions/disabled/check_acls.php:58 +#: ../../enterprise/extensions/disabled/check_acls.php:145 +msgid "Reports management" +msgstr "GestiĆ³n de informes" + +#: ../../enterprise/extensions/disabled/check_acls.php:59 +#: ../../enterprise/extensions/disabled/check_acls.php:146 +msgid "Events reading" +msgstr "Lectura de eventos" + +#: ../../enterprise/extensions/disabled/check_acls.php:60 +#: ../../enterprise/extensions/disabled/check_acls.php:147 +msgid "Events writing" +msgstr "Escritura de eventos" + +#: ../../enterprise/extensions/disabled/check_acls.php:61 +#: ../../enterprise/extensions/disabled/check_acls.php:148 +msgid "Events management" +msgstr "GestiĆ³n de eventos" + +#: ../../enterprise/extensions/disabled/check_acls.php:62 +#: ../../enterprise/extensions/disabled/check_acls.php:149 +msgid "Systems management" +msgstr "GestiĆ³n de sistemas" + +#: ../../enterprise/extensions/disabled/check_acls.php:63 +#: ../../enterprise/extensions/disabled/check_acls.php:150 +#: ../../enterprise/godmode/setup/setup_metaconsole.php:276 +#: ../../enterprise/godmode/servers/HA_cluster.php:177 +#: ../../godmode/users/user_list.php:483 ../../godmode/users/user_list.php:664 +#: ../../operation/search_users.php:62 +msgid "Admin" +msgstr "Administrador" + +#: ../../enterprise/extensions/disabled/check_acls.php:112 +msgid "There are no defined users" +msgstr "No hay usuarios definidos" + +#: ../../enterprise/extensions/disabled/check_acls.php:134 ../../godmode/menu.php:133 +msgid "Module tags" +msgstr "Etiquetas de mĆ³dulos" + +#: ../../enterprise/extensions/disabled/check_acls.php:197 +msgid "ACL module tags for the modules in this agent" +msgstr "Etiquetas del mĆ³dulo de ACL para los mĆ³dulos de este agente" + +#: ../../enterprise/extensions/disabled/check_acls.php:208 +msgid "Only admin users can see this section." +msgstr "Solo los usuarios administradores pueden ver esta secciĆ³n." + +#: ../../enterprise/extensions/disabled/check_acls.php:215 +msgid "Check ACL" +msgstr "Comprobar ACL" + +#: ../../enterprise/extensions/translate_string.php:168 +#: ../../enterprise/extensions/translate_string.php:380 +msgid "Translate string" +msgstr "Traducir cadena" + +#: ../../enterprise/extensions/vmware.php:46 +msgid "Failed to initialize VMware extension." +msgstr "Error al inicializar la extensiĆ³n VMware" + +#: ../../enterprise/extensions/vmware.php:89 +msgid "VMware View" +msgstr "Vista VMware" + +#: ../../enterprise/extensions/csv_import_group/main.php:23 +#: ../../enterprise/extensions/csv_import_group.php:69 +msgid "CSV import group" +msgstr "Importar grupos de CSV" + +#: ../../enterprise/extensions/csv_import_group/main.php:48 +#, php-format +msgid "Created group %s" +msgstr "Grupo creado %s" + +#: ../../enterprise/extensions/csv_import_group/main.php:49 +#, php-format +msgid "Could not create group %s" +msgstr "No se pudo crear el grupo %s" + +#: ../../enterprise/extensions/csv_import_group/main.php:56 +msgid "File processed" +msgstr "Archivo procesado" + +#: ../../enterprise/extensions/csv_import_group/main.php:59 +msgid "Please syncronize groups to nodes" +msgstr "Sincronice los grupos con los nodos" + +#: ../../enterprise/extensions/csv_import_group/main.php:68 +#: ../../enterprise/tools/ipam/ipam_supernet_config.php:701 +#: ../../enterprise/tools/ipam/ipam_list.php:447 +#: ../../enterprise/tools/ipam/ipam_vlan_config.php:316 +msgid "The CSV file must have the fields in the following order: " +msgstr "El archivo CSV debe tener los campos en el siguiente orden:" + +#: ../../enterprise/extensions/csv_import_group/main.php:84 +#: ../../enterprise/include/class/CSVImportAgents.class.php:146 +#: ../../enterprise/tools/ipam/ipam_network.php:115 +#: ../../enterprise/tools/ipam/ipam_supernet_config.php:719 +#: ../../enterprise/tools/ipam/ipam_list.php:50 +#: ../../enterprise/tools/ipam/ipam_vlan_config.php:393 +msgid "Upload file" +msgstr "Subir archivo" + +#: ../../enterprise/extensions/csv_import_group/main.php:87 +#: ../../enterprise/include/class/DeploymentCenter.class.php:1400 +#: ../../enterprise/include/class/CSVImportAgents.class.php:163 +#: ../../enterprise/tools/ipam/ipam_network.php:124 +#: ../../enterprise/tools/ipam/ipam_supernet_config.php:728 +#: ../../enterprise/tools/ipam/ipam_list.php:59 +#: ../../enterprise/tools/ipam/ipam_vlan_config.php:402 +msgid "Separator" +msgstr "Separador" + +#: ../../enterprise/extensions/csv_import_group/main.php:100 +#: ../../enterprise/tools/ipam/ipam_network.php:137 +#: ../../enterprise/tools/ipam/ipam_supernet_config.php:741 +#: ../../enterprise/tools/ipam/ipam_list.php:72 +#: ../../enterprise/tools/ipam/ipam_vlan_config.php:415 +msgid "Upload CSV file" +msgstr "Subir archivo CSV" + +#: ../../enterprise/extensions/csv_import_group/main.php:105 +#: ../../enterprise/include/class/CSVImportAgents.class.php:198 +#: ../../include/functions_filemanager.php:853 +msgid "Go" +msgstr "Ir" + +#: ../../enterprise/extensions/resource_registration/functions.php:61 +#, php-format +msgid "Error create '%s' policy, the name exist and there aren't free name." +msgstr "" +"Error al crear la polĆ­tica '%s', el nombre ya existe. Ese nombre no estĆ” disponible." + +#: ../../enterprise/extensions/resource_registration/functions.php:69 +#, php-format +msgid "Warning create '%s' policy, the name exist, the policy have a name %s." +msgstr "" +"PolĆ­tica de advertencia '%s' creada, el nombre existe, la polĆ­tica tiene el nombre %s." + +#: ../../enterprise/extensions/resource_registration/functions.php:78 +msgid "Error the policy haven't name." +msgstr "Error: la polĆ­tica no tiene nombre." + +#: ../../enterprise/extensions/resource_registration/functions.php:99 +#, php-format +msgid "Success create '%s' policy." +msgstr "PolĆ­tica '%s' creada correctamente" + +#: ../../enterprise/extensions/resource_registration/functions.php:100 +#, php-format +msgid "Error create '%s' policy." +msgstr "Error al crear la polĆ­tica '%s'" + +#: ../../enterprise/extensions/resource_registration/functions.php:142 +#, php-format +msgid "Error add '%s' agent. The agent does not exist" +msgstr "Error al aƱadir el agente '%s'. El agente no existe" + +#: ../../enterprise/extensions/resource_registration/functions.php:147 +#, php-format +msgid "Success add '%s' agent." +msgstr "Agente '%s' aƱadido correctamente" + +#: ../../enterprise/extensions/resource_registration/functions.php:148 +#, php-format +msgid "Error add '%s' agent." +msgstr "Error al aƱadir el agente '%s'" + +#: ../../enterprise/extensions/resource_registration/functions.php:167 +msgid "The collection does not exist" +msgstr "La colecciĆ³n no existe" + +#: ../../enterprise/extensions/resource_registration/functions.php:172 +#, php-format +msgid "Success add '%s' collection." +msgstr "ColecciĆ³n '%s' aƱadida correctamente" + +#: ../../enterprise/extensions/resource_registration/functions.php:173 +#, php-format +msgid "Error add '%s' collection." +msgstr "Error al aƱadir colecciĆ³n '%s'" + +#: ../../enterprise/extensions/resource_registration/functions.php:191 +#, php-format +msgid "Success add '%s' agent plugin." +msgstr "Plugin de agente '%s' aƱadido correctamente" + +#: ../../enterprise/extensions/resource_registration/functions.php:192 +#, php-format +msgid "Error add '%s' agent plugin." +msgstr "Error al aƱadir el plugin de agente '%s'" + +#: ../../enterprise/extensions/resource_registration/functions.php:205 +msgid "Error add the module, haven't type." +msgstr "Error al aƱadir el mĆ³dulo. No tiene tipo." + +#: ../../enterprise/extensions/resource_registration/functions.php:411 +#: ../../enterprise/extensions/resource_registration/functions.php:480 +#: ../../enterprise/extensions/resource_registration/functions.php:581 +#: ../../enterprise/extensions/resource_registration/functions.php:637 +msgid "Error add the module, error in tag component." +msgstr "Error al aƱadir el mĆ³dulo, error en el componente etiqueta." + +#: ../../enterprise/extensions/resource_registration/functions.php:693 +msgid "Error add the module plugin importation, plugin is not registered" +msgstr "Error al importar el plugin del mĆ³dulo; el plugin no estĆ” registrado." + +#: ../../enterprise/extensions/resource_registration/functions.php:703 +#, php-format +msgid "Success add '%s' module." +msgstr "MĆ³dulo '%s' aƱadido correctamente" + +#: ../../enterprise/extensions/resource_registration/functions.php:704 +#, php-format +msgid "Error add '%s' module." +msgstr "Error al aƱadir el mĆ³dulo '%s'" + +#: ../../enterprise/extensions/resource_registration/functions.php:718 +#, php-format +msgid "Error add the alert, the template '%s' don't exist." +msgstr "Error al aƱadir la alerta, la plantilla '%s' no existe." + +#: ../../enterprise/extensions/resource_registration/functions.php:731 +#: ../../enterprise/extensions/resource_registration/functions.php:749 +#, php-format +msgid "Error add the alert, the module '%s' don't exist." +msgstr "Error al aƱadir la alerta, el mĆ³dulo '%s' no existe." + +#: ../../enterprise/extensions/resource_registration/functions.php:771 +#, php-format +msgid "Success add '%s' alert." +msgstr "Alerta '%s' aƱadida correctamente" + +#: ../../enterprise/extensions/resource_registration/functions.php:772 +#, php-format +msgid "Error add '%s' alert." +msgstr "Error al aƱadir alerta '%s'" + +#: ../../enterprise/extensions/resource_registration/functions.php:798 +#, php-format +msgid "Error add the alert, the action '%s' don't exist." +msgstr "Error al aƱadir alerta; la acciĆ³n '%s' no existe." + +#: ../../enterprise/extensions/resource_registration/functions.php:817 +#, php-format +msgid "Success add '%s' action." +msgstr "AcciĆ³n '%s' aƱadida correctamente" + +#: ../../enterprise/extensions/resource_registration/functions.php:818 +#: ../../extensions/resource_registration.php:436 +#: ../../extensions/resource_registration.php:458 +#: ../../extensions/resource_registration.php:469 +#, php-format +msgid "Error add '%s' action." +msgstr "Error al aƱadir la acciĆ³n '%s'" + +#: ../../enterprise/extensions/resource_registration/functions.php:854 +msgid "The inventory module does not exist" +msgstr "El mĆ³dulo de inventario no existe" + +#: ../../enterprise/extensions/resource_registration/functions.php:859 +#, php-format +msgid "Success add '%s' inventory module." +msgstr "Ɖxito agregar el mĆ³dulo de inventario '%s'." + +#: ../../enterprise/extensions/resource_registration/functions.php:860 +#, php-format +msgid "Error add '%s' inventory module." +msgstr "Error al agregar el mĆ³dulo de inventario '%s'." + +#: ../../enterprise/extensions/vmware/vmware_view.php:61 +msgid "Top 5 VMs CPU Usage" +msgstr "Top 5 VMs del uso de CPU" + +#: ../../enterprise/extensions/vmware/vmware_view.php:70 +msgid "Top 5 VMs Memory Usage" +msgstr "Top 5 VMs del uso de memoria" + +#: ../../enterprise/extensions/vmware/vmware_view.php:82 +msgid "Top 5 VMs Provisioning Usage" +msgstr "Top 5 VMs en uso de aprovisionamiento" + +#: ../../enterprise/extensions/vmware/vmware_view.php:91 +msgid "Top 5 VMs Network Usage" +msgstr "Top 5 VMs del uso de la red" + +#: ../../enterprise/extensions/vmware/vmware_view.php:684 +msgid "Host ESX" +msgstr "Host ESX" + +#: ../../enterprise/extensions/vmware/vmware_view.php:1009 +#: ../../enterprise/include/functions_services.php:1972 +#: ../../enterprise/operation/agentes/policy_view.php:479 +#: ../../enterprise/operation/agentes/policy_view.php:485 +#: ../../enterprise/operation/agentes/tag_view.php:942 +#: ../../enterprise/operation/agentes/tag_view.php:948 +#: ../../enterprise/operation/agentes/tag_view.php:989 +#: ../../enterprise/operation/agentes/tag_view.php:995 +#: ../../mobile/operation/modules.php:548 ../../mobile/operation/modules.php:571 +#: ../../mobile/operation/modules.php:611 ../../mobile/operation/modules.php:634 +#: ../../include/functions.php:1360 ../../include/functions.php:1399 +#: ../../include/functions_modules.php:2883 ../../include/functions_modules.php:2889 +#: ../../include/functions_modules.php:4098 ../../include/functions_modules.php:4130 +#: ../../include/functions_ui.php:3828 ../../include/functions_ui.php:3894 +#: ../../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:1579 #: ../../operation/agentes/status_monitor.php:1585 #: ../../operation/agentes/status_monitor.php:1662 #: ../../operation/agentes/status_monitor.php:1668 #: ../../operation/agentes/pandora_networkmap.view.php:1772 #: ../../operation/agentes/pandora_networkmap.view.php:1780 -#: ../../include/class/Tree.class.php:655 ../../include/lib/Module.php:570 -#: ../../include/functions_events.php:56 ../../include/functions_events.php:108 -#: ../../include/functions_events.php:171 -#: ../../include/functions_modules.php:2849 -#: ../../include/functions_modules.php:2855 -#: ../../include/functions_modules.php:4060 -#: ../../include/functions_modules.php:4092 ../../include/functions_ui.php:3763 -#: ../../include/functions_ui.php:3829 ../../include/functions.php:1360 -#: ../../include/functions.php:1399 -#: ../../enterprise/operation/agentes/tag_view.php:942 -#: ../../enterprise/operation/agentes/tag_view.php:948 -#: ../../enterprise/operation/agentes/tag_view.php:989 -#: ../../enterprise/operation/agentes/tag_view.php:995 -#: ../../enterprise/operation/agentes/policy_view.php:479 -#: ../../enterprise/operation/agentes/policy_view.php:485 -#: ../../enterprise/include/functions_services.php:1968 -#: ../../enterprise/extensions/vmware/vmware_view.php:1009 -#: ../../mobile/operation/modules.php:548 ../../mobile/operation/modules.php:571 -#: ../../mobile/operation/modules.php:611 ../../mobile/operation/modules.php:634 +#: ../../operation/search_modules.php:114 ../../operation/search_modules.php:141 +#: ../../operation/events/events.php:543 ../../operation/events/events.php:620 +#: ../../operation/events/events.php:646 msgid "NORMAL" msgstr "NORMAL" -#: ../../operation/search_modules.php:120 ../../operation/search_modules.php:149 -#: ../../operation/events/events.php:2035 ../../operation/events/events.php:2133 -#: ../../operation/events/events.php:2159 +#: ../../enterprise/extensions/vmware/vmware_view.php:1014 +#: ../../enterprise/include/functions_services.php:1980 +#: ../../enterprise/operation/agentes/policy_view.php:473 +#: ../../enterprise/operation/agentes/policy_view.php:490 +#: ../../enterprise/operation/agentes/tag_view.php:956 +#: ../../enterprise/operation/agentes/tag_view.php:962 +#: ../../enterprise/operation/agentes/tag_view.php:1005 +#: ../../enterprise/operation/agentes/tag_view.php:1011 +#: ../../mobile/operation/modules.php:554 ../../mobile/operation/modules.php:579 +#: ../../mobile/operation/modules.php:617 ../../mobile/operation/modules.php:642 +#: ../../include/functions.php:1348 ../../include/functions.php:1380 +#: ../../include/functions_modules.php:2877 ../../include/functions_modules.php:2893 +#: ../../include/functions_modules.php:4102 ../../include/functions_modules.php:4122 +#: ../../include/functions_ui.php:3834 ../../include/functions_ui.php:3904 +#: ../../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:1593 #: ../../operation/agentes/status_monitor.php:1601 #: ../../operation/agentes/status_monitor.php:1678 #: ../../operation/agentes/status_monitor.php:1684 #: ../../operation/agentes/pandora_networkmap.view.php:1766 #: ../../operation/agentes/pandora_networkmap.view.php:1785 -#: ../../include/class/Tree.class.php:625 ../../include/lib/Module.php:554 -#: ../../include/functions_events.php:59 ../../include/functions_events.php:112 -#: ../../include/functions_events.php:156 -#: ../../include/functions_modules.php:2843 -#: ../../include/functions_modules.php:2859 -#: ../../include/functions_modules.php:4064 -#: ../../include/functions_modules.php:4084 ../../include/functions_ui.php:3769 -#: ../../include/functions_ui.php:3839 ../../include/functions.php:1348 -#: ../../include/functions.php:1380 -#: ../../enterprise/operation/agentes/tag_view.php:956 -#: ../../enterprise/operation/agentes/tag_view.php:962 -#: ../../enterprise/operation/agentes/tag_view.php:1005 -#: ../../enterprise/operation/agentes/tag_view.php:1011 -#: ../../enterprise/operation/agentes/policy_view.php:473 -#: ../../enterprise/operation/agentes/policy_view.php:490 -#: ../../enterprise/include/functions_services.php:1976 -#: ../../enterprise/extensions/vmware/vmware_view.php:1014 -#: ../../mobile/operation/modules.php:554 ../../mobile/operation/modules.php:579 -#: ../../mobile/operation/modules.php:617 ../../mobile/operation/modules.php:642 +#: ../../operation/search_modules.php:120 ../../operation/search_modules.php:149 +#: ../../operation/events/events.php:518 ../../operation/events/events.php:626 +#: ../../operation/events/events.php:651 msgid "CRITICAL" msgstr "CRƍTICO" -#: ../../operation/search_modules.php:126 ../../operation/search_modules.php:157 -#: ../../operation/events/events.php:2065 ../../operation/events/events.php:2121 -#: ../../operation/events/events.php:2176 +#: ../../enterprise/extensions/vmware/vmware_view.php:1019 +#: ../../enterprise/include/functions_services.php:1988 +#: ../../enterprise/include/functions_login.php:34 +#: ../../enterprise/operation/agentes/policy_view.php:476 +#: ../../enterprise/operation/agentes/policy_view.php:495 +#: ../../enterprise/operation/agentes/tag_view.php:970 +#: ../../enterprise/operation/agentes/tag_view.php:976 +#: ../../enterprise/operation/agentes/tag_view.php:1021 +#: ../../enterprise/operation/agentes/tag_view.php:1027 +#: ../../mobile/operation/modules.php:560 ../../mobile/operation/modules.php:587 +#: ../../mobile/operation/modules.php:623 ../../mobile/operation/modules.php:650 +#: ../../include/functions.php:1351 ../../include/functions.php:1387 +#: ../../include/functions_modules.php:2880 ../../include/functions_modules.php:2897 +#: ../../include/functions_modules.php:4106 ../../include/functions_modules.php:4138 +#: ../../include/functions_ui.php:3822 ../../include/functions_ui.php:3899 +#: ../../include/class/Tree.class.php:633 ../../include/class/NetworkMap.class.php:2805 +#: ../../include/lib/Module.php:560 ../../include/functions_events.php:78 +#: ../../include/functions_events.php:112 ../../include/functions_events.php:182 #: ../../operation/agentes/status_monitor.php:1609 #: ../../operation/agentes/status_monitor.php:1617 #: ../../operation/agentes/status_monitor.php:1694 #: ../../operation/agentes/status_monitor.php:1700 #: ../../operation/agentes/pandora_networkmap.view.php:1769 #: ../../operation/agentes/pandora_networkmap.view.php:1790 -#: ../../include/class/Tree.class.php:633 -#: ../../include/class/NetworkMap.class.php:2805 ../../include/lib/Module.php:558 -#: ../../include/functions_events.php:70 ../../include/functions_events.php:104 -#: ../../include/functions_events.php:174 -#: ../../include/functions_modules.php:2846 -#: ../../include/functions_modules.php:2863 -#: ../../include/functions_modules.php:4068 -#: ../../include/functions_modules.php:4100 ../../include/functions_ui.php:3757 -#: ../../include/functions_ui.php:3834 ../../include/functions.php:1351 -#: ../../include/functions.php:1387 -#: ../../enterprise/operation/agentes/tag_view.php:970 -#: ../../enterprise/operation/agentes/tag_view.php:976 -#: ../../enterprise/operation/agentes/tag_view.php:1021 -#: ../../enterprise/operation/agentes/tag_view.php:1027 -#: ../../enterprise/operation/agentes/policy_view.php:476 -#: ../../enterprise/operation/agentes/policy_view.php:495 -#: ../../enterprise/include/functions_services.php:1984 -#: ../../enterprise/include/functions_login.php:34 -#: ../../enterprise/extensions/vmware/vmware_view.php:1019 -#: ../../mobile/operation/modules.php:560 ../../mobile/operation/modules.php:587 -#: ../../mobile/operation/modules.php:623 ../../mobile/operation/modules.php:650 +#: ../../operation/search_modules.php:126 ../../operation/search_modules.php:157 +#: ../../operation/events/events.php:548 ../../operation/events/events.php:614 +#: ../../operation/events/events.php:668 msgid "WARNING" msgstr "ADVERTENCIA" -#: ../../operation/search_modules.php:132 ../../operation/search_modules.php:141 -#: ../../operation/search_modules.php:149 ../../operation/search_modules.php:157 -#: ../../operation/events/events.php:2032 ../../operation/events/events.php:2140 -#: ../../operation/events/events.php:2151 +#: ../../enterprise/extensions/vmware/vmware_view.php:1024 +#: ../../enterprise/include/functions_services.php:2003 +#: ../../enterprise/operation/agentes/policy_view.php:485 +#: ../../enterprise/operation/agentes/policy_view.php:490 +#: ../../enterprise/operation/agentes/policy_view.php:495 +#: ../../enterprise/operation/agentes/tag_view.php:989 +#: ../../enterprise/operation/agentes/tag_view.php:995 +#: ../../enterprise/operation/agentes/tag_view.php:1005 +#: ../../enterprise/operation/agentes/tag_view.php:1011 +#: ../../enterprise/operation/agentes/tag_view.php:1021 +#: ../../enterprise/operation/agentes/tag_view.php:1027 +#: ../../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:1364 ../../include/functions.php:1390 +#: ../../include/functions_modules.php:2889 ../../include/functions_modules.php:2893 +#: ../../include/functions_modules.php:2897 ../../include/functions_modules.php:4110 +#: ../../include/functions_ui.php:3841 ../../include/functions_ui.php:3919 +#: ../../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:1625 #: ../../operation/agentes/status_monitor.php:1633 #: ../../operation/agentes/status_monitor.php:1662 @@ -7253,2994 +13207,3398 @@ msgstr "ADVERTENCIA" #: ../../operation/agentes/pandora_networkmap.view.php:1780 #: ../../operation/agentes/pandora_networkmap.view.php:1785 #: ../../operation/agentes/pandora_networkmap.view.php:1790 -#: ../../include/class/Tree.class.php:639 ../../include/lib/Module.php:561 -#: ../../include/functions_events.php:73 ../../include/functions_events.php:117 -#: ../../include/functions_events.php:177 -#: ../../include/functions_modules.php:2855 -#: ../../include/functions_modules.php:2859 -#: ../../include/functions_modules.php:2863 -#: ../../include/functions_modules.php:4072 ../../include/functions_ui.php:3776 -#: ../../include/functions_ui.php:3854 ../../include/functions.php:1364 -#: ../../include/functions.php:1390 -#: ../../enterprise/operation/agentes/tag_view.php:989 -#: ../../enterprise/operation/agentes/tag_view.php:995 -#: ../../enterprise/operation/agentes/tag_view.php:1005 -#: ../../enterprise/operation/agentes/tag_view.php:1011 -#: ../../enterprise/operation/agentes/tag_view.php:1021 -#: ../../enterprise/operation/agentes/tag_view.php:1027 -#: ../../enterprise/operation/agentes/policy_view.php:485 -#: ../../enterprise/operation/agentes/policy_view.php:490 -#: ../../enterprise/operation/agentes/policy_view.php:495 -#: ../../enterprise/include/functions_services.php:1999 -#: ../../enterprise/extensions/vmware/vmware_view.php:1024 -#: ../../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 +#: ../../operation/search_modules.php:132 ../../operation/search_modules.php:141 +#: ../../operation/search_modules.php:149 ../../operation/search_modules.php:157 +#: ../../operation/events/events.php:554 ../../operation/events/events.php:633 +#: ../../operation/events/events.php:673 msgid "UNKNOWN" msgstr "DESCONOCIDO" -#: ../../operation/search_modules.php:141 ../../operation/search_modules.php:149 -#: ../../operation/search_modules.php:157 -#: ../../operation/agentes/status_monitor.php:1662 -#: ../../operation/agentes/status_monitor.php:1668 -#: ../../operation/agentes/status_monitor.php:1678 -#: ../../operation/agentes/status_monitor.php:1684 -#: ../../operation/agentes/status_monitor.php:1694 -#: ../../operation/agentes/status_monitor.php:1700 -#: ../../operation/agentes/pandora_networkmap.view.php:1780 -#: ../../operation/agentes/pandora_networkmap.view.php:1785 -#: ../../operation/agentes/pandora_networkmap.view.php:1790 -#: ../../include/functions_modules.php:2855 -#: ../../include/functions_modules.php:2859 -#: ../../include/functions_modules.php:2863 -#: ../../enterprise/operation/agentes/tag_view.php:989 -#: ../../enterprise/operation/agentes/tag_view.php:995 -#: ../../enterprise/operation/agentes/tag_view.php:1005 -#: ../../enterprise/operation/agentes/tag_view.php:1011 -#: ../../enterprise/operation/agentes/tag_view.php:1021 -#: ../../enterprise/operation/agentes/tag_view.php:1027 -#: ../../enterprise/operation/agentes/policy_view.php:485 -#: ../../enterprise/operation/agentes/policy_view.php:490 -#: ../../enterprise/operation/agentes/policy_view.php:495 -#: ../../enterprise/operation/agentes/transactional_map.php:210 -#: ../../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 -msgid "Last status" -msgstr "ƚltimo estado" +#: ../../enterprise/extensions/vmware/vmware_view.php:1036 +msgid "CPU Usage" +msgstr "Uso de CPU" -#: ../../operation/gis_maps/ajax.php:237 ../../operation/gis_maps/ajax.php:275 -#: ../../operation/gis_maps/ajax.php:444 -msgid "Position (Lat, Long, Alt)" -msgstr "PosiciĆ³n (Lat, Long, Alt)" +#: ../../enterprise/extensions/vmware/vmware_view.php:1046 +msgid "Memory Usage" +msgstr "Uso de memoria" -#: ../../operation/gis_maps/ajax.php:238 -msgid "Start contact" -msgstr "Inicio de contacto" +#: ../../enterprise/extensions/vmware/vmware_view.php:1056 +msgid "Disk I/O Rate" +msgstr "Ratio lectura/escritura de disco" -#: ../../operation/gis_maps/ajax.php:239 ../../operation/gis_maps/ajax.php:349 -#: ../../operation/gis_maps/ajax.php:466 ../../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/estado_generalagente.php:364 -#: ../../operation/agentes/ver_agente.php:1028 ../../include/ajax/module.php:984 -#: ../../include/functions_events.php:4499 -#: ../../include/functions_treeview.php:668 -#: ../../enterprise/operation/agentes/tag_view.php:609 -#: ../../enterprise/operation/agentes/policy_view.php:399 -#: ../../enterprise/operation/agentes/ver_agente.php:77 -#: ../../enterprise/meta/agentsearch.php:142 -#: ../../enterprise/godmode/reporting/aws_view.php:61 -#: ../../extensions/users_connected.php:146 ../../mobile/operation/agent.php:193 -#: ../../mobile/operation/agents.php:99 ../../mobile/operation/agents.php:417 -#: ../../mobile/operation/agents.php:419 ../../mobile/operation/agents.php:422 -#: ../../godmode/agentes/planned_downtime.editor.php:923 -#: ../../godmode/users/user_list.php:481 -msgid "Last contact" -msgstr "ƚltimo contacto" +#: ../../enterprise/extensions/vmware/vmware_view.php:1066 +msgid "Network Usage" +msgstr "Uso de red" -#: ../../operation/gis_maps/ajax.php:240 -msgid "Num reports" -msgstr "Informes numĆ©ricos" +#: ../../enterprise/extensions/vmware/vmware_view.php:1169 +msgid "Settings updated " +msgstr "Ajustes actualizados " -#: ../../operation/gis_maps/ajax.php:242 ../../operation/agentes/gis_view.php:225 -msgid "Manual placement" -msgstr "ColocaciĆ³n manual" +#: ../../enterprise/extensions/vmware/vmware_view.php:1171 +msgid "No changes in settings " +msgstr "No hay cambios en los ajustes " -#: ../../operation/gis_maps/ajax.php:279 ../../operation/gis_maps/ajax.php:448 -msgid "Default position of map." -msgstr "PosiciĆ³n por defecto del mapa" +#: ../../enterprise/extensions/vmware/vmware_view.php:1179 +msgid "CPU usage graphs" +msgstr "GrĆ”ficas de uso de CPU" -#: ../../operation/gis_maps/ajax.php:290 ../../include/functions_events.php:4485 -#: ../../include/functions_treeview.php:640 -#: ../../include/functions_reporting_html.php:1521 -#: ../../include/functions_reporting_html.php:3875 -#: ../../include/functions_reporting_html.php:3969 -#: ../../enterprise/include/functions_reporting_csv.php:718 -#: ../../enterprise/meta/include/functions_wizard_meta.php:210 -#: ../../enterprise/meta/include/functions_wizard_meta.php:214 -#: ../../enterprise/meta/include/functions_wizard_meta.php:482 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1468 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1816 -#: ../../godmode/servers/modificar_server.php:62 -#: ../../godmode/agentes/agent_manager.php:301 -msgid "IP Address" -msgstr "DirecciĆ³n IP" +#: ../../enterprise/extensions/vmware/vmware_view.php:1180 +#: ../../enterprise/extensions/vmware/vmware_view.php:1186 +#: ../../enterprise/extensions/vmware/vmware_view.php:1192 +#: ../../enterprise/extensions/vmware/vmware_view.php:1198 +msgid "Force minimum value" +msgstr "Forzar valor mĆ­nimo" -#: ../../operation/gis_maps/ajax.php:316 -#: ../../include/functions_reporting_html.php:1541 -#: ../../enterprise/include/functions_reporting_csv.php:718 -#: ../../enterprise/include/functions_reporting_csv.php:2409 -#: ../../enterprise/include/functions_reporting_csv.php:2423 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2266 -#: ../../extensions/api_checker.php:220 -#: ../../godmode/reporting/reporting_builder.item_editor.php:75 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2272 -#: ../../godmode/events/event_responses.editor.php:156 -#: ../../godmode/events/event_responses.editor.php:164 -msgid "URL" -msgstr "URL" +#: ../../enterprise/extensions/vmware/vmware_view.php:1182 +#: ../../enterprise/extensions/vmware/vmware_view.php:1188 +#: ../../enterprise/extensions/vmware/vmware_view.php:1194 +#: ../../enterprise/extensions/vmware/vmware_view.php:1200 +msgid "Force maximum value" +msgstr "Forzar valor mĆ”ximo" -#: ../../operation/gis_maps/ajax.php:339 -msgid "Satellite Version" -msgstr "VersiĆ³n satĆ©lite" +#: ../../enterprise/extensions/vmware/vmware_view.php:1185 +msgid "Memory usage graphs" +msgstr "GrĆ”ficos de uso de memoria" -#: ../../operation/gis_maps/ajax.php:341 -#: ../../operation/agentes/estado_generalagente.php:227 -#: ../../include/functions_treeview.php:731 -#: ../../enterprise/views/cluster/view.php:309 -msgid "Agent Version" -msgstr "VersiĆ³n del agente" +#: ../../enterprise/extensions/vmware/vmware_view.php:1191 +msgid "Provisioning Usage graphs" +msgstr "GrĆ”ficos de uso de aprovisionamiento" -#: ../../operation/gis_maps/ajax.php:351 ../../operation/gis_maps/ajax.php:362 -#: ../../operation/gis_maps/ajax.php:468 ../../operation/gis_maps/ajax.php:479 -#: ../../operation/agentes/estado_generalagente.php:369 -#: ../../include/functions_cron.php:869 ../../include/functions_treeview.php:660 -#: ../../include/functions_ui.php:549 -#: ../../enterprise/tools/ipam/ipam_ajax.php:502 -#: ../../enterprise/tools/ipam/ipam_list.php:675 -#: ../../enterprise/include/functions_tasklist.php:572 -#: ../../enterprise/include/functions_ipam.php:2076 -#: ../../enterprise/include/functions_ipam.php:2077 -#: ../../enterprise/include/functions_ipam.php:2078 -#: ../../godmode/snmpconsole/snmp_alert.php:1330 ../../godmode/db/db_main.php:189 -msgid "Never" -msgstr "Nunca" +#: ../../enterprise/extensions/vmware/vmware_view.php:1197 +msgid "Network usage graphs" +msgstr "GrĆ”ficos de uso de red" -#: ../../operation/gis_maps/ajax.php:360 ../../operation/gis_maps/ajax.php:477 -#: ../../operation/agentes/estado_agente.php:745 -#: ../../operation/agentes/estado_generalagente.php:364 -#: ../../include/functions_treeview.php:668 -#: ../../enterprise/operation/agentes/tag_view.php:601 -#: ../../enterprise/include/functions_reporting_csv.php:718 -msgid "Remote" -msgstr "Remoto" +#: ../../enterprise/extensions/vmware/vmware_view.php:1208 +msgid "Map items" +msgstr "Elementos del mapa" -#: ../../operation/gis_maps/ajax.php:385 ../../operation/gis_maps/ajax.php:502 -msgid "Number of non-validated critical events" -msgstr "Numero de eventos crĆ­ticos no validados" +#: ../../enterprise/extensions/vmware/vmware_view.php:1209 +msgid "Show datastores" +msgstr "Mostrar datastores" -#: ../../operation/gis_maps/ajax.php:395 ../../operation/gis_maps/ajax.php:512 -msgid "Alert(s) fired" -msgstr "Alertas disparadas" +#: ../../enterprise/extensions/vmware/vmware_view.php:1216 +msgid "Show ESXis" +msgstr "Mostrar ESXis" -#: ../../operation/gis_maps/gis_map.php:30 -#: ../../operation/gis_maps/render_view.php:130 -#: ../../godmode/gis_maps/configure_gis_map.php:86 -msgid "GIS Maps list" -msgstr "Lista de mapas GIS" +#: ../../enterprise/extensions/vmware/vmware_view.php:1223 +msgid "Show VMs" +msgstr "Mostrar VMs" -#: ../../operation/gis_maps/gis_map.php:35 ../../operation/menu.php:260 -msgid "GIS Maps" -msgstr "Mapas GIS" +#: ../../enterprise/extensions/vmware/vmware_view.php:1230 +msgid "Font size (px)" +msgstr "TamaƱo de fuente (px)" -#: ../../operation/gis_maps/gis_map.php:109 -#: ../../include/functions_container.php:157 -#: ../../enterprise/meta/include/functions_autoprovision.php:644 -#: ../../enterprise/meta/advanced/servers.build_table.php:72 -#: ../../enterprise/godmode/modules/local_components.php:625 -#: ../../enterprise/godmode/reporting/reporting_builder.template_list_item.php:261 -#: ../../enterprise/godmode/alerts/alert_inventory_list.php:224 -#: ../../enterprise/godmode/policies/policies.php:409 -#: ../../enterprise/godmode/policies/policy_alerts.php:354 -#: ../../godmode/servers/plugin.php:819 -#: ../../godmode/servers/servers.build_table.php:91 -#: ../../godmode/reporting/graphs.php:323 -#: ../../godmode/reporting/reporting_builder.list_items.php:427 -#: ../../godmode/reporting/reporting_builder.php:957 -#: ../../godmode/reporting/reporting_builder.php:1156 -#: ../../godmode/alerts/alert_list.list.php:485 -#: ../../godmode/alerts/alert_templates.php:387 -#: ../../godmode/users/user_list.php:487 ../../godmode/users/profile_list.php:349 -msgid "Op." -msgstr "Op." +#: ../../enterprise/extensions/vmware/vmware_view.php:1232 +msgid "Node radius (px)" +msgstr "Radio del nodo (px)" -#: ../../operation/gis_maps/gis_map.php:200 -msgid "No maps found" -msgstr "No se encontraron mapas" +#: ../../enterprise/extensions/vmware/vmware_view.php:1234 +msgid "Node separation (rate)" +msgstr "SeparaciĆ³n de nodos (tasa)" -#: ../../operation/gis_maps/gis_map.php:219 -msgid "Caution: Do you want delete the map?" -msgstr "Cuidado: ĀæQuieres borrar el mapa?" +#: ../../enterprise/extensions/vmware/vmware_view.php:1239 +msgid "" +"Looking for VMware configuration? You can configure several tasks using Discovery " +"Applications." +msgstr "" +"ĀæEstĆ” buscando la configuraciĆ³n VMware? Puede configurar varias tareas usando las " +"aplicaciones de Discovery." -#: ../../operation/gis_maps/gis_map.php:226 -msgid "Do you want to set default the map?" -msgstr "ĀæQuieres configurar por defecto el mapa?" +#: ../../enterprise/extensions/vmware/vmware_view.php:1240 +#: ../../enterprise/extensions/vmware/vmware_view.php:1526 +#: ../../enterprise/include/class/SAPView.class.php:626 +msgid "this link" +msgstr "este enlace" -#: ../../operation/gis_maps/gis_map.php:234 -msgid "There was error on setup the default map." -msgstr "Error al configurar el mapa por defecto" +#: ../../enterprise/extensions/vmware/vmware_view.php:1247 +msgid "Graph settings" +msgstr "Ajustes de grĆ”fico" -#: ../../operation/gis_maps/render_view.php:145 -msgid "Show link to public GIS map" -msgstr "Mostrar enlace al mapa SIG pĆŗblico" +#: ../../enterprise/extensions/vmware/vmware_view.php:1252 +msgid "Map settings" +msgstr "Ajustes del mapa" -#: ../../operation/gis_maps/render_view.php:149 ../../include/functions.php:3351 -msgid "5 seconds" -msgstr "5 segundos" +#: ../../enterprise/extensions/vmware/vmware_view.php:1296 +#: ../../enterprise/extensions/vmware/vmware_view.php:1368 +msgid "Welcome" +msgstr "Bienvenid@" -#: ../../operation/gis_maps/render_view.php:150 ../../include/functions.php:3352 -msgid "10 seconds" -msgstr "10 segundos" - -#: ../../operation/gis_maps/render_view.php:151 ../../operation/heatmap.php:171 -#: ../../include/ajax/heatmap.ajax.php:50 -#: ../../include/class/AgentsAlerts.class.php:804 -#: ../../include/functions.php:3354 -msgid "30 seconds" -msgstr "30 segundos" - -#: ../../operation/gis_maps/render_view.php:152 ../../operation/heatmap.php:172 -#: ../../include/ajax/heatmap.ajax.php:51 -#: ../../include/class/AgentsAlerts.class.php:805 -#: ../../include/functions.php:3355 -msgid "1 minute" -msgstr "1 minuto" - -#: ../../operation/gis_maps/render_view.php:153 -#: ../../include/class/AgentsAlerts.class.php:806 -#: ../../include/functions.php:3356 -msgid "2 minutes" -msgstr "2 minutos" - -#: ../../operation/gis_maps/render_view.php:154 ../../operation/heatmap.php:174 -#: ../../include/ajax/module.php:198 ../../include/ajax/heatmap.ajax.php:53 -#: ../../include/class/AgentsAlerts.class.php:807 -#: ../../include/functions.php:3357 -msgid "5 minutes" -msgstr "5 minutos" - -#: ../../operation/gis_maps/render_view.php:155 -#: ../../include/class/AgentsAlerts.class.php:808 -msgid "10 minutes" -msgstr "10 minutos" - -#: ../../operation/gis_maps/render_view.php:156 ../../include/ajax/module.php:200 -#: ../../include/ajax/graph.ajax.php:146 ../../include/functions.php:2692 -#: ../../include/functions.php:3360 -#: ../../enterprise/godmode/reporting/graph_template_editor.php:217 -#: ../../godmode/setup/performance.php:531 -#: ../../godmode/reporting/create_container.php:346 -msgid "1 hour" -msgstr "1 hora" - -#: ../../operation/gis_maps/render_view.php:157 -#: ../../enterprise/godmode/reporting/graph_template_editor.php:218 -msgid "2 hours" -msgstr "2 horas" - -#: ../../operation/gis_maps/render_view.php:163 -#: ../../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/snmpconsole/snmp_view.php:630 -#: ../../operation/snmpconsole/snmp_view.php:1114 -#: ../../operation/snmpconsole/snmp_view.php:1125 -#: ../../operation/events/events.php:1912 -#: ../../operation/events/events_list.php:530 -#: ../../operation/events/events_list.php:1283 -#: ../../operation/agentes/pandora_networkmap.editor.php:349 -#: ../../operation/agentes/pandora_networkmap.view.php:174 -#: ../../operation/agentes/ver_agente.php:1164 -#: ../../operation/agentes/ver_agente.php:1220 -#: ../../operation/agentes/ver_agente.php:1235 -#: ../../operation/users/user_edit.php:402 -#: ../../operation/users/user_edit.php:414 -#: ../../operation/users/user_edit.php:455 -#: ../../operation/users/user_edit.php:491 -#: ../../operation/users/user_edit.php:505 -#: ../../operation/users/user_edit.php:898 -#: ../../operation/users/user_edit.php:905 -#: ../../operation/users/user_edit.php:914 -#: ../../operation/users/user_edit.php:921 -#: ../../operation/incidents/list_integriaims_incidents.php:530 -#: ../../operation/incidents/list_integriaims_incidents.php:534 -#: ../../include/functions_cron.php:642 -#: ../../include/functions_visual_map_editor.php:404 -#: ../../include/functions_visual_map_editor.php:406 -#: ../../include/functions_visual_map_editor.php:622 -#: ../../include/functions_visual_map_editor.php:957 -#: ../../include/functions_visual_map_editor.php:1010 -#: ../../include/functions_visual_map_editor.php:1072 -#: ../../include/ajax/planned_downtime.ajax.php:85 -#: ../../include/ajax/custom_fields.php:668 ../../include/ajax/events.php:509 -#: ../../include/class/NetworkMap.class.php:2789 -#: ../../include/class/NetworkMap.class.php:3024 -#: ../../include/class/NetworkMap.class.php:3047 -#: ../../include/class/NetworkMap.class.php:3119 -#: ../../include/class/NetworkMap.class.php:3129 -#: ../../include/class/NetworkMap.class.php:3214 -#: ../../include/class/NetworkMap.class.php:3230 -#: ../../include/lib/Dashboard/Widgets/sla_percent.php:336 -#: ../../include/lib/Dashboard/Widgets/reports.php:490 -#: ../../include/lib/Dashboard/Widgets/custom_graph.php:355 -#: ../../include/lib/Dashboard/Widgets/maps_made_by_user.php:521 -#: ../../include/lib/Dashboard/Widgets/single_graph.php:311 -#: ../../include/lib/Dashboard/Widgets/graph_module_histogram.php:326 -#: ../../include/lib/Dashboard/Widgets/service_map.php:270 -#: ../../include/lib/Dashboard/Widgets/service_map.php:311 -#: ../../include/lib/Dashboard/Widgets/events_list.php:301 -#: ../../include/lib/Dashboard/Widgets/events_list.php:459 -#: ../../include/lib/Dashboard/Widgets/top_n.php:241 -#: ../../include/functions_events.php:3620 -#: ../../include/functions_events.php:3636 -#: ../../include/functions_profile.php:297 -#: ../../include/functions_profile.php:315 -#: ../../include/functions_profile.php:330 -#: ../../include/functions_integriaims.php:135 -#: ../../include/rest-api/models/VisualConsole/Item.php:2087 -#: ../../include/rest-api/models/VisualConsole/Item.php:2206 -#: ../../include/rest-api/models/VisualConsole/Item.php:2319 -#: ../../include/rest-api/models/VisualConsole/Item.php:2441 -#: ../../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/functions_html.php:376 ../../include/functions_html.php:816 -#: ../../include/functions_html.php:1229 ../../include/functions_html.php:1281 -#: ../../include/functions_html.php:1328 ../../include/functions_html.php:1329 -#: ../../include/functions_html.php:1382 ../../include/functions_html.php:1432 -#: ../../include/functions_html.php:4648 ../../include/functions_html.php:5937 -#: ../../include/functions_networkmap.php:1519 ../../include/functions.php:1073 -#: ../../enterprise/tools/ipam/ipam_network.php:594 -#: ../../enterprise/tools/ipam/ipam_supernet_config.php:611 -#: ../../enterprise/tools/ipam/ipam_supernet_config.php:783 -#: ../../enterprise/tools/ipam/ipam_list.php:112 -#: ../../enterprise/tools/ipam/ipam_list.php:135 -#: ../../enterprise/tools/ipam/ipam_list.php:157 -#: ../../enterprise/tools/ipam/ipam_editor.php:206 -#: ../../enterprise/tools/ipam/ipam_editor.php:234 -#: ../../enterprise/views/ipam/sites/edit.php:71 -#: ../../enterprise/operation/log/log_viewer.php:735 -#: ../../enterprise/operation/agentes/ver_agente.php:38 -#: ../../enterprise/include/ajax/ipam.ajax.php:400 -#: ../../enterprise/include/ajax/ipam.ajax.php:428 -#: ../../enterprise/include/class/SAP.app.php:615 -#: ../../enterprise/include/class/SAP.app.php:810 -#: ../../enterprise/include/class/SAP.app.php:811 -#: ../../enterprise/include/class/Omnishell.class.php:858 -#: ../../enterprise/include/class/Omnishell.class.php:859 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:896 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:923 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1033 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1186 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1196 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2003 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2469 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2514 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3481 -#: ../../enterprise/include/functions_tasklist.php:317 -#: ../../enterprise/meta/event/custom_events.php:227 -#: ../../enterprise/meta/event/custom_events.php:273 -#: ../../enterprise/meta/monitoring/custom_fields_view.php:256 -#: ../../enterprise/meta/monitoring/wizard/wizard.php:142 -#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:269 -#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:366 -#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:423 -#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:691 -#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:762 -#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:833 -#: ../../enterprise/meta/advanced/metasetup.relations.php:245 -#: ../../enterprise/meta/advanced/metasetup.setup.php:394 -#: ../../enterprise/meta/advanced/metasetup.setup.php:400 -#: ../../enterprise/meta/advanced/metasetup.setup.php:410 -#: ../../enterprise/meta/advanced/metasetup.setup.php:416 -#: ../../enterprise/meta/advanced/metasetup.visual.php:289 -#: ../../enterprise/godmode/setup/setup.php:675 -#: ../../enterprise/godmode/setup/setup.php:692 -#: ../../enterprise/godmode/setup/setup.php:701 -#: ../../enterprise/godmode/setup/setup.php:718 -#: ../../enterprise/godmode/servers/manage_export_form.php:85 -#: ../../enterprise/godmode/modules/configure_local_component.php:543 -#: ../../enterprise/godmode/modules/configure_local_component.php:698 -#: ../../enterprise/godmode/modules/configure_local_component.php:704 -#: ../../enterprise/godmode/modules/configure_local_component.php:712 -#: ../../enterprise/godmode/modules/configure_local_component.php:718 -#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:194 -#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:578 -#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:597 -#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:611 -#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:621 -#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:631 -#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:635 -#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:661 -#: ../../enterprise/godmode/reporting/graph_template_wizard.php:193 -#: ../../enterprise/godmode/reporting/graph_template_wizard.php:398 -#: ../../enterprise/godmode/reporting/graph_template_wizard.php:417 -#: ../../enterprise/godmode/reporting/graph_template_wizard.php:428 -#: ../../enterprise/godmode/reporting/graph_template_wizard.php:443 -#: ../../enterprise/godmode/reporting/graph_template_wizard.php:475 -#: ../../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 -#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:810 -#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:820 -#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:830 -#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:834 -#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:861 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:184 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:451 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:596 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:604 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:614 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:636 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:689 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:722 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:744 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:754 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:775 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:797 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:822 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:845 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:866 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:314 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2977 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3194 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3278 -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:60 -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:527 -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:544 -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:560 -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:576 -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:600 -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:616 -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:658 -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:691 -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:702 -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:721 -#: ../../enterprise/godmode/reporting/visual_console_builder.wizard_services.php:215 -#: ../../enterprise/godmode/reporting/visual_console_builder.wizard_services.php:247 -#: ../../enterprise/godmode/reporting/visual_console_builder.wizard_services.php:253 -#: ../../enterprise/godmode/reporting/visual_console_builder.wizard_services.php:265 -#: ../../enterprise/godmode/reporting/visual_console_builder.wizard_services.php:275 -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:1148 -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:1272 -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:1287 -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:1297 -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:1312 -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:1334 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:80 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:400 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:423 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:922 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:938 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:959 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:968 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:1324 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:1352 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:1373 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:1400 -#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:471 -#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:862 -#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:977 -#: ../../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/massive/massive_delete_alerts_policy.php:121 -#: ../../enterprise/godmode/massive/massive_delete_alerts_policy.php:142 -#: ../../enterprise/godmode/massive/massive_delete_alerts_policy.php:154 -#: ../../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 -#: ../../enterprise/godmode/massive/massive_add_alerts_policy.php:132 -#: ../../enterprise/godmode/massive/massive_add_alerts_policy.php:144 -#: ../../enterprise/godmode/massive/massive_delete_alerts_snmp.php:28 -#: ../../enterprise/godmode/massive/massive_delete_alerts_snmp.php:205 -#: ../../enterprise/godmode/massive/massive_delete_alerts_snmp.php:244 -#: ../../enterprise/godmode/massive/massive_tags_edit_policy.php:117 -#: ../../enterprise/godmode/massive/massive_tags_edit_policy.php:197 -#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:29 -#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:265 -#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:396 -#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:473 -#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:549 -#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:550 -#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:551 -#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:552 -#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:601 -#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:473 -#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:604 -#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:700 -#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:822 -#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:167 -#: ../../enterprise/godmode/policies/policy_agents.php:391 -#: ../../enterprise/godmode/policies/policy_agents.php:1694 -#: ../../enterprise/godmode/policies/policy_external_alerts.php:579 -#: ../../enterprise/godmode/policies/policy_external_alerts.php:688 -#: ../../enterprise/godmode/policies/policy_alerts.php:583 -#: ../../mobile/operation/events.php:639 -#: ../../godmode/setup/setup_visuals.php:400 -#: ../../godmode/setup/setup_visuals.php:419 -#: ../../godmode/setup/setup_visuals.php:949 -#: ../../godmode/setup/os.builder.php:41 -#: ../../godmode/modules/manage_network_components_form.php:642 -#: ../../godmode/modules/manage_network_components_form.php:648 -#: ../../godmode/modules/manage_network_components_form.php:657 -#: ../../godmode/modules/manage_network_components_form.php:663 -#: ../../godmode/modules/manage_network_components_form_plugin.php:41 -#: ../../godmode/modules/manage_network_components_form_common.php:343 -#: ../../godmode/modules/manage_network_components_form_network.php:248 -#: ../../godmode/modules/manage_nc_groups_form.php:77 -#: ../../godmode/reporting/create_container.php:489 -#: ../../godmode/reporting/visual_console_builder.elements.php:482 -#: ../../godmode/reporting/visual_console_builder.elements.php:633 -#: ../../godmode/reporting/visual_console_builder.elements.php:643 -#: ../../godmode/reporting/reporting_builder.item_editor.php:194 -#: ../../godmode/reporting/reporting_builder.item_editor.php:909 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2032 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2105 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2126 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2158 -#: ../../godmode/reporting/reporting_builder.item_editor.php:3054 -#: ../../godmode/reporting/reporting_builder.item_editor.php:3215 -#: ../../godmode/reporting/graph_builder.graph_editor.php:329 -#: ../../godmode/reporting/visual_console_builder.wizard.php:266 -#: ../../godmode/reporting/visual_console_builder.wizard.php:438 -#: ../../godmode/reporting/visual_console_builder.wizard.php:451 -#: ../../godmode/reporting/visual_console_builder.wizard.php:485 -#: ../../godmode/reporting/visual_console_builder.wizard.php:498 -#: ../../godmode/reporting/visual_console_builder.wizard.php:536 -#: ../../godmode/reporting/visual_console_builder.wizard.php:537 -#: ../../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/snmpconsole/snmp_alert.php:40 -#: ../../godmode/snmpconsole/snmp_alert.php:1169 -#: ../../godmode/events/event_edit_filter.php:694 -#: ../../godmode/events/custom_events.php:181 -#: ../../godmode/events/custom_events.php:229 -#: ../../godmode/massive/massive_add_alerts.php:304 -#: ../../godmode/massive/massive_delete_modules.php:502 -#: ../../godmode/massive/massive_delete_modules.php:594 -#: ../../godmode/massive/massive_delete_modules.php:679 -#: ../../godmode/massive/massive_delete_modules.php:728 -#: ../../godmode/massive/massive_delete_modules.php:736 -#: ../../godmode/massive/massive_delete_modules.php:737 -#: ../../godmode/massive/massive_delete_modules.php:738 -#: ../../godmode/massive/massive_delete_modules.php:739 -#: ../../godmode/massive/massive_delete_modules.php:805 -#: ../../godmode/massive/massive_delete_modules.php:835 -#: ../../godmode/massive/massive_copy_modules.php:374 -#: ../../godmode/massive/massive_copy_modules.php:508 -#: ../../godmode/massive/massive_add_action_alerts.php:341 -#: ../../godmode/massive/massive_edit_agents.php:740 -#: ../../godmode/massive/massive_delete_alerts.php:365 -#: ../../godmode/massive/massive_edit_plugins.php:338 -#: ../../godmode/massive/massive_edit_modules.php:458 -#: ../../godmode/massive/massive_edit_modules.php:919 -#: ../../godmode/massive/massive_edit_modules.php:1053 -#: ../../godmode/massive/massive_edit_modules.php:1169 -#: ../../godmode/massive/massive_edit_modules.php:1204 -#: ../../godmode/massive/massive_edit_modules.php:1259 -#: ../../godmode/massive/massive_edit_modules.php:1345 -#: ../../godmode/massive/massive_edit_modules.php:1418 -#: ../../godmode/massive/massive_edit_modules.php:1527 -#: ../../godmode/massive/massive_edit_modules.php:1528 -#: ../../godmode/massive/massive_edit_modules.php:1529 -#: ../../godmode/massive/massive_edit_modules.php:1530 -#: ../../godmode/massive/massive_edit_modules.php:1769 -#: ../../godmode/massive/massive_edit_modules.php:1829 -#: ../../godmode/wizards/HostDevices.class.php:1098 -#: ../../godmode/agentes/module_manager_editor_plugin.php:55 -#: ../../godmode/agentes/module_manager_editor_common.php:733 -#: ../../godmode/agentes/module_manager_editor_common.php:1149 -#: ../../godmode/agentes/module_manager_editor_common.php:1405 -#: ../../godmode/agentes/module_manager_editor_common.php:1412 -#: ../../godmode/agentes/module_manager_editor_common.php:1423 -#: ../../godmode/agentes/module_manager_editor_common.php:1431 -#: ../../godmode/agentes/status_monitor_custom_fields.php:218 -#: ../../godmode/agentes/status_monitor_custom_fields.php:266 -#: ../../godmode/agentes/agent_manager.php:428 -#: ../../godmode/agentes/agent_manager.php:461 -#: ../../godmode/agentes/agent_manager.php:718 -#: ../../godmode/agentes/agent_manager.php:884 -#: ../../godmode/agentes/module_manager_editor_network.php:465 -#: ../../godmode/alerts/configure_alert_template.php:650 -#: ../../godmode/alerts/configure_alert_template.php:777 -#: ../../godmode/alerts/configure_alert_template.php:798 -#: ../../godmode/alerts/alert_list.list.php:748 -#: ../../godmode/alerts/alert_actions.php:291 -#: ../../godmode/alerts/alert_commands.php:302 -#: ../../godmode/alerts/alert_commands.php:316 -#: ../../godmode/alerts/alert_commands.php:376 -#: ../../godmode/alerts/alert_commands.php:389 -#: ../../godmode/users/configure_user.php:1073 -#: ../../godmode/users/configure_user.php:1087 -#: ../../godmode/users/configure_user.php:1281 -#: ../../godmode/users/configure_user.php:1293 -#: ../../godmode/groups/configure_group.php:188 -#: ../../godmode/groups/configure_group.php:210 -msgid "None" -msgstr "Ninguno" - -#: ../../operation/gis_maps/render_view.php:167 -#: ../../operation/snmpconsole/snmp_statistics.php:218 -#: ../../operation/snmpconsole/snmp_statistics.php:275 -#: ../../operation/snmpconsole/snmp_view.php:636 -#: ../../operation/snmpconsole/snmp_view.php:1120 -#: ../../operation/snmpconsole/snmp_view.php:1149 -#: ../../operation/users/user_edit.php:362 ../../include/functions_graph.php:3060 -#: ../../include/functions_graph.php:3105 ../../include/functions_graph.php:3146 -#: ../../include/functions_graph.php:3188 ../../include/functions_graph.php:3265 -#: ../../include/functions_graph.php:3474 ../../include/functions_graph.php:3582 -#: ../../include/functions_graph.php:3647 ../../include/functions_graph.php:3814 -#: ../../include/functions_graph.php:3826 ../../include/functions_graph.php:3827 -#: ../../include/functions_graph.php:3830 ../../include/functions_graph.php:3835 -#: ../../include/functions_graph.php:3836 ../../include/functions_graph.php:3839 -#: ../../include/functions_graph.php:4837 -#: ../../include/functions_reporting.php:4854 -#: ../../include/functions_reporting.php:4866 -#: ../../include/functions_reporting.php:4867 -#: ../../include/functions_reporting.php:4870 -#: ../../include/functions_reporting.php:4875 -#: ../../include/functions_reporting.php:4876 -#: ../../include/functions_reporting.php:4879 -#: ../../enterprise/include/class/Aws.cloud.php:347 -#: ../../enterprise/include/functions_ipam.php:1597 -#: ../../enterprise/godmode/setup/setup_acl.php:475 -#: ../../enterprise/godmode/setup/setup_acl.php:479 -#: ../../enterprise/godmode/massive/massive_delete_alerts_snmp.php:34 -#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:35 -#: ../../extensions/api_checker.php:176 -#: ../../godmode/snmpconsole/snmp_alert.php:46 -#: ../../godmode/users/configure_user.php:1116 -#: ../../godmode/groups/configure_group.php:250 -msgid "Other" -msgstr "Otros" - -#: ../../operation/gis_maps/render_view.php:170 -msgid "Filter by status" -msgstr "Filtro por estado" - -#: ../../operation/gis_maps/render_view.php:173 -#: ../../operation/agentes/estado_agente.php:201 -#: ../../enterprise/include/functions_policies.php:3714 -#: ../../enterprise/meta/general/main_menu.php:577 -#: ../../enterprise/meta/general/main_menu.php:607 -#: ../../enterprise/meta/general/logon_ok.php:99 -#: ../../enterprise/godmode/servers/HA_cluster.php:70 -#: ../../enterprise/godmode/policies/configure_policy.php:38 -#: ../../godmode/update_manager/update_manager.php:57 -#: ../../godmode/update_manager/update_manager.php:87 ../../godmode/menu.php:309 -#: ../../godmode/menu.php:316 ../../godmode/agentes/configurar_agente.php:391 -#: ../../godmode/agentes/configurar_agente.php:696 -#: ../../godmode/module_library/module_library_view.php:48 -msgid "Setup" -msgstr "ConfiguraciĆ³n" - -#: ../../operation/gis_maps/render_view.php:178 -#: ../../include/lib/Dashboard/Widgets/network_map.php:323 #: ../../enterprise/extensions/vmware/vmware_view.php:1306 #: ../../enterprise/extensions/vmware/vmware_view.php:1348 +#: ../../include/lib/Dashboard/Widgets/network_map.php:323 +#: ../../operation/gis_maps/render_view.php:178 msgid "Map" msgstr "Mapa" -#: ../../operation/search_users.php:43 -#: ../../operation/snmpconsole/snmp_view.php:876 -#: ../../operation/users/user_edit.php:258 -#: ../../include/functions_reporting_html.php:5018 -#: ../../include/functions_reporting_html.php:6216 -#: ../../include/functions_reporting_html.php:6239 -#: ../../enterprise/include/functions_reporting_csv.php:2549 -#: ../../enterprise/include/functions_reporting_csv.php:2559 -#: ../../godmode/users/user_list.php:479 -#: ../../godmode/users/configure_user.php:852 -#: ../../godmode/users/configure_user.php:868 -msgid "User ID" -msgstr "ID usuario" - -#: ../../operation/search_users.php:45 ../../include/functions_cron.php:575 -#: ../../include/functions_cron.php:666 -#: ../../enterprise/operation/reporting/custom_reporting.php:20 -#: ../../enterprise/include/functions_tasklist.php:254 -#: ../../enterprise/include/functions_tasklist.php:341 -#: ../../enterprise/godmode/setup/setup_auth.php:99 -#: ../../godmode/tag/edit_tag.php:239 ../../godmode/tag/tag.php:281 -msgid "Email" -msgstr "Correo electrĆ³nico" - -#: ../../operation/search_users.php:47 -msgid "Profile" -msgstr "Perfil" - -#: ../../operation/search_users.php:62 -#: ../../enterprise/extensions/disabled/check_acls.php:63 -#: ../../enterprise/extensions/disabled/check_acls.php:150 -#: ../../enterprise/godmode/setup/setup_metaconsole.php:276 -#: ../../enterprise/godmode/servers/HA_cluster.php:177 -#: ../../godmode/users/user_list.php:483 ../../godmode/users/user_list.php:664 -msgid "Admin" -msgstr "Administrador" - -#: ../../operation/search_users.php:63 ../../godmode/users/user_list.php:665 -#: ../../godmode/users/configure_user.php:984 -msgid "Administrator" -msgstr "Administrador" - -#: ../../operation/search_users.php:72 ../../godmode/users/configure_user.php:999 -msgid "Standard User" -msgstr "Usuario estĆ”ndar" - -#: ../../operation/search_users.php:87 ../../include/functions_reporting.php:4428 -#: ../../include/functions_reporting.php:4475 -#: ../../godmode/users/user_list.php:723 -msgid "The user doesn't have any assigned profile/group" -msgstr "El usuario no tiene ningĆŗn perfil asignado." - -#: ../../operation/reporting/graph_viewer.php:59 -#: ../../operation/reporting/graph_viewer.php:67 -#: ../../enterprise/tools/ipam/ipam_network_location_config.php:88 -#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:289 -#: ../../enterprise/meta/advanced/metasetup.relations.php:87 -#: ../../enterprise/godmode/reporting/graph_template_item_editor.php:130 -#: ../../enterprise/godmode/reporting/graph_template_item_editor.php:158 -#: ../../enterprise/godmode/reporting/graph_template_list.php:156 -#: ../../enterprise/godmode/reporting/graph_template_list.php:183 -#: ../../godmode/modules/manage_nc_groups.php:153 -#: ../../godmode/reporting/map_builder.php:210 -#: ../../godmode/reporting/graphs.php:152 ../../godmode/reporting/graphs.php:163 -#: ../../godmode/reporting/graphs.php:214 -#: ../../godmode/events/event_filter.php:70 -#: ../../godmode/events/event_filter.php:97 ../../godmode/netflow/nf_edit.php:105 -#: ../../godmode/netflow/nf_edit.php:138 -#: ../../godmode/netflow/nf_item_list.php:121 -#: ../../godmode/netflow/nf_item_list.php:149 -#: ../../godmode/agentes/planned_downtime.list.php:243 -msgid "Not deleted. Error deleting data" -msgstr "No se pudo borrar. Error al borrar los datos." - -#: ../../operation/reporting/graph_viewer.php:182 -#: ../../operation/reporting/graph_viewer.php:214 -#: ../../enterprise/godmode/reporting/graph_template_wizard.php:99 -#: ../../enterprise/godmode/reporting/graph_template_wizard.php:113 -#: ../../enterprise/godmode/reporting/graph_template_list.php:54 -#: ../../enterprise/godmode/reporting/graph_template_list.php:73 -#: ../../enterprise/godmode/reporting/graph_template_list.php:87 -#: ../../godmode/reporting/graphs.php:67 ../../godmode/reporting/graphs.php:81 -#: ../../godmode/reporting/graph_container.php:77 -#: ../../godmode/reporting/graph_builder.php:287 -msgid "Graph list" -msgstr "Lista de la grĆ”fica" - -#: ../../operation/reporting/graph_viewer.php:204 -#: ../../godmode/reporting/graph_builder.php:309 -msgid "Graph editor" -msgstr "Editor de grĆ”ficas" - -#: ../../operation/reporting/graph_viewer.php:223 -#: ../../godmode/reporting/graph_builder.php:320 -msgid "View graph" -msgstr "Ver grĆ”fica" - -#: ../../operation/reporting/graph_viewer.php:267 -#: ../../operation/reporting/graph_viewer.php:513 -#: ../../operation/reporting/custom_reporting.php:23 -#: ../../operation/reporting/reporting_viewer.php:211 -#: ../../operation/reporting/reporting_viewer.php:216 -#: ../../operation/reporting/reporting_viewer.php:229 -#: ../../operation/menu.php:311 -#: ../../enterprise/operation/agentes/transactional_map.php:70 -#: ../../enterprise/operation/agentes/manage_transmap_creation.php:169 -#: ../../enterprise/operation/agentes/manage_transmap_creation.php:349 -#: ../../enterprise/operation/agentes/manage_transmap_creation.php:471 -#: ../../enterprise/operation/agentes/manage_transmap.php:172 -#: ../../enterprise/meta/general/logon_ok.php:66 -#: ../../enterprise/godmode/reporting/graph_template_wizard.php:144 -#: ../../enterprise/godmode/reporting/mysql_builder.php:75 -#: ../../enterprise/godmode/reporting/mysql_builder.php:202 -#: ../../enterprise/godmode/reporting/graph_template_item_editor.php:74 -#: ../../enterprise/godmode/reporting/graph_template_editor.php:103 -#: ../../enterprise/godmode/reporting/graph_template_list.php:128 -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:272 -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:285 -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:306 -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:319 -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:340 -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:353 -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:374 -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:387 -#: ../../godmode/reporting/graphs.php:129 -#: ../../godmode/reporting/graph_container.php:118 -#: ../../godmode/reporting/graph_builder.php:366 -#: ../../godmode/reporting/reporting_builder.php:572 -#: ../../godmode/reporting/reporting_builder.php:579 -#: ../../godmode/reporting/reporting_builder.php:592 -#: ../../godmode/reporting/reporting_builder.php:3483 -#: ../../godmode/reporting/reporting_builder.php:3490 -#: ../../godmode/reporting/reporting_builder.php:3503 -#: ../../godmode/reporting/reporting_builder.php:3594 -#: ../../godmode/reporting/reporting_builder.php:3601 -#: ../../godmode/reporting/reporting_builder.php:3617 -#: ../../godmode/reporting/reporting_builder.php:3646 -msgid "Reporting" -msgstr "Informes" - -#: ../../operation/reporting/graph_viewer.php:271 ../../operation/menu.php:327 -#: ../../enterprise/godmode/reporting/graph_template_wizard.php:148 -#: ../../enterprise/godmode/reporting/graph_template_item_editor.php:78 -#: ../../enterprise/godmode/reporting/graph_template_editor.php:107 -#: ../../enterprise/godmode/reporting/graph_template_list.php:132 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:387 -#: ../../godmode/reporting/graphs.php:133 -#: ../../godmode/reporting/graph_container.php:122 -#: ../../godmode/reporting/graph_builder.php:370 -msgid "Custom graphs" -msgstr "GrĆ”ficos personalizados" - -#: ../../operation/reporting/graph_viewer.php:335 -msgid "No data." -msgstr "Sin datos" - -#: ../../operation/reporting/graph_viewer.php:360 -#: ../../operation/agentes/graphs.php:218 -#: ../../operation/agentes/stat_win.php:338 -#: ../../operation/agentes/stat_win.php:441 -#: ../../operation/agentes/interface_traffic_graph_win.php:213 -msgid "Time range" -msgstr "Rango de tiempo" - -#: ../../operation/reporting/graph_viewer.php:369 -#: ../../operation/reporting/graph_viewer.php:391 -msgid "Graph defined" -msgstr "GrĆ”fico definido" - -#: ../../operation/reporting/graph_viewer.php:370 -#: ../../operation/agentes/graphs.php:236 ../../operation/agentes/graphs.php:243 -#: ../../operation/agentes/graphs.php:409 ../../operation/agentes/graphs.php:428 -#: ../../include/functions_visual_map_editor.php:558 -#: ../../include/lib/Dashboard/Widgets/custom_graph.php:315 -#: ../../include/rest-api/models/VisualConsole/Items/ModuleGraph.php:652 -#: ../../enterprise/meta/advanced/metasetup.visual.php:348 -#: ../../enterprise/godmode/reporting/graph_template_editor.php:245 -#: ../../godmode/setup/setup_visuals.php:902 -#: ../../godmode/setup/setup_visuals.php:919 -#: ../../godmode/reporting/create_container.php:358 -#: ../../godmode/reporting/graph_builder.main.php:214 -msgid "Area" -msgstr "Ɓrea" - -#: ../../operation/reporting/graph_viewer.php:371 -#: ../../include/lib/Dashboard/Widgets/custom_graph.php:316 -#: ../../enterprise/godmode/reporting/graph_template_editor.php:246 -#: ../../godmode/reporting/graph_builder.main.php:215 -msgid "Stacked area" -msgstr "Ɓrea apilada" - -#: ../../operation/reporting/graph_viewer.php:373 -#: ../../include/lib/Dashboard/Widgets/custom_graph.php:318 -#: ../../enterprise/godmode/reporting/graph_template_editor.php:248 -#: ../../godmode/reporting/graph_builder.main.php:217 -msgid "Stacked line" -msgstr "LĆ­nea apilada" - -#: ../../operation/reporting/graph_viewer.php:374 -#: ../../include/lib/Dashboard/Widgets/custom_graph.php:319 -#: ../../godmode/reporting/graph_builder.main.php:218 -msgid "Bullet chart" -msgstr "GrĆ”fico de puntos" - -#: ../../operation/reporting/graph_viewer.php:375 -#: ../../include/lib/Dashboard/Widgets/custom_graph.php:320 -#: ../../godmode/reporting/graph_builder.main.php:219 -msgid "Gauge" -msgstr "Calibrador" - -#: ../../operation/reporting/graph_viewer.php:376 -#: ../../include/lib/Dashboard/Widgets/custom_graph.php:321 -msgid "Horizontal Bars" -msgstr "Barras horizontales" - -#: ../../operation/reporting/graph_viewer.php:377 -#: ../../include/lib/Dashboard/Widgets/custom_graph.php:322 -msgid "Vertical Bars" -msgstr "Barras verticales" - -#: ../../operation/reporting/graph_viewer.php:378 -#: ../../include/lib/Dashboard/Widgets/custom_graph.php:323 -#: ../../godmode/reporting/graph_builder.main.php:222 -msgid "Pie" -msgstr "GrĆ”fico circular" - -#: ../../operation/reporting/graph_viewer.php:383 -msgid "Equalize maxiddmum thresholds" -msgstr "Equalizar umbrales maxiddmum" - -#: ../../operation/reporting/graph_viewer.php:383 -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 "" -"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 -msgid "Zoom x1" -msgstr "Zoom x1" - -#: ../../operation/reporting/graph_viewer.php:393 -msgid "Zoom x2" -msgstr "AmpliaciĆ³n x2" - -#: ../../operation/reporting/graph_viewer.php:394 -msgid "Zoom x3" -msgstr "Zoom x3" - -#: ../../operation/reporting/graph_viewer.php:505 -#: ../../operation/reporting/reporting_viewer.php:426 -msgid "Invalid date selected" -msgstr "Fecha seleccionada no vĆ”lida" - -#: ../../operation/reporting/graph_viewer.php:513 -msgid "Custom graph viewer" -msgstr "Visor de imĆ”genes personalizadas" - -#: ../../operation/reporting/graph_viewer.php:524 -#: ../../operation/search_graphs.php:30 ../../include/functions_container.php:146 -#: ../../godmode/reporting/graphs.php:310 -msgid "Graph name" -msgstr "Nombre del grĆ”fico" - -#: ../../operation/reporting/graph_viewer.php:539 -#: ../../operation/reporting/custom_reporting.php:28 -msgid "There are no defined reportings" -msgstr "No hay informes definidos" - -#: ../../operation/reporting/custom_reporting.php:23 ../../operation/menu.php:318 -#: ../../godmode/reporting/reporting_builder.php:551 -#: ../../godmode/reporting/reporting_builder.php:3462 -msgid "Custom reporting" -msgstr "Informes personalizados" - -#: ../../operation/reporting/reporting_viewer.php:101 -#: ../../godmode/reporting/reporting_builder.php:210 -msgid "Your report has been planned, and the system will email you a " -msgstr "Se ha planificado su informe, el sistema le enviarĆ” un email a " - -#: ../../operation/reporting/reporting_viewer.php:102 -#: ../../godmode/reporting/reporting_builder.php:211 -msgid "An error has ocurred" -msgstr "Ha ocurrido un error" - -#: ../../operation/reporting/reporting_viewer.php:119 -#: ../../godmode/netflow/nf_item_list.php:27 -msgid "Report list" -msgstr "Lista de informes" - -#: ../../operation/reporting/reporting_viewer.php:148 -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:162 -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:205 -#: ../../godmode/reporting/reporting_builder.php:3545 -msgid "List items" -msgstr "Listado de elementos" - -#: ../../operation/reporting/reporting_viewer.php:157 -#: ../../enterprise/include/functions_reporting.php:8026 -#: ../../enterprise/include/functions_reporting.php:8092 -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:151 -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:218 -#: ../../godmode/reporting/reporting_builder.php:3549 -msgid "Item editor" -msgstr "Editor de elementos" - -#: ../../operation/reporting/reporting_viewer.php:173 -#: ../../godmode/reporting/reporting_builder.php:3566 -msgid "View report" -msgstr "Ver informe" - -#: ../../operation/reporting/reporting_viewer.php:233 -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:289 -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:323 -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:357 -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:391 -#: ../../godmode/reporting/reporting_builder.php:596 -#: ../../godmode/reporting/reporting_builder.php:3507 -#: ../../godmode/reporting/reporting_builder.php:3621 -#: ../../godmode/reporting/reporting_builder.php:3650 -msgid "Custom reports" -msgstr "Reportes personalizados" - -#: ../../operation/reporting/reporting_viewer.php:249 -msgid "View Report" -msgstr "Ver informe" - -#: ../../operation/reporting/reporting_viewer.php:291 -msgid "Set initial date" -msgstr "Fijar fecha de inicio" - -#: ../../operation/reporting/reporting_viewer.php:304 -#: ../../operation/agentes/gis_view.php:220 ../../include/rest-api/index.php:359 -#: ../../include/rest-api/models/VisualConsole/Items/ColorCloud.php:449 -#: ../../include/rest-api/models/VisualConsole/Items/ColorCloud.php:510 -#: ../../include/functions_reporting_html.php:147 -#: ../../include/functions_reporting_html.php:2945 -#: ../../include/functions_reporting_html.php:3750 -#: ../../enterprise/include/functions_reporting_csv.php:715 -#: ../../enterprise/include/functions_reporting_csv.php:951 -#: ../../enterprise/include/functions_reporting_csv.php:1325 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2333 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2337 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3337 -#: ../../enterprise/include/functions_reporting_pdf.php:1794 -#: ../../enterprise/include/functions_reporting_pdf.php:1867 -#: ../../enterprise/include/functions_reporting_pdf.php:1982 -#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:127 -#: ../../enterprise/godmode/policies/policy_external_alerts.php:467 -#: ../../enterprise/godmode/policies/policy_alerts.php:436 -#: ../../godmode/agentes/planned_downtime.list.php:293 -#: ../../godmode/alerts/alert_list.list.php:644 -#: ../../godmode/alerts/alert_list.list.php:647 -#: ../../godmode/alerts/alert_templates.php:96 -msgid "From" -msgstr "De" - -#: ../../operation/reporting/reporting_viewer.php:307 -#: ../../include/functions_reporting_html.php:150 -#: ../../enterprise/include/functions_reporting_pdf.php:1808 -msgid "Items period before" -msgstr "PerĆ­odo de elementos antes de" - -#: ../../operation/reporting/reporting_viewer.php:308 -#: ../../include/ajax/alert_list.ajax.php:514 -#: ../../include/class/AgentsAlerts.class.php:316 -#: ../../include/functions_reporting.php:14058 -#: ../../include/functions_reporting_html.php:148 -#: ../../include/functions_reporting_html.php:2950 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1018 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2333 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2337 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2494 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3339 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3468 -#: ../../enterprise/include/functions_reporting_pdf.php:1800 -#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:129 -#: ../../enterprise/godmode/agentes/manage_config_remote.php:108 -#: ../../enterprise/godmode/policies/policy_external_alerts.php:467 -#: ../../enterprise/godmode/policies/policy_external_alerts.php:602 -#: ../../enterprise/godmode/policies/policy_alerts.php:436 -#: ../../enterprise/godmode/policies/policy_alerts.php:600 -#: ../../godmode/massive/massive_add_action_alerts.php:254 -#: ../../godmode/alerts/alert_list.list.php:644 -#: ../../godmode/alerts/alert_list.list.php:764 -#: ../../godmode/alerts/alert_list.builder.php:129 -#: ../../godmode/alerts/alert_templates.php:98 -msgid "to" -msgstr "a" - -#: ../../operation/reporting/reporting_viewer.php:321 -msgid "Invalid date selected. Initial date must be before end date." -msgstr "" -"Fecha seleccionada no vĆ”lida. La fecha inicial debe ser anterior a la fecha de " -"finalizaciĆ³n." - -#: ../../operation/menu.php:37 ../../operation/heatmap.php:137 -#: ../../operation/agentes/status_monitor.php:108 -#: ../../operation/agentes/alerts_status.php:204 -#: ../../operation/agentes/group_view.php:102 -#: ../../operation/agentes/interface_view.php:76 -#: ../../operation/agentes/tactical.php:82 -#: ../../operation/agentes/estado_agente.php:228 -#: ../../include/class/AgentsAlerts.class.php:742 -#: ../../enterprise/operation/agentes/tag_view.php:54 -#: ../../extensions/realtime_graphs.php:71 ../../extensions/module_groups.php:264 -#: ../../extensions/agents_modules.php:478 -msgid "Views" -msgstr "Vistas" - -#: ../../operation/menu.php:45 ../../operation/agentes/tactical.php:69 -#: ../../operation/users/user_edit.php:360 -#: ../../include/lib/Dashboard/Widgets/tactical.php:176 -#: ../../include/lib/Dashboard/Widgets/tactical.php:482 -#: ../../enterprise/meta/general/main_menu.php:194 -#: ../../enterprise/meta/general/main_header.php:103 -#: ../../enterprise/meta/monitoring/tactical.php:63 -#: ../../mobile/operation/home.php:45 ../../mobile/operation/tactical.php:97 -#: ../../godmode/users/configure_user.php:1113 -msgid "Tactical view" -msgstr "Vista tĆ”ctica" - -#: ../../operation/menu.php:48 ../../operation/agentes/group_view.php:89 -#: ../../operation/users/user_edit.php:359 -#: ../../enterprise/meta/monitoring/group_view.php:72 -#: ../../godmode/users/configure_user.php:1112 -#: ../../godmode/groups/group_list.php:321 -msgid "Group view" -msgstr "Vista de grupo" - -#: ../../operation/menu.php:54 ../../operation/agentes/estado_agente.php:215 -#: ../../godmode/agentes/agent_manager.php:226 -msgid "Agent detail" -msgstr "Detalle de agente" - -#: ../../operation/menu.php:58 ../../operation/agentes/status_monitor.php:95 -msgid "Monitor detail" -msgstr "Detalle del monitor" - -#: ../../operation/menu.php:61 ../../operation/agentes/interface_view.php:63 -msgid "Interface view" -msgstr "Vista de interfaz" - -#: ../../operation/menu.php:66 ../../operation/agentes/alerts_status.php:191 -#: ../../operation/users/user_edit.php:361 -#: ../../godmode/users/configure_user.php:1114 -msgid "Alert detail" -msgstr "Detalle de alertas" - -#: ../../operation/menu.php:69 ../../operation/heatmap.php:92 -msgid "Heatmap view" -msgstr "Vista de mapa de calor" - -#: ../../operation/menu.php:78 ../../include/functions_ui.php:870 -#: ../../enterprise/tools/ipam/ipam_supernet_network.php:58 -#: ../../enterprise/tools/ipam/ipam_supernet_network.php:83 -#: ../../enterprise/tools/ipam/ipam_vlan_network.php:63 -#: ../../enterprise/tools/ipam/ipam_calculator.php:185 -#: ../../enterprise/tools/ipam/ipam_list.php:570 -#: ../../enterprise/tools/ipam/ipam_editor.php:122 -#: ../../enterprise/include/ajax/ipam.ajax.php:614 -#: ../../enterprise/include/ajax/ipam.ajax.php:644 -#: ../../enterprise/include/functions_ipam.php:1980 -#: ../../godmode/wizards/HostDevices.class.php:916 -#: ../../godmode/wizards/DiscoveryTaskList.class.php:597 -msgid "Network" -msgstr "Red" - -#: ../../operation/menu.php:92 ../../operation/netflow/netflow_explorer.php:37 -msgid "Netflow explorer" -msgstr "Explorador Netflow" - -#: ../../operation/menu.php:96 -msgid "Netflow Live View" -msgstr "Netflow en tiempo real" - -#: ../../operation/menu.php:106 ../../operation/network/network_usage_map.php:29 -msgid "Network usage map" -msgstr "Mapa de uso de red" - -#: ../../operation/menu.php:125 ../../include/functions_menu.php:531 -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:461 -msgid "SNMP console" -msgstr "Consola SNMP" - -#: ../../operation/menu.php:126 -msgid "SNMP browser" -msgstr "Navegador SNMP" - -#: ../../operation/menu.php:131 -#: ../../operation/snmpconsole/snmp_mib_uploader.php:47 -msgid "MIB uploader" -msgstr "Cargador MIB" - -#: ../../operation/menu.php:135 -msgid "SNMP filters" -msgstr "Filtros SNMP" - -#: ../../operation/menu.php:136 ../../include/functions_menu.php:530 -msgid "SNMP trap generator" -msgstr "Generador de traps SNMP" - -#: ../../operation/menu.php:141 -#: ../../operation/snmpconsole/snmp_statistics.php:102 -#: ../../operation/snmpconsole/snmp_view.php:697 -#: ../../operation/snmpconsole/snmp_view.php:806 -msgid "SNMP" -msgstr "SNMP" - -#: ../../operation/menu.php:165 -#: ../../include/lib/Dashboard/Widgets/network_map.php:172 -#: ../../include/lib/Dashboard/Widgets/network_map.php:478 -msgid "Network map" -msgstr "Mapa de red" - -#: ../../operation/menu.php:239 ../../operation/menu.php:241 -#: ../../operation/snmpconsole/snmp_view.php:1061 -#: ../../operation/snmpconsole/snmp_view.php:1062 -#: ../../operation/events/events.build_table.php:843 -#: ../../operation/events/events.php:2022 ../../operation/events/events.php:2188 -#: ../../include/functions_events.php:7283 -#: ../../enterprise/operation/agentes/wux_console_view.php:595 -msgid "Show more" -msgstr "Mostrar mĆ”s" - -#: ../../operation/menu.php:265 -msgid "List of Gis maps" -msgstr "Lista de mapas GIS" - -#: ../../operation/menu.php:339 ../../operation/users/user_edit.php:363 -#: ../../include/class/OrderInterpreter.class.php:219 #: ../../enterprise/extensions/vmware/vmware_view.php:1316 #: ../../enterprise/extensions/vmware/vmware_view.php:1353 -#: ../../mobile/include/functions_web.php:22 -#: ../../godmode/users/configure_user.php:1119 +#: ../../godmode/users/configure_user.php:1100 ../../mobile/include/functions_web.php:22 +#: ../../include/class/OrderInterpreter.class.php:219 +#: ../../operation/users/user_edit.php:363 ../../operation/menu.php:339 msgid "Dashboard" msgstr "Dashboard" -#: ../../operation/menu.php:373 ../../operation/events/events.php:939 -#: ../../operation/events/events.php:952 ../../include/functions_reports.php:864 -#: ../../include/functions_reports.php:868 -#: ../../include/functions_reports.php:872 ../../include/functions.php:4087 -#: ../../enterprise/tools/ipam/ipam_massive.php:103 -#: ../../enterprise/tools/ipam/ipam_network.php:399 -#: ../../enterprise/include/class/CommandCenter.class.php:1071 -#: ../../enterprise/meta/general/main_menu.php:257 -#: ../../enterprise/meta/general/logon_ok.php:57 -#: ../../enterprise/meta/general/main_header.php:154 -#: ../../enterprise/meta/monitoring/tactical.php:272 -#: ../../mobile/operation/home.php:51 ../../mobile/operation/events.php:609 -#: ../../mobile/include/functions_web.php:25 ../../godmode/menu.php:269 -msgid "Events" -msgstr "Eventos" +#: ../../enterprise/extensions/vmware/vmware_view.php:1327 +msgid "ESX Detail" +msgstr "Detalle de ESX" -#: ../../operation/menu.php:379 ../../enterprise/meta/event/custom_events.php:38 -#: ../../enterprise/godmode/reporting/graph_template_editor.php:255 -#: ../../godmode/users/configure_profile.php:298 -msgid "View events" -msgstr "Ver eventos" +#: ../../enterprise/extensions/vmware/vmware_view.php:1358 +msgid "ESX details" +msgstr "Detalles de ESX" -#: ../../operation/menu.php:416 -msgid "RSS" -msgstr "RSS" +#: ../../enterprise/extensions/vmware/vmware_view.php:1363 +msgid "VMware view options" +msgstr "Opciones de la vista de VMware" -#: ../../operation/menu.php:425 ../../operation/events/sound_events.php:64 -msgid "Sound Events" -msgstr "Eventos sonoros" +#: ../../enterprise/extensions/vmware/vmware_view.php:1399 +msgid "VMWare" +msgstr "VMware" -#: ../../operation/menu.php:443 ../../operation/events/events.php:961 -msgid "Sound Alerts" -msgstr "Alertas sonoras" - -#: ../../operation/menu.php:465 -msgid "Configure user notifications" -msgstr "Configurar notificaciones de usuario" - -#: ../../operation/menu.php:485 -msgid "Integria IMS statistics" -msgstr "EstadĆ­sticas de Integria IMS" - -#: ../../operation/menu.php:486 -msgid "Integria IMS ticket list" -msgstr "Lista de tickets de Integria IMS" - -#: ../../operation/menu.php:499 -msgid "Messages List" -msgstr "Lista de mensajes" - -#: ../../operation/menu.php:500 -msgid "New message" -msgstr "Mensaje nuevo" - -#: ../../operation/menu.php:515 ../../operation/agentes/exportdata.php:34 -msgid "Export data" -msgstr "Exportar datos" - -#: ../../operation/menu.php:521 -msgid "Scheduled downtime" -msgstr "DesconexiĆ³n programada" - -#: ../../operation/menu.php:595 -msgid "Tools" -msgstr "Herramientas" - -#: ../../operation/search_maps.php:30 -#: ../../enterprise/godmode/services/services.elements.php:778 -msgid "Elements" -msgstr "Elementos" - -#: ../../operation/network/network_report.php:67 -#: ../../operation/network/network_usage_map.php:124 -msgid "Data to show" -msgstr "Datos a mostrar" - -#: ../../operation/network/network_report.php:78 -#: ../../operation/network/network_usage_map.php:104 -msgid "Number of result to show" -msgstr "NĆŗmero de resultados a mostrar" - -#: ../../operation/network/network_report.php:102 -#: ../../operation/network/network_usage_map.php:75 -#: ../../operation/netflow/nf_live_view.php:271 -#: ../../enterprise/operation/log/log_viewer.php:552 -msgid "Start date" -msgstr "Fecha de inicio" - -#: ../../operation/network/network_report.php:109 -#: ../../operation/network/network_usage_map.php:82 -msgid "Time Period" -msgstr "PerĆ­odo de tiempo" - -#: ../../operation/network/network_report.php:121 -#: ../../operation/network/network_usage_map.php:94 -#: ../../operation/netflow/nf_live_view.php:292 -msgid "Select this checkbox to write interval instead a date." -msgstr "Seleccione esta casilla para escribir un intervalo en vex de una fecha." - -#: ../../operation/network/network_report.php:126 -#: ../../operation/network/network_usage_map.php:99 -#: ../../operation/netflow/nf_live_view.php:295 -#: ../../operation/agentes/exportdata.php:347 -#: ../../enterprise/operation/log/log_viewer.php:579 -msgid "End date" -msgstr "Fecha final" - -#: ../../operation/network/network_report.php:140 -#: ../../operation/incidents/list_integriaims_incidents.php:428 -#: ../../include/class/ModuleTemplates.class.php:934 -#: ../../include/graphs/functions_flot.php:377 -#: ../../enterprise/operation/log/log_viewer.php:805 -#: ../../enterprise/operation/reporting/custom_reporting.php:80 -#: ../../enterprise/include/functions_ipam.php:339 -#: ../../enterprise/meta/monitoring/custom_fields_view.php:319 -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:597 -#: ../../godmode/modules/manage_network_templates.php:288 -#: ../../godmode/agentes/planned_downtime.list.php:860 -msgid "Export to CSV" -msgstr "Exportar a CSV" - -#: ../../operation/network/network_report.php:184 -#: ../../include/functions_visual_map_editor.php:1460 -#: ../../include/ajax/heatmap.ajax.php:319 -#: ../../include/class/AuditLog.class.php:194 -#: ../../include/functions_reporting_html.php:3063 -#: ../../include/functions_reporting_html.php:3389 -#: ../../enterprise/include/functions_reporting_csv.php:1933 -#: ../../enterprise/include/class/Aws.cloud.php:546 -#: ../../enterprise/include/class/Aws.S3.php:564 -#: ../../enterprise/include/class/VMware.app.php:621 -#: ../../enterprise/include/class/Azure.cloud.php:803 -#: ../../enterprise/include/class/DeploymentCenter.class.php:755 -#: ../../enterprise/include/class/DeploymentCenter.class.php:805 -#: ../../enterprise/include/class/DeploymentCenter.class.php:1280 -#: ../../enterprise/include/class/DeploymentCenter.class.php:1397 -#: ../../enterprise/include/functions_reporting.php:2315 -#: ../../enterprise/include/functions_ipam.php:1646 -#: ../../enterprise/include/functions_ipam.php:1647 -#: ../../enterprise/meta/monitoring/custom_fields_csv.php:100 -#: ../../enterprise/godmode/servers/HA_cluster.php:161 -#: ../../extensions/users_connected.php:144 ../../extensions/api_checker.php:123 -#: ../../godmode/reporting/visual_console_builder.elements.php:790 -#: ../../godmode/reporting/reporting_builder.item_editor.php:70 -msgid "IP" -msgstr "IP" - -#: ../../operation/network/network_report.php:186 -#: ../../operation/network/network_report.php:233 -msgid "Flows" -msgstr "Flujo" - -#: ../../operation/network/network_report.php:197 -#: ../../operation/network/network_report.php:235 -msgid "Packets" -msgstr "Paquetes" - -#: ../../operation/network/network_report.php:206 -#: ../../operation/network/network_report.php:236 -#: ../../include/functions_config.php:1001 -#: ../../include/functions_config.php:3101 -#: ../../include/functions_netflow.php:349 -#: ../../enterprise/include/functions_reporting_csv.php:2808 -msgid "Bytes" -msgstr "Bytes" - -#: ../../operation/network/network_report.php:256 -#, php-format -msgid "Filtered by port %s. Click here to remove the filter." -msgstr "Filtrado por puerto %s. Pinche aquĆ­ para eliminar el filtro." - -#: ../../operation/network/network_report.php:256 -#, php-format -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_report.php:324 -#: ../../include/functions_netflow.php:2078 -#: ../../include/functions_visual_map.php:2866 -#: ../../godmode/setup/performance.php:703 -msgid "Others" -msgstr "Otros" - -#: ../../operation/network/network_usage_map.php:139 -msgid "Show netflow map" -msgstr "Mostrar mapa de flujo de red" - -#: ../../operation/network/network_usage_map.php:175 -msgid "No data retrieved" -msgstr "No se han obtenido datos" - -#: ../../operation/snmpconsole/snmp_mib_uploader.php:60 -#: ../../operation/snmpconsole/snmp_browser.php:90 -#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:57 -#: ../../godmode/snmpconsole/snmp_filters.php:59 -#: ../../godmode/snmpconsole/snmp_trap_generator.php:51 -msgid "SMNP" -msgstr "SMNP" - -#: ../../operation/snmpconsole/snmp_mib_uploader.php:86 -msgid "" -"MIB files will be installed on the system. Please note that a MIB may depend " -"on other MIB. To customize trap definitions use the SNMP trap editor." +#: ../../enterprise/extensions/vmware/vmware_view.php:1504 +msgid "Some ESX Hosts are not up to date, please check VMware plugin configuration." msgstr "" -"Los archivos MIB se instalarĆ”n en el sistema. Por favor, ten en cuenta que un " -"MIB puede depender de otro MIB. Para personalizar las definiciones de trap, se " -"debe usar el editor de trap SNMP." +"Algunos hosts ESX no estĆ”n actualizados. Compruebe la configuraciĆ³n del plugin VMware." -#: ../../operation/snmpconsole/snmp_browser.php:56 -#: ../../operation/snmpconsole/snmp_statistics.php:45 -#: ../../operation/snmpconsole/snmp_view.php:118 -#: ../../operation/agentes/networkmap.dinamic.php:102 -#: ../../operation/agentes/pandora_networkmap.view.php:2266 -msgid "Normal screen" -msgstr "Pantalla normal" +#: ../../enterprise/extensions/vmware/vmware_view.php:1506 +msgid "VMware plugin is working." +msgstr "El plugin de VMware estĆ” en funcionamiento." -#: ../../operation/snmpconsole/snmp_browser.php:77 -msgid "SNMP Browser" -msgstr "Navegador SNMP" +#: ../../enterprise/extensions/vmware/vmware_view.php:1515 +msgid "View VMware map" +msgstr "Vista del mapa VMware" -#: ../../operation/snmpconsole/snmp_browser.php:155 -#: ../../operation/snmpconsole/snmp_browser.php:175 -#: ../../godmode/modules/manage_network_templates_form.php:260 -msgid "Add modules" -msgstr "AƱadir mĆ³dulos" +#: ../../enterprise/extensions/vmware/vmware_view.php:1516 +msgid "View VMware dashboard" +msgstr "Vista del panel VMware" -#: ../../operation/snmpconsole/snmp_browser.php:218 -msgid "Adding modules in progress" -msgstr "AƱadiendo mĆ³dulos" +#: ../../enterprise/extensions/vmware/vmware_view.php:1517 +msgid "View ESX Host statistics from" +msgstr "Ver estadĆ­sticas del host ESX desde" -#: ../../operation/snmpconsole/snmp_browser.php:225 -#: ../../godmode/reporting/visual_console_builder.editor.php:167 -#: ../../godmode/reporting/visual_console_builder.editor.php:169 -#: ../../godmode/reporting/visual_console_builder.editor.php:171 -msgid "Action in progress" -msgstr "AcciĆ³n en curso" +#: ../../enterprise/extensions/vmware/vmware_view.php:1524 +msgid "There are no VMware information detected in this environment." +msgstr "No se ha detectado informaciĆ³n VMware en este entorno." -#: ../../operation/snmpconsole/snmp_browser.php:541 -#: ../../include/functions_snmp_browser.php:1534 -msgid "Create new policy" -msgstr "Crear nueva polĆ­tica" +#: ../../enterprise/extensions/vmware/vmware_view.php:1525 +msgid "You can configure several tasks using Discovery Applications at " +msgstr "Puede configurar diversas tareas usando las aplicaciones Discovery en " -#: ../../operation/snmpconsole/snmp_browser.php:552 -msgid "Create policy" -msgstr "Crear polĆ­tica" +#: ../../enterprise/extensions/vmware/vmware_view.php:1737 +#: ../../enterprise/include/class/DeploymentCenter.class.php:482 +#: ../../enterprise/include/class/DeploymentCenter.class.php:490 +#: ../../enterprise/include/class/DeploymentCenter.class.php:498 +#: ../../enterprise/include/class/DeploymentCenter.class.php:657 +#: ../../enterprise/include/class/SAP.app.php:371 +msgid "here" +msgstr "aquĆ­" -#: ../../operation/snmpconsole/snmp_browser.php:639 -#: ../../enterprise/meta/monitoring/wizard/wizard.module.web.php:113 -#: ../../enterprise/meta/monitoring/wizard/wizard.module.local.php:122 -#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:330 -#: ../../enterprise/meta/monitoring/wizard/wizard.create_module.php:42 -#: ../../enterprise/meta/monitoring/wizard/wizard.create_module.php:119 -#: ../../enterprise/meta/monitoring/wizard/wizard.create_agent.php:40 -#: ../../enterprise/meta/monitoring/wizard/wizard.module.network.php:135 -msgid "Create module" -msgstr "Crear mĆ³dulo" - -#: ../../operation/snmpconsole/snmp_browser.php:644 -msgid "Are you sure you want add module?" -msgstr "ĀæEstĆ” seguro de que quiere aƱadir el mĆ³dulo?" - -#: ../../operation/snmpconsole/snmp_browser.php:645 -#: ../../operation/agentes/pandora_networkmap.editor.php:602 -#: ../../include/class/ModuleTemplates.class.php:1381 -#: ../../include/class/HelpFeedBack.class.php:369 -#: ../../include/class/AgentWizard.class.php:6014 -#: ../../include/class/WelcomeWindow.class.php:173 -#: ../../include/class/ConfigPEN.class.php:668 -#: ../../include/class/ConfigPEN.class.php:692 -#: ../../include/class/CredentialStore.class.php:1241 -#: ../../include/lib/Dashboard/Widgets/maps_status.php:351 -#: ../../include/functions_db.php:1933 -#: ../../include/functions_reporting_html.php:659 -#: ../../include/functions_reporting_html.php:854 -#: ../../include/functions_reporting_html.php:3301 -#: ../../include/functions_reporting_html.php:4600 -#: ../../enterprise/operation/agentes/wux_console_view.php:424 -#: ../../enterprise/operation/agentes/ux_console_view.php:186 -#: ../../enterprise/operation/agentes/ux_console_view.php:384 -#: ../../enterprise/include/functions_reporting_csv.php:1539 -#: ../../enterprise/include/functions_reporting_csv.php:1585 -#: ../../enterprise/include/functions_reporting_csv.php:1903 -#: ../../enterprise/include/class/AgentRepository.class.php:898 -#: ../../enterprise/include/class/LogSource.class.php:844 -#: ../../enterprise/include/class/ManageBackups.class.php:292 -#: ../../enterprise/include/class/ManageBackups.class.php:445 -#: ../../enterprise/include/class/DeploymentCenter.class.php:1668 -#: ../../enterprise/include/class/DeploymentCenter.class.php:1720 -#: ../../enterprise/include/class/DatabaseHA.class.php:390 -#: ../../enterprise/include/class/DatabaseHA.class.php:625 -#: ../../enterprise/include/class/DatabaseHA.class.php:727 -#: ../../enterprise/include/functions_services.php:2080 -#: ../../enterprise/include/functions_reporting.php:1882 -#: ../../enterprise/include/functions_reporting.php:2929 -#: ../../enterprise/include/functions_reporting.php:3185 -#: ../../enterprise/include/functions_reporting.php:3917 -#: ../../enterprise/include/functions_reporting.php:4186 -#: ../../enterprise/include/functions_reporting.php:4832 -#: ../../enterprise/include/functions_reporting.php:6155 -#: ../../enterprise/include/functions_reporting.php:6193 -#: ../../enterprise/include/functions_ux_console.php:473 -#: ../../enterprise/godmode/services/services.service.php:995 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2557 -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:436 -#: ../../extensions/module_groups.php:53 -#: ../../godmode/setup/setup_general.php:778 -#: ../../godmode/setup/setup_general.php:796 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2556 -#: ../../godmode/massive/massive_operations.php:392 -msgid "OK" -msgstr "Aceptar" - -#: ../../operation/snmpconsole/snmp_statistics.php:78 -#: ../../operation/snmpconsole/snmp_view.php:99 -#: ../../operation/incidents/incident_statistics.php:21 -#: ../../enterprise/include/functions_ipam.php:1557 -msgid "Statistics" -msgstr "EstadĆ­sticas" - -#: ../../operation/snmpconsole/snmp_statistics.php:85 -msgid "SNMP Statistics" -msgstr "EstadĆ­sticas SNMP" - -#: ../../operation/snmpconsole/snmp_statistics.php:156 -#: ../../operation/snmpconsole/snmp_view.php:720 -msgid "There are no SNMP traps in database" -msgstr "No hay ningĆŗn trap SNMP definido" - -#: ../../operation/snmpconsole/snmp_statistics.php:169 -msgid "Traps received by source" -msgstr "Traps recibidos por el origen" - -#: ../../operation/snmpconsole/snmp_statistics.php:169 -#: ../../operation/snmpconsole/snmp_statistics.php:237 -#: ../../include/functions_reporting.php:1534 -#: ../../enterprise/include/functions_reporting_csv.php:932 +#: ../../enterprise/extensions/vmware/vmware_view.php:1734 #, php-format -msgid "Top %d" -msgstr "Primeros %d" +msgid "" +"This map is a quick representation of all your VMware entities detected. You can " +"create a custom VMware map by defining a network map based on your VMware discovery " +"task %s" +msgstr "" +"Este mapa es una representaciĆ³n rĆ”pida de todas las entidades VMWare detectadas. " +"Puede crear un mapa VMWare personalizado definiendo un mapa de red basado en sus " +"tareas de descubrimiento VMWare %s" -#: ../../operation/snmpconsole/snmp_statistics.php:183 -#: ../../operation/snmpconsole/snmp_statistics.php:251 -msgid "Number" -msgstr "NĆŗmero" +#: ../../enterprise/extensions/vmware/vmware_view.php:1744 +msgid "Show Datastores" +msgstr "Mostrar datastores" -#: ../../operation/snmpconsole/snmp_statistics.php:193 -#: ../../operation/snmpconsole/snmp_view.php:956 -#: ../../operation/agentes/estado_agente.php:968 -#: ../../operation/agentes/estado_agente.php:978 -#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:232 -#: ../../enterprise/meta/monitoring/wizard/wizard.agent.php:76 -#: ../../godmode/agentes/configurar_agente.php:842 -#: ../../godmode/agentes/modificar_agente.php:952 -msgid "Create agent" -msgstr "Crear agente" +#: ../../enterprise/extensions/vmware/vmware_view.php:1747 +msgid "Show ESX" +msgstr "Mostrar ESX" -#: ../../operation/snmpconsole/snmp_statistics.php:197 -#: ../../operation/snmpconsole/snmp_view.php:962 -msgid "View agent details" -msgstr "Ver detalles del agente" +#: ../../enterprise/extensions/vmware/vmware_view.php:1750 +msgid "Show VM" +msgstr "Mostrar VM" -#: ../../operation/snmpconsole/snmp_statistics.php:237 -msgid "Traps received by Enterprise String" -msgstr "Traps recibidos por cadena Enterprise" +#: ../../enterprise/extensions/vmware/vmware_view.php:1754 +#: ../../godmode/reporting/visual_console_builder.wizard.php:215 +msgid "Font" +msgstr "Fuente" -#: ../../operation/snmpconsole/snmp_statistics.php:250 -msgid "Trap Enterprise String" -msgstr "Traps Enterprise de cadena" +#: ../../enterprise/extensions/vmware/vmware_view.php:1758 +#: ../../enterprise/godmode/agentes/pandora_networkmap_empty.editor.php:152 +#: ../../godmode/agentes/pandora_networkmap_empty.editor.php:154 +#: ../../operation/agentes/pandora_networkmap.editor.php:311 +#: ../../operation/agentes/pandora_networkmap.view.php:106 +msgid "Node radius" +msgstr "Radio de los nodos" -#: ../../operation/snmpconsole/snmp_view.php:174 -#: ../../include/class/CalendarManager.class.php:487 -#: ../../include/class/CalendarManager.class.php:840 -#: ../../include/functions_alerts.php:2747 -#: ../../include/functions_planned_downtimes.php:124 -#: ../../enterprise/tools/ipam/ipam_network_location_config.php:71 -#: ../../enterprise/tools/ipam/ipam_massive.php:47 -#: ../../enterprise/tools/ipam/ipam_action.php:255 -#: ../../enterprise/operation/agentes/transactional_map.php:166 -#: ../../enterprise/include/class/NetworkConfigManager.class.php:1784 -#: ../../enterprise/include/class/NetworkConfigManager.class.php:1874 -#: ../../enterprise/include/class/NetworkConfigManager.class.php:1969 -#: ../../enterprise/include/class/NetworkConfigManager.class.php:2063 -#: ../../enterprise/include/class/NetworkConfigManager.class.php:2688 -#: ../../enterprise/meta/advanced/links.php:70 -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:329 -#: ../../enterprise/godmode/reporting/reporting_builder.template_advanced.php:69 -#: ../../enterprise/godmode/reporting/reporting_builder.template_editor.php:82 -#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:398 -#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:122 -#: ../../enterprise/godmode/agentes/agent_disk_conf_editor.php:111 -#: ../../enterprise/godmode/alerts/alert_inventory_builder.php:132 -#: ../../enterprise/godmode/policies/policy_modules.php:1249 -#: ../../godmode/setup/news.php:107 ../../godmode/setup/gis.php:39 -#: ../../godmode/setup/links.php:63 -#: ../../godmode/modules/manage_nc_groups.php:118 -#: ../../godmode/snmpconsole/snmp_alert.php:444 -#: ../../godmode/snmpconsole/snmp_filters.php:110 -#: ../../godmode/events/event_edit_filter.php:215 -#: ../../godmode/netflow/nf_edit_form.php:139 -#: ../../godmode/massive/massive_edit_modules.php:184 -#: ../../godmode/agentes/status_monitor_custom_fields.php:57 -#: ../../godmode/agentes/configurar_agente.php:1173 -#: ../../godmode/agentes/planned_downtime.editor.php:418 -#: ../../godmode/alerts/configure_alert_template.php:554 -#: ../../godmode/alerts/alert_templates.php:156 -#: ../../godmode/alerts/alert_list.php:94 ../../godmode/alerts/alert_list.php:312 -#: ../../godmode/alerts/configure_alert_command.php:144 -#: ../../godmode/users/profile_list.php:252 -msgid "Successfully updated" -msgstr "Actualizado correctamente" +#: ../../enterprise/extensions/vmware/vmware_view.php:1762 +#: ../../operation/agentes/pandora_networkmap.editor.php:425 +#: ../../operation/agentes/pandora_networkmap.view.php:247 +msgid "Node separation" +msgstr "SeparaciĆ³n de nodos" -#: ../../operation/snmpconsole/snmp_view.php:175 -#: ../../operation/agentes/pandora_networkmap.php:216 -#: ../../operation/agentes/pandora_networkmap.php:508 +#: ../../enterprise/extensions/vmware/vmware_view.php:1772 +msgid "View options" +msgstr "Ver opciones" + +#: ../../enterprise/extensions/vmware/vmware_manager.php:227 +msgid "Power Status: " +msgstr "Estado: " + +#: ../../enterprise/extensions/vmware/vmware_manager.php:269 +#: ../../operation/agentes/pandora_networkmap.view.php:1805 +msgid "Status: " +msgstr "Estado: " + +#: ../../enterprise/extensions/vmware/vmware_manager.php:273 +msgid "Change Status" +msgstr "Cambiar estado:" + +#: ../../enterprise/extensions/resource_exportation/functions.php:20 +msgid "Export agents" +msgstr "Exportar agentes" + +#: ../../enterprise/extensions/resource_exportation/functions.php:21 +#: ../../enterprise/include/functions_reporting.php:8136 +#: ../../extensions/resource_exportation.php:435 +#: ../../extensions/resource_exportation.php:438 +#: ../../operation/agentes/exportdata.php:389 +msgid "Export" +msgstr "Exportar" + +#: ../../enterprise/extensions/csv_import_group.php:50 +#, php-format +msgid "" +"This node is configured with centralized mode. All group information is read only. Go " +"to %s to import the CSV." +msgstr "" +"Este nodo se configura con el modo centralizado. Toda la informaciĆ³n del grupo es de " +"solo lectura. Vaya a %s para importar el CSV." + +#: ../../enterprise/extensions/csv_import_group.php:83 +msgid "CSV group import" +msgstr "ImportaciĆ³n de grupo CSV" + +#: ../../enterprise/load_html_extra.php:202 +msgid "Activate license" +msgstr "Activar la licencia" + +#: ../../enterprise/load_html_extra.php:203 +msgid "Your request key is:" +msgstr "Tu clave es:" + +#: ../../enterprise/load_html_extra.php:206 +#, php-format +msgid "" +"You can activate it manually here or " +"automatically filling the form below:" +msgstr "" +"Lo puedes activar manualmente aquĆ­ o " +"automĆ”ticamente rellenando el siguiente formulario:" + +#: ../../enterprise/load_html_extra.php:213 +msgid "Auth Key:" +msgstr "Clave de autentificaciĆ³n:" + +#: ../../enterprise/load_html_extra.php:221 ../../enterprise/load_html_extra.php:240 +msgid "Online validation" +msgstr "ValidaciĆ³n en lĆ­nea" + +#: ../../enterprise/load_html_extra.php:233 +msgid "ERROR:" +msgstr "ERROR:" + +#: ../../enterprise/load_html_extra.php:233 +msgid "When connecting to licence server." +msgstr "Al conectar con el servidor de licencias." + +#: ../../enterprise/godmode/modules/configure_local_component.php:141 +msgid "Update Local Component" +msgstr "Actualizar el componente local" + +#: ../../enterprise/godmode/modules/configure_local_component.php:143 +msgid "Create Local Component" +msgstr "Crear componente local" + +#: ../../enterprise/godmode/modules/configure_local_component.php:162 +#: ../../godmode/modules/manage_network_components_form_common.php:50 +#: ../../godmode/alerts/configure_alert_template.php:1134 +msgid "Wizard level" +msgstr "Nivel del asistente" + +#: ../../enterprise/godmode/modules/configure_local_component.php:192 +msgid "Throw unknown events" +msgstr "Generar eventos desconocidos" + +#: ../../enterprise/godmode/modules/configure_local_component.php:292 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:489 +#: ../../godmode/modules/manage_network_components_form_common.php:146 +#: ../../godmode/massive/massive_edit_modules.php:552 +msgid "Dynamic Interval" +msgstr "Intervalo dinĆ”mico" + +#: ../../enterprise/godmode/modules/configure_local_component.php:298 +#: ../../godmode/modules/manage_network_components_form_common.php:152 +#: ../../godmode/agentes/module_manager_editor_common.php:691 +msgid "Advanced options Dynamic Threshold" +msgstr "Opciones avanzadas rango dinĆ”mico" + +#: ../../enterprise/godmode/modules/configure_local_component.php:303 +#: ../../godmode/modules/manage_network_components_form_common.php:157 +msgid "Dynamic Min. " +msgstr "DinĆ”mico mĆ­nimo " + +#: ../../enterprise/godmode/modules/configure_local_component.php:305 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:493 +#: ../../godmode/modules/manage_network_components_form_common.php:159 +#: ../../godmode/massive/massive_edit_modules.php:556 +msgid "Dynamic Max." +msgstr "DinĆ”mico mĆ”ximo" + +#: ../../enterprise/godmode/modules/configure_local_component.php:307 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:495 +#: ../../godmode/modules/manage_network_components_form_common.php:161 +#: ../../godmode/massive/massive_edit_modules.php:558 +msgid "Dynamic Two Tailed: " +msgstr "El segundo rango dĆ­nĆ”mico falla: " + +#: ../../enterprise/godmode/modules/configure_local_component.php:310 +#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:289 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:498 +#: ../../godmode/modules/manage_network_components_form_common.php:164 +#: ../../godmode/massive/massive_edit_modules.php:561 +#: ../../include/functions_treeview.php:96 ../../include/functions_alerts.php:679 +msgid "Warning status" +msgstr "Estado advertencia" + +#: ../../enterprise/godmode/modules/configure_local_component.php:311 +#: ../../enterprise/godmode/modules/configure_local_component.php:354 +#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:293 +#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:342 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:502 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:593 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:828 +#: ../../godmode/modules/manage_network_components_form_common.php:165 +#: ../../godmode/modules/manage_network_components_form_common.php:206 +#: ../../godmode/modules/manage_network_components_form_wizard.php:387 +#: ../../godmode/modules/manage_network_components_form_wizard.php:415 +#: ../../godmode/massive/massive_edit_modules.php:565 +#: ../../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:5287 +#: ../../include/functions_treeview.php:92 ../../include/functions_treeview.php:104 +#: ../../include/functions_alerts.php:676 +#: ../../include/lib/Dashboard/Widgets/top_n.php:282 +msgid "Min." +msgstr "MĆ­n." + +#: ../../enterprise/godmode/modules/configure_local_component.php:320 +#: ../../enterprise/godmode/modules/configure_local_component.php:363 +#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:308 +#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:357 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:517 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:608 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:830 +#: ../../godmode/modules/manage_network_components_form_common.php:174 +#: ../../godmode/modules/manage_network_components_form_common.php:215 +#: ../../godmode/modules/manage_network_components_form_wizard.php:389 +#: ../../godmode/modules/manage_network_components_form_wizard.php:424 +#: ../../godmode/agentes/module_manager_editor_common.php:428 +#: ../../godmode/agentes/module_manager_editor_common.php:489 +#: ../../godmode/massive/massive_edit_modules.php:580 +#: ../../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:5288 +#: ../../include/functions_treeview.php:92 ../../include/functions_treeview.php:104 +#: ../../include/functions_alerts.php:675 +#: ../../include/lib/Dashboard/Widgets/top_n.php:281 +msgid "Max." +msgstr "MĆ”x." + +#: ../../enterprise/godmode/modules/configure_local_component.php:329 +#: ../../enterprise/godmode/modules/configure_local_component.php:372 +#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:323 +#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:372 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:532 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:623 +#: ../../godmode/modules/manage_network_components_form_common.php:183 +#: ../../godmode/modules/manage_network_components_form_common.php:224 +#: ../../godmode/agentes/module_manager_editor_common.php:444 +#: ../../godmode/agentes/module_manager_editor_common.php:505 +#: ../../godmode/massive/massive_edit_modules.php:595 +#: ../../godmode/massive/massive_edit_modules.php:686 +#: ../../include/functions_treeview.php:90 ../../include/functions_treeview.php:102 +msgid "Str." +msgstr "Str." + +#: ../../enterprise/godmode/modules/configure_local_component.php:343 +#: ../../enterprise/godmode/modules/configure_local_component.php:386 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:567 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:658 +#: ../../godmode/modules/manage_network_components_form_common.php:196 +#: ../../godmode/modules/manage_network_components_form_common.php:237 +#: ../../godmode/modules/manage_network_components_form_wizard.php:400 +#: ../../godmode/modules/manage_network_components_form_wizard.php:442 +#: ../../godmode/agentes/module_manager_editor_common.php:464 +#: ../../godmode/agentes/module_manager_editor_common.php:526 +#: ../../godmode/massive/massive_edit_modules.php:630 +#: ../../godmode/massive/massive_edit_modules.php:722 +msgid "Percentage" +msgstr "Porcentaje" + +#: ../../enterprise/godmode/modules/configure_local_component.php:353 +#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:338 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:589 +#: ../../godmode/modules/manage_network_components_form_common.php:205 +#: ../../godmode/massive/massive_edit_modules.php:652 +#: ../../include/functions_treeview.php:108 ../../include/functions_alerts.php:680 +msgid "Critical status" +msgstr "Estado crĆ­tico" + +#: ../../enterprise/godmode/modules/configure_local_component.php:391 +#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:232 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:873 +#: ../../godmode/modules/manage_network_components_form_common.php:243 +#: ../../godmode/agentes/module_manager_editor_common.php:780 +#: ../../godmode/massive/massive_edit_modules.php:930 +msgid "FF threshold" +msgstr "Umbral FF" + +#: ../../enterprise/godmode/modules/configure_local_component.php:394 +#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:235 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:941 +#: ../../godmode/modules/manage_network_components_form_common.php:246 +#: ../../godmode/agentes/module_manager_editor_common.php:782 +#: ../../godmode/massive/massive_edit_modules.php:994 +msgid "Keep counters" +msgstr "Mantener los contadores" + +#: ../../enterprise/godmode/modules/configure_local_component.php:402 +#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:252 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:885 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:900 +#: ../../godmode/modules/manage_network_components_form_common.php:260 +#: ../../godmode/agentes/module_manager_editor_common.php:799 +#: ../../godmode/massive/massive_edit_modules.php:938 +#: ../../godmode/massive/massive_edit_modules.php:953 +msgid "All state changing" +msgstr "Todos los cambios de estado" + +#: ../../enterprise/godmode/modules/configure_local_component.php:417 +#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:274 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:884 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:910 +#: ../../godmode/modules/manage_network_components_form_common.php:276 +#: ../../godmode/agentes/module_manager_editor_common.php:821 +#: ../../godmode/massive/massive_edit_modules.php:937 +#: ../../godmode/massive/massive_edit_modules.php:963 +msgid "Each state changing" +msgstr "Cada cambio de estado" + +#: ../../enterprise/godmode/modules/configure_local_component.php:418 +#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:275 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:911 +#: ../../godmode/modules/manage_network_components_form_common.php:277 +#: ../../godmode/agentes/module_manager_editor_common.php:822 +#: ../../godmode/massive/massive_edit_modules.php:964 +msgid "To normal" +msgstr "A normal" + +#: ../../enterprise/godmode/modules/configure_local_component.php:427 +#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:289 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:921 +#: ../../godmode/modules/manage_network_components_form_common.php:286 +#: ../../godmode/agentes/module_manager_editor_common.php:836 +#: ../../godmode/massive/massive_edit_modules.php:974 +msgid "To warning" +msgstr "A advertencia" + +#: ../../enterprise/godmode/modules/configure_local_component.php:436 +#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:303 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:931 +#: ../../godmode/modules/manage_network_components_form_common.php:295 +#: ../../godmode/agentes/module_manager_editor_common.php:850 +#: ../../godmode/massive/massive_edit_modules.php:984 +msgid "To critical" +msgstr "A crĆ­tico" + +#: ../../enterprise/godmode/modules/configure_local_component.php:447 +#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:318 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:966 +#: ../../enterprise/include/functions_reporting_csv.php:2175 +#: ../../godmode/modules/manage_network_components_form_common.php:305 +#: ../../godmode/agentes/module_manager_editor_common.php:532 +#: ../../godmode/massive/massive_edit_modules.php:1042 +#: ../../include/functions_reporting.php:4129 +msgid "Historical data" +msgstr "HistĆ³rico de datos" + +#: ../../enterprise/godmode/modules/configure_local_component.php:450 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:963 +#: ../../godmode/agentes/module_manager_editor_common.php:880 +#: ../../godmode/massive/massive_edit_modules.php:1028 +msgid "FF timeout" +msgstr "FF tiempo de espera" + +#: ../../enterprise/godmode/modules/configure_local_component.php:458 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:964 +#: ../../godmode/massive/massive_edit_modules.php:1038 +msgid "" +"Timeout in secs from start of flip flop counting. If this value is exceeded, FF " +"counter is reset. Set to 0 for no timeout." +msgstr "" +"Tiempo de espera en segundos desde el comiendo del contador flip flop. Si se excede " +"este valor, el contador FF serĆ” reiniciado. Poner 0 para no tener tiempo de espera" + +#: ../../enterprise/godmode/modules/configure_local_component.php:459 +msgid "This value can be set only in the async modules." +msgstr "Solo debe establecerse este valor en los mĆ³dulos asĆ­ncronos." + +#: ../../enterprise/godmode/modules/configure_local_component.php:461 +#: ../../enterprise/include/functions_reporting_csv.php:1201 +#: ../../godmode/modules/manage_network_components_form_common.php:308 +#: ../../godmode/agentes/module_manager_editor_common.php:664 +#: ../../include/rest-api/models/VisualConsole/Items/Percentile.php:480 +#: ../../include/functions_reporting.php:6615 +msgid "Min. Value" +msgstr "Valor mĆ­nimo" + +#: ../../enterprise/godmode/modules/configure_local_component.php:461 +#: ../../godmode/modules/manage_network_components_form_common.php:309 +msgid "Any value below this number is discarted" +msgstr "Cualquier valor por debajo de este nĆŗmero serĆ” descartado." + +#: ../../enterprise/godmode/modules/configure_local_component.php:466 +#: ../../enterprise/include/functions_reporting_csv.php:1256 +#: ../../godmode/modules/manage_network_components_form_common.php:310 +#: ../../godmode/agentes/module_manager_editor_common.php:668 +#: ../../include/rest-api/models/VisualConsole/Items/Percentile.php:492 +#: ../../include/functions_reporting.php:6611 +msgid "Max. Value" +msgstr "Valor mĆ”ximo" + +#: ../../enterprise/godmode/modules/configure_local_component.php:466 +#: ../../godmode/modules/manage_network_components_form_common.php:311 +msgid "Any value over this number is discarted" +msgstr "Cualquier valor por encima de este nĆŗmero serĆ” descartado." + +#: ../../enterprise/godmode/modules/configure_local_component.php:473 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:716 +#: ../../godmode/modules/manage_network_components_form_plugin.php:49 +#: ../../godmode/modules/manage_network_components_form_network.php:178 +#: ../../godmode/modules/manage_network_components_form_wmi.php:55 +#: ../../godmode/agentes/module_manager_editor_common.php:649 +#: ../../godmode/massive/massive_edit_modules.php:780 +#: ../../godmode/setup/snmp_wizard.php:43 +msgid "Post process" +msgstr "Posprocesado" + +#: ../../enterprise/godmode/modules/configure_local_component.php:500 +#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:180 +msgid "Load a basic structure on data configuration" +msgstr "Cargar una estructura bĆ”sica en la configuraciĆ³n de datos" + +#: ../../enterprise/godmode/modules/configure_local_component.php:503 +#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:183 +msgid "Check the correct structure of the data configuration" +msgstr "Comprobar la estructura correcta de la configuraciĆ³n de datos" + +#: ../../enterprise/godmode/modules/configure_local_component.php:506 +#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:196 +msgid "First line must be \"module_begin\"" +msgstr "La primera lĆ­nea tiene que ser \"module_begin\"." + +#: ../../enterprise/godmode/modules/configure_local_component.php:507 +#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:197 +msgid "Data configuration is empty" +msgstr "La configuraciĆ³n de datos estĆ” vacĆ­a." + +#: ../../enterprise/godmode/modules/configure_local_component.php:508 +#: ../../enterprise/godmode/modules/configure_local_component.php:512 +#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:198 +#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:202 +msgid "Last line must be \"module_end\"" +msgstr "La Ćŗltima lĆ­nea tiene que ser \"module_end\"." + +#: ../../enterprise/godmode/modules/configure_local_component.php:509 +#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:199 +msgid "" +"Name is missed. Please add a line with \"module_name yourmodulename\" to data " +"configuration" +msgstr "" +"Falta el nombre. Por favor, introduce una lĆ­nea con \"module_name yourmodulename\" a " +"la configuraciĆ³n de datos." + +#: ../../enterprise/godmode/modules/configure_local_component.php:510 +#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:200 +msgid "" +"Type is missed. Please add a line with \"module_type yourmoduletype\" to data " +"configuration" +msgstr "" +"Falta el tipo. Por favor, introduce una lĆ­nea con \"module_type yourmoduletype\" a la " +"configuraciĆ³n de datos." + +#: ../../enterprise/godmode/modules/configure_local_component.php:511 +#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:201 +msgid "Type is wrong. Please set a correct type" +msgstr "El tipo es incorrecto. Por favor, introduce un tipo correcto." + +#: ../../enterprise/godmode/modules/configure_local_component.php:514 +#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:204 +msgid "Error in the syntax, please check the data configuration." +msgstr "Error en la sintaxis; comprueba la configuraciĆ³n de datos." + +#: ../../enterprise/godmode/modules/configure_local_component.php:515 +#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:205 +msgid "Data configuration are built correctly" +msgstr "La configuraciĆ³n de datos se ha efectuado correctamente." + +#: ../../enterprise/godmode/modules/configure_local_component.php:523 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:1016 +#: ../../godmode/modules/manage_network_components_form_common.php:323 +#: ../../godmode/agentes/module_manager_editor_common.php:1093 +#: ../../godmode/massive/massive_edit_modules.php:1092 +msgid "Critical instructions" +msgstr "Instrucciones de crĆ­tico" + +#: ../../enterprise/godmode/modules/configure_local_component.php:523 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:1016 +#: ../../godmode/modules/manage_network_components_form_common.php:323 +#: ../../godmode/massive/massive_edit_modules.php:1092 +msgid "Instructions when the status is critical" +msgstr "Instrucciones en caso de que se encuentre en estado crĆ­tico" + +#: ../../enterprise/godmode/modules/configure_local_component.php:528 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:1020 +#: ../../godmode/modules/manage_network_components_form_common.php:327 +#: ../../godmode/agentes/module_manager_editor_common.php:1098 +#: ../../godmode/massive/massive_edit_modules.php:1096 +msgid "Warning instructions" +msgstr "Instrucciones de advertencia" + +#: ../../enterprise/godmode/modules/configure_local_component.php:528 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:1020 +#: ../../godmode/modules/manage_network_components_form_common.php:327 +#: ../../godmode/massive/massive_edit_modules.php:1096 +msgid "Instructions when the status is warning" +msgstr "Instrucciones en caso de que se encuentre en estado de advertencia" + +#: ../../enterprise/godmode/modules/configure_local_component.php:533 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:1024 +#: ../../godmode/modules/manage_network_components_form_common.php:331 +#: ../../godmode/agentes/module_manager_editor_common.php:1102 +#: ../../godmode/massive/massive_edit_modules.php:1100 +msgid "Unknown instructions" +msgstr "Instrucciones de desconocido" + +#: ../../enterprise/godmode/modules/configure_local_component.php:533 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:1024 +#: ../../godmode/modules/manage_network_components_form_common.php:331 +#: ../../godmode/massive/massive_edit_modules.php:1100 +msgid "Instructions when the status is unknown" +msgstr "Instrucciones en caso de que se encuentre en estado desconocido" + +#: ../../enterprise/godmode/modules/configure_local_component.php:542 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:984 +#: ../../godmode/modules/manage_network_components_form_common.php:342 +#: ../../godmode/agentes/module_manager_editor_common.php:1143 +#: ../../godmode/massive/massive_edit_modules.php:1060 +#: ../../godmode/module_library/module_library_view.php:123 +msgid "Category" +msgstr "CategorĆ­a" + +#: ../../enterprise/godmode/modules/configure_local_component.php:561 +#: ../../godmode/modules/manage_network_components_form_common.php:362 +#: ../../godmode/agentes/module_manager_editor_common.php:906 +msgid "Tags available" +msgstr "Etiquetas disponibles" + +#: ../../enterprise/godmode/modules/configure_local_component.php:579 +#: ../../godmode/modules/manage_network_components_form_common.php:380 +#: ../../godmode/agentes/module_manager_editor_common.php:1001 +msgid "Add tags to module" +msgstr "AƱadir etiquetas al mĆ³dulo" + +#: ../../enterprise/godmode/modules/configure_local_component.php:580 +#: ../../godmode/modules/manage_network_components_form_common.php:381 +#: ../../godmode/agentes/module_manager_editor_common.php:1010 +msgid "Delete tags to module" +msgstr "Eliminar etiquetas del mĆ³dulo" + +#: ../../enterprise/godmode/modules/configure_local_component.php:581 +#: ../../enterprise/godmode/setup/setup_auth.php:174 +#: ../../enterprise/godmode/setup/setup_auth.php:458 +#: ../../enterprise/godmode/setup/setup_auth.php:1253 +#: ../../godmode/modules/manage_network_components_form_common.php:382 +#: ../../godmode/agentes/module_manager_editor_common.php:1014 +msgid "Tags selected" +msgstr "Etiquetas seleccionadas" + +#: ../../enterprise/godmode/modules/configure_local_component.php:603 +msgid "Macros" +msgstr "Macros" + +#: ../../enterprise/godmode/modules/configure_local_component.php:639 +#: ../../godmode/servers/plugin.php:492 +#: ../../include/class/ManageNetScanScripts.class.php:636 +msgid "Default value" +msgstr "Valor por defecto" + +#: ../../enterprise/godmode/modules/configure_local_component.php:655 +#: ../../godmode/servers/plugin.php:554 +#: ../../include/class/ManageNetScanScripts.class.php:724 +msgid "Add macro" +msgstr "AƱadir macro" + +#: ../../enterprise/godmode/modules/configure_local_component.php:663 +#: ../../godmode/servers/plugin.php:568 +#: ../../include/class/ManageNetScanScripts.class.php:742 +msgid "Delete macro" +msgstr "Eliminar macro" + +#: ../../enterprise/godmode/modules/configure_local_component.php:978 +#: ../../godmode/modules/manage_network_components_form_common.php:706 +#: ../../godmode/agentes/module_manager_editor_common.php:1994 +msgid "Normal Status" +msgstr "Estado normal" + +#: ../../enterprise/godmode/modules/configure_local_component.php:979 +#: ../../godmode/modules/manage_network_components_form_common.php:707 +#: ../../godmode/agentes/module_manager_editor_common.php:1995 +msgid "Warning Status" +msgstr "Estado de advertencia" + +#: ../../enterprise/godmode/modules/configure_local_component.php:980 +#: ../../godmode/modules/manage_network_components_form_common.php:708 +#: ../../godmode/agentes/module_manager_editor_common.php:1996 +msgid "Critical Status" +msgstr "Estado crĆ­tico" + +#: ../../enterprise/godmode/modules/configure_local_component.php:983 +#: ../../godmode/modules/manage_network_components_form_common.php:710 +#: ../../godmode/agentes/module_manager_editor_common.php:1998 +msgid "Please introduce a maximum warning higher than the minimun warning" +msgstr "" +"Por favor, introduce un mĆ”ximo de advertencia mayor que el mĆ­nimo de advertencia." + +#: ../../enterprise/godmode/modules/configure_local_component.php:985 +#: ../../godmode/modules/manage_network_components_form_common.php:711 +#: ../../godmode/agentes/module_manager_editor_common.php:1999 +msgid "Please introduce a maximum critical higher than the minimun critical" +msgstr "Por favor introduce un mĆ”ximo de crĆ­tico mayor que el mĆ­nimo de crĆ­tico." + +#: ../../enterprise/godmode/modules/configure_local_component.php:987 +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:458 +#: ../../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:117 +msgid "Successfully created inventory module" +msgstr "Inventario de mĆ³dulo creado correctamente" + +#: ../../enterprise/godmode/modules/manage_inventory_modules.php:118 +msgid "Error creating inventory module" +msgstr "Error al crear mĆ³dulo del inventario" + +#: ../../enterprise/godmode/modules/manage_inventory_modules.php:143 +#: ../../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:144 +#: ../../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:162 +#: ../../enterprise/godmode/modules/manage_inventory_modules.php:183 +#: ../../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:163 +#: ../../enterprise/godmode/modules/manage_inventory_modules.php:184 +#: ../../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:217 +#: ../../enterprise/godmode/modules/manage_inventory_modules.php:250 +#: ../../enterprise/godmode/modules/local_components.php:443 +#: ../../godmode/modules/manage_nc_groups.php:194 +#: ../../godmode/modules/manage_network_components.php:578 +#: ../../godmode/modules/manage_network_templates.php:114 +msgid "Successfully multiple deleted" +msgstr "SupresiĆ³n mĆŗltiple correcta" + +#: ../../enterprise/godmode/modules/manage_inventory_modules.php:218 +#: ../../enterprise/godmode/modules/manage_inventory_modules.php:251 +#: ../../enterprise/godmode/modules/local_components.php:444 +#: ../../godmode/modules/manage_nc_groups.php:195 +#: ../../godmode/modules/manage_network_components.php:579 +#: ../../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:275 +#: ../../enterprise/godmode/modules/manage_inventory_modules_form.php:114 +msgid "Interpreter" +msgstr "IntĆ©rprete" + +#: ../../enterprise/godmode/modules/manage_inventory_modules.php:284 +msgid "No inventory modules defined" +msgstr "No hay mĆ³dulos de inventario definidos" + +#: ../../enterprise/godmode/modules/manage_inventory_modules.php:305 +msgid "Local module" +msgstr "MĆ³dulo local" + +#: ../../enterprise/godmode/modules/manage_inventory_modules.php:307 +msgid "Remote/Local" +msgstr "Remoto/Local" + +#: ../../enterprise/godmode/modules/manage_inventory_modules.php:353 +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:355 +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:196 +#: ../../godmode/alerts/configure_alert_template.php:191 +#, php-format +msgid "Successfully created from %s" +msgstr "Creado correctamente desde %s" + +#: ../../enterprise/godmode/modules/local_components.php:142 +#: ../../enterprise/godmode/modules/local_components.php:318 +#: ../../enterprise/godmode/policies/policies.php:170 +#: ../../enterprise/godmode/policies/policy_external_alerts.php:124 +#: ../../enterprise/godmode/policies/policy_external_alerts.php:127 +#: ../../enterprise/godmode/alerts/alert_inventory_builder.php:77 +#: ../../enterprise/godmode/setup/setup_metaconsole.php:126 +#: ../../enterprise/godmode/reporting/reporting_builder.template_editor.php:48 +#: ../../enterprise/godmode/servers/manage_export.php:112 +#: ../../enterprise/godmode/servers/manage_export.php:119 +#: ../../enterprise/godmode/servers/credential_boxes_satellite.php:81 +#: ../../enterprise/include/ajax/servers.ajax.php:198 +#: ../../enterprise/operation/agentes/transactional_map.php:135 +#: ../../enterprise/tools/ipam/ipam_action.php:153 +#: ../../enterprise/tools/ipam/ipam_network_location_config.php:51 +#: ../../godmode/modules/manage_nc_groups.php:85 +#: ../../godmode/modules/manage_network_components.php:199 +#: ../../godmode/modules/manage_network_components.php:427 +#: ../../godmode/users/configure_user.php:473 +#: ../../godmode/agentes/configurar_agente.php:351 +#: ../../godmode/agentes/configurar_agente.php:876 +#: ../../godmode/agentes/planned_downtime.editor.php:406 +#: ../../godmode/alerts/alert_commands.php:559 +#: ../../godmode/alerts/configure_alert_template.php:192 +#: ../../godmode/alerts/configure_alert_template.php:527 +#: ../../godmode/alerts/alert_list.php:165 ../../godmode/setup/news.php:67 +#: ../../godmode/setup/gis.php:49 +#: ../../godmode/reporting/reporting_builder.item_editor.php:5828 #: ../../include/functions_alerts.php:2748 -#: ../../include/functions_planned_downtimes.php:122 -#: ../../enterprise/tools/ipam/ipam_massive.php:48 -#: ../../enterprise/tools/ipam/ipam_action.php:253 -#: ../../enterprise/operation/agentes/transactional_map.php:160 -#: ../../enterprise/include/ajax/servers.ajax.php:331 -#: ../../enterprise/godmode/servers/credential_boxes_satellite.php:112 -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:330 +#: ../../include/functions_planned_downtimes.php:112 +#: ../../include/functions_planned_downtimes.php:827 +#: ../../operation/agentes/pandora_networkmap.php:140 +#: ../../operation/agentes/pandora_networkmap.php:375 +msgid "Could not be created" +msgstr "No se ha podido crear" + +#: ../../enterprise/godmode/modules/local_components.php:157 +msgid "Local component management" +msgstr "GestiĆ³n de componentes locales" + +#: ../../enterprise/godmode/modules/local_components.php:263 +#, php-format +msgid "" +"This node is configured with centralized mode. All local components are read only. Go " +"to %s to manage them." +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." + +#: ../../enterprise/godmode/modules/local_components.php:326 +#: ../../godmode/modules/manage_network_components.php:438 +#: ../../include/class/ManageNetScanScripts.class.php:228 +msgid "Created successfully" +msgstr "Creado correctamente" + #: ../../enterprise/godmode/modules/local_components.php:393 -#: ../../enterprise/godmode/reporting/reporting_builder.template_advanced.php:70 -#: ../../enterprise/godmode/reporting/reporting_builder.template_editor.php:83 -#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:123 #: ../../enterprise/godmode/agentes/agent_disk_conf_editor.php:112 -#: ../../enterprise/godmode/alerts/alert_inventory_builder.php:133 #: ../../enterprise/godmode/policies/policy_modules.php:1250 #: ../../enterprise/godmode/policies/policies.php:212 -#: ../../godmode/setup/gis.php:41 +#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:123 +#: ../../enterprise/godmode/alerts/alert_inventory_builder.php:133 +#: ../../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:330 +#: ../../enterprise/include/ajax/servers.ajax.php:331 +#: ../../enterprise/operation/agentes/transactional_map.php:160 +#: ../../enterprise/tools/ipam/ipam_action.php:253 +#: ../../enterprise/tools/ipam/ipam_massive.php:48 #: ../../godmode/modules/manage_network_components.php:525 #: ../../godmode/agentes/status_monitor_custom_fields.php:57 #: ../../godmode/agentes/planned_downtime.editor.php:408 -#: ../../godmode/alerts/configure_alert_template.php:555 -#: ../../godmode/alerts/alert_templates.php:157 -#: ../../godmode/alerts/alert_list.php:95 ../../godmode/alerts/alert_list.php:313 #: ../../godmode/alerts/configure_alert_command.php:145 +#: ../../godmode/alerts/alert_templates.php:157 +#: ../../godmode/alerts/configure_alert_template.php:555 +#: ../../godmode/alerts/alert_list.php:95 ../../godmode/alerts/alert_list.php:313 +#: ../../godmode/setup/gis.php:41 ../../include/functions_alerts.php:2748 +#: ../../include/functions_planned_downtimes.php:122 +#: ../../operation/agentes/pandora_networkmap.php:216 +#: ../../operation/agentes/pandora_networkmap.php:508 +#: ../../operation/snmpconsole/snmp_view.php:175 msgid "Could not be updated" msgstr "No se pudo actualizar" -#: ../../operation/snmpconsole/snmp_view.php:228 -#: ../../operation/snmpconsole/snmp_view.php:1263 -#: ../../operation/agentes/alerts_status.functions.php:96 -#: ../../mobile/operation/alerts.php:67 -#: ../../godmode/alerts/alert_list.list.php:138 -msgid "Not fired" -msgstr "No disparadas" +#: ../../enterprise/godmode/modules/local_components.php:401 +#: ../../godmode/modules/manage_network_components.php:534 +#: ../../include/class/ManageNetScanScripts.class.php:315 +msgid "Updated successfully" +msgstr "Actualizado correctamente" -#: ../../operation/snmpconsole/snmp_view.php:229 -#: ../../operation/snmpconsole/snmp_view.php:1254 -#: ../../operation/agentes/alerts_status.functions.php:95 -#: ../../include/functions_reporting_html.php:2339 -#: ../../include/functions_reporting_html.php:3184 -#: ../../include/functions_reporting_html.php:3185 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2906 -#: ../../mobile/operation/alerts.php:66 -#: ../../godmode/alerts/alert_list.list.php:137 -msgid "Fired" -msgstr "Disparada" +#: ../../enterprise/godmode/modules/local_components.php:547 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2852 +#: ../../godmode/modules/manage_network_components.php:659 +msgid "Free Search" +msgstr "BĆŗsqueda libre" -#: ../../operation/snmpconsole/snmp_view.php:543 -#: ../../operation/snmpconsole/snmp_view.php:886 -#: ../../operation/snmpconsole/snmp_view.php:1246 -#: ../../operation/events/events.build_table.php:253 -#: ../../operation/agentes/estado_monitores.php:522 -#: ../../include/functions_events.php:200 ../../include/functions_events.php:263 -#: ../../include/functions_events.php:2694 -#: ../../include/functions_events.php:6729 ../../include/functions_snmp.php:324 -#: ../../include/functions.php:4094 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:4325 -#: ../../enterprise/meta/include/functions_events_meta.php:94 -#: ../../enterprise/godmode/alerts/alert_inventory_list.php:362 -#: ../../enterprise/godmode/policies/policy_external_alerts.php:382 -#: ../../godmode/events/custom_events.php:105 -#: ../../godmode/agentes/configurar_agente.php:734 -#: ../../godmode/alerts/configure_alert_template.php:1552 -msgid "Alert" -msgstr "Alerta" +#: ../../enterprise/godmode/modules/local_components.php:548 +msgid "Search by name, description or data, list matches." +msgstr "BĆŗsqueda de lista de concidencias por nombre, descripciĆ³n o datos." -#: ../../operation/snmpconsole/snmp_view.php:555 -#: ../../operation/events/events_list.php:852 -#: ../../operation/users/user_edit.php:308 -#: ../../include/functions_config.php:1019 -#: ../../enterprise/meta/include/functions_meta.php:1446 -#: ../../enterprise/meta/advanced/metasetup.visual.php:242 -#: ../../godmode/setup/setup_visuals.php:66 -#: ../../godmode/events/event_edit_filter.php:393 -#: ../../godmode/users/configure_user.php:1183 -msgid "Block size for pagination" -msgstr "TamaƱo de bloque para la paginaciĆ³n" +#: ../../enterprise/godmode/modules/local_components.php:690 +#: ../../enterprise/godmode/policies/policy_modules.php:1555 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:627 +#: ../../enterprise/include/class/NetworkConfigManager.class.php:628 +#: ../../godmode/modules/manage_network_components.php:859 +#: ../../godmode/modules/manage_network_components.php:860 +#: ../../godmode/agentes/module_manager.php:1166 +#: ../../godmode/snmpconsole/snmp_alert.php:1347 +#: ../../godmode/snmpconsole/snmp_alert.php:1348 +#: ../../godmode/alerts/alert_actions.php:435 +#: ../../godmode/alerts/alert_templates.php:432 +#: ../../godmode/reporting/reporting_builder.php:1194 +msgid "Duplicate" +msgstr "Duplicar" -#: ../../operation/snmpconsole/snmp_view.php:572 -#: ../../operation/events/events.build_table.php:263 -#: ../../operation/events/events.php:1157 -#: ../../operation/events/events_list.php:953 -#: ../../include/lib/Dashboard/Widgets/events_list.php:393 -#: ../../include/functions_events.php:201 ../../include/functions_events.php:266 -#: ../../include/functions_events.php:2603 -#: ../../include/functions_events.php:5051 -#: ../../include/functions_events.php:6735 ../../include/functions_snmp.php:335 -#: ../../include/functions_reporting_html.php:1051 -#: ../../include/functions_reporting_html.php:1059 -#: ../../include/functions_reporting_html.php:1284 -#: ../../include/functions_reporting_html.php:1292 -#: ../../include/functions_reporting_html.php:2391 -#: ../../enterprise/include/functions_events.php:137 -#: ../../enterprise/include/functions_reporting.php:2025 -#: ../../enterprise/meta/include/functions_events_meta.php:98 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2816 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:617 -#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor_form.php:72 -#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:384 -#: ../../mobile/operation/events.php:397 ../../mobile/operation/events.php:398 -#: ../../mobile/operation/events.php:532 ../../mobile/operation/events.php:691 -#: ../../mobile/operation/events.php:692 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2820 -#: ../../godmode/events/event_edit_filter.php:332 -#: ../../godmode/events/custom_events.php:106 -#: ../../godmode/events/event_filter.php:140 -msgid "Severity" -msgstr "Gravedad" +#: ../../enterprise/godmode/modules/manage_inventory_modules_form.php:71 +#: ../../enterprise/godmode/agentes/inventory_manager.php:165 +msgid "Inventory module error" +msgstr "Error del mĆ³dulo del inventario" -#: ../../operation/snmpconsole/snmp_view.php:587 -#: ../../operation/snmpconsole/snmp_view.php:931 -#: ../../operation/snmpconsole/snmp_view.php:1243 -#: ../../include/functions_events.php:6197 -#: ../../include/functions_events.php:6204 -msgid "Not validated" -msgstr "Sin validar" +#: ../../enterprise/godmode/modules/manage_inventory_modules_form.php:116 +msgid "Left blank for the LOCAL inventory modules" +msgstr "Dejar en blanco para los mĆ³dulos de inventario LOCALES" -#: ../../operation/snmpconsole/snmp_view.php:588 -#: ../../operation/snmpconsole/snmp_view.php:941 -#: ../../operation/snmpconsole/snmp_view.php:1234 -#: ../../include/functions_events.php:2629 -#: ../../include/functions_events.php:3387 -#: ../../include/functions_events.php:3676 -#: ../../include/functions_events.php:3685 -#: ../../include/functions_events.php:3692 -#: ../../include/functions_events.php:3699 -#: ../../include/functions_events.php:6195 -#: ../../include/functions_events.php:6203 ../../include/functions_graph.php:3326 -msgid "Validated" -msgstr "Validado" +#: ../../enterprise/godmode/modules/manage_inventory_modules_form.php:118 +msgid "Block Mode" +msgstr "Modo bloqueo" -#: ../../operation/snmpconsole/snmp_view.php:602 +#: ../../enterprise/godmode/modules/manage_inventory_modules_form.php:121 +#: ../../godmode/massive/massive_standby_alerts.php:223 +#: ../../godmode/massive/massive_standby_alerts.php:258 +#: ../../godmode/massive/massive_enable_disable_alerts.php:195 +#: ../../godmode/massive/massive_enable_disable_alerts.php:230 +#: ../../include/class/ModuleTemplates.class.php:1208 +msgid "Format" +msgstr "Formato" + +#: ../../enterprise/godmode/modules/manage_inventory_modules_form.php:122 +msgid "separate fields with " +msgstr "Separar campos con " + +#: ../../enterprise/godmode/modules/manage_inventory_modules_form.php:125 +#: ../../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:126 msgid "" -"Search by any alphanumeric field in the trap.\n" -"\t\tREMEMBER trap sources need to be searched by IP Address" +"Here is placed the script for the REMOTE inventory modules Local inventory modules " +"don't use this field" msgstr "" -"BĆŗsqueda segĆŗn campos alfanumĆ©ricos en el trap.\n" -"\t \tRECUERDA que las fuentes de trap tienen que buscarse segĆŗn una direcciĆ³n " -"IP." +"AquĆ­ se coloca el script para los mĆ³dulos de inventario REMOTOS. Los mĆ³dulos de " +"inventario locales no usan este campo." -#: ../../operation/snmpconsole/snmp_view.php:616 -#: ../../operation/events/events.php:1104 ../../operation/events/events.php:1700 -#: ../../operation/events/events_list.php:973 -#: ../../include/class/AuditLog.class.php:187 -#: ../../include/lib/Dashboard/Widgets/top_n_events_by_group.php:270 -#: ../../include/lib/Dashboard/Widgets/top_n_events_by_module.php:270 -#: ../../include/lib/Dashboard/Widgets/events_list.php:336 -#: ../../include/functions_snmp.php:401 -#: ../../enterprise/include/functions_events.php:229 -#: ../../mobile/operation/events.php:706 -#: ../../godmode/events/event_edit_filter.php:404 -msgid "Max. hours old" -msgstr "MĆ”x. horas de antiguedad" +#: ../../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" -#: ../../operation/snmpconsole/snmp_view.php:628 -#: ../../include/functions_snmp.php:433 -#: ../../enterprise/godmode/massive/massive_delete_alerts_snmp.php:202 -#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:262 -#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:305 -#: ../../godmode/snmpconsole/snmp_alert.php:829 -#: ../../godmode/snmpconsole/snmp_alert.php:1166 -msgid "Trap type" -msgstr "Clase de trap" +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:89 +msgid "Agent Autoconfiguration Information" +msgstr "InformaciĆ³n de la autoconfiguraciĆ³n de agente" -#: ../../operation/snmpconsole/snmp_view.php:628 -msgid "Search by trap type" -msgstr "BĆŗsqueda por tipo de trap" +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:90 +msgid "You must click the Create or Update buttom for a correct configuration!!!" +msgstr "Pinche en el botĆ³n de crear o actualizar para una correcta configuraciĆ³n" -#: ../../operation/snmpconsole/snmp_view.php:631 -#: ../../operation/snmpconsole/snmp_view.php:1115 -#: ../../operation/snmpconsole/snmp_view.php:1129 -#: ../../enterprise/godmode/massive/massive_delete_alerts_snmp.php:29 -#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:30 -#: ../../godmode/snmpconsole/snmp_alert.php:41 -msgid "Cold start (0)" -msgstr "Inicio cero (0)" +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:98 +msgid "" +"Cannot create autoconfiguration from read only console, please create from " +"metaconsole (centralized management)" +msgstr "" +"No se ha podido crear la autoconfiguraciĆ³n desde la consola exclusiva de lectura, " +"crĆ©ela desde la Metaconsola (gestiĆ³n centralizada)" -#: ../../operation/snmpconsole/snmp_view.php:632 -#: ../../operation/snmpconsole/snmp_view.php:1116 -#: ../../operation/snmpconsole/snmp_view.php:1133 -#: ../../enterprise/godmode/massive/massive_delete_alerts_snmp.php:30 -#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:31 -#: ../../godmode/snmpconsole/snmp_alert.php:42 -msgid "Warm start (1)" -msgstr "Comienzo de inicio (1)" +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:139 +msgid "Cannot create autoconfiguration in metaconsole" +msgstr "No se ha podido crear la autoconfiguraciĆ³n en la metaconsola" -#: ../../operation/snmpconsole/snmp_view.php:633 -#: ../../operation/snmpconsole/snmp_view.php:1117 -#: ../../operation/snmpconsole/snmp_view.php:1137 -#: ../../enterprise/godmode/massive/massive_delete_alerts_snmp.php:31 -#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:32 -#: ../../godmode/snmpconsole/snmp_alert.php:43 -msgid "Link down (2)" -msgstr "Enlace interrumpido (2)" +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:147 +msgid "Cannot create unnamed autoconfiguration" +msgstr "No se ha podido crear una autoconfiguraciĆ³n sin nombre" -#: ../../operation/snmpconsole/snmp_view.php:634 -#: ../../operation/snmpconsole/snmp_view.php:1118 -#: ../../operation/snmpconsole/snmp_view.php:1141 -#: ../../enterprise/godmode/massive/massive_delete_alerts_snmp.php:32 -#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:33 -#: ../../godmode/snmpconsole/snmp_alert.php:44 -msgid "Link up (3)" -msgstr "Enlace activo (3)" +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:157 +msgid "" +"Cannot udpate autoconfiguration from read only console, please create from " +"metaconsole (centralized management)" +msgstr "" +"No se ha podido actualizar la autoconfiguraciĆ³n desde la consola exclusiva de " +"lectura, crĆ©ela desde la Metaconsola (gestiĆ³n centralizada)" -#: ../../operation/snmpconsole/snmp_view.php:635 -#: ../../operation/snmpconsole/snmp_view.php:1119 -#: ../../operation/snmpconsole/snmp_view.php:1145 -#: ../../enterprise/godmode/massive/massive_delete_alerts_snmp.php:33 -#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:34 -#: ../../godmode/snmpconsole/snmp_alert.php:45 -msgid "Authentication failure (4)" -msgstr "Fallo de autentificaciĆ³n (4)" +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:194 +msgid "Cannot update autoconfiguration" +msgstr "No se ha podido actualizar la autoconfiguraciĆ³n" -#: ../../operation/snmpconsole/snmp_view.php:652 -msgid "Group by Enterprise String/IP" -msgstr "Agrupado por cadena Enterprise/IP" +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:204 +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:243 +msgid "" +"Cannot modify autoconfiguration from read only console, please create from " +"metaconsole (centralized management)" +msgstr "" +"No se ha podido crear la autoconfiguraciĆ³n desde la consola exclusiva de lectura, " +"crĆ©ela desde la Metaconsola (gestiĆ³n centralizada)" -#: ../../operation/snmpconsole/snmp_view.php:653 -#: ../../operation/netflow/nf_live_view.php:460 -#: ../../operation/users/user_edit.php:321 ../../include/functions_cron.php:648 -#: ../../include/functions_snmp.php:390 ../../include/functions_profile.php:276 -#: ../../include/functions_reporting_html.php:1589 -#: ../../enterprise/include/functions_cron.php:757 -#: ../../enterprise/include/functions_reporting_csv.php:1940 -#: ../../enterprise/include/functions_tasklist.php:323 -#: ../../enterprise/include/functions_reporting.php:2337 -#: ../../enterprise/meta/monitoring/wizard/wizard.php:136 -#: ../../enterprise/meta/advanced/metasetup.performance.php:85 -#: ../../enterprise/meta/advanced/metasetup.performance.php:89 -#: ../../enterprise/meta/advanced/metasetup.setup.php:149 -#: ../../enterprise/meta/advanced/metasetup.setup.php:203 -#: ../../enterprise/meta/advanced/metasetup.setup.php:219 -#: ../../enterprise/meta/advanced/metasetup.setup.php:223 -#: ../../enterprise/meta/advanced/metasetup.setup.php:285 -#: ../../enterprise/meta/advanced/metasetup.setup.php:299 -#: ../../enterprise/meta/advanced/metasetup.setup.php:321 -#: ../../enterprise/meta/advanced/metasetup.setup.php:325 -#: ../../enterprise/meta/advanced/metasetup.setup.php:347 -#: ../../enterprise/meta/advanced/metasetup.password.php:80 -#: ../../enterprise/meta/advanced/metasetup.password.php:122 -#: ../../enterprise/meta/advanced/metasetup.password.php:127 -#: ../../enterprise/meta/advanced/metasetup.password.php:133 -#: ../../enterprise/meta/advanced/metasetup.password.php:139 -#: ../../enterprise/meta/advanced/metasetup.password.php:143 -#: ../../enterprise/meta/advanced/metasetup.password.php:147 -#: ../../enterprise/godmode/setup/setup_auth.php:208 -#: ../../enterprise/godmode/setup/setup_auth.php:338 -#: ../../enterprise/godmode/setup/setup_auth.php:386 -#: ../../enterprise/godmode/setup/setup_auth.php:1181 -#: ../../enterprise/godmode/reporting/visual_console_template.php:286 -#: ../../enterprise/godmode/reporting/graph_template_item_editor.php:209 -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:553 -#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:553 -#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:574 -#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:644 -#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:665 -#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:705 +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:319 +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.php:92 +msgid "Agent autoconfiguration list" +msgstr "Lista de autoconfiguraciĆ³n de agentes" + +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:362 +msgid "Autoconfiguration" +msgstr "AutoconfiguraciĆ³n" + +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:377 +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.php:138 +#: ../../godmode/modules/manage_network_components_form_wizard.php:655 +#: ../../godmode/agentes/planned_downtime.list.php:614 +#: ../../godmode/agentes/planned_downtime.editor.php:609 +#: ../../include/functions_reporting_html.php:6172 +msgid "Execution" +msgstr "EjecuciĆ³n" + +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:380 +#: ../../enterprise/operation/agentes/transactional_map.php:398 +#: ../../godmode/menu.php:47 ../../godmode/setup/setup_ehorus.php:112 +#: ../../godmode/setup/setup_integria.php:567 ../../include/ajax/events.php:2419 +#: ../../operation/users/user_edit.php:712 ../../operation/users/user_edit.php:758 +#: ../../operation/menu.php:430 +msgid "Start" +msgstr "Inicio" + +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:397 +#: ../../godmode/agentes/planned_downtime.editor.php:628 +msgid "Configure the time" +msgstr "Configurar el tiempo" + +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:403 +#: ../../godmode/agentes/planned_downtime.editor.php:647 +msgid "Type Periodicity:" +msgstr "Periodicidad del tipo:" + +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:405 +#: ../../enterprise/include/functions_cron.php:501 +#: ../../enterprise/include/lib/NetworkManager.php:178 +#: ../../godmode/agentes/module_manager_editor_prediction.php:183 +#: ../../include/functions_netflow.php:1850 +msgid "Daily" +msgstr "Diariamente" + +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:406 +#: ../../enterprise/include/functions_cron.php:502 +#: ../../enterprise/include/lib/NetworkManager.php:182 +#: ../../godmode/agentes/module_manager_editor_prediction.php:181 +#: ../../godmode/agentes/planned_downtime.editor.php:649 +msgid "Weekly" +msgstr "Semanalmente" + +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:407 +#: ../../enterprise/include/functions_cron.php:503 +#: ../../godmode/agentes/module_manager_editor_prediction.php:182 +#: ../../godmode/agentes/planned_downtime.editor.php:650 +msgid "Monthly" +msgstr "Mensualmente" + +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:436 +#: ../../godmode/agentes/planned_downtime.editor.php:679 +msgid "From day:" +msgstr "Desde el dĆ­a:" + +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:454 +#: ../../godmode/agentes/planned_downtime.editor.php:712 +msgid "From hour:" +msgstr "Desde la hora:" + +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:497 +#: ../../include/class/CredentialStore.class.php:959 +msgid "Extra" +msgstr "Extra" + +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:525 +msgid "Add rule" +msgstr "AƱadir regla" + +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:530 +msgid "Rules" +msgstr "Reglas" + +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:552 +msgid "New group" +msgstr "Nuevo grupo" + +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:584 +#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:402 +msgid "Launch custom event" +msgstr "Lanzar evento personalizado" + +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:585 +#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:403 +msgid "Launch alert action" +msgstr "Lanzar acciĆ³n de alerta" + +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:586 +#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:404 +#: ../../enterprise/operation/agentes/manage_transmap_creation_phases_data.php:74 +msgid "Launch script" +msgstr "Lanzar script" + +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:630 +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:644 +#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:28 +#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:315 +#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:330 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:552 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:573 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:643 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:664 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:695 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:704 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:763 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:786 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:807 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:811 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:822 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:842 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:867 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:883 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:944 #: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:967 -#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:1005 -#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:1033 -#: ../../godmode/servers/modificar_server.php:47 -#: ../../godmode/update_manager/update_manager.setup.php:372 -#: ../../godmode/reporting/reporting_builder.main.php:194 -#: ../../godmode/reporting/reporting_builder.php:1092 -#: ../../godmode/reporting/visual_console_builder.wizard.php:380 -#: ../../godmode/reporting/visual_console_builder.wizard.php:467 -#: ../../godmode/massive/massive_edit_agents.php:663 -#: ../../godmode/massive/massive_edit_agents.php:986 -#: ../../godmode/massive/massive_edit_agents.php:995 -#: ../../godmode/massive/massive_edit_modules.php:616 -#: ../../godmode/massive/massive_edit_modules.php:638 -#: ../../godmode/massive/massive_edit_modules.php:707 -#: ../../godmode/massive/massive_edit_modules.php:729 -#: ../../godmode/massive/massive_edit_modules.php:769 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:985 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:991 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:1004 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:1032 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:1134 +#: ../../godmode/massive/massive_edit_agents.php:669 +#: ../../godmode/massive/massive_edit_agents.php:694 +#: ../../godmode/massive/massive_edit_agents.php:711 +#: ../../godmode/massive/massive_edit_agents.php:725 +#: ../../godmode/massive/massive_edit_agents.php:749 +#: ../../godmode/massive/massive_edit_agents.php:859 +#: ../../godmode/massive/massive_edit_agents.php:906 +#: ../../godmode/massive/massive_edit_agents.php:981 +#: ../../godmode/massive/massive_edit_agents.php:985 +#: ../../godmode/massive/massive_edit_agents.php:994 +#: ../../godmode/massive/massive_edit_agents.php:1022 +#: ../../godmode/massive/massive_edit_agents.php:1091 +#: ../../godmode/massive/massive_edit_modules.php:615 +#: ../../godmode/massive/massive_edit_modules.php:637 +#: ../../godmode/massive/massive_edit_modules.php:706 +#: ../../godmode/massive/massive_edit_modules.php:728 +#: ../../godmode/massive/massive_edit_modules.php:759 +#: ../../godmode/massive/massive_edit_modules.php:768 +#: ../../godmode/massive/massive_edit_modules.php:827 +#: ../../godmode/massive/massive_edit_modules.php:845 +#: ../../godmode/massive/massive_edit_modules.php:864 +#: ../../godmode/massive/massive_edit_modules.php:868 +#: ../../godmode/massive/massive_edit_modules.php:879 +#: ../../godmode/massive/massive_edit_modules.php:899 +#: ../../godmode/massive/massive_edit_modules.php:924 +#: ../../godmode/massive/massive_edit_modules.php:936 +#: ../../godmode/massive/massive_edit_modules.php:997 #: ../../godmode/massive/massive_edit_modules.php:1043 -#: ../../godmode/massive/massive_edit_modules.php:1081 -#: ../../godmode/massive/massive_edit_modules.php:1109 -#: ../../godmode/agentes/agent_conf_gis.php:125 -#: ../../godmode/alerts/alert_view.php:129 -#: ../../godmode/alerts/alert_view.php:259 -#: ../../godmode/users/configure_user.php:1099 -msgid "Yes" -msgstr "SĆ­" - -#: ../../operation/snmpconsole/snmp_view.php:654 -#: ../../operation/netflow/nf_live_view.php:470 -#: ../../operation/users/user_edit.php:322 ../../include/functions_cron.php:648 -#: ../../include/functions_events.php:5040 -#: ../../include/functions_events.php:5045 ../../include/functions_snmp.php:382 -#: ../../include/functions_profile.php:276 -#: ../../include/functions_reporting_html.php:1589 -#: ../../enterprise/include/functions_cron.php:756 -#: ../../enterprise/include/functions_reporting_csv.php:1940 -#: ../../enterprise/include/functions_tasklist.php:323 -#: ../../enterprise/include/functions_reporting.php:2337 -#: ../../enterprise/meta/monitoring/wizard/wizard.php:137 -#: ../../enterprise/meta/advanced/metasetup.performance.php:86 -#: ../../enterprise/meta/advanced/metasetup.performance.php:90 -#: ../../enterprise/meta/advanced/metasetup.setup.php:150 -#: ../../enterprise/meta/advanced/metasetup.setup.php:213 -#: ../../enterprise/meta/advanced/metasetup.setup.php:220 -#: ../../enterprise/meta/advanced/metasetup.setup.php:224 -#: ../../enterprise/meta/advanced/metasetup.setup.php:286 -#: ../../enterprise/meta/advanced/metasetup.setup.php:309 -#: ../../enterprise/meta/advanced/metasetup.setup.php:322 -#: ../../enterprise/meta/advanced/metasetup.setup.php:335 -#: ../../enterprise/meta/advanced/metasetup.setup.php:357 -#: ../../enterprise/meta/advanced/metasetup.password.php:81 -#: ../../enterprise/meta/advanced/metasetup.password.php:123 -#: ../../enterprise/meta/advanced/metasetup.password.php:128 -#: ../../enterprise/meta/advanced/metasetup.password.php:134 -#: ../../enterprise/meta/advanced/metasetup.password.php:140 -#: ../../enterprise/meta/advanced/metasetup.password.php:144 -#: ../../enterprise/meta/advanced/metasetup.password.php:148 -#: ../../enterprise/godmode/setup/setup.php:64 -#: ../../enterprise/godmode/setup/setup_auth.php:208 -#: ../../enterprise/godmode/setup/setup_auth.php:341 -#: ../../enterprise/godmode/setup/setup_auth.php:389 -#: ../../enterprise/godmode/setup/setup_auth.php:1184 -#: ../../enterprise/godmode/reporting/visual_console_template.php:286 -#: ../../enterprise/godmode/reporting/graph_template_item_editor.php:211 -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:555 -#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:554 -#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:575 -#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:645 -#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:666 -#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:706 -#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:967 -#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:1006 -#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:1034 -#: ../../mobile/operation/events.php:195 ../../mobile/operation/events.php:200 -#: ../../godmode/setup/news.php:287 ../../godmode/servers/modificar_server.php:45 -#: ../../godmode/update_manager/update_manager.setup.php:373 -#: ../../godmode/reporting/reporting_builder.main.php:204 -#: ../../godmode/reporting/reporting_builder.php:1094 -#: ../../godmode/reporting/visual_console_builder.wizard.php:390 -#: ../../godmode/reporting/visual_console_builder.wizard.php:468 -#: ../../godmode/massive/massive_edit_agents.php:664 -#: ../../godmode/massive/massive_edit_agents.php:987 -#: ../../godmode/massive/massive_edit_agents.php:996 -#: ../../godmode/massive/massive_edit_modules.php:617 -#: ../../godmode/massive/massive_edit_modules.php:639 -#: ../../godmode/massive/massive_edit_modules.php:708 -#: ../../godmode/massive/massive_edit_modules.php:730 -#: ../../godmode/massive/massive_edit_modules.php:770 -#: ../../godmode/massive/massive_edit_modules.php:1043 -#: ../../godmode/massive/massive_edit_modules.php:1082 -#: ../../godmode/massive/massive_edit_modules.php:1110 -#: ../../godmode/agentes/agent_conf_gis.php:126 -#: ../../godmode/alerts/alert_view.php:129 -#: ../../godmode/alerts/alert_view.php:259 -#: ../../godmode/alerts/alert_view.php:352 -#: ../../godmode/users/configure_user.php:1100 -msgid "No" -msgstr "No" - -#: ../../operation/snmpconsole/snmp_view.php:681 -#: ../../operation/snmpconsole/snmp_view.php:789 -#: ../../godmode/snmpconsole/snmp_alert.php:118 -#: ../../godmode/snmpconsole/snmp_filters.php:46 -msgid "SNMP Console" -msgstr "Consola SNMP" - -#: ../../operation/snmpconsole/snmp_view.php:714 -#: ../../operation/snmpconsole/snmp_view.php:813 -#: ../../operation/agentes/alerts_status.php:501 -#: ../../operation/agentes/graphs.php:269 -#: ../../enterprise/meta/advanced/collections.php:251 -#: ../../enterprise/godmode/alerts/alert_inventory_list.php:174 -#: ../../enterprise/godmode/policies/policy_queue.php:524 -#: ../../enterprise/godmode/policies/policy_queue.php:636 -#: ../../enterprise/godmode/policies/policy_external_alerts.php:373 -#: ../../godmode/snmpconsole/snmp_alert.php:1180 -#: ../../godmode/alerts/alert_list.list.php:178 -#: ../../godmode/users/user_list.php:452 -msgid "Toggle filter(s)" -msgstr "Conmutar filtro(s)" - -#: ../../operation/snmpconsole/snmp_view.php:718 -msgid "There are no SNMP traps in database that contains this filter" -msgstr "No hay traps SNMP en la base de datos que contengan este filtro" - -#: ../../operation/snmpconsole/snmp_view.php:758 -msgid "Refresh every" -msgstr "Actualizar cada" - -#: ../../operation/snmpconsole/snmp_view.php:770 -msgid "SNMP Traps" -msgstr "Traps SNMP" - -#: ../../operation/snmpconsole/snmp_view.php:854 -#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:303 -#: ../../godmode/snmpconsole/snmp_alert.php:790 -#: ../../godmode/snmpconsole/snmp_alert.php:1259 -#: ../../godmode/snmpconsole/snmp_trap_generator.php:125 -msgid "SNMP Agent" -msgstr "Agente SNMP" - -#: ../../operation/snmpconsole/snmp_view.php:859 -#: ../../godmode/snmpconsole/snmp_alert.php:774 -#: ../../godmode/snmpconsole/snmp_alert.php:1263 -#: ../../godmode/snmpconsole/snmp_trap_generator.php:105 -msgid "Enterprise String" -msgstr "Cadena Enterprise" - -#: ../../operation/snmpconsole/snmp_view.php:865 -#: ../../include/functions_reporting_html.php:1047 -#: ../../include/functions_reporting_html.php:1285 -#: ../../include/functions_reporting_html.php:2386 -#: ../../enterprise/include/lib/AlertCorrelation.class.php:1086 -msgid "Count" -msgstr "NĆŗmero" - -#: ../../operation/snmpconsole/snmp_view.php:871 -msgid "Trap subtype" -msgstr "Subtipo trap" - -#: ../../operation/snmpconsole/snmp_view.php:974 -#: ../../operation/snmpconsole/snmp_view.php:994 -#: ../../operation/agentes/status_monitor.php:1710 -#: ../../operation/agentes/interface_view.functions.php:682 -#: ../../operation/agentes/interface_view.functions.php:683 -#: ../../operation/agentes/interface_view.functions.php:684 -#: ../../operation/agentes/interface_view.functions.php:685 -#: ../../operation/agentes/interface_view.functions.php:686 -#: ../../operation/agentes/estado_generalagente.php:219 -#: ../../operation/agentes/estado_generalagente.php:232 -#: ../../operation/agentes/estado_generalagente.php:244 -#: ../../operation/agentes/estado_generalagente.php:413 -#: ../../operation/agentes/estado_generalagente.php:429 -#: ../../operation/agentes/estado_generalagente.php:440 -#: ../../include/ajax/module.php:1168 ../../include/functions_events.php:3810 -#: ../../include/functions_events.php:3960 -#: ../../include/functions_events.php:3981 -#: ../../include/functions_events.php:3986 -#: ../../include/functions_events.php:3999 -#: ../../include/functions_events.php:4000 -#: ../../include/functions_events.php:4012 -#: ../../include/functions_events.php:4063 -#: ../../include/functions_events.php:4090 -#: ../../include/functions_events.php:4146 -#: ../../include/functions_events.php:4163 -#: ../../include/functions_events.php:4170 -#: ../../include/functions_events.php:4236 -#: ../../include/functions_events.php:4308 -#: ../../include/functions_events.php:4447 -#: ../../include/functions_events.php:4486 -#: ../../include/functions_events.php:4500 -#: ../../include/functions_events.php:4505 -#: ../../include/functions_events.php:4535 -#: ../../include/functions_events.php:4628 -#: ../../include/functions_events.php:4708 -#: ../../include/functions_events.php:4718 -#: ../../include/functions_events.php:4935 -#: ../../include/functions_events.php:5012 -#: ../../include/functions_events.php:5101 -#: ../../include/functions_events.php:5130 -#: ../../include/functions_events.php:5145 -#: ../../include/functions_events.php:5155 -#: ../../include/functions_events.php:5165 -#: ../../include/functions_events.php:7445 -#: ../../include/functions_events.php:7464 -#: ../../include/functions_events.php:7469 -#: ../../include/functions_events.php:7476 -#: ../../include/functions_events.php:7489 -#: ../../include/functions_events.php:7502 -#: ../../include/functions_events.php:7514 -#: ../../include/functions_events.php:7567 -#: ../../include/functions_events.php:7594 -#: ../../include/functions_events.php:7619 -#: ../../include/functions_events.php:7663 ../../include/functions_db.php:241 -#: ../../include/functions_servers.php:1362 -#: ../../include/functions_treeview.php:162 -#: ../../include/functions_treeview.php:327 -#: ../../include/functions_treeview.php:423 ../../include/functions_ui.php:2609 -#: ../../include/functions_ui.php:2617 ../../include/functions.php:1124 -#: ../../include/functions.php:1130 ../../include/functions.php:1134 -#: ../../include/functions_reporting_html.php:651 -#: ../../include/functions_reporting_html.php:654 -#: ../../include/functions_reporting_html.php:5277 -#: ../../include/functions_reporting_html.php:5330 -#: ../../enterprise/tools/ipam/ipam_ajax.php:366 -#: ../../enterprise/tools/ipam/ipam_ajax.php:387 -#: ../../enterprise/tools/ipam/ipam_network.php:435 -#: ../../enterprise/tools/ipam/ipam_network.php:515 -#: ../../enterprise/views/cluster/view.php:278 -#: ../../enterprise/views/cluster/view.php:293 -#: ../../enterprise/include/lib/Metaconsole/Node.php:505 -#: ../../enterprise/include/lib/Metaconsole/Node.php:1185 -#: ../../enterprise/include/functions_services.php:1190 -#: ../../enterprise/include/functions_services.php:1371 -#: ../../enterprise/include/functions_services.php:2077 -#: ../../enterprise/include/functions_aws.php:507 -#: ../../enterprise/include/functions_aws.php:508 -#: ../../enterprise/include/functions_reporting.php:6157 -#: ../../enterprise/include/functions_visual_map.php:320 -#: ../../enterprise/include/functions_servicemap.php:471 -#: ../../enterprise/meta/advanced/servers.build_table.php:100 -#: ../../enterprise/meta/advanced/servers.build_table.php:101 -#: ../../enterprise/meta/advanced/servers.build_table.php:107 -#: ../../enterprise/meta/advanced/metasetup.visual.php:895 -#: ../../mobile/operation/agent.php:192 ../../mobile/operation/agent.php:200 -#: ../../mobile/operation/events.php:161 ../../mobile/operation/events.php:167 -#: ../../mobile/operation/events.php:175 ../../mobile/operation/events.php:260 -#: ../../mobile/operation/events.php:290 ../../mobile/operation/events.php:298 -#: ../../godmode/servers/servers.build_table.php:147 -#: ../../godmode/servers/servers.build_table.php:148 -#: ../../godmode/servers/servers.build_table.php:154 -#: ../../godmode/modules/manage_network_components.php:776 -#: ../../godmode/modules/manage_network_components.php:777 -#: ../../godmode/extensions.php:186 ../../godmode/extensions.php:201 -#: ../../godmode/agentes/planned_downtime.list.php:812 -#: ../../godmode/alerts/alert_view.php:135 -msgid "N/A" -msgstr "N/A" - -#: ../../operation/snmpconsole/snmp_view.php:1018 -#: ../../operation/events/sound_events.php:136 -#: ../../operation/agentes/group_view.php:234 -#: ../../include/class/AgentsAlerts.class.php:937 -#: ../../include/functions_events.php:2905 -#: ../../include/functions_events.php:3260 -#: ../../include/functions_agents.php:2939 -#: ../../include/functions_agents.php:2950 -#: ../../include/functions_reporting.php:12335 -#: ../../include/functions_ui.php:1247 ../../include/functions.php:1228 -#: ../../enterprise/operation/agentes/policy_view.php:345 -#: ../../enterprise/meta/monitoring/group_view.php:247 -#: ../../mobile/operation/alerts.php:324 -#: ../../godmode/alerts/alert_list.list.php:559 -#: ../../godmode/alerts/alert_view.php:105 -msgid "Alert fired" -msgstr "Alerta disparada" - -#: ../../operation/snmpconsole/snmp_view.php:1020 -#: ../../include/class/AgentsAlerts.class.php:943 -#: ../../include/functions_agents.php:2941 -#: ../../include/functions_agents.php:2952 -#: ../../include/functions_reporting.php:12258 -#: ../../include/functions_ui.php:1253 -#: ../../enterprise/operation/agentes/policy_view.php:351 -#: ../../mobile/operation/alerts.php:330 -#: ../../godmode/alerts/alert_list.list.php:565 -#: ../../godmode/alerts/alert_view.php:111 -msgid "Alert not fired" -msgstr "Alerta no disparada" - -#: ../../operation/snmpconsole/snmp_view.php:1027 -#: ../../operation/snmpconsole/snmp_view.php:1217 -#: ../../operation/snmpconsole/snmp_view.php:1267 -#: ../../operation/agentes/alerts_status.php:567 -#: ../../operation/agentes/alerts_status.php:604 -#: ../../operation/agentes/alerts_status.php:637 -#: ../../operation/agentes/alerts_status.php:723 -#: ../../include/ajax/alert_list.ajax.php:267 -#: ../../include/ajax/alert_list.ajax.php:293 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3132 -#: ../../enterprise/load_enterprise.php:749 -#: ../../enterprise/godmode/reporting/aws_view.php:181 -#: ../../enterprise/godmode/wizards/Cloud.class.php:325 -#: ../../mobile/operation/events.php:570 ../../godmode/setup/license.php:165 -msgid "Validate" -msgstr "Validar" - -#: ../../operation/snmpconsole/snmp_view.php:1076 -msgid "Variable bindings:" -msgstr "Enlaces variables" - -#: ../../operation/snmpconsole/snmp_view.php:1089 -msgid "See more details" -msgstr "Ver mĆ”s detalles" - -#: ../../operation/snmpconsole/snmp_view.php:1101 -msgid "Enterprise String:" -msgstr "Cadena Enterprise:" - -#: ../../operation/snmpconsole/snmp_view.php:1107 -#: ../../enterprise/meta/include/functions_autoprovision.php:569 -#: ../../enterprise/meta/advanced/collections.data.php:432 -#: ../../enterprise/godmode/agentes/collections.data.php:523 -msgid "Description:" -msgstr "DescripciĆ³n:" - -#: ../../operation/snmpconsole/snmp_view.php:1153 -msgid "Trap type:" -msgstr "Tipo trap:" - -#: ../../operation/snmpconsole/snmp_view.php:1179 -msgid "Count:" -msgstr "Contar:" - -#: ../../operation/snmpconsole/snmp_view.php:1183 -msgid "First trap:" -msgstr "Primer trap:" - -#: ../../operation/snmpconsole/snmp_view.php:1187 -msgid "Last trap:" -msgstr "ƚltimo trap:" - -#: ../../operation/snmpconsole/snmp_view.php:1208 -msgid "No matching traps found" -msgstr "No se encontraron traps coincidentes." - -#: ../../operation/snmpconsole/snmp_view.php:1272 -#: ../../include/functions_reporting_html.php:2032 -#: ../../enterprise/operation/services/services.service_map.php:139 -#: ../../extensions/module_groups.php:391 ../../extensions/agents_modules.php:947 -#: ../../godmode/snmpconsole/snmp_alert.php:1518 -msgid "Legend" -msgstr "Leyenda" - -#: ../../operation/heatmap.php:70 ../../operation/heatmap.php:279 -#: ../../operation/agentes/pandora_networkmap.php:800 -#: ../../enterprise/operation/services/services.list.php:625 -msgid "Config" -msgstr "ConfiguraciĆ³n" - -#: ../../operation/heatmap.php:96 ../../operation/heatmap.php:98 -#: ../../operation/agentes/status_monitor.php:517 -#: ../../operation/agentes/estado_monitores.php:552 -#: ../../operation/agentes/ver_agente.php:1157 -#: ../../include/ajax/heatmap.ajax.php:190 -#: ../../include/ajax/heatmap.ajax.php:249 -#: ../../include/ajax/heatmap.ajax.php:288 -#: ../../include/functions_events.php:4547 -#: ../../include/functions_treeview.php:122 -#: ../../include/functions_graph.php:5366 ../../include/functions_html.php:1560 -#: ../../enterprise/operation/agentes/tag_view.php:156 -#: ../../enterprise/operation/agentes/ver_agente.php:35 -#: ../../enterprise/meta/monitoring/wizard/wizard.create_module.php:155 -#: ../../enterprise/godmode/modules/configure_local_component.php:259 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2014 -#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:832 -#: ../../extensions/agents_modules.php:410 ../../mobile/operation/modules.php:183 -#: ../../mobile/operation/modules.php:184 ../../mobile/operation/modules.php:293 -#: ../../mobile/operation/modules.php:294 -#: ../../godmode/modules/manage_network_components_form_common.php:111 -#: ../../godmode/reporting/create_container.php:540 -#: ../../godmode/reporting/reporting_builder.item_editor.php:1541 -#: ../../godmode/massive/massive_edit_modules.php:889 -#: ../../godmode/agentes/module_manager_editor_common.php:265 -msgid "Module group" -msgstr "Grupo del mĆ³dulo" - -#: ../../operation/heatmap.php:96 ../../operation/agentes/status_monitor.php:518 -#: ../../include/ajax/heatmap.ajax.php:196 -#: ../../include/functions_treeview.php:116 -#: ../../include/functions_graph.php:5316 -#: ../../enterprise/operation/agentes/tag_view.php:157 -#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:835 -#: ../../godmode/massive/massive_edit_modules.php:892 -#: ../../godmode/agentes/module_manager_editor_common.php:271 -#: ../../godmode/agentes/module_manager_editor_common.php:1188 -msgid "Not assigned" -msgstr "Sin asignar" - -#: ../../operation/heatmap.php:109 ../../operation/agentes/group_view.php:320 -#: ../../include/ajax/heatmap.ajax.php:126 -#: ../../include/ajax/heatmap.ajax.php:296 -#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:330 -#: ../../mobile/operation/modules.php:194 ../../mobile/operation/modules.php:195 -#: ../../mobile/operation/modules.php:308 ../../mobile/operation/modules.php:309 -#: ../../godmode/reporting/create_container.php:566 -#: ../../godmode/reporting/create_container.php:629 -msgid "Tag" -msgstr "Etiqueta" - -#: ../../operation/heatmap.php:173 ../../include/ajax/heatmap.ajax.php:52 -msgid "3 minutes" -msgstr "3 minutos" - -#: ../../operation/heatmap.php:291 ../../operation/agentes/status_monitor.php:861 -#: ../../operation/agentes/interface_view.functions.php:120 -#: ../../operation/agentes/interface_view.functions.php:158 -#: ../../include/class/ConfigPEN.class.php:252 -#: ../../include/class/CredentialStore.class.php:1098 -#: ../../enterprise/operation/agentes/tag_view.php:175 -#: ../../enterprise/include/class/AgentRepository.class.php:771 -#: ../../enterprise/include/class/LogSource.class.php:766 -#: ../../enterprise/include/class/Omnishell.class.php:1124 -#: ../../enterprise/include/class/DeploymentCenter.class.php:1533 -#: ../../enterprise/meta/monitoring/custom_fields_view.php:304 -#: ../../enterprise/extensions/vmware/vmware_view.php:1519 -#: ../../godmode/users/user_list.php:693 -msgid "Show" -msgstr "Mostrar" - -#: ../../operation/search_agents.php:93 -#: ../../operation/agentes/alerts_status.functions.php:97 -#: ../../operation/agentes/estado_generalagente.php:101 -#: ../../operation/agentes/estado_generalagente.php:103 -#: ../../include/functions_visual_map_editor.php:826 -#: ../../include/functions_treeview.php:72 -#: ../../include/functions_treeview.php:613 -#: ../../include/functions_reporting.php:6328 -#: ../../include/rest-api/models/VisualConsole/Items/StaticGraph.php:397 -#: ../../include/functions_reporting_html.php:3403 -#: ../../enterprise/views/cluster/view.php:162 -#: ../../enterprise/views/cluster/view.php:164 -#: ../../enterprise/include/class/VMware.app.php:888 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3213 -#: ../../enterprise/include/class/DatabaseHA.class.php:211 -#: ../../enterprise/include/lib/NetworkManager.php:190 -#: ../../enterprise/include/functions_policies.php:4782 -#: ../../enterprise/meta/include/functions_wizard_meta.php:243 -#: ../../enterprise/meta/include/functions_wizard_meta.php:528 -#: ../../enterprise/meta/include/functions_wizard_meta.php:600 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1148 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1533 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1626 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1820 -#: ../../enterprise/meta/agentsearch.php:251 -#: ../../enterprise/meta/agentsearch.php:258 -#: ../../enterprise/godmode/setup/edit_skin.php:276 -#: ../../enterprise/godmode/modules/configure_local_component.php:459 -#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:701 -#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:118 -#: ../../enterprise/godmode/policies/policy_agents.php:1736 -#: ../../enterprise/godmode/policies/policy_agents.php:1751 -#: ../../mobile/operation/agent.php:167 ../../mobile/operation/alerts.php:68 -#: ../../godmode/massive/massive_edit_agents.php:917 -#: ../../godmode/massive/massive_edit_agents.php:1017 -#: ../../godmode/massive/massive_edit_modules.php:765 -#: ../../godmode/agentes/module_manager_editor_common.php:257 -#: ../../godmode/agentes/module_manager_editor_common.php:897 -#: ../../godmode/agentes/module_manager_editor_common.php:1059 -#: ../../godmode/agentes/modificar_agente.php:761 -#: ../../godmode/alerts/configure_alert_template.php:899 -#: ../../godmode/alerts/alert_list.list.php:139 -#: ../../godmode/alerts/alert_view.php:541 -#: ../../godmode/groups/group_list.php:908 -msgid "Disabled" -msgstr "Deshabilitado" - -#: ../../operation/search_agents.php:100 -#: ../../operation/agentes/estado_agente.php:831 -#: ../../operation/agentes/estado_generalagente.php:112 -#: ../../operation/agentes/estado_generalagente.php:122 -#: ../../include/ajax/module.php:1128 ../../include/class/Tree.class.php:907 -#: ../../enterprise/views/cluster/view.php:168 -#: ../../enterprise/views/cluster/view.php:170 -#: ../../enterprise/godmode/services/services.service.php:746 -#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:1028 -#: ../../enterprise/godmode/massive/massive_create_services.php:819 -#: ../../mobile/operation/agent.php:174 -#: ../../godmode/massive/massive_edit_agents.php:990 -#: ../../godmode/massive/massive_edit_modules.php:1104 -#: ../../godmode/agentes/module_manager.php:985 -#: ../../godmode/agentes/module_manager_editor_common.php:1056 -#: ../../godmode/agentes/agent_manager.php:683 -#: ../../godmode/agentes/planned_downtime.editor.php:594 -#: ../../godmode/agentes/planned_downtime.list.php:655 -#: ../../godmode/agentes/modificar_agente.php:775 -msgid "Quiet" -msgstr "Modo silencioso" - -#: ../../operation/search_agents.php:111 -#: ../../operation/agentes/estado_agente.php:839 -#: ../../operation/agentes/estado_generalagente.php:133 -#: ../../operation/agentes/estado_generalagente.php:141 -#: ../../enterprise/views/cluster/view.php:178 -#: ../../enterprise/views/cluster/view.php:186 -#: ../../godmode/agentes/modificar_agente.php:783 -msgid "Agent in scheduled downtime" -msgstr "Agente en parada programada" - -#: ../../operation/search_agents.php:132 ../../operation/search_agents.php:133 -#: ../../operation/agentes/ver_agente.php:1357 -#: ../../enterprise/tools/ipam/ipam.php:426 -#: ../../enterprise/meta/advanced/metasetup.consoles.php:841 -#: ../../enterprise/godmode/agentes/agent_autoconfiguration.php:99 -#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:266 -msgid "Manage" -msgstr "Gestionar" - -#: ../../operation/events/events_rss.php:195 -msgid "Your IP is not into the IP list with API access." -msgstr "Tu IP no se encuentra en el listado de IPs con acceso a la API." - -#: ../../operation/events/events_rss.php:214 -msgid "The URL of your feed has bad hash." -msgstr "La URL de tu feed tiene mal el hash." - -#: ../../operation/events/sound_events.php:86 -msgid "Sound console" -msgstr "Consola sonora" - -#: ../../operation/events/sound_events.php:145 -#: ../../include/functions_reporting.php:11419 -#: ../../enterprise/meta/monitoring/custom_fields_view.php:452 -msgid "Monitor critical" -msgstr "Monitor crĆ­tico" - -#: ../../operation/events/sound_events.php:154 -#: ../../include/functions_reporting.php:11434 -#: ../../enterprise/meta/monitoring/custom_fields_view.php:485 -msgid "Monitor unknown" -msgstr "Monitor en estado desconocido" - -#: ../../operation/events/sound_events.php:163 -#: ../../include/functions_reporting.php:11423 -#: ../../enterprise/meta/monitoring/custom_fields_view.php:463 -msgid "Monitor warning" -msgstr "Monitor en estado de advertencia" - -#: ../../operation/events/sound_events.php:186 -msgid "Event" -msgstr "Evento" - -#: ../../operation/events/events.build_table.php:81 -msgid "More detail" -msgstr "MĆ”s detalles" - -#: ../../operation/events/events.build_table.php:105 -#: ../../operation/events/events.build_table.php:107 -msgid "The Agent: " -msgstr "El agente: " - -#: ../../operation/events/events.build_table.php:105 -#: ../../operation/events/events.build_table.php:107 -msgid " has " -msgstr " tiene " - -#: ../../operation/events/events.build_table.php:105 -#: ../../operation/events/events.build_table.php:107 -msgid " events." -msgstr " eventos." - -#: ../../operation/events/events.build_table.php:134 -#: ../../operation/events/events.build_table.php:1164 -#: ../../include/functions_events.php:2576 -#: ../../include/functions_events.php:2579 -#: ../../include/functions_reporting.php:2002 -#: ../../include/functions_reporting.php:2303 -#: ../../include/functions_reporting_html.php:5930 -#: ../../include/functions_reporting_html.php:6115 -#: ../../mobile/operation/events.php:865 -msgid "No events" -msgstr "No hay eventos" - -#: ../../operation/events/events.build_table.php:156 -#: ../../operation/events/events.php:1252 -#: ../../operation/events/events_list.php:821 -#: ../../include/class/AgentWizard.class.php:1181 -#: ../../include/functions_events.php:6660 -#: ../../include/functions_reporting_html.php:2101 -#: ../../enterprise/operation/log/log_viewer.php:613 -#: ../../enterprise/operation/inventory/inventory.php:331 -#: ../../enterprise/include/functions_reporting_csv.php:2733 -#: ../../enterprise/include/class/SAPView.class.php:226 -#: ../../enterprise/include/class/CSVImportAgents.class.php:154 -#: ../../enterprise/include/functions_events.php:283 -#: ../../enterprise/meta/include/functions_wizard_meta.php:174 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1799 -#: ../../enterprise/meta/monitoring/custom_fields_csv.php:101 -#: ../../enterprise/meta/monitoring/custom_fields_view.php:706 -#: ../../enterprise/meta/monitoring/wizard/wizard.manage_alert.php:197 -#: ../../enterprise/meta/advanced/policymanager.queue.php:256 -#: ../../enterprise/meta/agentsearch.php:133 -#: ../../enterprise/meta/agentsearch.php:326 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1962 -#: ../../godmode/modules/manage_network_components.php:749 -#: ../../godmode/reporting/reporting_builder.item_editor.php:1098 -#: ../../godmode/reporting/reporting_builder.item_editor.php:3501 -#: ../../godmode/massive/massive_edit_agents.php:743 -#: ../../godmode/wizards/DiscoveryTaskList.class.php:1043 -#: ../../godmode/agentes/module_manager.php:844 -#: ../../godmode/agentes/agent_manager.php:414 -msgid "Server" -msgstr "Servidor" - -#: ../../operation/events/events.build_table.php:162 -#: ../../include/functions_events.php:4979 -#: ../../include/functions_events.php:6672 ../../mobile/operation/events.php:512 -msgid "Event ID" -msgstr "ID del evento" - -#: ../../operation/events/events.build_table.php:172 -#: ../../include/functions_events.php:233 ../../include/functions_events.php:6678 -#: ../../mobile/operation/events.php:124 -#: ../../godmode/events/custom_events.php:95 -msgid "Event Name" -msgstr "Nombre del evento" - -#: ../../operation/events/events.build_table.php:182 -#: ../../operation/events/events.php:1934 ../../include/functions_events.php:193 -#: ../../include/functions_events.php:239 ../../include/functions_events.php:2616 -#: ../../include/functions_events.php:6685 -#: ../../include/functions_treeview.php:617 -#: ../../include/functions_reporting_html.php:3386 -#: ../../enterprise/include/functions_reporting_csv.php:871 -#: ../../enterprise/include/functions_ipam.php:2039 -#: ../../enterprise/meta/include/functions_events_meta.php:66 -#: ../../mobile/operation/modules.php:597 ../../mobile/operation/modules.php:849 -#: ../../godmode/agentes/agent_manager.php:213 -#: ../../godmode/agentes/modificar_agente.php:647 -msgid "Agent name" -msgstr "Nombre del agente" - -#: ../../operation/events/events.build_table.php:212 -#: ../../operation/incidents/integriaims_export_csv.php:89 -#: ../../operation/incidents/configure_integriaims_incident.php:312 -#: ../../operation/incidents/list_integriaims_incidents.php:342 -#: ../../operation/incidents/list_integriaims_incidents.php:522 -#: ../../include/functions_events.php:206 ../../include/functions_events.php:281 -#: ../../include/functions_events.php:5010 -#: ../../include/functions_events.php:6704 -#: ../../enterprise/meta/include/functions_events_meta.php:118 -#: ../../mobile/operation/events.php:520 -#: ../../godmode/setup/setup_integria.php:397 -#: ../../godmode/setup/setup_integria.php:519 -#: ../../godmode/events/custom_events.php:111 -msgid "Owner" -msgstr "Propietario" - -#: ../../operation/events/events.build_table.php:232 -#: ../../include/functions_events.php:257 -#: ../../godmode/events/custom_events.php:103 -msgid "Event Type" -msgstr "Tipo de evento" - -#: ../../operation/events/events.build_table.php:243 -#: ../../include/class/ModuleTemplates.class.php:1207 -#: ../../include/class/AgentWizard.class.php:1180 -#: ../../include/class/AgentWizard.class.php:4021 -#: ../../include/functions_events.php:260 -#: ../../godmode/events/custom_events.php:104 -msgid "Module Name" -msgstr "Nombre del mĆ³dulo" - -#: ../../operation/events/events.build_table.php:273 -#: ../../operation/events/events.build_table.php:709 -#: ../../operation/events/events.php:1208 -#: ../../operation/events/events_list.php:1003 -#: ../../include/class/CustomNetScan.class.php:468 -#: ../../include/functions_events.php:202 ../../include/functions_events.php:269 -#: ../../include/functions_events.php:3753 -#: ../../include/functions_events.php:6741 -#: ../../include/functions_events.php:7127 -#: ../../enterprise/meta/include/functions_events_meta.php:102 -#: ../../godmode/events/event_edit_filter.php:633 -#: ../../godmode/events/custom_events.php:107 -#: ../../godmode/wizards/HostDevices.class.php:958 -msgid "Comment" -msgstr "Comentar" - -#: ../../operation/events/events.build_table.php:293 -#: ../../operation/events/events.php:1188 -#: ../../operation/events/events_list.php:999 -#: ../../operation/agentes/log_sources_status.php:56 -#: ../../operation/agentes/pandora_networkmap.editor.php:336 -#: ../../operation/agentes/pandora_networkmap.view.php:136 -#: ../../include/functions_events.php:204 ../../include/functions_events.php:275 -#: ../../include/functions_events.php:4633 -#: ../../include/functions_events.php:4714 -#: ../../include/functions_events.php:6753 -#: ../../enterprise/operation/log/log_viewer.php:654 -#: ../../enterprise/include/class/LogSource.class.php:626 -#: ../../enterprise/include/functions_log.php:279 -#: ../../enterprise/include/functions_log.php:282 -#: ../../enterprise/meta/include/functions_events_meta.php:110 -#: ../../enterprise/meta/advanced/policymanager.sync.php:307 -#: ../../enterprise/godmode/massive/massive_add_modules_policy.php:147 -#: ../../godmode/reporting/reporting_builder.item_editor.php:1498 -#: ../../godmode/events/event_edit_filter.php:627 -#: ../../godmode/events/custom_events.php:109 -#: ../../godmode/massive/massive_copy_modules.php:144 -msgid "Source" -msgstr "Origen" - -#: ../../operation/events/events.build_table.php:303 -#: ../../operation/events/events.php:1195 -#: ../../operation/events/events_list.php:1001 -#: ../../include/functions_events.php:6759 -#: ../../godmode/events/event_edit_filter.php:630 -msgid "Extra ID" -msgstr "ID extra" - -#: ../../operation/events/events.build_table.php:313 -#: ../../include/functions_events.php:207 ../../include/functions_events.php:284 -#: ../../include/functions_events.php:6765 -#: ../../enterprise/meta/include/functions_events_meta.php:122 -#: ../../godmode/events/custom_events.php:112 -msgid "ACK Timestamp" -msgstr "ACK Marca temporal" - -#: ../../operation/events/events.build_table.php:323 -#: ../../operation/events/events.php:2822 ../../include/functions_events.php:208 -#: ../../include/functions_events.php:287 ../../include/functions_events.php:4692 -#: ../../include/functions_events.php:6771 -#: ../../enterprise/meta/include/functions_events_meta.php:126 -#: ../../godmode/events/custom_events.php:113 -msgid "Instructions" -msgstr "Instrucciones" - -#: ../../operation/events/events.build_table.php:340 -#: ../../include/functions_events.php:296 -#: ../../godmode/events/custom_events.php:116 -#: ../../godmode/massive/massive_delete_modules.php:436 -#: ../../godmode/massive/massive_edit_modules.php:382 -msgid "Module Status" -msgstr "Estado de mĆ³dulo" - -#: ../../operation/events/events.build_table.php:350 -#: ../../include/ajax/events.php:1552 ../../include/functions_events.php:213 -#: ../../include/functions_events.php:315 -#: ../../include/functions_reporting_html.php:1065 -#: ../../include/functions_reporting_html.php:1298 -#: ../../include/functions_reporting_html.php:2395 -#: ../../godmode/events/event_edit_filter.php:650 -#: ../../godmode/events/custom_events.php:119 -msgid "Custom data" -msgstr "Datos personalizados" - -#: ../../operation/events/events.build_table.php:420 -#: ../../operation/events/events.php:2249 ../../include/ajax/events.php:1784 -#: ../../include/functions_events.php:2652 -#: ../../include/functions_events.php:4820 -#: ../../include/functions_events.php:6832 -#: ../../include/functions_reporting.php:10704 -#: ../../include/functions_reporting_html.php:1082 -#: ../../include/functions_reporting_html.php:1319 -#: ../../include/functions_reporting_html.php:2411 -#: ../../mobile/operation/events.php:267 -msgid "New event" -msgstr "Nuevo evento" - -#: ../../operation/events/events.build_table.php:425 -#: ../../operation/events/events.php:2255 ../../include/ajax/events.php:1789 -#: ../../include/functions_events.php:2657 -#: ../../include/functions_events.php:4826 -#: ../../include/functions_events.php:6837 -#: ../../include/functions_reporting.php:10709 -#: ../../include/functions_reporting_html.php:1087 -#: ../../include/functions_reporting_html.php:1324 -#: ../../include/functions_reporting_html.php:2416 -#: ../../mobile/operation/events.php:272 -msgid "Event validated" -msgstr "Evento validado" - -#: ../../operation/events/events.build_table.php:430 -#: ../../operation/events/events.php:2261 ../../include/ajax/events.php:1794 -#: ../../include/functions_events.php:2662 -#: ../../include/functions_events.php:4832 -#: ../../include/functions_events.php:6842 -#: ../../include/functions_reporting.php:10714 -#: ../../include/functions_reporting_html.php:1092 -#: ../../include/functions_reporting_html.php:1329 -#: ../../include/functions_reporting_html.php:2421 -#: ../../mobile/operation/events.php:277 -msgid "Event in process" -msgstr "Evento en proceso" - -#: ../../operation/events/events.build_table.php:856 -#: ../../operation/events/events.php:2203 ../../include/functions_events.php:7249 -msgid "Validate event" -msgstr "Validar evento" - -#: ../../operation/events/events.build_table.php:867 -#: ../../operation/events/events.php:2215 -msgid "Change to in progress status" -msgstr "Cambiar a estado en proceso" - -#: ../../operation/events/events.build_table.php:884 -#: ../../operation/events/events.php:2227 ../../include/functions_events.php:3777 -#: ../../include/functions_events.php:3781 -#: ../../include/functions_events.php:7263 -msgid "Delete event" -msgstr "Eliminar evento" - -#: ../../operation/events/events.build_table.php:894 -#: ../../include/functions_events.php:7272 -msgid "Is not allowed delete events in process" -msgstr "No puede borrar eventos en proceso" - -#: ../../operation/events/events.build_table.php:1008 -#: ../../operation/events/events.php:1847 -msgid "Execute event response" -msgstr "Ejecutar respuesta de eventos" - -#: ../../operation/events/events.build_table.php:1016 -#: ../../operation/events/events.php:1860 +#: ../../godmode/massive/massive_edit_modules.php:1061 +#: ../../godmode/massive/massive_edit_modules.php:1067 +#: ../../godmode/massive/massive_edit_modules.php:1080 +#: ../../godmode/massive/massive_edit_modules.php:1108 +#: ../../godmode/massive/massive_edit_modules.php:1212 +#: ../../include/functions_html.php:1850 ../../include/functions_html.php:1951 +#: ../../include/functions_html.php:2089 +msgid "No change" +msgstr "Sin cambios" + +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:648 +#: ../../godmode/agentes/agent_manager.php:496 +#: ../../godmode/reporting/reporting_builder.item_editor.php:73 +#: ../../include/functions_events.php:4655 +#: ../../operation/agentes/estado_generalagente.php:408 +msgid "Secondary groups" +msgstr "Grupos secundarios" + +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:695 +#: ../../godmode/massive/massive_edit_agents.php:804 +#: ../../include/functions_html.php:6068 +msgid "Add secondary groups" +msgstr "AƱadir grupos secundarios" + +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:702 +#: ../../godmode/massive/massive_edit_agents.php:830 +#: ../../include/functions_html.php:6081 +msgid "Remove secondary groups" +msgstr "Eliminar grupos secundarios" + +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:739 +#: ../../enterprise/godmode/policies/configure_policy.php:47 +msgid "Add policy" +msgstr "AƱadir polĆ­tica" + +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:754 +#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:380 +msgid "Op" +msgstr "Op" + +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:771 +msgid "Extra configuration block" +msgstr "Bloque de configuraciĆ³n extra" + +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:773 +msgid "" +"Put here any extra configuration you want to be applied to any new agent matching " +"previously defined rules" +msgstr "" +"AƱada cualquier configuraciĆ³n extra que desee que se aplique a cualquier agente nuevo " +"que coincida con las reglas definidas" + +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:806 +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:837 +msgid "Extra actions" +msgstr "Acciones extra" + +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:827 +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:1145 +msgid "Add extra action" +msgstr "AƱadir acciĆ³n extra" + +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:1010 +msgid "Add new rule" +msgstr "AƱadir regla nueva" + +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:1012 +#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:188 +msgid "Update rule" +msgstr "Actualizar regla" + +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:1232 +msgid "Update extra action" +msgstr "Actualizar acciĆ³n extra" + +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.php:47 +msgid "Cannot delete autoconfiguration" +msgstr "No se ha podido borrar la autoconfiguraciĆ³n" + +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.php:62 +#: ../../godmode/setup/license.php:151 ../../godmode/setup/license.php:154 +msgid "enabled" +msgstr "activado" + +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.php:63 +msgid "enabling" +msgstr "Habilitando" + +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.php:65 +#: ../../godmode/setup/license.php:151 ../../godmode/setup/license.php:154 +msgid "disabled" +msgstr "desactivado" + +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.php:66 +msgid "disabling" +msgstr "deshabilitando" + +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.php:71 #, php-format -msgid "A maximum of %s event custom responses can be selected" -msgstr "" -"De puede seleccionar un mĆ”ximo se %s respuestas personalizadas de eventos" +msgid "Successfully %s" +msgstr "%s con Ć©xito" -#: ../../operation/events/events.build_table.php:1021 -#: ../../operation/events/events.php:1865 -msgid "Please, select an event" -msgstr "Seleccione un evento" +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.php:72 +#, php-format +msgid "Error %s" +msgstr "Error %s" -#: ../../operation/events/events.php:621 ../../operation/events/events.php:695 -#: ../../operation/events/events_list.php:613 -#: ../../operation/events/events_list.php:689 -#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:271 -#: ../../include/class/ManageNetScanScripts.class.php:471 -#: ../../include/functions_notifications.php:963 -#: ../../include/functions_snmp_browser.php:1558 -#: ../../enterprise/tools/ipam/ipam_vlan_config.php:830 -#: ../../enterprise/tools/ipam/ipam_supernet_config.php:1321 -#: ../../enterprise/operation/agentes/manage_transmap_creation.php:308 -#: ../../enterprise/include/ajax/log_viewer.ajax.php:93 -#: ../../enterprise/include/ajax/servers.ajax.php:144 -#: ../../enterprise/include/ajax/servers.ajax.php:177 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2242 -#: ../../enterprise/meta/include/functions_autoprovision.php:703 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1368 -#: ../../enterprise/meta/advanced/metasetup.consoles.php:739 -#: ../../enterprise/meta/advanced/metasetup.visual.php:411 -#: ../../enterprise/meta/advanced/links.php:189 -#: ../../enterprise/godmode/setup/setup_metaconsole.php:247 -#: ../../enterprise/godmode/setup/setup_metaconsole.php:357 -#: ../../enterprise/godmode/setup/setup_acl.php:532 -#: ../../enterprise/godmode/setup/setup_acl.php:558 -#: ../../enterprise/godmode/servers/manage_export_form.php:138 -#: ../../enterprise/godmode/servers/credential_boxes_satellite.php:298 -#: ../../enterprise/godmode/servers/manage_credential_boxes.php:82 -#: ../../enterprise/godmode/reporting/graph_template_item_editor.php:251 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:354 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:512 -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:245 -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:506 -#: ../../enterprise/godmode/reporting/visual_console_builder.wizard_services.php:190 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:268 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:847 -#: ../../enterprise/godmode/massive/massive_edit_tags_policy.php:168 -#: ../../enterprise/godmode/massive/massive_add_alerts_policy.php:138 -#: ../../enterprise/godmode/massive/massive_tags_edit_policy.php:152 -#: ../../enterprise/godmode/agentes/inventory_manager.php:185 -#: ../../enterprise/godmode/agentes/agent_disk_conf_editor.php:230 -#: ../../enterprise/godmode/agentes/collection_manager.php:113 -#: ../../enterprise/godmode/agentes/collection_manager.php:142 -#: ../../enterprise/godmode/agentes/plugins_manager.php:163 -#: ../../enterprise/godmode/alerts/alert_inventory_list.php:398 -#: ../../enterprise/godmode/policies/policy_external_alerts.php:607 -#: ../../enterprise/godmode/policies/policy_external_alerts.php:703 -#: ../../enterprise/godmode/policies/policy_inventory_modules.php:263 -#: ../../enterprise/godmode/policies/policy_alerts.php:605 -#: ../../enterprise/godmode/policies/policy_alerts.php:670 -#: ../../enterprise/godmode/policies/policy_collections.php:267 -#: ../../enterprise/godmode/policies/policy_plugins.php:144 -#: ../../extensions/files_repo/files_repo_form.php:105 -#: ../../godmode/setup/setup_visuals.php:1297 -#: ../../godmode/setup/setup_visuals.php:1352 -#: ../../godmode/setup/setup_visuals.php:1372 ../../godmode/setup/news.php:299 -#: ../../godmode/setup/links.php:173 ../../godmode/servers/plugin.php:909 -#: ../../godmode/modules/manage_network_templates_form.php:347 -#: ../../godmode/gis_maps/configure_gis_map.php:631 -#: ../../godmode/reporting/graph_builder.graph_editor.php:352 -#: ../../godmode/reporting/visual_console_builder.wizard.php:531 -#: ../../godmode/snmpconsole/snmp_alert.php:1494 -#: ../../godmode/events/event_edit_filter.php:509 -#: ../../godmode/events/event_edit_filter.php:562 -#: ../../godmode/agentes/planned_downtime.editor.php:881 -#: ../../godmode/agentes/planned_downtime.editor.php:1055 -#: ../../godmode/alerts/alert_list.list.php:801 -#: ../../godmode/users/configure_profile.php:403 -msgid "Add" -msgstr "AƱadir" +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.php:156 +msgid "There are no defined autoconfigurations" +msgstr "No hay autoconfiguraciones definidas" -#: ../../operation/events/events.php:794 -msgid "Event viewer" -msgstr "Visor de eventos" +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.php:173 +#: ../../enterprise/godmode/agentes/plugins_manager.php:195 +#: ../../enterprise/godmode/agentes/plugins_manager.php:262 +#: ../../enterprise/godmode/policies/policy_alerts.php:722 +#: ../../enterprise/include/functions_HA_cluster.php:61 +#: ../../enterprise/include/lib/Metaconsole/Node.php:1113 +#: ../../enterprise/include/lib/Metaconsole/Node.php:1114 +#: ../../godmode/extensions.php:257 ../../godmode/users/user_list.php:745 +#: ../../godmode/alerts/alert_list.list.php:1045 +#: ../../operation/users/user_edit_notifications.php:64 +msgid "Enable" +msgstr "Activar" -#: ../../operation/events/events.php:830 ../../operation/users/user_edit.php:358 -#: ../../godmode/events/events.php:41 ../../godmode/users/configure_user.php:1111 -msgid "Event list" -msgstr "Lista de eventos" +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.php:173 +#: ../../enterprise/godmode/agentes/plugins_manager.php:195 +#: ../../enterprise/godmode/agentes/plugins_manager.php:271 +#: ../../enterprise/godmode/policies/policy_alerts.php:714 +#: ../../enterprise/include/functions_HA_cluster.php:58 +#: ../../enterprise/include/lib/Metaconsole/Node.php:1139 +#: ../../enterprise/include/lib/Metaconsole/Node.php:1140 +#: ../../godmode/extensions.php:259 ../../godmode/users/user_list.php:740 +#: ../../godmode/alerts/alert_list.list.php:1018 ../../include/functions.php:3357 +msgid "Disable" +msgstr "Desactivar" -#: ../../operation/events/events.php:841 -msgid "History event list" -msgstr "Lista histĆ³rica de eventos" +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.php:194 +msgid "Add new configuration definition" +msgstr "AƱadir definiciĆ³n de nueva configuraciĆ³n" -#: ../../operation/events/events.php:852 -msgid "RSS Events" -msgstr "Eventos RSS" +#: ../../enterprise/godmode/agentes/collections.agents.php:36 +msgid "Show Agent >" +msgstr "Mostrar agente" -#: ../../operation/events/events.php:863 -msgid "Export to CSV file" -msgstr "Exportar a un archivo CSV" +#: ../../enterprise/godmode/agentes/collections.agents.php:120 +#: ../../enterprise/godmode/agentes/collections.agents.php:124 +msgid "This collection has not been added to any agents" +msgstr "Esta colecciĆ³n no ha sido aƱadida a ningĆŗn agente." -#: ../../operation/events/events.php:874 ../../operation/events/events.php:922 -msgid "Sound events" -msgstr "Eventos sonoros" +#: ../../enterprise/godmode/agentes/configurar_agente.php:112 +#: ../../enterprise/godmode/policies/policy.php:82 +#: ../../enterprise/include/functions_policies.php:3832 +#: ../../godmode/agentes/configurar_agente.php:718 +msgid "Agent plugins" +msgstr "Plugins del agente" -#: ../../operation/events/events.php:887 ../../godmode/events/events.php:116 -#: ../../godmode/events/events.php:124 -#: ../../godmode/users/configure_profile.php:306 -msgid "Manage events" -msgstr "Gestionar eventos" +#: ../../enterprise/godmode/agentes/collection_manager.php:37 +#: ../../enterprise/operation/agentes/collection_view.php:60 +msgid "This agent have not a remote configuration, please set it." +msgstr "Este agente no se ha configurado remotamente. Por favor, configĆŗralo." -#: ../../operation/events/events.php:927 -msgid "History" -msgstr "HistĆ³rico" +#: ../../enterprise/godmode/agentes/collection_manager.php:77 +msgid "Succesful add the collection" +msgstr "AƱadido a la colecciĆ³n correctamente" -#: ../../operation/events/events.php:990 -msgid "Errors" -msgstr "Errores" +#: ../../enterprise/godmode/agentes/collection_manager.php:78 +msgid "Unsuccesful add the collection" +msgstr "No se ha podido aƱadir a la colecciĆ³n." -#: ../../operation/events/events.php:1016 +#: ../../enterprise/godmode/agentes/collection_manager.php:129 +#: ../../enterprise/godmode/agentes/collection_manager.php:130 +#: ../../enterprise/godmode/agentes/collection_manager.php:254 +#: ../../enterprise/operation/agentes/policy_view.php:195 +#: ../../enterprise/operation/agentes/policy_view.php:196 +#: ../../enterprise/operation/agentes/collection_view.php:108 +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:1256 +#: ../../enterprise/operation/log/log_viewer.php:1264 +#: ../../enterprise/operation/inventory/inventory.php:475 +#: ../../enterprise/operation/inventory/inventory.php:518 +#: ../../godmode/reporting/reporting_builder.php:1260 +#: ../../include/functions_reporting.php:2809 +msgid "No data found." +msgstr "No se encontraron datos." + +#: ../../enterprise/godmode/agentes/collection_manager.php:205 +#: ../../enterprise/godmode/agentes/inventory_manager.php:219 +#: ../../enterprise/operation/agentes/collection_view.php:74 +#: ../../godmode/agentes/module_manager.php:841 +#: ../../godmode/snmpconsole/snmp_alert.php:1254 +#: ../../godmode/reporting/reporting_builder.list_items.php:371 +#: ../../godmode/reporting/graph_builder.graph_editor.php:211 +#: ../../include/ajax/alert_list.ajax.php:285 ../../include/ajax/module.php:974 +#: ../../operation/agentes/status_monitor.php:1302 +msgid "P." +msgstr "P." + +#: ../../enterprise/godmode/agentes/collection_manager.php:207 +#: ../../enterprise/operation/agentes/policy_view.php:164 +#: ../../enterprise/operation/agentes/collection_view.php:76 +msgid "Dir" +msgstr "Dir" + +#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:24 +msgid "Capacity planning" +msgstr "PlanificaciĆ³n de la capacidad" + +#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:25 +#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:166 +#: ../../enterprise/godmode/services/services.elements.php:95 +#: ../../enterprise/godmode/services/services.elements.php:178 +#: ../../enterprise/include/functions_visual_map_editor.php:30 +#: ../../enterprise/include/functions_visual_map_editor.php:41 +#: ../../enterprise/include/functions_visual_map_editor.php:54 +#: ../../enterprise/include/functions_visual_map_editor.php:85 +#: ../../enterprise/include/functions_visual_map.php:539 +#: ../../enterprise/include/rest-api/models/VisualConsole/Items/Service.php:288 +#: ../../enterprise/include/functions_reporting.php:6137 +#: ../../enterprise/include/functions_services.php:1712 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3921 +#: ../../include/lib/Dashboard/Widgets/service_map.php:307 +msgid "Service" +msgstr "Servicio" + +#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:26 +msgid "Synthetic arithmetic" +msgstr "AritmĆ©tica sintĆ©tica" + +#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:27 +msgid "Synthetic average" +msgstr "Media sintĆ©tica" + +#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:28 +msgid "Trending module" +msgstr "MĆ³dulo de tendencias" + +#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:114 +msgid "Fixed value" +msgstr "Valor fijo" + +#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:119 +msgid "Add module to operation as add" +msgstr "AƱadir mĆ³dulo a la operaciĆ³n como suma" + +#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:120 +msgid "Add module to operations as deduct" +msgstr "AƱadir mĆ³dulo a la operaciĆ³n como resta" + +#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:121 +msgid "Add module to operations as multiplicate " +msgstr "AƱadir mĆ³dulo a la operaciĆ³n como multiplicador " + +#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:122 +msgid "Add module to operations as divide" +msgstr "AƱadir mĆ³dulo a la operaciĆ³n como divisor" + +#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:123 +msgid "Remove selected modules" +msgstr "Eliminar los mĆ³dulos seleccionados" + +#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:128 +msgid "Add module to average operation" +msgstr "AƱadir mĆ³dulo al promedio de la operaciĆ³n" + +#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:129 +msgid "Remove selected modules from operations stack" +msgstr "Eliminar los mĆ³dulos de las operaciones de apilado" + +#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:144 +msgid "Move down selected modules" +msgstr "Mover hacia abajo los mĆ³dulos seleccionados" + +#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:145 +msgid "Move up selected modules" +msgstr "Mover hacia arriba los mĆ³dulos seleccionados" + +#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:175 +msgid "Select Service" +msgstr "Seleccionar servicio" + +#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:188 +msgid "Netflow filter" +msgstr "Filtro de Netflow" + +#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:197 +msgid "Select filter" +msgstr "Seleccionar filtro" + +#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:207 +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:222 +#: ../../enterprise/include/functions_ui.php:92 +msgid "Target" +msgstr "Destino" + +#: ../../enterprise/godmode/agentes/inventory_manager.php:257 +#: ../../enterprise/include/functions_ipam.php:1384 +#: ../../enterprise/operation/services/services.list.php:639 +#: ../../godmode/wizards/DiscoveryTaskList.class.php:584 +#: ../../godmode/wizards/DiscoveryTaskList.class.php:674 +#: ../../include/ajax/module.php:1052 ../../include/functions_ui.php:1162 +#: ../../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" + +#: ../../enterprise/godmode/agentes/collections.data.php:395 +#: ../../enterprise/godmode/agentes/collections.editor.php:109 +#: ../../enterprise/godmode/agentes/collections.php:92 +#, php-format msgid "" -"Event viewer is disabled due event replication. For more information, please " -"contact with the administrator" +"This console is not manager of this environment, please manage this feature from %s." msgstr "" -"El visor de eventos estĆ” desactivado debido a la replicaciĆ³n de eventos. Por " -"favor, contacta con el administrador para obtener mĆ”s informaciĆ³n." +"La consola no administra este entorno, gestione esta funcionalidad desde el " +"administrador centralizado de %s." -#: ../../operation/events/events.php:1067 -#: ../../operation/events/events_list.php:942 -#: ../../operation/agentes/status_monitor.php:496 -#: ../../operation/agentes/estado_agente.php:272 -#: ../../include/lib/Dashboard/Widgets/events_list.php:308 -#: ../../include/functions_events.php:3292 ../../include/functions.php:1277 -#: ../../enterprise/operation/agentes/tag_view.php:135 -#: ../../enterprise/meta/monitoring/custom_fields_view.php:183 -#: ../../enterprise/godmode/massive/massive_add_modules_policy.php:123 -#: ../../mobile/operation/modules.php:73 -#: ../../godmode/reporting/reporting_builder.item_editor.php:3625 -#: ../../godmode/events/event_edit_filter.php:315 -#: ../../godmode/massive/massive_delete_modules.php:422 -#: ../../godmode/massive/massive_delete_modules.php:443 -#: ../../godmode/massive/massive_copy_modules.php:119 -#: ../../godmode/massive/massive_copy_modules.php:279 -#: ../../godmode/massive/massive_edit_agents.php:535 -#: ../../godmode/massive/massive_delete_agents.php:213 -#: ../../godmode/massive/massive_edit_modules.php:389 -#: ../../godmode/massive/massive_edit_modules.php:475 -msgid "Not normal" -msgstr "No normal" +#: ../../enterprise/godmode/agentes/collections.data.php:410 +msgid "Please go to the metaconsole and apply this collection" +msgstr "Por favor, vaya a la metaconsola y aplique esta colecciĆ³n" -#: ../../operation/events/events.php:1077 -#: ../../operation/events/events_list.php:937 -#: ../../include/lib/Dashboard/Widgets/events_list.php:321 -#: ../../include/functions_events.php:198 ../../include/functions_events.php:6716 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1383 -#: ../../enterprise/include/lib/AlertCorrelation.class.php:1083 -#: ../../enterprise/include/functions_events.php:127 -#: ../../enterprise/meta/include/functions_events_meta.php:86 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2843 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:643 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2847 -#: ../../godmode/events/event_edit_filter.php:317 -#: ../../godmode/events/event_filter.php:138 -msgid "Event type" -msgstr "Tipo de evento" +#: ../../enterprise/godmode/agentes/collections.data.php:414 +msgid "Error: The collection directory does not exist." +msgstr "Error: el directorio donde se almacenan las colecciones no existe." -#: ../../operation/events/events.php:1091 ../../operation/events/events.php:1670 -#: ../../operation/events/events_list.php:970 -#: ../../include/lib/Dashboard/Widgets/events_list.php:378 -#: ../../enterprise/include/functions_events.php:107 -#: ../../godmode/events/event_edit_filter.php:350 -#: ../../godmode/events/event_filter.php:139 -msgid "Event status" -msgstr "Estado del evento" +#: ../../enterprise/godmode/agentes/collections.editor.php:98 +msgid "Files in " +msgstr "Archivos en " -#: ../../operation/events/events.php:1111 -#: ../../operation/events/events_list.php:983 -#: ../../enterprise/godmode/setup/setup.php:161 -#: ../../godmode/events/event_edit_filter.php:436 -msgid "All events" -msgstr "Todos los eventos" +#: ../../enterprise/godmode/agentes/plugins_manager.php:66 +msgid "Plug-in updated succesfully" +msgstr "Plugin actualizado correctamente" -#: ../../operation/events/events.php:1112 ../../operation/events/events.php:1720 -#: ../../operation/events/events_list.php:984 -#: ../../godmode/events/event_edit_filter.php:437 -msgid "Group events" -msgstr "Eventos agrupados" +#: ../../enterprise/godmode/agentes/plugins_manager.php:66 +msgid "Plug-in cannot be updated" +msgstr "El plugin no se pudo actualizar." -#: ../../operation/events/events.php:1113 -#: ../../operation/events/events_list.php:985 -#: ../../include/ajax/heatmap.ajax.php:78 -msgid "Group agents" -msgstr "Grupos de agente" +#: ../../enterprise/godmode/agentes/plugins_manager.php:74 +msgid "Plug-in deleted succesfully" +msgstr "Plugin eliminado correctamente" -#: ../../operation/events/events.php:1122 -#: ../../operation/events/events_list.php:982 -#: ../../include/functions_events.php:5037 -#: ../../enterprise/include/functions_events.php:198 -#: ../../mobile/operation/events.php:528 -#: ../../godmode/events/event_edit_filter.php:438 -msgid "Repeated" -msgstr "Repetido" +#: ../../enterprise/godmode/agentes/plugins_manager.php:74 +msgid "Plug-in cannot be deleted" +msgstr "El plugin no se pudo eliminar." -#: ../../operation/events/events.php:1166 -#: ../../operation/events/events_list.php:384 -#: ../../operation/events/events_list.php:524 -#: ../../operation/events/events_list.php:535 -#: ../../operation/events/events_list.php:1053 -#: ../../operation/netflow/nf_live_view.php:397 -#: ../../include/ajax/custom_fields.php:587 ../../include/ajax/events.php:503 -#: ../../include/ajax/events.php:519 -#: ../../enterprise/meta/monitoring/custom_fields_view.php:236 -#: ../../enterprise/meta/monitoring/custom_fields_view.php:242 -#: ../../enterprise/meta/monitoring/custom_fields_view.php:243 -msgid "Load filter" -msgstr "Cargar filtro" +#: ../../enterprise/godmode/agentes/plugins_manager.php:87 +#: ../../enterprise/godmode/policies/policy_plugins.php:90 +msgid "Plug-in added succesfully" +msgstr "Plugin aƱadido correctamente" -#: ../../operation/events/events.php:1174 -#: ../../operation/events/events_list.php:376 -#: ../../operation/events/events_list.php:493 -#: ../../operation/events/events_list.php:1050 ../../include/ajax/events.php:759 -#: ../../enterprise/meta/monitoring/custom_fields_view.php:222 -#: ../../enterprise/meta/monitoring/custom_fields_view.php:228 -#: ../../enterprise/meta/monitoring/custom_fields_view.php:229 -msgid "Save filter" -msgstr "Guardar filtro" +#: ../../enterprise/godmode/agentes/plugins_manager.php:87 +#: ../../enterprise/godmode/policies/policy_plugins.php:91 +msgid "Plug-in cannot be added" +msgstr "El plugin no se puede aƱadir." -#: ../../operation/events/events.php:1246 -#: ../../operation/events/events_list.php:769 -#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:279 -#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:375 -#: ../../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/agentsearch.php:52 -#: ../../enterprise/meta/agentsearch.php:58 ../../mobile/operation/home.php:168 -#: ../../godmode/events/event_edit_filter.php:371 -msgid "Agent search" -msgstr "BĆŗsqueda de agente" +#: ../../enterprise/godmode/agentes/plugins_manager.php:97 +msgid "Plug-in enabled succesfully" +msgstr "Plugin habilitado correctamente" -#: ../../operation/events/events.php:1263 -#: ../../operation/events/events_list.php:809 -#: ../../enterprise/meta/monitoring/custom_fields_view.php:293 -#: ../../godmode/events/event_edit_filter.php:614 -msgid "Module search" -msgstr "BĆŗsqueda por mĆ³dulo" +#: ../../enterprise/godmode/agentes/plugins_manager.php:98 +msgid "Plug-in cannot be enabled" +msgstr "El plugin no puede ser habilitado." -#: ../../operation/events/events.php:1293 ../../operation/events/events.php:2632 -#: ../../operation/events/events_list.php:803 -#: ../../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/lib/Dashboard/Widgets/events_list.php:329 -#: ../../include/functions_profile.php:338 ../../include/functions_html.php:2278 -#: ../../include/functions_html.php:2279 ../../include/functions_html.php:2280 -#: ../../include/functions_html.php:2281 ../../include/functions_html.php:2282 -#: ../../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 -#: ../../enterprise/operation/services/services.list.php:249 -#: ../../enterprise/operation/services/services.list.php:279 -#: ../../enterprise/operation/services/services.table_services.php:171 -#: ../../enterprise/operation/services/services.table_services.php:201 -#: ../../enterprise/include/class/AgentRepository.class.php:650 -#: ../../enterprise/include/class/Omnishell.class.php:361 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1735 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3867 -#: ../../enterprise/include/class/DeploymentCenter.class.php:779 +#: ../../enterprise/godmode/agentes/plugins_manager.php:109 +msgid "Plug-in disabled succesfully" +msgstr "Plugin inhabilitado correctamente" + +#: ../../enterprise/godmode/agentes/plugins_manager.php:110 +msgid "Plug-in cannot be disabled" +msgstr "El plugin no puede ser inhabilitado." + +#: ../../enterprise/godmode/agentes/plugins_manager.php:127 +#: ../../enterprise/godmode/policies/policy_plugins.php:109 +msgid "If enabled, allows to define a complex module plugin or log." +msgstr "Si estĆ” habilitado, permite definir un log o complemento de mĆ³dulo complejo." + +#: ../../enterprise/godmode/agentes/plugins_manager.php:142 +#: ../../enterprise/godmode/policies/policy_plugins.php:123 +msgid "New plug-in" +msgstr "Nuevo plugin" + +#: ../../enterprise/godmode/agentes/plugins_manager.php:192 +#: ../../enterprise/godmode/policies/policy_plugins.php:167 +#: ../../enterprise/godmode/policies/policies.php:535 ../../godmode/menu.php:301 +msgid "Plugins" +msgstr "Plugins" + +#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:58 +#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:61 +msgid "The changes on this field are linked with the configuration data." +msgstr "Los cambios en este campo estĆ”n unidos con la configuraciĆ³n de datos." + +#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:67 +msgid "Using local component" +msgstr "Usando componente local" + +#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:76 +#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:96 +#: ../../godmode/agentes/module_manager_editor_common.php:118 +#: ../../godmode/agentes/module_manager_editor_common.php:135 +msgid "Manual setup" +msgstr "ConfiguraciĆ³n manual" + +#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:88 +#: ../../godmode/agentes/module_manager_editor_common.php:127 +msgid "No component was found" +msgstr "No se encontrĆ³ ningĆŗn componente" + +#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:155 +msgid "Show configuration data" +msgstr "Mostrar datos de configuraciĆ³n" + +#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:166 +msgid "Hide configuration data" +msgstr "Ocultar datos de configuraciĆ³n" + +#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:174 +msgid "Data configuration" +msgstr "ConfiguraciĆ³n de datos" + +#: ../../enterprise/godmode/agentes/agent_disk_conf_editor.php:121 +msgid "Error: The conf file of agent is not readble." +msgstr "Error: el archivo de configuraciĆ³n no se puede leer." + +#: ../../enterprise/godmode/agentes/agent_disk_conf_editor.php:125 +msgid "Error: The conf file of agent is not writable." +msgstr "Error: en el archivo de configuraciĆ³n no se puede escribir." + +#: ../../enterprise/godmode/agentes/agent_disk_conf_editor.php:178 +#: ../../enterprise/godmode/policies/policy_modules.php:387 +msgid "Add module" +msgstr "AƱadir mĆ³dulo" + +#: ../../enterprise/godmode/agentes/agent_disk_conf_editor.php:213 +msgid "No module was found" +msgstr "No se encontraron mĆ³dulos." + +#: ../../enterprise/godmode/agentes/agent_disk_conf_editor.php:248 +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:349 +#: ../../godmode/agentes/agent_manager.php:534 +msgid "Delete remote configuration file" +msgstr "Borrar el archivo de configuraciĆ³n remota" + +#: ../../enterprise/godmode/agentes/agent_disk_conf_editor.php:249 +msgid "" +"Delete this conf file implies that for restore you must reactive remote config in the " +"local agent." +msgstr "" +"Borrar el archivo .conf implica que para restaurarlo, se debe reactivar la " +"configuraciĆ³n remota en el agente local." + +#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:98 +#: ../../godmode/agentes/module_manager_editor_common.php:238 +msgid "Delete module" +msgstr "Eliminar mĆ³dulo" + +#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:127 +msgid "Run performance tests" +msgstr "Realizar pruebas de rendimiento" + +#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:138 +msgid "Target web site" +msgstr "Sitio web de destino" + +#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:140 +msgid "The url specified in this field is mandatory to retrieve performance stats." +msgstr "" +"La URL especificada en este campo es obligatoria para recuperar las estadĆ­sticas de " +"rendimiento." + +#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:154 +msgid "target web site (http://...)" +msgstr "sitio web objetivo (http://...)" + +#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:161 +msgid "Execute tests from" +msgstr "Ejecutar pruebas desde" + +#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:177 +msgid "Browser" +msgstr "Explorador" + +#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:179 +msgid "" +"Support for IE and Edge browsers is experimental. Tests might not work as expected." +msgstr "" +"El soporte para IE y navegadores Edge es experimental. Las pruebas podrĆ­an no " +"funcionar segĆŗn lo esperado." + +#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:221 +msgid "Accept insecure certificates" +msgstr "Aceptar certificados no seguros" + +#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:223 +msgid "Only Selenium 3." +msgstr "Solo Selenium 3." + +#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:349 +msgid "Paste your selenium test, exported as HTML, here" +msgstr "Pega el test de selenium, exportado como HTML, aquĆ­" + +#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:362 +msgid "Add file" +msgstr "AƱadir archivo" + +#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:370 +msgid "Upload your selenium test in html or side (only Selenium 3) format" +msgstr "Actualizar la prueba de selenium en formato html o side (solo Selenium 3)" + +#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:398 +#: ../../enterprise/tools/ipam/ipam_excel.php:212 +#: ../../enterprise/tools/ipam/ipam_vlan_config.php:342 +#: ../../enterprise/tools/ipam/ipam_vlan_config.php:674 +#: ../../godmode/groups/configure_group.php:238 +#: ../../godmode/agentes/agent_manager.php:198 +#: ../../godmode/agentes/module_manager_editor_common.php:567 +#: ../../godmode/massive/massive_edit_agents.php:798 +msgid "Custom ID" +msgstr "ID personalizado" + +#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:454 +#: ../../godmode/agentes/module_manager.php:1105 +msgid "" +"The policy modules of data type will only update their intervals when policy is " +"applied." +msgstr "" +"Los mĆ³dulos de polĆ­tica de tipo dato solo actualizarĆ”n sus intervalos cuando la " +"polĆ­tica sea aplicada." + +#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:480 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:961 +#: ../../godmode/agentes/module_manager_editor_common.php:865 +#: ../../godmode/massive/massive_edit_modules.php:1014 +msgid "FF interval" +msgstr "Intervalo FF" + +#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:496 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:962 +#: ../../godmode/massive/massive_edit_modules.php:1024 +msgid "Module execution flip flop time interval (in secs)." +msgstr "Tiempo del intervalo de flip flop de ejecuciĆ³n del mĆ³dulo (en segundos)." + +#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:500 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:1057 +#: ../../enterprise/operation/agentes/manage_transmap_creation_phases_data.php:77 +#: ../../godmode/agentes/module_manager_editor_common.php:1138 +#: ../../godmode/massive/massive_edit_modules.php:1135 +msgid "Retries" +msgstr "Reintentos" + +#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:515 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:1059 +#: ../../godmode/massive/massive_edit_modules.php:1137 +msgid "Number of retries that the module will attempt to run." +msgstr "NĆŗmero de intentos que el mĆ³dulo intentarĆ” activar" + +#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:574 +#: ../../enterprise/godmode/policies/policy_modules.php:417 +#: ../../godmode/agentes/module_manager_editor.php:750 +#: ../../godmode/agentes/module_manager_editor_common.php:1226 +msgid "Custom macros" +msgstr "Macros personalizadas" + +#: ../../enterprise/godmode/agentes/pandora_networkmap_empty.editor.php:93 +#: ../../godmode/agentes/pandora_networkmap_empty.editor.php:95 +msgid "Empty Network maps editor" +msgstr "Editor de mapas de red vacĆ­o" + +#: ../../enterprise/godmode/agentes/pandora_networkmap_empty.editor.php:102 +#: ../../enterprise/godmode/services/services.service.php:493 +#: ../../enterprise/godmode/services/services.elements.php:799 +#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:117 +#: ../../enterprise/godmode/reporting/visual_console_template.php:118 +#: ../../enterprise/operation/services/services.service.php:79 +#: ../../enterprise/operation/services/services.service_map.php:93 +#: ../../enterprise/operation/services/services.treeview_services.php:78 +#: ../../enterprise/operation/services/services.list.php:71 +#: ../../enterprise/operation/services/services.table_services.php:54 +#: ../../godmode/agentes/pandora_networkmap_empty.editor.php:104 +#: ../../godmode/reporting/visual_console_builder.php:878 +#: ../../godmode/reporting/map_builder.php:130 +#: ../../godmode/reporting/visual_console_favorite.php:127 +#: ../../operation/visual_console/view.php:226 +#: ../../operation/agentes/pandora_networkmap.editor.php:214 +#: ../../operation/agentes/pandora_networkmap.php:665 ../../operation/menu.php:300 +msgid "Topology maps" +msgstr "Mapas topolĆ³gicos" + +#: ../../enterprise/godmode/agentes/pandora_networkmap_empty.editor.php:106 +#: ../../godmode/agentes/pandora_networkmap_empty.editor.php:108 +#: ../../operation/agentes/pandora_networkmap.editor.php:218 +#: ../../operation/agentes/pandora_networkmap.php:669 +#: ../../operation/agentes/pandora_networkmap.view.php:2230 +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:256 +#: ../../operation/agentes/pandora_networkmap.view.php:2236 +msgid "Not found networkmap." +msgstr "No se encontrĆ³ ningĆŗn mapa de red." + +#: ../../enterprise/godmode/agentes/pandora_networkmap_empty.editor.php:173 +#: ../../godmode/agentes/pandora_networkmap_empty.editor.php:175 +#: ../../operation/agentes/pandora_networkmap.editor.php:445 +msgid "Save networkmap" +msgstr "Guardar mapa de red" + +#: ../../enterprise/godmode/agentes/pandora_networkmap_empty.editor.php:184 +#: ../../godmode/agentes/pandora_networkmap_empty.editor.php:186 +#: ../../operation/agentes/pandora_networkmap.editor.php:456 +msgid "Update networkmap" +msgstr "Actualizar mapa de red" + +#: ../../enterprise/godmode/agentes/collections.php:65 +msgid "Success: recreate file" +msgstr "Archivo creado de nuevo" + +#: ../../enterprise/godmode/agentes/collections.php:67 +msgid "Error: recreate file " +msgstr "El archivo no se pudo volver a crear " + +#: ../../enterprise/godmode/agentes/collections.php:82 +#: ../../enterprise/godmode/agentes/collections.php:123 +#: ../../enterprise/godmode/agentes/collections.php:232 +msgid "Collections Management" +msgstr "GestiĆ³n de colecciones" + +#: ../../enterprise/godmode/agentes/collections.php:175 +msgid "Manager collection" +msgstr "Gestor de colecciones" + +#: ../../enterprise/godmode/agentes/manage_config_remote.php:56 +msgid "Data Copy" +msgstr "Copia de datos" + +#: ../../enterprise/godmode/agentes/manage_config_remote.php:56 +msgid "Duplicate configuration" +msgstr "Duplicar configuraciĆ³n" + +#: ../../enterprise/godmode/agentes/manage_config_remote.php:78 +msgid "No source agent selected" +msgstr "No ha seleccionado ningĆŗn agente de origen" + +#: ../../enterprise/godmode/agentes/manage_config_remote.php:80 +msgid "No destination agent/s selected" +msgstr "No se seleccionĆ³ ningĆŗn agente/destino" + +#: ../../enterprise/godmode/agentes/manage_config_remote.php:140 +#: ../../enterprise/godmode/agentes/manage_config_remote.php:152 +msgid "Copied " +msgstr "Copiado " + +#: ../../enterprise/godmode/agentes/manage_config_remote.php:140 +#: ../../enterprise/godmode/agentes/manage_config_remote.php:146 +#: ../../enterprise/godmode/agentes/manage_config_remote.php:158 +msgid " md5 file/s" +msgstr "archivo/s MD5" + +#: ../../enterprise/godmode/agentes/manage_config_remote.php:146 +#: ../../enterprise/godmode/agentes/manage_config_remote.php:158 +msgid "Error copying " +msgstr "Error al copiar " + +#: ../../enterprise/godmode/agentes/manage_config_remote.php:152 +msgid " config file/s" +msgstr "archivo/s de configuraciĆ³n" + +#: ../../enterprise/godmode/agentes/manage_config_remote.php:225 +msgid "Source Group" +msgstr "Grupo de origen" + +#: ../../enterprise/godmode/agentes/manage_config_remote.php:256 +msgid "Destination agent(s)" +msgstr "Agente(s) de destino" + +#: ../../enterprise/godmode/agentes/manage_config_remote.php:268 +msgid "Source Agent" +msgstr "Agente de origen" + +#: ../../enterprise/godmode/agentes/manage_config_remote.php:293 +msgid "Replicate configuration" +msgstr "Replicar configuraciĆ³n" + +#: ../../enterprise/godmode/agentes/manage_config_remote.php:314 +msgid "The action to be performed cannot be reversed. Are you sure to continue?" +msgstr "Va a deshacer la acciĆ³n realizada. ĀæEstĆ” seguro de que desea continuar?" + +#: ../../enterprise/godmode/agentes/module_manager.php:48 +msgid "Create a new web analysis module" +msgstr "Crear un mĆ³dulo de anĆ”lisis web nuevo" + +#: ../../enterprise/godmode/policies/policy_plugins.php:38 +#: ../../enterprise/godmode/policies/policy_alerts.php:64 +#: ../../enterprise/godmode/policies/configure_policy.php:81 +#: ../../enterprise/godmode/policies/policy_modules.php:476 +#: ../../enterprise/godmode/policies/policy_queue.php:218 +#: ../../enterprise/godmode/policies/policies.php:268 +#: ../../enterprise/godmode/policies/policy_linking.php:117 +#: ../../enterprise/godmode/policies/policy_external_alerts.php:309 +#: ../../enterprise/godmode/policies/policy_inventory_modules.php:91 +#: ../../enterprise/godmode/policies/policy_collections.php:50 +#: ../../enterprise/godmode/policies/policy_agents.php:326 +#: ../../enterprise/godmode/massive/massive_edit_tags_policy.php:40 +#: ../../enterprise/godmode/massive/massive_add_alerts_policy.php:38 +#: ../../enterprise/godmode/massive/massive_add_modules_policy.php:40 +#: ../../enterprise/godmode/massive/massive_tags_edit_policy.php:40 +#: ../../enterprise/godmode/massive/massive_delete_alerts_policy.php:38 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:38 +#: ../../enterprise/operation/agentes/policy_view.php:58 +#, php-format +msgid "" +"This node is configured with centralized mode. All policies information is read only. " +"Go to %s to manage it." +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." + +#: ../../enterprise/godmode/policies/policy_plugins.php:56 +msgid "" +"Successfully added to delete pending plugins. Will be deleted in the next policy " +"application." +msgstr "" +"Correctamente aƱadido a los plugins pendientes de eliminar. SerĆ” eliminado en la " +"prĆ³xima aplicaciĆ³n de polĆ­ticas." + +#: ../../enterprise/godmode/policies/policy_plugins.php:57 +msgid "Cannot be added to delete pending plugins." +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:1316 +#: ../../enterprise/godmode/policies/policy_external_alerts.php:150 +#: ../../enterprise/godmode/policies/policy_inventory_modules.php:169 +#: ../../enterprise/godmode/policies/policy_collections.php:103 +#: ../../enterprise/godmode/policies/policy_agents.php:113 +#: ../../enterprise/godmode/policies/policy_agents.php:129 +msgid "Successfully reverted deletion" +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:1317 +#: ../../enterprise/godmode/policies/policy_external_alerts.php:151 +#: ../../enterprise/godmode/policies/policy_inventory_modules.php:172 +#: ../../enterprise/godmode/policies/policy_collections.php:104 +#: ../../enterprise/godmode/policies/policy_agents.php:114 +#: ../../enterprise/godmode/policies/policy_agents.php:130 +msgid "Could not be reverted" +msgstr "No pudo ser revertido" + +#: ../../enterprise/godmode/policies/policy_plugins.php:210 +msgid "There are no defined plugins" +msgstr "No hay plugins definidos" + +#: ../../enterprise/godmode/policies/policy_alerts.php:94 +#: ../../enterprise/godmode/policies/policy_modules.php:599 +#: ../../enterprise/godmode/policies/policies.php:249 +#: ../../enterprise/godmode/policies/policy_linking.php:41 +#: ../../enterprise/godmode/policies/policy_external_alerts.php:77 +#: ../../enterprise/godmode/policies/policy_inventory_modules.php:98 +#: ../../enterprise/godmode/policies/policy_collections.php:63 +#: ../../enterprise/godmode/policies/policy_agents.php:85 +#: ../../godmode/agentes/module_manager_editor.php:542 +msgid "This policy is applying and cannot be modified" +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:535 +#: ../../enterprise/godmode/setup/setup_metaconsole.php:157 +#: ../../godmode/agentes/configurar_agente.php:2201 +#: ../../godmode/agentes/modificar_agente.php:278 +#: ../../godmode/massive/massive_enable_disable_alerts.php:124 +#: ../../godmode/alerts/alert_list.php:394 ../../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:420 +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:421 +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:447 +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:448 +msgid "Could not be set off standby" +msgstr "No se pudo desactivar el modo standby" + +#: ../../enterprise/godmode/policies/policy_alerts.php:249 +msgid " created successfuly" +msgstr " creado correctamente" + +#: ../../enterprise/godmode/policies/policy_alerts.php:249 +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 +msgid "" +"Successfully added to delete pending alerts. Will be deleted in the next policy " +"application." +msgstr "" +"Correctamente aƱadido a las alertas pendientes de eliminaciĆ³n. SerĆ” eliminado en la " +"prĆ³xima aplicaciĆ³n de polĆ­ticas." + +#: ../../enterprise/godmode/policies/policy_alerts.php:280 +#: ../../enterprise/godmode/policies/policy_external_alerts.php:200 +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_agents.php:251 +#: ../../enterprise/godmode/alerts/alert_inventory_list.php:92 +#: ../../godmode/massive/massive_delete_action_alerts.php:175 +#: ../../godmode/massive/massive_add_alerts.php:169 +#: ../../godmode/massive/massive_add_action_alerts.php:75 +#: ../../godmode/massive/massive_add_action_alerts.php:134 +#: ../../godmode/massive/massive_add_action_alerts.php:160 +#: ../../godmode/massive/massive_add_action_alerts.php:163 +#: ../../godmode/massive/massive_add_action_alerts.php:166 +#: ../../godmode/alerts/alert_list.php:272 +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 +msgid "Deleted action successfuly" +msgstr "AcciĆ³n eliminada correctamente" + +#: ../../enterprise/godmode/policies/policy_alerts.php:428 +#: ../../enterprise/godmode/policies/policy_external_alerts.php:459 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2402 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3370 +#: ../../godmode/alerts/alert_list.list.php:651 ../../godmode/alerts/alert_view.php:234 +#: ../../include/functions_alerts.php:683 +msgid "Always" +msgstr "Siempre" + +#: ../../enterprise/godmode/policies/policy_alerts.php:430 +#: ../../enterprise/godmode/policies/policy_external_alerts.php:461 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3372 +#: ../../godmode/alerts/alert_list.list.php:653 +#: ../../include/class/Diagnostics.class.php:1181 +#: ../../include/class/Diagnostics.class.php:1185 +msgid "On" +msgstr "Activado" + +#: ../../enterprise/godmode/policies/policy_alerts.php:434 +#: ../../enterprise/godmode/policies/policy_external_alerts.php:465 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3376 +#: ../../godmode/alerts/alert_list.list.php:657 +msgid "Until" +msgstr "Hasta" + +#: ../../enterprise/godmode/policies/policy_alerts.php:529 +#: ../../enterprise/godmode/policies/policy_modules.php:1573 +#: ../../enterprise/godmode/policies/policy_external_alerts.php:533 +#: ../../enterprise/godmode/policies/policy_inventory_modules.php:329 +#: ../../enterprise/godmode/policies/policy_agents.php:1066 +#: ../../enterprise/godmode/policies/policy_agents.php:1535 +msgid "Undo deletion" +msgstr "Deshacer eliminaciĆ³n" + +#: ../../enterprise/godmode/policies/policy_alerts.php:596 +#: ../../enterprise/godmode/policies/policy_external_alerts.php:600 +#: ../../godmode/massive/massive_add_action_alerts.php:252 +#: ../../godmode/alerts/alert_list.list.php:768 +#: ../../godmode/alerts/alert_list.builder.php:127 +#: ../../include/ajax/alert_list.ajax.php:516 +#: ../../include/class/AgentsAlerts.class.php:314 +msgid "Number of alerts match from" +msgstr "NĆŗmero de alertas coincidentes con" + +#: ../../enterprise/godmode/policies/policy_alerts.php:613 +msgid "There is not alerts configured in this policy." +msgstr "No hay alertas configuradas en esta polĆ­tica." + +#: ../../enterprise/godmode/policies/policy_alerts.php:642 +#: ../../enterprise/godmode/massive/massive_add_alerts_policy.php:115 +#: ../../enterprise/godmode/massive/massive_delete_alerts_policy.php:125 +#: ../../godmode/massive/massive_standby_alerts.php:217 +#: ../../godmode/massive/massive_add_alerts.php:280 +#: ../../godmode/massive/massive_enable_disable_alerts.php:189 +#: ../../godmode/massive/massive_delete_alerts.php:271 +msgid "Alert template" +msgstr "Plantilla de alerta" + +#: ../../enterprise/godmode/policies/policy_alerts.php:653 +msgid "Policy module" +msgstr "MĆ³dulo de la polĆ­tica" + +#: ../../enterprise/godmode/policies/policy_alerts.php:731 +#: ../../godmode/alerts/alert_list.list.php:1072 +msgid "Set off standby" +msgstr "Desactivar modo standby" + +#: ../../enterprise/godmode/policies/policy_alerts.php:740 +#: ../../godmode/alerts/alert_list.list.php:1099 +msgid "Set standby" +msgstr "Activar modo standby" + +#: ../../enterprise/godmode/policies/policy_alerts.php:754 +#: ../../enterprise/godmode/policies/policy_external_alerts.php:508 +#: ../../enterprise/godmode/alerts/alert_inventory_list.php:344 +#: ../../enterprise/godmode/alerts/alert_inventory_list.php:350 +#: ../../enterprise/godmode/alerts/alert_inventory_list.php:444 +#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:488 +#: ../../godmode/snmpconsole/snmp_alert.php:1381 +#: ../../godmode/alerts/alert_list.list.php:914 +#: ../../godmode/alerts/alert_list.list.php:921 +#: ../../godmode/alerts/alert_list.list.php:1145 +msgid "Add action" +msgstr "AƱadir acciĆ³n" + +#: ../../enterprise/godmode/policies/configure_policy.php:122 +msgid "Force Apply" +msgstr "Forzar aplicaciĆ³n" + +#: ../../enterprise/godmode/policies/configure_policy.php:122 +msgid "" +"Force the creation of modules even if the software agent does not have remote " +"configuration" +msgstr "" +"Forzar la creaciĆ³n de mĆ³dulos incluso si el agente software no tiene configuraciĆ³n " +"remota" + +#: ../../enterprise/godmode/policies/policy_modules.php:299 +msgid "" +"If you change this description, you must change into the text of Data configuration." +msgstr "" +"Si cambias esta descripciĆ³n, tienes que cambiarla en el texto de la configuraciĆ³n de " +"datos." + +#: ../../enterprise/godmode/policies/policy_modules.php:372 +msgid "Invalid module type." +msgstr "Tipo de mĆ³dulo invĆ”lido" + +#: ../../enterprise/godmode/policies/policy_modules.php:403 +#: ../../godmode/agentes/module_manager_editor.php:738 +msgid "Base options" +msgstr "Opciones de base" + +#: ../../enterprise/godmode/policies/policy_modules.php:548 +msgid "Could not be added module(s). You must select a policy" +msgstr "El mĆ³dulo no se pudo aƱadir. Tienes que seleccionar una polĆ­tica." + +#: ../../enterprise/godmode/policies/policy_modules.php:581 +#, php-format +msgid "Successfully added module(s) (%s/%s) to policy %s" +msgstr "MĆ³dulo(s) (%s/%s) aƱadido(s) correctamente a la polĆ­tica %s" + +#: ../../enterprise/godmode/policies/policy_modules.php:587 +#, php-format +msgid "Could not be added module(s) (%s/%s) to policy %s" +msgstr "El mĆ³dulo (%s/%s) no se pudo aƱadir a la polĆ­tica %s" + +#: ../../enterprise/godmode/policies/policy_modules.php:623 +msgid "To define plugins please use plugin configuration tab." +msgstr "Para definir plugins, use la pestaƱa de configuraciĆ³n de plugins." + +#: ../../enterprise/godmode/policies/policy_modules.php:920 +msgid "Could not be added module." +msgstr "El mĆ³dulo no se pudo aƱadir." + +#: ../../enterprise/godmode/policies/policy_modules.php:1265 +msgid "The module type in Data configuration is empty, take from combo box of form." +msgstr "" +"El tipo de datos en la configuraciĆ³n estĆ” vacĆ­o, elige uno del combo del formulario." + +#: ../../enterprise/godmode/policies/policy_modules.php:1269 +msgid "The module name in Data configuration is empty, take from text field of form." +msgstr "" +"El nombre del mĆ³dulo en la configuraciĆ³n estĆ” vacĆ­o, elige uno del combo del " +"formulario." + +#: ../../enterprise/godmode/policies/policy_modules.php:1299 +#: ../../enterprise/godmode/policies/policy_modules.php:1312 +#: ../../enterprise/godmode/policies/policy_inventory_modules.php:163 +msgid "" +"Successfully added to delete pending modules. Will be deleted in the next policy " +"application." +msgstr "" +"AƱadido correctamente a la cola de mĆ³dulos pendientes de eliminaciĆ³n. SerĆ” eliminado " +"en la prĆ³xima aplicaciĆ³n de polĆ­ticas." + +#: ../../enterprise/godmode/policies/policy_modules.php:1303 +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:1363 +#: ../../godmode/agentes/configurar_agente.php:2114 +#: ../../include/functions_reports.php:956 +#, php-format +msgid "copy of %s" +msgstr "copia de %s" + +#: ../../enterprise/godmode/policies/policy_modules.php:1381 +#: ../../godmode/agentes/configurar_agente.php:2128 +#, php-format +msgid "copy of %s (%d)" +msgstr "copia de %s (%d)" + +#: ../../enterprise/godmode/policies/policy_modules.php:1411 +msgid "Successfully duplicate the module." +msgstr "MĆ³dulo duplicado correctamente" + +#: ../../enterprise/godmode/policies/policy_modules.php:1412 +#: ../../operation/agentes/pandora_networkmap.php:533 +msgid "Could not be duplicated" +msgstr "No se puede duplicar" + +#: ../../enterprise/godmode/policies/policy_modules.php:1492 +msgid "Local component" +msgstr "Componente local" + +#: ../../enterprise/godmode/policies/policy_modules.php:1509 +#: ../../enterprise/godmode/policies/policy_modules.php:1510 +msgid "Disabled module" +msgstr "MĆ³dulo deshabilitado" + +#: ../../enterprise/godmode/policies/policy_modules.php:1517 +#: ../../enterprise/godmode/policies/policy_modules.php:1518 +msgid "Enabled module" +msgstr "MĆ³dulo habilitado" + +#: ../../enterprise/godmode/policies/policy_modules.php:1528 +#: ../../enterprise/godmode/policies/policy_modules.php:1529 +#: ../../godmode/agentes/module_manager.php:1143 +#: ../../godmode/agentes/module_manager.php:1144 +msgid "Enable module" +msgstr "Habilitar el mĆ³dulo" + +#: ../../enterprise/godmode/policies/policy_modules.php:1538 +#: ../../enterprise/godmode/policies/policy_modules.php:1539 +#: ../../godmode/agentes/module_manager.php:1153 +#: ../../godmode/agentes/module_manager.php:1154 +msgid "Disable module" +msgstr "Deshabilitar el mĆ³dulo" + +#: ../../enterprise/godmode/policies/policy_modules.php:1624 +msgid "There are no defined modules" +msgstr "No hay mĆ³dulos definidos" + +#: ../../enterprise/godmode/policies/policy_modules.php:1643 +#: ../../godmode/massive/massive_copy_modules.php:188 +msgid "Copy modules" +msgstr "Copiar mĆ³dulos" + +#: ../../enterprise/godmode/policies/policy_modules.php:1644 +msgid "Copy selected modules to policy: " +msgstr "Copiar mĆ³dulos seleccionados a la polĆ­tica: " + +#: ../../enterprise/godmode/policies/policy_modules.php:1706 +#: ../../godmode/agentes/module_manager_editor.php:822 +msgid "No module name provided" +msgstr "No se proporcionĆ³ ningĆŗn nombre de mĆ³dulo." + +#: ../../enterprise/godmode/policies/policy_modules.php:1707 +#: ../../godmode/agentes/module_manager_editor.php:832 +msgid "No target IP provided" +msgstr "No se proporcionĆ³ ninguna IP de destino." + +#: ../../enterprise/godmode/policies/policy_modules.php:1708 +#: ../../godmode/agentes/module_manager_editor.php:842 +msgid "No SNMP OID provided" +msgstr "No se proporcionĆ³ ningĆŗn OID de SMTP." + +#: ../../enterprise/godmode/policies/policy_modules.php:1849 +msgid "Are you sure to copy modules into policy?\\n" +msgstr "ĀæEstĆ”s seguro de que quieres copiar los mĆ³dulos en la polĆ­tica?\\n" + +#: ../../enterprise/godmode/policies/policy_modules.php:1869 +msgid "Please select any module to copy" +msgstr "Por favor, selecciona algĆŗn mĆ³dulo para copiar." + +#: ../../enterprise/godmode/policies/policy_queue.php:63 +msgid "No policies with this id" +msgstr "No hay polĆ­ticas con este identificador" + +#: ../../enterprise/godmode/policies/policy_queue.php:78 +#: ../../enterprise/godmode/policies/policy_agents.php:62 +msgid "" +"Starting with Pandora FMS version 760, assigning an entire group to a policy will " +"apply it automatically to all the new agents added to that group." +msgstr "" +"A partir de Pandora FMS versiĆ³n 760, la asignaciĆ³n de un grupo completo a una " +"polĆ­tica la aplicarĆ” automĆ”ticamente a todos los nuevos agentes aƱadidos a ese grupo." + +#: ../../enterprise/godmode/policies/policy_queue.php:146 +#, php-format +msgid "%s: Operations successfully deleted from the queue" +msgstr "%s: Operaciones eliminadas correctamente de la cola" + +#: ../../enterprise/godmode/policies/policy_queue.php:153 +msgid "Operations successfully deleted from the queue" +msgstr "Operaciones eliminadas correctamente de la cola" + +#: ../../enterprise/godmode/policies/policy_queue.php:154 +msgid "Operations cannot be deleted from the queue" +msgstr "Las operaciones no pueden ser eliminadas de la cola." + +#: ../../enterprise/godmode/policies/policy_queue.php:261 +#, php-format +msgid "Some nodes (%s) are unreachebles. Some information may be missing." +msgstr "Algunos nĆ³dulos (%s) estĆ”n inaccesible. PodrĆ­a faltar informaciĆ³n." + +#: ../../enterprise/godmode/policies/policy_queue.php:308 +msgid "Update pending" +msgstr "ActualizaciĆ³n pendiente" + +#: ../../enterprise/godmode/policies/policy_queue.php:314 +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 +msgid "Add to apply queue" +msgstr "AƱadir a la cola para aplicarlo" + +#: ../../enterprise/godmode/policies/policy_queue.php:343 +msgid "Add to apply queue only for database" +msgstr "AƱadir a la cola de aplicaciĆ³n solo de cambios de base de datos" + +#: ../../enterprise/godmode/policies/policy_queue.php:354 +msgid "Update pending groups" +msgstr "Actualizar grupos pendientes" + +#: ../../enterprise/godmode/policies/policy_queue.php:368 +msgid "Link pending modules" +msgstr "Enlazar mĆ³dulos pendientes" + +#: ../../enterprise/godmode/policies/policy_queue.php:376 +msgid "Will be linked in the next policy application" +msgstr "Se enlazarĆ” en la siguiente aplicaciĆ³n de polĆ­ticas" + +#: ../../enterprise/godmode/policies/policy_queue.php:382 +msgid "Unlink pending modules" +msgstr "Desenlazar mĆ³dulos pendientes" + +#: ../../enterprise/godmode/policies/policy_queue.php:388 +msgid "Will be unlinked in the next policy application" +msgstr "SerĆ” desenlazado en la siguiente aplicaciĆ³n de polĆ­ticas" + +#: ../../enterprise/godmode/policies/policy_queue.php:393 +msgid "Delete pending" +msgstr "EliminaciĆ³n pendiente" + +#: ../../enterprise/godmode/policies/policy_queue.php:399 +msgid "Delete pending agents" +msgstr "Eliminar agentes pendientes" + +#: ../../enterprise/godmode/policies/policy_queue.php:407 +#: ../../enterprise/godmode/policies/policy_queue.php:422 +#: ../../enterprise/godmode/policies/policy_queue.php:437 +#: ../../enterprise/godmode/policies/policy_queue.php:452 +#: ../../enterprise/godmode/policies/policy_queue.php:467 +#: ../../enterprise/godmode/policies/policy_queue.php:482 +#: ../../enterprise/godmode/policies/policy_queue.php:497 +#: ../../enterprise/godmode/policies/policy_queue.php:512 +msgid "Will be deleted in the next policy application" +msgstr "Se eliminarĆ” en la siguiente aplicaciĆ³n de polĆ­ticas" + +#: ../../enterprise/godmode/policies/policy_queue.php:414 +msgid "Delete pending groups" +msgstr "Eliminar grupos pendientes" + +#: ../../enterprise/godmode/policies/policy_queue.php:429 +msgid "Delete pending modules" +msgstr "Eliminar mĆ³dulos pendientes" + +#: ../../enterprise/godmode/policies/policy_queue.php:444 +msgid "Delete pending inventory modules" +msgstr "Eliminar mĆ³dulos de inventario pendientes" + +#: ../../enterprise/godmode/policies/policy_queue.php:459 +msgid "Delete pending alerts" +msgstr "Eliminar alertas pendientes" + +#: ../../enterprise/godmode/policies/policy_queue.php:474 +msgid "Delete pending external alerts" +msgstr "Eliminar alertas externas pendientes" + +#: ../../enterprise/godmode/policies/policy_queue.php:489 +msgid "Delete pending file collections" +msgstr "Eliminar colecciones de archivos pendientes" + +#: ../../enterprise/godmode/policies/policy_queue.php:504 +msgid "Delete pending plugins" +msgstr "Eliminar plugins pendientes" + +#: ../../enterprise/godmode/policies/policy_queue.php:518 +msgid "Advices" +msgstr "Consejos" + +#: ../../enterprise/godmode/policies/policy_queue.php:523 +msgid "Queue summary" +msgstr "Resumen de cola" + +#: ../../enterprise/godmode/policies/policy_queue.php:636 +msgid "Queue filter" +msgstr "Filtros de cola" + +#: ../../enterprise/godmode/policies/policy_queue.php:670 +#: ../../enterprise/godmode/policies/policy_linking.php:153 +#: ../../godmode/massive/massive_delete_agents.php:252 +#: ../../include/lib/Dashboard/Widget.php:594 ../../include/functions_events.php:4528 +msgid "Node" +msgstr "Nodo" + +#: ../../enterprise/godmode/policies/policy_queue.php:790 +msgid "Empty queue" +msgstr "Vaciar cola" + +#: ../../enterprise/godmode/policies/policy_queue.php:804 +msgid "This operation could take a long time" +msgstr "Esta operaciĆ³n podrĆ­a tardar bastante tiempo." + +#: ../../enterprise/godmode/policies/policy_queue.php:815 +msgid "Apply all queues" +msgstr "Aplicar todas las colas" + +#: ../../enterprise/godmode/policies/policy_queue.php:821 +msgid "Clear all items" +msgstr "Borrar todos los elementos" + +#: ../../enterprise/godmode/policies/policies.php:85 +msgid "Policy not found." +msgstr "No se ha encontrado la polĆ­tica." + +#: ../../enterprise/godmode/policies/policies.php:153 +msgid "Policy name already exists" +msgstr "El nombre de la polĆ­tica ya existe." + +#: ../../enterprise/godmode/policies/policies.php:224 +msgid "Policies Management" +msgstr "GestiĆ³n de polĆ­ticas" + +#: ../../enterprise/godmode/policies/policies.php:235 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:455 +#: ../../godmode/alerts/alert_actions.php:129 +#: ../../godmode/alerts/alert_commands.php:625 +#: ../../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:961 +msgid "Successfully copied" +msgstr "Copia realizada correctamente" + +#: ../../enterprise/godmode/policies/policies.php:236 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:456 +#: ../../godmode/alerts/alert_actions.php:130 +#: ../../godmode/alerts/alert_commands.php:626 +#: ../../godmode/reporting/reporting_builder.php:738 +#: ../../include/functions_planned_downtimes.php:958 +msgid "Could not be copied" +msgstr "No se ha podido copiar" + +#: ../../enterprise/godmode/policies/policies.php:243 +msgid "All policy agents added to delete queue" +msgstr "Todos los agentes de las polĆ­ticas aƱadidos a la cola de eliminaciĆ³n" + +#: ../../enterprise/godmode/policies/policies.php:244 +msgid "Policy agents cannot be added to the delete queue" +msgstr "Los agentes de las polĆ­ticas no se pudieron aƱadir a la cola de eliminaciĆ³n" + +#: ../../enterprise/godmode/policies/policies.php:330 +msgid "a" +msgstr "a" + +#: ../../enterprise/godmode/policies/policies.php:501 +#: ../../enterprise/godmode/policies/policy_linking.php:157 +#: ../../enterprise/include/functions_policies.php:3783 +msgid "Linking" +msgstr "Enlazando" + +#: ../../enterprise/godmode/policies/policies.php:514 +msgid "Agent Wizard" +msgstr "Asistente de agente" + +#: ../../enterprise/godmode/policies/policies.php:523 +#: ../../enterprise/godmode/policies/policy_external_alerts.php:52 +#: ../../enterprise/include/functions_policies.php:3771 +msgid "External alerts" +msgstr "Alertas externas" + +#: ../../enterprise/godmode/policies/policies.php:527 +#: ../../enterprise/godmode/policies/policy.php:60 +#: ../../enterprise/include/functions_policies.php:3813 +msgid "Queue" +msgstr "Cola" + +#: ../../enterprise/godmode/policies/policies.php:595 +msgid "There must be no agents to delete the policy." +msgstr "No debe haber agentes para borrar la polĆ­tica." + +#: ../../enterprise/godmode/policies/policies.php:601 +msgid "A policy with agents cannot be deleted. Purge it first" +msgstr "Una polĆ­tica con agentes no se puede eliminar. PĆŗrgala primero." + +#: ../../enterprise/godmode/policies/policies.php:611 +msgid "Deleting all policy agents" +msgstr "Eliminando todos los agentes de las polĆ­ticas" + +#: ../../enterprise/godmode/policies/policies.php:616 +msgid "All the policy agents will be deleted" +msgstr "Todos los agentes de las polĆ­ticas serĆ”n eliminados." + +#: ../../enterprise/godmode/policies/policies.php:625 +msgid "Delete all agents" +msgstr "Eliminar todos los agentes" + +#: ../../enterprise/godmode/policies/policy_linking.php:28 +msgid "Linking modules" +msgstr "MĆ³dulos enlazados" + +#: ../../enterprise/godmode/policies/policy_linking.php:99 +msgid "Error: Update linking modules to policy" +msgstr "Error al actualizar los mĆ³dulos enlazados a la polĆ­tica" + +#: ../../enterprise/godmode/policies/policy_linking.php:101 +msgid "Success: Update linking modules to policy" +msgstr "MĆ³dulos enlazados a la polĆ­tica correctamente" + +#: ../../enterprise/godmode/policies/policy_linking.php:127 +msgid "Free text for filter (*)" +msgstr "Texto libre para filtro (*)" + +#: ../../enterprise/godmode/policies/policy_linking.php:128 +msgid "Free text for filter" +msgstr "Texto libre para filtro" + +#: ../../enterprise/godmode/policies/policy_linking.php:138 +msgid "Cannot retrieve unlinked modules" +msgstr "No se han podido obtener mĆ³dulos no enlazados" + +#: ../../enterprise/godmode/policies/policy_linking.php:140 +msgid "There are no defined modules unlinked" +msgstr "No hay mĆ³dulos definidos desvinculados" + +#: ../../enterprise/godmode/policies/policy_linking.php:142 +msgid "List of modules unlinked" +msgstr "Lista de mĆ³dulos sin enlazar" + +#: ../../enterprise/godmode/policies/policy_external_alerts.php:87 +#: ../../godmode/alerts/alert_list.php:173 +msgid "No module specified" +msgstr "NingĆŗn mĆ³dulo especificado" + +#: ../../enterprise/godmode/policies/policy_external_alerts.php:123 +msgid "Created successfuly" +msgstr "Creado correctamente" + +#: ../../enterprise/godmode/policies/policy_external_alerts.php:127 +msgid "Duplicated alert" +msgstr "Alerta duplicada" + +#: ../../enterprise/godmode/policies/policy_external_alerts.php:372 +#: ../../godmode/alerts/alert_list.list.php:188 +msgid "Alert control filter" +msgstr "Filtro de control de alertas" + +#: ../../enterprise/godmode/policies/policy_external_alerts.php:383 +msgid "Modules in policy per agents" +msgstr "MĆ³dulos en polĆ­tica por agentes" + +#: ../../enterprise/godmode/policies/policy_external_alerts.php:566 +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:620 +msgid "Modules in policy agents" +msgstr "MĆ³dulos en agentes de polĆ­tica" + +#: ../../enterprise/godmode/policies/policy_external_alerts.php:648 +msgid "Alert Template" +msgstr "Plantilla de alerta" + +#: ../../enterprise/godmode/policies/policy_inventory_modules.php:110 +msgid "Module is not selected" +msgstr "No se ha seleccionado ningĆŗn mĆ³dulo" + +#: ../../enterprise/godmode/policies/policy_inventory_modules.php:296 +msgid "There are no defined inventory modules" +msgstr "No hay mĆ³dulos de inventario definidos" + +#: ../../enterprise/godmode/policies/policy_collections.php:99 +msgid "" +"Successfully added to delete the collection. Will be deleted in the next policy " +"application." +msgstr "" +"AƱadido correctamente a la colecciĆ³n. Se eliminarĆ” en la prĆ³xima aplicaciĆ³n de " +"polĆ­tica." + +#: ../../enterprise/godmode/policies/policy_collections.php:224 +#: ../../enterprise/godmode/policies/policy_collections.php:296 +#: ../../enterprise/operation/agentes/policy_view.php:217 +#: ../../enterprise/operation/agentes/policy_view.php:218 +#: ../../enterprise/operation/agentes/collection_view.php:128 +#: ../../enterprise/operation/agentes/collection_view.php:129 +msgid "Outdate" +msgstr "Obsoleto" + +#: ../../enterprise/godmode/policies/policy_collections.php:241 +msgid "Collections in policy" +msgstr "Colecciones en la polĆ­tica" + +#: ../../enterprise/godmode/policies/policy_collections.php:245 +msgid "Collections to add" +msgstr "Colecciones a aƱadir" + +#: ../../enterprise/godmode/policies/policy_collections.php:315 +msgid "No available collection to add" +msgstr "No hay colecciones a aƱadir disponibles" + +#: ../../enterprise/godmode/policies/policy_agents.php:102 +msgid "" +"Successfully added to delete pending agents. Will be deleted in the next policy " +"application." +msgstr "" +"AƱadido correctamente a los agentes pendientes de eliminaciĆ³n. SerĆ” eliminado en la " +"prĆ³xima aplicaciĆ³n de polĆ­ticas." + +#: ../../enterprise/godmode/policies/policy_agents.php:124 +msgid "" +"Successfully added to delete pending groups. Will be deleted in the next policy " +"application." +msgstr "" +"AƱadido correctamente para eliminar grupos pendientes. Se eliminarĆ” en la siguiente " +"aplicaciĆ³n de polĆ­tica." + +#: ../../enterprise/godmode/policies/policy_agents.php:148 +#: ../../enterprise/godmode/policies/policy_agents.php:193 +#: ../../enterprise/godmode/policies/policy_agents.php:261 +msgid "Policy with this id does not exist. " +msgstr "La polĆ­tica con este id no existe. " + +#: ../../enterprise/godmode/policies/policy_agents.php:177 +#: ../../enterprise/godmode/policies/policy_agents.php:310 +msgid "Successfully added to delete queue" +msgstr "Correctamente aƱadido a la lista de eliminaciĆ³n" + +#: ../../enterprise/godmode/policies/policy_agents.php:178 +#: ../../enterprise/godmode/policies/policy_agents.php:311 +msgid "Could not be added to delete queue" +msgstr "No se pudo aƱadir a la lista de eliminaciĆ³n." + +#: ../../enterprise/godmode/policies/policy_agents.php:250 +#, php-format +msgid "Successfully added %d" +msgstr "Se ha agregado correctamente %d" + +#: ../../enterprise/godmode/policies/policy_agents.php:281 +msgid "" +"Number of agents added to the policy concurrently is too large. This might cause the " +"operation to fail or lead to performance issues." +msgstr "" +"El nĆŗmero de agentes aƱadidos a la polĆ­tica simultĆ”neamente es demasiado alto. Esto " +"podrĆ­a causar fallos o problemas en el funcionamiento." + +#: ../../enterprise/godmode/policies/policy_agents.php:288 +msgid "Successfully added to policy" +msgstr "Agregado correctamente a la directiva" + +#: ../../enterprise/godmode/policies/policy_agents.php:289 +msgid "Could not be added to policy" +msgstr "No se pudo agregar a la directiva" + +#: ../../enterprise/godmode/policies/policy_agents.php:407 +msgid "Apply to" +msgstr "Aplicar a" + +#: ../../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/massive/massive_add_modules_policy.php:115 +#: ../../godmode/massive/massive_copy_modules.php:112 +#: ../../godmode/massive/massive_copy_modules.php:265 +#: ../../godmode/massive/massive_standby_alerts.php:200 +#: ../../godmode/massive/massive_delete_action_alerts.php:221 +#: ../../godmode/massive/massive_delete_modules.php:386 +#: ../../godmode/massive/massive_add_alerts.php:228 +#: ../../godmode/massive/massive_delete_agents.php:199 +#: ../../godmode/massive/massive_enable_disable_alerts.php:171 +#: ../../godmode/massive/massive_edit_agents.php:520 +#: ../../godmode/massive/massive_delete_alerts.php:311 +#: ../../godmode/massive/massive_add_action_alerts.php:209 +#: ../../godmode/massive/massive_edit_modules.php:370 +#: ../../include/functions_html.php:1258 ../../include/functions_html.php:1410 +#: ../../include/lib/Dashboard/Widgets/groups_status.php:232 +#: ../../include/lib/Dashboard/Widgets/events_list.php:447 +msgid "Group recursion" +msgstr "RecursiĆ³n de grupos" + +#: ../../enterprise/godmode/policies/policy_agents.php:499 +#: ../../enterprise/godmode/policies/policy_agents.php:513 +#: ../../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 +#: ../../enterprise/godmode/reporting/graph_template_wizard.php:217 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:749 +#: ../../enterprise/include/class/Omnishell.class.php:825 +#: ../../enterprise/include/class/Omnishell.class.php:904 +msgid "Filter agent" +msgstr "Filtrar agente" + +#: ../../enterprise/godmode/policies/policy_agents.php:538 +#: ../../enterprise/godmode/policies/policy_agents.php:670 +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/setup/setup_auth.php:230 +#: ../../enterprise/godmode/setup/setup_auth.php:509 +#: ../../enterprise/godmode/setup/setup_auth.php:1306 +#: ../../extensions/files_repo/files_repo_form.php:55 +#: ../../extensions/module_groups.php:311 +#: ../../godmode/reporting/visual_console_builder.wizard.php:362 +#: ../../mobile/include/functions_web.php:27 ../../mobile/operation/home.php:57 +#: ../../mobile/operation/groups.php:77 ../../include/functions_networkmap.php:1295 +#: ../../include/functions_maps.php:46 +#: ../../include/lib/Dashboard/Widgets/groups_status.php:220 +#: ../../include/lib/Dashboard/Widgets/system_group_status.php:295 +#: ../../include/lib/Dashboard/Widgets/events_list.php:431 +#: ../../include/lib/Dashboard/Widgets/top_n_events_by_module.php:301 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:328 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:337 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:359 +#: ../../include/lib/Dashboard/Widgets/tactical.php:331 +#: ../../include/lib/Dashboard/Widgets/top_n_events_by_group.php:301 +#: ../../operation/tree.php:90 ../../operation/agentes/pandora_networkmap.php:710 +msgid "Groups" +msgstr "Grupos" + +#: ../../enterprise/godmode/policies/policy_agents.php:572 +#: ../../enterprise/godmode/policies/policy_agents.php:1217 +msgid "Groups in Policy" +msgstr "Grupos en la polĆ­tica" + +#: ../../enterprise/godmode/policies/policy_agents.php:707 +msgid "Add agents to policy" +msgstr "AƱadir agentes a la polĆ­tica" + +#: ../../enterprise/godmode/policies/policy_agents.php:734 +msgid "Delete agents from policy" +msgstr "Eliminar agentes de la polĆ­tica" + +#: ../../enterprise/godmode/policies/policy_agents.php:831 +msgid "Applied" +msgstr "Aplicado" + +#: ../../enterprise/godmode/policies/policy_agents.php:832 +msgid "Not applied" +msgstr "No aplicado" + +#: ../../enterprise/godmode/policies/policy_agents.php:849 +#: ../../godmode/agentes/configurar_agente.php:604 +#: ../../godmode/agentes/configurar_agente.php:754 +#: ../../godmode/agentes/agent_manager.php:524 +#: ../../godmode/massive/massive_edit_agents.php:945 +#: ../../godmode/reporting/reporting_builder.item_editor.php:79 +#: ../../godmode/servers/servers.build_table.php:246 +msgid "Remote configuration" +msgstr "ConfiguraciĆ³n remota" + +#: ../../enterprise/godmode/policies/policy_agents.php:849 +#: ../../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/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:844 ../../mobile/operation/agents.php:406 +#: ../../include/ajax/alert_list.ajax.php:286 ../../include/ajax/alert_list.ajax.php:311 +#: ../../include/class/AuditLog.class.php:128 ../../include/functions_events.php:2355 +msgid "S." +msgstr "S." + +#: ../../enterprise/godmode/policies/policy_agents.php:853 +msgid "Unlinked modules" +msgstr "MĆ³dulos sin enlazar" + +#: ../../enterprise/godmode/policies/policy_agents.php:853 +msgid "U." +msgstr "U." + +#: ../../enterprise/godmode/policies/policy_agents.php:854 +#: ../../enterprise/godmode/policies/policy_agents.php:1369 +#: ../../enterprise/godmode/admin_access_logs.php:54 +#: ../../godmode/reporting/visual_console_builder.elements.php:118 +#: ../../mobile/operation/agents.php:407 ../../include/class/AuditLog.class.php:128 +msgid "A." +msgstr "A." + +#: ../../enterprise/godmode/policies/policy_agents.php:856 +#: ../../enterprise/godmode/policies/policy_agents.php:1371 +#: ../../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 +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 +msgid "D." +msgstr "D." + +#: ../../enterprise/godmode/policies/policy_agents.php:946 +#: ../../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 +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 +msgid "Process deletion" +msgstr "Borrado del proceso" + +#: ../../enterprise/godmode/policies/policy_agents.php:1102 +#: ../../enterprise/godmode/policies/policy_agents.php:1427 +#: ../../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 +msgid "Need apply" +msgstr "Necesita aplicarse" + +#: ../../enterprise/godmode/policies/policy_agents.php:1122 +#: ../../enterprise/godmode/policies/policy_agents.php:1447 +msgid "Applying policy" +msgstr "Aplicando polĆ­tica" + +#: ../../enterprise/godmode/policies/policy_agents.php:1135 +#: ../../enterprise/godmode/policies/policy_agents.php:1458 +msgid "Deleting from policy" +msgstr "Eliminando de la polĆ­tica" + +#: ../../enterprise/godmode/policies/policy_agents.php:1152 +#: ../../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:172 +#: ../../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 +msgid "No agents selected" +msgstr "No se seleccionĆ³ ningĆŗn agente" + +#: ../../enterprise/godmode/policies/policy_agents.php:1295 +msgid "Add groups to policy" +msgstr "AƱadir grupos a polĆ­tica" + +#: ../../enterprise/godmode/policies/policy_agents.php:1317 +msgid "Delete groups from policy" +msgstr "Eliminar grupos de polĆ­tica" + +#: ../../enterprise/godmode/policies/policy_agents.php:1370 +msgid "Total agents in policy group" +msgstr "Total de agentes en el grupo de polĆ­tica" + +#: ../../enterprise/godmode/policies/policy_agents.php:1370 +msgid "T." +msgstr "T." + +#: ../../enterprise/godmode/policies/policy.php:102 +#: ../../enterprise/include/functions_policies.php:3732 +#: ../../godmode/agentes/configurar_agente.php:527 +msgid "Agent wizard" +msgstr "Asistente de agente" + +#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor_form.php:24 +#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:44 +#: ../../enterprise/operation/snmpconsole/snmp_view.php:82 +#: ../../enterprise/operation/menu.php:170 +msgid "SNMP trap editor" +msgstr "Editor de traps SNMP" + +#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor_form.php:56 +#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:382 +#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:299 +#: ../../godmode/setup/snmp_wizard.php:42 ../../include/functions_snmp_browser.php:556 +msgid "OID" +msgstr "OID" + +#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor_form.php:64 +#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:383 +msgid "Custom OID" +msgstr "OID personalizado" + +#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor_form.php:74 +#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:385 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2192 +#: ../../enterprise/include/functions_reporting_csv.php:2387 +#: ../../enterprise/include/functions_reporting_csv.php:2401 +#: ../../godmode/setup/news.php:205 ../../godmode/setup/setup_visuals.php:1343 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2285 +#: ../../include/functions_reports.php:835 ../../include/functions_reporting.php:7008 +#: ../../include/lib/Dashboard/Widgets/post.php:214 +msgid "Text" +msgstr "Texto" + +#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:57 +#: ../../godmode/snmpconsole/snmp_trap_generator.php:51 +#: ../../godmode/snmpconsole/snmp_filters.php:59 +#: ../../operation/snmpconsole/snmp_browser.php:90 +#: ../../operation/snmpconsole/snmp_mib_uploader.php:60 +msgid "SMNP" +msgstr "SMNP" + +#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:225 +#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:237 +msgid "Successfully added trap custom values" +msgstr "AƱadidos correctamente a los valores personalizados del trap" + +#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:227 +#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:239 +msgid "Error adding trap custom values" +msgstr "Error al aƱadir los valores personalizados del trap" + +#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:242 +#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:317 +msgid "This custom OID is preexistent." +msgstr "El OID personalizado ya existe" + +#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:283 +msgid "No change in data" +msgstr "No hay cambios en los datos" + +#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:285 +#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:312 +msgid "Successfully updated trap custom values" +msgstr "Los valores personalizados del trap se han aƱadido correctamente." + +#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:287 +#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:314 +msgid "Error updating trap custom values" +msgstr "Error al actualizar los valores personalizados del trap" + +#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:330 +msgid "Successfully deleted trap custom values" +msgstr "Valores personalizados del trap eliminados correctamente" + +#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:336 +msgid "Error deleting trap custom values" +msgstr "Error al eliminar valores personalizados del trap" + +#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:342 +#, php-format +msgid "Uploaded %s/%s traps" +msgstr "Actualizados %s/%s traps" + +#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:346 +msgid "Fail uploaded file" +msgstr "Error al subir el archivo" + +#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:351 +msgid "" +"MIB files will be loaded and searched for SNMP trap definitions. They will not be " +"installed on the system! You can use the MIB uploader for that purpose." +msgstr "" +"Los archivos MIB se cargarĆ”n; se buscaron las definiciones de trap SNMP. Ā”No serĆ”n " +"instalados en el sistema! Puedes usar el cargador de MIB para instalarlos." + +#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:360 +msgid "Load MIB" +msgstr "Cargar MIB" + +#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:362 +msgid "Upload MIB" +msgstr "Actualizar MIB" + +#: ../../enterprise/godmode/menu.php:16 +msgid "Manage Satellite Server" +msgstr "Gestionar servidor SatĆ©lite" + +#: ../../enterprise/godmode/menu.php:25 +#: ../../enterprise/godmode/massive/massive_operations.php:99 +msgid "Policies operations" +msgstr "Operaciones de las polĆ­ticas" + +#: ../../enterprise/godmode/menu.php:36 +#: ../../enterprise/godmode/massive/massive_operations.php:75 +msgid "SNMP operations" +msgstr "Operaciones SNMP" + +#: ../../enterprise/godmode/menu.php:48 +#: ../../enterprise/godmode/massive/massive_operations.php:28 +msgid "Satellite operations" +msgstr "Operaciones SatĆ©lite" + +#: ../../enterprise/godmode/menu.php:60 +#: ../../enterprise/godmode/massive/massive_operations.php:53 +msgid "Services operations" +msgstr "Operaciones de servicios" + +#: ../../enterprise/godmode/menu.php:72 ../../enterprise/godmode/menu.php:278 +msgid "Duplicate config" +msgstr "Duplicar configuraciĆ³n" + +#: ../../enterprise/godmode/menu.php:81 ../../godmode/agentes/configurar_agente.php:707 +msgid "Network config manager" +msgstr "Administrador de configuraciĆ³n de red" + +#: ../../enterprise/godmode/menu.php:108 +#: ../../enterprise/include/functions_policies.php:3711 +msgid "Manage policies" +msgstr "Gestionar polĆ­ticas" + +#: ../../enterprise/godmode/menu.php:117 +msgid "Manage agent autoconfiguration" +msgstr "Administrar autoconfiguraciĆ³n" + +#: ../../enterprise/godmode/menu.php:126 +#: ../../enterprise/include/class/AgentRepository.class.php:623 +msgid "Software agents repository" +msgstr "Repositorio de agentes software" + +#: ../../enterprise/godmode/menu.php:148 ../../enterprise/include/functions_setup.php:67 +#: ../../enterprise/include/functions_setup.php:119 +#: ../../operation/agentes/datos_agente.php:180 +msgid "History database" +msgstr "Base de datos histĆ³rica" + +#: ../../enterprise/godmode/menu.php:159 +#: ../../enterprise/include/class/CSVImportAgents.class.php:114 +#: ../../godmode/wizards/HostDevices.class.php:159 +msgid "Import CSV" +msgstr "Importar CSV" + +#: ../../enterprise/godmode/menu.php:163 +#: ../../enterprise/include/class/DeploymentCenter.class.php:613 +#: ../../godmode/wizards/HostDevices.class.php:165 +#: ../../godmode/wizards/DiscoveryTaskList.class.php:823 +msgid "Agent deployment" +msgstr "Despliegue de agentes" + +#: ../../enterprise/godmode/menu.php:173 +#: ../../enterprise/include/class/MicrosoftSQLServer.app.php:406 +msgid "Microsoft SQL Server" +msgstr "Servidor Microsoft SQL" + +#: ../../enterprise/godmode/menu.php:174 +msgid "Mysql" +msgstr "Mysql" + +#: ../../enterprise/godmode/menu.php:175 ../../enterprise/godmode/setup/setup.php:108 +#: ../../enterprise/include/class/Oracle.app.php:411 +msgid "Oracle" +msgstr "Oracle" + +#: ../../enterprise/godmode/menu.php:176 +#: ../../enterprise/include/class/VMware.app.php:503 +msgid "VMware" +msgstr "VMware" + +#: ../../enterprise/godmode/menu.php:177 +#: ../../enterprise/include/class/SAPView.class.php:621 +#: ../../enterprise/include/class/SAPView.class.php:624 +#: ../../include/class/CredentialStore.class.php:948 +msgid "SAP" +msgstr "SAP" + +#: ../../enterprise/godmode/menu.php:178 ../../enterprise/include/class/DB2.app.php:404 +msgid "DB2" +msgstr "DB2" + +#: ../../enterprise/godmode/menu.php:179 +#: ../../enterprise/godmode/wizards/Applications.class.php:163 +#: ../../enterprise/godmode/wizards/Applications.class.php:171 +msgid "Applications" +msgstr "Aplicaciones" + +#: ../../enterprise/godmode/menu.php:190 +msgid "Amazon Web Services" +msgstr "Amazon Web Services" + +#: ../../enterprise/godmode/menu.php:191 +msgid "Microsoft Azure" +msgstr "Microsoft Azure" + +#: ../../enterprise/godmode/menu.php:192 +msgid "Google Compute Platform" +msgstr "Google Compute Platform" + +#: ../../enterprise/godmode/menu.php:193 +#: ../../enterprise/godmode/wizards/Cloud.class.php:186 +#: ../../enterprise/godmode/wizards/Cloud.class.php:195 +#: ../../enterprise/include/class/Azure.cloud.php:150 +#: ../../enterprise/include/class/Azure.cloud.php:194 +#: ../../enterprise/include/class/Aws.cloud.php:115 +#: ../../enterprise/include/class/Aws.cloud.php:162 +#: ../../enterprise/include/class/Google.cloud.php:144 +#: ../../enterprise/include/class/Google.cloud.php:188 +msgid "Cloud" +msgstr "Nube" + +#: ../../enterprise/godmode/menu.php:208 +msgid "New console task" +msgstr "Nueva tarea de consola" + +#: ../../enterprise/godmode/menu.php:218 +msgid "Enterprise ACL Setup" +msgstr "ConfiguraciĆ³n ACL Enterprise" + +#: ../../enterprise/godmode/menu.php:227 +msgid "Skins" +msgstr "Apariencia" + +#: ../../enterprise/godmode/menu.php:237 +msgid "Manage database HA" +msgstr "Gestionar la base de datos de alta disponibilidad" + +#: ../../enterprise/godmode/menu.php:247 +#: ../../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:269 +msgid "Log Collector" +msgstr "Colector de logs" + +#: ../../enterprise/godmode/menu.php:287 +msgid "Password policy" +msgstr "PolĆ­tica de contraseƱas" + +#: ../../enterprise/godmode/menu.php:295 ../../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:308 ../../general/first_task/omnishell.php:31 +#: ../../general/first_task/omnishell.php:34 +msgid "Omnishell" +msgstr "Omnishell" + +#: ../../enterprise/godmode/menu.php:322 ../../enterprise/tools/ipam/ipam.php:453 +#: ../../include/functions_reports.php:692 +msgid "IPAM" +msgstr "IPAM" + +#: ../../enterprise/godmode/menu.php:331 ../../godmode/setup/setup.php:190 +#: ../../godmode/setup/setup.php:289 +msgid "Module Library" +msgstr "Biblioteca de mĆ³dulos" + +#: ../../enterprise/godmode/menu.php:339 +#: ../../enterprise/godmode/alerts/alert_inventory.php:78 +#: ../../enterprise/godmode/alerts/alert_inventory.php:80 +msgid "Inventory alerts" +msgstr "Alertas de inventario" + +#: ../../enterprise/godmode/massive/massive_edit_tags_policy.php:92 +#: ../../enterprise/godmode/massive/massive_tags_edit_policy.php:87 +msgid "Successful update the tags" +msgstr "Etiquetas actualizadas correctamente" + +#: ../../enterprise/godmode/massive/massive_edit_tags_policy.php:93 +#: ../../enterprise/godmode/massive/massive_tags_edit_policy.php:88 +msgid "Unsuccessful update the tags" +msgstr "Error al actualizar las etiquetas" + +#: ../../enterprise/godmode/massive/massive_edit_tags_policy.php:143 +msgid "Tags unused" +msgstr "Etiquetas sin usar" + +#: ../../enterprise/godmode/massive/massive_edit_tags_policy.php:183 +msgid "Tags used" +msgstr "Etiquetas usadas" + +#: ../../enterprise/godmode/massive/massive_add_alerts_policy.php:87 +msgid "Success: create the alerts." +msgstr "Alertas creadas correctamente" + +#: ../../enterprise/godmode/massive/massive_add_alerts_policy.php:87 +msgid "Failed: create the alerts for this modules, please check." +msgstr "Error al crear las alertas para estos mĆ³dulos. Resuelve el problema." + +#: ../../enterprise/godmode/massive/massive_add_alerts_policy.php:128 +#: ../../enterprise/godmode/massive/massive_add_alerts_policy.php:129 +#: ../../enterprise/godmode/massive/massive_delete_alerts_policy.php:138 +#: ../../enterprise/godmode/massive/massive_delete_alerts_policy.php:139 +#: ../../include/functions_alerts.php:673 +msgid "Regular expression" +msgstr "ExpresiĆ³n regular" + +#: ../../enterprise/godmode/massive/massive_add_alerts_policy.php:131 +msgid "Modules in policy" +msgstr "MĆ³dulos en la polĆ­tica" + +#: ../../enterprise/godmode/massive/massive_operations.php:115 +msgid "Bulk alerts policy add" +msgstr "AƱadir alertas de polĆ­ticas de forma masiva" + +#: ../../enterprise/godmode/massive/massive_operations.php:116 +msgid "Bulk alerts policy delete" +msgstr "Eliminar alertas de polĆ­ticas de forma masiva" + +#: ../../enterprise/godmode/massive/massive_operations.php:117 +msgid "Bulk tags module policy edit" +msgstr "Editar las etiquetas de mĆ³dulos en polĆ­ticas de forma masiva" + +#: ../../enterprise/godmode/massive/massive_operations.php:118 +msgid "Bulk modules policy tags edit" +msgstr "Editar las etiquetas de mĆ³dulos en polĆ­ticas de forma masiva" + +#: ../../enterprise/godmode/massive/massive_operations.php:119 +msgid "Bulk modules policy add from agent" +msgstr "AƱadir mĆ³dulos de forma masiva a la polĆ­tica del agente" + +#: ../../enterprise/godmode/massive/massive_operations.php:120 +msgid "Bulk modules policy edit" +msgstr "Editas polĆ­tica masiva de mĆ³dulos" + +#: ../../enterprise/godmode/massive/massive_operations.php:131 +msgid "Bulk alert SNMP delete" +msgstr "Eliminar alertas SNMP de forma masiva" + +#: ../../enterprise/godmode/massive/massive_operations.php:132 +msgid "Bulk alert SNMP edit" +msgstr "Editar alertas SNMP de forma masiva" + +#: ../../enterprise/godmode/massive/massive_operations.php:143 +msgid "Bulk Satellite modules edit" +msgstr "Editar mĆ³dulos SatĆ©lite de forma masiva" + +#: ../../enterprise/godmode/massive/massive_operations.php:156 +msgid "Bulk services creation" +msgstr "CreaciĆ³n de servicios masivos" + +#: ../../enterprise/godmode/massive/massive_operations.php:157 +#: ../../enterprise/godmode/services/services.massive.elements.php:56 +msgid "Bulk service elements adition" +msgstr "AdiciĆ³n de elementos de servicio masivos" + +#: ../../enterprise/godmode/massive/massive_operations.php:158 +#: ../../enterprise/godmode/services/services.massive.elements.php:61 +msgid "Bulk service elements edition" +msgstr "EdiciĆ³n de elementos de servicio masivos" + +#: ../../enterprise/godmode/massive/massive_operations.php:159 +#: ../../enterprise/godmode/services/services.massive.elements.php:57 +msgid "Bulk service elements deletion" +msgstr "EliminaciĆ³n masiva de elementos de servicio" + +#: ../../enterprise/godmode/massive/massive_operations.php:160 +msgid "Bulk services deletion" +msgstr "Borrado de servicios en masa" + +#: ../../enterprise/godmode/massive/massive_add_modules_policy.php:75 +msgid "Successfully copied " +msgstr "Copiado correctamente " + +#: ../../enterprise/godmode/massive/massive_add_modules_policy.php:82 +msgid "Module " +msgstr "MĆ³dulo " + +#: ../../enterprise/godmode/massive/massive_add_modules_policy.php:82 +msgid " cannot be copied to " +msgstr " no se puede copiar a " + +#: ../../enterprise/godmode/massive/massive_add_modules_policy.php:82 +msgid " policy" +msgstr " polĆ­tica de" + +#: ../../enterprise/godmode/massive/massive_add_modules_policy.php:169 +#: ../../enterprise/godmode/services/services.elements.php:286 #: ../../enterprise/godmode/setup/setup_auth.php:69 #: ../../enterprise/godmode/setup/setup_auth.php:269 #: ../../enterprise/godmode/setup/setup_auth.php:319 @@ -10249,2136 +16607,5419 @@ msgstr "BĆŗsqueda por mĆ³dulo" #: ../../enterprise/godmode/setup/setup_auth.php:1175 #: ../../enterprise/godmode/setup/setup_auth.php:1345 #: ../../enterprise/godmode/setup/setup_acl.php:572 -#: ../../enterprise/godmode/services/services.elements.php:290 -#: ../../enterprise/godmode/massive/massive_add_modules_policy.php:169 -#: ../../godmode/reporting/create_container.php:573 -#: ../../godmode/events/event_edit_filter.php:431 -#: ../../godmode/massive/massive_delete_modules.php:407 -#: ../../godmode/massive/massive_delete_modules.php:521 -#: ../../godmode/massive/massive_copy_modules.php:178 -#: ../../godmode/massive/massive_add_action_alerts.php:216 -#: ../../godmode/massive/massive_edit_agents.php:643 -#: ../../godmode/massive/massive_edit_agents.php:1026 -#: ../../godmode/massive/massive_edit_modules.php:411 -#: ../../godmode/massive/massive_edit_modules.php:497 +#: ../../enterprise/include/class/DeploymentCenter.class.php:779 +#: ../../enterprise/include/class/AgentRepository.class.php:663 +#: ../../enterprise/include/class/Omnishell.class.php:361 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1734 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3909 +#: ../../enterprise/operation/services/services.list.php:249 +#: ../../enterprise/operation/services/services.list.php:279 +#: ../../enterprise/operation/services/services.table_services.php:171 +#: ../../enterprise/operation/services/services.table_services.php:201 +#: ../../godmode/agentes/planned_downtime.list.php:326 +#: ../../godmode/agentes/planned_downtime.editor.php:806 #: ../../godmode/agentes/agent_manager.php:331 #: ../../godmode/agentes/agent_manager.php:511 -#: ../../godmode/agentes/planned_downtime.editor.php:806 -#: ../../godmode/agentes/planned_downtime.list.php:326 +#: ../../godmode/massive/massive_copy_modules.php:178 +#: ../../godmode/massive/massive_delete_modules.php:407 +#: ../../godmode/massive/massive_delete_modules.php:521 +#: ../../godmode/massive/massive_edit_agents.php:643 +#: ../../godmode/massive/massive_edit_agents.php:1026 +#: ../../godmode/massive/massive_add_action_alerts.php:216 +#: ../../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:436 +#: ../../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:338 ../../include/functions_html.php:2290 +#: ../../include/functions_html.php:2291 ../../include/functions_html.php:2292 +#: ../../include/functions_html.php:2293 ../../include/functions_html.php:2294 +#: ../../include/functions_html.php:2296 ../../include/functions_html.php:2297 +#: ../../include/functions_html.php:2298 ../../include/functions_html.php:2299 +#: ../../include/functions_html.php:2300 +#: ../../include/lib/Dashboard/Widgets/events_list.php:340 +#: ../../operation/events/events.php:1829 ../../operation/events/events.php:2791 msgid "Any" msgstr "Cualquiera" -#: ../../operation/events/events.php:1297 -#: ../../operation/events/events_list.php:790 -#: ../../enterprise/include/functions_events.php:168 -#: ../../godmode/events/event_edit_filter.php:414 -msgid "User ack." -msgstr "ValidaciĆ³n del usuario" +#: ../../enterprise/godmode/massive/massive_add_modules_policy.php:190 +#: ../../godmode/massive/massive_copy_modules.php:213 +msgid "No modules for this agent" +msgstr "No existen mĆ³dulos para este agente" -#: ../../operation/events/events.php:1304 -#: ../../operation/events/events_list.php:840 -#: ../../godmode/events/event_edit_filter.php:602 -msgid "Filter alert events" -msgstr "Filtrar eventos de alertas" +#: ../../enterprise/godmode/massive/massive_add_modules_policy.php:223 +msgid "To policies" +msgstr "a polĆ­ticas" -#: ../../operation/events/events.php:1305 -#: ../../operation/events/events_list.php:841 -#: ../../godmode/events/event_edit_filter.php:603 -msgid "Only alert events" -msgstr "Solo eventos de alertas" +#: ../../enterprise/godmode/massive/massive_add_modules_policy.php:359 +#: ../../godmode/massive/massive_add_alerts.php:324 +#: ../../godmode/massive/massive_edit_agents.php:1199 +#: ../../godmode/massive/massive_delete_alerts.php:388 +msgid "" +"Unsucessful sending the data, please contact with your administrator or make with " +"less elements." +msgstr "" +"Error al enviar los datos. Por favor, contacta con el administrador o intĆ©ntalo con " +"menos elementos." -#: ../../operation/events/events.php:1320 -#: ../../operation/events/events_list.php:837 -#: ../../enterprise/include/functions_events.php:208 -#: ../../godmode/events/event_edit_filter.php:598 -msgid "Alert events" -msgstr "Eventos de la alerta" +#: ../../enterprise/godmode/massive/massive_add_modules_policy.php:366 +#: ../../godmode/massive/massive_copy_modules.php:551 +#: ../../include/functions_agents.php:840 +msgid "No source agent to copy" +msgstr "No hay agente de origen del que copiar" -#: ../../operation/events/events.php:1342 -#: ../../operation/events/events_list.php:1013 -msgid "Id source event" -msgstr "Evento de origen de ID" +#: ../../enterprise/godmode/massive/massive_add_modules_policy.php:371 +#: ../../godmode/massive/massive_copy_modules.php:564 +#: ../../include/functions_agents.php:871 +msgid "No modules have been selected" +msgstr "No se ha seleccionado ningĆŗn mĆ³dulo" -#: ../../operation/events/events.php:1400 -msgid "From (date:time)" -msgstr "Desde (fecha:hora)" +#: ../../enterprise/godmode/massive/massive_add_modules_policy.php:376 +msgid "No destiny policies to copy" +msgstr "No hay polĆ­ticas de destino que copiar" -#: ../../operation/events/events.php:1458 -msgid "To (date:time)" -msgstr "Hasta (fecha:hora)" +#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:211 +#: ../../godmode/massive/massive_delete_modules.php:372 +#: ../../godmode/massive/massive_edit_modules.php:356 +msgid "Agent group" +msgstr "Grupo de agentes" -#: ../../operation/events/events.php:1469 -msgid "Filter custom data by field name" -msgstr "Filtrar datos personalizados por nombre de campo" +#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:242 +msgid "Filter module" +msgstr "Filtro de mĆ³dulo" -#: ../../operation/events/events.php:1470 -msgid "Filter custom data by field value" -msgstr "Filtrar datos personalizados por valor de campo" +#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:261 +#: ../../godmode/massive/massive_delete_action_alerts.php:241 +#: ../../godmode/massive/massive_delete_modules.php:551 +#: ../../godmode/massive/massive_add_alerts.php:260 +#: ../../godmode/massive/massive_delete_alerts.php:341 +#: ../../godmode/massive/massive_add_action_alerts.php:220 +#: ../../godmode/massive/massive_edit_modules.php:524 +msgid "When select agents" +msgstr "Al seleccionar agentes" -#: ../../operation/events/events.php:1485 -msgid "Custom data filter" -msgstr "Filtro de datos personalizado" +#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:265 +#: ../../extensions/agents_modules.php:436 ../../extensions/agents_modules.php:439 +#: ../../godmode/agentes/planned_downtime.editor.php:817 +#: ../../godmode/massive/massive_delete_action_alerts.php:245 +#: ../../godmode/massive/massive_delete_modules.php:555 +#: ../../godmode/massive/massive_add_alerts.php:264 +#: ../../godmode/massive/massive_delete_alerts.php:345 +#: ../../godmode/massive/massive_add_action_alerts.php:224 +#: ../../godmode/massive/massive_edit_modules.php:528 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1876 +#: ../../include/functions_html.php:1669 ../../include/functions_html.php:1688 +#: ../../include/functions_html.php:5497 +msgid "Show common modules" +msgstr "Mostrar mĆ³dulos comunes" -#: ../../operation/events/events.php:1507 -msgid "Custom data search" -msgstr "BĆŗsqueda de datos personalizada" +#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:266 +#: ../../extensions/agents_modules.php:437 +#: ../../godmode/agentes/planned_downtime.editor.php:818 +#: ../../godmode/massive/massive_delete_action_alerts.php:246 +#: ../../godmode/massive/massive_delete_modules.php:556 +#: ../../godmode/massive/massive_add_alerts.php:265 +#: ../../godmode/massive/massive_delete_alerts.php:346 +#: ../../godmode/massive/massive_add_action_alerts.php:225 +#: ../../godmode/massive/massive_edit_modules.php:529 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1877 +#: ../../include/functions_html.php:1670 ../../include/functions_html.php:5498 +msgid "Show all modules" +msgstr "Mostrar todos los mĆ³dulos" -#: ../../operation/events/events.php:1516 ../../operation/events/events.php:1519 -#: ../../operation/events/events_list.php:892 -#: ../../operation/events/events_list.php:895 -#: ../../enterprise/include/functions_events.php:251 -#: ../../godmode/events/event_edit_filter.php:493 -msgid "Events with following tags" -msgstr "Eventos con las siguientes etiquetas" +#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:423 +msgid "Updated modules on database" +msgstr "MĆ³dulos actualizados en la base de datos" -#: ../../operation/events/events.php:1517 ../../operation/events/events.php:1520 -#: ../../operation/events/events_list.php:893 -#: ../../operation/events/events_list.php:896 -#: ../../enterprise/include/functions_events.php:273 -#: ../../godmode/events/event_edit_filter.php:546 -msgid "Events without following tags" -msgstr "Eventos sin las siguientes etiquetas" +#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:425 +msgid "Agent configuration files updated" +msgstr "Archivo de configuraciĆ³n del agente actualizado correctamente" -#: ../../operation/events/events.php:1532 -#: ../../operation/events/events_list.php:1030 -#: ../../operation/agentes/status_monitor.php:848 -#: ../../include/functions_visual_map_editor.php:895 -#: ../../enterprise/meta/advanced/metasetup.consoles.php:613 -#: ../../enterprise/meta/advanced/metasetup.consoles.php:699 -#: ../../enterprise/meta/advanced/metasetup.consoles.php:704 -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:141 -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:230 -#: ../../enterprise/godmode/policies/policy_modules.php:412 -#: ../../enterprise/godmode/policies/policy_external_alerts.php:598 -#: ../../extensions/quick_shell.php:521 -#: ../../godmode/massive/massive_add_action_alerts.php:250 -#: ../../godmode/massive/massive_edit_agents.php:1027 -#: ../../godmode/agentes/agent_manager.php:787 -#: ../../godmode/agentes/agent_manager.php:921 -#: ../../godmode/agentes/module_manager_editor.php:746 -msgid "Advanced options" -msgstr "Opciones avanzadas" +#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:691 +msgid "No changes have been made." +msgstr "No ha habido cambios." -#: ../../operation/events/events.php:1657 -msgid "Current filter" -msgstr "Filtro actual" +#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:692 +#: ../../enterprise/tools/ipam/ipam.php:300 ../../enterprise/tools/ipam/ipam.php:361 +#: ../../godmode/massive/massive_operations.php:390 +#: ../../godmode/massive/massive_edit_plugins.php:921 +msgid "Massive operations" +msgstr "Operaciones masivas" -#: ../../operation/events/events.php:1662 -msgid "Not set." -msgstr "No establecida" +#: ../../enterprise/godmode/massive/massive_delete_service_elements.php:67 +#: ../../enterprise/godmode/massive/massive_add_service_elements.php:71 +#: ../../enterprise/godmode/massive/massive_edit_service_elements.php:65 +msgid "You must select a service" +msgstr "Debe seleccionar un servicio" -#: ../../operation/events/events.php:1675 -msgid "Any status." -msgstr "Cualquier estado" +#: ../../enterprise/godmode/massive/massive_delete_service_elements.php:90 +msgid "Failed to process deleting services elements: " +msgstr "Error al procesar la eliminaciĆ³n de elementos de servicios: " -#: ../../operation/events/events.php:1679 -msgid "New events." -msgstr "Nuevos eventos" - -#: ../../operation/events/events.php:1683 -msgid "Validated." -msgstr "Validado." - -#: ../../operation/events/events.php:1687 -msgid "In proccess." -msgstr "In proceso." - -#: ../../operation/events/events.php:1691 -msgid "Not validated." -msgstr "No validado." - -#: ../../operation/events/events.php:1703 -msgid "Any time." -msgstr "Cualquier hora." - -#: ../../operation/events/events.php:1705 ../../operation/events/events.php:2634 -msgid "Last hour." -msgstr "ƚltima hora." - -#: ../../operation/events/events.php:1707 +#: ../../enterprise/godmode/massive/massive_delete_service_elements.php:112 +#: ../../enterprise/godmode/massive/massive_add_service_elements.php:251 +#: ../../enterprise/godmode/massive/massive_edit_service_elements.php:153 #, php-format -msgid "Last %d hours." -msgstr "ƚltimas %d horas." +msgid "%d modules" +msgstr "%d mĆ³dulos" -#: ../../operation/events/events.php:1715 -msgid "Duplicated" -msgstr "Duplicado" +#: ../../enterprise/godmode/massive/massive_delete_service_elements.php:120 +#: ../../enterprise/godmode/massive/massive_add_service_elements.php:259 +#: ../../enterprise/godmode/massive/massive_edit_service_elements.php:161 +#, php-format +msgid "%d agents" +msgstr "%d agentes" -#: ../../operation/events/events.php:1718 -msgid "All events." -msgstr "Todos los eventos." +#: ../../enterprise/godmode/massive/massive_delete_service_elements.php:128 +#: ../../enterprise/godmode/massive/massive_add_service_elements.php:267 +#: ../../enterprise/godmode/massive/massive_edit_service_elements.php:169 +#, php-format +msgid "%d services" +msgstr "%d servicios" -#: ../../operation/events/events.php:1722 -msgid "Group agents." -msgstr "Agentes de grupo." +#: ../../enterprise/godmode/massive/massive_delete_service_elements.php:131 +msgid "removed" +msgstr "borrado" -#: ../../operation/events/events.php:1812 -msgid "In progress selected" -msgstr "Seleccionado en proceso" +#: ../../enterprise/godmode/massive/massive_delete_service_elements.php:135 +#: ../../enterprise/godmode/massive/massive_add_service_elements.php:274 +#: ../../enterprise/godmode/massive/massive_edit_service_elements.php:176 +msgid "No changes made" +msgstr "No se realizaron cambios" -#: ../../operation/events/events.php:1813 -msgid "Validate selected" -msgstr "Validar selecciĆ³n" +#: ../../enterprise/godmode/massive/massive_delete_service_elements.php:211 +#: ../../enterprise/godmode/massive/massive_add_service_elements.php:564 +#: ../../enterprise/godmode/massive/massive_create_services.php:1205 +#: ../../enterprise/godmode/massive/massive_edit_service_elements.php:320 +msgid "Selected services" +msgstr "Servicios seleccionados" -#: ../../operation/events/events.php:1817 -#: ../../include/class/ModuleTemplates.class.php:970 -#: ../../enterprise/operation/services/services.list.php:728 -#: ../../enterprise/include/class/Omnishell.class.php:520 -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:306 -#: ../../godmode/snmpconsole/snmp_alert.php:1506 -#: ../../godmode/agentes/agent_manager.php:313 -msgid "Delete selected" -msgstr "Borrar seleccionado(s)" +#: ../../enterprise/godmode/massive/massive_delete_service_elements.php:226 +#: ../../enterprise/godmode/massive/massive_add_service_elements.php:579 +#: ../../enterprise/godmode/massive/massive_create_services.php:1220 +#: ../../enterprise/godmode/massive/massive_edit_service_elements.php:335 +#: ../../enterprise/include/class/Omnishell.class.php:915 +msgid "Selected agents" +msgstr "Agentes seleccionados" -#: ../../operation/events/events.php:1893 ../../include/ajax/events.php:1998 -#: ../../include/class/ExternalTools.class.php:354 -#: ../../include/lib/Dashboard/Widgets/events_list.php:788 -#: ../../include/functions_events.php:3862 -#: ../../enterprise/meta/advanced/cron_main.php:444 -#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:566 -#: ../../godmode/events/event_responses.editor.php:146 -msgid "Parameters" -msgstr "ParĆ”metros" +#: ../../enterprise/godmode/massive/massive_delete_service_elements.php:241 +#: ../../enterprise/godmode/massive/massive_add_service_elements.php:594 +#: ../../enterprise/godmode/massive/massive_create_services.php:1235 +#: ../../enterprise/godmode/massive/massive_edit_service_elements.php:350 +#: ../../enterprise/include/class/SAP.app.php:845 +msgid "Selected modules" +msgstr "MĆ³dulos seleccionados" -#: ../../operation/events/events.php:1930 ../../include/functions_events.php:236 -#: ../../enterprise/include/functions_reporting_csv.php:1934 -#: ../../enterprise/include/functions_reporting.php:2316 -#: ../../godmode/events/custom_events.php:96 -msgid "Agent ID" -msgstr "ID de agente" +#: ../../enterprise/godmode/massive/massive_delete_service_elements.php:264 +msgid "Remove selected" +msgstr "Eliminar lo seleccionado" -#: ../../operation/events/events.php:1954 -msgid "has at least" -msgstr "tiene al menos" +#: ../../enterprise/godmode/massive/massive_delete_alerts_snmp.php:29 +#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:30 +#: ../../godmode/snmpconsole/snmp_alert.php:41 +#: ../../operation/snmpconsole/snmp_view.php:631 +#: ../../operation/snmpconsole/snmp_view.php:1115 +#: ../../operation/snmpconsole/snmp_view.php:1129 +msgid "Cold start (0)" +msgstr "Inicio cero (0)" -#: ../../operation/events/events.php:1956 -msgid "events" -msgstr "eventos" +#: ../../enterprise/godmode/massive/massive_delete_alerts_snmp.php:30 +#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:31 +#: ../../godmode/snmpconsole/snmp_alert.php:42 +#: ../../operation/snmpconsole/snmp_view.php:632 +#: ../../operation/snmpconsole/snmp_view.php:1116 +#: ../../operation/snmpconsole/snmp_view.php:1133 +msgid "Warm start (1)" +msgstr "Comienzo de inicio (1)" -#: ../../operation/events/events.php:2040 ../../include/functions_events.php:159 -#: ../../include/functions_ui.php:3819 -msgid "MAINTENANCE" -msgstr "MANTENIMIENTO" +#: ../../enterprise/godmode/massive/massive_delete_alerts_snmp.php:31 +#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:32 +#: ../../godmode/snmpconsole/snmp_alert.php:43 +#: ../../operation/snmpconsole/snmp_view.php:633 +#: ../../operation/snmpconsole/snmp_view.php:1117 +#: ../../operation/snmpconsole/snmp_view.php:1137 +msgid "Link down (2)" +msgstr "Enlace interrumpido (2)" -#: ../../operation/events/events.php:2045 ../../include/functions_events.php:162 -#: ../../include/functions_ui.php:3824 -msgid "INFORMATIONAL" -msgstr "INFORMATIVO" +#: ../../enterprise/godmode/massive/massive_delete_alerts_snmp.php:32 +#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:33 +#: ../../godmode/snmpconsole/snmp_alert.php:44 +#: ../../operation/snmpconsole/snmp_view.php:634 +#: ../../operation/snmpconsole/snmp_view.php:1118 +#: ../../operation/snmpconsole/snmp_view.php:1141 +msgid "Link up (3)" +msgstr "Enlace activo (3)" -#: ../../operation/events/events.php:2050 ../../include/functions_events.php:165 -#: ../../include/functions_ui.php:3849 -msgid "MAJOR" -msgstr "MAYOR" +#: ../../enterprise/godmode/massive/massive_delete_alerts_snmp.php:33 +#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:34 +#: ../../godmode/snmpconsole/snmp_alert.php:45 +#: ../../operation/snmpconsole/snmp_view.php:635 +#: ../../operation/snmpconsole/snmp_view.php:1119 +#: ../../operation/snmpconsole/snmp_view.php:1145 +msgid "Authentication failure (4)" +msgstr "Fallo de autentificaciĆ³n (4)" -#: ../../operation/events/events.php:2055 ../../include/functions_events.php:168 -#: ../../include/functions_ui.php:3844 -msgid "MINOR" -msgstr "MENOR" +#: ../../enterprise/godmode/massive/massive_delete_alerts_snmp.php:34 +#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:35 +#: ../../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:1597 ../../extensions/api_checker.php:176 +#: ../../godmode/groups/configure_group.php:250 +#: ../../godmode/users/configure_user.php:1097 +#: ../../godmode/snmpconsole/snmp_alert.php:46 ../../include/functions_graph.php:3065 +#: ../../include/functions_graph.php:3110 ../../include/functions_graph.php:3151 +#: ../../include/functions_graph.php:3193 ../../include/functions_graph.php:3270 +#: ../../include/functions_graph.php:3414 ../../include/functions_graph.php:3522 +#: ../../include/functions_graph.php:3587 ../../include/functions_graph.php:3754 +#: ../../include/functions_graph.php:3766 ../../include/functions_graph.php:3767 +#: ../../include/functions_graph.php:3770 ../../include/functions_graph.php:3775 +#: ../../include/functions_graph.php:3776 ../../include/functions_graph.php:3779 +#: ../../include/functions_graph.php:4778 ../../include/functions_reporting.php:5031 +#: ../../include/functions_reporting.php:5043 ../../include/functions_reporting.php:5044 +#: ../../include/functions_reporting.php:5047 ../../include/functions_reporting.php:5052 +#: ../../include/functions_reporting.php:5053 ../../include/functions_reporting.php:5056 +#: ../../operation/users/user_edit.php:362 +#: ../../operation/snmpconsole/snmp_statistics.php:218 +#: ../../operation/snmpconsole/snmp_statistics.php:275 +#: ../../operation/snmpconsole/snmp_view.php:636 +#: ../../operation/snmpconsole/snmp_view.php:1120 +#: ../../operation/snmpconsole/snmp_view.php:1149 +#: ../../operation/gis_maps/render_view.php:167 +msgid "Other" +msgstr "Otros" -#: ../../operation/events/events.php:2106 ../../operation/events/events.php:2171 -#: ../../include/functions_events.php:67 ../../include/functions_events.php:93 -#: ../../include/functions_ui.php:3741 -msgid "ALERT" -msgstr "ALERTA" +#: ../../enterprise/godmode/massive/massive_delete_alerts_snmp.php:159 +#: ../../godmode/snmpconsole/snmp_alert.php:724 +#, php-format +msgid "Successfully deleted alerts (%s / %s)" +msgstr "Alertas eliminadas correctamente (%s / %s)" -#: ../../operation/events/events.php:2115 ../../include/functions_events.php:100 -#: ../../include/functions_events.php:2909 ../../include/functions_graph.php:3455 -#: ../../include/functions_ui.php:3750 -msgid "SYSTEM" -msgstr "SISTEMA" +#: ../../enterprise/godmode/massive/massive_delete_alerts_snmp.php:167 +#: ../../godmode/snmpconsole/snmp_alert.php:728 +#, php-format +msgid "Unsuccessfully deleted alerts (%s / %s)" +msgstr "Error al eliminar las alertas (%s / %s)" -#: ../../operation/events/events.php:2200 -msgid "Validate events" -msgstr "Validar eventos" +#: ../../enterprise/godmode/massive/massive_delete_alerts_snmp.php:175 +#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:233 +msgid "You must select a SNMP alert" +msgstr "Seleccione una alerta SNMP" -#: ../../operation/events/events.php:2224 -msgid "Delete events" -msgstr "Eliminar eventos" - -#: ../../operation/events/events.php:2307 -#: ../../include/lib/Dashboard/Widgets/top_n_events_by_group.php:433 -#: ../../include/lib/Dashboard/Widgets/top_n_events_by_module.php:437 -#: ../../include/functions_events.php:2692 -#: ../../include/functions_events.php:3280 ../../include/functions_graph.php:2864 -#: ../../include/functions_graph.php:3630 ../../include/functions_graph.php:3632 -#: ../../include/functions_reporting.php:10741 ../../include/functions.php:1235 -#: ../../include/functions_reporting_html.php:1128 -#: ../../include/functions_reporting_html.php:2450 -#: ../../enterprise/meta/advanced/metasetup.setup.php:144 -#: ../../mobile/operation/events.php:127 -#: ../../godmode/setup/setup_general.php:125 -msgid "System" -msgstr "Sistema" - -#: ../../operation/events/events.php:2636 -msgid "hours." -msgstr "horas." - -#: ../../operation/events/events_list.php:360 -#: ../../operation/events/events_list.php:1099 -msgid "No filter loaded" -msgstr "No se ha cargado el filtro" - -#: ../../operation/events/events_list.php:368 -#: ../../operation/events/events_list.php:1099 -msgid "Filter loaded" -msgstr "Filtro cargado" - -#: ../../operation/events/events_list.php:418 ../../include/ajax/events.php:678 -msgid "New filter" -msgstr "Nuevo filtro" - -#: ../../operation/events/events_list.php:426 -#: ../../operation/events/events_list.php:479 -#: ../../include/ajax/custom_fields.php:707 ../../include/ajax/events.php:686 -#: ../../include/ajax/events.php:746 -#: ../../godmode/snmpconsole/snmp_filters.php:35 -#: ../../godmode/netflow/nf_edit_form.php:188 -msgid "Update filter" -msgstr "Actualizar filtro" - -#: ../../operation/events/events_list.php:433 -#: ../../include/ajax/custom_fields.php:571 -#: ../../include/ajax/custom_fields.php:618 -#: ../../include/ajax/custom_fields.php:662 ../../include/ajax/events.php:693 -#: ../../godmode/events/event_edit_filter.php:261 -msgid "Filter name" -msgstr "Nombre del filtro" - -#: ../../operation/events/events_list.php:436 ../../include/ajax/events.php:696 -msgid "Save in Group" -msgstr "Guardar en el grupo" - -#: ../../operation/events/events_list.php:438 ../../include/ajax/events.php:698 -#: ../../include/functions_snmp_browser.php:1478 -#: ../../include/functions_html.php:1234 ../../include/functions_html.php:1387 -#: ../../enterprise/views/ncm/snippets/list.php:94 -#: ../../enterprise/views/ncm/firmwares/list.php:100 -#: ../../enterprise/views/ncm/devices/list.php:147 -#: ../../enterprise/views/ncm/templates/list.php:100 -#: ../../enterprise/views/cluster/list.php:87 -#: ../../enterprise/include/class/Omnishell.class.php:812 -#: ../../enterprise/include/class/Omnishell.class.php:891 -#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:209 -#: ../../enterprise/godmode/reporting/graph_template_wizard.php:207 -#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:335 -#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:358 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:211 -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:98 -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:723 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:115 -#: ../../enterprise/godmode/policies/policy_agents.php:436 -#: ../../enterprise/godmode/policies/policy_agents.php:468 -msgid "Filter group" -msgstr "Filtrar grupo" - -#: ../../operation/events/events_list.php:465 ../../include/ajax/events.php:732 -msgid "Overwrite filter" -msgstr "Sobrescribir filtro" - -#: ../../operation/events/events_list.php:871 -#: ../../enterprise/include/functions_events.php:178 -#: ../../godmode/events/event_edit_filter.php:449 -msgid "Date from" -msgstr "Fecha desde" - -#: ../../operation/events/events_list.php:875 -#: ../../enterprise/include/functions_events.php:188 -#: ../../godmode/events/event_edit_filter.php:452 -msgid "Date to" -msgstr "Fecha hasta" - -#: ../../operation/events/events_list.php:881 -#: ../../operation/agentes/datos_agente.php:198 ../../include/ajax/module.php:250 -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:778 -msgid "Timestamp from:" -msgstr "Marca temporal desde:" - -#: ../../operation/events/events_list.php:884 -#: ../../operation/agentes/datos_agente.php:204 ../../include/ajax/module.php:270 -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:796 -msgid "Timestamp to:" -msgstr "Marca temporal hasta:" - -#: ../../operation/events/events_list.php:1105 -#: ../../operation/events/events_list.php:1107 -msgid "Event control filter" -msgstr "Filtro de control de eventos" - -#: ../../operation/events/events_list.php:1115 -msgid "Error creating filter." -msgstr "Error al crear el filtro" - -#: ../../operation/events/events_list.php:1119 -msgid "Error creating filter is duplicated." -msgstr "Error al crear el filtro ya que estĆ” duplicado" - -#: ../../operation/events/events_list.php:1123 -msgid "Filter created." -msgstr "Filtro creado" - -#: ../../operation/events/events_list.php:1128 -msgid "Filter updated." -msgstr "Filtro actualizado" - -#: ../../operation/events/events_list.php:1132 -msgid "Error updating filter." -msgstr "Error al actualizar el filtro" - -#: ../../operation/events/events_list.php:1538 ../../include/ajax/events.php:803 -msgid "Filter name cannot be left blank" -msgstr "El nombre del filtro no se puede dejar en blanco." - -#: ../../operation/events/events_list.php:1614 -#: ../../operation/events/events_list.php:1707 -#: ../../include/ajax/graph.ajax.php:145 ../../include/ajax/events.php:946 -#: ../../godmode/setup/setup_general.php:574 -#: ../../godmode/gis_maps/configure_gis_map.php:575 -#: ../../godmode/reporting/create_container.php:294 -#: ../../godmode/reporting/create_container.php:310 -msgid "none" -msgstr "ninguno" - -#: ../../operation/netflow/nf_live_view.php:131 -#: ../../operation/netflow/nf_live_view.php:153 -#: ../../operation/netflow/nf_live_view.php:159 -msgid "Netflow live view" -msgstr "Netflow en tiempo real" - -#: ../../operation/netflow/nf_live_view.php:141 -#: ../../enterprise/operation/log/log_viewer.php:458 -#: ../../enterprise/godmode/modules/manage_inventory_modules.php:72 -#: ../../enterprise/godmode/modules/manage_inventory_modules_form.php:48 -#: ../../godmode/netflow/nf_edit.php:47 -msgid "Not supported in Windows systems" -msgstr "No compatible con sistemas Windows" - -#: ../../operation/netflow/nf_live_view.php:149 -#: ../../operation/agentes/ver_agente.php:1377 -#: ../../enterprise/include/class/CommandCenter.class.php:142 -#: ../../enterprise/meta/general/logon_ok.php:16 -#: ../../enterprise/meta/monitoring/group_view.php:51 -#: ../../enterprise/meta/monitoring/custom_fields_view.php:50 -#: ../../enterprise/meta/monitoring/tactical.php:36 -#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:55 -#: ../../enterprise/meta/advanced/agents_setup.php:60 -#: ../../enterprise/meta/advanced/policymanager.php:54 -#: ../../enterprise/meta/index.php:955 ../../enterprise/meta/agentsearch.php:48 -#: ../../enterprise/extensions/vmware/vmware_view.php:1373 -#: ../../godmode/netflow/nf_edit.php:53 ../../godmode/netflow/nf_edit_form.php:69 -#: ../../godmode/netflow/nf_item_list.php:49 -msgid "Main" -msgstr "Principal" - -#: ../../operation/netflow/nf_live_view.php:170 -msgid "Error creating filter" -msgstr "Error al crear filtro" - -#: ../../operation/netflow/nf_live_view.php:172 -msgid "Filter created successfully" -msgstr "Filtro creado correctamente" - -#: ../../operation/netflow/nf_live_view.php:191 -msgid "Filter updated successfully" -msgstr "Filtro actualizado correctamente" - -#: ../../operation/netflow/nf_live_view.php:192 -msgid "Error updating filter" -msgstr "Error al actualizar el filtro" - -#: ../../operation/netflow/nf_live_view.php:216 -msgid "Draw live filter" -msgstr "Extraer filtro en directo" - -#: ../../operation/netflow/nf_live_view.php:250 -msgid "Connection" -msgstr "ConexiĆ³n" - -#: ../../operation/netflow/nf_live_view.php:303 -#: ../../operation/incidents/integriaims_export_csv.php:84 -#: ../../operation/incidents/configure_integriaims_incident.php:325 -#: ../../operation/incidents/list_integriaims_incidents.php:359 -#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:323 -msgid "Resolution" -msgstr "ResoluciĆ³n" - -#: ../../operation/netflow/nf_live_view.php:303 -msgid "The interval will be divided in chunks the length of the resolution." -msgstr "El intervalo dividirĆ” en partes la extensiĆ³n del resultado" - -#: ../../operation/netflow/nf_live_view.php:330 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2389 -#: ../../godmode/netflow/nf_item_list.php:176 -msgid "Max. values" -msgstr "Valores mĆ”ximos" - -#: ../../operation/netflow/nf_live_view.php:344 -#: ../../godmode/netflow/nf_edit_form.php:253 -msgid "Aggregate by" -msgstr "Agregado por" - -#: ../../operation/netflow/nf_live_view.php:347 -#: ../../godmode/netflow/nf_edit_form.php:255 -msgid "Src Ip Address" -msgstr "DirecciĆ³n IP origen" - -#: ../../operation/netflow/nf_live_view.php:348 -#: ../../godmode/netflow/nf_edit_form.php:256 -msgid "Dst Ip Address" -msgstr "DirecciĆ³n IP destino" - -#: ../../operation/netflow/nf_live_view.php:349 -#: ../../operation/netflow/nf_live_view.php:441 -#: ../../godmode/netflow/nf_edit_form.php:248 -#: ../../godmode/netflow/nf_edit_form.php:257 -msgid "Src Port" -msgstr "Puerto origen" - -#: ../../operation/netflow/nf_live_view.php:350 -#: ../../operation/netflow/nf_live_view.php:433 -#: ../../godmode/netflow/nf_edit_form.php:245 -#: ../../godmode/netflow/nf_edit_form.php:258 -msgid "Dst Port" -msgstr "Puerto destino" - -#: ../../operation/netflow/nf_live_view.php:392 -#: ../../include/class/CredentialStore.class.php:945 -#: ../../include/functions_html.php:1878 ../../include/functions_html.php:1879 -#: ../../include/functions_html.php:1989 ../../include/functions_html.php:1990 -#: ../../include/functions_html.php:2150 ../../include/functions_html.php:2151 -#: ../../enterprise/include/functions_cron.php:582 -#: ../../enterprise/include/lib/NetworkManager.php:87 -#: ../../enterprise/meta/include/functions_autoprovision.php:388 -#: ../../enterprise/meta/include/functions_wizard_meta.php:497 -#: ../../enterprise/meta/advanced/metasetup.relations.php:218 -#: ../../enterprise/meta/advanced/metasetup.relations.php:572 -#: ../../enterprise/godmode/setup/setup_acl.php:463 -#: ../../enterprise/godmode/setup/setup_acl.php:765 -#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:755 -#: ../../godmode/massive/massive_edit_modules.php:819 -#: ../../godmode/agentes/module_manager_editor_wmi.php:61 -#: ../../godmode/agentes/module_manager_editor_network.php:96 -msgid "Custom" -msgstr "Personalizado" - -#: ../../operation/netflow/nf_live_view.php:404 -msgid "Select a filter" -msgstr "Selecciona un filtro" - -#: ../../operation/netflow/nf_live_view.php:414 -#: ../../godmode/netflow/nf_edit_form.php:239 -msgid "Dst Ip" -msgstr "Dst IP" - -#: ../../operation/netflow/nf_live_view.php:414 -#: ../../godmode/netflow/nf_edit_form.php:239 +#: ../../enterprise/godmode/massive/massive_delete_alerts_snmp.php:198 +#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:258 msgid "" -"Destination IP. A comma separated list of destination ip. If we leave the " -"field blank, will show all ip. Example filter by ip:" -"
25.46.157.214,160.253.135.249" +"Search by these fields description, OID, Custom Value, SNMP Agent (IP), Single value, " +"each Custom OIDs/Datas." msgstr "" -"IP destino. Lista de IPs destino separadas por coma. Si dejamos en blanco este " -"campo mostrarĆ” todas las IPs. Ejemplo de filtro por IP: " -"25.46.157.214,160.253.135.249" +"BĆŗsqueda por descripciĆ³n de los campos, OIS, Valores personalizados, Agentes (IP) " +"SNMP, Valor Ćŗnico, cada OIDs/Datos personalizado." -#: ../../operation/netflow/nf_live_view.php:422 -#: ../../godmode/netflow/nf_edit_form.php:242 -msgid "Src Ip" -msgstr "IP Origen" +#: ../../enterprise/godmode/massive/massive_delete_alerts_snmp.php:202 +#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:262 +#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:305 +#: ../../godmode/snmpconsole/snmp_alert.php:829 +#: ../../godmode/snmpconsole/snmp_alert.php:1166 ../../include/functions_snmp.php:433 +#: ../../operation/snmpconsole/snmp_view.php:628 +msgid "Trap type" +msgstr "Clase de trap" -#: ../../operation/netflow/nf_live_view.php:422 -#: ../../godmode/netflow/nf_edit_form.php:242 -msgid "" -"Source IP. A comma separated list of source ip. If we leave the field blank, " -"will show all ip. Example filter by ip:
25.46.157.214,160.253.135.249" -msgstr "" -"IP Origen. Lista de IPs origen separadas por coma. Si dejamos en blanco este " -"campo mostrarƔ todas las IPs. Ejemplo de filtro por IP: " -"25.46.157.214,160.253.135.249" +#: ../../enterprise/godmode/massive/massive_delete_alerts_snmp.php:217 +msgid "SNMP Alerts to be deleted" +msgstr "Alertas SNMP para aƱadir" -#: ../../operation/netflow/nf_live_view.php:433 -#: ../../godmode/netflow/nf_edit_form.php:245 -msgid "" -"Destination port. A comma separated list of destination ports. If we leave the " -"field blank, will show all ports. Example filter by ports 80 and 22:
80,22" -msgstr "" -"Puerto destino. Lista de puertos de destino separados por coma. Si dejamos " -"este campo en blanco se mostrarƔn todos los puertos. Ejemplo de filtrado por " -"puertos: 80,22" +#: ../../enterprise/godmode/massive/massive_delete_alerts_snmp.php:289 +#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:403 +msgid "No snmp alert found." +msgstr "No se ha encontrado la alerta SNMP." -#: ../../operation/netflow/nf_live_view.php:441 -#: ../../godmode/netflow/nf_edit_form.php:248 -msgid "" -"Source port. A comma separated list of source ports. If we leave the field " -"blank, will show all ports. Example filter by ports 80 and 22:
80,22" -msgstr "" -"Puerto origen. Lista de puertos de origen separados por coma. Si dejamos este " -"campo en blanco se mostrarĆ”n todos los puertos. Ejemplo de filtrado por " -"puertos: 80,22" +#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:217 +#, php-format +msgid "Successfully updated alerts (%s / %s)" +msgstr "Alertas actualizadas correctamente (%s / %s)" -#: ../../operation/netflow/nf_live_view.php:459 -#: ../../godmode/setup/setup_netflow.php:71 -msgid "IP address resolution can take a lot of time" -msgstr "La resoluciĆ³n de direcciones IP puede tardar mucho tiempo." +#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:225 +#, php-format +msgid "Unsuccessfully updated alerts (%s / %s)" +msgstr "No se han podido actualizar las alertas (%s / %s)" -#: ../../operation/netflow/nf_live_view.php:477 -msgid "IP address resolution" -msgstr "ResoluciĆ³n de direcciĆ³n IP" +#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:277 +msgid "SNMP Alerts to be edit" +msgstr "Alertas SNMP para editar" -#: ../../operation/netflow/nf_live_view.php:477 -msgid "Resolve the IP addresses to get their hostnames." -msgstr "Resolver direcciones IP para obtener sus hostnames" +#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:301 +#: ../../godmode/snmpconsole/snmp_alert.php:781 +msgid "Custom Value/OID" +msgstr "Valor/OID personalizado" -#: ../../operation/netflow/nf_live_view.php:480 -msgid "Source ip" -msgstr "IP de origen" +#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:303 +#: ../../godmode/snmpconsole/snmp_trap_generator.php:125 +#: ../../godmode/snmpconsole/snmp_alert.php:790 +#: ../../godmode/snmpconsole/snmp_alert.php:1259 +#: ../../operation/snmpconsole/snmp_view.php:854 +msgid "SNMP Agent" +msgstr "Agente SNMP" -#: ../../operation/netflow/nf_live_view.php:490 -#: ../../enterprise/meta/general/main_header.php:309 -#: ../../enterprise/meta/general/main_header.php:391 -#: ../../enterprise/meta/monitoring/wizard/wizard.create_module.php:268 -#: ../../enterprise/godmode/modules/configure_local_component.php:165 -#: ../../enterprise/godmode/agentes/plugins_manager.php:126 -#: ../../enterprise/godmode/policies/policy_plugins.php:108 -#: ../../godmode/modules/manage_network_components_form_common.php:53 -#: ../../godmode/netflow/nf_edit_form.php:237 -#: ../../godmode/alerts/configure_alert_template.php:946 -#: ../../godmode/alerts/configure_alert_template.php:987 -#: ../../godmode/alerts/configure_alert_template.php:1138 -#: ../../godmode/alerts/alert_commands.php:157 -#: ../../godmode/alerts/alert_commands.php:194 -#: ../../godmode/users/configure_user.php:1211 -msgid "Advanced" -msgstr "Avanzado" +#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:307 +#: ../../godmode/snmpconsole/snmp_alert.php:835 +msgid "Single value" +msgstr "Valor Ćŗnico" -#: ../../operation/netflow/nf_live_view.php:503 -msgid "Draw" -msgstr "Dibujar" +#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:309 +#: ../../godmode/snmpconsole/snmp_alert.php:1075 +#: ../../godmode/alerts/configure_alert_template.php:691 +msgid "Min. number of alerts" +msgstr "NĆŗmero mĆ­nimo de alertas" -#: ../../operation/netflow/nf_live_view.php:507 -msgid "Save as new filter" -msgstr "Guardar nuevo filtro" +#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:311 +#: ../../godmode/snmpconsole/snmp_alert.php:1078 +#: ../../godmode/alerts/configure_alert_template.php:728 +msgid "Max. number of alerts" +msgstr "NĆŗmero mĆ”ximo de alertas" -#: ../../operation/netflow/nf_live_view.php:508 -msgid "Update current filter" -msgstr "Actualizar filtro actual" +#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:326 +#: ../../godmode/snmpconsole/snmp_alert.php:1097 +msgid "Other value" +msgstr "Otros valores" -#: ../../operation/netflow/nf_live_view.php:522 -msgid "No filter selected" -msgstr "No se ha seleccionado ningĆŗn filtro" - -#: ../../operation/agentes/networkmap.dinamic.php:126 -#: ../../operation/agentes/pandora_networkmap.view.php:2290 -msgid "List of networkmap" -msgstr "Lista de mapas de red" - -#: ../../operation/agentes/networkmap.dinamic.php:226 -#: ../../include/functions_config.php:2410 -msgid "Pandora FMS" -msgstr "Pandora FMS" - -#: ../../operation/agentes/status_monitor.php:62 -#: ../../operation/agentes/status_monitor.php:85 -#: ../../operation/agentes/ver_agente.php:1544 -#: ../../include/functions_events.php:4509 -#: ../../include/functions_reporting_html.php:1545 -#: ../../enterprise/meta/event/custom_events.php:56 -#: ../../enterprise/meta/event/custom_events.php:61 -#: ../../enterprise/meta/event/custom_events.php:74 -#: ../../enterprise/meta/event/custom_events.php:92 -#: ../../godmode/reporting/reporting_builder.item_editor.php:76 -#: ../../godmode/menu.php:77 ../../godmode/events/events.php:80 -#: ../../godmode/events/events.php:95 -#: ../../godmode/massive/massive_edit_agents.php:1103 -#: ../../godmode/agentes/agent_manager.php:907 -#: ../../godmode/agentes/agent_manager.php:932 -msgid "Custom fields" -msgstr "Campos personalizados" - -#: ../../operation/agentes/status_monitor.php:119 -msgid "Monitor view" -msgstr "Vista del monitor" - -#: ../../operation/agentes/status_monitor.php:488 -#: ../../operation/agentes/interface_view.functions.php:59 -#: ../../operation/agentes/estado_agente.php:262 -#: ../../include/class/NetworkMap.class.php:3226 -#: ../../include/functions_html.php:1535 -#: ../../enterprise/meta/monitoring/custom_fields_view.php:168 -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:746 -#: ../../enterprise/godmode/policies/policies.php:324 -#: ../../extensions/agents_modules.php:407 -#: ../../godmode/reporting/reporting_builder.item_editor.php:1488 -#: ../../godmode/agentes/planned_downtime.editor.php:803 -#: ../../godmode/agentes/modificar_agente.php:322 -msgid "Recursion" -msgstr "Recurrencia" - -#: ../../operation/agentes/status_monitor.php:500 -#: ../../enterprise/operation/agentes/tag_view.php:139 -msgid "Monitor status" -msgstr "Estado del monitor" - -#: ../../operation/agentes/status_monitor.php:536 -#: ../../operation/agentes/status_monitor.php:1318 -#: ../../include/ajax/module.php:978 ../../include/ajax/heatmap.ajax.php:225 -#: ../../include/ajax/heatmap.ajax.php:264 -#: ../../include/ajax/custom_fields.php:411 -#: ../../enterprise/operation/agentes/tag_view.php:205 -#: ../../enterprise/include/functions_reporting_csv.php:873 -#: ../../enterprise/meta/include/functions_events_meta.php:90 -#: ../../enterprise/godmode/policies/policy_external_alerts.php:338 -#: ../../mobile/operation/modules.php:594 ../../mobile/operation/modules.php:848 -#: ../../godmode/modules/manage_network_components.php:748 -#: ../../godmode/modules/manage_network_templates_form.php:231 -#: ../../godmode/modules/manage_network_components_form_wizard.php:272 -#: ../../godmode/agentes/status_monitor_custom_fields.php:85 -#: ../../godmode/agentes/status_monitor_custom_fields.php:145 -#: ../../godmode/agentes/agent_template.php:235 -#: ../../godmode/alerts/alert_list.list.php:89 -msgid "Module name" -msgstr "Nombre del mĆ³dulo" - -#: ../../operation/agentes/status_monitor.php:550 -#: ../../operation/agentes/alerts_status.functions.php:107 -#: ../../enterprise/operation/agentes/tag_view.php:223 -#: ../../enterprise/operation/agentes/tag_view.php:225 -msgid "Only it is show tags in use." -msgstr "Mostrar solo etiquetas en uso" - -#: ../../operation/agentes/status_monitor.php:555 -#: ../../operation/agentes/alerts_status.functions.php:112 -#: ../../enterprise/operation/agentes/tag_view.php:229 -msgid "No tags" -msgstr "Sin etiquetas" - -#: ../../operation/agentes/status_monitor.php:621 -#: ../../enterprise/operation/agentes/tag_view.php:278 -#: ../../godmode/agentes/module_manager_editor_data.php:15 -msgid "Data server module" -msgstr "MĆ³dulo del servidor de datos" - -#: ../../operation/agentes/status_monitor.php:623 -#: ../../enterprise/operation/agentes/tag_view.php:280 -#: ../../godmode/agentes/module_manager_editor_network.php:77 -msgid "Network server module" -msgstr "MĆ³dulo del servidor de red" - -#: ../../operation/agentes/status_monitor.php:627 -#: ../../enterprise/operation/agentes/tag_view.php:284 -#: ../../godmode/agentes/module_manager_editor_plugin.php:46 -msgid "Plugin server module" -msgstr "MĆ³dulo del servidor de plugin" - -#: ../../operation/agentes/status_monitor.php:631 -#: ../../enterprise/operation/agentes/tag_view.php:288 -#: ../../godmode/agentes/module_manager_editor_wmi.php:33 -msgid "WMI server module" -msgstr "MĆ³dulo del servidor WMI" - -#: ../../operation/agentes/status_monitor.php:635 -#: ../../enterprise/operation/agentes/tag_view.php:292 -#: ../../godmode/agentes/module_manager_editor_prediction.php:107 -msgid "Prediction server module" -msgstr "MĆ³dulo del servidor de predicciĆ³n" - -#: ../../operation/agentes/status_monitor.php:639 -#: ../../enterprise/operation/agentes/tag_view.php:296 -#: ../../godmode/agentes/module_manager_editor_web.php:55 -msgid "Web server module" -msgstr "MĆ³dulo del servidor web" - -#: ../../operation/agentes/status_monitor.php:641 -msgid "Wux server module" -msgstr "MĆ³dulo del servidor WUX" - -#: ../../operation/agentes/status_monitor.php:646 -#: ../../operation/agentes/status_monitor.php:1323 -#: ../../enterprise/operation/agentes/tag_view.php:299 -#: ../../enterprise/operation/agentes/tag_view.php:680 -#: ../../godmode/agentes/status_monitor_custom_fields.php:89 -#: ../../godmode/agentes/status_monitor_custom_fields.php:146 -msgid "Server type" -msgstr "Tipo de servidor" - -#: ../../operation/agentes/status_monitor.php:652 -#: ../../enterprise/operation/agentes/tag_view.php:305 -#: ../../godmode/agentes/modificar_agente.php:337 -msgid "Only enabled" -msgstr "Solo habilitados" - -#: ../../operation/agentes/status_monitor.php:653 -#: ../../enterprise/operation/agentes/tag_view.php:306 -#: ../../godmode/agentes/modificar_agente.php:336 -msgid "Only disabled" -msgstr "Solo deshabilitados" - -#: ../../operation/agentes/status_monitor.php:656 -#: ../../enterprise/operation/agentes/tag_view.php:309 -msgid "Show monitors..." -msgstr "Mostrar mĆ³dulos..." - -#: ../../operation/agentes/status_monitor.php:662 -msgid "Min. hours in current status" -msgstr "MĆ­n. de horas en el estado actual" - -#: ../../operation/agentes/status_monitor.php:666 -#: ../../enterprise/operation/agentes/tag_view.php:319 -#: ../../enterprise/operation/agentes/tag_view.php:679 -#: ../../godmode/agentes/status_monitor_custom_fields.php:81 -#: ../../godmode/agentes/status_monitor_custom_fields.php:144 -msgid "Data type" -msgstr "Tipo de dato" - -#: ../../operation/agentes/status_monitor.php:765 -msgid "Not condition" -msgstr "Condition NOT" - -#: ../../operation/agentes/status_monitor.php:765 -msgid "" -"If you check this option, those elements that do NOT meet any of the " -"requirements will be shown" -msgstr "" -"Si marca esta opciĆ³n, se mostrarĆ”n aquellos elementos que NO cumplan alguno de " -"los requisitos" - -#: ../../operation/agentes/status_monitor.php:831 -#: ../../operation/agentes/agent_fields.php:37 -#: ../../enterprise/operation/agentes/tag_view.php:447 -msgid "Agent custom fields" -msgstr "Campos personalizados de agente" - -#: ../../operation/agentes/status_monitor.php:872 -msgid "Show filters" -msgstr "Mostrar filtros" - -#: ../../operation/agentes/status_monitor.php:1302 -#: ../../operation/agentes/alerts_status.php:537 -#: ../../operation/agentes/alerts_status.php:573 -#: ../../include/ajax/module.php:974 ../../include/ajax/alert_list.ajax.php:272 -#: ../../enterprise/operation/agentes/policy_view.php:67 -#: ../../enterprise/operation/agentes/collection_view.php:74 -#: ../../enterprise/include/functions_policies.php:4070 -#: ../../enterprise/meta/advanced/policymanager.sync.php:319 -#: ../../enterprise/meta/advanced/policymanager.queue.php:210 -#: ../../enterprise/meta/advanced/policymanager.queue.php:257 -#: ../../enterprise/extensions/resource_exportation/functions.php:18 -#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:462 -#: ../../enterprise/godmode/massive/massive_delete_alerts_policy.php:112 -#: ../../enterprise/godmode/massive/massive_edit_tags_policy.php:116 -#: ../../enterprise/godmode/massive/massive_add_alerts_policy.php:102 -#: ../../enterprise/godmode/massive/massive_add_modules_policy.php:208 -#: ../../enterprise/godmode/massive/massive_tags_edit_policy.php:108 -#: ../../enterprise/godmode/agentes/inventory_manager.php:219 -#: ../../enterprise/godmode/agentes/collection_manager.php:205 -#: ../../enterprise/godmode/agentes/plugins_manager.php:193 -#: ../../enterprise/godmode/policies/policy_queue.php:593 -#: ../../enterprise/godmode/policies/policy_queue.php:647 -#: ../../godmode/agentes/module_manager.php:841 -#: ../../godmode/agentes/status_monitor_custom_fields.php:73 -#: ../../godmode/agentes/status_monitor_custom_fields.php:142 -#: ../../godmode/alerts/alert_view.php:148 -msgid "Policy" -msgstr "PolĆ­tica" - -#: ../../operation/agentes/status_monitor.php:1302 -#: ../../operation/agentes/alerts_status.php:537 -#: ../../operation/agentes/alerts_status.php:573 -#: ../../include/ajax/module.php:974 ../../include/ajax/alert_list.ajax.php:272 -#: ../../enterprise/operation/agentes/collection_view.php:74 -#: ../../enterprise/godmode/agentes/inventory_manager.php:219 -#: ../../enterprise/godmode/agentes/collection_manager.php:205 -#: ../../godmode/reporting/reporting_builder.list_items.php:371 -#: ../../godmode/reporting/graph_builder.graph_editor.php:211 +#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:332 +#: ../../godmode/snmpconsole/snmp_alert.php:1126 #: ../../godmode/snmpconsole/snmp_alert.php:1254 -#: ../../godmode/agentes/module_manager.php:841 -msgid "P." -msgstr "P." +#: ../../godmode/reporting/reporting_builder.list_items.php:371 +#: ../../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 +msgid "Position" +msgstr "PosiciĆ³n" -#: ../../operation/agentes/status_monitor.php:1312 -msgid "Data Type" -msgstr "Tipo de datos" +#: ../../enterprise/godmode/massive/massive_tags_edit_policy.php:127 +msgid "Modules unused" +msgstr "MĆ³dulos sin usar" -#: ../../operation/agentes/status_monitor.php:1340 -#: ../../operation/agentes/estado_generalagente.php:438 -#: ../../include/functions_treeview.php:326 -#: ../../godmode/agentes/status_monitor_custom_fields.php:101 -#: ../../godmode/agentes/status_monitor_custom_fields.php:149 -msgid "Last status change" -msgstr "ƚltimo cambio de estado" +#: ../../enterprise/godmode/massive/massive_tags_edit_policy.php:167 +msgid "Modules used" +msgstr "MĆ³dulos usados" -#: ../../operation/agentes/status_monitor.php:1351 -#: ../../enterprise/operation/agentes/tag_view.php:683 -#: ../../godmode/agentes/module_manager.php:864 -#: ../../godmode/agentes/status_monitor_custom_fields.php:109 -#: ../../godmode/agentes/status_monitor_custom_fields.php:151 -msgid "Warn" -msgstr "Advertencia" +#: ../../enterprise/godmode/massive/massive_delete_alerts_policy.php:88 +msgid "Success: remove the alerts." +msgstr "Alertas borradas correctamente" -#: ../../operation/agentes/status_monitor.php:1431 -#: ../../operation/agentes/pandora_networkmap.view.php:1743 -msgid "(Adopt) " -msgstr "(Adoptar) " +#: ../../enterprise/godmode/massive/massive_delete_alerts_policy.php:88 +msgid "Failed: remove the alerts for this modules, please check." +msgstr "Error al borrar las alertas en estos mĆ³dulos" -#: ../../operation/agentes/status_monitor.php:1439 -#: ../../operation/agentes/pandora_networkmap.view.php:1751 -msgid "(Unlinked) (Adopt) " -msgstr "(Sin enlazar) (Adoptar) " +#: ../../enterprise/godmode/massive/massive_delete_alerts_policy.php:141 +msgid "Modules agents in policy" +msgstr "MĆ³dulos de agentes en la polĆ­tica" -#: ../../operation/agentes/status_monitor.php:1442 -#: ../../operation/agentes/pandora_networkmap.view.php:1754 -msgid "(Unlinked) " -msgstr "(Sin enlazar) " +#: ../../enterprise/godmode/massive/massive_add_service_elements.php:112 +#, php-format +msgid "Problems while adding module element: %d, %s" +msgstr "Problemas al agregar el elemento del mĆ³dulo: %d, %s" -#: ../../operation/agentes/status_monitor.php:1641 -#: ../../operation/agentes/status_monitor.php:1649 -#: ../../include/class/Tree.class.php:646 ../../include/lib/Module.php:565 -#: ../../include/functions_modules.php:4088 ../../include/functions.php:1357 -#: ../../include/functions.php:1394 -msgid "NO DATA" -msgstr "SIN DATOS" +#: ../../enterprise/godmode/massive/massive_add_service_elements.php:157 +#, php-format +msgid "Problems while adding agent element: %d, %s" +msgstr "Problemas al agregar el elemento agente: %d, %s" -#: ../../operation/agentes/status_monitor.php:1980 -msgid "This group doesn't have any monitor" -msgstr "Este grupo no tiene ningĆŗn monitor definido." +#: ../../enterprise/godmode/massive/massive_add_service_elements.php:205 +#, php-format +msgid "%s: %d, %s" +msgstr "%s: %d, %s" -#: ../../operation/agentes/status_monitor.php:1982 -msgid "Sorry no search parameters" -msgstr "No hay parĆ”metros de bĆŗsqueda" +#: ../../enterprise/godmode/massive/massive_add_service_elements.php:228 +msgid "Failed to process adding elements in services: " +msgstr "Error al procesar la adiciĆ³n de elementos en los servicios: " -#: ../../operation/agentes/alerts_status.php:209 -#: ../../enterprise/meta/general/main_menu.php:206 -#: ../../enterprise/meta/general/main_header.php:115 -msgid "Alerts view" -msgstr "Vista de alertas" +#: ../../enterprise/godmode/massive/massive_add_service_elements.php:270 +msgid "added" +msgstr "aƱadido" -#: ../../operation/agentes/alerts_status.php:217 -msgid "Insufficient permissions to validate alerts" -msgstr "Permisos insuficientes para validar alertas" +#: ../../enterprise/godmode/massive/massive_add_service_elements.php:354 +msgid "Item type to be added" +msgstr "Tipo de artĆ­culo que se agregarĆ”" -#: ../../operation/agentes/alerts_status.php:500 -#: ../../enterprise/godmode/policies/policy_external_alerts.php:372 -#: ../../godmode/alerts/alert_list.list.php:178 -msgid "Alert control filter" -msgstr "Filtro de control de alertas" +#: ../../enterprise/godmode/massive/massive_add_service_elements.php:371 +#: ../../enterprise/godmode/massive/massive_create_services.php:974 +msgid "Add selected" +msgstr "AƱadir seleccionado" -#: ../../operation/agentes/alerts_status.php:539 -#: ../../operation/agentes/alerts_status.php:575 -#: ../../operation/agentes/alerts_status.php:610 -#: ../../operation/agentes/alerts_status.php:643 -#: ../../operation/agentes/alerts_status.functions.php:123 -#: ../../include/ajax/alert_list.ajax.php:273 -#: ../../include/ajax/alert_list.ajax.php:298 -#: ../../enterprise/operation/agentes/policy_view.php:257 -#: ../../godmode/alerts/alert_list.list.php:141 -msgid "Standby" -msgstr "Standby" +#: ../../enterprise/godmode/massive/massive_add_service_elements.php:496 +#: ../../enterprise/godmode/massive/massive_edit_service_elements.php:252 +msgid "In smart services weights are automatically calculated." +msgstr "En el modo inteligente, los pesos se calculan automĆ”ticamente." -#: ../../operation/agentes/alerts_status.php:539 -#: ../../operation/agentes/alerts_status.php:575 -#: ../../operation/agentes/alerts_status.php:610 -#: ../../operation/agentes/alerts_status.php:643 -#: ../../include/ajax/alert_list.ajax.php:273 -#: ../../include/ajax/alert_list.ajax.php:298 -#: ../../include/class/AuditLog.class.php:128 -#: ../../include/functions_events.php:2603 -#: ../../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 -#: ../../enterprise/godmode/reporting/reporting_builder.template_list_item.php:190 -#: ../../enterprise/godmode/admin_access_logs.php:50 -#: ../../enterprise/godmode/policies/policy_agents.php:852 -#: ../../enterprise/godmode/policies/policy_agents.php:1368 -#: ../../mobile/operation/agents.php:406 -#: ../../godmode/agentes/module_manager.php:844 -msgid "S." -msgstr "S." +#: ../../enterprise/godmode/massive/massive_add_service_elements.php:501 +#: ../../enterprise/godmode/massive/massive_edit_service_elements.php:257 +msgid "" +"Weights configured are common for every item added to the service, if you want to " +"customize them, please edit each element at service element editor." +msgstr "" +"Los pesos configurados son comunes a todos los elementos aƱadidos al servicio. Si " +"desea personalizarlos, edite el servicio." -#: ../../operation/agentes/alerts_status.php:543 -#: ../../operation/agentes/alerts_status.php:579 -#: ../../operation/agentes/alerts_status.php:613 -#: ../../operation/agentes/alerts_status.php:646 -#: ../../include/ajax/module.php:970 ../../include/ajax/alert_list.ajax.php:276 -#: ../../include/ajax/alert_list.ajax.php:301 -msgid "Force execution" -msgstr "Forzar ejecuciĆ³n" +#: ../../enterprise/godmode/massive/massive_add_service_elements.php:506 +#: ../../enterprise/godmode/massive/massive_create_services.php:1148 +#: ../../enterprise/godmode/massive/massive_edit_service_elements.php:262 +msgid "Service items summary" +msgstr "Resumen de elementos de servicio" -#: ../../operation/agentes/alerts_status.php:543 -#: ../../operation/agentes/alerts_status.php:579 -#: ../../operation/agentes/alerts_status.php:613 -#: ../../operation/agentes/alerts_status.php:646 -#: ../../include/ajax/module.php:970 ../../include/ajax/alert_list.ajax.php:276 -#: ../../include/ajax/alert_list.ajax.php:301 -msgid "F." -msgstr "F." +#: ../../enterprise/godmode/massive/massive_add_service_elements.php:509 +#: ../../enterprise/godmode/massive/massive_create_services.php:1151 +#: ../../enterprise/godmode/massive/massive_edit_service_elements.php:265 +#: ../../include/functions_visual_map_editor.php:1148 +#: ../../include/rest-api/models/VisualConsole/Item.php:2522 +msgid "Critical weight" +msgstr "Peso crĆ­tico" -#: ../../operation/agentes/alerts_status.php:549 -#: ../../operation/agentes/alerts_status.php:584 -#: ../../operation/agentes/alerts_status.php:619 -#: ../../operation/agentes/alerts_status.php:651 -#: ../../operation/search_alerts.php:36 ../../include/functions_cron.php:653 -#: ../../include/ajax/alert_list.ajax.php:280 -#: ../../include/ajax/alert_list.ajax.php:305 -#: ../../include/class/AgentsAlerts.class.php:338 -#: ../../include/class/AgentsAlerts.class.php:964 -#: ../../include/functions_treeview.php:412 -#: ../../include/functions_treeview.php:453 -#: ../../include/functions_reporting_html.php:3182 -#: ../../include/functions_reporting_html.php:3185 -#: ../../enterprise/operation/agentes/policy_view.php:259 -#: ../../enterprise/include/functions_reporting_csv.php:2465 -#: ../../enterprise/include/functions_tasklist.php:328 -#: ../../enterprise/meta/monitoring/wizard/wizard.manage_alert.php:224 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:321 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1399 -#: ../../enterprise/godmode/policies/policy_external_alerts.php:329 -#: ../../enterprise/godmode/policies/policy_alerts.php:351 -#: ../../enterprise/godmode/policies/policy_alerts.php:557 -#: ../../mobile/operation/alerts.php:342 -#: ../../godmode/reporting/reporting_builder.item_editor.php:201 -#: ../../godmode/reporting/reporting_builder.item_editor.php:828 -#: ../../godmode/alerts/alert_list.list.php:483 -#: ../../godmode/alerts/alert_list.builder.php:140 -#: ../../godmode/alerts/alert_view.php:95 -msgid "Template" -msgstr "Plantilla" +#: ../../enterprise/godmode/massive/massive_add_service_elements.php:522 +#: ../../enterprise/godmode/massive/massive_create_services.php:1164 +#: ../../enterprise/godmode/massive/massive_edit_service_elements.php:278 +#: ../../include/functions_visual_map_editor.php:1174 +#: ../../include/rest-api/models/VisualConsole/Item.php:2536 +msgid "Warning weight" +msgstr "Peso de advertencia" + +#: ../../enterprise/godmode/massive/massive_add_service_elements.php:535 +#: ../../enterprise/godmode/massive/massive_create_services.php:1177 +#: ../../enterprise/godmode/massive/massive_edit_service_elements.php:291 +msgid "Unknown weight" +msgstr "Peso desconocido" + +#: ../../enterprise/godmode/massive/massive_add_service_elements.php:548 +#: ../../enterprise/godmode/massive/massive_create_services.php:1190 +#: ../../enterprise/godmode/massive/massive_edit_service_elements.php:304 +msgid "Normal weight" +msgstr "Peso normal" + +#: ../../enterprise/godmode/massive/massive_add_service_elements.php:616 +#: ../../include/functions_notifications.php:928 +msgid "Add elements" +msgstr "AƱadir elementos" + +#: ../../enterprise/godmode/massive/massive_create_services.php:110 +#: ../../enterprise/godmode/services/services.service.php:120 +msgid "No name specified for the service" +msgstr "NingĆŗn nombre especificado para el servicio" + +#: ../../enterprise/godmode/massive/massive_create_services.php:116 +#: ../../enterprise/godmode/services/services.service.php:131 +msgid "No description specified for the service" +msgstr "Ninguna descripciĆ³n especificada para el servicio" + +#: ../../enterprise/godmode/massive/massive_create_services.php:122 +#: ../../enterprise/godmode/services/services.service.php:142 +msgid "You must specify an agent to store the service" +msgstr "Especifique un agente para guardar el servicio" + +#: ../../enterprise/godmode/massive/massive_create_services.php:210 +#, php-format +msgid "Failed to create service for agent %s, %s" +msgstr "No se ha podido crear el servicio para el agente %s, %s" + +#: ../../enterprise/godmode/massive/massive_create_services.php:294 +#, php-format +msgid "Failed to create service for module %s, %s" +msgstr "No se ha podido crear el servicio para el mĆ³dulo %s, %s" + +#: ../../enterprise/godmode/massive/massive_create_services.php:380 +#, php-format +msgid "Failed to create service for service %s, %s" +msgstr "No se ha podido crear el servicio para el servicio %s, %s" + +#: ../../enterprise/godmode/massive/massive_create_services.php:435 +#, php-format +msgid "Agent selected %d not found" +msgstr "Agente seleccionado %d no encontrado" + +#: ../../enterprise/godmode/massive/massive_create_services.php:481 +#, php-format +msgid "Module selected %d not found" +msgstr "MĆ³dulo seleccionado %d no encontrado" + +#: ../../enterprise/godmode/massive/massive_create_services.php:528 +#, php-format +msgid "Service selected %d not found" +msgstr "Servicio seleccionado %d no encontrado" + +#: ../../enterprise/godmode/massive/massive_create_services.php:562 +#, php-format +msgid "Failed to create service for agent %s" +msgstr "No se ha podido crear el servicio para el agente %s" + +#: ../../enterprise/godmode/massive/massive_create_services.php:573 +#, php-format +msgid "Failed to create services: %s" +msgstr "No se han podido crear los servicios: %s" + +#: ../../enterprise/godmode/massive/massive_create_services.php:593 +#, php-format +msgid "%d services created with %d items" +msgstr "%d servicios creados con %d elementos" + +#: ../../enterprise/godmode/massive/massive_create_services.php:599 +msgid "No services created" +msgstr "No hay servicios creados" + +#: ../../enterprise/godmode/massive/massive_create_services.php:632 +msgid "Service(s) definition" +msgstr "DefiniciĆ³n de servicio(s)" + +#: ../../enterprise/godmode/massive/massive_create_services.php:659 +#: ../../enterprise/godmode/services/services.service.php:570 +msgid "This group will be used also to control access to this service and its elements." +msgstr "" +"Este grupo se usarĆ” tambiĆ©n para controlar el acceso a este servicio y a sus " +"elementos." + +#: ../../enterprise/godmode/massive/massive_create_services.php:674 +#: ../../enterprise/godmode/services/services.service.php:634 +msgid "Agent to store data" +msgstr "Agentes para almacenar datos" + +#: ../../enterprise/godmode/massive/massive_create_services.php:690 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:880 +#: ../../enterprise/godmode/services/services.service.php:651 +#: ../../enterprise/godmode/servers/HA_cluster.php:175 +#: ../../enterprise/operation/services/services.list.php:278 +#: ../../enterprise/operation/services/services.table_services.php:200 +#: ../../godmode/massive/massive_edit_modules.php:933 +#: ../../godmode/alerts/alert_view.php:407 +msgid "Mode" +msgstr "Modo" + +#: ../../enterprise/godmode/massive/massive_create_services.php:698 +#: ../../enterprise/godmode/services/services.service.php:658 +#: ../../enterprise/include/class/VMware.app.php:676 +#: ../../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:1327 +#: ../../enterprise/include/class/MySQL.app.php:567 +#: ../../enterprise/include/class/Oracle.app.php:552 +#: ../../enterprise/include/class/MicrosoftSQLServer.app.php:546 +#: ../../enterprise/include/functions_ipam.php:1356 +#: ../../enterprise/operation/services/services.list.php:275 +#: ../../enterprise/operation/services/services.table_services.php:197 +#: ../../enterprise/tools/ipam/ipam_list.php:670 +#: ../../godmode/wizards/HostDevices.class.php:807 +#: ../../godmode/wizards/DiscoveryTaskList.class.php:712 +#: ../../include/class/CustomNetScan.class.php:529 +msgid "Manual" +msgstr "Manual" + +#: ../../enterprise/godmode/massive/massive_create_services.php:699 +#: ../../enterprise/godmode/services/services.service.php:659 +#: ../../enterprise/operation/services/services.list.php:276 +#: ../../enterprise/operation/services/services.table_services.php:198 +msgid "Smart" +msgstr "Inteligente" + +#: ../../enterprise/godmode/massive/massive_create_services.php:716 +#: ../../enterprise/godmode/services/services.service.php:676 +msgid "In smart mode, thresholds are percentual." +msgstr "En modo inteligente, los umbrales son porcentuales" + +#: ../../enterprise/godmode/massive/massive_create_services.php:765 +msgid "Create a service per item" +msgstr "Crear un servicio por elemento" + +#: ../../enterprise/godmode/massive/massive_create_services.php:766 +msgid "If enabled multiple services will be created." +msgstr "Si se habilita, se crearĆ”n mĆŗltiples servicios." + +#: ../../enterprise/godmode/massive/massive_create_services.php:784 +msgid "Services header" +msgstr "Encabezado de servicios" + +#: ../../enterprise/godmode/massive/massive_create_services.php:785 +msgid "All services names created will start with selected name." +msgstr "" +"Todos los nombres de servicios creados deben empezar con el nombre seleccionado." + +#: ../../enterprise/godmode/massive/massive_create_services.php:799 +#: ../../enterprise/godmode/services/services.service.php:726 +msgid "Unknown elements as critical" +msgstr "Elementos desconocidos como crĆ­ticos" + +#: ../../enterprise/godmode/massive/massive_create_services.php:829 +#: ../../enterprise/godmode/services/services.service.php:766 +msgid "Cascade protection enabled" +msgstr "ProtecciĆ³n en cascada habilitada" + +#: ../../enterprise/godmode/massive/massive_create_services.php:839 +msgid "SLA calculation" +msgstr "CĆ”lculo de SLA" + +#: ../../enterprise/godmode/massive/massive_create_services.php:842 +#: ../../enterprise/godmode/services/services.service.php:796 +msgid "Calculate continuous SLA" +msgstr "Calcular SLA continuo" + +#: ../../enterprise/godmode/massive/massive_create_services.php:852 +#: ../../enterprise/godmode/services/services.service.php:806 +msgid "S.L.A. interval" +msgstr "Intervalo SLA" + +#: ../../enterprise/godmode/massive/massive_create_services.php:866 +#: ../../enterprise/godmode/services/services.service.php:820 +msgid "S.L.A. limit" +msgstr "LĆ­mite SLA" + +#: ../../enterprise/godmode/massive/massive_create_services.php:896 +#: ../../enterprise/godmode/services/services.service.php:867 +msgid "Warning service alert" +msgstr "Alerta de servicio en advertencia" + +#: ../../enterprise/godmode/massive/massive_create_services.php:908 +#: ../../enterprise/godmode/services/services.service.php:879 +msgid "Critical service alert" +msgstr "Alerta de servicio en crĆ­tico" + +#: ../../enterprise/godmode/massive/massive_create_services.php:920 +#: ../../enterprise/godmode/services/services.service.php:891 +msgid "Unknown service alert" +msgstr "Alerta de servicio en desconocido" + +#: ../../enterprise/godmode/massive/massive_create_services.php:932 +#: ../../enterprise/godmode/services/services.service.php:903 +msgid "S.L.A. critical service alert" +msgstr "Alerta de servicio en crĆ­tico de S.L.A" + +#: ../../enterprise/godmode/massive/massive_create_services.php:946 +msgid "Items selected here will be added to the lists at Service items summary." +msgstr "" +"Los elementos aquĆ­ seleccionados se aƱadirĆ”n a las listas de resumen de elementos de " +"servicio" + +#: ../../enterprise/godmode/massive/massive_create_services.php:949 +msgid "Item(s) definition" +msgstr "DefiniciĆ³n de elemento(s)" + +#: ../../enterprise/godmode/massive/massive_create_services.php:957 +msgid "Item type" +msgstr "Tipo de elemento" + +#: ../../enterprise/godmode/massive/massive_create_services.php:1144 +msgid "" +"Weights configured are common for every item added to the service, if you want to " +"customize them, please edit the service." +msgstr "" +"Los pesos configurados son comunes a todos los elementos aƱadidos al servicio. Si " +"desea personalizarlos, edite el servicio." + +#: ../../enterprise/godmode/massive/massive_create_services.php:1260 +msgid "Create services" +msgstr "Crear servicios" + +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:491 +#: ../../godmode/massive/massive_edit_modules.php:554 +msgid "Dynamic Min." +msgstr "MĆ­nimo dinĆ”mico" + +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:732 +#: ../../godmode/massive/massive_edit_modules.php:796 +msgid "SMNP community" +msgstr "Comunidad SMNP" + +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:742 +#: ../../godmode/agentes/module_manager_editor_network.php:227 +#: ../../godmode/massive/massive_edit_modules.php:806 +msgid "SNMP OID" +msgstr "SNMP OID" + +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:757 +#: ../../godmode/agentes/module_manager_editor_wmi.php:45 +#: ../../godmode/agentes/module_manager_editor_network.php:80 +#: ../../godmode/massive/massive_edit_modules.php:821 +#: ../../include/class/AgentWizard.class.php:623 +#: ../../include/functions_snmp_browser.php:702 +msgid "Target IP" +msgstr "IP objetivo" + +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:780 +#: ../../enterprise/tools/ipam/ipam_vlan_wizard.php:272 +#: ../../godmode/modules/manage_network_components_form_network.php:55 +#: ../../godmode/agentes/module_manager_editor_network.php:180 +#: ../../godmode/massive/massive_edit_modules.php:839 +#: ../../godmode/wizards/HostDevices.class.php:1199 +#: ../../include/class/AgentWizard.class.php:734 +msgid "SNMP version" +msgstr "VersiĆ³n SNMP" + +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:795 +#: ../../enterprise/tools/ipam/ipam_vlan_wizard.php:299 +#: ../../godmode/modules/manage_network_components_form_network.php:96 +#: ../../godmode/agentes/module_manager_editor_network.php:336 +#: ../../godmode/massive/massive_edit_modules.php:852 +#: ../../godmode/wizards/HostDevices.class.php:1259 +#: ../../include/functions_snmp_browser.php:826 +msgid "Auth user" +msgstr "AutentificaciĆ³n de usuario" + +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:804 +#: ../../enterprise/tools/ipam/ipam_vlan_wizard.php:308 +#: ../../godmode/modules/manage_network_components_form_network.php:105 +#: ../../godmode/agentes/module_manager_editor_network.php:349 +#: ../../godmode/massive/massive_edit_modules.php:861 +#: ../../godmode/wizards/HostDevices.class.php:1270 +#: ../../include/functions_snmp_browser.php:836 +msgid "Auth password" +msgstr "AutentificaciĆ³n de contraseƱa" + +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:804 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:808 +#: ../../godmode/agentes/module_manager_editor_network.php:349 +#: ../../godmode/agentes/module_manager_editor_network.php:371 +#: ../../godmode/massive/massive_edit_modules.php:861 +#: ../../godmode/massive/massive_edit_modules.php:865 +#: ../../godmode/wizards/HostDevices.class.php:1272 +#: ../../godmode/wizards/HostDevices.class.php:1303 +msgid "The pass length must be eight character minimum." +msgstr "La longitud de la contraseƱa debe ser mĆ­nimo de ocho caracteres." + +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:806 +#: ../../enterprise/tools/ipam/ipam_vlan_wizard.php:324 +#: ../../godmode/modules/manage_network_components_form_network.php:123 +#: ../../godmode/agentes/module_manager_editor_network.php:369 +#: ../../godmode/massive/massive_edit_modules.php:863 +#: ../../godmode/wizards/HostDevices.class.php:1286 +#: ../../include/class/AgentWizard.class.php:868 +#: ../../include/functions_snmp_browser.php:853 +msgid "Privacy method" +msgstr "MĆ©todo de privacidad" + +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:807 +#: ../../enterprise/tools/ipam/ipam_vlan_wizard.php:327 +#: ../../godmode/modules/manage_network_components_form_network.php:126 +#: ../../godmode/agentes/module_manager_editor_network.php:370 +#: ../../godmode/massive/massive_edit_modules.php:864 +#: ../../godmode/wizards/HostDevices.class.php:1291 +#: ../../include/functions_snmp_browser.php:856 +msgid "DES" +msgstr "DES" + +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:807 +#: ../../enterprise/tools/ipam/ipam_vlan_wizard.php:328 +#: ../../godmode/modules/manage_network_components_form_network.php:127 +#: ../../godmode/agentes/module_manager_editor_network.php:370 +#: ../../godmode/massive/massive_edit_modules.php:864 +#: ../../godmode/wizards/HostDevices.class.php:1292 +#: ../../include/functions_snmp_browser.php:857 +msgid "AES" +msgstr "AES" + +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:808 +#: ../../godmode/modules/manage_network_components_form_network.php:136 +#: ../../godmode/agentes/module_manager_editor_network.php:371 +#: ../../godmode/massive/massive_edit_modules.php:865 +#: ../../godmode/wizards/HostDevices.class.php:1301 +#: ../../include/class/AgentWizard.class.php:882 +#: ../../include/functions_snmp_browser.php:867 +msgid "Privacy pass" +msgstr "ConexiĆ³n privada" + +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:810 +#: ../../enterprise/tools/ipam/ipam_vlan_wizard.php:347 +#: ../../godmode/modules/manage_network_components_form_network.php:148 +#: ../../godmode/agentes/module_manager_editor_network.php:391 +#: ../../godmode/massive/massive_edit_modules.php:867 +#: ../../godmode/wizards/HostDevices.class.php:1317 +#: ../../include/functions_snmp_browser.php:877 +msgid "Auth method" +msgstr "MĆ©todo de autentificaciĆ³n" + +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:811 +#: ../../enterprise/tools/ipam/ipam_vlan_wizard.php:350 +#: ../../godmode/modules/manage_network_components_form_network.php:151 +#: ../../godmode/agentes/module_manager_editor_network.php:394 +#: ../../godmode/massive/massive_edit_modules.php:868 +#: ../../godmode/wizards/HostDevices.class.php:1322 +#: ../../include/class/Diagnostics.class.php:2175 +#: ../../include/functions_snmp_browser.php:880 +msgid "MD5" +msgstr "MD5" + +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:811 +#: ../../enterprise/tools/ipam/ipam_vlan_wizard.php:351 +#: ../../godmode/modules/manage_network_components_form_network.php:152 +#: ../../godmode/agentes/module_manager_editor_network.php:395 +#: ../../godmode/massive/massive_edit_modules.php:868 +#: ../../godmode/wizards/HostDevices.class.php:1323 +#: ../../include/functions_snmp_browser.php:881 +msgid "SHA" +msgstr "SHA" + +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:812 +#: ../../enterprise/tools/ipam/ipam_vlan_wizard.php:360 +#: ../../godmode/modules/manage_network_components_form_network.php:161 +#: ../../godmode/agentes/module_manager_editor_network.php:408 +#: ../../godmode/massive/massive_edit_modules.php:869 +#: ../../godmode/wizards/HostDevices.class.php:1332 +#: ../../include/class/AgentWizard.class.php:809 +#: ../../include/functions_snmp_browser.php:890 +msgid "Security level" +msgstr "Nivel de seguridad" + +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:815 +#: ../../enterprise/tools/ipam/ipam_vlan_wizard.php:363 +#: ../../godmode/modules/manage_network_components_form_network.php:164 +#: ../../godmode/agentes/module_manager_editor_network.php:411 +#: ../../godmode/massive/massive_edit_modules.php:872 +#: ../../godmode/wizards/HostDevices.class.php:1337 +#: ../../include/functions_snmp_browser.php:893 +msgid "Not auth and not privacy method" +msgstr "MĆ©todo sin autentificaciĆ³n ni privacidad" + +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:816 +#: ../../enterprise/tools/ipam/ipam_vlan_wizard.php:364 +#: ../../godmode/modules/manage_network_components_form_network.php:165 +#: ../../godmode/agentes/module_manager_editor_network.php:412 +#: ../../godmode/massive/massive_edit_modules.php:873 +#: ../../godmode/wizards/HostDevices.class.php:1338 +#: ../../include/functions_snmp_browser.php:894 +msgid "Auth and not privacy method" +msgstr "MĆ©todo con autentificaciĆ³n y sin privacidad" + +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:817 +#: ../../enterprise/tools/ipam/ipam_vlan_wizard.php:365 +#: ../../godmode/modules/manage_network_components_form_network.php:166 +#: ../../godmode/agentes/module_manager_editor_network.php:413 +#: ../../godmode/massive/massive_edit_modules.php:874 +#: ../../godmode/wizards/HostDevices.class.php:1339 +#: ../../include/functions_snmp_browser.php:895 +msgid "Auth and privacy method" +msgstr "MĆ©todo con autentificaciĆ³n y privacidad" + +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:835 +#: ../../enterprise/operation/agentes/tag_view.php:157 +#: ../../godmode/agentes/module_manager_editor_common.php:271 +#: ../../godmode/agentes/module_manager_editor_common.php:1188 +#: ../../godmode/massive/massive_edit_modules.php:892 +#: ../../include/ajax/heatmap.ajax.php:196 ../../include/functions_graph.php:5257 +#: ../../include/functions_treeview.php:116 ../../operation/heatmap.php:96 +#: ../../operation/agentes/status_monitor.php:518 +msgid "Not assigned" +msgstr "Sin asignar" + +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:849 +#: ../../enterprise/godmode/setup/setup_module_library.php:49 +#: ../../enterprise/include/functions_ui.php:102 ../../extensions/quick_shell.php:174 +#: ../../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/class/CredentialStore.class.php:957 +#: ../../include/class/AgentWizard.class.php:667 +msgid "Username" +msgstr "Usuario" + +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:855 +#: ../../godmode/agentes/module_manager_editor_common.php:731 +#: ../../godmode/massive/massive_edit_modules.php:912 +msgid "Export target" +msgstr "Servidor de exportaciĆ³n" + +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:945 +#: ../../godmode/massive/massive_edit_modules.php:998 +msgid "Active Counters" +msgstr "Contadores activos" + +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:946 +#: ../../godmode/massive/massive_edit_modules.php:999 +msgid "Inactive Counters" +msgstr "Contadores inactivos" + +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:990 +#: ../../godmode/massive/massive_edit_modules.php:1066 +msgid "Policy linking status" +msgstr "Estado de enlaces de la polĆ­tica" + +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:990 +#: ../../godmode/massive/massive_edit_modules.php:1066 +msgid "This field only has sense in modules adopted by a policy." +msgstr "Este campo solo tiene sentido en los mĆ³dulos aprobados por una polĆ­tica." + +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:991 +#: ../../godmode/massive/massive_edit_modules.php:1067 +msgid "Linked" +msgstr "Enlazado" + +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:991 +#: ../../godmode/agentes/module_manager.php:1050 +#: ../../godmode/agentes/module_manager.php:1053 +#: ../../godmode/massive/massive_edit_modules.php:1067 +#: ../../include/ajax/module.php:1092 ../../include/ajax/module.php:1095 +msgid "Unlinked" +msgstr "Desenlazado" + +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:1000 +#: ../../godmode/modules/manage_network_components_form_common.php:315 +#: ../../godmode/agentes/module_manager_editor_common.php:764 +#: ../../godmode/massive/massive_edit_modules.php:1076 +msgid "Discard unknown events" +msgstr "Descartar eventos desconocidos" + +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:1029 +#: ../../godmode/massive/massive_edit_modules.php:1105 +msgid "The module still store data but the alerts and events will be stop" +msgstr "El mĆ³dulo todavĆ­a almacena datos pero las alertas y los eventos se detendrĆ”n." + +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:1044 +#: ../../enterprise/operation/agentes/manage_transmap_creation_phases_data.php:80 +#: ../../godmode/agentes/module_manager_editor_common.php:1135 +#: ../../godmode/massive/massive_edit_modules.php:1122 +msgid "Timeout" +msgstr "Tiempo de espera" + +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:1053 +#: ../../godmode/massive/massive_edit_modules.php:1131 +msgid "Seconds that agent will wait for the execution of the module." +msgstr "Segundos que el agente tendrĆ” que esperar para la ejecuciĆ³n del mĆ³dulo" + +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:1070 +#: ../../godmode/modules/manage_network_components_form_network.php:209 +#: ../../godmode/agentes/module_manager_editor_network.php:281 +#: ../../godmode/massive/massive_edit_modules.php:1148 +msgid "TCP send" +msgstr "Enviar TCP" + +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:1073 +#: ../../godmode/modules/manage_network_components_form_network.php:216 +#: ../../godmode/agentes/module_manager_editor_network.php:295 +#: ../../godmode/massive/massive_edit_modules.php:1151 +msgid "TCP receive" +msgstr "Recibir TCP" + +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:1076 +#: ../../godmode/modules/manage_network_components_form_wmi.php:31 +#: ../../godmode/agentes/module_manager_editor_wmi.php:133 +#: ../../godmode/massive/massive_edit_modules.php:1154 +msgid "WMI query" +msgstr "Consulta WMI" + +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:1079 +#: ../../godmode/modules/manage_network_components_form_wmi.php:33 +#: ../../godmode/modules/manage_network_components_form_wizard.php:685 +#: ../../godmode/agentes/module_manager_editor_wmi.php:151 +#: ../../godmode/massive/massive_edit_modules.php:1157 +msgid "Key string" +msgstr "Cadena clave" + +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:1082 +#: ../../godmode/modules/manage_network_components_form_wmi.php:39 +#: ../../godmode/agentes/module_manager_editor_wmi.php:164 +#: ../../godmode/massive/massive_edit_modules.php:1160 +msgid "Field number" +msgstr "Campo nĆŗmero" + +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:1085 +#: ../../godmode/modules/manage_network_components_form_plugin.php:35 +#: ../../godmode/agentes/module_manager_editor_plugin.php:49 +#: ../../godmode/massive/massive_edit_plugins.php:346 +#: ../../godmode/massive/massive_edit_modules.php:1163 +#: ../../godmode/servers/plugin_registration.php:503 +msgid "Plugin" +msgstr "Plugin" + +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:1103 +#: ../../godmode/modules/manage_network_components_form_network.php:223 +#: ../../godmode/agentes/module_manager_editor_network.php:433 +#: ../../godmode/massive/massive_edit_plugins.php:480 +#: ../../godmode/massive/massive_edit_modules.php:1181 +#: ../../godmode/alerts/configure_alert_command.php:246 +#: ../../godmode/alerts/alert_actions.php:272 ../../godmode/alerts/alert_actions.php:327 +#: ../../godmode/alerts/configure_alert_action.php:247 +#: ../../godmode/events/event_responses.editor.php:157 +#: ../../godmode/events/event_responses.editor.php:164 +#: ../../godmode/servers/plugin.php:429 ../../godmode/servers/plugin.php:434 +#: ../../godmode/servers/plugin.php:817 +#: ../../include/class/ManageNetScanScripts.class.php:434 +#: ../../include/class/ExternalTools.class.php:353 +msgid "Command" +msgstr "Comando" + +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:1120 +#: ../../enterprise/include/class/DeploymentCenter.class.php:1397 +#: ../../godmode/modules/manage_network_components_form_network.php:242 +#: ../../godmode/agentes/module_manager_editor_network.php:459 +#: ../../godmode/massive/massive_edit_modules.php:1198 +msgid "Credential identifier" +msgstr "Credencial" + +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:1135 +#: ../../godmode/modules/manage_network_components_form_network.php:258 +#: ../../godmode/agentes/module_manager_editor_network.php:477 +#: ../../godmode/massive/massive_edit_modules.php:1213 +msgid "Inherited" +msgstr "Heredado" + +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:1136 +#: ../../godmode/modules/manage_network_components_form_network.php:259 +#: ../../godmode/massive/massive_edit_modules.php:1214 +msgid "Linux" +msgstr "Linux" + +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:1137 +#: ../../godmode/modules/manage_network_components_form_network.php:260 +#: ../../godmode/massive/massive_edit_modules.php:1215 +msgid "Windows" +msgstr "Windows" + +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:1140 +#: ../../godmode/modules/manage_network_components_form_network.php:263 +#: ../../godmode/massive/massive_edit_modules.php:1218 +msgid "Target OS" +msgstr "SO objetivo" + +#: ../../enterprise/godmode/massive/massive_edit_service_elements.php:131 +msgid "Failed to process updating elements in services: " +msgstr "Error al procesar la actualizaciĆ³n de elementos de los servicios: " + +#: ../../enterprise/godmode/massive/massive_edit_service_elements.php:172 +#: ../../include/class/ConfigPEN.class.php:564 +msgid "updated" +msgstr "actualizado" + +#: ../../enterprise/godmode/massive/massive_edit_service_elements.php:373 +msgid "Update selected service elements" +msgstr "Actualizar los elementos de servicio seleccionados" + +#: ../../enterprise/godmode/massive/massive_delete_services.php:50 +#, php-format +msgid "Failed to delete: %s" +msgstr "No se ha podido eliminar: %s" + +#: ../../enterprise/godmode/admin_access_logs.php:78 +msgid "Show extended info" +msgstr "Mostrar mĆ”s info" + +#: ../../enterprise/godmode/admin_access_logs.php:99 +msgid "" +"The security check cannot be performed. There are no data in tsession_extended to " +"check the hash." +msgstr "" +"La comprobaciĆ³n de seguridad no se puede realizar. No hay datos en tsession_extended " +"para verificar el hash." + +#: ../../enterprise/godmode/admin_access_logs.php:108 +msgid "Security check is ok." +msgstr "La comprobaciĆ³n de seguridad estĆ” OK." + +#: ../../enterprise/godmode/admin_access_logs.php:113 +msgid "Security check is fail." +msgstr "La comprobaciĆ³n de seguridad ha fallado." + +#: ../../enterprise/godmode/admin_access_logs.php:208 +msgid "Extended info:" +msgstr "InformaciĆ³n extendida:" + +#: ../../enterprise/godmode/admin_access_logs.php:216 +msgid "Changes:" +msgstr "Cambios:" + +#: ../../enterprise/godmode/alerts/alert_inventory_builder.php:176 +msgid "Group acl" +msgstr "ACL de grupo" + +#: ../../enterprise/godmode/alerts/alert_inventory_builder.php:215 +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:425 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2544 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2658 +msgid "Condition" +msgstr "CondiciĆ³n" + +#: ../../enterprise/godmode/alerts/alert_inventory_builder.php:256 +msgid "Alert groups" +msgstr "Grupos de alertas" + +#: ../../enterprise/godmode/alerts/alert_inventory_builder.php:270 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1081 +#: ../../godmode/snmpconsole/snmp_alert.php:1130 +#: ../../godmode/alerts/configure_alert_template.php:749 +msgid "Disable event" +msgstr "Deshabilitar evento" + +#: ../../enterprise/godmode/alerts/alert_inventory_builder.php:278 +#: ../../godmode/snmpconsole/snmp_alert.php:94 +msgid "Update alert" +msgstr "Actualizar alerta" + +#: ../../enterprise/godmode/alerts/alert_inventory_builder.php:282 +#: ../../godmode/alerts/alert_list.builder.php:204 +#: ../../include/class/AgentsAlerts.class.php:396 +msgid "Add alert" +msgstr "AƱadir alerta" + +#: ../../enterprise/godmode/alerts/alert_inventory_list.php:91 +#: ../../godmode/massive/massive_add_alerts.php:168 +#: ../../godmode/massive/massive_add_action_alerts.php:160 +#: ../../godmode/alerts/alert_list.php:271 +msgid "Successfully added" +msgstr "AƱadido correctamente" + +#: ../../enterprise/godmode/alerts/alert_inventory_list.php:174 +msgid "Inventory alert filters" +msgstr "Filtros de alerta de inventario" + +#: ../../enterprise/godmode/alerts/alert_inventory_list.php:220 +msgid "Alert name" +msgstr "Nombre de la alerta" -#: ../../operation/agentes/alerts_status.php:551 -#: ../../operation/agentes/alerts_status.php:586 -#: ../../operation/agentes/alerts_status.php:621 -#: ../../operation/agentes/alerts_status.php:653 -#: ../../include/ajax/alert_list.ajax.php:282 -#: ../../include/ajax/alert_list.ajax.php:307 -#: ../../include/class/AgentsAlerts.class.php:893 -#: ../../include/functions_treeview.php:455 -#: ../../include/functions_reporting_html.php:5207 -#: ../../enterprise/operation/agentes/policy_view.php:261 #: ../../enterprise/godmode/alerts/alert_inventory_list.php:221 -#: ../../godmode/snmpconsole/snmp_alert.php:1275 -#: ../../godmode/alerts/alert_view.php:99 +#: ../../enterprise/operation/agentes/policy_view.php:261 +#: ../../godmode/snmpconsole/snmp_alert.php:1275 ../../godmode/alerts/alert_view.php:99 +#: ../../include/functions_reporting_html.php:5253 +#: ../../include/ajax/alert_list.ajax.php:295 ../../include/ajax/alert_list.ajax.php:320 +#: ../../include/functions_treeview.php:455 +#: ../../include/class/AgentsAlerts.class.php:893 msgid "Last fired" msgstr "Disparada por Ćŗltima vez" -#: ../../operation/agentes/alerts_status.php:732 -#: ../../include/ajax/alert_list.ajax.php:328 -msgid "No alerts found" -msgstr "No se encontrĆ³ ninguna alerta" +#: ../../enterprise/godmode/alerts/alert_inventory_list.php:261 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3228 +#: ../../enterprise/operation/agentes/policy_view.php:348 +#: ../../godmode/alerts/alert_list.list.php:577 ../../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:12497 +msgid "Alert disabled" +msgstr "Alerta desactivada" -#: ../../operation/agentes/alerts_status.php:742 -msgid "Full list of alerts" -msgstr "Lista completa de alertas" +#: ../../enterprise/godmode/alerts/alert_inventory_list.php:319 +#: ../../godmode/snmpconsole/snmp_alert.php:1394 +#: ../../godmode/alerts/alert_list.list.php:688 +msgid "Delete action" +msgstr "Eliminar acciĆ³n" -#: ../../operation/agentes/ehorus.php:30 -msgid "Missing agent id" -msgstr "Falta ID de agente" +#: ../../enterprise/godmode/alerts/alert_inventory_list.php:404 +msgid "Disable alert" +msgstr "Deshabilitar alerta" -#: ../../operation/agentes/ehorus.php:51 -msgid "Missing ehorus agent id" -msgstr "Falta ID de agente de eHorus" +#: ../../enterprise/godmode/alerts/alert_inventory_list.php:407 +msgid "Enable alert" +msgstr "Habilitar alerta" -#: ../../operation/agentes/ehorus.php:100 ../../operation/agentes/ehorus.php:137 -msgid "There was an error retrieving an authorization token" -msgstr "Error al recibir el token de autorizaciĆ³n" +#: ../../enterprise/godmode/alerts/alert_inventory_list.php:415 +msgid "Delete alert" +msgstr "Eliminar alerta" -#: ../../operation/agentes/ehorus.php:112 ../../operation/agentes/ehorus.php:149 -#: ../../operation/agentes/ehorus.php:185 -msgid "There was an error processing the response" -msgstr "Error al procesar la respuesta" +#: ../../enterprise/godmode/alerts/alert_inventory_list.php:427 +msgid "There are no defined inventory alerts" +msgstr "No hay alertas de inventario definidas" -#: ../../operation/agentes/ehorus.php:173 -msgid "There was an error retrieving the agent data" -msgstr "Error al obtener los datos del agente" +#: ../../enterprise/godmode/alerts/alert_inventory.php:67 +msgid "Inventory alert list" +msgstr "Lista de alertas de inventario" -#: ../../operation/agentes/ehorus.php:190 -msgid "Remote management of this agent with eHorus" -msgstr "Control remoto de este agente con eHorus" +#: ../../enterprise/godmode/alerts/alert_inventory.php:71 +msgid "Inventory alert builder" +msgstr "Montador de alertas de inventario" -#: ../../operation/agentes/ehorus.php:192 -msgid "Launch" -msgstr "Iniciar" +#: ../../enterprise/godmode/services/services.massive.meta.php:56 +#: ../../enterprise/godmode/services/services.massive.elements.php:93 +#: ../../godmode/agentes/agent_manager.php:541 +#: ../../godmode/massive/massive_edit_agents.php:952 +msgid "Not available" +msgstr "No disponible" -#: ../../operation/agentes/ehorus.php:198 -msgid "The connection was lost and the authorization token was expired" -msgstr "La conexiĆ³n se perdiĆ³ y el token de autorizaciĆ³n ha expirado." +#: ../../enterprise/godmode/services/services.service.php:109 +msgid "Service already exists." +msgstr "El servicio ya existe." -#: ../../operation/agentes/ehorus.php:198 -msgid "Reload the page to request a new authorization token" -msgstr "Refresca la pĆ”gina para obtener otro token de autorizaciĆ³n" +#: ../../enterprise/godmode/services/services.service.php:201 +msgid "Error creating service: " +msgstr "Error al crear el servicio: " -#: ../../operation/agentes/group_view.php:80 -#: ../../operation/agentes/tactical.php:60 -#: ../../enterprise/tools/ipam/ipam_list.php:631 -#: ../../enterprise/views/ncm/devices/list.php:122 -#: ../../enterprise/operation/services/services.service.php:133 -#: ../../enterprise/operation/services/services.list.php:510 -#: ../../extensions/agents_modules.php:317 -msgid "Last update" -msgstr "ƚltima actualizaciĆ³n" +#: ../../enterprise/godmode/services/services.service.php:210 +#: ../../enterprise/godmode/services/services.service.php:316 +msgid "New Service" +msgstr "Nuevo servicio" -#: ../../operation/agentes/group_view.php:180 -msgid "Summary of the status groups" -msgstr "Resumen de los grupos por estado" +#: ../../enterprise/godmode/services/services.service.php:216 +msgid "Service created successfully" +msgstr "Servicio creado correctamente" + +#: ../../enterprise/godmode/services/services.service.php:285 +#: ../../enterprise/include/functions_services.php:728 +msgid "Error updating service: " +msgstr "Error al actualizar el servicio: " + +#: ../../enterprise/godmode/services/services.service.php:296 +msgid "Service updated successfully" +msgstr "Servicio actualizado correctamente" + +#: ../../enterprise/godmode/services/services.service.php:309 +#: ../../enterprise/godmode/services/services.service.php:354 +#: ../../enterprise/operation/services/services.service.php:55 +#: ../../enterprise/operation/services/services.service_map.php:62 +msgid "Not found" +msgstr "No encontrado" + +#: ../../enterprise/godmode/services/services.service.php:369 +msgid "Dynamic elements are not affected by cascade protection" +msgstr "La protecciĆ³n en cascada no se aplica a los elementos dinĆ”micos" + +#: ../../enterprise/godmode/services/services.service.php:396 +#: ../../enterprise/godmode/services/services.elements.php:702 +#: ../../enterprise/operation/services/services.php:90 +#: ../../enterprise/operation/services/services.php:182 +msgid "Services list" +msgstr "Lista de servicios" + +#: ../../enterprise/godmode/services/services.service.php:410 +#: ../../enterprise/godmode/services/services.elements.php:716 +#: ../../enterprise/operation/services/services.php:105 +msgid "Config Service" +msgstr "Configurar servicios" + +#: ../../enterprise/godmode/services/services.service.php:427 +#: ../../enterprise/godmode/services/services.elements.php:733 +#: ../../enterprise/operation/services/services.php:123 +msgid "Config Elements" +msgstr "Configurar elementos" + +#: ../../enterprise/godmode/services/services.service.php:439 +#: ../../enterprise/godmode/services/services.elements.php:745 +#: ../../enterprise/operation/services/services.php:136 +msgid "Bulk service elements operations" +msgstr "Operaciones de elementos de servicio masivos" + +#: ../../enterprise/godmode/services/services.service.php:454 +#: ../../enterprise/godmode/services/services.elements.php:760 +#: ../../enterprise/operation/services/services.php:152 +msgid "View Service" +msgstr "Ver servicio" + +#: ../../enterprise/godmode/services/services.service.php:465 +#: ../../enterprise/godmode/services/services.elements.php:771 +#: ../../enterprise/operation/services/services.php:164 +#: ../../include/lib/Dashboard/Widgets/service_map.php:441 +msgid "Service map" +msgstr "Mapa del servicio" + +#: ../../enterprise/godmode/services/services.service.php:519 +msgid "No Services or concrete action" +msgstr "Sin servicios o acciĆ³n concreta" + +#: ../../enterprise/godmode/services/services.service.php:538 +msgid "Random name" +msgstr "Nombre aleatorio" + +#: ../../enterprise/godmode/services/services.service.php:586 +msgid "Server assigned" +msgstr "Servidor asignado" + +#: ../../enterprise/godmode/services/services.service.php:587 +msgid "Selected Prediction server will be assigned to evaluate the service." +msgstr "Se asignarĆ” el servidor de predicciĆ³n seleccionado para evaluar el servicio" + +#: ../../enterprise/godmode/services/services.service.php:608 +msgid "Evaluation interval" +msgstr "Intervalo de evaluaciĆ³n" + +#: ../../enterprise/godmode/services/services.service.php:756 +msgid "Asynchronous mode" +msgstr "Modo asĆ­ncrono" + +#: ../../enterprise/godmode/services/services.service.php:776 +msgid "Enable Sunburst" +msgstr "Habilitar Sunburst" + +#: ../../enterprise/godmode/services/services.service.php:786 +msgid "General Data" +msgstr "Datos generales" + +#: ../../enterprise/godmode/services/services.service.php:832 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:221 +#: ../../enterprise/include/functions_reporting_csv.php:1481 +#: ../../include/functions_reports.php:699 ../../include/functions_reporting.php:952 +msgid "S.L.A." +msgstr "SLA" + +#: ../../enterprise/godmode/services/services.service.php:841 +msgid "" +"Here are described the alert templates, which will use their default actions.\n" +"\t\tYou can modify the default behaviour editing alerts in the agent who stores data " +"and alert definitions about the service and the SLA status." +msgstr "" +"AquĆ­ se describen las plantillas de alertas, que utilizarĆ”n sus acciones por " +"defecto.\n" +"\t\tPuedes modificar el comportambiento de las alertas de ediciĆ³n de comportamiento " +"por defecto en el agente que almacena definiciones de datos y alerta sobre el " +"servicio y el estado de SLA." + +#: ../../enterprise/godmode/services/services.service.php:995 +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:436 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2568 +#: ../../enterprise/include/functions_reporting_csv.php:1539 +#: ../../enterprise/include/functions_reporting_csv.php:1585 +#: ../../enterprise/include/functions_reporting_csv.php:1903 +#: ../../enterprise/include/class/DeploymentCenter.class.php:1668 +#: ../../enterprise/include/class/DeploymentCenter.class.php:1720 +#: ../../enterprise/include/class/DatabaseHA.class.php:390 +#: ../../enterprise/include/class/DatabaseHA.class.php:625 +#: ../../enterprise/include/class/DatabaseHA.class.php:727 +#: ../../enterprise/include/class/AgentRepository.class.php:911 +#: ../../enterprise/include/class/LogSource.class.php:844 +#: ../../enterprise/include/class/ManageBackups.class.php:292 +#: ../../enterprise/include/class/ManageBackups.class.php:445 +#: ../../enterprise/include/functions_reporting.php:1883 +#: ../../enterprise/include/functions_reporting.php:2930 +#: ../../enterprise/include/functions_reporting.php:3186 +#: ../../enterprise/include/functions_reporting.php:3918 +#: ../../enterprise/include/functions_reporting.php:4187 +#: ../../enterprise/include/functions_reporting.php:4833 +#: ../../enterprise/include/functions_reporting.php:6156 +#: ../../enterprise/include/functions_reporting.php:6194 +#: ../../enterprise/include/functions_services.php:2084 +#: ../../enterprise/include/functions_ux_console.php:473 +#: ../../enterprise/operation/agentes/ux_console_view.php:186 +#: ../../enterprise/operation/agentes/ux_console_view.php:384 +#: ../../enterprise/operation/agentes/wux_console_view.php:424 +#: ../../extensions/module_groups.php:53 +#: ../../godmode/massive/massive_operations.php:392 +#: ../../godmode/setup/setup_general.php:778 ../../godmode/setup/setup_general.php:796 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2669 +#: ../../include/functions_reporting_html.php:659 +#: ../../include/functions_reporting_html.php:854 +#: ../../include/functions_reporting_html.php:3346 +#: ../../include/functions_reporting_html.php:4645 ../../include/functions_db.php:1933 +#: ../../include/class/ConfigPEN.class.php:668 +#: ../../include/class/ConfigPEN.class.php:692 +#: ../../include/class/HelpFeedBack.class.php:369 +#: ../../include/class/CredentialStore.class.php:1241 +#: ../../include/class/ModuleTemplates.class.php:1381 +#: ../../include/class/WelcomeWindow.class.php:173 +#: ../../include/class/AgentWizard.class.php:6040 +#: ../../include/lib/Dashboard/Widgets/maps_status.php:351 +#: ../../operation/agentes/pandora_networkmap.editor.php:602 +#: ../../operation/snmpconsole/snmp_browser.php:645 +msgid "OK" +msgstr "Aceptar" + +#: ../../enterprise/godmode/services/services.service.php:998 +msgid "" +"This change in the service configuration will delete the history of the service " +"modules. Do you wish to continue?" +msgstr "" +"Este cambio en la configuraciĆ³n del servicio borrarĆ” el historial de mĆ³dulos de " +"servicio. ĀæDesea contiinuar?" + +#: ../../enterprise/godmode/services/services.service.php:1000 +msgid "" +"This change in the service configuration will prevent the SLA modules from being " +"created. Do you wish to continue?" +msgstr "" +"Este cambio en la configuraciĆ³n del servicio impedirĆ” que se creen mĆ³dulos SLA. " +"ĀæDesea continuar?" + +#: ../../enterprise/godmode/services/services.elements.php:72 +msgid "Invalid service" +msgstr "Servicio no vĆ”lido" + +#: ../../enterprise/godmode/services/services.elements.php:99 +#: ../../enterprise/include/functions_reporting.php:2536 +#: ../../enterprise/include/functions_reporting.php:3480 +#: ../../enterprise/include/functions_reporting.php:4455 +#: ../../include/functions_maps.php:50 ../../include/functions_reporting.php:1062 +#: ../../include/functions_reporting.php:9111 +#: ../../operation/agentes/pandora_networkmap.php:778 +msgid "Dynamic" +msgstr "DinĆ”mico" + +#: ../../enterprise/godmode/services/services.elements.php:216 +#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:128 +msgid "Custom field name" +msgstr "Nombre de campo personalizado" + +#: ../../enterprise/godmode/services/services.elements.php:228 +#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:130 +msgid "Custom field value" +msgstr "Campo de valor personalizado" + +#: ../../enterprise/godmode/services/services.elements.php:246 +msgid "Add custom field match" +msgstr "AƱadir coincidencia de campo personalizado" + +#: ../../enterprise/godmode/services/services.elements.php:252 +msgid "Both 'name' and 'value' must be defined to filter. Ignored otherwise." +msgstr "" +"Tanto el 'nombre' como el 'valor' deben estar definidos para filtrar. Si no, serĆ”n " +"ignorados." + +#: ../../enterprise/godmode/services/services.elements.php:257 +msgid "MySQL Regular expressions case sensitive." +msgstr "Las expresiones regulares de MySQL diferencian entre mayĆŗsculas y minĆŗsculas" + +#: ../../enterprise/godmode/services/services.elements.php:263 +msgid "Matching objects type" +msgstr "Tipo de elementos que coinciden" + +#: ../../enterprise/godmode/services/services.elements.php:278 +msgid "Filter by group" +msgstr "Filtrar por grupo" + +#: ../../enterprise/godmode/services/services.elements.php:290 +msgid "Use regular expresions selectors" +msgstr "Use selectores de expresiones regulares" + +#: ../../enterprise/godmode/services/services.elements.php:298 +msgid "Having agent name" +msgstr "Con nombre de agente" + +#: ../../enterprise/godmode/services/services.elements.php:306 +msgid "Having module name" +msgstr "Con nombre de mĆ³dulo" + +#: ../../enterprise/godmode/services/services.elements.php:316 +msgid "Having custom fields" +msgstr "Tener campos personalizados" + +#: ../../enterprise/godmode/services/services.elements.php:327 +msgid "Apply rules on this server" +msgstr "Aplicar reglas a este servidor" + +#: ../../enterprise/godmode/services/services.elements.php:346 +msgid "Weights" +msgstr "Pesos" + +#: ../../enterprise/godmode/services/services.elements.php:351 +msgid "In smart mode weights are automatically calculated." +msgstr "En el modo inteligente, los pesos se calculan automĆ”ticamente." + +#: ../../enterprise/godmode/services/services.elements.php:449 +#: ../../enterprise/godmode/services/services.elements.php:459 +#: ../../enterprise/godmode/services/services.elements.php:466 +msgid "Selected agent not found." +msgstr "Agente seleccionado no encontrado." + +#: ../../enterprise/godmode/services/services.elements.php:472 +#: ../../enterprise/godmode/services/services.elements.php:484 +#, php-format +msgid "Selected module not found in %s." +msgstr "El mĆ³dulo seleccionado no se ha encontrado en %s." + +#: ../../enterprise/godmode/services/services.elements.php:493 +msgid "Selected service not found." +msgstr "Servicio seleccionado no encontrado." + +#: ../../enterprise/godmode/services/services.elements.php:510 +msgid "Selected service could generate a loop" +msgstr "El servicio seleccionado podrĆ­a generar un bucle" + +#: ../../enterprise/godmode/services/services.elements.php:522 +#, php-format +msgid "Failed adding service child: %s" +msgstr "No se ha podido aƱadir el servicio hijo: %s" + +#: ../../enterprise/godmode/services/services.elements.php:565 +#, php-format +msgid "Selected rules are not valid: %s." +msgstr "Las reglas seleccionadas no son vĆ”lidas: %s." + +#: ../../enterprise/godmode/services/services.elements.php:573 +msgid "Invalid element type." +msgstr "Tipo de elemento no vĆ”lido." + +#: ../../enterprise/godmode/services/services.elements.php:599 +msgid "Element registered successfully" +msgstr "Elemento registrado correctamente." + +#: ../../enterprise/godmode/services/services.elements.php:645 +#, php-format +msgid "Error deleting element: %s" +msgstr "Error al eliminar el elemento: %s" + +#: ../../enterprise/godmode/services/services.elements.php:783 +#: ../../operation/search_maps.php:30 +msgid "Elements" +msgstr "Elementos" + +#: ../../enterprise/godmode/services/services.elements.php:811 +#: ../../enterprise/include/functions_services.php:2019 +msgid "Edit service elements" +msgstr "Editar elementos del servicio" + +#: ../../enterprise/godmode/services/services.elements.php:845 +#: ../../enterprise/godmode/services/services.elements.php:856 +#: ../../enterprise/include/functions_visual_map.php:677 +#: ../../enterprise/include/functions_HA_cluster.php:535 +#: ../../enterprise/include/class/DeploymentCenter.class.php:1611 +#: ../../enterprise/include/class/AgentRepository.class.php:855 +#: ../../enterprise/include/class/Omnishell.class.php:1083 +#: ../../enterprise/include/class/LogSource.class.php:788 +#: ../../enterprise/include/class/ManageBackups.class.php:473 +#: ../../godmode/wizards/DiscoveryTaskList.class.php:1057 +#: ../../include/ajax/snmp_browser.ajax.php:260 ../../include/functions_ui.php:294 +#: ../../include/class/ConfigPEN.class.php:737 +#: ../../include/class/HelpFeedBack.class.php:359 +#: ../../include/class/Diagnostics.class.php:2087 +#: ../../include/class/CredentialStore.class.php:1185 +#: ../../include/class/ModuleTemplates.class.php:1417 +#: ../../include/class/WebServerModuleDebug.class.php:359 +#: ../../include/class/AgentWizard.class.php:5834 +#: ../../operation/visual_console/view.php:806 +msgid "Success" +msgstr "Finalizado correctamente" + +#: ../../enterprise/godmode/services/services.elements.php:847 +msgid "Add element" +msgstr "AƱadir elemento" + +#: ../../enterprise/godmode/services/services.elements.php:858 +msgid "Edit element" +msgstr "Editar elemento" + +#: ../../enterprise/godmode/setup/setup_history.php:88 +msgid "Method does not exist" +msgstr "El mĆ©todo no existe" + +#: ../../enterprise/godmode/setup/setup_history.php:163 +#: ../../include/functions_config.php:1529 +msgid "Host" +msgstr "Host" + +#: ../../enterprise/godmode/setup/setup_history.php:208 +#: ../../include/functions_config.php:1550 +msgid "Database user" +msgstr "Usuario de la base de datos" + +#: ../../enterprise/godmode/setup/setup_history.php:223 +#: ../../include/functions_config.php:1554 +msgid "Database password" +msgstr "ContraseƱa de la base de datos" + +#: ../../enterprise/godmode/setup/setup_history.php:227 +msgid "Configure connection target" +msgstr "Configurar objetivo de la conexiĆ³n" + +#: ../../enterprise/godmode/setup/setup_history.php:241 +msgid "Active to historical settings" +msgstr "Ajustes de activa a histĆ³rica" + +#: ../../enterprise/godmode/setup/setup_history.php:245 +#, php-format +msgid "" +"Data will be available in active database as time as days you specify here. Older " +"information will be sent to historical database. Note data will be purged from active " +"database after %d days." +msgstr "" +"Los datos estarĆ”n activos en la base de datos activa tanto tiempo como especifique " +"aquĆ­. La informaciĆ³n mĆ”s antigua se enviarĆ” a la base de datos histĆ³rica. Los datos " +"se purgarĆ”n de la base de datos activa despuĆ©s de %d dĆ­as." + +#: ../../enterprise/godmode/setup/setup_history.php:251 +msgid "Data days old to keep in active database" +msgstr "AntigĆ¼edad de los datos a mantener en la base de datos activa" + +#: ../../enterprise/godmode/setup/setup_history.php:266 +msgid "" +"Number of rows to be sent to historical database each 'delay' seconds. If you " +"experience issues running pandora_db, try decreasing this value." +msgstr "" +"NĆŗmero de filas a enviar a la base de datos histĆ³rica cada 'retraso' en segundos. Si " +"tiene problemas al ejecutar pandora_db, pruebe a reducir este valor." + +#: ../../enterprise/godmode/setup/setup_history.php:270 +msgid "Transference block size (Step)" +msgstr "TamaƱo del bloque de transferencia (Step)" + +#: ../../enterprise/godmode/setup/setup_history.php:275 +msgid "Delay between transferences (seconds)" +msgstr "Retraso entre transferencias (segundos)" + +#: ../../enterprise/godmode/setup/setup_history.php:280 +msgid "Historical data settings" +msgstr "Ajustes de datos de histĆ³rico" + +#: ../../enterprise/godmode/setup/setup_history.php:282 +msgid "Maximum historical data age (days)" +msgstr "AntigĆ¼edad mĆ”xima de los datos de histĆ³rico (dĆ­as)" + +#: ../../enterprise/godmode/setup/setup_history.php:287 +msgid "Maximum historical string data age (days)" +msgstr "AntigĆ¼edad mĆ”xima de los datos de cadenas de histĆ³rico (dĆ­as)" + +#: ../../enterprise/godmode/setup/setup_history.php:292 +msgid "Data older than 'days' is compacted in order to improve disk utilization." +msgstr "" +"Los datos de mĆ”s antigĆ¼edad de 'dĆ­as' se compactan para mejorar la utilizaciĆ³n del " +"disco." + +#: ../../enterprise/godmode/setup/setup_history.php:297 +msgid "" +"Automatically create partitions on specific database IDB files (tagente_datos, " +"tagente_datos_string, tevento). Monthly partitions." +msgstr "" +"Crear automĆ”ticamente particiones en archivos especĆ­ficos de la base de datos IDB " +"(tagent_data, tagent_data_string, tevent). Particiones mensuales." + +#: ../../enterprise/godmode/setup/setup_history.php:301 +msgid "Automatic partition of big tables." +msgstr "ParticiĆ³n automĆ”tica de grandes tablas." + +#: ../../enterprise/godmode/setup/setup_history.php:312 +msgid "Historical events settings" +msgstr "Ajustes de eventos de histĆ³rico" + +#: ../../enterprise/godmode/setup/setup_history.php:323 +#, php-format +msgid "" +"Events will remain in active database a maximum of specified days, then they will be " +"transferred to historical database. Note events will be purged from active database " +"after %d days." +msgstr "" +"Los eventos permanecerĆ”n en la base de datos activa un mĆ”ximo de dĆ­as especificados, " +"despuĆ©s se transferirĆ”n a la base de datos histĆ³rica. Los eventos se purgarĆ”n de la " +"base de datos activa despuĆ©s de %d dĆ­as." + +#: ../../enterprise/godmode/setup/setup_history.php:329 +msgid "Events days old to keep in active database" +msgstr "AntigĆ¼edad de eventos para permanecer en la base de datos activa" + +#: ../../enterprise/godmode/setup/setup_history.php:344 +msgid "Events will be purged from historical database after specified days." +msgstr "" +"Los eventos se purgarĆ”n de la base de datos histĆ³rica despuĆ©s del nĆŗmero de dĆ­as " +"especificado." + +#: ../../enterprise/godmode/setup/setup_history.php:348 +msgid "Maximum historical events age (days)" +msgstr "AntigĆ¼edad mĆ”xima de los eventos de histĆ³rico (dĆ­as)" + +#: ../../enterprise/godmode/setup/setup_history.php:365 +msgid "Enable historical events" +msgstr "Habilitar eventos de histĆ³rico" + +#: ../../enterprise/godmode/setup/setup_history.php:377 +msgid "Customize settings" +msgstr "Personalizar configuraciĆ³n" + +#: ../../enterprise/godmode/setup/setup_history.php:389 +msgid "Enable historical database" +msgstr "Habilitar base de datos histĆ³rica" + +#: ../../enterprise/godmode/setup/setup_history.php:411 +msgid "History database connection is available." +msgstr "La conexiĆ³n con la base de datos histĆ³rica estĆ” disponible." + +#: ../../enterprise/godmode/setup/setup_history.php:418 +#, php-format +msgid "History database connection failed: %s" +msgstr "No se ha podido conectar con la base de datos histĆ³rica: %s" + +#: ../../enterprise/godmode/setup/setup_history.php:434 +msgid "History database schema is installed." +msgstr "Es esquema de la base de datos histĆ³rica estĆ” instalado." + +#: ../../enterprise/godmode/setup/setup_history.php:443 +#, php-format +msgid "Database is not installed: %s" +msgstr "Base de datos no instalada: %s" + +#: ../../enterprise/godmode/setup/setup_history.php:448 +msgid "Install database schema" +msgstr "Instalar esquema de base de datos" + +#: ../../enterprise/godmode/setup/setup_history.php:449 +msgid "This action will install the schema into the target, are you sure?" +msgstr "Esta acciĆ³n instalarĆ” el esquema en el objetivo, ĀæestĆ” seguro?" + +#: ../../enterprise/godmode/setup/setup_history.php:471 +msgid "History database schema is up to date with active database." +msgstr "" +"El esquema de la base de datos histĆ³rica estĆ” actualizado con la base de datos activa." + +#: ../../enterprise/godmode/setup/setup_history.php:480 +#, php-format +msgid "Database is not updated: %s" +msgstr "La base de datos no estĆ” actualizada: %s" + +#: ../../enterprise/godmode/setup/setup_history.php:495 +msgid "Current schema: " +msgstr "Esquema actual: " + +#: ../../enterprise/godmode/setup/setup_history.php:502 +msgid "Upgrade database schema" +msgstr "Actualizar el esquema de la base de datos" + +#: ../../enterprise/godmode/setup/setup_history.php:503 +msgid "" +"This action will schedule the installation or upgrade of database schema into the " +"target, are you sure?" +msgstr "" +"Esta acciĆ³n programarĆ” la instalaciĆ³n o la actualizaciĆ³n del esquema de la base de " +"datos en el objetivo, ĀæestĆ” seguro?" + +#: ../../enterprise/godmode/setup/setup_history.php:517 +#: ../../godmode/setup/performance.php:696 +msgid "Database maintenance status" +msgstr "Estado de mantenimiento de la base de datos" + +#: ../../enterprise/godmode/setup/setup_history.php:536 +msgid "" +"By enabling historical database, target connection will be tested. If needed, " +"database schema will be applied on your selected target, do you want to proceed?" +msgstr "" +"Al habilitar la base de datos histĆ³rica, se probarĆ” la conexiĆ³n con el objetivo. Si " +"lo necesita, el esquema de la base de datos se aplicarĆ” al objetivo seleccionado, " +"Āædesea proceder?" + +#: ../../enterprise/godmode/setup/setup_history.php:537 +msgid "" +"Changing historical database target, schema will be recreated in new one, but old " +"data will remain in previous node, unlinked from this console and not maintained, do " +"you want to proceed?" +msgstr "" +"Al cambiar el objetivo de la base de datos histĆ³rica, el esquema se recrearĆ” en uno " +"nuevo, pero los datos antiguos permanecerĆ”n en el nodo anterior, sin estar enlazados " +"con la consola y sin estar mantenidos, Āædesea proceder?" + +#: ../../enterprise/godmode/setup/setup_history.php:539 +#, php-format +msgid "" +"Disabling historical database, you will not keep any data older than %d days. Are you " +"sure?" +msgstr "" +"Al deshabilitar la base de datos histĆ³rica, no tendrĆ” datos de mayor antigĆ¼edad que " +"%d dĆ­as. ĀæEstĆ” seguro?" + +#: ../../enterprise/godmode/setup/setup_history.php:543 +#, php-format +msgid "" +"Historical database allows you to keep data older than %d days. This action will " +"produce no changes. Historical database will remain disabled." +msgstr "" +"La base de datos histĆ³rica le permite mantener datos de mĆ”s antigĆ¼edad que %d dĆ­as. " +"EstĆ” acciĆ³n no producirĆ” cambios. La base de datos histĆ³rica permanecerĆ” " +"deshabilitada." + +#: ../../enterprise/godmode/setup/setup_history.php:548 +msgid "" +"By changing historical database target, the new connection will be tested. If needed, " +"database schema will be applied on your selected target. Information stored in " +"previous configuration will be IGNORED, do you want to proceed?" +msgstr "" +"Al cambiar el objetivo de la base de datos histĆ³rica, se probarĆ” la nueva conexiĆ³n. " +"Si lo necesita, el esquema de la base de datos se aplicarĆ” en el objetivo " +"seleccionado. La informaciĆ³n almacenada en configuraciones previas serĆ” IGNORADA, " +"Āædesea proceder?" + +#: ../../enterprise/godmode/setup/setup_history.php:551 +msgid "Please ensure all fields matches your needs." +msgstr "AsegĆŗrese de que todos los campos coinciden con sus necesidades." + +#: ../../enterprise/godmode/setup/setup_history.php:683 +msgid "Update scheduled." +msgstr "Actualizar programados." + +#: ../../enterprise/godmode/setup/setup.php:47 ../../include/functions_config.php:397 +msgid "Forward SNMP traps to agent (if exist)" +msgstr "Reenviar los traps SNMP al agente (si existe)" + +#: ../../enterprise/godmode/setup/setup.php:48 +msgid "Yes and change status" +msgstr "SĆ­ y cambiar estado" + +#: ../../enterprise/godmode/setup/setup.php:56 +msgid "Yes without changing status" +msgstr "SĆ­, sin cambiar estado" + +#: ../../enterprise/godmode/setup/setup.php:77 ../../include/functions_config.php:401 +msgid "Use Enterprise ACL System" +msgstr "Utilizar el sistema ACL Enterprise" + +#: ../../enterprise/godmode/setup/setup.php:104 +msgid "Metaconsole DB engine" +msgstr "Motor BD de la Metaconsola" + +#: ../../enterprise/godmode/setup/setup.php:107 +#: ../../enterprise/include/class/MySQL.app.php:420 +msgid "MySQL" +msgstr "MySQL" + +#: ../../enterprise/godmode/setup/setup.php:122 +msgid "Metaconsole DB host" +msgstr "Host BD Metaconsola" + +#: ../../enterprise/godmode/setup/setup.php:136 +msgid "Metaconsole DB name" +msgstr "Nombre BD Metaconsola" + +#: ../../enterprise/godmode/setup/setup.php:150 +msgid "Metaconsole DB user" +msgstr "Usuario BD Metaconsola" + +#: ../../enterprise/godmode/setup/setup.php:164 +msgid "Metaconsole DB password" +msgstr "ContraseƱa BD Metaconsola" + +#: ../../enterprise/godmode/setup/setup.php:191 +msgid "Events Configuration Information" +msgstr "InformaciĆ³n de configuraciĆ³n de evntos" + +#: ../../enterprise/godmode/setup/setup.php:193 +msgid "" +" If you are replicating events, events validated or deleted on the metaconsole WILL " +"NOT be deleted or validated here. This option is just to allow local pandora users to " +"see events, but not to operate with them. Operation, when event replication is " +"enabled, should be done only in metaconsole" +msgstr "" +" Si estĆ” replicando eventos, los eventos validados o eliminados en la Metaconsola NO " +"se eliminarĆ”n o validarĆ”n aquĆ­. Esta opciĆ³n solo permite a los usuarios locales de " +"Pandora FMS ver los eventos, pero gestionarlos.\r\n" +"Su gestiĆ³n solo puede llevarse a cabo en la Metaconsola cuando la replicaciĆ³n de " +"eventos estĆ” activa." + +#: ../../enterprise/godmode/setup/setup.php:198 ../../include/functions_config.php:458 +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:437 +msgid "Activate Log Collector" +msgstr "Activar el colector de logs" + +#: ../../enterprise/godmode/setup/setup.php:305 +msgid "Critical threshold for occupied addresses" +msgstr "Umbral crĆ­tico para las direcciones ocupadas" + +#: ../../enterprise/godmode/setup/setup.php:317 +msgid "Warning threshold for occupied addresses" +msgstr "Umbral de advertencia para las direcciones ocupadas" + +#: ../../enterprise/godmode/setup/setup.php:329 ../../include/functions_config.php:453 +msgid "SAP/R3 Plugin Licence" +msgstr "Licencia plugin SAP/R3" + +#: ../../enterprise/godmode/setup/setup.php:345 +msgid "Enterprise options" +msgstr "Opciones Enterprise" + +#: ../../enterprise/godmode/setup/setup.php:505 +#, php-format +msgid "" +"Password related configuration only applies when local %s authentication is selected." +msgstr "" +"La configuraciĆ³n relacionada con la contraseƱa solo aplica cuando la autenticaciĆ³n " +"local %s estĆ” seleccionada." + +#: ../../enterprise/godmode/setup/setup.php:514 +msgid "Enterprise password policy" +msgstr "PolĆ­tica de contraseƱa Enterprise" + +#: ../../enterprise/godmode/setup/setup_skins.php:38 +#: ../../enterprise/godmode/setup/edit_skin.php:44 +msgid "Skins configuration" +msgstr "ConfiguraciĆ³n de apariencia" + +#: ../../enterprise/godmode/setup/setup_skins.php:77 +msgid "Error deleting skin" +msgstr "Error al borrar la apariencia" + +#: ../../enterprise/godmode/setup/setup_skins.php:79 +msgid "Successfully deleted skin" +msgstr "Apariencia eliminada correctamente" + +#: ../../enterprise/godmode/setup/setup_skins.php:125 +msgid "Skin name" +msgstr "Nombre de la apariencia" + +#: ../../enterprise/godmode/setup/setup_skins.php:126 +#: ../../enterprise/godmode/setup/edit_skin.php:241 +msgid "Relative path" +msgstr "Ruta relativa" + +#: ../../enterprise/godmode/setup/setup_skins.php:153 +msgid "There are no defined skins" +msgstr "No hay apariencia definida" + +#: ../../enterprise/godmode/setup/setup_skins.php:159 +msgid "Create skin" +msgstr "Crear apariencia" + +#: ../../enterprise/godmode/setup/setup_module_library.php:68 +#: ../../enterprise/godmode/wizards/Cloud.class.php:381 +#: ../../godmode/module_library/module_library_view.php:163 +msgid "Invalid username or password" +msgstr "Usuario o contraseƱa no vĆ”lidos" + +#: ../../enterprise/godmode/setup/setup_module_library.php:69 +#: ../../godmode/module_library/module_library_view.php:162 +msgid "Problem with authentication. Check your internet connection" +msgstr "Problema de autenticaciĆ³n. Compruebe su conexiĆ³n a Internet." + +#: ../../enterprise/godmode/setup/setup_metaconsole.php:31 +msgid "Metaconsole setup" +msgstr "ConfiguraciĆ³n de la Metaconsola" + +#: ../../enterprise/godmode/setup/setup_metaconsole.php:195 +msgid "Pandora FMS Metaconsole item edition" +msgstr "EdiciĆ³n de elementos de la Metaconsola de Pandora FMS" + +#: ../../enterprise/godmode/setup/setup_metaconsole.php:202 +msgid "" +"Token previously configured on the destination Pandora console in order to use " +"delegated authentification." +msgstr "" +"Token configurado anteriormente en la consola de destino de Pandora FMS con el fin de " +"utilizar la autentificaciĆ³n delegada." + +#: ../../enterprise/godmode/setup/setup_metaconsole.php:274 +msgid "Console URLxxxxxx" +msgstr "Consola URLxxxxxx" + +#: ../../enterprise/godmode/setup/setup_log_collector.php:37 +msgid "ElasticSearch IP" +msgstr "IP de ElasticSearch" + +#: ../../enterprise/godmode/setup/setup_log_collector.php:37 +msgid "IP of ElasticSearch server" +msgstr "IP del servidor ElasticSearch" + +#: ../../enterprise/godmode/setup/setup_log_collector.php:39 +msgid "ElasticSearch Port" +msgstr "Puerto ElasticSearch" + +#: ../../enterprise/godmode/setup/setup_log_collector.php:39 +msgid "Port of ElasticSearch server" +msgstr "Puerto del servidor ElasticSearch" + +#: ../../enterprise/godmode/setup/setup_log_collector.php:44 +#: ../../include/functions_config.php:1511 +msgid "Days to purge old information" +msgstr "DĆ­as para purgar informaciĆ³n antigua" + +#: ../../enterprise/godmode/setup/setup_log_collector.php:48 +msgid "ElasticSearch Status" +msgstr "Estado de ElasticSearch" + +#: ../../enterprise/godmode/setup/setup_auth.php:34 +msgid "Active directory" +msgstr "Directorio activo" + +#: ../../enterprise/godmode/setup/setup_auth.php:35 +msgid "SAML" +msgstr "SAML" + +#: ../../enterprise/godmode/setup/setup_auth.php:87 +msgid "Force automatically create profile user" +msgstr "Forzar creaciĆ³n automĆ”tica de perfil de usuario" + +#: ../../enterprise/godmode/setup/setup_auth.php:92 +msgid "Local command" +msgstr "Comando local" + +#: ../../enterprise/godmode/setup/setup_auth.php:95 +msgid "PHP function" +msgstr "FunciĆ³n PHP" + +#: ../../enterprise/godmode/setup/setup_auth.php:99 +#: ../../enterprise/include/functions_tasklist.php:254 +#: ../../enterprise/include/functions_tasklist.php:341 +#: ../../enterprise/operation/reporting/custom_reporting.php:20 +#: ../../godmode/tag/tag.php:281 ../../godmode/tag/edit_tag.php:239 +#: ../../include/functions_cron.php:575 ../../include/functions_cron.php:666 +#: ../../operation/search_users.php:45 +msgid "Email" +msgstr "Correo electrĆ³nico" + +#: ../../enterprise/godmode/setup/setup_auth.php:172 +#: ../../enterprise/godmode/setup/setup_auth.php:456 +#: ../../enterprise/godmode/setup/setup_auth.php:1251 +msgid "Profiles selected" +msgstr "Perfiles seleccionados" + +#: ../../enterprise/godmode/setup/setup_auth.php:173 +#: ../../enterprise/godmode/setup/setup_auth.php:457 +#: ../../enterprise/godmode/setup/setup_auth.php:1252 +msgid "Groups selected" +msgstr "Grupos seleccionados" + +#: ../../enterprise/godmode/setup/setup_auth.php:175 +#: ../../enterprise/godmode/setup/setup_auth.php:232 +#: ../../include/functions_profile.php:216 +msgid "No hierarchy" +msgstr "No hay jerarquĆ­a" + +#: ../../enterprise/godmode/setup/setup_auth.php:176 +#: ../../enterprise/godmode/setup/setup_auth.php:233 +msgid "LDAP Attributes" +msgstr "Atributos LDAP" + +#: ../../enterprise/godmode/setup/setup_auth.php:177 +#: ../../enterprise/godmode/setup/setup_auth.php:234 +#: ../../enterprise/godmode/setup/setup_auth.php:460 +#: ../../enterprise/godmode/setup/setup_auth.php:512 +#: ../../enterprise/godmode/setup/setup_auth.php:1255 +#: ../../enterprise/godmode/setup/setup_auth.php:1309 +#: ../../godmode/setup/snmp_wizard.php:44 +msgid "OP" +msgstr "OP" + +#: ../../enterprise/godmode/setup/setup_auth.php:229 +#: ../../enterprise/godmode/setup/setup_auth.php:508 +#: ../../enterprise/godmode/setup/setup_auth.php:1305 +#: ../../godmode/groups/configure_group.php:122 ../../godmode/groups/group_list.php:380 +#: ../../godmode/users/profile_list.php:323 ../../godmode/menu.php:152 +msgid "Profiles" +msgstr "Perfiles" + +#: ../../enterprise/godmode/setup/setup_auth.php:242 +#: ../../enterprise/godmode/setup/setup_auth.php:519 +#: ../../enterprise/godmode/setup/setup_auth.php:1316 +msgid "Select profile" +msgstr "Seleccionar perfil" + +#: ../../enterprise/godmode/setup/setup_auth.php:287 +#: ../../enterprise/godmode/setup/setup_auth.php:557 +#: ../../enterprise/godmode/setup/setup_auth.php:1359 +msgid "Add new permissions" +msgstr "Agregar nuevos permisos" + +#: ../../enterprise/godmode/setup/setup_auth.php:385 +#: ../../enterprise/godmode/setup/setup_auth.php:1180 +msgid "New users will be able to log in to the nodes." +msgstr "Los usuarios nuevos podrĆ”n conectarse en los nodos." + +#: ../../enterprise/godmode/setup/setup_auth.php:459 +#: ../../enterprise/godmode/setup/setup_auth.php:511 +#: ../../enterprise/godmode/setup/setup_auth.php:1254 +#: ../../enterprise/godmode/setup/setup_auth.php:1308 +msgid "AD Groups" +msgstr "Grupos AD" + +#: ../../enterprise/godmode/setup/setup_auth.php:738 +#: ../../enterprise/godmode/setup/setup_auth.php:854 +msgid "You must select a profile from the list of profiles." +msgstr "Selecciona un perfil de la lista de perfiles" + +#: ../../enterprise/godmode/setup/setup_auth.php:743 +#: ../../enterprise/godmode/setup/setup_auth.php:859 +msgid "You must select a group from the list of groups." +msgstr "Seleccione un grupo de la lista de grupos" + +#: ../../enterprise/godmode/setup/setup_auth.php:1021 +#: ../../include/functions_config.php:670 +msgid "MySQL host" +msgstr "DirecciĆ³n de MySQL" + +#: ../../enterprise/godmode/setup/setup_auth.php:1084 +msgid "SimpleSAML path" +msgstr "Ruta de SimpleSAML" + +#: ../../enterprise/godmode/setup/setup_auth.php:1085 +msgid "Directory where your 'simplesamlphp' folder is located." +msgstr "Directorio donde se encuentra la carpeta 'simplesamlphp'." + +#: ../../enterprise/godmode/setup/setup_auth.php:1091 +msgid "SAML source" +msgstr "SAML de origen" + +#: ../../enterprise/godmode/setup/setup_auth.php:1092 +msgid "Authsource name, e.g. 'example-userpass'" +msgstr "Nombre authsource, por ejemplo: 'example-userpass'" + +#: ../../enterprise/godmode/setup/setup_auth.php:1099 +msgid "SAML user id attribute" +msgstr "Atribito de ID de usuario SAML" + +#: ../../enterprise/godmode/setup/setup_auth.php:1104 +msgid "SAML mail attribute" +msgstr "Atributo de correo SAML" + +#: ../../enterprise/godmode/setup/setup_auth.php:1105 +msgid "" +"SAML field where search for the user email (while autocreate remote users is enabled)" +msgstr "" +"Campo SAML donde buscar el correo electrĆ³nico del usuario (mientras auto crear " +"usuarios remotos estĆ© activado)" + +#: ../../enterprise/godmode/setup/setup_auth.php:1112 +msgid "SAML group name attribute" +msgstr "Atributo de nombre de grupo SAML" + +#: ../../enterprise/godmode/setup/setup_auth.php:1113 +msgid "" +"SAML field where search for the group name (while autocreate remote users is enabled)" +msgstr "" +"Campo SAML donde buscar el nombre del grupo (mientras auto crear usuarios remotos " +"estĆ© activado)" + +#: ../../enterprise/godmode/setup/setup_auth.php:1120 +msgid "Simple attribute / Multivalue attribute" +msgstr "Atributo simple/atributo con valores mĆŗltiples" + +#: ../../enterprise/godmode/setup/setup_auth.php:1125 +msgid "SAML profiles and tag attribute" +msgstr "Atributo de perfiles y etiquetas SAML" + +#: ../../enterprise/godmode/setup/setup_auth.php:1130 +msgid "Profile attribute" +msgstr "Atributo de perfil" + +#: ../../enterprise/godmode/setup/setup_auth.php:1135 +msgid "Tag attribute" +msgstr "Atributo de etiqueta" + +#: ../../enterprise/godmode/setup/setup_auth.php:1140 +msgid "SAML profile and tags prefix" +msgstr "Prefijo de perfiles y etiquetas SAML" + +#: ../../enterprise/godmode/setup/setup_acl.php:46 +msgid "Enterprise ACL setup" +msgstr "ConfiguraciĆ³n ACL Enterprise" + +#: ../../enterprise/godmode/setup/setup_acl.php:69 +msgid "ACL element was deleted successfully" +msgstr "El elemento ACL se eliminĆ³ correctamente" + +#: ../../enterprise/godmode/setup/setup_acl.php:71 +msgid "There was a problem delete ACL element" +msgstr "Hubo un problema al eliminar el elemento ACL" + +#: ../../enterprise/godmode/setup/setup_acl.php:417 +msgid "This record already exists in the database" +msgstr "Este registro ya existe en la base de datos." + +#: ../../enterprise/godmode/setup/setup_acl.php:422 +msgid "ACL element is added successfully" +msgstr "El elemento ACL se agrega correctamente" + +#: ../../enterprise/godmode/setup/setup_acl.php:424 +msgid "There was a problem adding ACL element" +msgstr "Hubo un problema al agregar el elemento ACL" + +#: ../../enterprise/godmode/setup/setup_acl.php:464 +#: ../../enterprise/godmode/setup/setup_acl.php:539 +msgid "Add new ACL element to profile" +msgstr "AƱadir nuevo elemento ACL al perfil" + +#: ../../enterprise/godmode/setup/setup_acl.php:469 +#: ../../enterprise/godmode/setup/setup_acl.php:544 +#: ../../enterprise/godmode/setup/setup_acl.php:592 +msgid "Section" +msgstr "SecciĆ³n" + +#: ../../enterprise/godmode/setup/setup_acl.php:476 +#: ../../enterprise/godmode/setup/setup_acl.php:694 +msgid "Mobile" +msgstr "MĆ³vil" + +#: ../../enterprise/godmode/setup/setup_acl.php:480 +#: ../../enterprise/godmode/setup/setup_acl.php:690 +msgid "Head search" +msgstr "BĆŗsqueda de encabezado" + +#: ../../enterprise/godmode/setup/setup_acl.php:497 +#: ../../enterprise/godmode/setup/setup_acl.php:548 +#: ../../enterprise/godmode/setup/setup_acl.php:593 +msgid "Section 2" +msgstr "SecciĆ³n 2" + +#: ../../enterprise/godmode/setup/setup_acl.php:514 +#: ../../enterprise/godmode/setup/setup_acl.php:552 +#: ../../enterprise/godmode/setup/setup_acl.php:594 +msgid "Section 3" +msgstr "SecciĆ³n 3" + +#: ../../enterprise/godmode/setup/setup_acl.php:538 +msgid "Hidden" +msgstr "Oculto" + +#: ../../enterprise/godmode/setup/setup_acl.php:570 +msgid "Filter by profile" +msgstr "Filtrar por perfil" + +#: ../../enterprise/godmode/setup/setup_acl.php:591 +#: ../../godmode/users/configure_profile.php:265 +#: ../../godmode/massive/massive_delete_profiles.php:151 +#: ../../godmode/massive/massive_add_profiles.php:202 +#: ../../include/functions_profile.php:213 ../../operation/users/user_edit.php:813 +msgid "Profile name" +msgstr "Nombre del perfil" + +#: ../../enterprise/godmode/setup/setup_acl.php:749 +#: ../../enterprise/godmode/setup/setup_acl.php:759 +msgid "Invalid" +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 +#: ../../include/ajax/visual_console_builder.ajax.php:343 +#: ../../include/functions_visual_map.php:2841 +msgid "No data to show" +msgstr "No hay datos que mostrar" + +#: ../../enterprise/godmode/setup/edit_skin.php:47 +msgid "Successfully updated skin" +msgstr "Apariencia actualizada correctamente" + +#: ../../enterprise/godmode/setup/edit_skin.php:49 +#: ../../enterprise/godmode/setup/edit_skin.php:67 +msgid "Error updating skin" +msgstr "Error al actualizar la apariencia" + +#: ../../enterprise/godmode/setup/edit_skin.php:197 +msgid "Error creating skin" +msgstr "Error al crear la apariencia" + +#: ../../enterprise/godmode/setup/edit_skin.php:201 +msgid "Successfully created skin" +msgstr "Apariencia creada correctamente" + +#: ../../enterprise/godmode/setup/edit_skin.php:242 +msgid "" +"Zip file with skin subdirectory. The name of the zip file only can have alphanumeric " +"characters." +msgstr "" +"Archivo zip con subdirectorio apariencia. El nombre del archivo zip solo puede tener " +"caracteres alfanumĆ©ricos." + +#: ../../enterprise/godmode/setup/edit_skin.php:267 +msgid "Group/s" +msgstr "Grupo(s)" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:147 +#: ../../enterprise/godmode/reporting/graph_template_wizard.php:80 +msgid "Cleanup sucessfully" +msgstr "Limpieza correcta" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:150 +#: ../../enterprise/godmode/reporting/graph_template_wizard.php:83 +msgid "Cleanup error" +msgstr "Error al borrar contenido" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:195 +msgid "No item could be applied to report." +msgstr "No se ha podido aplicar ningĆŗn elemento al informe." + +#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:198 +#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:156 +msgid "Sucessfully applied" +msgstr "Aplicado correctamente" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:198 +msgid "reports" +msgstr "Informes" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:198 +msgid "items" +msgstr "elementos" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:200 +#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:158 +msgid "Could not be applied" +msgstr "No se pudo aplicar." + +#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:207 +#: ../../godmode/massive/massive_operations.php:347 +msgid "" +"In order to perform massive operations, PHP needs a correct configuration in timeout " +"parameters. Please, open your PHP configuration file (php.ini) for example: sudo " +"vi /etc/php5/apache2/php.ini;
And set your timeout parameters to a correct " +"value:
max_execution_time = 0 and max_input_time = -1" +msgstr "" +"Para poder realizar operaciones masivas, PHP necesitas una configuraciĆ³n correcta de " +"los parĆ”metros de tiempo de espera. Por favor, abre el archivo de configuraciĆ³n PHP " +"(php.ini), por ejemplo: sudo vi /etc/php5/apache2/php.ini;
y fija los " +"parƔmetros del tiempo de espera en un valor correcto:
max_execution_time = 0 y max_input_time = -1" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:221 +msgid "Create template report wizard" +msgstr "Asistente de creaciĆ³n de plantillas de informes" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:266 +#: ../../enterprise/godmode/reporting/graph_template_wizard.php:197 +msgid "Clean up template" +msgstr "Vaciar la plantilla" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:273 +msgid "Create report per agent" +msgstr "Crear informe por agente" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:282 +#: ../../enterprise/include/functions_cron.php:232 +#: ../../enterprise/include/functions_tasklist.php:340 +#: ../../enterprise/include/functions_reporting_csv.php:2218 +#: ../../enterprise/include/functions_reporting_csv.php:2222 +#: ../../godmode/reporting/reporting_builder.php:908 +#: ../../include/functions_cron.php:665 ../../operation/search_reports.php:42 +#: ../../operation/search_reports.php:58 +#: ../../operation/reporting/custom_reporting.php:34 +msgid "Report name" +msgstr "Nombre del informe" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:282 +msgid "" +"Left in blank if you want to use default name: Template name - agents (num agents) - " +"Date" +msgstr "" +"DĆ©jalo en blanco si quieres usar el nombre por defecto: Nombre plantilla - agentes " +"(num agentes) - Fecha" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:288 +#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:236 +msgid "Target group" +msgstr "Grupo objetivo" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:327 +msgid "Filter by" +msgstr "Filtrar por" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:330 +#: ../../godmode/reporting/create_container.php:566 +#: ../../godmode/reporting/create_container.php:629 +#: ../../mobile/operation/modules.php:194 ../../mobile/operation/modules.php:195 +#: ../../mobile/operation/modules.php:308 ../../mobile/operation/modules.php:309 +#: ../../include/ajax/heatmap.ajax.php:126 ../../include/ajax/heatmap.ajax.php:296 +#: ../../operation/heatmap.php:109 ../../operation/agentes/group_view.php:327 +msgid "Tag" +msgstr "Etiqueta" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:398 +msgid "Filter tag" +msgstr "Filtro por etiqueta" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:412 +#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:422 +#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:172 +#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:177 +#: ../../enterprise/godmode/reporting/graph_template_wizard.php:228 +#: ../../enterprise/godmode/reporting/graph_template_wizard.php:234 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:832 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:834 +#: ../../include/functions_snmp_browser.php:1519 +#: ../../include/functions_snmp_browser.php:1521 +msgid "Select all" +msgstr "Seleccionar todo" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:415 +#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:281 +#: ../../enterprise/godmode/reporting/graph_template_wizard.php:228 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:832 +msgid "Agents available" +msgstr "Agentes disponibles" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:425 +#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:287 +#: ../../enterprise/godmode/reporting/reporting_builder.template_editor.php:208 +#: ../../enterprise/godmode/reporting/graph_template_wizard.php:234 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:834 +msgid "Agents to apply" +msgstr "Agentes para aplicar" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:466 +#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:304 +#: ../../enterprise/godmode/reporting/graph_template_wizard.php:259 +msgid "Add agents to template" +msgstr "AƱadir agentes a la plantilla" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:478 +#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:306 +#: ../../enterprise/godmode/reporting/graph_template_wizard.php:263 +msgid "Undo agents to template" +msgstr "Deshacer aƱadir agentes a la plantilla" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:499 +#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:324 +#: ../../enterprise/godmode/reporting/graph_template_wizard.php:281 +msgid "Apply template" +msgstr "Aplicar plantilla" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:830 +#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:861 +#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:631 +#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:661 +#: ../../enterprise/godmode/reporting/graph_template_wizard.php:443 +#: ../../enterprise/godmode/reporting/graph_template_wizard.php:475 +msgid "Please set template distinct than " +msgstr "Por favor, introduce una plantilla distinta a " + +#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:834 +#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:635 +msgid "Please set agent distinct than " +msgstr "Por favor, escoge un agente distinto a " + +#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:856 +#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:656 +#: ../../enterprise/godmode/reporting/graph_template_wizard.php:470 +msgid "" +"This will be delete all reports created in previous template applications. Do you " +"want to continue?" +msgstr "" +"Esta acciĆ³n eliminarĆ” todos los informes creados en aplicaciones anteriores de " +"plantillas. ĀæQuieres continuar?" + +#: ../../enterprise/godmode/reporting/aws_view.php:53 +msgid "Instance" +msgstr "Instancia" + +#: ../../enterprise/godmode/reporting/aws_view.php:54 +#: ../../include/class/Diagnostics.class.php:722 +msgid "CPU" +msgstr "CPU" + +#: ../../enterprise/godmode/reporting/aws_view.php:55 +msgid "IO read" +msgstr "Lectura IO" + +#: ../../enterprise/godmode/reporting/aws_view.php:56 +msgid "IO write" +msgstr "Escritura IO" + +#: ../../enterprise/godmode/reporting/aws_view.php:57 +msgid "Disk read" +msgstr "Lectura de disco" + +#: ../../enterprise/godmode/reporting/aws_view.php:58 +msgid "Disk write" +msgstr "Escritura en disco" + +#: ../../enterprise/godmode/reporting/aws_view.php:59 +msgid "Network in" +msgstr "Entrada de red" + +#: ../../enterprise/godmode/reporting/aws_view.php:60 +msgid "Network out" +msgstr "Salida de red" + +#: ../../enterprise/godmode/reporting/aws_view.php:106 +#: ../../enterprise/godmode/reporting/aws_view.php:139 +#: ../../enterprise/operation/menu.php:45 +msgid "AWS View" +msgstr "Vista AWS" + +#: ../../enterprise/godmode/reporting/aws_view.php:134 +msgid "Failed to retrieve AWS information using selected account." +msgstr "No se ha podido obtener informaciĆ³n de AWS a travĆ©s de la cuenta seleccionada." + +#: ../../enterprise/godmode/reporting/aws_view.php:153 +msgid "AWS credentials not validated." +msgstr "No se han validado los credenciales de AWS." + +#: ../../enterprise/godmode/reporting/aws_view.php:168 +msgid "Discovery Cloud: AWS" +msgstr "Discovery Cloud: AWS" + +#: ../../enterprise/godmode/reporting/aws_view.php:177 +msgid "Please, select an account: " +msgstr "Seleccione una cuenta: " + +#: ../../enterprise/godmode/reporting/aws_view.php:186 +msgid "CREATE CLOUD MONITORING DISCOVERY TASK" +msgstr "CREAR TAREA DE DISCOVERY DE MONITORIZACIƓN EN LA NUBE" + +#: ../../enterprise/godmode/reporting/aws_view.php:189 +msgid "" +"Within this view you will find information collected using Discovery Cloud AWS task. " +"You will be able to see the most relevant information about your infrastructure, such " +"as the current cost of your contracted services, the number of instances per region " +"or resource usage metrics. In order to collect this information you must create a " +"Cloud Monitoring Discovery task." +msgstr "" +"En esta vista encontrarĆ” la informaciĆ³n recogida mediante la tarea de Discovery Cloud " +"AWS. PodrĆ” ver la informaciĆ³n mĆ”s relevante sobre su infraestructura, como el coste " +"actual de los servicios contratados, el nĆŗmero de instancias por regiĆ³n o las " +"mĆ©tricas de uso de los recursos. Para recoger esta informaciĆ³n, cree una tarea de " +"Cloud Monitoring Discovery." + +#: ../../enterprise/godmode/reporting/aws_view.php:192 +msgid "Press the create button to begin." +msgstr "Pinche en el botĆ³n \"crear\" para comenzar." + +#: ../../enterprise/godmode/reporting/aws_view.php:221 +msgid "Instance table" +msgstr "Tabla de instancias" + +#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:62 +#: ../../enterprise/godmode/reporting/visual_console_template.php:63 +#: ../../godmode/reporting/map_builder.php:75 +#: ../../godmode/reporting/map_builder.php:121 +#: ../../godmode/reporting/visual_console_favorite.php:72 +msgid "Visual Console List" +msgstr "Lista de la consola visual" + +#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:74 +#: ../../enterprise/godmode/reporting/visual_console_template.php:75 +#: ../../godmode/reporting/map_builder.php:87 +#: ../../godmode/reporting/visual_console_favorite.php:84 +msgid "Visual Favourite Console" +msgstr "Consola visual favorita" + +#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:87 +#: ../../enterprise/godmode/reporting/visual_console_template.php:88 +#: ../../godmode/reporting/map_builder.php:100 +#: ../../godmode/reporting/visual_console_favorite.php:97 +msgid "Visual Console Template" +msgstr "Plantilla de la consola visual" + +#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:99 +#: ../../enterprise/godmode/reporting/visual_console_template.php:100 +#: ../../godmode/reporting/map_builder.php:112 +#: ../../godmode/reporting/visual_console_favorite.php:109 +msgid "Visual Console Template Wizard" +msgstr "Asistente de plantilla de consola visual" + +#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:108 +msgid "Template Wizard" +msgstr "Asistente de plantillas" + +#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:200 +msgid "Visual console name" +msgstr "Nombre de la consola visual" + +#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:200 +msgid "" +"You can use macro _agentalias_ here. Left in blank if you want to use default name: " +"Template name - agent alias" +msgstr "" +"Puede usar macro _agentalias_ aquĆ­. En caso de estar vacĆ­o, use el nombre por " +"defecto: Nombre de plantilla - alias de agente" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_editor.php:170 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:107 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:131 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:193 +msgid "Edit template" +msgstr "Editar plantilla" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_editor.php:209 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:903 +msgid "" +"Case insensitive regular expression for agent alias. For example: Network.* will " +"match with the following agent alias: network_agent1, NetworK CHECKS" +msgstr "" +"ExpresiĆ³n regular que no distingue mayĆŗsculas ni minĆŗsculas para el alias de agente. " +"Por ejemplo: Network.* coincidirĆ” con los siguientes alias de agente: network_agent1, " +"NetworK CHECKS" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_editor.php:222 +#: ../../godmode/reporting/reporting_builder.main.php:226 +msgid "Generate cover page in PDF render" +msgstr "Generar portada en formato PDF" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_editor.php:230 +#: ../../godmode/reporting/reporting_builder.main.php:234 +msgid "Generate index in PDF render" +msgstr "Generar Ć­ndice en formato PDF" + +#: ../../enterprise/godmode/reporting/graph_template_list.php:54 +#: ../../enterprise/godmode/reporting/graph_template_list.php:73 +#: ../../enterprise/godmode/reporting/graph_template_list.php:87 +#: ../../enterprise/godmode/reporting/graph_template_wizard.php:99 +#: ../../enterprise/godmode/reporting/graph_template_wizard.php:113 +#: ../../godmode/reporting/graph_builder.php:287 +#: ../../godmode/reporting/graph_container.php:77 ../../godmode/reporting/graphs.php:67 +#: ../../godmode/reporting/graphs.php:81 ../../operation/reporting/graph_viewer.php:182 +#: ../../operation/reporting/graph_viewer.php:214 +msgid "Graph list" +msgstr "Lista de la grĆ”fica" + +#: ../../enterprise/godmode/reporting/graph_template_list.php:111 +#: ../../enterprise/godmode/reporting/graph_template_wizard.php:127 +#: ../../godmode/reporting/create_container.php:188 +#: ../../godmode/reporting/graph_container.php:101 +#: ../../godmode/reporting/graph_container.php:109 +msgid "Graph container" +msgstr "Contenedor de grĆ”fica" + +#: ../../enterprise/godmode/reporting/graph_template_list.php:119 +msgid "Graph template management" +msgstr "GestiĆ³n de plantillas grĆ”ficas" + +#: ../../enterprise/godmode/reporting/graph_template_list.php:132 +#: ../../enterprise/godmode/reporting/graph_template_editor.php:107 +#: ../../enterprise/godmode/reporting/graph_template_wizard.php:148 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:388 +#: ../../enterprise/godmode/reporting/graph_template_item_editor.php:78 +#: ../../godmode/reporting/graph_builder.php:370 +#: ../../godmode/reporting/graph_container.php:122 +#: ../../godmode/reporting/graphs.php:133 ../../operation/menu.php:327 +#: ../../operation/reporting/graph_viewer.php:271 +msgid "Custom graphs" +msgstr "GrĆ”ficos personalizados" + +#: ../../enterprise/godmode/reporting/graph_template_list.php:203 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:497 +#: ../../godmode/alerts/alert_list.list.php:66 +msgid "Template name" +msgstr "Nombre de la plantilla" + +#: ../../enterprise/godmode/reporting/graph_template_list.php:252 +msgid "There are no defined graph templates" +msgstr "No hay plantillas grĆ”ficas definidas" + +#: ../../enterprise/godmode/reporting/graph_template_list.php:257 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:166 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:667 +#: ../../enterprise/godmode/reporting/visual_console_template.php:254 +msgid "Create template" +msgstr "Crear plantilla" + +#: ../../enterprise/godmode/reporting/graph_template_editor.php:58 +msgid "Not created. Blank name" +msgstr "No creado. Nombre vacĆ­o." + +#: ../../enterprise/godmode/reporting/graph_template_editor.php:94 +msgid "Graph template editor" +msgstr "Editor de plantillas grĆ”ficas" + +#: ../../enterprise/godmode/reporting/graph_template_editor.php:155 +#: ../../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:210 +msgid "Not updated. Blank name" +msgstr "No actualizado; nombre en blanco" + +#: ../../enterprise/godmode/reporting/graph_template_editor.php:173 +msgid "Template updated successfully" +msgstr "Plantilla actualizada correctamente" + +#: ../../enterprise/godmode/reporting/graph_template_editor.php:174 +#: ../../include/class/ModuleTemplates.class.php:355 +msgid "Error updating template" +msgstr "Error al actualizar la plantilla" + +#: ../../enterprise/godmode/reporting/graph_template_editor.php:208 +#: ../../godmode/setup/gis_step_2.php:371 +#: ../../godmode/reporting/visual_console_builder.wizard.php:180 +#: ../../godmode/events/event_responses.editor.php:139 +#: ../../include/functions_visual_map_editor.php:97 +#: ../../include/functions_visual_map_editor.php:668 +#: ../../include/rest-api/models/VisualConsole/Items/Line.php:475 +#: ../../include/rest-api/models/VisualConsole/Items/NetworkLink.php:926 +#: ../../include/functions_reports.php:1248 +msgid "Width" +msgstr "Anchura" + +#: ../../enterprise/godmode/reporting/graph_template_editor.php:212 +#: ../../godmode/setup/gis_step_2.php:378 +#: ../../godmode/reporting/visual_console_builder.wizard.php:181 +#: ../../godmode/events/event_responses.editor.php:141 +#: ../../include/functions_visual_map_editor.php:673 +#: ../../include/functions_reports.php:1264 ../../include/functions_reports.php:1364 +msgid "Height" +msgstr "Altura" + +#: ../../enterprise/godmode/reporting/graph_template_editor.php:217 +#: ../../godmode/setup/performance.php:531 +#: ../../godmode/reporting/create_container.php:346 ../../include/functions.php:2699 +#: ../../include/functions.php:3367 ../../include/ajax/module.php:200 +#: ../../include/ajax/graph.ajax.php:146 ../../operation/gis_maps/render_view.php:156 +msgid "1 hour" +msgstr "1 hora" + +#: ../../enterprise/godmode/reporting/graph_template_editor.php:218 +#: ../../operation/gis_maps/render_view.php:157 +msgid "2 hours" +msgstr "2 horas" + +#: ../../enterprise/godmode/reporting/graph_template_editor.php:219 +msgid "3 hours" +msgstr "3 horas" + +#: ../../enterprise/godmode/reporting/graph_template_editor.php:220 +#: ../../include/ajax/module.php:201 +msgid "6 hours" +msgstr "6 horas" + +#: ../../enterprise/godmode/reporting/graph_template_editor.php:221 +#: ../../godmode/setup/performance.php:532 ../../include/ajax/module.php:202 +msgid "12 hours" +msgstr "12 horas" + +#: ../../enterprise/godmode/reporting/graph_template_editor.php:222 +#: ../../godmode/reporting/create_container.php:350 ../../include/functions.php:2702 +#: ../../include/ajax/module.php:203 ../../include/ajax/graph.ajax.php:150 +msgid "1 day" +msgstr "1 dĆ­a" + +#: ../../enterprise/godmode/reporting/graph_template_editor.php:223 +#: ../../godmode/setup/performance.php:534 +msgid "2 days" +msgstr "2 dĆ­as" + +#: ../../enterprise/godmode/reporting/graph_template_editor.php:224 +msgid "4 days" +msgstr "4 dĆ­as" + +#: ../../enterprise/godmode/reporting/graph_template_editor.php:225 +#: ../../godmode/setup/performance.php:536 +msgid "Last week" +msgstr "ƚltima semana" + +#: ../../enterprise/godmode/reporting/graph_template_editor.php:226 +#: ../../godmode/reporting/create_container.php:354 ../../include/functions.php:2704 +#: ../../include/ajax/module.php:205 ../../include/ajax/graph.ajax.php:154 +msgid "15 days" +msgstr "15 dĆ­as" + +#: ../../enterprise/godmode/reporting/graph_template_editor.php:227 +#: ../../godmode/setup/performance.php:538 +msgid "Last month" +msgstr "ƚltimo mes" + +#: ../../enterprise/godmode/reporting/graph_template_editor.php:228 +msgid "2 months" +msgstr "2 meses" + +#: ../../enterprise/godmode/reporting/graph_template_editor.php:229 +#: ../../include/ajax/module.php:208 +msgid "6 months" +msgstr "6 meses" + +#: ../../enterprise/godmode/reporting/graph_template_editor.php:230 +#: ../../include/functions.php:2708 ../../include/ajax/module.php:209 +msgid "1 year" +msgstr "1 aƱo" + +#: ../../enterprise/godmode/reporting/graph_template_editor.php:235 +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:102 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1768 +#: ../../enterprise/include/functions_reporting_csv.php:483 +#: ../../enterprise/include/functions_reporting_csv.php:486 +#: ../../enterprise/include/functions_reporting_csv.php:710 +#: ../../enterprise/include/functions_reporting_csv.php:831 +#: ../../enterprise/include/functions_reporting_csv.php:914 +#: ../../enterprise/include/functions_reporting_csv.php:946 +#: ../../enterprise/include/functions_reporting_csv.php:1006 +#: ../../enterprise/include/functions_reporting_csv.php:1184 +#: ../../enterprise/include/functions_reporting_csv.php:1215 +#: ../../enterprise/include/functions_reporting_csv.php:1270 +#: ../../enterprise/include/functions_reporting_csv.php:1374 +#: ../../enterprise/include/functions_reporting_csv.php:1429 +#: ../../enterprise/include/functions_reporting_csv.php:1495 +#: ../../enterprise/include/functions_reporting_csv.php:1881 +#: ../../enterprise/include/functions_reporting_csv.php:1931 +#: ../../enterprise/include/functions_reporting_csv.php:2627 +#: ../../enterprise/include/functions_reporting_csv.php:2678 +#: ../../enterprise/include/functions_reporting_csv.php:2804 +#: ../../godmode/agentes/module_manager_editor_prediction.php:179 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1357 +#: ../../godmode/reporting/visual_console_builder.elements.php:107 +#: ../../godmode/reporting/visual_console_builder.wizard.php:242 +#: ../../godmode/reporting/graph_builder.main.php:196 +#: ../../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 +msgid "Period" +msgstr "PerĆ­odo" + +#: ../../enterprise/godmode/reporting/graph_template_editor.php:239 +msgid "Stacked" +msgstr "Apilado" + +#: ../../enterprise/godmode/reporting/graph_template_editor.php:246 +#: ../../godmode/reporting/graph_builder.main.php:215 +#: ../../include/lib/Dashboard/Widgets/custom_graph.php:316 +#: ../../operation/reporting/graph_viewer.php:371 +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:318 +#: ../../operation/reporting/graph_viewer.php:373 +msgid "Stacked line" +msgstr "LĆ­nea apilada" + +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:46 +#: ../../include/functions_reports.php:815 +msgid "Top n" +msgstr "Top N" + +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:47 +#: ../../enterprise/include/functions_reporting_csv.php:900 +#: ../../include/functions_reports.php:789 ../../include/functions_reporting.php:3170 +msgid "Exception" +msgstr "ExcepciĆ³n" + +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:51 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:57 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:196 +#: ../../godmode/reporting/reporting_builder.item_editor.php:58 +msgid "Only table" +msgstr "Solo tabla" + +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:52 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:58 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:197 +#: ../../godmode/reporting/reporting_builder.item_editor.php:59 +msgid "Table & Graph" +msgstr "Tabla y grĆ”fico" + +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:53 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:59 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:198 +#: ../../godmode/reporting/reporting_builder.item_editor.php:60 +msgid "Only graph" +msgstr "Solo grĆ”fico" + +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:74 +#: ../../enterprise/include/functions_reporting.php:82 +msgid "Global" +msgstr "Global" + +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:106 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:290 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:319 +msgid "Elements to apply" +msgstr "Elementos para aplicar" + +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:190 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:204 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:291 +msgid "Filter agents selector" +msgstr "Selector de filtro de agentes" + +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:196 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1745 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1334 +#: ../../include/functions_reports.php:766 +msgid "Last value" +msgstr "ƚltimo valor" + +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:198 +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:818 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1747 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:5006 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1336 +#: ../../godmode/reporting/reporting_builder.item_editor.php:7092 +msgid "" +"Warning: period 0 reports cannot be used to show information back in time. " +"Information contained in this kind of reports will be always reporting the most " +"recent information" +msgstr "" +"Advertencia: los informes en perĆ­odo 0 no pueden mostrar la informaciĆ³n pasada. La " +"informaciĆ³n contenida en este tipo de informes mostrarĆ” siempre la informaciĆ³n mĆ”s " +"reciente." -#: ../../operation/agentes/group_view.php:183 -#: ../../operation/agentes/group_view.php:216 -#: ../../operation/agentes/interface_view.functions.php:71 -#: ../../operation/search_results.php:80 ../../include/functions_cron.php:663 -#: ../../include/class/AgentsAlerts.class.php:252 -#: ../../include/class/AgentsAlerts.class.php:542 -#: ../../include/class/Diagnostics.class.php:1161 -#: ../../include/class/Diagnostics.class.php:1165 -#: ../../include/class/Diagnostics.class.php:1169 -#: ../../include/class/Diagnostics.class.php:1173 -#: ../../include/class/NetworkMap.class.php:3228 -#: ../../include/lib/Dashboard/Widgets/groups_status.php:311 -#: ../../include/lib/Dashboard/Widgets/groups_status.php:316 -#: ../../include/lib/Dashboard/Widgets/agent_module.php:448 -#: ../../include/functions_groups.php:53 ../../include/functions_html.php:1645 -#: ../../include/functions_reporting_html.php:1845 -#: ../../include/functions_reporting_html.php:2314 -#: ../../include/functions_reporting_html.php:3083 -#: ../../enterprise/operation/services/services.service_map.php:158 -#: ../../enterprise/include/functions_cron.php:215 -#: ../../enterprise/include/functions_tasklist.php:338 -#: ../../enterprise/include/functions_reporting_pdf.php:861 -#: ../../enterprise/include/functions_policies.php:3824 -#: ../../enterprise/meta/include/functions_autoprovision.php:476 -#: ../../enterprise/meta/monitoring/group_view.php:154 -#: ../../enterprise/meta/monitoring/group_view.php:215 -#: ../../enterprise/meta/monitoring/wizard/wizard.php:304 -#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:362 -#: ../../enterprise/meta/advanced/policymanager.queue.php:258 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:305 #: ../../enterprise/godmode/reporting/reporting_builder.global.php:228 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:219 -#: ../../enterprise/godmode/massive/massive_add_service_elements.php:361 -#: ../../enterprise/godmode/massive/massive_create_services.php:964 -#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:248 -#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:100 -#: ../../enterprise/godmode/agentes/collections.editor.php:74 -#: ../../enterprise/godmode/agentes/collections.agents.php:53 -#: ../../enterprise/godmode/agentes/collections.data.php:137 -#: ../../enterprise/godmode/agentes/collections.data.php:283 -#: ../../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.php:71 -#: ../../enterprise/godmode/policies/policy_queue.php:648 -#: ../../enterprise/godmode/policies/policies.php:407 -#: ../../enterprise/godmode/policies/policies.php:531 -#: ../../extensions/agents_modules.php:431 -#: ../../extensions/agents_modules.php:758 ../../mobile/operation/agent.php:155 -#: ../../mobile/operation/home.php:81 ../../mobile/operation/agents.php:204 -#: ../../mobile/include/functions_web.php:23 -#: ../../godmode/reporting/reporting_builder.list_items.php:208 -#: ../../godmode/reporting/reporting_builder.list_items.php:229 -#: ../../godmode/reporting/reporting_builder.item_editor.php:1674 -#: ../../godmode/reporting/reporting_builder.item_editor.php:1736 -#: ../../godmode/reporting/reporting_builder.item_editor.php:1983 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:222 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:305 #: ../../godmode/reporting/visual_console_builder.wizard.php:408 -#: ../../godmode/massive/massive_add_alerts.php:231 -#: ../../godmode/massive/massive_delete_modules.php:535 -#: ../../godmode/massive/massive_standby_alerts.php:203 -#: ../../godmode/massive/massive_edit_agents.php:566 -#: ../../godmode/massive/massive_delete_alerts.php:314 -#: ../../godmode/massive/massive_delete_agents.php:280 -#: ../../godmode/massive/massive_edit_plugins.php:367 -#: ../../godmode/massive/massive_enable_disable_alerts.php:174 -#: ../../godmode/massive/massive_edit_modules.php:511 -#: ../../godmode/agentes/planned_downtime.list.php:84 -#: ../../godmode/agentes/planned_downtime.list.php:108 -#: ../../godmode/alerts/alert_list.list.php:69 -msgid "Agents" -msgstr "Agentes" +msgid "If you select several agents, only the common modules will be displayed" +msgstr "Si selecciona varios agentes, solo se mostrarĆ”n los mĆ³dulos comunes" -#: ../../operation/agentes/group_view.php:221 -#: ../../operation/agentes/group_view.php:276 ../../include/ajax/module.php:1052 -#: ../../include/functions_ui.php:1162 -#: ../../enterprise/operation/services/services.list.php:639 -#: ../../enterprise/include/functions_ipam.php:1384 -#: ../../enterprise/godmode/agentes/inventory_manager.php:257 -#: ../../godmode/wizards/DiscoveryTaskList.class.php:584 -#: ../../godmode/wizards/DiscoveryTaskList.class.php:674 -msgid "Force" -msgstr "Forzar" +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:258 +#: ../../enterprise/include/functions_reporting_csv.php:1030 +#: ../../include/functions_reporting_html.php:4787 +msgid "Sum" +msgstr "Suma" -#: ../../operation/agentes/group_view.php:313 -#: ../../enterprise/meta/monitoring/group_view.php:359 -#, php-format -msgid "" -"This %s installation are using the secondary groups feature. For this reason, " -"an agent can be counted several times." +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:270 +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:400 +#: ../../include/functions_reporting.php:9993 +msgid "Rate" +msgstr "Tasa" + +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:306 +#: ../../enterprise/include/class/Omnishell.class.php:520 +#: ../../enterprise/operation/services/services.list.php:728 +#: ../../godmode/agentes/agent_manager.php:313 +#: ../../godmode/snmpconsole/snmp_alert.php:1506 +#: ../../include/class/ModuleTemplates.class.php:970 +msgid "Delete selected" +msgstr "Borrar seleccionado(s)" + +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:321 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2328 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2427 +msgid "Group by agent" +msgstr "Agrupar por agente" + +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:333 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2378 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3131 +msgid "Show in the same row" +msgstr "Mostrar en la misma fila" + +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:334 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2380 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3133 +msgid "Show one module per row with all its operations" +msgstr "Mostrar un mĆ³dulo por fila con todas sus operaciones" + +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:346 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:450 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2398 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2975 +#: ../../enterprise/operation/log/log_viewer.php:500 +#: ../../godmode/netflow/nf_item_list.php:173 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2441 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3154 +#: ../../include/lib/Dashboard/Widgets/top_n.php:267 +msgid "Order" +msgstr "Orden" + +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:351 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:318 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:63 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:202 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2401 +#: ../../enterprise/operation/log/log_viewer.php:497 +#: ../../godmode/reporting/reporting_builder.item_editor.php:64 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2444 +#: ../../include/lib/Dashboard/Widgets/top_n.php:261 +msgid "Ascending" +msgstr "Ascendente" + +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:353 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:325 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:64 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:203 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2408 +#: ../../enterprise/operation/log/log_viewer.php:496 +#: ../../godmode/reporting/reporting_builder.item_editor.php:65 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2451 +#: ../../include/lib/Dashboard/Widgets/top_n.php:262 +msgid "Descending" +msgstr "Descendente" + +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:355 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:332 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2415 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2458 +#: ../../include/lib/Dashboard/Widgets/top_n.php:263 +msgid "By agent name" +msgstr "Por nombre de agente" + +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:363 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2427 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2470 +#: ../../include/lib/Dashboard/Widgets/top_n.php:249 +msgid "Quantity (n)" +msgstr "Cantidad (n)" + +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:375 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2442 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2500 +#: ../../include/lib/Dashboard/Widgets/top_n.php:286 +#: ../../operation/agentes/ver_agente.php:1632 +msgid "Display" +msgstr "Mostrar" + +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:430 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2547 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2662 +#: ../../include/functions_reporting.php:3192 +msgid "Everything" +msgstr "Todo" + +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:432 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2554 +msgid ">=" +msgstr ">=" + +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:434 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2561 +msgid "<" +msgstr "<" + +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:438 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2575 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2670 +#: ../../include/functions_reporting_html.php:3357 +msgid "Not OK" +msgstr "Mal" + +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:446 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:461 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2587 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2682 +msgid "Show graph" +msgstr "Mostrar grĆ”fico" + +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:458 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:347 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2700 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2792 +msgid "Show resume" +msgstr "Mostrar resumen" + +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:458 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2701 +msgid "Show a resume table with max, min, average of total modules on the report bottom" msgstr "" -"Esta instalaciĆ³n de %s estĆ” usando la funcionalidad de grupos secundarios. Por " -"ello, los agentes se pueden contar varias veces." +"Mostrar una tabla resumen con el mĆ”ximo, el mĆ­nimo y la media de los mĆ³dulos totales " +"al final del informe" -#: ../../operation/agentes/group_view.php:570 -#: ../../operation/agentes/estado_agente.php:975 -#: ../../enterprise/meta/monitoring/group_view.php:205 -#: ../../godmode/agentes/modificar_agente.php:944 -msgid "There are no defined agents" -msgstr "No hay ningĆŗn agente definido" +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:473 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:812 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:481 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3377 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3560 +msgid "Show item in landscape format (only PDF)" +msgstr "Mostrar elemento en formato apaisado (solo PDF)" -#: ../../operation/agentes/graphs.php:143 -msgid "Other modules" -msgstr "Otros mĆ³dulos" +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:489 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:828 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:495 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3386 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3569 +msgid "Page break at the end of the item (only PDF)" +msgstr "Salto de pĆ”gina despuĆ©s del elemento (solo PDF)" -#: ../../operation/agentes/graphs.php:150 -msgid "Modules network no proc" -msgstr "MĆ³dulos de red sin proc" +#: ../../enterprise/godmode/reporting/graph_template_wizard.php:135 +msgid "Wizard template" +msgstr "Plantilla de Wizard" -#: ../../operation/agentes/graphs.php:157 -msgid "Modules boolean" -msgstr "MĆ³dulos booleanos" +#: ../../enterprise/godmode/reporting/reporting_builder.advanced.php:81 +msgid "Advance Reporting" +msgstr "Informes avanzados" -#: ../../operation/agentes/graphs.php:207 -#: ../../operation/agentes/stat_win.php:302 -#: ../../operation/agentes/stat_win.php:421 -#: ../../operation/agentes/exportdata.php:318 -#: ../../operation/agentes/interface_traffic_graph_win.php:181 -#: ../../mobile/operation/module_graph.php:461 -msgid "Begin date" -msgstr "Fecha de inicio" +#: ../../enterprise/godmode/reporting/reporting_builder.advanced.php:97 +msgid "Page orientation" +msgstr "OrientaciĆ³n de pĆ”gina" -#: ../../operation/agentes/graphs.php:222 -#: ../../operation/agentes/stat_win.php:278 -msgid "Show events" -msgstr "Mostrar eventos" +#: ../../enterprise/godmode/reporting/reporting_builder.advanced.php:105 +#: ../../include/functions_visual_map_editor.php:843 +#: ../../include/rest-api/models/VisualConsole/Items/BarsGraph.php:483 +msgid "Vertical" +msgstr "Vertical" -#: ../../operation/agentes/graphs.php:224 -#: ../../operation/agentes/stat_win.php:312 -msgid "Show alerts" -msgstr "Mostrar alertas" +#: ../../enterprise/godmode/reporting/reporting_builder.advanced.php:114 +#: ../../include/functions_visual_map_editor.php:844 +#: ../../include/rest-api/models/VisualConsole/Items/BarsGraph.php:482 +msgid "Horizontal" +msgstr "Horizontal" -#: ../../operation/agentes/graphs.php:224 -msgid "the combined graph does not show the alerts into this graph" -msgstr "Los grĆ”ficos combinados no muestran las alertas." +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:112 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:215 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1725 +#: ../../enterprise/godmode/reporting/reporting_builder.template_list_item.php:258 +#: ../../godmode/reporting/reporting_builder.list_items.php:424 +#: ../../godmode/reporting/create_container.php:364 +#: ../../godmode/reporting/create_container.php:473 +#: ../../godmode/reporting/create_container.php:527 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1311 +msgid "Time lapse" +msgstr "Intervalo de tiempo" -#: ../../operation/agentes/graphs.php:226 -msgid "Show as one combined graph" -msgstr "Mostrar como un grĆ”fico combinado" +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:313 +msgid "Order:" +msgstr "Orden:" -#: ../../operation/agentes/graphs.php:228 -msgid "several graphs for each module" -msgstr "Varios grĆ”ficos por cada mĆ³dulo" - -#: ../../operation/agentes/graphs.php:229 -msgid "One combined graph" -msgstr "GrĆ”fico combinado" - -#: ../../operation/agentes/graphs.php:233 -#: ../../godmode/netflow/nf_item_list.php:177 -msgid "Chart type" -msgstr "Tipo de grĆ”fico" - -#: ../../operation/agentes/graphs.php:237 ../../operation/agentes/graphs.php:413 -msgid "Area stack" -msgstr "GrĆ”fico de Ć”rea apilada" - -#: ../../operation/agentes/graphs.php:239 ../../operation/agentes/graphs.php:421 -msgid "Line stack" -msgstr "GrĆ”fico de lĆ­nea apilada" - -#: ../../operation/agentes/graphs.php:256 -msgid "Save as custom graph" -msgstr "Guardar como grĆ”fico personalizado" - -#: ../../operation/agentes/graphs.php:269 -msgid "Filter graphs" -msgstr "Filtrar grĆ”ficos" - -#: ../../operation/agentes/graphs.php:296 -msgid "There was an error loading the graph" -msgstr "Error al cargar el grĆ”fico" - -#: ../../operation/agentes/graphs.php:304 ../../operation/agentes/graphs.php:308 -msgid "Name custom graph" -msgstr "Nombre de grĆ”fico personalizado" - -#: ../../operation/agentes/graphs.php:342 -#: ../../enterprise/views/ncm/agent/manage.php:259 -#: ../../enterprise/include/ajax/transactional.ajax.php:83 -#: ../../enterprise/godmode/reporting/mysql_builder.php:240 -#: ../../enterprise/godmode/reporting/reporting_builder.template_editor.php:109 -#: ../../extensions/insert_data.php:208 ../../godmode/setup/snmp_wizard.php:100 -#: ../../godmode/setup/gis_step_2.php:521 -#: ../../godmode/reporting/reporting_builder.main.php:45 -#: ../../godmode/reporting/visual_console_builder.data.php:229 -msgid "Save" -msgstr "Guardar" - -#: ../../operation/agentes/graphs.php:354 -msgid "Save custom graph" -msgstr "Guardar grĆ”fico personalizado" - -#: ../../operation/agentes/graphs.php:375 -msgid "Custom graph create from the tab graphs in the agent." -msgstr "GrĆ”fico personalizado creado desde la secciĆ³n de grĆ”ficos del agente" - -#: ../../operation/agentes/estado_monitores.php:51 -msgid "Tag's information" -msgstr "InformaciĆ³n de etiquetas" - -#: ../../operation/agentes/estado_monitores.php:109 -msgid "Relationship information" -msgstr "InformaciĆ³n de relaciones" - -#: ../../operation/agentes/estado_monitores.php:160 -msgid "Non-initialized modules found." -msgstr "Se han encontrado mĆ³dulos no iniciados." - -#: ../../operation/agentes/estado_monitores.php:181 -msgid "List of modules" -msgstr "Lista de mĆ³dulos" - -#: ../../operation/agentes/estado_monitores.php:182 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:349 msgid "" -"To see the list of modules paginated, enable this option in the Styles " -"Configuration." +"Show a resume table with max, min, average of total modules on the report bottom:" msgstr "" -"Para ver la lista de mĆ³dulos con paginaciĆ³n, habilita esta opciĆ³n en la " -"configuraciĆ³n de estilos." +"Muestra una tabla de resumen con el mĆ”ximo, mĆ­nimo y media del total de mĆ³dulos en la " +"parte inferior del informe:" -#: ../../operation/agentes/estado_monitores.php:518 -msgid "Status:" -msgstr "Estado:" +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:369 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2680 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2772 +msgid "Show address instead module name" +msgstr "Mostrar la direcciĆ³n en lugar del nombre del mĆ³dulo" -#: ../../operation/agentes/estado_monitores.php:524 -msgid "Not Normal" -msgstr "No normal" +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:370 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2681 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2773 +msgid "Show the main address of agent." +msgstr "Mostrar la direcciĆ³n principal del agente" -#: ../../operation/agentes/estado_monitores.php:539 -#: ../../operation/agentes/alerts_status.functions.php:177 -msgid "Free text for search (*):" -msgstr "Texto libre de bĆŗsqueda (*):" +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:439 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2254 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2321 +#: ../../include/functions_reports.php:809 +msgid "SQL query" +msgstr "Consulta SQL" -#: ../../operation/agentes/estado_monitores.php:540 -msgid "Search by module name, list matches." -msgstr "BĆŗsqueda por nombre del mĆ³dulo, lista de coincidencias." +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:463 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:402 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3041 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3210 +msgid "Failover mode" +msgstr "Modo conmutaciĆ³n" -#: ../../operation/agentes/estado_monitores.php:582 -#: ../../godmode/agentes/module_manager.php:192 -msgid "Show in hierachy mode" -msgstr "Mostrar en modo jerarquĆ­a" - -#: ../../operation/agentes/estado_monitores.php:602 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1955 -msgid "Reset" -msgstr "Reiniciar" - -#: ../../operation/agentes/interface_view.functions.php:93 -#: ../../operation/agentes/interface_view.functions.php:131 -#: ../../operation/agentes/ver_agente.php:1410 -#: ../../enterprise/tools/ipam/ipam_vlan_wizard.php:53 -#: ../../enterprise/tools/ipam/ipam_vlan_wizard.php:410 -msgid "Interfaces" -msgstr "Interfaces" - -#: ../../operation/agentes/interface_view.functions.php:170 -#: ../../operation/agentes/interface_view.functions.php:171 -msgid "Interface filter" -msgstr "Filtro de interfaz" - -#: ../../operation/agentes/interface_view.functions.php:489 -msgid "IfName" -msgstr "IfName" - -#: ../../operation/agentes/interface_view.functions.php:499 -msgid "IfSpeed" -msgstr "IfSpeed" - -#: ../../operation/agentes/interface_view.functions.php:507 -msgid "IfInOctets" -msgstr "IfInOctets" - -#: ../../operation/agentes/interface_view.functions.php:515 -msgid "IfOutOctets" -msgstr "IfOutOctets" - -#: ../../operation/agentes/interface_view.functions.php:523 -msgid "% Bandwidth usage (in)" -msgstr "% Uso de ancho de banda (entrada)" - -#: ../../operation/agentes/interface_view.functions.php:531 -msgid "% Bandwidth usage (out)" -msgstr "% Uso de ancho de banda (salida)" - -#: ../../operation/agentes/interface_view.functions.php:539 -#: ../../include/functions_treeview.php:319 -#: ../../include/functions_reporting_html.php:90 -#: ../../include/functions_reporting_html.php:5529 -#: ../../enterprise/include/functions_reporting_pdf.php:1988 -msgid "Last data" -msgstr "ƚltimos datos" - -#: ../../operation/agentes/interface_view.functions.php:736 -msgid "No search parameters" -msgstr "No hay parĆ”metros de bĆŗsqueda" - -#: ../../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 -#: ../../include/chart_generator.php:125 -#: ../../enterprise/operation/inventory/inventory.php:203 -msgid "There was a problem connecting with the node" -msgstr "Error al conectar con el nodo" - -#: ../../operation/agentes/stat_win.php:116 -#, php-format -msgid "%s Graph" -msgstr "GrĆ”fica %s" - -#: ../../operation/agentes/stat_win.php:149 -msgid "There was a problem locating the source of the graph" -msgstr "Error al localizar la fuente del grĆ”fico" - -#: ../../operation/agentes/stat_win.php:267 -#: ../../operation/agentes/interface_traffic_graph_win.php:167 -msgid "Refresh time" -msgstr "Tiempo de actualizaciĆ³n" - -#: ../../operation/agentes/stat_win.php:297 -#, php-format +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:464 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:403 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3042 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3211 msgid "" -"'Show events' is disabled because this %s node is set to event replication." +"SLA calculation must be performed taking into account the failover modules assigned " +"to the primary module" msgstr "" -"\"Mostrar eventos\" estĆ” deshabilitado porque el nodo de %s estĆ” en " -"replicaciĆ³n de eventos." +"El SLA debe calcularse teniendo en cuenta los mĆ³dulos de conmutaciĆ³n asignados al " +"mĆ³dulo primario" -#: ../../operation/agentes/stat_win.php:320 -#: ../../operation/agentes/stat_win.php:431 -#: ../../operation/agentes/interface_traffic_graph_win.php:207 -msgid "Begin time" -msgstr "Tiempo de inicio" +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:481 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:420 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3061 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3230 +msgid "Failover type" +msgstr "Tipo de conmutaciĆ³n" -#: ../../operation/agentes/stat_win.php:330 -#: ../../mobile/operation/module_graph.php:444 -msgid "Show unknown graph" -msgstr "Mostrar grĆ”ficos desconocidos" +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:486 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:425 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3066 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3235 +msgid "Failover normal" +msgstr "ConmutaciĆ³n normal" -#: ../../operation/agentes/stat_win.php:353 -msgid "Zoom" -msgstr "AmpliaciĆ³n" +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:498 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:437 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3078 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3247 +msgid "Failover simple" +msgstr "ConmutaciĆ³n simple" -#: ../../operation/agentes/stat_win.php:373 -#: ../../operation/agentes/interface_traffic_graph_win.php:227 -msgid "Show percentil" -msgstr "Mostrar el percentil" +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:538 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2472 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2531 +msgid "Graph render" +msgstr "Representar en grĆ”fica" -#: ../../operation/agentes/stat_win.php:382 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:557 -#: ../../mobile/operation/module_graph.php:436 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2510 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:544 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2478 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2537 +msgid "Avg, max & min" +msgstr "Media, mĆ”x. y mĆ­n." + +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:545 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2479 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2538 +msgid "Max only" +msgstr "Solo mĆ”x." + +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:546 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2480 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2539 +msgid "Min only" +msgstr "Solo mĆ­n." + +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:547 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2481 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2540 +msgid "Avg only" +msgstr "Solo media" + +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:558 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2623 +#: ../../mobile/operation/module_graph.php:436 ../../operation/agentes/stat_win.php:369 msgid "Time compare (Overlapped)" msgstr "ComparaciĆ³n de tiempo (solapado)" -#: ../../operation/agentes/stat_win.php:390 -#: ../../operation/agentes/stat_win.php:452 -#: ../../mobile/operation/module_graph.php:428 -msgid "Time compare (Separated)" -msgstr "ComparaciĆ³n de tiempo (por separado)" - -#: ../../operation/agentes/stat_win.php:399 -msgid "Show AVG/MAX/MIN data series in graph" -msgstr "Mostar series de datos MEDIA/MƄX./MƍN. en la grĆ”fica" - -#: ../../operation/agentes/stat_win.php:408 -#: ../../operation/agentes/interface_traffic_graph_win.php:238 -#: ../../godmode/reporting/create_container.php:437 -#: ../../godmode/reporting/create_container.php:494 -#: ../../godmode/reporting/create_container.php:589 -#: ../../godmode/reporting/graph_builder.main.php:285 -msgid "Show full scale graph (TIP)" -msgstr "Mostrar grĆ”fica a escala completa (TIP)" - -#: ../../operation/agentes/stat_win.php:410 -#: ../../operation/agentes/interface_traffic_graph_win.php:240 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2492 #: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:574 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2491 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2494 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2586 +msgid "Full resolution graph (TIP)" +msgstr "GrĆ”fica a resoluciĆ³n completa (TIP)" + +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:575 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2495 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2587 +#: ../../operation/agentes/stat_win.php:397 +#: ../../operation/agentes/interface_traffic_graph_win.php:240 msgid "" -"TIP mode charts do not support average - maximum - minimum series, you can " -"only enable TIP or average, maximum or minimum series" +"TIP mode charts do not support average - maximum - minimum series, you can only " +"enable TIP or average, maximum or minimum series" msgstr "" "Tablas en modo TIP no soportan las series media - mĆ”ximo - mĆ­nimo, solo puede " "habilitar las series TIP o media, mĆ”ximo o mĆ­nimo" -#: ../../operation/agentes/stat_win.php:464 -#: ../../operation/agentes/interface_traffic_graph_win.php:276 -#: ../../enterprise/views/cluster/view.php:441 -msgid "Reload" -msgstr "Actualizar" +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:591 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2505 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2606 +msgid "Show threshold" +msgstr "Mostrar umbral" -#: ../../operation/agentes/stat_win.php:502 -#: ../../operation/agentes/interface_traffic_graph_win.php:306 -msgid "Graph configuration menu" -msgstr "Menu de configuraciĆ³n de grĆ”fica" +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:605 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2513 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2638 +#: ../../godmode/reporting/graph_builder.main.php:245 ../../include/functions.php:4116 +#: ../../include/functions.php:4124 +msgid "Percentil" +msgstr "Percentil" -#: ../../operation/agentes/stat_win.php:504 -#: ../../operation/agentes/interface_traffic_graph_win.php:308 -#: ../../include/ajax/module.php:399 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:606 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2514 msgid "" -"In Pandora FMS, data is stored compressed. The data visualization in database, " -"charts or CSV exported data won't match, because is interpreted at runtime. " -"Please check 'Pandora FMS Engineering' chapter from documentation." +"If this option was checked, only adding in elements that type of modules support this " +"option." msgstr "" -"En Pandora FMS los datos se almacenan comprimidos. La visualizaciĆ³n de los " -"datos en la base de datos, las tablas o los datos exportados en CSV no " -"coincidirĆ”n porque se interpretan en el momento de la ejecuciĆ³n. Lea la " -"documentaciĆ³n del capĆ­tulo de 'IngenierĆ­a de Pandora FMS'." +"Si se marca esta casilla, la opciĆ³n solo es posible si se aƱaden este tipo de mĆ³dulos." -#: ../../operation/agentes/pandora_networkmap.php:139 -#: ../../operation/agentes/pandora_networkmap.php:374 -msgid "Succesfully created" -msgstr "Creado correctamente" +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:620 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2795 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2901 +msgid "Show Summary group" +msgstr "Mostrar el resumen del grupo" -#: ../../operation/agentes/pandora_networkmap.php:140 -#: ../../operation/agentes/pandora_networkmap.php:375 -#: ../../include/functions_alerts.php:2748 -#: ../../include/functions_planned_downtimes.php:112 -#: ../../include/functions_planned_downtimes.php:827 -#: ../../enterprise/tools/ipam/ipam_network_location_config.php:51 -#: ../../enterprise/tools/ipam/ipam_action.php:153 -#: ../../enterprise/operation/agentes/transactional_map.php:135 -#: ../../enterprise/include/ajax/servers.ajax.php:198 -#: ../../enterprise/godmode/setup/setup_metaconsole.php:126 -#: ../../enterprise/godmode/servers/credential_boxes_satellite.php:81 -#: ../../enterprise/godmode/servers/manage_export.php:112 -#: ../../enterprise/godmode/servers/manage_export.php:119 -#: ../../enterprise/godmode/modules/local_components.php:142 -#: ../../enterprise/godmode/modules/local_components.php:318 -#: ../../enterprise/godmode/reporting/reporting_builder.template_editor.php:48 -#: ../../enterprise/godmode/alerts/alert_inventory_builder.php:77 -#: ../../enterprise/godmode/policies/policies.php:170 -#: ../../enterprise/godmode/policies/policy_external_alerts.php:124 -#: ../../enterprise/godmode/policies/policy_external_alerts.php:127 -#: ../../godmode/setup/news.php:67 ../../godmode/setup/gis.php:49 -#: ../../godmode/modules/manage_network_components.php:199 -#: ../../godmode/modules/manage_network_components.php:427 -#: ../../godmode/modules/manage_nc_groups.php:85 -#: ../../godmode/reporting/reporting_builder.item_editor.php:5715 -#: ../../godmode/agentes/configurar_agente.php:351 -#: ../../godmode/agentes/configurar_agente.php:876 -#: ../../godmode/agentes/planned_downtime.editor.php:406 -#: ../../godmode/alerts/configure_alert_template.php:192 -#: ../../godmode/alerts/configure_alert_template.php:527 -#: ../../godmode/alerts/alert_commands.php:559 -#: ../../godmode/alerts/alert_list.php:165 -#: ../../godmode/users/configure_user.php:475 -msgid "Could not be created" -msgstr "No se ha podido crear" - -#: ../../operation/agentes/pandora_networkmap.php:215 -#: ../../operation/agentes/pandora_networkmap.php:507 -msgid "Succesfully updated" -msgstr "Actualizado correctamente" - -#: ../../operation/agentes/pandora_networkmap.php:532 -msgid "Succesfully duplicate" -msgstr "Duplicado correctamente" - -#: ../../operation/agentes/pandora_networkmap.php:533 -#: ../../enterprise/godmode/policies/policy_modules.php:1412 -msgid "Could not be duplicated" -msgstr "No se puede duplicar" - -#: ../../operation/agentes/pandora_networkmap.php:546 -msgid "Succesfully deleted" -msgstr "Eliminado correctamente" - -#: ../../operation/agentes/pandora_networkmap.php:656 -msgid "List of network maps" -msgstr "Lista de mapas de red" - -#: ../../operation/agentes/pandora_networkmap.php:669 -#: ../../operation/agentes/pandora_networkmap.editor.php:218 -#: ../../operation/agentes/pandora_networkmap.view.php:2230 -#: ../../enterprise/godmode/agentes/pandora_networkmap_empty.editor.php:106 -#: ../../godmode/agentes/pandora_networkmap_empty.editor.php:108 -msgid "Networkmap" -msgstr "Mapa de red" - -#: ../../operation/agentes/pandora_networkmap.php:708 -#: ../../include/functions_reporting_html.php:5638 -#: ../../enterprise/views/cluster/list.php:62 -msgid "Nodes" -msgstr "Nodos" - -#: ../../operation/agentes/pandora_networkmap.php:776 -msgid "Empty map" -msgstr "Mapa vacĆ­o" - -#: ../../operation/agentes/pandora_networkmap.php:778 -#: ../../include/functions_reporting.php:1060 -#: ../../include/functions_reporting.php:8930 ../../include/functions_maps.php:50 -#: ../../enterprise/include/functions_reporting.php:2535 -#: ../../enterprise/include/functions_reporting.php:3479 -#: ../../enterprise/include/functions_reporting.php:4454 -#: ../../enterprise/godmode/services/services.elements.php:99 -msgid "Dynamic" -msgstr "DinĆ”mico" - -#: ../../operation/agentes/pandora_networkmap.php:780 -msgid "Pending to generate" -msgstr "Pendiente de generar" - -#: ../../operation/agentes/pandora_networkmap.php:811 -msgid "There are no maps defined." -msgstr "No hay mapas definidos." - -#: ../../operation/agentes/pandora_networkmap.php:818 -msgid "Create network map" -msgstr "Crear mapa de red" - -#: ../../operation/agentes/pandora_networkmap.php:825 -msgid "Create empty network map" -msgstr "Crear mapa de red vacĆ­o" - -#: ../../operation/agentes/realtime_win.php:85 -#, php-format -msgid "%s Realtime Module Graph" -msgstr "GrĆ”fica de mĆ³dulos %s en tiempo real" - -#: ../../operation/agentes/realtime_win.php:112 -msgid "Realtime extension is not enabled." -msgstr "La extensiĆ³n tiempo real no estĆ” habilitada" - -#: ../../operation/agentes/log_sources_status.php:57 -#: ../../godmode/wizards/DiscoveryTaskList.class.php:1289 -#: ../../godmode/wizards/DiscoveryTaskList.class.php:1853 -msgid "Review" -msgstr "Revisar" - -#: ../../operation/agentes/log_sources_status.php:75 -msgid "Review in log viewer" -msgstr "Revisar en visor de logs" - -#: ../../operation/agentes/log_sources_status.php:98 -msgid "No log sources found" -msgstr "No se han encontrado fuentes de logs" - -#: ../../operation/agentes/log_sources_status.php:117 -msgid "Log sources status" -msgstr "Estado de las fuentes de logs" - -#: ../../operation/agentes/exportdata.csv.php:66 -#: ../../operation/agentes/exportdata.php:71 -#: ../../operation/agentes/exportdata.excel.php:66 -msgid "Invalid time specified" -msgstr "Hora especificada no vĆ”lida" - -#: ../../operation/agentes/exportdata.csv.php:178 -#: ../../operation/agentes/exportdata.php:209 -#: ../../operation/agentes/exportdata.excel.php:161 -msgid "No modules specified" -msgstr "No se especificĆ³ ningĆŗn mĆ³dulo" - -#: ../../operation/agentes/exportdata.php:248 -#: ../../enterprise/godmode/agentes/manage_config_remote.php:153 -msgid "Source agent" -msgstr "Agente de origen" - -#: ../../operation/agentes/exportdata.php:283 -msgid "No modules of type string. You can not calculate their average" -msgstr "No hay mĆ³dulos de tipo cadena. No puedes calcular la media." - -#: ../../operation/agentes/exportdata.php:375 -msgid "Export type" -msgstr "Tipo de exportaciĆ³n" - -#: ../../operation/agentes/exportdata.php:378 -#: ../../include/functions_netflow.php:1184 -msgid "Data table" -msgstr "Tabla de datos" - -#: ../../operation/agentes/exportdata.php:379 -#: ../../enterprise/operation/reporting/custom_reporting.php:18 -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:505 -#: ../../extensions/insert_data.php:199 -msgid "CSV" -msgstr "CSV" - -#: ../../operation/agentes/exportdata.php:380 -msgid "MS Excel" -msgstr "MS Excel" - -#: ../../operation/agentes/exportdata.php:381 -msgid "Average per hour/day" -msgstr "Media por hora/dĆ­a" - -#: ../../operation/agentes/exportdata.php:389 -#: ../../enterprise/include/functions_reporting.php:8135 -#: ../../enterprise/extensions/resource_exportation/functions.php:21 -#: ../../extensions/resource_exportation.php:435 -#: ../../extensions/resource_exportation.php:438 -msgid "Export" -msgstr "Exportar" - -#: ../../operation/agentes/tactical.php:201 -msgid "Report of State" -msgstr "Informe de estado" - -#: ../../operation/agentes/tactical.php:228 -#: ../../include/functions_events.php:2589 -msgid "Latest events" -msgstr "ƚltimos eventos" - -#: ../../operation/agentes/tactical.php:245 -#: ../../include/functions_events.php:2732 -msgid "Event graph" -msgstr "GrĆ”fico de eventos" - -#: ../../operation/agentes/tactical.php:248 -#: ../../include/functions_events.php:2734 -msgid "Event graph by agent" -msgstr "GrĆ”fico de eventos por agente" +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:684 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2881 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2987 +msgid "Event Status" +msgstr "Estado del evento" +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:710 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2908 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3048 #: ../../operation/agentes/tactical.php:254 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2897 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:695 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2935 msgid "Event graphs" msgstr "GrĆ”ficos de eventos" -#: ../../operation/agentes/alerts_status.functions.php:50 -msgid "Alert(s) validated" -msgstr "Alerta(s) validada(s)" +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:714 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2912 +msgid "By agent" +msgstr "Por agente" -#: ../../operation/agentes/alerts_status.functions.php:51 -msgid "Error processing alert(s)" -msgstr "Error al procesar la(s) alerta(s)" +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:724 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2922 +msgid "By user validator" +msgstr "Por usuario que validĆ³" -#: ../../operation/agentes/alerts_status.functions.php:93 -#: ../../mobile/operation/alerts.php:64 -#: ../../godmode/alerts/alert_list.list.php:135 -msgid "All (Enabled)" -msgstr "Todos (Habilitados)" +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:734 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2932 +msgid "By criticity" +msgstr "Por gravedad" -#: ../../operation/agentes/alerts_status.functions.php:101 -#: ../../include/functions_ui.php:1155 -#: ../../enterprise/operation/agentes/policy_view.php:292 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3275 -#: ../../mobile/operation/alerts.php:73 -#: ../../godmode/alerts/alert_list.list.php:143 -msgid "Standby on" -msgstr "Modo standby activado" +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:744 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2942 +msgid "Validated vs unvalidated" +msgstr "Validados vs sin validar" -#: ../../operation/agentes/alerts_status.functions.php:102 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3269 -#: ../../mobile/operation/alerts.php:74 -#: ../../godmode/alerts/alert_list.list.php:144 -msgid "Standby off" -msgstr "Modo standby desactivado" +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:763 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1806 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1395 +msgid "Data range" +msgstr "Rango de datos" -#: ../../operation/agentes/alerts_status.functions.php:117 -#: ../../operation/agentes/datos_agente.php:211 -msgid "Free text for search" -msgstr "BĆŗsqueda de texto libre" +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:788 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1787 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1376 +msgid "Projection period" +msgstr "PerĆ­odo de proyecciĆ³n" -#: ../../operation/agentes/alerts_status.functions.php:118 -msgid "Filter by agent name, module name, template name or action name" +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:799 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2218 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2348 +msgid "Serialized header" +msgstr "Cabecera serializada" + +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:799 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2219 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2349 +msgid "The separator character is |" +msgstr "El carĆ”cter separador es |" + +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:803 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2286 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2385 +msgid "Field separator" +msgstr "Separador de campo" + +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:803 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2287 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2386 +msgid "Separator for different fields in the serialized text chain" +msgstr "Separador para diferentes campos en la cadena de texto serializada" + +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:807 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2307 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2406 +msgid "Line separator" +msgstr "Separador de lĆ­nea" + +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:807 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2308 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2407 +msgid "Separator in different lines (composed by fields) of the serialized text chain" msgstr "" -"Filtrar por nombre de agente, nombre de mĆ³dulo, nombre de plantilla o de acciĆ³n" +"Separador en diferentes lĆ­neas (compuestas por campos) de la cadena de texto " +"serializada" -#: ../../operation/agentes/alerts_status.functions.php:129 -msgid "No actions" -msgstr "Sin acciones" +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:845 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3361 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3397 +msgid "Uncompress module" +msgstr "Descomprimir mĆ³dulo" -#: ../../operation/agentes/alerts_status.functions.php:178 -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" +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:846 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3362 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3398 +msgid "Use uncompressed module data." +msgstr "Utilizar datos de mĆ³dulos descomprimidos" -#: ../../operation/agentes/custom_fields.php:24 -#: ../../operation/agentes/estado_generalagente.php:62 -#: ../../operation/agentes/agent_fields.php:24 -#: ../../include/functions_treeview.php:564 -msgid "There was a problem loading agent" -msgstr "Error al cargar la configuraciĆ³n del agente" +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:911 +#: ../../enterprise/include/functions_massive.php:54 +#: ../../godmode/agentes/module_manager.php:274 +#: ../../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 +msgid "No modules selected" +msgstr "No se han seleccionado mĆ³dulos." -#: ../../operation/agentes/custom_fields.php:59 -msgid "No fields defined" -msgstr "No se han definido campos" +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:198 +#: ../../enterprise/include/functions_reporting.php:71 +msgid "Wizard SLA" +msgstr "Wizard SLA" -#: ../../operation/agentes/custom_fields.php:65 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2658 -#: ../../godmode/agentes/fields_manager.php:119 -#: ../../godmode/alerts/alert_view.php:441 -#: ../../godmode/alerts/alert_view.php:564 -msgid "Field" -msgstr "Campo" +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:222 +#: ../../enterprise/include/functions_reporting.php:2372 +#: ../../include/functions_reports.php:704 +msgid "Monthly S.L.A." +msgstr "SLA mensual" -#: ../../operation/agentes/custom_fields.php:67 -#: ../../godmode/agentes/configure_field.php:95 -#: ../../godmode/agentes/fields_manager.php:120 -msgid "Display on front" -msgstr "Mostrar en la vista principal" +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:223 +#: ../../enterprise/include/functions_reporting.php:3324 +#: ../../include/functions_reports.php:708 +msgid "Weekly S.L.A." +msgstr "SLA semanal" -#: ../../operation/agentes/custom_fields.php:67 -#: ../../godmode/agentes/configure_field.php:96 -#: ../../godmode/agentes/fields_manager.php:120 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:224 +msgid "hourly S.L.A." +msgstr "SLA por horas" + +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:225 +msgid "Availability Graph S.L.A." +msgstr "GrĆ”fico de disponibilidad SLA" + +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:226 +#: ../../enterprise/include/functions_reporting.php:5567 +#: ../../include/functions_reports.php:718 +msgid "Services S.L.A." +msgstr "SLA de servicios" + +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:368 +msgid "SLA min value" +msgstr "Valor mĆ­nimo de SLA" + +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:368 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:374 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:380 +msgid "Enter possible range of values in SLA." +msgstr "AƱada el rango de valores posibles de SLA" + +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:369 +msgid "SLA min Value" +msgstr "Valor mĆ­nimo de SLA" + +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:374 +msgid "SLA max value" +msgstr "Valor mĆ”ximo SLA" + +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:375 +msgid "SLA max Value" +msgstr "Valor mĆ”ximo SLA" + +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:380 +msgid "SLA Limit %" +msgstr "LĆ­mite % SLA" + +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:381 +msgid "SLA Limit Value" +msgstr "Valor lĆ­mite de SLA" + +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:386 +msgid "Dynamic SLA" +msgstr "SLA dinĆ”mico" + +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:393 +msgid "Inverse SLA" +msgstr "SLA inverso" + +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:450 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2976 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3155 +msgid "SLA items sorted by fulfillment value" +msgstr "Elementos de SLA ordenados por valor rellenado" + +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:455 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1819 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1408 +msgid "Only display wrong SLAs" +msgstr "Mostrar solo los SLA incorrectos" + +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:467 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3094 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3263 +#: ../../godmode/wizards/DiscoveryTaskList.class.php:1417 +#: ../../include/functions_reporting_html.php:4624 +#: ../../include/functions_reporting_html.php:4895 +#: ../../include/functions_reporting_html.php:5032 +#: ../../include/functions_netflow.php:1183 +#: ../../include/lib/Dashboard/Widgets/tactical.php:299 +msgid "Summary" +msgstr "Lista de agentes" + +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:534 +msgid "Please introduce a SLA max value higher than the SLA min value" +msgstr "AƱada un valor mĆ”x. de SLA mayor que el valor mĆ­n. del SLA" + +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:659 +msgid "Dynamic SLA can not be Inverse" +msgstr "El SLA dinĆ”mico no puede ser inverso" + +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:664 +msgid "Check Dynamic SLA or introduce a max and min SLA value" +msgstr "Compruebe el SLA dinĆ”mico o aƱada un nuevo valor SLA mĆ­n. y mĆ”x." + +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:668 +msgid "SLA Limit value is needed" +msgstr "Se necesita un valor lĆ­mite de SLA." + +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:151 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:218 +#: ../../enterprise/include/functions_reporting.php:8027 +#: ../../enterprise/include/functions_reporting.php:8093 +#: ../../godmode/reporting/reporting_builder.php:3581 +#: ../../operation/reporting/reporting_viewer.php:157 +msgid "Item editor" +msgstr "Editor de elementos" + +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:162 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:205 +#: ../../godmode/reporting/reporting_builder.php:3577 +#: ../../operation/reporting/reporting_viewer.php:148 +msgid "List items" +msgstr "Listado de elementos" + +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:181 +msgid "List templates" +msgstr "Lista de plantillas" + +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:289 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:323 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:357 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:391 +#: ../../godmode/reporting/reporting_builder.php:596 +#: ../../godmode/reporting/reporting_builder.php:3539 +#: ../../godmode/reporting/reporting_builder.php:3653 +#: ../../godmode/reporting/reporting_builder.php:3682 +#: ../../operation/reporting/reporting_viewer.php:233 +msgid "Custom reports" +msgstr "Reportes personalizados" + +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:501 +#: ../../godmode/reporting/reporting_builder.php:910 +#: ../../operation/search_reports.php:44 ../../operation/search_reports.php:60 +#: ../../operation/reporting/custom_reporting.php:36 +msgid "HTML" +msgstr "HTML" + +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:502 +#: ../../godmode/reporting/reporting_builder.php:911 +#: ../../operation/search_reports.php:45 ../../operation/search_reports.php:61 +#: ../../operation/reporting/custom_reporting.php:37 +msgid "XML" +msgstr "XML" + +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:503 +#: ../../enterprise/operation/reporting/custom_reporting.php:14 +msgid "PDF" +msgstr "PDF" + +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:504 +#: ../../enterprise/operation/reporting/custom_reporting.php:16 +msgid "JSON" +msgstr "JSON" + +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:505 +#: ../../enterprise/operation/reporting/custom_reporting.php:18 +#: ../../extensions/insert_data.php:199 ../../operation/agentes/exportdata.php:379 +msgid "CSV" +msgstr "CSV" + +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:565 +#: ../../godmode/reporting/reporting_builder.php:1053 +msgid "HTML view" +msgstr "Vista HTML" + +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:573 +#: ../../godmode/reporting/reporting_builder.php:1063 +msgid "Export to XML" +msgstr "Exportar a XML" + +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:581 +#: ../../enterprise/operation/reporting/custom_reporting.php:64 +#: ../../include/class/Diagnostics.class.php:144 +msgid "Export to PDF" +msgstr "Exportar a PDF" + +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:589 +#: ../../enterprise/operation/reporting/custom_reporting.php:72 +msgid "Export to JSON" +msgstr "Exportar a JSON" + +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:661 +msgid "You haven't created templates yet." +msgstr "Aun no has creado ninguna plantilla." + +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:681 +msgid "Generate a dynamic report" +msgstr "Generar un informe dinĆ”mico" + +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:759 +#: ../../include/functions_reports.php:1380 +msgid "Period " +msgstr "Periodo " + +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:765 +msgid "Set start and end date" +msgstr "Fije la fecha de inicio y conclusiĆ³n" + +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:778 +#: ../../include/ajax/module.php:250 ../../operation/agentes/datos_agente.php:198 +msgid "Timestamp from:" +msgstr "Marca temporal desde:" + +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:796 +#: ../../include/ajax/module.php:270 ../../operation/agentes/datos_agente.php:204 +msgid "Timestamp to:" +msgstr "Marca temporal hasta:" + +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:815 +msgid "Monthly SLA period" +msgstr "Periodo SLA mensual" + +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:815 +msgid "This field only applies in case of Monthly SLA item." +msgstr "Este campo solo aplica en el caso de un elemento de SLA mensual." + +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:857 +#: ../../enterprise/include/class/Omnishell.class.php:867 +msgid "Add agents" +msgstr "AƱadir agentes" + +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:865 +msgid "Undo agents" +msgstr "Anular agentes" + +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:902 +msgid "RegEx agent filter" +msgstr "Filtro de agente RegEx" + +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:918 +msgid "Generate" +msgstr "Generar" + +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:1312 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:1334 +msgid "Please set agent or agent regex distinct than " +msgstr "Establezca agente o agente regex diferente a " + +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:1342 +msgid "It is not a regular expression " +msgstr "No es una expresiĆ³n regular " + +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:1344 +msgid "No agent matches regular expression " +msgstr "NingĆŗn agente coincide con la expresiĆ³n regular " + +#: ../../enterprise/godmode/reporting/graph_template_item_editor.php:65 +msgid "Graph template item editor" +msgstr "Editor de elementos de plantilla de grĆ”fico" + +#: ../../enterprise/godmode/reporting/graph_template_item_editor.php:187 +#: ../../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:3981 +msgid "Weight" +msgstr "Peso" + +#: ../../enterprise/godmode/reporting/graph_template_item_editor.php:189 +#: ../../enterprise/godmode/reporting/graph_template_item_editor.php:244 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3515 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3590 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3746 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3817 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:4251 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:4396 +#: ../../enterprise/operation/log/log_viewer.php:477 +msgid "Exact match" +msgstr "Coincidencia exacta" + +#: ../../enterprise/godmode/reporting/graph_template_item_editor.php:206 +msgid "Decrease Weight" +msgstr "Reducir el peso" + +#: ../../enterprise/godmode/reporting/graph_template_item_editor.php:206 +msgid "Increase Weight" +msgstr "Incrementar el peso" + +#: ../../enterprise/godmode/reporting/visual_console_template.php:141 +#: ../../enterprise/godmode/reporting/visual_console_template.php:157 +msgid "visual console has not been selected" +msgstr "no se ha seleccionado consola visual" + +#: ../../enterprise/godmode/reporting/visual_console_template.php:147 +msgid "Error. Error created template" +msgstr "Error. Error al crear la plantilla" + +#: ../../enterprise/godmode/reporting/visual_console_template.php:149 +msgid "Error. Template name cannot be repeated" +msgstr "Error. El nombre de la plantilla no se puede repetir" + +#: ../../enterprise/godmode/reporting/visual_console_template.php:151 +msgid "Successfully created template" +msgstr "Plantilla creada correctamente" + +#: ../../enterprise/godmode/reporting/visual_console_template.php:163 +msgid "Error. Error delete template" +msgstr "Error. Error al borrar plantilla" + +#: ../../enterprise/godmode/reporting/visual_console_template.php:165 +msgid "Successfully delete template" +msgstr "Plantilla borrada correctamente" + +#: ../../enterprise/godmode/reporting/visual_console_template.php:187 +msgid "Create From" +msgstr "Crear desde" + +#: ../../enterprise/godmode/reporting/visual_console_template.php:198 +msgid "There is not any visual console created. Please, create one firstly." +msgstr "No hay consolas visuales creadas. Cree una primero." + +#: ../../enterprise/godmode/reporting/visual_console_template.php:260 +msgid "Create New Template" +msgstr "Crear nueva plantilla" + +#: ../../enterprise/godmode/reporting/mysql_builder.php:66 +msgid "Custom MySQL template builder" +msgstr "Creador de plantillas MySQL personalizado" + +#: ../../enterprise/godmode/reporting/mysql_builder.php:79 +#: ../../enterprise/godmode/reporting/mysql_builder.php:206 +#: ../../enterprise/operation/menu.php:160 +msgid "Custom SQL" +msgstr "SQL personalizado" + +#: ../../enterprise/godmode/reporting/mysql_builder.php:117 +msgid "Create custom SQL" +msgstr "Crear SQL personalizado" + +#: ../../enterprise/godmode/reporting/mysql_builder.php:128 +#: ../../enterprise/godmode/reporting/mysql_builder.php:146 +msgid "Create new custom" +msgstr "Crear nueva consulta personalizada" + +#: ../../enterprise/godmode/reporting/mysql_builder.php:187 +msgid "List of custom MySQL templates" +msgstr "Listas de plantillas MySQL personalizadas" + +#: ../../enterprise/godmode/reporting/mysql_builder.php:193 +msgid "Template builder" +msgstr "Creador de plantillas" + +#: ../../enterprise/godmode/reporting/mysql_builder.php:212 +msgid "Successfully operation" +msgstr "OperaciĆ³n realizada correctamente" + +#: ../../enterprise/godmode/reporting/mysql_builder.php:212 +msgid "Could not be operation" +msgstr "La operaciĆ³n no pudo completarse." + +#: ../../enterprise/godmode/reporting/mysql_builder.php:214 +msgid "Without changes" +msgstr "Sin cambios" + +#: ../../enterprise/godmode/reporting/mysql_builder.php:214 +#: ../../operation/users/user_edit.php:192 +msgid "No changes have been made" +msgstr "No se han hecho cambios" + +#: ../../enterprise/godmode/reporting/mysql_builder.php:232 +#: ../../enterprise/include/functions_reporting_csv.php:1084 +#: ../../include/functions_reporting.php:7031 +msgid "SQL" +msgstr "SQL" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1627 +#: ../../godmode/reporting/reporting_builder.php:3704 +msgid "Successfull action" +msgstr "AcciĆ³n completada" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1628 +#: ../../godmode/servers/modificar_server.php:157 +#: ../../godmode/servers/modificar_server.php:168 +msgid "Unsuccessfull action" +msgstr "No se pudo completar la acciĆ³n" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1645 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1025 +msgid "Item Editor" +msgstr "Editor de elemento" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1833 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1422 +msgid "Current month" +msgstr "Mes actual" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1843 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1438 +msgid "Working time" +msgstr "Tiempo de trabajo" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1908 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1504 +msgid "Time from" +msgstr "Hora desde" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1926 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1522 +msgid "Time to" +msgstr "Hora hasta" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1944 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1540 +msgid "Show 24x7 item" +msgstr "Mostrar elementos 24/7" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1974 +msgid "Select server" +msgstr "Seleccionar servidor" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1988 +#: ../../godmode/reporting/reporting_builder.item_editor.php:193 +msgid "Local metaconsole" +msgstr "Metaconsola local" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2035 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1148 +#: ../../include/lib/Dashboard/Widgets/top_n.php:207 msgid "" -"The fields with display on front enabled will be displayed into the agent " -"details" +"Case insensitive regular expression for agent name. For example: Network.* will match " +"with the following agent names: network_agent1, NetworK CHECKS" msgstr "" -"Si esta opciĆ³n estĆ” activada, los campos mostrarĆ”n la informaciĆ³n en la vista " -"principal." +"ExpresiĆ³n regular no sensible a mayĆŗsculas/minĆŗsculas, para buscar el agente. Por " +"ejemplo: Network.* coincidirĆ­a con los siguientes nombres de agentes: network_agent1, " +"NetworK CHECKS" -#: ../../operation/agentes/custom_fields.php:90 -#: ../../operation/agentes/agent_fields.php:47 -msgid "empty" -msgstr "vacĆ­o" - -#: ../../operation/agentes/datos_agente.php:173 -msgid "Received data from" -msgstr "Datos recibidos de" - -#: ../../operation/agentes/datos_agente.php:180 -msgid "Main database" -msgstr "Base de datos principal" - -#: ../../operation/agentes/datos_agente.php:180 -#: ../../enterprise/include/functions_setup.php:67 -#: ../../enterprise/include/functions_setup.php:119 -#: ../../enterprise/godmode/menu.php:148 -msgid "History database" -msgstr "Base de datos histĆ³rica" - -#: ../../operation/agentes/datos_agente.php:181 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2059 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3643 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3875 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1171 msgid "" -"Switch between the main database and the history database to retrieve module " -"data" +"Case insensitive regular expression or string for module name. For example: if you " +"use this field with \"Module exact match\" enabled then this field has to be " +"fulfilled with the literally string of the module name, if not you can use a regular " +"expression. Example: .*usage.* will match: cpu_usage, vram usage in matchine 1." msgstr "" -"Cambiar entre base de datos principal e histĆ³rica para recoger los datos de " -"los mĆ³dulos" +"ExpresiĆ³n regular, no sensible a mayĆŗsculas/minĆŗsculas, para buscar el mĆ³dulo. Por " +"ejemplo: si usas este campo con \"Coincidencia exacta de mĆ³dulo\" activado, entonces " +"este campo tiene que rellenarse con la cadena literal del nombre del mĆ³dulo. Si no, " +"usarĆ” una expresiĆ³n regular, por ejemplo: .*usage.* coincidirĆ­a con : cpu_usage, vram " +"usage in machine 1." -#: ../../operation/agentes/datos_agente.php:194 ../../include/ajax/module.php:223 -msgid "Choose a time from now" -msgstr "Elija un tiempo a partir de ahora" +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2081 +msgid "Module exact match" +msgstr "Coincidencia exacta de mĆ³dulo" -#: ../../operation/agentes/datos_agente.php:197 ../../include/ajax/module.php:249 -msgid "Specify time range" -msgstr "Especificar rango de tiempo" +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2082 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3575 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3651 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3799 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3882 +msgid "Check it if you want to match module name literally" +msgstr "" +"ActĆ­vala si quieres que haya una coincidencia exacta y literal en el nombre del " +"mĆ³dulo." -#: ../../operation/agentes/datos_agente.php:295 ../../include/ajax/module.php:560 -#: ../../godmode/reporting/map_builder.php:452 -#: ../../godmode/reporting/map_builder.php:469 -#: ../../godmode/agentes/module_manager.php:794 -msgid "No available data to show" -msgstr "No hay datos disponibles para mostrar" +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2098 +msgid "Case insensitive regular expression or string for templates name." +msgstr "" +"ExpresiĆ³n regular o cadena sin sensibilidad de mayĆŗsculas y minĆŗsculas para el nombre " +"de las plantillas." -#: ../../operation/agentes/estado_agente.php:242 -msgid "Sucessfully deleted agent" -msgstr "Agente borrado correctamente" +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2121 +msgid "Case insensitive regular expression or string for actions name." +msgstr "" +"ExpresiĆ³n regular o cadena sin sensibilidad de mayĆŗsculas y minĆŗsculas para el nombre " +"de las acciones." -#: ../../operation/agentes/estado_agente.php:244 -msgid "There was an error message deleting the agent" -msgstr "Error al intentar borrar el agente" +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2143 +msgid "Hide items without data" +msgstr "Ocultar elementos sin datos" -#: ../../operation/agentes/estado_agente.php:285 -msgid "Search in custom fields" -msgstr "Buscar en campos personalizados" +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2144 +msgid "Check it if you want not show items without data" +msgstr "Marcar si no quieres que muestre elementos sin datos" -#: ../../operation/agentes/estado_agente.php:898 -#: ../../enterprise/operation/agentes/tag_view.php:647 -msgid "Remote config" -msgstr "ConfiguraciĆ³n remota" +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2157 +#: ../../godmode/reporting/create_container.php:480 +#: ../../godmode/reporting/create_container.php:624 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2189 +#: ../../godmode/reporting/visual_console_builder.elements.php:105 +#: ../../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/functions_reports.php:561 ../../include/functions_reports.php:648 +#: ../../include/functions_reports.php:654 ../../include/functions_reporting.php:10064 +msgid "Custom graph" +msgstr "GrĆ”fica personalizada" -#: ../../operation/agentes/pandora_networkmap.editor.php:205 -msgid "Network maps editor" -msgstr "Editor de mapas de red" +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2201 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2336 +msgid "Max items" +msgstr "NĆŗmero mĆ”ximo de elementos" -#: ../../operation/agentes/pandora_networkmap.editor.php:256 -#: ../../operation/agentes/pandora_networkmap.view.php:2236 -#: ../../enterprise/godmode/agentes/pandora_networkmap_empty.editor.php:113 -#: ../../godmode/agentes/pandora_networkmap_empty.editor.php:115 -msgid "Not found networkmap." -msgstr "No se encontrĆ³ ningĆŗn mapa de red." +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2234 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2301 +msgid "Custom SQL template" +msgstr "Plantilla SQL personalizada" -#: ../../operation/agentes/pandora_networkmap.editor.php:311 -#: ../../operation/agentes/pandora_networkmap.view.php:106 -#: ../../enterprise/extensions/vmware/vmware_view.php:1758 -#: ../../enterprise/godmode/agentes/pandora_networkmap_empty.editor.php:152 -#: ../../godmode/agentes/pandora_networkmap_empty.editor.php:154 -msgid "Node radius" -msgstr "Radio de los nodos" +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2255 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2322 +msgid "The entities of the fields that contain them must be included." +msgstr "Las entidades de los campos que los contienen deben estar incluidas." -#: ../../operation/agentes/pandora_networkmap.editor.php:324 -#: ../../operation/agentes/pandora_networkmap.view.php:127 -msgid "Position X" -msgstr "PosiciĆ³n X" +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2269 +#: ../../enterprise/include/functions_reporting_csv.php:718 +#: ../../enterprise/include/functions_reporting_csv.php:2409 +#: ../../enterprise/include/functions_reporting_csv.php:2423 +#: ../../extensions/api_checker.php:220 +#: ../../godmode/reporting/reporting_builder.item_editor.php:75 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2368 +#: ../../godmode/events/event_responses.editor.php:156 +#: ../../godmode/events/event_responses.editor.php:164 +#: ../../include/functions_reporting_html.php:1577 ../../operation/gis_maps/ajax.php:316 +msgid "URL" +msgstr "URL" -#: ../../operation/agentes/pandora_networkmap.editor.php:326 -#: ../../operation/agentes/pandora_networkmap.view.php:129 -msgid "Position Y" -msgstr "PosiciĆ³n Y" +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2280 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2379 +msgid "Protocol must be specified in URL (e.g.: \"https://\")" +msgstr "El protocolo debe estar especificado en la URL (por ejemplo: \"https://\")" -#: ../../operation/agentes/pandora_networkmap.editor.php:329 -#: ../../operation/agentes/pandora_networkmap.view.php:132 -msgid "Zoom scale" -msgstr "Escala de zoom" +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2344 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3525 +msgid "Group by" +msgstr "Agrupar por" -#: ../../operation/agentes/pandora_networkmap.editor.php:334 -#: ../../operation/agentes/pandora_networkmap.view.php:134 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2459 +#: ../../enterprise/include/functions_reporting_csv.php:1030 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2517 +#: ../../include/functions_reporting_html.php:4784 +#: ../../include/functions_reporting.php:1532 +msgid "Avg" +msgstr "Media" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2601 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2696 +msgid "Select fields to show" +msgstr "Seleccionar campos a mostrar" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2609 +#: ../../enterprise/include/functions_reporting_csv.php:494 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2704 +#: ../../include/functions_reporting_html.php:3926 +msgid "Total time" +msgstr "Tiempo total" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2617 +#: ../../enterprise/include/functions_reporting_csv.php:498 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2712 +#: ../../include/functions_reporting_html.php:3932 +msgid "Time failed" +msgstr "Tiempo en fallo" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2625 +#: ../../enterprise/include/functions_reporting_csv.php:502 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2720 +msgid "Time in OK status" +msgstr "Tiempo en estado OK" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2633 +#: ../../enterprise/include/functions_reporting_csv.php:506 +#: ../../enterprise/include/functions_reporting.php:4969 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2728 +#: ../../include/functions_reporting_html.php:3944 +msgid "Time in warning status" +msgstr "Tiempo en estado de advertencia" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2641 +#: ../../enterprise/include/functions_reporting_csv.php:510 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2736 +msgid "Time in unknown status" +msgstr "Tiempo en estado desconocido" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2653 +#: ../../enterprise/include/functions_reporting_csv.php:514 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2748 +msgid "Time of not initialized module" +msgstr "Tiempo de mĆ³dulo no inicializado" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2665 +#: ../../enterprise/include/functions_reporting_csv.php:518 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2760 +msgid "Time of downtime" +msgstr "Tiempo de parada" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2719 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2812 +msgid "

Select fields to show

" +msgstr "

Seleccione campos a mostrar

" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2727 +#: ../../enterprise/include/functions_reporting_csv.php:526 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2820 +#: ../../include/functions_reporting_html.php:4020 +msgid "Total checks" +msgstr "Comprobaciones totales" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2735 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2828 +#: ../../include/functions_reporting_html.php:4026 +msgid "Checks failed" +msgstr "Comprobaciones fallidas" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2743 +#: ../../enterprise/include/functions_reporting_csv.php:534 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2836 +msgid "Checks in OK status" +msgstr "Comprobaciones en estado OK" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2755 +#: ../../enterprise/include/functions_reporting_csv.php:538 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2860 +msgid "Unknown checks" +msgstr "Comprobaciones desconocidas" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2767 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2872 +msgid "

Select fields to show

" +msgstr "

Seleccione campos a mostrar

" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2775 +#: ../../enterprise/include/functions_reporting_csv.php:661 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2880 +#: ../../include/functions_reporting_html.php:4340 +msgid "Agent max value" +msgstr "Valor mĆ”ximo del agente" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2783 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2888 +msgid "Agent min values" +msgstr "Valores mĆ­nimos de agente" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2812 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3508 +msgid "Show Summary" +msgstr "Mostrar resumen" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2956 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3112 +msgid "Height (dynamic graphs)" +msgstr "Altura (grĆ”ficos dinĆ”micos)" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2996 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3096 +msgid "Query History Database" +msgstr "Base de datos histĆ³rica de consultas" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3008 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3177 +msgid "Priority mode" +msgstr "Modo de prioridad" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3013 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3182 +msgid "Priority ok mode" +msgstr "Modo de prioridad ok" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3025 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3194 +msgid "Priority unknown mode" +msgstr "Modo de prioridad desconocido" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3115 +msgid "Modules to match" +msgstr "MĆ³dulos a comparar" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3117 +msgid "Select the modules to match when create a report for agents" +msgstr "Selecciona los mĆ³dulos a comparar al crear el informe para cada agente." + +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3217 +msgid "Modules to match (Free text)" +msgstr "MĆ³dulos a comparar (texto libre)" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3219 +msgid "Free text to filter the modules of agents when apply this template." +msgstr "" +"Texto libre para filtrar los mĆ³dulos de los agentes cuando se usa esta plantilla." + +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3236 +msgid "Create a graph for each agent" +msgstr "Crear un grĆ”fico por cada agente" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3238 msgid "" -"Introduce zoom level. 1 = Highest resolution. Figures may include decimals" +"If it is checked, the regexp or name of modules match only each to each to agent, " +"instead create a big graph with all modules from all agents." msgstr "" -"Introducir nivel de zoom. 1 = ResoluciĆ³n mĆ”xima. Las cifras pueden incluir " -"decimales." +"Si se activa, la expresiĆ³n regular o el nombre de mĆ³dulo harĆ” coincidencia en cada " +"mĆ³dulo de cada agente, y crearĆ” un grĆ”fico que contenga mĆ³dulos de todos los agentes." -#: ../../operation/agentes/pandora_networkmap.editor.php:337 -#: ../../operation/agentes/pandora_networkmap.view.php:137 -#: ../../include/functions_groups.php:107 -msgid "Discovery task" -msgstr "Tarea Discovery" +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3265 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3302 +msgid "Calculate for custom intervals" +msgstr "Calcular intervalos personalizados" -#: ../../operation/agentes/pandora_networkmap.editor.php:337 -#: ../../operation/agentes/pandora_networkmap.view.php:137 -msgid "CIDR IP mask" -msgstr "MĆ”scara CIDR" +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3277 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3314 +msgid "Time lapse intervals" +msgstr "Intervalos de tiempo transcurrido" -#: ../../operation/agentes/pandora_networkmap.editor.php:339 -#: ../../operation/agentes/pandora_networkmap.view.php:164 -msgid "Source from recon task" -msgstr "Origen de tarea recon" +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3279 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3317 +msgid "Lapses of time in which the period is divided to make more precise calculations" +msgstr "" +"Lapsos de tiempo en los que el intervalo se divide para obtener cĆ”lculos mĆ”s precisos" -#: ../../operation/agentes/pandora_networkmap.editor.php:341 -#: ../../operation/agentes/pandora_networkmap.view.php:166 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3324 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3358 +msgid "Table only" +msgstr "Solo tabla" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3334 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3369 +msgid "Graph only" +msgstr "Solo grĆ”fico" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3344 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3380 +msgid "Graph and table" +msgstr "GrĆ”fico y tabla" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3393 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1264 +msgid "Filter by network" +msgstr "Filtrar por red" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3423 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1283 +msgid "Show alive IPs only" +msgstr "Mostrar solo IPs vivas" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3436 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1296 +msgid "Show IPs not assigned to an agent" +msgstr "Mostrar IP no asignadas a un agente" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3462 +#: ../../godmode/netflow/nf_item_list.php:282 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3832 +msgid "Create item" +msgstr "Crear elemento" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3471 +#: ../../extensions/agents_modules.php:448 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3839 +#: ../../include/functions_visual_map_editor.php:1421 +msgid "Update item" +msgstr "Actualizar elemento" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3520 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3926 +msgid "SLA Min. (value)" +msgstr "Valor mĆ­nimo para el SLA" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3525 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3931 +msgid "SLA Max. (value)" +msgstr "Valor mĆ”ximo para el SLA" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3530 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3936 +msgid "SLA Limit (%)" +msgstr "LĆ­mite (%) para el SLA" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3547 +msgid "Please save the SLA template for start to add items in this list." +msgstr "Por favor, guarda la plantilla SLA para empezar a aƱadir elementos a la lista." + +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3588 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3815 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:4260 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:4405 +msgid "Not literally" +msgstr "No literal" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3634 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3866 msgid "" -"It is setted any recon task, the nodes get from the recontask IP mask instead " -"from the group." +"Case insensitive regular expression for agent name. For example: Network* will match " +"with the following agent names: network_agent1, NetworK CHECKS" msgstr "" -"Si estĆ” seleccionada alguna tarea recon, los nodos se obtendrĆ”n de la mĆ”scara " -"IP de la recontask en lugar del grupo." +"ExpresiĆ³n regular no sensible a mayĆŗsculas. Por ejemplo: Network* harĆ” coincidencia " +"con los siguientes nombres de mĆ³dulos: network_agent1, NetworK CHECKS" -#: ../../operation/agentes/pandora_networkmap.editor.php:358 -#: ../../operation/agentes/pandora_networkmap.view.php:182 -msgid "Show only the task with the recon script \"SNMP L2 Recon\"." -msgstr "Mostrar solo las tareas recon con el script \"SNMP L2 Recon\"" +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3650 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3881 +msgid "Literal module name forced" +msgstr "Nombre de mĆ³dulo literal forzado" -#: ../../operation/agentes/pandora_networkmap.editor.php:362 -#: ../../operation/agentes/pandora_networkmap.view.php:186 -msgid "Source from CIDR IP mask" -msgstr "Origen de mĆ”scara CIDR" +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3689 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3941 +#: ../../godmode/reporting/create_container.php:418 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1760 +#: ../../godmode/reporting/reporting_builder.item_editor.php:4160 +#: ../../godmode/reporting/reporting_builder.item_editor.php:4197 +#: ../../godmode/reporting/reporting_builder.item_editor.php:4366 +#: ../../godmode/reporting/reporting_builder.item_editor.php:4639 +#: ../../godmode/reporting/reporting_builder.item_editor.php:4673 +#: ../../godmode/reporting/reporting_builder.item_editor.php:4727 +#: ../../include/functions_ui.php:5845 ../../include/functions_html.php:5357 +msgid "Select an Agent first" +msgstr "Debe seleccionar primero un agente" -#: ../../operation/agentes/pandora_networkmap.editor.php:365 -#: ../../enterprise/godmode/agentes/manage_config_remote.php:140 -msgid "Source group" -msgstr "Grupo de origen" +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3771 +msgid "Please save the template to start adding items into the list." +msgstr "Por favor, guarda la plantilla para empezar a aƱadir elementos a la lista." -#: ../../operation/agentes/pandora_networkmap.editor.php:382 -msgid "Source id group changed. All elements in networkmap will be lost." -msgstr "" -"Grupo de ID de origen cambiado. Se perderĆ”n todos los elementos del mapa de " -"red." +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:4286 +msgid "Name and SLA limit should not be empty" +msgstr "El nombre y el lĆ­mite SLA no deberĆ­an estar vacĆ­os." -#: ../../operation/agentes/pandora_networkmap.editor.php:387 -#: ../../operation/agentes/pandora_networkmap.view.php:198 -msgid "Don't show subgroups:" -msgstr "No mostrar subgrupos:" +#: ../../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/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:4269 +#: ../../include/rest-api/models/VisualConsole/Item.php:2147 +#: ../../include/lib/Dashboard/Widgets/module_icon.php:384 +#: ../../include/lib/Dashboard/Widgets/module_status.php:374 +#: ../../operation/visual_console/view.php:341 +msgid "Icon" +msgstr "Icono" -#: ../../operation/agentes/pandora_networkmap.editor.php:405 -#: ../../operation/agentes/pandora_networkmap.view.php:232 -msgid "Method generation networkmap" -msgstr "MĆ©todo de generaciĆ³n de mapas de red" +#: ../../enterprise/godmode/reporting/visual_console_builder.wizard_services.php:139 +#: ../../enterprise/include/functions_ipam.php:1567 +msgid "Available" +msgstr "Disponible" -#: ../../operation/agentes/pandora_networkmap.editor.php:425 -#: ../../operation/agentes/pandora_networkmap.view.php:247 -#: ../../enterprise/extensions/vmware/vmware_view.php:1762 -msgid "Node separation" -msgstr "SeparaciĆ³n de nodos" +#: ../../enterprise/godmode/reporting/visual_console_builder.wizard_services.php:141 +#: ../../include/graphs/export_data.php:100 +msgid "Selected" +msgstr "Seleccionado" -#: ../../operation/agentes/pandora_networkmap.editor.php:426 -#: ../../operation/agentes/pandora_networkmap.view.php:248 -msgid "Separation between nodes. By default 0.25" -msgstr "SeparaciĆ³n entre nodos. Por defecto 0,25" +#: ../../enterprise/godmode/reporting/visual_console_builder.wizard_services.php:150 +#: ../../enterprise/godmode/reporting/visual_console_builder.wizard_services.php:151 +msgid "Push the selected services into the list" +msgstr "AƱade los servicios seleccionados a la lista" -#: ../../operation/agentes/pandora_networkmap.editor.php:428 -#: ../../operation/agentes/pandora_networkmap.view.php:250 -msgid "Rank separation" -msgstr "SeparaciĆ³n de rango" +#: ../../enterprise/godmode/reporting/visual_console_builder.wizard_services.php:161 +#: ../../enterprise/godmode/reporting/visual_console_builder.wizard_services.php:162 +msgid "Remove the services from the list" +msgstr "Elimina los servicios de la lista" -#: ../../operation/agentes/pandora_networkmap.editor.php:429 -#: ../../operation/agentes/pandora_networkmap.view.php:251 +#: ../../enterprise/godmode/reporting/visual_console_builder.wizard_services.php:229 +msgid "Icon preview" +msgstr "Vista previa del icono" + +#: ../../enterprise/godmode/reporting/visual_console_builder.wizard_services.php:295 +msgid "The services list is empty" +msgstr "La lista de servicios esta vacĆ­a." + +#: ../../enterprise/godmode/reporting/reporting_builder.template_advanced.php:115 +msgid "Advance Options" +msgstr "Opciones avanzadas" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_list_item.php:207 +#: ../../enterprise/godmode/reporting/reporting_builder.template_list_item.php:226 +#: ../../enterprise/godmode/reporting/reporting_builder.template_list_item.php:245 +#: ../../godmode/reporting/reporting_builder.list_items.php:378 +#: ../../godmode/reporting/reporting_builder.list_items.php:397 +#: ../../godmode/reporting/reporting_builder.list_items.php:416 +msgid "Ascendent" +msgstr "Ascencente" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_list_item.php:214 +#: ../../enterprise/godmode/reporting/reporting_builder.template_list_item.php:233 +#: ../../enterprise/godmode/reporting/reporting_builder.template_list_item.php:252 +#: ../../godmode/reporting/reporting_builder.list_items.php:385 +#: ../../godmode/reporting/reporting_builder.list_items.php:404 +#: ../../godmode/reporting/reporting_builder.list_items.php:420 +msgid "Descent" +msgstr "Descendente" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_list_item.php:259 +#: ../../godmode/reporting/reporting_builder.list_items.php:425 +msgid "Name or Description" +msgstr "Nombre o descripciĆ³n" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_list_item.php:312 +#: ../../godmode/netflow/nf_item_list.php:228 ../../godmode/netflow/nf_item_list.php:230 +msgid "Move to up" +msgstr "Subir" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_list_item.php:325 +#: ../../godmode/netflow/nf_item_list.php:226 ../../godmode/netflow/nf_item_list.php:231 +msgid "Move to down" +msgstr "Bajar" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_list_item.php:409 +#: ../../godmode/reporting/reporting_builder.list_items.php:445 +#: ../../include/functions_graph.php:1538 +msgid "No items." +msgstr "Sin elementos" + +#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:139 +#: ../../enterprise/include/class/Azure.cloud.php:420 +#: ../../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:907 +#: ../../enterprise/include/class/MySQL.app.php:196 +#: ../../enterprise/include/class/Google.cloud.php:423 +#: ../../enterprise/include/class/Oracle.app.php:194 +#: ../../enterprise/include/class/MicrosoftSQLServer.app.php:193 +#: ../../godmode/wizards/HostDevices.class.php:412 +#: ../../include/class/CustomNetScan.class.php:158 +msgid "You have no access to edit this task." +msgstr "No tiene permisos para editar esta tarea." + +#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:179 +msgid "Command Mysqldump is failed." +msgstr "Error en el comando Mysqldump." + +#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:225 +#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:238 +#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:287 +#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:306 +#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:386 +#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:403 +msgid "Failed to create task" +msgstr "No se ha podido crear la tarea" + +#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:293 +msgid "No template selected" +msgstr "No se ha seleccionado ninguna plantilla" + +#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:412 +msgid "I do not know what you want to do" +msgstr "No sĆ© lo que desea hacer" + +#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:429 +#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:611 +msgid "You have no access to manage console tasks." +msgstr "No puede acceder a la gestiĆ³n de tareas de la consola." + +#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:446 +#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:517 +msgid "Create new console task" +msgstr "Crear nueva tarea de la consola" + +#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:469 +#: ../../enterprise/include/class/Azure.cloud.php:689 +#: ../../enterprise/include/class/VMware.app.php:455 +#: ../../enterprise/include/class/Omnishell.class.php:630 +#: ../../enterprise/include/class/Omnishell.class.php:980 +#: ../../enterprise/include/class/Omnishell.class.php:1349 +#: ../../enterprise/include/class/DB2.app.php:354 +#: ../../enterprise/include/class/SAP.app.php:401 +#: ../../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 +#: ../../enterprise/include/class/MicrosoftSQLServer.app.php:356 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:285 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:339 +#: ../../enterprise/include/lib/ClusterViewer/ClusterManager.php:752 +#: ../../enterprise/include/lib/ClusterViewer/ClusterWizard.php:349 +#: ../../godmode/modules/manage_network_components_form.php:367 +#: ../../godmode/reporting/graph_builder.main.php:308 +#: ../../godmode/wizards/HostDevices.class.php:648 +#: ../../godmode/wizards/HostDevices.class.php:747 +#: ../../godmode/wizards/Wizard.main.php:416 +#: ../../godmode/wizards/DiscoveryTaskList.class.php:181 +#: ../../include/functions_html.php:6161 ../../include/class/CustomNetScan.class.php:314 +#: ../../include/class/CustomNetScan.class.php:422 +#: ../../include/class/HTML.class.php:419 +msgid "Go back" +msgstr "Volver" + +#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:489 +msgid "Updating console task" +msgstr "Actualizar tarea de la consola" + +#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:514 ../../godmode/menu.php:49 +#: ../../godmode/wizards/DiscoveryTaskList.class.php:105 +msgid "Task list" +msgstr "Lista de tareas" + +#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:519 +msgid "Update console task" +msgstr "Actualizar tarea de la consola" + +#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:650 +msgid "Next Execution" +msgstr "Siguiente ejecuciĆ³n" + +#: ../../enterprise/godmode/wizards/Cloud.class.php:182 +#: ../../enterprise/godmode/wizards/Applications.class.php:157 +#: ../../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:78 +#: ../../godmode/wizards/HostDevices.class.php:190 +#: ../../godmode/servers/discovery.php:59 +msgid "Discovery" +msgstr "Discovery" + +#: ../../enterprise/godmode/wizards/Cloud.class.php:210 +#: ../../enterprise/godmode/wizards/Applications.class.php:186 msgid "" -"Only flat and radial. Separation between arrows. By default 0.5 in flat and " -"1.0 in radial" +"All company names used here are for identification purposes only. Use of these names, " +"logos, and brands does not imply endorsement." msgstr "" -"Solo plano y radial. SeparaciĆ³n entre flechas. Por defecto 0,5 en el plano y " -"1,0 en el radial." +"Todos los nombres de compaƱƭas aquĆ­ utilizados tienen fines identificatorios. El uso " +"de estos nombres, logos y marcas no implica patrocinio alguno." -#: ../../operation/agentes/pandora_networkmap.editor.php:431 -#: ../../operation/agentes/pandora_networkmap.view.php:253 -msgid "Min nodes dist" -msgstr "Distancia mĆ­nima entre nodos" - -#: ../../operation/agentes/pandora_networkmap.editor.php:432 -#: ../../operation/agentes/pandora_networkmap.view.php:254 -msgid "Only circular. Minimum separation between all nodes. By default 1.0" -msgstr "Solo circular. SeparaciĆ³n mĆ­nima entre todos los nodos. Por defecto 1,0." - -#: ../../operation/agentes/pandora_networkmap.editor.php:434 -#: ../../operation/agentes/pandora_networkmap.view.php:256 -msgid "Default ideal node separation" -msgstr "SeparaciĆ³n ideal de nodos por defecto" - -#: ../../operation/agentes/pandora_networkmap.editor.php:435 -#: ../../operation/agentes/pandora_networkmap.view.php:257 -msgid "Only fdp. Default ideal node separation in the layout. By default 0.3" -msgstr "" -"Solo FDP. SeparaciĆ³n ideal de nodos por defecto en el diseƱo. Por defecto 0,3." - -#: ../../operation/agentes/pandora_networkmap.editor.php:445 -#: ../../enterprise/godmode/agentes/pandora_networkmap_empty.editor.php:173 -#: ../../godmode/agentes/pandora_networkmap_empty.editor.php:175 -msgid "Save networkmap" -msgstr "Guardar mapa de red" - -#: ../../operation/agentes/pandora_networkmap.editor.php:456 -#: ../../enterprise/godmode/agentes/pandora_networkmap_empty.editor.php:184 -#: ../../godmode/agentes/pandora_networkmap_empty.editor.php:186 -msgid "Update networkmap" -msgstr "Actualizar mapa de red" - -#: ../../operation/agentes/pandora_networkmap.editor.php:601 -msgid "Source id group changed. All elements in Networkmap will be lost" -msgstr "" -"Grupo de ID de origen cambiado. Se perderĆ”n todos los elementos del mapa de " -"red." - -#: ../../operation/agentes/interface_traffic_graph_win.php:78 -#: ../../include/rest-api/models/VisualConsole/View.php:738 -#: ../../include/rest-api/models/VisualConsole/View.php:817 -msgid "In" -msgstr "En" - -#: ../../operation/agentes/interface_traffic_graph_win.php:79 -#: ../../include/rest-api/models/VisualConsole/View.php:739 -#: ../../include/rest-api/models/VisualConsole/View.php:818 -msgid "Out" -msgstr "Fuera" - -#: ../../operation/agentes/interface_traffic_graph_win.php:95 +#: ../../enterprise/godmode/wizards/Cloud.class.php:240 +#: ../../enterprise/godmode/wizards/Cloud.class.php:248 #, php-format -msgid "%s Interface Graph" -msgstr "GrĆ”fica de interfaz de %s" +msgid "%s credentials" +msgstr "Credenciales de %s" -#: ../../operation/agentes/interface_traffic_graph_win.php:250 -msgid "Zoom factor" -msgstr "Nivel de zoom" - -#: ../../operation/agentes/interface_traffic_graph_win.php:257 -msgid "Full" -msgstr "Completa" - -#: ../../operation/agentes/estado_generalagente.php:57 -msgid "The agent has not assigned server. Maybe agent does not run fine." +#: ../../enterprise/godmode/wizards/Cloud.class.php:264 +msgid "" +"If a task with the selected credentials is already running, it will be edited. To " +"create a new one, another account from the credential store must be selected." msgstr "" -"El agente no ha sido asignado a ningĆŗn servidor. QuizĆ” el agente no se estĆ© " -"ejecutando correctamente." +"Si una tarea con las credenciales seleccionadas ya se estĆ” ejecutando, se editarĆ”. " +"Para crear una nueva, se debe seleccionar otra cuenta del almacĆ©n de credenciales." -#: ../../operation/agentes/estado_generalagente.php:214 -#: ../../enterprise/views/cluster/view.php:273 -msgid "IP address" -msgstr "DirecciĆ³n IP" +#: ../../enterprise/godmode/wizards/Cloud.class.php:284 +msgid "Manage accounts" +msgstr "Administrar cuentas" -#: ../../operation/agentes/estado_generalagente.php:267 -msgid "Remote configuration enabled" -msgstr "ConfiguraciĆ³n remota habilitada" +#: ../../enterprise/godmode/wizards/Cloud.class.php:296 +msgid "Cloud tool full path" +msgstr "Ruta completa de la herramienta en la nube" -#: ../../operation/agentes/estado_generalagente.php:330 -msgid "Agent contact" -msgstr "Contacto de agente" +#: ../../enterprise/godmode/wizards/Cloud.class.php:304 +msgid "Account" +msgstr "Cuenta" -#: ../../operation/agentes/estado_generalagente.php:337 -msgid "Refresh data" -msgstr "Actualizar datos" +#: ../../enterprise/godmode/wizards/Cloud.class.php:365 +msgid "Select a set of credentials from the list" +msgstr "Seleccione un conjunto de credenciales de la lista" -#: ../../operation/agentes/estado_generalagente.php:378 -msgid "Next contact" -msgstr "Siguiente contacto" +#: ../../enterprise/godmode/wizards/Cloud.class.php:378 +#, php-format +msgid "Path %s is not executable." +msgstr "La ruta %s no se puede ejecutar." -#: ../../operation/agentes/estado_generalagente.php:410 -#: ../../include/functions_events.php:5119 -#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:493 -#: ../../godmode/reporting/reporting_builder.item_editor.php:73 -#: ../../godmode/agentes/agent_manager.php:496 -msgid "Secondary groups" -msgstr "Grupos secundarios" +#: ../../enterprise/godmode/wizards/Cloud.class.php:423 +msgid "Account disconnected" +msgstr "Cuenta desconectada" -#: ../../operation/agentes/estado_generalagente.php:427 -#: ../../operation/agentes/ver_agente.php:1218 -#: ../../include/functions_visual_map_editor.php:956 -#: ../../include/rest-api/models/VisualConsole/Item.php:2175 -#: ../../enterprise/views/ipam/sites/edit.php:64 -#: ../../enterprise/views/ipam/sites/list.php:48 -#: ../../godmode/modules/manage_nc_groups_form.php:71 -#: ../../godmode/reporting/visual_console_builder.elements.php:108 -#: ../../godmode/massive/massive_edit_agents.php:648 -#: ../../godmode/agentes/agent_manager.php:565 -#: ../../godmode/groups/configure_group.php:170 -#: ../../godmode/groups/group_list.php:848 -msgid "Parent" -msgstr "Padre" +#: ../../enterprise/godmode/wizards/Cloud.class.php:425 +msgid "Failed disconnecting account" +msgstr "Error al desconectar la cuenta" -#: ../../operation/agentes/estado_generalagente.php:466 -msgid "Agent info" -msgstr "InformaciĆ³n del agente" +#: ../../enterprise/godmode/wizards/Cloud.class.php:503 +msgid "Credentials successfully updated" +msgstr "Credenciales actualizados correctamente" -#: ../../operation/agentes/estado_generalagente.php:473 -#: ../../include/functions_treeview.php:750 -msgid "Position (Long, Lat)" -msgstr "PosiciĆ³n (longitud, latitud)" +#: ../../enterprise/godmode/wizards/Cloud.class.php:505 +msgid "Failed updating credentials process" +msgstr "Error en el proceso de actualizaciĆ³n de credenciales" -#: ../../operation/agentes/estado_generalagente.php:479 -msgid "There is no GIS data." -msgstr "No hay datos GIS" +#: ../../enterprise/godmode/servers/HA_cluster.php:59 +#: ../../enterprise/godmode/servers/HA_cluster.php:83 +msgid "View nodes" +msgstr "Ver nodos" -#: ../../operation/agentes/estado_generalagente.php:497 -#: ../../operation/agentes/ver_agente.php:1526 -#: ../../include/functions_treeview.php:759 -#: ../../godmode/agentes/agent_manager.php:653 -#: ../../godmode/agentes/agent_manager.php:670 -msgid "Url address" -msgstr "DirecciĆ³n URL" +#: ../../enterprise/godmode/servers/HA_cluster.php:80 +msgid "Manage Pandora DB HA" +msgstr "Gestionar la alta disponibilidad de la base de datos de Pandora FMS" -#: ../../operation/agentes/estado_generalagente.php:507 -#: ../../include/functions_treeview.php:634 -msgid "Other IP addresses" -msgstr "Otras direcciones IP" +#: ../../enterprise/godmode/servers/HA_cluster.php:101 +msgid "Manage Database HA" +msgstr "Gestionar la base de datos de alta disponibilidad" -#: ../../operation/agentes/estado_generalagente.php:515 -#: ../../include/functions_treeview.php:767 -msgid "Timezone Offset" -msgstr "Zona horaria desactivada" +#: ../../enterprise/godmode/servers/HA_cluster.php:136 +msgid "" +"Make the cluster forget failed operations from history of\n" +" the resource and re-detect its current state. This can be\n" +" useful to purge knowledge of past failures that have since\n" +" been resolved. If a resource id is not specified then all\n" +" resources / stonith devices will be cleaned up. If a node\n" +" is not specified then resources / stonith devices on all\n" +" nodes will be cleaned up" +msgstr "" +"Hacer que el cluster olvide las operaciones fallidas del historial de\n" +" recurso y redetectar su estado actual. Esto puede ser\n" +" Ćŗtil para purgar los datos de fallos anteriores que se han\n" +" resuelto dede entonces. Si no se especifica ID de recurso, entonces todos los\n" +" recursos / dispositivos stonith se limpiarĆ”n. Si no\n" +" se especifica, entonces los recursos / dispositivos stonith de todos los\n" +" nodos se limparĆ”n" + +#: ../../enterprise/godmode/servers/HA_cluster.php:162 +msgid "Node label" +msgstr "Etiqueta de nodo" + +#: ../../enterprise/godmode/servers/HA_cluster.php:163 +#: ../../enterprise/include/functions_reporting_csv.php:2348 +#: ../../operation/tree.php:246 +msgid "Agent status" +msgstr "Estado de agente" + +#: ../../enterprise/godmode/servers/HA_cluster.php:164 +msgid "DB Repl." +msgstr "ReplicaciĆ³n de la base de datos." + +#: ../../enterprise/godmode/servers/HA_cluster.php:165 +msgid "DB Status" +msgstr "Estado BD" + +#: ../../enterprise/godmode/servers/HA_cluster.php:167 +#: ../../extensions/quick_shell.php:195 +#: ../../godmode/agentes/module_manager_editor_network.php:478 +msgid "SSH" +msgstr "SSH" + +#: ../../enterprise/godmode/servers/HA_cluster.php:168 +msgid "DB Role" +msgstr "FunciĆ³n de la base de datos" + +#: ../../enterprise/godmode/servers/HA_cluster.php:169 +msgid "Cluster Role" +msgstr "FunciĆ³n del clĆŗster" + +#: ../../enterprise/godmode/servers/HA_cluster.php:171 +msgid "Seconds behind master" +msgstr "Segundos despuĆ©s del maestro" + +#: ../../enterprise/godmode/servers/HA_cluster.php:172 +msgid "Virtual IP" +msgstr "IP virtual" + +#: ../../enterprise/godmode/servers/HA_cluster.php:173 +msgid "SQL version" +msgstr "VersiĆ³n SQL" + +#: ../../enterprise/godmode/servers/HA_cluster.php:174 +msgid "DB version" +msgstr "VersiĆ³n de la base de datos" + +#: ../../enterprise/godmode/servers/HA_cluster.php:176 +msgid "Pending action" +msgstr "AcciĆ³n pendiente" + +#: ../../enterprise/godmode/servers/HA_cluster.php:301 +msgid "Show/ edit node" +msgstr "Mostrar/editar nodo" + +#: ../../enterprise/godmode/servers/HA_cluster.php:317 +msgid "Put node into standby status" +msgstr "Poner nodo en suspensiĆ³n" + +#: ../../enterprise/godmode/servers/HA_cluster.php:332 +msgid "Force node resync" +msgstr "Forzar re-sincronizaciĆ³n de nodos" + +#: ../../enterprise/godmode/servers/HA_cluster.php:359 +msgid "Put node into online status" +msgstr "Poner nodo en estado online" + +#: ../../enterprise/godmode/servers/HA_cluster.php:374 +msgid "Show cluster details" +msgstr "Mostrar detalles del cluster" + +#: ../../enterprise/godmode/servers/HA_cluster.php:392 +msgid "Remove node from this list" +msgstr "Eliminar nodo de la lista" + +#: ../../enterprise/godmode/servers/HA_cluster.php:428 +msgid "Register node" +msgstr "Registrar nodo" + +#: ../../enterprise/godmode/servers/HA_cluster.php:466 +msgid "" +"Target node will be erased from this list but not removed from cluster. Do you want " +"to continue?" +msgstr "" +"El nodo objetivo se eliminarĆ” de la lista pero no del cluster. ĀæDesea continuar?" + +#: ../../enterprise/godmode/servers/manage_export.php:69 +msgid "Error updating export target" +msgstr "Error al actualizar el servidor de exportaciĆ³n" + +#: ../../enterprise/godmode/servers/manage_export.php:71 +msgid "Successfully updated export target" +msgstr "Servidor de exportaciĆ³n actualizado correctamente" + +#: ../../enterprise/godmode/servers/manage_export.php:82 +msgid "Error deleting export target" +msgstr "Error al borrar el servidor de exportaciĆ³n" + +#: ../../enterprise/godmode/servers/manage_export.php:84 +msgid "" +"Successfully deleted export target. All the linked modules will be automatically " +"unattached" +msgstr "" +"Objetivo de exportaciĆ³n eliminado correctamente. Todos los mĆ³dulos enlazados se " +"desvincularĆ”n automĆ”ticamente" + +#: ../../enterprise/godmode/servers/manage_export.php:107 +msgid "Can't be created export target: User and password must be filled with FTP mode" +msgstr "" +"No pudo crearse un servidor de exportaciĆ³n: el usuario y la contraseƱa deben ser " +"completados con el modo de FTP." + +#: ../../enterprise/godmode/servers/manage_export.php:126 +msgid "There are no defined export targets" +msgstr "No hay servidores de exportaciĆ³n definidos" + +#: ../../enterprise/godmode/servers/manage_export.php:138 +#: ../../enterprise/godmode/servers/manage_export_form.php:91 +msgid "Preffix" +msgstr "Prefijo" + +#: ../../enterprise/godmode/servers/manage_export.php:141 +#: ../../enterprise/godmode/servers/manage_export_form.php:103 +msgid "Transfer mode" +msgstr "Modo de transferencia" + +#: ../../enterprise/godmode/servers/credential_boxes_satellite.php:35 +msgid "Credential Boxes List" +msgstr "Lista de casillas de credenciales" + +#: ../../enterprise/godmode/servers/credential_boxes_satellite.php:42 +msgid "Credential Boxes" +msgstr "Casillas de credenciales" + +#: ../../enterprise/godmode/servers/credential_boxes_satellite.php:248 +#: ../../enterprise/godmode/servers/manage_credential_boxes.php:57 +#: ../../enterprise/include/ajax/servers.ajax.php:99 +#: ../../enterprise/include/ajax/servers.ajax.php:157 +#: ../../enterprise/include/ajax/servers.ajax.php:283 +#: ../../enterprise/include/functions_ipam.php:1343 +msgid "Subnet" +msgstr "Subred" + +#: ../../enterprise/godmode/servers/credential_boxes_satellite.php:293 +#: ../../enterprise/godmode/servers/list_satellite.php:69 +#: ../../enterprise/include/ajax/servers.ajax.php:139 +msgid "No Data" +msgstr "No hay datos" + +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:148 +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:152 +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:348 +msgid "Delete remote conf server files" +msgstr "Eliminar archivos de servidor de configuraciĆ³n remotos" + +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:349 +msgid "Delete this conf file implies that server will send back local config to console" +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:386 +#: ../../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:401 +#: ../../include/functions_servers.php:569 ../../include/functions_servers.php:1308 +#: ../../include/class/AgentWizard.class.php:1296 +msgid "Network server" +msgstr "Servidor de red" + +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:416 +#: ../../include/functions_servers.php:855 ../../include/functions_servers.php:1356 +msgid "Alert server" +msgstr "Servidor de alertas" + +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:431 +#: ../../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: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 +#: ../../enterprise/include/class/MicrosoftSQLServer.app.php:450 +#: ../../enterprise/tools/ipam/ipam_editor.php:163 +#: ../../godmode/wizards/HostDevices.class.php:848 +#: ../../include/functions_servers.php:595 ../../include/functions_servers.php:1341 +#: ../../include/class/CustomNetScan.class.php:479 +#: ../../general/first_task/recon_view.php:22 +msgid "Discovery server" +msgstr "Servidor Discovery" + +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:446 +#: ../../include/functions_servers.php:608 ../../include/functions_servers.php:1320 +#: ../../include/class/AgentWizard.class.php:1277 +msgid "Plugin server" +msgstr "Servidor de plugins" + +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:461 +#: ../../include/functions_menu.php:526 ../../operation/menu.php:125 +msgid "SNMP console" +msgstr "Consola SNMP" + +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:476 +#: ../../enterprise/include/lib/ClusterViewer/ClusterWizard.php:840 +#: ../../include/functions_servers.php:621 +msgid "Prediction server" +msgstr "Servidor de predicciĆ³n" + +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:491 +#: ../../include/functions_servers.php:634 ../../include/functions_servers.php:1326 +#: ../../include/class/AgentWizard.class.php:1287 +msgid "WMI server" +msgstr "Servidor WMI" + +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:507 +#: ../../include/functions_servers.php:673 ../../include/functions_servers.php:1329 +msgid "Web server" +msgstr "Servidor web" + +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:522 +#: ../../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:537 +#: ../../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:552 +#: ../../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:567 +msgid "ICMP server" +msgstr "Servidor ICPM" + +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:582 +#: ../../include/functions_servers.php:1311 +msgid "SNMP server" +msgstr "Servidor SNMP" + +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:597 +#: ../../include/functions_servers.php:1347 +msgid "WUX server" +msgstr "Servidor WUX" + +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:612 +#: ../../include/functions_servers.php:816 ../../include/functions_servers.php:1359 +msgid "NCM server" +msgstr "Servidor NCM" + +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:642 +msgid "Network timeout" +msgstr "Tiempo de espera de red" + +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:650 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:666 +msgid " Seconds" +msgstr " Segundos" + +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:658 +msgid "Plugin timeout" +msgstr "Tiempo de espera del plugin" + +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:674 +msgid "SNMP console threads" +msgstr "Hilos de la consola SNMP" + +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:690 +msgid "Network threads" +msgstr "Hilos de red" + +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:706 +msgid "Plugin threads" +msgstr "Hilos de plugin" + +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:722 +msgid "Recon threads" +msgstr "Hilos de recon" + +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:738 +msgid "Dataserver threads" +msgstr "Hilos del servidor de datos" + +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:754 +msgid "Web threads" +msgstr "Hilos web" + +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:770 +msgid "SNMP threads" +msgstr "Hilos SNMP" + +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:786 +msgid "ICMP threads" +msgstr "Hilos ICMP" + +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:816 +msgid "Autocreate group" +msgstr "Autocrear grupo" + +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:832 +msgid "Autocreate group force" +msgstr "Forzar auto-creaciĆ³n de grupo" + +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:847 +msgid "Autocreate" +msgstr "Autocrear" + +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:865 +msgid "Server features" +msgstr "funcionalidades del servidor" + +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:872 +msgid "Optimization settings" +msgstr "Ajustes de optimizaciĆ³n" + +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:879 +msgid "Other server settings" +msgstr "Otros ajustes de servidor" + +#: ../../enterprise/godmode/servers/manage_credential_boxes.php:20 +msgid "Add Credential Box" +msgstr "AƱadir casilla de credenciales" + +#: ../../enterprise/godmode/servers/manage_export_form.php:125 +msgid "Target directory" +msgstr "Directorio objetivo" + +#: ../../enterprise/godmode/servers/manage_export_form.php:129 +#: ../../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:566 +msgid "Extra options" +msgstr "Opciones adicionales" + +#: ../../enterprise/godmode/servers/list_satellite.php:27 +msgid "Satellite Server" +msgstr "Servidor SatĆ©lite" + +#: ../../enterprise/include/functions_cron.php:178 +#: ../../enterprise/include/functions_cron.php:256 +#: ../../enterprise/include/functions_cron.php:331 +#: ../../enterprise/include/functions_cron.php:375 +msgid "Report to build" +msgstr "Informe a crear" + +#: ../../enterprise/include/functions_cron.php:186 +#: ../../enterprise/include/functions_cron.php:236 +#: ../../enterprise/include/functions_reporting.php:8179 +#: ../../enterprise/operation/reporting/custom_reporting.php:124 +msgid "Send to emails (separated by comma)" +msgstr "Enviar a emails (separados por comas)" + +#: ../../enterprise/include/functions_cron.php:190 +#: ../../enterprise/include/functions_cron.php:240 +#: ../../enterprise/include/functions_reporting.php:8187 +#: ../../enterprise/operation/reporting/custom_reporting.php:132 +#: ../../godmode/setup/news.php:183 ../../godmode/setup/news.php:246 +#: ../../operation/messages/message_list.php:199 +#: ../../operation/messages/message_edit.php:350 +msgid "Subject" +msgstr "Asunto" + +#: ../../enterprise/include/functions_cron.php:194 +#: ../../enterprise/include/functions_cron.php:244 +#: ../../enterprise/include/functions_reporting.php:8205 +#: ../../enterprise/operation/reporting/custom_reporting.php:150 +#: ../../operation/messages/message_edit.php:360 +msgid "Message" +msgstr "Mensaje" + +#: ../../enterprise/include/functions_cron.php:199 +#: ../../enterprise/include/functions_cron.php:249 +#: ../../enterprise/include/functions_cron.php:275 +msgid "Report Type" +msgstr "Tipo de informe" + +#: ../../enterprise/include/functions_cron.php:206 +#: ../../enterprise/include/functions_cron.php:353 +msgid "Template to build" +msgstr "Plantilla a crear" + +#: ../../enterprise/include/functions_cron.php:224 +msgid "Regexp agent filter" +msgstr "Filtro de agente RegEx" + +#: ../../enterprise/include/functions_cron.php:228 +#: ../../enterprise/include/functions_tasklist.php:339 +#: ../../include/functions_cron.php:664 +msgid "Report per agent" +msgstr "Informe por agente" + +#: ../../enterprise/include/functions_cron.php:264 +#: ../../enterprise/include/functions_cron.php:286 +#: ../../enterprise/include/functions_cron.php:376 +msgid "Save to disk into path" +msgstr "Guardar disco en la ruta" + +#: ../../enterprise/include/functions_cron.php:265 +msgid "The apache user should have read-write access on this folder. Ex: " +msgstr "" +"El usuario de Apache deberĆ­a tener acceso de lectura y escritura en esta carpeta. Por " +"ejemplo: " + +#: ../../enterprise/include/functions_cron.php:271 +msgid "File name prefix" +msgstr "Prefijo del nombre del archivo" + +#: ../../enterprise/include/functions_cron.php:291 +msgid "Active backups" +msgstr "Copias de seguridad activas" + +#: ../../enterprise/include/functions_cron.php:299 +#: ../../enterprise/include/functions_tasklist.php:383 +#: ../../include/functions_cron.php:703 +msgid "Custom script" +msgstr "Script personalizado" + +#: ../../enterprise/include/functions_cron.php:306 +#: ../../enterprise/include/functions_cron.php:332 +#: ../../enterprise/include/functions_cron.php:354 +msgid "Send to email" +msgstr "Enviar a correo electrĆ³nico" + +#: ../../enterprise/include/functions_cron.php:315 +msgid "Function name" +msgstr "Nombre de la funciĆ³n" + +#: ../../enterprise/include/functions_cron.php:333 +msgid "Send custom report by email" +msgstr "Enviar un informe personalizado por email" + +#: ../../enterprise/include/functions_cron.php:355 +msgid "Send custom report (from template) by email" +msgstr "Enviar informe personalizado (desde plantilla) por email" + +#: ../../enterprise/include/functions_cron.php:377 +msgid "Save custom report to disk" +msgstr "Guardar el informe personalizado en el disco" + +#: ../../enterprise/include/functions_cron.php:397 +msgid "Backup Pandora database" +msgstr "Copia de seguridad de la BD de Pandora FMS" + +#: ../../enterprise/include/functions_cron.php:417 +msgid "Execute custom script" +msgstr "Ejecutar script personalizado" + +#: ../../enterprise/include/functions_cron.php:499 +msgid "Not scheduled" +msgstr "No programado" + +#: ../../enterprise/include/functions_cron.php:500 +#: ../../include/functions_netflow.php:1849 +msgid "Hourly" +msgstr "Cada hora" + +#: ../../enterprise/include/functions_cron.php:504 +msgid "Yearly" +msgstr "Anualmente" + +#: ../../enterprise/include/functions_cron.php:800 +#: ../../enterprise/include/functions_cron.php:833 +#: ../../enterprise/include/functions_reporting.php:8199 +#: ../../enterprise/include/functions_reporting.php:8213 +#: ../../enterprise/operation/reporting/custom_reporting.php:144 +#: ../../enterprise/operation/reporting/custom_reporting.php:158 +msgid "This is an optional field" +msgstr "Este campo es opcional" + +#: ../../enterprise/include/functions_cron.php:1531 +msgid "Scheduled report had an attempt to send an email without attachments." +msgstr "" +"El informe programado tenĆ­a un intento de enviar un correo electrĆ³nico sin archivos " +"adjuntos." + +#: ../../enterprise/include/functions_cron.php:1534 +msgid "Scheduled report had an attempt to send an email with some attachments." +msgstr "" +"El informe programado tenĆ­a un intento de enviar un correo electrĆ³nico con algunos " +"archivos adjuntos." + +#: ../../enterprise/include/functions_cron.php:1776 +#: ../../include/functions_reporting.php:15189 +msgid "Greetings" +msgstr "Saludos" + +#: ../../enterprise/include/functions_cron.php:1778 +msgid "Attached to this email there's a CSV file of the logs" +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:15195 +msgid "Generated at" +msgstr "Generado el" + +#: ../../enterprise/include/functions_cron.php:1782 +#: ../../include/functions_reporting.php:15197 +msgid "Thanks for your time." +msgstr "Gracias por tu tiempo." + +#: ../../enterprise/include/functions_cron.php:1784 +#: ../../include/functions_reporting.php:15199 +msgid "Best regards, Pandora FMS" +msgstr "Saludos cordiales, Pandora FMS" + +#: ../../enterprise/include/functions_cron.php:1786 +#: ../../include/functions_reporting.php:15201 +msgid "This is an automatically generated email from Pandora FMS, please do not reply." +msgstr "" +"Este es un email generado automĆ”ticamente por Pandora FMS. Por favor, no respondas a " +"este email." + +#: ../../enterprise/include/functions_cron.php:1788 +msgid "logs csv" +msgstr "Logs en CSV" + +#: ../../enterprise/include/functions_cron.php:2207 +#, php-format +msgid "Error while executing task: %s, running %s, reason %s" +msgstr "Error al ejecutar la tarea: %s, ejecuciĆ³n de %s, motivo %s" + +#: ../../enterprise/include/functions_cron.php:2221 +#: ../../enterprise/include/functions_cron.php:2231 +msgid "Error while executing task" +msgstr "Error al ejecutar tarea " + +#: ../../enterprise/include/functions_tasklist.php:56 +#: ../../include/class/ConsoleSupervisor.php:2376 +msgid "DiscoveryConsoleTasks is not running properly" +msgstr "DiscoveryConsoleTasks no funciona adecuadamente" + +#: ../../enterprise/include/functions_tasklist.php:58 +msgid "Discovery relies on a proper setup of cron, the time-based scheduling service" +msgstr "" +"El Discovery se basa en la correcta configuraciĆ³n de cron, el servicio de " +"programaciĆ³n en funciĆ³n del tiempo" + +#: ../../enterprise/include/functions_tasklist.php:59 +#: ../../include/class/ConsoleSupervisor.php:2379 +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:2392 +msgid "Last execution" +msgstr "ƚltima ejecuciĆ³n" + +#: ../../enterprise/include/functions_tasklist.php:77 +msgid "Please check process is no locked." +msgstr "Compruebe que el proceso no estĆ” bloqueado" + +#: ../../enterprise/include/functions_tasklist.php:143 +#: ../../enterprise/include/functions_tasklist.php:688 +msgid "There are no console task defined yet." +msgstr "AĆŗn no hay tareas de consola definidas." + +#: ../../enterprise/include/functions_tasklist.php:156 +#: ../../include/functions_cron.php:467 +msgid "Last run" +msgstr "ƚltima ejecuciĆ³n" + +#: ../../enterprise/include/functions_tasklist.php:217 +#: ../../enterprise/include/functions_tasklist.php:279 +#: ../../enterprise/include/functions_tasklist.php:365 +#: ../../enterprise/include/functions_tasklist.php:406 +#: ../../enterprise/include/functions_tasklist.php:459 +#: ../../enterprise/include/functions_tasklist.php:498 +#: ../../enterprise/include/functions_tasklist.php:535 +#: ../../include/functions_cron.php:498 ../../include/functions_cron.php:536 +#: ../../include/functions_cron.php:591 ../../include/functions_cron.php:683 +#: ../../include/functions_cron.php:719 ../../include/functions_cron.php:765 +#: ../../include/functions_cron.php:807 ../../include/functions_cron.php:841 +msgid "Force run" +msgstr "Forzar ejecuciĆ³n" + +#: ../../enterprise/include/functions_tasklist.php:253 +#: ../../enterprise/include/functions_tasklist.php:342 +#: ../../enterprise/include/functions_tasklist.php:436 +#: ../../enterprise/include/functions_reporting_csv.php:983 +#: ../../enterprise/include/functions_reporting_csv.php:1184 +#: ../../enterprise/include/functions_reporting_csv.php:1215 +#: ../../enterprise/include/functions_reporting_csv.php:1270 +#: ../../enterprise/include/functions_reporting_csv.php:1325 +#: ../../enterprise/include/functions_reporting_csv.php:1374 +#: ../../enterprise/include/functions_reporting_csv.php:1429 +#: ../../enterprise/include/functions_reporting.php:8125 +#: ../../enterprise/include/functions_reporting.php:8159 +#: ../../enterprise/operation/reporting/custom_reporting.php:109 +#: ../../include/functions_cron.php:574 ../../include/functions_cron.php:667 +#: ../../include/functions_cron.php:791 +msgid "Report type" +msgstr "Tipo de informe" + +#: ../../enterprise/include/functions_tasklist.php:313 +#: ../../include/functions_cron.php:638 +msgid "regex" +msgstr "expresiĆ³n regular" + +#: ../../enterprise/include/functions_tasklist.php:433 +#: ../../extensions/resource_exportation.php:433 ../../include/functions_cron.php:747 +#: ../../include/functions_cron.php:788 +#: ../../include/lib/Dashboard/Widgets/reports.php:318 +#: ../../include/lib/Dashboard/Widgets/reports.php:363 +msgid "Report" +msgstr "Informe" + +#: ../../enterprise/include/functions_tasklist.php:435 +#: ../../enterprise/include/class/ManageBackups.class.php:166 +#: ../../include/functions_cron.php:749 ../../include/functions_cron.php:790 +#: ../../include/class/Diagnostics.class.php:2175 +msgid "Path" +msgstr "Ruta" + +#: ../../enterprise/include/functions_tasklist.php:569 +msgid "Task disabled" +msgstr "Tarea deshabilitada" + +#: ../../enterprise/include/functions_tasklist.php:572 +#: ../../enterprise/include/functions_ipam.php:2076 +#: ../../enterprise/include/functions_ipam.php:2077 +#: ../../enterprise/include/functions_ipam.php:2078 +#: ../../enterprise/tools/ipam/ipam_list.php:675 +#: ../../enterprise/tools/ipam/ipam_ajax.php:502 ../../godmode/db/db_main.php:189 +#: ../../godmode/snmpconsole/snmp_alert.php:1330 ../../include/functions_cron.php:869 +#: ../../include/functions_treeview.php:660 ../../include/functions_ui.php:549 +#: ../../operation/agentes/estado_generalagente.php:367 +#: ../../operation/gis_maps/ajax.php:351 ../../operation/gis_maps/ajax.php:362 +#: ../../operation/gis_maps/ajax.php:468 ../../operation/gis_maps/ajax.php:479 +msgid "Never" +msgstr "Nunca" + +#: ../../enterprise/include/functions_tasklist.php:671 +#: ../../godmode/wizards/DiscoveryTaskList.class.php:1024 +#: ../../include/functions_cron.php:943 +msgid "Disable task" +msgstr "Deshabilitar tarea" + +#: ../../enterprise/include/functions_tasklist.php:671 +#: ../../include/functions_cron.php:943 +msgid "Enable task" +msgstr "Habilitar tarea" + +#: ../../enterprise/include/functions_tasklist.php:693 +msgid "Console Tasks" +msgstr "Tareas de consola" + +#: ../../enterprise/include/functions_hostdevices.php:45 +msgid "Remote commands enabled" +msgstr "Comandos remotos habilitados" + +#: ../../enterprise/include/ajax/transactional.ajax.php:174 +#: ../../enterprise/operation/agentes/manage_transmap_creation.php:219 +msgid "The phase does not have a defined script" +msgstr "La fase no tiene un script definido." + +#: ../../enterprise/include/ajax/transactional.ajax.php:211 +#: ../../enterprise/operation/agentes/manage_transmap_creation.php:275 +msgid "Edit Data" +msgstr "Editar datos" + +#: ../../enterprise/include/ajax/top_n_widget.ajax.php:79 +msgid "avg" +msgstr "media" + +#: ../../enterprise/include/ajax/top_n_widget.ajax.php:80 +#: ../../godmode/reporting/reporting_builder.item_editor.php:4400 +msgid "max" +msgstr "mĆ”x" + +#: ../../enterprise/include/ajax/top_n_widget.ajax.php:81 +#: ../../godmode/reporting/reporting_builder.item_editor.php:4401 +msgid "min" +msgstr "mĆ­n" + +#: ../../enterprise/include/ajax/top_n_widget.ajax.php:82 +#: ../../godmode/reporting/reporting_builder.item_editor.php:4402 +msgid "sum" +msgstr "suma" + +#: ../../enterprise/include/ajax/ipam.ajax.php:249 +msgid "Current Networks" +msgstr "Redes actuales" + +#: ../../enterprise/include/ajax/ipam.ajax.php:296 +msgid "Please, create networks to assign to " +msgstr "Cree redes que asgignar a " + +#: ../../enterprise/include/ajax/ipam.ajax.php:300 +msgid "No networks to assign to supernet" +msgstr "No hay redes que asignar a la superred" + +#: ../../enterprise/include/ajax/ipam.ajax.php:302 +msgid "Please, create networks to assign to" +msgstr "Creer redes que asignar a" + +#: ../../enterprise/include/ajax/ipam.ajax.php:307 +msgid "Create and add networks in bulk" +msgstr "Crear y agregar redes de forma masiva" + +#: ../../enterprise/include/ajax/ipam.ajax.php:316 +msgid "Starting network" +msgstr "Iniciando red" + +#: ../../enterprise/include/ajax/ipam.ajax.php:316 +msgid "" +"The networks will be created/added starting from this address in the subnetting range " +"given by the mask. Use CIDR format (e.g.: 192.168.72.0/22). If no value was provided, " +"it uses the starting address of the supernet by default." +msgstr "" +"Las redes se crearĆ”n/agregarĆ”n a partir de esta direcciĆ³n en el rango de subredes " +"dado por la mĆ”scara. Utilice el formato CIDR (por ejemplo: 192.168.72.0/22). Si no se " +"proporcionĆ³ ningĆŗn valor, utilizarĆ” la direcciĆ³n inicial de la superred de forma " +"predeterminada." + +#: ../../enterprise/include/ajax/ipam.ajax.php:320 +msgid "Max. number" +msgstr "NĆŗmero mĆ”ximo" + +#: ../../enterprise/include/ajax/ipam.ajax.php:320 +msgid "" +"Maximum number of networks to be created/added from starting address of the range " +"specified above" +msgstr "" +"NĆŗmero mĆ”ximo de redes que se crearĆ”n/agregarĆ”n desde la direcciĆ³n inicial del rango " +"especificado anteriormente" + +#: ../../enterprise/include/ajax/ipam.ajax.php:385 +#: ../../enterprise/include/functions_ipam.php:1369 +#: ../../enterprise/include/functions_ipam.php:1983 +#: ../../enterprise/tools/ipam/ipam_list.php:97 +#: ../../enterprise/tools/ipam/ipam_list.php:588 +#: ../../enterprise/tools/ipam/ipam_editor.php:191 +#: ../../godmode/events/event_responses.editor.php:123 +msgid "Location" +msgstr "UbicaciĆ³n" + +#: ../../enterprise/include/ajax/ipam.ajax.php:386 +#: ../../enterprise/tools/ipam/ipam_editor.php:192 +msgid "For example: Central Data Center" +msgstr "Por ejemplo: Central General de Datos" + +#: ../../enterprise/include/ajax/ipam.ajax.php:418 +#: ../../enterprise/tools/ipam/ipam.php:171 ../../enterprise/tools/ipam/ipam.php:411 +#: ../../enterprise/tools/ipam/ipam_editor.php:224 +msgid "Sites" +msgstr "Sitios" + +#: ../../enterprise/include/ajax/ipam.ajax.php:419 +#: ../../enterprise/tools/ipam/ipam_editor.php:225 +msgid "For example: Pandora" +msgstr "Por ejemplo: Pandora" + +#: ../../enterprise/include/ajax/ipam.ajax.php:437 +#: ../../enterprise/tools/ipam/ipam_list.php:609 +#: ../../enterprise/tools/ipam/ipam_editor.php:243 +msgid "Vrf" +msgstr "Vrf" + +#: ../../enterprise/include/ajax/ipam.ajax.php:438 +#: ../../enterprise/tools/ipam/ipam_editor.php:244 +msgid "Virtual Routing and Forwarding" +msgstr "Enrutamiento y reenvĆ­o virtual" + +#: ../../enterprise/include/ajax/ipam.ajax.php:456 +#: ../../enterprise/tools/ipam/ipam_editor.php:262 +msgid "Include statistical monitors" +msgstr "Incluir monitores estadĆ­sticos" + +#: ../../enterprise/include/ajax/ipam.ajax.php:471 +#: ../../enterprise/tools/ipam/ipam_editor.php:277 +msgid "Lightweight mode" +msgstr "Modo ligero" + +#: ../../enterprise/include/ajax/ipam.ajax.php:472 +#: ../../enterprise/tools/ipam/ipam_editor.php:278 +msgid "Use quicker network scan" +msgstr "Usar escaneado de red rĆ”pido" + +#: ../../enterprise/include/ajax/ipam.ajax.php:488 +#: ../../enterprise/tools/ipam/ipam_editor.php:294 +msgid "Target group for monitoring agent" +msgstr "Grupo de destino para agente de monitorizaciĆ³n" + +#: ../../enterprise/include/ajax/ipam.ajax.php:509 +#: ../../enterprise/tools/ipam/ipam_editor.php:315 +msgid "Scan interval" +msgstr "Comprobar intervalo" + +#: ../../enterprise/include/ajax/ipam.ajax.php:510 +#: ../../enterprise/tools/ipam/ipam_editor.php:316 +msgid "0 for manually scan" +msgstr "0 para comprobaciĆ³n manual" + +#: ../../enterprise/include/ajax/ipam.ajax.php:524 +#: ../../enterprise/tools/ipam/ipam_editor.php:330 +msgid "The list of users can manage the networks in the IPAM." +msgstr "La lista de usuarios puede administrar las redes en el IPAM." + +#: ../../enterprise/include/ajax/ipam.ajax.php:525 +#: ../../enterprise/tools/ipam/ipam_editor.php:331 +msgid " Only the admin users can manage networks and edit the networks" +msgstr " Solo los usuarios administradores pueden administrar redes y editar las redes" + +#: ../../enterprise/include/ajax/ipam.ajax.php:526 +#: ../../enterprise/tools/ipam/ipam_editor.php:332 +msgid "Operator users" +msgstr "Usuarios del operador" + +#: ../../enterprise/include/ajax/ipam.ajax.php:532 +#: ../../enterprise/tools/ipam/ipam_editor.php:338 +msgid "All users" +msgstr "Todos los usuarios" + +#: ../../enterprise/include/ajax/ipam.ajax.php:613 +#: ../../enterprise/tools/ipam/ipam_supernet_config.php:536 +#: ../../enterprise/tools/ipam/ipam_supernet_network.php:82 +msgid "Supernet" +msgstr "Superred" + +#: ../../enterprise/include/ajax/ipam.ajax.php:614 +#: ../../enterprise/include/ajax/ipam.ajax.php:644 +#: ../../enterprise/include/functions_ipam.php:1980 +#: ../../enterprise/tools/ipam/ipam_list.php:570 +#: ../../enterprise/tools/ipam/ipam_vlan_network.php:63 +#: ../../enterprise/tools/ipam/ipam_calculator.php:185 +#: ../../enterprise/tools/ipam/ipam_supernet_network.php:58 +#: ../../enterprise/tools/ipam/ipam_supernet_network.php:83 +#: ../../enterprise/tools/ipam/ipam_editor.php:122 +#: ../../godmode/wizards/HostDevices.class.php:916 +#: ../../godmode/wizards/DiscoveryTaskList.class.php:597 +#: ../../include/functions_ui.php:870 ../../operation/menu.php:78 +msgid "Network" +msgstr "Red" + +#: ../../enterprise/include/ajax/ipam.ajax.php:622 +msgid "Go to supernet edition" +msgstr "Ir a la ediciĆ³n de superred" + +#: ../../enterprise/include/ajax/ipam.ajax.php:664 +msgid "Go to network edition" +msgstr "Ir a la ediciĆ³n de red" + +#: ../../enterprise/include/ajax/ipam.ajax.php:691 +#: ../../enterprise/include/ajax/ipam.ajax.php:748 +#: ../../enterprise/include/ajax/ipam.ajax.php:779 +#: ../../enterprise/include/ajax/ipam.ajax.php:826 +#: ../../enterprise/tools/ipam/ipam_supernet_config.php:1176 +#: ../../enterprise/tools/ipam/ipam_supernet_config.php:1306 +#: ../../enterprise/tools/ipam/ipam_vlan_config.php:702 +msgid "No assigned networks" +msgstr "Redes no asignadas" + +#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:94 +#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:253 +msgid "Group name" +msgstr "Nombre del grupo" + +#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:118 +#: ../../include/lib/Dashboard/Widgets/os_quick_report.php:284 +msgid "OS name" +msgstr "Nombre del SO" + +#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:136 +msgid "IP Network range" +msgstr "Intervalo de red IP" + +#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:141 +msgid "Script" +msgstr "Script" + +#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:143 +msgid "Arguments" +msgstr "Argumentos" + +#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:149 +msgid "Unknown option" +msgstr "OpciĆ³n desconocida" -#: ../../operation/agentes/estado_generalagente.php:546 -#: ../../operation/agentes/agent_fields.php:44 -#: ../../include/functions_treeview.php:783 #: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:256 +#: ../../include/functions_treeview.php:783 ../../operation/agentes/agent_fields.php:44 +#: ../../operation/agentes/estado_generalagente.php:544 msgid "Custom field" msgstr "Campo personalizado" -#: ../../operation/agentes/estado_generalagente.php:600 -msgid "Agent access rate (Last 24h)" -msgstr "ƍndice de acceso de agente (Ćŗltimas 24h)" +#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:257 +msgid "IP range" +msgstr "Intervalo IP" -#: ../../operation/agentes/estado_generalagente.php:639 -msgid "Active incident on this agent" -msgstr "Activar incidencia a este agente" +#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:258 +msgid "Script output (> 0)" +msgstr "Salida del script (> 0)" -#: ../../operation/agentes/estado_generalagente.php:643 -#: ../../godmode/setup/news.php:248 -msgid "Author" -msgstr "Autor" +#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:435 +#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:542 +#: ../../godmode/snmpconsole/snmp_alert.php:1110 +#: ../../godmode/snmpconsole/snmp_alert.php:1257 +msgid "Alert action" +msgstr "AcciĆ³n de alerta" -#: ../../operation/agentes/estado_generalagente.php:650 -#: ../../operation/incidents/integriaims_export_csv.php:81 -#: ../../operation/incidents/configure_integriaims_incident.php:213 -#: ../../operation/incidents/list_integriaims_incidents.php:516 -#: ../../include/lib/Dashboard/Widget.php:549 -#: ../../include/rest-api/models/VisualConsole/Items/Odometer.php:404 +#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:455 +#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:562 +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" +msgstr "Argumento del script" + +#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:471 +#: ../../godmode/alerts/alert_list.list.php:703 +#: ../../godmode/alerts/alert_list.list.php:1182 +msgid "Update action" +msgstr "Actualizar acciĆ³n" + +#: ../../enterprise/include/ajax/url_route_analyzer.ajax.php:33 +msgid "Global time: " +msgstr "Hora global: " + +#: ../../enterprise/include/ajax/log_viewer.ajax.php:55 #: ../../enterprise/include/functions_reporting_csv.php:421 #: ../../enterprise/include/functions_reporting_csv.php:443 #: ../../enterprise/include/functions_reporting_csv.php:474 @@ -12421,1201 +22062,17455 @@ msgstr "Autor" #: ../../enterprise/include/functions_reporting_csv.php:2661 #: ../../enterprise/include/functions_reporting_csv.php:2710 #: ../../enterprise/include/functions_reporting_csv.php:2787 -#: ../../enterprise/include/ajax/log_viewer.ajax.php:55 -#: ../../godmode/setup/setup_integria.php:333 -#: ../../godmode/setup/setup_integria.php:454 +#: ../../godmode/setup/setup_integria.php:333 ../../godmode/setup/setup_integria.php:454 +#: ../../include/rest-api/models/VisualConsole/Items/Odometer.php:404 +#: ../../include/lib/Dashboard/Widget.php:555 +#: ../../operation/agentes/estado_generalagente.php:649 +#: ../../operation/incidents/integriaims_export_csv.php:81 +#: ../../operation/incidents/configure_integriaims_incident.php:213 +#: ../../operation/incidents/list_integriaims_incidents.php:516 msgid "Title" msgstr "TĆ­tulo" -#: ../../operation/agentes/estado_generalagente.php:652 -#: ../../operation/incidents/integriaims_export_csv.php:85 -#: ../../operation/incidents/configure_integriaims_incident.php:296 -#: ../../operation/incidents/list_integriaims_incidents.php:348 -#: ../../operation/incidents/list_integriaims_incidents.php:519 -#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:325 -#: ../../include/functions_events.php:4671 -#: ../../include/functions_reporting_html.php:5087 -#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:423 -#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:483 -#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:530 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:817 -#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:82 -#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:464 -#: ../../enterprise/godmode/massive/massive_delete_alerts_snmp.php:204 -#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:264 -#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:328 -#: ../../godmode/setup/setup_integria.php:379 -#: ../../godmode/setup/setup_integria.php:501 -#: ../../godmode/snmpconsole/snmp_alert.php:1105 -#: ../../godmode/snmpconsole/snmp_alert.php:1168 -#: ../../godmode/agentes/agent_incidents.php:91 -#: ../../godmode/alerts/configure_alert_template.php:1118 -#: ../../godmode/alerts/alert_list.list.php:126 -#: ../../godmode/alerts/alert_templates.php:51 -#: ../../godmode/alerts/alert_view.php:124 -msgid "Priority" -msgstr "Prioridad" +#: ../../enterprise/include/ajax/log_viewer.ajax.php:65 +msgid "Capture regexp" +msgstr "Regexp de captura" -#: ../../operation/agentes/estado_generalagente.php:721 -#: ../../operation/agentes/pandora_networkmap.view.php:1234 -#: ../../include/functions_treeview.php:878 -msgid "Interface traffic" -msgstr "Interfaz de trĆ”fico" +#: ../../enterprise/include/ajax/log_viewer.ajax.php:85 +#: ../../enterprise/include/functions_reporting_pdf.php:542 +#: ../../enterprise/include/functions_reporting_pdf.php:598 +#: ../../include/functions_reporting_html.php:3627 +#: ../../include/functions_reporting_html.php:3695 +msgid "Average" +msgstr "Media" -#: ../../operation/agentes/estado_generalagente.php:798 -msgid "Events info (24hr.)" -msgstr "InformaciĆ³n de eventos (24h)" +#: ../../enterprise/include/ajax/log_viewer.ajax.php:175 +msgid "Empty ip or port" +msgstr "IP o puerto vacĆ­o" -#: ../../operation/agentes/estado_generalagente.php:818 -#: ../../operation/agentes/pandora_networkmap.view.php:1857 -msgid "Last contact: " -msgstr "ƚltimo contacto: " +#: ../../enterprise/include/ajax/log_viewer.ajax.php:192 +msgid "Curl Error: " +msgstr "Error curl: " -#: ../../operation/agentes/estado_generalagente.php:891 -#: ../../enterprise/views/cluster/view.php:369 -msgid "Events (Last 24h)" -msgstr "Eventos (Ćŗltimas 24h)" +#: ../../enterprise/include/process_reset_pass.php:53 +#: ../../enterprise/include/reset_pass.php:48 ../../general/login_page.php:136 +#: ../../general/login_page.php:139 ../../general/login_page.php:155 +msgid "Docs" +msgstr "Documentos" -#: ../../operation/agentes/estado_generalagente.php:943 -msgid "Interface information (SNMP)" -msgstr "InformaciĆ³n de interfaz (SNMP)" +#: ../../enterprise/include/process_reset_pass.php:159 +#: ../../enterprise/include/process_reset_pass.php:162 +#: ../../enterprise/include/reset_pass.php:146 +#: ../../enterprise/include/reset_pass.php:149 ../../include/functions_config.php:2400 +msgid "ONE TOOL TO MONITOR THEM ALL" +msgstr "UNA HERRAMIENTA PARA GOBERNARLOS A TODOS" -#: ../../operation/agentes/snapshot_view.php:42 -msgid "Cannot connect with node to display the module data." -msgstr "No se ha podido conectar con el nodo para mostrar datos de mĆ³dulos." +#: ../../enterprise/include/functions_log.php:279 +#: ../../enterprise/include/functions_log.php:282 +msgid "Lines" +msgstr "LĆ­neas" -#: ../../operation/agentes/snapshot_view.php:90 +#: ../../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:684 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:645 ../../operation/tree.php:415 +#: ../../operation/tree.php:446 ../../operation/network/network_report.php:313 +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:1716 +msgid "Added" +msgstr "AƱadido" + +#: ../../enterprise/include/functions_inventory.php:891 +#: ../../enterprise/include/functions_inventory.php:956 +#: ../../include/functions_reporting_html.php:1727 +#: ../../include/functions_filemanager.php:342 +#: ../../include/functions_filemanager.php:359 +msgid "Deleted" +msgstr "Eliminado(s)" + +#: ../../enterprise/include/functions_transactional.php:631 +msgid "Error in dependencies field" +msgstr "Error en el campo de las dependencias" + +#: ../../enterprise/include/functions_transactional.php:640 +msgid "Error in enables field" +msgstr "Error al activar el campo" + +#: ../../enterprise/include/auth/saml.php:119 #, php-format -msgid "%s Snapshot data view for module (%s)" -msgstr "Vista de datos de captura de %s del mĆ³dulo (%s)" +msgid "Pandora FMS SAML authentication error: %s" +msgstr "Error de autenticaciĆ³n Pandora FMS SAML: %s" -#: ../../operation/agentes/snapshot_view.php:96 +#: ../../enterprise/include/auth/saml.php:184 +msgid "Force log out" +msgstr "Forzar desconexiĆ³n" + +#: ../../enterprise/include/auth/saml.php:241 ../../include/auth/mysql.php:372 +#: ../../include/auth/mysql.php:402 ../../include/auth/mysql.php:437 +msgid "Please, login into metaconsole first" +msgstr "Por favor, inicie sesiĆ³n en la metaconsola primero" + +#: ../../enterprise/include/functions_collection.php:39 #, php-format -msgid "Current data at %s" -msgstr "Datos actuales en %s" +msgid "Collection %d does not exist" +msgstr "La colecciĆ³n %d no existe" -#: ../../operation/agentes/pandora_networkmap.view.php:1611 -msgid "Success be updated." -msgstr "Actualizado correctamente" +#: ../../enterprise/include/functions_collection.php:48 +msgid "Collection dir does not exist." +msgstr "El directorio donde se guardan las colecciones no existe." + +#: ../../enterprise/include/functions_collection.php:57 +#, php-format +msgid "Failed to create collection path: %s" +msgstr "Error al crear la colecciĆ³n en la ruta: %s" + +#: ../../enterprise/include/functions_collection.php:66 +msgid "Target collection path is not writable" +msgstr "No se ha podido escribir en en el directorio de colecciones remotas" + +#: ../../enterprise/include/functions_collection.php:80 +msgid "Failed to create zip file for collection" +msgstr "Error al crear el archivo zip para la colecciĆ³n" + +#: ../../enterprise/include/functions_collection.php:87 +#, php-format +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 +msgid "Select inventory module" +msgstr "Seleccionar mĆ³dulo de inventario" + +#: ../../enterprise/include/functions_ui.php:96 +msgid "Use custom fields" +msgstr "Usar campos personalizados" + +#: ../../enterprise/include/functions_ui.php:179 +msgid "Field name" +msgstr "Nombre del campo" + +#: ../../enterprise/include/functions_ui.php:179 +msgid "It's a password" +msgstr "Es una contraseƱa" + +#: ../../enterprise/include/functions_ui.php:179 +msgid "Add field" +msgstr "AƱadir campo" + +#: ../../enterprise/include/functions_reporting_pdf.php:72 +#: ../../include/class/Diagnostics.class.php:2130 +#: ../../include/class/Diagnostics.class.php:2248 +#, php-format +msgid "Automated %s report for user defined report" +msgstr "Informe de %s automatizado para informe definido por el usuario" + +#: ../../enterprise/include/functions_reporting_pdf.php:526 +#: ../../enterprise/include/functions_reporting_pdf.php:558 +#: ../../enterprise/include/functions_reporting_pdf.php:584 +#: ../../enterprise/include/functions_reporting_pdf.php:609 +#: ../../enterprise/include/functions_reporting_pdf.php:612 +#: ../../enterprise/include/functions_reporting_pdf.php:619 +#: ../../enterprise/include/functions_reporting_csv.php:1290 +#: ../../include/functions_reporting_html.php:3610 +#: ../../include/functions_reporting_html.php:3639 +#: ../../include/functions_reporting_html.php:3680 +#: ../../include/functions_reporting_html.php:3703 +#: ../../include/functions_reporting_html.php:3706 +#: ../../include/functions_reporting_html.php:3713 +#: ../../include/functions_reporting.php:6840 ../../include/functions_reporting.php:6863 +#: ../../include/functions_reporting.php:6878 ../../include/functions_reporting.php:6894 +#: ../../include/functions_reporting.php:6909 +msgid "Maximun" +msgstr "MĆ”ximo" + +#: ../../enterprise/include/functions_reporting_pdf.php:534 +#: ../../enterprise/include/functions_reporting_pdf.php:591 +#: ../../include/functions_reporting_html.php:3618 +#: ../../include/functions_reporting_html.php:3687 +msgid "Minimun" +msgstr "MĆ­nimo" + +#: ../../enterprise/include/functions_reporting_pdf.php:583 +#: ../../enterprise/include/functions_reporting_pdf.php:590 +#: ../../enterprise/include/functions_reporting_pdf.php:597 +#: ../../enterprise/include/functions_reporting_pdf.php:611 +#: ../../enterprise/include/functions_reporting_pdf.php:616 +#: ../../enterprise/include/functions_reporting_csv.php:1235 +#: ../../enterprise/include/functions_reporting_csv.php:1290 +#: ../../enterprise/include/functions_reporting_csv.php:1394 +#: ../../include/functions_reporting_html.php:3679 +#: ../../include/functions_reporting_html.php:3686 +#: ../../include/functions_reporting_html.php:3694 +#: ../../include/functions_reporting_html.php:3705 +#: ../../include/functions_reporting_html.php:3710 +#: ../../include/functions_reporting.php:6858 +msgid "Lapse" +msgstr "Tiempo transcurrido" + +#: ../../enterprise/include/functions_reporting_pdf.php:946 +#: ../../include/functions_reporting_html.php:2043 +#: ../../include/lib/Dashboard/Widgets/agent_module.php:536 +#, php-format +msgid "%s in %s : NORMAL" +msgstr "%s en %s : NORMAL" + +#: ../../enterprise/include/functions_reporting_pdf.php:963 +#: ../../include/functions_reporting_html.php:1955 +#: ../../include/lib/Dashboard/Widgets/agent_module.php:552 +#, php-format +msgid "%s in %s : CRITICAL" +msgstr "%s en %s : CRƍTICO" + +#: ../../enterprise/include/functions_reporting_pdf.php:980 +#: ../../include/functions_reporting_html.php:1972 +#: ../../include/lib/Dashboard/Widgets/agent_module.php:568 +#, php-format +msgid "%s in %s : WARNING" +msgstr "%s en %s : ADVERTENCIA" + +#: ../../enterprise/include/functions_reporting_pdf.php:997 +#: ../../include/functions_reporting_html.php:1989 +#: ../../include/lib/Dashboard/Widgets/agent_module.php:584 +#, php-format +msgid "%s in %s : UNKNOWN" +msgstr "%s en %s : DESCONOCIDO" + +#: ../../enterprise/include/functions_reporting_pdf.php:1014 +#: ../../include/functions_reporting_html.php:2025 +#: ../../include/lib/Dashboard/Widgets/agent_module.php:600 +#, php-format +msgid "%s in %s : Not initialize" +msgstr "%s en %s : No iniciado" + +#: ../../enterprise/include/functions_reporting_pdf.php:1031 +#: ../../include/functions_reporting_html.php:2008 +#: ../../include/lib/Dashboard/Widgets/agent_module.php:617 +#, php-format +msgid "%s in %s : ALERTS FIRED" +msgstr "%s en %s : ALERTA DISPARADA" + +#: ../../enterprise/include/functions_reporting_pdf.php:1785 +#: ../../enterprise/include/functions_reporting_csv.php:2220 +#: ../../enterprise/include/functions_reporting_csv.php:2224 +#: ../../include/functions_reporting_html.php:138 +msgid "Generated" +msgstr "Generado" + +#: ../../enterprise/include/functions_reporting_pdf.php:1789 +#: ../../include/functions_reporting_html.php:141 +msgid "Report date" +msgstr "Fecha del informe" + +#: ../../enterprise/include/functions_reporting_pdf.php:1808 +#: ../../include/functions_reporting_html.php:150 +#: ../../operation/reporting/reporting_viewer.php:307 +msgid "Items period before" +msgstr "PerĆ­odo de elementos antes de" + +#: ../../enterprise/include/functions_reporting_pdf.php:1838 +msgid "Contents" +msgstr "Contenido" + +#: ../../enterprise/include/functions_reporting_pdf.php:1984 +#: ../../enterprise/include/functions_reporting_csv.php:716 +#: ../../enterprise/include/functions_reporting_csv.php:952 +#: ../../enterprise/include/functions_reporting_csv.php:1325 +#: ../../godmode/agentes/planned_downtime.list.php:302 +#: ../../include/functions_reporting_html.php:3796 ../../include/functions_snmp.php:413 +#: ../../include/functions_snmp.php:421 ../../include/rest-api/index.php:361 +#: ../../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:1988 +#: ../../include/functions_reporting_html.php:90 +#: ../../include/functions_reporting_html.php:5575 +#: ../../include/functions_treeview.php:319 +#: ../../operation/agentes/interface_view.functions.php:539 +msgid "Last data" +msgstr "ƚltimos datos" + +#: ../../enterprise/include/functions_visual_map.php:203 +#: ../../enterprise/include/functions_visual_map.php:268 +msgid "Crit:" +msgstr "CrĆ­tico" + +#: ../../enterprise/include/functions_visual_map.php:207 +#: ../../enterprise/include/functions_visual_map.php:272 +msgid "Warn:" +msgstr "Advertencia" + +#: ../../enterprise/include/functions_visual_map.php:211 +#: ../../enterprise/include/functions_visual_map.php:276 +msgid "Ok:" +msgstr "OK" + +#: ../../enterprise/include/functions_visual_map.php:672 +msgid "None of the services was added" +msgstr "No se aƱadiĆ³ ningĆŗn servicio" + +#: ../../enterprise/include/functions_visual_map.php:674 +#, php-format +msgid "%d services couldn't be added" +msgstr "%d servicios no se han podido aƱadir" + +#: ../../enterprise/include/functions_visual_map.php:680 +msgid "There was an error retrieving the visual map information" +msgstr "Error al recuperar la informaciĆ³n del mapa visual" + +#: ../../enterprise/include/functions_visual_map.php:683 +#: ../../enterprise/operation/services/services.list.php:104 +msgid "No services selected" +msgstr "NingĆŗn servicio seleccionado" + +#: ../../enterprise/include/functions_backup.php:162 +msgid "Command mysqldump not found." +msgstr "Comando Mysqldump no encontrado" + +#: ../../enterprise/include/functions_backup.php:177 +msgid "The mysqldump execution goes wrong." +msgstr "La ejecuciĆ³n de mysqldump ha salido mal." + +#: ../../enterprise/include/functions_backup.php:190 +msgid "" +"In order to make backups it is necessary to check if the configuration is correct." +msgstr "" +"Para poder realizar copias de seguridad es necesario comprobar si la configuraciĆ³n es " +"correcta." + +#: ../../enterprise/include/functions_backup.php:256 +msgid "No description" +msgstr "Sin descripciĆ³n" + +#: ../../enterprise/include/functions_backup.php:408 +msgid "Restoring a backup" +msgstr "Restaurar una copia de seguridad" + +#: ../../enterprise/include/functions_backup.php:410 +#, php-format +msgid "Restoring a %s database backup must be done manually." +msgstr "" +"La restauraciĆ³n de la copia de seguridad de la base de datos de %s debe llevarse a " +"cabo manualmente." + +#: ../../enterprise/include/functions_backup.php:412 +msgid "" +"It's a complex operation that needs human intervation to avoid system failures and " +"data loosing" +msgstr "" +"Esta operaciĆ³n es compleja y necesita intervenciĆ³n humana para evitar fallos en el " +"sistema y pĆ©rdida de datos." + +#: ../../enterprise/include/functions_backup.php:414 +msgid "To restore the selected backup, please follow these steps" +msgstr "Para restaurar la copia de seguridad seleccionada sigue los siguientes pasos." + +#: ../../enterprise/include/functions_backup.php:420 +msgid "Open a root shell in your system located at " +msgstr "Abre un root shell en tu sistema localizado en " + +#: ../../enterprise/include/functions_backup.php:424 +msgid "Connect to MySQL database using the following command" +msgstr "Usa el siguiente comando para conectar con la base de datos de MySQL" + +#: ../../enterprise/include/functions_backup.php:430 +msgid "Create a new database" +msgstr "Crear una nueva base de datos" + +#: ../../enterprise/include/functions_backup.php:454 +msgid "Restore the backup" +msgstr "Restaurar la copia de seguridad" + +#: ../../enterprise/include/functions_backup.php:469 +msgid "Modify console configuration to use this new database" +msgstr "Modifica la configuraciĆ³n de la consola para usar esta nueva base de datos" + +#: ../../enterprise/include/functions_backup.php:470 +msgid "Open configuration file" +msgstr "Abrir el archivo de configuraciĆ³n" + +#: ../../enterprise/include/functions_backup.php:473 +#: ../../enterprise/include/functions_backup.php:483 +msgid "Find" +msgstr "Encontrar" + +#: ../../enterprise/include/functions_backup.php:475 +#: ../../enterprise/include/functions_backup.php:485 +msgid "and replace with" +msgstr "y reemplazar con" + +#: ../../enterprise/include/functions_backup.php:480 +msgid "Modify servers configuration to use this new database" +msgstr "Modifica la configuraciĆ³n de los servidores para usar esta nueva base de datos" + +#: ../../enterprise/include/functions_backup.php:481 +msgid "Find servers configuration file and replace the following lines" +msgstr "" +"Accede al archivo de configuraciĆ³n de los servidores y reemplĆ”zalo por las siguientes " +"lĆ­neas" + +#: ../../enterprise/include/functions_backup.php:490 +msgid "Restart the servers and login again into the console" +msgstr "Reinicia los servidores y vuelve a identificarte en la consola" + +#: ../../enterprise/include/functions_snmp.php:65 +msgid "Trap status agent recovered" +msgstr "Estado del trap de agente recuperado" + +#: ../../enterprise/include/functions_servicemap.php:80 +#: ../../enterprise/include/functions_servicemap.php:1203 +msgid "Failed to retrieve service elements: " +msgstr "Error al recuperar elementos de servicio: " + +#: ../../enterprise/include/functions_setup.php:79 +#: ../../enterprise/include/functions_setup.php:125 +msgid "Log collector" +msgstr "Colector de logs" + +#: ../../enterprise/include/functions_setup.php:151 +msgid "Metaconsole link status" +msgstr "Estado del link de la metaconsola" + +#: ../../enterprise/include/functions_setup.php:183 +msgid "DB connection" +msgstr "ConexiĆ³n a la base de datos" + +#: ../../enterprise/include/functions_setup.php:205 +msgid "This console is joining a metaconsole." +msgstr "Esta consola se unirĆ” a una Metaconsola" + +#: ../../enterprise/include/functions_setup.php:212 +msgid "There is no metaconsole defined." +msgstr "No hay ninguna meta consola definida." + +#: ../../enterprise/include/rest-api/models/VisualConsole/Items/Service.php:236 +#: ../../godmode/reporting/visual_console_builder.elements.php:105 +#: ../../godmode/reporting/visual_console_builder.wizard.php:151 +#: ../../include/functions_visual_map_editor.php:250 +#: ../../include/rest-api/models/VisualConsole/Items/Icon.php:175 +#: ../../include/rest-api/models/VisualConsole/Items/StaticGraph.php:344 +#: ../../include/rest-api/models/VisualConsole/Items/Group.php:522 +#: ../../include/functions_filemanager.php:641 +msgid "Image" +msgstr "Imagen" + +#: ../../enterprise/include/functions_reporting_csv.php:416 +msgid "Event report agent" +msgstr "Informe de los eventos de un agente" + +#: ../../enterprise/include/functions_reporting_csv.php:418 +msgid "Event report group" +msgstr "Informe de los eventos de un grupo" + +#: ../../enterprise/include/functions_reporting_csv.php:442 +msgid "Event report module" +msgstr "Informe de los eventos de un mĆ³dulo" + +#: ../../enterprise/include/functions_reporting_csv.php:473 +#: ../../enterprise/include/functions_reporting.php:1228 +#: ../../include/functions_reports.php:830 ../../include/functions_reporting.php:8310 +#: ../../include/functions_reporting.php:8702 +msgid "Availability" +msgstr "Disponibilidad" + +#: ../../enterprise/include/functions_reporting_csv.php:521 +#: ../../enterprise/include/functions_reporting_csv.php:1429 +msgid "% OK" +msgstr "% OK" + +#: ../../enterprise/include/functions_reporting_csv.php:530 +#: ../../include/functions_reporting_html.php:613 +msgid "Checks Failed" +msgstr "Comprobaciones fallidas" + +#: ../../enterprise/include/functions_reporting_csv.php:662 +msgid "Maximum value" +msgstr "Valor mĆ”ximo" + +#: ../../enterprise/include/functions_reporting_csv.php:666 +#: ../../include/functions_reporting_html.php:4342 +msgid "Agent min value" +msgstr "Valor mĆ­nimo del agente" + +#: ../../enterprise/include/functions_reporting_csv.php:667 +msgid "Minimum value" +msgstr "Valor mĆ­nimo" + +#: ../../enterprise/include/functions_reporting_csv.php:670 +msgid "Average value" +msgstr "Valor medio" + +#: ../../enterprise/include/functions_reporting_csv.php:696 +#: ../../include/functions_reports.php:879 +msgid "Agents inventory" +msgstr "Inventario de agentes" + +#: ../../enterprise/include/functions_reporting_csv.php:718 +#: ../../enterprise/operation/agentes/tag_view.php:601 +#: ../../include/functions_treeview.php:668 +#: ../../operation/agentes/estado_agente.php:745 +#: ../../operation/agentes/estado_generalagente.php:362 +#: ../../operation/gis_maps/ajax.php:360 ../../operation/gis_maps/ajax.php:477 +msgid "Remote" +msgstr "Remoto" + +#: ../../enterprise/include/functions_reporting_csv.php:718 +msgid "Sec. group" +msgstr "Grupo sec." + +#: ../../enterprise/include/functions_reporting_csv.php:718 +msgid "Custom Field" +msgstr "Campo personalizado" + +#: ../../enterprise/include/functions_reporting_csv.php:740 +#: ../../include/functions_reporting.php:2639 +msgid "Inventory Changes" +msgstr "Cambios de inventario" + +#: ../../enterprise/include/functions_reporting_csv.php:768 +#: ../../include/functions_reports.php:725 +msgid "Prediction date" +msgstr "Fecha de predicciĆ³n" + +#: ../../enterprise/include/functions_reporting_csv.php:788 +#: ../../include/functions_reporting.php:6313 +msgid "Projection Graph" +msgstr "GrĆ”fico de proyecciĆ³n" + +#: ../../enterprise/include/functions_reporting_csv.php:817 +msgid "Serialized data " +msgstr "Datos serializados " + +#: ../../enterprise/include/functions_reporting_csv.php:856 +msgid "Last Value " +msgstr "ƚltimo valor " + +#: ../../enterprise/include/functions_reporting_csv.php:932 +#: ../../include/functions_reporting.php:1536 +#: ../../operation/snmpconsole/snmp_statistics.php:169 +#: ../../operation/snmpconsole/snmp_statistics.php:237 +#, php-format +msgid "Top %d" +msgstr "Primeros %d" + +#: ../../enterprise/include/functions_reporting_csv.php:969 +#: ../../include/functions_reporting.php:3719 +msgid "Group Report" +msgstr "Informe del grupo" + +#: ../../enterprise/include/functions_reporting_csv.php:983 +#: ../../enterprise/operation/services/services.treeview_services.php:263 +#: ../../godmode/db/db_main.php:102 ../../godmode/groups/group_list.php:1042 +#: ../../mobile/operation/groups.php:147 ../../include/functions_reporting_html.php:5655 +#: ../../include/class/Diagnostics.class.php:549 +#: ../../include/functions_reporting.php:11653 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:648 ../../operation/tree.php:454 +msgid "Total agents" +msgstr "Agentes totales" + +#: ../../enterprise/include/functions_reporting_csv.php:983 +msgid "Uknown agents" +msgstr "Agentes desconocidos" + +#: ../../enterprise/include/functions_reporting_csv.php:983 +#: ../../enterprise/operation/services/services.treeview_services.php:264 +#: ../../godmode/groups/group_list.php:1043 +#: ../../godmode/module_library/module_library_view.php:159 +#: ../../include/class/Diagnostics.class.php:553 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:649 ../../operation/tree.php:455 +msgid "Total modules" +msgstr "MĆ³dulos totales" + +#: ../../enterprise/include/functions_reporting_csv.php:983 +#: ../../include/functions_reporting.php:11496 +msgid "Defined alerts" +msgstr "Alertas definidas" + +#: ../../enterprise/include/functions_reporting_csv.php:983 +#: ../../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:2636 +#: ../../include/functions_reporting.php:11514 +#: ../../include/functions_reporting.php:11537 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:653 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:654 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:655 ../../operation/tree.php:459 +#: ../../operation/tree.php:460 ../../operation/tree.php:461 +msgid "Fired alerts" +msgstr "Alertas disparadas" + +#: ../../enterprise/include/functions_reporting_csv.php:983 +msgid "Last 8 hours events" +msgstr "Eventos en las Ćŗltimas 8 horas" + +#: ../../enterprise/include/functions_reporting_csv.php:986 +#: ../../include/functions_reports.php:777 ../../include/functions_reports.php:783 +msgid "Group report" +msgstr "Grupo de informes" + +#: ../../enterprise/include/functions_reporting_csv.php:1115 +msgid "Illegal query or any other error" +msgstr "Consulta ilegal o cualquier otro error" + +#: ../../enterprise/include/functions_reporting_csv.php:1137 +#: ../../include/functions_reports.php:661 +msgid "SQL vertical bar graph" +msgstr "GrĆ”fico de barra vertical SQL" + +#: ../../enterprise/include/functions_reporting_csv.php:1139 +#: ../../include/functions_reports.php:669 +msgid "SQL horizontal bar graph" +msgstr "GrĆ”fica de barras horizontales SQL" + +#: ../../enterprise/include/functions_reporting_csv.php:1141 +#: ../../include/functions_reports.php:665 +msgid "SQL pie graph" +msgstr "GrĆ”fico circular de SQL" + +#: ../../enterprise/include/functions_reporting_csv.php:1170 +#: ../../enterprise/include/functions_reporting_csv.php:1188 +#: ../../enterprise/include/functions_reporting_csv.php:1190 +#: ../../include/functions_reports.php:754 ../../include/functions_reporting.php:6619 +#: ../../include/functions_reporting.php:9980 +msgid "Summatory" +msgstr "Sumatorio" + +#: ../../enterprise/include/functions_reporting_csv.php:1220 +#: ../../enterprise/include/functions_reporting_csv.php:1222 +#: ../../enterprise/include/functions_reporting_csv.php:1228 +#: ../../enterprise/include/functions_reporting_csv.php:1230 +msgid "Minimum Value" +msgstr "Valor mĆ­nimo" + +#: ../../enterprise/include/functions_reporting_csv.php:1235 +#: ../../include/functions_reporting.php:9984 +msgid "Minimum" +msgstr "MĆ­nimo" + +#: ../../enterprise/include/functions_reporting_csv.php:1275 +#: ../../enterprise/include/functions_reporting_csv.php:1277 +#: ../../enterprise/include/functions_reporting_csv.php:1283 +#: ../../enterprise/include/functions_reporting_csv.php:1285 +msgid "Maximun Value" +msgstr "Valor mĆ”ximo" + +#: ../../enterprise/include/functions_reporting_csv.php:1311 +#: ../../enterprise/include/functions_reporting_csv.php:1325 +#: ../../enterprise/include/functions_reporting_csv.php:1329 +#: ../../enterprise/include/functions_reporting_csv.php:1340 +#: ../../include/functions_reporting_html.php:3799 +#: ../../include/functions_reports.php:762 ../../include/functions_reporting.php:9440 +msgid "Increment" +msgstr "Incremento" + +#: ../../enterprise/include/functions_reporting_csv.php:1325 +#: ../../include/functions_reporting_html.php:3797 +msgid "From data" +msgstr "Desde datos" + +#: ../../enterprise/include/functions_reporting_csv.php:1325 +#: ../../include/functions_reporting_html.php:3798 +msgid "To data" +msgstr "hasta datos" + +#: ../../enterprise/include/functions_reporting_csv.php:1331 +#: ../../enterprise/include/functions_reporting_csv.php:1342 +#: ../../include/functions_reporting_html.php:3826 +msgid "Negative increase: " +msgstr "Incremento negativo: " + +#: ../../enterprise/include/functions_reporting_csv.php:1333 +#: ../../enterprise/include/functions_reporting_csv.php:1344 +#: ../../include/functions_reporting_html.php:3828 +msgid "Positive increase: " +msgstr "Incremento positivo: " + +#: ../../enterprise/include/functions_reporting_csv.php:1335 +#: ../../enterprise/include/functions_reporting_csv.php:1346 +#: ../../include/functions_reporting_html.php:3830 +msgid "Neutral increase: " +msgstr "Incremento neutral: " + +#: ../../enterprise/include/functions_reporting_csv.php:1360 +#: ../../enterprise/include/functions_reporting_csv.php:1379 +#: ../../enterprise/include/functions_reporting_csv.php:1381 +#: ../../enterprise/include/functions_reporting_csv.php:1387 +#: ../../enterprise/include/functions_reporting_csv.php:1389 +#: ../../include/functions_reporting.php:6624 +msgid "AVG. Value" +msgstr "Valor medio" + +#: ../../enterprise/include/functions_reporting_csv.php:1394 +msgid "AVG" +msgstr "Media" + +#: ../../enterprise/include/functions_reporting_csv.php:1415 +#: ../../enterprise/include/functions_reporting_csv.php:1433 +#: ../../enterprise/include/functions_reporting_csv.php:1435 +#: ../../include/functions_reporting.php:5955 +msgid "Monitor Report" +msgstr "Informe de monitores" + +#: ../../enterprise/include/functions_reporting_csv.php:1429 +msgid "% Wrong" +msgstr "% Mal" + +#: ../../enterprise/include/functions_reporting_csv.php:1444 +msgid "Simple Graph" +msgstr "GrĆ”fico simple" + +#: ../../enterprise/include/functions_reporting_csv.php:1504 +#: ../../enterprise/include/functions_reporting_csv.php:1550 +#: ../../enterprise/include/functions_reporting_csv.php:1623 +#: ../../enterprise/include/functions_reporting_csv.php:1742 +#: ../../enterprise/include/functions_reporting_csv.php:2050 +msgid "SLA Max" +msgstr "SLA mĆ”ximo" + +#: ../../enterprise/include/functions_reporting_csv.php:1505 +#: ../../enterprise/include/functions_reporting_csv.php:1551 +#: ../../enterprise/include/functions_reporting_csv.php:1624 +#: ../../enterprise/include/functions_reporting_csv.php:1743 +#: ../../enterprise/include/functions_reporting_csv.php:2051 +msgid "SLA Min" +msgstr "SLA mĆ­nimo" + +#: ../../enterprise/include/functions_reporting_csv.php:1506 +#: ../../enterprise/include/functions_reporting_csv.php:1552 +#: ../../enterprise/include/functions_reporting_csv.php:1625 +#: ../../enterprise/include/functions_reporting_csv.php:1744 +#: ../../enterprise/include/functions_reporting_csv.php:2052 +#: ../../enterprise/include/functions_reporting.php:1856 +#: ../../enterprise/include/functions_reporting.php:2895 +#: ../../enterprise/include/functions_reporting.php:3882 +#: ../../enterprise/include/functions_reporting.php:6138 +#: ../../include/functions_reporting_html.php:545 +msgid "SLA Limit" +msgstr "LĆ­mite del SLA" + +#: ../../enterprise/include/functions_reporting_csv.php:1507 +#: ../../enterprise/include/functions_reporting_csv.php:1553 +msgid "Time Total " +msgstr "Tiempo total " + +#: ../../enterprise/include/functions_reporting_csv.php:1508 +#: ../../enterprise/include/functions_reporting_csv.php:1554 +msgid "Time OK " +msgstr "Tiempo OK " + +#: ../../enterprise/include/functions_reporting_csv.php:1509 +#: ../../enterprise/include/functions_reporting_csv.php:1555 +msgid "Time Error " +msgstr "Tiempo de error " + +#: ../../enterprise/include/functions_reporting_csv.php:1510 +#: ../../enterprise/include/functions_reporting_csv.php:1556 +msgid "Time Unknown " +msgstr "Tiempo en desconocido " + +#: ../../enterprise/include/functions_reporting_csv.php:1511 +#: ../../enterprise/include/functions_reporting_csv.php:1557 +msgid "Time Not Init " +msgstr "Tiempo no iniciado " + +#: ../../enterprise/include/functions_reporting_csv.php:1512 +#: ../../enterprise/include/functions_reporting_csv.php:1558 +msgid "Time Downtime " +msgstr "Tiempo en parada planificada " + +#: ../../enterprise/include/functions_reporting_csv.php:1513 +#: ../../enterprise/include/functions_reporting_csv.php:1559 +msgid "Checks Total " +msgstr "Comprobaciones totales " + +#: ../../enterprise/include/functions_reporting_csv.php:1514 +#: ../../enterprise/include/functions_reporting_csv.php:1560 +msgid "Checks OK " +msgstr "Comprobaciones OK " + +#: ../../enterprise/include/functions_reporting_csv.php:1515 +#: ../../enterprise/include/functions_reporting_csv.php:1561 +msgid "Checks Error " +msgstr "Comprobaciones con error " + +#: ../../enterprise/include/functions_reporting_csv.php:1516 +#: ../../enterprise/include/functions_reporting_csv.php:1562 +msgid "Checks Unknown " +msgstr "Comprobaciones en desconocido " + +#: ../../enterprise/include/functions_reporting_csv.php:1517 +#: ../../enterprise/include/functions_reporting_csv.php:1563 +msgid "Checks Not Init " +msgstr "Comprobaciones en no iniciado " + +#: ../../enterprise/include/functions_reporting_csv.php:1518 +#: ../../enterprise/include/functions_reporting_csv.php:1564 +msgid "SLA " +msgstr "SLA " + +#: ../../enterprise/include/functions_reporting_csv.php:1519 +#: ../../enterprise/include/functions_reporting_csv.php:1565 +msgid "Status " +msgstr "Estado " + +#: ../../enterprise/include/functions_reporting_csv.php:1541 +#: ../../enterprise/include/functions_reporting_csv.php:1587 +#: ../../enterprise/include/functions_reporting_csv.php:1905 +#: ../../enterprise/include/functions_reporting.php:1876 +#: ../../enterprise/include/functions_reporting.php:1917 +#: ../../enterprise/include/functions_reporting.php:2920 +#: ../../enterprise/include/functions_reporting.php:2979 +#: ../../enterprise/include/functions_reporting.php:3908 +#: ../../enterprise/include/functions_reporting.php:3967 +#: ../../enterprise/include/functions_reporting.php:6162 +#: ../../include/functions_reporting_html.php:662 +#: ../../include/functions_config.php:1276 ../../include/functions_config.php:3163 +msgid "Fail" +msgstr "Fallo" + +#: ../../enterprise/include/functions_reporting_csv.php:1611 +#: ../../enterprise/include/functions_reporting_csv.php:1727 +#: ../../enterprise/include/functions_reporting_csv.php:1967 +#: ../../enterprise/include/functions_reporting_csv.php:2035 +msgid "Subtitle" +msgstr "SubtĆ­tulo" + +#: ../../enterprise/include/functions_reporting_csv.php:1626 +#: ../../enterprise/include/functions_reporting_csv.php:1758 +#: ../../enterprise/include/functions_reporting_csv.php:2066 +msgid "Time Total Month" +msgstr "Tiempo total del mes" + +#: ../../enterprise/include/functions_reporting_csv.php:1627 +#: ../../enterprise/include/functions_reporting_csv.php:1759 +#: ../../enterprise/include/functions_reporting_csv.php:2067 +msgid "Time OK Month" +msgstr "Tiempo OK del mes" + +#: ../../enterprise/include/functions_reporting_csv.php:1628 +#: ../../enterprise/include/functions_reporting_csv.php:1760 +#: ../../enterprise/include/functions_reporting_csv.php:2068 +msgid "Time Error Month" +msgstr "Tiempo en error del mes" + +#: ../../enterprise/include/functions_reporting_csv.php:1629 +#: ../../enterprise/include/functions_reporting_csv.php:1761 +#: ../../enterprise/include/functions_reporting_csv.php:2069 +msgid "Time Unknown Month" +msgstr "Tiempo en desconocido del mes" + +#: ../../enterprise/include/functions_reporting_csv.php:1630 +#: ../../enterprise/include/functions_reporting_csv.php:1762 +#: ../../enterprise/include/functions_reporting_csv.php:2070 +msgid "Time Downtime Month" +msgstr "Tiempo en parada planificada del mes" + +#: ../../enterprise/include/functions_reporting_csv.php:1631 +#: ../../enterprise/include/functions_reporting_csv.php:1763 +#: ../../enterprise/include/functions_reporting_csv.php:2071 +msgid "Time Not Init Month" +msgstr "Tiempo en no iniciado del mes" + +#: ../../enterprise/include/functions_reporting_csv.php:1632 +#: ../../enterprise/include/functions_reporting_csv.php:1764 +#: ../../enterprise/include/functions_reporting_csv.php:2072 +msgid "Checks Total Month" +msgstr "Comprobaciones totales del mes" + +#: ../../enterprise/include/functions_reporting_csv.php:1633 +#: ../../enterprise/include/functions_reporting_csv.php:1765 +#: ../../enterprise/include/functions_reporting_csv.php:2073 +msgid "Checks OK Month" +msgstr "Comprobaciones OK del mes" + +#: ../../enterprise/include/functions_reporting_csv.php:1634 +#: ../../enterprise/include/functions_reporting_csv.php:1766 +#: ../../enterprise/include/functions_reporting_csv.php:2074 +msgid "Checks Error Month" +msgstr "Comprobaciones en error del mes" + +#: ../../enterprise/include/functions_reporting_csv.php:1635 +#: ../../enterprise/include/functions_reporting_csv.php:1767 +#: ../../enterprise/include/functions_reporting_csv.php:2075 +msgid "Checks Unknown Month" +msgstr "Comprobaciones en desconocido del mes" + +#: ../../enterprise/include/functions_reporting_csv.php:1636 +#: ../../enterprise/include/functions_reporting_csv.php:1768 +#: ../../enterprise/include/functions_reporting_csv.php:2076 +msgid "Checks Not Init Month" +msgstr "Comprobaciones en no iniciado del mes" + +#: ../../enterprise/include/functions_reporting_csv.php:1637 +#: ../../enterprise/include/functions_reporting_csv.php:1769 +#: ../../enterprise/include/functions_reporting_csv.php:2077 +msgid "SLA Month" +msgstr "SLA mensual" + +#: ../../enterprise/include/functions_reporting_csv.php:1638 +#: ../../enterprise/include/functions_reporting_csv.php:1770 +#: ../../enterprise/include/functions_reporting_csv.php:2078 +msgid "Status Month" +msgstr "Estado del mes" + +#: ../../enterprise/include/functions_reporting_csv.php:1660 +#: ../../enterprise/include/functions_reporting.php:2024 +msgid "Day" +msgstr "DĆ­a" + +#: ../../enterprise/include/functions_reporting_csv.php:1661 +#: ../../enterprise/include/functions_reporting_csv.php:1816 +msgid "Time Total Day" +msgstr "Tiempo total del dĆ­a" + +#: ../../enterprise/include/functions_reporting_csv.php:1662 +#: ../../enterprise/include/functions_reporting_csv.php:1817 +msgid "Time OK Day" +msgstr "Tiempo en OK del dĆ­a" + +#: ../../enterprise/include/functions_reporting_csv.php:1663 +#: ../../enterprise/include/functions_reporting_csv.php:1818 +msgid "Time Error Day" +msgstr "Tiempo en error del dĆ­a" + +#: ../../enterprise/include/functions_reporting_csv.php:1664 +#: ../../enterprise/include/functions_reporting_csv.php:1819 +msgid "Time Unknown Day" +msgstr "Tiempo en desconocido del dĆ­a" + +#: ../../enterprise/include/functions_reporting_csv.php:1665 +#: ../../enterprise/include/functions_reporting_csv.php:1820 +msgid "Time Not Init Day" +msgstr "Tiempo en no iniciado del dĆ­a" + +#: ../../enterprise/include/functions_reporting_csv.php:1666 +#: ../../enterprise/include/functions_reporting_csv.php:1821 +msgid "Time Downtime Day" +msgstr "Tiempo en parada planificada del dĆ­a" + +#: ../../enterprise/include/functions_reporting_csv.php:1667 +#: ../../enterprise/include/functions_reporting_csv.php:1822 +msgid "Time Out Day" +msgstr "Tiempo fuera del dĆ­a" + +#: ../../enterprise/include/functions_reporting_csv.php:1668 +#: ../../enterprise/include/functions_reporting_csv.php:1823 +msgid "Checks Total Day" +msgstr "Comprobaciones totales del dĆ­a" + +#: ../../enterprise/include/functions_reporting_csv.php:1669 +#: ../../enterprise/include/functions_reporting_csv.php:1824 +msgid "Checks OK Day" +msgstr "Comprobaciones en OK del dĆ­a" + +#: ../../enterprise/include/functions_reporting_csv.php:1670 +#: ../../enterprise/include/functions_reporting_csv.php:1825 +msgid "Checks Error Day" +msgstr "Comprobaciones en error del dĆ­a" + +#: ../../enterprise/include/functions_reporting_csv.php:1671 +#: ../../enterprise/include/functions_reporting_csv.php:1826 +msgid "Checks Unknown Day" +msgstr "Comprobaciones en desconocido del dĆ­a" + +#: ../../enterprise/include/functions_reporting_csv.php:1672 +#: ../../enterprise/include/functions_reporting_csv.php:1827 +msgid "Checks Not Init Day" +msgstr "Comprobaciones en no iniciado del dĆ­a" + +#: ../../enterprise/include/functions_reporting_csv.php:1673 +#: ../../enterprise/include/functions_reporting_csv.php:1828 +msgid "SLA Day" +msgstr "SLA diario" + +#: ../../enterprise/include/functions_reporting_csv.php:1674 +#: ../../enterprise/include/functions_reporting_csv.php:1829 +msgid "SLA Fixed Day" +msgstr "SLA de dĆ­a fijo" + +#: ../../enterprise/include/functions_reporting_csv.php:1675 +#: ../../enterprise/include/functions_reporting_csv.php:1830 +msgid "Date From Day" +msgstr "Fecha desde dĆ­a" + +#: ../../enterprise/include/functions_reporting_csv.php:1676 +#: ../../enterprise/include/functions_reporting_csv.php:1831 +msgid "Date To Day" +msgstr "Fecha hasta dĆ­a" + +#: ../../enterprise/include/functions_reporting_csv.php:1677 +#: ../../enterprise/include/functions_reporting_csv.php:1832 +msgid "Status Day" +msgstr "Estado del dĆ­a" + +#: ../../enterprise/include/functions_reporting_csv.php:1737 +#: ../../enterprise/include/functions_reporting_csv.php:2045 +#: ../../include/functions_html.php:2286 +msgid "Month" +msgstr "Mes" + +#: ../../enterprise/include/functions_reporting_csv.php:1738 +#: ../../enterprise/include/functions_reporting_csv.php:2046 +msgid "Month Number" +msgstr "NĆŗmero de mes" + +#: ../../enterprise/include/functions_reporting_csv.php:1739 +#: ../../enterprise/include/functions_reporting_csv.php:2047 +msgid "Year" +msgstr "AƱo" + +#: ../../enterprise/include/functions_reporting_csv.php:1789 +msgid "Time Total week" +msgstr "Tiempo total de la semana" + +#: ../../enterprise/include/functions_reporting_csv.php:1790 +msgid "Time OK week" +msgstr "Tiempo en OK de la semana" + +#: ../../enterprise/include/functions_reporting_csv.php:1791 +msgid "Time Error week" +msgstr "Tiempo en error de la semana" + +#: ../../enterprise/include/functions_reporting_csv.php:1792 +msgid "Time Unknown week" +msgstr "Tiempo en desconocido de la semana" + +#: ../../enterprise/include/functions_reporting_csv.php:1793 +msgid "Time Downtime week" +msgstr "Tiempo en parada planificada de la semana" + +#: ../../enterprise/include/functions_reporting_csv.php:1794 +msgid "Time Not Init week" +msgstr "Tiempo en no iniciado de la semana" + +#: ../../enterprise/include/functions_reporting_csv.php:1795 +msgid "Checks Total week" +msgstr "Comprobaciones totales de la semana" + +#: ../../enterprise/include/functions_reporting_csv.php:1796 +msgid "Checks OK week" +msgstr "Comprobaciones en OK de la semana" + +#: ../../enterprise/include/functions_reporting_csv.php:1797 +msgid "Checks Error week" +msgstr "Comprobaciones en error de la semana" + +#: ../../enterprise/include/functions_reporting_csv.php:1798 +msgid "Checks Unknown week" +msgstr "Comprobaciones en desconocido de la semana" + +#: ../../enterprise/include/functions_reporting_csv.php:1799 +msgid "Status week" +msgstr "Estado de la semana" + +#: ../../enterprise/include/functions_reporting_csv.php:1815 +msgid "Day Week" +msgstr "DĆ­a de la semana" + +#: ../../enterprise/include/functions_reporting_csv.php:1867 +msgid "S.L.A. Services" +msgstr "Servicios S.L.A" + +#: ../../enterprise/include/functions_reporting_csv.php:1885 +msgid "Lost sercice " +msgstr "Servicio perdido " + +#: ../../enterprise/include/functions_reporting_csv.php:1886 +msgid "Service " +msgstr "Servicio " + +#: ../../enterprise/include/functions_reporting_csv.php:1887 +msgid "Limit " +msgstr "LĆ­mite " + +#: ../../enterprise/include/functions_reporting_csv.php:1888 +msgid "SLA Compilance " +msgstr "Cumplimiento SLA " + +#: ../../enterprise/include/functions_reporting_csv.php:1889 +msgid "Unknown " +msgstr "Desconocido " + +#: ../../enterprise/include/functions_reporting_csv.php:1890 +msgid "Ok " +msgstr "Ok " + +#: ../../enterprise/include/functions_reporting_csv.php:1891 +msgid "Fail " +msgstr "Error " + +#: ../../enterprise/include/functions_reporting_csv.php:1892 +msgid "Result " +msgstr "Resultado " + +#: ../../enterprise/include/functions_reporting_csv.php:1917 +msgid "IPAM Networks" +msgstr "Redes IPAM" + +#: ../../enterprise/include/functions_reporting_csv.php:1934 +#: ../../enterprise/include/functions_reporting.php:2317 +#: ../../godmode/events/custom_events.php:96 ../../include/functions_events.php:244 +#: ../../operation/events/events.php:2432 +msgid "Agent ID" +msgstr "ID de agente" + +#: ../../enterprise/include/functions_reporting_csv.php:1935 +#: ../../enterprise/include/functions_reporting.php:2318 +#: ../../enterprise/include/functions_ipam.php:2040 +#: ../../enterprise/tools/ipam/ipam_network.php:403 +#: ../../enterprise/tools/ipam/ipam_network.php:672 +#: ../../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:1023 ../../mobile/operation/events.php:849 +#: ../../include/functions_reporting_html.php:5774 ../../include/functions.php:3053 +#: ../../include/ajax/events.php:1722 ../../include/class/AuditLog.class.php:112 +#: ../../operation/users/user_edit.php:606 +#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:317 +#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:410 +#: ../../general/logon_ok.php:244 +msgid "Comments" +msgstr "Comentarios" + +#: ../../enterprise/include/functions_reporting_csv.php:1936 +#: ../../enterprise/include/functions_reporting.php:2319 +#: ../../enterprise/include/functions_ipam.php:2038 +#: ../../enterprise/tools/ipam/ipam_network.php:414 +#: ../../godmode/wizards/DiscoveryTaskList.class.php:1391 +msgid "Alive" +msgstr "Activo" + +#: ../../enterprise/include/functions_reporting_csv.php:1977 +msgid "SLA max" +msgstr "SLA mĆ”ximo" + +#: ../../enterprise/include/functions_reporting_csv.php:1978 +msgid "SLA min" +msgstr "SLA mĆ­nimo" + +#: ../../enterprise/include/functions_reporting_csv.php:1979 +msgid "SLA limit" +msgstr "LĆ­mite de SLA" + +#: ../../enterprise/include/functions_reporting_csv.php:1980 +#: ../../enterprise/include/functions_reporting.php:4967 +#: ../../include/functions_reporting_html.php:579 +msgid "Time Total" +msgstr "Tiempo total" + +#: ../../enterprise/include/functions_reporting_csv.php:1981 +#: ../../enterprise/include/functions_reporting.php:4970 +#: ../../include/functions_reporting_html.php:581 +#: ../../include/functions_reporting_html.php:3938 +msgid "Time OK" +msgstr "Tiempo OK" + +#: ../../enterprise/include/functions_reporting_csv.php:1982 +msgid "Time Error" +msgstr "Tiempo de error" + +#: ../../enterprise/include/functions_reporting_csv.php:1983 +#: ../../enterprise/include/functions_reporting.php:4971 +#: ../../include/functions_reporting_html.php:582 +#: ../../include/functions_reporting_html.php:3950 +msgid "Time Unknown" +msgstr "Tiempo desconocido" + +#: ../../enterprise/include/functions_reporting_csv.php:1984 +#: ../../enterprise/include/functions_reporting.php:4972 +#: ../../include/functions_reporting_html.php:583 +msgid "Time Not Init" +msgstr "Tiempo no iniciado" + +#: ../../enterprise/include/functions_reporting_csv.php:1985 +#: ../../include/functions_reporting_html.php:3962 +msgid "Time Downtime" +msgstr "Tiempo de parada planificada" + +#: ../../enterprise/include/functions_reporting_csv.php:1986 +#: ../../enterprise/include/functions_reporting.php:5062 +#: ../../include/functions_reporting_html.php:612 +msgid "Checks Total" +msgstr "Comprobaciones totales" + +#: ../../enterprise/include/functions_reporting_csv.php:1987 +#: ../../enterprise/include/functions_reporting.php:5065 +#: ../../include/functions_reporting_html.php:614 +#: ../../include/functions_reporting_html.php:4032 +msgid "Checks OK" +msgstr "Comprobaciones OK" + +#: ../../enterprise/include/functions_reporting_csv.php:1988 +msgid "Checks Error" +msgstr "Comprobaciones en error" + +#: ../../enterprise/include/functions_reporting_csv.php:1989 +#: ../../enterprise/include/functions_reporting.php:5066 +#: ../../include/functions_reporting_html.php:615 +msgid "Checks Unknown" +msgstr "Comprobaciones desconocidas" + +#: ../../enterprise/include/functions_reporting_csv.php:1990 +#: ../../enterprise/include/functions_reporting.php:5067 +msgid "Checks Not Init" +msgstr "Comprobaciones en no iniciado" + +#: ../../enterprise/include/functions_reporting_csv.php:1991 +#: ../../enterprise/operation/services/services.service.php:128 +#: ../../enterprise/operation/services/services.list.php:508 +#: ../../include/functions_reports.php:698 ../../include/functions_reports.php:703 +#: ../../include/functions_reports.php:707 ../../include/functions_reports.php:711 +#: ../../include/functions_reports.php:717 +msgid "SLA" +msgstr "SLA" + +#: ../../enterprise/include/functions_reporting_csv.php:1992 +msgid "SLA Fixed" +msgstr "SLA fijo" + +#: ../../enterprise/include/functions_reporting_csv.php:2097 +msgid "Time Total day" +msgstr "Tiempo total del dĆ­a" + +#: ../../enterprise/include/functions_reporting_csv.php:2098 +msgid "Time OK day" +msgstr "Tiempo en OK del dĆ­a" + +#: ../../enterprise/include/functions_reporting_csv.php:2099 +msgid "Time Error day" +msgstr "Tiempo en error del dĆ­a" + +#: ../../enterprise/include/functions_reporting_csv.php:2100 +msgid "Time Unknown day" +msgstr "Tiempo en desconocido del dĆ­a" + +#: ../../enterprise/include/functions_reporting_csv.php:2101 +msgid "Time Downtime day" +msgstr "Tiempo en parada planificada del dĆ­a" + +#: ../../enterprise/include/functions_reporting_csv.php:2102 +msgid "Time Not Init day" +msgstr "Tiempo en no iniciado del dĆ­a" + +#: ../../enterprise/include/functions_reporting_csv.php:2103 +msgid "Checks Total day" +msgstr "Comprobaciones totales del dĆ­a" + +#: ../../enterprise/include/functions_reporting_csv.php:2104 +msgid "Checks OK day" +msgstr "Comprobaciones en OK del dĆ­a" + +#: ../../enterprise/include/functions_reporting_csv.php:2105 +msgid "Checks Error day" +msgstr "Comprobaciones en error del dĆ­a" + +#: ../../enterprise/include/functions_reporting_csv.php:2106 +msgid "Checks Unknown day" +msgstr "Comprobaciones en desconocido del dĆ­a" + +#: ../../enterprise/include/functions_reporting_csv.php:2107 +msgid "Status day" +msgstr "Estado del dĆ­a" + +#: ../../enterprise/include/functions_reporting_csv.php:2123 +#: ../../enterprise/include/functions_events.php:163 +msgid "Hours" +msgstr "Horas" + +#: ../../enterprise/include/functions_reporting_csv.php:2124 +msgid "Time Total hours" +msgstr "Tiempo total en horas" + +#: ../../enterprise/include/functions_reporting_csv.php:2125 +msgid "Time OK hours" +msgstr "Tiempo en OK en horas" + +#: ../../enterprise/include/functions_reporting_csv.php:2126 +msgid "Time Error hours" +msgstr "Tiempo en error en horas" + +#: ../../enterprise/include/functions_reporting_csv.php:2127 +msgid "Time Unknown hours" +msgstr "Tiempo en desconocido en horas" + +#: ../../enterprise/include/functions_reporting_csv.php:2128 +msgid "Time Not Init hours" +msgstr "Tiempo en no iniciado en horas" + +#: ../../enterprise/include/functions_reporting_csv.php:2129 +msgid "Time Downtime hours" +msgstr "Tiempo en parada planificada en horas" + +#: ../../enterprise/include/functions_reporting_csv.php:2130 +msgid "Time Out hours" +msgstr "Tiempo fuera en horas" + +#: ../../enterprise/include/functions_reporting_csv.php:2131 +msgid "Checks Total hours" +msgstr "Comprobaciones totales en horas" + +#: ../../enterprise/include/functions_reporting_csv.php:2132 +msgid "Checks OK hours" +msgstr "Comprobaciones en OK en horas" + +#: ../../enterprise/include/functions_reporting_csv.php:2133 +msgid "Checks Error hours" +msgstr "Comprobaciones en error en horas" + +#: ../../enterprise/include/functions_reporting_csv.php:2134 +msgid "Checks Unknown hours" +msgstr "Comprobaciones en desconocido en horas" + +#: ../../enterprise/include/functions_reporting_csv.php:2135 +msgid "Checks Not Init hours" +msgstr "Comprobaciones en no iniciado en horas" + +#: ../../enterprise/include/functions_reporting_csv.php:2136 +msgid "SLA hours" +msgstr "SLA horas" + +#: ../../enterprise/include/functions_reporting_csv.php:2137 +msgid "SLA Fixed hours" +msgstr "SLA horario fijo" + +#: ../../enterprise/include/functions_reporting_csv.php:2138 +msgid "Date From hours" +msgstr "Desde" + +#: ../../enterprise/include/functions_reporting_csv.php:2139 +msgid "Date To hours" +msgstr "Hasta" + +#: ../../enterprise/include/functions_reporting_csv.php:2140 +msgid "Status hours" +msgstr "Estado horas" + +#: ../../enterprise/include/functions_reporting_csv.php:2267 +msgid "Simple Baseline Graph" +msgstr "GrĆ”fica simple base" + +#: ../../enterprise/include/functions_reporting_csv.php:2298 +#: ../../include/rest-api/models/VisualConsole/Items/ModuleGraph.php:567 +msgid "Custom Graph" +msgstr "GrĆ”fica personalizada" + +#: ../../enterprise/include/functions_reporting_csv.php:2443 +#: ../../include/functions_reporting.php:5663 +msgid "Alert Report Module" +msgstr "Informe de alertas de mĆ³dulo" + +#: ../../enterprise/include/functions_reporting_csv.php:2445 +#: ../../include/functions_reporting.php:5496 +msgid "Alert Report Agent" +msgstr "Informe de alertas de agente" + +#: ../../enterprise/include/functions_reporting_csv.php:2447 +#: ../../include/functions_reporting.php:5316 +msgid "Alert Report Group" +msgstr "Informe de alertas de grupo" + +#: ../../enterprise/include/functions_reporting_csv.php:2465 +msgid "Actions Triggered" +msgstr "Acciones disparadas" + +#: ../../enterprise/include/functions_reporting_csv.php:2465 +msgid "Template Triggered" +msgstr "Plantillas disparadas" + +#: ../../enterprise/include/functions_reporting_csv.php:2502 +msgid "Event Report Log" +msgstr "Log de informes de eventos" + +#: ../../enterprise/include/functions_reporting_csv.php:2531 +#: ../../include/functions_reports.php:932 ../../include/functions_reports.php:933 +#: ../../include/functions_reporting.php:4573 +msgid "Permissions report" +msgstr "Informe de permisos" + +#: ../../enterprise/include/functions_reporting_csv.php:2549 +#: ../../enterprise/include/functions_reporting_csv.php:2559 +#: ../../godmode/users/user_list.php:479 ../../godmode/users/configure_user.php:849 +#: ../../godmode/users/configure_user.php:865 +#: ../../include/functions_reporting_html.php:5064 +#: ../../include/functions_reporting_html.php:6236 +#: ../../include/functions_reporting_html.php:6259 ../../operation/search_users.php:43 +#: ../../operation/users/user_edit.php:258 ../../operation/snmpconsole/snmp_view.php:876 +msgid "User ID" +msgstr "ID usuario" + +#: ../../enterprise/include/functions_reporting_csv.php:2549 +#: ../../enterprise/include/functions_reporting_csv.php:2559 +#: ../../include/functions_reporting_html.php:6237 +#: ../../include/functions_reporting_html.php:6260 +msgid "Full name" +msgstr "Nombre completo" + +#: ../../enterprise/include/functions_reporting_csv.php:2549 +#: ../../enterprise/include/functions_reporting_csv.php:2559 +#: ../../include/functions_reporting_html.php:6238 +#: ../../include/functions_reporting_html.php:6261 +msgid "Permissions" +msgstr "Permisos" + +#: ../../enterprise/include/functions_reporting_csv.php:2605 +msgid "Netflow data chart" +msgstr "GrĆ”fico de datos de Netflow" + +#: ../../enterprise/include/functions_reporting_csv.php:2607 +#: ../../include/functions_reports.php:907 +msgid "Netflow area chart" +msgstr "GrĆ”fico de Ć”rea de Netflow" + +#: ../../enterprise/include/functions_reporting_csv.php:2660 +msgid "Netflow summary" +msgstr "Resumen de Netflow" + +#: ../../enterprise/include/functions_reporting_csv.php:2680 +#: ../../include/functions_netflow.php:416 +msgid "Total flows" +msgstr "Fluctuaciones totales" + +#: ../../enterprise/include/functions_reporting_csv.php:2680 +#: ../../include/functions_netflow.php:421 +msgid "Total bytes" +msgstr "Bytes totales" + +#: ../../enterprise/include/functions_reporting_csv.php:2680 +#: ../../include/functions_netflow.php:426 +msgid "Total packets" +msgstr "Paquetes totales" + +#: ../../enterprise/include/functions_reporting_csv.php:2680 +msgid "Avg. bits/sec" +msgstr "Promedio de bits/seg." + +#: ../../enterprise/include/functions_reporting_csv.php:2680 +msgid "Avg. packets/sec" +msgstr "Promedio de paquetes/seg." + +#: ../../enterprise/include/functions_reporting_csv.php:2680 +msgid "Avg. bytes/packet" +msgstr "Promedio de bytes/paquete" + +#: ../../enterprise/include/functions_reporting_csv.php:2681 +msgid "Dst. IP" +msgstr "IP de destino" + +#: ../../enterprise/include/functions_reporting_csv.php:2707 +msgid "Agent/module status" +msgstr "Estado del agente/mĆ³dulo" + +#: ../../enterprise/include/functions_reporting_csv.php:2742 +#: ../../include/functions_reporting_html.php:2145 +msgid "Last time" +msgstr "ƚltima vez" + +#: ../../enterprise/include/functions_reporting_csv.php:2786 +#: ../../include/functions_reports.php:919 ../../include/functions_reporting.php:6110 +msgid "Netflow top-N connections" +msgstr "Conexiones Netflow top-N" + +#: ../../enterprise/include/functions_reporting_csv.php:2808 +#: ../../mobile/operation/tactical.php:351 +#: ../../include/functions_reporting_html.php:5773 ../../include/functions.php:3053 +#: ../../include/functions_netflow.php:347 ../../include/class/AuditLog.class.php:111 +#: ../../operation/snmpconsole/snmp_statistics.php:182 ../../general/logon_ok.php:243 +msgid "Source IP" +msgstr "IP origen" + +#: ../../enterprise/include/functions_reporting_csv.php:2808 +#: ../../include/functions_netflow.php:348 +msgid "Destination IP" +msgstr "IP de destino" + +#: ../../enterprise/include/functions_reporting_csv.php:2808 +#: ../../include/functions_config.php:979 ../../include/functions_config.php:3075 +#: ../../include/functions_netflow.php:349 +#: ../../operation/network/network_report.php:206 +#: ../../operation/network/network_report.php:236 +msgid "Bytes" +msgstr "Bytes" + +#: ../../enterprise/include/functions_reporting_csv.php:2808 +#: ../../include/functions_netflow.php:350 +msgid "% Traffic" +msgstr "% TrĆ”fico" + +#: ../../enterprise/include/functions_reporting_csv.php:2808 +msgid "Average Throughput (bits/sec)" +msgstr "Rendimiento medio (bits/seg)" + +#: ../../enterprise/include/functions_aws.php:381 +msgid "$" +msgstr "$" + +#: ../../enterprise/include/functions_aws.php:491 +msgid "Current deployments" +msgstr "Despliegues actuales" + +#: ../../enterprise/include/functions_aws.php:525 +msgid "Cost analysis" +msgstr "AnĆ”lisis de costes" + +#: ../../enterprise/include/functions_aws.php:528 +msgid "Current cost estimation" +msgstr "EstimaciĆ³n actual de costes" + +#: ../../enterprise/include/functions_aws.php:530 +msgid "Previous period cost" +msgstr "Coste del periodo anterior" + +#: ../../enterprise/include/functions_aws.php:589 +msgid "Reservation status" +msgstr "Estado de reserva" + +#: ../../enterprise/include/functions_HA_cluster.php:46 +#: ../../enterprise/include/class/DeploymentCenter.class.php:1787 +msgid "Deploy" +msgstr "Desplegar" + +#: ../../enterprise/include/functions_HA_cluster.php:49 +msgid "Recover" +msgstr "Recuperar" + +#: ../../enterprise/include/functions_HA_cluster.php:52 +msgid "Promote" +msgstr "Promover" + +#: ../../enterprise/include/functions_HA_cluster.php:55 +msgid "Demote" +msgstr "Degradar" + +#: ../../enterprise/include/functions_HA_cluster.php:64 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1944 +msgid "Cleanup" +msgstr "Limpiar" + +#: ../../enterprise/include/functions_HA_cluster.php:67 +msgid "Resync" +msgstr "Volver a sincronizar" + +#: ../../enterprise/include/functions_HA_cluster.php:261 +msgid "Public Key Authentication Failed" +msgstr "Error en la autenticaciĆ³n de clave pĆŗblica" + +#: ../../enterprise/include/functions_HA_cluster.php:268 +msgid "Connection failed" +msgstr "Conexion fallida" + +#: ../../enterprise/include/functions_HA_cluster.php:491 +msgid "Register" +msgstr "Registrar" + +#: ../../enterprise/include/functions_HA_cluster.php:493 +msgid "Register new node" +msgstr "Registrar nuevo nodo" + +#: ../../enterprise/include/functions_HA_cluster.php:496 +#: ../../include/class/NetworkMap.class.php:2957 +msgid "Update node" +msgstr "Actualizar nodo" + +#: ../../enterprise/include/class/Azure.cloud.php:148 +#: ../../enterprise/include/class/Aws.cloud.php:113 +#: ../../enterprise/include/class/Google.cloud.php:142 +msgid "Cloud message" +msgstr "Mensaje en la nube" + +#: ../../enterprise/include/class/Azure.cloud.php:153 +#: ../../include/class/CredentialStore.class.php:947 +msgid "Azure" +msgstr "Azure" + +#: ../../enterprise/include/class/Azure.cloud.php:248 +#: ../../enterprise/include/class/Google.cloud.php:242 +msgid "Task details" +msgstr "Detalles de la tarea" + +#: ../../enterprise/include/class/Azure.cloud.php:249 +#: ../../enterprise/include/class/Google.cloud.php:243 +msgid "Instance explorer" +msgstr "Buscador de instancias" + +#: ../../enterprise/include/class/Azure.cloud.php:250 +#: ../../enterprise/include/class/Google.cloud.php:244 +msgid "Metrics" +msgstr "MĆ©tricas" + +#: ../../enterprise/include/class/Azure.cloud.php:307 +msgid "Microsoft Compute" +msgstr "Microsoft Compute" + +#: ../../enterprise/include/class/Azure.cloud.php:355 +#: ../../enterprise/include/class/Aws.cloud.php:1492 +#: ../../enterprise/include/class/Google.cloud.php:349 +#, php-format +msgid "%s not found or not executable" +msgstr "%s no encontrado o no ejecutable" + +#: ../../enterprise/include/class/Azure.cloud.php:468 +#: ../../enterprise/include/class/Google.cloud.php:470 +msgid "Group not found." +msgstr "Grupo no encontrado" + +#: ../../enterprise/include/class/Azure.cloud.php:598 +#: ../../enterprise/include/class/Azure.cloud.php:646 +#: ../../enterprise/include/class/Google.cloud.php:597 +#: ../../enterprise/include/class/Google.cloud.php:643 +msgid "Unauthorized access" +msgstr "Acceso no autorizado" + +#: ../../enterprise/include/class/Azure.cloud.php:771 +#: ../../enterprise/include/class/VMware.app.php:583 +#: ../../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:1201 +#: ../../enterprise/include/class/MySQL.app.php:442 +#: ../../enterprise/include/class/Google.cloud.php:759 +#: ../../enterprise/include/class/Oracle.app.php:444 +#: ../../enterprise/include/class/MicrosoftSQLServer.app.php:439 +#: ../../godmode/wizards/HostDevices.class.php:838 +#: ../../godmode/wizards/DiscoveryTaskList.class.php:588 +#: ../../include/class/CustomNetScan.class.php:446 +msgid "Task name" +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:540 +msgid "Tentacle options" +msgstr "Opciones de Tentacle" + +#: ../../enterprise/include/class/Azure.cloud.php:872 +#: ../../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." + +#: ../../enterprise/include/class/Azure.cloud.php:909 +#: ../../enterprise/include/class/Google.cloud.php:865 +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: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:688 +msgid "Cpu performance summary" +msgstr "Resumen del rendimiento de CPU" + +#: ../../enterprise/include/class/Azure.cloud.php:949 +#: ../../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: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:718 +#: ../../enterprise/include/class/Google.cloud.php:927 +msgid "Network performance summary" +msgstr "Resumen del rendimiento de la red" + +#: ../../enterprise/include/class/Azure.cloud.php:990 +#: ../../enterprise/include/class/VMware.app.php:1014 +#: ../../enterprise/include/class/DB2.app.php:868 +#: ../../enterprise/include/class/Aws.S3.php:658 +#: ../../enterprise/include/class/SAP.app.php:924 +#: ../../enterprise/include/class/Aws.cloud.php:1590 +#: ../../enterprise/include/class/MySQL.app.php:944 +#: ../../enterprise/include/class/Google.cloud.php:952 +#: ../../enterprise/include/class/Oracle.app.php:977 +#: ../../enterprise/include/class/MicrosoftSQLServer.app.php:821 +#: ../../godmode/wizards/HostDevices.class.php:1589 +#: ../../include/class/CustomNetScan.class.php:758 +msgid "Task configured." +msgstr "Tarea configurada." + +#: ../../enterprise/include/class/Azure.cloud.php:994 +#: ../../enterprise/include/class/VMware.app.php:1018 +#: ../../enterprise/include/class/DB2.app.php:872 +#: ../../enterprise/include/class/SAP.app.php:928 +#: ../../enterprise/include/class/MySQL.app.php:948 +#: ../../enterprise/include/class/Google.cloud.php:956 +#: ../../enterprise/include/class/Oracle.app.php:981 +#: ../../enterprise/include/class/MicrosoftSQLServer.app.php:825 +#: ../../godmode/wizards/HostDevices.class.php:1593 +#: ../../include/class/CustomNetScan.class.php:762 +msgid "Wizard failed. Cannot configure task." +msgstr "Error del asistente. No puede configurar la tarea." + +#: ../../enterprise/include/class/VMware.app.php:230 +msgid "" +"This VMware configuration has been already defined. Please edit it or create a new " +"one." +msgstr "Ya se ha definido la configuraciĆ³n VMware. EdĆ­tela o cree una nueva." + +#: ../../enterprise/include/class/VMware.app.php:264 +#: ../../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:917 +#: ../../enterprise/include/class/MySQL.app.php:206 +#: ../../enterprise/include/class/Oracle.app.php:204 +#: ../../enterprise/include/class/MicrosoftSQLServer.app.php:203 +#: ../../godmode/wizards/HostDevices.class.php:422 +#: ../../include/class/CustomNetScan.class.php:168 +msgid "You must provide a task name." +msgstr "AƱada un nombre a la tarea" + +#: ../../enterprise/include/class/VMware.app.php:269 +#: ../../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:922 +#: ../../enterprise/include/class/MySQL.app.php:211 +#: ../../enterprise/include/class/Oracle.app.php:209 +#: ../../enterprise/include/class/MicrosoftSQLServer.app.php:208 +#: ../../godmode/wizards/HostDevices.class.php:427 +#: ../../include/class/CustomNetScan.class.php:173 +msgid "You must select a Discovery Server." +msgstr "Seleccione un servidor de Discovery" + +#: ../../enterprise/include/class/VMware.app.php:274 +msgid "You must provide a valid V-Center IP or FQDN." +msgstr "AƱada una IP V-Center o FQDN vĆ”lida." + +#: ../../enterprise/include/class/VMware.app.php:279 +#: ../../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:927 +#: ../../enterprise/include/class/MySQL.app.php:226 +#: ../../enterprise/include/class/Oracle.app.php:219 +#: ../../enterprise/include/class/MicrosoftSQLServer.app.php:218 +#: ../../godmode/wizards/HostDevices.class.php:438 +#: ../../include/class/CustomNetScan.class.php:178 +msgid "You must select a valid group." +msgstr "Seleccione un grupo vĆ”lido." + +#: ../../enterprise/include/class/VMware.app.php:291 +msgid "Discovery.Application.VMware" +msgstr "Discovery.Application.VMware" + +#: ../../enterprise/include/class/VMware.app.php:310 +msgid "Please select a valid group" +msgstr "Seleccione un grupo vĆ”lido" + +#: ../../enterprise/include/class/VMware.app.php:369 +msgid "Failed to find discovery VMware task." +msgstr "No se ha podido encontrar la tarea de discovery VMware." + +#: ../../enterprise/include/class/VMware.app.php:384 +msgid "Threads must be equal or greater than 1." +msgstr "Los hilos deben ser igual o mayor que 1." + +#: ../../enterprise/include/class/VMware.app.php:486 +#: ../../enterprise/include/class/DB2.app.php:386 +#: ../../enterprise/include/class/SAP.app.php:336 +#: ../../enterprise/include/class/MySQL.app.php:403 +#: ../../enterprise/include/class/Oracle.app.php:393 +#: ../../enterprise/include/class/MicrosoftSQLServer.app.php:388 +msgid "Application" +msgstr "AplicaciĆ³n" + +#: ../../enterprise/include/class/VMware.app.php:536 +#: ../../enterprise/include/class/DB2.app.php:569 +#: ../../enterprise/include/class/SAP.app.php:444 +#: ../../enterprise/include/class/MySQL.app.php:591 +#: ../../enterprise/include/class/Oracle.app.php:576 +#: ../../enterprise/include/class/MicrosoftSQLServer.app.php:570 +#: ../../enterprise/include/lib/ClusterViewer/ClusterWizard.php:1202 +#: ../../godmode/setup/setup_integria.php:636 +#: ../../godmode/wizards/HostDevices.class.php:772 +#: ../../include/class/CustomNetScan.class.php:553 +msgid "Update and continue" +msgstr "Actualizar y continuar" + +#: ../../enterprise/include/class/VMware.app.php:547 +#: ../../enterprise/include/class/Aws.S3.php:554 +#: ../../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." +msgstr "" +"Este tipo de tarea usa plugins multi funciĆ³n para generar datos de monitorizaciĆ³n, " +"configure el objetivo Tentacle deseado." + +#: ../../enterprise/include/class/VMware.app.php:594 +#: ../../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:1213 +#: ../../enterprise/include/class/MySQL.app.php:454 +#: ../../enterprise/include/class/Oracle.app.php:456 +#: ../../enterprise/include/class/MicrosoftSQLServer.app.php:451 +#: ../../godmode/wizards/HostDevices.class.php:849 +#: ../../include/class/CustomNetScan.class.php:480 +msgid "" +"You must select a Discovery Server to run the Task, otherwise the Recon Task will " +"never run" +msgstr "" +"Seleccione un servidos de Discovery para ejecutar la tarea, si no la tarea de " +"reconocimiento no se ejecutarĆ”" + +#: ../../enterprise/include/class/VMware.app.php:656 +msgid "Datacenter user" +msgstr "Usuario del datacenter" + +#: ../../enterprise/include/class/VMware.app.php:668 +#: ../../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:1319 +#: ../../enterprise/include/class/MySQL.app.php:559 +#: ../../enterprise/include/class/Oracle.app.php:544 +#: ../../enterprise/include/class/MicrosoftSQLServer.app.php:538 +#: ../../godmode/wizards/HostDevices.class.php:799 +#: ../../include/class/CustomNetScan.class.php:521 +msgid "Manual interval means that it will be executed only On-demand" +msgstr "Intervalo manual significa que serĆ” ejecutado solo bajo demanda." + +#: ../../enterprise/include/class/VMware.app.php:675 +#: ../../enterprise/include/class/VMware.app.php:887 +#: ../../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:1326 +#: ../../enterprise/include/class/MySQL.app.php:566 +#: ../../enterprise/include/class/Oracle.app.php:551 +#: ../../enterprise/include/class/MicrosoftSQLServer.app.php:545 +#: ../../godmode/wizards/HostDevices.class.php:806 +#: ../../include/functions_reporting_html.php:2374 +#: ../../include/class/CustomNetScan.class.php:528 +msgid "Defined" +msgstr "Definido" + +#: ../../enterprise/include/class/VMware.app.php:693 +#: ../../enterprise/include/class/DB2.app.php:561 +#: ../../enterprise/include/class/Aws.S3.php:531 +#: ../../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:1343 +#: ../../enterprise/include/class/MySQL.app.php:583 +#: ../../enterprise/include/class/Oracle.app.php:568 +#: ../../enterprise/include/class/MicrosoftSQLServer.app.php:562 +msgid "The minimum recomended interval is 5 minutes" +msgstr "El intervalo mĆ­nimo recomendado es de 5 minutos" + +#: ../../enterprise/include/class/VMware.app.php:707 +msgid "V-Center IP" +msgstr "V-Center IP" + +#: ../../enterprise/include/class/VMware.app.php:718 +msgid "Datacenter name" +msgstr "Nombre del centro de datos" + +#: ../../enterprise/include/class/VMware.app.php:719 +msgid "" +"This name must match with the name wich appears when you log in you VMware manager" +msgstr "" +"El nombre debe coincidir con el nombre que aparece al iniciar sesiĆ³n en el gestor de " +"VMware." + +#: ../../enterprise/include/class/VMware.app.php:749 +msgid "Encrypt passwords" +msgstr "Cifrar contraseƱas" + +#: ../../enterprise/include/class/VMware.app.php:763 +#: ../../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:1234 +#: ../../enterprise/include/class/MySQL.app.php:475 +#: ../../enterprise/include/class/Oracle.app.php:477 +#: ../../enterprise/include/class/MicrosoftSQLServer.app.php:472 +msgid "This group will be used also to classify discovered agents" +msgstr "Este grupo se usarĆ” para clasificar los agentes encontrados" + +#: ../../enterprise/include/class/VMware.app.php:870 +msgid "Max threads" +msgstr "MĆ”ximo de hilos" + +#: ../../enterprise/include/class/VMware.app.php:879 +msgid "Re-scan interval" +msgstr "Intervalo de re-escaneo" + +#: ../../enterprise/include/class/VMware.app.php:880 +msgid "Enables re-scan entities process every interval defined." +msgstr "" +"Hace posible que las entidades de re-escaneo procesen todos los intervalos definidos." + +#: ../../enterprise/include/class/VMware.app.php:913 +msgid "Retry send" +msgstr "Reintentar envĆ­o" + +#: ../../enterprise/include/class/VMware.app.php:923 +msgid "Event mode" +msgstr "Modo de evento" + +#: ../../enterprise/include/class/VMware.app.php:923 +msgid "Only for VCenter." +msgstr "Solo para VCenter." + +#: ../../enterprise/include/class/VMware.app.php:933 +msgid "Virtual network monitoring" +msgstr "MonitorizaciĆ³n de redes virtuales" + +#: ../../enterprise/include/class/VMware.app.php:964 +msgid "Extra settings" +msgstr "Ajustes adicionales" + +#: ../../enterprise/include/class/VMware.app.php:965 +msgid "This RAW block will be directly added to config file." +msgstr "Este bloque RAM se aƱadirĆ” directamente al archivo de configuraciĆ³n." + +#: ../../enterprise/include/class/VMware.app.php:1259 +msgid "Include datastores" +msgstr "Incluir almacenes de datos" + +#: ../../enterprise/include/class/VMware.app.php:1269 +msgid "Include datacenters" +msgstr "Incluir centros de datos" + +#: ../../enterprise/include/class/VMware.app.php:1279 +msgid "Include esxs" +msgstr "Incluir esxs" + +#: ../../enterprise/include/class/VMware.app.php:1289 +msgid "Include vms" +msgstr "Incluir vms" + +#: ../../enterprise/include/class/DeploymentCenter.class.php:235 +msgid "IP address is required" +msgstr "Se requiere direcciĆ³n IP" + +#: ../../enterprise/include/class/DeploymentCenter.class.php:245 +#: ../../enterprise/include/class/AgentRepository.class.php:439 +msgid "Target OS is required" +msgstr "Se requiere SO de destion" + +#: ../../enterprise/include/class/DeploymentCenter.class.php:247 +#: ../../enterprise/include/class/AgentRepository.class.php:441 +msgid "Target architecture is required" +msgstr "Se requiere arquitectura de destino" + +#: ../../enterprise/include/class/DeploymentCenter.class.php:249 +msgid "Credentials to use are required" +msgstr "Se requieren credenciales de uso" + +#: ../../enterprise/include/class/DeploymentCenter.class.php:251 +msgid "Desired agent version is required" +msgstr "Se requiere la versiĆ³n de agente deseada" + +#: ../../enterprise/include/class/DeploymentCenter.class.php:262 +msgid "Target already defined." +msgstr "Objetivo ya definido." + +#: ../../enterprise/include/class/DeploymentCenter.class.php:288 +msgid "Target successfully added" +msgstr "Objetivo aƱadido correctamente" + +#: ../../enterprise/include/class/DeploymentCenter.class.php:309 +msgid "Target successfully updated" +msgstr "Objetivo actualizado correctamente" + +#: ../../enterprise/include/class/DeploymentCenter.class.php:335 +#: ../../enterprise/include/class/AgentRepository.class.php:601 +msgid "Target successfully deleted" +msgstr "Objetivo borrado correctamente" + +#: ../../enterprise/include/class/DeploymentCenter.class.php:352 +msgid "You should specify a Discovery server" +msgstr "Especifique un servidor Discovery" + +#: ../../enterprise/include/class/DeploymentCenter.class.php:354 +msgid "You must select some targets to deploy" +msgstr "Seleccione algunos de los objetivos a desplegar" + +#: ../../enterprise/include/class/DeploymentCenter.class.php:384 +#: ../../enterprise/include/class/DeploymentCenter.class.php:1095 +msgid "Failed to schedule" +msgstr "No se ha podido programar" + +#: ../../enterprise/include/class/DeploymentCenter.class.php:399 +msgid "Deploy scheduled" +msgstr "Despliegue programado" + +#: ../../enterprise/include/class/DeploymentCenter.class.php:425 +msgid "CSV file is needed" +msgstr "Se necesita archivo CSV" + +#: ../../enterprise/include/class/DeploymentCenter.class.php:480 +#, php-format +msgid "Credential identifier %s does not exist, please, add it to your repository %s " +msgstr "El identificador de credenciales %s no existe, aƱƔdalo a su repositorio %s " + +#: ../../enterprise/include/class/DeploymentCenter.class.php:488 +#, php-format +msgid "OS %s does not math any existing, please, add it to OS list %s" +msgstr "" +"El sistema operativo %s no coincide con ninguno existente, aƱƔdalo a la lista de " +"sistemas operativos %s" + +#: ../../enterprise/include/class/DeploymentCenter.class.php:496 +#, php-format +msgid "" +"Sofware agent version with id %s does not exist, please, add it to your repository %s " +msgstr "" +"La versiĆ³n del agente software con el ID %s no existe, aƱƔdalo al repositorio %s " + +#: ../../enterprise/include/class/DeploymentCenter.class.php:518 +msgid "No target could be added. " +msgstr "No se ha podido aƱadir ningĆŗn objetivo. " + +#: ../../enterprise/include/class/DeploymentCenter.class.php:594 +#: ../../enterprise/include/class/CSVImportAgents.class.php:98 +#: ../../godmode/wizards/HostDevices.class.php:196 +#: ../../include/class/ManageNetScanScripts.class.php:104 +#: ../../include/class/CustomNetScan.class.php:352 +msgid "Host & Devices" +msgstr "Host y dispositivos" + +#: ../../enterprise/include/class/DeploymentCenter.class.php:621 +msgid "Deployment center" +msgstr "Centro de despliegue" + +#: ../../enterprise/include/class/DeploymentCenter.class.php:637 +msgid "There are no targets defined yet, please add some." +msgstr "AĆŗn no hay objetivos definidos, aƱada alguno." + +#: ../../enterprise/include/class/DeploymentCenter.class.php:644 +#, php-format +msgid "Please set %s to make software available for targets." +msgstr "Programe %s para que el software estĆ© disponible para los objetivos." + +#: ../../enterprise/include/class/DeploymentCenter.class.php:656 +#, php-format +msgid "There are no software agents in your repository yet, please add some %s." +msgstr "No hay agentes software en el repositorio, aƱada algunos %s." + +#: ../../enterprise/include/class/DeploymentCenter.class.php:675 +#: ../../enterprise/include/class/DeploymentCenter.class.php:1751 +msgid "Scan for targets" +msgstr "Escaneo de objetivos" + +#: ../../enterprise/include/class/DeploymentCenter.class.php:684 +msgid "Add target" +msgstr "AƱadir destino" + +#: ../../enterprise/include/class/DeploymentCenter.class.php:693 +msgid "Load targets" +msgstr "Cargar destinos" + +#: ../../enterprise/include/class/DeploymentCenter.class.php:757 +#: ../../enterprise/include/class/DeploymentCenter.class.php:825 +#: ../../enterprise/include/class/DeploymentCenter.class.php:1301 +#: ../../enterprise/include/class/DeploymentCenter.class.php:1397 +#: ../../enterprise/include/class/AgentRepository.class.php:364 +#: ../../enterprise/include/class/AgentRepository.class.php:641 +#: ../../enterprise/include/class/AgentRepository.class.php:694 +msgid "Architecture" +msgstr "Arquitectura" + +#: ../../enterprise/include/class/DeploymentCenter.class.php:758 +msgid "Key identifier" +msgstr "Identificador de clave" + +#: ../../enterprise/include/class/DeploymentCenter.class.php:759 +#: ../../enterprise/include/class/DeploymentCenter.class.php:1222 +#: ../../enterprise/include/class/DeploymentCenter.class.php:1359 +msgid "Target server IP" +msgstr "IP del servidor de destino" + +#: ../../enterprise/include/class/DeploymentCenter.class.php:760 +msgid "Agent version installed" +msgstr "Verison de agente instalada" + +#: ../../enterprise/include/class/DeploymentCenter.class.php:761 +msgid "Agent version desired" +msgstr "VersiĆ³n de agente deseada" + +#: ../../enterprise/include/class/DeploymentCenter.class.php:762 +msgid "Installation date" +msgstr "Fecha de instalaciĆ³n" + +#: ../../enterprise/include/class/DeploymentCenter.class.php:763 +msgid "Last error" +msgstr "ƚltimo error" + +#: ../../enterprise/include/class/DeploymentCenter.class.php:811 +msgid "Server IP" +msgstr "IP del servidor" + +#: ../../enterprise/include/class/DeploymentCenter.class.php:836 +msgid "State" +msgstr "Estado" + +#: ../../enterprise/include/class/DeploymentCenter.class.php:868 +msgid "Deploy agent to targets" +msgstr "Desplegar agentes a destinos" + +#: ../../enterprise/include/class/DeploymentCenter.class.php:956 +#: ../../enterprise/include/class/AgentRepository.class.php:272 +msgid "Deploying" +msgstr "Desplegar" + +#: ../../enterprise/include/class/DeploymentCenter.class.php:1042 +msgid "You must define a network." +msgstr "Defina una red." + +#: ../../enterprise/include/class/DeploymentCenter.class.php:1044 +msgid "You must select at least one credential to test." +msgstr "Seleccione al menos un credencial a probar." + +#: ../../enterprise/include/class/DeploymentCenter.class.php:1046 +msgid "You must select a Discovery server." +msgstr "Seleccione un servidor Discovery." + +#: ../../enterprise/include/class/DeploymentCenter.class.php:1048 +msgid "Please select a desired software agent version." +msgstr "Seleccione la version deseada del agente software." + +#: ../../enterprise/include/class/DeploymentCenter.class.php:1050 +msgid "Please specify a server IP." +msgstr "Especifique una IP de servidor." + +#: ../../enterprise/include/class/DeploymentCenter.class.php:1070 +#: ../../enterprise/include/class/DeploymentCenter.class.php:1103 +msgid "Discovery task list" +msgstr "Lista de tareas Discovery" + +#: ../../enterprise/include/class/DeploymentCenter.class.php:1069 +#, php-format +msgid "This network is already being scanned. See progress at %s" +msgstr "Ya se estĆ” escaneando la red. Ver progreso en %s" + +#: ../../enterprise/include/class/DeploymentCenter.class.php:1102 +#, php-format +msgid "Network scheduled to be scanned. You can see progress at %s" +msgstr "Escaneo de red programado. Puede ver el progreso en %s." + +#: ../../enterprise/include/class/DeploymentCenter.class.php:1135 +#: ../../enterprise/include/class/DeploymentCenter.class.php:1138 +#: ../../enterprise/include/class/DeploymentCenter.class.php:1265 +#: ../../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:1434 +#: ../../godmode/wizards/HostDevices.class.php:1437 +msgid "No credentials available" +msgstr "No hay credenciales disponibles" + +#: ../../enterprise/include/class/DeploymentCenter.class.php:1136 +#: ../../enterprise/include/class/DeploymentCenter.class.php:1266 +#: ../../enterprise/include/class/SAP.app.php:605 +#: ../../godmode/agentes/module_manager_editor_network.php:474 +#: ../../godmode/wizards/HostDevices.class.php:1435 +msgid "Manage credentials" +msgstr "Gestionar credenciales" + +#: ../../enterprise/include/class/DeploymentCenter.class.php:1150 +msgid "Network/mask" +msgstr "Red/MĆ”scara" + +#: ../../enterprise/include/class/DeploymentCenter.class.php:1159 +msgid "Scan from" +msgstr "Escanear desde" + +#: ../../enterprise/include/class/DeploymentCenter.class.php:1178 +#: ../../godmode/wizards/HostDevices.class.php:1447 +msgid "Credentials to try with" +msgstr "Credenciales con los que probar" + +#: ../../enterprise/include/class/DeploymentCenter.class.php:1212 +#: ../../enterprise/include/class/DeploymentCenter.class.php:1349 +msgid "Desired agent version" +msgstr "VersiĆ³n de agente deseada" + +#: ../../enterprise/include/class/DeploymentCenter.class.php:1396 +msgid "CSV format" +msgstr "Formato CVS" + +#: ../../enterprise/include/class/DeploymentCenter.class.php:1397 +msgid "Target agent version" +msgstr "Version de agente objetivo" + +#: ../../enterprise/include/class/DeploymentCenter.class.php:1397 +msgid "Target server ip" +msgstr "IP del servidor objetivo" + +#: ../../enterprise/include/class/DeploymentCenter.class.php:1416 +msgid "CSV file" +msgstr "Archivo CSV" + +#: ../../enterprise/include/class/DeploymentCenter.class.php:1476 +msgid "Select desired targets to be deployed" +msgstr "Seleccionar objetivos a desplegar" + +#: ../../enterprise/include/class/DeploymentCenter.class.php:1479 +msgid "Deploy from" +msgstr "Desplegar desde" + +#: ../../enterprise/include/class/DeploymentCenter.class.php:1494 +msgid "Available targets" +msgstr "Objetivos disponibles" + +#: ../../enterprise/include/class/DeploymentCenter.class.php:1670 +msgid "Add new target" +msgstr "AƱadir nuevo objetivo" + +#: ../../enterprise/include/class/DeploymentCenter.class.php:1673 +msgid "Update target" +msgstr "Actualizar objetivo" + +#: ../../enterprise/include/class/DeploymentCenter.class.php:1719 +msgid "Import targets from CSV" +msgstr "Importar objetivos desde CSV" + +#: ../../enterprise/include/class/DeploymentCenter.class.php:1752 +#: ../../godmode/modules/manage_network_components_form_wizard.php:637 +msgid "Scan" +msgstr "Escanear" + +#: ../../enterprise/include/class/DeploymentCenter.class.php:1786 +msgid "Select targets" +msgstr "Seleccionar objetivos" + +#: ../../enterprise/include/class/DatabaseHA.class.php:137 +#: ../../enterprise/include/class/DatabaseHA.class.php:241 +#: ../../enterprise/include/class/DatabaseHA.class.php:423 +#: ../../enterprise/include/class/DatabaseHA.class.php:433 +#: ../../enterprise/include/class/DatabaseHA.class.php:525 +#: ../../enterprise/include/class/DatabaseHA.class.php:534 +#: ../../enterprise/include/class/DatabaseHA.class.php:651 +#: ../../enterprise/include/class/DatabaseHA.class.php:660 +msgid "Error, please refresh page" +msgstr "Error, vuelva a cargar la pĆ”gina" + +#: ../../enterprise/include/class/DatabaseHA.class.php:142 +msgid "Action already scheduled" +msgstr "AcciĆ³n ya programada" + +#: ../../enterprise/include/class/DatabaseHA.class.php:148 +msgid "Unavailable action" +msgstr "AcciĆ³n no disponible" + +#: ../../enterprise/include/class/DatabaseHA.class.php:160 +msgid "A node is already being synchronized, please wait until process finish." +msgstr "Ya se estĆ” sincronizando un nodo, espere hasta que el proceso termine." + +#: ../../enterprise/include/class/DatabaseHA.class.php:172 +msgid "Please verify resync configuration is set before use this feature." +msgstr "Compruebe la configuraciĆ³n de resincronizaciĆ³n antes de usar esta funcionalidad" + +#: ../../enterprise/include/class/DatabaseHA.class.php:190 +#: ../../enterprise/include/class/NetworkConfigManager.class.php:2852 +msgid "Successfully scheduled" +msgstr "Programado correctamente" + +#: ../../enterprise/include/class/DatabaseHA.class.php:205 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2039 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3262 +#: ../../enterprise/tools/ipam/ipam_network.php:402 +#: ../../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/agentes/module_manager_editor_common.php:1061 +#: ../../godmode/agentes/module_manager_editor_common.php:1071 +#: ../../godmode/massive/massive_edit_agents.php:1016 +#: ../../godmode/alerts/configure_alert_template.php:900 +#: ../../include/functions_visual_map_editor.php:825 +#: ../../include/functions_reporting_html.php:3446 +#: ../../include/rest-api/models/VisualConsole/Items/StaticGraph.php:406 +msgid "Enabled" +msgstr "Habilitado" + +#: ../../enterprise/include/class/DatabaseHA.class.php:214 +#: ../../enterprise/include/class/Omnishell.class.php:363 +#: ../../enterprise/include/class/Omnishell.class.php:1087 +#: ../../godmode/wizards/DiscoveryTaskList.class.php:1845 +msgid "Pending" +msgstr "Pendiente" + +#: ../../enterprise/include/class/DatabaseHA.class.php:220 +msgid "Uninitialized" +msgstr "No iniciado" + +#: ../../enterprise/include/class/DatabaseHA.class.php:476 +#: ../../enterprise/include/class/DatabaseHA.class.php:575 +#: ../../enterprise/include/class/DatabaseHA.class.php:1251 +msgid "This is not a cluster node" +msgstr "Este no es un nodo de cluster" + +#: ../../enterprise/include/class/DatabaseHA.class.php:480 +#: ../../enterprise/include/class/DatabaseHA.class.php:1255 +msgid "Failed to retrieve master position" +msgstr "No se ha podido obtener la posiciĆ³n de maestro" + +#: ../../enterprise/include/class/DatabaseHA.class.php:494 +#: ../../enterprise/include/class/DatabaseHA.class.php:1268 +msgid "Failed to retrieve slave information" +msgstr "No se ha podido obtener la informaciĆ³n de esclavo" + +#: ../../enterprise/include/class/DatabaseHA.class.php:611 +msgid "Master" +msgstr "Principal" + +#: ../../enterprise/include/class/DatabaseHA.class.php:614 +msgid "Slave" +msgstr "Esclavo" + +#: ../../enterprise/include/class/DatabaseHA.class.php:796 +#: ../../enterprise/include/class/NetworkConfigManager.class.php:1785 +#: ../../enterprise/include/class/NetworkConfigManager.class.php:1875 +#: ../../enterprise/include/class/NetworkConfigManager.class.php:1970 +#: ../../enterprise/include/class/NetworkConfigManager.class.php:2064 +#: ../../include/class/CalendarManager.class.php:535 +#: ../../include/class/CalendarManager.class.php:892 +msgid "Failed to update" +msgstr "Error al actualizar" + +#: ../../enterprise/include/class/DatabaseHA.class.php:823 +#: ../../enterprise/include/class/DatabaseHA.class.php:1006 +msgid "DB Replication user" +msgstr "Usuario de replicaciĆ³n de la base de datos" + +#: ../../enterprise/include/class/DatabaseHA.class.php:824 +msgid "User configured for Master to Slaves replication" +msgstr "Usuario configurado para replicaciĆ³n Maestro - Esclavo" + +#: ../../enterprise/include/class/DatabaseHA.class.php:834 +#: ../../enterprise/include/class/DatabaseHA.class.php:1015 +msgid "DB Replication user password" +msgstr "ContraseƱa de usuario de replicaciĆ³n de la base de datos" + +#: ../../enterprise/include/class/DatabaseHA.class.php:835 +msgid "User password" +msgstr "ContraseƱa de usuario" + +#: ../../enterprise/include/class/DatabaseHA.class.php:845 +msgid "Resync data dir" +msgstr "Resincronizar directorio de datos" + +#: ../../enterprise/include/class/DatabaseHA.class.php:846 +msgid "Directory where mysql files are stored (must be common to all nodes)" +msgstr "" +"Directorio donde se guardan los archivos MySQL (debe ser comĆŗn a todos los nodos)" + +#: ../../enterprise/include/class/DatabaseHA.class.php:856 +msgid "Resync tmp directory" +msgstr "Resincronizar directorio tmp" + +#: ../../enterprise/include/class/DatabaseHA.class.php:857 +msgid "" +"Temporary working directory where to store the backups that will be used to re-" +"synchronize a slave node" +msgstr "" +"Directorio funcional temporal donde guardar las copias de seguridad que se utilizarĆ”n " +"para re-sincronizar un mĆ³dulo esclavo" + +#: ../../enterprise/include/class/DatabaseHA.class.php:867 +msgid "Resync MySQL user" +msgstr "Resincronizar usuario MySQL" + +#: ../../enterprise/include/class/DatabaseHA.class.php:868 +msgid "" +"User of the system that owns the MySQL files, necessary for the adjustment of " +"permissions (by default mysql)" +msgstr "" +"Usuario del sistema que posee los archivos MySQL, necesario para el ajuste de los " +"permisos (por defecto MySQL)" + +#: ../../enterprise/include/class/DatabaseHA.class.php:878 +msgid "Resync MySQL group" +msgstr "Resincronizar grupo MySQL" + +#: ../../enterprise/include/class/DatabaseHA.class.php:879 +msgid "" +"System group that owns the MySQL files, needed for permissions setting (default mysql)" +msgstr "" +"Grupo del sistema que posee los archivos MySQL, necesario para los ajustes de " +"permisos (MySQL por defecto)" + +#: ../../enterprise/include/class/DatabaseHA.class.php:940 +msgid "IP or FQDN" +msgstr "IP o FQDN" + +#: ../../enterprise/include/class/DatabaseHA.class.php:941 +msgid "" +"This action only registers an already configured node. This action does not configure " +"any resource." +msgstr "" +"Esta acciĆ³n solo registra un nodo ya configurado. Esta acciĆ³n no configura ninguna " +"fuente." + +#: ../../enterprise/include/class/DatabaseHA.class.php:951 +msgid "Cluster node label (pcs)" +msgstr "Etiqueta de nodo de cluster (pcs)" + +#: ../../enterprise/include/class/DatabaseHA.class.php:967 +msgid "SSH user" +msgstr "Usuario SSH" + +#: ../../enterprise/include/class/DatabaseHA.class.php:975 +msgid "SSH port" +msgstr "Puerto SSH" + +#: ../../enterprise/include/class/DatabaseHA.class.php:983 +msgid "SSH key" +msgstr "Clave SSH" + +#: ../../enterprise/include/class/DatabaseHA.class.php:991 +msgid "SSH public key" +msgstr "Clave SSH pĆŗblica" + +#: ../../enterprise/include/class/DatabaseHA.class.php:1043 +msgid "Missed parameters" +msgstr "ParĆ”metros omitidos" + +#: ../../enterprise/include/class/DatabaseHA.class.php:1090 +msgid "You must specify a host" +msgstr "Especifique un host" + +#: ../../enterprise/include/class/DatabaseHA.class.php:1092 +msgid "DB port must be a positive integer" +msgstr "El puerto de la base de datos debe ser un valor positivo" + +#: ../../enterprise/include/class/DatabaseHA.class.php:1094 +msgid "SSH port must be a positive integer" +msgstr "El puerto SSH debe ser un integrante positivo" + +#: ../../enterprise/include/class/DatabaseHA.class.php:1096 +msgid "You must specify a SSH user" +msgstr "Especifique el usuario SSH" + +#: ../../enterprise/include/class/DatabaseHA.class.php:1098 +msgid "You must specify a replication DB user" +msgstr "Especifique un usuario de replicaciĆ³n de base de datos" + +#: ../../enterprise/include/class/DatabaseHA.class.php:1100 +msgid "You must specify a replication DB pass" +msgstr "Especifique una contraseƱa de replicaciĆ³n de base de datos" + +#: ../../enterprise/include/class/DatabaseHA.class.php:1102 +msgid "You must specify a public key path" +msgstr "Especifique una ruta de clave pĆŗblica" + +#: ../../enterprise/include/class/DatabaseHA.class.php:1104 +msgid "You must specify a private path" +msgstr "Especifique una ruta privada" + +#: ../../enterprise/include/class/DatabaseHA.class.php:1154 +msgid "Successfully " +msgstr "Correctamente " + +#: ../../enterprise/include/class/NetworkConfigManager.class.php:375 +msgid "Perform action" +msgstr "Realizar acciĆ³n" + +#: ../../enterprise/include/class/NetworkConfigManager.class.php:1442 +msgid "NCM devices" +msgstr "Dispositivos NCM" + +#: ../../enterprise/include/class/NetworkConfigManager.class.php:1456 +msgid "NCM templates" +msgstr "Plantillas NCM" + +#: ../../enterprise/include/class/NetworkConfigManager.class.php:1470 +msgid "Registered vendors" +msgstr "Fabricantes registrados" + +#: ../../enterprise/include/class/NetworkConfigManager.class.php:1484 +msgid "Registered models" +msgstr "Modelos registrados" + +#: ../../enterprise/include/class/NetworkConfigManager.class.php:1498 +msgid "Registered snippets" +msgstr "Snippets registrados" + +#: ../../enterprise/include/class/NetworkConfigManager.class.php:1512 +msgid "Registered firmwares" +msgstr "Firmwares registrados" + +#: ../../enterprise/include/class/NetworkConfigManager.class.php:1548 +msgid "No agents with NCM features enabled yet" +msgstr "AĆŗn no hay agentes con funciones de NCM habilitadas" + +#: ../../enterprise/include/class/NetworkConfigManager.class.php:1679 +#: ../../enterprise/include/class/NetworkConfigManager.class.php:2189 +#: ../../enterprise/include/class/NetworkConfigManager.class.php:2240 +#, php-format +msgid "Template not found: %s" +msgstr "Plantilla no encontrada: %s" + +#: ../../enterprise/include/class/NetworkConfigManager.class.php:1704 +msgid "Template created" +msgstr "Plantilla creada" + +#: ../../enterprise/include/class/NetworkConfigManager.class.php:1704 +msgid "Template updated" +msgstr "Plantilla actualizada" + +#: ../../enterprise/include/class/NetworkConfigManager.class.php:1725 +#: ../../enterprise/include/class/NetworkConfigManager.class.php:1807 +#: ../../enterprise/include/class/NetworkConfigManager.class.php:1901 +#: ../../enterprise/include/class/NetworkConfigManager.class.php:1992 +#: ../../enterprise/include/class/NetworkConfigManager.class.php:2131 +#: ../../enterprise/include/class/NetworkConfigManager.class.php:2792 +#: ../../enterprise/include/lib/Metaconsole/Node.php:1453 +#: ../../include/class/CalendarManager.class.php:570 +#: ../../include/class/CalendarManager.class.php:946 +#: ../../include/functions_reporting.php:4927 ../../include/functions_reporting.php:4955 +#, php-format +msgid "Error: %s" +msgstr "Error: %s" + +#: ../../enterprise/include/class/NetworkConfigManager.class.php:1770 +#: ../../enterprise/include/class/NetworkConfigManager.class.php:2314 +#, php-format +msgid "Vendor not found: %s" +msgstr "Fabricante no encontrado: %s" + +#: ../../enterprise/include/class/NetworkConfigManager.class.php:1788 +#: ../../enterprise/include/class/NetworkConfigManager.class.php:1878 +#: ../../enterprise/include/class/NetworkConfigManager.class.php:1973 +#: ../../enterprise/include/class/NetworkConfigManager.class.php:2067 +#: ../../include/class/CalendarManager.class.php:538 +#: ../../include/class/CalendarManager.class.php:895 +msgid "Failed to create" +msgstr "Error al crear" + +#: ../../enterprise/include/class/NetworkConfigManager.class.php:1801 +msgid "Failed saving vendor: " +msgstr "Fallo al guardar fabricante:" + +#: ../../enterprise/include/class/NetworkConfigManager.class.php:1860 +#, php-format +msgid "model not found: %s" +msgstr "modelo no encontrado: %s" + +#: ../../enterprise/include/class/NetworkConfigManager.class.php:1882 +#: ../../enterprise/include/class/NetworkConfigManager.class.php:2653 +msgid "you must select a valid vendor" +msgstr "Debe seleccionar un fabricante vĆ”lido" + +#: ../../enterprise/include/class/NetworkConfigManager.class.php:1895 +msgid "Failed saving model: " +msgstr "Fallo al guardar el modelo: " + +#: ../../enterprise/include/class/NetworkConfigManager.class.php:1955 +#, php-format +msgid "snippet not found: %s" +msgstr "Snippet no encontrado: %s" + +#: ../../enterprise/include/class/NetworkConfigManager.class.php:1986 +msgid "Failed saving snippet: " +msgstr "Error al guardar el snippet: " + +#: ../../enterprise/include/class/NetworkConfigManager.class.php:2049 +#, php-format +msgid "firmware not found: %s" +msgstr "firmware no encontrado: %s" + +#: ../../enterprise/include/class/NetworkConfigManager.class.php:2076 +msgid "Firmware file missing" +msgstr "Falta el archivo de firmware" + +#: ../../enterprise/include/class/NetworkConfigManager.class.php:2089 +#: ../../enterprise/include/class/AgentRepository.class.php:450 +msgid "Cannot create target dir [" +msgstr "No se ha podido crear el dir de destino [" + +#: ../../enterprise/include/class/NetworkConfigManager.class.php:2108 +#, php-format +msgid "Failed to store file in %s" +msgstr "Error al almacenar el archivo en %s" + +#: ../../enterprise/include/class/NetworkConfigManager.class.php:2125 +msgid "Failed saving firmware: " +msgstr "Error al guardar el firmware: " + +#: ../../enterprise/include/class/NetworkConfigManager.class.php:2152 +msgid "" +"Upload only official binary files from your device provide in raw format (not " +"compressed)" +msgstr "" +"Cargue solo archivos binarios oficiales desde su dispositivo en formato RAW (no " +"comprimido)" + +#: ../../enterprise/include/class/NetworkConfigManager.class.php:2201 +#: ../../godmode/modules/manage_network_templates.php:83 +msgid "Template successfully deleted" +msgstr "Plantilla borrada correctamente" + +#: ../../enterprise/include/class/NetworkConfigManager.class.php:2256 +msgid "Template successfully duplicated" +msgstr "Plantilla duplicada correctamente" + +#: ../../enterprise/include/class/NetworkConfigManager.class.php:2279 +#, php-format +msgid "Model not found: %s" +msgstr "Modelo no encontrado: %s" + +#: ../../enterprise/include/class/NetworkConfigManager.class.php:2291 +msgid "Model successfully deleted" +msgstr "Modelo eliminado correctamente" + +#: ../../enterprise/include/class/NetworkConfigManager.class.php:2326 +msgid "Vendor successfully deleted" +msgstr "Fabriante eliminado correctamente" + +#: ../../enterprise/include/class/NetworkConfigManager.class.php:2349 +#, php-format +msgid "Snippet not found: %s" +msgstr "Snippet no encontrado: %s" + +#: ../../enterprise/include/class/NetworkConfigManager.class.php:2361 +msgid "Snippet successfully deleted" +msgstr "Snippet eliminado correctamente" + +#: ../../enterprise/include/class/NetworkConfigManager.class.php:2384 +#, php-format +msgid "Firmware not found: %s" +msgstr "Firmware no encontrado: %s" + +#: ../../enterprise/include/class/NetworkConfigManager.class.php:2396 +msgid "Firmware successfully deleted" +msgstr "Firmware eliminado correctamente" + +#: ../../enterprise/include/class/NetworkConfigManager.class.php:2475 +msgid "Not executed yet, no content to display, define your own in following textarea." +msgstr "" +"AĆŗn no se ha ejecutado, no hay contenido que mostrar, defina el suyo propio en el " +"siguiente Ć”rea de texto." + +#: ../../enterprise/include/class/NetworkConfigManager.class.php:2484 +msgid "" +"Following content is already queued to be executed! You must wait until execution is " +"finished before being able to modify this." +msgstr "" +"Ā”El siguiente contenido ya estĆ” en cola para ser ejecutado! Debe esperar hasta que " +"finalice la ejecuciĆ³n antes de poder modificarla." + +#: ../../enterprise/include/class/NetworkConfigManager.class.php:2576 +msgid "Check progress" +msgstr "Comprobar el progreso" + +#: ../../enterprise/include/class/NetworkConfigManager.class.php:2585 +#, php-format +msgid "Script scheduled %s %s" +msgstr "Script programado %s %s" + +#: ../../enterprise/include/class/NetworkConfigManager.class.php:2643 +#, php-format +msgid "Error retrieving template: %s" +msgstr "Error al recuperar la plantilla: %s" + +#: ../../enterprise/include/class/NetworkConfigManager.class.php:2649 +msgid "you must select a template" +msgstr "Debe seleccionar una plantilla" + +#: ../../enterprise/include/class/NetworkConfigManager.class.php:2651 +msgid "you must select a valid model" +msgstr "Debe seleccionar un modelo vĆ”lido" + +#: ../../enterprise/include/class/NetworkConfigManager.class.php:2655 +msgid "you must select a valid port" +msgstr "Debe seleccionar un puerto vĆ”lido" + +#: ../../enterprise/include/class/NetworkConfigManager.class.php:2689 +#, php-format +msgid "Failed to update%s" +msgstr "No se pudo actualizar %s" + +#: ../../enterprise/include/class/NetworkConfigManager.class.php:2721 +msgid "No configuration registers to backup" +msgstr "No hay registros de configuraciĆ³n para realizar copias de seguridad" + +#: ../../enterprise/include/class/NetworkConfigManager.class.php:2729 +#: ../../enterprise/include/class/NetworkConfigManager.class.php:2745 +msgid "Successfully backed up" +msgstr "Copia de copia de ha realizada" + +#: ../../enterprise/include/class/NetworkConfigManager.class.php:2780 +msgid "Invalid id given" +msgstr "ID no vĆ”lido" + +#: ../../enterprise/include/class/NetworkConfigManager.class.php:2815 +msgid "" +"Is highly recommendable to execute this kind of operation from agent details to " +"preview the script content" +msgstr "" +"Es muy recomendable ejecutar este tipo de operaciĆ³n desde los detalles del agente " +"para obtener una vista previa del contenido del script" + +#: ../../enterprise/include/class/NetworkConfigManager.class.php:2824 +msgid "This operation is not ready yet! Keep up to date with latest updates" +msgstr "" +"Ā”Esta operaciĆ³n aĆŗn no estĆ” lista! MantĆ©ngase al dĆ­a con las Ćŗltimas actualizaciones" + +#: ../../enterprise/include/class/NetworkConfigManager.class.php:2833 +msgid "Invalid action" +msgstr "AcciĆ³n no vĆ”lida" + +#: ../../enterprise/include/class/NetworkConfigManager.class.php:2853 +msgid "Failed to schedule action." +msgstr "Error al programar la acciĆ³n." + +#: ../../enterprise/include/class/AgentRepository.class.php:346 +msgid "Time in seconds before deployment is cancelled." +msgstr "Tiempo en segundos antes de que se cancele la implementaciĆ³n." + +#: ../../enterprise/include/class/AgentRepository.class.php:385 +msgid "Transfer timeout" +msgstr "Tiempo de espera de transferencia" + +#: ../../enterprise/include/class/AgentRepository.class.php:393 +msgid "Installation file" +msgstr "Archivo de instalaciĆ³n" + +#: ../../enterprise/include/class/AgentRepository.class.php:433 +msgid "Agent version is required" +msgstr "Se requiere versiĆ³n de agente" + +#: ../../enterprise/include/class/AgentRepository.class.php:471 +#, php-format +msgid "Invalid installation file for %s" +msgstr "Archivo de instalaciĆ³n para %s no vĆ”lido" + +#: ../../enterprise/include/class/AgentRepository.class.php:500 +msgid "Installation files not modified" +msgstr "Archivos de instalaciĆ³n no modificados" + +#: ../../enterprise/include/class/AgentRepository.class.php:519 +msgid "Installation files updated" +msgstr "Archivos de instalaciĆ³n actualizados" + +#: ../../enterprise/include/class/AgentRepository.class.php:526 +msgid "You must provide installation files to create a new entry." +msgstr "AƱada archivos de instalaciĆ³n para crear una nueva entrada." + +#: ../../enterprise/include/class/AgentRepository.class.php:547 +msgid "This agent has been already defined." +msgstr "El agente ya ha sido definido." + +#: ../../enterprise/include/class/AgentRepository.class.php:563 +msgid "Agent successfully registered and uploaded" +msgstr "Agente registrado y actualizado correctamente" + +#: ../../enterprise/include/class/AgentRepository.class.php:643 +msgid "Uploaded by" +msgstr "Subido por" + +#: ../../enterprise/include/class/AgentRepository.class.php:644 +msgid "Upload date" +msgstr "Fecha de subida" + +#: ../../enterprise/include/class/AgentRepository.class.php:726 +msgid "Add new software" +msgstr "AƱadir nuevo software" + +#: ../../enterprise/include/class/AgentRepository.class.php:913 +msgid "Add new Software agent" +msgstr "AƱadir nuevo agente software" + +#: ../../enterprise/include/class/AgentRepository.class.php:916 +msgid "Update Software agent" +msgstr "Actualizar agente software" + +#: ../../enterprise/include/class/Omnishell.class.php:214 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:414 +msgid "Please follow the wizard." +msgstr "Siga las instrucciones del asistente." + +#: ../../enterprise/include/class/Omnishell.class.php:226 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:427 +msgid "You have no acess to edit this command." +msgstr "No tiene acceso para editar este comando." + +#: ../../enterprise/include/class/Omnishell.class.php:261 +msgid "Failed to save command." +msgstr "Error al guardar comando." + +#: ../../enterprise/include/class/Omnishell.class.php:272 +msgid "Command not found." +msgstr "Comando no encontrado." + +#: ../../enterprise/include/class/Omnishell.class.php:319 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:718 +#: ../../include/class/HelpFeedBack.class.php:99 +msgid "Page not found" +msgstr "PĆ”gina no encontrada" + +#: ../../enterprise/include/class/Omnishell.class.php:349 +#: ../../enterprise/include/class/Omnishell.class.php:610 +msgid "You must install php-yaml in order to use this feature." +msgstr "Instale php-yaml para usar esta funcionalidad." + +#: ../../enterprise/include/class/Omnishell.class.php:364 +msgid "Not Started" +msgstr "No iniciado" + +#: ../../enterprise/include/class/Omnishell.class.php:442 +msgid "Commands status" +msgstr "Estado de los comandos" + +#: ../../enterprise/include/class/Omnishell.class.php:487 +msgid "Create command" +msgstr "Crear comando" + +#: ../../enterprise/include/class/Omnishell.class.php:506 +msgid "Selected command definitions will be erased" +msgstr "Las definiciones de los comandos seleccionadas se eliminarĆ”n." + +#: ../../enterprise/include/class/Omnishell.class.php:688 +msgid "Time out" +msgstr "Tiempo fuera de servicio" + +#: ../../enterprise/include/class/Omnishell.class.php:697 +msgid "Retries " +msgstr "Reintentos " + +#: ../../enterprise/include/class/Omnishell.class.php:708 +msgid "Preconditions " +msgstr "Condiciones previas " + +#: ../../enterprise/include/class/Omnishell.class.php:709 +msgid "All commands defined line per line must success to execute main commands" +msgstr "" +"Todos los comandos definidos en cada lĆ­nea deben ser correctos para ejecutar los " +"comandos principales" + +#: ../../enterprise/include/class/Omnishell.class.php:721 +msgid "Execute commands " +msgstr "Ejecutar comandos " + +#: ../../enterprise/include/class/Omnishell.class.php:722 +msgid "Define as many lines as commands you want to execute" +msgstr "Definir tantas lĆ­neas como comandos desee ejecutar" + +#: ../../enterprise/include/class/Omnishell.class.php:734 +msgid "Postconditions " +msgstr "Condiciones posteriores " + +#: ../../enterprise/include/class/Omnishell.class.php:735 +msgid "All commands defined line per line must success to consider command success" +msgstr "" +"Todos los comandos definidos en cada lĆ­nea deben ser correctos para que el comando se " +"considere correcto" + +#: ../../enterprise/include/class/Omnishell.class.php:835 +#: ../../godmode/agentes/planned_downtime.editor.php:805 +msgid "Available agents" +msgstr "Agentes disponibles" + +#: ../../enterprise/include/class/Omnishell.class.php:880 +msgid "Remove agents" +msgstr "Eliminar agentes" + +#: ../../enterprise/include/class/Omnishell.class.php:1157 +msgid "Selected command definition will be erased" +msgstr "La definiciĆ³n de comando seleccionada se eliminarĆ”" + +#: ../../enterprise/include/class/Omnishell.class.php:1243 +msgid "Command viewer" +msgstr "Visor de comandos" + +#: ../../enterprise/include/class/Omnishell.class.php:1251 +msgid "Detailed view" +msgstr "Vista detallada" + +#: ../../enterprise/include/class/Omnishell.class.php:1392 +msgid "Not an array of ids" +msgstr "No un conjunto de IDs" + +#: ../../enterprise/include/class/Omnishell.class.php:1450 +msgid "There are no targets for this remote command" +msgstr "No hay objetivos para este comando remoto" + +#: ../../enterprise/include/class/Omnishell.class.php:1457 +msgid "Command does not exist" +msgstr "El comando no existe" + +#: ../../enterprise/include/class/Omnishell.class.php:1556 +msgid "timed out" +msgstr "tiempo de espera agotado" + +#: ../../enterprise/include/class/Omnishell.class.php:1559 +msgid "failed" +msgstr "error" + +#: ../../enterprise/include/class/Omnishell.class.php:1575 +msgid "Waiting results..." +msgstr "Esperando resultados..." + +#: ../../enterprise/include/class/Omnishell.class.php:1594 +msgid "RCMD does not exist" +msgstr "RCMD no existe" + +#: ../../enterprise/include/class/LogSource.class.php:455 +msgid "Source is required" +msgstr "Fuente requerida" + +#: ../../enterprise/include/class/LogSource.class.php:562 +msgid "id cannot be empty" +msgstr "El Id no puede estar vacĆ­o" + +#: ../../enterprise/include/class/LogSource.class.php:567 +#: ../../include/class/CredentialStore.class.php:747 +msgid "Not allowed" +msgstr "No permitido" + +#: ../../enterprise/include/class/LogSource.class.php:611 +#: ../../include/class/CredentialStore.class.php:786 +msgid "How to configure encryption." +msgstr "Como configurar el cifrado." + +#: ../../enterprise/include/class/LogSource.class.php:610 +#, php-format +msgid "Log monitoring is disabled. %s" +msgstr "La monitorizaciĆ³n de logs estĆ” desactivada. %s" + +#: ../../enterprise/include/class/LogSource.class.php:680 +#: ../../enterprise/include/class/LogSource.class.php:846 +msgid "Add log source" +msgstr "AƱadir fuente de logs" + +#: ../../enterprise/include/class/LogSource.class.php:715 +msgid "Source name" +msgstr "Nombre de la fuente" + +#: ../../enterprise/include/class/LogSource.class.php:850 +msgid "Update log source" +msgstr "Actualizar fuente del log" + +#: ../../enterprise/include/class/DB2.app.php:165 +msgid "" +"This DB2 configuration has been already defined. Please edit it or create a new one." +msgstr "Esta configuraciĆ³n DB2 ya se ha definido. Edite o cree una nueva." + +#: ../../enterprise/include/class/DB2.app.php:207 +msgid "You must provide a valid DB2 server IP or FQDN." +msgstr "Debe proveer una IP de servidor DB2 vĆ”lida o FQDN." + +#: ../../enterprise/include/class/DB2.app.php:219 +msgid "Discovery.Application.DB2" +msgstr "Discovery.AplicaciĆ³n.DB2" + +#: ../../enterprise/include/class/DB2.app.php:270 +msgid "Failed to find discovery DB2 task." +msgstr "No se ha podido encontrar la tarea DB2 de discovery." + +#: ../../enterprise/include/class/DB2.app.php:486 +msgid "DB2 target strings" +msgstr "Cadenas objetivo de DB2" + +#: ../../enterprise/include/class/DB2.app.php:487 +msgid "" +"SERVER:PORT/DATABASE, comma separated or line by line, as many targets as you need." +msgstr "" +"SERVIDOR:PUERTO/BASE DE DATOS, separados por coma o lĆ­nea por lĆ­nea, tantos objetivos " +"como desee." + +#: ../../enterprise/include/class/DB2.app.php:487 +#: ../../enterprise/include/class/Oracle.app.php:494 +#: ../../enterprise/include/class/MicrosoftSQLServer.app.php:488 +msgid "Use # symbol to comment a line." +msgstr "Use el sĆ­mbolo # para comentar una lĆ­nea." + +#: ../../enterprise/include/class/DB2.app.php:634 +#: ../../enterprise/include/class/MySQL.app.php:656 +#: ../../enterprise/include/class/Oracle.app.php:641 +#: ../../enterprise/include/class/MicrosoftSQLServer.app.php:635 +msgid "Target agent" +msgstr "Agente objetivo" + +#: ../../enterprise/include/class/DB2.app.php:635 +#: ../../enterprise/include/class/Oracle.app.php:642 +#: ../../enterprise/include/class/MicrosoftSQLServer.app.php:636 +msgid "" +"Defines a target agent where this task will store data detected, if you have defined " +"multiple targets, define a comma separated list of names here or leave in blank to " +"use target as name." +msgstr "" +"Define un objetivo de agente donde la tarea almacenarĆ” los datos detectados. Si ha " +"definido varios objetivos, defina una lista de nombres separados por coma o dĆ©jelo en " +"blanco para usar el objetivo como nombre." + +#: ../../enterprise/include/class/DB2.app.php:654 +#: ../../enterprise/include/class/MySQL.app.php:676 +#: ../../enterprise/include/class/Oracle.app.php:661 +#: ../../enterprise/include/class/MicrosoftSQLServer.app.php:655 +msgid "Custom module prefix" +msgstr "Prefijo de mĆ³dulo personalizado" + +#: ../../enterprise/include/class/DB2.app.php:655 +#: ../../enterprise/include/class/MySQL.app.php:677 +#: ../../enterprise/include/class/Oracle.app.php:662 +#: ../../enterprise/include/class/MicrosoftSQLServer.app.php:656 +msgid "" +"Defines a custom prefix to be concatenated before module names generated by this task." +msgstr "" +"Define un prefijo personalizado para concatenar antes de los nombres de mĆ³dulos " +"generados por esta tarea." + +#: ../../enterprise/include/class/DB2.app.php:673 +msgid "Get database summary" +msgstr "Obtener resumen de base de datos" + +#: ../../enterprise/include/class/DB2.app.php:689 +msgid "Check transactional log utilization" +msgstr "Comprobar uso de logs transaccionales" + +#: ../../enterprise/include/class/DB2.app.php:705 +msgid "Get number of connections" +msgstr "Obtener nĆŗmero de conexiones" + +#: ../../enterprise/include/class/DB2.app.php:721 +msgid "Check DB size" +msgstr "Comprobar tamaƱo de la base de datos" + +#: ../../enterprise/include/class/DB2.app.php:737 +#: ../../enterprise/include/class/MySQL.app.php:821 +#: ../../enterprise/include/class/Oracle.app.php:760 +msgid "Retrieve cache statistics" +msgstr "Obtener estadĆ­sticas de bases de datos" + +#: ../../enterprise/include/class/DB2.app.php:753 +#: ../../enterprise/include/class/MySQL.app.php:837 +#: ../../enterprise/include/class/Oracle.app.php:776 +#: ../../enterprise/include/class/MicrosoftSQLServer.app.php:722 +msgid "Execute custom queries" +msgstr "Ejecutar consultas personalizadas" + +#: ../../enterprise/include/class/DB2.app.php:821 +#: ../../enterprise/include/class/MySQL.app.php:889 +#: ../../enterprise/include/class/Oracle.app.php:930 +#: ../../enterprise/include/class/MicrosoftSQLServer.app.php:774 +msgid "Custom queries" +msgstr "Consultas personalizadas" + +#: ../../enterprise/include/class/DB2.app.php:822 +#: ../../enterprise/include/class/MySQL.app.php:890 +#: ../../enterprise/include/class/Oracle.app.php:931 +#: ../../enterprise/include/class/MicrosoftSQLServer.app.php:775 +msgid "Define here your custom queries." +msgstr "Defina aquĆ­ sus consultas personalizadas." + +#: ../../enterprise/include/class/Aws.S3.php:60 +msgid "Aws S3" +msgstr "Aws S3" + +#: ../../enterprise/include/class/Aws.S3.php:166 +#: ../../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." + +#: ../../enterprise/include/class/Aws.S3.php:214 +msgid "You must select something." +msgstr "Debe seleccionar algo." + +#: ../../enterprise/include/class/Aws.S3.php:236 +msgid "Discovery.Cloud.AWS.S3" +msgstr "Discovery.Cloud.AWS.S3" + +#: ../../enterprise/include/class/Aws.S3.php:294 +msgid "Unknown task" +msgstr "Tarea desconocida" + +#: ../../enterprise/include/class/Aws.S3.php:313 +msgid "Unknown section." +msgstr "SecciĆ³n desconocida." + +#: ../../enterprise/include/class/Aws.S3.php:339 +msgid "S3" +msgstr "S3" + +#: ../../enterprise/include/class/Aws.S3.php:344 +msgid "Bucket monitoring" +msgstr "MonitorizaciĆ³n de buckets." + +#: ../../enterprise/include/class/Aws.S3.php:454 +msgid "No buckets found." +msgstr "No se han encontrado buckets." + +#: ../../enterprise/include/class/Aws.S3.php:598 +msgid "Select Buckets to be monitored" +msgstr "Seleccionar buckets a monitorizar" + +#: ../../enterprise/include/class/Aws.S3.php:633 +msgid "Monitor bucket size" +msgstr "Monitorizar tamaƱo de bucket" + +#: ../../enterprise/include/class/Aws.S3.php:643 +msgid "Monitor bucket total items" +msgstr "Monitorizar elementos totales de bucket" + +#: ../../enterprise/include/class/CSVImportAgents.class.php:121 +msgid "The CSV file must have the fields in the following order:" +msgstr "El archivo CSV debe tener los campos en el siguiente orden:" + +#: ../../enterprise/include/class/CSVImportAgents.class.php:122 +msgid "Agent alias, IP address, OS id, Interval, Group id, Description" +msgstr "Alias de agente, direcciĆ³n IP, ID del SO, Intervalo, ID de grupo, DescripciĆ³n" + +#: ../../enterprise/include/class/CSVImportAgents.class.php:127 +msgid "" +"Warning, this CSV importer will not perform any discovery, it will only create empty " +"agents with the name, IP, OS type, description and group provided in the CSV." +msgstr "" +"Advertencia, este importador CSV no realizarĆ” ningĆŗn descubrimiento, solo crearĆ” " +"agentes vacĆ­os con el nombre, IP, tipo de sistema operativo, descripciĆ³n y grupo " +"proporcionados en el CSV." + +#: ../../enterprise/include/class/CSVImportAgents.class.php:179 +msgid "Alias as name" +msgstr "Alias como nombre" + +#: ../../enterprise/include/class/CSVImportAgents.class.php:244 +msgid "No data or wrong separator" +msgstr "No hay datos o separador incorrecto" + +#: ../../enterprise/include/class/CSVImportAgents.class.php:250 +#, php-format +msgid "Agent %s duplicated." +msgstr "Agente %s duplicado" + +#: ../../enterprise/include/class/CSVImportAgents.class.php:257 +#, php-format +msgid "Id group %s doesn't exist in %s" +msgstr "El ID de grupo %s no existe en %s" + +#: ../../enterprise/include/class/CSVImportAgents.class.php:265 +msgid "General failure." +msgstr "Fallo general." + +#: ../../enterprise/include/class/CSVImportAgents.class.php:286 +msgid "No input file detected" +msgstr "N se ha detectado archivo de entrada" + +#: ../../enterprise/include/class/CSVImportAgents.class.php:375 +msgid "Agent processed successfully" +msgstr "Agente procesado correctamente" + +#: ../../enterprise/include/class/CSVImportAgents.class.php:381 +msgid "Some errors while processing CSV." +msgstr "Algunos errores al procesar CSV." + +#: ../../enterprise/include/class/CSVImportAgents.class.php:384 +msgid "All agents processed correctly" +msgstr "Todos los agentes procesados correctamente" + +#: ../../enterprise/include/class/CSVImportAgents.class.php:391 +#, php-format +msgid "Line %s" +msgstr "LĆ­nea %s" + +#: ../../enterprise/include/class/SAPView.class.php:146 +#: ../../enterprise/include/class/SAPView.class.php:190 +msgid "SAP View" +msgstr "Vista SAP" + +#: ../../enterprise/include/class/SAPView.class.php:164 +msgid "SAP data not found." +msgstr "Datos SAP no encontrados." + +#: ../../enterprise/include/class/SAPView.class.php:258 +msgid "Refresh Every" +msgstr "Refrescar cada" + +#: ../../enterprise/include/class/SAPView.class.php:295 +msgid "Graph Interval" +msgstr "Intervalo de grĆ”fica" + +#: ../../enterprise/include/class/SAPView.class.php:626 +msgid "" +"SAP view offers you to see the most important modules Discovery Server is usually " +"configured to retry. You have not configured a Discovery SAP R3 task yet, please visit" +msgstr "" +"La vista SAP le ofrece los mĆ³dulos mĆ”s importantes. El servidor Discovery normalmente " +"estĆ” configurado para hacer reintentos. Si aĆŗn no ha configurado la tarea Discovery " +"SAP R3, visite" + +#: ../../enterprise/include/class/SAPView.class.php:626 +msgid "to start monitoring your SAP infrastructure." +msgstr "para comenzar a monitorizar su infraestructura SAP" + +#: ../../enterprise/include/class/SAPView.class.php:633 +msgid "Discover SAP" +msgstr "Descubrir SAP" + +#: ../../enterprise/include/class/SAP.app.php:154 +msgid "" +"This SAP configuration has been already defined. Please edit it or create a new one." +msgstr "Ya se ha definido esta configuraciĆ³n SAP. EdĆ­tela o cree una nueva." + +#: ../../enterprise/include/class/SAP.app.php:195 +msgid "You must specify at last one SAP hostname." +msgstr "Especifique al menos un nombre de host SAP." + +#: ../../enterprise/include/class/SAP.app.php:206 +msgid "Discovery.Application.SAP" +msgstr "Discovery.Application.SAP" + +#: ../../enterprise/include/class/SAP.app.php:262 +msgid "Failed to find discovery SAP task." +msgstr "No se ha encontrado la tarea de discovery SAP." + +#: ../../enterprise/include/class/SAP.app.php:286 +msgid "Select at least a module." +msgstr "Seleccione al menos un mĆ³dulo." + +#: ../../enterprise/include/class/SAP.app.php:354 +msgid "SAP R3" +msgstr "SAP R3" + +#: ../../enterprise/include/class/SAP.app.php:547 +msgid "SAP Hostname" +msgstr "Nombre del host SAP" + +#: ../../enterprise/include/class/SAP.app.php:571 +msgid "SAP Client" +msgstr "Cliente SAP" + +#: ../../enterprise/include/class/SAP.app.php:585 +msgid "SAP System Number" +msgstr "NĆŗmero del sistema SAP" + +#: ../../enterprise/include/class/SAP.app.php:617 +#: ../../enterprise/include/class/SAP.app.php:631 +msgid "SAP Credentials" +msgstr "Credenciales SAP" + +#: ../../enterprise/include/class/SAP.app.php:617 +#: ../../enterprise/include/class/SAP.app.php:631 +msgid "Optional" +msgstr "Opcional" + +#: ../../enterprise/include/class/SAP.app.php:727 +#: ../../include/functions_agents.php:4000 +msgid "SAP Login OK" +msgstr "Inicio de sesiĆ³n SAP correcto" + +#: ../../enterprise/include/class/SAP.app.php:728 +#: ../../include/functions_agents.php:4001 +msgid "SAP Dumps" +msgstr "Volcados SAP" + +#: ../../enterprise/include/class/SAP.app.php:729 +#: ../../include/functions_agents.php:4002 +msgid "SAP lock entry list" +msgstr "Lista de entradas de bloqueo SAP" + +#: ../../enterprise/include/class/SAP.app.php:730 +#: ../../include/functions_agents.php:4003 +msgid "SAP canceled Jobs" +msgstr "Trabajos SAP cancelados" + +#: ../../enterprise/include/class/SAP.app.php:731 +#: ../../include/functions_agents.php:4004 +msgid "SAP Batch inputs erroneous" +msgstr "Entradas SAP en grupo errĆ³neas" + +#: ../../enterprise/include/class/SAP.app.php:732 +#: ../../include/functions_agents.php:4005 +msgid "SAP IDOC erroneous" +msgstr "SAP IDOC errĆ³neo" + +#: ../../enterprise/include/class/SAP.app.php:733 +#: ../../include/functions_agents.php:4006 +msgid "SAP IDOC OK" +msgstr "SAP IDOC OK" + +#: ../../enterprise/include/class/SAP.app.php:734 +#: ../../include/functions_agents.php:4007 +msgid "SAP WP without active restart" +msgstr "WP SAP sin reinicio activo" + +#: ../../enterprise/include/class/SAP.app.php:735 +#: ../../include/functions_agents.php:4008 +msgid "SAP WP stopped" +msgstr "WP SAP parado" + +#: ../../enterprise/include/class/SAP.app.php:736 +#: ../../include/functions_agents.php:4009 +msgid "Average time of SAPGUI response" +msgstr "Media de tiempo de respuesta de SAPGUI" + +#: ../../enterprise/include/class/SAP.app.php:737 +#: ../../include/functions_agents.php:4011 +msgid "Dialog Logged users" +msgstr "Usuarios conectados en el diĆ”logo" + +#: ../../enterprise/include/class/SAP.app.php:738 +#: ../../include/functions_agents.php:4012 +msgid "TRFC in error" +msgstr "TRFC en error" + +#: ../../enterprise/include/class/SAP.app.php:739 +#: ../../include/functions_agents.php:4013 +msgid "QRFC in error SMQ2" +msgstr "QRFC en error SMQ2" + +#: ../../enterprise/include/class/SAP.app.php:740 +#: ../../include/functions_agents.php:4014 +msgid "Number of Update WPs in error" +msgstr "NĆŗmero de WPs de actualizaciĆ³n en error" + +#: ../../enterprise/include/class/SAP.app.php:764 +#, php-format +msgid "" +"Module 180 must be customized before being used, please use advanced options to " +"define the module following the documentation:
%s" +msgstr "" +"El mĆ³dulo 180 debe personalizarse antes de usarse, use las opciones avanzadas para " +"definir el mĆ³dulo siguiendo la documentaciĆ³n:
%s" + +#: ../../enterprise/include/class/SAP.app.php:785 +msgid "Available modules" +msgstr "MĆ³dulos disponibles" + +#: ../../enterprise/include/class/SAP.app.php:821 +msgid "Add monitors" +msgstr "AƱadir monitores" + +#: ../../enterprise/include/class/SAP.app.php:834 +msgid "Remove monitors" +msgstr "Eliminar monitores" + +#: ../../enterprise/include/class/SAP.app.php:885 +msgid "Define your custom SAP modules." +msgstr "Defina sus mĆ³dulos SAP personalizados." + +#: ../../enterprise/include/class/SAP.app.php:884 +msgid "Advanced module configuration" +msgstr "ConfiguraciĆ³n de mĆ³dulos avanzada" + +#: ../../enterprise/include/class/SAP.app.php:894 +msgid "Custom module definitions" +msgstr "Definiciones de mĆ³dulos personalizadas" + +#: ../../enterprise/include/class/SAP.app.php:895 +msgid "" +"Each line is a module definition using following format: module name ; module_type ; " +"SAP check definition." +msgstr "" +"Cada lĆ­nea es una definiciĆ³n de mĆ³dulo con el siguiente formato: nombre del mĆ³dulo ; " +"tipo_de_mĆ³dulo ; definiciĆ³n de comprobaciĆ³n SAP." + +#: ../../enterprise/include/class/Aws.cloud.php:118 +#: ../../include/class/CredentialStore.class.php:946 +msgid "Aws" +msgstr "Aws" + +#: ../../enterprise/include/class/Aws.cloud.php:343 +msgid "Recon" +msgstr "Reconocimento" + +#: ../../enterprise/include/class/Aws.cloud.php:344 +msgid "Costs" +msgstr "Costes" + +#: ../../enterprise/include/class/Aws.cloud.php:346 +msgid "Instances" +msgstr "Instancias" + +#: ../../enterprise/include/class/Aws.cloud.php:441 +msgid "Amazon EC2" +msgstr "Amazon EC2" + +#: ../../enterprise/include/class/Aws.cloud.php:446 +msgid "Amazon RDS" +msgstr "Amazon RDS" + +#: ../../enterprise/include/class/Aws.cloud.php:451 +msgid "S3 Buckets" +msgstr "S3 Buckets" + +#: ../../enterprise/include/class/Aws.cloud.php:471 +#: ../../godmode/wizards/HostDevices.class.php:696 +msgid "NetScan" +msgstr "NetScan" + +#: ../../enterprise/include/class/Aws.cloud.php:510 +msgid "Discovery task name" +msgstr "Nombre de la tarea de discovery" + +#: ../../enterprise/include/class/Aws.cloud.php:614 +msgid "Total cost" +msgstr "Coste total" + +#: ../../enterprise/include/class/Aws.cloud.php:631 +msgid "Cost by region" +msgstr "Coste por regiĆ³n" + +#: ../../enterprise/include/class/Aws.cloud.php:645 +msgid "Cost interval" +msgstr "Intervalo de coste" + +#: ../../enterprise/include/class/Aws.cloud.php:773 +msgid "Select EC2 instances" +msgstr "Seleccionar instancias EC2" + +#: ../../enterprise/include/class/Aws.cloud.php:789 +msgid "Storage" +msgstr "Almacenamiento" + +#: ../../enterprise/include/class/Aws.cloud.php:799 +msgid "Elastic IP Adresses" +msgstr "Direcciones IP elĆ”sticas" + +#: ../../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:987 +msgid "" +"You cannot monitor RDS instances from different types. Please define several tasks " +"for several types." +msgstr "" +"No puede monitorizar las instancias RDS desde diferentes tipos. Defina varias tareas " +"para diferentes tipos." + +#: ../../enterprise/include/class/Aws.cloud.php:994 +msgid "Discovery.Cloud.AWS.RDS" +msgstr "Discovery.Cloud.AWS.RDS" + +#: ../../enterprise/include/class/Aws.cloud.php:1160 +msgid "RDS" +msgstr "RDS" + +#: ../../enterprise/include/class/Aws.cloud.php:1165 +msgid "DB monitoring" +msgstr "MonitorizaciĆ³n de base de datos" + +#: ../../enterprise/include/class/Aws.cloud.php:1175 +msgid "AWS RDS" +msgstr "AWS RDS" + +#: ../../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:1259 +msgid "Global DB password" +msgstr "ContraseƱa de la base de datos global" + +#: ../../enterprise/include/class/Aws.cloud.php:1349 +msgid "Select RDS instances" +msgstr "Seleccionar instancias RDS" + +#: ../../enterprise/include/class/Aws.cloud.php:1652 +msgid "Invalid group" +msgstr "Grupo no vĆ”lido" + +#: ../../enterprise/include/class/Aws.cloud.php:1710 +msgid "Cannot update the recon database" +msgstr "No se ha podido actualizar la base de datos de reconocimiento" + +#: ../../enterprise/include/class/Aws.cloud.php:1732 +msgid "Engine not supported" +msgstr "Motor no compatible" + +#: ../../enterprise/include/class/MySQL.app.php:173 +msgid "" +"This MySQL configuration has been already defined. Please edit it or create a new one." +msgstr "Ya se ha definido esta configuraciĆ³n MySQL. EdĆ­tela o cree una nueva." + +#: ../../enterprise/include/class/MySQL.app.php:216 +msgid "You must provide a valid MySQL server IP or FQDN." +msgstr "AƱada una IP de servidor MySQL vĆ”lida o FQDN." + +#: ../../enterprise/include/class/MySQL.app.php:221 +msgid "You must provide a valid port number." +msgstr "AƱada un nĆŗmero de puerto vĆ”lido." + +#: ../../enterprise/include/class/MySQL.app.php:233 +msgid "Discovery.Application.MySQL" +msgstr "Discovery.Application.MySQL" + +#: ../../enterprise/include/class/MySQL.app.php:285 +msgid "Failed to find discovery MySQL task." +msgstr "No se ha encontrado la tarea discovery MySQL." + +#: ../../enterprise/include/class/MySQL.app.php:491 +msgid "MySQL server IP" +msgstr "IP del servidor MySQL" + +#: ../../enterprise/include/class/MySQL.app.php:492 +msgid "Comma separated, as many targets as you need." +msgstr "Tantos objetivos como desee, separados por comas." + +#: ../../enterprise/include/class/MySQL.app.php:511 +msgid "MySQL server Port" +msgstr "Puerto del servidor MySQL" + +#: ../../enterprise/include/class/MySQL.app.php:657 +msgid "" +"Defines a target agent where this task will store data detected, if you have defined " +"multiple targets, define a comma separated list of names here or leave in blank to " +"use server IP address/ FQDN." +msgstr "" +"Define un agente de destino donde la tarea almacenarĆ” los datos detectados. Si tiene " +"varios objetivos definidos, defina una lista de nombres separados por coma aquĆ­ o " +"dĆ©jelo en blanco para usar la direcciĆ³n IP/FQDN del servidor." + +#: ../../enterprise/include/class/MySQL.app.php:698 +msgid "Scan databases" +msgstr "Bases de datos de escaneo" + +#: ../../enterprise/include/class/MySQL.app.php:714 +msgid "Create agent per database" +msgstr "Crear agente por base de datos" + +#: ../../enterprise/include/class/MySQL.app.php:735 +msgid "Custom database agent prefix" +msgstr "Prefijo de agente de base de datos personalizado" + +#: ../../enterprise/include/class/MySQL.app.php:736 +msgid "" +"Defines a custom prefix to be concatenated before database agent names generated by " +"this task." +msgstr "" +"Define un prefijo personalizado a concatenar antes de los nombres de agentes de base " +"de datos generados por esta tarea." + +#: ../../enterprise/include/class/MySQL.app.php:757 +#: ../../enterprise/include/class/Oracle.app.php:680 +#: ../../enterprise/include/class/MicrosoftSQLServer.app.php:674 +msgid "Check engine uptime" +msgstr "Comprobar disponibilidad del motor" + +#: ../../enterprise/include/class/MySQL.app.php:773 +#: ../../enterprise/include/class/Oracle.app.php:696 +#: ../../enterprise/include/class/MicrosoftSQLServer.app.php:690 +msgid "Retrieve query statistics" +msgstr "Obtener estadĆ­sticas de consultas" + +#: ../../enterprise/include/class/MySQL.app.php:789 +#: ../../enterprise/include/class/Oracle.app.php:712 +#: ../../enterprise/include/class/MicrosoftSQLServer.app.php:706 +msgid "Analyze connections" +msgstr "Analizar conexiones" + +#: ../../enterprise/include/class/MySQL.app.php:805 +msgid "Retrieve InnoDB statistics" +msgstr "Obtener estadĆ­sticas InnoDB" + +#: ../../enterprise/include/class/Google.cloud.php:147 +#: ../../include/class/CredentialStore.class.php:949 +msgid "Google" +msgstr "Google" + +#: ../../enterprise/include/class/Google.cloud.php:301 +msgid "Compute Engine" +msgstr "Compute Engine" + +#: ../../enterprise/include/class/Google.cloud.php:877 +msgid "This options only applies to zone (region) agents." +msgstr "Esta opciĆ³n solo aplica a los agentes de la zona (regiĆ³n)." + +#: ../../enterprise/include/class/Google.cloud.php:890 +msgid "Scan and general monitoring" +msgstr "Escanear y monitorizaciĆ³n general" + +#: ../../enterprise/include/class/Google.cloud.php:903 +msgid "CPU performance summary" +msgstr "Resumen del funcionamiento de la CPU" + +#: ../../enterprise/include/class/Oracle.app.php:172 +msgid "" +"This Oracle configuration has been already defined. Please edit it or create a new " +"one." +msgstr "Esta configuraciĆ³n Oracle ya se ha definido. EdĆ­tela o cree una nueva." + +#: ../../enterprise/include/class/Oracle.app.php:214 +msgid "You must provide a valid Oracle server IP or FQDN." +msgstr "AƱada una IP de servidor o FQDN de Oracle vĆ”lidos." + +#: ../../enterprise/include/class/Oracle.app.php:226 +msgid "Discovery.Application.Oracle" +msgstr "Discovery.Application.Oracle" + +#: ../../enterprise/include/class/Oracle.app.php:277 +msgid "Failed to find discovery Oracle task." +msgstr "No se ha podido encontrar la tarea discovery Oracle." + +#: ../../enterprise/include/class/Oracle.app.php:493 +msgid "Oracle target strings" +msgstr "Cadenas objetivo de Oracle" + +#: ../../enterprise/include/class/Oracle.app.php:494 +msgid "SERVER:PORT/SID, comma separated or line by line, as many targets as you need." +msgstr "" +"SERVER:PORT/SID, separados por coma o lĆ­nea por lĆ­nea, tantos objetivos como precise." + +#: ../../enterprise/include/class/Oracle.app.php:728 +msgid "Calculate fragmentation ratio" +msgstr "Calcular la tasa de fragmentaciĆ³n" + +#: ../../enterprise/include/class/Oracle.app.php:744 +msgid "Monitor tablespaces" +msgstr "Espacio de tablas del monitor" + +#: ../../enterprise/include/class/MicrosoftSQLServer.app.php:171 +msgid "" +"This Microsoft SQL Server configuration has been already defined. Please edit it or " +"create a new one." +msgstr "" +"La configuraciĆ³n del servidor Microsoft SQL ya se ha definido. Edite o cree una nueva." + +#: ../../enterprise/include/class/MicrosoftSQLServer.app.php:213 +msgid "You must provide a valid Microsoft SQL Server server IP or FQDN." +msgstr "Debe aƱadir una IP de servidor Microsoft SQL o FQDN." + +#: ../../enterprise/include/class/MicrosoftSQLServer.app.php:277 +msgid "Failed to find discovery Microsoft SQL Server task." +msgstr "" +"No se ha podido encontrar la tarea de descubrimiento del servidor Microsoft SQL." + +#: ../../enterprise/include/class/MicrosoftSQLServer.app.php:487 +msgid "Microsoft SQL Server targets" +msgstr "Objetivos del servidor Microsoft SQL" + +#: ../../enterprise/include/class/MicrosoftSQLServer.app.php:488 +msgid "" +"SERVER:PORT\\INSTANCE, comma separated or line by line, as many targets as you need." +msgstr "" +"SERVIDOR:PUERTO\\INSTANCIA, separados por coma o lĆ­nea por lĆ­nea, tantos objetivos " +"como necesite." + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:473 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:532 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:591 +msgid "Alert not found." +msgstr "Alerta no encontrada." + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:480 +msgid "Invalid json data" +msgstr "Datos json no vĆ”lidos" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:575 +msgid "Rules updated." +msgstr "Reglas actualizadas." + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:578 +msgid "JSON decoding error. Please call support." +msgstr "Error de decodificaciĆ³n JSON. PĆ³ngase en contacto con soporte." + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:630 +msgid "There was a problem creating Action. You must select an action" +msgstr "Ha habido un problema al crear la acciĆ³n. Seleccione la acciĆ³n." + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:898 +msgid "Pass" +msgstr "Pasar" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:899 +msgid "Drop" +msgstr "Soltar" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:925 +msgid "Module alert" +msgstr "Alerta de mĆ³dulos" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:945 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2021 +msgid "Load from template" +msgstr "Cargar desde la plantilla" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:962 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2241 +#: ../../godmode/alerts/configure_alert_template.php:625 +#: ../../godmode/alerts/alert_view.php:258 +msgid "Use special days list" +msgstr "Utilizar lista de dĆ­as especiales" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:979 +#: ../../godmode/alerts/configure_alert_template.php:661 +msgid "Schedule" +msgstr "Programar" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:982 +#: ../../godmode/alerts/configure_alert_template.php:665 +msgid "No alert has been scheduled yet" +msgstr "AĆŗn no se ha programado ninguna alerta" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1004 +msgid "Execute alert" +msgstr "Ejecutar alerta" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1007 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3501 +msgid "from" +msgstr "desde" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1027 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3519 +msgid "times in" +msgstr "veces en" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1037 +msgid "threshold" +msgstr "umbral" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1047 +msgid "Rule evaluation mode" +msgstr "Modo de evaluaciĆ³n de reglas" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1047 +msgid "Pass - All alerts are evaluated. Drop - It stops when 1 alert matches." +msgstr "Pass - Se analizan todas las alertas. Drop - Para cuando coincide 1 alerta." + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1064 +msgid "Grouped by" +msgstr "Agrupados por" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1203 +msgid "" +"The templates shown are only for correlative alerts, event alert (legacy) will be " +"deprecated in the future" +msgstr "" +"Las plantillas mostradas solo sirven para las alertas correlativas, la alerta de " +"eventos (heredada) se despreciarĆ” en el futuro" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1213 +msgid "Available items" +msgstr "Elementos disponibles" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1214 +msgid "Block" +msgstr "Bloquear" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1262 +#: ../../enterprise/include/lib/AlertCorrelation.class.php:1084 +msgid "Log content" +msgstr "Contenido de log" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1267 +#: ../../enterprise/include/lib/AlertCorrelation.class.php:1087 +msgid "Log source" +msgstr "Fuente de log" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1272 +#: ../../enterprise/include/lib/AlertCorrelation.class.php:1090 +msgid "Log agent" +msgstr "Agente de log" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1330 +#: ../../enterprise/include/lib/AlertCorrelation.class.php:1096 +msgid "Event content" +msgstr "Contenido de evento" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1335 +#: ../../enterprise/include/lib/AlertCorrelation.class.php:1093 +msgid "Event user comment" +msgstr "Comentario de usuario de evento" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1340 +#: ../../enterprise/include/lib/AlertCorrelation.class.php:1099 +msgid "Event agent" +msgstr "Agente de evento" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1345 +#: ../../enterprise/include/lib/AlertCorrelation.class.php:1102 +msgid "Event module" +msgstr "MĆ³dulo de evento" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1350 +#: ../../enterprise/include/lib/AlertCorrelation.class.php:1105 +msgid "Event module alerts" +msgstr "Alertas de mĆ³dulos de eventos" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1355 +#: ../../enterprise/include/lib/AlertCorrelation.class.php:1108 +msgid "Event group" +msgstr "Grupo de eventos" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1361 +msgid "Event group (recursive)" +msgstr "Recursividad del grupo de eventos" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1367 +#: ../../enterprise/include/lib/AlertCorrelation.class.php:1114 +msgid "Event severity" +msgstr "Prioridad de evento" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1372 +#: ../../enterprise/include/lib/AlertCorrelation.class.php:1117 +msgid "Event tag" +msgstr "Etiqueta de evento" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1377 +#: ../../enterprise/include/lib/AlertCorrelation.class.php:1120 +msgid "Event user" +msgstr "Usuario de evento" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1407 +msgid "Operators" +msgstr "Operadores" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1412 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1456 +#: ../../enterprise/include/lib/AlertCorrelation.class.php:1433 +msgid "greater than" +msgstr "%1$s debe ser mayor que %2$d (incluido)" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1417 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1460 +#: ../../enterprise/include/lib/AlertCorrelation.class.php:1437 +#: ../../enterprise/include/lib/AlertCorrelation.class.php:1445 +msgid "less than" +msgstr "menor que" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1422 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1464 +#: ../../enterprise/include/lib/AlertCorrelation.class.php:1441 +msgid "greater or equal than" +msgstr "Mayor o igual (>=)" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1427 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1468 +msgid "less or equal than" +msgstr "menor o igual (<=)" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1432 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1472 +#: ../../enterprise/include/lib/AlertCorrelation.class.php:1449 +msgid "is equal" +msgstr "es igual" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1437 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1476 +#: ../../enterprise/include/lib/AlertCorrelation.class.php:1453 +msgid "is different" +msgstr "es diferente " + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1442 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1480 +#: ../../enterprise/include/lib/AlertCorrelation.class.php:1457 +msgid "is like (regex)" +msgstr "es como (regex)" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1447 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1484 +#: ../../enterprise/include/lib/AlertCorrelation.class.php:1461 +msgid "is not like (regex)" +msgstr "no es como (regex)" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1517 +msgid "Modifiers" +msgstr "Modificadores" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1522 +msgid "within an interval (seconds)" +msgstr "dentro de un intervalo (segundos)" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1527 +msgid "repeated at least" +msgstr "tiene al menos" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1567 +msgid "Matches on both true" +msgstr "Coincidencias en ambos verdaderos" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1573 +msgid "Matches when any is false" +msgstr "Coincidencias cuando alguna es falsa" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1579 +msgid "Matches on any true" +msgstr "Coincidencias en cualquier verdadero" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1585 +msgid "Matches when both are false" +msgstr "Coincidencias cuando ambas son falsas" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1591 +msgid "Matches when only one is true" +msgstr "Coincidencias cuando solo una es verdadera" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1597 +msgid "Matches when both are either true or false" +msgstr "Coincidencias cuando ambas son verdaderas o falsas" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1633 +msgid "Rule definition" +msgstr "DefiniciĆ³n de reglas" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1922 +msgid "Remove rule" +msgstr "Eliminar regla" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1933 +msgid "Remove item" +msgstr "Eliminar elemento" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1954 +#: ../../operation/agentes/estado_monitores.php:602 +msgid "Reset" +msgstr "Reiniciar" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2048 +#: ../../godmode/alerts/configure_alert_template.php:897 +msgid "Alert recovery" +msgstr "RecuperaciĆ³n de alerta" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2076 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2733 +#: ../../godmode/alerts/alert_commands.php:100 +#: ../../godmode/alerts/alert_commands.php:105 +#: ../../godmode/alerts/alert_commands.php:121 +#: ../../godmode/alerts/alert_commands.php:127 +#: ../../godmode/alerts/configure_alert_template.php:928 +#: ../../godmode/alerts/alert_view.php:484 ../../godmode/alerts/alert_view.php:603 +#, php-format +msgid "Field %s" +msgstr "Campo %s" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2088 +#, php-format +msgid "Recovery Field %s" +msgstr "Campos de recuperaciĆ³n %s" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2155 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2157 +msgid "Triggering Condition" +msgstr "TĆ©rminos de disparo" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2250 +#: ../../godmode/alerts/alert_view.php:266 +msgid "Number of alerts" +msgstr "NĆŗmero de alertas" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2338 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2601 +#: ../../godmode/alerts/configure_alert_action.php:305 +#: ../../godmode/alerts/alert_view.php:403 +msgid "Firing" +msgstr "Disparado" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2453 +msgid "There are no defined actions for this alert" +msgstr "No hay acciones definidas para esta alerta" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2524 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3498 +msgid "Number of alerts match" +msgstr "NĆŗmero de coincidencias de alerta" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2602 +#: ../../godmode/alerts/alert_view.php:404 +msgid "Recovering" +msgstr "Recuperado" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2619 +msgid "Select the desired action and mode to view the Triggering fields for this action" +msgstr "" +"Seleccione la acciĆ³n y el modo deseados para ver los campos de disparo de esta acciĆ³n" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2636 +#: ../../godmode/alerts/alert_view.php:395 +msgid "Select the action" +msgstr "Seleccione la acciĆ³n" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2694 +#: ../../godmode/alerts/configure_alert_template.php:918 +#: ../../godmode/alerts/alert_view.php:435 ../../godmode/alerts/alert_view.php:569 +msgid "Firing fields" +msgstr "Campos de disparado" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2696 +#: ../../godmode/alerts/alert_view.php:437 +msgid "Fields passed to the command executed by this action when the alert is fired" +msgstr "" +"Campos pasados al comando ejecutado por esta acciĆ³n cuando la alerta es disparada" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2700 +#: ../../godmode/agentes/fields_manager.php:119 ../../godmode/alerts/alert_view.php:441 +#: ../../godmode/alerts/alert_view.php:564 ../../operation/agentes/custom_fields.php:65 +msgid "Field" +msgstr "Campo" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2702 +#: ../../godmode/alerts/alert_view.php:443 ../../godmode/alerts/alert_view.php:566 +msgid "Fields configured on the command associated to the action" +msgstr "Campos configurados en el comando asociado a la acciĆ³n" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2705 +msgid "Alerts fields" +msgstr "Campos de alertas" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2707 +msgid "Triggering fields configured in Alerts" +msgstr "Campos de disparo configurados en Alertas" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2710 +#: ../../godmode/alerts/alert_view.php:451 +msgid "Action fields" +msgstr "Campos de la acciĆ³n" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2712 +#: ../../godmode/alerts/alert_view.php:453 +msgid "Triggering fields configured in action" +msgstr "Campos de disparado configurados en la acciĆ³n" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2715 +#: ../../godmode/alerts/alert_view.php:457 +msgid "Executed on firing" +msgstr "Ejecutado en disparado" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2717 +#: ../../godmode/alerts/alert_view.php:459 ../../godmode/alerts/alert_view.php:571 +msgid "Fields used on execution when the alert is fired" +msgstr "Campos usados en la ejecuciĆ³n cuando la alerta es disparada" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2766 +msgid "Correlated alerts" +msgstr "Alertas correladas" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2790 +msgid "Alert succesfully deleted" +msgstr "Alerta eliminada correctamente" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2799 +msgid "Alerts validated" +msgstr "Alerta validada" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2802 +msgid "Failed to process validation" +msgstr "No se ha podido efectuar la validaciĆ³n" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2947 +msgid "Matched" +msgstr "Coincidencias" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2948 +#: ../../godmode/alerts/alert_list.list.php:147 ../../mobile/operation/alerts.php:66 +#: ../../include/functions_reporting_html.php:2375 +#: ../../include/functions_reporting_html.php:3229 +#: ../../include/functions_reporting_html.php:3230 +#: ../../operation/agentes/alerts_status.functions.php:97 +#: ../../operation/snmpconsole/snmp_view.php:229 +#: ../../operation/snmpconsole/snmp_view.php:1254 +msgid "Fired" +msgstr "Disparada" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2970 +#: ../../enterprise/include/class/CommandCenter.class.php:329 +msgid "Sort elements" +msgstr "Clasificar elementos" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3015 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3401 +msgid "No associated actions" +msgstr "No hay acciones asociadas" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3049 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3065 +msgid "Add Actions" +msgstr "AƱadir acciones" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3120 +msgid "There are no defined correlated alerts" +msgstr "No hay alertas correlacionadas definidas" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3256 +msgid "Are you sure you want to disable the alert" +msgstr "ĀæEstĆ” seguro de que quiere desactivar la alerta?" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3263 +msgid "Are you sure you want to enable the alert" +msgstr "ĀæEstĆ” seguro de que quiere activar la alerta?" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3270 +msgid "Disabled Alert" +msgstr "Alerta desactivada" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3311 +#: ../../godmode/alerts/alert_list.list.php:154 ../../mobile/operation/alerts.php:74 +#: ../../operation/agentes/alerts_status.functions.php:103 +msgid "Standby off" +msgstr "Modo standby desactivado" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3312 +msgid "Are you sure you want to standby the alert" +msgstr "ĀæEstĆ” seguro de que quiere poner la alerta en suspensiĆ³n?" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3317 +#: ../../enterprise/operation/agentes/policy_view.php:292 +#: ../../godmode/alerts/alert_list.list.php:153 ../../mobile/operation/alerts.php:73 +#: ../../include/functions_ui.php:1155 +#: ../../operation/agentes/alerts_status.functions.php:102 +msgid "Standby on" +msgstr "Modo standby activado" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3319 +msgid "Are you sure you want to activate the alert" +msgstr "ĀæEstĆ” seguro de que quiere activar la alerta?" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3327 +msgid "Standby Alert" +msgstr "Alerta en suspensiĆ³n" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3399 +msgid "Delete Actions" +msgstr "Eliminar acciones" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3578 +msgid "Successfully added action" +msgstr "AcciĆ³n aƱadida correctamente" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3616 +msgid "Successfully delete action" +msgstr "AcciĆ³n eliminada correctamente" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:4029 +msgid "Choosetime" +msgstr "Elegir hora" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:4236 +msgid "Drop Here" +msgstr "Caer aquĆ­" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:4294 +#: ../../godmode/alerts/configure_alert_template.php:1495 +msgid "Simple" +msgstr "Simple" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:4295 +#: ../../godmode/alerts/configure_alert_template.php:1496 +msgid "Detailed" +msgstr "Detallado" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:4350 +#: ../../godmode/alerts/configure_alert_template.php:1551 +msgid "Drag out to remove" +msgstr "Arrastre hacia afuera para eliminar" + +#: ../../enterprise/include/class/CommandCenter.class.php:146 +msgid "Command center" +msgstr "command center" + +#: ../../enterprise/include/class/CommandCenter.class.php:160 +msgid "Could not be start merge process, no nodes in the metaconsole " +msgstr "No se pudo iniciar el proceso de combinaciĆ³n, no hay nodos en la metaconsola " + +#: ../../enterprise/include/class/CommandCenter.class.php:169 +#: ../../enterprise/include/functions_groups.php:49 +msgid "Metaconsole" +msgstr "Metaconsola" + +#: ../../enterprise/include/class/CommandCenter.class.php:265 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:900 +msgid "" +"Memory limit is recomended to be unlimited in metaconsole, please set to -1 in php." +"ini." +msgstr "" +"Se recomienda que el lĆ­mite de memoria sea ilimitado en la metaconsola, establezca en " +"-1 en php.ini." + +#: ../../enterprise/include/class/CommandCenter.class.php:312 +msgid "Nodes priority order" +msgstr "Orden de prioridad de los nodos" + +#: ../../enterprise/include/class/CommandCenter.class.php:366 +msgid "Unify databases" +msgstr "Unificar bases de datos" + +#: ../../enterprise/include/class/CommandCenter.class.php:383 +msgid "merge process" +msgstr "proceso de combinaciĆ³n" + +#: ../../enterprise/include/class/CommandCenter.class.php:391 +msgid "Process detail of node" +msgstr "Detalle del proceso del nodo" + +#: ../../enterprise/include/class/CommandCenter.class.php:392 +msgid "Errors of node" +msgstr "Errores de nodo" + +#: ../../enterprise/include/class/CommandCenter.class.php:421 +msgid "Unexpected end of process" +msgstr "Fin inesperado del proceso" + +#: ../../enterprise/include/class/CommandCenter.class.php:422 +msgid "Please retry" +msgstr "Por favor reintĆ©ntelo" + +#: ../../enterprise/include/class/CommandCenter.class.php:443 +msgid "Critical issues while merging" +msgstr "Problemas crĆ­ticos durante la fusiĆ³n" + +#: ../../enterprise/include/class/CommandCenter.class.php:444 +msgid "Please restore your backups" +msgstr "Restaure sus copias de seguridad" + +#: ../../enterprise/include/class/CommandCenter.class.php:452 +#: ../../include/functions_ui.php:6622 +msgid "Query" +msgstr "Consulta" + +#: ../../enterprise/include/class/CommandCenter.class.php:453 +#: ../../include/lib/Dashboard/Widgets/service_view.php:247 +msgid "Table" +msgstr "Tabla" + +#: ../../enterprise/include/class/CommandCenter.class.php:454 +#: ../../include/class/Heatmap.class.php:743 +msgid "Info" +msgstr "InformaciĆ³n" + +#: ../../enterprise/include/class/CommandCenter.class.php:455 +#: ../../enterprise/include/class/CommandCenter.class.php:1119 +msgid "Error message" +msgstr "Mensaje de error" + +#: ../../enterprise/include/class/CommandCenter.class.php:457 +msgid "Process details" +msgstr "Detalles del proceso" + +#: ../../enterprise/include/class/CommandCenter.class.php:458 +msgid "" +"System is not unified yet, something is wrong, please troubleshoot the errors and " +"retry the merge process. Your data have not been modified." +msgstr "" +"El sistema aĆŗn no estĆ” unificado, algo estĆ” mal, solucione los errores y vuelva a " +"intentar el proceso de fusiĆ³n. Sus datos no han sido modificados." + +#: ../../enterprise/include/class/CommandCenter.class.php:459 +msgid "Errors while merging" +msgstr "Errores al fusionar" + +#: ../../enterprise/include/class/CommandCenter.class.php:460 +msgid "The process has been completed correctly" +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:1818 +msgid "Successfully" +msgstr "Correcto" + +#: ../../enterprise/include/class/CommandCenter.class.php:462 +msgid "System is merging your environment, please wait" +msgstr "El sistema estĆ” fusionando su entorno, espere" + +#: ../../enterprise/include/class/CommandCenter.class.php:464 +#: ../../enterprise/include/class/CommandCenter.class.php:884 +msgid "Initialice merge" +msgstr "Inicializar fusiĆ³n" + +#: ../../enterprise/include/class/CommandCenter.class.php:465 +#: ../../enterprise/include/class/CommandCenter.class.php:890 +msgid "Apply merge" +msgstr "Aplicar combinaciĆ³n" + +#: ../../enterprise/include/class/CommandCenter.class.php:466 +msgid "Finished merge" +msgstr "FusiĆ³n finalizada" + +#: ../../enterprise/include/class/CommandCenter.class.php:467 +#: ../../enterprise/include/class/CommandCenter.class.php:896 +msgid "Restore merge" +msgstr "Restaurar combinaciĆ³n" + +#: ../../enterprise/include/class/CommandCenter.class.php:469 +msgid "Succesfully" +msgstr "Ɖxito" + +#: ../../enterprise/include/class/CommandCenter.class.php:470 +msgid "Pending operations" +msgstr "Operaciones pendientes" + +#: ../../enterprise/include/class/CommandCenter.class.php:472 +msgid "Error. Synchronization aborted. Backup restored" +msgstr "Error. SincronizaciĆ³n anulada. Copia de seguridad restaurada" + +#: ../../enterprise/include/class/CommandCenter.class.php:542 +#: ../../enterprise/include/class/CommandCenter.class.php:548 +msgid "Update priority nodes" +msgstr "Actualizar nodos prioritarios" + +#: ../../enterprise/include/class/CommandCenter.class.php:543 +msgid "Successfully updated priority order nodes" +msgstr "Nodos de orden de prioridad actualizados correctamente" + +#: ../../enterprise/include/class/CommandCenter.class.php:549 +msgid "Could not be updated priority order nodes" +msgstr "No se pudieron actualizar los nodos de orden de prioridad" + +#: ../../enterprise/include/class/CommandCenter.class.php:565 +msgid "" +"By unifying databases all information across your infrastructure will be merged to " +"gain integrity" +msgstr "" +"Al unificar las bases de datos, toda la informaciĆ³n de su infraestructura se " +"fusionarĆ” para obtener integridad." + +#: ../../enterprise/include/class/CommandCenter.class.php:578 +#: ../../enterprise/include/class/CommandCenter.class.php:588 +msgid "Blocked" +msgstr "Bloqueado" + +#: ../../enterprise/include/class/CommandCenter.class.php:579 +msgid "This process already running" +msgstr "Este proceso ya se estĆ” ejecutando" + +#: ../../enterprise/include/class/CommandCenter.class.php:589 +msgid "You cannot start a new merge because system is merging events data." +msgstr "" +"No puede iniciar una nueva combinaciĆ³n porque el sistema estĆ” combinando datos de " +"eventos." + +#: ../../enterprise/include/class/CommandCenter.class.php:597 +msgid "Press OK button to start the process" +msgstr "Presione el botĆ³n OK para iniciar el proceso" + +#: ../../enterprise/include/class/CommandCenter.class.php:599 +msgid "" +"There are backups from a previous merging process, are you sure you want to overwrite " +"those backups? Press OK button to ignore this message and start the process." +msgstr "" +"Hay copias de seguridad de un proceso de fusiĆ³n anterior, ĀæestĆ” seguro de que desea " +"sobrescribir esas copias de seguridad? Presione el botĆ³n OK para ignorar este mensaje " +"e iniciar el proceso." + +#: ../../enterprise/include/class/CommandCenter.class.php:647 +msgid "System is merging events..." +msgstr "El sistema estĆ” fusionando eventos..." + +#: ../../enterprise/include/class/CommandCenter.class.php:654 +msgid "Already working..." +msgstr "Ya funcionando..." + +#: ../../enterprise/include/class/CommandCenter.class.php:760 +#: ../../enterprise/include/class/CommandCenter.class.php:761 +msgid "Initilize" +msgstr "Initilizar" + +#: ../../enterprise/include/class/CommandCenter.class.php:866 +#: ../../enterprise/include/class/CommandCenter.class.php:1054 +msgid "Waiting" +msgstr "Esperando" + +#: ../../enterprise/include/class/CommandCenter.class.php:873 +msgid "Process detail" +msgstr "Detalle del proceso" + +#: ../../enterprise/include/class/CommandCenter.class.php:878 +msgid "Display errors" +msgstr "Mostrar errores" + +#: ../../enterprise/include/class/CommandCenter.class.php:909 +msgid "There are no nodes to do the merge process." +msgstr "No hay nodos para realizar el proceso de combinaciĆ³n." + +#: ../../enterprise/include/class/CommandCenter.class.php:1017 +msgid "merge events" +msgstr "eventos de combinaciĆ³n" + +#: ../../enterprise/include/class/CommandCenter.class.php:1060 +msgid "Retry process" +msgstr "Reintentar proceso" + +#: ../../enterprise/include/class/CommandCenter.class.php:1065 +msgid "Display events errors" +msgstr "Mostrar errores de eventos" + +#: ../../enterprise/include/class/CommandCenter.class.php:1078 +msgid "Events History" +msgstr "Historial de eventos" + +#: ../../enterprise/include/class/CommandCenter.class.php:1140 +msgid "merge process events" +msgstr "eventos del proceso de combinaciĆ³n" + +#: ../../enterprise/include/class/ManageBackups.class.php:106 +#, php-format +msgid "%s database backup manager" +msgstr "%s de copia de seguridad de la base de datos" + +#: ../../enterprise/include/class/ManageBackups.class.php:117 +#: ../../include/class/AuditLog.class.php:145 +msgid "Admin Tools" +msgstr "Herramientas de administrador" + +#: ../../enterprise/include/class/ManageBackups.class.php:121 +#: ../../enterprise/operation/menu.php:200 +msgid "DB Backup Manager" +msgstr "Backup Manager de la BBDD" + +#: ../../enterprise/include/class/ManageBackups.class.php:129 +#, php-format +msgid "To schedule a periodic (or one-time) backup task you can do it through %s." +msgstr "" +"Para programar una tarea de copia de seguridad periĆ³dica (o Ćŗnica), puede hacerlo a " +"travĆ©s de %s." + +#: ../../enterprise/include/class/ManageBackups.class.php:164 +#: ../../extensions/files_repo/files_repo_list.php:57 +#: ../../godmode/events/event_responses.editor.php:130 +#: ../../include/functions_visual_map_editor.php:125 +#: ../../include/functions_visual_map_editor.php:178 +#: ../../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/functions_filemanager.php:606 +#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:119 +#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:250 +msgid "Size" +msgstr "TamaƱo" + +#: ../../enterprise/include/class/ManageBackups.class.php:189 +msgid "Path backups" +msgstr "Ruta de la copia de seguridad" + +#: ../../enterprise/include/class/ManageBackups.class.php:314 +msgid "Rollback to this backup" +msgstr "Revertir a esta copia de seguridad" + +#: ../../enterprise/include/class/ManageBackups.class.php:323 +msgid "Lost" +msgstr "Perdido" + +#: ../../enterprise/include/class/ManageBackups.class.php:330 +msgid "In Progress" +msgstr "En Progreso" + +#: ../../enterprise/include/class/ManageBackups.class.php:361 +msgid "The backup was successfully deleted" +msgstr "La copia de seguridad se ha eliminado correctamente" + +#: ../../enterprise/include/class/ManageBackups.class.php:367 +msgid "Missed id parameter" +msgstr "ParĆ”metro de identificaciĆ³n omitido" + +#: ../../enterprise/include/class/ManageBackups.class.php:386 +msgid "Something was wrong with the rollback action." +msgstr "Algo andaba mal con la acciĆ³n de reversiĆ³n." + +#: ../../enterprise/include/class/ManageBackups.class.php:389 +msgid "Missed id parameter." +msgstr "ParĆ”metro id omitido." + +#: ../../enterprise/include/class/ManageBackups.class.php:424 +#: ../../include/class/AuditLog.class.php:376 +msgid "There is no additional information to display" +msgstr "No hay informaciĆ³n adicional que mostrar" + +#: ../../enterprise/include/class/ManageBackups.class.php:437 +msgid "" +"Are you sure you want to delete this database backup file? Once deleted you will not " +"be able to recover it." +msgstr "" +"ĀæEstĆ” seguro de que desea eliminar este archivo de copia de seguridad de la base de " +"datos? Una vez eliminado no podrĆ”s recuperarlo." + +#: ../../enterprise/include/class/ManageBackups.class.php:439 +msgid "Do you like perform a database restoration?" +msgstr "ĀæDesea realizar una restauraciĆ³n de base de datos?" + +#: ../../enterprise/include/functions_enterprise.php:464 +msgid "Tree view by tags" +msgstr "Vista de Ć”rbol por etiquetas" + +#: ../../enterprise/include/functions_enterprise.php:494 +msgid "" +"If the interval of days until events data purge is shorter than the events data " +"history storage interval, data will be lost. It is recommended that the storage " +"frequency is higher than the purge frequency." +msgstr "" +"Si el intervalo de dĆ­as hasta la purga de datos de eventos es inferior que el " +"intervalo de almacenamiento de histĆ³rico de datos de eventos, se perderĆ”n los datos. " +"Se recomienda configurar una frecuencia de almacenamiento inferior a la frecuencia de " +"purga." + +#: ../../enterprise/include/functions_enterprise.php:496 +msgid "Problems with event days purge and event days that pass data to history DB." +msgstr "" +"Problemas con la fecha de purga de eventos y la fecha de traspaso de informaciĆ³n a " +"histĆ³rico." + +#: ../../enterprise/include/functions_enterprise.php:507 +msgid "" +"If days purge is less than history days pass to history db, you will have a problems " +"and you lost data. Recommended that days purge will more taller than days to history " +"DB" +msgstr "" +"Si la fecha de purga es menor a la fecha de traspaso a histĆ³rico, los datos se " +"perderĆ”n. Recomendamos poner una fecha de purga mayor a la del traspaso de datos a " +"histĆ³rico." + +#: ../../enterprise/include/functions_enterprise.php:509 +msgid "Problems with days purge and days that pass data to history DB" +msgstr "" +"Problemas con la fecha de purga y la fecha de traspaso de informaciĆ³n al histĆ³rico" + +#: ../../enterprise/include/functions_reporting.php:93 +msgid "Advance options" +msgstr "Opciones avanzadas" + +#: ../../enterprise/include/functions_reporting.php:117 +msgid "Templates list" +msgstr "Lista de plantillas" + +#: ../../enterprise/include/functions_reporting.php:152 +msgid "Templates Wizard" +msgstr "Asistente de plantillas" + +#: ../../enterprise/include/functions_reporting.php:1233 +msgid "Availability item created from wizard." +msgstr "Elemento disponible creado desde el asistente" + +#: ../../enterprise/include/functions_reporting.php:1855 +#: ../../enterprise/include/functions_reporting.php:2894 +#: ../../enterprise/include/functions_reporting.php:3881 +#: ../../include/functions_reporting_html.php:544 +msgid "Max/Min Values" +msgstr "Valores max/min" + +#: ../../enterprise/include/functions_reporting.php:1857 +#: ../../enterprise/include/functions_reporting.php:2025 +#: ../../enterprise/include/functions_reporting.php:2896 +#: ../../enterprise/include/functions_reporting.php:3883 +#: ../../enterprise/include/functions_reporting.php:6139 +#: ../../include/functions_reporting_html.php:546 +msgid "SLA Compliance" +msgstr "Cumplimiento del SLA" + +#: ../../enterprise/include/functions_reporting.php:1897 +#: ../../enterprise/include/functions_reporting.php:2950 +#: ../../enterprise/include/functions_reporting.php:3201 +#: ../../enterprise/include/functions_reporting.php:3938 +#: ../../enterprise/include/functions_reporting.php:4202 +#: ../../enterprise/include/functions_reporting.php:4853 +#: ../../enterprise/include/functions_reporting.php:6209 +#: ../../include/functions_reporting_html.php:869 +#: ../../include/functions_reporting_html.php:4660 +msgid "Not Init" +msgstr "No iniciado" + +#: ../../enterprise/include/functions_reporting.php:1904 +#: ../../enterprise/include/functions_reporting.php:2960 +#: ../../enterprise/include/functions_reporting.php:3948 +msgid "Planned Downtimes" +msgstr "Paradas planificadas" + +#: ../../enterprise/include/functions_reporting.php:1911 +msgid "Ignore time" +msgstr "Tiempo ignorado" + +#: ../../enterprise/include/functions_reporting.php:1931 +msgid "SLA Compliance per days" +msgstr "Cumplimiento de SLA por dĆ­as" + +#: ../../enterprise/include/functions_reporting.php:2022 +msgid "Summary of SLA Failures" +msgstr "Resumen de los fallos de SLA" + +#: ../../enterprise/include/functions_reporting.php:2042 +#: ../../enterprise/include/functions_reporting.php:2043 +msgid "Out of SLA limits" +msgstr "Sin lĆ­mites SLS" + +#: ../../enterprise/include/functions_reporting.php:2048 +#: ../../enterprise/include/functions_reporting.php:2049 +msgid "IN of SLA limits" +msgstr "LĆ­mite del IN de SLA" + +#: ../../enterprise/include/functions_reporting.php:2132 +#: ../../include/functions_reports.php:926 +msgid "Log report" +msgstr "Informe de log" + +#: ../../enterprise/include/functions_reporting.php:2145 +#: ../../include/functions_reports.php:925 +msgid "Log" +msgstr "Log" + +#: ../../enterprise/include/functions_reporting.php:2494 +#: ../../enterprise/include/functions_reporting.php:3438 +#: ../../enterprise/include/functions_reporting.php:4413 +#: ../../include/functions_reporting.php:998 ../../include/functions_reporting.php:8744 +msgid "There are no SLAs defined" +msgstr "No hay SLA definidos" + +#: ../../enterprise/include/functions_reporting.php:2547 +#: ../../enterprise/include/functions_reporting.php:3491 +#: ../../enterprise/include/functions_reporting.php:4466 +#: ../../include/functions_reporting.php:1073 ../../include/functions_reporting.php:9122 +msgid "Inverse" +msgstr "Inverso" + +#: ../../enterprise/include/functions_reporting.php:2970 +#: ../../enterprise/include/functions_reporting.php:3211 +#: ../../enterprise/include/functions_reporting.php:3958 +msgid "Planned Downtime" +msgstr "Tiempo de inactividad planificado" + +#: ../../enterprise/include/functions_reporting.php:3000 +msgid "T. Total" +msgstr "Tiempo total" + +#: ../../enterprise/include/functions_reporting.php:3001 +#: ../../enterprise/include/functions_reporting.php:3985 +msgid "T. OK" +msgstr "Tiempo OK" + +#: ../../enterprise/include/functions_reporting.php:3002 +#: ../../enterprise/include/functions_reporting.php:3986 +msgid "T. Error" +msgstr "Tiempo error" + +#: ../../enterprise/include/functions_reporting.php:3003 +#: ../../enterprise/include/functions_reporting.php:3987 +msgid "T. Unknown" +msgstr "Tiempo desconocido" + +#: ../../enterprise/include/functions_reporting.php:3004 +#: ../../enterprise/include/functions_reporting.php:3988 +msgid "T. Not_init" +msgstr "Tiempo no iniciado" + +#: ../../enterprise/include/functions_reporting.php:3005 +#: ../../enterprise/include/functions_reporting.php:3989 +msgid "T. Downtime" +msgstr "Tiempo en parada planificada" + +#: ../../enterprise/include/functions_reporting.php:3006 +#: ../../enterprise/include/functions_reporting.php:3990 +msgid "SLA %" +msgstr "SLA %" + +#: ../../enterprise/include/functions_reporting.php:3196 +#: ../../enterprise/include/functions_reporting.php:4197 +#: ../../enterprise/include/functions_reporting.php:6204 +#: ../../enterprise/include/functions_services.php:1453 +#: ../../include/functions_reporting_html.php:864 +#: ../../include/functions_reporting_html.php:4655 +msgid "Unknow" +msgstr "Desconocido" + +#: ../../enterprise/include/functions_reporting.php:3206 +#: ../../enterprise/include/functions_reporting.php:4207 +#: ../../enterprise/include/functions_reporting.php:6214 +#: ../../include/functions_reporting_html.php:874 +#: ../../include/functions_reporting_html.php:4665 +msgid "Downtimes" +msgstr "Paradas planificadas" + +#: ../../enterprise/include/functions_reporting.php:4212 +msgid "Ignore Planned Downtime" +msgstr "Ignorar parada planeada" + +#: ../../enterprise/include/functions_reporting.php:4302 +#: ../../include/functions_reports.php:712 +msgid "Hourly S.L.A." +msgstr "SLA cada hora" + +#: ../../enterprise/include/functions_reporting.php:4905 +msgid "Max/Min Critical" +msgstr "MĆ”x./MĆ­n. CrĆ­tico" + +#: ../../enterprise/include/functions_reporting.php:4906 +msgid "Max/Min Warning" +msgstr "MĆ”x./MĆ­n. Advertencia" + +#: ../../enterprise/include/functions_reporting.php:4907 +msgid "Total checks ok/total" +msgstr "Comprobaciones totales ok/total" + +#: ../../enterprise/include/functions_reporting.php:4908 +msgid "% time ok" +msgstr "% tiempo ok" + +#: ../../enterprise/include/functions_reporting.php:4926 +#: ../../include/functions_reporting_html.php:633 +#: ../../include/functions_reporting_html.php:672 +#: ../../include/functions_reporting_html.php:743 +#: ../../include/functions_reporting_html.php:821 +#: ../../include/functions_reporting_html.php:4114 +#: ../../include/functions_reporting_html.php:4261 +msgid "24 x 7" +msgstr "24/7" + +#: ../../enterprise/include/functions_reporting.php:4966 +#: ../../include/functions_reporting_html.php:578 +msgid "Global Time" +msgstr "Tiempo global" + +#: ../../enterprise/include/functions_reporting.php:4968 +msgid "Time Critical" +msgstr "Tiempo CrĆ­tico" + +#: ../../enterprise/include/functions_reporting.php:5061 +#: ../../include/functions_reporting_html.php:611 +msgid "Checks Time" +msgstr "Tiempo de comprobaciones" + +#: ../../enterprise/include/functions_reporting.php:5063 +msgid "Checks Critical" +msgstr "Comprobaciones CrĆ­tico" + +#: ../../enterprise/include/functions_reporting.php:5064 +#: ../../include/functions_reporting_html.php:4038 +msgid "Checks Warning" +msgstr "Comprobaciones Advertencia" + +#: ../../enterprise/include/functions_reporting.php:5147 +#: ../../include/functions_reporting_html.php:801 +#: ../../include/functions_reporting_html.php:4303 +#: ../../include/functions_reporting_html.php:4853 +#: ../../include/functions_reporting_html.php:4856 +#: ../../include/functions_reporting.php:1643 ../../include/functions_reporting.php:3345 +msgid "There are no Agent/Modules defined" +msgstr "No hay Agentes/MĆ³dulos definidos" + +#: ../../enterprise/include/functions_reporting.php:5583 +msgid "There are no SLAs defined." +msgstr "No hay SLAs definidos" + +#: ../../enterprise/include/functions_reporting.php:5798 +#: ../../enterprise/include/functions_services.php:1368 +#: ../../enterprise/include/functions_services.php:1370 +#: ../../enterprise/include/functions_services.php:1404 +#: ../../enterprise/include/functions_services.php:1405 +#: ../../enterprise/include/functions_services.php:1407 +#: ../../enterprise/include/functions_services.php:1458 +#: ../../enterprise/include/functions_services.php:1460 +msgid "Nonexistent" +msgstr "No existe" + +#: ../../enterprise/include/functions_reporting.php:6219 +msgid "Scheduled shutdow" +msgstr "Parada planeada" + +#: ../../enterprise/include/functions_reporting.php:6585 +#: ../../enterprise/include/functions_reporting.php:7475 +#, php-format +msgid "Graph agents(%s) - %s" +msgstr "GrĆ”ficos de agentes (%s) - %s" + +#: ../../enterprise/include/functions_reporting.php:7383 +#, php-format +msgid "Graph agent(%s) - %s" +msgstr "GrĆ”fico de agente(%s) - %s" + +#: ../../enterprise/include/functions_reporting.php:7830 +msgid "There is not data for the selected conditions" +msgstr "No hay datos para las condiciones seleccionadas" + +#: ../../enterprise/include/functions_reporting.php:8022 +#: ../../enterprise/include/functions_reporting.php:8088 +msgid "Template editor" +msgstr "Editor de plantillas" + +#: ../../enterprise/include/functions_reporting.php:8151 +#: ../../enterprise/operation/reporting/custom_reporting.php:101 +msgid "ID Report" +msgstr "ID Informe" + +#: ../../enterprise/include/functions_reporting.php:8219 +#: ../../enterprise/operation/reporting/custom_reporting.php:90 +#: ../../enterprise/operation/reporting/custom_reporting.php:164 +msgid "Send by email" +msgstr "Enviar por correo electrĆ³nico" + +#: ../../enterprise/include/functions_reporting.php:8307 +#: ../../enterprise/operation/reporting/custom_reporting.php:200 +msgid "Send by email " +msgstr "Enviar por correo electrĆ³nico " + +#: ../../enterprise/include/functions_reporting.php:8348 +#: ../../include/functions_reports.php:643 +msgid "Simple baseline graph" +msgstr "GrĆ”fico simple de lĆ­nea base" + +#: ../../enterprise/include/functions_reporting.php:8518 +msgid "Configuration changes" +msgstr "Cambios en la configuraciĆ³n" + +#: ../../enterprise/include/functions_reporting.php:8535 +msgid "No NCM capabilities detected" +msgstr "No se han detectado capacidades de NCM" + +#: ../../enterprise/include/functions_enterprise_api.php:1119 +msgid "Is not metaconsole" +msgstr "No es la metaconsola" + +#: ../../enterprise/include/functions_enterprise_api.php:2580 +msgid "Error getting alert actions." +msgstr "Error al obtener acciones de alertas." + +#: ../../enterprise/include/functions_enterprise_api.php:3553 +#: ../../enterprise/include/functions_enterprise_api.php:3607 +#, php-format +msgid "%d agents added to apply queue." +msgstr "%d agentes aƱadidos a la cola de aplicar." + +#: ../../enterprise/include/functions_enterprise_api.php:3576 +#: ../../enterprise/include/functions_policies.php:4859 +#, php-format +msgid "Successfully applied to node %s." +msgstr "Aplicado correctamente al nodo %s." + +#: ../../enterprise/include/functions_enterprise_api.php:3578 +#: ../../enterprise/include/functions_policies.php:4861 +#, php-format +msgid "Successfully applied to nodes: %s." +msgstr "Aplicado correctamente a los nodos: %s." + +#: ../../enterprise/include/functions_enterprise_api.php:3617 +#, php-format +msgid "Id policy %d already pending to apply." +msgstr "ID de polĆ­tica %d ya pendiente de aplicar." + +#: ../../enterprise/include/functions_enterprise_api.php:3619 +#, php-format +msgid "Id policy %d already pending to apply in Id agent %d." +msgstr "ID de polĆ­tica %d ya pendiente de aplicar en el ID de agente %d." + +#: ../../enterprise/include/functions_enterprise_api.php:4039 +#: ../../enterprise/include/functions_enterprise_api.php:4066 +msgid "" +"Error adding web analysis module to policy. Id_module_type is not correct for web " +"analysis modules." +msgstr "" +"Error al aƱadir el mĆ³dulo de anĆ”lisis web a la polĆ­tica. Id_module_type no es " +"correcto para los mĆ³dulos de anĆ”lisis web." + +#: ../../enterprise/include/functions_enterprise_api.php:4048 +msgid "" +"Network Module could not be added to policy. Id_module_type is not correct for " +"network modules." +msgstr "" +"No se ha podido aƱadir el mĆ³dulo de red a la polĆ­tica. Id_module_type no es correcto " +"para mĆ³dulos de red." + +#: ../../enterprise/include/functions_enterprise_api.php:4057 +msgid "" +"Error adding web module to policy. Id_module_type is not correct for web modules." +msgstr "" +"Error al aƱadir mĆ³dulo web a la polĆ­tica. Id_module_type no es correcto para mĆ³dulos " +"web." + +#: ../../enterprise/include/functions_enterprise_api.php:4078 +msgid "Error adding module to policy configuration_data is not a valid base64." +msgstr "" +"Error al aƱadir mĆ³dulo a la configuraciĆ³n de la polĆ­tica, configuration_data no es " +"una base64 vĆ”lida." + +#: ../../enterprise/include/functions_enterprise_api.php:6079 +msgid "The agent could not be added to the policy." +msgstr "No se ha podido aƱadir el agente a la polĆ­tica." + +#: ../../enterprise/include/functions_enterprise_api.php:6296 +#, php-format +msgid "Failed Updated remote config files %d" +msgstr "Error al actualizar los archivos de configuraciĆ³n remota %d" + +#: ../../enterprise/include/functions_enterprise_api.php:6306 +#, php-format +msgid "Updated remote config files: %d => %d" +msgstr "Archivos de configuraciĆ³n remota actualizados: %d => %d" + +#: ../../enterprise/include/functions_services.php:108 +msgid "There is no information about" +msgstr "No hay informaciĆ³n sobre" + +#: ../../enterprise/include/functions_services.php:113 +msgid "Service does not exist." +msgstr "El servicio no existe." + +#: ../../enterprise/include/functions_services.php:125 +msgid "module that stores the service" +msgstr "mĆ³dulo que almacena el servicio" + +#: ../../enterprise/include/functions_services.php:137 +msgid "module that stores SLA service" +msgstr "mĆ³dulo que almacena el servicio SLA" + +#: ../../enterprise/include/functions_services.php:150 +msgid "agent that stores the service" +msgstr "agente que almacena el servicio" + +#: ../../enterprise/include/functions_services.php:163 +msgid "agent that stores SLA service" +msgstr "agente que almacena el servicio SLA" + +#: ../../enterprise/include/functions_services.php:184 +msgid "alert critical SLA service" +msgstr "alerta crĆ­tica de servicio SLA" + +#: ../../enterprise/include/functions_services.php:205 +msgid "alert warning service" +msgstr "servicio en estado de advertencia" + +#: ../../enterprise/include/functions_services.php:226 +msgid "alert critical service" +msgstr "servicio en alerta crĆ­tica" + +#: ../../enterprise/include/functions_services.php:247 +msgid "alert unknown service" +msgstr "servicio en estado desconocido" + +#: ../../enterprise/include/functions_services.php:528 +#, php-format +msgid "Module automatic create for the service %s" +msgstr "MĆ³dulo automĆ”tico creado para el servicio %s" + +#: ../../enterprise/include/functions_services.php:1432 +msgid "Normal (Alert)" +msgstr "Normal (Alerta)" + +#: ../../enterprise/include/functions_services.php:1436 +msgid "Critical (Alert)" +msgstr "CrĆ­tico (Alerta)" + +#: ../../enterprise/include/functions_services.php:1444 +msgid "Warning (Alert)" +msgstr "Advertencia (Alerta)" + +#: ../../enterprise/include/functions_services.php:1582 +msgid "There are no service elements defined" +msgstr "No hay servicios de elementos definidos" + +#: ../../enterprise/include/functions_services.php:1606 +msgid "Weight Critical" +msgstr "Peso crĆ­tico" + +#: ../../enterprise/include/functions_services.php:1607 +msgid "Weight Warning" +msgstr "Peso de advertencia" + +#: ../../enterprise/include/functions_services.php:1608 +msgid "Weight Unknown" +msgstr "Peso desconocido" + +#: ../../enterprise/include/functions_services.php:1609 +msgid "Weight Ok" +msgstr "Peso OK" + +#: ../../enterprise/include/functions_services.php:1672 +#: ../../enterprise/include/functions_services.php:1717 +#: ../../enterprise/include/functions_services.php:1785 +msgid "Nonexistent. This element should be deleted" +msgstr "Inexistente. Este elemento deberĆ­a eliminarse." + +#: ../../enterprise/include/functions_services.php:1700 +#: ../../enterprise/include/functions_services.php:1767 +#: ../../enterprise/include/functions_services.php:1813 +msgid "This element does not affect service weigth because is disabled." +msgstr "El elemento no afecta al peso del servicio porque estĆ” deshabilitado." + +#: ../../enterprise/include/functions_services.php:1828 +#, php-format +msgid "Dynamic element (%d) '%s' does not match any target" +msgstr "El elemento dinĆ”mico (%d) '%s' no coincide con ningĆŗn objetivo" + +#: ../../enterprise/include/functions_services.php:1837 +#, php-format +msgid "Dynamic element (%d) '%s' causes an error: %s" +msgstr "El elemento dinĆ”mico (%d) '%s' provoca un error: %s" + +#: ../../enterprise/include/functions_services.php:1849 +msgid "Dynamic element" +msgstr "Elemento dinĆ”mico" + +#: ../../enterprise/include/functions_services.php:1855 +#, php-format +msgid "agents like \"%s\"" +msgstr "agentes como \"%s\"" + +#: ../../enterprise/include/functions_services.php:1860 +#, php-format +msgid "modules like \"%s\"" +msgstr "mĆ³dulos como \"%s\"" + +#: ../../enterprise/include/functions_services.php:1993 +msgid "NOT INITIALIZED" +msgstr "NO INICIADO" + +#: ../../enterprise/include/functions_services.php:2027 +msgid "Delete service element" +msgstr "Eliminar elemento de servicio" + +#: ../../enterprise/include/functions_services.php:2086 +msgid "FAIL" +msgstr "FALLO" + +#: ../../enterprise/include/functions_login.php:22 +msgid "You must change password:" +msgstr "Tienes que cambiar la contraseƱa:" + +#: ../../enterprise/include/functions_login.php:38 +msgid "Password must be different from the 3 previous changes." +msgstr "La contraseƱa debe ser diferente a los 3 cambios anteriores." + +#: ../../enterprise/include/functions_login.php:50 +msgid "Old pass: " +msgstr "ContraseƱa antigua: " + +#: ../../enterprise/include/functions_login.php:53 +msgid "New pass: " +msgstr "ContraseƱa nueva: " + +#: ../../enterprise/include/functions_login.php:57 +msgid "Confirm: " +msgstr "Confirmar: " + +#: ../../enterprise/include/functions_login.php:63 +msgid "Change" +msgstr "Cambiar" + +#: ../../enterprise/include/functions_login.php:97 +msgid "Login blocked" +msgstr "Inicio de sesiĆ³n bloqueado" + +#: ../../enterprise/include/functions_login.php:105 +msgid "User has been blocked. Try again in " +msgstr "Tu usuario ha sido bloqueado. Vuelve a intentarlo en " + +#: ../../enterprise/include/functions_login.php:105 +msgid " minutes" +msgstr " minutos" + +#: ../../enterprise/include/functions_login.php:138 +msgid "Login successfully" +msgstr "Inicio de sesiĆ³n correcto" + +#: ../../enterprise/include/functions_login.php:146 +msgid "User pass successfully updated" +msgstr "La contraseƱa se ha actualizado correctamente." + +#: ../../enterprise/include/functions_login.php:252 +msgid "Password must be different from the " +msgstr "La contraseƱa debe ser diferente de " + +#: ../../enterprise/include/functions_login.php:252 +msgid " previous changes." +msgstr " los cambios anteriores." + +#: ../../enterprise/include/functions_login.php:265 +msgid "Password must be different" +msgstr "La contraseƱa no puede ser la misma." + +#: ../../enterprise/include/functions_login.php:276 +msgid "Password too short" +msgstr "La contraseƱa es demasiado corta" + +#: ../../enterprise/include/functions_login.php:288 +msgid "Password must contain numbers" +msgstr "La contraseƱa tiene que contener nĆŗmeros." + +#: ../../enterprise/include/functions_login.php:301 +msgid "Password must contain symbols" +msgstr "La contraseƱa tiene que contener sĆ­mbolos." + +#: ../../enterprise/include/functions_login.php:324 +msgid "Invalid old password" +msgstr "ContraseƱa antigua no vĆ”lida" + +#: ../../enterprise/include/functions_login.php:361 +msgid "Password confirm does not match" +msgstr "Las contraseƱas no coinciden." + +#: ../../enterprise/include/functions_login.php:368 +msgid "Password empty" +msgstr "La contraseƱa estĆ” vacĆ­a." + +#: ../../enterprise/include/functions_login.php:485 +#: ../../godmode/users/configure_user.php:1792 +#: ../../godmode/users/configure_user.php:1862 +#: ../../godmode/users/configure_user.php:1934 +#: ../../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:1061 +#: ../../operation/users/user_edit.php:1127 ../../operation/users/user_edit.php:1198 +#: ../../general/register.php:154 ../../general/logon_failed.php:18 +msgid "Authentication error" +msgstr "Error de autentificaciĆ³n" + +#: ../../enterprise/include/functions_login.php:492 +#: ../../godmode/users/configure_user.php:1799 +#: ../../godmode/users/configure_user.php:1869 +#: ../../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:1068 +#: ../../operation/users/user_edit.php:1134 ../../general/register.php:161 +msgid "There was an error loading the data" +msgstr "Error al cargar los datos" + +#: ../../enterprise/include/functions_login.php:501 +#: ../../godmode/users/configure_user.php:1877 +#: ../../godmode/users/configure_user.php:1955 ../../operation/users/user_edit.php:1142 +#: ../../operation/users/user_edit.php:1218 ../../general/register.php:170 +msgid "Double autentication activation" +msgstr "ActivaciĆ³n de la doble autentificaciĆ³n" + +#: ../../enterprise/include/lib/Agent.php:99 +msgid " error, invalid agent." +msgstr " error, agente no vĆ”lido." + +#: ../../enterprise/include/lib/Agent.php:674 +#, php-format +msgid "Log module \"%s\" does not exist" +msgstr "El mĆ³dulo de log \"%s\" no existe" + +#: ../../enterprise/include/lib/Agent.php:696 +#, php-format +msgid "Plugin \"%s\" does not exist" +msgstr "el plugin \"%s\" no existe" + +#: ../../enterprise/include/lib/Agent.php:828 +#, php-format +msgid "Log module \"%s\" does not exist, %s skipped" +msgstr "El mĆ³dulo de log \"%s\" no existe, se ha omitido %s" + +#: ../../enterprise/include/lib/Agent.php:863 +#, php-format +msgid "Plugin \"%s\" does not exist, %s skipped" +msgstr "El plugin \"%s\" no existe, se ha omitido %s" + +#: ../../enterprise/include/lib/Agent.php:934 +#, php-format +msgid "Log module %s already defined" +msgstr "El mĆ³dulo de log %s ya estĆ” definido" + +#: ../../enterprise/include/lib/Agent.php:951 +#, php-format +msgid "Invalid module type %s" +msgstr "Typo de mĆ³dulo %s no vĆ”lido" + +#: ../../enterprise/include/lib/Agent.php:981 +#, php-format +msgid "Plugin %s already defined" +msgstr "El plugin %s ya estĆ” definido" + +#: ../../enterprise/include/lib/Agent.php:995 +msgid "Invalid plugin definition" +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:711 ../../operation/users/user_edit.php:757 +msgid "Test" +msgstr "Probar" + +#: ../../enterprise/include/lib/NetworkManager.php:83 +msgid "Retrieve config" +msgstr "Recuperar configuraciĆ³n" + +#: ../../enterprise/include/lib/NetworkManager.php:84 +msgid "Restore backed up config" +msgstr "Restaurar configuraciĆ³n de copia de seguridad" + +#: ../../enterprise/include/lib/NetworkManager.php:86 +msgid "Send firmware" +msgstr "Enviar firmware" + +#: ../../enterprise/include/lib/NetworkManager.php:88 +#: ../../godmode/setup/setup_general.php:408 +msgid "On demand" +msgstr "Por demanda" + +#: ../../enterprise/include/lib/NetworkManager.php:93 +msgid "Executing test" +msgstr "Ejecutando prueba" + +#: ../../enterprise/include/lib/NetworkManager.php:94 +msgid "Retrieving config" +msgstr "Recuperando configuraciĆ³n" + +#: ../../enterprise/include/lib/NetworkManager.php:95 +msgid "Restoring backup" +msgstr "Restaurando copia de seguridad" + +#: ../../enterprise/include/lib/NetworkManager.php:96 +msgid "Retrieving firmware version" +msgstr "Recuperando la versiĆ³n del firmware" + +#: ../../enterprise/include/lib/NetworkManager.php:97 +msgid "Sending firmware update" +msgstr "Enviando actualizaciĆ³n de firmware" + +#: ../../enterprise/include/lib/NetworkManager.php:98 +msgid "Executing custom script" +msgstr "Ejecutando scripts personalizados" + +#: ../../enterprise/include/lib/NetworkManager.php:99 +msgid "Executing on demand script" +msgstr "Ejecutando scripts bajo demanda" + +#: ../../enterprise/include/lib/NetworkManager.php:186 +msgid "Montly" +msgstr "Mensualmente" + +#: ../../enterprise/include/lib/AlertCorrelation.class.php:838 +#: ../../enterprise/include/lib/AlertCorrelation.class.php:852 +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 +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 +msgid "There was a problem deleting Action" +msgstr "Ha habido un problema al eliminar la acciĆ³n" + +#: ../../enterprise/include/lib/AlertCorrelation.class.php:993 +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 +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 +msgid "There was a problem enabled alert" +msgstr "Ha habido un problema en la alerta habilitada" + +#: ../../enterprise/include/lib/AlertCorrelation.class.php:1055 +msgid "There was a problem disabled alert" +msgstr "Ha habido un problema en la alerta deshabilitada" + +#: ../../enterprise/include/lib/AlertCorrelation.class.php:1111 +msgid "Event group Recursive" +msgstr "Recursividad del grupo de eventos" + +#: ../../enterprise/include/lib/AlertCorrelation.class.php:1126 +#: ../../include/functions_reporting_html.php:1047 +#: ../../include/functions_reporting_html.php:1313 +#: ../../include/functions_reporting_html.php:2422 +#: ../../operation/snmpconsole/snmp_view.php:865 +msgid "Count" +msgstr "NĆŗmero" + +#: ../../enterprise/include/lib/AlertCorrelation.class.php:1129 +msgid "Time window" +msgstr "Ventana de tiempo" + +#: ../../enterprise/include/lib/AlertCorrelation.class.php:1663 +msgid "Failed to cleanup old rules." +msgstr "No se han podido limpiar las reglas antiguas." + +#: ../../enterprise/include/lib/AlertCorrelation.class.php:1671 +#, php-format +msgid "Failed SQL: %s" +msgstr "SQL errĆ³neo: %s" + +#: ../../enterprise/include/lib/AlertCorrelation.class.php:1676 +#, php-format +msgid "Failed to apply rule: %s." +msgstr "Error al aplicar la regla: %s" + +#: ../../enterprise/include/lib/AlertCorrelation.class.php:1824 +msgid "any" +msgstr "cualquier" + +#: ../../enterprise/include/lib/NetworkManager/NetworkAgent.php:197 +msgid "No template assigned" +msgstr "Sin plantilla asignada" + +#: ../../enterprise/include/lib/NetworkManager/NetworkAgent.php:227 +msgid "NCM Agent without template assigned." +msgstr "Agente de NCM sin plantilla asignada." + +#: ../../enterprise/include/lib/NetworkManager/NetworkAgent.php:233 +msgid "Current selected template does not match vendor configured." +msgstr "" +"La plantilla seleccionada actual no coincide con la configuraciĆ³n del fabricante." + +#: ../../enterprise/include/lib/NetworkManager/NetworkAgent.php:240 +msgid "Current selected template does not match model configured." +msgstr "La plantilla seleccionada actual no coincide con el modelo configurado." + +#: ../../enterprise/include/lib/NetworkManager/NetworkAgent.php:549 +#: ../../enterprise/include/lib/NetworkManager/NetworkAgent.php:579 +#, php-format +msgid "No %s script available for this agent, check template %s" +msgstr "No hay %s script disponible para este agente, compruebe la plantilla %s" + +#: ../../enterprise/include/lib/NetworkManager/Template.php:192 +msgid "Error linking script: " +msgstr "Error al vincular el script: " + +#: ../../enterprise/include/lib/ClusterViewer/ClusterManager.php:224 +msgid "Cluster not found: " +msgstr "ClĆŗster no encontrado: " + +#: ../../enterprise/include/lib/ClusterViewer/ClusterManager.php:233 +msgid "Cluster agent not found: " +msgstr "Agente del clĆŗster no encontrado: " + +#: ../../enterprise/include/lib/ClusterViewer/ClusterManager.php:270 +#, php-format +msgid "Error while deleting, reason: %s" +msgstr "Error al eliminar, motivo: %s" + +#: ../../enterprise/include/lib/ClusterViewer/ClusterManager.php:278 +msgid "Cluster successfully deleted." +msgstr "ClĆŗster eliminado con Ć©xito." + +#: ../../enterprise/include/lib/ClusterViewer/ClusterManager.php:304 +#, php-format +msgid "Error while forcing, reason: %s" +msgstr "Error al forzar, motivo: %s" + +#: ../../enterprise/include/lib/ClusterViewer/ClusterManager.php:312 +msgid "Cluster successfully forced." +msgstr "ClĆŗster forzado con Ć©xito." + +#: ../../enterprise/include/lib/ClusterViewer/ClusterManager.php:568 +msgid "Not set" +msgstr "No configurado" + +#: ../../enterprise/include/lib/ClusterViewer/ClusterManager.php:578 +msgid "Active-Active" +msgstr "Activo-Activo" + +#: ../../enterprise/include/lib/ClusterViewer/ClusterManager.php:580 +msgid "Active-Passive" +msgstr "Activo-Pasivo" + +#: ../../enterprise/include/lib/ClusterViewer/ClusterWizard.php:182 +msgid "Cluster already defined, please use another name." +msgstr "Este clĆŗster ya ha sido definido, use otro nombre." + +#: ../../enterprise/include/lib/ClusterViewer/ClusterWizard.php:779 +msgid "Cluster name" +msgstr "Nombre del clĆŗster" + +#: ../../enterprise/include/lib/ClusterViewer/ClusterWizard.php:780 +msgid "" +"An agent with the same name of the cluster will be created, as well a special service " +"with the same name" +msgstr "" +"Se crearĆ” un agente con el mismo nombre que el clĆŗster y un servicio especial con el " +"mismo nombre." + +#: ../../enterprise/include/lib/ClusterViewer/ClusterWizard.php:794 +msgid "Cluster type" +msgstr "Tipo de clĆŗster" + +#: ../../enterprise/include/lib/ClusterViewer/ClusterWizard.php:795 +msgid "" +"AA is a cluster where all members are working. In AP cluster only master member is " +"working" +msgstr "" +"AA es un clĆŗster donde funcionan todos los miembros. En un clĆŗster AP solo trabaja el " +"miembro maestro." + +#: ../../enterprise/include/lib/ClusterViewer/ClusterWizard.php:803 +msgid "Active - Active" +msgstr "Activo - Activo" + +#: ../../enterprise/include/lib/ClusterViewer/ClusterWizard.php:804 +msgid "Active - Pasive" +msgstr "Activo - Pasivo" + +#: ../../enterprise/include/lib/ClusterViewer/ClusterWizard.php:824 +msgid "Target cluster agent will be stored under this group" +msgstr "El agente del clĆŗster objetivo se guardarĆ” bajo este grupo" + +#: ../../enterprise/include/lib/ClusterViewer/ClusterWizard.php:841 +msgid "You must select a Prediction Server to perform all cluster status calculations" +msgstr "" +"Debe seleccionar un Servidor de PredicciĆ³n para llevar a cabo todos los cĆ”lculos de " +"estado de clĆŗster" + +#: ../../enterprise/include/lib/ClusterViewer/ClusterWizard.php:1016 +msgid "critical if" +msgstr "crĆ­tico si" + +#: ../../enterprise/include/lib/ClusterViewer/ClusterWizard.php:1025 +#: ../../enterprise/include/lib/ClusterViewer/ClusterWizard.php:1048 +#, php-format +msgid "% of balanced modules are down (equal or greater)." +msgstr "% de los mĆ³dulos equilibrados estĆ”n caĆ­dos (igual o mayor)." + +#: ../../enterprise/include/lib/ClusterViewer/ClusterWizard.php:1063 +msgid "Please, set threholds for all active-active modules" +msgstr "Ponga umbrales para todos los mĆ³dulos activo-activo" + +#: ../../enterprise/include/lib/ClusterViewer/ClusterWizard.php:1167 +msgid "Please, check all active-passive modules critical for this cluster" +msgstr "Compruebe todos los mĆ³dulos activo-pasivo crĆ­ticos para este clĆŗster" + +#: ../../enterprise/include/lib/ClusterViewer/ClusterWizard.php:1169 +msgid "" +"If a critical balanced module is going to critical status, then cluster will be " +"critical." +msgstr "" +"Si un mĆ³dulo equilibrado crĆ­tico pasa a estado crĆ­tico, el clĆŗster entrarĆ” en estado " +"crĆ­tico." + +#: ../../enterprise/include/lib/Service.php:152 +msgid "Service module does not match pointed one" +msgstr "El mĆ³dulo de servicio no coincide con el seƱalado" + +#: ../../enterprise/include/lib/Service.php:158 +#, php-format +msgid "Service module not found %s
" +msgstr "MĆ³dulo de servicio no encontrado %s
" + +#: ../../enterprise/include/lib/Service.php:177 +msgid "Service module SLA not found" +msgstr "No se encontrĆ³ el SLA del mĆ³dulo de servicio" + +#: ../../enterprise/include/lib/Service.php:183 +#, php-format +msgid "SLA service module not found %s
" +msgstr "MĆ³dulo de servicio SLA no encontrado %s
" + +#: ../../enterprise/include/lib/Service.php:202 +msgid "Service module SLA does not match pointed one" +msgstr "El SLA del mĆ³dulo de servicio no corresponde con el seƱalado" + +#: ../../enterprise/include/lib/Service.php:208 +#, php-format +msgid "SLA service value module not found %s
" +msgstr "MĆ³dulo del valor del servicio SLA no encontrado %s
" + +#: ../../enterprise/include/lib/Service.php:221 +#, php-format +msgid "Service agent not found %s
" +msgstr "Agente de servicio no encontrado %s
" + +#: ../../enterprise/include/lib/Service.php:232 +#, php-format +msgid "Service children could not be fully retrieved: %s
" +msgstr "Los hijos de servicios no se han podido extraer completamente: %s
" + +#: ../../enterprise/include/lib/Service.php:313 +msgid "" +" Cannot switch from SMART to MANUAL if there are dynamic elements attached to the " +"service. Please erase dynamic elements before change to MANUAL" +msgstr "" +" No se puede cambiar de INTELIGENTE a MANUAL si hay elementos dinĆ”micos adjuntos al " +"servicio. Elimine los elementos dinĆ”micos antes de cambiar a MANUAL" + +#: ../../enterprise/include/lib/Service.php:397 +#: ../../enterprise/include/lib/Service.php:740 +#: ../../enterprise/include/lib/Service.php:921 +#: ../../enterprise/include/lib/Metaconsole/Node.php:1353 +#: ../../enterprise/include/lib/Metaconsole/Synchronizer.php:402 +#: ../../enterprise/include/lib/ServiceElement.php:390 +#: ../../enterprise/include/lib/ServiceElement.php:921 +#: ../../enterprise/include/lib/ServiceElement.php:963 +#: ../../enterprise/include/lib/ServiceElement.php:1005 +#: ../../enterprise/include/lib/ServiceElement.php:1111 +#: ../../enterprise/include/lib/ServiceElement.php:1153 ../../include/lib/Agent.php:349 +#: ../../include/lib/Module.php:1172 ../../include/lib/Entity.php:303 +#, php-format +msgid "Cannot connect to node %d" +msgstr "No se puede conectar al nodo %d" + +#: ../../enterprise/include/lib/Service.php:777 +#, php-format +msgid "Failed to update CPS for moduleValue for service %s: " +msgstr "Error al actualizar CPS para moduleValue para el %s de servicio: " + +#: ../../enterprise/include/lib/Service.php:1445 +msgid "Error: id agent must be defined." +msgstr "Error: defina el id de agente" + +#: ../../enterprise/include/lib/Service.php:1533 +msgid " error: Target agent does not exist." +msgstr " error: el agente objetivo no existe." + +#: ../../enterprise/include/lib/Core/SSH.php:163 +msgid "php-ssh2 not available" +msgstr "php-ssh2 no disponible" + +#: ../../enterprise/include/lib/Core/SSH.php:184 +msgid "Failed to connect" +msgstr "No se ha podido conectar" + +#: ../../enterprise/include/lib/Core/SSH.php:239 +#, php-format +msgid "Unable to open public key file %s" +msgstr "No se ha podido abrir el archivo de clave pĆŗblica %s" + +#: ../../enterprise/include/lib/Core/SSH.php:257 +msgid "Failed to login to target" +msgstr "No se ha podido iniciar sesiĆ³n en el objetivo" + +#: ../../enterprise/include/lib/Metaconsole/Node.php:144 +msgid "auth error." +msgstr "Error de autenticaciĆ³n." + +#: ../../enterprise/include/lib/Metaconsole/Node.php:148 +msgid "connection error." +msgstr "error de conexiĆ³n." + +#: ../../enterprise/include/lib/Metaconsole/Node.php:152 +msgid "could not resolve the host." +msgstr "no se ha podido resolver el host." + +#: ../../enterprise/include/lib/Metaconsole/Node.php:156 +#: ../../enterprise/include/lib/Metaconsole/Node.php:205 +#: ../../enterprise/include/lib/Metaconsole/Node.php:252 +#: ../../enterprise/include/lib/Metaconsole/Node.php:457 +msgid "unknown error." +msgstr "error desconocido." + +#: ../../enterprise/include/lib/Metaconsole/Node.php:193 +msgid "missing credentials." +msgstr "faltan credenciales." + +#: ../../enterprise/include/lib/Metaconsole/Node.php:197 +msgid "cannot connect to host." +msgstr "no se puede conectar con el host." + +#: ../../enterprise/include/lib/Metaconsole/Node.php:201 +msgid "database does not exist." +msgstr "la base de datos no existe." + +#: ../../enterprise/include/lib/Metaconsole/Node.php:244 +msgid "failed to connect to node database." +msgstr "no se ha podido conectar con la base de datos del nodo." + +#: ../../enterprise/include/lib/Metaconsole/Node.php:248 +msgid "MR version mistmatch." +msgstr "No coincide con la versiĆ³n MR." + +#: ../../enterprise/include/lib/Metaconsole/Node.php:288 +msgid "agent cache failed" +msgstr "error en el cachĆ© de agente" + +#: ../../enterprise/include/lib/Metaconsole/Node.php:292 +#: ../../enterprise/include/lib/Metaconsole/Node.php:353 +msgid "unknown error" +msgstr "error desconocido" + +#: ../../enterprise/include/lib/Metaconsole/Node.php:341 +msgid "node is not recognized as metaconsole node." +msgstr "el nodo no se reconoce como nodo de Metaconsola." + +#: ../../enterprise/include/lib/Metaconsole/Node.php:345 +msgid "node license missmatch." +msgstr "el nodo de la licencia no coincide." + +#: ../../enterprise/include/lib/Metaconsole/Node.php:349 +msgid "cannot connect to node" +msgstr "no se puede conectar con el nodo" + +#: ../../enterprise/include/lib/Metaconsole/Node.php:381 +msgid "Database is up to date with this Metaconsole" +msgstr "La base de datos estĆ” actualizada con esta metaconsola" + +#: ../../enterprise/include/lib/Metaconsole/Node.php:391 +msgid "Node not found" +msgstr "Nodo no encontrado" + +#: ../../enterprise/include/lib/Metaconsole/Node.php:396 +#, php-format +msgid "There are %d queries pending to be applied, click in the eye to see results" +msgstr "" +"Hay %d consultas pendientes de aplicar, haga clic en el ojo para ver los resultados" + +#: ../../enterprise/include/lib/Metaconsole/Node.php:405 +msgid "Database synchronization state and pending tasks" +msgstr "Estado de sincronizaciĆ³n de la base de datos y tareas pendientes" + +#: ../../enterprise/include/lib/Metaconsole/Node.php:540 +msgid "Operation and table" +msgstr "Funcionamiento y tabla" + +#: ../../enterprise/include/lib/Metaconsole/Node.php:655 +#, php-format +msgid "" +"Failed synchronizing %s, please check node PHP configuration issues and collection " +"max sizes" +msgstr "" +"Error al sincronizar %s, verifique los problemas de configuraciĆ³n de PHP del nodo y " +"los tamaƱos mĆ”ximos de colecciĆ³n" + +#: ../../enterprise/include/lib/Metaconsole/Node.php:1173 +msgid "" +"The elimination of this node will lead to the suppression of its agents from " +"metaconsole and all the configuration assigned to them. " +msgstr "" +"La eliminaciĆ³n de este nodo conllevarĆ” la supresiĆ³n de sus agentes de la metaconsola " +"y de toda la configuraciĆ³n que se les asigne. " + +#: ../../enterprise/include/lib/Metaconsole/Node.php:1177 +msgid "The rules for this node may stop working. " +msgstr "Y las reglas para este nodo podrĆ­an dejar de funcionar. " + +#: ../../enterprise/include/lib/Metaconsole/Node.php:1181 +msgid "The deleted node will lose its license, and you must license it manually again. " +msgstr "El nodo eliminado perderĆ” su licencia y debe volver a licenciarlo manualmente. " + +#: ../../enterprise/include/lib/Metaconsole/Node.php:1685 +#, php-format +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:2926 +msgid "Final step" +msgstr "Paso final" + +#: ../../enterprise/include/lib/Metaconsole/Node.php:1704 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2927 +msgid "Database merged" +msgstr "Base de datos combinada" + +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:171 +msgid "Activating node" +msgstr "ActivaciĆ³n del nodo" + +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:205 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:361 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:670 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:797 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:1068 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:1162 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:1514 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:1811 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2180 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:3104 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:3385 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:3539 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:3614 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:3913 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:4129 +msgid "Connect node" +msgstr "Conectar nodo" + +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:577 +msgid "Create table tmerge_error" +msgstr "Creando tabla tmerge_error" + +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:603 +msgid "Create table tmerge_steps" +msgstr "Creando tabla tmerge_steps" + +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:628 +msgid "Create table tmerge_queries" +msgstr "Creando tabla tmerge_queries" + +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:769 +#, php-format +msgid "%s console" +msgstr "%s consola" + +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:774 +msgid "Check cron task" +msgstr "Comprobar tarea cron" + +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:775 +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:857 +msgid "memory_limit current value" +msgstr "valor actual de memory_limit " + +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:864 +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:876 +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:888 +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:913 +#, php-format +msgid "Post max size, nodes cannot be smaller than the size of the metaconsole %s" +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:928 +#, php-format +msgid "" +"Upload max file size, nodes cannot be smaller than the size of the metaconsole %s" +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:990 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:1006 +msgid "Problems with the backup directory" +msgstr "Problemas con el directorio de copia de seguridad" + +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:991 +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:1007 +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:1017 +msgid "Extension ZIP" +msgstr "ExtensiĆ³n ZIP" + +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:1018 +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:1119 +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:1145 +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:1192 +msgid "Enable exceptions in tmerge_queries" +msgstr "Habilitar excepciones en tmerge_queries" + +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:1216 +msgid "Enable foreing keys in tmerge_queries" +msgstr "Habilitar claves de anteo en tmerge_queries" + +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:1495 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:1780 +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:1571 +msgid "This table does not have the id" +msgstr "Esta tabla no tiene el identificador" + +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:1572 +msgid "Prepare merge request" +msgstr "Preparar la solicitud de combinaciĆ³n" + +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:1898 +msgid "Inserts truncate, autoincrement and inserts in tmerge_queries" +msgstr "Inserta truncado, autoincremento e inserto en tmerge_queries" + +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2068 +msgid "Inserts updates in tmerge_queries" +msgstr "Inserta actualizaciones en tmerge_queries" + +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2105 +msgid "Merging collections files" +msgstr "FusiĆ³n de archivos de colecciones" + +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2161 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2307 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2478 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:3091 +#, php-format +msgid "Api call: %s" +msgstr "Llamada api: %s" + +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2219 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2220 +msgid "Problems while backing up collections from: " +msgstr "Problemas al realizar copias de seguridad de colecciones de: " + +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2237 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2241 +#, php-format +msgid "Problems downloading collections from %s" +msgstr "Problemas para descargar colecciones de %s" + +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2253 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2257 +#, 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:2536 +msgid "Start phase merge" +msgstr "CombinaciĆ³n de fases de inicio" + +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2548 +msgid "Create backups" +msgstr "Crear copia de seguridad" + +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2616 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2617 +msgid "Problems creating the backup conf agents" +msgstr "Problemas al crear los agentes conf de copia de seguridad" + +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2627 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2865 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:3235 +msgid "Class agent" +msgstr "Clase de agente " + +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2651 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2663 +msgid "Disable_foreing" +msgstr "Disable_foreing" + +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2675 +msgid "Truncate table" +msgstr "Tabla truncada" + +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2693 +msgid "Autoincrement" +msgstr "Autoincremento" + +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2705 +msgid "Inserts" +msgstr "Postizos" + +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2723 +msgid "Disabling constraints" +msgstr "DesactivaciĆ³n de restricciones" + +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2741 +msgid "Updates" +msgstr "Actualizaciones" + +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2764 +msgid "Restoring constraints" +msgstr "RestauraciĆ³n de restricciones" + +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2782 +msgid "Enable exceptions" +msgstr "Habilitar excepciones" + +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2800 +msgid "Enable foreings keys" +msgstr "Habilitar claves foreign" + +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2817 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2818 +msgid "Update conf agent policies" +msgstr "Actualizar directivas de agente conf" + +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2854 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2855 +msgid "Error updating agent conf" +msgstr "Error al actualizar el agente conf" + +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2876 +msgid "Synchronizing collections" +msgstr "SincronizaciĆ³n de colecciones" + +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2888 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2889 +msgid "Error synchronizing collections" +msgstr "Error al sincronizar las colecciones al nodo %s" + +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2985 +msgid "Problems unzipping collections at: " +msgstr "Problemas para descomprimir colecciones en: " + +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2986 +#, 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:3144 +msgid "Restoring database backup" +msgstr "Restaurar una copia de seguridad" + +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:3170 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:4394 +msgid "Problems creating the backup" +msgstr "Problemas al crear la copia de seguridad" + +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:3183 +msgid "Restore backups conf agents" +msgstr "Restore backups conf agents" + +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:3220 +msgid "Problems restoring the backup conf agents" +msgstr "Problemas para restaurar los agentes conf de copia de seguridad" + +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:3222 +#, php-format +msgid "Agent \"%s\" with md5 file \"%s\"" +msgstr "Agente \"%s\" con el archivo md5 \"%s\"" + +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:3248 +msgid "Restore collections" +msgstr "Restaurar colecciones" + +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:3263 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:3264 +msgid "Error Synch collections" +msgstr "Colecciones de sincronizaciĆ³n de errores" + +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:3481 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:3721 +msgid "Insert info steps" +msgstr "Insertar pasos de informaciĆ³n" + +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:3646 +msgid "Node not ready" +msgstr "Nodo no listo" + +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:3647 +msgid "Pending to be unified" +msgstr "Pendiente de ser unificado" + +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:3880 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:3885 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:3937 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:3942 +msgid "Initialize" +msgstr "Iniciar" + +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:4076 +msgid "Backup" +msgstr "Copia de seguridad" + +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:4106 +msgid "Applying" +msgstr "Trabajo" + +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:4325 +msgid "Error updating events" +msgstr "Error al actualizar eventos" + +#: ../../enterprise/include/lib/RCMDFile.class.php:203 +msgid "You do not have grants to access this feature" +msgstr "No tiene permisos de acceso a esta funcionalidad" + +#: ../../enterprise/include/lib/RCMDFile.class.php:548 +msgid "There was a problem creating RCMD" +msgstr "Ha habido un problema al crear RCMD" + +#: ../../enterprise/include/lib/RCMDFile.class.php:693 +#: ../../enterprise/include/lib/RCMDFile.class.php:717 +msgid "There was a problem deleting RCMD" +msgstr "Ha habido un problema al eliminar RCMD" + +#: ../../enterprise/include/lib/RCMDFile.class.php:865 +msgid "No agent configuration file" +msgstr "No hay archivo de configuraciĆ³n de agente" + +#: ../../enterprise/include/lib/RCMDFile.class.php:873 +msgid "you don't have write permissions in the configuration file" +msgstr "no tiene permisos de escritura en el archivo de configuraciĆ³n" + +#: ../../enterprise/include/lib/RCMDFile.class.php:914 +msgid "This agent is already a target" +msgstr "Este agente ya es un objetivo" + +#: ../../enterprise/include/lib/RCMDFile.class.php:945 +#, php-format +msgid "You do not have grants to access in this agent %s" +msgstr "No tiene permisos para acceder a este agente %s" + +#: ../../enterprise/include/lib/RCMDFile.class.php:1011 +msgid "There was a problem creating RCMD files" +msgstr "Ha habido un problema al crear los archivos RCMD" + +#: ../../enterprise/include/lib/RCMDFile.class.php:1058 +msgid "There was a problem creating target" +msgstr "Ha habido un problema al crear un objetivo" + +#: ../../enterprise/include/lib/RCMDFile.class.php:1092 +msgid "There was a problem adding items in the configuration file" +msgstr "Ha habido un problema al aƱadir elementos al archivo de configuraciĆ³n" + +#: ../../enterprise/include/lib/RCMDFile.class.php:1118 +#: ../../enterprise/include/lib/RCMDFile.class.php:1285 +msgid "No agent has been selected" +msgstr "No se han seleccionado agentes" + +#: ../../enterprise/include/lib/RCMDFile.class.php:1151 +msgid "Target doesn't exist" +msgstr "El objetivo no existe" + +#: ../../enterprise/include/lib/RCMDFile.class.php:1223 +msgid "There was a problem deleting tokens in the configuration file" +msgstr "Ha habido un problema al eliminar los tokes del archivo de configuraciĆ³n" + +#: ../../enterprise/include/lib/RCMDFile.class.php:1259 +msgid "There was a problem deleting target from DB" +msgstr "Ha habido un problema al eliminar el objetivo de la base de datos" + +#: ../../enterprise/include/lib/RCMDFile.class.php:1417 +msgid "Yaml is empty" +msgstr "Yaml estĆ” vacĆ­o" + +#: ../../enterprise/include/lib/RCMDFile.class.php:1426 +msgid "Doesn't have a valid YAML format" +msgstr "No tiene un formato YAML vĆ”lido" + +#: ../../enterprise/include/lib/RCMDFile.class.php:1444 +#, php-format +msgid "%s field is not allowed" +msgstr "El campo %s no estĆ” permitido" + +#: ../../enterprise/include/lib/Policy/Inventory.php:156 +#, php-format +msgid "inventory module already registered: \"%d\"" +msgstr "mĆ³dulo de inventario ya registrado: \"%d\"" + +#: ../../enterprise/include/lib/Policy/Inventory.php:181 +#, php-format +msgid "Failed to update, already exists: \"%d\"" +msgstr "No se ha podido actualizar, ya existe: \"%d\"" + +#: ../../enterprise/include/lib/Policy/Module.php:201 +#: ../../enterprise/include/lib/Policy.php:1196 ../../include/lib/Module.php:805 +#, php-format +msgid "Module already exists: \"%s\"" +msgstr "El mĆ³dulo ya existe: \"%s\"" + +#: ../../enterprise/include/lib/Policy/Module.php:227 +#, php-format +msgid "Failed to update: \"%s\"" +msgstr "No se ha podido actualizar: \"%s\"" + +#: ../../enterprise/include/lib/Policy/Queue.php:378 +#, php-format +msgid "Already queued in %s" +msgstr "Ya estĆ” en cola en %s" + +#: ../../enterprise/include/lib/ServiceElement.php:611 +#, php-format +msgid "This filters will cause slowdown on server (%s ms)" +msgstr "Estos filtros provocarĆ”n enlentecimiento del servidor (%s ms)" + +#: ../../enterprise/include/lib/ServiceElement.php:625 +#, php-format +msgid "Regular expression is not valid: %s." +msgstr "La expresiĆ³n regular no es vĆ”lida: %s." + +#: ../../enterprise/include/lib/ServiceElement.php:864 +#, php-format +msgid " error while decoding rules: %s" +msgstr " error al decodificar las normas: %s" + +#: ../../enterprise/include/lib/ServiceElement.php:1271 +#, php-format +msgid " error: Failed to delete element: %s" +msgstr " error: No se ha podido eliminar el elemento: %s" + +#: ../../enterprise/include/lib/Policy.php:281 +#, php-format +msgid "Invalid operation %s" +msgstr "OperaciĆ³n no vĆ”lida %s" + +#: ../../enterprise/include/lib/Policy.php:1171 +#, php-format +msgid "Policy already defined: \"%s\"" +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:355 +#: ../../include/lib/Dashboard/Widgets/events_list.php:389 +#: ../../operation/events/events.php:1607 ../../operation/events/events.php:2181 +msgid "Event status" +msgstr "Estado del evento" + +#: ../../enterprise/include/functions_events.php:101 +#: ../../godmode/events/event_edit_filter.php:419 ../../operation/events/events.php:1833 +msgid "User ack." +msgstr "ValidaciĆ³n del usuario" + +#: ../../enterprise/include/functions_events.php:111 +#: ../../godmode/events/event_edit_filter.php:454 +msgid "Date from" +msgstr "Fecha desde" + +#: ../../enterprise/include/functions_events.php:121 +#: ../../godmode/events/event_edit_filter.php:457 +msgid "Date to" +msgstr "Fecha hasta" + +#: ../../enterprise/include/functions_events.php:131 +#: ../../godmode/events/event_edit_filter.php:443 ../../mobile/operation/events.php:816 +#: ../../include/functions_events.php:4573 ../../operation/events/events.php:1638 +msgid "Repeated" +msgstr "Repetido" + +#: ../../enterprise/include/functions_events.php:141 +#: ../../godmode/events/event_edit_filter.php:603 ../../operation/events/events.php:1856 +msgid "Alert events" +msgstr "Eventos de la alerta" + +#: ../../enterprise/include/functions_events.php:152 +msgid "Id source events" +msgstr "Eventos fuente de ID" + +#: ../../enterprise/include/functions_events.php:162 +#: ../../godmode/events/event_edit_filter.php:409 ../../mobile/operation/events.php:997 +#: ../../include/functions_snmp.php:401 ../../include/class/AuditLog.class.php:187 +#: ../../include/lib/Dashboard/Widgets/events_list.php:347 +#: ../../include/lib/Dashboard/Widgets/top_n_events_by_module.php:270 +#: ../../include/lib/Dashboard/Widgets/top_n_events_by_group.php:270 +#: ../../operation/snmpconsole/snmp_view.php:616 ../../operation/events/events.php:1620 +#: ../../operation/events/events.php:2211 +msgid "Max. hours old" +msgstr "MĆ”x. horas de antiguedad" + +#: ../../enterprise/include/functions_events.php:178 +#: ../../enterprise/include/functions_events.php:200 +msgid "More than 5 tags" +msgstr "MĆ”s de 5 etiquetas" + +#: ../../enterprise/include/functions_events.php:184 +#: ../../godmode/events/event_edit_filter.php:498 ../../operation/events/events.php:2052 +#: ../../operation/events/events.php:2055 +msgid "Events with following tags" +msgstr "Eventos con las siguientes etiquetas" + +#: ../../enterprise/include/functions_events.php:206 +#: ../../godmode/events/event_edit_filter.php:551 ../../operation/events/events.php:2053 +#: ../../operation/events/events.php:2056 +msgid "Events without following tags" +msgstr "Eventos sin las siguientes etiquetas" + +#: ../../enterprise/include/functions_events.php:224 +#: ../../include/functions_snmp.php:441 +msgid "Active filter" +msgstr "Filtro activo" + +#: ../../enterprise/include/functions_events.php:224 +#: ../../include/functions_snmp.php:441 +msgid "Active filters" +msgstr "Filtros activos" + +#: ../../enterprise/include/functions_metaconsole.php:2827 +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:2834 +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:2841 +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:2848 +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:2855 +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:2862 +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:2869 +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:2876 +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:2883 +msgid "Agent already exists in target node" +msgstr "El agente ya existe en el nodo objetivo" + +#: ../../enterprise/include/functions_metaconsole.php:2907 +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:2912 +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" + +#: ../../enterprise/include/functions_license.php:119 +msgid "Perpetual" +msgstr "Perpetuo" + +#: ../../enterprise/include/functions_license.php:119 +msgid "Subscription" +msgstr "SuscripciĆ³n" + +#: ../../enterprise/include/functions_license.php:120 +#: ../../include/class/Diagnostics.class.php:1156 +msgid "Support expires" +msgstr "El soporte caduca" + +#: ../../enterprise/include/functions_license.php:120 +msgid "Expires" +msgstr "Caduca" + +#: ../../enterprise/include/functions_ipam.php:288 +msgid "Export to Excel" +msgstr "Exportar a Excel" + +#: ../../enterprise/include/functions_ipam.php:395 +msgid "Assign next free IP" +msgstr "Asignar la siguiente IP libre" + +#: ../../enterprise/include/functions_ipam.php:413 +msgid "Next available IP" +msgstr "Siguiente IP disponible" + +#: ../../enterprise/include/functions_ipam.php:1341 +#: ../../enterprise/tools/ipam/ipam_ajax.php:483 ../../include/ajax/events.php:1712 +#: ../../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:1557 +#: ../../operation/snmpconsole/snmp_statistics.php:78 +#: ../../operation/snmpconsole/snmp_view.php:99 +#: ../../operation/incidents/incident_statistics.php:21 +msgid "Statistics" +msgstr "EstadĆ­sticas" + +#: ../../enterprise/include/functions_ipam.php:1559 +#: ../../enterprise/include/functions_ipam.php:1989 +#: ../../enterprise/tools/ipam/ipam_excel.php:136 +#: ../../enterprise/tools/ipam/ipam_excel.php:202 +msgid "Total IPs" +msgstr "IPs totales" + +#: ../../enterprise/include/functions_ipam.php:1565 +msgid "Occupied" +msgstr "Ocupado" + +#: ../../enterprise/include/functions_ipam.php:1571 +#: ../../enterprise/include/functions_ipam.php:2042 +#: ../../enterprise/tools/ipam/ipam_network.php:400 +#: ../../enterprise/tools/ipam/ipam_ajax.php:406 +#: ../../enterprise/tools/ipam/ipam_massive.php:103 +msgid "Managed" +msgstr "Gestionado" + +#: ../../enterprise/include/functions_ipam.php:1573 +msgid "Not managed" +msgstr "No gestionado" + +#: ../../enterprise/include/functions_ipam.php:1577 +#: ../../enterprise/include/functions_ipam.php:1734 +#: ../../enterprise/include/functions_ipam.php:2043 +#: ../../enterprise/tools/ipam/ipam_network.php:401 +#: ../../enterprise/tools/ipam/ipam_ajax.php:432 +#: ../../enterprise/tools/ipam/ipam_massive.php:103 +msgid "Reserved" +msgstr "Reservado" + +#: ../../enterprise/include/functions_ipam.php:1579 +msgid "Not Reserved" +msgstr "No reservado" + +#: ../../enterprise/include/functions_ipam.php:1589 +msgid "Occupancy statistics" +msgstr "EstadĆ­sticas de ocupaciĆ³n" + +#: ../../enterprise/include/functions_ipam.php:1646 +msgid "DESC" +msgstr "Descendiente" + +#: ../../enterprise/include/functions_ipam.php:1647 +msgid "ASC" +msgstr "Ascendente" + +#: ../../enterprise/include/functions_ipam.php:1648 +#: ../../enterprise/include/functions_ipam.php:1649 +#: ../../enterprise/include/functions_ipam.php:2037 +#: ../../enterprise/tools/ipam/ipam_network.php:396 +#: ../../enterprise/tools/ipam/ipam_ajax.php:364 +#: ../../include/class/Diagnostics.class.php:734 +#: ../../include/class/Diagnostics.class.php:752 +msgid "Hostname" +msgstr "Nombre de host" + +#: ../../enterprise/include/functions_ipam.php:1648 +msgid "A -> Z" +msgstr "A -> Z" + +#: ../../enterprise/include/functions_ipam.php:1649 +msgid "Z -> A" +msgstr "Z -> A" + +#: ../../enterprise/include/functions_ipam.php:1650 +#: ../../enterprise/include/functions_ipam.php:1651 +msgid "Last check" +msgstr "Ultima comprobaciĆ³n" + +#: ../../enterprise/include/functions_ipam.php:1650 +msgid "Newer -> Older" +msgstr "MĆ”s reciente -> MĆ”s antiguo" + +#: ../../enterprise/include/functions_ipam.php:1651 +msgid "Older -> Newer" +msgstr "MĆ”s antiguo -> MĆ”s reciente" + +#: ../../enterprise/include/functions_ipam.php:1678 +msgid "Exact address match" +msgstr "Coincide la direcciĆ³n exacta" + +#: ../../enterprise/include/functions_ipam.php:1682 +msgid "S.O" +msgstr "S.O" + +#: ../../enterprise/include/functions_ipam.php:1695 +msgid "Big" +msgstr "Grande" + +#: ../../enterprise/include/functions_ipam.php:1696 +msgid "Tiny" +msgstr "PequeƱo" + +#: ../../enterprise/include/functions_ipam.php:1697 +msgid "Icons style" +msgstr "Estilo de iconos" + +#: ../../enterprise/include/functions_ipam.php:1714 +msgid "Show not alive hosts" +msgstr "Mostrar mĆ”quinas inactivas" + +#: ../../enterprise/include/functions_ipam.php:1722 +msgid "Show only managed addresses" +msgstr "Mostrar solo direcciones administradas" + +#: ../../enterprise/include/functions_ipam.php:1730 +msgid "Reserved addresses" +msgstr "Direcciones reservadas" + +#: ../../enterprise/include/functions_ipam.php:1735 +msgid "Unreserved" +msgstr "No reservado" + +#: ../../enterprise/include/functions_ipam.php:1745 +msgid "Last Contact" +msgstr "ƚltimo contacto" + +#: ../../enterprise/include/functions_ipam.php:1788 +msgid "Filter options" +msgstr "Opciones de filtro" + +#: ../../enterprise/include/functions_ipam.php:1979 +msgid "id Network" +msgstr "ID de red" + +#: ../../enterprise/include/functions_ipam.php:1984 +msgid "ID recon task" +msgstr "Tarea de reconocimiento de ID" + +#: ../../enterprise/include/functions_ipam.php:1985 +msgid "Scan Interval" +msgstr "Intervalo de escaneo" + +#: ../../enterprise/include/functions_ipam.php:1986 +msgid "Users Operator" +msgstr "Operador de usuarios" + +#: ../../enterprise/include/functions_ipam.php:1987 +msgid "Total Ips" +msgstr "IPs totales" + +#: ../../enterprise/include/functions_ipam.php:1988 +msgid "Last Update" +msgstr "ƚltima actualizaciĆ³n" + +#: ../../enterprise/include/functions_ipam.php:1990 +#: ../../enterprise/tools/ipam/ipam_excel.php:137 +#: ../../enterprise/tools/ipam/ipam_excel.php:203 +msgid "Alive IPs" +msgstr "IPs activas" + +#: ../../enterprise/include/functions_ipam.php:1991 +#: ../../enterprise/tools/ipam/ipam_excel.php:138 +#: ../../enterprise/tools/ipam/ipam_excel.php:204 +msgid "Occupied %" +msgstr "Ocupado %" + +#: ../../enterprise/include/functions_ipam.php:1992 +#: ../../enterprise/tools/ipam/ipam_excel.php:139 +#: ../../enterprise/tools/ipam/ipam_excel.php:205 +msgid "Available %" +msgstr "Disponible %" + +#: ../../enterprise/include/functions_ipam.php:1993 +#: ../../enterprise/tools/ipam/ipam_excel.php:140 +#: ../../enterprise/tools/ipam/ipam_excel.php:206 +msgid "Managed IPs" +msgstr "IPs gestionadas" + +#: ../../enterprise/include/functions_ipam.php:1994 +#: ../../enterprise/tools/ipam/ipam_excel.php:141 +#: ../../enterprise/tools/ipam/ipam_excel.php:207 +msgid "Managed %" +msgstr "Gestionadas %" + +#: ../../enterprise/include/functions_ipam.php:1995 +#: ../../enterprise/tools/ipam/ipam_excel.php:142 +#: ../../enterprise/tools/ipam/ipam_excel.php:208 +msgid "Unmanaged %" +msgstr "No gestionadas %" + +#: ../../enterprise/include/functions_ipam.php:1996 +#: ../../enterprise/tools/ipam/ipam_excel.php:143 +#: ../../enterprise/tools/ipam/ipam_excel.php:209 +msgid "Reserved IPs" +msgstr "IPs reservadas" + +#: ../../enterprise/include/functions_ipam.php:1997 +#: ../../enterprise/tools/ipam/ipam_excel.php:144 +#: ../../enterprise/tools/ipam/ipam_excel.php:210 +msgid "Reserved %" +msgstr "Reservado %" + +#: ../../enterprise/include/functions_ipam.php:1998 +#: ../../enterprise/tools/ipam/ipam_excel.php:145 +#: ../../enterprise/tools/ipam/ipam_excel.php:211 +msgid "Not reserved %" +msgstr "No reservadas %" + +#: ../../enterprise/include/functions_ipam.php:2041 +msgid "OS Name" +msgstr "Nombre del OS" + +#: ../../enterprise/include/functions_ipam.php:2044 +#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:366 +msgid "Created at" +msgstr "Creado en" + +#: ../../enterprise/include/functions_ipam.php:2045 +msgid "Last updated" +msgstr "ƚltima actualizaciĆ³n" + +#: ../../enterprise/include/functions_ipam.php:2046 +msgid "Last modified" +msgstr "ƚltima modificaciĆ³n" + +#: ../../enterprise/include/functions_ipam.php:2047 +msgid "Dhcp Leased" +msgstr "Dhcp prestado" + +#: ../../enterprise/include/functions_ipam.php:2048 +msgid "Dhcp Leased Mode" +msgstr "Modo Dhcp prestado" + +#: ../../enterprise/include/functions_ipam.php:2049 +msgid "Dhcp Leased Expiration" +msgstr "Caducidad de Dhcp prestado" + +#: ../../enterprise/include/functions_ipam.php:2050 +msgid "Mac address" +msgstr "DirecciĆ³n Mac" + +#: ../../enterprise/include/functions_policies.php:423 +#: ../../enterprise/include/functions_policies.php:438 +#: ../../include/functions_alerts.php:477 +msgid "copy" +msgstr "copiar" + +#: ../../enterprise/include/functions_policies.php:675 +#, php-format +msgid "%s success" +msgstr "%s Ć©xito" + +#: ../../enterprise/include/functions_policies.php:675 +#, php-format +msgid "%s failed" +msgstr "%s fallĆ³" + +#: ../../enterprise/include/functions_policies.php:680 +msgid "Policy cleaned from nodes: " +msgstr "Directiva limpiada de nodos: " + +#: ../../enterprise/include/functions_policies.php:934 +#, php-format +msgid "Failed to connect to node %s" +msgstr "Error al conectarse al %s de nodo" + +#: ../../enterprise/include/functions_policies.php:3506 +msgid "Policy linkation" +msgstr "VinculaciĆ³n de polĆ­ticas" + +#: ../../enterprise/include/functions_policies.php:3511 +msgid "Module linked" +msgstr "MĆ³dulo enlazado" + +#: ../../enterprise/include/functions_policies.php:3516 +#: ../../enterprise/include/functions_policies.php:3536 +msgid "Unlink from policy" +msgstr "MĆ³dulo desenlazado de la polĆ­tica" + +#: ../../enterprise/include/functions_policies.php:3521 +msgid "Module unlinked" +msgstr "MĆ³dulo desenlazado" + +#: ../../enterprise/include/functions_policies.php:3526 +#: ../../enterprise/include/functions_policies.php:3546 +msgid "Relink to policy" +msgstr "Volver a enlazar a la polĆ­tica" + +#: ../../enterprise/include/functions_policies.php:3531 +msgid "Module pending to link" +msgstr "MĆ³dulo pendiente de enlazar" + +#: ../../enterprise/include/functions_policies.php:3531 +#: ../../godmode/agentes/module_manager_editor.php:548 +msgid "Module will be linked in the next application" +msgstr "El mĆ³dulo serĆ” enlazado en la prĆ³xima aplicaciĆ³n." + +#: ../../enterprise/include/functions_policies.php:3541 +msgid "Module pending to unlink" +msgstr "MĆ³dulo pendiente de desenlazar" + +#: ../../enterprise/include/functions_policies.php:3541 +#: ../../godmode/agentes/module_manager_editor.php:562 +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:3737 +#: ../../godmode/agentes/configurar_agente.php:539 +#: ../../godmode/agentes/configurar_agente.php:760 +#: ../../godmode/setup/snmp_wizard.php:31 +msgid "SNMP Wizard" +msgstr "Asistente SNMP" + +#: ../../enterprise/include/functions_policies.php:3740 +#: ../../godmode/agentes/configurar_agente.php:549 +#: ../../godmode/agentes/configurar_agente.php:766 +msgid "SNMP Interfaces wizard" +msgstr "Asistente de interfaces SNMP" + +#: ../../enterprise/include/functions_policies.php:3743 +#: ../../godmode/agentes/configurar_agente.php:559 +#: ../../godmode/agentes/configurar_agente.php:772 +msgid "WMI Wizard" +msgstr "Asistente WMI" + +#: ../../enterprise/include/functions_policies.php:4060 +msgid "Create a new policy map" +msgstr "Crear un nuevo mapa de polĆ­ticas" + +#: ../../enterprise/include/functions_policies.php:4448 +#: ../../extensions/resource_registration.php:1098 +msgid "Error, please install the PHP libXML in the system." +msgstr "Error: por favor, instale la librerĆ­a PHP LibXML en el sistema." + +#: ../../enterprise/include/functions_policies.php:4460 +#, php-format +msgid "" +"This extension makes registration of policies enterprise.
You can get more " +"policies in our Public Resource Library" +msgstr "" +"Esta extensiĆ³n permite registrar las polĆ­ticas Enterprise.
Puedes conseguir mĆ”s " +"polĆ­ticas en nuestra LibrerĆ­a de recursos pĆŗblica." + +#: ../../enterprise/include/functions_policies.php:4467 +#: ../../extensions/resource_registration.php:1133 +msgid "Group filter: " +msgstr "Filtro de grupo: " + +#: ../../enterprise/include/functions_policies.php:4492 +#: ../../extensions/resource_registration.php:1150 +msgid "" +"Error uploading resource. Check if the selected file is a valid resource template in ." +"ptr format" +msgstr "" +"Error al cargar el recurso. Compruebe si el archivo seleccionado es una plantilla de " +"recursos vĆ”lida en formato .ptr" + +#: ../../enterprise/include/functions_policies.php:4518 +msgid "Policy does not exist" +msgstr "La polĆ­tica no existe" + +#: ../../enterprise/include/functions_policies.php:4908 +msgid "This will not produce any action." +msgstr "Esto no generarĆ” ninguna acciĆ³n." + +#: ../../enterprise/include/functions_policies.php:4937 +#, php-format +msgid "Error connecting with node %s." +msgstr "Error al conectar con el nodo %s." + +#: ../../enterprise/include/functions_policies.php:4944 +#, php-format +msgid "This policy is being applied on node %s." +msgstr "Esta polĆ­tica se estĆ” aplicando en el nodo %s." + +#: ../../enterprise/include/functions_policies.php:4982 +msgid "Error syncronizing ." +msgstr "Error de sincronizaciĆ³n." + +#: ../../enterprise/include/functions_local_components.php:179 +msgid "Empty configuration" +msgstr "ConfiguraciĆ³n vacĆ­a" + +#: ../../enterprise/include/functions_local_components.php:184 +msgid "Empty OS" +msgstr "SO vacĆ­o" + +#: ../../enterprise/include/functions_local_components.php:354 +#: ../../include/functions_alerts.php:1124 +#: ../../include/functions_network_components.php:590 +msgid "Copy of" +msgstr "Copia de" + +#: ../../enterprise/include/functions_ux_console.php:507 +#: ../../enterprise/operation/agentes/tag_view.php:873 +#: ../../enterprise/operation/agentes/tag_view.php:883 +#: ../../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:6292 +msgid "Snapshot view" +msgstr "Vista de captura de pantalla" + +#: ../../enterprise/operation/agentes/agent_inventory.diff_view.php:44 +msgid "Unsucessful get module inventory data." +msgstr "No se han podido obtener datos del mĆ³dulo de inventario." + +#: ../../enterprise/operation/agentes/agent_inventory.diff_view.php:173 +#: ../../enterprise/operation/agentes/agent_inventory.diff_view.php:176 +#: ../../godmode/reporting/visual_console_builder.wizard.php:538 +#: ../../mobile/operation/agents.php:463 ../../mobile/operation/modules.php:799 +#: ../../mobile/operation/module_graph.php:477 ../../mobile/operation/events.php:1150 +#: ../../mobile/operation/tactical.php:239 +msgid "Loading..." +msgstr "Cargandoā€¦" + +#: ../../enterprise/operation/agentes/manage_transmap_creation_phases_data.php:34 +#: ../../enterprise/operation/agentes/manage_transmap.php:56 +#: ../../enterprise/operation/agentes/manage_transmap_creation.php:115 +#: ../../enterprise/operation/agentes/manage_transmap_creation.php:332 +#: ../../enterprise/operation/agentes/manage_transmap_creation.php:417 +msgid "Transactions List" +msgstr "Lista de transacciones" + +#: ../../enterprise/operation/agentes/manage_transmap_creation_phases_data.php:42 +#: ../../enterprise/operation/agentes/manage_transmap.php:96 +#: ../../enterprise/operation/agentes/manage_transmap_creation.php:139 +#: ../../enterprise/operation/agentes/manage_transmap_creation.php:441 +msgid "Edit Transaction" +msgstr "Editar transacciĆ³n" + +#: ../../enterprise/operation/agentes/manage_transmap_creation_phases_data.php:50 +msgid "Go back to phases list" +msgstr "Volver a lista de fases" + +#: ../../enterprise/operation/agentes/manage_transmap_creation_phases_data.php:56 +msgid "Transactional Map - Phase - " +msgstr "Mapa transaccional - Fase - " + +#: ../../enterprise/operation/agentes/policy_view.php:38 +msgid "This agent has no policy assigned" +msgstr "Este agente no tiene ninguna polĆ­tica asignada." + +#: ../../enterprise/operation/agentes/policy_view.php:70 +#: ../../include/functions_events.php:2381 +msgid "V." +msgstr "V." + +#: ../../enterprise/operation/agentes/policy_view.php:89 +msgid "Policy outdate" +msgstr "PolĆ­tica obsoleta" + +#: ../../enterprise/operation/agentes/policy_view.php:159 +#: ../../enterprise/operation/agentes/policy_view.php:169 +msgid "Toggle the collection table" +msgstr "Cambiar la tabla de la colecciĆ³n" + +#: ../../enterprise/operation/agentes/policy_view.php:165 +msgid "Descripttion" +msgstr "DescripciĆ³n" + +#: ../../enterprise/operation/agentes/policy_view.php:173 +msgid "Show Collection" +msgstr "Mostrar colecciones" + +#: ../../enterprise/operation/agentes/policy_view.php:253 +#: ../../enterprise/operation/agentes/policy_view.php:265 +msgid "Toggle the alert table" +msgstr "Cambia a la tabla de alertas" + +#: ../../enterprise/operation/agentes/policy_view.php:257 +#: ../../godmode/alerts/alert_list.list.php:151 +#: ../../include/ajax/alert_list.ajax.php:286 ../../include/ajax/alert_list.ajax.php:311 +#: ../../operation/agentes/alerts_status.functions.php:124 +msgid "Standby" +msgstr "Standby" + +#: ../../enterprise/operation/agentes/policy_view.php:269 +msgid "Show Alert" +msgstr "Mostrar alertas" + +#: ../../enterprise/operation/agentes/policy_view.php:345 +#: ../../godmode/alerts/alert_list.list.php:574 ../../godmode/alerts/alert_view.php:105 +#: ../../mobile/operation/alerts.php:324 ../../include/functions_ui.php:1253 +#: ../../include/class/AgentsAlerts.class.php:937 +msgid "time(s)" +msgstr "Veces" + +#: ../../enterprise/operation/agentes/policy_view.php:351 +#: ../../godmode/alerts/alert_list.list.php:580 ../../godmode/alerts/alert_view.php:111 +#: ../../mobile/operation/alerts.php:330 ../../include/functions_agents.php:2944 +#: ../../include/functions_agents.php:2955 ../../include/functions_ui.php:1259 +#: ../../include/class/AgentsAlerts.class.php:943 +#: ../../include/functions_reporting.php:12411 +#: ../../operation/snmpconsole/snmp_view.php:1020 +msgid "Alert not fired" +msgstr "Alerta no disparada" + +#: ../../enterprise/operation/agentes/policy_view.php:390 +#: ../../enterprise/operation/agentes/policy_view.php:402 +msgid "Toggle the module table" +msgstr "Cambiar a la tabla de alertas" + +#: ../../enterprise/operation/agentes/policy_view.php:394 +msgid "Relationship" +msgstr "RelaciĆ³n" + +#: ../../enterprise/operation/agentes/policy_view.php:406 +msgid "Show Modules" +msgstr "Mostrar mĆ³dulos" + +#: ../../enterprise/operation/agentes/policy_view.php:425 +msgid "(Un-adopted)" +msgstr "(Desadoptados)" + +#: ../../enterprise/operation/agentes/policy_view.php:428 +msgid "(Adopted)" +msgstr "(Adoptados)" + +#: ../../enterprise/operation/agentes/policy_view.php:433 +msgid "(Un-adopted) (Unlinked)" +msgstr "(Desadoptados)(Desvinculados)" + +#: ../../enterprise/operation/agentes/policy_view.php:436 +msgid "(Adopted) (Unlinked)" +msgstr "(Adoptados)(Desvinculados)" + +#: ../../enterprise/operation/agentes/policy_view.php:457 +#: ../../godmode/agentes/module_manager.php:1086 +msgid "Non initialized module" +msgstr "MĆ³dulo no iniciado" + +#: ../../enterprise/operation/agentes/policy_view.php:485 +#: ../../enterprise/operation/agentes/policy_view.php:490 +#: ../../enterprise/operation/agentes/policy_view.php:495 +#: ../../enterprise/operation/agentes/transactional_map.php:210 +#: ../../enterprise/operation/agentes/tag_view.php:989 +#: ../../enterprise/operation/agentes/tag_view.php:995 +#: ../../enterprise/operation/agentes/tag_view.php:1005 +#: ../../enterprise/operation/agentes/tag_view.php:1011 +#: ../../enterprise/operation/agentes/tag_view.php:1021 +#: ../../enterprise/operation/agentes/tag_view.php:1027 +#: ../../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_modules.php:2889 ../../include/functions_modules.php:2893 +#: ../../include/functions_modules.php:2897 +#: ../../operation/agentes/status_monitor.php:1662 +#: ../../operation/agentes/status_monitor.php:1668 +#: ../../operation/agentes/status_monitor.php:1678 +#: ../../operation/agentes/status_monitor.php:1684 +#: ../../operation/agentes/status_monitor.php:1694 +#: ../../operation/agentes/status_monitor.php:1700 +#: ../../operation/agentes/pandora_networkmap.view.php:1780 +#: ../../operation/agentes/pandora_networkmap.view.php:1785 +#: ../../operation/agentes/pandora_networkmap.view.php:1790 +#: ../../operation/search_modules.php:141 ../../operation/search_modules.php:149 +#: ../../operation/search_modules.php:157 +msgid "Last status" +msgstr "ƚltimo estado" + +#: ../../enterprise/operation/agentes/transactional_map.php:61 +msgid "List of transactions" +msgstr "Lista de transacciones" + +#: ../../enterprise/operation/agentes/transactional_map.php:74 +#: ../../enterprise/operation/agentes/manage_transmap.php:176 +#: ../../enterprise/operation/agentes/manage_transmap_creation.php:173 +#: ../../enterprise/operation/agentes/manage_transmap_creation.php:353 +#: ../../enterprise/operation/agentes/manage_transmap_creation.php:475 +msgid "Transactional Map" +msgstr "Mapa transaccional" + +#: ../../enterprise/operation/agentes/transactional_map.php:149 +msgid "Name can't be empty" +msgstr "El nombre no se puede quedar en blanco." + +#: ../../enterprise/operation/agentes/transactional_map.php:206 +msgid "Transaction name" +msgstr "Nombre de la transacciĆ³n" + +#: ../../enterprise/operation/agentes/transactional_map.php:209 +msgid "Running status" +msgstr "Estado de ejecuciĆ³n" + +#: ../../enterprise/operation/agentes/transactional_map.php:211 +msgid "Time spent" +msgstr "Tiempo utilizado" + +#: ../../enterprise/operation/agentes/transactional_map.php:212 +#: ../../godmode/wizards/DiscoveryTaskList.class.php:609 +#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:367 +msgid "Updated at" +msgstr "Actualizado el" + +#: ../../enterprise/operation/agentes/transactional_map.php:254 +msgid "Stopped" +msgstr "Detenido" + +#: ../../enterprise/operation/agentes/transactional_map.php:260 +msgid "Starting" +msgstr "Iniciando" + +#: ../../enterprise/operation/agentes/transactional_map.php:260 +msgid "Stopping" +msgstr "Deteniendo" + +#: ../../enterprise/operation/agentes/transactional_map.php:439 +msgid "Edit phases" +msgstr "Editar fases" + +#: ../../enterprise/operation/agentes/transactional_map.php:461 +msgid "Go to `Status` module" +msgstr "Vaya al mĆ³dulo 'Estado'" + +#: ../../enterprise/operation/agentes/transactional_map.php:492 +msgid "Error in phases section" +msgstr "Error en la secciĆ³n de fases" + +#: ../../enterprise/operation/agentes/transactional_map.php:512 +#: ../../enterprise/operation/agentes/manage_transmap_creation.php:340 +msgid "Create Transaction" +msgstr "Crear transacciĆ³n" + +#: ../../enterprise/operation/agentes/tag_view.php:41 +#: ../../enterprise/operation/menu.php:191 +msgid "Tag view" +msgstr "Visor de etiquetas" + +#: ../../enterprise/operation/agentes/tag_view.php:54 +#: ../../extensions/agents_modules.php:478 ../../extensions/module_groups.php:264 +#: ../../extensions/realtime_graphs.php:71 +#: ../../include/class/AgentsAlerts.class.php:742 ../../operation/heatmap.php:137 +#: ../../operation/agentes/alerts_status.php:203 +#: ../../operation/agentes/estado_agente.php:228 +#: ../../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:37 +msgid "Views" +msgstr "Vistas" + +#: ../../enterprise/operation/agentes/tag_view.php:139 +#: ../../operation/agentes/status_monitor.php:500 +msgid "Monitor status" +msgstr "Estado del monitor" + +#: ../../enterprise/operation/agentes/tag_view.php:223 +#: ../../enterprise/operation/agentes/tag_view.php:225 +#: ../../operation/agentes/status_monitor.php:550 +#: ../../operation/agentes/alerts_status.functions.php:108 +msgid "Only it is show tags in use." +msgstr "Mostrar solo etiquetas en uso" + +#: ../../enterprise/operation/agentes/tag_view.php:229 +#: ../../operation/agentes/status_monitor.php:555 +#: ../../operation/agentes/alerts_status.functions.php:113 +msgid "No tags" +msgstr "Sin etiquetas" + +#: ../../enterprise/operation/agentes/tag_view.php:278 +#: ../../godmode/agentes/module_manager_editor_data.php:15 +#: ../../operation/agentes/status_monitor.php:621 +msgid "Data server module" +msgstr "MĆ³dulo del servidor de datos" + +#: ../../enterprise/operation/agentes/tag_view.php:280 +#: ../../godmode/agentes/module_manager_editor_network.php:77 +#: ../../operation/agentes/status_monitor.php:623 +msgid "Network server module" +msgstr "MĆ³dulo del servidor de red" + +#: ../../enterprise/operation/agentes/tag_view.php:284 +#: ../../godmode/agentes/module_manager_editor_plugin.php:46 +#: ../../operation/agentes/status_monitor.php:627 +msgid "Plugin server module" +msgstr "MĆ³dulo del servidor de plugin" + +#: ../../enterprise/operation/agentes/tag_view.php:288 +#: ../../godmode/agentes/module_manager_editor_wmi.php:33 +#: ../../operation/agentes/status_monitor.php:631 +msgid "WMI server module" +msgstr "MĆ³dulo del servidor WMI" + +#: ../../enterprise/operation/agentes/tag_view.php:292 +#: ../../godmode/agentes/module_manager_editor_prediction.php:107 +#: ../../operation/agentes/status_monitor.php:635 +msgid "Prediction server module" +msgstr "MĆ³dulo del servidor de predicciĆ³n" + +#: ../../enterprise/operation/agentes/tag_view.php:296 +#: ../../godmode/agentes/module_manager_editor_web.php:55 +#: ../../operation/agentes/status_monitor.php:639 +msgid "Web server module" +msgstr "MĆ³dulo del servidor web" + +#: ../../enterprise/operation/agentes/tag_view.php:299 +#: ../../enterprise/operation/agentes/tag_view.php:680 +#: ../../godmode/agentes/status_monitor_custom_fields.php:89 +#: ../../godmode/agentes/status_monitor_custom_fields.php:146 +#: ../../operation/agentes/status_monitor.php:646 +#: ../../operation/agentes/status_monitor.php:1323 +msgid "Server type" +msgstr "Tipo de servidor" + +#: ../../enterprise/operation/agentes/tag_view.php:305 +#: ../../godmode/agentes/modificar_agente.php:337 +#: ../../operation/agentes/status_monitor.php:652 +msgid "Only enabled" +msgstr "Solo habilitados" + +#: ../../enterprise/operation/agentes/tag_view.php:306 +#: ../../godmode/agentes/modificar_agente.php:336 +#: ../../operation/agentes/status_monitor.php:653 +msgid "Only disabled" +msgstr "Solo deshabilitados" + +#: ../../enterprise/operation/agentes/tag_view.php:309 +#: ../../operation/agentes/status_monitor.php:656 +msgid "Show monitors..." +msgstr "Mostrar mĆ³dulos..." + +#: ../../enterprise/operation/agentes/tag_view.php:319 +#: ../../enterprise/operation/agentes/tag_view.php:679 +#: ../../godmode/agentes/status_monitor_custom_fields.php:81 +#: ../../godmode/agentes/status_monitor_custom_fields.php:144 +#: ../../operation/agentes/status_monitor.php:666 +msgid "Data type" +msgstr "Tipo de dato" + +#: ../../enterprise/operation/agentes/tag_view.php:447 +#: ../../operation/agentes/agent_fields.php:37 +#: ../../operation/agentes/status_monitor.php:831 +msgid "Agent custom fields" +msgstr "Campos personalizados de agente" + +#: ../../enterprise/operation/agentes/tag_view.php:647 +#: ../../operation/agentes/estado_agente.php:898 +msgid "Remote config" +msgstr "ConfiguraciĆ³n remota" + +#: ../../enterprise/operation/agentes/tag_view.php:682 +#: ../../enterprise/operation/services/services.service.php:130 +#: ../../enterprise/operation/services/services.list.php:509 +#: ../../extensions/realtime_graphs.php:161 +#: ../../godmode/agentes/status_monitor_custom_fields.php:105 +#: ../../godmode/agentes/status_monitor_custom_fields.php:150 +#: ../../include/functions_visual_map_editor.php:58 ../../include/ajax/module.php:983 +#: ../../include/class/NetworkMap.class.php:2908 +#: ../../include/lib/Dashboard/Widgets/custom_graph.php:303 +#: ../../include/functions_events.php:4126 +#: ../../operation/agentes/status_monitor.php:1346 ../../operation/search_modules.php:37 +msgid "Graph" +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:864 +#: ../../operation/agentes/status_monitor.php:1351 +msgid "Warn" +msgstr "Advertencia" + +#: ../../enterprise/operation/agentes/tag_view.php:935 +#: ../../mobile/operation/modules.php:542 ../../mobile/operation/modules.php:605 +#: ../../include/functions_modules.php:2874 ../../include/functions_modules.php:4114 +#: ../../include/functions_events.php:70 ../../operation/agentes/status_monitor.php:1572 +#: ../../operation/search_modules.php:108 ../../operation/events/events.php:656 +msgid "NOT INIT" +msgstr "No iniciado" + +#: ../../enterprise/operation/agentes/tag_view.php:1075 +#: ../../include/functions_reporting.php:12533 +#: ../../include/functions_reporting.php:12542 +#, php-format +msgid "%d Total modules" +msgstr "%d mĆ³dulos totales" + +#: ../../enterprise/operation/agentes/tag_view.php:1076 +#: ../../include/functions_reporting.php:12534 +#, php-format +msgid "%d Modules in normal status" +msgstr "%d mĆ³dulos en estado normal" + +#: ../../enterprise/operation/agentes/tag_view.php:1077 +#: ../../include/functions_reporting.php:12535 +#, php-format +msgid "%d Modules in critical status" +msgstr "%d mĆ³dulos en estado crĆ­tico" + +#: ../../enterprise/operation/agentes/tag_view.php:1078 +#: ../../include/functions_reporting.php:12536 +#, php-format +msgid "%d Modules in warning status" +msgstr "%d mĆ³dulos en estado de advertencia" + +#: ../../enterprise/operation/agentes/tag_view.php:1079 +#: ../../include/functions_reporting.php:12537 +#, php-format +msgid "%d Modules in unknown status" +msgstr "%d mĆ³dulos en estado desconocido" + +#: ../../enterprise/operation/agentes/tag_view.php:1080 +#: ../../include/functions_reporting.php:12538 +#, php-format +msgid "%d Modules in not init status" +msgstr "%d mĆ³dulos en estado no iniciado" + +#: ../../enterprise/operation/agentes/manage_transmap.php:84 +#: ../../enterprise/operation/agentes/manage_transmap_creation.php:127 +#: ../../enterprise/operation/agentes/manage_transmap_creation.php:429 +msgid "Edit main data" +msgstr "Editar datos principales" + +#: ../../enterprise/operation/agentes/manage_transmap.php:109 +#: ../../enterprise/operation/agentes/manage_transmap_creation.php:152 +#: ../../enterprise/operation/agentes/manage_transmap_creation.php:454 +msgid "View Transaction" +msgstr "Ver transacciĆ³n" + +#: ../../enterprise/operation/agentes/manage_transmap.php:153 +msgid "Return to windowed mode" +msgstr "Volver al modo ventana" + +#: ../../enterprise/operation/agentes/manage_transmap.php:182 +msgid "Transaction not found" +msgstr "TransacciĆ³n no encontrada" + +#: ../../enterprise/operation/agentes/manage_transmap.php:185 +msgid "Master lock file not found (No data to show)" +msgstr "Archivo de bloqueo maestro no encontrado (no hay datos que mostrar)" + +#: ../../enterprise/operation/agentes/manage_transmap.php:188 +msgid "Transaction is stopped" +msgstr "TransacciĆ³n detenida" + +#: ../../enterprise/operation/agentes/manage_transmap.php:191 +msgid "Error, please check the transaction phases" +msgstr "Error. Por favor, comprueba las fases de la transacciĆ³n." + +#: ../../enterprise/operation/agentes/ver_agente.php:72 +#: ../../operation/agentes/ver_agente.php:1017 +msgid "Main IP" +msgstr "IP principal" + +#: ../../enterprise/operation/agentes/ver_agente.php:78 +#: ../../include/functions_events.php:4053 ../../operation/agentes/ver_agente.php:1029 +msgid "Last remote contact" +msgstr "ƚltimo contacto remoto" + +#: ../../enterprise/operation/agentes/ver_agente.php:122 +#: ../../operation/agentes/ver_agente.php:1074 +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:576 +#: ../../operation/agentes/ver_agente.php:1115 +msgid "Alerts fired" +msgstr "Alertas disparadas" + +#: ../../enterprise/operation/agentes/ver_agente.php:258 +msgid "URL Route Analyzer" +msgstr "Analizador de ruta de URL" + +#: ../../enterprise/operation/agentes/ver_agente.php:274 +msgid "UX Console" +msgstr "Consola UX" + +#: ../../enterprise/operation/agentes/ver_agente.php:290 +msgid "WUX Console" +msgstr "Consola WUX" + +#: ../../enterprise/operation/agentes/collection_view.php:66 +msgid "No collection assigned to this agent" +msgstr "No se ha asignado ninguna colecciĆ³n a este agente." + +#: ../../enterprise/operation/agentes/manage_transmap_creation.php:63 +msgid "Please, reset the transaction" +msgstr "Por favor, reinicia la transacciĆ³n." + +#: ../../enterprise/operation/agentes/manage_transmap_creation.php:102 +msgid "Successfully data updated" +msgstr "Datos actualizados correctamente" + +#: ../../enterprise/operation/agentes/manage_transmap_creation.php:103 +msgid "Could not be data updated" +msgstr "Error al actualizar los datos" + +#: ../../enterprise/operation/agentes/manage_transmap_creation.php:160 +msgid "Create Phase" +msgstr "Fase de creaciĆ³n" + +#: ../../enterprise/operation/agentes/manage_transmap_creation.php:185 +msgid "Index" +msgstr "ƍndice" + +#: ../../enterprise/operation/agentes/manage_transmap_creation.php:188 +msgid "Dependencies" +msgstr "Dependencias" + +#: ../../enterprise/operation/agentes/manage_transmap_creation.php:189 +msgid "Enables" +msgstr "Activa" + +#: ../../enterprise/operation/agentes/manage_transmap_creation.php:254 +msgid "Not valid dependencies field" +msgstr "Campo de dependencias no vĆ”lido" + +#: ../../enterprise/operation/agentes/manage_transmap_creation.php:260 +msgid "Not valid enables field" +msgstr "Campo de activaciĆ³n no vĆ”lido" + +#: ../../enterprise/operation/agentes/manage_transmap_creation.php:367 +#: ../../enterprise/operation/agentes/manage_transmap_creation.php:493 +msgid "Loop interval" +msgstr "Intervalo del bucle" + +#: ../../enterprise/operation/agentes/manage_transmap_creation.php:462 +msgid "Transactional Map - Edit Transaction" +msgstr "Mapa transaccional - Editar transacciĆ³n" + +#: ../../enterprise/operation/agentes/url_route_analyzer.php:39 +msgid "No agent selected" +msgstr "No hay ningĆŗn agente seleccionado." + +#: ../../enterprise/operation/agentes/url_route_analyzer.php:42 +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" + +#: ../../enterprise/operation/agentes/ux_console_view.php:124 +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 +msgid "Transaction" +msgstr "TransacciĆ³n" + +#: ../../enterprise/operation/agentes/ux_console_view.php:142 +#: ../../enterprise/operation/agentes/wux_console_view.php:286 +msgid "Show transaction" +msgstr "Mostrar transacciĆ³n" + +#: ../../enterprise/operation/agentes/ux_console_view.php:168 +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 +msgid "Global results" +msgstr "Resultados globales" + +#: ../../enterprise/operation/agentes/ux_console_view.php:332 +#: ../../enterprise/operation/agentes/wux_console_view.php:570 +msgid "Transaction history" +msgstr "HistĆ³rico de transacciones" + +#: ../../enterprise/operation/agentes/wux_console_view.php:75 +#: ../../include/lib/Dashboard/Widgets/wux_transaction.php:320 +msgid "No wux transaction selected." +msgstr "Ninguna transacciĆ³n WUX seleccionada" + +#: ../../enterprise/operation/agentes/wux_console_view.php:149 +#: ../../include/lib/Dashboard/Widgets/wux_transaction.php:398 +msgid "Phase modules not found" +msgstr "Fase de mĆ³dulo no encontrada" + +#: ../../enterprise/operation/agentes/wux_console_view.php:224 +msgid "Selected transaction has no stats" +msgstr "La transacciĆ³n seleccionada no tiene estadĆ­sticas." + +#: ../../enterprise/operation/agentes/wux_console_view.php:242 +msgid "No WUX transactions found." +msgstr "Ninguna transacciĆ³n WUX encontrada" + +#: ../../enterprise/operation/agentes/wux_console_view.php:357 +msgid "Failed: " +msgstr "Fallo: " + +#: ../../enterprise/operation/agentes/wux_console_view.php:357 +#: ../../enterprise/operation/agentes/wux_console_view.php:378 +#: ../../godmode/setup/performance.php:188 ../../godmode/setup/performance.php:243 +#: ../../general/logon_ok.php:184 +msgid "ago" +msgstr "hace" + +#: ../../enterprise/operation/agentes/wux_console_view.php:369 +#: ../../enterprise/operation/agentes/wux_console_view.php:373 +#: ../../include/functions_alerts.php:681 +msgid "Unknown status" +msgstr "Estado desconocido" + +#: ../../enterprise/operation/agentes/wux_console_view.php:378 +msgid "Success: " +msgstr "Ɖxito: " + +#: ../../enterprise/operation/agentes/wux_console_view.php:384 +msgid "Total transaction time: " +msgstr "Tiempo total de la transacciĆ³n: " + +#: ../../enterprise/operation/agentes/wux_console_view.php:398 +#, 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 +msgid "View all stats" +msgstr "Ver todas las estadĆ­sticas" + +#: ../../enterprise/operation/agentes/wux_console_view.php:595 +#: ../../operation/snmpconsole/snmp_view.php:1061 +#: ../../operation/snmpconsole/snmp_view.php:1062 ../../operation/menu.php:239 +#: ../../operation/menu.php:241 ../../operation/events/events.php:500 +#: ../../operation/events/events.php:763 +msgid "Show more" +msgstr "Mostrar mĆ”s" + +#: ../../enterprise/operation/agentes/wux_console_view.php:611 +msgid "Invalid transaction." +msgstr "TransacciĆ³n no vĆ”lida" + +#: ../../enterprise/operation/log/elasticsearch_interface.php:39 +#: ../../enterprise/operation/log/log_viewer.php:391 +#: ../../enterprise/operation/menu.php:211 +msgid "Elasticsearch Interface" +msgstr "Interfaz de ElasticSearch" + +#: ../../enterprise/operation/log/elasticsearch_interface.php:49 +msgid "" +"This is a view to interface with Elasticsearch directly from WEB console. \n" +"Please note that you can damage your Elasticsearch if you don`t know exactly what are " +"you are doing. \n" +"This view is intended to be used only by users with a knowledge of Elasticsearch" +msgstr "" +"Esta es una vista de la interfaz de ElasticSearch directamente desde la consola " +"WEB. \n" +"Tenga en cuenta que puede provocar fallos en ElasticSearch si no sabe lo que estĆ” " +"haciendo con exactitud. \n" +"Esta vista esta destinada a aquellos usuarios que conocen bien ElasticSearch" + +#: ../../enterprise/operation/log/log_viewer.php:405 +#: ../../enterprise/operation/log/log_viewer.php:424 +#: ../../enterprise/operation/log/log_viewer.php:435 +msgid "Log sources" +msgstr "Fuentes de log" + +#: ../../enterprise/operation/log/log_viewer.php:478 +msgid "All words" +msgstr "Todas las palabras" + +#: ../../enterprise/operation/log/log_viewer.php:479 +msgid "Any word" +msgstr "Cualquier palabra" + +#: ../../enterprise/operation/log/log_viewer.php:482 +msgid "Search mode" +msgstr "Modo de bĆŗsqueda" + +#: ../../enterprise/operation/log/log_viewer.php:529 +msgid "Full context" +msgstr "Contexto completo" + +#: ../../enterprise/operation/log/log_viewer.php:552 +#: ../../operation/network/network_report.php:102 +#: ../../operation/network/network_usage_map.php:75 +#: ../../operation/netflow/nf_live_view.php:271 +msgid "Start date" +msgstr "Fecha de inicio" + +#: ../../enterprise/operation/log/log_viewer.php:579 +#: ../../operation/agentes/exportdata.php:347 +#: ../../operation/network/network_report.php:126 +#: ../../operation/network/network_usage_map.php:99 +#: ../../operation/netflow/nf_live_view.php:295 +msgid "End date" +msgstr "Fecha final" + +#: ../../enterprise/operation/log/log_viewer.php:667 +#: ../../enterprise/operation/log/log_viewer.php:668 +msgid "Edit sources" +msgstr "Editar fuentes" + +#: ../../enterprise/operation/log/log_viewer.php:711 +msgid "Show log entries" +msgstr "Mostrar entradas de log" + +#: ../../enterprise/operation/log/log_viewer.php:712 +msgid "Graph log results" +msgstr "Resultados de logs de grĆ”ficas" + +#: ../../enterprise/operation/log/log_viewer.php:714 +msgid "Display mode" +msgstr "Modo de visualizaciĆ³n" + +#: ../../enterprise/operation/log/log_viewer.php:727 +msgid "Use capture model" +msgstr "Usar modelo de captura" + +#: ../../enterprise/operation/log/log_viewer.php:757 +msgid "Create new model" +msgstr "Crear nuevo modelo" + +#: ../../enterprise/operation/log/log_viewer.php:761 +#: ../../godmode/reporting/graph_builder.main.php:220 +msgid "Horizontal bars" +msgstr "Barras horizontales" + +#: ../../enterprise/operation/log/log_viewer.php:762 +#: ../../godmode/reporting/graph_builder.main.php:221 +msgid "Vertical bars" +msgstr "Barras verticales" + +#: ../../enterprise/operation/log/log_viewer.php:764 +msgid "Graph type" +msgstr "Tipo de grĆ”fica" + +#: ../../enterprise/operation/log/log_viewer.php:779 +msgid "Advanced options " +msgstr "Opciones avanzadas " + +#: ../../enterprise/operation/log/log_viewer.php:899 +msgid "" +"The maximum limit of rows has been exceeded. Please enter an email to send the csv " +"file" +msgstr "" +"El lĆ­mite mĆ”ximo de filas se ha superado. AƱada un correo electrĆ³nico para enviar el " +"archivo CSV" + +#: ../../enterprise/operation/log/log_viewer.php:901 +msgid "e-mail address" +msgstr "direcciĆ³n de correo electrĆ³nico" + +#: ../../enterprise/operation/log/log_viewer.php:904 +msgid "" +"WARNING: If your email size exceeds your mail attachment size limit, the file will be " +"saved in the local attachment folder." +msgstr "" +"ADVERTENCIA: Si el tamaƱo del correo electrĆ³nico supera el lĆ­mite de tamaƱo de " +"archivo adjunto, el archivo se guardarĆ” en la carpeta de adjuntos local." + +#: ../../enterprise/operation/log/log_viewer.php:1022 +msgid "The start date cannot be greater than the end date" +msgstr "La fecha de inicio no puede ser posterior a la fecha de finalizaciĆ³n." + +#: ../../enterprise/operation/log/log_viewer.php:1450 +msgid "Add new capture model" +msgstr "AƱadir nuevo modelo de captura" + +#: ../../enterprise/operation/log/log_viewer.php:1453 +msgid "Edit capture model" +msgstr "Editar modelo de captura" + +#: ../../enterprise/operation/log/log_viewer.php:1536 +msgid "Error create new model" +msgstr "Error al crear nuevo modelo" + +#: ../../enterprise/operation/log/log_viewer.php:1563 +msgid "Error delete model" +msgstr "Error al borrar modelo" + +#: ../../enterprise/operation/log/log_viewer.php:1609 +msgid "Error update model" +msgstr "Error al actualizar modelo" + +#: ../../enterprise/operation/menu.php:32 +msgid "Cluster View" +msgstr "Visor de clĆŗsters" + +#: ../../enterprise/operation/menu.php:61 ../../operation/agentes/ver_agente.php:1683 +#: ../../operation/agentes/ver_agente.php:1882 +msgid "SAP view" +msgstr "Vista SAP" + +#: ../../enterprise/operation/menu.php:143 +msgid "Transactional map" +msgstr "Mapa transaccional" + +#: ../../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:2174 +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 +msgid "Service Map" +msgstr "Mapa de servicio" + +#: ../../enterprise/operation/services/services.service.php:90 +msgid "No Services" +msgstr "Sin servicios" + +#: ../../enterprise/operation/services/services.service.php:203 +#: ../../enterprise/operation/services/services.list.php:586 +msgid "SLA graph" +msgstr "GrĆ”fico SLA" + +#: ../../enterprise/operation/services/services.service.php:227 +msgid "List of elements" +msgstr "Lista de elementos" + +#: ../../enterprise/operation/services/services.php:197 +msgid "Service table view" +msgstr "Vista de tabla de servicios" + +#: ../../enterprise/operation/services/services.php:212 +msgid "Service tree view" +msgstr "Vista de Ć”rbol de servicios" + +#: ../../enterprise/operation/services/services.php:229 +msgid "Bulk creation" +msgstr "CreaciĆ³n masiva" + +#: ../../enterprise/operation/services/services.service_map.php:116 +msgid "Show tree" +msgstr "Mostrar arbol" + +#: ../../enterprise/operation/services/services.service_map.php:130 +msgid "Show sunburst" +msgstr "Mostrar sunburst" + +#: ../../enterprise/operation/services/services.service_map.php:139 +#: ../../extensions/agents_modules.php:947 ../../extensions/module_groups.php:391 +#: ../../godmode/snmpconsole/snmp_alert.php:1518 +#: ../../include/functions_reporting_html.php:2068 +#: ../../operation/snmpconsole/snmp_view.php:1272 +msgid "Legend" +msgstr "Leyenda" + +#: ../../enterprise/operation/services/services.treeview_services.php:117 +msgid "Search service" +msgstr "Buscar servicio" + +#: ../../enterprise/operation/services/services.treeview_services.php:119 +#: ../../enterprise/operation/services/services.list.php:284 +#: ../../enterprise/operation/services/services.table_services.php:206 +msgid "Show only favourites" +msgstr "Mostrar solo favoritos" + +#: ../../enterprise/operation/services/services.treeview_services.php:157 +msgid "No favourite services defined." +msgstr "No hay servicios favoritos definidos." + +#: ../../enterprise/operation/services/services.treeview_services.php:159 +msgid "No services matched." +msgstr "No coincide ningĆŗn servicio." + +#: ../../enterprise/operation/services/services.treeview_services.php:161 +#: ../../enterprise/operation/services/services.list.php:447 +#: ../../enterprise/operation/services/services.list.php:456 +#: ../../enterprise/operation/services/services.table_services.php:359 +#: ../../enterprise/operation/services/services.table_services.php:365 +msgid "No services defined." +msgstr "No hay servicios definidos" + +#: ../../enterprise/operation/services/services.treeview_services.php:189 +#: ../../enterprise/operation/services/services.list.php:719 +#: ../../enterprise/operation/services/services.table_services.php:450 +msgid "Create Service" +msgstr "Crear servicio" + +#: ../../enterprise/operation/services/services.treeview_services.php:256 +#: ../../godmode/groups/group_list.php:1035 +msgid "Found groups" +msgstr "Grupos encontrados" + +#: ../../enterprise/operation/services/services.treeview_services.php:350 +#: ../../operation/tree.php:539 ../../operation/agentes/status_monitor.php:2055 +#: ../../operation/agentes/estado_monitores.php:421 +msgid "Module: " +msgstr "MĆ³dulo: " + +#: ../../enterprise/operation/services/services.list.php:62 +msgid "List of services" +msgstr "de los Servicios" + +#: ../../enterprise/operation/services/services.list.php:100 +msgid "Services successfully deleted" +msgstr "Servicios eliminados correctamente" + +#: ../../enterprise/operation/services/services.list.php:101 +#, php-format +msgid "Error while deleting services: %s" +msgstr "Error al eliminar servicios: %s" + +#: ../../enterprise/operation/services/services.list.php:118 +msgid "Service deleted successfully" +msgstr "Servicio eliminado correctamente" + +#: ../../enterprise/operation/services/services.list.php:119 +#, php-format +msgid "Error deleting service %s" +msgstr "Error al eliminar el servicio %s" + +#: ../../enterprise/operation/services/services.list.php:127 +msgid "Service forced successfully" +msgstr "Servicio forzado correctamente" + +#: ../../enterprise/operation/services/services.list.php:128 +msgid "Error service forced" +msgstr "Error al forzar el servicio" + +#: ../../enterprise/operation/services/services.list.php:298 +#: ../../enterprise/operation/services/services.table_services.php:220 +msgid "Show only root services" +msgstr "Mostrar solo los servicios root" + +#: ../../enterprise/operation/services/services.list.php:590 +msgid "Status graph" +msgstr "GrĆ”fica de estados" + +#: ../../enterprise/operation/services/services.list.php:625 +#: ../../operation/heatmap.php:70 ../../operation/heatmap.php:279 +#: ../../operation/agentes/pandora_networkmap.php:800 +msgid "Config" +msgstr "ConfiguraciĆ³n" + +#: ../../enterprise/operation/services/services.table_services.php:45 +#: ../../godmode/groups/group_list.php:355 +msgid "Table view" +msgstr "Vista de tabla" + +#: ../../enterprise/tools/ipam/ipam.php:52 ../../extensions/files_repo.php:122 +#: ../../extensions/files_repo.php:210 +msgid "Operation view" +msgstr "Vista de operaciĆ³n" + +#: ../../enterprise/tools/ipam/ipam.php:78 ../../enterprise/tools/ipam/ipam.php:356 +msgid "Subnetworks calculator" +msgstr "Calculadora de subredes" + +#: ../../enterprise/tools/ipam/ipam.php:96 +msgid "Vlan config" +msgstr "ConfiguraciĆ³n de vlan" + +#: ../../enterprise/tools/ipam/ipam.php:114 +msgid "Vlan wizard" +msgstr "Asistente de vlan" + +#: ../../enterprise/tools/ipam/ipam.php:133 +msgid "Supernet treeview" +msgstr "VĆ­sta de Ć”rbol de superredes" + +#: ../../enterprise/tools/ipam/ipam.php:152 +msgid "Network locations" +msgstr "Ubicaciones de red" + +#: ../../enterprise/tools/ipam/ipam.php:196 +msgid "Vlan statistics" +msgstr "EstadĆ­sticas de vlan" + +#: ../../enterprise/tools/ipam/ipam.php:216 ../../enterprise/tools/ipam/ipam.php:381 +msgid "Supernet config" +msgstr "ConfiguraciĆ³n de superred" + +#: ../../enterprise/tools/ipam/ipam.php:237 ../../enterprise/tools/ipam/ipam.php:396 +msgid "Supernet statistics" +msgstr "EstadĆ­sticas de superred" + +#: ../../enterprise/tools/ipam/ipam.php:257 +msgid "Supernet map" +msgstr "Mapa de superred" + +#: ../../enterprise/tools/ipam/ipam.php:280 +#: ../../enterprise/tools/ipam/ipam_list.php:685 +msgid "Manage addresses" +msgstr "Administrar direcciones" + +#: ../../enterprise/tools/ipam/ipam.php:320 +#: ../../enterprise/tools/ipam/ipam_list.php:694 +msgid "Addresses view" +msgstr "Vista de direcciones" + +#: ../../enterprise/tools/ipam/ipam.php:352 +msgid "/tools/ipam/ipam_network.php" +msgstr "/tools/ipam/ipam_network.php" + +#: ../../enterprise/tools/ipam/ipam.php:366 +msgid "VLAN Config" +msgstr "ConfiguraciĆ³n de VLAN" + +#: ../../enterprise/tools/ipam/ipam.php:371 +msgid "VLAN Wizard" +msgstr "Asistente de VLAN" + +#: ../../enterprise/tools/ipam/ipam.php:376 +msgid "VLAN Statistics" +msgstr "EstadĆ­sticas VLAN" + +#: ../../enterprise/tools/ipam/ipam.php:386 +msgid "Network location config" +msgstr "ConfiguraciĆ³n de ubicaciĆ³n de red" + +#: ../../enterprise/tools/ipam/ipam.php:391 +msgid "Supernet wizard" +msgstr "Asistente de superredes" + +#: ../../enterprise/tools/ipam/ipam.php:401 +msgid "Supernet Map" +msgstr "Mapa de superred" + +#: ../../enterprise/tools/ipam/ipam.php:406 +msgid "Supernet Treeview" +msgstr "Superred creada" + +#: ../../enterprise/tools/ipam/ipam.php:432 +msgid "Operation View" +msgstr "Vista de operaciĆ³n" + +#: ../../enterprise/tools/ipam/ipam.php:449 ../../godmode/menu.php:388 +#: ../../godmode/setup/file_manager.php:56 +msgid "Admin tools" +msgstr "Herramientas administrativas" + +#: ../../enterprise/tools/ipam/ipam_sites.php:70 +msgid "Successfully saved" +msgstr "Guardado correctamente" + +#: ../../enterprise/tools/ipam/ipam_sites.php:76 +#, php-format +msgid "Failed to save site %s" +msgstr "Error al guardar el sitio %s" + +#: ../../enterprise/tools/ipam/ipam_sites.php:132 +#, php-format +msgid "Failed to delete site %s" +msgstr "Error al eliminar el sitio %s" + +#: ../../enterprise/tools/ipam/ipam_network.php:163 +msgid "No addresses found on this network" +msgstr "No se han encontrado direcciones en esta red" + +#: ../../enterprise/tools/ipam/ipam_network.php:314 +msgid "Edit address" +msgstr "Modificar direcciĆ³n" + +#: ../../enterprise/tools/ipam/ipam_network.php:327 +msgid "Disabled address" +msgstr "Deshabilitar direciĆ³n" + +#: ../../enterprise/tools/ipam/ipam_network.php:327 +msgid "This address will not be updated by the server" +msgstr "Esta direcciĆ³n no serĆ” actualizada por el servidor." + +#: ../../enterprise/tools/ipam/ipam_network.php:423 +#: ../../godmode/wizards/DiscoveryTaskList.class.php:1396 +msgid "Not alive" +msgstr "Inactivo" + +#: ../../enterprise/tools/ipam/ipam_network.php:454 +#: ../../enterprise/tools/ipam/ipam_network.php:533 +#: ../../enterprise/tools/ipam/ipam_network.php:575 +msgid "Change to automatic mode" +msgstr "Cambiar a modo automĆ”tico" + +#: ../../enterprise/tools/ipam/ipam_network.php:463 +#: ../../enterprise/tools/ipam/ipam_network.php:542 +#: ../../enterprise/tools/ipam/ipam_network.php:584 +msgid "Change to manual mode" +msgstr "Cambiar a modo manual" + +#: ../../enterprise/tools/ipam/ipam_network.php:663 +msgid "Add comments" +msgstr "AƱadir comentarios" + +#: ../../enterprise/tools/ipam/ipam_network.php:691 +msgid "Update agent address" +msgstr "Actualizar direcciĆ³n de agente" + +#: ../../enterprise/tools/ipam/ipam_network.php:857 +msgid "Please, uncheck auto option to set manual agent." +msgstr "Desmarcar la opciĆ³n automĆ”tica para establecer agente manual" + +#: ../../enterprise/tools/ipam/ipam_supernet_config.php:52 +#: ../../enterprise/tools/ipam/ipam_supernet_config.php:100 +msgid "There is no supernet name. Please introduce a name" +msgstr "No hay nombre de superred. AƱada un nombre." + +#: ../../enterprise/tools/ipam/ipam_supernet_config.php:56 +#: ../../enterprise/tools/ipam/ipam_supernet_config.php:104 +msgid "There is no supernet address. Please introduce a address" +msgstr "No hay direcciĆ³n de superred. AƱada una direcciĆ³n." + +#: ../../enterprise/tools/ipam/ipam_supernet_config.php:60 +#: ../../enterprise/tools/ipam/ipam_supernet_config.php:108 +msgid "There is no supernet mask. Please introduce a mask" +msgstr "No hay mĆ”scara de superred. AƱada una mĆ”scara" + +#: ../../enterprise/tools/ipam/ipam_supernet_config.php:64 +msgid "There is no valid address. Please introduce a address" +msgstr "No hay direcciĆ³n vĆ”lida. AƱada una direcciĆ³n." + +#: ../../enterprise/tools/ipam/ipam_supernet_config.php:68 +msgid "There is no valid mask. Please introduce a mask" +msgstr "No hay mĆ”scara vĆ”lida. AƱada una mĆ”scara" + +#: ../../enterprise/tools/ipam/ipam_supernet_config.php:83 +msgid "Supernet created" +msgstr "Superred creada." + +#: ../../enterprise/tools/ipam/ipam_supernet_config.php:85 +msgid "Supernet not created" +msgstr "Superred no creada" + +#: ../../enterprise/tools/ipam/ipam_supernet_config.php:89 +#: ../../enterprise/tools/ipam/ipam_supernet_config.php:135 +msgid "Supernet name exists in bbdd, please select other name" +msgstr "El nombre de la superred existe en la base de datos, seleccione otro nombre." + +#: ../../enterprise/tools/ipam/ipam_supernet_config.php:129 +msgid "Supernet updated" +msgstr "Superred actualizada" + +#: ../../enterprise/tools/ipam/ipam_supernet_config.php:131 +msgid "Supernet not updated" +msgstr "Superred no actualizada" + +#: ../../enterprise/tools/ipam/ipam_supernet_config.php:156 +msgid "Could not be deleted, please select supernet" +msgstr "No se ha podido borrar, seleccione una superred" + +#: ../../enterprise/tools/ipam/ipam_supernet_config.php:227 +#: ../../enterprise/tools/ipam/ipam_supernet_config.php:327 +#: ../../enterprise/tools/ipam/ipam_list.php:383 +#: ../../enterprise/tools/ipam/ipam_action.php:121 +#: ../../enterprise/tools/ipam/ipam_action.php:240 +msgid "The location is not filled, please add a location." +msgstr "La ubicaciĆ³n no estĆ” indicada. Por favor, aƱade una ubicaciĆ³n." + +#: ../../enterprise/tools/ipam/ipam_supernet_config.php:395 +#, php-format +msgid "Successfully created %d networks" +msgstr "Redes %d creadas con Ć©xito" + +#: ../../enterprise/tools/ipam/ipam_supernet_config.php:399 +msgid "Failed to create networks" +msgstr "Error al crear redes" + +#: ../../enterprise/tools/ipam/ipam_supernet_config.php:402 +msgid "Entered range address is not valid" +msgstr "La direcciĆ³n de intervalo introducida no es vĆ”lida" + +#: ../../enterprise/tools/ipam/ipam_supernet_config.php:429 +msgid "Network name cannot be repeated in this supernet" +msgstr "El nombre de la red no puede repetirse en la superred" + +#: ../../enterprise/tools/ipam/ipam_supernet_config.php:436 +#: ../../enterprise/tools/ipam/ipam_vlan_config.php:170 +msgid "Successfully added networks" +msgstr "Redes aƱadidas correctamente" + +#: ../../enterprise/tools/ipam/ipam_supernet_config.php:440 +#: ../../enterprise/tools/ipam/ipam_vlan_config.php:174 +msgid "Network could not be added" +msgstr "No se ha podido aƱadir la red" + +#: ../../enterprise/tools/ipam/ipam_supernet_config.php:445 +msgid "No networks to be added to supernet" +msgstr "No hay redes a agregar a la superred" + +#: ../../enterprise/tools/ipam/ipam_supernet_config.php:450 +msgid "supernet name could not be added, please select supernet" +msgstr "No se ha podido aƱadir el nombre de la superred, seleccione superred" + +#: ../../enterprise/tools/ipam/ipam_supernet_config.php:479 +msgid "Could not be deleted, please select supernet and network" +msgstr "No se ha podido eliminar, seleccione una red y una superred" + +#: ../../enterprise/tools/ipam/ipam_supernet_config.php:486 +#, php-format +msgid "Failed to delete %d/%d networks from supernet" +msgstr "Error al eliminar las redes %d/%d de la superred" + +#: ../../enterprise/tools/ipam/ipam_supernet_config.php:490 +msgid "Successfully deleted network from supernet" +msgstr "Red eliminada correctamente de la superred" + +#: ../../enterprise/tools/ipam/ipam_supernet_config.php:492 +#, php-format +msgid "Successfully deleted %d/%d networks from supernet" +msgstr "Redes %d/%d eliminadas correctamente de la superred" + +#: ../../enterprise/tools/ipam/ipam_supernet_config.php:495 +#: ../../enterprise/tools/ipam/ipam_vlan_config.php:228 +msgid "No items selected" +msgstr "No hay elementos seleccionados" + +#: ../../enterprise/tools/ipam/ipam_supernet_config.php:564 +#: ../../enterprise/tools/ipam/ipam_excel.php:134 +#: ../../enterprise/tools/ipam/ipam_calculator.php:84 +msgid "Mask" +msgstr "MĆ”scara" + +#: ../../enterprise/tools/ipam/ipam_supernet_config.php:582 +msgid "Subnetting Mask" +msgstr "MĆ”scara de subred" + +#: ../../enterprise/tools/ipam/ipam_supernet_config.php:605 +#: ../../enterprise/tools/ipam/ipam_supernet_config.php:777 +#: ../../enterprise/tools/ipam/ipam_supernet_config.php:1064 +#: ../../enterprise/tools/ipam/ipam_list.php:129 +#: ../../enterprise/tools/ipam/ipam_list.php:595 +msgid "Site" +msgstr "Sitio" + +#: ../../enterprise/tools/ipam/ipam_supernet_config.php:640 +#: ../../enterprise/tools/ipam/ipam_supernet_config.php:1313 +msgid "Update Supernet" +msgstr "Actualizar superred" + +#: ../../enterprise/tools/ipam/ipam_supernet_config.php:647 +#: ../../enterprise/tools/ipam/ipam_supernet_config.php:1451 +msgid "New Supernet" +msgstr "Nueva superred" + +#: ../../enterprise/tools/ipam/ipam_supernet_config.php:688 +#, php-format +msgid "%s supernets created" +msgstr "%s superredes creadas" + +#: ../../enterprise/tools/ipam/ipam_supernet_config.php:690 +msgid "supernets creation failed" +msgstr "Error en la creaciĆ³n de superredes" + +#: ../../enterprise/tools/ipam/ipam_supernet_config.php:763 +#: ../../enterprise/tools/ipam/ipam_list.php:93 +msgid "Search filter by name, network address or description" +msgstr "Filtro de bĆŗsqueda por nombre, direcciĆ³n de red o descripciĆ³n" + +#: ../../enterprise/tools/ipam/ipam_supernet_config.php:790 +msgid "Min. networks range" +msgstr "Rango mĆ­nimo de redes" + +#: ../../enterprise/tools/ipam/ipam_supernet_config.php:793 +msgid "Max. networks range" +msgstr "Alcance mĆ”x. de las redes" + +#: ../../enterprise/tools/ipam/ipam_supernet_config.php:1060 +msgid "Address / Masks" +msgstr "DirecciĆ³n / MĆ”scaras" + +#: ../../enterprise/tools/ipam/ipam_supernet_config.php:1062 +msgid "Subnetting mask" +msgstr "MĆ”scara de subred" + +#: ../../enterprise/tools/ipam/ipam_supernet_config.php:1063 +msgid "Networks range" +msgstr "Intervalo de red IP" + +#: ../../enterprise/tools/ipam/ipam_supernet_config.php:1071 +#: ../../enterprise/tools/ipam/ipam_vlan_config.php:688 +msgid "Networks" +msgstr "Redes" + +#: ../../enterprise/tools/ipam/ipam_supernet_config.php:1237 +msgid "Delete network in supernet" +msgstr "Eliminar red de superred" + +#: ../../enterprise/tools/ipam/ipam_supernet_config.php:1286 +msgid "Manage networks in supernet" +msgstr "Administrar redes en superred" + +#: ../../enterprise/tools/ipam/ipam_supernet_config.php:1320 +msgid "Add network to supernet" +msgstr "AƱadir red a superred" + +#: ../../enterprise/tools/ipam/ipam_supernet_config.php:1323 +msgid "Next network" +msgstr "Siguiente red" + +#: ../../enterprise/tools/ipam/ipam_supernet_config.php:1355 +msgid "Delete Supernet" +msgstr "Borrar superred" + +#: ../../enterprise/tools/ipam/ipam_supernet_config.php:1377 +#: ../../enterprise/tools/ipam/ipam_vlan_config.php:871 +#: ../../include/functions_visual_map_editor.php:793 +#: ../../include/rest-api/models/VisualConsole/Items/Group.php:562 +msgid "Show statistics" +msgstr "Mostrar estadĆ­sticas" + +#: ../../enterprise/tools/ipam/ipam_supernet_config.php:1444 +msgid "No Supernet found" +msgstr "Superred no encontrada" + +#: ../../enterprise/tools/ipam/ipam_list.php:151 +#: ../../enterprise/tools/ipam/ipam_list.php:602 +#: ../../enterprise/tools/ipam/ipam_vlan_wizard.php:58 +#: ../../enterprise/tools/ipam/ipam_vlan_wizard.php:62 +#: ../../enterprise/tools/ipam/ipam_vlan_wizard.php:67 +#: ../../enterprise/tools/ipam/ipam_vlan_network.php:39 +#: ../../enterprise/tools/ipam/ipam_vlan_config.php:339 +msgid "Vlan" +msgstr "Vlan" + +#: ../../enterprise/tools/ipam/ipam_list.php:400 +#: ../../enterprise/tools/ipam/ipam_action.php:138 +#: ../../enterprise/tools/ipam/ipam_action.php:270 +msgid "Incorrect format in Subnet field" +msgstr "Formato incorrecto en el campo Subred" + +#: ../../enterprise/tools/ipam/ipam_list.php:425 +#: ../../enterprise/tools/ipam/ipam_action.php:219 +#, php-format +msgid "Could not be created: %s" +msgstr "No se ha podido crear: %s" + +#: ../../enterprise/tools/ipam/ipam_list.php:434 +#, php-format +msgid "%s networks created" +msgstr "%s redes creadas" + +#: ../../enterprise/tools/ipam/ipam_list.php:436 +msgid "Networks creation failed" +msgstr "Error en la creaciĆ³n de redes" + +#: ../../enterprise/tools/ipam/ipam_list.php:501 +msgid "No networks found" +msgstr "No se ha encontrado ninguna red" + +#: ../../enterprise/tools/ipam/ipam_list.php:625 +msgid "IPs" +msgstr "IPs" + +#: ../../enterprise/tools/ipam/ipam_list.php:708 +msgid "Edit network" +msgstr "Modificar red" + +#: ../../enterprise/tools/ipam/ipam_list.php:719 +msgid "Delete network" +msgstr "Eliminar red" + +#: ../../enterprise/tools/ipam/ipam_vlan_wizard.php:53 +#: ../../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:1410 +msgid "Interfaces" +msgstr "Interfaces" + +#: ../../enterprise/tools/ipam/ipam_vlan_wizard.php:58 +msgid "succesfully created" +msgstr "creado correctamente" + +#: ../../enterprise/tools/ipam/ipam_vlan_wizard.php:62 +msgid "not created" +msgstr "no creado" + +#: ../../enterprise/tools/ipam/ipam_vlan_wizard.php:67 +msgid "exists in bbdd, please select other name" +msgstr "existe en la base de datos, seleccione otro nombre" + +#: ../../enterprise/tools/ipam/ipam_vlan_wizard.php:72 +msgid "please, select VLAN to be created" +msgstr "seleccione una VLAN para crear" + +#: ../../enterprise/tools/ipam/ipam_vlan_wizard.php:231 +msgid "Please enter adress, for search vlans" +msgstr "AƱada una direcciĆ³n para buscar vlans" + +#: ../../enterprise/tools/ipam/ipam_vlan_wizard.php:263 +#: ../../godmode/modules/manage_network_components_form_network.php:82 +#: ../../godmode/agentes/module_manager_editor_network.php:149 +#: ../../include/class/AgentWizard.class.php:712 +msgid "SNMP community" +msgstr "Comunidad SNMP" + +#: ../../enterprise/tools/ipam/ipam_vlan_wizard.php:337 +msgid "privacy pass" +msgstr "pase privado" + +#: ../../enterprise/tools/ipam/ipam_vlan_wizard.php:374 +#: ../../godmode/wizards/HostDevices.class.php:1248 +msgid "Context" +msgstr "Contexto" + +#: ../../enterprise/tools/ipam/ipam_vlan_wizard.php:397 +msgid "Run" +msgstr "Ejecutar" + +#: ../../enterprise/tools/ipam/ipam_vlan_wizard.php:409 +msgid "Vlan name" +msgstr "Nombre de vlan" + +#: ../../enterprise/tools/ipam/ipam_vlan_wizard.php:424 +#: ../../enterprise/tools/ipam/ipam_ajax.php:489 +msgid "Created" +msgstr "Creado" + +#: ../../enterprise/tools/ipam/ipam_vlan_wizard.php:459 +#: ../../enterprise/tools/ipam/ipam_vlan_config.php:906 +msgid "No vlans found" +msgstr "No se han encontrado vlans" + +#: ../../enterprise/tools/ipam/ipam_action.php:198 +#, php-format +msgid "Network could not be added to supernet %s (%s)" +msgstr "No se pudo agregar la red a la superred %s (%s)" + +#: ../../enterprise/tools/ipam/ipam_action.php:202 +#, php-format +msgid "Network added to supernet %s (%s)" +msgstr "Red agregada a la %s de superred (%s)" + +#: ../../enterprise/tools/ipam/ipam_action.php:207 +#, php-format +msgid "Network name already exists in supernet %s (%s)" +msgstr "El nombre de red ya existe en la superred %s (%s)" -#: ../../operation/agentes/pandora_networkmap.view.php:1613 #: ../../enterprise/tools/ipam/ipam_action.php:374 +#: ../../operation/agentes/pandora_networkmap.view.php:1613 msgid "Could not be updated." msgstr "No se pudo actualizar" -#: ../../operation/agentes/pandora_networkmap.view.php:1708 -msgid "Name: " -msgstr "Nombre: " +#: ../../enterprise/tools/ipam/ipam_action.php:380 +#: ../../update_manager_client/views/offline.php:78 +#: ../../update_manager_client/views/online.php:94 +msgid "Successfully updated." +msgstr "Actualizado correctamente" -#: ../../operation/agentes/pandora_networkmap.view.php:1758 -msgid "Policy: " -msgstr "PolĆ­tica: " +#: ../../enterprise/tools/ipam/ipam_action.php:385 +#: ../../include/functions_reporting.php:2712 +msgid "No changes found." +msgstr "No se han encontrado cambios" -#: ../../operation/agentes/pandora_networkmap.view.php:1805 -#: ../../enterprise/extensions/vmware/vmware_manager.php:269 -msgid "Status: " -msgstr "Estado: " +#: ../../enterprise/tools/ipam/ipam_network_location_config.php:40 +#: ../../godmode/modules/manage_nc_groups.php:64 +msgid "Could not be created. Blank name" +msgstr "No pudo ser creado. Nombre en blanco" -#: ../../operation/agentes/pandora_networkmap.view.php:1855 -msgid "Data: " -msgstr "Datos: " +#: ../../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:221 +msgid "Not updated. Error updating data" +msgstr "No se ha podido actualizar. Error al actualizar los datos." -#: ../../operation/agentes/status_events.php:26 -#: ../../operation/agentes/status_events.php:27 -msgid "Latest events for this agent" -msgstr "ƚltimos eventos para este agente" +#: ../../enterprise/tools/ipam/ipam_network_location_config.php:110 +#, php-format +msgid "%d/%d items deleted" +msgstr "Elementos %d/%d eliminados" -#: ../../operation/agentes/gis_view.php:59 -#: ../../godmode/agentes/agent_conf_gis.php:38 +#: ../../enterprise/tools/ipam/ipam_network_location_config.php:112 +msgid "Failed to delete items" +msgstr "Error al eliminar elementos" + +#: ../../enterprise/tools/ipam/ipam_network_location_config.php:167 +msgid "Search filter by name or network address" +msgstr "Filtro de bĆŗsqueda por nombre o direcciĆ³n de red" + +#: ../../enterprise/tools/ipam/ipam_network_location_config.php:273 +msgid "No locations found" +msgstr "No se encontraron ubicaciones" + +#: ../../enterprise/tools/ipam/ipam_network_location_config.php:309 +msgid "There are no defined network locations" +msgstr "No hay ubicaciones de red definidas" + +#: ../../enterprise/tools/ipam/ipam_excel.php:135 +msgid "Subneting Mask" +msgstr "MĆ”scara de subnetting" + +#: ../../enterprise/tools/ipam/ipam_ajax.php:285 +msgid "There is not an available IP." +msgstr "No hay una IP disponible" + +#: ../../enterprise/tools/ipam/ipam_ajax.php:287 +msgid "Next available IP Address is:" +msgstr "La siguiente IP disponible es:" + +#: ../../enterprise/tools/ipam/ipam_ajax.php:313 +msgid "Reserve this IP now" +msgstr "Reservar esta IP ahora" + +#: ../../enterprise/tools/ipam/ipam_ajax.php:329 +msgid "Manage this IP now" +msgstr "Gestionar esta IP ahora" + +#: ../../enterprise/tools/ipam/ipam_ajax.php:374 +msgid "Operating system" +msgstr "Sistema operativo" + +#: ../../enterprise/tools/ipam/ipam_ajax.php:384 +msgid "This agent has other IPs" +msgstr "Este agente tiene otras IPs." + +#: ../../enterprise/tools/ipam/ipam_ajax.php:393 +msgid "Generate events" +msgstr "Generar eventos" + +#: ../../enterprise/tools/ipam/ipam_ajax.php:445 +msgid "Leases Dhcp" +msgstr "Periodo de concesiĆ³n Dhcp" + +#: ../../enterprise/tools/ipam/ipam_ajax.php:455 +msgid "leased mode" +msgstr "Modo de concesiĆ³n" + +#: ../../enterprise/tools/ipam/ipam_ajax.php:468 +msgid "leased expiration" +msgstr "ConcesiĆ³n caducada" + +#: ../../enterprise/tools/ipam/ipam_ajax.php:473 +#: ../../include/class/NetworkMap.class.php:2910 +msgid "MAC" +msgstr "MAC" + +#: ../../enterprise/tools/ipam/ipam_ajax.php:499 +msgid "Edited" +msgstr "Modificado" + +#: ../../enterprise/tools/ipam/ipam_ajax.php:509 +msgid "Tracking" +msgstr "Seguimiento" + +#: ../../enterprise/tools/ipam/ipam_ajax.php:524 +msgid "Ping" +msgstr "Ping" + +#: ../../enterprise/tools/ipam/ipam_ajax.php:540 ../../include/ajax/events.php:1365 +#, php-format +msgid "Executing command: %s" +msgstr "Ejecutar comando: %s" + +#: ../../enterprise/tools/ipam/ipam_ajax.php:551 ../../include/ajax/events.php:1382 +#: ../../include/ajax/events.php:1409 +msgid "Execute again" +msgstr "Ejecutar de nuevo" + +#: ../../enterprise/tools/ipam/ipam_ajax.php:565 +msgid "Ping to host" +msgstr "Ping a un host" + +#: ../../enterprise/tools/ipam/ipam_supernet_treeview.php:94 +msgid "Found supernets" +msgstr "Superredes encontradas" + +#: ../../enterprise/tools/ipam/ipam_vlan_config.php:45 +#: ../../enterprise/tools/ipam/ipam_vlan_config.php:268 +msgid "There is no VLAN name. Please introduce a name" +msgstr "No hay nombre de vlan. AƱada un nombre" + +#: ../../enterprise/tools/ipam/ipam_vlan_config.php:49 +#: ../../enterprise/tools/ipam/ipam_vlan_config.php:87 +#: ../../enterprise/tools/ipam/ipam_vlan_config.php:272 +msgid "Custom ID is not valid" +msgstr "El ID personalizado no es vĆ”lido" + +#: ../../enterprise/tools/ipam/ipam_vlan_config.php:66 +msgid "Vlan created" +msgstr "Vlan creada" + +#: ../../enterprise/tools/ipam/ipam_vlan_config.php:68 +msgid "Vlan not created" +msgstr "Vlan no creada" + +#: ../../enterprise/tools/ipam/ipam_vlan_config.php:72 +#: ../../enterprise/tools/ipam/ipam_vlan_config.php:296 +msgid "VLAN name exists in database, please select another name" +msgstr "El nombre de la vlan ya existe en la base de datos, seleccione otro nombre" + +#: ../../enterprise/tools/ipam/ipam_vlan_config.php:83 +msgid "There is no vlan name. Please introduce a name" +msgstr "No hay nombre de vlan. AƱada un nombre" + +#: ../../enterprise/tools/ipam/ipam_vlan_config.php:109 +msgid "Vlan updated" +msgstr "Vlan actualizada" + +#: ../../enterprise/tools/ipam/ipam_vlan_config.php:111 +msgid "Vlan not updated" +msgstr "Vlan no actualizada" + +#: ../../enterprise/tools/ipam/ipam_vlan_config.php:115 +msgid "Vlan name exists in database, please select other name" +msgstr "El nombre de la vlan ya existe en la base de datos, seleccione otro nombre" + +#: ../../enterprise/tools/ipam/ipam_vlan_config.php:135 +msgid "Could not be deleted, please select vlan" +msgstr "No se ha podido borrar, seleccione vlan" + +#: ../../enterprise/tools/ipam/ipam_vlan_config.php:163 +msgid "Network name cannot be repeated in this Vlan" +msgstr "El nombre de la red no se puede repetir en esta vlan" + +#: ../../enterprise/tools/ipam/ipam_vlan_config.php:179 +msgid "Network name could not be added, please select network" +msgstr "No se ha podido aƱadir el nombre de la red, seleccione una red" + +#: ../../enterprise/tools/ipam/ipam_vlan_config.php:184 +msgid "Vlan name could not be added, please select vlan" +msgstr "No se ha podido aƱadir el nombre de la vlan, seleccione vlan" + +#: ../../enterprise/tools/ipam/ipam_vlan_config.php:212 +msgid "Could not be deleted, please select VLAN and network" +msgstr "No se ha podido eliminar, seleccione una VLAN y una red" + +#: ../../enterprise/tools/ipam/ipam_vlan_config.php:219 +#, php-format +msgid "Failed to delete %d/%d networks from VLAN" +msgstr "Error al eliminar redes %d/%d de VLAN" + +#: ../../enterprise/tools/ipam/ipam_vlan_config.php:223 +msgid "Successfully deleted network from VLAN" +msgstr "Red eliminada correctamente de VLAN" + +#: ../../enterprise/tools/ipam/ipam_vlan_config.php:225 +#, php-format +msgid "Successfully deleted %d/%d networks from VLAN" +msgstr "Redes %d/%d eliminadas correctamente de VLAN" + +#: ../../enterprise/tools/ipam/ipam_vlan_config.php:303 +#, php-format +msgid "%s VLAN networks have been created" +msgstr "%s redes VLAN creadas" + +#: ../../enterprise/tools/ipam/ipam_vlan_config.php:305 +msgid "Could not create VLAN networks" +msgstr "No se pudieron crear redes VLAN" + +#: ../../enterprise/tools/ipam/ipam_vlan_config.php:366 +#: ../../enterprise/tools/ipam/ipam_vlan_config.php:822 +msgid "Update Vlan" +msgstr "Actualizar vlan" + +#: ../../enterprise/tools/ipam/ipam_vlan_config.php:373 +#: ../../enterprise/tools/ipam/ipam_vlan_config.php:917 +msgid "New Vlan" +msgstr "Nueva vlan" + +#: ../../enterprise/tools/ipam/ipam_vlan_config.php:435 +msgid "Search filter by name" +msgstr "Filtro de bĆŗsqueda por nombre" + +#: ../../enterprise/tools/ipam/ipam_vlan_config.php:736 +msgid "Delete network to vlan" +msgstr "Borrar una red de vlan" + +#: ../../enterprise/tools/ipam/ipam_vlan_config.php:796 +msgid "Manage networks in VLAN" +msgstr "Administrar redes en VLAN" + +#: ../../enterprise/tools/ipam/ipam_vlan_config.php:816 +msgid "Not assigned networks" +msgstr "Redes no asignadas" + +#: ../../enterprise/tools/ipam/ipam_vlan_config.php:829 +#: ../../enterprise/tools/ipam/ipam_vlan_config.php:848 +msgid "Add network to Vlan" +msgstr "AƱadir red a vlan" + +#: ../../enterprise/tools/ipam/ipam_vlan_config.php:832 +msgid "Create network" +msgstr "Crear red" + +#: ../../enterprise/tools/ipam/ipam_vlan_config.php:865 +msgid "Delete Vlan" +msgstr "Eliminar vlan" + +#: ../../enterprise/tools/ipam/ipam_massive.php:82 +msgid "Addresses" +msgstr "Direcciones" + +#: ../../enterprise/tools/ipam/ipam_calculator.php:64 +#: ../../enterprise/tools/ipam/ipam_calculator.php:66 +#: ../../enterprise/tools/ipam/ipam_calculator.php:87 +#: ../../enterprise/tools/ipam/ipam_calculator.php:90 +#: ../../enterprise/tools/ipam/ipam_calculator.php:93 +#: ../../enterprise/tools/ipam/ipam_calculator.php:96 +msgid "Example:" +msgstr "Ejemplo:" + +#: ../../enterprise/tools/ipam/ipam_calculator.php:70 +msgid "Bit mask" +msgstr "MĆ”scara de bit" + +#: ../../enterprise/tools/ipam/ipam_calculator.php:71 +msgid "Net mask" +msgstr "MĆ”scara de red" + +#: ../../enterprise/tools/ipam/ipam_calculator.php:74 +msgid "Mask format" +msgstr "Formato de mĆ”scara" + +#: ../../enterprise/tools/ipam/ipam_calculator.php:105 +msgid "Calculate" +msgstr "Calcular" + +#: ../../enterprise/tools/ipam/ipam_calculator.php:112 +msgid "Address field is empty" +msgstr "El campo DirecciĆ³n estĆ” vacĆ­o." + +#: ../../enterprise/tools/ipam/ipam_calculator.php:120 +msgid "Mask field is empty" +msgstr "El campo MĆ”scara estĆ” vacĆ­o." + +#: ../../enterprise/tools/ipam/ipam_calculator.php:139 +#: ../../enterprise/tools/ipam/ipam_calculator.php:152 +msgid "Incorrect address format" +msgstr "Formato de direcciĆ³n incorrecto" + +#: ../../enterprise/tools/ipam/ipam_calculator.php:144 +#: ../../enterprise/tools/ipam/ipam_calculator.php:157 +#: ../../enterprise/tools/ipam/ipam_calculator.php:162 +msgid "Incorrect mask format" +msgstr "Formato de mĆ”scara incorrecto" + +#: ../../enterprise/tools/ipam/ipam_calculator.php:190 +msgid "Network mask" +msgstr "MĆ”scara de red" + +#: ../../enterprise/tools/ipam/ipam_calculator.php:211 +msgid "Network wildcard" +msgstr "Red wildcard" + +#: ../../enterprise/tools/ipam/ipam_calculator.php:220 +msgid "Network address" +msgstr "DirecciĆ³n de red" + +#: ../../enterprise/tools/ipam/ipam_calculator.php:229 +msgid "Broadcast address" +msgstr "DirecciĆ³n de difusiĆ³n" + +#: ../../enterprise/tools/ipam/ipam_calculator.php:238 +msgid "First valid IP" +msgstr "Primera IP vĆ”lida" + +#: ../../enterprise/tools/ipam/ipam_calculator.php:247 +msgid "Last valid IP" +msgstr "ƚltima IP vĆ”lida" + +#: ../../enterprise/tools/ipam/ipam_calculator.php:257 +msgid "Hosts/Net" +msgstr "Hosts/Red" + +#: ../../enterprise/tools/ipam/ipam_editor.php:56 +msgid "Network not found" +msgstr "Red no encontrada" + +#: ../../enterprise/tools/ipam/ipam_editor.php:122 +msgid "Format: IP/Mask" +msgstr "Formato: IP/MĆ”scara" + +#: ../../enterprise/tools/ipam/ipam_editor.php:136 +msgid "Examples" +msgstr "Ejemplos" + +#: ../../update_manager_client/views/offline.php:65 +msgid "Drop the package here or" +msgstr "Arrastre el paquete hasta aquĆ­ o" + +#: ../../update_manager_client/views/offline.php:66 +msgid "Browse it" +msgstr "navegue hasta Ć©l" + +#: ../../update_manager_client/views/offline.php:67 +msgid "The package has been uploaded successfully." +msgstr "Se ha subido correctamente el paquete." + +#: ../../update_manager_client/views/offline.php:68 +#, php-format +msgid "" +"Please keep in mind that this package is going to override your actual %s files and " +"that it's recommended to conduct a backup before continuing the updating process." +msgstr "" +"Tenga en cuenta que este paquete anularĆ” los archivos de %s actuales, por lo que se " +"recomienda hacer una copia de seguridad antes de continuar con el proceso de " +"actualizaciĆ³n." + +#: ../../update_manager_client/views/offline.php:69 +msgid "Click on the file below to begin." +msgstr "Haz clic en el archivo de abajo para comenzar." + +#: ../../update_manager_client/views/offline.php:70 +#: ../../update_manager_client/views/online.php:123 +#: ../../update_manager_client/views/online.php:164 +msgid "This action will upgrade this console to version " +msgstr "Esta acciĆ³n actualizarĆ” esta consola a la versiĆ³n " + +#: ../../update_manager_client/views/offline.php:71 +msgid "This action will upgrade all servers to version " +msgstr "Esta acciĆ³n actualizarĆ” todos los servidores a la versiĆ³n " + +#: ../../update_manager_client/views/offline.php:73 +#: ../../update_manager_client/views/online.php:89 +msgid "Updating to" +msgstr "Actualizando" + +#: ../../update_manager_client/views/offline.php:74 +#: ../../update_manager_client/views/online.php:90 +msgid "Do you really want to leave our brilliant application?" +msgstr "ĀæEstĆ”s seguro de que quieres realizar esta acciĆ³n?" + +#: ../../update_manager_client/views/offline.php:75 +#: ../../update_manager_client/views/online.php:91 +msgid "There are no updates available" +msgstr "No hay actualizaciones disponibles" + +#: ../../update_manager_client/views/offline.php:76 +#: ../../update_manager_client/views/online.php:92 +msgid "Searching for updates..." +msgstr "Buscando actualizaciones..." + +#: ../../update_manager_client/views/offline.php:77 +#: ../../update_manager_client/views/online.php:93 +msgid "Package" +msgstr "Paquete" + +#: ../../update_manager_client/views/offline.php:79 +msgid "Package rejected. These package changes will not apply." +msgstr "Paquete rechazado. Los cambios de este paquete no se aplicarĆ”n." + +#: ../../update_manager_client/views/offline.php:81 +#, php-format +msgid "" +"This update does not correspond with next version of %s. Are you sure you want to " +"install it?" +msgstr "" +"Esta actualizaciĆ³n no se corresponde con la siguiente versiĆ³n de %s. ĀæEstĆ”s seguro de " +"que quieres instalarlo?" + +#: ../../update_manager_client/views/offline.php:82 +msgid "" +"This server update does not correspond with current console version. Are you sure you " +"want to install it?" +msgstr "" +"Esta actualizaciĆ³n del servidor no se corresponde con la versiĆ³n actual de la " +"consola. ĀæEstĆ”s seguro de que quieres instalarlo?" + +#: ../../update_manager_client/views/offline.php:83 +msgid "" +"File name does not match required format: package_NUMBER.oum or " +"pandorafms_server[_enterprise]-7.0NG.NUMBER_x86[_64].tar.gz, you can use numbers with " +"decimals." +msgstr "" +"El nombre del archivo no coincide con el formato requerido: package_NUMBER.oum o " +"pandorafms_server[_enterprise]-7.0NG. NUMBER_x86[_64].tar.gz, puede usar nĆŗmeros con " +"decimales." + +#: ../../update_manager_client/views/offline.php:84 +msgid "Files included in this package" +msgstr "Archivos incluidos en este paquete" + +#: ../../update_manager_client/views/offline.php:85 +msgid "Ignore" +msgstr "Ignorar" + +#: ../../update_manager_client/views/offline.php:86 +msgid "Verify package signature" +msgstr "Verificar la firma del paquete" + +#: ../../update_manager_client/views/offline.php:87 +#, php-format +msgid "" +"Copy into the textarea the signature validation token you can retrieve from %s and " +"press OK to verify the package, press ignore to avoid signature verification" +msgstr "" +"Copie en el Ć”rea de texto el token de validaciĆ³n de firma que puede recuperar de %s y " +"presione OK para verificar el paquete, presione ignorar para evitar la verificaciĆ³n " +"de firma" + +#: ../../update_manager_client/views/offline.php:88 +msgid "" +"This server update does not correspond with current console version and is not going " +"to be installed unless patches are allowed. Please enable patches in update manager " +"settings." +msgstr "" +"Esta actualizaciĆ³n del servidor no se corresponde con la versiĆ³n actual de la consola " +"y no se va a instalar a menos que se permitan parches. Habilite los parches en la " +"configuraciĆ³n del administrador de actualizaciones." + +#: ../../update_manager_client/views/offline.php:89 +#, php-format +msgid "" +"This update does not correspond with next version of %s and is not going to be " +"installed unless patches are allowed. Please enable patches in update manager " +"settings." +msgstr "" +"Esta actualizaciĆ³n no se corresponde con la siguiente versiĆ³n de %s y no se va a " +"instalar a menos que se permitan parches. Habilite los parches en la configuraciĆ³n " +"del administrador de actualizaciones." + +#: ../../update_manager_client/views/register.php:47 +msgid "Register to Warp Update" +msgstr "RegĆ­strese para Warp Update" + +#: ../../update_manager_client/views/register.php:54 +#, php-format +msgid "Keep this %s console up to date with latest updates." +msgstr "Mantener la consola %s actualizada con las Ćŗltimas actualizaciones." + +#: ../../update_manager_client/views/register.php:61 +#, php-format +msgid "" +"When you subscribe to the Warp update service for %s, you accept that we\n" +" register your %s instance as an identifier on a database owned by %s. " +"This data will solely be used to\n" +" provide you with information about %s and will not be conceded to third " +"parties. You can unregister from\n" +" said database at any time from the Warp update options." +msgstr "" +"Al suscribirse al servicio Warp Update para %s, acepta que\n" +" registremos su %s instancia como identificador en una base de datos " +"propiedad de %s. Estos datos se usarĆ”n exclusivamente para\n" +" proporcionarle informaciĆ³n sobre %s y no se compartirĆ” con terceros. " +"Puede darse de baja de la\n" +" base de datos en cualquier momento desde las opciones de Warp update." + +#: ../../update_manager_client/views/register.php:74 +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:1910 +msgid "Your email" +msgstr "Su email" + +#: ../../update_manager_client/views/register.php:97 +msgid "OK!" +msgstr "Ā”OK!" + +#: ../../update_manager_client/views/register.php:112 +msgid "Are you sure you don't want to use Warp update?" +msgstr "ĀæEstĆ” seguro de que no quiere usar Warp update?" + +#: ../../update_manager_client/views/register.php:116 +msgid "" +"You will need to update your system manually, through source code or RPM\n" +" packages to be up to date with latest updates." +msgstr "" +"DeberĆ” actualizar su sistema manualmente a travĆ©s del cĆ³digo fuente o de los paquetes " +"RPM para estar al dĆ­a con las Ćŗltimas actualizaciones." + +#: ../../update_manager_client/views/register.php:208 +msgid "Unsuccessful subscription" +msgstr "SuscripciĆ³n incorrecta" + +#: ../../update_manager_client/views/register.php:213 +msgid "Pandora successfully subscribed with UID: " +msgstr "Pandora FMS se suscribiĆ³ correctamente con UID: " + +#: ../../update_manager_client/views/online.php:44 +msgid "The latest version of package installed is" +msgstr "La Ćŗltima versiĆ³n instalada del paquete es:" + +#: ../../update_manager_client/views/online.php:64 +msgid "Update to next version" +msgstr "Actualizar a la siguiente versiĆ³n" + +#: ../../update_manager_client/views/online.php:65 +msgid "Update to latest version" +msgstr "Actualizar a la Ćŗltima versiĆ³n" + +#: ../../update_manager_client/views/online.php:124 +#: ../../update_manager_client/views/online.php:165 +msgid "Update to" +msgstr "ActualizaciĆ³n para" + +#: ../../update_manager_client/views/online.php:145 +#: ../../update_manager_client/views/online.php:149 +msgid "Failed to update to " +msgstr "Error al actualizar a " + +#: ../../update_manager_client/views/online.php:188 +msgid "Failed to update:" +msgstr "Error al actualizar" + +#: ../../update_manager_client/lib/UpdateManager/UI/Manager.php:484 +msgid "Next update" +msgstr "prĆ³xima actualizaciĆ³n" + +#: ../../update_manager_client/lib/UpdateManager/UI/Manager.php:489 +msgid "Show details" +msgstr "Ver detalles" + +#: ../../update_manager_client/lib/UpdateManager/UI/Manager.php:514 +#, php-format +msgid "%s update(s) available more" +msgstr "%s actualizaciĆ³n(es) disponible(s) mĆ”s" + +#: ../../update_manager_client/lib/UpdateManager/UI/Manager.php:526 +msgid "details" +msgstr "detalles" + +#: ../../update_manager_client/lib/UpdateManager/UI/Manager.php:604 +msgid "Failed creating temporary directory." +msgstr "Error al crear un directorio temporal." + +#: ../../update_manager_client/lib/UpdateManager/UI/Manager.php:614 +msgid "Failed storing uploaded file." +msgstr "Error al almacenar el archivo cargado." + +#: ../../update_manager_client/lib/UpdateManager/UI/Manager.php:646 +#, php-format +msgid "Invalid extension. The package needs to be in `%s` or `%s` format." +msgstr "ExtensiĆ³n no vĆ”lida. El paquete debe estar en formato \"%s\" o \"%s\"." + +#: ../../update_manager_client/lib/UpdateManager/UI/Manager.php:655 +msgid "Failed uploading file." +msgstr "Error al cargar el archivo." + +#: ../../update_manager_client/lib/UpdateManager/UI/Manager.php:690 +msgid "Signatures does not match." +msgstr "Las firmas no coinciden." + +#: ../../update_manager_client/lib/UpdateManager/UI/Manager.php:749 +#, php-format +msgid "Update %s successfully installed." +msgstr "La actualizaciĆ³n %s instalado correctamente." + +#: ../../update_manager_client/lib/UpdateManager/UI/Manager.php:752 +#, php-format +msgid "Failed while updating: %s" +msgstr "Error al actualizar: %s" + +#: ../../update_manager_client/lib/UpdateManager/Client.php:712 +#, php-format +msgid "server update %d" +msgstr "%d de actualizaciĆ³n del servidor" + +#: ../../update_manager_client/lib/UpdateManager/Client.php:714 +#, php-format +msgid "console update %d" +msgstr "%d de actualizaciĆ³n de la consola" + +#: ../../update_manager_client/lib/UpdateManager/Client.php:734 +#, php-format +msgid "Downloading %s %.2f/ %.2f MB." +msgstr "Descarga de %s %.2f/ %.2f MB." + +#: ../../update_manager_client/lib/UpdateManager/Client.php:745 +#, php-format +msgid "Downloading %.2f MB" +msgstr "Descarga de %.2f MB" + +#: ../../update_manager_client/lib/UpdateManager/Client.php:1469 +#, php-format +msgid "Failed to analyze package: %s" +msgstr "Error al analizar el paquete: %s" + +#: ../../update_manager_client/lib/UpdateManager/Client.php:1560 +msgid "Searching update package" +msgstr "BĆŗsqueda del paquete de actualizaciĆ³n" + +#: ../../update_manager_client/lib/UpdateManager/Client.php:1592 +msgid "Retrieving update" +msgstr "RecuperaciĆ³n de la actualizaciĆ³n" + +#: ../../update_manager_client/lib/UpdateManager/Client.php:1683 +msgid "Extracting package" +msgstr "ExtracciĆ³n del paquete" + +#: ../../update_manager_client/lib/UpdateManager/Client.php:1750 +msgid "Testing files" +msgstr "Archivos de prueba" + +#: ../../update_manager_client/lib/UpdateManager/Client.php:1782 +#, php-format +msgid "Applying MR %s" +msgstr "AplicaciĆ³n de la %s de RM" + +#: ../../update_manager_client/lib/UpdateManager/Client.php:1819 +msgid "Applying file updates" +msgstr "AplicaciĆ³n de actualizaciones de archivos" + +#: ../../update_manager_client/lib/UpdateManager/Client.php:1841 +msgid "Retrieving server update" +msgstr "RecuperaciĆ³n de la actualizaciĆ³n del servidor" + +#: ../../update_manager_client/lib/UpdateManager/Client.php:1856 +msgid "Cleaning" +msgstr "Limpieza" + +#: ../../update_manager_client/lib/UpdateManager/Client.php:1969 +msgid "Updating to " +msgstr "ActualizaciĆ³n a " + +#: ../../extensions/disabled/matrix_events.php:30 +msgid "Matrix events" +msgstr "Eventos matriz" + +#: ../../extensions/quick_shell.php:140 ../../extensions/quick_shell.php:244 +msgid "WebService engine has not been started, please check documentation." +msgstr "El motor WebService aĆŗn no se ha iniciado, consulte la documentaciĆ³n." + +#: ../../extensions/quick_shell.php:152 +msgid "Retry" +msgstr "Reintentar" + +#: ../../extensions/quick_shell.php:196 +msgid "Telnet" +msgstr "Telnet" + +#: ../../extensions/quick_shell.php:204 +msgid "Connect" +msgstr "Conectar" + +#: ../../extensions/quick_shell.php:232 +msgid "Please use SSH or Telnet." +msgstr "Use SSH o Telnet." + +#: ../../extensions/quick_shell.php:266 +msgid "WebService engine is not working properly, please check documentation." +msgstr "El motor WebService no funciona correctamente, consulte la documentaciĆ³n." + +#: ../../extensions/quick_shell.php:425 +#, php-format +msgid "%d Updated" +msgstr "%d Actualizado" + +#: ../../extensions/quick_shell.php:428 +#, php-format +msgid "%d Updated, please restart WebSocket engine service" +msgstr "%d Actualizado, reinicie el servicio del motor WebSocket" + +#: ../../extensions/quick_shell.php:438 +msgid "Quickshell" +msgstr "Quickshell" + +#: ../../extensions/quick_shell.php:448 +msgid "Gotty path" +msgstr "Ruta Gotty" + +#: ../../extensions/quick_shell.php:458 +msgid "Gotty host" +msgstr "Host Gotty" + +#: ../../extensions/quick_shell.php:468 +msgid "Gotty ssh port" +msgstr "Puerto SSH Gotty" + +#: ../../extensions/quick_shell.php:478 +msgid "Gotty telnet port" +msgstr "Puerto telnet Gotty" + +#: ../../extensions/quick_shell.php:495 +msgid "Gotty user" +msgstr "Usuario Gotty" + +#: ../../extensions/quick_shell.php:505 +msgid "Gotty password" +msgstr "ContraseƱa Gotty" + +#: ../../extensions/quick_shell.php:545 +msgid "QuickShell" +msgstr "QuickShell" + +#: ../../extensions/extension_uploader.php:29 +msgid "Uploader extension" +msgstr "ExtensiĆ³n de subidas" + +#: ../../extensions/extension_uploader.php:72 +msgid "Success to upload extension" +msgstr "ExtensiĆ³n subida correctamente" + +#: ../../extensions/extension_uploader.php:73 +msgid "Fail to upload extension" +msgstr "Fallo al subir extensiĆ³n" + +#: ../../extensions/extension_uploader.php:82 +msgid "Upload extension" +msgstr "Subir extensiĆ³n" + +#: ../../extensions/extension_uploader.php:83 +msgid "Upload the extension as a zip file." +msgstr "Subir la extensiĆ³n como un archivo zip" + +#: ../../extensions/extension_uploader.php:85 +msgid "Upload enterprise extension" +msgstr "Subir extensiĆ³n Enterprise" + +#: ../../extensions/extension_uploader.php:98 +msgid "Extension uploader" +msgstr "Cargador de extensiones" + +#: ../../extensions/resource_registration.php:55 +#, php-format +msgid "Success add '%s' item in report '%s'." +msgstr "Elemento '%s' aƱadido correctamente al informe '%s'" + +#: ../../extensions/resource_registration.php:60 +#, php-format +msgid "Error create '%s' item in report '%s'." +msgstr "Error al aƱadir el elemento '%s' al informe '%s'" + +#: ../../extensions/resource_registration.php:96 +#, php-format +msgid "Error create '%s' report, the name exist and there aren't free name." +msgstr "" +"Error al crear el informe '%s'. El nombre ya existe y no hay nombres disponibles." + +#: ../../extensions/resource_registration.php:104 +#, php-format +msgid "Warning create '%s' report, the name exist, the report have a name %s." +msgstr "" +"Advertencia al crear el informe '%s'. El nombre ya existe y el informe tiene el " +"nombre %s." + +#: ../../extensions/resource_registration.php:113 +msgid "Error the report haven't name." +msgstr "Error, el informe no tiene nombre" + +#: ../../extensions/resource_registration.php:127 +msgid "Error the report haven't group." +msgstr "Error, el informe no tiene un grupo asignado" + +#: ../../extensions/resource_registration.php:140 +#, php-format +msgid "Success create '%s' report." +msgstr "Informe '%s' creado correctamente" + +#: ../../extensions/resource_registration.php:141 +#, php-format +msgid "Error create '%s' report." +msgstr "Error al crear el informe '%s'" + +#: ../../extensions/resource_registration.php:435 +#: ../../extensions/resource_registration.php:457 +#: ../../extensions/resource_registration.php:468 +#, php-format +msgid "Success add '%s' content." +msgstr "Contenido '%s' aƱadido correctamente" + +#: ../../extensions/resource_registration.php:445 +#, php-format +msgid "Success add '%s' SLA." +msgstr "SLA '%s' aƱadido correctamente" + +#: ../../extensions/resource_registration.php:446 +#, php-format +msgid "Error add '%s' SLA." +msgstr "Error al aƱadir el SLA '%s'" + +#: ../../extensions/resource_registration.php:489 +#, php-format +msgid "Error create '%s' visual map, lost tag name." +msgstr "Error al crear el mapa visual '%s'. Falta el nombre de la etiqueta." + +#: ../../extensions/resource_registration.php:532 +#, php-format +msgid "Error create '%s' visual map, the name exist and there aren't free name." +msgstr "" +"Error al crear el mapa visual '%s'. El nombre ya existe y no hay nombres disponibles." + +#: ../../extensions/resource_registration.php:540 +#, php-format +msgid "Warning create '%s' visual map, the name exist, the report have a name %s." +msgstr "" +"Advertencia al crear el mapa visual '%s'. El nombre ya existe y el informe tiene el " +"nombre %s." + +#: ../../extensions/resource_registration.php:552 +#, php-format +msgid "Success create '%s' visual map." +msgstr "Ɖxito al crear el mapa visual '%s'" + +#: ../../extensions/resource_registration.php:553 +#, php-format +msgid "Error create '%s' visual map." +msgstr "Error al crear el mapa visual '%s'" + +#: ../../extensions/resource_registration.php:718 +#, php-format +msgid "Success create item type '%d' visual map." +msgstr "Elemento de tipo \"%d\" del mapa visual creado correctamente" + +#: ../../extensions/resource_registration.php:719 +#, php-format +msgid "Error create item type '%d' visual map." +msgstr "Error al crear el tipo de elemento \"%d\" del mapa visual" + +#: ../../extensions/resource_registration.php:742 +#: ../../extensions/resource_registration.php:763 +#, php-format +msgid "Success create item for agent '%s' visual map." +msgstr "Elemento de agente '%s' del mapa visual creado correctamente" + +#: ../../extensions/resource_registration.php:743 +#: ../../extensions/resource_registration.php:764 +#, php-format +msgid "Error create item for agent '%s' visual map." +msgstr "Error al crear el elemento de agente '%s' del mapa visual" + +#: ../../extensions/resource_registration.php:1028 +#, php-format +msgid "Success create '%s' component." +msgstr "Componente '%s' creado correctamente" + +#: ../../extensions/resource_registration.php:1029 +#, php-format +msgid "Error create '%s' component." +msgstr "Error al crear el componente '%s'" + +#: ../../extensions/resource_registration.php:1095 +#: ../../extensions/resource_registration.php:1158 +msgid "Resource registration" +msgstr "Registro de recursos" + +#: ../../extensions/resource_registration.php:1114 +#, php-format +msgid "This node is configured with centralized mode. Go to %s to create a policy." +msgstr "" +"Este nodo estĆ” configurado en modo centralizado. Vaya a %s para crear una polĆ­tica." + +#: ../../extensions/resource_registration.php:1123 +msgid "This extension makes registering resource templates easier." +msgstr "Esta extensiĆ³n facilita el registro de plantillas de recursos." + +#: ../../extensions/resource_registration.php:1123 +msgid "Here you can upload a resource template in .ptr format." +msgstr "AquĆ­ puede aƱadir una plantilla de recurso en formato .ptr." + +#: ../../extensions/resource_registration.php:1123 +#, php-format +msgid "" +"Please refer to our documentation for more information on how to obtain and use %s " +"resources." +msgstr "" +"DirĆ­jase a nuestra documentaciĆ³n para encontrar mĆ”s informaciĆ³n sobre como obtener y " +"usar los recursos de %s." + +#: ../../extensions/resource_registration.php:1123 +msgid "" +"You can get more resurces in our Public Resource Library" +msgstr "" +"Puede obtener mĆ”s recursos en nuestra LibrerĆ­a de recursos pĆŗblica" + +#: ../../extensions/api_checker.php:111 ../../extensions/api_checker.php:248 +msgid "API checker" +msgstr "ComprobaciĆ³n API" + +#: ../../extensions/api_checker.php:128 +#, php-format +msgid "%s Console URL" +msgstr "%s URL de la consola" + +#: ../../extensions/api_checker.php:133 +msgid "API Pass" +msgstr "ContraseƱa de la API" + +#: ../../extensions/api_checker.php:151 +msgid "Action (get or set)" +msgstr "AcciĆ³n (obtener o establecer)" + +#: ../../extensions/api_checker.php:166 +msgid "ID 2" +msgstr "ID 2" + +#: ../../extensions/api_checker.php:171 +msgid "Return Type" +msgstr "Tipo de retorno" + +#: ../../extensions/api_checker.php:181 +msgid "Other Mode" +msgstr "Otro modo" + +#: ../../extensions/api_checker.php:189 +msgid "Raw URL" +msgstr "URL en crudo" + +#: ../../extensions/api_checker.php:200 +msgid "Call parameters" +msgstr "ParĆ”metros de llamada" + +#: ../../extensions/api_checker.php:200 +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 +msgid "Custom URL" +msgstr "URL personalizada:" + +#: ../../extensions/api_checker.php:213 +msgid "Call" +msgstr "Llamada" + +#: ../../extensions/api_checker.php:222 ../../extensions/api_checker.php:239 +msgid "Show URL" +msgstr "Mostrar URL" + +#: ../../extensions/api_checker.php:235 +msgid "Hide URL" +msgstr "Ocultar URL" + +#: ../../extensions/db_status.php:25 ../../extensions/db_status.php:453 +#: ../../godmode/menu.php:439 +msgid "DB Schema check" +msgstr "ComprobaciĆ³n del esquema de la BD" + +#: ../../extensions/db_status.php:43 +msgid "" +"This extension checks the DB is correct. Because sometimes the old DB from a " +"migration has not some fields in the tables or the data is changed." +msgstr "" +"Esta extensiĆ³n comprueba que la DB es correcta, ya que, en ocasiones, la antigua DB " +"de una migraciĆ³n no tiene algunos campos en las tablas o los datos son diferentes." + +#: ../../extensions/db_status.php:46 +msgid "At the moment the checks is for MySQL/MariaDB." +msgstr "Por el momento, las comprobaciones son para MySQL/MariaDB" + +#: ../../extensions/db_status.php:52 +msgid "DB settings" +msgstr "ConfiguraciĆ³n de la BD" + +#: ../../extensions/db_status.php:56 +msgid "DB User with privileges" +msgstr "Usuario de la BD con privilegios" + +#: ../../extensions/db_status.php:58 +msgid "DB Password for this user" +msgstr "ContraseƱa de la BD para este usuario" + +#: ../../extensions/db_status.php:62 +msgid "DB Hostname" +msgstr "Nombre del host de la base de datos" + +#: ../../extensions/db_status.php:64 +msgid "DB Name (temporal for testing)" +msgstr "Nombre de la BD (temporal, para pruebas)" + +#: ../../extensions/db_status.php:72 +msgid "Execute Test" +msgstr "Ejecutar la prueba" + +#: ../../extensions/db_status.php:108 +msgid "Unsuccessful connected to the DB" +msgstr "Error al conectarse a la BD" + +#: ../../extensions/db_status.php:119 +msgid "Unsuccessful created the testing DB" +msgstr "Error al crear la BD de prueba" + +#: ../../extensions/db_status.php:135 +msgid "Unsuccessful installed tables into the testing DB" +msgstr "Error al instalar las tablas en la BD de prueba" + +#: ../../extensions/db_status.php:219 +#, php-format +msgid "Success! %s DB contains all tables" +msgstr "Hecho! %s La base de datos contiene todas las tablas" + +#: ../../extensions/db_status.php:221 +#, php-format +msgid "%s DB could not retrieve all tables. The missing tables are (%s)" +msgstr "" +"%s La base de datos no ha podido obtener todas las tablas. Faltan las tablas (%s)" + +#: ../../extensions/db_status.php:235 ../../extensions/db_status.php:246 +#: ../../extensions/db_status.php:349 +msgid "You can execute this SQL query for to fix." +msgstr "Puede ejecutar esta consulta SQL para arreglarlo" + +#: ../../extensions/db_status.php:343 +#, php-format +msgid "Unsuccessful the table %s has not the field %s" +msgstr "Error, la tabla %s no contiene todos los campos %s" + +#: ../../extensions/db_status.php:408 +msgid "Successful all the tables have the correct fields" +msgstr "Todas las tablas tienen los campos correctos" + +#: ../../extensions/agents_alerts.php:37 +msgid "Agents/Alerts view" +msgstr "Vista de Agentes/Alertas" + +#: ../../extensions/resource_exportation.php:50 +#: ../../extensions/resource_exportation.php:420 +msgid "Resource exportation" +msgstr "ExportaciĆ³n de recursos" + +#: ../../extensions/resource_exportation.php:423 +msgid "This extension makes exportation of resource template more easy." +msgstr "Esta extensiĆ³n facilita la exportaciĆ³n de la plantilla de recursos." + +#: ../../extensions/resource_exportation.php:423 +msgid "You can export resource templates in .ptr format." +msgstr "Puede exportar plantillas de recursos en formato .prt." + +#: ../../extensions/files_repo.php:103 +msgid "Extension not installed" +msgstr "ExtensiĆ³n no instalada" + +#: ../../extensions/files_repo.php:118 ../../extensions/files_repo.php:207 +msgid "Administration view" +msgstr "Vista de administraciĆ³n" + +#: ../../extensions/files_repo.php:130 ../../extensions/files_repo.php:240 +msgid "Files repository manager" +msgstr "Gestor del repositorio de archivos" + +#: ../../extensions/files_repo.php:148 +msgid "" +"Problem uploading. Please check this PHP runtime variable values:
  "
+"post_max_size (currently "
+msgstr ""
+"Problema de carga. Compruebe los valores de esta variable de tiempo de ejecuciĆ³n de "
+"PHP: 
  post_max_size (actualmente "
+
+#: ../../extensions/files_repo.php:221 ../../extensions/files_repo.php:238
+msgid "Files repository"
+msgstr "Repositorio de archivos"
+
+#: ../../extensions/dbmanager.php:110
+msgid "Database interface"
+msgstr "Interfaz de base de datos"
+
+#: ../../extensions/dbmanager.php:123
+msgid ""
+"Warning, you are accessing the database directly. You can leave the system "
+"inoperative if you run an inappropriate SQL statement"
+msgstr ""
+"Advertencia, estĆ” accediendo a la base de datos directamente. Puede dejar el sistema "
+"inoperativo si ejecuta una instrucciĆ³n SQL inapropiada"
+
+#: ../../extensions/dbmanager.php:161
+#, php-format
+msgid ""
+"This is an advanced extension to interface with %s database directly from WEB "
+"console\n"
+"\t\tusing native SQL sentences. Please note that you can damage your %s "
+"installation\n"
+"\t\tif you don't know exactly what are you are doing,\n"
+"\t\tthis means that you can severily damage your setup using this extension.\n"
+"\t\tThis extension is intended to be used only by experienced users\n"
+"\t\twith a depth knowledge of %s internals."
+msgstr ""
+"Esta es una extensiĆ³n avanzada de la interfaz con la %s base de datos directamente "
+"desde la consola WEB\n"
+"\t\tusando comandos SQL nativos. Tenga en cuenta que puede perjudicar a la %s "
+"instalaciĆ³n\n"
+"\t\tsi no sabe exactamente lo que hace,\n"
+"\t\testo significa que puede daƱar seriamente la configuraciĆ³n al usar esta "
+"extensiĆ³n.\n"
+"\t\tEsta extensiĆ³n estĆ” destinada  solamente a usuarios expertos\n"
+"\t\tcon amplios conocimientos sobre el funcionamiento %s interno."
+
+#: ../../extensions/dbmanager.php:207
+msgid "Select query target"
+msgstr "Seleccionar destino de consulta"
+
+#: ../../extensions/dbmanager.php:214
+msgid "Execute SQL"
+msgstr "Ejecutar SQL"
+
+#: ../../extensions/dbmanager.php:255
+msgid "Error querying database node"
+msgstr "Error al consultar el nodo de la base de datos"
+
+#: ../../extensions/dbmanager.php:322 ../../godmode/menu.php:439
+msgid "DB interface"
+msgstr "Interfaz de la BD"
+
+#: ../../extensions/agents_modules.php:396
+#: ../../godmode/reporting/reporting_builder.item_editor.php:1953
+#: ../../include/lib/Dashboard/Widgets/agent_module.php:255
+msgid "Show module status"
+msgstr "Mostrar el estado del mĆ³dulo"
+
+#: ../../extensions/agents_modules.php:397
+#: ../../godmode/reporting/reporting_builder.item_editor.php:1954
+#: ../../include/lib/Dashboard/Widgets/agent_module.php:256
+msgid "Show module data"
+msgstr "Mostrar datos del mĆ³dulo"
+
+#: ../../extensions/agents_modules.php:400
+#: ../../godmode/reporting/reporting_builder.item_editor.php:1949
+#: ../../include/lib/Dashboard/Widgets/agent_module.php:265
+msgid "Information to be shown"
+msgstr "InformaciĆ³n que debe mostrarse"
+
+#: ../../extensions/agents_modules.php:465 ../../include/functions_reports.php:795
+msgid "Agents/Modules"
+msgstr "Agentes/MĆ³dulos"
+
+#: ../../extensions/agents_modules.php:564
+msgid "Agent/module view"
+msgstr "Vista de agente/mĆ³dulo"
+
+#: ../../extensions/agents_modules.php:605
+msgid "Filters "
+msgstr "Filtros "
+
+#: ../../extensions/agents_modules.php:605
+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:2986
+msgid "There are no agents with modules"
+msgstr "No hay agentes con mĆ³dulos"
+
+#: ../../extensions/agents_modules.php:765
+msgid "Previous modules"
+msgstr "MĆ³dulos anteriores"
+
+#: ../../extensions/agents_modules.php:791
+msgid "More modules"
+msgstr "MĆ”s mĆ³dulos"
+
+#: ../../extensions/agents_modules.php:934
+#: ../../include/functions_reporting_html.php:2069
+msgid "Orange cell when the module has fired alerts"
+msgstr "Cuadro naranja cuando el mĆ³dulo ha disparado alertas"
+
+#: ../../extensions/agents_modules.php:936
+#: ../../include/functions_reporting_html.php:2070
+msgid "Red cell when the module has a critical status"
+msgstr "Celda roja cuando el mĆ³dulo estĆ” en estado crĆ­tico"
+
+#: ../../extensions/agents_modules.php:939
+#: ../../include/functions_reporting_html.php:2071
+msgid "Yellow cell when the module has a warning status"
+msgstr "Cuadro amarillo cuando el mĆ³dulo estĆ” en estado advertencia"
+
+#: ../../extensions/agents_modules.php:941
+#: ../../include/functions_reporting_html.php:2072
+msgid "Green cell when the module has a normal status"
+msgstr "Cuadro verde cuando el mĆ³dulo estĆ” en estado normal"
+
+#: ../../extensions/agents_modules.php:943
+#: ../../include/functions_reporting_html.php:2073
+msgid "Grey cell when the module has an unknown status"
+msgstr "Cuadro gris cuando el mĆ³dulo estĆ” en estado desconocido"
+
+#: ../../extensions/agents_modules.php:945
+msgid "Cell turns blue when the module is in 'not initialize' status"
+msgstr "Celda azul cuando el mĆ³dulo estĆ” en estado \"no iniciado\""
+
+#: ../../extensions/agents_modules.php:959
+msgid "Agents/Modules view"
+msgstr "Vista de Agentes/MĆ³dulos"
+
+#: ../../extensions/pandora_logs.php:29
+msgid "Cannot find file"
+msgstr "Archivo no encontrado"
+
+#: ../../extensions/pandora_logs.php:34
+msgid "File is too large than PHP memory allocated in the system."
+msgstr "El archivo supera la capacidad de la memoria PHP alojada en el sistema"
+
+#: ../../extensions/pandora_logs.php:35
+msgid "The preview file is imposible."
+msgstr "No es posible generar una vista previa del archivo"
+
+#: ../../extensions/pandora_logs.php:38 ../../extensions/pandora_logs.php:45
+msgid "The folder /var/log/pandora must have pandora:apache and its content too."
+msgstr ""
+"La carpeta /var/log/pandora debe contener pandora:apache y tambiƩn su contenido."
+
+#: ../../extensions/pandora_logs.php:67
+msgid "System logfile viewer"
+msgstr "Visor de archivos de log del sistema"
+
+#: ../../extensions/pandora_logs.php:69
+#, php-format
+msgid "Use this tool to view your %s logfiles directly on the console"
+msgstr ""
+"Utilice esta herramienta para ver los %s ficheros log directamente desde la consola"
+
+#: ../../extensions/pandora_logs.php:71
+msgid ""
+"You can choose the amount of information shown in general setup (Log size limit in "
+"system logs viewer extension), "
+msgstr ""
+"Puedes elegir la cantidad de informaciĆ³n que se muestra en la configuraciĆ³n general "
+"(lĆ­mite de tamaƱo de logs en la extensiĆ³n del visor de logs del sistema) "
+
+#: ../../extensions/pandora_logs.php:85
+msgid "System logfiles"
+msgstr "Logs del sistema"
+
+#: ../../extensions/files_repo/functions_files_repo.php:28
+#: ../../extensions/files_repo/functions_files_repo.php:46
+msgid "Attachment directory is not writable by HTTP Server"
+msgstr "El servidor HTTP no puede escribir en el directorio de adjuntos"
+
+#: ../../extensions/files_repo/functions_files_repo.php:28
+#: ../../extensions/files_repo/functions_files_repo.php:46
+#, php-format
+msgid "Please check that the web server has write rights on the %s directory"
+msgstr ""
+"Por favor, comprueba que el directorio %s del servidor web tiene permisos de escritura"
+
+#: ../../extensions/files_repo/functions_files_repo.php:248
+msgid "The file could not be copied"
+msgstr "El archivo no ha sido copiado"
+
+#: ../../extensions/files_repo/functions_files_repo.php:251
+msgid "There was an error creating the file"
+msgstr "Se ha producido un error creando el archivo"
+
+#: ../../extensions/files_repo/functions_files_repo.php:295
+msgid "There was an error updating the file"
+msgstr "Se ha producido un error actualizando el archivo"
+
+#: ../../extensions/files_repo/files_repo_get_file.php:66
+msgid "Unreliable petition"
+msgstr "PeticiĆ³n no fiable"
+
+#: ../../extensions/files_repo/files_repo_get_file.php:66
+msgid "Please contact the administrator"
+msgstr "Por favor, contacta con el administrador"
+
+#: ../../extensions/files_repo/files_repo_form.php:84
+msgid "Only 200 characters are permitted"
+msgstr "MƔximo 200 caracteres"
+
+#: ../../extensions/files_repo/files_repo_form.php:95 ../../godmode/extensions.php:138
+msgid "File"
+msgstr "Archivo"
+
+#: ../../extensions/files_repo/files_repo_form.php:98
+#: ../../extensions/files_repo/files_repo_form.php:104
+#: ../../extensions/files_repo/files_repo_list.php:112
+msgid "Public link"
+msgstr "Enlace pĆŗblico"
+
+#: ../../extensions/files_repo/files_repo_list.php:58
+#: ../../include/functions_filemanager.php:605
+msgid "Last modification"
+msgstr "ƚltima modificaciĆ³n"
+
+#: ../../extensions/files_repo/files_repo_list.php:106
+msgid "Copy to clipboard"
+msgstr "Copiar al portapapeles"
+
+#: ../../extensions/files_repo/files_repo_list.php:164
+#: ../../include/functions_reporting_html.php:2101
+#: ../../include/functions_reporting_html.php:2105
+msgid "No items"
+msgstr "No hay elementos"
+
+#: ../../extensions/module_groups.php:48
+msgid "Counters Module"
+msgstr "MĆ³dulo de contadores"
+
+#: ../../extensions/module_groups.php:49
+msgid "Alerts_Fired"
+msgstr "Alertas_disparadas"
+
+#: ../../extensions/module_groups.php:51
+msgid "warning"
+msgstr "Advertencia"
+
+#: ../../extensions/module_groups.php:54
+msgid "Not_init"
+msgstr "No_iniciado"
+
+#: ../../extensions/module_groups.php:251
+msgid "Combined table of agent group and module group"
+msgstr "Tabla combinada de grupos de agentes y grupos de mĆ³dulos"
+
+#: ../../extensions/module_groups.php:275
+msgid "Search by agent group"
+msgstr "Buscar por grupo de agente"
+
+#: ../../extensions/module_groups.php:279
+msgid "Search by module group"
+msgstr "Buscar por grupo de mĆ³dulos"
+
+#: ../../extensions/module_groups.php:392
+msgid "Orange cell when the module group and agent have at least one alarm fired."
+msgstr ""
+"Celda naranja cuando el grupo de mĆ³dulos y el agente del mĆ³dulo tengan al menos una "
+"alerta disparada."
+
+#: ../../extensions/module_groups.php:393
+msgid ""
+"Red cell when the module group and agent have at least one module in critical status "
+"and the others in any status"
+msgstr ""
+"Celda roja cuando el grupo de mĆ³dulos y el agente tengan al menos un mĆ³dulo en estado "
+"crƭtico y los demƔs en cualquier otro estado."
+
+#: ../../extensions/module_groups.php:394
+msgid ""
+"Yellow cell when the module group and agent have at least one in warning status and "
+"the others in grey or green status"
+msgstr ""
+"Celda amarilla cuando el grupo de mĆ³dulos y el agente tengan al menos un mĆ³dulo en "
+"estado crƭtico y los demƔs en cualquier otro estado"
+
+#: ../../extensions/module_groups.php:395
+msgid ""
+"Grey cell when the module group and agent have at least one in unknown status and the "
+"others in green status"
+msgstr ""
+"Celda gris cuando el grupo de mĆ³dulos y el agente tengan al menos un mĆ³dulo en estado "
+"desconocido y todos los demƔs estƔn en OK"
+
+#: ../../extensions/module_groups.php:396
+msgid "Green cell when the module group and agent have all modules in OK status"
+msgstr ""
+"Celda verde cuando el grupo de mĆ³dulos y el agente tengan todos los mĆ³dulos en estado "
+"OK"
+
+#: ../../extensions/module_groups.php:397
+msgid "Blue cell when the module group and agent have all modules in not init status."
+msgstr ""
+"Celda azul cuando el grupo de mĆ³dulos y el agente tengan todos los mĆ³dulos en estado "
+"no iniciado."
+
+#: ../../extensions/module_groups.php:401
+msgid ""
+"This table shows in columns the modules group and in rows agents group. The cell "
+"shows all modules"
+msgstr ""
+"La tabla muestra los grupos de mĆ³dulos en columnas y los grupos de agente en filas. "
+"La celda muestra todos los mĆ³dulos."
+
+#: ../../extensions/module_groups.php:402
+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:106
+#: ../../include/lib/Dashboard/Widgets/tree_view.php:330 ../../operation/tree.php:102
+msgid "Module groups"
+msgstr "Grupos de mĆ³dulos"
+
+#: ../../extensions/insert_data.php:58
+msgid "Insert data"
+msgstr "Insertar datos"
+
+#: ../../extensions/insert_data.php:89
+msgid "You haven't privileges for insert data in the agent."
+msgstr "No tienes privilegios para insertar datos en el agente"
+
+#: ../../extensions/insert_data.php:125
+#, php-format
+msgid "Can't save agent (%s), module (%s) data xml."
+msgstr "No se pudo guardar el agente (%s), mĆ³dulo (%s) datos XML"
+
+#: ../../extensions/insert_data.php:134
+#, php-format
+msgid "Save agent (%s), module (%s) data xml."
+msgstr "Guardar agente (%s), mĆ³dulo (%s) datos XML"
+
+#: ../../extensions/insert_data.php:145
+#, php-format
+msgid ""
+"Please check that the directory \"%s\" is writeable by the apache user. 

The CSV file format is date;value<newline>date;value<newline>... The " +"date in CSV is in format Y/m/d H:i:s." +msgstr "" +"Por favor, comprueba que el usuario de Apache puede escribir en el directorio '%s'. " +"

El formato del archivo CSV es date;value<newline>date;value<" +"newline>... La fecha en CVS estĆ” en formato a/m/d H:i:s." + +#: ../../extensions/insert_data.php:273 +msgid "Insert Data" +msgstr "Insertar datos" + +#: ../../extensions/realtime_graphs.php:58 ../../extensions/realtime_graphs.php:268 +msgid "Realtime graphs" +msgstr "GrĆ”ficas en tiempo real" + +#: ../../extensions/realtime_graphs.php:134 +#, php-format +msgid "%s Server CPU" +msgstr "%s CPU del servidor" + +#: ../../extensions/realtime_graphs.php:136 +#, php-format +msgid "Pending packages from %s Server" +msgstr "Paquetes del %s servidor pendientes" + +#: ../../extensions/realtime_graphs.php:140 +#, php-format +msgid "%s Server Disk IO Wait" +msgstr "%s Server Disk IO Wait" + +#: ../../extensions/realtime_graphs.php:144 +#, php-format +msgid "%s Server Apache load" +msgstr "%s Carga del servidor apache" + +#: ../../extensions/realtime_graphs.php:148 +#, php-format +msgid "%s Server MySQL load" +msgstr "%s Carga del servidor MySQL" + +#: ../../extensions/realtime_graphs.php:152 +#, php-format +msgid "%s Server load" +msgstr "%s Carga del servidor" + +#: ../../extensions/realtime_graphs.php:155 +msgid "SNMP Interface throughput" +msgstr "Rendimiento de interfaz SNMP" + +#: ../../extensions/realtime_graphs.php:206 +msgid "Refresh interval" +msgstr "Intervalo de actualizaciĆ³n" + +#: ../../extensions/realtime_graphs.php:217 +#: ../../godmode/modules/manage_network_components_form_wizard.php:135 +msgid "Incremental" +msgstr "Incremental" + +#: ../../extensions/realtime_graphs.php:222 +msgid "Clear graph" +msgstr "Limpiar grĆ”fica" + +#: ../../extensions/realtime_graphs.php:249 +#: ../../godmode/agentes/module_manager_editor_network.php:43 +msgid "Use this OID" +msgstr "Usar esta OID" + +#: ../../extensions/users_connected.php:37 ../../extensions/users_connected.php:209 +msgid "Users connected" +msgstr "Usuarios conectados" + +#: ../../extensions/users_connected.php:42 +msgid "This user does not have any associated profile" +msgstr "Este usuario no tiene ningĆŗn perfil/grupo asignado" + +#: ../../extensions/users_connected.php:132 +msgid "No other users connected" +msgstr "No hay otros usuarios conectados" + +#: ../../extensions/users_connected.php:145 +msgid "Last login" +msgstr "ƚltimo acceso" + +#: ../../godmode/modules/manage_nc_groups_form.php:54 +msgid "Update Group Component" +msgstr "ActualizaciĆ³n de los componentes del grupo" + +#: ../../godmode/modules/manage_nc_groups_form.php:56 +msgid "Create Group Component" +msgstr "Crear componentes de grupo" + +#: ../../godmode/modules/manage_network_templates_form.php:32 +#: ../../godmode/modules/manage_network_templates.php:39 +#: ../../include/class/ModuleTemplates.class.php:199 +#: ../../include/class/ModuleTemplates.class.php:217 +#: ../../include/class/ModuleTemplates.class.php:227 +msgid "Module template management" +msgstr "GestiĆ³n de plantillas de mĆ³dulos" + +#: ../../godmode/modules/manage_network_templates_form.php:59 +msgid "Successfully deleted module from profile" +msgstr "MĆ³dulo borrado del perfil correctamente" + +#: ../../godmode/modules/manage_network_templates_form.php:60 +msgid "Error deleting module from profile" +msgstr "Error al borrar el mĆ³dulo del perfil" + +#: ../../godmode/modules/manage_network_templates_form.php:79 +msgid "Successfully added module to profile" +msgstr "MĆ³dulo aƱadido correctamente al perfil" + +#: ../../godmode/modules/manage_network_templates_form.php:80 +msgid "Error adding module to profile" +msgstr "Error al aƱadir el mĆ³dulo al perfil" + +#: ../../godmode/modules/manage_network_templates_form.php:113 +msgid "Successfully updated network profile" +msgstr "Perfil de red actualizado correctamente" + +#: ../../godmode/modules/manage_network_templates_form.php:114 +msgid "Error updating network profile" +msgstr "Error al actualizar el perfil de red" + +#: ../../godmode/modules/manage_network_templates_form.php:138 +msgid "Successfully added network profile" +msgstr "Perfil de red aƱadido correctamente" + +#: ../../godmode/modules/manage_network_templates_form.php:139 +msgid "Error adding network profile" +msgstr "Error al aƱadir el perfil de red" + +#: ../../godmode/modules/manage_network_templates_form.php:145 +msgid "Cannot create a template without name" +msgstr "No se puede crear una plantilla sin nombre" + +#: ../../godmode/modules/manage_network_templates_form.php:219 +msgid "No modules for this profile" +msgstr "No existen mĆ³dulos para este perfil" + +#: ../../godmode/modules/manage_network_templates_form.php:260 +#: ../../operation/snmpconsole/snmp_browser.php:155 +#: ../../operation/snmpconsole/snmp_browser.php:175 +msgid "Add modules" +msgstr "AƱadir mĆ³dulos" + +#: ../../godmode/modules/manage_nc_groups.php:40 +msgid "Component group management" +msgstr "GestiĆ³n de grupos de componentes de red" + +#: ../../godmode/modules/manage_nc_groups.php:293 +#, php-format +msgid "" +"This node is configured with centralized mode. Component groups are read only. Go to " +"%s to manage it." +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/modules/manage_nc_groups.php:311 +msgid "There are no defined component groups" +msgstr "No hay grupos de componentes definidos" + +#: ../../godmode/modules/manage_network_components_form_common.php:712 +#: ../../godmode/agentes/module_manager_editor_common.php:2000 +msgid "Please introduce a positive percentage value" +msgstr "Introduzca un valor porcentual positivo" + +#: ../../godmode/modules/manage_network_components_form_network.php:72 +msgid "SNMP Enterprise String" +msgstr "Cadena SNMP Enterprise" + +#: ../../godmode/modules/manage_network_components_form_network.php:191 +#: ../../godmode/modules/manage_network_components_form_wizard.php:315 +msgid "Name OID" +msgstr "Nombre del OID" + +#: ../../godmode/modules/manage_network_components_form_wmi.php:41 +#: ../../godmode/agentes/module_manager_editor_wmi.php:87 +msgid "Namespace" +msgstr "Espacio de nombres" + +#: ../../godmode/modules/manage_network_components_form.php:355 +msgid "Update Network Component" +msgstr "ActualizaciĆ³n de componente de red" + +#: ../../godmode/modules/manage_network_components_form.php:357 +msgid "Create Network Component" +msgstr "Crear componente de red" + +#: ../../godmode/modules/manage_network_components.php:290 +msgid "Remote component management" +msgstr "GestiĆ³n remota de componentes" + +#: ../../godmode/modules/manage_network_components.php:313 +#, php-format +msgid "" +"This node is configured with centralized mode. All remote components are read only. " +"Go to %s to manage them." +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/modules/manage_network_components.php:424 +msgid "Could not be created because the component exists" +msgstr "No se ha podido crear porque el componente existe" + +#: ../../godmode/modules/manage_network_components.php:660 +msgid "Search by name, description, tcp send or tcp rcv, list matches." +msgstr "BĆŗsqueda por nombre, descripciĆ³n, envĆ­o TCP o TCP RCV, lista las coincidencias." + +#: ../../godmode/modules/manage_network_components.php:753 +msgid "Max/Min" +msgstr "MĆ”x/MĆ­n" + +#: ../../godmode/modules/manage_network_components.php:804 +#: ../../include/class/ModuleTemplates.class.php:1234 +msgid "Network module" +msgstr "MĆ³dulo de red" + +#: ../../godmode/modules/manage_network_components.php:815 +#: ../../include/class/ModuleTemplates.class.php:1245 +msgid "WMI module" +msgstr "MĆ³dulo WMI" + +#: ../../godmode/modules/manage_network_components.php:826 +#: ../../include/class/ModuleTemplates.class.php:1256 +msgid "Plug-in module" +msgstr "MĆ³dulo de plugin" + +#: ../../godmode/modules/manage_network_components.php:837 +msgid "Wizard module" +msgstr "MĆ³dulo de wizard" + +#: ../../godmode/modules/manage_network_components.php:910 +msgid "There are no defined network components" +msgstr "No hay componentes de red definidos" + +#: ../../godmode/modules/manage_network_components.php:921 +msgid "Create a new network component" +msgstr "Crear un componente de red nuevo" + +#: ../../godmode/modules/manage_network_components.php:922 +msgid "Create a new plugin component" +msgstr "Crear un componente de plugin nuevo" + +#: ../../godmode/modules/manage_network_components.php:923 +msgid "Create a new WMI component" +msgstr "Crear un componente WMI nuevo" + +#: ../../godmode/modules/manage_network_components.php:924 +msgid "Create a new wizard component" +msgstr "Crear un nuevo componente de wizard" + +#: ../../godmode/modules/manage_network_components_form_wizard.php:92 +msgid "Add a macro oid" +msgstr "AƱadir una oid de macro" + +#: ../../godmode/modules/manage_network_components_form_wizard.php:110 +msgid "Remove last macro oid" +msgstr "Eliminar Ćŗltimo macro de oid" + +#: ../../godmode/modules/manage_network_components_form_wizard.php:134 +msgid "Numeric" +msgstr "NumĆ©rico" + +#: ../../godmode/modules/manage_network_components_form_wizard.php:136 +msgid "Boolean" +msgstr "Boleano" + +#: ../../godmode/modules/manage_network_components_form_wizard.php:137 +msgid "Alphanumeric" +msgstr "AlfanumĆ©rico" + +#: ../../godmode/modules/manage_network_components_form_wizard.php:258 +msgid "Add by default" +msgstr "AƱadir por defecto" + +#: ../../godmode/modules/manage_network_components_form_wizard.php:286 +msgid "Module protocol" +msgstr "Protocolo de mĆ³dulo" + +#: ../../godmode/modules/manage_network_components_form_wizard.php:302 +msgid "Protocol" +msgstr "Protocolo" + +#: ../../godmode/modules/manage_network_components_form_wizard.php:318 +msgid "Manufacturer ID" +msgstr "ID del fabricante" + +#: ../../godmode/modules/manage_network_components_form_wizard.php:350 +msgid "Component Group" +msgstr "Grupo de componente" + +#: ../../godmode/modules/manage_network_components_form_wizard.php:368 +msgid "Module unit" +msgstr "Unidad de mĆ³dulo" + +#: ../../godmode/modules/manage_network_components_form_wizard.php:458 +msgid "Scan Type" +msgstr "Tipo de escaneo" + +#: ../../godmode/modules/manage_network_components_form_wizard.php:472 +#: ../../godmode/agentes/planned_downtime.list.php:321 +msgid "Execution type" +msgstr "Tipo de ejecuciĆ³n" + +#: ../../godmode/modules/manage_network_components_form_wizard.php:492 +msgid "Value OID" +msgstr "OID del valor" + +#: ../../godmode/modules/manage_network_components_form_wizard.php:509 +msgid "Macros OID" +msgstr "OID de macros" + +#: ../../godmode/modules/manage_network_components_form_wizard.php:517 +#: ../../godmode/modules/manage_network_components_form_wizard.php:702 +msgid "Value operation" +msgstr "OperaciĆ³n de valores" + +#: ../../godmode/modules/manage_network_components_form_wizard.php:534 +#: ../../godmode/modules/manage_network_components_form_wizard.php:719 +msgid "Satellite execution" +msgstr "EjecuciĆ³n de satĆ©lite" + +#: ../../godmode/modules/manage_network_components_form_wizard.php:551 +#: ../../godmode/modules/manage_network_components_form_wizard.php:736 +msgid "Server plugin" +msgstr "Plugin de servidor" + +#: ../../godmode/modules/manage_network_components_form_wizard.php:589 +msgid "WMI class" +msgstr "Clase WMI" + +#: ../../godmode/modules/manage_network_components_form_wizard.php:606 +msgid "Query key field" +msgstr "Campo de clave de consulta" + +#: ../../godmode/modules/manage_network_components_form_wizard.php:623 +msgid "Query extra fields" +msgstr "Campos extra de consulta" + +#: ../../godmode/modules/manage_network_components_form_wizard.php:631 +msgid "Query filters" +msgstr "Filtros de consulta" + +#: ../../godmode/modules/manage_network_components_form_wizard.php:674 +msgid "Field value" +msgstr "Calor de campo" + +#: ../../godmode/modules/module_list.php:29 +msgid "Defined modules" +msgstr "MĆ³dulos definidos" + +#: ../../godmode/modules/module_list.php:51 +msgid "Problem modifying module" +msgstr "Problema al modificar los mĆ³dulos" + +#: ../../godmode/modules/module_list.php:53 +msgid "Module updated successfully" +msgstr "ActualizaciĆ³n de mĆ³dulos correcta" + +#: ../../godmode/modules/manage_network_templates.php:84 +msgid "Error deleting template" +msgstr "Error al borrar la plantilla" + +#: ../../godmode/modules/manage_network_templates.php:124 +msgid "This template does not exist" +msgstr "Esta plantilla no existe." + +#: ../../godmode/modules/manage_network_templates.php:304 +msgid "There are no defined network profiles" +msgstr "No hay ningĆŗn perfil de red definido" + +#: ../../godmode/db/db_main.php:74 +msgid "Current database maintenance setup" +msgstr "ConfiguraciĆ³n actual del mantenimiento de la BD" + +#: ../../godmode/db/db_main.php:80 +msgid "Database setup" +msgstr "ConfiguraciĆ³n de la base de datos" + +#: ../../godmode/db/db_main.php:84 +msgid "Max. time before compact data" +msgstr "MĆ”x. dĆ­as antes de comprimir datos" + +#: ../../godmode/db/db_main.php:90 +msgid "Max. time before purge" +msgstr "MĆ”x. dĆ­as antes de purga de datos" + +#: ../../godmode/db/db_main.php:98 ../../include/class/Diagnostics.class.php:230 +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:569 +#: ../../include/functions_reporting.php:14085 +msgid "Total events" +msgstr "Total de eventos" + +#: ../../godmode/db/db_main.php:114 +msgid "Total data items (tagente_datos)" +msgstr "Total de elementos de datos (tagente_datos)" + +#: ../../godmode/db/db_main.php:127 +msgid "Total log4x items (tagente_datos_log4x)" +msgstr "Total elementos Log4x (tagente_datos_log4x)" + +#: ../../godmode/db/db_main.php:140 +msgid "Total data string items (tagente_datos_string)" +msgstr "Total de elementos de cadenas de datos (tagente_datos_string)" + +#: ../../godmode/db/db_main.php:146 +msgid "Total modules configured" +msgstr "MĆ³dulos totales configurados" + +#: ../../godmode/db/db_main.php:154 +msgid "Total agent access records" +msgstr "Total de registros de acceso del agente" + +#: ../../godmode/db/db_main.php:166 +msgid "Database sanity" +msgstr "Estado de la BD" + +#: ../../godmode/db/db_main.php:170 +msgid "Total uknown agents" +msgstr "Total de agentes desconocidos" + +#: ../../godmode/db/db_main.php:176 +msgid "Total non-init modules" +msgstr "Total de mĆ³dulos no iniciados" + +#: ../../godmode/db/db_main.php:185 +msgid "Last time on DB maintance" +msgstr "ƚltima vez en mantenimiento de base de datos" + +#: ../../godmode/db/db_main.php:208 +#, php-format +msgid "" +"Please make sure your %s Server settings are correct and that the database " +"maintenance daemon is running. It's very important to keep your database up to date " +"in order to get the best performance and results from %s." +msgstr "" +"AsegĆŗrese de que la configuraciĆ³n del servidor de %s es correcta y que el demonio de " +"mantenimiento de la base de datos estĆ” en ejecuciĆ³n. Es muy importante tener la base " +"de datos actualizada para que el funcionamiento y los resultados de %s sean Ć³ptimos." + +#: ../../godmode/groups/configure_group.php:87 +#: ../../godmode/groups/configure_modu_group.php:49 +msgid "There was a problem loading group" +msgstr "Hubo un error al cargar la configuraciĆ³n del grupo" + +#: ../../godmode/groups/configure_group.php:106 +msgid "Update group" +msgstr "Actualizar grupo" + +#: ../../godmode/groups/configure_group.php:108 ../../godmode/groups/group_list.php:981 +msgid "Create group" +msgstr "Crear grupo" + +#: ../../godmode/groups/configure_group.php:126 ../../godmode/groups/group_list.php:384 +msgid "Manage agents group" +msgstr "Administrar grupo de agentes" + +#: ../../godmode/groups/configure_group.php:138 +msgid "Update Group" +msgstr "Actualizar grupo" + +#: ../../godmode/groups/configure_group.php:140 +msgid "Create Group" +msgstr "Crear grupo" + +#: ../../godmode/groups/configure_group.php:178 +msgid "You have not access to the parent." +msgstr "No tienes acceso al padre" + +#: ../../godmode/groups/configure_group.php:226 +msgid "Group Password" +msgstr "ContraseƱa del grupo" + +#: ../../godmode/groups/configure_group.php:230 +msgid "Enable alert use in this group." +msgstr "Habilitar el uso de alertas en este grupo." + +#: ../../godmode/groups/configure_group.php:234 +msgid "Propagate ACL" +msgstr "Propagar ACL" + +#: ../../godmode/groups/configure_group.php:234 +msgid "Propagate the same ACL security into the child subgroups." +msgstr "" +"Propaga la misma seguridad ACL del padre a todos los grupos hijos que dependen de Ć©l." + +#: ../../godmode/groups/configure_group.php:246 ../../include/functions_events.php:4662 +msgid "Contact" +msgstr "Contacto" + +#: ../../godmode/groups/configure_group.php:246 +msgid "Contact information accessible through the _groupcontact_ macro" +msgstr "InformaciĆ³n de contacto accesible a travĆ©s de _groupcontact_ macro" + +#: ../../godmode/groups/configure_group.php:250 +msgid "Information accessible through the _group_other_ macro" +msgstr "InformaciĆ³n accesible a travĆ©s de _group_other_ macro" + +#: ../../godmode/groups/configure_group.php:259 +msgid "Max agents allowed" +msgstr "MĆ”ximo de agentes permitidos" + +#: ../../godmode/groups/configure_group.php:259 +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 +msgid "Tree Group view" +msgstr "Vista de Ć”rbol de grupos" + +#: ../../godmode/groups/group_list.php:333 +msgid "Credential Store" +msgstr "AlmacĆ©n de credenciales" + +#: ../../godmode/groups/group_list.php:339 +#, php-format +msgid "Groups defined in %s" +msgstr "Grupos definidos en %s" + +#: ../../godmode/groups/group_list.php:349 ../../godmode/menu.php:212 +msgid "Credential store" +msgstr "AlmacĆ©n de credenciales" + +#: ../../godmode/groups/group_list.php:365 +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 +#, php-format +msgid "" +"This node is configured with centralized mode. All groups information is read only. " +"Go to %s to manage it." +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/modu_group_list.php:119 +msgid "Group successfully created" +msgstr "Grupo creado correctamente" + +#: ../../godmode/groups/group_list.php:470 ../../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 +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 +msgid "Group must have a name" +msgstr "El grupo debe tener un nombre" + +#: ../../godmode/groups/group_list.php:540 ../../godmode/groups/modu_group_list.php:155 +msgid "Group successfully updated" +msgstr "Grupo actualizado correctamente" + +#: ../../godmode/groups/group_list.php:542 ../../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 +#, 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 +msgid "" +"The group has not been deleted in the metaconsole due to an error in the node database" +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 +#, 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/modu_group_list.php:229 +msgid "Group successfully deleted" +msgstr "Grupo eliminado correctamente" + +#: ../../godmode/groups/group_list.php:723 ../../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 +#, 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 +msgid "There are no defined groups" +msgstr "No hay grupos definidos" + +#: ../../godmode/groups/group_list.php:924 +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 +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" + +#: ../../godmode/groups/configure_modu_group.php:31 +msgid "Module group management" +msgstr "GestiĆ³n del grupo de mĆ³dulos" + +#: ../../godmode/groups/modu_group_list.php:70 +#, php-format +msgid "Module groups defined in %s" +msgstr "Grupos de mĆ³dulos definidos en %s" + +#: ../../godmode/groups/modu_group_list.php:92 +#, php-format +msgid "" +"This node is configured with centralized mode. All module groups information is read " +"only. Go to %s to manage it." +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/modu_group_list.php:127 +#: ../../godmode/groups/modu_group_list.php:163 +msgid "Each module group must have a different name" +msgstr "Cada grupo de mĆ³dulos debe tener un nombre diferente" + +#: ../../godmode/groups/modu_group_list.php:131 +#: ../../godmode/groups/modu_group_list.php:167 +msgid "Module group must have a name" +msgstr "El grupo de mĆ³dulos debe tener un nombre" + +#: ../../godmode/groups/modu_group_list.php:294 +msgid "There are no defined module groups" +msgstr "No hay grupos de mĆ³dulos definidos" + +#: ../../godmode/groups/modu_group_list.php:303 +msgid "Create module group" +msgstr "Crear grupo de mĆ³dulos" + +#: ../../godmode/extensions.php:28 +msgid "Defined extensions" +msgstr "Extensiones definidas" + +#: ../../godmode/extensions.php:33 +msgid "There are no extensions defined" +msgstr "No hay extensiones definidas" + +#: ../../godmode/extensions.php:141 +msgid "Godmode Function" +msgstr "FunciĆ³n Administrador" + +#: ../../godmode/extensions.php:142 +msgid "Godmode Menu" +msgstr "MenĆŗ Administrador" + +#: ../../godmode/extensions.php:143 +msgid "Operation Menu" +msgstr "MenĆŗ OperaciĆ³n" + +#: ../../godmode/extensions.php:144 +msgid "Operation Function" +msgstr "FunciĆ³n OperaciĆ³n" + +#: ../../godmode/extensions.php:145 +msgid "Login Function" +msgstr "FunciĆ³n ConexiĆ³n" + +#: ../../godmode/extensions.php:146 +msgid "Agent operation tab" +msgstr "PestaƱa Operaciones de agente" + +#: ../../godmode/extensions.php:147 +msgid "Agent godmode tab" +msgstr "PestaƱa AdministraciĆ³n de agente" + +#: ../../godmode/update_manager/update_manager.setup.php:271 +msgid "Warp Update URL" +msgstr "URL de Warp Update" + +#: ../../godmode/update_manager/update_manager.setup.php:275 +msgid "URL update manager" +msgstr "URL Administrador de actualizaciones" + +#: ../../godmode/update_manager/update_manager.setup.php:282 +msgid "Use secured Warp Update" +msgstr "Usar Warp update seguro" + +#: ../../godmode/update_manager/update_manager.setup.php:291 +#: ../../godmode/update_manager/update_manager.setup.php:295 +msgid "Proxy server" +msgstr "Servidor proxy" + +#: ../../godmode/update_manager/update_manager.setup.php:301 +#: ../../godmode/update_manager/update_manager.setup.php:305 +msgid "Proxy port" +msgstr "Puerto del Proxy" + +#: ../../godmode/update_manager/update_manager.setup.php:311 +#: ../../godmode/update_manager/update_manager.setup.php:315 +msgid "Proxy user" +msgstr "Usuario del Proxy" + +#: ../../godmode/update_manager/update_manager.setup.php:321 +#: ../../godmode/update_manager/update_manager.setup.php:325 +msgid "Proxy password" +msgstr "ContraseƱa del Proxy" + +#: ../../godmode/update_manager/update_manager.setup.php:331 +msgid "Allow no-consecutive patches" +msgstr "Permitir parches no consecutivos" + +#: ../../godmode/update_manager/update_manager.setup.php:340 +msgid "Limit to LTS updates" +msgstr "LĆ­mite a las actualizaciones de LTS" + +#: ../../godmode/update_manager/update_manager.setup.php:350 +msgid "Registration ID" +msgstr "ID de registro" + +#: ../../godmode/update_manager/update_manager.setup.php:351 +msgid "Not registred yet" +msgstr "AĆŗn no registrado" + +#: ../../godmode/update_manager/update_manager.setup.php:354 +msgid "Cancel registration" +msgstr "Cancelar registro" + +#: ../../godmode/update_manager/update_manager.setup.php:366 +msgid "Unregister" +msgstr "Cerrar cuenta" + +#: ../../godmode/update_manager/update_manager.setup.php:371 +#, php-format +msgid "%s community reminder" +msgstr "%s recordatorio de la comunidad" + +#: ../../godmode/update_manager/update_manager.setup.php:371 +#, php-format +msgid "" +"Every 8 days, a message is displayed to admin users to remember to register this %s " +"instance" +msgstr "" +"Cada 8 dĆ­as, se mostrarĆ” un mensaje a los usuarios administradores para que recuerden " +"registrar esta instancia %s." + +#: ../../godmode/update_manager/update_manager.history.php:42 +msgid "Origin" +msgstr "Origen" + +#: ../../godmode/update_manager/update_manager.php:64 +#: ../../godmode/update_manager/update_manager.php:83 +msgid "Journal" +msgstr "Diario" + +#: ../../godmode/update_manager/update_manager.php:71 +msgid "Offline update" +msgstr "ActualizaciĆ³n sin conexiĆ³n" + +#: ../../godmode/update_manager/update_manager.php:78 +msgid "Online update" +msgstr "ActualizaciĆ³n en lĆ­nea" + +#: ../../godmode/update_manager/update_manager.php:91 +msgid "Offline" +msgstr "Sin conexiĆ³n" + +#: ../../godmode/update_manager/update_manager.php:96 +msgid "Online" +msgstr "En lĆ­nea" + +#: ../../godmode/update_manager/update_manager.php:159 +msgid "Please register on metaconsole first." +msgstr "Por favor, inicie sesiĆ³n en la Metaconsola primero." + +#: ../../godmode/users/profile_list.php:84 ../../godmode/users/configure_profile.php:76 +#, php-format +msgid "Profiles defined on %s" +msgstr "Perfiles definidos en %s." + +#: ../../godmode/users/profile_list.php:115 +#, php-format +msgid "" +"This node is configured with centralized mode. All profiles information is read only. " +"Go to %s to manage it." +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/users/profile_list.php:127 ../../godmode/users/user_list.php:341 +msgid "There was a problem deleting the profile" +msgstr "Error al borrar el perfil" + +#: ../../godmode/users/profile_list.php:254 +msgid "There was a problem updating this profile" +msgstr "Error al borrar el perfil" + +#: ../../godmode/users/profile_list.php:257 +msgid "Profile name cannot be empty" +msgstr "El nombre de perfil no puede estar vacĆ­o." + +#: ../../godmode/users/profile_list.php:303 ../../godmode/users/profile_list.php:306 +msgid "There was a problem creating this profile" +msgstr "Error al crear el perfil" + +#: ../../godmode/users/profile_list.php:456 +msgid "There are no defined profiles" +msgstr "No hay perfiles definidos" + +#: ../../godmode/users/configure_profile.php:142 +msgid "Create profile" +msgstr "Crear perfil" + +#: ../../godmode/users/configure_profile.php:147 +msgid "There was a problem loading profile" +msgstr "Error al cargar el perfil" + +#: ../../godmode/users/configure_profile.php:239 +msgid "Update profile" +msgstr "Actualizar perfil" + +#: ../../godmode/users/configure_profile.php:249 +msgid "Update Profile" +msgstr "Actualizar perfil" + +#: ../../godmode/users/configure_profile.php:251 +msgid "Create Profile" +msgstr "Crear perfil" + +#: ../../godmode/users/configure_profile.php:272 +msgid "View agents" +msgstr "Ver agentes" + +#: ../../godmode/users/configure_profile.php:276 +msgid "Disable agents" +msgstr "Desactivar agentes" + +#: ../../godmode/users/configure_profile.php:280 +msgid "Edit agents" +msgstr "Editar agentes" + +#: ../../godmode/users/configure_profile.php:287 +msgid "Edit alerts" +msgstr "Editar alertas" + +#: ../../godmode/users/configure_profile.php:302 +msgid "Edit events" +msgstr "Editar eventos" + +#: ../../godmode/users/configure_profile.php:306 ../../godmode/events/events.php:133 +#: ../../operation/events/events.php:1416 +msgid "Manage events" +msgstr "Gestionar eventos" + +#: ../../godmode/users/configure_profile.php:313 +msgid "View reports" +msgstr "Ver informes" + +#: ../../godmode/users/configure_profile.php:317 +msgid "Edit reports" +msgstr "Editar informes" + +#: ../../godmode/users/configure_profile.php:321 +msgid "Manage reports" +msgstr "Gestionar informes" + +#: ../../godmode/users/configure_profile.php:328 +msgid "View network maps" +msgstr "Ver mapas de red" + +#: ../../godmode/users/configure_profile.php:332 +msgid "Edit network maps" +msgstr "Editar mapas de red" + +#: ../../godmode/users/configure_profile.php:336 +msgid "Manage network maps" +msgstr "Gestionar mapas de red" + +#: ../../godmode/users/configure_profile.php:343 ../../include/functions_menu.php:496 +msgid "View visual console" +msgstr "Ver consola visual" + +#: ../../godmode/users/configure_profile.php:347 +msgid "Edit visual console" +msgstr "Editar consola visual" + +#: ../../godmode/users/configure_profile.php:351 +msgid "Manage visual console" +msgstr "Gestionar consolas visuales" + +#: ../../godmode/users/configure_profile.php:363 +msgid "View NCM data" +msgstr "Ver datos de NCM" + +#: ../../godmode/users/configure_profile.php:367 +msgid "Operate NCM" +msgstr "Operar NCM" + +#: ../../godmode/users/configure_profile.php:371 +msgid "Manage NCM" +msgstr "Administrar NCM" + +#: ../../godmode/users/configure_profile.php:378 +msgid "Manage users" +msgstr "Gestionar usuarios" + +#: ../../godmode/users/configure_profile.php:385 +msgid "Manage database" +msgstr "Gestionar la base de datos" + +#: ../../godmode/users/configure_profile.php:392 +#, php-format +msgid "%s management" +msgstr "GestiĆ³n %s." + +#: ../../godmode/users/user_list.php:250 +#, php-format +msgid "Users defined on %s" +msgstr "Usuarios definidos en %s" + +#: ../../godmode/users/user_list.php:287 ../../godmode/users/configure_user.php:151 +#, php-format +msgid "Deleted user %s" +msgstr "Usuario eliminado %s" + +#: ../../godmode/users/user_list.php:294 ../../godmode/users/user_list.php:332 +#: ../../godmode/users/configure_user.php:158 +msgid "There was a problem deleting the user" +msgstr "Error al borrar el usuario" + +#: ../../godmode/users/user_list.php:308 ../../godmode/users/configure_user.php:173 +#, php-format +msgid "Deleted user %s from metaconsole" +msgstr "Usuario %s eliminado de la Metaconsola" + +#: ../../godmode/users/user_list.php:320 ../../godmode/users/configure_user.php:184 +#, php-format +msgid "Deleted user %s from %s" +msgstr "Usuario %s eliminado de %s" + +#: ../../godmode/users/user_list.php:326 ../../godmode/users/configure_user.php:190 +#, php-format +msgid "Successfully deleted from %s" +msgstr "Eliminado correctamente de %s" + +#: ../../godmode/users/user_list.php:327 ../../godmode/users/configure_user.php:191 +#, php-format +msgid "There was a problem deleting the user from %s" +msgstr "Error al eliminar al usuario de %s" + +#: ../../godmode/users/user_list.php:367 +msgid "There was a problem disabling user" +msgstr "Error al deshabilitar el usuario" + +#: ../../godmode/users/user_list.php:373 +msgid "There was a problem enabling user" +msgstr "Error al habilitar el usuario" + +#: ../../godmode/users/user_list.php:432 ../../operation/users/user_edit.php:251 +#, php-format +msgid "" +"This node is configured with centralized mode. All users information is read only. Go " +"to %s to manage it." +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/users/user_list.php:484 +msgid "Profile / Group" +msgstr "Perfil/Grupo" + +#: ../../godmode/users/user_list.php:665 ../../operation/search_users.php:63 +msgid "Administrator" +msgstr "Administrador" + +#: ../../godmode/users/user_list.php:714 +msgid "Other profiles are also assigned." +msgstr "Otros perfiles tambiĆ©n han sido asignados" + +#: ../../godmode/users/user_list.php:716 +msgid "" +"Other profiles you cannot manage are also assigned. These profiles are not shown. You " +"cannot enable/disable or delete this user." +msgstr "" +"Otros perfiles que no puede gestionar tambiĆ©n han sido asignados. Estos perfiles no " +"se muestran. No puede habilitar/deshabilitar o borrar este usuario." + +#: ../../godmode/users/user_list.php:723 ../../include/functions_reporting.php:4605 +#: ../../include/functions_reporting.php:4652 ../../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:873 ../../godmode/users/configure_user.php:208 +msgid "Create user" +msgstr "Crear usuario" + +#: ../../godmode/users/user_list.php:876 ../../godmode/users/configure_user.php:316 +#, 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:206 +msgid "Update user" +msgstr "Actualizar usuario" + +#: ../../godmode/users/configure_user.php:244 ../../operation/users/user_edit.php:31 +msgid "User detail editor" +msgstr "Editor de detalles de usuario" + +#: ../../godmode/users/configure_user.php:401 +msgid "User ID cannot be empty" +msgstr "El ID de usuario no puede estar vacĆ­o." + +#: ../../godmode/users/configure_user.php:408 +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:416 +msgid "Passwords cannot be empty" +msgstr "Las contraseƱas no pueden estar vacĆ­as." + +#: ../../godmode/users/configure_user.php:423 +msgid "Passwords didn't match" +msgstr "Las contraseƱas no coinciden." + +#: ../../godmode/users/configure_user.php:482 +msgid "" +"Strict ACL is not recommended for admin users because performance could be affected." +msgstr "" +"ACL estricto no estĆ” recomendado para usuarios administradores porque el rendimiento " +"podrĆ­a verse afectado." + +#: ../../godmode/users/configure_user.php:517 ../../godmode/users/configure_user.php:803 +msgid "Profile added successfully" +msgstr "Perfil aƱadido correctamente" + +#: ../../godmode/users/configure_user.php:518 ../../godmode/users/configure_user.php:804 +msgid "Profile cannot be added" +msgstr "El perfil no se puede aƱadir." + +#: ../../godmode/users/configure_user.php:640 ../../godmode/users/configure_user.php:664 +#: ../../godmode/users/configure_user.php:734 ../../godmode/users/configure_user.php:741 +#: ../../godmode/users/configure_user.php:773 ../../operation/users/user_edit.php:184 +#: ../../operation/users/user_edit.php:229 +msgid "User info successfully updated" +msgstr "InformaciĆ³n del usuario actualizada correctamente" + +#: ../../godmode/users/configure_user.php:641 ../../godmode/users/configure_user.php:665 +#: ../../godmode/users/configure_user.php:735 ../../godmode/users/configure_user.php:742 +#: ../../godmode/users/configure_user.php:774 +msgid "Error updating user info (no change?)" +msgstr "Error al actualizar la informaciĆ³n del usuario (Āæno hubo cambios?)" + +#: ../../godmode/users/configure_user.php:670 +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:672 +msgid "Password of active user is not correct" +msgstr "La contraseƱa del usuario activo no es correcta" + +#: ../../godmode/users/configure_user.php:688 +msgid "Passwords does not match" +msgstr "Las contraseƱas no coinciden." + +#: ../../godmode/users/configure_user.php:763 +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:842 +msgid "Update User" +msgstr "Actualizar usuario" + +#: ../../godmode/users/configure_user.php:844 +msgid "Create User" +msgstr "Crear usuario" + +#: ../../godmode/users/configure_user.php:896 ../../operation/users/user_edit.php:272 +msgid "Full (display) name" +msgstr "Nombre completo" + +#: ../../godmode/users/configure_user.php:913 ../../operation/users/user_edit.php:419 +msgid "Timezone" +msgstr "Zona horaria" + +#: ../../godmode/users/configure_user.php:914 ../../operation/users/user_edit.php:419 +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:947 ../../operation/users/user_edit.php:299 +msgid "Password confirmation" +msgstr "Confirmar contraseƱa" + +#: ../../godmode/users/configure_user.php:965 +msgid "Own password confirmation" +msgstr "ConfirmaciĆ³n de contraseƱa propia" + +#: ../../godmode/users/configure_user.php:975 +msgid "Administrator user" +msgstr "Usuario administrador" + +#: ../../godmode/users/configure_user.php:1002 ../../operation/users/user_edit.php:292 +msgid "E-mail" +msgstr "Correo electrĆ³nico" + +#: ../../godmode/users/configure_user.php:1018 ../../operation/users/user_edit.php:294 +msgid "Phone number" +msgstr "NĆŗmero de telĆ©fono" + +#: ../../godmode/users/configure_user.php:1053 ../../operation/users/user_edit.php:401 +#: ../../operation/users/user_edit.php:410 +msgid "Skin" +msgstr "Apariencia" + +#: ../../godmode/users/configure_user.php:1062 +msgid "Search custom field view" +msgstr "Buscar vista de campo personalizado" + +#: ../../godmode/users/configure_user.php:1062 +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:1079 +msgid "Use global conf" +msgstr "Usar configuraciĆ³n global" + +#: ../../godmode/users/configure_user.php:1084 ../../operation/users/user_edit.php:354 +msgid "Home screen" +msgstr "Pantalla de inicio" + +#: ../../godmode/users/configure_user.php:1085 ../../operation/users/user_edit.php:354 +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 "" +"El usuario puede personalizar la pĆ”gina de inicio. MostrarĆ” \"Detalle de agente\" por " +"defecto. Ejemplo: seleccionar \"otro\" y escribir index.php?sec=estado&sec2=operation/" +"agentes/ver_agente&id_agente=1 para mostrar la vista de detalle de agente" + +#: ../../godmode/users/configure_user.php:1092 ../../godmode/events/events.php:41 +#: ../../operation/users/user_edit.php:358 ../../operation/events/events.php:1359 +msgid "Event list" +msgstr "Lista de eventos" + +#: ../../godmode/users/configure_user.php:1095 ../../operation/users/user_edit.php:361 +#: ../../operation/agentes/alerts_status.php:190 ../../operation/menu.php:66 +msgid "Alert detail" +msgstr "Detalle de alertas" + +#: ../../godmode/users/configure_user.php:1096 +msgid "External link" +msgstr "Enlace externo" + +#: ../../godmode/users/configure_user.php:1189 +msgid "Metaconsole access" +msgstr "Acceso a la Metaconsola" + +#: ../../godmode/users/configure_user.php:1207 +msgid "Not Login" +msgstr "No se inicia la sesiĆ³n" + +#: ../../godmode/users/configure_user.php:1209 +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:1219 +msgid "Local user" +msgstr "Usuario local" + +#: ../../godmode/users/configure_user.php:1221 +msgid "The user with local authentication enabled will always use local authentication." +msgstr "" +"El usuario con la autenticaciĆ³n local habilitada siempre utilizarĆ” la autenticaciĆ³n " +"local." + +#: ../../godmode/users/configure_user.php:1231 +msgid "Session Time" +msgstr "TIempo de sesiĆ³n" + +#: ../../godmode/users/configure_user.php:1233 +msgid "" +"This is defined in minutes, If you wish a permanent session should putting -1 in this " +"field." +msgstr "" +"Esto estĆ” definido en minutos; si quieres una sesiĆ³n permanente, pon -1 en este campo." + +#: ../../godmode/users/configure_user.php:1267 +msgid "Default event filter" +msgstr "Filtro de evento por defecto" + +#: ../../godmode/users/configure_user.php:1281 +msgid "eHorus user access enabled" +msgstr "Acceso de usuario eHorus habilitado" + +#: ../../godmode/users/configure_user.php:1289 ../../include/functions_config.php:1661 +msgid "eHorus user" +msgstr "Usuario de eHorus" + +#: ../../godmode/users/configure_user.php:1298 ../../include/functions_config.php:1665 +msgid "eHorus password" +msgstr "ContraseƱa de eHorus" + +#: ../../godmode/users/configure_user.php:1321 +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:1331 ../../operation/users/user_edit.php:440 +msgid "Show information" +msgstr "Mostrar informaciĆ³n" + +#: ../../godmode/users/configure_user.php:1349 +msgid "Enable agents managment" +msgstr "Habilitar gestiĆ³n de agentes" + +#: ../../godmode/users/configure_user.php:1357 +msgid "Enable node access" +msgstr "Habilitar el acceso al nodo" + +#: ../../godmode/users/configure_user.php:1357 +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:1572 +msgid "yes" +msgstr "sĆ­" + +#: ../../godmode/users/configure_user.php:1575 +msgid "no" +msgstr "no" + +#: ../../godmode/users/configure_user.php:1579 +msgid "please select profile and group" +msgstr "Seleccione un perfil y grupo" + +#: ../../godmode/users/configure_user.php:1605 +msgid "Deleting last profile will delete this user" +msgstr "Eliminar el Ćŗltimo perfil eliminarĆ” este usuario" + +#: ../../godmode/users/configure_user.php:1645 +msgid "" +"User will be created without profiles assigned and won't be able to log in, are you " +"sure?" +msgstr "" +"El usuario se crearĆ” sin perfiles asignados y no podrĆ” identificarse, ĀæestĆ” seguro?" + +#: ../../godmode/users/configure_user.php:1810 ../../operation/users/user_edit.php:1079 +msgid "Double autentication information" +msgstr "InformaciĆ³n sobre la doble autentificaciĆ³n" + +#: ../../godmode/users/configure_user.php:1900 ../../operation/users/user_edit.php:1168 +msgid "The double authentication will be deactivated" +msgstr "La doble autentificaciĆ³n se desactivarĆ”" + +#: ../../godmode/users/configure_user.php:1901 ../../operation/users/user_edit.php:1169 +msgid "Deactivate" +msgstr "Desactivado" + +#: ../../godmode/users/configure_user.php:1937 ../../operation/users/user_edit.php:1201 +msgid "The double autentication was deactivated successfully" +msgstr "La doble autentificaciĆ³n fue desactivada correctamente" + +#: ../../godmode/users/configure_user.php:1941 +#: ../../godmode/users/configure_user.php:1945 ../../operation/users/user_edit.php:1204 +#: ../../operation/users/user_edit.php:1208 +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:15255 +msgid "Created by template " +msgstr "Creado mediante la plantilla " + +#: ../../godmode/agentes/agent_template.php:156 +msgid "Error adding modules" +msgstr "Error al aƱadir mĆ³dulos" + +#: ../../godmode/agentes/agent_template.php:158 +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:15349 +msgid "Modules successfully added" +msgstr "MĆ³dulos aƱadidos correctamente" + +#: ../../godmode/agentes/agent_template.php:188 +msgid "Assign" +msgstr "Asignar" + +#: ../../godmode/agentes/agent_template.php:269 ../../mobile/operation/modules.php:772 +msgid "No modules" +msgstr "Sin mĆ³dulos" + +#: ../../godmode/agentes/module_manager_editor_wmi.php:87 +msgid "Optional. WMI namespace. If unsure leave blank." +msgstr "Opcional. Campo de nombre WMI. Ante la duda, dejar en blanco." + +#: ../../godmode/agentes/module_manager_editor_wmi.php:151 +msgid "" +"Optional. Substring to look for in the WQL query result. The module returns 1 if " +"found, 0 if not." +msgstr "" +"Opcional. Subcadena para buscar en los resultados de la consulta WQL. El mĆ³dulo " +"devuelve 1 si se ha encontrado algĆŗn resultado, 0 en caso contrario." + +#: ../../godmode/agentes/module_manager_editor_wmi.php:164 +msgid "Column number to retrieve from the WQL query result (starting from zero)." +msgstr "NĆŗmero de columna a obtener del resultado de la consulta WQL (a partir de 0)." + +#: ../../godmode/agentes/module_manager_editor_web.php:155 +msgid "Debug remotely this module" +msgstr "Depurar este mĆ³dulo en remoto" + +#: ../../godmode/agentes/module_manager_editor_web.php:158 +msgid "Debug this module once it has been initialized" +msgstr "Depurar este mĆ³dulo una vez iniciado" + +#: ../../godmode/agentes/module_manager_editor_web.php:180 +#: ../../include/class/WebServerModuleDebug.class.php:325 +msgid "Debug" +msgstr "Depurar" + +#: ../../godmode/agentes/module_manager_editor_web.php:205 +msgid "Requests" +msgstr "Peticiones" + +#: ../../godmode/agentes/module_manager_editor_web.php:208 +msgid "Agent browser id" +msgstr "ID del navegador (Agent Browser)" + +#: ../../godmode/agentes/module_manager_editor_web.php:214 +msgid "HTTP auth (login)" +msgstr "AutentificaciĆ³n HTTP (inicio de sesiĆ³n)" + +#: ../../godmode/agentes/module_manager_editor_web.php:217 +msgid "HTTP auth (password)" +msgstr "AutentificaciĆ³n HTTP (contraseƱa)" + +#: ../../godmode/agentes/module_manager_editor_web.php:231 +msgid "Proxy auth (login)" +msgstr "AutentificaciĆ³n Proxy (inicio de sesiĆ³n)" + +#: ../../godmode/agentes/module_manager_editor_web.php:235 +msgid "Proxy auth (pass)" +msgstr "AutentificaciĆ³n proxy (contraseƱa)" + +#: ../../godmode/agentes/module_manager_editor_web.php:242 +msgid "Proxy auth (server)" +msgstr "AutentificaciĆ³n proxy (servidor)" + +#: ../../godmode/agentes/module_manager_editor_web.php:246 +msgid "Proxy auth (realm)" +msgstr "AutentificaciĆ³n proxy (Ć”rea)" + +#: ../../godmode/agentes/module_manager_editor_web.php:258 +msgid "There isn't get or post" +msgstr "No se puede obtener o publicar." + +#: ../../godmode/agentes/status_monitor_custom_fields.php:101 +#: ../../godmode/agentes/status_monitor_custom_fields.php:149 +#: ../../include/functions_treeview.php:326 +#: ../../operation/agentes/status_monitor.php:1340 +#: ../../operation/agentes/estado_generalagente.php:436 +msgid "Last status change" +msgstr "ƚltimo cambio de estado" + +#: ../../godmode/agentes/status_monitor_custom_fields.php:125 +msgid "Show monitor detail fields" +msgstr "Mostrar campo de detalle de monitor" + +#: ../../godmode/agentes/configurar_agente.php:244 +#: ../../godmode/agentes/configurar_agente.php:1042 +msgid "No agent alias specified" +msgstr "No se ha especificado el alias del agente" + +#: ../../godmode/agentes/configurar_agente.php:247 +msgid "Agent cannot be created due to the maximum agent limit for this group" +msgstr "" +"El agente no puede crearse por el lĆ­mite de mĆ”ximo nĆŗmero de agentes de este grupo" + +#: ../../godmode/agentes/configurar_agente.php:353 +msgid "Could not be created, because name already exists" +msgstr "No se pudo crear, el nombre ya existe." + +#: ../../godmode/agentes/configurar_agente.php:355 +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:438 ../../godmode/menu.php:164 +#: ../../godmode/wizards/HostDevices.class.php:1077 +msgid "Module templates" +msgstr "Plantillas de mĆ³dulos" + +#: ../../godmode/agentes/configurar_agente.php:510 +#: ../../operation/agentes/ver_agente.php:1487 +msgid "GIS data" +msgstr "Datos GIS" + +#: ../../godmode/agentes/configurar_agente.php:582 +#: ../../godmode/agentes/configurar_agente.php:750 +#: ../../operation/agentes/ver_agente.php:1507 ../../operation/menu.php:495 +#: ../../operation/incidents/incident_statistics.php:21 +#: ../../general/first_task/incidents.php:28 +msgid "Incidents" +msgstr "Incidentes" + +#: ../../godmode/agentes/configurar_agente.php:745 +msgid "Gis" +msgstr "GIS" + +#: ../../godmode/agentes/configurar_agente.php:787 +msgid "SNMP explorer" +msgstr "Explorador SNMP" + +#: ../../godmode/agentes/configurar_agente.php:818 +#: ../../godmode/agentes/configurar_agente.php:840 +#: ../../godmode/agentes/modificar_agente.php:104 ../../godmode/menu.php:119 +msgid "Resources" +msgstr "Recursos" + +#: ../../godmode/agentes/configurar_agente.php:828 +msgid "Agent manager" +msgstr "Administrador de agente" + +#: ../../godmode/agentes/configurar_agente.php:868 +#: ../../godmode/servers/modificar_server.php:222 +msgid "Conf file deleted successfully" +msgstr "Archivo de configuraciĆ³n borrado correctamente" + +#: ../../godmode/agentes/configurar_agente.php:869 +#: ../../godmode/servers/modificar_server.php:223 +msgid "Could not delete conf file" +msgstr "No se puede borrar el archivo de configuraciĆ³n" + +#: ../../godmode/agentes/configurar_agente.php:886 +#: ../../godmode/agentes/configurar_agente.php:1037 +#: ../../include/class/ExternalTools.class.php:750 +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:913 +#: ../../godmode/agentes/configurar_agente.php:917 +msgid "No data to normalize" +msgstr "No hay datos para normalizar" + +#: ../../godmode/agentes/configurar_agente.php:922 +#, php-format +msgid "Deleted data above %f" +msgstr "Eliminar datos por encima de %f" + +#: ../../godmode/agentes/configurar_agente.php:923 +#, php-format +msgid "Error normalizing module %s" +msgstr "Error al normalizar el mĆ³dulo %s" + +#: ../../godmode/agentes/configurar_agente.php:1052 +#, php-format +msgid "The group id %d is incorrect." +msgstr "El grupo id %d es incorrecto." + +#: ../../godmode/agentes/configurar_agente.php:1054 +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:1056 +msgid "Duplicate main IP address" +msgstr "Duplicar la direcciĆ³n IP principal" + +#: ../../godmode/agentes/configurar_agente.php:1109 +msgid "There was a problem updating the agent" +msgstr "Hubo un problema al actualizar el agente" + +#: ../../godmode/agentes/configurar_agente.php:1202 +msgid "There was a problem loading the agent" +msgstr "Hubo un problema al cargar el agente" + +#: ../../godmode/agentes/configurar_agente.php:1713 +msgid "" +"There was a problem updating module. Another module already exists with the same name." +msgstr "" +"Hubo un problema al actualizar el mĆ³dulo. Ya existe otro mĆ³dulo con el mismo nombre." + +#: ../../godmode/agentes/configurar_agente.php:1717 +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:1721 +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:1727 +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:1756 +msgid "Module successfully updated" +msgstr "MĆ³dulo actualizado correctamente" + +#: ../../godmode/agentes/configurar_agente.php:1903 +msgid "" +"There was a problem adding module. Another module already exists with the same name." +msgstr "" +"Hubo un problema al aƱadir el mĆ³dulo. Ya existe otro mĆ³dulo con el mismo nombre." + +#: ../../godmode/agentes/configurar_agente.php:1907 +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:1913 +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:1942 +#: ../../godmode/reporting/graph_builder.php:386 +msgid "Module added successfully" +msgstr "MĆ³dulo aƱadido correctamente" + +#: ../../godmode/agentes/configurar_agente.php:2093 +msgid "There was a problem deleting the module" +msgstr "Hubo un problema al borrar el mĆ³dulo" + +#: ../../godmode/agentes/configurar_agente.php:2097 +msgid "Module deleted succesfully" +msgstr "MĆ³dulo borrado correctamente" + +#: ../../godmode/agentes/configurar_agente.php:2236 +#: ../../include/functions_api.php:11137 +#, php-format +msgid "Save by %s Console" +msgstr "Guardar por consola de %s" + +#: ../../godmode/agentes/configurar_agente.php:2254 +#: ../../include/functions_api.php:11138 +#, php-format +msgid "Update by %s Console" +msgstr "Actualizar por consola de %s" + +#: ../../godmode/agentes/configurar_agente.php:2270 +#: ../../include/functions_api.php:11139 +#, php-format +msgid "Insert by %s Console" +msgstr "Insertar por consola de %s" + +#: ../../godmode/agentes/configurar_agente.php:2343 +#: ../../godmode/agentes/configurar_agente.php:2355 +msgid "Invalid tab specified" +msgstr "La pestaƱa no es vĆ”lida" + +#: ../../godmode/agentes/module_manager_editor_prediction.php:110 +msgid "Source module" +msgstr "MĆ³dulo origen" + +#: ../../godmode/agentes/module_manager_editor_prediction.php:148 +#: ../../godmode/agentes/module_manager_editor_prediction.php:169 +msgid "Select Module" +msgstr "Seleccionar mĆ³dulo" + +#: ../../godmode/agentes/module_manager_editor_prediction.php:195 +msgid "Calculation type" +msgstr "Tipo de cĆ”lculo" + +#: ../../godmode/agentes/module_manager_editor_prediction.php:203 +msgid "Estimated absolute value" +msgstr "Valor absoluto estimado" + +#: ../../godmode/agentes/module_manager_editor_prediction.php:204 +msgid "Calculation of days to reach limit" +msgstr "CĆ”lculo de dĆ­as para alcanzar el lĆ­mite" + +#: ../../godmode/agentes/module_manager_editor_prediction.php:213 +msgid "Future estimation" +msgstr "EstimaciĆ³n futura" + +#: ../../godmode/agentes/module_manager_editor_prediction.php:228 +msgid "Limit value" +msgstr "Valor lĆ­mite" + +#: ../../godmode/agentes/module_manager_editor.php:718 +msgid "Invalid module type" +msgstr "Tipo de mĆ³dulo no vĆ”lido" + +#: ../../godmode/agentes/module_manager_editor.php:762 +msgid "Module relations" +msgstr "Relaciones entre mĆ³dulos" + +#: ../../godmode/agentes/module_manager_editor.php:852 +msgid "No module to predict" +msgstr "No existe ningĆŗn mĆ³dulo para predecir." + +#: ../../godmode/agentes/module_manager_editor.php:862 +msgid "No plug-in provided" +msgstr "Plugin no proporcionado" + +#: ../../godmode/agentes/module_manager_editor.php:872 +msgid "No server provided" +msgstr "NingĆŗn servidor especificado" + +#: ../../godmode/agentes/module_manager_editor.php:903 +msgid "" +"Error, The field name and name in module_name in data configuration are different." +msgstr "" +"Error, el nombre del campo y el nombre de module_name en los datos de configuraciĆ³n " +"son diferentes." + +#: ../../godmode/agentes/module_manager_editor.php:941 +msgid "The File APIs are not fully supported in this browser." +msgstr "Las API de archivos no son totalmente compatibles con este navegador." + +#: ../../godmode/agentes/module_manager_editor.php:942 +msgid "Couldn`t find the fileinput element." +msgstr "Elemento de archivo de entrada no encontrado" + +#: ../../godmode/agentes/module_manager_editor.php:943 +msgid "This browser doesn`t seem to support the files property of file inputs." +msgstr "" +"Este navegador parece no ser compatible con los archivos pertenecientes al archivo de " +"entrada." + +#: ../../godmode/agentes/module_manager_editor.php:944 +msgid "Please select a file before clicking Load" +msgstr "Seleccione un archivo antes de hacer clic en Cargar" + +#: ../../godmode/agentes/modificar_agente.php:95 +#, php-format +msgid "Agents defined in %s" +msgstr "Agentes definidos en %s" + +#: ../../godmode/agentes/modificar_agente.php:124 +#, php-format +msgid "This node is configured with centralized mode. Go to %s to delete an agent" +msgstr "" +"Este nodo estĆ” configurado en modo centralizado. Para eliminar un agente, vaya %s" + +#: ../../godmode/agentes/modificar_agente.php:170 +msgid "Success deleted agent." +msgstr "Agente eliminado correctamente" + +#: ../../godmode/agentes/modificar_agente.php:171 +msgid "Could not be deleted." +msgstr "No pudo ser borrado." + +#: ../../godmode/agentes/modificar_agente.php:186 +msgid "Maybe the files conf or md5 could not be deleted" +msgstr "Los archivos conf o md5 no han podido ser borrados." + +#: ../../godmode/agentes/modificar_agente.php:333 +msgid "Show Agents" +msgstr "Mostrar agentes" + +#: ../../godmode/agentes/modificar_agente.php:335 +msgid "Everyone" +msgstr "Todos" + +#: ../../godmode/agentes/modificar_agente.php:349 +msgid "Operative System" +msgstr "Sistema operativo" + +#: ../../godmode/agentes/modificar_agente.php:367 +msgid "Search filter by alias, name, description, IP address or custom fields content" +msgstr "" +"Buscar filtro por alias, nombre, descripciĆ³n, direcciĆ³n IP o contenido de campos " +"personalizados." + +#: ../../godmode/agentes/modificar_agente.php:648 +msgid "Remote agent configuration" +msgstr "ConfiguraciĆ³n remota del agente" + +#: ../../godmode/agentes/modificar_agente.php:648 +msgid "R" +msgstr "R" + +#: ../../godmode/agentes/modificar_agente.php:858 +msgid "Edit remote config" +msgstr "Editar configuraciĆ³n remota" + +#: ../../godmode/agentes/modificar_agente.php:908 +msgid "You are going to enable a cluster agent. Are you sure?" +msgstr "ĀæEsta seguro de que desea habilitar el cluster de agentes?" + +#: ../../godmode/agentes/modificar_agente.php:911 +msgid "Enable agent" +msgstr "Habilitar agente" + +#: ../../godmode/agentes/modificar_agente.php:918 +msgid "You are going to disable a cluster agent. Are you sure?" +msgstr "ĀæEsta seguro de que desea deshabilitar el cluster de agentes?" + +#: ../../godmode/agentes/modificar_agente.php:921 +msgid "Disable agent" +msgstr "Deshabilitar agente" + +#: ../../godmode/agentes/modificar_agente.php:931 +msgid "WARNING! - You are going to delete a cluster agent. Are you sure?" +msgstr "Ā”ADVERTENCIA! - ĀæEsta seguro de que desea eliminar el cluster de agentes?" + +#: ../../godmode/agentes/agent_conf_gis.php:38 ../../operation/agentes/gis_view.php:59 msgid "There is no default map. Please go to the setup for to set a default map." msgstr "" "No existe ningĆŗn mapa por defecto. Por favor, selecciona uno en la secciĆ³n de " "configuraciĆ³n." -#: ../../operation/agentes/gis_view.php:96 -msgid "Period to show data as path" -msgstr "PerĆ­odo para mostrar datos como ruta" +#: ../../godmode/agentes/agent_conf_gis.php:50 +msgid "" +"There is no GIS data for this agent, so it's positioned in default position of map." +msgstr "" +"No hay datos de GIS para este agente, por lo que es colocado en posiciĆ³n por defecto " +"del mapa." -#: ../../operation/agentes/gis_view.php:100 -msgid "Refresh path" -msgstr "Actualizar ruta" +#: ../../godmode/agentes/agent_conf_gis.php:58 +msgid "" +"When you change the Agent position, the agent automatically activates the 'Ignore new " +"GIS data' option" +msgstr "" +"Cuando se cambia la posiciĆ³n de agente, el agente activa automĆ”ticamente la opciĆ³n " +"\"Ignorar nuevos datos GIS\"." -#: ../../operation/agentes/gis_view.php:158 -msgid "This agent doesn't have any GIS data." -msgstr "Este agente no tiene ningĆŗn dato GIS." +#: ../../godmode/agentes/agent_conf_gis.php:67 +msgid "Agent position" +msgstr "PosiciĆ³n del agente" -#: ../../operation/agentes/gis_view.php:170 -msgid "Positional data from the last" -msgstr "Datos de posiciĆ³n desde el Ćŗltimo" +#: ../../godmode/agentes/agent_conf_gis.php:73 +msgid "Latitude: " +msgstr "Latitud: " -#: ../../operation/agentes/gis_view.php:209 +#: ../../godmode/agentes/agent_conf_gis.php:90 +msgid "Longitude: " +msgstr "Longitud: " + +#: ../../godmode/agentes/agent_conf_gis.php:107 +msgid "Altitude: " +msgstr "Altitud: " + +#: ../../godmode/agentes/agent_conf_gis.php:124 +#: ../../godmode/massive/massive_edit_agents.php:984 +msgid "Ignore new GIS data:" +msgstr "Ignorar nuevos datos GIS:" + +#: ../../godmode/agentes/planned_downtime.list.php:174 +#: ../../godmode/agentes/planned_downtime.editor.php:67 +#: ../../include/functions_reporting_html.php:879 +#: ../../include/functions_reporting_html.php:4670 +msgid "Scheduled Downtime" +msgstr "Parada planificada" + +#: ../../godmode/agentes/planned_downtime.list.php:206 +msgid "An error occurred stopping the scheduled downtime" +msgstr "Se produjo un error al detener la parada planificada" + +#: ../../godmode/agentes/planned_downtime.list.php:233 +msgid "This scheduled downtime is running" +msgstr "Esta parada planificada se estĆ” ejecutando" + +#: ../../godmode/agentes/planned_downtime.list.php:318 +#: ../../godmode/agentes/planned_downtime.editor.php:612 +msgid "Once" +msgstr "Una vez" + +#: ../../godmode/agentes/planned_downtime.list.php:319 +#: ../../godmode/agentes/planned_downtime.list.php:664 +#: ../../godmode/agentes/planned_downtime.editor.php:613 +msgid "Periodically" +msgstr "PeriĆ³dicamente" + +#: ../../godmode/agentes/planned_downtime.list.php:333 +msgid "Show past downtimes" +msgstr "Mostrar paradas antiguas" + +#: ../../godmode/agentes/planned_downtime.list.php:574 +#: ../../godmode/agentes/planned_downtime.export_csv.php:202 +msgid "No scheduled downtime" +msgstr "No hay paradas planificadas" + +#: ../../godmode/agentes/planned_downtime.list.php:610 +msgid "Name #Ag." +msgstr "Nombre (nĆŗm. ag.)" + +#: ../../godmode/agentes/planned_downtime.list.php:617 +msgid "Affected" +msgstr "Afectado" + +#: ../../godmode/agentes/planned_downtime.list.php:622 +#: ../../godmode/agentes/planned_downtime.list.php:725 +#: ../../godmode/agentes/planned_downtime.list.php:731 +msgid "Stop downtime" +msgstr "Detener parada planificada" + +#: ../../godmode/agentes/planned_downtime.list.php:656 +#: ../../godmode/agentes/planned_downtime.editor.php:595 +msgid "Disabled Agents" +msgstr "Agentes desactivados" + +#: ../../godmode/agentes/planned_downtime.list.php:657 +#: ../../godmode/agentes/planned_downtime.editor.php:596 +msgid "Disabled only Alerts" +msgstr "Deshabilitar solo las alertas" + +#: ../../godmode/agentes/planned_downtime.list.php:663 +msgid "once" +msgstr "una vez" + +#: ../../godmode/agentes/planned_downtime.list.php:678 +msgid "Not running" +msgstr "No estĆ” en ejecuciĆ³n" + +#: ../../godmode/agentes/planned_downtime.list.php:696 +msgid "Agents / Modules affected" +msgstr "Agentes / MĆ³dulos afectados" + +#: ../../godmode/agentes/planned_downtime.list.php:705 +msgid "Agents and modules affected" +msgstr "Agentes y mĆ³dulos afectados" + +#: ../../godmode/agentes/planned_downtime.list.php:903 +msgid "" +"WARNING: If you delete this scheduled downtime, it will not be taken into account in " +"future SLA reports" +msgstr "" +"ADVERTENCIA: si se borra esta parada planificada, no se tendrĆ” en cuenta en futuros " +"informes SLA" + +#: ../../godmode/agentes/planned_downtime.list.php:909 +msgid "WARNING: There are malformed scheduled downtimes" +msgstr "ADVERTENCIA: hay paradas planificadas mal formadas" + +#: ../../godmode/agentes/planned_downtime.list.php:909 +msgid "Do you want to migrate automatically the malformed items?" +msgstr "ĀæQuiere migrar automĆ”ticamente los elementos mal formados?" + +#: ../../godmode/agentes/planned_downtime.editor.php:208 +#: ../../godmode/agentes/planned_downtime.editor.php:1129 +#: ../../godmode/agentes/planned_downtime.editor.php:1264 +msgid "This elements cannot be modified while the downtime is being executed" +msgstr "" +"Estos elementos no se pueden modificar mientras se estĆ” ejecutando el tiempo de " +"inactividad." + +#: ../../godmode/agentes/planned_downtime.editor.php:241 +#: ../../include/functions_planned_downtimes.php:40 +#: ../../include/functions_planned_downtimes.php:742 +msgid "" +"Not created. Error inserting data. Start time must be higher than the current time" +msgstr "" +"No ha sido creado. Error insertando datos. La fecha de comienzo debe ser anterior a " +"la fecha actual." + +#: ../../godmode/agentes/planned_downtime.editor.php:245 +#: ../../godmode/agentes/planned_downtime.editor.php:249 +#: ../../godmode/agentes/planned_downtime.editor.php:257 +#: ../../godmode/agentes/planned_downtime.editor.php:261 +#: ../../include/functions_planned_downtimes.php:42 +#: ../../include/functions_planned_downtimes.php:47 +#: ../../include/functions_planned_downtimes.php:49 +#: ../../include/functions_planned_downtimes.php:747 +#: ../../include/functions_planned_downtimes.php:754 +#: ../../include/functions_planned_downtimes.php:762 +#: ../../include/functions_planned_downtimes.php:770 +#: ../../include/functions_planned_downtimes.php:775 +#: ../../include/functions_planned_downtimes.php:780 +#: ../../include/functions_planned_downtimes.php:785 +#: ../../include/functions_planned_downtimes.php:790 +#: ../../include/functions_planned_downtimes.php:795 +#: ../../include/functions_planned_downtimes.php:800 +msgid "Not created. Error inserting data" +msgstr "No se pudo crear. Error al insertar los datos." + +#: ../../godmode/agentes/planned_downtime.editor.php:245 +#: ../../include/functions_planned_downtimes.php:42 +#: ../../include/functions_planned_downtimes.php:754 +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:249 +#: ../../include/functions_planned_downtimes.php:747 +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:257 +#: ../../godmode/agentes/planned_downtime.editor.php:722 +#: ../../godmode/agentes/planned_downtime.editor.php:735 +#: ../../include/functions_planned_downtimes.php:47 +#: ../../include/functions_planned_downtimes.php:762 +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:261 +#: ../../godmode/agentes/planned_downtime.editor.php:707 +#: ../../include/functions_planned_downtimes.php:49 +#: ../../include/functions_planned_downtimes.php:770 +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." + +#: ../../godmode/agentes/planned_downtime.editor.php:313 +#: ../../include/functions_planned_downtimes.php:98 +#: ../../include/functions_planned_downtimes.php:814 +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:318 +#: ../../godmode/agentes/planned_downtime.editor.php:350 +#: ../../include/functions_planned_downtimes.php:103 +#: ../../include/functions_planned_downtimes.php:820 +msgid "Scheduled downtime must have a name" +msgstr "La parada de servicio planeada debe tener un nombre." + +#: ../../godmode/agentes/planned_downtime.editor.php:589 +msgid "Quiet: Modules will not generate events or fire alerts." +msgstr "Modo silencioso: los mĆ³dulos no generarĆ”n eventos ni dispararĆ”n alertas." + +#: ../../godmode/agentes/planned_downtime.editor.php:589 +msgid "Disable Agents: Disables the selected agents." +msgstr "Deshabilitar agentes: deshabilita los agentes seleccionados" + +#: ../../godmode/agentes/planned_downtime.editor.php:589 +msgid "Disable Alerts: Disable alerts for the selected agents." +msgstr "Deshabilitar alertas: deshabilita las alertas de los agentes seleccionados" + +#: ../../godmode/agentes/planned_downtime.editor.php:634 +#: ../../include/functions_reporting_html.php:86 +#: ../../include/functions_reporting_html.php:5582 +#: ../../include/ajax/alert_list.ajax.php:592 +msgid "From:" +msgstr "Desde:" + +#: ../../godmode/agentes/planned_downtime.editor.php:638 +#: ../../include/functions_reporting_html.php:86 +#: ../../include/functions_reporting_html.php:5582 +#: ../../include/ajax/alert_list.ajax.php:606 +msgid "To:" +msgstr "Hasta:" + +#: ../../godmode/agentes/planned_downtime.editor.php:693 +msgid "To day:" +msgstr "Hasta el dĆ­a:" + +#: ../../godmode/agentes/planned_downtime.editor.php:725 +msgid "To hour:" +msgstr "Hasta la hora:" + +#: ../../godmode/agentes/planned_downtime.editor.php:801 +msgid "Group filter" +msgstr "Filtro de grupo" + +#: ../../godmode/agentes/planned_downtime.editor.php:835 +msgid "Available modules:" +msgstr "MĆ³dulos disponibles:" + +#: ../../godmode/agentes/planned_downtime.editor.php:836 +msgid "Only for type Quiet for downtimes." +msgstr "Solo para tipo Modo silencioso para paradas" + +#: ../../godmode/agentes/planned_downtime.editor.php:894 +msgid "Agents planned for this downtime" +msgstr "Agentes planificados para esta parada" + +#: ../../godmode/agentes/planned_downtime.editor.php:912 +msgid "There are no agents" +msgstr "No hay agentes" + +#: ../../godmode/agentes/planned_downtime.editor.php:954 +msgid "All alerts" +msgstr "Todas las alertas" + +#: ../../godmode/agentes/planned_downtime.editor.php:956 +msgid "Entire agent" +msgstr "Agente completo" + +#: ../../godmode/agentes/planned_downtime.editor.php:959 +#: ../../godmode/agentes/planned_downtime.editor.php:1081 +msgid "All modules" +msgstr "Todos los mĆ³dulos" + +#: ../../godmode/agentes/planned_downtime.editor.php:961 +#: ../../godmode/agentes/planned_downtime.editor.php:1073 +#: ../../godmode/agentes/planned_downtime.editor.php:1077 +msgid "Some modules" +msgstr "Algunos mĆ³dulos" + +#: ../../godmode/agentes/planned_downtime.editor.php:1027 +msgid "Add Module:" +msgstr "AƱadir mĆ³dulo:" + +#: ../../godmode/agentes/planned_downtime.editor.php:1394 +#: ../../godmode/reporting/reporting_builder.item_editor.php:4742 +msgid "Please select a module." +msgstr "Por favor, seleccione un mĆ³dulo." + +#: ../../godmode/agentes/planned_downtime.editor.php:1529 +msgid "" +"WARNING: If you edit this scheduled downtime, the data of future SLA reports may be " +"altered" +msgstr "" +"ADVERTENCIA: si se modifica esta parada planificada, los datos de los futuros " +"informes SLA pueden ser alterados" + +#: ../../godmode/agentes/fields_manager.php:30 +msgid "Agents custom fields manager" +msgstr "Gestor de campos personalizados del agente" + +#: ../../godmode/agentes/fields_manager.php:46 ../../include/ajax/custom_fields.php:737 +msgid "The name must not be empty" +msgstr "El nombre no puede estar vacĆ­o." + +#: ../../godmode/agentes/fields_manager.php:48 +msgid "The name must be unique" +msgstr "El nombre debe ser Ćŗnico." + +#: ../../godmode/agentes/fields_manager.php:59 +msgid "Field successfully created" +msgstr "Se ha creado el campo." + +#: ../../godmode/agentes/fields_manager.php:80 +msgid "Field successfully updated" +msgstr "Se ha actualizado el campo." + +#: ../../godmode/agentes/fields_manager.php:82 +msgid "There was a problem modifying field" +msgstr "Ha habido un problema al modificar el campo." + +#: ../../godmode/agentes/fields_manager.php:94 +msgid "There was a problem deleting field" +msgstr "Ha surgido un problema al borrar el campo." + +#: ../../godmode/agentes/fields_manager.php:96 +msgid "Field successfully deleted" +msgstr "El campo se ha borrado correctamente." + +#: ../../godmode/agentes/fields_manager.php:120 +#: ../../godmode/agentes/configure_field.php:95 +#: ../../operation/agentes/custom_fields.php:67 +msgid "Display on front" +msgstr "Mostrar en la vista principal" + +#: ../../godmode/agentes/fields_manager.php:120 +#: ../../godmode/agentes/configure_field.php:96 +#: ../../operation/agentes/custom_fields.php:67 +msgid "" +"The fields with display on front enabled will be displayed into the agent details" +msgstr "" +"Si esta opciĆ³n estĆ” activada, los campos mostrarĆ”n la informaciĆ³n en la vista " +"principal." + +#: ../../godmode/agentes/fields_manager.php:168 +msgid "Create field" +msgstr "Crear campo" + +#: ../../godmode/agentes/module_manager_editor_network.php:266 +msgid "SNMP walk" +msgstr "SNMP walk" + +#: ../../godmode/agentes/module_manager_editor_network.php:448 +msgid "" +"Please use single quotation marks when necessary. \n" +"\n" +"If double quotation marks are needed, please escape them with a backslash (\\")" +msgstr "" +"Utilice comillas simples cuando sea necesario. \n" +"\n" +"Si se necesitan comillas dobles, escĆ”pase de ellas con una barra diagonal inversa " +"(\\")" + +#: ../../godmode/agentes/module_manager_editor_network.php:479 +msgid "Windows remote" +msgstr "Windows remoto" + +#: ../../godmode/agentes/agent_manager.php:226 +#: ../../operation/agentes/estado_agente.php:215 ../../operation/menu.php:54 +msgid "Agent detail" +msgstr "Detalle de agente" + +#: ../../godmode/agentes/agent_manager.php:241 +msgid "Delete agent" +msgstr "Borrar agente" + +#: ../../godmode/agentes/agent_manager.php:275 +msgid "QR Code Agent view" +msgstr "CĆ³digo QR de la vista de agente" + +#: ../../godmode/agentes/agent_manager.php:296 +msgid "Use alias as name" +msgstr "Usar el alias como nombre" + +#: ../../godmode/agentes/agent_manager.php:304 ../../godmode/setup/setup_general.php:459 +#: ../../include/functions_config.php:362 +msgid "Unique IP" +msgstr "IP Ćŗnica" + +#: ../../godmode/agentes/agent_manager.php:338 +msgid "Primary group" +msgstr "Grupo primario" + +#: ../../godmode/agentes/agent_manager.php:452 ../../godmode/setup/license.php:153 +#: ../../godmode/servers/modificar_server.php:42 ../../include/functions_ui.php:866 +#: ../../include/class/Diagnostics.class.php:1184 +msgid "Satellite" +msgstr "SatĆ©lite" + +#: ../../godmode/agentes/agent_manager.php:518 +#: ../../godmode/massive/massive_edit_agents.php:1006 +msgid "Safe operation mode" +msgstr "Modo seguro de operaciĆ³n" + +#: ../../godmode/agentes/agent_manager.php:559 +msgid "Cascade protection services" +msgstr "Servicios de protecciĆ³n en cascada" + +#: ../../godmode/agentes/agent_manager.php:590 +#: ../../godmode/massive/massive_edit_agents.php:661 +msgid "Cascade protection" +msgstr "ProtecciĆ³n en cascada" + +#: ../../godmode/agentes/agent_manager.php:606 +#: ../../godmode/massive/massive_edit_agents.php:858 +msgid "Module definition" +msgstr "DefiniciĆ³n de mĆ³dulos" + +#: ../../godmode/agentes/agent_manager.php:611 +#: ../../godmode/massive/massive_edit_agents.php:870 +msgid "Learning mode" +msgstr "Modo de aprendizaje" + +#: ../../godmode/agentes/agent_manager.php:621 +#: ../../godmode/massive/massive_edit_agents.php:881 +msgid "Normal mode" +msgstr "Modo normal" + +#: ../../godmode/agentes/agent_manager.php:631 +#: ../../godmode/massive/massive_edit_agents.php:892 +msgid "Autodisable mode" +msgstr "Modo autodeshabilitado" + +#: ../../godmode/agentes/agent_manager.php:648 +msgid "Disabled mode" +msgstr "Modo deshabilitado" + +#: ../../godmode/agentes/agent_manager.php:653 +#: ../../godmode/agentes/agent_manager.php:670 ../../include/functions_treeview.php:759 +#: ../../operation/agentes/ver_agente.php:1526 +#: ../../operation/agentes/estado_generalagente.php:495 +msgid "Url address" +msgstr "DirecciĆ³n URL" + +#: ../../godmode/agentes/agent_manager.php:695 +#: ../../godmode/massive/massive_edit_agents.php:980 +msgid "Agent icon" +msgstr "Icono de agente" + +#: ../../godmode/agentes/agent_manager.php:745 +msgid "Update new GIS data:" +msgstr "Actualizar nuevos datos GIS:" + +#: ../../godmode/agentes/agent_manager.php:803 +msgid "Click to display" +msgstr "Pinche para visualizar" + +#: ../../godmode/agentes/agent_manager.php:1055 +msgid "Secondary group cannot be primary too." +msgstr "Un grupo secundario no puede ser tambiĆ©n primario." + +#: ../../godmode/agentes/agent_incidents.php:22 +#: ../../operation/incidents/incident_statistics.php:24 +#: ../../operation/incidents/configure_integriaims_incident.php:33 +#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:23 +#: ../../operation/incidents/list_integriaims_incidents.php:34 +msgid "" +"In order to access ticket management system, integration with Integria IMS must be " +"enabled and properly configured" +msgstr "" +"Para acceder al sistema de gestiĆ³n de tickets, la integraciĆ³n con Integria IMS debe " +"estar activada y correctamente configurada" + +#: ../../godmode/agentes/agent_incidents.php:69 +msgid "No incidents associated to this agent" +msgstr "No hay incidentes asociados a este agente" + +#: ../../godmode/agentes/agent_incidents.php:90 +msgid "Incident" +msgstr "Incidente" + +#: ../../godmode/agentes/configure_field.php:41 +msgid "Update agent custom field" +msgstr "Actualizar campo personalizado del agente" + +#: ../../godmode/agentes/configure_field.php:43 +msgid "Create agent custom field" +msgstr "Crear campo personalizado" + +#: ../../godmode/agentes/configure_field.php:55 +#: ../../godmode/agentes/configure_field.php:59 +#: ../../godmode/agentes/configure_field.php:63 +#: ../../godmode/agentes/configure_field.php:67 +msgid "Agent Custom Fields Information" +msgstr "InformaciĆ³n de los campos de personalizaciĆ³n de agentes" + +#: ../../godmode/agentes/configure_field.php:56 +msgid "" +"You cannot set the Password type until you clear the combo values and click on update " +"button." +msgstr "" +"No puede establecer el tipo de contraseƱa hasta que elimine los valores del combo y " +"pinche en el botĆ³n actualizar." + +#: ../../godmode/agentes/configure_field.php:60 +msgid "" +"You cannot unset the enable combo until you clear the combo values and click on " +"update." +msgstr "" +"No puede desactivar el combo habilitado hasta que elimine los valores del combo y " +"pinche en actualizar." + +#: ../../godmode/agentes/configure_field.php:64 +msgid "If you select Enabled combo the Password type will be disabled." +msgstr "Si selecciona el combo Habilitado, se deshabilitarĆ” el tipo de contraseƱa." + +#: ../../godmode/agentes/configure_field.php:68 +msgid "If you select Passord type the Enabled combo will be disabled." +msgstr "Si selecciona el tipo de ContraseƱa el combo Habliitado se deshabilitarĆ”." + +#: ../../godmode/agentes/configure_field.php:84 +msgid "Pass type" +msgstr "Tipo de contraseƱa" + +#: ../../godmode/agentes/configure_field.php:85 +msgid "" +"The fields with pass type enabled will be displayed like html input type pass in html" +msgstr "" +"Los campos con el tipo de contraseƱa habilitado se mostrarĆ”n con asteriscos en HTML." + +#: ../../godmode/agentes/configure_field.php:106 +msgid "Enabled combo" +msgstr "Combo habilitado" + +#: ../../godmode/agentes/configure_field.php:118 +msgid "Combo values" +msgstr "Valores de combo" + +#: ../../godmode/agentes/configure_field.php:119 +msgid "Set values separated by comma" +msgstr "Establecer valores separados por coma" + +#: ../../godmode/agentes/module_manager_editor_common.php:108 +msgid "Using module component" +msgstr "Utilizar mĆ³dulo de librerĆ­a" + +#: ../../godmode/agentes/module_manager_editor_common.php:413 +msgid "Warning threshold" +msgstr "Umbral de advertencia" + +#: ../../godmode/agentes/module_manager_editor_common.php:415 +#: ../../godmode/agentes/module_manager_editor_common.php:476 +msgid "Min. " +msgstr "Min. " + +#: ../../godmode/agentes/module_manager_editor_common.php:474 +msgid "Critical threshold" +msgstr "Umbral crĆ­tico" + +#: ../../godmode/agentes/module_manager_editor_common.php:673 +msgid "Dynamic Threshold Interval" +msgstr "Intervalo de rango dinĆ”mico" + +#: ../../godmode/agentes/module_manager_editor_common.php:700 +msgid "Dynamic Threshold Min. " +msgstr "Rango dinĆ”mico mĆ­nimo " + +#: ../../godmode/agentes/module_manager_editor_common.php:713 +msgid "Dynamic Threshold Max. " +msgstr "Rango dinĆ”mico mĆ”ximo " + +#: ../../godmode/agentes/module_manager_editor_common.php:726 +msgid "Dynamic Threshold Two Tailed: " +msgstr "Rango dinĆ”mico dos fallido: " + +#: ../../godmode/agentes/module_manager_editor_common.php:737 +msgid "Not needed" +msgstr "No necesario" + +#: ../../godmode/agentes/module_manager_editor_common.php:1035 +msgid "Tags from policy" +msgstr "Etiquetas desde polĆ­tica" + +#: ../../godmode/agentes/module_manager_editor_common.php:1075 +msgid "Cascade Protection Services" +msgstr "Servicios de protecciĆ³n en cascada" + +#: ../../godmode/agentes/module_manager_editor_common.php:1109 +#: ../../godmode/agentes/module_manager_editor_common.php:1117 +#: ../../godmode/agentes/module_manager_editor_common.php:1126 +msgid "Cron from" +msgstr "Cron desde" + +#: ../../godmode/agentes/module_manager_editor_common.php:1113 +#: ../../godmode/agentes/module_manager_editor_common.php:1121 +#: ../../godmode/agentes/module_manager_editor_common.php:1130 +msgid "Cron to" +msgstr "Cron hasta" + +#: ../../godmode/agentes/module_manager_editor_common.php:1166 +msgid "Module parent" +msgstr "Padre del mĆ³dulo" + +#: ../../godmode/agentes/module_manager_editor_common.php:1264 +#: ../../godmode/agentes/module_manager_editor_common.php:1375 +msgid "Direct" +msgstr "Directo" + +#: ../../godmode/agentes/module_manager_editor_common.php:1265 +#: ../../godmode/agentes/module_manager_editor_common.php:1375 +#: ../../include/functions_reporting_html.php:3913 +#: ../../include/functions_reporting_html.php:4007 +#: ../../include/functions_reporting_html.php:4087 +#: ../../include/functions_reporting_html.php:4096 +#: ../../include/functions_reporting_html.php:4234 +#: ../../include/functions_reporting_html.php:4243 +#: ../../include/functions_reporting_html.php:4567 +#: ../../include/functions_reporting_html.php:4573 +msgid "Failover" +msgstr "ConmutaciĆ³n" + +#: ../../godmode/agentes/module_manager_editor_common.php:1266 +msgid "Rel. type" +msgstr "Rel. tipo" + +#: ../../godmode/agentes/module_manager_editor_common.php:1281 +msgid "Add relationship" +msgstr "AƱadir relaciĆ³n" + +#: ../../godmode/agentes/module_manager_editor_common.php:1306 +msgid "Changes" +msgstr "Cambios" + +#: ../../godmode/agentes/module_manager.php:130 +msgid "Create a new data server module" +msgstr "Crear un nuevo mĆ³dulo de servidor de datos" + +#: ../../godmode/agentes/module_manager.php:132 +msgid "Create a new network server module" +msgstr "Crear un nuevo mĆ³dulo de servidor de red" + +#: ../../godmode/agentes/module_manager.php:136 +msgid "Create a new plugin server module" +msgstr "Crear un nuevo mĆ³dulo de servidor de complementos" + +#: ../../godmode/agentes/module_manager.php:140 +msgid "Create a new WMI server module" +msgstr "Crear un nuevo mĆ³dulo de servidor WMI" + +#: ../../godmode/agentes/module_manager.php:144 +msgid "Create a new prediction server module" +msgstr "Crear un nuevo mĆ³dulo de servidor de predicciĆ³n" + +#: ../../godmode/agentes/module_manager.php:148 +msgid "Create a new web Server module" +msgstr "Crear un nuevo mĆ³dulo de servidor web" + +#: ../../godmode/agentes/module_manager.php:192 +#: ../../operation/agentes/estado_monitores.php:582 +msgid "Show in hierachy mode" +msgstr "Mostrar en modo jerarquĆ­a" + +#: ../../godmode/agentes/module_manager.php:211 +msgid "

Type

" +msgstr "

Tipo

" + +#: ../../godmode/agentes/module_manager.php:241 +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:280 +msgid "There was a problem completing the operation" +msgstr "Hubo un problema al completar la operaciĆ³n" + +#: ../../godmode/agentes/module_manager.php:437 +#: ../../godmode/agentes/module_manager.php:478 #, php-format -msgid "%s Km" -msgstr "%s Km" +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." -#: ../../operation/agentes/gis_view.php:217 -#: ../../godmode/setup/gis_step_2.php:483 -msgid "Longitude" -msgstr "Longitud" +#: ../../godmode/agentes/module_manager.php:443 +#: ../../godmode/agentes/module_manager.php:484 +msgid "Operation finished successfully." +msgstr "OperaciĆ³n concluida correctamente." -#: ../../operation/agentes/gis_view.php:218 -#: ../../godmode/setup/gis_step_2.php:465 -msgid "Latitude" -msgstr "Latitud" +#: ../../godmode/agentes/module_manager.php:447 +#: ../../godmode/agentes/module_manager.php:488 +#, 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." -#: ../../operation/agentes/gis_view.php:219 -#: ../../godmode/setup/gis_step_2.php:501 -msgid "Altitude" -msgstr "Altitud" +#: ../../godmode/agentes/module_manager.php:794 +#: ../../godmode/reporting/map_builder.php:452 +#: ../../godmode/reporting/map_builder.php:469 ../../include/ajax/module.php:560 +#: ../../operation/agentes/datos_agente.php:295 +msgid "No available data to show" +msgstr "No hay datos disponibles para mostrar" -#: ../../operation/agentes/gis_view.php:221 ../../include/functions_snmp.php:413 -#: ../../include/functions_snmp.php:421 ../../include/rest-api/index.php:361 -#: ../../include/rest-api/models/VisualConsole/Items/ColorCloud.php:460 -#: ../../include/rest-api/models/VisualConsole/Items/ColorCloud.php:520 -#: ../../include/functions_reporting_html.php:3751 -#: ../../enterprise/include/functions_reporting_csv.php:716 -#: ../../enterprise/include/functions_reporting_csv.php:952 -#: ../../enterprise/include/functions_reporting_csv.php:1325 -#: ../../enterprise/include/functions_reporting_pdf.php:1984 -#: ../../godmode/agentes/planned_downtime.list.php:302 -msgid "To" -msgstr "Para" +#: ../../godmode/agentes/module_manager.php:868 +msgid "Del." +msgstr "Del." -#: ../../operation/agentes/gis_view.php:223 -msgid "Distance" -msgstr "Distancia" +#: ../../godmode/agentes/module_manager.php:1042 +#: ../../godmode/agentes/module_manager.php:1050 ../../include/ajax/module.php:1084 +#: ../../include/ajax/module.php:1092 +msgid "Adopted" +msgstr "Adoptado" -#: ../../operation/agentes/gis_view.php:224 -msgid "# of Packages" -msgstr "# de paquetes" +#: ../../godmode/agentes/module_manager.php:1180 +msgid "Normalize" +msgstr "Normalizar" -#: ../../operation/agentes/ver_agente.php:1017 -#: ../../enterprise/operation/agentes/ver_agente.php:72 -msgid "Main IP" -msgstr "IP principal" +#: ../../godmode/agentes/module_manager.php:1190 +msgid "Normalize (Disabled)" +msgstr "Normalizar (deshabilitado)" -#: ../../operation/agentes/ver_agente.php:1029 -#: ../../include/functions_events.php:4504 -#: ../../enterprise/operation/agentes/ver_agente.php:78 -msgid "Last remote contact" -msgstr "ƚltimo contacto remoto" +#: ../../godmode/agentes/module_manager.php:1205 +#: ../../include/functions_snmp_browser.php:638 +msgid "Create network component" +msgstr "Crear componentes de red" -#: ../../operation/agentes/ver_agente.php:1074 -#: ../../enterprise/operation/agentes/ver_agente.php:122 -msgid "Monitors down" -msgstr "Monitores caĆ­dos" +#: ../../godmode/agentes/module_manager.php:1214 +msgid "Create network component (Disabled)" +msgstr "Crear componentes de red (desactivado)" -#: ../../operation/agentes/ver_agente.php:1115 -#: ../../include/lib/Dashboard/Widgets/system_group_status.php:576 -#: ../../enterprise/operation/agentes/ver_agente.php:164 -#: ../../mobile/operation/groups.php:174 -msgid "Alerts fired" -msgstr "Alertas disparadas" +#: ../../godmode/agentes/module_manager.php:1274 +msgid "Execute action" +msgstr "Ejecutar acciĆ³n" -#: ../../operation/agentes/ver_agente.php:1181 -#: ../../enterprise/tools/ipam/ipam_excel.php:133 -#: ../../enterprise/tools/ipam/ipam_ajax.php:359 -#: ../../enterprise/tools/ipam/ipam_vlan_wizard.php:53 -#: ../../enterprise/tools/ipam/ipam_vlan_wizard.php:254 -#: ../../enterprise/tools/ipam/ipam_network.php:395 -#: ../../enterprise/tools/ipam/ipam_calculator.php:62 -#: ../../enterprise/tools/ipam/ipam_supernet_config.php:546 -#: ../../enterprise/views/ncm/devices/list.php:117 -#: ../../enterprise/include/functions_ipam.php:2036 -#: ../../enterprise/godmode/servers/manage_export_form.php:99 -#: ../../enterprise/godmode/servers/manage_export.php:140 -#: ../../godmode/setup/setup_general.php:649 -msgid "Address" -msgstr "DirecciĆ³n" +#: ../../godmode/netflow/nf_item_list.php:27 +#: ../../operation/reporting/reporting_viewer.php:119 +msgid "Report list" +msgstr "Lista de informes" -#: ../../operation/agentes/ver_agente.php:1232 -msgid "Sons" -msgstr "Hijos" +#: ../../godmode/netflow/nf_item_list.php:30 ../../godmode/netflow/nf_item_list.php:38 +msgid "Report items" +msgstr "Elementos de informe" -#: ../../operation/agentes/ver_agente.php:1487 -#: ../../godmode/agentes/configurar_agente.php:510 -msgid "GIS data" -msgstr "Datos GIS" +#: ../../godmode/netflow/nf_item_list.php:33 +msgid "Edit report" +msgstr "Editar informe" -#: ../../operation/agentes/ver_agente.php:1560 -#: ../../operation/search_results.php:119 ../../include/functions_reports.php:638 -#: ../../include/functions_reports.php:642 -#: ../../include/functions_reports.php:647 -#: ../../include/functions_reports.php:653 -#: ../../include/functions_reports.php:660 -#: ../../include/functions_reports.php:664 -#: ../../include/functions_reports.php:668 -#: ../../include/functions_reports.php:675 -#: ../../include/functions_reports.php:681 -#: ../../include/functions_reports.php:686 ../../include/functions_groups.php:123 -#: ../../include/functions_groups.php:187 -msgid "Graphs" -msgstr "GrĆ”ficos" +#: ../../godmode/netflow/nf_item_list.php:53 +msgid "Netflow reports" +msgstr "Informes Netflow" -#: ../../operation/agentes/ver_agente.php:1582 -msgid "Log Viewer" -msgstr "Visor de logs" +#: ../../godmode/netflow/nf_item_list.php:57 +msgid "Item list" +msgstr "Lista de elementos" -#: ../../operation/agentes/ver_agente.php:1609 ../../godmode/setup/setup.php:177 -#: ../../godmode/setup/setup.php:277 ../../godmode/menu.php:347 +#: ../../godmode/netflow/nf_item_list.php:176 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2485 +#: ../../operation/netflow/nf_live_view.php:330 +msgid "Max. values" +msgstr "Valores mĆ”ximos" + +#: ../../godmode/netflow/nf_item_list.php:177 ../../operation/agentes/graphs.php:233 +msgid "Chart type" +msgstr "Tipo de grĆ”fico" + +#: ../../godmode/netflow/nf_item_list.php:277 +msgid "There are no defined items" +msgstr "No hay elementos definidos" + +#: ../../godmode/netflow/nf_edit.php:38 +msgid "Manage Netflow Filter" +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:113 +msgid "Netflow filters" +msgstr "Filtros Netflow" + +#: ../../godmode/netflow/nf_edit.php:212 ../../godmode/events/event_filter.php:215 +msgid "There are no defined filters" +msgstr "No hay filtros definidos" + +#: ../../godmode/netflow/nf_edit_form.php:53 ../../godmode/events/events.php:54 +msgid "Filter list" +msgstr "Lista de filtros" + +#: ../../godmode/netflow/nf_edit_form.php:55 ../../godmode/netflow/nf_edit_form.php:77 +msgid "Add filter" +msgstr "AƱadir filtro" + +#: ../../godmode/netflow/nf_edit_form.php:58 +msgid "Netflow Filter" +msgstr "Filtro Netflow" + +#: ../../godmode/netflow/nf_edit_form.php:188 +#: ../../godmode/snmpconsole/snmp_filters.php:35 +#: ../../include/ajax/custom_fields.php:707 ../../include/ajax/events.php:756 +#: ../../include/ajax/events.php:816 +msgid "Update filter" +msgstr "Actualizar filtro" + +#: ../../godmode/netflow/nf_edit_form.php:235 +msgid "Filter:" +msgstr "Filtrar:" + +#: ../../godmode/netflow/nf_edit_form.php:239 +#: ../../operation/netflow/nf_live_view.php:414 +msgid "Dst Ip" +msgstr "Dst IP" + +#: ../../godmode/netflow/nf_edit_form.php:239 +#: ../../operation/netflow/nf_live_view.php:414 +msgid "" +"Destination IP. A comma separated list of destination ip. If we leave the field " +"blank, will show all ip. Example filter by ip:
25.46.157.214,160.253.135.249" +msgstr "" +"IP destino. Lista de IPs destino separadas por coma. Si dejamos en blanco este campo " +"mostrarĆ” todas las IPs. Ejemplo de filtro por IP: 25.46.157.214,160.253.135.249" + +#: ../../godmode/netflow/nf_edit_form.php:242 +#: ../../operation/netflow/nf_live_view.php:422 +msgid "Src Ip" +msgstr "IP Origen" + +#: ../../godmode/netflow/nf_edit_form.php:242 +#: ../../operation/netflow/nf_live_view.php:422 +msgid "" +"Source IP. A comma separated list of source ip. If we leave the field blank, will " +"show all ip. Example filter by ip:
25.46.157.214,160.253.135.249" +msgstr "" +"IP Origen. Lista de IPs origen separadas por coma. Si dejamos en blanco este campo " +"mostrarĆ” todas las IPs. Ejemplo de filtro por IP: 25.46.157.214,160.253.135.249" + +#: ../../godmode/netflow/nf_edit_form.php:245 ../../godmode/netflow/nf_edit_form.php:258 +#: ../../operation/netflow/nf_live_view.php:350 +#: ../../operation/netflow/nf_live_view.php:433 +msgid "Dst Port" +msgstr "Puerto destino" + +#: ../../godmode/netflow/nf_edit_form.php:245 +#: ../../operation/netflow/nf_live_view.php:433 +msgid "" +"Destination port. A comma separated list of destination ports. If we leave the field " +"blank, will show all ports. Example filter by ports 80 and 22:
80,22" +msgstr "" +"Puerto destino. Lista de puertos de destino separados por coma. Si dejamos este campo " +"en blanco se mostrarƔn todos los puertos. Ejemplo de filtrado por puertos: 80,22" + +#: ../../godmode/netflow/nf_edit_form.php:248 ../../godmode/netflow/nf_edit_form.php:257 +#: ../../operation/netflow/nf_live_view.php:349 +#: ../../operation/netflow/nf_live_view.php:441 +msgid "Src Port" +msgstr "Puerto origen" + +#: ../../godmode/netflow/nf_edit_form.php:248 +#: ../../operation/netflow/nf_live_view.php:441 +msgid "" +"Source port. A comma separated list of source ports. If we leave the field blank, " +"will show all ports. Example filter by ports 80 and 22:
80,22" +msgstr "" +"Puerto origen. Lista de puertos de origen separados por coma. Si dejamos este campo " +"en blanco se mostrarĆ”n todos los puertos. Ejemplo de filtrado por puertos: 80,22" + +#: ../../godmode/netflow/nf_edit_form.php:253 +#: ../../operation/netflow/nf_live_view.php:344 +msgid "Aggregate by" +msgstr "Agregado por" + +#: ../../godmode/netflow/nf_edit_form.php:255 +#: ../../operation/netflow/nf_live_view.php:347 +msgid "Src Ip Address" +msgstr "DirecciĆ³n IP origen" + +#: ../../godmode/netflow/nf_edit_form.php:256 +#: ../../operation/netflow/nf_live_view.php:348 +msgid "Dst Ip Address" +msgstr "DirecciĆ³n IP destino" + +#: ../../godmode/snmpconsole/snmp_trap_generator.php:38 +msgid "SNMP Trap generator" +msgstr "Generador de traps SNMP" + +#: ../../godmode/snmpconsole/snmp_trap_generator.php:68 +msgid "Empty parameters" +msgstr "ParĆ”metros vacĆ­os" + +#: ../../godmode/snmpconsole/snmp_trap_generator.php:74 +msgid "Successfully generated" +msgstr "Generado correctamente" + +#: ../../godmode/snmpconsole/snmp_trap_generator.php:75 +#, php-format +msgid "Could not be generated: %s" +msgstr "No se pudo generar: %s" + +#: ../../godmode/snmpconsole/snmp_trap_generator.php:85 +msgid "Host address" +msgstr "DirecciĆ³n del host" + +#: ../../godmode/snmpconsole/snmp_trap_generator.php:95 +#: ../../include/functions_snmp_browser.php:727 +msgid "Community" +msgstr "Comunidad" + +#: ../../godmode/snmpconsole/snmp_trap_generator.php:105 +#: ../../godmode/snmpconsole/snmp_alert.php:774 +#: ../../godmode/snmpconsole/snmp_alert.php:1263 +#: ../../operation/snmpconsole/snmp_view.php:859 +msgid "Enterprise String" +msgstr "Cadena Enterprise" + +#: ../../godmode/snmpconsole/snmp_trap_generator.php:135 +msgid "SNMP Type" +msgstr "Tipo de SNMP" + +#: ../../godmode/snmpconsole/snmp_trap_generator.php:168 +msgid "Generate trap" +msgstr "Generar trap" + +#: ../../godmode/snmpconsole/snmp_alert.php:100 +msgid "Alert overview" +msgstr "Vista general de alertas" + +#: ../../godmode/snmpconsole/snmp_alert.php:118 +#: ../../godmode/snmpconsole/snmp_filters.php:46 +#: ../../operation/snmpconsole/snmp_view.php:681 +#: ../../operation/snmpconsole/snmp_view.php:789 +msgid "SNMP Console" +msgstr "Consola SNMP" + +#: ../../godmode/snmpconsole/snmp_alert.php:293 +msgid "There was a problem creating the alert" +msgstr "Hubo un problema al crear la alerta" + +#: ../../godmode/snmpconsole/snmp_alert.php:435 +msgid "There was a problem updating the alert" +msgstr "Hubo un problema al actualizar la alerta" + +#: ../../godmode/snmpconsole/snmp_alert.php:637 +#: ../../godmode/snmpconsole/snmp_alert.php:656 +msgid "There was a problem duplicating the alert" +msgstr "Hubo un problema al duplicar la alerta" + +#: ../../godmode/snmpconsole/snmp_alert.php:646 +msgid "Successfully Duplicate" +msgstr "Duplicada correctamente" + +#: ../../godmode/snmpconsole/snmp_alert.php:677 +msgid "There was a problem deleting the alert" +msgstr "Error al borrar la alerta" + +#: ../../godmode/snmpconsole/snmp_alert.php:774 +msgid "Matches substrings. End the string with $ for exact matches." +msgstr "" +"Coincide con las subcadenas. Escriba $ al final de la cadena para encontrar " +"coincidencias exactas." + +#: ../../godmode/snmpconsole/snmp_alert.php:842 +#: ../../godmode/snmpconsole/snmp_alert.php:852 +#: ../../godmode/snmpconsole/snmp_alert.php:862 +#: ../../godmode/snmpconsole/snmp_alert.php:872 +#: ../../godmode/snmpconsole/snmp_alert.php:882 +#: ../../godmode/snmpconsole/snmp_alert.php:892 +#: ../../godmode/snmpconsole/snmp_alert.php:902 +#: ../../godmode/snmpconsole/snmp_alert.php:912 +#: ../../godmode/snmpconsole/snmp_alert.php:922 +#: ../../godmode/snmpconsole/snmp_alert.php:932 +#: ../../godmode/snmpconsole/snmp_alert.php:942 +#: ../../godmode/snmpconsole/snmp_alert.php:952 +#: ../../godmode/snmpconsole/snmp_alert.php:962 +#: ../../godmode/snmpconsole/snmp_alert.php:972 +#: ../../godmode/snmpconsole/snmp_alert.php:982 +#: ../../godmode/snmpconsole/snmp_alert.php:992 +#: ../../godmode/snmpconsole/snmp_alert.php:1002 +#: ../../godmode/snmpconsole/snmp_alert.php:1012 +#: ../../godmode/snmpconsole/snmp_alert.php:1022 +#: ../../godmode/snmpconsole/snmp_alert.php:1032 +msgid "Variable bindings/Data" +msgstr "Enlaces variables/Datos" + +#: ../../godmode/snmpconsole/snmp_alert.php:1162 +msgid "" +"Search by these fields description, OID, Custom Value, SNMP Agent (IP), Single value, " +"each Variable bindings/Datas." +msgstr "" +"BĆŗsqueda por estos campos de descripciĆ³n: OID, Valor personalizado, Agente SNMP (IP), " +"Valor individual, cada Enlace Variable/Datos." + +#: ../../godmode/snmpconsole/snmp_alert.php:1180 +msgid "Alert SNMP control filter" +msgstr "Filtro de control de alerta SNMP" + +#: ../../godmode/snmpconsole/snmp_alert.php:1232 +msgid "There are no SNMP alerts" +msgstr "Ninguna alerta SNMP definida" + +#: ../../godmode/snmpconsole/snmp_alert.php:1266 +msgid "Custom Value/Enterprise String" +msgstr "Valor personalizado/Cadena Enterprise" + +#: ../../godmode/snmpconsole/snmp_alert.php:1271 +#: ../../include/functions_reporting_html.php:5132 +#: ../../include/functions_reporting_html.php:5254 +#: ../../include/functions_treeview.php:454 +msgid "Times fired" +msgstr "NĀŗ de veces disparada" + +#: ../../godmode/snmpconsole/snmp_alert.php:1271 +msgid "TF." +msgstr "TF." + +#: ../../godmode/snmpconsole/snmp_alert.php:1427 +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?" + +#: ../../godmode/snmpconsole/snmp_alert.php:1561 +msgid "Do you want delete the selected alerts?" +msgstr "ĀæDesea eliminar las alertas seleccionadas?" + +#: ../../godmode/snmpconsole/snmp_alert.php:1671 +msgid "Add action " +msgstr "AƱadir acciĆ³n " + +#: ../../godmode/snmpconsole/snmp_filters.php:41 +msgid "Filter overview" +msgstr "RevisiĆ³n del filtro" + +#: ../../godmode/snmpconsole/snmp_filters.php:108 +msgid "There was a problem updating the filter" +msgstr "Error al actualizar el filtro" + +#: ../../godmode/snmpconsole/snmp_filters.php:126 +#: ../../godmode/snmpconsole/snmp_filters.php:152 +msgid "Description is empty" +msgstr "La descripciĆ³n estĆ” vacĆ­a" + +#: ../../godmode/snmpconsole/snmp_filters.php:129 +msgid "Filter is empty" +msgstr "El filtro estĆ” vacĆ­o" + +#: ../../godmode/snmpconsole/snmp_filters.php:149 +msgid "Filters are empty" +msgstr "Los filtros estĆ”n vacĆ­os" + +#: ../../godmode/snmpconsole/snmp_filters.php:159 +msgid "There was a problem creating the filter" +msgstr "Error al crear el filtro" + +#: ../../godmode/snmpconsole/snmp_filters.php:178 +msgid "There was a problem deleting the filter" +msgstr "Error al borrar el filtro" + +#: ../../godmode/snmpconsole/snmp_filters.php:221 +#: ../../godmode/snmpconsole/snmp_filters.php:231 +msgid "" +"This field contains a substring, could be part of a IP address, a numeric OID, or a " +"plain substring" +msgstr "" +"Este campo contiene una subcadena que podrĆ­a ser parte de una direcciĆ³n IP, un OID " +"numĆ©rico o una subcadena simple." + +#: ../../godmode/snmpconsole/snmp_filters.php:223 +msgid "Click to remove the filter" +msgstr "Haz clic para quitar el filtro" + +#: ../../godmode/snmpconsole/snmp_filters.php:254 +#: ../../godmode/snmpconsole/snmp_filters.php:255 +msgid "Click to add new filter" +msgstr "Haz clic para aƱadir filtro nuevo" + +#: ../../godmode/menu.php:57 +msgid "Network scan" +msgstr "Escaneado de red" + +#: ../../godmode/menu.php:59 +msgid "Custom network scan" +msgstr "Escaneo de red personalizado" + +#: ../../godmode/menu.php:63 +msgid "Manage scan scripts" +msgstr "Gestionar guiones de escaneo" + +#: ../../godmode/menu.php:66 ../../godmode/wizards/HostDevices.class.php:204 +msgid "Host & devices" +msgstr "Host & devices" + +#: ../../godmode/menu.php:99 +msgid "Module categories" +msgstr "CategorĆ­as de mĆ³dulos" + +#: ../../godmode/menu.php:103 +msgid "Module types" +msgstr "Tipos de mĆ³dulos" + +#: ../../godmode/menu.php:127 +msgid "Manage agents groups" +msgstr "ConfiguraciĆ³n de grupos de agentes" + +#: ../../godmode/menu.php:166 ../../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:170 +msgid "Remote components" +msgstr "Componentes remotos" + +#: ../../godmode/menu.php:194 ../../godmode/massive/massive_operations.php:257 +msgid "Agents operations" +msgstr "Operaciones sobre agentes" + +#: ../../godmode/menu.php:195 ../../godmode/massive/massive_operations.php:269 +msgid "Modules operations" +msgstr "Operaciones sobre mĆ³dulos" + +#: ../../godmode/menu.php:196 ../../godmode/massive/massive_operations.php:281 +msgid "Plugins operations" +msgstr "Operaciones de plugins" + +#: ../../godmode/menu.php:198 ../../godmode/massive/massive_operations.php:245 +msgid "Users operations" +msgstr "Operaciones sobre usuarios" + +#: ../../godmode/menu.php:201 ../../godmode/massive/massive_operations.php:233 +msgid "Alerts operations" +msgstr "Operaciones sobre alertas" + +#: ../../godmode/menu.php:220 +msgid "Event filters" +msgstr "Filtro de eventos" + +#: ../../godmode/menu.php:225 ../../godmode/events/events.php:80 +#: ../../godmode/events/events.php:95 +msgid "Custom columns" +msgstr "Columnas personalizadas" + +#: ../../godmode/menu.php:256 +msgid "List of Alerts" +msgstr "Lista de alertas" + +#: ../../godmode/menu.php:271 ../../godmode/menu.php:272 +msgid "Special days list" +msgstr "Lista de dĆ­as especiales" + +#: ../../godmode/menu.php:276 +msgid "SNMP alerts" +msgstr "Alertas SNMP" + +#: ../../godmode/menu.php:293 +msgid "Manage servers" +msgstr "Gestionar servidores" + +#: ../../godmode/menu.php:304 +msgid "Register Plugin" +msgstr "Registrar Plugin" + +#: ../../godmode/menu.php:330 ../../include/class/OrderInterpreter.class.php:141 +msgid "General Setup" +msgstr "ConfiguraciĆ³n general" + +#: ../../godmode/menu.php:355 ../../godmode/setup/setup.php:177 +#: ../../godmode/setup/setup.php:277 ../../operation/agentes/ver_agente.php:1609 msgid "eHorus" msgstr "eHorus" -#: ../../operation/agentes/ver_agente.php:1621 -msgid "Terminal" -msgstr "Terminal" +#: ../../godmode/menu.php:358 ../../godmode/setup/setup.php:165 +#: ../../godmode/setup/setup.php:283 ../../godmode/setup/setup_integria.php:585 +msgid "Integria IMS" +msgstr "Integria IMS" -#: ../../operation/agentes/ver_agente.php:1632 -#: ../../include/lib/Dashboard/Widgets/top_n.php:286 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2439 -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:375 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2404 -msgid "Display" -msgstr "Mostrar" +#: ../../godmode/menu.php:366 +msgid "Websocket Engine" +msgstr "Websocket Engine" -#: ../../operation/agentes/ver_agente.php:1643 -msgid "Processes" -msgstr "Procesos" - -#: ../../operation/agentes/ver_agente.php:1665 -#: ../../enterprise/include/functions_collection.php:186 -#: ../../enterprise/meta/advanced/collections.editor.php:57 -#: ../../enterprise/meta/advanced/collections.editor.php:385 -#: ../../enterprise/meta/advanced/collections.editor.php:402 -#: ../../enterprise/meta/advanced/collections.data.php:174 -#: ../../enterprise/meta/advanced/collections.data.php:241 -#: ../../enterprise/meta/advanced/collections.data.php:265 -#: ../../enterprise/godmode/agentes/collections.editor.php:65 -#: ../../enterprise/godmode/agentes/collections.editor.php:424 -#: ../../enterprise/godmode/agentes/collections.editor.php:446 -#: ../../enterprise/godmode/agentes/collections.agents.php:50 -#: ../../enterprise/godmode/agentes/collections.data.php:127 -#: ../../enterprise/godmode/agentes/collections.data.php:281 -#: ../../enterprise/godmode/agentes/collections.data.php:334 -msgid "Files" -msgstr "Archivos" - -#: ../../operation/agentes/ver_agente.php:1683 -#: ../../operation/agentes/ver_agente.php:1882 -#: ../../enterprise/operation/menu.php:61 -msgid "SAP view" -msgstr "Vista SAP" - -#: ../../operation/agentes/ver_agente.php:1695 ../../godmode/setup/setup.php:224 -#: ../../godmode/setup/setup.php:311 ../../godmode/menu.php:361 +#: ../../godmode/menu.php:369 ../../godmode/setup/setup.php:224 +#: ../../godmode/setup/setup.php:311 ../../operation/agentes/ver_agente.php:1695 msgid "External Tools" msgstr "Herramientas externas" -#: ../../operation/users/user_edit.php:31 -#: ../../godmode/users/configure_user.php:244 -msgid "User detail editor" -msgstr "Editor de detalles de usuario" +#: ../../godmode/menu.php:373 ../../godmode/setup/setup.php:295 +msgid "Map conections GIS" +msgstr "ConexiĆ³n de mapa GIS" -#: ../../operation/users/user_edit.php:153 -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" +#: ../../godmode/menu.php:377 ../../godmode/setup/os.php:211 +#: ../../godmode/setup/os.php:229 +msgid "Edit OS" +msgstr "Editar SO" -#: ../../operation/users/user_edit.php:155 -msgid "Current password of user is not correct" -msgstr "La contraseƱa actual del usuario no es correcta" +#: ../../godmode/menu.php:400 +msgid "Diagnostic info" +msgstr "InformaciĆ³n de diagnĆ³stico" -#: ../../operation/users/user_edit.php:159 -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." +#: ../../godmode/menu.php:405 +msgid "Site news" +msgstr "Noticias del sistema" -#: ../../operation/users/user_edit.php:172 -#: ../../operation/users/user_edit.php:187 -msgid "Password successfully updated" -msgstr "ContraseƱa actualizada correctamente" +#: ../../godmode/menu.php:411 +msgid "DB Schema Check" +msgstr "ComprobaciĆ³n del esquema de la BD" -#: ../../operation/users/user_edit.php:182 -#: ../../operation/users/user_edit.php:230 -msgid "Error updating user info" -msgstr "Error al actualizar la informaciĆ³n del usuario" +#: ../../godmode/menu.php:414 +msgid "DB Interface" +msgstr "Interfaz de la BBDD" -#: ../../operation/users/user_edit.php:184 -#: ../../operation/users/user_edit.php:229 -#: ../../godmode/users/configure_user.php:643 -#: ../../godmode/users/configure_user.php:667 -#: ../../godmode/users/configure_user.php:737 -#: ../../godmode/users/configure_user.php:744 -#: ../../godmode/users/configure_user.php:776 -msgid "User info successfully updated" -msgstr "InformaciĆ³n del usuario actualizada correctamente" +#: ../../godmode/menu.php:494 +msgid "Extension manager view" +msgstr "Vista del gestor de extensiones" -#: ../../operation/users/user_edit.php:189 -msgid "Skin successfully updated" -msgstr "Skin actualizado correctamente" +#: ../../godmode/menu.php:498 +msgid "Extension manager" +msgstr "Gestor de extensiĆ³n" -#: ../../operation/users/user_edit.php:192 -#: ../../enterprise/godmode/reporting/mysql_builder.php:214 -msgid "No changes have been made" -msgstr "No se han hecho cambios" +#: ../../godmode/menu.php:529 ../../include/class/OrderInterpreter.class.php:339 +msgid "Warp Update" +msgstr "ActualizaciĆ³n de Warp" -#: ../../operation/users/user_edit.php:203 -msgid "Please enter a valid email" -msgstr "AƱada una direcciĆ³n de correo electrĆ³nico vĆ”lida" +#: ../../godmode/menu.php:535 +msgid "Update offline" +msgstr "Actualizar sin conexiĆ³n" -#: ../../operation/users/user_edit.php:205 -msgid "Please enter a valid phone number" -msgstr "AƱada un nĆŗmero de telĆ©fono valido" +#: ../../godmode/menu.php:538 +msgid "Update online" +msgstr "Actualizar en lĆ­nea" -#: ../../operation/users/user_edit.php:211 -msgid "Error updating passwords: " -msgstr "Error al actualizar contraseƱas: " +#: ../../godmode/menu.php:544 +msgid "Warp journal" +msgstr "Diario Warp" -#: ../../operation/users/user_edit.php:235 -msgid "Edit my User" -msgstr "Editar mi usuario" +#: ../../godmode/menu.php:552 ../../godmode/module_library/module_library_view.php:81 +msgid "Module library" +msgstr "LibrerĆ­a de mĆ³dulos" -#: ../../operation/users/user_edit.php:251 ../../godmode/users/user_list.php:432 +#: ../../godmode/menu.php:559 ../../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/gis_maps/configure_gis_map.php:86 +#: ../../operation/gis_maps/gis_map.php:30 ../../operation/gis_maps/render_view.php:130 +msgid "GIS Maps list" +msgstr "Lista de mapas GIS" + +#: ../../godmode/gis_maps/configure_gis_map.php:98 +msgid "View GIS" +msgstr "Ver GIS" + +#: ../../godmode/gis_maps/configure_gis_map.php:106 +msgid "GIS Maps builder" +msgstr "Creador de mapas GIS" + +#: ../../godmode/gis_maps/configure_gis_map.php:196 +msgid "Map successfully created" +msgstr "Mapa creado correctamente" + +#: ../../godmode/gis_maps/configure_gis_map.php:197 +msgid "Map could not be created" +msgstr "No se pudo crear el mapa" + +#: ../../godmode/gis_maps/configure_gis_map.php:299 +msgid "Map successfully update" +msgstr "Mapa actualizado correctamente" + +#: ../../godmode/gis_maps/configure_gis_map.php:300 +msgid "Map could not be updated" +msgstr "No se pudo actualizar el mapa" + +#: ../../godmode/gis_maps/configure_gis_map.php:353 +msgid "Do you want to use the default data from the connection?" +msgstr "ĀæQuieres usar los datos que vienen por defecto de la conexiĆ³n?" + +#: ../../godmode/gis_maps/configure_gis_map.php:387 +msgid "The connection" +msgstr "La conexiĆ³n" + +#: ../../godmode/gis_maps/configure_gis_map.php:387 +msgid "just added previously." +msgstr "ya ha sido aƱadido." + +#: ../../godmode/gis_maps/configure_gis_map.php:455 +msgid "Map Name" +msgstr "Nombre del mapa" + +#: ../../godmode/gis_maps/configure_gis_map.php:474 +msgid "Add Map connection" +msgstr "AƱadir conexiĆ³n al mapa" + +#: ../../godmode/gis_maps/configure_gis_map.php:523 +msgid "Default zoom" +msgstr "Zoom por defecto" + +#: ../../godmode/gis_maps/configure_gis_map.php:530 +msgid "Center Latitude" +msgstr "Latitud central" + +#: ../../godmode/gis_maps/configure_gis_map.php:533 +msgid "Center Longitude" +msgstr "Longitud central" + +#: ../../godmode/gis_maps/configure_gis_map.php:536 +msgid "Center Altitude" +msgstr "Altitud central" + +#: ../../godmode/gis_maps/configure_gis_map.php:539 +msgid "Default Latitude" +msgstr "Latitud por defecto" + +#: ../../godmode/gis_maps/configure_gis_map.php:542 +msgid "Default Longitude" +msgstr "Longitud por defecto" + +#: ../../godmode/gis_maps/configure_gis_map.php:545 +msgid "Default Altitude" +msgstr "Altitud por defecto" + +#: ../../godmode/gis_maps/configure_gis_map.php:552 +#: ../../godmode/setup/gis_step_2.php:395 +msgid "Layers" +msgstr "Capas" + +#: ../../godmode/gis_maps/configure_gis_map.php:561 +msgid "List of layers" +msgstr "Lista de capas" + +#: ../../godmode/gis_maps/configure_gis_map.php:562 +msgid "New layer" +msgstr "Nueva capa" + +#: ../../godmode/gis_maps/configure_gis_map.php:568 +msgid "Layer name" +msgstr "Nombre de la capa" + +#: ../../godmode/gis_maps/configure_gis_map.php:570 +msgid "Visible" +msgstr "Visible" + +#: ../../godmode/gis_maps/configure_gis_map.php:574 +msgid "Show agents from group" +msgstr "Mostrar agentes del grupo" + +#: ../../godmode/gis_maps/configure_gis_map.php:575 +#: ../../godmode/setup/setup_general.php:574 +#: ../../godmode/reporting/create_container.php:294 +#: ../../godmode/reporting/create_container.php:310 ../../include/ajax/events.php:1018 +#: ../../include/ajax/graph.ajax.php:145 +msgid "none" +msgstr "ninguno" + +#: ../../godmode/gis_maps/configure_gis_map.php:586 +msgid "Add agent" +msgstr "AƱadir agente" + +#: ../../godmode/gis_maps/configure_gis_map.php:608 +msgid "List of Agents to be shown in the layer" +msgstr "Lista de los agentes que se mostrarĆ”n en la capa" + +#: ../../godmode/gis_maps/configure_gis_map.php:639 +msgid "Use the data of this agent" +msgstr "Utilice los datos de este agente" + +#: ../../godmode/gis_maps/configure_gis_map.php:647 +msgid "List of groups to be shown in the layer" +msgstr "Lista de grupos a mostrar en la capa" + +#: ../../godmode/gis_maps/configure_gis_map.php:654 +msgid "Save Layer" +msgstr "Guardar capa" + +#: ../../godmode/gis_maps/configure_gis_map.php:670 +#: ../../godmode/gis_maps/configure_gis_map.php:677 +msgid "Save map" +msgstr "Guardar mapa" + +#: ../../godmode/gis_maps/configure_gis_map.php:672 +msgid "Update map" +msgstr "Actualizar mapa" + +#: ../../godmode/gis_maps/configure_gis_map.php:1060 +msgid "Using data from" +msgstr "Utilizando los datos de" + +#: ../../godmode/gis_maps/configure_gis_map.php:1218 +msgid "Empty layer names are not supported" +msgstr "No se admiten nombres de capa vacĆ­os" + +#: ../../godmode/massive/massive_copy_modules.php:193 +msgid "Copy alerts" +msgstr "Copiar alertas" + +#: ../../godmode/massive/massive_copy_modules.php:196 +#: ../../godmode/massive/massive_delete_modules.php:458 +#: ../../godmode/massive/massive_edit_modules.php:420 +msgid "Filter Modules" +msgstr "Filtrar mĆ³dulos" + +#: ../../godmode/massive/massive_copy_modules.php:230 +msgid "No alerts for this agent" +msgstr "Ninguna alerta para este agente" + +#: ../../godmode/massive/massive_copy_modules.php:292 +#: ../../godmode/massive/massive_delete_modules.php:530 +msgid "Filter Agents" +msgstr "Filtrar agentes" + +#: ../../godmode/massive/massive_copy_modules.php:309 +msgid "To agent(s)" +msgstr "A los agentes" + +#: ../../godmode/massive/massive_copy_modules.php:559 +msgid "No operation selected" +msgstr "No se seleccionĆ³ ninguna operaciĆ³n" + +#: ../../godmode/massive/massive_copy_modules.php:569 +#: ../../include/functions_agents.php:845 +msgid "No destiny agent(s) to copy" +msgstr "No hay agentes destino a los que copiar" + +#: ../../godmode/massive/massive_operations.php:59 +msgid "Bulk alert add" +msgstr "AƱadir alerta masiva" + +#: ../../godmode/massive/massive_operations.php:60 +msgid "Bulk alert delete" +msgstr "Eliminar alerta masiva" + +#: ../../godmode/massive/massive_operations.php:61 +msgid "Bulk alert actions add" +msgstr "AƱadir acciones de alerta masiva" + +#: ../../godmode/massive/massive_operations.php:62 +msgid "Bulk alert actions delete" +msgstr "Eliminar acciones de alerta masiva" + +#: ../../godmode/massive/massive_operations.php:63 +msgid "Bulk alert enable/disable" +msgstr "Habilitar/Deshabilitar alerta masiva" + +#: ../../godmode/massive/massive_operations.php:64 +msgid "Bulk alert setting standby" +msgstr "ConfiguraciĆ³n standby de alertas masivas" + +#: ../../godmode/massive/massive_operations.php:68 +msgid "Bulk agent edit" +msgstr "EdiciĆ³n agentes masiva" + +#: ../../godmode/massive/massive_operations.php:69 +#: ../../godmode/massive/massive_operations.php:73 +msgid "Bulk agent delete" +msgstr "Eliminar agentes de forma masiva" + +#: ../../godmode/massive/massive_operations.php:79 +msgid "Bulk profile add" +msgstr "AƱadir perfiles de forma masiva" + +#: ../../godmode/massive/massive_operations.php:80 +msgid "Bulk profile delete" +msgstr "Eliminar perfiles de forma masiva" + +#: ../../godmode/massive/massive_operations.php:87 +msgid "Bulk module edit" +msgstr "Editar mĆ³dulos de forma masiva" + +#: ../../godmode/massive/massive_operations.php:88 +msgid "Bulk module copy" +msgstr "Copiar mĆ³dulos de forma masiva" + +#: ../../godmode/massive/massive_operations.php:89 +msgid "Bulk module delete" +msgstr "Eliminar mĆ³dulos de forma masiva" + +#: ../../godmode/massive/massive_operations.php:93 +msgid "Bulk plugin edit" +msgstr "Editar plugins de forma masiva" + +#: ../../godmode/massive/massive_operations.php:389 #, php-format msgid "" -"This node is configured with centralized mode. All users information is read " +"No changes have been made because they exceed the maximum allowed (%d). Make fewer " +"changes or contact the administrator." +msgstr "" +"No se han hecho cambios porque exceden el mĆ”ximo permitido (%d). Haga menos cambios o " +"pĆ³ngase en contacto con el administrador." + +#: ../../godmode/massive/massive_operations.php:417 +#, php-format +msgid "This node is configured with centralized mode. To delete agents go to %s" +msgstr "" +"Este nodo estĆ” configurado en modo centralizado. Para eliminar un agente, vaya a %s" + +#: ../../godmode/massive/massive_operations.php:440 +msgid "The blank fields will not be updated" +msgstr "Los campos en blanco no se actualizarĆ”n." + +#: ../../godmode/massive/massive_standby_alerts.php:223 +msgid "Not standby alerts" +msgstr "Alertas sin standby" + +#: ../../godmode/massive/massive_standby_alerts.php:252 +#: ../../godmode/massive/massive_standby_alerts.php:256 +msgid "Set standby selected alerts" +msgstr "Poner en standby las alertas seleccionadas" + +#: ../../godmode/massive/massive_standby_alerts.php:258 +msgid "Standby alerts" +msgstr "Alertas en standby" + +#: ../../godmode/massive/massive_delete_action_alerts.php:75 +msgid "Could not be deleted. No agents selected" +msgstr "No se puede borrar. NingĆŗn agente seleccionado" + +#: ../../godmode/massive/massive_delete_action_alerts.php:122 +msgid "Could not be deleted. No alerts selected" +msgstr "No se puede borrar. No hay alertas seleccionadas" + +#: ../../godmode/massive/massive_delete_action_alerts.php:181 +msgid "Could not be deleted. No action selected" +msgstr "No se puede eliminar. No hay acciones seleccionadas" + +#: ../../godmode/massive/massive_delete_action_alerts.php:230 +#: ../../godmode/massive/massive_add_action_alerts.php:212 +msgid "Agents with templates" +msgstr "Agentes con plantillas" + +#: ../../godmode/massive/massive_delete_action_alerts.php:239 +#: ../../godmode/massive/massive_add_action_alerts.php:218 +#: ../../godmode/alerts/alert_templates.php:131 +#: ../../godmode/alerts/alert_templates.php:183 +#: ../../godmode/alerts/alert_templates.php:206 +#: ../../godmode/alerts/alert_templates.php:227 +msgid "Alert templates" +msgstr "Plantillas de alertas" + +#: ../../godmode/massive/massive_delete_action_alerts.php:247 +#: ../../godmode/massive/massive_delete_modules.php:557 +#: ../../godmode/massive/massive_add_action_alerts.php:226 +#: ../../godmode/massive/massive_edit_modules.php:530 +msgid "Show unknown and not init modules" +msgstr "Mostrar mĆ³dulos desconocidos y no iniciados" + +#: ../../godmode/massive/massive_delete_modules.php:82 +msgid "No module selected" +msgstr "No se seleccionĆ³ ningĆŗn mĆ³dulo" + +#: ../../godmode/massive/massive_delete_modules.php:156 +msgid "There was an error deleting the modules, the operation has been cancelled" +msgstr "Hubo un error al borrar los mĆ³dulos, se cancelĆ³ la operaciĆ³n" + +#: ../../godmode/massive/massive_delete_modules.php:318 +#: ../../godmode/massive/massive_edit_modules.php:304 +msgid "Selection mode" +msgstr "Modo de selecciĆ³n" + +#: ../../godmode/massive/massive_delete_modules.php:319 +#: ../../godmode/massive/massive_edit_modules.php:305 +msgid "Select modules first " +msgstr "Seleccionar primero los mĆ³dulos " + +#: ../../godmode/massive/massive_delete_modules.php:320 +#: ../../godmode/massive/massive_edit_modules.php:306 +msgid "Select agents first " +msgstr "Seleccionar primero los agentes " + +#: ../../godmode/massive/massive_delete_modules.php:343 +#: ../../godmode/massive/massive_edit_modules.php:325 +msgid "Select all modules of this type" +msgstr "Seleccionar todos los mĆ³dulos de este tipo" + +#: ../../godmode/massive/massive_delete_modules.php:387 +#: ../../godmode/massive/massive_edit_modules.php:371 +msgid "Select all modules of this group" +msgstr "Seleccionar todos los mĆ³dulos de este grupo" + +#: ../../godmode/massive/massive_delete_modules.php:436 +#: ../../godmode/massive/massive_edit_modules.php:382 +#: ../../godmode/events/custom_events.php:116 ../../include/functions_events.php:304 +msgid "Module Status" +msgstr "Estado de mĆ³dulo" + +#: ../../godmode/massive/massive_delete_modules.php:477 +#: ../../godmode/massive/massive_edit_modules.php:436 +msgid "Select all modules" +msgstr "Seleccionar todos los mĆ³dulos" + +#: ../../godmode/massive/massive_delete_modules.php:479 +#: ../../godmode/massive/massive_edit_modules.php:438 +msgid "When select modules" +msgstr "Cuando se seleccionan mĆ³dulos" + +#: ../../godmode/massive/massive_delete_modules.php:483 +#: ../../godmode/massive/massive_edit_modules.php:442 +msgid "Show common agents" +msgstr "Mostrar agentes comunes" + +#: ../../godmode/massive/massive_delete_modules.php:484 +#: ../../godmode/massive/massive_edit_modules.php:443 +msgid "Show all agents" +msgstr "Mostrar todos los agentes" + +#: ../../godmode/massive/massive_delete_modules.php:549 +#: ../../godmode/massive/massive_edit_modules.php:522 +msgid "Select all agents" +msgstr "Seleccionar todos los agentes" + +#: ../../godmode/massive/massive_delete_modules.php:595 +#: ../../godmode/massive/massive_edit_modules.php:1260 +msgid "Please, select an agent first" +msgstr "Primero seleccione un agente" + +#: ../../godmode/massive/massive_add_alerts.php:105 +#: ../../godmode/massive/massive_delete_alerts.php:108 +#: ../../operation/agentes/alerts_status.php:531 +#: ../../operation/agentes/alerts_status.functions.php:54 +msgid "No alert selected" +msgstr "No se seleccionĆ³ ninguna alerta" + +#: ../../godmode/massive/massive_delete_agents.php:122 +#, php-format +msgid "" +"There was an error deleting the agent, the operation has been cancelled Could not " +"delete agent %s" +msgstr "" +"Se produjo un error al eliminar el agente. La operaciĆ³n ha sido cancelada. No se pudo " +"eliminar el agente %s." + +#: ../../godmode/massive/massive_delete_agents.php:132 +#, php-format +msgid "Successfully deleted (%s)" +msgstr "Borrado correctamente (%s)" + +#: ../../godmode/massive/massive_delete_agents.php:226 +#: ../../godmode/massive/massive_edit_agents.php:547 +msgid "Show agents" +msgstr "Mostrar agentes" + +#: ../../godmode/massive/massive_edit_plugins.php:177 +msgid "Error retrieving the plugin macros" +msgstr "Error al recuperar las macros de plugin" + +#: ../../godmode/massive/massive_edit_plugins.php:185 +msgid "Error retrieving the modified macros" +msgstr "Error al recuperar las macros modificadas" + +#: ../../godmode/massive/massive_edit_plugins.php:208 +msgid "Error retrieving the module plugin macros" +msgstr "Error al recuperar las macros del mĆ³dulo de plugin" + +#: ../../godmode/massive/massive_edit_plugins.php:226 +msgid "Error retrieving the module plugin macros data" +msgstr "Error al recuperar los datos de las macros del mĆ³dulo de plugin" + +#: ../../godmode/massive/massive_edit_plugins.php:264 +msgid "Error building the new macros" +msgstr "Error al crear las nuevas macros" + +#: ../../godmode/massive/massive_edit_plugins.php:290 +#, php-format +msgid "%d modules updated" +msgstr "%d mĆ³dulos actualizados" + +#: ../../godmode/massive/massive_edit_plugins.php:321 +msgid "There are not registered plugins" +msgstr "No hay plugins registrados" + +#: ../../godmode/massive/massive_edit_plugins.php:464 +msgid "Invalid plugin data" +msgstr "Dato de plugin no vĆ”lido" + +#: ../../godmode/massive/massive_edit_plugins.php:571 +msgid "Clear" +msgstr "Vaciar" + +#: ../../godmode/massive/massive_edit_plugins.php:599 +msgid "Invalid macros array" +msgstr "Matriz de macros no vĆ”lida" + +#: ../../godmode/massive/massive_edit_plugins.php:624 +msgid "Multiple values" +msgstr "Valores mĆŗltiples" + +#: ../../godmode/massive/massive_edit_plugins.php:656 +#: ../../godmode/massive/massive_edit_plugins.php:792 +#: ../../godmode/massive/massive_edit_plugins.php:808 +msgid "Invalid agents array" +msgstr "Matriz de agentes no vĆ”lida" + +#: ../../godmode/massive/massive_edit_plugins.php:672 +msgid "Invalid agent element" +msgstr "Elemento de agente no vĆ”lido" + +#: ../../godmode/massive/massive_edit_plugins.php:683 +msgid "Invalid modules array" +msgstr "Matriz de mĆ³dulos no vĆ”lida" + +#: ../../godmode/massive/massive_edit_plugins.php:711 +msgid "Invalid module element" +msgstr "Elemento de mĆ³dulo no vĆ”lido" + +#: ../../godmode/massive/massive_edit_plugins.php:920 +msgid "There are no modules using this plugin" +msgstr "NingĆŗn mĆ³dulo estĆ” usando este plugin" + +#: ../../godmode/massive/massive_edit_plugins.php:1005 +msgid "There was a problem loading the module plugin macros data" +msgstr "SurgiĆ³ un problema al cargar los datos de las macros del mĆ³dulo de plugin." + +#: ../../godmode/massive/massive_enable_disable_alerts.php:195 +msgid "Enabled alerts" +msgstr "Alertas activadas" + +#: ../../godmode/massive/massive_enable_disable_alerts.php:224 +msgid "Disable selected alerts" +msgstr "Desactivar alertas seleccionadas" + +#: ../../godmode/massive/massive_enable_disable_alerts.php:228 +msgid "Enable selected alerts" +msgstr "Activar alertas seleccionadas" + +#: ../../godmode/massive/massive_enable_disable_alerts.php:230 +msgid "Disabled alerts" +msgstr "Deshabilitar alertas" + +#: ../../godmode/massive/massive_edit_agents.php:176 +msgid "No values changed" +msgstr "No se han cambiado los valores." + +#: ../../godmode/massive/massive_edit_agents.php:227 +msgid "Configuration files deleted successfully" +msgstr "Los archivos de configuraciĆ³n se borraron correctamente." + +#: ../../godmode/massive/massive_edit_agents.php:228 +msgid "Configuration files cannot be deleted" +msgstr "Los archivos de configuraciĆ³n no se pudieron borrar." + +#: ../../godmode/massive/massive_edit_agents.php:420 +#, php-format +msgid "Agents updated successfully (%d)" +msgstr "Agentes actualizados correctamente (%d)" + +#: ../../godmode/massive/massive_edit_agents.php:435 +#, php-format +msgid "Agents cannot be updated (%d), ids (%s)" +msgstr "Los agentes no se pueden actualizar (%d), identificadores (%s)" + +#: ../../godmode/massive/massive_edit_agents.php:450 +#, php-format +msgid "Agent ID: %s cannot be updated custom fields (%s)" +msgstr "ID del agente: %s no se pueden actualizar los campos personalizados (%s)" + +#: ../../godmode/massive/massive_edit_agents.php:470 +#, php-format +msgid "Agent ID: %s cannot be updated %s secondary groups (%s)" +msgstr "ID de agente: %s no se puede actualizar %s grupos secundarios (%s)" + +#: ../../godmode/massive/massive_edit_agents.php:919 +msgid "" +"If the remote configuration is enabled, it will also go into standby mode when " +"disabling it." +msgstr "" +"Si la configuraciĆ³n remota estĆ” habilitada, tambiĆ©n entrarĆ” en modo de espera cuando " +"se deshabilite." + +#: ../../godmode/massive/massive_edit_agents.php:932 +msgid "Active" +msgstr "Activo" + +#: ../../godmode/massive/massive_edit_agents.php:948 +msgid "Delete available remote configurations" +msgstr "Borrar las configuraciones remotas disponibles" + +#: ../../godmode/massive/massive_edit_agents.php:981 +msgid "Without status" +msgstr "Sin estado" + +#: ../../godmode/massive/massive_edit_agents.php:981 +#: ../../include/lib/Dashboard/Widgets/maps_status.php:360 +msgid "Bad" +msgstr "Mal" + +#: ../../godmode/massive/massive_edit_agents.php:991 +msgid "The agent still runs but the alerts and events will be stop" +msgstr "El agente seguirĆ” ejecutĆ”ndose, pero las alertas y eventos se detendrĆ”n." + +#: ../../godmode/massive/massive_edit_agents.php:1008 +#, php-format +msgid "" +"This mode allow %s to disable all modules \n" +"of this agent while the selected module is on CRITICAL status" +msgstr "" +"Este modo permite que %s deshabilite todos los mĆ³dulos \n" +"de este agente mientras el mĆ³dulo seleccionado estĆ© en estado CRƍTICO" + +#: ../../godmode/massive/massive_delete_profiles.php:52 +#: ../../godmode/massive/massive_add_profiles.php:52 +#, php-format +msgid "" +"This node is configured with centralized mode. All profiles user information is read " "only. Go to %s to manage it." 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." +"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." -#: ../../operation/users/user_edit.php:272 -#: ../../godmode/users/configure_user.php:899 -msgid "Full (display) name" -msgstr "Nombre completo" +#: ../../godmode/massive/massive_delete_profiles.php:133 +msgid "Profiles deleted successfully" +msgstr "Perfiles borrados correctamente" -#: ../../operation/users/user_edit.php:292 -#: ../../godmode/users/configure_user.php:1021 -msgid "E-mail" -msgstr "Correo electrĆ³nico" +#: ../../godmode/massive/massive_delete_profiles.php:134 +msgid "Profiles cannot be deleted" +msgstr "No se pudieron borrar los perfiles." -#: ../../operation/users/user_edit.php:294 -#: ../../godmode/users/configure_user.php:1037 -msgid "Phone number" -msgstr "NĆŗmero de telĆ©fono" - -#: ../../operation/users/user_edit.php:298 -#: ../../enterprise/include/process_reset_pass.php:103 -#: ../../enterprise/meta/include/process_reset_pass.php:96 -msgid "New Password" -msgstr "ContraseƱa nueva" - -#: ../../operation/users/user_edit.php:299 -#: ../../godmode/users/configure_user.php:950 -msgid "Password confirmation" -msgstr "Confirmar contraseƱa" - -#: ../../operation/users/user_edit.php:300 -msgid "Current password" -msgstr "ContraseƱa actual" - -#: ../../operation/users/user_edit.php:302 -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:317 -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:325 -#: ../../enterprise/meta/advanced/metasetup.translate_string.php:174 -#: ../../enterprise/extensions/translate_string.php:302 -#: ../../godmode/users/configure_user.php:904 -msgid "Language" -msgstr "Idioma" - -#: ../../operation/users/user_edit.php:354 -#: ../../godmode/users/configure_user.php:1103 -msgid "Home screen" -msgstr "Pantalla de inicio" - -#: ../../operation/users/user_edit.php:354 -#: ../../godmode/users/configure_user.php:1104 -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 "" -"El usuario puede personalizar la pĆ”gina de inicio. MostrarĆ” \"Detalle de agente" -"\" por defecto. Ejemplo: seleccionar \"otro\" y escribir index.php?" -"sec=estado&sec2=operation/agentes/ver_agente&id_agente=1 para mostrar la vista " -"de detalle de agente" - -#: ../../operation/users/user_edit.php:401 -#: ../../operation/users/user_edit.php:410 -#: ../../godmode/users/configure_user.php:1072 -msgid "Skin" -msgstr "Apariencia" - -#: ../../operation/users/user_edit.php:411 -msgid "This change will only apply to nodes" -msgstr "Este cambio solo se aplicarĆ” a los nodos" - -#: ../../operation/users/user_edit.php:419 -#: ../../godmode/users/configure_user.php:916 -msgid "Timezone" -msgstr "Zona horaria" - -#: ../../operation/users/user_edit.php:419 -#: ../../godmode/users/configure_user.php:917 -msgid "The timezone must be that of the associated server." -msgstr "La zona horaria debe ser la del servidor asociado." - -#: ../../operation/users/user_edit.php:426 ../../include/functions_config.php:776 -#: ../../enterprise/meta/include/functions_meta.php:582 -#: ../../enterprise/meta/include/functions_meta.php:884 -#: ../../godmode/setup/setup_auth.php:353 -#: ../../godmode/users/configure_user.php:1332 -msgid "Double authentication" -msgstr "Doble autentificaciĆ³n" - -#: ../../operation/users/user_edit.php:440 -#: ../../godmode/users/configure_user.php:1350 -msgid "Show information" -msgstr "Mostrar informaciĆ³n" - -#: ../../operation/users/user_edit.php:448 -msgid "Event filter" -msgstr "Filtro de eventos" - -#: ../../operation/users/user_edit.php:519 -msgid "Autorefresh" -msgstr "ActualizaciĆ³n automĆ”tica" - -#: ../../operation/users/user_edit.php:520 -msgid "This will activate autorefresh in selected pages" -msgstr "Esto activarĆ” la actualizaciĆ³n automĆ”tica en las pĆ”ginas seleccionadas." - -#: ../../operation/users/user_edit.php:555 -msgid "Full list of pages" -msgstr "Lista completa de pĆ”ginas" - -#: ../../operation/users/user_edit.php:564 -#: ../../operation/users/user_edit.php:565 -msgid "Push selected pages into autorefresh list" -msgstr "AƱadir las pĆ”ginas seleccionadas a la lista de actualizaciĆ³n automĆ”tica" - -#: ../../operation/users/user_edit.php:573 -#: ../../operation/users/user_edit.php:574 -msgid "Pop selected pages out of autorefresh list" -msgstr "Quitar las pĆ”ginas seleccionadas de la lista de actualizaciĆ³n automĆ”tica" - -#: ../../operation/users/user_edit.php:579 -msgid "List of pages with autorefresh" -msgstr "Lista de pĆ”ginas con actualizaciĆ³n automĆ”tica" - -#: ../../operation/users/user_edit.php:588 -msgid "Time autorefresh" -msgstr "Tiempo de actualizaciĆ³n automĆ”tica" - -#: ../../operation/users/user_edit.php:590 -msgid "" -"Interval of autorefresh of the elements, by default they are 30 seconds, " -"needing to enable the autorefresh first" -msgstr "" -"Intervalo de auto refresco de los elementos, 30 segundos por defecto, pero " -"debe habilitar primero el auto refresco." - -#: ../../operation/users/user_edit.php:685 -msgid "eHorus user configuration" -msgstr "ConfiguraciĆ³n de usuario eHorus" - -#: ../../operation/users/user_edit.php:690 -msgid "eHorus user acces enabled" -msgstr "Acceso de usuario eHorus habilitado" - -#: ../../operation/users/user_edit.php:711 -#: ../../operation/users/user_edit.php:757 -#: ../../enterprise/include/lib/NetworkManager.php:82 -#: ../../godmode/setup/setup_integria.php:566 -#: ../../godmode/setup/setup_ehorus.php:111 -msgid "Test" -msgstr "Probar" - -#: ../../operation/users/user_edit.php:712 -#: ../../operation/users/user_edit.php:758 -#: ../../enterprise/operation/agentes/transactional_map.php:398 -#: ../../godmode/setup/setup_integria.php:567 -#: ../../godmode/setup/setup_ehorus.php:112 ../../godmode/menu.php:31 -msgid "Start" -msgstr "Inicio" - -#: ../../operation/users/user_edit.php:737 -msgid "Integria user configuration" -msgstr "ConfiguraciĆ³n de usuario de Integria" - -#: ../../operation/users/user_edit.php:774 -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:787 -#: ../../operation/users/user_edit.php:796 -#: ../../include/functions_profile.php:188 -msgid "Profiles/Groups assigned to this user" -msgstr "Perfiles/Grupos asignados a este usuario" - -#: ../../operation/users/user_edit.php:813 -#: ../../include/functions_profile.php:213 -#: ../../enterprise/godmode/setup/setup_acl.php:591 -#: ../../godmode/massive/massive_add_profiles.php:202 -#: ../../godmode/massive/massive_delete_profiles.php:151 -#: ../../godmode/users/configure_profile.php:265 -msgid "Profile name" -msgstr "Nombre del perfil" - -#: ../../operation/users/user_edit.php:851 -msgid "This user doesn't have any assigned profile/group." -msgstr "Este usuario no tiene asignado ningĆŗn perfil/grupo" - -#: ../../operation/users/user_edit.php:1079 -#: ../../godmode/users/configure_user.php:1840 -msgid "Double autentication information" -msgstr "InformaciĆ³n sobre la doble autentificaciĆ³n" - -#: ../../operation/users/user_edit.php:1168 -#: ../../godmode/users/configure_user.php:1930 -msgid "The double authentication will be deactivated" -msgstr "La doble autentificaciĆ³n se desactivarĆ”" - -#: ../../operation/users/user_edit.php:1169 -#: ../../godmode/users/configure_user.php:1931 -msgid "Deactivate" -msgstr "Desactivado" - -#: ../../operation/users/user_edit.php:1201 -#: ../../godmode/users/configure_user.php:1967 -msgid "The double autentication was deactivated successfully" -msgstr "La doble autentificaciĆ³n fue desactivada correctamente" - -#: ../../operation/users/user_edit.php:1204 -#: ../../operation/users/user_edit.php:1208 -#: ../../godmode/users/configure_user.php:1971 -#: ../../godmode/users/configure_user.php:1975 -msgid "There was an error deactivating the double autentication" -msgstr "Error al desactivar la doble autentificaciĆ³n" - -#: ../../operation/users/user_edit.php:1243 -#: ../../operation/users/user_edit.php:1321 -#: ../../godmode/setup/setup_integria.php:720 -#: ../../godmode/setup/setup_integria.php:801 -#: ../../godmode/setup/setup_ehorus.php:255 -msgid "Empty user or password" -msgstr "Usuario o contraseƱa vacĆ­o" - -#: ../../operation/users/user_edit.php:1244 -#: ../../operation/users/user_edit.php:1322 -#: ../../godmode/setup/setup_integria.php:721 -#: ../../godmode/setup/setup_integria.php:802 -#: ../../godmode/setup/setup_ehorus.php:256 -msgid "User not found" -msgstr "Usuario no encontrado" - -#: ../../operation/users/user_edit.php:1245 -#: ../../operation/users/user_edit.php:1323 -#: ../../godmode/setup/setup_integria.php:722 -#: ../../godmode/setup/setup_integria.php:803 -#: ../../godmode/setup/setup_ehorus.php:257 -msgid "Invalid password" -msgstr "ContraseƱa incorrecta" - -#: ../../operation/users/user_edit_notifications.php:36 -#: ../../operation/users/user_edit_header.php:102 -msgid "User notifications" -msgstr "Notifivaciones de usuario" - -#: ../../operation/users/user_edit_notifications.php:64 -#: ../../enterprise/include/lib/Metaconsole/Node.php:1165 -#: ../../enterprise/include/lib/Metaconsole/Node.php:1166 -#: ../../enterprise/include/functions_HA_cluster.php:61 -#: ../../enterprise/godmode/agentes/agent_autoconfiguration.php:170 -#: ../../enterprise/godmode/agentes/plugins_manager.php:195 -#: ../../enterprise/godmode/agentes/plugins_manager.php:262 -#: ../../enterprise/godmode/policies/policy_alerts.php:722 -#: ../../godmode/extensions.php:257 ../../godmode/alerts/alert_list.list.php:1030 -#: ../../godmode/users/user_list.php:745 -msgid "Enable" -msgstr "Activar" - -#: ../../operation/users/user_edit_notifications.php:65 -msgid "Also receive an email" -msgstr "Recibir tambiĆ©n un correo electrĆ³nico" - -#: ../../operation/users/user_edit_notifications.php:94 -msgid "Controls have been disabled by the system administrator" -msgstr "Los controles han sido deshabilitados por el administrador del sistema" - -#: ../../operation/users/user_edit_header.php:91 -#: ../../enterprise/meta/general/main_menu.php:458 -#: ../../enterprise/meta/general/main_menu.php:518 -#: ../../enterprise/meta/general/main_menu.php:525 -#: ../../enterprise/meta/general/main_header.php:321 -#: ../../enterprise/meta/general/main_header.php:401 -#: ../../enterprise/meta/general/main_header.php:408 -#: ../../enterprise/meta/include/functions_users_meta.php:182 -#: ../../enterprise/meta/include/functions_users_meta.php:204 -#: ../../godmode/users/user_list.php:214 ../../godmode/users/user_list.php:239 -#: ../../godmode/users/user_list.php:250 -#: ../../godmode/users/configure_user.php:223 -#: ../../godmode/users/configure_profile.php:55 -#: ../../godmode/users/configure_profile.php:76 -#: ../../godmode/users/profile_list.php:63 -#: ../../godmode/users/profile_list.php:84 -msgid "User management" -msgstr "GestiĆ³n de usuarios" - -#: ../../operation/users/user_edit_header.php:131 -msgid "Edit user" -msgstr "Editar usuario" - -#: ../../operation/search_helps.php:17 -msgid "Zero results found." -msgstr "Cero resultados" - -#: ../../operation/search_helps.php:18 -#, php-format -msgid "You can find more help in the wiki" -msgstr "Puede encontrar mĆ”s ayuda en wiki" - -#: ../../operation/search_helps.php:32 -msgid "Matches" -msgstr "Coincidencias" - -#: ../../operation/search_results.php:67 -msgid "Global search" -msgstr "BĆŗsqueda global" - -#: ../../operation/search_results.php:93 -#: ../../include/functions_reporting.php:11589 -#: ../../godmode/massive/massive_add_profiles.php:204 #: ../../godmode/massive/massive_delete_profiles.php:153 +#: ../../godmode/massive/massive_add_profiles.php:204 +#: ../../include/functions_reporting.php:11742 ../../operation/search_results.php:93 msgid "Users" msgstr "Usuarios" -#: ../../operation/search_results.php:132 ../../include/functions_groups.php:139 -#: ../../include/functions_reporting.php:15024 -#: ../../enterprise/meta/general/main_menu.php:269 -#: ../../enterprise/meta/general/main_header.php:167 -#: ../../enterprise/meta/general/main_header.php:183 -#: ../../enterprise/mobile/include/functions_web.php:15 -msgid "Reports" -msgstr "Informes" +#: ../../godmode/massive/massive_delete_alerts.php:307 +msgid "Show alerts on disabled modules" +msgstr "Mostrar alertas de mĆ³dulos deshabilitados" -#: ../../operation/incidents/integriaims_export_csv.php:80 -msgid "ID Ticket" -msgstr "Ticket de ID" +#: ../../godmode/massive/massive_add_action_alerts.php:134 +msgid "No alerts selected" +msgstr "No se seleccionĆ³ ninguna alerta" -#: ../../operation/incidents/integriaims_export_csv.php:82 -#: ../../operation/incidents/list_integriaims_incidents.php:517 -msgid "Group/Company" -msgstr "Grupo/CompaƱia" +#: ../../godmode/massive/massive_add_action_alerts.php:166 +msgid "No actions selected" +msgstr "No hay acciones seleccionadas" -#: ../../operation/incidents/integriaims_export_csv.php:86 -#: ../../enterprise/tools/ipam/ipam_ajax.php:494 -#: ../../enterprise/include/class/DatabaseHA.class.php:798 -#: ../../enterprise/meta/advanced/servers.build_table.php:68 -#: ../../godmode/servers/servers.build_table.php:87 -#: ../../godmode/agentes/agent_incidents.php:93 -msgid "Updated" -msgstr "Actualizado" +#: ../../godmode/massive/massive_add_profiles.php:184 +msgid "Profiles added successfully" +msgstr "Perfiles agregados correctamente" -#: ../../operation/incidents/integriaims_export_csv.php:87 -msgid "Started" -msgstr "Iniciado hace" +#: ../../godmode/massive/massive_add_profiles.php:185 +msgid "Profiles cannot be added" +msgstr "Los perfiles no se han podido agregar" -#: ../../operation/incidents/integriaims_export_csv.php:88 -#: ../../operation/incidents/configure_integriaims_incident.php:282 -#: ../../operation/incidents/list_integriaims_incidents.php:345 -#: ../../operation/incidents/list_integriaims_incidents.php:521 -msgid "Creator" -msgstr "Creador" +#: ../../godmode/massive/massive_edit_modules.php:137 +msgid "Error updating the modules from a module type" +msgstr "Error al actualizar los mĆ³dulos desde un tipo de mĆ³dulos" -#: ../../operation/incidents/incident_statistics.php:24 -#: ../../operation/incidents/configure_integriaims_incident.php:33 -#: ../../operation/incidents/list_integriaims_incidents.php:34 -#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:23 -#: ../../godmode/agentes/agent_incidents.php:22 -msgid "" -"In order to access ticket management system, integration with Integria IMS " -"must be enabled and properly configured" +#: ../../godmode/massive/massive_edit_modules.php:160 +msgid "Error updating the modules from an agent group" +msgstr "Error al actualizar los mĆ³dulos desde un grupo de agentes" + +#: ../../godmode/massive/massive_edit_modules.php:178 +msgid "Error updating the modules (maybe there was no field to update)" msgstr "" -"Para acceder al sistema de gestiĆ³n de tickets, la integraciĆ³n con Integria IMS " -"debe estar activada y correctamente configurada" +"Error al actualizar los mĆ³dulos (puede que no hubiera ningĆŗn campo para actualizar)" -#: ../../operation/incidents/incident_statistics.php:29 -msgid "Incidents by status" -msgstr "Incidentes por estado" +#: ../../godmode/massive/massive_edit_modules.php:506 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:405 +msgid "Filter agents" +msgstr "Filtrar agentes" -#: ../../operation/incidents/incident_statistics.php:32 -msgid "Incidents by priority" -msgstr "Incidentes por prioridad" +#: ../../godmode/alerts/configure_alert_command.php:60 +msgid "Configure alert command" +msgstr "Configurar comando de alerta" -#: ../../operation/incidents/incident_statistics.php:35 -msgid "Incidents by group" -msgstr "Incidentes por grupo" +#: ../../godmode/alerts/configure_alert_command.php:196 +#: ../../godmode/alerts/alert_commands.php:643 +#, php-format +msgid "" +"This node is configured with centralized mode. All alert commands information is read " +"only. Go to %s to manage it." +msgstr "" +"Este nodo se configura en modo centralizado. Toda la informaciĆ³n de plantillas de " +"alertas es solo de lectura. Vaya a %s para gestionarlo." -#: ../../operation/incidents/incident_statistics.php:38 -msgid "Incidents by user" -msgstr "Incidentes por usuario" +#: ../../godmode/alerts/configure_alert_command.php:207 +msgid "Update Command" +msgstr "Actualizar comando" -#: ../../operation/incidents/configure_integriaims_incident.php:26 -msgid "Update Integria IMS Ticket" -msgstr "Actualizar el ticket de Integria IMS" +#: ../../godmode/alerts/configure_alert_command.php:207 +#: ../../godmode/alerts/configure_alert_action.php:275 +msgid "Create Command" +msgstr "Crear comando" -#: ../../operation/incidents/configure_integriaims_incident.php:28 -msgid "Create Integria IMS Ticket" -msgstr "Crear ticket de Integria IMS" +#: ../../godmode/alerts/configure_alert_command.php:297 +#, php-format +msgid "Field %s description" +msgstr "Campo de descripciĆ³n %s" + +#: ../../godmode/alerts/configure_alert_command.php:325 +#, php-format +msgid "Field %s values" +msgstr "Campos %s valores" + +#: ../../godmode/alerts/configure_alert_command.php:327 +msgid "value1,tag1;value2,tag2;value3,tag3" +msgstr "valor1,etiqueta1;valor2,etiqueta2;valor3,etiqueta3" + +#: ../../godmode/alerts/configure_alert_command.php:363 +msgid "Hide" +msgstr "Ocultar" + +#: ../../godmode/alerts/alert_actions.php:74 ../../include/functions_reporting.php:2836 +msgid "Alert actions" +msgstr "Acciones de alerta" + +#: ../../godmode/alerts/alert_actions.php:222 +#: ../../godmode/alerts/configure_alert_action.php:120 +#, php-format +msgid "" +"This node is configured with centralized mode. All alert actions information is read " +"only. Go to %s to manage it." +msgstr "" +"Este nodo se configura en modo centralizado. Toda la informaciĆ³n de plantillas de " +"alertas es solo de lectura. Vaya a %s para gestionarlo." + +#: ../../godmode/alerts/alert_actions.php:396 +msgid "You cannot edit this action, You don't have the permission to edit All group." +msgstr "" +"No puede editar esta acciĆ³n, no tiene permisos para editar el grupo All (todos)." + +#: ../../godmode/alerts/alert_actions.php:407 +msgid "" +"The action and the command associated with it do not have the same group. Please " +"contact an administrator to fix it." +msgstr "" +"La acciĆ³n y el comando asociado no pertenecen al mismo grupo. PĆ³ngase en contacto con " +"el administrador para solucionarlo." + +#: ../../godmode/alerts/alert_actions.php:465 +msgid "No alert actions configured" +msgstr "Sin acciones de alertas configuradas" + +#: ../../godmode/alerts/alert_list.list.php:133 +msgid "Field content" +msgstr "Contenido del campo" + +#: ../../godmode/alerts/alert_list.list.php:145 ../../mobile/operation/alerts.php:64 +#: ../../operation/agentes/alerts_status.functions.php:95 +msgid "All (Enabled)" +msgstr "Todos (Habilitados)" + +#: ../../godmode/alerts/alert_list.list.php:148 ../../mobile/operation/alerts.php:67 +#: ../../operation/agentes/alerts_status.functions.php:98 +#: ../../operation/snmpconsole/snmp_view.php:228 +#: ../../operation/snmpconsole/snmp_view.php:1263 +msgid "Not fired" +msgstr "No disparadas" + +#: ../../godmode/alerts/alert_list.list.php:677 ../../godmode/alerts/alert_view.php:317 +msgid "" +"The default actions will be executed every time that the alert is fired and no other " +"action is executed" +msgstr "" +"Las acciones por defecto se ejecutarĆ”n cada vez que la alerta se dispare y ninguna " +"otra acciĆ³n sea ejecutada." + +#: ../../godmode/alerts/alert_list.list.php:945 +msgid "View alert advanced details" +msgstr "Ver detalles avanzados de la alerta" + +#: ../../godmode/alerts/alert_list.list.php:961 +#: ../../include/functions_reporting_html.php:3219 +msgid "No alerts defined" +msgstr "No hay alertas definidas" + +#: ../../godmode/alerts/alert_commands.php:143 +msgid "" +"For sending emails, text must be HTML format, if you want to use plain text, type it " +"between the following labels:
"
+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:219
+#: ../../godmode/alerts/alert_commands.php:250
+msgid "Text/plain"
+msgstr "Texto/plano"
+
+#: ../../godmode/alerts/alert_commands.php:221
+#: ../../godmode/alerts/alert_commands.php:252
+msgid "For sending emails only text plain"
+msgstr "Para mandar emails solo en texto plano"
+
+#: ../../godmode/alerts/alert_commands.php:235
+#: ../../godmode/alerts/alert_commands.php:266
+msgid "Text/html"
+msgstr "Texto/HTML"
+
+#: ../../godmode/alerts/alert_commands.php:474
+msgid "Permissions warning"
+msgstr "Alerta de permisos"
+
+#: ../../godmode/alerts/alert_commands.php:477
+msgid ""
+"Command management is limited to administrator users or user profiles with "
+"permissions PM"
+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:494
+msgid "Alert commands"
+msgstr "Comandos de alerta"
+
+#: ../../godmode/alerts/alert_commands.php:563 ../../include/functions_alerts.php:2652
+msgid "No name specified"
+msgstr "NingĆŗn nombre especificado"
+
+#: ../../godmode/alerts/alert_commands.php:567 ../../include/functions_alerts.php:2647
+msgid "No command specified"
+msgstr "NingĆŗn comando especificado"
+
+#: ../../godmode/alerts/alert_commands.php:619
+msgid " (copy)"
+msgstr " (copia)"
+
+#: ../../godmode/alerts/alert_commands.php:740
+msgid "No alert commands configured"
+msgstr "Comandos de alertas no configurados"
+
+#: ../../godmode/alerts/alert_templates.php:268
+#, php-format
+msgid ""
+"This node is configured with centralized mode. All alert templates information is "
+"read only. Go to %s to manage it."
+msgstr ""
+"Este nodo se configura en modo centralizado. Toda la informaciĆ³n de plantillas de "
+"alertas es solo de lectura. Vaya a %s para gestionarlo."
+
+#: ../../godmode/alerts/alert_templates.php:413
+msgid ""
+"You cannot edit this alert template, You don't have the permission to edit All group."
+msgstr ""
+"No puede edit esta plantilla de alerta. No tiene los permisos para editar el grupo "
+"All (todos)."
+
+#: ../../godmode/alerts/alert_templates.php:474
+msgid "No alert templates defined"
+msgstr "No hay plantillas de alerta definidas"
+
+#: ../../godmode/alerts/configure_alert_action.php:74
+#: ../../godmode/alerts/configure_alert_action.php:87
+msgid "Configure alert action"
+msgstr "Configurar acciĆ³n de alerta"
+
+#: ../../godmode/alerts/configure_alert_action.php:167
+msgid "Update Action"
+msgstr "Actualizar acciĆ³n"
+
+#: ../../godmode/alerts/configure_alert_action.php:169
+#: ../../godmode/alerts/alert_list.builder.php:136
+#: ../../include/class/AgentsAlerts.class.php:332
+msgid "Create Action"
+msgstr "Crear acciĆ³n"
+
+#: ../../godmode/alerts/configure_alert_action.php:204
+msgid "This action may stop working, if you change its name."
+msgstr "Esta acciĆ³n podrĆ­a dejar de funcionar si cambia el nombre."
+
+#: ../../godmode/alerts/configure_alert_action.php:306
+msgid "Recovery"
+msgstr "RecuperaciĆ³n"
+
+#: ../../godmode/alerts/configure_alert_action.php:310
+#: ../../godmode/alerts/alert_view.php:527 ../../godmode/alerts/alert_view.php:654
+#: ../../godmode/servers/plugin.php:422
+msgid "Command preview"
+msgstr "Vista previa del comando"
+
+#: ../../godmode/alerts/configure_alert_action.php:330
+msgid "Create workunit on recovery"
+msgstr "Crear unidad de trabajo en recuperaciĆ³n"
+
+#: ../../godmode/alerts/configure_alert_action.php:331
+msgid ""
+"If closed status is set on recovery, a workunit will be added to the ticket in "
+"Integria IMS rather that closing the ticket."
+msgstr ""
+"Si el estado cerrado estĆ” en recuperaciĆ³n, se aƱadirĆ” una unidad de trabajo al ticket "
+"en Integria IMS en vez de cerrar el ticket."
+
+#: ../../godmode/alerts/configure_alert_template.php:99
+#: ../../godmode/alerts/configure_alert_template.php:123
+#: ../../godmode/alerts/configure_alert_template.php:155
+#: ../../include/functions_menu.php:494
+msgid "Configure alert template"
+msgstr "Configurar plantilla de alerta"
+
+#: ../../godmode/alerts/configure_alert_template.php:250
+#: ../../godmode/alerts/configure_alert_template.php:254
+msgid "Conditions"
+msgstr "Condiciones"
+
+#: ../../godmode/alerts/configure_alert_template.php:271
+#: ../../godmode/alerts/configure_alert_template.php:275
+msgid "Advanced fields"
+msgstr "Campos avanzados"
+
+#: ../../godmode/alerts/configure_alert_template.php:419
+#, php-format
+msgid ""
+"This node is configured with centralized mode. All alerts templates information is "
+"read only. Go to Go to %s to manage it."
+msgstr ""
+"Este nodo se configura en modo centralizado. Toda la informaciĆ³n de plantillas de "
+"alertas es solo de lectura. Vaya a %s para gestionarlo."
+
+#: ../../godmode/alerts/configure_alert_template.php:531
+msgid "No template name specified"
+msgstr "NingĆŗn nombre de plantilla especificado"
+
+#: ../../godmode/alerts/configure_alert_template.php:607
+#: ../../godmode/alerts/alert_list.builder.php:169
+#: ../../include/class/AgentsAlerts.class.php:379
+msgid "Create Template"
+msgstr "Crear plantilla"
+
+#: ../../godmode/alerts/configure_alert_template.php:712
+msgid "Reset counter for non-sustained alerts"
+msgstr "Reiniciar el contador para las alertas no sostenidas"
+
+#: ../../godmode/alerts/configure_alert_template.php:714
+msgid ""
+"Enable this option if you want the counter to be reset when the alert is not being "
+"fired consecutively, even if it's within the time threshold"
+msgstr ""
+"Activa esta opciĆ³n si quieres que el contador se reinicie cuando la alerta no se "
+"dispare de forma consecutiva, incluso si estĆ” dentro del umbral."
+
+#: ../../godmode/alerts/configure_alert_template.php:788
+msgid ""
+"Unless they're left blank, the fields from the action will override those set on the "
+"template."
+msgstr ""
+"A menos que estĆ©n en blanco, los campos de la acciĆ³n sobrescribirĆ”n los de la "
+"plantilla."
+
+#: ../../godmode/alerts/configure_alert_template.php:792
+msgid "Condition type"
+msgstr "Tipo de condiciĆ³n"
+
+#: ../../godmode/alerts/configure_alert_template.php:809
+msgid "Trigger when matches the value"
+msgstr "Disparar cuando coincida con el valor"
+
+#: ../../godmode/alerts/configure_alert_template.php:832
+msgid "The regular expression is valid"
+msgstr "La expresiĆ³n regular es vĆ”lida."
+
+#: ../../godmode/alerts/configure_alert_template.php:842
+msgid "The regular expression is not valid"
+msgstr "La expresiĆ³n regular no es vĆ”lida."
+
+#: ../../godmode/alerts/configure_alert_template.php:919
+msgid "Recovery fields"
+msgstr "Campos de recuperaciĆ³n"
+
+#: ../../godmode/alerts/configure_alert_template.php:1136
+msgid "No wizard"
+msgstr "No hay asistente"
+
+#: ../../godmode/alerts/configure_alert_template.php:1216
+#: ../../godmode/alerts/alert_view.php:166 ../../include/functions_ui.php:1340
+msgid "The alert would fire when the value matches "
+msgstr "La alerta se dispararĆ” cuando el valor coincida con ."
+
+#: ../../godmode/alerts/configure_alert_template.php:1217
+#, php-format
+msgid "The alert would fire when the value doesn\\'t match %s"
+msgstr "La alerta se dispararĆ” cuando el valor no coincida con %s"
+
+#: ../../godmode/alerts/configure_alert_template.php:1218
+#: ../../godmode/alerts/alert_view.php:175 ../../include/functions_ui.php:1329
+msgid "The alert would fire when the value is "
+msgstr "La alerta se dispararĆ” cuando el valor sea ."
+
+#: ../../godmode/alerts/configure_alert_template.php:1219
+#: ../../godmode/alerts/alert_view.php:180 ../../include/functions_ui.php:1334
+msgid "The alert would fire when the value is not "
+msgstr "La alerta se dispararĆ” cuando el valor no sea ."
+
+#: ../../godmode/alerts/configure_alert_template.php:1220
+#: ../../godmode/alerts/alert_view.php:187 ../../include/functions_ui.php:1352
+msgid ""
+"The alert would fire when the value is between  and "
+msgstr ""
+"La alerta se dispararƔ cuando el valor estƩ entre  y ."
+
+#: ../../godmode/alerts/configure_alert_template.php:1221
+msgid ""
+"The alert would fire when the value is not between  and "
+msgstr ""
+"La alerta se dispararƭa cuando el valor no estƩ entre  y "
+
+#: ../../godmode/alerts/configure_alert_template.php:1222
+#: ../../godmode/alerts/alert_view.php:200
+msgid "The alert would fire when the value is below "
+msgstr ""
+"La alerta se dispararĆ” cuando el valor sea inferior a  ."
+
+#: ../../godmode/alerts/configure_alert_template.php:1223
+#: ../../godmode/alerts/alert_view.php:205
+msgid "The alert would fire when the value is above "
+msgstr "La alerta se dispararĆ” cuando el valor sea superior a ."
+
+#: ../../godmode/alerts/configure_alert_template.php:1224
+#: ../../godmode/alerts/alert_view.php:218 ../../include/functions_ui.php:1371
+msgid "The alert would fire when the module is in warning status"
+msgstr "La alerta se dispararĆ” cuando el mĆ³dulo estĆ© en estado advertencia."
+
+#: ../../godmode/alerts/configure_alert_template.php:1225
+#: ../../godmode/alerts/alert_view.php:222 ../../include/functions_ui.php:1376
+msgid "The alert would fire when the module is in critical status"
+msgstr "La alerta se dispararĆ” cuando el mĆ³dulo estĆ© en estado crĆ­tico."
+
+#: ../../godmode/alerts/configure_alert_template.php:1226
+#: ../../godmode/alerts/alert_view.php:211
+msgid "The alert would fire when the module value changes"
+msgstr "La alerta se dispararĆ” cuando los valores de los mĆ³dulos cambien."
+
+#: ../../godmode/alerts/configure_alert_template.php:1227
+#: ../../godmode/alerts/alert_view.php:213
+msgid "The alert would fire when the module value does not change"
+msgstr "La alerta se dispararĆ” cuando los valores de los mĆ³dulos no cambien."
+
+#: ../../godmode/alerts/configure_alert_template.php:1228
+#: ../../godmode/alerts/alert_view.php:230
+msgid "The alert would fire when the module is in unknown status"
+msgstr "La alerta se dispararĆ” cuando el mĆ³dulo estĆ© en estado desconocido."
+
+#: ../../godmode/alerts/configure_alert_template.php:1229
+msgid "The alert template cannot have the same value for min and max thresholds."
+msgstr ""
+"La plantilla de alerta no puede tener el mismo valor para los umbrales max y min."
+
+#: ../../godmode/alerts/configure_alert_template.php:1230
+#: ../../godmode/alerts/alert_view.php:226
+msgid "The alert would fire when the module is in not normal status"
+msgstr "La alerta se dispararĆ” cuando el mĆ³dulo no estĆ© en estado normal"
+
+#: ../../godmode/alerts/configure_alert_template.php:1407
+msgid ""
+"The alert would fire when the module is in unknown status. Warning: unknown_updates "
+"of pandora_server.conf must be equal to 1"
+msgstr ""
+"La alerta se dispararĆ” cuando el mĆ³dulo estĆ© en estado desconocido. 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:4169
+msgid "Alert details"
+msgstr "Detalles de alerta"
+
+#: ../../godmode/alerts/alert_view.php:83 ../../godmode/alerts/alert_view.php:84
+#: ../../godmode/alerts/alert_list.php:480
+msgid "List alerts"
+msgstr "Lista de alertas"
+
+#: ../../godmode/alerts/alert_view.php:128 ../../mobile/operation/alerts.php:125
+#: ../../mobile/operation/alerts.php:126 ../../mobile/operation/alerts.php:256
+#: ../../mobile/operation/alerts.php:257
+msgid "Stand by"
+msgstr "En espera"
+
+#: ../../godmode/alerts/alert_view.php:168 ../../include/functions_ui.php:1343
+msgid "The alert would fire when the value doesn't match "
+msgstr ""
+"La alerta se dispararĆ” cuando el valor no coincida con ."
+
+#: ../../godmode/alerts/alert_view.php:191 ../../include/functions_ui.php:1355
+msgid ""
+"The alert would fire when the value is not between  and "
+msgstr ""
+"La alerta se dispararƔ cuando el valor no estƩ entre  y ."
+
+#: ../../godmode/alerts/alert_view.php:281
+msgid "Firing conditions"
+msgstr "Condiciones de disparo"
+
+#: ../../godmode/alerts/alert_view.php:305 ../../godmode/alerts/alert_view.php:339
+msgid "Every time that the alert is fired"
+msgstr "Cada vez que la alerta es disparada"
+
+#: ../../godmode/alerts/alert_view.php:385
+msgid ""
+"Select the desired action and mode to see the Firing/Recovery fields for this action"
+msgstr ""
+"Selecciona la acciĆ³n deseada y el modo para ver los campos de Disparado/RecuperaciĆ³n "
+"para dicha acciĆ³n."
+
+#: ../../godmode/alerts/alert_view.php:446
+msgid "Template fields"
+msgstr "Campos de la plantilla"
+
+#: ../../godmode/alerts/alert_view.php:448
+msgid "Triggering fields configured in template"
+msgstr "Campos de disparado configurados en la plantilla"
+
+#: ../../godmode/alerts/alert_view.php:542
+msgid "The alert recovering is disabled on this template."
+msgstr "La recuperaciĆ³n de la alerta estĆ” desactivada en esta plantilla"
+
+#: ../../godmode/alerts/alert_view.php:558
+msgid "Recovering fields"
+msgstr "Campos de recuperaciĆ³n"
+
+#: ../../godmode/alerts/alert_view.php:560
+msgid "Fields passed to the command executed by this action when the alert is recovered"
+msgstr ""
+"Campos pasados al comando ejecutado por esta acciĆ³n cuando la alerta es recuperada"
+
+#: ../../godmode/alerts/alert_view.php:574
+msgid "Template recovery fields"
+msgstr "Campos de recuperaciĆ³n de la plantilla"
+
+#: ../../godmode/alerts/alert_view.php:576
+msgid "Recovery fields configured in alert template"
+msgstr "Campos de recuperaciĆ³n configurados en la plantilla de la alerta"
+
+#: ../../godmode/alerts/alert_view.php:579
+msgid "Action recovery fields"
+msgstr "AcciĆ³n en campos de recuperaciĆ³n"
+
+#: ../../godmode/alerts/alert_view.php:581
+msgid "Recovery fields configured in alert action"
+msgstr "Campos de recuperaciĆ³n configurados en una acciĆ³n de alerta"
+
+#: ../../godmode/alerts/alert_view.php:584
+msgid "Executed on recovery"
+msgstr "Ejecutado en recuperaciĆ³n"
+
+#: ../../godmode/alerts/alert_view.php:586
+msgid "Fields used on execution when the alert is recovered"
+msgstr "Campos usados en la ejecuciĆ³n cuando la alerta es recuperada"
+
+#: ../../godmode/alerts/alert_list.builder.php:91
+msgid "Latest value"
+msgstr "ƚltimo valor"
+
+#: ../../godmode/alerts/alert_list.builder.php:201
+msgid "Finish and view cluster"
+msgstr "Finalizar y ver cluster"
+
+#: ../../godmode/alerts/alert_list.php:115
+msgid "Already added"
+msgstr "Ya aƱadido"
+
+#: ../../godmode/alerts/alert_list.php:169
+msgid "No template specified"
+msgstr "Ninguna plantilla especificada"
+
+#: ../../godmode/alerts/alert_list.php:484
+msgid "Builder alert"
+msgstr "Creador de alerta"
+
+#: ../../godmode/setup/license.php:51
+msgid "License management"
+msgstr "GestiĆ³n de licencias"
+
+#: ../../godmode/setup/license.php:99
+msgid "Error while connecting to licence server."
+msgstr "Error al conectar con el servidor de licencias."
+
+#: ../../godmode/setup/license.php:100
+msgid "Invalid response while validating license."
+msgstr "Respuesta no vƔlida al validar la licencia."
+
+#: ../../godmode/setup/license.php:121
+msgid "Licence"
+msgstr "Licencia"
+
+#: ../../godmode/setup/license.php:129 ../../include/class/Diagnostics.class.php:1152
+msgid "Customer key"
+msgstr "Clave del cliente"
+
+#: ../../godmode/setup/license.php:135 ../../include/class/Diagnostics.class.php:1160
+msgid "Platform Limit"
+msgstr "LĆ­mite de la plataforma"
+
+#: ../../godmode/setup/license.php:136 ../../godmode/setup/license.php:139
+#: ../../godmode/setup/license.php:142 ../../godmode/setup/license.php:145
+msgid "agents"
+msgstr "agentes"
+
+#: ../../godmode/setup/license.php:136 ../../godmode/setup/license.php:139
+#: ../../godmode/setup/license.php:142 ../../godmode/setup/license.php:145
+#: ../../operation/tree.php:158
+msgid "modules"
+msgstr "mĆ³dulos"
+
+#: ../../godmode/setup/license.php:138 ../../include/class/Diagnostics.class.php:1164
+msgid "Current Platform Count"
+msgstr "CĆ³mputo de la plataforma actual"
+
+#: ../../godmode/setup/license.php:141 ../../include/class/Diagnostics.class.php:1168
+msgid "Current Platform Count (enabled: items)"
+msgstr "CĆ³mputo de la plataforma actual (activado: elementos)"
+
+#: ../../godmode/setup/license.php:144 ../../include/class/Diagnostics.class.php:1172
+msgid "Current Platform Count (disabled: items)"
+msgstr "CĆ³mputo de la plataforma actual (desactivado: elementos)"
+
+#: ../../godmode/setup/license.php:147 ../../include/class/Diagnostics.class.php:1176
+msgid "License Mode"
+msgstr "Modalidad de licencia"
+
+#: ../../godmode/setup/license.php:150
+msgid "NMS"
+msgstr "NMS"
+
+#: ../../godmode/setup/license.php:156 ../../include/class/Diagnostics.class.php:1188
+msgid "Licensed to"
+msgstr "Con licencia para"
+
+#: ../../godmode/setup/license.php:167 ../../godmode/setup/license.php:182
+msgid "Request new license"
+msgstr "Solicitar nueva licencia"
+
+#: ../../godmode/setup/license.php:186
+#, php-format
+msgid "To get your %s Enterprise License:"
+msgstr "Para conseguir la %s licencia Enterprise:"
+
+#: ../../godmode/setup/license.php:189
+#, php-format
+msgid "Go to %s"
+msgstr "Ir a %s"
+
+#: ../../godmode/setup/license.php:192
+msgid "Enter the auth key and the following request key:"
+msgstr ""
+"Introduce la clave de autentificaciĆ³n y la siguiente clave de peticiĆ³n:"
+
+#: ../../godmode/setup/license.php:198
+msgid "Enter your name (or a company name) and a contact email address."
+msgstr "Introduce tu nombre (o el de tu empresa) y un email de contacto."
+
+#: ../../godmode/setup/license.php:201
+msgid "Click on Generate."
+msgstr "Haz clic en Generar"
+
+#: ../../godmode/setup/license.php:204
+msgid ""
+"Click here, enter the "
+"generated license key and click on Validate."
+msgstr ""
+"Haz clic aquĆ­, introduce la "
+"clave de licencia generada y pulsa en Validar."
+
+#: ../../godmode/setup/news.php:29
+msgid "Site news management"
+msgstr "Gestionar noticias del sitio"
+
+#: ../../godmode/setup/news.php:152 ../../godmode/setup/links.php:92
+msgid "Name error"
+msgstr "Error de nombre"
+
+#: ../../godmode/setup/news.php:191
+msgid "Modal screen"
+msgstr "Pantalla modal"
+
+#: ../../godmode/setup/news.php:194
+msgid "Expire"
+msgstr "Caduca"
+
+#: ../../godmode/setup/news.php:197 ../../godmode/setup/news.php:250
+msgid "Expiration"
+msgstr "Vencimiento"
+
+#: ../../godmode/setup/news.php:241
+msgid "There are no defined news"
+msgstr "No hay noticias definidas"
+
+#: ../../godmode/setup/news.php:248 ../../operation/agentes/estado_generalagente.php:642
+msgid "Author"
+msgstr "Autor"
+
+#: ../../godmode/setup/news.php:268
+msgid "Modal"
+msgstr "Modal"
+
+#: ../../godmode/setup/news.php:270
+msgid "Board"
+msgstr "Tablero"
+
+#: ../../godmode/setup/news.php:281
+msgid "Expired"
+msgstr "Caducado"
+
+#: ../../godmode/setup/gis.php:68
+msgid "Map connection name"
+msgstr "Nombre de la conexiĆ³n"
+
+#: ../../godmode/setup/gis.php:86
+msgid "Do you wan delete this connection?"
+msgstr "ĀæDeseas borrar esta conexiĆ³n?"
+
+#: ../../godmode/setup/setup.php:216
+msgid "Websocket engine"
+msgstr "Motor websocket"
+
+#: ../../godmode/setup/setup.php:234
+msgid "GIS Map connection"
+msgstr "ConexiĆ³n mapa GIS"
+
+#: ../../godmode/setup/setup.php:305
+msgid "Pandora Websocket Engine"
+msgstr "Motor Websocket Pandora"
+
+#: ../../godmode/setup/setup.php:349
+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:1653
+msgid "Enable eHorus"
+msgstr "Activar eHorus"
+
+#: ../../godmode/setup/setup_ehorus.php:93
+msgid "API Hostname"
+msgstr "Nombre del propietario de la API"
+
+#: ../../godmode/setup/setup_ehorus.php:99
+msgid "API Port"
+msgstr "Puerto de la API"
+
+#: ../../godmode/setup/setup_ehorus.php:105 ../../godmode/setup/setup_integria.php:309
+msgid "Request timeout"
+msgstr "Tiempo de espera excedido para la peticiĆ³n"
+
+#: ../../godmode/setup/setup_ehorus.php:139
+msgid "Remote Management System"
+msgstr "Sistema de gestiĆ³n remota"
+
+#: ../../godmode/setup/setup_ehorus.php:147
+msgid "Custom field eHorusID created"
+msgstr "Campo personalizado eHorusID creado"
+
+#: ../../godmode/setup/setup_ehorus.php:147
+msgid "Error creating custom field"
+msgstr "Error al crear campo personalizado"
+
+#: ../../godmode/setup/setup_ehorus.php:151
+msgid "eHorus has his own agent identifiers"
+msgstr "eHorus tiene sus propios identificadores de agente"
+
+#: ../../godmode/setup/setup_ehorus.php:152
+msgid "To store them, it will be necessary to use an agent custom field"
+msgstr "Para guardarlo, serĆ” necesario usar un campo personalizado del agente."
+
+#: ../../godmode/setup/setup_ehorus.php:153
+msgid "Possibly the eHorus id will have to be filled in by hand for every agent"
+msgstr "Es posible que el ID de eHorus tenga que ser introducido a mano por cada agente"
+
+#: ../../godmode/setup/setup_ehorus.php:158
+msgid "The custom field does not exists already"
+msgstr "El campo personalizado no existe aĆŗn"
+
+#: ../../godmode/setup/setup_ehorus.php:172
+msgid "eHorus API"
+msgstr "API eHorus"
+
+#: ../../godmode/setup/setup_ehorus.php:254 ../../godmode/setup/setup_integria.php:719
+msgid "Connection timeout"
+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:1243
+#: ../../operation/users/user_edit.php:1321
+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:1244
+#: ../../operation/users/user_edit.php:1322
+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:1245
+#: ../../operation/users/user_edit.php:1323
+msgid "Invalid password"
+msgstr "ContraseƱa incorrecta"
+
+#: ../../godmode/setup/setup_websocket_engine.php:38
+msgid "WebSocket settings"
+msgstr "Ajustes de WebSocket"
+
+#: ../../godmode/setup/setup_websocket_engine.php:47
+msgid "Bind address"
+msgstr "DirecciĆ³n de enlace"
+
+#: ../../godmode/setup/setup_websocket_engine.php:57
+msgid "Bind port"
+msgstr "Puerto de enlace"
+
+#: ../../godmode/setup/setup_websocket_engine.php:67
+#: ../../include/functions_config.php:1805
+msgid "WebSocket proxy url"
+msgstr "URL del proxy de WebSocket"
+
+#: ../../godmode/setup/os.list.php:56
+#, php-format
+msgid ""
+"This node is configured with centralized mode. All OS definitions are read only. Go "
+"to %s to manage them."
+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/setup/os.list.php:141
+msgid "There are no defined operating systems"
+msgstr "No hay sistemas operativos definidos"
+
+#: ../../godmode/setup/os.list.php:147
+msgid "Create OS"
+msgstr "Crear SO"
+
+#: ../../godmode/setup/os.php:190
+msgid "List OS"
+msgstr "Lista de sistemas operativos"
+
+#: ../../godmode/setup/os.php:202
+msgid "Builder OS"
+msgstr "Creador de SO"
+
+#: ../../godmode/setup/os.php:211
+msgid "List of OS"
+msgstr "Lista de sistemas operativos"
+
+#: ../../godmode/setup/os.php:238 ../../include/functions_api.php:2008
+msgid "Success creating OS"
+msgstr "SO creado correctamente"
+
+#: ../../godmode/setup/os.php:242
+msgid "Fail creating OS"
+msgstr "Error al crear SO"
+
+#: ../../godmode/setup/os.php:246 ../../include/functions_api.php:2047
+msgid "Success updating OS"
+msgstr "SO creado correctamente"
+
+#: ../../godmode/setup/os.php:250
+msgid "Error updating OS"
+msgstr "Error al actualizar SO"
+
+#: ../../godmode/setup/os.php:254
+msgid "There are agents with this OS."
+msgstr "Existen agentes con este SO"
+
+#: ../../godmode/setup/os.php:258
+msgid "Success deleting"
+msgstr "Borrado correctamente"
+
+#: ../../godmode/setup/os.php:262
+msgid "Error deleting"
+msgstr "Error al borrar"
+
+#: ../../godmode/setup/gis_step_2.php:37
+msgid "GIS Maps connections"
+msgstr "Conexiones mapas GIS"
+
+#: ../../godmode/setup/gis_step_2.php:54
+msgid "Create new map connection"
+msgstr "Crear nueva conexiĆ³n de mapas"
+
+#: ../../godmode/setup/gis_step_2.php:81
+msgid "Edit map connection"
+msgstr "Editar la conexiĆ³n de mapas"
+
+#: ../../godmode/setup/gis_step_2.php:213
+msgid "Connection Name"
+msgstr "Nombre de conexiĆ³n"
+
+#: ../../godmode/setup/gis_step_2.php:219
+msgid "Number of zoom levels"
+msgstr "NĆŗmero de niveles de zoom"
+
+#: ../../godmode/setup/gis_step_2.php:223
+msgid "Default zoom level"
+msgstr "Nivel de zoom por defecto"
+
+#: ../../godmode/setup/gis_step_2.php:226
+msgid "Basic configuration"
+msgstr "ConfiguraciĆ³n bĆ”sica"
+
+#: ../../godmode/setup/gis_step_2.php:231
+msgid "Open Street Maps"
+msgstr "OpenStreetMaps"
+
+#: ../../godmode/setup/gis_step_2.php:232
+msgid "Google Maps"
+msgstr "Google Maps"
+
+#: ../../godmode/setup/gis_step_2.php:233
+#: ../../godmode/reporting/visual_console_builder.elements.php:183
+#: ../../include/functions_visual_map_editor.php:1387
+#: ../../include/functions_visual_map.php:4244
+#: ../../operation/visual_console/view.php:296
+msgid "Static Image"
+msgstr "Imagen estƔtica"
+
+#: ../../godmode/setup/gis_step_2.php:234
+msgid "WMS Server"
+msgstr "Servidor WMS"
+
+#: ../../godmode/setup/gis_step_2.php:236
+msgid "Please select the connection type"
+msgstr "Tipo de conexiĆ³n"
+
+#: ../../godmode/setup/gis_step_2.php:238
+msgid "Map connection type"
+msgstr "Tipo de conexiĆ³n de mapa"
+
+#: ../../godmode/setup/gis_step_2.php:286
+msgid "Tile Server URL"
+msgstr "URL del servidor tile"
+
+#: ../../godmode/setup/gis_step_2.php:299
+msgid "Google Physical"
+msgstr "Google Physical"
+
+#: ../../godmode/setup/gis_step_2.php:300
+msgid "Google Hybrid"
+msgstr "Google Hybrid"
+
+#: ../../godmode/setup/gis_step_2.php:301
+msgid "Google Satelite"
+msgstr "Google SatƩlite"
+
+#: ../../godmode/setup/gis_step_2.php:303
+msgid "Google Map Type"
+msgstr "Tipo de mapa de Google"
+
+#: ../../godmode/setup/gis_step_2.php:327
+msgid "Google Maps Key"
+msgstr "Clave de Google Maps"
+
+#: ../../godmode/setup/gis_step_2.php:336
+msgid "Image URL"
+msgstr "URL de la imagen"
+
+#: ../../godmode/setup/gis_step_2.php:343
+msgid "Corners of the area of the image"
+msgstr "Esquinas del Ɣrea de la imagen"
+
+#: ../../godmode/setup/gis_step_2.php:343
+#: ../../include/rest-api/models/VisualConsole/Item.php:1960
+msgid "Left"
+msgstr "Izquierda"
+
+#: ../../godmode/setup/gis_step_2.php:350
+#: ../../include/rest-api/models/VisualConsole/Item.php:1957
+#: ../../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:357
+#: ../../include/rest-api/models/VisualConsole/Item.php:1959
+msgid "Right"
+msgstr "Derecha"
+
+#: ../../godmode/setup/gis_step_2.php:364
+#: ../../include/rest-api/models/VisualConsole/Item.php:1958
+msgid "Top"
+msgstr "Superior"
+
+#: ../../godmode/setup/gis_step_2.php:371
+msgid "Image Size"
+msgstr "TamaƱo de imagen"
+
+#: ../../godmode/setup/gis_step_2.php:388
+msgid "WMS Server URL"
+msgstr "URL del servidor WMS"
+
+#: ../../godmode/setup/gis_step_2.php:430
+msgid ""
+"Preview to select the center of the map and the default position of an agent without "
+"gis data"
+msgstr ""
+"Vista previa para elegir el centro del mapa y la posiciĆ³n por defecto de un agente "
+"sin informaciĆ³n GIS"
+
+#: ../../godmode/setup/gis_step_2.php:431
+msgid "Load preview map"
+msgstr "Vista previa del mapa"
+
+#: ../../godmode/setup/gis_step_2.php:440
+msgid "Map Center"
+msgstr "Centro del mapa"
+
+#: ../../godmode/setup/gis_step_2.php:441
+msgid "Default position for agents without GIS data"
+msgstr "PosiciĆ³n por defecto para agentes sin informaciĆ³n GIS"
+
+#: ../../godmode/setup/gis_step_2.php:443
+msgid "Change in the map"
+msgstr "Cambiar en el mapa"
+
+#: ../../godmode/setup/gis_step_2.php:465 ../../operation/agentes/gis_view.php:218
+msgid "Latitude"
+msgstr "Latitud"
+
+#: ../../godmode/setup/gis_step_2.php:483 ../../operation/agentes/gis_view.php:217
+msgid "Longitude"
+msgstr "Longitud"
+
+#: ../../godmode/setup/gis_step_2.php:501 ../../operation/agentes/gis_view.php:219
+msgid "Altitude"
+msgstr "Altitud"
+
+#: ../../godmode/setup/gis_step_2.php:564 ../../godmode/setup/gis_step_2.php:659
+msgid "Center"
+msgstr "Centro"
+
+#: ../../godmode/setup/gis_step_2.php:624
+msgid "Refresh preview map"
+msgstr "Actualizar vista previa"
+
+#: ../../godmode/setup/setup_auth.php:207
+msgid "Enable secondary LDAP"
+msgstr "Habilitar LDAP secundario"
+
+#: ../../godmode/setup/setup_auth.php:278
+msgid "Secondary Base DN"
+msgstr "DN base secundaria"
+
+#: ../../godmode/setup/setup_auth.php:291
+msgid "Secondary Login attribute"
+msgstr "Atributo de inicio de sesiĆ³n secundario"
+
+#: ../../godmode/setup/setup_auth.php:368
+msgid "Force 2FA for all users is enabled"
+msgstr "Forzar 2FA para todos los usuarios estĆ” habilitado"
+
+#: ../../godmode/setup/setup_auth.php:389
+msgid "Session timeout (mins)"
+msgstr "Fin de la sesiĆ³n (minutos)"
+
+#: ../../godmode/setup/setup_auth.php:432
+#, php-format
+msgid "Local %s"
+msgstr "%s local"
+
+#: ../../godmode/setup/setup_auth.php:433
+msgid "ldap"
+msgstr "LDAP"
 
-#: ../../operation/incidents/configure_integriaims_incident.php:41
-#: ../../operation/incidents/list_integriaims_incidents.php:42
-#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:31
 #: ../../godmode/setup/setup_integria.php:64
+#: ../../operation/incidents/configure_integriaims_incident.php:41
+#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:31
+#: ../../operation/incidents/list_integriaims_incidents.php:42
 msgid "Integria IMS API is not reachable"
 msgstr "API de Integria IMS no accesible"
 
-#: ../../operation/incidents/configure_integriaims_incident.php:123
-msgid "Successfully created in Integria IMS"
-msgstr "Creado correctamente en Integria IMS"
+#: ../../godmode/setup/setup_integria.php:261 ../../include/functions_config.php:1691
+msgid "Enable Integria IMS"
+msgstr "Habilitar Integria IMS"
 
-#: ../../operation/incidents/configure_integriaims_incident.php:124
-msgid "Could not be created in Integria IMS"
-msgstr "No se ha podido crear en Integria IMS"
+#: ../../godmode/setup/setup_integria.php:296
+msgid "URL to Integria IMS setup"
+msgstr "URL a la configuraciĆ³n de Integria IMS"
 
-#: ../../operation/incidents/configure_integriaims_incident.php:144
-msgid "Successfully updated in Integria IMS"
-msgstr "Actualizado correctamente en Integria IMS"
-
-#: ../../operation/incidents/configure_integriaims_incident.php:145
-msgid "Could not be updated in Integria IMS"
-msgstr "No se ha podido actualizar en Integria IMS"
-
-#: ../../operation/incidents/configure_integriaims_incident.php:294
+#: ../../godmode/setup/setup_integria.php:296
 msgid ""
-"This field corresponds to the Integria IMS user specified in Integria IMS setup"
+"Full URL to your Integria IMS setup (e.g., http://192.168.1.20/integria, https://"
+"support.mycompany.com)."
 msgstr ""
-"Este campo corresponde al usuario de Integria IMS especificado en la "
-"configuraciĆ³n de Integria IMS"
+"URL completa a su configuraciĆ³n de Integria IMS (por ejemplo, http://192.168.1.20/"
+"integria, https://support.mycompany.com)."
 
-#: ../../operation/incidents/configure_integriaims_incident.php:352
-#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:206
-msgid "File name"
-msgstr "Nombre de archivo"
+#: ../../godmode/setup/setup_integria.php:302
+msgid "API Password"
+msgstr "ContraseƱa de la API"
 
-#: ../../operation/incidents/configure_integriaims_incident.php:354
-#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:208
-msgid "Attachment description"
-msgstr "DescripciĆ³n de los datos adjuntos"
+#: ../../godmode/setup/setup_integria.php:315
+msgid "Sync inventory"
+msgstr "Inventario Sync"
 
-#: ../../operation/incidents/list_integriaims_incidents.php:24
-msgid "Integria IMS Tickets"
-msgstr "Tickets de Integria IMS"
+#: ../../godmode/setup/setup_integria.php:348 ../../godmode/setup/setup_integria.php:469
+msgid "Ticket body"
+msgstr "Cuerpo del ticket"
 
-#: ../../operation/incidents/list_integriaims_incidents.php:317
-msgid "Text filter"
-msgstr "Filtro de texto"
+#: ../../godmode/setup/setup_integria.php:603
+msgid "Integria API settings"
+msgstr "Ajustes de la API de Integria"
 
-#: ../../operation/incidents/list_integriaims_incidents.php:381
-msgid "Created from"
-msgstr "Creado desde"
+#: ../../godmode/setup/setup_integria.php:614
+msgid "Alert default values"
+msgstr "Valores por defecto de la API"
 
-#: ../../operation/incidents/list_integriaims_incidents.php:393
-msgid "Created to"
-msgstr "Creado hasta"
+#: ../../godmode/setup/setup_integria.php:624
+msgid "Event custom response default values"
+msgstr "Valores por defecto de respuesta de evento personalizados"
 
-#: ../../operation/incidents/list_integriaims_incidents.php:518
-msgid "Status/Resolution"
-msgstr "Estado/ResoluciĆ³n"
+#: ../../godmode/setup/links.php:28
+msgid "Link management"
+msgstr "Gestionar enlaces"
 
-#: ../../operation/incidents/list_integriaims_incidents.php:520
-msgid "Updated/Started"
-msgstr "Actualizado/Iniciado"
+#: ../../godmode/setup/snmp_wizard.php:155
+msgid "Unsucessful update the snmp translation"
+msgstr "No se pudo actualizar la traducciĆ³n SNMP"
 
-#: ../../operation/incidents/list_integriaims_incidents.php:564
-msgid "No tickets to show"
-msgstr "No hay tickets"
+#: ../../godmode/setup/snmp_wizard.php:162
+msgid "Unsucessful update the snmp translation."
+msgstr "No se pudo actualizar la traducciĆ³n SNMP"
 
-#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:59
-#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:378
-#: ../../include/ajax/events.php:1507
-#: ../../enterprise/tools/ipam/ipam_ajax.php:483
-#: ../../enterprise/include/functions_ipam.php:1341
-msgid "Details"
-msgstr "Detalles"
+#: ../../godmode/setup/snmp_wizard.php:210
+msgid "Unsucessful delete the snmp translation"
+msgstr "No se pudo borrar la traducciĆ³n de SNMP"
 
-#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:77
-msgid "Not yet"
-msgstr "TodavĆ­a no"
+#: ../../godmode/setup/snmp_wizard.php:217
+msgid "Unsucessful delete the snmp translation."
+msgstr "No se pudo borrar la traducciĆ³n de SNMP"
 
-#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:81
-msgid "Not closed yet"
-msgstr "No cerrado todavĆ­a"
+#: ../../godmode/setup/snmp_wizard.php:278
+msgid "Unsucessful save the snmp translation"
+msgstr "No se pudo guardar la traducciĆ³n de SNMP"
 
-#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:115
-#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:246
-msgid "Filename"
-msgstr "Nombre del archivo"
+#: ../../godmode/setup/snmp_wizard.php:287
+msgid "Unsucessful save the snmp translation."
+msgstr "No se pudo guardar la traducciĆ³n de SNMP"
 
-#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:119
-#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:250
-#: ../../include/functions_visual_map_editor.php:125
-#: ../../include/functions_visual_map_editor.php:178
-#: ../../include/functions_visual_map_editor.php:838
-#: ../../include/functions_visual_map_editor.php:933
-#: ../../include/functions_filemanager.php:606
-#: ../../include/rest-api/models/VisualConsole/Item.php:1991
-#: ../../include/rest-api/models/VisualConsole/Items/Box.php:214
-#: ../../enterprise/include/class/ManageBackups.class.php:164
-#: ../../extensions/files_repo/files_repo_list.php:57
-#: ../../godmode/events/event_responses.editor.php:130
-msgid "Size"
-msgstr "TamaƱo"
+#: ../../godmode/setup/setup_netflow.php:47 ../../include/functions_config.php:1461
+msgid "Data storage path"
+msgstr "Ruta de almacenamiento de datos"
 
-#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:124
-#: ../../enterprise/meta/include/ajax/wizard.ajax.php:609
-#: ../../enterprise/meta/monitoring/wizard/wizard.php:135
-msgid "No description available"
-msgstr "Sin descripciĆ³n disponible"
+#: ../../godmode/setup/setup_netflow.php:50 ../../include/functions_config.php:1465
+msgid "Daemon interval"
+msgstr "Intervalo del demonio"
 
-#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:142
-msgid "File successfully deleted"
-msgstr "Archivo aƱadido correctamente"
+#: ../../godmode/setup/setup_netflow.php:53 ../../include/functions_config.php:1469
+msgid "Daemon binary path"
+msgstr "Ruta de demonio binario"
 
-#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:143
-msgid "File could not be deleted"
-msgstr "El archivo no se ha podido eliminar"
+#: ../../godmode/setup/setup_netflow.php:56 ../../include/functions_config.php:1473
+msgid "Nfdump binary path"
+msgstr "Ruta binaria Nfdump"
 
-#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:222
-msgid "Add attachment"
-msgstr "AƱadir adjunto"
+#: ../../godmode/setup/setup_netflow.php:59 ../../include/functions_config.php:1477
+msgid "Nfexpire binary path"
+msgstr "Ruta binaria Nfexpire"
 
-#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:224
-#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:397
-msgid "Attached files"
-msgstr "Archivos adjuntos"
+#: ../../godmode/setup/setup_netflow.php:62 ../../include/functions_config.php:1481
+msgid "Maximum chart resolution"
+msgstr "MĆ”xima resoluciĆ³n del grĆ”fico"
 
-#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:282
-msgid "Comment successfully added"
-msgstr "Comentario aƱadido correctamente"
+#: ../../godmode/setup/setup_netflow.php:67 ../../include/functions_config.php:1489
+msgid "Netflow max lifetime"
+msgstr "Tiempo  mƔximo del Netflow"
 
-#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:283
-msgid "Comment could not be added"
-msgstr "No se ha podido aƱadir el comentario"
+#: ../../godmode/setup/setup_netflow.php:70 ../../include/functions_config.php:1493
+msgid "Name resolution for IP address"
+msgstr "Habilitar la resoluciĆ³n de nombre con IP"
 
-#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:309
-msgid "No comments found"
-msgstr "No se han encontrado comentarios"
+#: ../../godmode/setup/setup_netflow.php:71 ../../operation/netflow/nf_live_view.php:459
+msgid "IP address resolution can take a lot of time"
+msgstr "La resoluciĆ³n de direcciones IP puede tardar mucho tiempo."
 
-#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:314
-#: ../../include/functions_events.php:3756
-#: ../../include/functions_events.php:5363
-msgid "Add comment"
-msgstr "AƱadir comentario"
+#: ../../godmode/setup/setup_visuals.php:79
+msgid "Paginated module view"
+msgstr "Vista del mĆ³dulo paginada"
 
-#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:349
-msgid "Created by"
-msgstr "Creado por"
+#: ../../godmode/setup/setup_visuals.php:106
+msgid "Click to display lateral menus"
+msgstr "Haz clic para mostrar el menĆŗ lateral"
 
-#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:350
-msgid "Owned by"
-msgstr "Pertenece a"
+#: ../../godmode/setup/setup_visuals.php:116 ../../include/functions_config.php:1286
+msgid "Service label font size"
+msgstr "TamaƱo de fuente para el mapa de servicios"
 
-#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:351
-msgid "Closed by"
-msgstr "Cerrado por"
+#: ../../godmode/setup/setup_visuals.php:120
+msgid "Space between items in Service maps"
+msgstr "Espacio entre nodos para el mapa de servicios"
 
-#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:366
-#: ../../enterprise/include/functions_ipam.php:2044
-msgid "Created at"
-msgstr "Creado en"
+#: ../../godmode/setup/setup_visuals.php:137 ../../include/functions_config.php:993
+msgid "Style template"
+msgstr "Plantilla de estilo"
 
-#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:367
-#: ../../enterprise/operation/agentes/transactional_map.php:212
-#: ../../godmode/wizards/DiscoveryTaskList.class.php:609
-msgid "Updated at"
-msgstr "Actualizado el"
+#: ../../godmode/setup/setup_visuals.php:150 ../../include/functions_config.php:1013
+msgid "Status icon set"
+msgstr "Icono de estado en"
 
-#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:368
-msgid "Closed at"
-msgstr "Cerrado el"
+#: ../../godmode/setup/setup_visuals.php:151
+msgid "Colors"
+msgstr "Colores"
 
-#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:379
-msgid "People"
-msgstr "Personas"
+#: ../../godmode/setup/setup_visuals.php:152
+msgid "Faces"
+msgstr "Caras"
 
-#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:380
-#: ../../include/functions_reporting_html.php:6153
-msgid "Dates"
-msgstr "Fechas"
+#: ../../godmode/setup/setup_visuals.php:153
+msgid "Colors and text"
+msgstr "Colores y texto"
 
-#: ../../include/functions_cron.php:455
-msgid "Scheduled jobs"
-msgstr "Tareas programadas"
+#: ../../godmode/setup/setup_visuals.php:176 ../../include/functions_config.php:1089
+msgid "Login background"
+msgstr "Imagen de fondo de la pantalla de inicio de sesiĆ³n"
 
-#: ../../include/functions_cron.php:464
-#: ../../enterprise/include/functions_tasklist.php:153
-#: ../../enterprise/meta/advanced/cron_main.php:354
-#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:630
-msgid "Task"
-msgstr "Tarea"
+#: ../../godmode/setup/setup_visuals.php:394 ../../include/functions_config.php:1049
+msgid "Custom documentation logo"
+msgstr "Logo de documentaciĆ³n personalizado"
 
-#: ../../include/functions_cron.php:465
-#: ../../enterprise/include/functions_tasklist.php:154
-#: ../../enterprise/meta/advanced/cron_main.php:385
-#: ../../enterprise/godmode/setup/setup_history.php:678
-#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:640
-msgid "Scheduled"
-msgstr "Programado"
+#: ../../godmode/setup/setup_visuals.php:414 ../../include/functions_config.php:1053
+msgid "Custom support logo"
+msgstr "Logo de soporte personalizado"
 
-#: ../../include/functions_cron.php:466
-#: ../../enterprise/include/functions_tasklist.php:155
-#: ../../enterprise/meta/advanced/cron_main.php:398
-msgid "Next execution"
-msgstr "Siguiente ejecuciĆ³n"
+#: ../../godmode/setup/setup_visuals.php:433 ../../include/functions_config.php:1057
+#: ../../include/functions_config.php:1061
+msgid "Custom networkmap center logo"
+msgstr "Logo central del mapa de red personalizado"
 
-#: ../../include/functions_cron.php:467
-#: ../../enterprise/include/functions_tasklist.php:156
-msgid "Last run"
-msgstr "ƚltima ejecuciĆ³n"
+#: ../../godmode/setup/setup_visuals.php:452
+msgid "Custom mobile console icon"
+msgstr "Icono de la consola mĆ³vil personalizada"
 
-#: ../../include/functions_cron.php:469
-#: ../../include/class/AgentsAlerts.class.php:254
-#: ../../include/class/AgentsAlerts.class.php:285
-#: ../../include/functions_filemanager.php:607
-#: ../../include/functions_treeview.php:413
-#: ../../include/functions_reporting.php:2725
-#: ../../include/functions_reporting_html.php:3183
-#: ../../enterprise/tools/ipam/ipam_vlan_config.php:689
-#: ../../enterprise/tools/ipam/ipam_ajax.php:532
-#: ../../enterprise/tools/ipam/ipam_supernet_config.php:1072
-#: ../../enterprise/views/ncm/agent/details.php:485
-#: ../../enterprise/operation/services/services.list.php:513
-#: ../../enterprise/operation/agentes/transactional_map.php:213
-#: ../../enterprise/operation/agentes/manage_transmap_creation.php:190
-#: ../../enterprise/include/functions_reporting_csv.php:2465
-#: ../../enterprise/include/class/ManageBackups.class.php:167
-#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2295
-#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2463
-#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3434
-#: ../../enterprise/meta/include/functions_autoprovision.php:477
-#: ../../enterprise/meta/include/functions_alerts_meta.php:133
-#: ../../enterprise/meta/include/functions_alerts_meta.php:164
-#: ../../enterprise/meta/monitoring/wizard/wizard.php:140
-#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:468
-#: ../../enterprise/meta/advanced/collections.php:391
-#: ../../enterprise/godmode/setup/setup_skins.php:128
-#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2117
-#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:387
-#: ../../enterprise/godmode/agentes/inventory_manager.php:224
-#: ../../enterprise/godmode/agentes/agent_autoconfiguration.php:138
-#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:344
-#: ../../enterprise/godmode/agentes/collections.php:384
-#: ../../enterprise/godmode/alerts/alert_inventory_list.php:223
-#: ../../enterprise/godmode/policies/policy_external_alerts.php:350
-#: ../../enterprise/godmode/policies/policy_external_alerts.php:384
-#: ../../enterprise/godmode/policies/policy_external_alerts.php:682
-#: ../../enterprise/godmode/policies/policy_inventory_modules.php:305
-#: ../../enterprise/godmode/policies/policy_alerts.php:353
-#: ../../godmode/category/category.php:170
-#: ../../godmode/reporting/reporting_builder.item_editor.php:1949
-#: ../../godmode/menu.php:234 ../../godmode/tag/tag.php:284
-#: ../../godmode/events/event_responses.list.php:53
-#: ../../godmode/agentes/planned_downtime.editor.php:927
-#: ../../godmode/agentes/fields_manager.php:121
-#: ../../godmode/agentes/modificar_agente.php:653
-#: ../../godmode/alerts/alert_list.list.php:120
-#: ../../godmode/alerts/alert_list.list.php:484
-#: ../../godmode/alerts/alert_list.builder.php:96
-#: ../../godmode/alerts/alert_commands.php:659
-#: ../../godmode/alerts/alert_view.php:301
-#: ../../godmode/groups/group_list.php:853
-msgid "Actions"
-msgstr "Acciones"
+#: ../../godmode/setup/setup_visuals.php:520
+msgid "Disable logo in graphs"
+msgstr "Deshabilitar el logo en los grƔficos"
 
-#: ../../include/functions_cron.php:498 ../../include/functions_cron.php:536
-#: ../../include/functions_cron.php:591 ../../include/functions_cron.php:683
-#: ../../include/functions_cron.php:719 ../../include/functions_cron.php:765
-#: ../../include/functions_cron.php:807 ../../include/functions_cron.php:841
-#: ../../enterprise/include/functions_tasklist.php:217
-#: ../../enterprise/include/functions_tasklist.php:279
-#: ../../enterprise/include/functions_tasklist.php:365
-#: ../../enterprise/include/functions_tasklist.php:406
-#: ../../enterprise/include/functions_tasklist.php:459
-#: ../../enterprise/include/functions_tasklist.php:498
-#: ../../enterprise/include/functions_tasklist.php:535
-msgid "Force run"
-msgstr "Forzar ejecuciĆ³n"
+#: ../../godmode/setup/setup_visuals.php:536
+msgid "Disable helps"
+msgstr "Deshabilitar ayudas"
 
-#: ../../include/functions_cron.php:574 ../../include/functions_cron.php:667
-#: ../../include/functions_cron.php:791
-#: ../../enterprise/operation/reporting/custom_reporting.php:109
-#: ../../enterprise/include/functions_reporting_csv.php:983
-#: ../../enterprise/include/functions_reporting_csv.php:1184
-#: ../../enterprise/include/functions_reporting_csv.php:1215
-#: ../../enterprise/include/functions_reporting_csv.php:1270
-#: ../../enterprise/include/functions_reporting_csv.php:1325
-#: ../../enterprise/include/functions_reporting_csv.php:1374
-#: ../../enterprise/include/functions_reporting_csv.php:1429
-#: ../../enterprise/include/functions_tasklist.php:253
-#: ../../enterprise/include/functions_tasklist.php:342
-#: ../../enterprise/include/functions_tasklist.php:436
-#: ../../enterprise/include/functions_reporting.php:8124
-#: ../../enterprise/include/functions_reporting.php:8158
-msgid "Report type"
-msgstr "Tipo de informe"
+#: ../../godmode/setup/setup_visuals.php:545 ../../include/functions_config.php:1225
+msgid "Fixed header"
+msgstr "Cabecera fija"
 
-#: ../../include/functions_cron.php:638
-#: ../../enterprise/include/functions_tasklist.php:313
-msgid "regex"
-msgstr "expresiĆ³n regular"
+#: ../../godmode/setup/setup_visuals.php:556
+msgid "Automatically hide submenu"
+msgstr "Ocultar submenĆŗ automĆ”ticamente"
 
-#: ../../include/functions_cron.php:664
-#: ../../enterprise/include/functions_cron.php:228
-#: ../../enterprise/include/functions_tasklist.php:339
-msgid "Report per agent"
-msgstr "Informe por agente"
+#: ../../godmode/setup/setup_visuals.php:584 ../../include/functions_config.php:1197
+msgid "GIS Labels"
+msgstr "Etiquetas GIS"
 
-#: ../../include/functions_cron.php:703
-#: ../../enterprise/include/functions_cron.php:299
-#: ../../enterprise/include/functions_tasklist.php:383
-msgid "Custom script"
-msgstr "Script personalizado"
+#: ../../godmode/setup/setup_visuals.php:599 ../../include/functions_config.php:1205
+msgid "Default icon in GIS"
+msgstr "Icono GIS por defecto"
 
-#: ../../include/functions_cron.php:747 ../../include/functions_cron.php:788
-#: ../../include/lib/Dashboard/Widgets/reports.php:307
-#: ../../include/lib/Dashboard/Widgets/reports.php:352
-#: ../../enterprise/include/functions_tasklist.php:433
-#: ../../extensions/resource_exportation.php:433
-msgid "Report"
-msgstr "Informe"
+#: ../../godmode/setup/setup_visuals.php:605
+msgid "Agent icon group"
+msgstr "Grupo de iconos de agente"
 
-#: ../../include/functions_cron.php:749 ../../include/functions_cron.php:790
-#: ../../include/class/Diagnostics.class.php:2175
-#: ../../enterprise/include/class/ManageBackups.class.php:166
-#: ../../enterprise/include/functions_tasklist.php:435
-msgid "Path"
-msgstr "Ruta"
+#: ../../godmode/setup/setup_visuals.php:623
+msgid "Graphs font size"
+msgstr "TamaƱo de fuente de las grƔficas"
 
-#: ../../include/functions_cron.php:943
-#: ../../enterprise/include/functions_tasklist.php:671
-#: ../../godmode/wizards/DiscoveryTaskList.class.php:1024
-msgid "Disable task"
-msgstr "Deshabilitar tarea"
+#: ../../godmode/setup/setup_visuals.php:654 ../../include/functions_config.php:1173
+#: ../../include/functions_config.php:1177
+msgid "Agent size text"
+msgstr "TamaƱo del texto del agente"
 
-#: ../../include/functions_cron.php:943
-#: ../../enterprise/include/functions_tasklist.php:671
-msgid "Enable task"
-msgstr "Habilitar tarea"
+#: ../../godmode/setup/setup_visuals.php:655 ../../godmode/setup/setup_visuals.php:660
+msgid "Small:"
+msgstr "PequeƱo:"
 
-#: ../../include/functions_incidents.php:29
-#: ../../include/functions_incidents.php:55
-msgid "Informative"
-msgstr "Informativo"
+#: ../../godmode/setup/setup_visuals.php:656 ../../godmode/setup/setup_visuals.php:661
+msgid "Normal:"
+msgstr "Normal:"
 
-#: ../../include/functions_incidents.php:30
-#: ../../include/functions_incidents.php:59
-#: ../../include/functions_netflow.php:1845
-msgid "Low"
-msgstr "Bajo"
+#: ../../godmode/setup/setup_visuals.php:659 ../../include/functions_config.php:1181
+msgid "Module size text"
+msgstr "TamaƱo del nombre del mĆ³dulo"
 
-#: ../../include/functions_incidents.php:31
-#: ../../include/functions_incidents.php:63
-#: ../../include/functions_netflow.php:1846
-msgid "Medium"
-msgstr "Medio"
+#: ../../godmode/setup/setup_visuals.php:664 ../../include/functions_config.php:1185
+#: ../../include/functions_config.php:1189
+msgid "Description size text"
+msgstr "TamaƱo del texto de la descripciĆ³n"
 
-#: ../../include/functions_incidents.php:32
-#: ../../include/functions_incidents.php:67
-msgid "Serious"
-msgstr "Grave"
+#: ../../godmode/setup/setup_visuals.php:668 ../../include/functions_config.php:1193
+msgid "Item title size text"
+msgstr "TamaƱo del texto de los tƭtulos de elementos"
 
-#: ../../include/functions_incidents.php:33
-#: ../../include/functions_incidents.php:71
-msgid "Very serious"
-msgstr "Muy grave"
+#: ../../godmode/setup/setup_visuals.php:679
+msgid "Show unit along with value in reports"
+msgstr "Mostrar la unidad junto con el valor en los informes"
 
-#: ../../include/functions_incidents.php:34
-#: ../../include/functions_incidents.php:75
-#: ../../include/functions_events.php:3328 ../../include/functions_graph.php:3533
-#: ../../include/functions_graph.php:3534 ../../include/functions_graph.php:5115
-#: ../../include/functions.php:1023 ../../include/functions.php:1269
-#: ../../include/functions.php:1303
-msgid "Maintenance"
-msgstr "Mantenimiento"
+#: ../../godmode/setup/setup_visuals.php:732 ../../include/functions_config.php:952
+msgid "Graph color #4"
+msgstr "Color del grƔfico #4"
 
-#: ../../include/functions_incidents.php:95
-#: ../../include/functions_incidents.php:116
-msgid "Active incidents"
-msgstr "Incidentes activos"
+#: ../../godmode/setup/setup_visuals.php:743 ../../include/functions_config.php:956
+msgid "Graph color #5"
+msgstr "Color del grƔfico #5"
 
-#: ../../include/functions_incidents.php:96
-#: ../../include/functions_incidents.php:120
-msgid "Active incidents, with comments"
-msgstr "Incidentes activos, con comentarios"
+#: ../../godmode/setup/setup_visuals.php:754 ../../include/functions_config.php:960
+msgid "Graph color #6"
+msgstr "Color del grƔfico #6"
 
-#: ../../include/functions_incidents.php:97
-#: ../../include/functions_incidents.php:124
-msgid "Rejected incidents"
-msgstr "Incidentes rechazados"
+#: ../../godmode/setup/setup_visuals.php:765 ../../include/functions_config.php:964
+msgid "Graph color #7"
+msgstr "Color del grƔfico #7"
 
-#: ../../include/functions_incidents.php:98
-#: ../../include/functions_incidents.php:128
-msgid "Expired incidents"
-msgstr "Incidentes caducados"
+#: ../../godmode/setup/setup_visuals.php:776 ../../include/functions_config.php:968
+msgid "Graph color #8"
+msgstr "Color del grƔfico #8"
 
-#: ../../include/functions_incidents.php:99
-#: ../../include/functions_incidents.php:132
-msgid "Closed incidents"
-msgstr "Incidentes cerrados"
+#: ../../godmode/setup/setup_visuals.php:787 ../../include/functions_config.php:972
+msgid "Graph color #9"
+msgstr "Color del grƔfico #9"
 
-#: ../../include/functions_gis.php:27 ../../include/functions_gis.php:31
-#: ../../include/functions_gis.php:36
-msgid "Hierarchy of agents"
-msgstr "JerarquĆ­a de agentes"
+#: ../../godmode/setup/setup_visuals.php:798 ../../include/functions_config.php:976
+msgid "Graph color #10"
+msgstr "Color del grƔfico #10"
+
+#: ../../godmode/setup/setup_visuals.php:825
+msgid "Data precision"
+msgstr "PrecisiĆ³n de datos"
+
+#: ../../godmode/setup/setup_visuals.php:843
+msgid "Data precision in graphs"
+msgstr "PrecisiĆ³n de datos en los grĆ”ficos"
+
+#: ../../godmode/setup/setup_visuals.php:858 ../../include/functions_config.php:1253
+msgid "Default line thickness for the Custom Graph."
+msgstr "Espesor de la lƭnea predeterminada para el grƔfico personalizado"
+
+#: ../../godmode/setup/setup_visuals.php:919
+msgid "Type of interface charts"
+msgstr "Tipo de las grƔficos de interfaces"
+
+#: ../../godmode/setup/setup_visuals.php:947
+msgid "Graph TIP view:"
+msgstr "Vista TIP de la grƔfica:"
+
+#: ../../godmode/setup/setup_visuals.php:1070
+msgid "Classic view"
+msgstr "Vista clƔsica"
+
+#: ../../godmode/setup/setup_visuals.php:1071
+msgid "View of favorites"
+msgstr "Vista de favoritos"
+
+#: ../../godmode/setup/setup_visuals.php:1072
+msgid "Type of view of visual consoles"
+msgstr "Tipo de vista de las consolas visuales"
+
+#: ../../godmode/setup/setup_visuals.php:1084
+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:1161
+msgid "Default line thickness for the Visual Console"
+msgstr "Grosor de lĆ­nea por defecto en las consolas visuales"
+
+#: ../../godmode/setup/setup_visuals.php:1118
+msgid "Number of favorite services to show in the menu"
+msgstr "NĆŗmero de servicios favoritos a mostrar en el menĆŗ"
+
+#: ../../godmode/setup/setup_visuals.php:1195
+msgid ""
+"The dir of custom logos is in your www Console in 'images/custom_logo'. You can "
+"upload more files (ONLY JPEG AND PNG) in upload tool in console."
+msgstr ""
+"El dir de los logos personalizados estĆ” en su www Consola en 'images/custom_logo'. "
+"Puede aƱadir mĆ”s archivos (SOLO JPEG AND PNG) en la herramienta de actualizaciĆ³n de "
+"la consola."
+
+#: ../../godmode/setup/setup_visuals.php:1281 ../../include/functions_config.php:1237
+msgid "Networkmap max width"
+msgstr "MƔximo ancho de Networkmap"
+
+#: ../../godmode/setup/setup_visuals.php:1301
+msgid "Show empty groups in group view"
+msgstr "Mostrar grupos vacĆ­os en la vista de grupo"
+
+#: ../../godmode/setup/setup_visuals.php:1341
+msgid "Custom values post process"
+msgstr "Valores personalizados para postprocesado"
+
+#: ../../godmode/setup/setup_visuals.php:1362 ../../godmode/setup/setup_visuals.php:1430
+msgid "Delete custom values"
+msgstr "Eliminar valores personalizados"
+
+#: ../../godmode/setup/setup_visuals.php:1394
+msgid "Interval values"
+msgstr "Valores del intervalo"
+
+#: ../../godmode/setup/setup_visuals.php:1422
+msgid "Module units"
+msgstr "Unidades de mĆ³dulo"
+
+#: ../../godmode/setup/setup_visuals.php:1538
+msgid "Behaviour configuration"
+msgstr "ConfiguraciĆ³n del comportamiento"
+
+#: ../../godmode/setup/setup_visuals.php:1543
+msgid "GIS configuration"
+msgstr "ConfiguraciĆ³n GIS"
+
+#: ../../godmode/setup/setup_visuals.php:1548
+msgid "Style configuration"
+msgstr "ConfiguraciĆ³n de estilo"
+
+#: ../../godmode/setup/setup_visuals.php:1553
+msgid "Charts configuration"
+msgstr "ConfiguraciĆ³n de grĆ”ficos"
+
+#: ../../godmode/setup/setup_visuals.php:1558
+msgid "Font and Text configuration"
+msgstr "ConfiguraciĆ³n de fuente y texto"
+
+#: ../../godmode/setup/setup_visuals.php:1563
+msgid "Visual consoles configuration"
+msgstr "ConfiguraciĆ³n de las consolas visuales"
+
+#: ../../godmode/setup/setup_visuals.php:1568
+msgid "Reports configuration "
+msgstr "ConfiguraciĆ³n de informes "
+
+#: ../../godmode/setup/setup_visuals.php:1573
+msgid "Services configuration"
+msgstr "ConfiguraciĆ³n de servicios"
+
+#: ../../godmode/setup/setup_visuals.php:1578
+msgid "Other configuration"
+msgstr "Otra configuraciĆ³n"
+
+#: ../../godmode/setup/setup_visuals.php:1855
+msgid "Mobile console logo preview"
+msgstr "Vista previa del logo de la consola mĆ³vil"
+
+#: ../../godmode/setup/setup_visuals.php:1890
+msgid "Gis icons preview"
+msgstr "Vista previa de los iconos GIS"
+
+#: ../../godmode/setup/setup_visuals.php:1956
+msgid "Status set preview"
+msgstr "Vista previa del estado"
+
+#: ../../godmode/setup/setup_general.php:77 ../../include/functions_register.php:122
+msgid "Language code"
+msgstr "Codigo de idioma"
+
+#: ../../godmode/setup/setup_general.php:137 ../../include/functions_config.php:198
+msgid "Automatic check for updates"
+msgstr "ComprobaciĆ³n automĆ”tica de actualizaciones"
+
+#: ../../godmode/setup/setup_general.php:145
+msgid "Enforce https Information"
+msgstr "Aplicar la informaciĆ³n http"
+
+#: ../../godmode/setup/setup_general.php:146
+msgid "If SSL is not properly configured you will lose access to "
+msgstr "Si SSL no estĆ” configurado adecuadamente, perderĆ” acceso a "
+
+#: ../../godmode/setup/setup_general.php:146 ../../godmode/setup/setup_general.php:340
+msgid " Console"
+msgstr " Consola"
+
+#: ../../godmode/setup/setup_general.php:160
+msgid "Use cert of SSL"
+msgstr "Usar el certificado SSL"
+
+#: ../../godmode/setup/setup_general.php:173
+msgid "Path of SSL Cert."
+msgstr "Ruta del certificado SSL"
+
+#: ../../godmode/setup/setup_general.php:223 ../../include/functions_config.php:238
+msgid "Enable GIS features"
+msgstr "Habilitar funcionalidades GIS"
+
+#: ../../godmode/setup/setup_general.php:231 ../../include/functions_config.php:254
+msgid "Enable Netflow"
+msgstr "Activar Netflow"
+
+#: ../../godmode/setup/setup_general.php:338
+msgid "Enforce public URL usage information"
+msgstr "Aplicar la informaciĆ³n de uso de la URL pĆŗblica"
+
+#: ../../godmode/setup/setup_general.php:340
+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 ../../include/functions_config.php:302
+msgid "Referer security"
+msgstr "Seguridad de Referer"
+
+#: ../../godmode/setup/setup_general.php:361 ../../include/functions_config.php:306
+msgid "Event storm protection"
+msgstr "ProtecciĆ³n de tormenta de eventos"
+
+#: ../../godmode/setup/setup_general.php:378
+msgid "Change remote config encoding"
+msgstr "Cambiar codificaciĆ³n de configuraciĆ³n remota"
+
+#: ../../godmode/setup/setup_general.php:386 ../../include/functions_config.php:318
+msgid "Server logs directory"
+msgstr "Directorio de logs del servidor"
+
+#: ../../godmode/setup/setup_general.php:396 ../../include/functions_config.php:322
+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
+msgid "Full mode"
+msgstr "Modo total"
+
+#: ../../godmode/setup/setup_general.php:409
+msgid "Expert"
+msgstr "Experta/o"
+
+#: ../../godmode/setup/setup_general.php:411 ../../include/functions_config.php:326
+msgid "Tutorial mode"
+msgstr "Modo tutorial"
+
+#: ../../godmode/setup/setup_general.php:425 ../../include/functions_config.php:330
+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
+msgid "Limit for bulk operations"
+msgstr "LĆ­mite de operaciones en bloque"
+
+#: ../../godmode/setup/setup_general.php:443
+msgid "Include agents manually disabled"
+msgstr "Incluir agentes deshabilitados manualmente"
+
+#: ../../godmode/setup/setup_general.php:451
+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
+msgid "Log location"
+msgstr "LocalizaciĆ³n de logs"
+
+#: ../../godmode/setup/setup_general.php:489
+msgid "Module custom ID readonly"
+msgstr "Solo lectura del ID personalizado de mĆ³dulo"
+
+#: ../../godmode/setup/setup_general.php:490
+msgid "Useful for integrations"
+msgstr "ƚtil para integraciones"
+
+#: ../../godmode/setup/setup_general.php:503
+msgid "General options"
+msgstr "Opciones generales"
+
+#: ../../godmode/setup/setup_general.php:522
+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 587.\n"
+"\n"
+"    If you have manual settings in your pandora_server.conf, please note these "
+"settings will ignore this console setup."
+msgstr ""
+"Algunos de los proveedores como Gmail u Office365 necesitan ajustar/habilitar las "
+"conexiones externas manualmente utilizando SNMP y necesita usar STARTTLS en el puerto "
+"587."
+
+#: ../../godmode/setup/setup_general.php:528
+msgid "From address"
+msgstr "De"
+
+#: ../../godmode/setup/setup_general.php:548
+msgid "SMTP Server"
+msgstr "Servidor SMTP"
+
+#: ../../godmode/setup/setup_general.php:558
+msgid "SMTP Port"
+msgstr "Puerto SMTP"
+
+#: ../../godmode/setup/setup_general.php:568 ../../include/functions_config.php:382
+msgid "Encryption"
+msgstr "EncriptaciĆ³n"
+
+#: ../../godmode/setup/setup_general.php:608
+msgid "Email test"
+msgstr "Prueba de email"
+
+#: ../../godmode/setup/setup_general.php:660 ../../general/header.php:813
+msgid "Send"
+msgstr "Enviar"
+
+#: ../../godmode/setup/setup_general.php:670
+msgid "Check mail configuration"
+msgstr "Revisar configuraciĆ³n de correo"
+
+#: ../../godmode/setup/performance.php:181
+msgid "Pandora_db running in active database."
+msgstr "Pandora_db en ejecuciĆ³n en la base de datos activa."
+
+#: ../../godmode/setup/performance.php:182 ../../godmode/setup/performance.php:238
+msgid "Executed:"
+msgstr "Ejectuado:"
+
+#: ../../godmode/setup/performance.php:237
+msgid "Pandora_db running in historical database."
+msgstr "Pandora_db en ejecuciĆ³n en la base de datos histĆ³rica."
+
+#: ../../godmode/setup/performance.php:245
+msgid "not executed"
+msgstr "No ejecutado"
+
+#: ../../godmode/setup/performance.php:273 ../../include/functions_config.php:792
+msgid "Max. days before delete traps"
+msgstr "NĀŗ max. de dĆ­as antes de borrar traps SNMP"
+
+#: ../../godmode/setup/performance.php:293 ../../godmode/setup/performance.php:459
+#: ../../include/functions_config.php:796
+msgid "Max. days before delete string data"
+msgstr "NĀŗ max. de dĆ­as antes de borrar datos de tipo texto"
+
+#: ../../godmode/setup/performance.php:303 ../../include/functions_config.php:804
+msgid "Max. days before delete GIS data"
+msgstr "NĀŗ max. de dĆ­as antes de borrar informaciĆ³n GIS"
+
+#: ../../godmode/setup/performance.php:313 ../../godmode/setup/performance.php:419
+#: ../../include/functions_config.php:808
+msgid "Max. days before purge"
+msgstr "MƔx. dƭas antes de purga de datos"
+
+#: ../../godmode/setup/performance.php:323 ../../godmode/setup/performance.php:429
+#: ../../include/functions_config.php:816
+msgid "Max. days before compact data"
+msgstr "MƔx. dƭas antes de comprimir datos"
+
+#: ../../godmode/setup/performance.php:333 ../../include/functions_config.php:812
+msgid "Max. days before delete unknown modules"
+msgstr "MĆ”ximo de dĆ­as antes de borrar mĆ³dulos desconocidos"
+
+#: ../../godmode/setup/performance.php:343
+msgid "Max. days before delete autodisabled agents"
+msgstr "NĀŗ mĆ”ximo de dĆ­as antes de la eliminaciĆ³n de los agentes deshabilitados"
+
+#: ../../godmode/setup/performance.php:353 ../../include/functions_config.php:864
+msgid "Retention period of past special days"
+msgstr "PerĆ­odo de retenciĆ³n de dĆ­as especiales pasados"
+
+#: ../../godmode/setup/performance.php:377 ../../include/functions_config.php:873
+msgid "Max. days before delete inventory data"
+msgstr "NĀŗ de dĆ­as mĆ”ximo antes del borrado de datos de inventario"
+
+#: ../../godmode/setup/performance.php:439 ../../godmode/setup/performance.php:520
+#: ../../include/functions_config.php:828
+msgid "Compact interpolation in hours (1 Fine-20 bad)"
+msgstr "InterpolaciĆ³n de la compactaciĆ³n en horas (1 bueno - 20 malo)"
+
+#: ../../godmode/setup/performance.php:477 ../../include/functions_config.php:878
+msgid "Max. days before delete old messages"
+msgstr "NĆŗm. mĆ”x. de dĆ­as antes de borrar mensajes antiguos"
+
+#: ../../godmode/setup/performance.php:490 ../../include/functions_config.php:882
+msgid "Max. days before delete old network matrix data"
+msgstr "NĆŗm. mĆ”x. de dĆ­as antes de borrar datos de matriz antiguos"
+
+#: ../../godmode/setup/performance.php:510
+msgid "Item limit for realtime reports"
+msgstr "LĆ­mite del elemento para informes en tiempo real"
+
+#: ../../godmode/setup/performance.php:533
+msgid "Last day"
+msgstr "ƚltimo dƭa"
+
+#: ../../godmode/setup/performance.php:535
+msgid "10 days"
+msgstr "10 dĆ­as"
+
+#: ../../godmode/setup/performance.php:537
+msgid "2 weeks"
+msgstr "2 semanas"
+
+#: ../../godmode/setup/performance.php:550 ../../include/functions_config.php:836
+msgid "Use realtime statistics"
+msgstr "Usar estadĆ­sticas en tiempo real"
+
+#: ../../godmode/setup/performance.php:558 ../../include/functions_config.php:840
+msgid "Batch statistics period (secs)"
+msgstr "PerĆ­odo de las estadĆ­sticas programadas (seg.)"
+
+#: ../../godmode/setup/performance.php:571 ../../include/functions_config.php:848
+msgid "Max. recommended number of files in attachment directory"
+msgstr "Max. nĆŗmero de archivos recomendado para el directorio de adjuntos"
+
+#: ../../godmode/setup/performance.php:581 ../../include/functions_config.php:852
+msgid "Delete not init modules"
+msgstr "Borrar mĆ³dulos no iniciados"
+
+#: ../../godmode/setup/performance.php:584
+msgid "Big Operation Step to purge old data"
+msgstr "Gran operaciĆ³n para la purga de datos antiguos"
+
+#: ../../godmode/setup/performance.php:594 ../../include/functions_config.php:860
+msgid "Small Operation Step to purge old data"
+msgstr "OperaciĆ³n menor para la purga de datos antiguos"
+
+#: ../../godmode/setup/performance.php:604 ../../include/functions_config.php:886
+msgid "Graph container - Max. Items"
+msgstr "Contenedor de grƔficas - MƔx. elementos"
+
+#: ../../godmode/setup/performance.php:634
+msgid "SNMP walk binary"
+msgstr "Binario walk SNMP"
+
+#: ../../godmode/setup/performance.php:645
+msgid ""
+"SNMP bulk walk is not able to request V1 SNMP, this option will be used instead (by "
+"default snmpwalk, slower)."
+msgstr ""
+"El walk en bloque SNMP no puede solicitar V1 SNMP, esta opciĆ³n se utilizarĆ” en su "
+"lugar (por defecto snmpwalk, mƔs lento)."
+
+#: ../../godmode/setup/performance.php:648
+msgid "SNMP walk binary (fallback)"
+msgstr "Binario walk SNMP (alternativa)"
+
+#: ../../godmode/setup/performance.php:666
+msgid "WMI binary"
+msgstr "Binario WMI"
+
+#: ../../godmode/setup/performance.php:701
+msgid "Database maintenance options"
+msgstr "Opciones de mantenimiento de la base de datos"
+
+#: ../../godmode/setup/performance.php:707
+msgid "Historical database maintenance options"
+msgstr "Opciones de mantenimiento de la base de datos histĆ³rica"
+
+#: ../../godmode/setup/performance.php:713 ../../include/functions_visual_map.php:2874
+#: ../../include/functions_netflow.php:2078
+#: ../../operation/network/network_report.php:324
+msgid "Others"
+msgstr "Otros"
+
+#: ../../godmode/setup/file_manager.php:83 ../../godmode/servers/plugin.php:235
+#: ../../include/functions_filemanager.php:590
+#, php-format
+msgid "Index of %s"
+msgstr "ƍndice de %s"
+
+#: ../../godmode/reporting/visual_console_builder.data.php:94
+msgid "Create visual console"
+msgstr "Crear consola visual"
+
+#: ../../godmode/reporting/visual_console_builder.data.php:106
+msgid ""
+"Use [ or ( as first character, for example '[*] Map name', to render this map name in "
+"main menu"
+msgstr ""
+"Usa [ o ( como primer carƔcter. Por ejemplo \"[*] Nombre de mapa\", para renderizar "
+"este nombre de mapa en el menĆŗ principal."
 
-#: ../../include/functions_visual_map_editor.php:55
-#: ../../include/functions_visual_map_editor.php:632
-#: ../../include/lib/Dashboard/Widget.php:560
 #: ../../godmode/reporting/visual_console_builder.data.php:169
 #: ../../godmode/reporting/visual_console_builder.elements.php:151
+#: ../../include/functions_visual_map_editor.php:55
+#: ../../include/functions_visual_map_editor.php:632
+#: ../../include/lib/Dashboard/Widget.php:566
 msgid "Background"
 msgstr "Imagen de fondo"
 
-#: ../../include/functions_visual_map_editor.php:56
+#: ../../godmode/reporting/visual_console_builder.data.php:179
+msgid "Background image"
+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
+msgid "Background color"
+msgstr "Color de fondo"
+
+#: ../../godmode/reporting/visual_console_builder.data.php:211
+msgid "Layout size"
+msgstr "TamaƱo del diseƱo"
+
+#: ../../godmode/reporting/visual_console_builder.data.php:214
+msgid "Set custom size"
+msgstr "Especificar tamaƱo personalizado"
+
+#: ../../godmode/reporting/visual_console_builder.data.php:220
+msgid "Get default image size"
+msgstr "Establecer el tamaƱo de imagen por defecto"
+
+#: ../../godmode/reporting/visual_console_builder.data.php:222
+msgid "Favourite visual console"
+msgstr "Consola visual favorita"
+
+#: ../../godmode/reporting/visual_console_builder.data.php:225
+msgid "Auto adjust to screen in fullscreen"
+msgstr "Ajuste automƔtico a la pantalla en pantalla completa"
+
+#: ../../godmode/reporting/visual_console_builder.php:226
+msgid "This file isn't image"
+msgstr "El archivo no es una imagen."
+
+#: ../../godmode/reporting/visual_console_builder.php:229
+msgid "This file isn't image."
+msgstr "El archivo no es una imagen."
+
+#: ../../godmode/reporting/visual_console_builder.php:235
+#: ../../godmode/reporting/visual_console_builder.php:238
+msgid "File already are exists."
+msgstr "El archivo ya existe."
+
+#: ../../godmode/reporting/visual_console_builder.php:246
+#: ../../godmode/reporting/visual_console_builder.php:249
+msgid "The file have not image extension."
+msgstr "El archivo no tiene una extensiĆ³n vĆ”lida."
+
+#: ../../godmode/reporting/visual_console_builder.php:261
+#: ../../godmode/reporting/visual_console_builder.php:264
+#: ../../godmode/reporting/visual_console_builder.php:274
+#: ../../godmode/reporting/visual_console_builder.php:280
+msgid "Problems with move file to target."
+msgstr "Error al mover el archivo al objetivo"
+
+#: ../../godmode/reporting/visual_console_builder.php:317
+msgid "Successfully update."
+msgstr "Actualizado correctamente"
+
+#: ../../godmode/reporting/visual_console_builder.php:336
+msgid "Could not be update."
+msgstr "No se puede actualizar"
+
+#: ../../godmode/reporting/visual_console_builder.php:356
+msgid "Successfully created."
+msgstr "Creado correctamente"
+
+#: ../../godmode/reporting/visual_console_builder.php:375
+msgid "Could not be created."
+msgstr "No se pudo crear"
+
+#: ../../godmode/reporting/visual_console_builder.php:423
+msgid "Successfully multiple delete."
+msgstr "SupresiĆ³n mĆŗltiple realizada correctamente"
+
+#: ../../godmode/reporting/visual_console_builder.php:424
+msgid "Unsuccessful multiple delete."
+msgstr "Error de supresiĆ³n mĆŗltiple"
+
+#: ../../godmode/reporting/visual_console_builder.php:544
+msgid "Successfully delete."
+msgstr "Borrado satisfactoriamente"
+
+#: ../../godmode/reporting/visual_console_builder.php:834
+#: ../../operation/visual_console/view.php:178
+#: ../../operation/visual_console/legacy_view.php:165
+msgid "Services wizard"
+msgstr "Asistente de servicios"
+
+#: ../../godmode/reporting/reporting_builder.list_items.php:706
+#: ../../godmode/reporting/reporting_builder.list_items.php:710
+#: ../../godmode/reporting/graph_builder.graph_editor.php:284
+#: ../../godmode/reporting/graph_builder.graph_editor.php:288
+msgid "Sort items"
+msgstr "Ordenar elementos"
+
+#: ../../godmode/reporting/reporting_builder.list_items.php:713
+msgid "Sort selected items from position: "
+msgstr "Ordenar elementos desde posiciĆ³n: "
+
+#: ../../godmode/reporting/reporting_builder.list_items.php:716
+msgid "Move before to"
+msgstr "Mover antes de"
+
+#: ../../godmode/reporting/reporting_builder.list_items.php:717
+msgid "Move after to"
+msgstr "Mover despuƩs de"
+
+#: ../../godmode/reporting/reporting_builder.list_items.php:757
+#: ../../godmode/reporting/reporting_builder.list_items.php:761
+msgid "Delete items"
+msgstr "Borrar elementos"
+
+#: ../../godmode/reporting/reporting_builder.list_items.php:764
+msgid "Delete selected items from position: "
+msgstr "Borrar los elementos seleccionados desde la posiciĆ³n: "
+
+#: ../../godmode/reporting/reporting_builder.list_items.php:767
+msgid "Delete above to"
+msgstr "Borrar lo que estĆ” encima de"
+
+#: ../../godmode/reporting/reporting_builder.list_items.php:768
+msgid "Delete below to"
+msgstr "Borrar lo que estĆ” debajo de"
+
+#: ../../godmode/reporting/reporting_builder.list_items.php:824
+msgid ""
+"Are you sure to sort the items into the report?\\n. This action change the sorting of "
+"items into data base."
+msgstr ""
+"ĀæEstĆ” seguro de que quiere clasificar los elementos en el informe?\\n. Esta acciĆ³n "
+"podrĆ­a cambiar la clasificaciĆ³n de los elementos en la base de datos."
+
+#: ../../godmode/reporting/reporting_builder.list_items.php:844
+#: ../../godmode/reporting/graph_builder.graph_editor.php:407
+msgid "Please select any item to order"
+msgstr "Por favor, selecciona cualquier elemento para ordenar."
+
+#: ../../godmode/reporting/reporting_builder.list_items.php:874
+msgid "Are you sure to delete the items into the report?\\n"
+msgstr "ĀæEstĆ”s seguro de que quieres borrar los elementos en el informe?\\n"
+
+#: ../../godmode/reporting/reporting_builder.list_items.php:901
+msgid "Please select any item to delete"
+msgstr "Por favor, selecciona cualquier elemento para borrarlo."
+
+#: ../../godmode/reporting/create_container.php:155
+msgid "Container name is missing."
+msgstr "Falta el nombre del contenedor."
+
+#: ../../godmode/reporting/create_container.php:196
+#: ../../godmode/reporting/graph_container.php:134
+msgid "Create container"
+msgstr "Crear contenedor"
+
+#: ../../godmode/reporting/create_container.php:205
+msgid "Container stored successfully"
+msgstr "Contenedor guardado correctamente"
+
+#: ../../godmode/reporting/create_container.php:205
+msgid "There was a problem storing container"
+msgstr "Hubo un problema al guardar el contenedor"
+
+#: ../../godmode/reporting/create_container.php:212
+msgid "Update the container"
+msgstr "Actualizar contenedor"
+
+#: ../../godmode/reporting/create_container.php:212
+msgid "Bad update the container"
+msgstr "Mala actualizaciĆ³n del contenedor"
+
+#: ../../godmode/reporting/create_container.php:287
+msgid "Parent container"
+msgstr "Contenedor padre"
+
+#: ../../godmode/reporting/create_container.php:345 ../../include/functions.php:2688
+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:2700
+#: ../../include/functions.php:2701 ../../include/ajax/graph.ajax.php:147
+#: ../../include/ajax/graph.ajax.php:148 ../../include/ajax/graph.ajax.php:149
+#, php-format
+msgid "%s hours"
+msgstr "%s horas"
+
+#: ../../godmode/reporting/create_container.php:351
+#: ../../godmode/reporting/create_container.php:352
+#: ../../include/ajax/graph.ajax.php:151 ../../include/ajax/graph.ajax.php:152
+#, php-format
+msgid "%s days"
+msgstr "%s dĆ­as"
+
+#: ../../godmode/reporting/create_container.php:353 ../../include/functions.php:2703
+#: ../../include/ajax/module.php:204 ../../include/ajax/graph.ajax.php:153
+msgid "1 week"
+msgstr "1 semana"
+
+#: ../../godmode/reporting/create_container.php:355 ../../include/functions.php:2705
+#: ../../include/ajax/module.php:206 ../../include/ajax/graph.ajax.php:155
+msgid "1 month"
+msgstr "1 mes"
+
+#: ../../godmode/reporting/create_container.php:365
+#: ../../godmode/reporting/create_container.php:474
+#: ../../godmode/reporting/create_container.php:528
+msgid ""
+"This is the interval or period of time with which the graph data will be obtained. "
+"For example, a week means data from a week ago from now. "
+msgstr ""
+"Este es el intervalo o perƭodo de tiempo en el que se obtendrƔn los datos de la "
+"grƔfica. Por ejemplo, una semana significa que habrƔ datos desde hace una semana "
+"hasta ahora. "
+
+#: ../../godmode/reporting/create_container.php:428
+#: ../../godmode/reporting/create_container.php:583
+#: ../../godmode/reporting/graph_builder.main.php:208
+#: ../../include/functions_visual_map_editor.php:554
+msgid "Type of graph"
+msgstr "Tipo de grƔfica"
+
+#: ../../godmode/reporting/create_container.php:437
+#: ../../godmode/reporting/create_container.php:494
+#: ../../godmode/reporting/create_container.php:589
+#: ../../godmode/reporting/graph_builder.main.php:285
+#: ../../operation/agentes/stat_win.php:395
+#: ../../operation/agentes/interface_traffic_graph_win.php:238
+msgid "Show full scale graph (TIP)"
+msgstr "Mostrar grƔfica a escala completa (TIP)"
+
+#: ../../godmode/reporting/create_container.php:448
+#: ../../godmode/reporting/create_container.php:501
+#: ../../godmode/reporting/create_container.php:596
+msgid "Add item"
+msgstr "AƱadir elemento"
+
+#: ../../godmode/reporting/create_container.php:614
+msgid "There are no items in this container."
+msgstr "No hay elementos en este contenedor."
+
+#: ../../godmode/reporting/create_container.php:623
+msgid "Agent/Module"
+msgstr "Agente/mĆ³dulo"
+
+#: ../../godmode/reporting/create_container.php:626
+msgid "M.Group"
+msgstr "M.Grupo"
+
+#: ../../godmode/reporting/map_builder.php:318
+#: ../../godmode/reporting/map_builder.php:326
+msgid "Not copied. Error copying data"
+msgstr "Se ha producido un error al copiar los datos."
+
+#: ../../godmode/reporting/map_builder.php:368
+#: ../../godmode/reporting/visual_console_favorite.php:185
+msgid "Group Recursion"
+msgstr "Recursividad de grupo"
+
+#: ../../godmode/reporting/map_builder.php:384
+msgid "Map name"
+msgstr "Nombre del mapa"
+
+#: ../../godmode/reporting/map_builder.php:386
+msgid "Items"
+msgstr "Elementos"
+
+#: ../../godmode/reporting/map_builder.php:462
+#: ../../general/first_task/map_builder.php:23
+msgid "There are no visual console defined yet."
+msgstr "No hay consola visual definida todavĆ­a."
+
+#: ../../godmode/reporting/graph_builder.php:309
+#: ../../operation/reporting/graph_viewer.php:204
+msgid "Graph editor"
+msgstr "Editor de grƔficas"
+
+#: ../../godmode/reporting/graph_builder.php:320
+#: ../../operation/reporting/graph_viewer.php:223
+msgid "View graph"
+msgstr "Ver grƔfica"
+
+#: ../../godmode/reporting/graph_builder.php:336
+msgid "Graph builder"
+msgstr "Creador de grƔficos"
+
+#: ../../godmode/reporting/graph_builder.php:378
+msgid "Graph stored successfully"
+msgstr "GrƔfica almacenada correctamente"
+
+#: ../../godmode/reporting/graph_builder.php:379
+msgid "There was a problem storing Graph"
+msgstr "Error al almacenar el grƔfico"
+
+#: ../../godmode/reporting/graph_builder.php:387
+msgid "There was a problem adding Module"
+msgstr "Ha surgido un problema al aƱadir el mĆ³dulo."
+
+#: ../../godmode/reporting/graph_builder.php:394
+msgid "Update the graph"
+msgstr "Actualizar el grƔfico"
+
+#: ../../godmode/reporting/graph_builder.php:395
+msgid "Bad update the graph"
+msgstr "No se pudo actualizar el grƔfico."
+
+#: ../../godmode/reporting/graph_builder.php:402
+msgid "Graph deleted successfully"
+msgstr "GrƔfico borrado correctamente"
+
+#: ../../godmode/reporting/graph_builder.php:403
+msgid "There was a problem deleting Graph"
+msgstr "Ha surgido un problema al borrar el grƔfico."
+
+#: ../../godmode/reporting/graphs.php:106
+msgid "Graphs containers"
+msgstr "Contenedores de grƔficos"
+
+#: ../../godmode/reporting/graphs.php:120
+msgid "List of custom graphs"
+msgstr "Lista de grƔficos personalizados"
+
+#: ../../godmode/reporting/graphs.php:235
+#: ../../godmode/reporting/reporting_builder.php:780
+msgid "Free text for search: "
+msgstr "Texto libre de bĆŗsqueda "
+
+#: ../../godmode/reporting/graphs.php:236
+#: ../../godmode/reporting/reporting_builder.php:782
+msgid "Search by report name or description, list matches."
+msgstr "BĆŗsqueda por nombre del informe o descripciĆ³n, lista de coincidencias"
+
+#: ../../godmode/reporting/graphs.php:248
+#: ../../godmode/reporting/reporting_builder.php:808
+msgid "Show Option"
+msgstr "Mostrar opciones"
+
+#: ../../godmode/reporting/graphs.php:310 ../../include/functions_container.php:146
+#: ../../operation/search_graphs.php:30 ../../operation/reporting/graph_viewer.php:524
+msgid "Graph name"
+msgstr "Nombre del grƔfico"
+
+#: ../../godmode/reporting/graphs.php:312 ../../include/functions_container.php:148
+msgid "Number of Graphs"
+msgstr "NĆŗmero de grĆ”ficos"
+
+#: ../../godmode/reporting/graphs.php:402
+msgid "Create graph"
+msgstr "Crear grƔfico"
+
+#: ../../godmode/reporting/visual_console_favorite.php:223
+msgid "No favourite consoles defined"
+msgstr "No hay consolas favoritas"
+
+#: ../../godmode/reporting/graph_builder.graph_editor.php:199
+#, php-format
+msgid ""
+"The maximum number of items in a chart is %d. You have %d elements, only first %d "
+"will be displayed."
+msgstr ""
+"El nĆŗmero mĆ”ximo de elementos en una tabla es %d. Tiene %d elementos, solo se "
+"mostrarƔn los primeros %d."
+
+#: ../../godmode/reporting/graph_builder.graph_editor.php:291
+msgid "Sort selected items"
+msgstr "Ordenar elementos seleccionados"
+
+#: ../../godmode/reporting/graph_builder.graph_editor.php:294
+msgid "before to"
+msgstr "antes de"
+
+#: ../../godmode/reporting/graph_builder.graph_editor.php:295
+msgid "after to"
+msgstr "despuƩs de"
+
+#: ../../godmode/reporting/reporting_builder.item_editor.php:1046
+msgid "Not valid"
+msgstr "No vƔlido"
+
+#: ../../godmode/reporting/reporting_builder.item_editor.php:1054
+msgid ""
+"This type of report brings a lot of data loading, it is recommended to use it for "
+"scheduled reports and not for real-time view."
+msgstr ""
+"Este tipo de informes tienen muchos datos que cargar. Recomendamos su uso para "
+"informes programados y no para informes de tiempo real."
+
+#: ../../godmode/reporting/reporting_builder.item_editor.php:1250
+msgid "Log number"
+msgstr "NĆŗmero de logs"
+
+#: ../../godmode/reporting/reporting_builder.item_editor.php:1252
+msgid ""
+"Warning: this parameter limits the contents of the logs and affects the performance."
+msgstr ""
+"Advertencia: este parƔmetro limita los contenidos de los logs y afecta al rendimiento."
+
+#: ../../godmode/reporting/reporting_builder.item_editor.php:1313
+msgid ""
+"This is the range, or period of time over which the report renders the information "
+"for this report type. For example, a week means data from a week ago from now. "
+msgstr ""
+"Este es el lapso de tiempo que refleja el informe. Si es una semana, por ejemplo, el "
+"informe mostrarĆ” los datos desde hace una semana hasta ahora. "
+
+#: ../../godmode/reporting/reporting_builder.item_editor.php:1872
+msgid "Show modules"
+msgstr "Mostrar mĆ³dulos"
+
+#: ../../godmode/reporting/reporting_builder.item_editor.php:2253
+msgid "Target server"
+msgstr "Servidor Target"
+
+#: ../../godmode/reporting/reporting_builder.item_editor.php:2554
+msgid "Macros definition"
+msgstr "DefiniciĆ³n de macros"
+
+#: ../../godmode/reporting/reporting_builder.item_editor.php:2565
+msgid "Render definition"
+msgstr "DefiniciĆ³n de renderizado"
+
+#: ../../godmode/reporting/reporting_builder.item_editor.php:2566
+msgid "Please note that not all CSS styles are supported by PDF reports."
+msgstr ""
+"Tenga en cuenta que no todos los estilos CSS son compatibles con los informes PDF."
+
+#: ../../godmode/reporting/reporting_builder.item_editor.php:2663
+msgid "Greater or equal (>=)"
+msgstr "Mayor o igual (>=)"
+
+#: ../../godmode/reporting/reporting_builder.item_editor.php:2664
+msgid "Less or equal (<=)"
+msgstr "Menor o igual (<=)"
+
+#: ../../godmode/reporting/reporting_builder.item_editor.php:2665
+msgid "Less (<)"
+msgstr "Menor a (<)"
+
+#: ../../godmode/reporting/reporting_builder.item_editor.php:2666
+msgid "Greater (>)"
+msgstr "Mayor a (>)"
+
+#: ../../godmode/reporting/reporting_builder.item_editor.php:2667
+msgid "Equal (=)"
+msgstr "Igual a (=)"
+
+#: ../../godmode/reporting/reporting_builder.item_editor.php:2668
+msgid "Not equal (!=)"
+msgstr "No igual a (!=)"
+
+#: ../../godmode/reporting/reporting_builder.item_editor.php:2793
+msgid ""
+"Show a summary chart with max, min and average number of total modules at the end of "
+"the report and Checks."
+msgstr ""
+"Mostrar una grĆ”fica de sumario con el mĆ”ximo, mĆ­nimo y la media del total de mĆ³dulos "
+"al final del informe y las comprobaciones."
+
+#: ../../godmode/reporting/reporting_builder.item_editor.php:2848
+msgid "Checks in Warning status"
+msgstr "Chequeos en estado Warning"
+
+#: ../../godmode/reporting/reporting_builder.item_editor.php:2918
+msgid "Only data"
+msgstr "SĆ³lo datos"
+
+#: ../../godmode/reporting/reporting_builder.item_editor.php:3016
+msgid "Include extended events"
+msgstr "Incluir eventos ampliados"
+
+#: ../../godmode/reporting/reporting_builder.item_editor.php:3033
+msgid "Show custom data"
+msgstr "Mostrar datos personalizados"
+
+#: ../../godmode/reporting/reporting_builder.item_editor.php:3052
+msgid "By agent "
+msgstr "Por agente "
+
+#: ../../godmode/reporting/reporting_builder.item_editor.php:3062
+msgid "By user validator "
+msgstr "Por validador de usuario "
+
+#: ../../godmode/reporting/reporting_builder.item_editor.php:3072
+msgid "By criticity "
+msgstr "Por prioridad "
+
+#: ../../godmode/reporting/reporting_builder.item_editor.php:3082
+msgid "Validated vs unvalidated "
+msgstr "Validado vs invalidado "
+
+#: ../../godmode/reporting/reporting_builder.item_editor.php:3097
+msgid ""
+"With the token enabled the query will affect the Historical Database, which may mean "
+"a small drop in performance."
+msgstr ""
+"Con el token habilitado, la consulta afectarĆ” a la base de datos histĆ³rica, que puede "
+"acarrear una bajada del rendimiento."
+
+#: ../../godmode/reporting/reporting_builder.item_editor.php:3282
+msgid "Include filter"
+msgstr "Incluir filtro"
+
+#: ../../godmode/reporting/reporting_builder.item_editor.php:3286
+#: ../../godmode/reporting/reporting_builder.item_editor.php:3295
+msgid "Free text string search on event description"
+msgstr "BĆŗsqueda de cadena de texto libre en descripciĆ³n del evento"
+
+#: ../../godmode/reporting/reporting_builder.item_editor.php:3291
+msgid "Exclude filter"
+msgstr "Excluir filtro"
+
+#: ../../godmode/reporting/reporting_builder.item_editor.php:3421
+#: ../../include/functions_reporting.php:4628
+msgid "Unassigned group"
+msgstr "Grupo no asignado"
+
+#: ../../godmode/reporting/reporting_builder.item_editor.php:3467
+#: ../../include/functions_reporting.php:4622
+msgid "Unnasigned group"
+msgstr "Grupo no asignado"
+
+#: ../../godmode/reporting/reporting_builder.item_editor.php:3490
+msgid "Select by group"
+msgstr "Seleccionar por grupo"
+
+#: ../../godmode/reporting/reporting_builder.item_editor.php:3578
+msgid "Display options"
+msgstr "Mostrar opciones"
+
+#: ../../godmode/reporting/reporting_builder.item_editor.php:3636
+msgid "Agent group filter"
+msgstr "Filtro de grupo de agentes"
+
+#: ../../godmode/reporting/reporting_builder.item_editor.php:3656
+msgid "Agent OS filter"
+msgstr "Filtro del so del agente"
+
+#: ../../godmode/reporting/reporting_builder.item_editor.php:3682
+msgid "Agent custom field"
+msgstr "Campo personalizado de agente"
+
+#: ../../godmode/reporting/reporting_builder.item_editor.php:3704
+msgid "Agent custom field filter"
+msgstr "Filtro de campo personalizado de agente"
+
+#: ../../godmode/reporting/reporting_builder.item_editor.php:3728
+msgid "Agent status filter"
+msgstr "Filtro de estado del agente"
+
+#: ../../godmode/reporting/reporting_builder.item_editor.php:3766
+msgid "Agent version filter"
+msgstr "Filtro de versiĆ³n del agente"
+
+#: ../../godmode/reporting/reporting_builder.item_editor.php:3790
+msgid "Agent has remote configuration"
+msgstr "El agente tiene configuraciĆ³n remota"
+
+#: ../../godmode/reporting/reporting_builder.item_editor.php:3791
+msgid "Filter agents by remote configuration enabled."
+msgstr "Filtrar agentes por configuraciĆ³n remota habilitada."
+
+#: ../../godmode/reporting/reporting_builder.item_editor.php:3802
+msgid "Agent module filter"
+msgstr "Filtro del mĆ³dulo del agente"
+
+#: ../../godmode/reporting/reporting_builder.item_editor.php:3908
+#: ../../godmode/reporting/reporting_builder.item_editor.php:4423
+msgid "Agent Failover"
+msgstr "ConmutaciĆ³n de agente"
+
+#: ../../godmode/reporting/reporting_builder.item_editor.php:3913
+#: ../../godmode/reporting/reporting_builder.item_editor.php:4426
+msgid "Module Failover"
+msgstr "ConmutaciĆ³n de mĆ³dulo"
+
+#: ../../godmode/reporting/reporting_builder.item_editor.php:3953
+msgid "Please save the item before adding entries to this list."
+msgstr "Guarde el elemento antes de agregar entradas a esta lista."
+
+#: ../../godmode/reporting/reporting_builder.item_editor.php:4399
+msgid "rate"
+msgstr "tasa"
+
+#: ../../godmode/reporting/reporting_builder.item_editor.php:4447
+msgid ""
+"Please be careful, when the module have diferent intervals in their life, the "
+"summatory maybe get bad result."
+msgstr ""
+"Por favor, ten en cuenta que cuando el mĆ³dulo tiene diferentes intervalos a lo largo "
+"de su historia, el sumatorio puede obtener resultados incorrectos."
+
+#: ../../godmode/reporting/reporting_builder.item_editor.php:4467
+msgid "Please save the report to start adding items into the list."
+msgstr "Por favor, guarda el informe para empezar a aƱadir elementos a la lista."
+
+#: ../../godmode/reporting/reporting_builder.item_editor.php:4733
+#: ../../godmode/reporting/reporting_builder.item_editor.php:4737
+#: ../../godmode/reporting/reporting_builder.item_editor.php:4741
+#: ../../godmode/reporting/reporting_builder.item_editor.php:4745
+#: ../../godmode/reporting/reporting_builder.item_editor.php:4749
+#: ../../godmode/reporting/reporting_builder.item_editor.php:4753
+#: ../../godmode/reporting/reporting_builder.item_editor.php:4757
+#: ../../godmode/reporting/reporting_builder.item_editor.php:4761
+msgid "Item Editor Information"
+msgstr "InformaciĆ³n de editor de elemento"
+
+#: ../../godmode/reporting/reporting_builder.item_editor.php:4734
+msgid "Please select a name."
+msgstr "Seleccione un nombre."
+
+#: ../../godmode/reporting/reporting_builder.item_editor.php:4738
+msgid "Please select an agent."
+msgstr "Seleccione un agente."
+
+#: ../../godmode/reporting/reporting_builder.item_editor.php:4746
+msgid "Please insert a SQL query."
+msgstr "Inserte una consulta SQL."
+
+#: ../../godmode/reporting/reporting_builder.item_editor.php:4750
+msgid "Please insert a URL."
+msgstr "Inserte una URL."
+
+#: ../../godmode/reporting/reporting_builder.item_editor.php:4754
+msgid "Please checked a custom interval option."
+msgstr "Compruebe la opciĆ³n de intervalo personalizado"
+
+#: ../../godmode/reporting/reporting_builder.item_editor.php:4758
+msgid "Please select a user."
+msgstr "Seleccione un usuario."
+
+#: ../../godmode/reporting/reporting_builder.item_editor.php:4762
+msgid "Please select a group."
+msgstr "Seleccione un grupo"
+
+#: ../../godmode/reporting/visual_console_builder.elements.php:106
+msgid "Width x Height
Max value" +msgstr "Ancho x Alto
Valor mĆ”ximo" + +#: ../../godmode/reporting/visual_console_builder.elements.php:108 +msgid "Map linked" +msgstr "Mapa enlazado" + +#: ../../godmode/reporting/visual_console_builder.elements.php:194 +msgid "Percentile Bar" +msgstr "Barra de percentil" + +#: ../../godmode/reporting/visual_console_builder.elements.php:204 +msgid "Percentile Bubble" +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 +#: ../../operation/visual_console/view.php:306 +msgid "Module Graph" +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:4224 +#: ../../operation/visual_console/view.php:326 +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:4249 +#: ../../include/rest-api/models/VisualConsole/Item.php:2131 +#: ../../operation/visual_console/view.php:331 +msgid "Simple Value" +msgstr "Valor simple" + +#: ../../godmode/reporting/visual_console_builder.elements.php:252 +msgid "Simple Value (Process Max)" +msgstr "Valor simple (mĆ”ximo)" + +#: ../../godmode/reporting/visual_console_builder.elements.php:263 +msgid "Simple Value (Process Min)" +msgstr "Valor simple (mĆ­nimo)" + +#: ../../godmode/reporting/visual_console_builder.elements.php:274 +msgid "Simple Value (Process Avg)" +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:4204 +#: ../../operation/visual_console/view.php:356 +msgid "Box" +msgstr "Caja" + +#: ../../godmode/reporting/visual_console_builder.elements.php:323 +#: ../../include/functions_visual_map_editor.php:1405 +#: ../../operation/visual_console/view.php:371 +msgid "Network link" +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:4264 +#: ../../include/rest-api/models/VisualConsole/Item.php:2143 +#: ../../operation/visual_console/view.php:366 +msgid "Color cloud" +msgstr "Nube de color" + +#: ../../godmode/reporting/visual_console_builder.elements.php:352 +#: ../../include/rest-api/models/VisualConsole/Item.php:2155 +#: ../../operation/visual_console/view.php:311 +msgid "Basic chart" +msgstr "GrĆ”fico bĆ”sico" + +#: ../../godmode/reporting/visual_console_builder.elements.php:360 +#: ../../include/rest-api/models/VisualConsole/Item.php:2151 +#: ../../operation/visual_console/view.php:376 +msgid "Odometer" +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:4214 +#: ../../include/rest-api/models/VisualConsole/Item.php:2103 +#: ../../include/lib/Dashboard/Widgets/clock.php:158 +#: ../../include/lib/Dashboard/Widgets/clock.php:310 +#: ../../operation/visual_console/view.php:346 +msgid "Clock" +msgstr "Reloj" + +#: ../../godmode/reporting/visual_console_builder.elements.php:395 +#: ../../godmode/reporting/visual_console_builder.elements.php:855 +msgid "Edit label" +msgstr "Editar etiqueta" + +#: ../../godmode/reporting/reporting_builder.main.php:146 +msgid "Only the group can view the report" +msgstr "Solo el grupo puede ver el informe." + +#: ../../godmode/reporting/reporting_builder.main.php:147 +msgid "The next group can edit the report" +msgstr "El siguiente grupo puede editar el informe." + +#: ../../godmode/reporting/reporting_builder.main.php:148 +msgid "Only the user and admin user can edit the report" +msgstr "Solo el usuario y el usuario administrador pueden editar el informe." + +#: ../../godmode/reporting/reporting_builder.main.php:150 +msgid "Write Access" +msgstr "Permisos de escritura" + +#: ../../godmode/reporting/reporting_builder.main.php:152 +msgid "" +"For example, you want a report that the people of \"All\" groups can see but you want " +"to edit only for you or your group." +msgstr "" +"Por ejemplo, quieres un informe que las personas de \"Todos\" los grupos pueden ver, " +"pero quieres que solo tĆŗ o tu grupo podĆ”is editarlo." + +#: ../../godmode/reporting/reporting_builder.main.php:193 +msgid "Non interactive report" +msgstr "Informe no interactivo" + +#: ../../godmode/reporting/reporting_builder.php:210 +#: ../../operation/reporting/reporting_viewer.php:101 +msgid "Your report has been planned, and the system will email you a " +msgstr "Se ha planificado su informe, el sistema le enviarĆ” un email a " + +#: ../../godmode/reporting/reporting_builder.php:211 +#: ../../operation/reporting/reporting_viewer.php:102 +msgid "An error has ocurred" +msgstr "Ha ocurrido un error" + +#: ../../godmode/reporting/reporting_builder.php:535 +#: ../../godmode/reporting/reporting_builder.php:3483 +#: ../../godmode/reporting/reporting_builder.php:3566 +#: ../../godmode/reporting/reporting_builder.php:3614 +msgid "Reports list" +msgstr "Lista de informes" + +#: ../../godmode/reporting/reporting_builder.php:551 +#: ../../godmode/reporting/reporting_builder.php:3494 ../../operation/menu.php:318 +#: ../../operation/reporting/custom_reporting.php:23 +msgid "Custom reporting" +msgstr "Informes personalizados" + +#: ../../godmode/reporting/reporting_builder.php:583 +msgid "List of reports" +msgstr "Lista de informes" + +#: ../../godmode/reporting/reporting_builder.php:1044 +msgid "This report exceeds the item limit for realtime operations" +msgstr "Este informe excede el tiempo lĆ­mite para las operaciones de tiempo real." + +#: ../../godmode/reporting/reporting_builder.php:1276 +msgid "Create report" +msgstr "Crear informe" + +#: ../../godmode/reporting/reporting_builder.php:3598 +#: ../../operation/reporting/reporting_viewer.php:173 +msgid "View report" +msgstr "Ver informe" + +#: ../../godmode/reporting/reporting_builder.php:3617 +msgid "Create Custom Report" +msgstr "Crear informa personalizado" + +#: ../../godmode/reporting/reporting_builder.php:3705 +msgid "Unsuccessful action

" +msgstr "AcciĆ³n fallida

" + #: ../../godmode/reporting/visual_console_builder.wizard.php:127 +#: ../../include/functions_visual_map_editor.php:56 msgid "Static Graph" msgstr "GrĆ”fico estĆ”tico" -#: ../../include/functions_visual_map_editor.php:60 +#: ../../godmode/reporting/visual_console_builder.wizard.php:128 +#: ../../include/functions_visual_map_editor.php:57 +#: ../../include/functions_visual_map_editor.php:1388 +#: ../../operation/visual_console/view.php:301 +msgid "Percentile Item" +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:4209 +#: ../../include/rest-api/models/VisualConsole/Item.php:2099 +msgid "Module graph" +msgstr "GrĆ”fico de mĆ³dulo" + #: ../../godmode/reporting/visual_console_builder.wizard.php:130 +#: ../../include/functions_visual_map_editor.php:60 msgid "Simple value" msgstr "Valor simple" +#: ../../godmode/reporting/visual_console_builder.wizard.php:165 +msgid "Range between elements (px)" +msgstr "Rango entre elementos (px)" + +#: ../../godmode/reporting/visual_console_builder.wizard.php:178 +msgid "Size (px)" +msgstr "TamaƱo (px)" + +#: ../../godmode/reporting/visual_console_builder.wizard.php:228 +#: ../../include/functions_config.php:1021 +msgid "Font size" +msgstr "TamaƱo de fuente" + +#: ../../godmode/reporting/visual_console_builder.wizard.php:256 +#: ../../include/functions_visual_map_editor.php:612 +#: ../../include/rest-api/models/VisualConsole/Items/SimpleValue.php:371 +msgid "Process" +msgstr "Procesar" + +#: ../../godmode/reporting/visual_console_builder.wizard.php:259 +#: ../../include/functions_visual_map_editor.php:615 +msgid "Min value" +msgstr "Valor mĆ­nimo" + +#: ../../godmode/reporting/visual_console_builder.wizard.php:260 +#: ../../godmode/reporting/visual_console_builder.wizard.php:278 +#: ../../include/functions_visual_map_editor.php:616 +#: ../../include/functions_visual_map_editor.php:682 +msgid "Max value" +msgstr "Valor mĆ”x." + +#: ../../godmode/reporting/visual_console_builder.wizard.php:261 +#: ../../include/functions_visual_map_editor.php:617 +msgid "Avg value" +msgstr "Valor medio" + +#: ../../godmode/reporting/visual_console_builder.wizard.php:273 +msgid "Width (px)" +msgstr "Ancho (px)" + +#: ../../godmode/reporting/visual_console_builder.wizard.php:295 +#: ../../include/functions_visual_map_editor.php:687 +#: ../../include/rest-api/models/VisualConsole/Items/Percentile.php:459 +msgid "Bubble" +msgstr "Burbuja" + +#: ../../godmode/reporting/visual_console_builder.wizard.php:307 +#: ../../include/functions_visual_map_editor.php:711 +#: ../../include/functions_visual_map_editor.php:729 +#: ../../include/rest-api/models/VisualConsole/Items/Percentile.php:509 +msgid "Value to show" +msgstr "Valor para mostrar" + +#: ../../godmode/reporting/visual_console_builder.wizard.php:309 +#: ../../include/functions_visual_map_editor.php:692 +#: ../../include/rest-api/models/VisualConsole/Items/Percentile.php:504 +msgid "Percent" +msgstr "Porcentaje" + +#: ../../godmode/reporting/visual_console_builder.wizard.php:378 +msgid "One item per agent" +msgstr "Un elemento por agente" + +#: ../../godmode/reporting/visual_console_builder.wizard.php:448 +#: ../../godmode/reporting/visual_console_builder.wizard.php:765 +msgid "Agent - Module" +msgstr "Agente-MĆ³dulo" + +#: ../../godmode/reporting/visual_console_builder.wizard.php:465 +msgid "Enable link agent" +msgstr "Habilitar el enlace del agente" + +#: ../../godmode/reporting/visual_console_builder.wizard.php:476 +msgid "Set Parent" +msgstr "Establecer padre" + +#: ../../godmode/reporting/visual_console_builder.wizard.php:479 +msgid "Item created in the visualmap" +msgstr "Elemento creado en el mapa visual" + +#: ../../godmode/reporting/visual_console_builder.wizard.php:480 +msgid "Use the agents relationship (from selected agents)" +msgstr "Usar la relaciĆ³n entre agentes (de los agentes seleccionados)" + +#: ../../godmode/reporting/visual_console_builder.wizard.php:489 +msgid "Item in the map" +msgstr "Elemento en el mapa" + +#: ../../godmode/reporting/visual_console_builder.wizard.php:490 +#, php-format +msgid "The parenting relationships in %s will be drawn on the map." +msgstr "Las relaciones de jerarquĆ­a de %s se muestran en el mapa." + +#: ../../godmode/reporting/visual_console_builder.wizard.php:510 +#: ../../godmode/reporting/visual_console_builder.wizard.php:514 +msgid "Are you sure to add many elements\\nin visual map?" +msgstr "ĀæEstĆ”s seguro de que quieres aƱadir tantos elementos en la consola visual?" + +#: ../../godmode/reporting/visual_console_builder.wizard.php:686 +msgid "Please select any module or modules." +msgstr "Por favor, selecciona cualquier mĆ³dulo o mĆ³dulos." + +#: ../../godmode/reporting/visual_console_builder.editor.php:163 +msgid "Min allowed size is 1024x768" +msgstr "El tamaƱo mĆ­nimo permitido es 1024x768" + +#: ../../godmode/reporting/visual_console_builder.editor.php:167 +#: ../../godmode/reporting/visual_console_builder.editor.php:169 +#: ../../godmode/reporting/visual_console_builder.editor.php:171 +#: ../../operation/snmpconsole/snmp_browser.php:225 +msgid "Action in progress" +msgstr "AcciĆ³n en curso" + +#: ../../godmode/reporting/visual_console_builder.editor.php:167 +msgid "Loading in progress" +msgstr "Cargando" + +#: ../../godmode/reporting/visual_console_builder.editor.php:169 +msgid "Saving in progress" +msgstr "Guardando" + +#: ../../godmode/reporting/visual_console_builder.editor.php:171 +msgid "Deletion in progress" +msgstr "Eliminando" + +#: ../../godmode/reporting/graph_builder.main.php:218 +#: ../../include/lib/Dashboard/Widgets/custom_graph.php:319 +#: ../../operation/reporting/graph_viewer.php:374 +msgid "Bullet chart" +msgstr "GrĆ”fico de puntos" + +#: ../../godmode/reporting/graph_builder.main.php:219 +#: ../../include/lib/Dashboard/Widgets/custom_graph.php:320 +#: ../../operation/reporting/graph_viewer.php:375 +msgid "Gauge" +msgstr "Calibrador" + +#: ../../godmode/reporting/graph_builder.main.php:222 +#: ../../include/lib/Dashboard/Widgets/custom_graph.php:323 +#: ../../operation/reporting/graph_viewer.php:378 +msgid "Pie" +msgstr "GrĆ”fico circular" + +#: ../../godmode/reporting/graph_builder.main.php:230 +msgid "Equalize maximum thresholds" +msgstr "Igualar umbrales mĆ”ximos" + +#: ../../godmode/reporting/graph_builder.main.php:258 +msgid "Add summatory series" +msgstr "AƱadir series sumatorias" + +#: ../../godmode/reporting/graph_builder.main.php:268 +msgid "Add average series" +msgstr "AƱadir series de promedios" + +#: ../../godmode/reporting/graph_builder.main.php:279 +msgid "Modules and series" +msgstr "MĆ³dulos y series" + +#: ../../godmode/um_client/index.php:96 +#, php-format +msgid "" +"You cannot use update manager %s. You are exceding monitoring limits by %s elements. " +"Please update your license or disable enterprise section by moving enterprise " +"directory to another location and try again." +msgstr "" +"No puede utilizar el administrador de actualizaciones %s. EstĆ”s exiendo los lĆ­mites " +"de supervisiĆ³n al %s elementos. Actualice su licencia." + +#: ../../godmode/um_client/index.php:107 +#, php-format +msgid "" +"You cannot use update manager %s. This license has expired %d days ago. Please update " +"your license or disable enterprise section by moving enterprise directory to another " +"location and try again." +msgstr "" +"No puede utilizar el administrador de actualizaciones %s. Esta licencia ha caducado " +"hace %d dĆ­as. Actualice su licencia." + +#: ../../godmode/um_client/index.php:120 +#, php-format +msgid "" +"You cannot use update manager %s. This license is a trial license to test all %s " +"features. Please update your license to unlock all %s features." +msgstr "" +"No puede utilizar el administrador de actualizaciones %s. Esta licencia es una " +"licencia de prueba para probar todas las caracterĆ­sticas %s. Actualice su licencia " +"para desbloquear todas %s funciones." + +#: ../../godmode/um_client/index.php:216 +#, php-format +msgid "Master server version %s does not match console version %s." +msgstr "La versiĆ³n maestra del servidor %s no coincide con la versiĆ³n de consola %s." + +#: ../../godmode/um_client/index.php:229 +#, php-format +msgid "" +"'%s' recommended value is %s or greater. Please, change it on your PHP configuration " +"file (php.ini) or contact with administrator" +msgstr "" +"El valor recomendado \"%s\" es %s o mayor. Por favor, cĆ”mbielo en su archivo de " +"configuraciĆ³n PHP (php.ini) o pĆ³ngase en contacto con el administrador" + +#: ../../godmode/um_client/index.php:318 +msgid "Update online requires registration." +msgstr "Para actualizar online debe estar registrado." + +#: ../../godmode/um_client/index.php:323 +msgid "" +"Applying offline patches may make your console unusable, we recommend to completely " +"backup your files before applying any patch." +msgstr "" +"La aplicaciĆ³n de parches sin conexiĆ³n puede hacer que su consola sea inutilizable, le " +"recomendamos que haga una copia de seguridad completa de sus archivos antes de " +"aplicar cualquier parche." + +#: ../../godmode/events/event_responses.editor.php:73 +msgid "Edit event responses" +msgstr "Editar respuestas de eventos" + +#: ../../godmode/events/event_responses.editor.php:123 +msgid "For Command type Modal Window mode is enforced" +msgstr "Para tipo comando, se aplica el modo ventana modal" + +#: ../../godmode/events/event_responses.editor.php:125 +msgid "Modal window" +msgstr "Ventana modal" + +#: ../../godmode/events/event_responses.editor.php:126 +msgid "New window" +msgstr "Nueva ventana" + +#: ../../godmode/events/event_responses.editor.php:175 +#: ../../include/class/AgentWizard.class.php:549 +#: ../../include/functions_snmp_browser.php:766 +msgid "Local console" +msgstr "Consola local" + +#: ../../godmode/events/event_responses.editor.php:192 +#: ../../include/class/AgentWizard.class.php:696 +msgid "Server to execute command" +msgstr "Servidor para ejecutar el comando" + +#: ../../godmode/events/event_responses.editor.php:198 +msgid "Command timeout (s)" +msgstr "LĆ­mite(s) de tiempo del comando" + +#: ../../godmode/events/event_responses.editor.php:204 +msgid "Display command" +msgstr "Mostrar comando" + +#: ../../godmode/events/event_responses.editor.php:204 +msgid "" +"If enabled the command will be displayed to any user that can execute this event " +"response" +msgstr "" +"Si estĆ” habilitado, el comando se mostrarĆ” a cualquier usuario que pueda ejecutar " +"esta respuesta de evento" + +#: ../../godmode/events/event_edit_filter.php:254 +msgid "Update Filter" +msgstr "Actualizar el filtro" + +#: ../../godmode/events/event_edit_filter.php:256 +msgid "Create Filter" +msgstr "Crear filtro" + +#: ../../godmode/events/event_edit_filter.php:266 +#: ../../include/ajax/custom_fields.php:571 ../../include/ajax/custom_fields.php:618 +#: ../../include/ajax/custom_fields.php:662 ../../include/ajax/events.php:763 +msgid "Filter name" +msgstr "Nombre del filtro" + +#: ../../godmode/events/event_edit_filter.php:269 +msgid "Save in group" +msgstr "Guardar en grupo" + +#: ../../godmode/events/event_edit_filter.php:269 +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:419 +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:441 ../../operation/events/events.php:1627 +msgid "All events" +msgstr "Todos los eventos" + +#: ../../godmode/events/event_edit_filter.php:442 ../../operation/events/events.php:1628 +#: ../../operation/events/events.php:2231 +msgid "Group events" +msgstr "Eventos agrupados" + +#: ../../godmode/events/event_edit_filter.php:607 ../../operation/events/events.php:1840 +msgid "Filter alert events" +msgstr "Filtrar eventos de alertas" + +#: ../../godmode/events/event_edit_filter.php:608 ../../operation/events/events.php:1841 +msgid "Only alert events" +msgstr "Solo eventos de alertas" + +#: ../../godmode/events/event_edit_filter.php:635 ../../operation/events/events.php:1729 +msgid "Extra ID" +msgstr "ID extra" + +#: ../../godmode/events/event_edit_filter.php:641 +msgid "Custom data filter type" +msgstr "Tipo de filtro de datos personalizado" + +#: ../../godmode/events/event_edit_filter.php:644 +msgid "Filter custom data by name field" +msgstr "Filtrar datos personalizados por campo de nombre" + +#: ../../godmode/events/event_edit_filter.php:645 +msgid "Filter custom data by value field" +msgstr "Filtrar datos personalizados por campo de valor" + +#: ../../godmode/events/event_edit_filter.php:655 +#: ../../godmode/events/custom_events.php:119 +#: ../../include/functions_reporting_html.php:1065 +#: ../../include/functions_reporting_html.php:1326 +#: ../../include/functions_reporting_html.php:2431 ../../include/ajax/events.php:1757 +#: ../../include/functions_events.php:221 ../../include/functions_events.php:323 +msgid "Custom data" +msgstr "Datos personalizados" + +#: ../../godmode/events/event_edit_filter.php:659 +msgid "Id souce event" +msgstr "Evento de origen de ID" + +#: ../../godmode/events/event_responses.list.php:32 +msgid "No responses found" +msgstr "No se encontraron respuestas" + +#: ../../godmode/events/event_responses.list.php:92 +msgid "Create response" +msgstr "Crear respuesta" + +#: ../../godmode/events/custom_events.php:76 +msgid "Load the fields from previous events" +msgstr "Cargar los archivos de eventos previos" + +#: ../../godmode/events/custom_events.php:76 +msgid "Event fields will be loaded. Do you want to continue?" +msgstr "Se cargarĆ”n los archivos de eventos. ĀæDeseas continuar?" + +#: ../../godmode/events/custom_events.php:94 ../../include/functions_events.php:238 +msgid "Event Id" +msgstr "Id de evento" + +#: ../../godmode/events/custom_events.php:95 ../../mobile/operation/events.php:237 +#: ../../include/functions_events.php:241 +msgid "Event Name" +msgstr "Nombre del evento" + +#: ../../godmode/events/custom_events.php:97 +msgid "Agent Name" +msgstr "Nombre de agente" + +#: ../../godmode/events/custom_events.php:98 ../../include/functions_events.php:320 +msgid "Agent IP" +msgstr "IP del agente" + +#: ../../godmode/events/custom_events.php:103 ../../include/functions_events.php:265 +msgid "Event Type" +msgstr "Tipo de evento" + +#: ../../godmode/events/custom_events.php:104 +#: ../../include/class/ModuleTemplates.class.php:1207 +#: ../../include/class/AgentWizard.class.php:1195 +#: ../../include/class/AgentWizard.class.php:4047 ../../include/functions_events.php:268 +msgid "Module Name" +msgstr "Nombre del mĆ³dulo" + +#: ../../godmode/events/custom_events.php:110 ../../include/functions_events.php:286 +msgid "Extra Id" +msgstr "ID extra" + +#: ../../godmode/events/custom_events.php:114 ../../include/functions_events.php:298 +msgid "Server Name" +msgstr "Nombre del servidor" + +#: ../../godmode/events/custom_events.php:117 ../../include/functions_events.php:316 +msgid "Severity mini" +msgstr "Prioridad baja" + +#: ../../godmode/events/custom_events.php:118 ../../include/functions_events.php:307 +#: ../../include/functions_events.php:4697 +msgid "Module custom ID" +msgstr "ID personalizada de mĆ”dulo" + +#: ../../godmode/events/custom_events.php:171 +msgid "Move up selected fields" +msgstr "Mover hacia arriba los campos seleccionados" + +#: ../../godmode/events/custom_events.php:179 +msgid "Move down selected fields" +msgstr "Mover hacia abajo los campos seleccionados" + +#: ../../godmode/events/event_responses.php:51 +msgid "Response added succesfully" +msgstr "Respuesta aƱadida correctamente" + +#: ../../godmode/events/event_responses.php:53 +msgid "Response cannot be added" +msgstr "La respuesta no se puede aƱadir." + +#: ../../godmode/events/event_responses.php:77 +msgid "Response updated succesfully" +msgstr "Repuesta actualizada correctamente" + +#: ../../godmode/events/event_responses.php:79 +msgid "Response cannot be updated" +msgstr "La respuesta no se puede actualizar." + +#: ../../godmode/events/event_responses.php:89 +msgid "Response deleted succesfully" +msgstr "Respuesta eliminada correctamente" + +#: ../../godmode/events/event_responses.php:91 +msgid "Response cannot be deleted" +msgstr "La respuesta no se puede eliminar." + +#: ../../godmode/wizards/HostDevices.class.php:152 +msgid "Net Scan" +msgstr "Net Scan" + +#: ../../godmode/wizards/HostDevices.class.php:172 +msgid "Custom NetScan" +msgstr "NetScan personalizado" + +#: ../../godmode/wizards/HostDevices.class.php:180 +msgid "Manage NetScan scripts" +msgstr "Administrar guiones de NetScan" + +#: ../../godmode/wizards/HostDevices.class.php:325 +#, php-format +msgid "Invalid mimetype for csv file: %s" +msgstr "Mimetype no vĆ”lido para el archivo CSV: %s" + +#: ../../godmode/wizards/HostDevices.class.php:348 +#, php-format +msgid "Invalid content readed from csv file: %s" +msgstr "Lector de contenido del archivo CSV no vĆ”lido: %s" + +#: ../../godmode/wizards/HostDevices.class.php:391 +msgid "" +"This network scan task has been already defined. Please edit it or create a new one." +msgstr "Esta tarea de escaneo de red ya ha sido definida, EdĆ­tela o cree una nueva." + +#: ../../godmode/wizards/HostDevices.class.php:433 +msgid "You must provide a valid network." +msgstr "AƱada una red vĆ”lida." + +#: ../../godmode/wizards/HostDevices.class.php:483 +#: ../../godmode/wizards/HostDevices.class.php:595 +#: ../../include/class/CustomNetScan.class.php:222 +msgid "Failed to find network scan task." +msgstr "No se ha encontrado tarea de escaneo de red." + +#: ../../godmode/wizards/HostDevices.class.php:700 +#, php-format +msgid "\"%s\" features" +msgstr "Funcionalidades \"%s\"" + +#: ../../godmode/wizards/HostDevices.class.php:728 +#: ../../include/class/CustomNetScan.class.php:403 +msgid "Internal error, please re-run this wizard." +msgstr "Error interno, vuelva a ejecutar el asistente." + +#: ../../godmode/wizards/HostDevices.class.php:813 +#: ../../include/class/CustomNetScan.class.php:545 +msgid "The minimum recomended interval for Recon Task is 5 minutes" +msgstr "El intervalo mĆ­nimo recomendado para Recon Task es de 5 minutos." + +#: ../../godmode/wizards/HostDevices.class.php:868 +msgid "Use CSV file definition" +msgstr "Usar definiciĆ³n del archivo CSV" + +#: ../../godmode/wizards/HostDevices.class.php:869 +msgid "Define targets using csv o network definition." +msgstr "Definir objetivos utilizando la definiciĆ³n de CSV o red." + +#: ../../godmode/wizards/HostDevices.class.php:887 +msgid "Networks (csv)" +msgstr "Redes (CSV)" + +#: ../../godmode/wizards/HostDevices.class.php:888 +msgid "" +"You can upload a CSV file. Each line must contain a network in IP/MASK format. For " +"instance: 192.168.1.1/32" +msgstr "" +"Puede subir un archivo CSV. Cada lĆ­nea debe contener una red en formato IP/MASK. Por " +"ejemplo: 192.168.1.1/32" + +#: ../../godmode/wizards/HostDevices.class.php:900 +msgid "Networks (current)" +msgstr "Redes (actual)" + +#: ../../godmode/wizards/HostDevices.class.php:901 +msgid "Please upload a new file to overwrite this content." +msgstr "Sube un nuevo archivo para sobrescribir este contenido." + +#: ../../godmode/wizards/HostDevices.class.php:917 +msgid "" +"You can specify several networks, separated by commas, for example: " +"192.168.50.0/24,192.168.60.0/24" +msgstr "" +"Puedes especificar varias redes, separadas por comas, por ejemplo: " +"192.168.50.0/24,192.168.60.0/24" + +#: ../../godmode/wizards/HostDevices.class.php:1047 +msgid "Filter by opened ports" +msgstr "Filtrar por puertos abiertos" + +#: ../../godmode/wizards/HostDevices.class.php:1049 +msgid "" +"Targets will be scanned if at least one of defined ports (comma separated) is open." +msgstr "" +"Los objetivos se escanearĆ”n si al menos uno de los puertos definidos (separados por " +"comas) estĆ” abierto." + +#: ../../godmode/wizards/HostDevices.class.php:1062 +msgid "Auto discover known hardware" +msgstr "Auto descubrir el hardware conocido" + +#: ../../godmode/wizards/HostDevices.class.php:1064 +msgid "" +"Targets will be monitorized based on its Private Enterprise Number. Requires " +"SNMP." +msgstr "" +"Los objetivos se monitorizarĆ”n en base a su NĆŗmero de empresa privado. Precisa " +"de SNMP." + +#: ../../godmode/wizards/HostDevices.class.php:1079 +msgid "Module Host Alive will be added to discovered agents by default." +msgstr "El mĆ³dulo Host Alive se aƱadirĆ” a los agentes descubiertos por defecto." + +#: ../../godmode/wizards/HostDevices.class.php:1127 +#, php-format +msgid "" +"Configured networks could generate %d agents, your license only allows %d, 'review " +"results' is mandatory." +msgstr "" +"Las redes configuradas pueden generar %d agentes, su licencia solo permite %d, " +"'revisar resultados' es obligatorio." + +#: ../../godmode/wizards/HostDevices.class.php:1135 +#: ../../godmode/wizards/DiscoveryTaskList.class.php:908 +msgid "Review results" +msgstr "Revisar resultados" + +#: ../../godmode/wizards/HostDevices.class.php:1137 +msgid "Targets must be validated by user before create agents." +msgstr "El usuario debe validar los objetivos antes de crear agentes" + +#: ../../godmode/wizards/HostDevices.class.php:1163 +msgid "Apply autoconfiguration rules" +msgstr "Aplicar normas de autoconfiguraciĆ³n" + +#: ../../godmode/wizards/HostDevices.class.php:1165 +msgid "" +"System is able to auto configure detected host & devices by applying your defined " +"configuration rules." +msgstr "" +"El sistema puede auto configurar el host y los dispositivos detectados aplicando las " +"normas de configuraciĆ³n." + +#: ../../godmode/wizards/HostDevices.class.php:1181 +msgid "SNMP enabled" +msgstr "SNMP activado" + +#: ../../godmode/wizards/HostDevices.class.php:1223 +msgid "SNMP communities to try with" +msgstr "Comunidades SNMP con las que probar" + +#: ../../godmode/wizards/HostDevices.class.php:1225 +msgid "" +"You can specify several values, separated by commas, for example: public,mysecret,1234" +msgstr "" +"Puede especificar varios valores, separados por coma, por ejemplo: public," +"mysecret,1234" + +#: ../../godmode/wizards/HostDevices.class.php:1353 +msgid "OS detection" +msgstr "DetecciĆ³n de SO" + +#: ../../godmode/wizards/HostDevices.class.php:1365 +msgid "Name resolution" +msgstr "ResoluciĆ³n de nombres" + +#: ../../godmode/wizards/HostDevices.class.php:1376 +msgid "Parent detection" +msgstr "DetecciĆ³n de padres" + +#: ../../godmode/wizards/HostDevices.class.php:1387 +msgid "Parent recursion" +msgstr "RecursiĆ³n del padre" + +#: ../../godmode/wizards/HostDevices.class.php:1398 +msgid "VLAN enabled" +msgstr "VLAN habilitada" + +#: ../../godmode/wizards/HostDevices.class.php:1409 +msgid "WMI enabled" +msgstr "WMI habilitado" + +#: ../../godmode/wizards/DiscoveryTaskList.class.php:254 +msgid "Task successfully deleted" +msgstr "Tarea eliminada" + +#: ../../godmode/wizards/DiscoveryTaskList.class.php:361 +#: ../../godmode/wizards/DiscoveryTaskList.class.php:488 +msgid "Task successfully enabled" +msgstr "Tarea habilitada correctamente" + +#: ../../godmode/wizards/DiscoveryTaskList.class.php:361 +msgid "Task succesfully disabled" +msgstr "Tarea deshabilitada con Ć©xito" + +#: ../../godmode/wizards/DiscoveryTaskList.class.php:401 +msgid "Console Task successfully deleted" +msgstr "Tarea de la consola eliminada" + +#: ../../godmode/wizards/DiscoveryTaskList.class.php:443 +msgid "Task successfully disabled" +msgstr "Tarea deshabilitada correctamente" + +#: ../../godmode/wizards/DiscoveryTaskList.class.php:520 +msgid "Discovery Server is disabled" +msgstr "El servidor discovery estĆ” deshabilitado" + +#: ../../godmode/wizards/DiscoveryTaskList.class.php:603 +msgid "Task type" +msgstr "Tipo de tarea" + +#: ../../godmode/wizards/DiscoveryTaskList.class.php:665 +msgid "This action will rescan the target networks." +msgstr "Esta acciĆ³n reescanearĆ” las redes objetivo." + +#: ../../godmode/wizards/DiscoveryTaskList.class.php:682 +msgid "This task has not been completely defined, please edit it" +msgstr "La tarea no se ha definido por completo, edĆ­tela." + +#: ../../godmode/wizards/DiscoveryTaskList.class.php:732 +msgid "Discovery Cloud Azure Compute" +msgstr "Discovery Cloud Azure Compute" + +#: ../../godmode/wizards/DiscoveryTaskList.class.php:736 +msgid "Cloud.Azure.Compute" +msgstr "Cloud.Azure.Compute" + +#: ../../godmode/wizards/DiscoveryTaskList.class.php:745 +msgid "Discovery Cloud AWS EC2" +msgstr "Discovery Cloud AWS EC2" + +#: ../../godmode/wizards/DiscoveryTaskList.class.php:749 +msgid "Cloud.AWS.EC2" +msgstr "Cloud.AWS.EC2" + +#: ../../godmode/wizards/DiscoveryTaskList.class.php:758 +msgid "Discovery Cloud RDS" +msgstr "Discovery Cloud RDS" + +#: ../../godmode/wizards/DiscoveryTaskList.class.php:762 +msgid "Discovery.Cloud.Aws.RDS" +msgstr "Discovery.Cloud.Aws.RDS" + +#: ../../godmode/wizards/DiscoveryTaskList.class.php:771 +msgid "Discovery Cloud S3" +msgstr "Discovery Cloud S3" + +#: ../../godmode/wizards/DiscoveryTaskList.class.php:775 +msgid "Discovery.Cloud.Aws.S3" +msgstr "Discovery.Cloud.Aws.S3" + +#: ../../godmode/wizards/DiscoveryTaskList.class.php:784 +msgid "Discovery Applications MySQL" +msgstr "Aplicaciones MySQL de Discovery" + +#: ../../godmode/wizards/DiscoveryTaskList.class.php:788 +msgid "Discovery.App.MySQL" +msgstr "Discovery.App.MySQL" + +#: ../../godmode/wizards/DiscoveryTaskList.class.php:797 +msgid "Discovery Applications Oracle" +msgstr "Aplicaciones de Discovery de Oracle" + +#: ../../godmode/wizards/DiscoveryTaskList.class.php:801 +msgid "Discovery.App.Oracle" +msgstr "Discovery.App.Oracle" + +#: ../../godmode/wizards/DiscoveryTaskList.class.php:810 +msgid "Discovery Applications DB2" +msgstr "Aplicaciones DB2 de discovery" + +#: ../../godmode/wizards/DiscoveryTaskList.class.php:814 +msgid "Discovery.App.DB2" +msgstr "Discovery.App.DB2" + +#: ../../godmode/wizards/DiscoveryTaskList.class.php:825 +msgid "Discovery.Agent.Deployment" +msgstr "Discovery.Agent.Deployment" + +#: ../../godmode/wizards/DiscoveryTaskList.class.php:833 +msgid "Discovery Applications Microsoft SQL Server" +msgstr "Servidor Microsoft SQL de aplicaciones Discovery" + +#: ../../godmode/wizards/DiscoveryTaskList.class.php:835 +msgid "Discovery.App.Microsoft SQL Server" +msgstr "Discovery.App.Microsoft SQL Server" + +#: ../../godmode/wizards/DiscoveryTaskList.class.php:846 +msgid "Discovery NetScan" +msgstr "Discovery NetScan" + +#: ../../godmode/wizards/DiscoveryTaskList.class.php:850 +msgid "Discovery.NetScan" +msgstr "Discovery.NetScan" + +#: ../../godmode/wizards/DiscoveryTaskList.class.php:896 +msgid "Not executed yet" +msgstr "AĆŗn no ejecutado" + +#: ../../godmode/wizards/DiscoveryTaskList.class.php:920 +msgid "View summary" +msgstr "Ver el resumen" + +#: ../../godmode/wizards/DiscoveryTaskList.class.php:941 +msgid "View map" +msgstr "Ver el mapa" + +#: ../../godmode/wizards/DiscoveryTaskList.class.php:965 +#: ../../godmode/wizards/DiscoveryTaskList.class.php:991 +msgid "Edit task" +msgstr "Editar tarea" + +#: ../../godmode/wizards/DiscoveryTaskList.class.php:975 +#: ../../godmode/wizards/DiscoveryTaskList.class.php:1001 +msgid "Delete task" +msgstr "Eliminar tarea" + +#: ../../godmode/wizards/DiscoveryTaskList.class.php:1014 +msgid "enable task" +msgstr "habilitar tarea" + +#: ../../godmode/wizards/DiscoveryTaskList.class.php:1043 +msgid "has no discovery tasks assigned" +msgstr "No tiene tareas de discovery asignadas" + +#: ../../godmode/wizards/DiscoveryTaskList.class.php:1050 +msgid "Server Tasks" +msgstr "Tareas de servidor" + +#: ../../godmode/wizards/DiscoveryTaskList.class.php:1197 +msgid "Overall Progress" +msgstr "Progreso total" + +#: ../../godmode/wizards/DiscoveryTaskList.class.php:1216 +msgid "Scanning network" +msgstr "Escaneando red" + +#: ../../godmode/wizards/DiscoveryTaskList.class.php:1220 +msgid "Checking" +msgstr "Comprobando" + +#: ../../godmode/wizards/DiscoveryTaskList.class.php:1224 +msgid "Finding AFT connectivity" +msgstr "Buscando conexiĆ³n AFT" + +#: ../../godmode/wizards/DiscoveryTaskList.class.php:1228 +msgid "Finding traceroute connectivity" +msgstr "Buscando conexiĆ³n traceroute" + +#: ../../godmode/wizards/DiscoveryTaskList.class.php:1232 +msgid "Finding gateway connectivity" +msgstr "Buscando conexiĆ³n de entrada" + +#: ../../godmode/wizards/DiscoveryTaskList.class.php:1236 +msgid "Searching for devices..." +msgstr "Buscando dispositivos..." + +#: ../../godmode/wizards/DiscoveryTaskList.class.php:1240 +msgid "Analyzing application..." +msgstr "Analizando aplicaciĆ³n..." + +#: ../../godmode/wizards/DiscoveryTaskList.class.php:1244 +msgid "Executing custom queries..." +msgstr "Ejecutando consultas personalizadas..." + +#: ../../godmode/wizards/DiscoveryTaskList.class.php:1248 +msgid "Testing modules..." +msgstr "Probando mĆ³dulos..." + +#: ../../godmode/wizards/DiscoveryTaskList.class.php:1252 +msgid "Processing results..." +msgstr "Procesando resultados..." + +#: ../../godmode/wizards/DiscoveryTaskList.class.php:1256 +msgid "Processing..." +msgstr "Procesandoā€¦" + +#: ../../godmode/wizards/DiscoveryTaskList.class.php:1289 +#: ../../godmode/wizards/DiscoveryTaskList.class.php:1853 +#: ../../operation/agentes/log_sources_status.php:57 +msgid "Review" +msgstr "Revisar" + +#: ../../godmode/wizards/DiscoveryTaskList.class.php:1369 +msgid "Host&devices total" +msgstr "Total Host&devices" + +#: ../../godmode/wizards/DiscoveryTaskList.class.php:1374 +msgid "Agents monitored" +msgstr "Agentes monitorizados" + +#: ../../godmode/wizards/DiscoveryTaskList.class.php:1379 +msgid "Agents pending" +msgstr "Agentes pendientes" + +#: ../../godmode/wizards/DiscoveryTaskList.class.php:1386 +msgid "Hosts discovered" +msgstr "Hosts encontrados" + +#: ../../godmode/wizards/DiscoveryTaskList.class.php:1402 +msgid "Responding SNMP" +msgstr "SNMP disponible" + +#: ../../godmode/wizards/DiscoveryTaskList.class.php:1407 +msgid "Responding WMI" +msgstr "WMI disponible" + +#: ../../godmode/wizards/DiscoveryTaskList.class.php:1452 +msgid "Task completed." +msgstr "Tarea finalizada." + +#: ../../godmode/wizards/DiscoveryTaskList.class.php:1454 +msgid "This task has never executed" +msgstr "Esta tarea nunca se ha ejecutado" + +#: ../../godmode/wizards/DiscoveryTaskList.class.php:1466 +msgid "Task queued, please wait." +msgstr "Tarea encolada, espere." + +#: ../../godmode/wizards/DiscoveryTaskList.class.php:1510 +msgid "" +"Please ensure instances or regions are being monitorized and 'scan and general " +"monitoring' is enabled." +msgstr "" +"AsegĆŗrese de que las instancias o las regiones estĆ”n siendo monitorizadas y 'escaneo " +"y monitorizaciĆ³n general' estĆ” habilitado." + +#: ../../godmode/wizards/DiscoveryTaskList.class.php:1528 +#: ../../godmode/wizards/DiscoveryTaskList.class.php:1670 +msgid "Invalid task" +msgstr "Tarea no vĆ”lida" + +#: ../../godmode/wizards/DiscoveryTaskList.class.php:1627 +msgid "Please select devices to be monitored" +msgstr "Seleccione los dispositivos que desee monitorizar" + +#: ../../godmode/wizards/DiscoveryTaskList.class.php:1630 +msgid "select all" +msgstr "seleccionar todo" + +#: ../../godmode/wizards/DiscoveryTaskList.class.php:1633 +msgid "deselect all" +msgstr "deseleccionar todo" + +#: ../../godmode/wizards/DiscoveryTaskList.class.php:1636 +msgid "expand all" +msgstr "expandir todo" + +#: ../../godmode/wizards/DiscoveryTaskList.class.php:1639 +msgid "collapse all" +msgstr "plegar todo" + +#: ../../godmode/wizards/DiscoveryTaskList.class.php:1653 +msgid "No devices found in temporary resources, please re-launch." +msgstr "" +"No se han encontrado dispositivos en los recursos temporales, por favor vuelva a " +"lanzarlo." + +#: ../../godmode/wizards/DiscoveryTaskList.class.php:1720 +#, php-format +msgid "Your selection exceeds the agents available on your license. Limit %d" +msgstr "La selecciĆ³n excede el nĆŗmero de agentes disponibles en la licencia. LĆ­mite %d" + +#: ../../godmode/wizards/DiscoveryTaskList.class.php:1744 +#: ../../godmode/wizards/DiscoveryTaskList.class.php:1763 +msgid "Removed" +msgstr "Eliminado" + +#: ../../godmode/wizards/DiscoveryTaskList.class.php:1800 +msgid "No changes. Re-Scheduled" +msgstr "No hay cambios. Reprogramado" + +#: ../../godmode/wizards/DiscoveryTaskList.class.php:1802 +msgid "Scheduled for creation" +msgstr "Programa de creaciĆ³n" + +#: ../../godmode/wizards/DiscoveryTaskList.class.php:1829 +msgid "Cancelled" +msgstr "Cancelado" + +#: ../../godmode/wizards/DiscoveryTaskList.class.php:1830 +msgid "Server has been restarted while executing this task, please retry." +msgstr "" +"El servidor se ha reiniciado mientras ejecutaba esta tarea, vuelva a intentarlo." + +#: ../../godmode/wizards/DiscoveryTaskList.class.php:1837 +#: ../../godmode/wizards/DiscoveryTaskList.class.php:1843 +#: ../../include/help/clippy/operation_agentes_ver_agente.php:40 +#: ../../include/help/clippy/godmode_agentes_configurar_agente.php:119 +msgid "Done" +msgstr "Hecho" + +#: ../../godmode/wizards/DiscoveryTaskList.class.php:1841 +#: ../../godmode/wizards/DiscoveryTaskList.class.php:1858 +msgid "Not started" +msgstr "No iniciado" + +#: ../../godmode/wizards/DiscoveryTaskList.class.php:1863 +msgid "Searching" +msgstr "Buscando" + +#: ../../godmode/servers/servers.build_table.php:118 +msgid "Server has crashed." +msgstr "El servidor se ha caĆ­do." + +#: ../../godmode/servers/servers.build_table.php:126 +msgid "Server is stopped." +msgstr "El servidor se ha parado." + +#: ../../godmode/servers/servers.build_table.php:138 +msgid "Exec server enabled" +msgstr "Servidor de ejecuciĆ³n habilitado" + +#: ../../godmode/servers/servers.build_table.php:196 +msgid "Manage Discovery tasks" +msgstr "Gestionar las tareas de Discovery" + +#: ../../godmode/servers/servers.build_table.php:211 +msgid "Reset module status and fired alert counts" +msgstr "Reiniciar el estado de los mĆ³dulos y el conteo de las alertas disparadas" + +#: ../../godmode/servers/servers.build_table.php:222 +msgid "Claim back SNMP modules" +msgstr "Recuperar mĆ³dulos SNMP" + +#: ../../godmode/servers/modificar_server.php:34 +msgid "Update Server" +msgstr "Actualizar el servidor" + +#: ../../godmode/servers/modificar_server.php:40 ../../godmode/servers/plugin.php:346 +#: ../../godmode/servers/plugin.php:845 +msgid "Standard" +msgstr "EstĆ”ndar" + +#: ../../godmode/servers/modificar_server.php:77 +msgid "Exec Server" +msgstr "Ejecutar el servidor" + +#: ../../godmode/servers/modificar_server.php:85 +msgid "Leave blank to use SSH default port (22)" +msgstr "Dejar en blanco para usar el puerto SSH por defecto (22)" + +#: ../../godmode/servers/modificar_server.php:90 +msgid "Check Exec Server" +msgstr "Comprobar ejecuciĆ³n del servidor" + +#: ../../godmode/servers/modificar_server.php:106 +msgid "Credential boxes" +msgstr "Recuadro de credenciales" + +#: ../../godmode/servers/modificar_server.php:130 +msgid "Standard editor" +msgstr "Editor estĆ”ndar" + +#: ../../godmode/servers/modificar_server.php:134 +msgid "Advanced editor" +msgstr "Editor avanzado" + +#: ../../godmode/servers/modificar_server.php:141 +msgid "Remote Configuration" +msgstr "ConfiguraciĆ³n remota" + +#: ../../godmode/servers/modificar_server.php:150 +#, php-format +msgid "%s servers" +msgstr "Servidores de %s" + +#: ../../godmode/servers/modificar_server.php:159 +#: ../../godmode/servers/modificar_server.php:170 +msgid "Successfully action" +msgstr "AcciĆ³n procesada satisfactoriamente" + +#: ../../godmode/servers/modificar_server.php:201 +msgid "Server updated successfully" +msgstr "Servidor actualizado correctamente" + +#: ../../godmode/servers/modificar_server.php:203 +msgid "There was a problem updating the server" +msgstr "Hubo un problema al actualizar el servidor" + +#: ../../godmode/servers/plugin_registration.php:59 ../../godmode/servers/plugin.php:290 +#: ../../godmode/servers/plugin.php:617 +msgid "To manage plugin you must activate centralized management" +msgstr "Active la gestiĆ³n centralizada para gestionar el plugin" + +#: ../../godmode/servers/plugin_registration.php:65 +msgid "PLUGIN REGISTRATION" +msgstr "REGISTRO DE PLUGINS" + +#: ../../godmode/servers/plugin_registration.php:76 +#, php-format +msgid "" +"This console is not manager of this environment, please manage this feature from " +"feature from %s." +msgstr "" +"La consola no administra este entorno, gestione esta funcionalidad desde la " +"funcionalidad desde %s." + +#: ../../godmode/servers/plugin_registration.php:95 +msgid "Plugin Registration" +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" + +#: ../../godmode/servers/plugin_registration.php:105 +msgid "Public Resource Library" +msgstr "Biblioteca de Recursos PĆŗblicos" + +#: ../../godmode/servers/plugin_registration.php:133 +msgid "Failed to create temporary directory" +msgstr "Error al crear un directorio temporal" + +#: ../../godmode/servers/plugin_registration.php:152 +msgid "Cannot load INI file" +msgstr "No se puede abrir el archivo .INI" + +#: ../../godmode/servers/plugin_registration.php:177 +msgid "Plugin exec not found. Aborting!" +msgstr "Plugin de ejecuciĆ³n no encontrado. Ā”Deteniendo el proceso!" + +#: ../../godmode/servers/plugin_registration.php:188 +msgid "Plugin already registered. Aborting!" +msgstr "El plugin ya estĆ” registrado. Ā”Deteniendo el proceso!" + +#: ../../godmode/servers/plugin_registration.php:355 +msgid "Plug-in Remote Registered unsuccessfull" +msgstr "Error al registrar el plugin remoto" + +#: ../../godmode/servers/plugin_registration.php:358 +msgid "Please check the syntax of file \"plugin_definition.ini\"" +msgstr "Por favor, comprueba la sintaxis del archivo \"plugin_definition.ini\"." + +#: ../../godmode/servers/plugin_registration.php:498 +msgid "Module plugin registered" +msgstr "Plugin de mĆ³dulo registrado" + +#: ../../godmode/servers/plugin_registration.php:503 +msgid "Registered successfully" +msgstr "Registrado correctamente" + +#: ../../godmode/servers/plugin_registration.php:516 +msgid "Unable to uncompress uploaded file" +msgstr "No se puede descomprimir el archivo cargado" + +#: ../../godmode/servers/plugin_registration.php:534 +#, php-format +msgid "Cannot move uploaded file to %s." +msgstr "No se puede mover el archivo cargado a %s." + +#: ../../godmode/servers/plugin.php:73 +msgid "Network Components" +msgstr "Componentes de red" + +#: ../../godmode/servers/plugin.php:303 +msgid "Plugin update" +msgstr "ActualizaciĆ³n de plugin" + +#: ../../godmode/servers/plugin.php:314 ../../godmode/servers/plugin.php:636 +msgid "" +"This console is not manager of this environment,\n" +" \t\tplease manage this feature from centralized manager console (Metaconsole)." +msgstr "" +"Esta consola no administra este entorno,\n" +" \t\tadministre esta funcionalidad desde el administrador centralizado de la " +"consola (Metaconsola)." + +#: ../../godmode/servers/plugin.php:345 +msgid "Plugin type" +msgstr "Tipo de plugin" + +#: ../../godmode/servers/plugin.php:347 ../../godmode/servers/plugin.php:847 +msgid "Nagios" +msgstr "Nagios" + +#: ../../godmode/servers/plugin.php:352 +msgid "Max. timeout" +msgstr "MĆ”x. tiempo de espera" + +#: ../../godmode/servers/plugin.php:352 +msgid "" +"This value only will be applied if is minor than the server general configuration " +"plugin timeout" +msgstr "" +"Este valor solo se aplicarĆ” si es menor que el tiempo de espera del plugin de la " +"configuraciĆ³n general del servidor." + +#: ../../godmode/servers/plugin.php:352 +msgid "If you set a 0 seconds timeout, the server plugin timeout will be used" +msgstr "" +"Si configuras en 0 segundos el tiempo de espera, se utilizarĆ” el tiempo de espera del " +"plugin del servidor." + +#: ../../godmode/servers/plugin.php:401 +msgid "Plugin command" +msgstr "Comando del plugin" + +#: ../../godmode/servers/plugin.php:401 +msgid "Specify interpreter and plugin path. The server needs permissions to run it." +msgstr "" +"Especifique el intĆ©rprete y la ruta del plugin. El servidor necesita permisos para " +"ejecutarlo." + +#: ../../godmode/servers/plugin.php:413 +msgid "Plug-in parameters" +msgstr "ParĆ”metros del plugin" + +#: ../../godmode/servers/plugin.php:505 +#: ../../include/class/ManageNetScanScripts.class.php:667 +msgid "Hide value" +msgstr "Ocultar valor" + +#: ../../godmode/servers/plugin.php:506 +#: ../../include/class/ManageNetScanScripts.class.php:669 +msgid "This field will show up as dots like a password" +msgstr "En este campo aparecerĆ”n puntos como en un campo de tipo contraseƱa." + +#: ../../godmode/servers/plugin.php:581 ../../godmode/servers/plugin.php:586 +msgid "Parameters macros" +msgstr "Macros de los parĆ”metros" + +#: ../../godmode/servers/plugin.php:623 +#, php-format +msgid "Plug-ins registered on %s" +msgstr "Plugins registrados en %s" + +#: ../../godmode/servers/plugin.php:645 +msgid "You need to create your own plugins with Windows compatibility" +msgstr "Necesitas crear tus propios plugins compatibles con Windows." + +#: ../../godmode/servers/plugin.php:711 +msgid "Problem updating plugin" +msgstr "Problema al actualizar el plugin" + +#: ../../godmode/servers/plugin.php:713 +msgid "Plugin updated successfully" +msgstr "Plugin actualizado correctamente" + +#: ../../godmode/servers/plugin.php:771 +msgid "Problem creating plugin" +msgstr "Error al crear plugin" + +#: ../../godmode/servers/plugin.php:773 +msgid "Plugin created successfully" +msgstr "Plugin creado correctamente" + +#: ../../godmode/servers/plugin.php:785 +msgid "Problem deleting plugin" +msgstr "Error al borrar plugin" + +#: ../../godmode/servers/plugin.php:787 ../../godmode/servers/plugin.php:799 +msgid "Plugin deleted successfully" +msgstr "Plugin borrado correctamente" + +#: ../../godmode/servers/plugin.php:884 +msgid "All the modules that are using this plugin will be deleted" +msgstr "Todos los mĆ³dulos que estĆ©n utilizando este plugin se borrarĆ”n." + +#: ../../godmode/servers/plugin.php:901 +msgid "There are no plugins in the system" +msgstr "No hay plugins en el sistema" + +#: ../../godmode/servers/plugin.php:915 +#, php-format +msgid "List of modules and components created by \"%s\" " +msgstr "Lista de los mĆ³dulos y componentes creados por '%s' " + +#: ../../godmode/servers/plugin.php:1021 ../../godmode/servers/plugin.php:1037 +msgid "Some modules or components are using the plugin" +msgstr "Algunos mĆ³dulos o componentes estĆ”n usando el plugin." + +#: ../../godmode/servers/plugin.php:1022 +msgid "" +"The modules or components should be updated manually or using the bulk operations for " +"plugins after this change" +msgstr "" +"Los mĆ³dulos o componentes deberĆ­an ser actualizados manualmente o usando las " +"operaciones masivas para los plugins despuĆ©s de este cambio." + +#: ../../godmode/servers/plugin.php:1024 +msgid "Are you sure you want to perform this action?" +msgstr "ĀæEstĆ”s seguro de que quieres realizar esta acciĆ³n?" + +#: ../../godmode/servers/plugin.php:1038 +msgid "Are you sure you want to unlock this item?" +msgstr "ĀæEstĆ”s seguro de que quieres desbloquear este elemento?" + +#: ../../godmode/servers/plugin.php:1058 +msgid "" +"The plugin command cannot be updated because some modules or components are using the " +"plugin." +msgstr "" +"No se puede actualizar el comando. Este plugin estĆ” siendo utilizado por mĆ³dulos o " +"componentes." + +#: ../../godmode/servers/plugin.php:1064 +msgid "" +"The plugin macros cannot be updated because some modules or components are using the " +"plugin" +msgstr "" +"Las macros del plugin no pueden ser actualizadas porque algunos mĆ³dulos o componentes " +"estĆ”n usando el plugin." + +#: ../../godmode/servers/discovery.php:182 +msgid "You must create a task first" +msgstr "Primero debe crear una tarea" + +#: ../../godmode/tag/tag.php:117 +msgid "Number of modules" +msgstr "NĆŗmero de mĆ³dulos" + +#: ../../godmode/tag/tag.php:119 +msgid "Number of policy modules" +msgstr "NĆŗmero de mĆ³dulos de polĆ­tica" + +#: ../../godmode/tag/tag.php:140 ../../godmode/tag/edit_tag.php:57 +#: ../../godmode/tag/edit_tag.php:75 +msgid "List tags" +msgstr "Listar etiquetas" + +#: ../../godmode/tag/tag.php:152 ../../godmode/tag/edit_tag.php:85 +msgid "Tags configuration" +msgstr "ConfiguraciĆ³n de etiquetas" + +#: ../../godmode/tag/tag.php:178 +msgid "Successfully deleted tag" +msgstr "Etiqueta eliminada correctamente" + +#: ../../godmode/tag/tag.php:179 +msgid "Error deleting tag" +msgstr "Error al eliminar la etiqueta" + +#: ../../godmode/tag/tag.php:195 +#, php-format +msgid "" +"This node is configured with centralized mode. All tags information is read only. Go " +"to %s to manage it." +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/tag/tag.php:277 +msgid "Tag name" +msgstr "Nombre de etiqueta" + +#: ../../godmode/tag/tag.php:279 +msgid "Detail information" +msgstr "InformaciĆ³n de los detalles" + +#: ../../godmode/tag/tag.php:280 +msgid "Number of modules affected" +msgstr "NĆŗmero de mĆ³dulos afectados" + +#: ../../godmode/tag/tag.php:282 ../../godmode/tag/edit_tag.php:251 +msgid "Phone" +msgstr "TelĆ©fono" + +#: ../../godmode/tag/tag.php:311 +msgid "Tag details" +msgstr "Detalles de la etiqueta" + +#: ../../godmode/tag/tag.php:344 +#, php-format +msgid "Emails for the tag: %s" +msgstr "Correos para la etiqueta: %s" + +#: ../../godmode/tag/tag.php:367 +#, php-format +msgid "Phones for the tag: %s" +msgstr "TelĆ©fonos par la etiqueta: %s" + +#: ../../godmode/tag/tag.php:413 +msgid "No tags defined" +msgstr "Etiquetas no definidas" + +#: ../../godmode/tag/tag.php:428 +msgid "Create tag" +msgstr "Crear etiqueta" + +#: ../../godmode/tag/edit_tag.php:128 +msgid "Successfully updated tag" +msgstr "Etiqueta actualizada correctamente" + +#: ../../godmode/tag/edit_tag.php:129 +msgid "Error updating tag" +msgstr "Error al actualizar la etiqueta" + +#: ../../godmode/tag/edit_tag.php:169 +msgid "Successfully created tag" +msgstr "Etiqueta creada correctamente" + +#: ../../godmode/tag/edit_tag.php:170 +msgid "Error creating tag" +msgstr "Error al crear etiqueta" + +#: ../../godmode/tag/edit_tag.php:201 +msgid "Update Tag" +msgstr "Actualizar etiqueta" + +#: ../../godmode/tag/edit_tag.php:205 +msgid "Create Tag" +msgstr "Crear etiqueta" + +#: ../../godmode/tag/edit_tag.php:229 +msgid "Hyperlink to help information that has to exist previously." +msgstr "HipervĆ­nculo a la informaciĆ³n de ayuda que debe existir previamente" + +#: ../../godmode/tag/edit_tag.php:241 +msgid "Associated Email direction to use later in alerts associated to Tags." +msgstr "" +"Direccion de email asociada para utilizarla despuĆ©s en alertas asociadas a etiquetas" + +#: ../../godmode/tag/edit_tag.php:253 +msgid "Associated phone number to use later in alerts associated to Tags." +msgstr "" +"NĆŗmero de telĆ©fono asociado para usar posteriormente en alertas asociadas a etiquetas" + +#: ../../godmode/category/category.php:63 ../../godmode/category/category.php:77 +#: ../../godmode/category/edit_category.php:47 +#: ../../godmode/category/edit_category.php:61 +msgid "List categories" +msgstr "Lista de categorĆ­as" + +#: ../../godmode/category/category.php:89 ../../godmode/category/category.php:91 +#: ../../godmode/category/edit_category.php:73 +#: ../../godmode/category/edit_category.php:75 +msgid "Categories configuration" +msgstr "ConfiguraciĆ³n de categorĆ­as" + +#: ../../godmode/category/category.php:108 +#, php-format +msgid "" +"This node is configured with centralized mode. All categories information is read " +"only. Go to %s to manage it." +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/category/category.php:123 +msgid "Error deleting category" +msgstr "Error al eliminar la categorĆ­a" + +#: ../../godmode/category/category.php:129 +msgid "Successfully deleted category" +msgstr "CategorĆ­a eliminada correctamente" + +#: ../../godmode/category/category.php:168 +msgid "Category name" +msgstr "Nombre de la categorĆ­a" + +#: ../../godmode/category/category.php:226 +msgid "No categories found" +msgstr "Ninguna categorĆ­a encontrada" + +#: ../../godmode/category/category.php:239 ../../godmode/category/edit_category.php:171 +msgid "Create category" +msgstr "Crear categorĆ­a" + +#: ../../godmode/category/edit_category.php:73 +msgid "Editor" +msgstr "Editor" + +#: ../../godmode/category/edit_category.php:95 +msgid "Error updating category" +msgstr "Error al actualizar categorĆ­a" + +#: ../../godmode/category/edit_category.php:101 +msgid "Successfully updated category" +msgstr "CategorĆ­a actualizada correctamente" + +#: ../../godmode/category/edit_category.php:123 +msgid "Error creating category" +msgstr "Error al crear categorĆ­a" + +#: ../../godmode/category/edit_category.php:131 +msgid "Successfully created category" +msgstr "CategorĆ­a creada correctamente" + +#: ../../godmode/category/edit_category.php:163 +msgid "Update category" +msgstr "Actualizar categorĆ­a" + +#: ../../godmode/module_library/module_library_view.php:68 +msgid "Main view" +msgstr "Vista principal" + +#: ../../godmode/module_library/module_library_view.php:147 +msgid "View all categories" +msgstr "Ver todas las categorĆ­as" + +#: ../../godmode/module_library/module_library_view.php:158 +msgid "More details" +msgstr "MĆ”s detalles" + +#: ../../godmode/module_library/module_library_view.php:160 +msgid "View in Module Library" +msgstr "Ver en Biblioteca de mĆ³dulos" + +#: ../../godmode/module_library/module_library_view.php:161 +msgid "No module found" +msgstr "No se ha encontrado el mĆ³dulo" + +#: ../../godmode/module_library/module_library_view.php:164 +msgid "Error loading Module Library" +msgstr "Error al cargar la Biblioteca de mĆ³dulos" + +#: ../../godmode/module_library/module_library_view.php:165 +msgid "Error loading category" +msgstr "Error al cargar la categorĆ­a" + +#: ../../godmode/module_library/module_library_view.php:166 +msgid "Error loading categories" +msgstr "Error al cargar las categorĆ­as" + +#: ../../godmode/module_library/module_library_view.php:167 +msgid "There is no such category" +msgstr "La categorĆ­a no existe" + +#: ../../godmode/module_library/module_library_view.php:168 +msgid "Error loading results" +msgstr "Error al cargar los resultados" + +#: ../../mobile/include/functions_web.php:83 +#, php-format +msgid "Pandora FMS %s - Build %s" +msgstr "Pandora FMS %s - RevisiĆ³n %s" + +#: ../../mobile/include/system.class.php:156 +msgid "" +"Access to this page is restricted to authorized users only, please contact your " +"system administrator if you should need help." +msgstr "" +"El acceso a esta pĆ”gina estĆ” restringido Ćŗnicamente a los usuarios autorizados. " +"PĆ³ngase en contacto con el administrador de sistemas si necesita ayuda." + +#: ../../mobile/include/system.class.php:156 +#, php-format +msgid "" +"Please remember that any attempts to access this page will be recorded on the %s " +"System Database." +msgstr "" +"Recuerde que cualquier intento de acceso a esta pĆ”gina quedara grabado en la base de " +"datos del sistema de %s." + +#: ../../mobile/include/ui.class.php:120 +#, php-format +msgid "%s mobile" +msgstr "%s mĆ³vil" + +#: ../../mobile/include/ui.class.php:217 +#, php-format +msgid "%s : Mobile" +msgstr "%s : MĆ³vil" + +#: ../../mobile/include/ui.class.php:239 ../../mobile/operation/home.php:161 +msgid "Home" +msgstr "Inicio" + +#: ../../mobile/include/ui.class.php:327 +#, php-format +msgid "%s %s - Build %s" +msgstr "%s %s - Desarrollo %s" + +#: ../../mobile/include/ui.class.php:773 +msgid "Not found header." +msgstr "Encabezado no encontrado" + +#: ../../mobile/include/ui.class.php:775 +msgid "Not found content." +msgstr "Contenido no encontrado." + +#: ../../mobile/include/ui.class.php:777 +msgid "Not found footer." +msgstr "Pie de pĆ”gina no encontrado" + +#: ../../mobile/include/ui.class.php:779 +msgid "Incorrect form." +msgstr "Forma incorrecta" + +#: ../../mobile/include/ui.class.php:781 +msgid "Incorrect grid." +msgstr "Matriz incorrecta" + +#: ../../mobile/include/ui.class.php:783 +msgid "Incorrect collapsible." +msgstr "Plegable incorrecto" + +#: ../../mobile/include/user.class.php:171 +msgid "User cannot log in into this console, please contact administrator" +msgstr "" +"El usuario no puede identificarse en esta consola, pĆ³ngase en contacto con el " +"administrador" + +#: ../../mobile/include/user.class.php:287 ../../mobile/include/user.class.php:302 +#: ../../mobile/include/user.class.php:309 +msgid "Double authentication failed" +msgstr "Fallo en la doble autentificaciĆ³n" + +#: ../../mobile/include/user.class.php:288 +msgid "Secret code not found" +msgstr "CĆ³digo secreto no encontrado" + +#: ../../mobile/include/user.class.php:288 +msgid "Please contact the administrator to reset your double authentication" +msgstr "" +"Por favor, contacta con el administrador para restablecer la doble autentificaciĆ³n." + +#: ../../mobile/include/user.class.php:310 +msgid "There was an error checking the code" +msgstr "Error al comprobar el cĆ³digo" + +#: ../../mobile/include/user.class.php:351 +msgid "Login Failed" +msgstr "Error de identificaciĆ³n" + +#: ../../mobile/include/user.class.php:355 +msgid "User not found in database or incorrect password." +msgstr "Usuario no encontrado en la base de datos o contraseƱa incorrecta" + +#: ../../mobile/include/user.class.php:364 +msgid "Login out" +msgstr "Cerrar sesiĆ³n" + +#: ../../mobile/include/user.class.php:395 +msgid "user" +msgstr "Usuario" + +#: ../../mobile/include/user.class.php:402 +msgid "password" +msgstr "contraseƱa" + +#: ../../mobile/include/user.class.php:491 ../../mobile/include/user.class.php:492 +msgid "Authenticator code" +msgstr "CĆ³digo de autentificaciĆ³n" + +#: ../../mobile/operation/agents.php:218 +#, php-format +msgid "Filter Agents by %s" +msgstr "Filtros de agentes por %s" + +#: ../../mobile/operation/agents.php:260 ../../mobile/operation/modules.php:325 +#: ../../mobile/operation/alerts.php:266 ../../mobile/operation/events.php:1009 +msgid "Apply Filter" +msgstr "Aplicar el filtro" + +#: ../../mobile/operation/agents.php:454 +msgid "No agents" +msgstr "Sin agentes" + +#: ../../mobile/operation/agents.php:550 ../../mobile/operation/modules.php:885 +#: ../../mobile/operation/alerts.php:379 ../../mobile/operation/events.php:1450 +msgid "(Default)" +msgstr "(Por defecto)" + +#: ../../mobile/operation/agents.php:556 ../../mobile/operation/modules.php:891 +#: ../../mobile/operation/alerts.php:392 ../../mobile/operation/events.php:1483 +#, php-format +msgid "Group: %s" +msgstr "Grupo: %s" + +#: ../../mobile/operation/agents.php:563 ../../mobile/operation/modules.php:913 +#: ../../mobile/operation/alerts.php:399 ../../mobile/operation/events.php:1503 +#, php-format +msgid "Status: %s" +msgstr "Estado: %s" + +#: ../../mobile/operation/agents.php:570 ../../mobile/operation/modules.php:920 +#: ../../mobile/operation/alerts.php:406 +#, php-format +msgid "Free Search: %s" +msgstr "BĆŗsqueda libre: %s" + +#: ../../mobile/operation/modules.php:250 +#, php-format +msgid "Filter Modules by %s" +msgstr "Filtrar mĆ³dulos por %s" + +#: ../../mobile/operation/modules.php:659 +msgid "Interval." +msgstr "Intervalo" + +#: ../../mobile/operation/modules.php:661 +msgid "Last update." +msgstr "ƚltima actualizaciĆ³n" + +#: ../../mobile/operation/modules.php:906 +#, php-format +msgid "Module group: %s" +msgstr "Grupos de mĆ³dulos: %s" + +#: ../../mobile/operation/modules.php:928 +#, php-format +msgid "Tag: %s" +msgstr "Etiqueta: %s" + +#: ../../mobile/operation/home.php:66 ../../mobile/operation/visualmaps.php:184 +#: ../../operation/search_results.php:145 ../../operation/search_main.php:70 +msgid "Visual consoles" +msgstr "Consola visual" + +#: ../../mobile/operation/agent.php:162 +msgid "No agent found" +msgstr "No se han encontrado agentes" + +#: ../../mobile/operation/agent.php:238 +msgid "Modules by status" +msgstr "MĆ³dulos por estado" + +#: ../../mobile/operation/agent.php:268 ../../include/functions_treeview.php:831 +msgid "Events (24h)" +msgstr "Eventos (24h)" + +#: ../../mobile/operation/agent.php:369 +#, php-format +msgid "Last %s Events" +msgstr "ƚltimos %s eventos" + +#: ../../mobile/operation/alerts.php:208 +#, php-format +msgid "Filter Alerts by %s" +msgstr "Filtros de alertas por %s" + +#: ../../mobile/operation/alerts.php:346 +msgid "Last Fired" +msgstr "ƚltima vez que se disparĆ³" + +#: ../../mobile/operation/alerts.php:357 ../../include/ajax/events.php:2434 +msgid "No alerts" +msgstr "Sin alertas" + +#: ../../mobile/operation/alerts.php:385 +#, php-format +msgid "Standby: %s" +msgstr "Standby: %s" + +#: ../../mobile/operation/visualmaps.php:242 +msgid "All visual consoles" +msgstr "Todas las consolas visuales" + +#: ../../mobile/operation/visualmaps.php:254 +msgid "Favourite visual consoles" +msgstr "Consolas visuales favoritas" + +#: ../../mobile/operation/visualmaps.php:263 +msgid "No maps defined" +msgstr "No hay mapas definidos" + +#: ../../mobile/operation/module_graph.php:359 +#: ../../mobile/operation/module_graph.php:372 +#, php-format +msgid "%s: %s" +msgstr "%s: %s" + +#: ../../mobile/operation/module_graph.php:405 +#, php-format +msgid "Options for %s : %s" +msgstr "Opciones para %s: %s" + +#: ../../mobile/operation/module_graph.php:412 +msgid "Show Alerts" +msgstr "Mostrar alertas" + +#: ../../mobile/operation/module_graph.php:420 +msgid "Show Events" +msgstr "Mostrar eventos" + +#: ../../mobile/operation/module_graph.php:428 ../../operation/agentes/stat_win.php:377 +#: ../../operation/agentes/stat_win.php:439 +msgid "Time compare (Separated)" +msgstr "ComparaciĆ³n de tiempo (por separado)" + +#: ../../mobile/operation/module_graph.php:444 ../../operation/agentes/stat_win.php:317 +msgid "Show unknown graph" +msgstr "Mostrar grĆ”ficos desconocidos" + +#: ../../mobile/operation/module_graph.php:449 +msgid "Time range (hours)" +msgstr "Rango de tiempo (horas)" + +#: ../../mobile/operation/module_graph.php:461 ../../operation/agentes/stat_win.php:289 +#: ../../operation/agentes/stat_win.php:408 +#: ../../operation/agentes/interface_traffic_graph_win.php:181 +#: ../../operation/agentes/graphs.php:207 ../../operation/agentes/exportdata.php:318 +msgid "Begin date" +msgstr "Fecha de inicio" + +#: ../../mobile/operation/module_graph.php:468 +msgid "Update graph" +msgstr "Actualizar grĆ”fico" + +#: ../../mobile/operation/module_graph.php:478 +msgid "Error get the graph" +msgstr "Error al obtener el grĆ”fico" + +#: ../../mobile/operation/events.php:450 ../../include/functions_reporting_html.php:1104 +#: ../../include/functions_reporting_html.php:1355 +#: ../../include/functions_reporting_html.php:2456 +#: ../../include/functions_events.php:2404 ../../include/functions_events.php:4362 +#: ../../operation/events/events.php:689 +msgid "New event" +msgstr "Nuevo evento" + +#: ../../mobile/operation/events.php:455 ../../include/functions_reporting_html.php:1093 +#: ../../include/functions_reporting_html.php:1360 +#: ../../include/functions_reporting_html.php:2461 +#: ../../include/functions_events.php:2409 ../../include/functions_events.php:4368 +#: ../../operation/events/events.php:702 +msgid "Event validated" +msgstr "Evento validado" + +#: ../../mobile/operation/events.php:460 ../../include/functions_reporting_html.php:1098 +#: ../../include/functions_reporting_html.php:1365 +#: ../../include/functions_reporting_html.php:2466 +#: ../../include/functions_events.php:2414 ../../include/functions_events.php:4374 +#: ../../operation/events/events.php:714 +msgid "Event in process" +msgstr "Evento en proceso" + +#: ../../mobile/operation/events.php:768 +msgid "ERROR: Event detail" +msgstr "ERROR: detalles del evento" + +#: ../../mobile/operation/events.php:769 +msgid "Error connecting to DB." +msgstr "Error al conectar con la base de datos" + +#: ../../mobile/operation/events.php:789 +msgid "Event detail" +msgstr "Detalles del evento" + +#: ../../mobile/operation/events.php:800 ../../include/functions_events.php:4515 +msgid "Event ID" +msgstr "ID del evento" + +#: ../../mobile/operation/events.php:828 ../../include/functions_events.php:4617 +msgid "Acknowledged by" +msgstr "Admitido por" + +#: ../../mobile/operation/events.php:878 +msgid "Sucessful validate" +msgstr "ValidaciĆ³n correcta" + +#: ../../mobile/operation/events.php:880 +msgid "Fail validate" +msgstr "ValidaciĆ³n fallida" + +#: ../../mobile/operation/events.php:924 +#, php-format +msgid "Filter Events by %s" +msgstr "Filtrar eventos por %s" + +#: ../../mobile/operation/events.php:934 ../../mobile/operation/events.php:935 +msgid "Preset Filters" +msgstr "Fijar los filtros" + +#: ../../mobile/operation/events.php:1144 +#: ../../include/functions_reporting_html.php:5976 +#: ../../include/functions_reporting_html.php:6135 +#: ../../include/functions_reporting.php:2131 ../../include/functions_reporting.php:2421 +#: ../../include/functions_events.php:2328 ../../include/functions_events.php:2331 +msgid "No events" +msgstr "No hay eventos" + +#: ../../mobile/operation/events.php:1455 +#, php-format +msgid "Filter: %s" +msgstr "Filtro: %s" + +#: ../../mobile/operation/events.php:1467 +#, php-format +msgid "Severity: %s" +msgstr "Gravedad: %s" + +#: ../../mobile/operation/events.php:1496 +#, php-format +msgid "Type: %s" +msgstr "Tipo: %s" + +#: ../../mobile/operation/events.php:1510 +#, php-format +msgid "Free search: %s" +msgstr "BĆŗsqueda libre: %s" + +#: ../../mobile/operation/events.php:1517 +#, php-format +msgid "Hours: %s" +msgstr "Horas: %s" + +#: ../../mobile/operation/tactical.php:216 +msgid "Last activity" +msgstr "ƚltima actividad" + #: ../../include/functions_visual_map_editor.php:62 msgid "" "To use 'label'field, you should write\n" -"\t\t\t\t\ta text to replace '(_VALUE_)' and the value of the module will be " -"printed at the end." +"\t\t\t\t\ta text to replace '(_VALUE_)' and the value of the module will be printed " +"at the end." msgstr "" "Para usar el campo \"etiqueta\", debe escribir\n" -"\t\t\t\t\tun texto para reemplazar '(_VALUE_)' y el valor del mĆ³dulo se " -"grabarĆ” al final." - -#: ../../include/functions_visual_map_editor.php:97 -#: ../../include/functions_visual_map_editor.php:668 -#: ../../include/functions_reports.php:1248 -#: ../../include/rest-api/models/VisualConsole/Items/NetworkLink.php:926 -#: ../../include/rest-api/models/VisualConsole/Items/Line.php:475 -#: ../../enterprise/godmode/reporting/graph_template_editor.php:208 -#: ../../godmode/setup/gis_step_2.php:371 -#: ../../godmode/reporting/visual_console_builder.wizard.php:180 -#: ../../godmode/events/event_responses.editor.php:139 -msgid "Width" -msgstr "Anchura" +"\t\t\t\t\tun texto para reemplazar '(_VALUE_)' y el valor del mĆ³dulo se grabarĆ” al " +"final." #: ../../include/functions_visual_map_editor.php:107 #: ../../include/functions_visual_map_editor.php:133 @@ -13628,28 +39523,16 @@ msgid "Border width" msgstr "Ancho del borde" #: ../../include/functions_visual_map_editor.php:160 -#: ../../include/rest-api/models/VisualConsole/Items/Clock.php:364 #: ../../include/rest-api/models/VisualConsole/Items/Box.php:323 +#: ../../include/rest-api/models/VisualConsole/Items/Clock.php:364 msgid "Fill color" msgstr "Color de relleno" #: ../../include/functions_visual_map_editor.php:239 -msgid "" -"Scroll the mouse wheel over the label editor to change the background color" +msgid "Scroll the mouse wheel over the label editor to change the background color" msgstr "" -"Desliza la rueda del ratĆ³n sobre el editor de etiquetas para cambiar el color " -"de fondo." - -#: ../../include/functions_visual_map_editor.php:250 -#: ../../include/functions_filemanager.php:641 -#: ../../include/rest-api/models/VisualConsole/Items/StaticGraph.php:336 -#: ../../include/rest-api/models/VisualConsole/Items/Icon.php:175 -#: ../../include/rest-api/models/VisualConsole/Items/Group.php:522 -#: ../../enterprise/include/rest-api/models/VisualConsole/Items/Service.php:236 -#: ../../godmode/reporting/visual_console_builder.elements.php:105 -#: ../../godmode/reporting/visual_console_builder.wizard.php:151 -msgid "Image" -msgstr "Imagen" +"Desliza la rueda del ratĆ³n sobre el editor de etiquetas para cambiar el color de " +"fondo." #: ../../include/functions_visual_map_editor.php:255 #: ../../include/rest-api/models/VisualConsole/Items/Clock.php:333 @@ -13681,94 +39564,6 @@ msgstr "Solo la hora" msgid "Time and date" msgstr "Hora y fecha" -#: ../../include/functions_visual_map_editor.php:290 -#: ../../include/functions_register.php:134 -#: ../../include/rest-api/models/VisualConsole/Items/Clock.php:271 -#: ../../enterprise/meta/advanced/metasetup.setup.php:162 -#: ../../godmode/setup/setup_general.php:249 -msgid "Africa" -msgstr "Ɓfrica" - -#: ../../include/functions_visual_map_editor.php:291 -#: ../../include/functions_register.php:135 -#: ../../include/rest-api/models/VisualConsole/Items/Clock.php:272 -#: ../../enterprise/meta/advanced/metasetup.setup.php:163 -#: ../../godmode/setup/setup_general.php:250 -msgid "America" -msgstr "AmĆ©rica" - -#: ../../include/functions_visual_map_editor.php:292 -#: ../../include/functions_register.php:136 -#: ../../include/rest-api/models/VisualConsole/Items/Clock.php:273 -#: ../../enterprise/meta/advanced/metasetup.setup.php:164 -#: ../../godmode/setup/setup_general.php:251 -msgid "Antarctica" -msgstr "AntĆ”rtida" - -#: ../../include/functions_visual_map_editor.php:293 -#: ../../include/functions_register.php:137 -#: ../../include/rest-api/models/VisualConsole/Items/Clock.php:274 -#: ../../enterprise/meta/advanced/metasetup.setup.php:165 -#: ../../godmode/setup/setup_general.php:252 -msgid "Arctic" -msgstr "Ɓrtico" - -#: ../../include/functions_visual_map_editor.php:294 -#: ../../include/functions_register.php:138 -#: ../../include/rest-api/models/VisualConsole/Items/Clock.php:275 -#: ../../enterprise/meta/advanced/metasetup.setup.php:166 -#: ../../godmode/setup/setup_general.php:253 -msgid "Asia" -msgstr "Asia" - -#: ../../include/functions_visual_map_editor.php:295 -#: ../../include/functions_register.php:139 -#: ../../include/rest-api/models/VisualConsole/Items/Clock.php:276 -#: ../../enterprise/meta/advanced/metasetup.setup.php:167 -#: ../../godmode/setup/setup_general.php:254 -msgid "Atlantic" -msgstr "AtlĆ”ntico" - -#: ../../include/functions_visual_map_editor.php:296 -#: ../../include/functions_register.php:140 -#: ../../include/rest-api/models/VisualConsole/Items/Clock.php:277 -#: ../../enterprise/meta/advanced/metasetup.setup.php:168 -#: ../../godmode/setup/setup_general.php:255 -msgid "Australia" -msgstr "Australia" - -#: ../../include/functions_visual_map_editor.php:297 -#: ../../include/functions_register.php:141 -#: ../../include/rest-api/models/VisualConsole/Items/Clock.php:278 -#: ../../enterprise/meta/advanced/metasetup.setup.php:169 -#: ../../godmode/setup/setup_general.php:256 -msgid "Europe" -msgstr "Europa" - -#: ../../include/functions_visual_map_editor.php:298 -#: ../../include/functions_register.php:142 -#: ../../include/rest-api/models/VisualConsole/Items/Clock.php:279 -#: ../../enterprise/meta/advanced/metasetup.setup.php:170 -#: ../../godmode/setup/setup_general.php:257 -msgid "Indian" -msgstr "ƍndico" - -#: ../../include/functions_visual_map_editor.php:299 -#: ../../include/functions_register.php:143 -#: ../../include/rest-api/models/VisualConsole/Items/Clock.php:280 -#: ../../enterprise/meta/advanced/metasetup.setup.php:171 -#: ../../godmode/setup/setup_general.php:258 -msgid "Pacific" -msgstr "PacĆ­fico" - -#: ../../include/functions_visual_map_editor.php:300 -#: ../../include/functions_register.php:144 -#: ../../include/rest-api/models/VisualConsole/Items/Clock.php:281 -#: ../../enterprise/meta/advanced/metasetup.setup.php:172 -#: ../../godmode/setup/setup_general.php:259 -msgid "UTC" -msgstr "UTC" - #: ../../include/functions_visual_map_editor.php:313 #: ../../include/rest-api/models/VisualConsole/Items/Clock.php:302 msgid "Time zone" @@ -13778,13 +39573,6 @@ msgstr "Zona horaria" msgid "Enable link" msgstr "Activar enlace" -#: ../../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 -#: ../../godmode/reporting/visual_console_builder.data.php:181 -msgid "Background color" -msgstr "Color de fondo" - #: ../../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 @@ -13808,30 +39596,6 @@ msgstr "Transparente" msgid "Grid color" msgstr "Color de cuadrĆ­cula" -#: ../../include/functions_visual_map_editor.php:397 -#: ../../include/functions_visual_map.php:4179 -#: ../../include/rest-api/models/VisualConsole/Item.php:2099 -#: ../../mobile/operation/home.php:102 -#: ../../godmode/reporting/visual_console_builder.wizard.php:129 -msgid "Module graph" -msgstr "GrĆ”fico de mĆ³dulo" - -#: ../../include/functions_visual_map_editor.php:397 -#: ../../include/functions_visual_map_editor.php:400 -#: ../../include/functions_reports.php:561 -#: ../../include/functions_reports.php:648 -#: ../../include/functions_reports.php:654 -#: ../../include/functions_reporting.php:9852 -#: ../../include/rest-api/models/VisualConsole/Items/ModuleGraph.php:625 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2154 -#: ../../godmode/reporting/create_container.php:480 -#: ../../godmode/reporting/create_container.php:624 -#: ../../godmode/reporting/visual_console_builder.elements.php:105 -#: ../../godmode/reporting/visual_console_builder.elements.php:575 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2093 -msgid "Custom graph" -msgstr "GrĆ”fica personalizada" - #: ../../include/functions_visual_map_editor.php:498 msgid "Data image" msgstr "Datos en imagen" @@ -13866,49 +39630,10 @@ msgstr "1h" msgid "Max. Time" msgstr "Tiempo mĆ”ximo" -#: ../../include/functions_visual_map_editor.php:554 -#: ../../godmode/reporting/create_container.php:428 -#: ../../godmode/reporting/create_container.php:583 -#: ../../godmode/reporting/graph_builder.main.php:208 -msgid "Type of graph" -msgstr "Tipo de grĆ”fica" - -#: ../../include/functions_visual_map_editor.php:612 -#: ../../include/rest-api/models/VisualConsole/Items/SimpleValue.php:371 -#: ../../godmode/reporting/visual_console_builder.wizard.php:256 -msgid "Process" -msgstr "Procesar" - -#: ../../include/functions_visual_map_editor.php:615 -#: ../../godmode/reporting/visual_console_builder.wizard.php:259 -msgid "Min value" -msgstr "Valor mĆ­nimo" - -#: ../../include/functions_visual_map_editor.php:616 -#: ../../include/functions_visual_map_editor.php:682 -#: ../../godmode/reporting/visual_console_builder.wizard.php:260 -#: ../../godmode/reporting/visual_console_builder.wizard.php:278 -msgid "Max value" -msgstr "Valor mĆ”x." - -#: ../../include/functions_visual_map_editor.php:617 -#: ../../godmode/reporting/visual_console_builder.wizard.php:261 -msgid "Avg value" -msgstr "Valor medio" - #: ../../include/functions_visual_map_editor.php:640 msgid "Original Size" msgstr "TamaƱo original" -#: ../../include/functions_visual_map_editor.php:641 -#: ../../enterprise/meta/advanced/policymanager.apply.php:213 -#: ../../enterprise/meta/advanced/policymanager.queue.php:311 -#: ../../enterprise/godmode/policies/policy_agents.php:854 -#: ../../enterprise/godmode/policies/policy_agents.php:1369 -#: ../../enterprise/godmode/policies/policy_queue.php:714 -msgid "Apply" -msgstr "Aplicar" - #: ../../include/functions_visual_map_editor.php:648 msgid "Aspect ratio" msgstr "RelaciĆ³n de aspecto" @@ -13921,93 +39646,18 @@ msgstr "Ancho proporcional" msgid "Height proportional" msgstr "Altura proporcional" -#: ../../include/functions_visual_map_editor.php:673 -#: ../../include/functions_reports.php:1264 -#: ../../include/functions_reports.php:1364 -#: ../../enterprise/godmode/reporting/graph_template_editor.php:212 -#: ../../godmode/setup/gis_step_2.php:378 -#: ../../godmode/reporting/visual_console_builder.wizard.php:181 -#: ../../godmode/events/event_responses.editor.php:141 -msgid "Height" -msgstr "Altura" - -#: ../../include/functions_visual_map_editor.php:686 -#: ../../include/rest-api/models/VisualConsole/Items/Percentile.php:458 -#: ../../enterprise/meta/include/functions_meta.php:1348 -#: ../../enterprise/meta/advanced/metasetup.visual.php:216 -#: ../../godmode/setup/setup_visuals.php:935 -#: ../../godmode/reporting/visual_console_builder.elements.php:212 -#: ../../godmode/reporting/visual_console_builder.wizard.php:285 -msgid "Percentile" -msgstr "Percentil" - -#: ../../include/functions_visual_map_editor.php:687 -#: ../../include/rest-api/models/VisualConsole/Items/Percentile.php:459 -#: ../../godmode/reporting/visual_console_builder.wizard.php:295 -msgid "Bubble" -msgstr "Burbuja" - #: ../../include/functions_visual_map_editor.php:688 #: ../../include/rest-api/models/VisualConsole/Items/Percentile.php:460 msgid "Circular porgress bar" msgstr "Barra de progreso circular" #: ../../include/functions_visual_map_editor.php:689 -#: ../../include/functions_visual_map.php:4209 -#: ../../include/rest-api/models/VisualConsole/Item.php:2127 +#: ../../include/functions_visual_map.php:4239 #: ../../include/rest-api/models/VisualConsole/Items/Percentile.php:462 +#: ../../include/rest-api/models/VisualConsole/Item.php:2127 msgid "Circular progress bar (interior)" msgstr "Barra de progreso circular (interior)" -#: ../../include/functions_visual_map_editor.php:692 -#: ../../include/rest-api/models/VisualConsole/Items/Percentile.php:504 -#: ../../godmode/reporting/visual_console_builder.wizard.php:309 -msgid "Percent" -msgstr "Porcentaje" - -#: ../../include/functions_visual_map_editor.php:693 -#: ../../include/functions_reports.php:1068 ../../include/ajax/events.php:2003 -#: ../../include/functions_netflow.php:212 ../../include/functions_graph.php:5453 -#: ../../include/functions_snmp_browser.php:560 -#: ../../include/rest-api/models/VisualConsole/Items/Percentile.php:505 -#: ../../include/functions_reporting_html.php:940 -#: ../../include/functions_reporting_html.php:2209 -#: ../../include/functions_reporting_html.php:4695 -#: ../../include/functions_reporting_html.php:5205 -#: ../../enterprise/operation/services/services.service.php:124 -#: ../../enterprise/operation/services/services.list.php:506 -#: ../../enterprise/include/functions_reporting_csv.php:1158 -#: ../../enterprise/include/functions_reporting_csv.php:1184 -#: ../../enterprise/include/functions_reporting_csv.php:1215 -#: ../../enterprise/include/functions_reporting_csv.php:1270 -#: ../../enterprise/include/functions_reporting_csv.php:1374 -#: ../../enterprise/include/functions_reporting_csv.php:2681 -#: ../../enterprise/meta/include/functions_autoprovision.php:643 -#: ../../enterprise/meta/advanced/metasetup.relations.php:430 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2519 -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:413 -#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:827 -#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:341 -#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:548 -#: ../../godmode/setup/setup_visuals.php:1288 -#: ../../godmode/setup/setup_visuals.php:1349 -#: ../../godmode/setup/setup_visuals.php:1369 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2530 -#: ../../godmode/reporting/visual_console_builder.wizard.php:319 -#: ../../godmode/snmpconsole/snmp_trap_generator.php:115 -#: ../../godmode/massive/massive_edit_modules.php:884 -#: ../../godmode/agentes/module_manager_editor_common.php:1214 -#: ../../godmode/alerts/configure_alert_template.php:816 -msgid "Value" -msgstr "Valor" - -#: ../../include/functions_visual_map_editor.php:711 -#: ../../include/functions_visual_map_editor.php:729 -#: ../../include/rest-api/models/VisualConsole/Items/Percentile.php:509 -#: ../../godmode/reporting/visual_console_builder.wizard.php:307 -msgid "Value to show" -msgstr "Valor para mostrar" - #: ../../include/functions_visual_map_editor.php:739 #: ../../include/rest-api/models/VisualConsole/Items/Percentile.php:522 msgid "Element color" @@ -14018,46 +39668,6 @@ msgstr "Color del elemento" msgid "Value color" msgstr "Color del valor" -#: ../../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 -#: ../../enterprise/include/functions_reporting_csv.php:483 -#: ../../enterprise/include/functions_reporting_csv.php:486 -#: ../../enterprise/include/functions_reporting_csv.php:710 -#: ../../enterprise/include/functions_reporting_csv.php:831 -#: ../../enterprise/include/functions_reporting_csv.php:914 -#: ../../enterprise/include/functions_reporting_csv.php:946 -#: ../../enterprise/include/functions_reporting_csv.php:1006 -#: ../../enterprise/include/functions_reporting_csv.php:1184 -#: ../../enterprise/include/functions_reporting_csv.php:1215 -#: ../../enterprise/include/functions_reporting_csv.php:1270 -#: ../../enterprise/include/functions_reporting_csv.php:1374 -#: ../../enterprise/include/functions_reporting_csv.php:1429 -#: ../../enterprise/include/functions_reporting_csv.php:1495 -#: ../../enterprise/include/functions_reporting_csv.php:1881 -#: ../../enterprise/include/functions_reporting_csv.php:1931 -#: ../../enterprise/include/functions_reporting_csv.php:2627 -#: ../../enterprise/include/functions_reporting_csv.php:2678 -#: ../../enterprise/include/functions_reporting_csv.php:2804 -#: ../../enterprise/godmode/reporting/graph_template_editor.php:235 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1765 -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:102 -#: ../../godmode/reporting/visual_console_builder.elements.php:107 -#: ../../godmode/reporting/reporting_builder.item_editor.php:1261 -#: ../../godmode/reporting/graph_builder.main.php:196 -#: ../../godmode/reporting/visual_console_builder.wizard.php:242 -#: ../../godmode/agentes/module_manager_editor_prediction.php:179 -msgid "Period" -msgstr "PerĆ­odo" - -#: ../../include/functions_visual_map_editor.php:793 -#: ../../include/rest-api/models/VisualConsole/Items/Group.php:562 -#: ../../enterprise/tools/ipam/ipam_vlan_config.php:871 -#: ../../enterprise/tools/ipam/ipam_supernet_config.php:1377 -msgid "Show statistics" -msgstr "Mostrar estadĆ­sticas" - #: ../../include/functions_visual_map_editor.php:801 msgid "Diameter" msgstr "DiĆ”metro" @@ -14069,13 +39679,13 @@ msgstr "Color predeterminado" #: ../../include/functions_visual_map_editor.php:812 msgid "" -"The color of the element will be the one selected in the first range created " -"in which the value of the module is found (with the initial and final values " -"of the range included)" +"The color of the element will be the one selected in the first range created in which " +"the value of the module is found (with the initial and final values of the range " +"included)" msgstr "" -"El color del elemento serĆ” el seleccionado en el primer intervalo creado, en " -"el que se encuentra el valor del mĆ³dulo (con los valores iniciales y finales " -"del intervalo incluidos)" +"El color del elemento serĆ” el seleccionado en el primer intervalo creado, en el que " +"se encuentra el valor del mĆ³dulo (con los valores iniciales y finales del intervalo " +"incluidos)" #: ../../include/functions_visual_map_editor.php:815 msgid "Ranges" @@ -14093,8 +39703,8 @@ msgstr "Hasta el valor" #: ../../include/rest-api/index.php:363 #: ../../include/rest-api/models/VisualConsole/Items/ColorCloud.php:471 #: ../../include/rest-api/models/VisualConsole/Items/ColorCloud.php:530 -#: ../../include/rest-api/models/VisualConsole/Items/NetworkLink.php:938 #: ../../include/rest-api/models/VisualConsole/Items/Line.php:487 +#: ../../include/rest-api/models/VisualConsole/Items/NetworkLink.php:938 msgid "Color" msgstr "Color" @@ -14104,66 +39714,23 @@ msgstr "Mostrar siempre arriba" #: ../../include/functions_visual_map_editor.php:821 msgid "" -"It allows the element to be superimposed to the rest of items of the visual " -"console" +"It allows the element to be superimposed to the rest of items of the visual console" msgstr "" -"Permite que el elemento se superponga al resto de los elementos de la consola " -"visual" +"Permite que el elemento se superponga al resto de los elementos de la consola visual" #: ../../include/functions_visual_map_editor.php:824 -#: ../../include/rest-api/models/VisualConsole/Items/StaticGraph.php:396 +#: ../../include/rest-api/models/VisualConsole/Items/StaticGraph.php:404 msgid "Hide last value on boolean modules" msgstr "Ocultar el Ćŗltimo valor en mĆ³dulos boleanos" -#: ../../include/functions_visual_map_editor.php:825 -#: ../../include/rest-api/models/VisualConsole/Items/StaticGraph.php:398 -#: ../../include/functions_reporting_html.php:3401 -#: ../../enterprise/tools/ipam/ipam_ajax.php:419 -#: ../../enterprise/tools/ipam/ipam_massive.php:103 -#: ../../enterprise/tools/ipam/ipam_network.php:402 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3220 -#: ../../enterprise/include/class/DatabaseHA.class.php:205 -#: ../../godmode/modules/manage_network_components_form_wizard.php:247 -#: ../../godmode/massive/massive_edit_agents.php:1016 -#: ../../godmode/agentes/module_manager_editor_common.php:1061 -#: ../../godmode/agentes/module_manager_editor_common.php:1071 -#: ../../godmode/alerts/configure_alert_template.php:900 -#: ../../godmode/groups/group_list.php:908 -msgid "Enabled" -msgstr "Habilitado" - #: ../../include/functions_visual_map_editor.php:830 msgid "Show last value" msgstr "Mostrar Ćŗltimo valor" -#: ../../include/functions_visual_map_editor.php:843 -#: ../../include/rest-api/models/VisualConsole/Items/BarsGraph.php:483 -#: ../../enterprise/godmode/reporting/reporting_builder.advanced.php:105 -msgid "Vertical" -msgstr "Vertical" - -#: ../../include/functions_visual_map_editor.php:844 -#: ../../include/rest-api/models/VisualConsole/Items/BarsGraph.php:482 -#: ../../enterprise/godmode/reporting/reporting_builder.advanced.php:114 -msgid "Horizontal" -msgstr "Horizontal" - -#: ../../include/functions_visual_map_editor.php:922 -#: ../../include/rest-api/models/VisualConsole/Item.php:2023 -#: ../../include/rest-api/models/VisualConsole/Items/Box.php:246 -#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:332 -#: ../../godmode/reporting/reporting_builder.list_items.php:371 -#: ../../godmode/reporting/visual_console_builder.elements.php:107 -#: ../../godmode/snmpconsole/snmp_alert.php:1126 -#: ../../godmode/snmpconsole/snmp_alert.php:1254 -msgid "Position" -msgstr "PosiciĆ³n" - #: ../../include/functions_visual_map_editor.php:934 msgid "For use the original image file size, set 0 width and 0 height." msgstr "" -"Para usar el tamaƱo original de la imagen, configura en 0 el ancho y en 0 el " -"alto." +"Para usar el tamaƱo original de la imagen, configura en 0 el ancho y en 0 el alto." #: ../../include/functions_visual_map_editor.php:974 #: ../../include/rest-api/models/VisualConsole/Item.php:2433 @@ -14195,22 +39762,6 @@ msgstr "Por defecto" msgid "Linked visual console weight" msgstr "Peso de la consola visual enlazada" -#: ../../include/functions_visual_map_editor.php:1148 -#: ../../include/rest-api/models/VisualConsole/Item.php:2522 -#: ../../enterprise/godmode/massive/massive_edit_service_elements.php:265 -#: ../../enterprise/godmode/massive/massive_add_service_elements.php:509 -#: ../../enterprise/godmode/massive/massive_create_services.php:1151 -msgid "Critical weight" -msgstr "Peso crĆ­tico" - -#: ../../include/functions_visual_map_editor.php:1174 -#: ../../include/rest-api/models/VisualConsole/Item.php:2536 -#: ../../enterprise/godmode/massive/massive_edit_service_elements.php:278 -#: ../../enterprise/godmode/massive/massive_add_service_elements.php:522 -#: ../../enterprise/godmode/massive/massive_create_services.php:1164 -msgid "Warning weight" -msgstr "Peso de advertencia" - #: ../../include/functions_visual_map_editor.php:1189 msgid "Lines haven't advanced options" msgstr "Las lĆ­neas no tienen opciones avanzadas." @@ -14222,68 +39773,18 @@ msgstr "Restringir acceso al grupo" #: ../../include/functions_visual_map_editor.php:1217 msgid "" -"If selected, restrict visualization of this item in the visual console to " -"users who have access to selected group. This is also used on calculating " -"child visual consoles." +"If selected, restrict visualization of this item in the visual console to users who " +"have access to selected group. This is also used on calculating child visual consoles." msgstr "" -"Si se selecciona, se restringirĆ” la visualizaciĆ³n de este elemento en la " -"consola visual a los usuarios que tengan acceso al grupo seleccionado. TambiĆ©n " -"se utiliza para calcular consolas visuales de los hijos." - -#: ../../include/functions_visual_map_editor.php:1223 -#: ../../include/functions_visual_map_editor.php:1224 -#: ../../include/class/AgentsAlerts.class.php:387 -#: ../../include/functions_html.php:2107 ../../include/functions.php:499 -#: ../../include/functions.php:630 -#: ../../enterprise/include/ajax/log_viewer.ajax.php:274 -#: ../../enterprise/meta/advanced/metasetup.visual.php:382 -#: ../../enterprise/meta/advanced/metasetup.visual.php:849 -#: ../../enterprise/meta/advanced/metasetup.visual.php:850 -#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:327 -#: ../../godmode/setup/setup_visuals.php:1030 -#: ../../godmode/setup/setup_visuals.php:1031 -#: ../../godmode/setup/setup_visuals.php:1342 -#: ../../godmode/snmpconsole/snmp_alert.php:1102 -msgid "seconds" -msgstr "segundos" - -#: ../../include/functions_visual_map_editor.php:1225 -#: ../../include/functions_visual_map_editor.php:1226 -#: ../../include/functions_visual_map_editor.php:1227 -#: ../../include/functions_visual_map_editor.php:1228 -#: ../../include/functions_html.php:2108 ../../include/functions.php:503 -#: ../../include/functions.php:634 -#: ../../enterprise/include/ajax/log_viewer.ajax.php:276 -#: ../../enterprise/meta/advanced/metasetup.visual.php:383 -#: ../../enterprise/meta/advanced/metasetup.visual.php:851 -#: ../../enterprise/meta/advanced/metasetup.visual.php:852 -#: ../../enterprise/meta/advanced/metasetup.visual.php:853 -#: ../../enterprise/meta/advanced/metasetup.visual.php:854 -#: ../../godmode/setup/setup_visuals.php:1032 -#: ../../godmode/setup/setup_visuals.php:1033 -#: ../../godmode/setup/setup_visuals.php:1034 -#: ../../godmode/setup/setup_visuals.php:1035 -#: ../../godmode/setup/setup_visuals.php:1343 -msgid "minutes" -msgstr "minutos" - -#: ../../include/functions_visual_map_editor.php:1229 -#: ../../enterprise/meta/advanced/metasetup.visual.php:855 -#: ../../godmode/setup/setup_visuals.php:1036 -msgid "hour" -msgstr "hora" +"Si se selecciona, se restringirĆ” la visualizaciĆ³n de este elemento en la consola " +"visual a los usuarios que tengan acceso al grupo seleccionado. TambiĆ©n se utiliza " +"para calcular consolas visuales de los hijos." #: ../../include/functions_visual_map_editor.php:1248 #: ../../include/rest-api/models/VisualConsole/Item.php:2201 msgid "Cache expiration" msgstr "Caducidad del cachĆ©" -#: ../../include/functions_visual_map_editor.php:1255 -#: ../../enterprise/meta/advanced/metasetup.visual.php:862 -#: ../../godmode/setup/setup_visuals.php:1043 -msgid "No cache" -msgstr "No hay chachĆ©" - #: ../../include/functions_visual_map_editor.php:1287 msgid "Click start point
of the line" msgstr "Haz clic en el punto de inicio
de la lĆ­nea" @@ -14292,17 +39793,20 @@ msgstr "Haz clic en el punto de inicio
de la lĆ­nea" msgid "Click end point
of the line" msgstr "Haz clic en el punto final
de la lĆ­nea" +#: ../../include/functions_visual_map_editor.php:1390 +#: ../../operation/visual_console/view.php:316 +msgid "Serialized pie graph" +msgstr "GrĆ”fico circular serializado" + +#: ../../include/functions_visual_map_editor.php:1391 +#: ../../operation/visual_console/view.php:321 +msgid "Bars Graph" +msgstr "GrĆ”fico de barras" + #: ../../include/functions_visual_map_editor.php:1420 msgid "Show grid" msgstr "Mostrar cuadrĆ­cula" -#: ../../include/functions_visual_map_editor.php:1421 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3460 -#: ../../extensions/agents_modules.php:448 -#: ../../godmode/reporting/reporting_builder.item_editor.php:3726 -msgid "Update item" -msgstr "Actualizar elemento" - #: ../../include/functions_visual_map_editor.php:1422 msgid "Delete item" msgstr "Borrar elemento" @@ -14406,6 +39910,1451 @@ msgstr "Cambios guardados con Ć©xito" msgid "Could not be save." msgstr "No se ha podido guardar." +#: ../../include/graphs/export_data.php:88 ../../include/graphs/export_data.php:154 +msgid "An error occured exporting the data" +msgstr "Error al exportar los datos" + +#: ../../include/graphs/functions_gd.php:183 ../../include/graphs/functions_gd.php:466 +#: ../../include/functions_graph.php:2903 ../../include/functions_graph.php:2951 +msgid "Out of limits" +msgstr "Fuera de lĆ­mites" + +#: ../../include/graphs/functions_flot.php:365 +msgid "Cancel zoom" +msgstr "Cancelar el zoom" + +#: ../../include/graphs/functions_flot.php:367 +msgid "Warning and Critical thresholds" +msgstr "Umbrales de advertencia y crĆ­tico" + +#: ../../include/graphs/functions_flot.php:372 +msgid "Overview graph" +msgstr "GrĆ”fico de vista general" + +#: ../../include/graphs/functions_flot.php:509 +#: ../../include/functions_reporting_html.php:655 +#: ../../include/functions_reporting_html.php:4461 +#: ../../include/functions_treeview.php:315 +msgid "No data" +msgstr "Sin datos" + +#: ../../include/functions_servers.php:582 +msgid "SNMP Trap server" +msgstr "Servidor de traps SNMP" + +#: ../../include/functions_servers.php:699 +msgid "Correlation server" +msgstr "Servidor de correlaciĆ³n" + +#: ../../include/functions_servers.php:712 ../../include/functions_servers.php:1314 +msgid "Enterprise ICMP server" +msgstr "Servidor ICMP Enterprise" + +#: ../../include/functions_servers.php:725 ../../include/functions_servers.php:1317 +msgid "Enterprise SNMP server" +msgstr "Servidor SNMP Enterprise" + +#: ../../include/functions_servers.php:738 +#: ../../include/class/AgentWizard.class.php:1267 +msgid "Enterprise Satellite server" +msgstr "Servidor Enterprise SatĆ©lite" + +#: ../../include/functions_servers.php:751 +msgid "Enterprise Transactional server" +msgstr "Servidor transaccional Enterprise" + +#: ../../include/functions_servers.php:764 +msgid "Mainframe server" +msgstr "Servidor mainframe" + +#: ../../include/functions_servers.php:777 +msgid "Sync server" +msgstr "Servidor sync" + +#: ../../include/functions_servers.php:790 +msgid "Wux server" +msgstr "Servidor WUX" + +#: ../../include/functions_servers.php:803 ../../include/functions_servers.php:1344 +msgid "Log server" +msgstr "Servidor de registros" + +#: ../../include/functions_servers.php:829 +msgid "Autoprovision server" +msgstr "Servidor de auto aprovisionamiento" + +#: ../../include/functions_servers.php:842 +msgid "Migration server" +msgstr "Servidor de migraciĆ³n" + +#: ../../include/functions_servers.php:1323 +msgid "Prediction Server" +msgstr "Servidor de predicciĆ³n" + +#: ../../include/functions_servers.php:1350 +msgid "Satellite server" +msgstr "Servidor SatĆ©lite" + +#: ../../include/functions_servers.php:1353 +msgid "Transactional server" +msgstr "Servidor transaccional" + +#: ../../include/functions_reporting_html.php:109 +msgid "Label: " +msgstr "Etiqueta: " + +#: ../../include/functions_reporting_html.php:580 +msgid "Time Failed" +msgstr "Tiempo en fallo" + +#: ../../include/functions_reporting_html.php:584 +msgid "Downtime" +msgstr "Parada planificada" + +#: ../../include/functions_reporting_html.php:995 +#: ../../include/functions_reporting_html.php:2298 +#: ../../include/functions_reporting_html.php:4343 +#: ../../include/functions_reporting_html.php:4880 +#: ../../include/rest-api/models/VisualConsole/Items/SimpleValue.php:367 +msgid "Min Value" +msgstr "Valor mĆ­nimo" + +#: ../../include/functions_reporting_html.php:996 +#: ../../include/functions_reporting_html.php:2299 +#: ../../include/functions_reporting_html.php:4344 +#: ../../include/functions_reporting_html.php:4881 +msgid "Average Value" +msgstr "Valor medio" + +#: ../../include/functions_reporting_html.php:997 +#: ../../include/functions_reporting_html.php:2300 +#: ../../include/functions_reporting_html.php:4341 +#: ../../include/functions_reporting_html.php:4883 +#: ../../include/rest-api/models/VisualConsole/Items/SimpleValue.php:366 +msgid "Max Value" +msgstr "Valor mĆ”ximo" + +#: ../../include/functions_reporting_html.php:1052 +#: ../../include/functions_reporting_html.php:1060 +#: ../../include/functions_reporting_html.php:2428 +msgid "Val. by" +msgstr "Val. por" + +#: ../../include/functions_reporting_html.php:1140 +#, php-format +msgid "%s System" +msgstr "Sistema %s" + +#: ../../include/functions_reporting_html.php:1209 +#: ../../include/functions_reporting_html.php:1431 +msgid "Events by agent" +msgstr "Eventos por agente" + +#: ../../include/functions_reporting_html.php:1226 +#: ../../include/functions_reporting_html.php:1448 +msgid "Events by user validator" +msgstr "Eventos por usuario validador" + +#: ../../include/functions_reporting_html.php:1243 +#: ../../include/functions_reporting_html.php:1465 +msgid "Events by Severity" +msgstr "Eventos por gravedad" + +#: ../../include/functions_reporting_html.php:1260 +#: ../../include/functions_reporting_html.php:1482 +msgid "Events validated vs unvalidated" +msgstr "Eventos validados vs no validados" + +#: ../../include/functions_reporting_html.php:1573 +msgid "Sec. groups" +msgstr "Sec. grupos" + +#: ../../include/functions_reporting_html.php:1593 +msgid "Remote conf." +msgstr "ConfiguraciĆ³n remota" + +#: ../../include/functions_reporting_html.php:2074 +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:2364 +#: ../../include/functions_reporting_html.php:5450 +msgid "Monitors" +msgstr "Monitores" + +#: ../../include/functions_reporting_html.php:2383 +msgid "Events (not validated)" +msgstr "Eventos (no validados)" + +#: ../../include/functions_reporting_html.php:2549 +msgid "Events validated by user" +msgstr "Eventos validados por el usuario" + +#: ../../include/functions_reporting_html.php:2566 +#: ../../include/functions_reporting_html.php:5739 +msgid "Events by severity" +msgstr "Eventos por gravedad" + +#: ../../include/functions_reporting_html.php:2583 +msgid "Amount events validated" +msgstr "Cantidad de eventos validados" + +#: ../../include/functions_reporting_html.php:3007 +msgid "Total summary" +msgstr "Resumen total" + +#: ../../include/functions_reporting_html.php:3014 +msgid "No alerts fired" +msgstr "No hay alertas disparadas" + +#: ../../include/functions_reporting_html.php:3105 +#, php-format +msgid "Interface '%s' throughput graph" +msgstr "Interfaz '%s' grĆ”fico de rendimiento" + +#: ../../include/functions_reporting_html.php:3109 +msgid "Mac" +msgstr "Mac" + +#: ../../include/functions_reporting_html.php:3110 +msgid "Actual status" +msgstr "Estado actual" + +#: ../../include/functions_reporting_html.php:3474 +#: ../../include/functions_reporting_html.php:3476 +msgid "Empty modules" +msgstr "MĆ³dulos vacĆ­os" + +#: ../../include/functions_reporting_html.php:3483 +msgid "Warning
Critical" +msgstr "Advertencia
CrĆ­tico" + +#: ../../include/functions_reporting_html.php:3956 +msgid "Time Not Init Module" +msgstr "Tiempo en mĆ³dulo no iniciado" + +#: ../../include/functions_reporting_html.php:3967 +msgid "% Ok" +msgstr "% OK" + +#: ../../include/functions_reporting_html.php:4044 +msgid "Checks Uknown" +msgstr "Comprobaciones en desconocido" + +#: ../../include/functions_reporting_html.php:4083 +#: ../../include/functions_reporting_html.php:4230 +#: ../../include/functions_reporting_html.php:4555 +#: ../../include/functions_reporting_html.php:4561 +msgid "Primary" +msgstr "Primario" + +#: ../../include/functions_reporting_html.php:4995 +#: ../../include/functions_reporting.php:11435 +#: ../../include/functions_reporting.php:11456 +msgid "Alert level" +msgstr "Nivel de alerta" + +#: ../../include/functions_reporting_html.php:5224 +#, php-format +msgid "Agents in group: %s" +msgstr "Agentes en el grupo: %s" + +#: ../../include/functions_reporting_html.php:5326 +msgid "Last failure" +msgstr "ƚltimo fallo" + +#: ../../include/functions_reporting_html.php:5416 +msgid "N/A(*)" +msgstr "N/A(*)" + +#: ../../include/functions_reporting_html.php:5664 +#: ../../include/functions_reporting.php:11667 +msgid "Monitor checks" +msgstr "Comprobaciones de monitores" + +#: ../../include/functions_reporting_html.php:5671 +#: ../../include/functions_reporting.php:11686 +msgid "Total agents and monitors" +msgstr "Total de agentes y monitores" + +#: ../../include/functions_reporting_html.php:5690 +#: ../../include/functions_reporting_html.php:5695 +msgid "Node overview" +msgstr "Resumen de nodos" + +#: ../../include/functions_reporting_html.php:5715 +#: ../../include/functions_reporting_html.php:5727 +msgid "Critical events" +msgstr "Eventos en estado crĆ­tico" + +#: ../../include/functions_reporting_html.php:5718 +#: ../../include/functions_reporting_html.php:5729 +msgid "Warning events" +msgstr "Eventos en estado de advertencia" + +#: ../../include/functions_reporting_html.php:5721 +#: ../../include/functions_reporting_html.php:5731 +msgid "OK events" +msgstr "Eventos OK" + +#: ../../include/functions_reporting_html.php:5724 +#: ../../include/functions_reporting_html.php:5733 +msgid "Unknown events" +msgstr "Eventos desconocidos" + +#: ../../include/functions_reporting_html.php:5749 +msgid "Important Events by Criticity" +msgstr "Eventos importantes por gravedad" + +#: ../../include/functions_reporting_html.php:5775 +#, php-format +msgid "Last activity in %s console" +msgstr "ƚltima actividad en la consola %s" + +#: ../../include/functions_reporting_html.php:5866 +#: ../../include/functions_reporting_html.php:6008 +msgid "Events info (1hr.)" +msgstr "InformaciĆ³n de eventos (1h)" + +#: ../../include/functions_reporting_html.php:6165 +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:6166 +msgid "" +"If the duration of the scheduled downtime is less than 5 minutes it will not be " +"represented in the graph" +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:6173 +#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:380 +msgid "Dates" +msgstr "Fechas" + +#: ../../include/functions_reporting_html.php:6204 +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:6204 +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:231 +msgid "." +msgstr "." + +#: ../../include/functions.php:233 +msgid "," +msgstr "," + +#: ../../include/functions.php:488 ../../include/functions.php:640 +msgid "s" +msgstr "s" + +#: ../../include/functions.php:489 ../../include/functions.php:641 +msgid "d" +msgstr "d" + +#: ../../include/functions.php:490 ../../include/functions.php:642 +msgid "M" +msgstr "M" + +#: ../../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 +msgid "Y" +msgstr "Y" + +#: ../../include/functions.php:492 ../../include/functions.php:644 +msgid "m" +msgstr "m" + +#: ../../include/functions.php:493 ../../include/functions.php:645 +msgid "h" +msgstr "h" + +#: ../../include/functions.php:494 ../../include/functions.php:646 +msgid "N" +msgstr "N" + +#: ../../include/functions.php:1023 ../../include/functions.php:1269 +#: ../../include/functions.php:1303 ../../include/functions_graph.php:3473 +#: ../../include/functions_graph.php:3474 ../../include/functions_graph.php:5056 +#: ../../include/functions_incidents.php:34 ../../include/functions_incidents.php:75 +#: ../../include/functions_events.php:2925 +msgid "Maintenance" +msgstr "Mantenimiento" + +#: ../../include/functions.php:1027 ../../include/functions.php:1270 +#: ../../include/functions.php:1307 ../../include/functions_graph.php:3478 +#: ../../include/functions_graph.php:3479 ../../include/functions_graph.php:5060 +#: ../../include/functions_events.php:2929 +msgid "Informational" +msgstr "Informativo" + +#: ../../include/functions.php:1043 ../../include/functions.php:1272 +#: ../../include/functions.php:1323 ../../include/functions_graph.php:3488 +#: ../../include/functions_graph.php:3489 ../../include/functions_graph.php:5076 +msgid "Minor" +msgstr "Menor" + +#: ../../include/functions.php:1047 ../../include/functions.php:1274 +#: ../../include/functions.php:1327 ../../include/functions_graph.php:3498 +#: ../../include/functions_graph.php:3499 ../../include/functions_graph.php:5080 +msgid "Major" +msgstr "Principal" + +#: ../../include/functions.php:1222 ../../include/functions_events.php:2845 +msgid "Monitor Critical" +msgstr "Monitor en estado crĆ­tico" + +#: ../../include/functions.php:1223 ../../include/functions_events.php:2849 +msgid "Monitor Warning" +msgstr "Monitor en estado de advertencia" + +#: ../../include/functions.php:1224 ../../include/functions_events.php:2853 +msgid "Monitor Normal" +msgstr "Monitor en estado normal" + +#: ../../include/functions.php:1226 +msgid "Monitor Unknown" +msgstr "Monitor en estado desconocido" + +#: ../../include/functions.php:1229 ../../include/functions_events.php:2629 +#: ../../include/functions_events.php:2861 +msgid "Alert recovered" +msgstr "Alerta recuperada" + +#: ../../include/functions.php:1230 ../../include/functions_events.php:2677 +#: ../../include/functions_events.php:2865 +msgid "Alert ceased" +msgstr "Alerta finalizada" + +#: ../../include/functions.php:1231 ../../include/functions_events.php:2869 +msgid "Alert manual validation" +msgstr "ValidaciĆ³n manual de alerta" + +#: ../../include/functions.php:1233 +msgid "Agent created" +msgstr "Agente creado" + +#: ../../include/functions.php:1234 ../../include/functions_events.php:2873 +msgid "Recon host detected" +msgstr "Equipo de red detectado con recon" + +#: ../../include/functions.php:1237 ../../include/functions_events.php:2673 +#: ../../include/functions_events.php:2885 +msgid "Configuration change" +msgstr "Cambio de configuraciĆ³n" + +#: ../../include/functions.php:1354 ../../include/functions.php:1384 +msgid "ALERT FIRED" +msgstr "ALERTA DISPARADA" + +#: ../../include/functions.php:1357 ../../include/functions.php:1394 +#: ../../include/functions_modules.php:4126 ../../include/class/Tree.class.php:646 +#: ../../include/lib/Module.php:567 ../../operation/agentes/status_monitor.php:1641 +#: ../../operation/agentes/status_monitor.php:1649 +msgid "NO DATA" +msgstr "SIN DATOS" + +#: ../../include/functions.php:2694 +#, php-format +msgid "%s seconds" +msgstr "%s segundos" + +#: ../../include/functions.php:2697 ../../include/functions.php:2698 +#, php-format +msgid "%s minutes" +msgstr "%s minutos" + +#: ../../include/functions.php:2706 ../../include/functions.php:2707 +#, php-format +msgid "%s months" +msgstr "%s meses" + +#: ../../include/functions.php:2709 ../../include/functions.php:2710 +#, php-format +msgid "%s years" +msgstr "%s aƱos" + +#: ../../include/functions.php:2712 +msgid "Default values will be used" +msgstr "Se usarĆ”n los valores por defecto" + +#: ../../include/functions.php:2897 ../../include/functions.php:2902 +msgid "The file exceeds the maximum size" +msgstr "El archivo excede el tamaƱo mĆ”ximo" + +#: ../../include/functions.php:2898 +msgid "" +"Please check this PHP runtime variable values:
  upload_max_filesize (currently "
+msgstr ""
+"Compruebe los valores de esta variable de tiempo de ejecuciĆ³n de PHP: "
+"
upload_max_filesize (actualmente "
+
+#: ../../include/functions.php:2906
+msgid "The uploaded file was only partially uploaded"
+msgstr "El archivo se ha subido parcialmente."
+
+#: ../../include/functions.php:2910
+msgid "No file was uploaded"
+msgstr "No se subiĆ³ ningĆŗn archivo."
+
+#: ../../include/functions.php:2914
+msgid "Missing a temporary folder"
+msgstr "El directorio temporal no existe."
+
+#: ../../include/functions.php:2918
+msgid "Failed to write file to disk"
+msgstr "No se pudo escribir el archivo al disco."
+
+#: ../../include/functions.php:2922
+msgid "File upload stopped by extension"
+msgstr "Subida de archivo cancelada por la extensiĆ³n"
+
+#: ../../include/functions.php:2926
+msgid "Unknown upload error"
+msgstr "Error desconocido al subir el archivo"
+
+#: ../../include/functions.php:3037
+msgid "No data found to export"
+msgstr "Datos no encontrados para exportar"
+
+#: ../../include/functions.php:3358 ../../operation/gis_maps/render_view.php:149
+msgid "5 seconds"
+msgstr "5 segundos"
+
+#: ../../include/functions.php:3359 ../../operation/gis_maps/render_view.php:150
+msgid "10 seconds"
+msgstr "10 segundos"
+
+#: ../../include/functions.php:3360
+msgid "15 seconds"
+msgstr "15 segundos"
+
+#: ../../include/functions.php:3361 ../../include/ajax/heatmap.ajax.php:50
+#: ../../include/class/AgentsAlerts.class.php:804 ../../operation/heatmap.php:171
+#: ../../operation/gis_maps/render_view.php:151
+msgid "30 seconds"
+msgstr "30 segundos"
+
+#: ../../include/functions.php:3362 ../../include/ajax/heatmap.ajax.php:51
+#: ../../include/class/AgentsAlerts.class.php:805 ../../operation/heatmap.php:172
+#: ../../operation/gis_maps/render_view.php:152
+msgid "1 minute"
+msgstr "1 minuto"
+
+#: ../../include/functions.php:3363 ../../include/class/AgentsAlerts.class.php:806
+#: ../../operation/gis_maps/render_view.php:153
+msgid "2 minutes"
+msgstr "2 minutos"
+
+#: ../../include/functions.php:3364 ../../include/ajax/heatmap.ajax.php:53
+#: ../../include/ajax/module.php:198 ../../include/class/AgentsAlerts.class.php:807
+#: ../../operation/heatmap.php:174 ../../operation/gis_maps/render_view.php:154
+msgid "5 minutes"
+msgstr "5 minutos"
+
+#: ../../include/functions.php:3365
+msgid "15 minutes"
+msgstr "15 minutos"
+
+#: ../../include/functions.php:3366 ../../include/ajax/module.php:199
+msgid "30 minutes"
+msgstr "30 minutos"
+
+#: ../../include/functions.php:3881
+msgid "Summatory series"
+msgstr "Series sumatorias"
+
+#: ../../include/functions.php:3885
+msgid "Average series"
+msgstr "Series de media"
+
+#: ../../include/functions.php:3913 ../../include/functions.php:3932
+#: ../../include/functions.php:3946 ../../include/functions.php:3968
+#: ../../include/functions.php:4049 ../../include/functions.php:4121
+msgid "Unit "
+msgstr "Unidad "
+
+#: ../../include/functions.php:3994 ../../include/functions.php:4059
+msgid "Min:"
+msgstr "MĆ­n.:"
+
+#: ../../include/functions.php:4001 ../../include/functions.php:4066
+msgid "Max:"
+msgstr "MƔx.:"
+
+#: ../../include/functions.php:4008 ../../include/functions.php:4073
+msgid "Avg:"
+msgstr "Media:"
+
+#: ../../include/functions.php:4118 ../../include/functions.php:4126
+msgid "of module"
+msgstr "de mĆ³dulo"
+
+#: ../../include/functions.php:4143
+msgid "Projection"
+msgstr "ProyecciĆ³n"
+
+#: ../../include/functions.php:5963
+msgid "Testing Pandora FMS email"
+msgstr "Probando el email de Pandora FMS"
+
+#: ../../include/functions.php:5976
+msgid ""
+"This is an email test sent from Pandora FMS. If you can read this, your configuration "
+"works."
+msgstr ""
+"Este es un email de prueba enviado desde Pandora FMS. Si lo ha recibido significa que "
+"la configuraciĆ³n funciona."
+
+#: ../../include/functions_cron.php:455
+msgid "Scheduled jobs"
+msgstr "Tareas programadas"
+
+#: ../../include/functions_api.php:118
+msgid "Not `set`, `get` or `help` operation selected."
+msgstr "No hay operaciĆ³n 'set', 'get' o 'help' seleccionada"
+
+#: ../../include/functions_api.php:128
+msgid "This operation does not exist."
+msgstr "Esta operaciĆ³n no existe."
+
+#: ../../include/functions_api.php:138
+msgid "The Id does not exist in database."
+msgstr "El ID no existe en la base de datos."
+
+#: ../../include/functions_api.php:148
+msgid "This operation can not be used in cluster elements."
+msgstr "Esta operaciĆ³n no es posible en elementos de un cluster."
+
+#: ../../include/functions_api.php:158
+msgid "The user has not enough permissions for perform this action."
+msgstr "El usuario no tiene los permisos suficientes para llevar a cabo esta acciĆ³n."
+
+#: ../../include/functions_api.php:178
+msgid ""
+"This console is not the environment administrator. Please, manage this feature from "
+"centralized manager console (Metaconsole)."
+msgstr ""
+"Esta consola no es el administrador del entorno. Gestione esta funcionalidad desde la "
+"consola de gestiĆ³n centralizada (Metaconsola)."
+
+#: ../../include/functions_api.php:188
+msgid "Auth error"
+msgstr "Error de autenticaciĆ³n"
+
+#: ../../include/functions_api.php:1456
+msgid "The agent could not be modified. For security reasons, use a group other than 0."
+msgstr ""
+"No se ha podido modificar el agente. Por motivos de seguridad, use un grupo diferente "
+"de 0."
+
+#: ../../include/functions_api.php:1811
+#, php-format
+msgid "Updated %d/%d agents"
+msgstr "Se han actualizado  %d/%d agentes"
+
+#: ../../include/functions_api.php:1819
+msgid "Agent updated."
+msgstr "Agente actualizado."
+
+#: ../../include/functions_api.php:2010
+msgid "Could not create OS"
+msgstr "No se ha podido crear el sistema operativo."
+
+#: ../../include/functions_api.php:2049
+msgid "Could not update OS"
+msgstr "No se ha podido actualizar el sistema operativo"
+
+#: ../../include/functions_api.php:2250
+msgid "The agent was successfully deleted"
+msgstr "El agente se ha eliminado correctamente"
+
+#: ../../include/functions_api.php:3745
+msgid "Network module updated."
+msgstr "MĆ³dulo de red actualizado"
+
+#: ../../include/functions_api.php:4041
+msgid "Plugin module updated."
+msgstr "MĆ³dulo de plugin actualizado"
+
+#: ../../include/functions_api.php:4397
+#, php-format
+msgid "Synthetic module created ID: %s"
+msgstr "ID creada por el mĆ³dulo sintĆ©tico: %s"
+
+#: ../../include/functions_api.php:4550
+msgid "Synthetic module created ID: "
+msgstr "ID del mĆ³dulo sintĆ©tico creado: "
+
+#: ../../include/functions_api.php:4667
+msgid "Data module updated."
+msgstr "Datos del mĆ³dulo actualizado"
+
+#: ../../include/functions_api.php:5040
+msgid "SNMP module updated."
+msgstr "MĆ³dulo SNMP actualizado"
+
+#: ../../include/functions_api.php:5647
+msgid "Error creating alert template. Id_group cannot be left blank."
+msgstr "Error al crear plantilla de alerta. Id_group no puede estar en blanco."
+
+#: ../../include/functions_api.php:5661
+msgid ""
+"Error creating alert template. Invalid id_group or the user has not enough permission "
+"to make this action."
+msgstr ""
+"Error al crear plantilla de alerta. Id_group no vƔlido o no tiene permisos "
+"suficientes para ejecutar esta acciĆ³n."
+
+#: ../../include/functions_api.php:5807
+msgid ""
+"Error updating alert template. Invalid id_group or the user has not enough permission "
+"to make this action."
+msgstr ""
+"Error al cargar la plantilla de la alerta. Id_group no vƔlido o el usuario no tiene "
+"los permisos suficientes para ejecutar esta acciĆ³n."
+
+#: ../../include/functions_api.php:5891
+msgid "Successful update of the alert template"
+msgstr "ActualizaciĆ³n correcta de la plantilla de alerta"
+
+#: ../../include/functions_api.php:5939
+msgid "Error deleting alert template. Id_template doesn't exist."
+msgstr "Error al eliminar la plantilla de alerta. Id_template no existe."
+
+#: ../../include/functions_api.php:5968
+msgid "Successful delete of alert template."
+msgstr "Plantilla de alerta borrada correctamente."
+
+#: ../../include/functions_api.php:6388 ../../include/functions_api.php:12215
+#: ../../include/functions_api.php:12281 ../../include/functions_api.php:12562
+#: ../../include/functions_api.php:12642
+#, php-format
+msgid "%d agents affected"
+msgstr "%d agentes afectados"
+
+#: ../../include/functions_api.php:6534
+msgid "Correct deleting of module template."
+msgstr "Plantilla de mĆ³dulo borrada correctamente"
+
+#: ../../include/functions_api.php:6642
+msgid "Successful delete of module template."
+msgstr "Plantilla de mĆ³dulo eliminada correctamente."
+
+#: ../../include/functions_api.php:6675
+msgid "Error validating alert. Id_template cannot be left blank."
+msgstr "Error al validar la alerta. Id_template no puede estar en blanco."
+
+#: ../../include/functions_api.php:6683
+msgid "Error validating alert. Id_agent cannot be left blank."
+msgstr "Error al validar a alerta. Id_agent no puede estar vacĆ­o."
+
+#: ../../include/functions_api.php:6691
+msgid "Error validating alert. Id_module cannot be left blank."
+msgstr "Error al validar la alerta. Id_module no puede estar en blanco."
+
+#: ../../include/functions_api.php:6762
+msgid "Error validating alert. Specified alert does not exist."
+msgstr "Error al validar alerta. La alerta especificada no existe."
+
+#: ../../include/functions_api.php:6773
+msgid "Error validating alert"
+msgstr "Error al validar la alerta."
+
+#: ../../include/functions_api.php:6847
+#, php-format
+msgid "Correct validation of all alerts (total %d)."
+msgstr "ValidaciĆ³n correcta de todas las alertas (total %d)."
+
+#: ../../include/functions_api.php:6941
+msgid "Correct validation of all policy alerts."
+msgstr "ValidaciĆ³n correcta de las alertas de polĆ­tica."
+
+#: ../../include/functions_api.php:6983
+msgid ""
+"Error stopping downtime. Periodical and running scheduled downtime cannot be stopped."
+msgstr ""
+"Error al detener el tiempo de inactividad. Las paradas planificadas periĆ³dicas y en "
+"ejecuciĆ³n no pueden detenerse."
+
+#: ../../include/functions_api.php:6996
+msgid "Downtime stopped."
+msgstr "Tiempo de inactividad interrumpido"
+
+#: ../../include/functions_api.php:7478
+msgid "and this modules are doesn't exists or not applicable a this agents: "
+msgstr "y este mĆ³dulo no existe o no es aplicable a estos agentes: "
+
+#: ../../include/functions_api.php:7482
+msgid "and this agents are generate problems: "
+msgstr "y estos agentes generan problemas: "
+
+#: ../../include/functions_api.php:7486
+msgid "and this agents with ids are doesn't exists: "
+msgstr "y estos agentes con los identificadores no existen: "
+
+#: ../../include/functions_api.php:7634
+msgid "Planned downtime updated"
+msgstr "Tiempo de parada planificado actualizado"
+
+#: ../../include/functions_api.php:7710
+msgid " Agents deleted"
+msgstr " Agentes eliminados"
+
+#: ../../include/functions_api.php:7791
+msgid " Agents added"
+msgstr " Agentes aƱadidos"
+
+#: ../../include/functions_api.php:7911
+msgid "Data policy module updated."
+msgstr "PolĆ­tica de mĆ³dulo de datos actualizado"
+
+#: ../../include/functions_api.php:8144
+msgid "Network policy module updated."
+msgstr "MĆ³dulo de red de la polĆ­tica actualizado"
+
+#: ../../include/functions_api.php:8401
+msgid "Plugin policy module updated."
+msgstr "MĆ³dulo de plugin de la polĆ­tica actualizado"
+
+#: ../../include/functions_api.php:8910
+msgid "SNMP policy module updated."
+msgstr "MĆ³dulo SNMP de la polĆ­tica actualizado"
+
+#: ../../include/functions_api.php:9255
+msgid "Successful deletion"
+msgstr "Eliminado correctamente."
+
+#: ../../include/functions_api.php:9571
+msgid "User created."
+msgstr "Usuario creado."
+
+#: ../../include/functions_api.php:9666
+msgid "User updated."
+msgstr "Usuario actualizado."
+
+#: ../../include/functions_api.php:9745
+msgid "Enabled user."
+msgstr "Usuario habilitado"
+
+#: ../../include/functions_api.php:9753
+msgid "Disabled user."
+msgstr "Usuario deshabilitado"
+
+#: ../../include/functions_api.php:10050
+#, php-format
+msgid "Template have been inserted in %d agents."
+msgstr "Las plantillas se han insertado en %d agentes."
+
+#: ../../include/functions_api.php:10222
+msgid "XML file was generated successfully in path: "
+msgstr "El archivo XML se ha creado correctamente en la ruta: "
+
+#: ../../include/functions_api.php:10362
+#, php-format
+msgid "Module has been created in %d agents."
+msgstr "El mĆ³dulo se ha cread en %d agentes."
+
+#: ../../include/functions_api.php:10492
+#, php-format
+msgid "Action has been set for %d agents."
+msgstr "La acciĆ³n se ha asignado a %d agentes."
+
+#: ../../include/functions_api.php:11805
+msgid "User deleted."
+msgstr "Usuario borrado."
+
+#: ../../include/functions_api.php:11866
+msgid "User profile added."
+msgstr "Perfil de usuario aƱadido."
+
+#: ../../include/functions_api.php:11933
+msgid "User profile deleted."
+msgstr "Perfil de usuario eliminado."
+
+#: ../../include/functions_api.php:12222
+msgid "Module disabled successfully."
+msgstr "MĆ³dulo deshabilitado correctamente."
+
+#: ../../include/functions_api.php:12224
+msgid "The module could not be disabled."
+msgstr "No se ha podido deshabilitar el mĆ³dulo."
+
+#: ../../include/functions_api.php:12288
+msgid "Module enabled successfully."
+msgstr "MĆ³dulo habilitado correctamente."
+
+#: ../../include/functions_api.php:12290
+msgid "The module could not be enabled."
+msgstr "El mĆ³dulo no se ha podido habilitar."
+
+#: ../../include/functions_api.php:12338 ../../include/functions_api.php:12391
+msgid "The alert could not be disabled."
+msgstr "La alerta no se ha podido deshabilitar."
+
+#: ../../include/functions_api.php:12438 ../../include/functions_api.php:12491
+msgid "The alert could not be enabled."
+msgstr "La alerta no se ha podido habilitar."
+
+#: ../../include/functions_api.php:13754
+msgid "Enabled agent."
+msgstr "Agente habilitado"
+
+#: ../../include/functions_api.php:13762
+msgid "Disabled agent."
+msgstr "Agente deshabilitado"
+
+#: ../../include/functions_api.php:14741
+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:14743
+#, 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:14746
+msgid "This function is for metaconsole only."
+msgstr "funciĆ³n exclusiva de la Metaconsola."
+
+#: ../../include/functions_api.php:15131 ../../include/functions_api.php:15202
+msgid "Successfully deleted."
+msgstr "Eliminado correctamente"
+
+#: ../../include/functions_api.php:15161
+msgid "The user cannot access the cluster."
+msgstr "El usuario no puede acceder al cluster."
+
+#: ../../include/functions_api.php:16047
+msgid "Event filter successfully created."
+msgstr "Filtro de evento creado correctamente."
+
+#: ../../include/functions_api.php:16280
+msgid "Event filter successfully updated."
+msgstr "Filtro de evento creado correctamente."
+
+#: ../../include/functions_api.php:16321
+msgid "Event filter successfully deleted."
+msgstr "Filtro de evento borrado correctamente."
+
+#: ../../include/functions_api.php:16637
+msgid "Validated traps."
+msgstr "Traps validados."
+
+#: ../../include/functions_api.php:16664
+msgid "Deleted traps."
+msgstr "Traps eliminados."
+
+#: ../../include/functions_api.php:16857
+#, 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:16859
+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:17311
+#, 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:17500
+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:17508
+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:17533
+msgid "Error in discovery task enabling/disabling."
+msgstr "Error al habilitar/deshabilitar la tarea discovery."
+
+#: ../../include/functions_api.php:17541
+msgid "Enabled discovery task."
+msgstr "Tarea discovery habilitada."
+
+#: ../../include/functions_api.php:17549
+msgid "Disabled discovery task."
+msgstr "Tarea discovery deshabilitada."
+
+#: ../../include/functions_networkmap.php:1303
+msgid "Radial dynamic"
+msgstr "DinƔmico radial"
+
+#: ../../include/functions_networkmap.php:1307 ../../include/functions_maps.php:38
+msgid "Topology"
+msgstr "TopologĆ­a"
+
+#: ../../include/functions_networkmap.php:1332
+msgid "Create a new topology map"
+msgstr "Crear nuevo mapa topolĆ³gico"
+
+#: ../../include/functions_networkmap.php:1333
+msgid "Create a new group map"
+msgstr "Crear nuevo mapa de grupo"
+
+#: ../../include/functions_networkmap.php:1334
+msgid "Create a new dynamic map"
+msgstr "Crear un nuevo mapa dinƔmico"
+
+#: ../../include/functions_networkmap.php:1336
+msgid "Create a new radial dynamic map"
+msgstr "Crear un nuevo mapa dinƔmico radial"
+
+#: ../../include/functions_networkmap.php:2068 ../../include/functions_maps.php:73
+#: ../../include/functions_planned_downtimes.php:949
+msgid "Copy of "
+msgstr "Copiar de "
+
+#: ../../include/functions_networkmap.php:3404
+msgid "Map not found."
+msgstr "Mapa no encontrado."
+
+#: ../../include/ajax/double_auth.ajax.php:144
+msgid "This is the private code that you should use with your authenticator app"
+msgstr ""
+"Esta es la clave privada que deberĆ­as usar con la aplicaciĆ³n de autentificaciĆ³n."
+
+#: ../../include/ajax/double_auth.ajax.php:145
+#: ../../include/ajax/double_auth.ajax.php:288
+msgid "You could enter the code manually or use the QR code to add it automatically"
+msgstr ""
+"Puedes introducir el cĆ³digo manualmente o usar el cĆ³digo QR para aƱadirlo "
+"automƔticamente."
+
+#: ../../include/ajax/double_auth.ajax.php:151
+#: ../../include/ajax/double_auth.ajax.php:294
+msgid "QR"
+msgstr "QR"
+
+#: ../../include/ajax/double_auth.ajax.php:190
+msgid "You are about to activate the double authentication"
+msgstr "EstĆ”s a punto de activar la doble autentificaciĆ³n."
+
+#: ../../include/ajax/double_auth.ajax.php:192
+msgid ""
+"With this option enabled, your account access will be more secure, \n"
+"\t\tcause a code generated by other application will be required after the login"
+msgstr ""
+"Con esta opciĆ³n habilitada, el acceso a tu cuenta serĆ” mĆ”s seguro,\n"
+"\t\tporque el cĆ³digo generado por otra aplicaciĆ³n se generarĆ” despuĆ©s de conectarse."
+
+#: ../../include/ajax/double_auth.ajax.php:197
+msgid "You will need to install the app from the following link before continue"
+msgstr ""
+"Tienes que instalar la aplicaciĆ³n desde el siguiente vĆ­nculo antes de continuar."
+
+#: ../../include/ajax/double_auth.ajax.php:202
+msgid "Download the app"
+msgstr "Descargue la aplicaciĆ³n"
+
+#: ../../include/ajax/double_auth.ajax.php:206
+#: ../../include/ajax/double_auth.ajax.php:299 ../../include/functions_register.php:188
+msgid "Continue"
+msgstr "Continuar"
+
+#: ../../include/ajax/double_auth.ajax.php:222
+msgid "Are you installed the app yet?"
+msgstr "ĀæYa has instalado la aplicaciĆ³n?"
+
+#: ../../include/ajax/double_auth.ajax.php:282
+msgid "A private code has been generated"
+msgstr "Un cĆ³digo privado ha sido generado."
+
+#: ../../include/ajax/double_auth.ajax.php:287
+msgid "Before continue, you should create a new entry into the authenticator app"
+msgstr ""
+"Antes de continuar, deberĆ­as crear una nueva entrada dentro de la aplicaciĆ³n de "
+"autentificaciĆ³n."
+
+#: ../../include/ajax/double_auth.ajax.php:297
+msgid "Refresh code"
+msgstr "Actualizar el cĆ³digo"
+
+#: ../../include/ajax/double_auth.ajax.php:366
+msgid "Are you introduced the code in the authenticator app yet?"
+msgstr "ĀæYa has introducido el cĆ³digo en la aplicaciĆ³n de autentificaciĆ³n?"
+
+#: ../../include/ajax/double_auth.ajax.php:429
+msgid "Introduce a code generated by the app"
+msgstr "Introduce el cĆ³digo generado por la aplicaciĆ³n."
+
+#: ../../include/ajax/double_auth.ajax.php:430
+msgid "If the code is valid, the double authentication will be activated"
+msgstr "Si el cĆ³digo es vĆ”lido, se activarĆ” la doble autentificaciĆ³n."
+
+#: ../../include/ajax/double_auth.ajax.php:439
+msgid "Validate code"
+msgstr "Validar cĆ³digo"
+
+#: ../../include/ajax/double_auth.ajax.php:491
+msgid "The code is valid, you can exit now"
+msgstr "El cĆ³digo es vĆ”lido, puedes salir ahora."
+
+#: ../../include/ajax/double_auth.ajax.php:508
+msgid "The code is valid, but it was an error saving the data"
+msgstr "El cĆ³digo es vĆ”lido, pero hubo un error al guardar los datos."
+
+#: ../../include/ajax/heatmap.ajax.php:52 ../../operation/heatmap.php:173
+msgid "3 minutes"
+msgstr "3 minutos"
+
+#: ../../include/ajax/heatmap.ajax.php:78 ../../operation/events/events.php:1629
+msgid "Group agents"
+msgstr "Grupos de agente"
+
+#: ../../include/ajax/heatmap.ajax.php:79
+msgid "Group modules by tag"
+msgstr "Agrupar mĆ³dulos por etiqueta"
+
+#: ../../include/ajax/heatmap.ajax.php:80
+msgid "Group modules by module group"
+msgstr "Agrupar mĆ³dulos por grupo de mĆ³dulos"
+
+#: ../../include/ajax/heatmap.ajax.php:97
+msgid "Show groups"
+msgstr "Mostrar grupos"
+
+#: ../../include/ajax/alert_list.ajax.php:289 ../../include/ajax/alert_list.ajax.php:314
+#: ../../include/ajax/module.php:970
+msgid "Force execution"
+msgstr "Forzar ejecuciĆ³n"
+
+#: ../../include/ajax/alert_list.ajax.php:289 ../../include/ajax/alert_list.ajax.php:314
+#: ../../include/ajax/module.php:970
+msgid "F."
+msgstr "F."
+
+#: ../../include/ajax/alert_list.ajax.php:341
+#: ../../operation/agentes/alerts_status.php:365
+#: ../../operation/agentes/alerts_status.php:366
+#: ../../operation/agentes/alerts_status.php:406
+#: ../../operation/agentes/alerts_status.php:407
+msgid "No alerts found"
+msgstr "No se encontrĆ³ ninguna alerta"
+
+#: ../../include/ajax/alert_list.ajax.php:633
+msgid "Insufficient permissions to validate alerts"
+msgstr "Permisos insuficientes para validar alertas"
+
+#: ../../include/ajax/snmp_browser.ajax.php:113
+#: ../../include/ajax/snmp_browser.ajax.php:124
+#: ../../include/ajax/snmp_browser.ajax.php:134
+msgid "SNMP modules"
+msgstr "MĆ³dulos SNMP"
+
+#: ../../include/ajax/snmp_browser.ajax.php:117
+msgid "Error creating the following modules:"
+msgstr "Error al crear los siguientes mĆ³dulos:"
+
+#: ../../include/ajax/snmp_browser.ajax.php:128
+msgid "Modules successfully created"
+msgstr "MĆ³dulos creados correctamente"
+
+#: ../../include/ajax/snmp_browser.ajax.php:138
+msgid "Module must be applied to an agent or a policy"
+msgstr "El mĆ³dulo debe aplicarse a un agente o a una polĆ­tica"
+
+#: ../../include/ajax/snmp_browser.ajax.php:263
+msgid "Failed to create policy"
+msgstr "Error al crear polĆ­tica"
+
+#: ../../include/ajax/snmp_browser.ajax.php:264
+msgid "Policy created succesfully"
+msgstr "PolĆ­tica creada con Ć©xito"
+
+#: ../../include/ajax/module.php:207
+msgid "3 months"
+msgstr "3 meses"
+
+#: ../../include/ajax/module.php:210
+msgid "2 years"
+msgstr "2 aƱos"
+
+#: ../../include/ajax/module.php:211
+msgid "3 years"
+msgstr "3 aƱos"
+
+#: ../../include/ajax/module.php:223 ../../operation/agentes/datos_agente.php:194
+msgid "Choose a time from now"
+msgstr "Elija un tiempo a partir de ahora"
+
+#: ../../include/ajax/module.php:249 ../../operation/agentes/datos_agente.php:197
+msgid "Specify time range"
+msgstr "Especificar rango de tiempo"
+
+#: ../../include/ajax/module.php:307
+msgid "Exact phrase"
+msgstr "Frase exacta"
+
+#: ../../include/ajax/module.php:399 ../../operation/agentes/stat_win.php:491
+#: ../../operation/agentes/interface_traffic_graph_win.php:308
+msgid ""
+"In Pandora FMS, data is stored compressed. The data visualization in database, charts "
+"or CSV exported data won't match, because is interpreted at runtime. Please check "
+"'Pandora FMS Engineering' chapter from documentation."
+msgstr ""
+"En Pandora FMS los datos se almacenan comprimidos. La visualizaciĆ³n de los datos en "
+"la base de datos, las tablas o los datos exportados en CSV no coincidirƔn porque se "
+"interpretan en el momento de la ejecuciĆ³n. Lea la documentaciĆ³n del capĆ­tulo de "
+"'IngenierĆ­a de Pandora FMS'."
+
+#: ../../include/ajax/module.php:1304
+msgid "Any monitors aren't with this filter."
+msgstr "No todos los monitores llevan este filtro"
+
+#: ../../include/ajax/module.php:1306
+msgid "This agent doesn't have any active monitors."
+msgstr "Este agente no tiene ningĆŗn monitor activo."
+
+#: ../../include/ajax/custom_fields.php:414
+msgid "Current interval"
+msgstr "Intervalo actual"
+
+#: ../../include/ajax/custom_fields.php:460 ../../include/ajax/custom_fields.php:513
+msgid "Modules normal"
+msgstr "MĆ³dulos normales"
+
+#: ../../include/ajax/custom_fields.php:471
+msgid "Modules critical"
+msgstr "MĆ³dulos crĆ­ticos"
+
+#: ../../include/ajax/custom_fields.php:482
+msgid "Modules warning"
+msgstr "MĆ³dulos en estado de advertencia"
+
+#: ../../include/ajax/custom_fields.php:492
+msgid "Modules unknown"
+msgstr "MĆ³dulos desconocidos"
+
+#: ../../include/ajax/custom_fields.php:503
+msgid "Modules no init"
+msgstr "MĆ³dulos no iniciados"
+
+#: ../../include/ajax/custom_fields.php:545
+msgid "New Filter"
+msgstr "Nuevo filtro"
+
+#: ../../include/ajax/custom_fields.php:552
+msgid "Existing Filter"
+msgstr "Filtro existente"
+
+#: ../../include/ajax/custom_fields.php:700
+msgid "Delete filter"
+msgstr "Eliminar filtro"
+
+#: ../../include/ajax/custom_fields.php:750
+msgid "Filter name already exists in the bbdd"
+msgstr "El nombre del filtro ya existe en la base de datos"
+
+#: ../../include/ajax/custom_fields.php:762
+msgid "Please, select a custom field"
+msgstr "Seleccione un campo personalizado"
+
+#: ../../include/ajax/custom_fields.php:790
+msgid "Success create filter."
+msgstr "Se ha creado el filtro."
+
+#: ../../include/ajax/custom_fields.php:797
+msgid "Error create filter."
+msgstr "Error al crear el filtro."
+
+#: ../../include/ajax/custom_fields.php:822 ../../include/ajax/custom_fields.php:895
+msgid "please, select a filter"
+msgstr "Seleccione un filtro"
+
+#: ../../include/ajax/custom_fields.php:838
+msgid "please, select a custom field"
+msgstr "Seleccione un campo personalizado"
+
+#: ../../include/ajax/custom_fields.php:864
+msgid "Success update filter."
+msgstr "Se ha actualizado el filtro."
+
+#: ../../include/ajax/custom_fields.php:871
+msgid "Error update filter."
+msgstr "Error al actualizar el filtro."
+
+#: ../../include/ajax/custom_fields.php:914
+msgid "Success delete filter."
+msgstr "Se ha eliminado el filtro."
+
+#: ../../include/ajax/custom_fields.php:921
+msgid "Error delete filter."
+msgstr "Error al eliminar el filtro."
+
+#: ../../include/ajax/events.php:95
+msgid "Failed to retrieve comments"
+msgstr "No se han podido obtener los comentarios"
+
+#: ../../include/ajax/events.php:748
+msgid "New filter"
+msgstr "Nuevo filtro"
+
+#: ../../include/ajax/events.php:766
+msgid "Save in Group"
+msgstr "Guardar en el grupo"
+
+#: ../../include/ajax/events.php:802
+msgid "Overwrite filter"
+msgstr "Sobrescribir filtro"
+
+#: ../../include/ajax/events.php:873
+msgid "Filter name cannot be left blank"
+msgstr "El nombre del filtro no se puede dejar en blanco."
+
+#: ../../include/ajax/events.php:1328
+msgid "Error executing response"
+msgstr "Error al ejecutar respuesta"
+
+#: ../../include/ajax/events.php:1705
+msgid "Related"
+msgstr "Relacionado"
+
+#: ../../include/ajax/events.php:1717
+msgid "Agent fields"
+msgstr "Campos de agente"
+
+#: ../../include/ajax/events.php:1855
+msgid "Error adding comment"
+msgstr "Error al aƱadir el comentario"
+
+#: ../../include/ajax/events.php:1862
+msgid "Comment added successfully"
+msgstr "Comentario aƱadido correctamente"
+
+#: ../../include/ajax/events.php:1869
+msgid "Error changing event status"
+msgstr "Error al cambiar el estado del evento"
+
+#: ../../include/ajax/events.php:1876
+msgid "Event status changed successfully"
+msgstr "Estado del evento cambiado correctamente"
+
+#: ../../include/ajax/events.php:1883
+msgid "Error changing event owner"
+msgstr "Error al cambiar el propietario del evento"
+
+#: ../../include/ajax/events.php:1890
+msgid "Event owner changed successfully"
+msgstr "Propietario del evento cambiado correctamente"
+
+#: ../../include/ajax/events.php:1897
+msgid "Error deleting event"
+msgstr "Error al eliminar evento"
+
+#: ../../include/ajax/events.php:2023
+msgid "Show all Events 24h"
+msgstr "Mostrar todos los eventos en las Ćŗltimas 24h"
+
+#: ../../include/ajax/events.php:2113
+msgid "These commands will apply to all selected events"
+msgstr "Estos comandos se aplicarƔn en todos los eventos seleccionados"
+
+#: ../../include/ajax/events.php:2175
+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:2209
+msgid "Total Events per node"
+msgstr "Total de eventos por nodo"
+
+#: ../../include/ajax/events.php:2263 ../../operation/events/events.php:1468
+msgid "Events list"
+msgstr "Lista de eventos"
+
+#: ../../include/ajax/events.php:2274
+msgid "Console configuration"
+msgstr "ConfiguraciĆ³n de la consola"
+
+#: ../../include/ajax/events.php:2281
+msgid "Set condition"
+msgstr "Establecer condiciĆ³n"
+
+#: ../../include/ajax/events.php:2288 ../../operation/events/sound_events.php:192
+msgid "All new events"
+msgstr "Todos los eventos nuevos"
+
+#: ../../include/ajax/events.php:2325 ../../operation/events/sound_events.php:229
+msgid "Time Sound"
+msgstr "Programar sonido"
+
+#: ../../include/ajax/events.php:2356
+msgid "Sound melody"
+msgstr "MelodĆ­a de sonido"
+
+#: ../../include/ajax/events.php:2370
+msgid "Test sound"
+msgstr "Probar sonido"
+
+#: ../../include/ajax/events.php:2394
+msgid "Discovered alerts"
+msgstr "Alertas descubiertas"
+
+#: ../../include/ajax/events.php:2401
+msgid "No alerts discovered"
+msgstr "No hay alertas descubiertas"
+
+#: ../../include/ajax/events.php:2406
+msgid "Congrats! thereĆ¢Ā€Ā™s nothing to show"
+msgstr "Ā”Enhorabuena! No hay nada que mostrar"
+
+#: ../../include/ajax/graph.ajax.php:161
+msgid "Time container lapse"
+msgstr "Lapso del contenedor de tiempo"
+
+#: ../../include/functions_agents.php:1009
+msgid "There was an error copying the agent configuration, the copy has been cancelled"
+msgstr "Hubo un error al copiar la configuraciĆ³n del agente, se cancelĆ³ la copia."
+
+#: ../../include/functions_agents.php:2966 ../../include/functions_agents.php:3005
+#: ../../include/functions_agents.php:3076
+msgid "No Monitors"
+msgstr "No hay monitores"
+
+#: ../../include/functions_agents.php:2974 ../../include/functions_agents.php:3029
+#: ../../include/functions_agents.php:3084 ../../include/functions_reporting.php:12456
+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:12463
+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:12470
+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:12477
+msgid "All Monitors OK"
+msgstr "Todos los monitores OK"
+
+#: ../../include/functions_agents.php:3017
+msgid "Alert fired on agent"
+msgstr "Alerta disparada en agente"
+
+#: ../../include/functions_agents.php:4010
+msgid "Dialog response time"
+msgstr "Tiempo de respuesta del diƔlogo"
+
 #: ../../include/functions_plugins.php:58
 #, php-format
 msgid "Failed to erase module %d: %s"
@@ -14416,33 +41365,1358 @@ msgstr "Error al borrar el %d del mĆ³dulo: %s"
 msgid "Failed to erase policy module: %d"
 msgstr "Error al borrar el mĆ³dulo de politica: %d"
 
-#: ../../include/functions_reports.php:639
-#: ../../include/functions_reports.php:1083
-#: ../../include/functions_reporting.php:9926
-#: ../../include/functions_reporting.php:10086
+#: ../../include/functions_integriaims.php:42
+msgid "Configure Integria IMS"
+msgstr "Configurar Integria IMS"
+
+#: ../../include/functions_integriaims.php:43
+msgid "Ticket list"
+msgstr "Lista de tickets"
+
+#: ../../include/functions_integriaims.php:44
+msgid "New ticket"
+msgstr "Nuevo ticket"
+
+#: ../../include/functions_integriaims.php:73
+msgid "Edit ticket"
+msgstr "Editar ticket"
+
+#: ../../include/functions_integriaims.php:74
+msgid "View ticket"
+msgstr "Ver ticket"
+
+#: ../../include/functions_integriaims.php:307
+msgid ""
+"API request failed. Please check Integria IMS' access credentials in Pandora setup."
+msgstr ""
+"Error de peticiĆ³n API. Compruebe los credenciales de acceso a Integria IMS en los "
+"ajustes de Pandora FMS."
+
+#: ../../include/functions_integriaims.php:557
+msgid "File successfully added"
+msgstr "Archivo aƱadido correctamente"
+
+#: ../../include/functions_integriaims.php:558
+msgid "File could not be added"
+msgstr "no se ha podido aƱadir el archivo"
+
+#: ../../include/functions_integriaims.php:561
+msgid "File has an invalid extension"
+msgstr "El archivo tiene una extensiĆ³n no vĆ”lida"
+
+#: ../../include/functions_modules.php:4053
+msgid "Realtime SNMP graph"
+msgstr "GrƔfica SNMP en tiempo real"
+
+#: ../../include/functions_modules.php:4118
+msgid "ALL"
+msgstr "TODO"
+
+#: ../../include/functions_modules.php:4134
+msgid "NOT NORMAL"
+msgstr "NO NORMAL"
+
+#: ../../include/auth/mysql.php:319 ../../include/auth/mysql.php:347
+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:334 ../../include/auth/mysql.php:397
+#: ../../include/auth/mysql.php:412 ../../include/auth/mysql.php:443
+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:360
+msgid ""
+"Ooops User not found in \n"
+"\t\t\t\tdatabase or incorrect password"
+msgstr ""
+"Ā”Uuups! Usuario no encontrado en \n"
+"\t\t\t\tla base de datos o contraseƱa incorrecta."
+
+#: ../../include/auth/mysql.php:718
+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:766
+msgid "Your installation of PHP does not support LDAP"
+msgstr "Su instalaciĆ³n de PHP no es compatible con LDAP."
+
+#: ../../include/api.php:237
+msgid "User or group not specified"
+msgstr "Usuario o grupo no especificados"
+
+#: ../../include/api.php:238
+msgid "User, group not specified"
+msgstr "Usuario y grupo no especificados"
+
+#: ../../include/api.php:269
+msgid "User, group or profile not specified"
+msgstr "Usuario, grupo o perfil no especificados"
+
+#: ../../include/api.php:270
+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:4510
+#: ../../include/functions_reporting.php:4553
+msgid "No data to display within the selected interval"
+msgstr "No hay datos en el intervalo seleccionado"
+
+#: ../../include/functions_graph.php:2635
+msgid "Not fired alerts"
+msgstr "No se han disparado alertas."
+
+#: ../../include/functions_graph.php:2654 ../../include/functions_graph.php:2790
+#: ../../include/functions_graph.php:2888 ../../include/functions_graph.php:3858
+#: ../../include/functions_reporting.php:1924 ../../include/functions_reporting.php:2179
+#: ../../include/functions_reporting.php:2194 ../../include/functions_reporting.php:2222
+#: ../../include/functions_reporting.php:2254 ../../include/functions_reporting.php:3665
+#: ../../include/functions_reporting.php:4033 ../../include/functions_reporting.php:4061
+#: ../../include/functions_reporting.php:4093 ../../include/functions_reporting.php:5066
+#: ../../include/functions_reporting.php:10702
+#: ../../include/functions_reporting.php:10730
+#: ../../include/functions_reporting.php:10762
+#: ../../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:3395 ../../include/functions_ui.php:3815
+#: ../../include/functions_events.php:108 ../../include/functions_events.php:2661
+#: ../../operation/events/events.php:608
+msgid "SYSTEM"
+msgstr "SISTEMA"
+
+#: ../../include/functions_graph.php:5459
+msgid "Main node"
+msgstr "Nodo principal"
+
+#: ../../include/functions_gis.php:27 ../../include/functions_gis.php:31
+#: ../../include/functions_gis.php:36
+msgid "Hierarchy of agents"
+msgstr "JerarquĆ­a de agentes"
+
+#: ../../include/functions_treeview.php:52
+msgid "There was a problem loading module"
+msgstr "Error al cargar el mĆ³dulo"
+
+#: ../../include/functions_treeview.php:342
+msgid "Go to module edition"
+msgstr "Ir a la ediciĆ³n de mĆ³dulos"
+
+#: ../../include/functions_treeview.php:393
+msgid "There was a problem loading alerts"
+msgstr "Error al cargar las alertas"
+
+#: ../../include/functions_treeview.php:478
+msgid "Go to alerts edition"
+msgstr "Ir a \"editar alertas\""
+
+#: ../../include/functions_treeview.php:564 ../../operation/agentes/agent_fields.php:24
+#: ../../operation/agentes/custom_fields.php:24
+#: ../../operation/agentes/estado_generalagente.php:62
+msgid "There was a problem loading agent"
+msgstr "Error al cargar la configuraciĆ³n del agente"
+
+#: ../../include/functions_treeview.php:634
+#: ../../operation/agentes/estado_generalagente.php:505
+msgid "Other IP addresses"
+msgstr "Otras direcciones IP"
+
+#: ../../include/functions_treeview.php:676
+msgid "Next agent contact"
+msgstr "Siguiente contacto con el agente"
+
+#: ../../include/functions_treeview.php:703
+msgid "Edit cluster"
+msgstr "Editar cluster"
+
+#: ../../include/functions_treeview.php:707
+msgid "Go to agent edition"
+msgstr "Ir a \"editar agentes\""
+
+#: ../../include/functions_treeview.php:719
+msgid "Agent data"
+msgstr "Datos de agentes"
+
+#: ../../include/functions_treeview.php:750
+#: ../../operation/agentes/estado_generalagente.php:471
+msgid "Position (Long, Lat)"
+msgstr "PosiciĆ³n (longitud, latitud)"
+
+#: ../../include/functions_treeview.php:767
+#: ../../operation/agentes/estado_generalagente.php:513
+msgid "Timezone Offset"
+msgstr "Zona horaria desactivada"
+
+#: ../../include/functions_treeview.php:799
+msgid "Advanced information"
+msgstr "InformaciĆ³n avanzada"
+
+#: ../../include/functions_treeview.php:812
+msgid "Agent access rate (24h)"
+msgstr "Accesibilidad del agente (24h)"
+
+#: ../../include/functions_treeview.php:878
+#: ../../operation/agentes/pandora_networkmap.view.php:1234
+#: ../../operation/agentes/estado_generalagente.php:720
+msgid "Interface traffic"
+msgstr "Interfaz de trƔfico"
+
+#: ../../include/functions_treeview.php:901
+msgid "Interface information"
+msgstr "Interfaz de informaciĆ³n"
+
+#: ../../include/functions_menu.php:486
+msgid "Configure user"
+msgstr "Configurar usuario"
+
+#: ../../include/functions_menu.php:487
+msgid "Configure profile"
+msgstr "Configurar perfil"
+
+#: ../../include/functions_menu.php:489
+msgid "Module templates management"
+msgstr "GestiĆ³n de plantillas de mĆ³dulos"
+
+#: ../../include/functions_menu.php:490
+msgid "Inventory modules management"
+msgstr "GestiĆ³n de mĆ³dulos de inventario"
+
+#: ../../include/functions_menu.php:497
+msgid "Builder visual console"
+msgstr "Configurador de la consola visual"
+
+#: ../../include/functions_menu.php:499
+msgid "View reporting"
+msgstr "Ver informes"
+
+#: ../../include/functions_menu.php:500
+msgid "Graph viewer"
+msgstr "Visor de grƔficos"
+
+#: ../../include/functions_menu.php:502
+msgid "Manage custom graphs"
+msgstr "Gestionar grƔficos personalizados"
+
+#: ../../include/functions_menu.php:503
+msgid "View graph containers"
+msgstr "Ver contenedores de grƔfico"
+
+#: ../../include/functions_menu.php:504
+msgid "Manage graph containers"
+msgstr "Gestionar contenedores de grƔfico"
+
+#: ../../include/functions_menu.php:505
+msgid "View graph templates"
+msgstr "Ver plantillas de grƔfico"
+
+#: ../../include/functions_menu.php:506
+msgid "Manage graph templates"
+msgstr "Gestionar plantillas de grƔfico"
+
+#: ../../include/functions_menu.php:507
+msgid "Graph template items"
+msgstr "Elementos de la plantilla de grƔfico"
+
+#: ../../include/functions_menu.php:508
+msgid "Graph template wizard"
+msgstr "Asistente de plantilla de grƔfico"
+
+#: ../../include/functions_menu.php:512
+msgid "Manage GIS Maps"
+msgstr "Gestionar mapas GIS"
+
+#: ../../include/functions_menu.php:515
+msgid "Manage messages"
+msgstr "Gestionar mensajes"
+
+#: ../../include/functions_menu.php:517
+msgid "Manage module groups"
+msgstr "Gestionar grupos de mĆ³dulos"
+
+#: ../../include/functions_menu.php:518
+msgid "Manage custom field"
+msgstr "Gestionar campos personalizados"
+
+#: ../../include/functions_menu.php:520
+msgid "Manage alert actions"
+msgstr "Gestionar acciones de alertas"
+
+#: ../../include/functions_menu.php:521
+msgid "Manage commands"
+msgstr "Gestionar comandos"
+
+#: ../../include/functions_menu.php:523
+msgid "Manage export targets"
+msgstr "Gestionar objetivos de exportaciĆ³n"
+
+#: ../../include/functions_menu.php:525 ../../operation/menu.php:136
+msgid "SNMP trap generator"
+msgstr "Generador de traps SNMP"
+
+#: ../../include/functions_menu.php:528
+msgid "Manage incident"
+msgstr "Gestionar incidentes"
+
+#: ../../include/functions_menu.php:530
+msgid "Manage groups"
+msgstr "Gestionar grupos"
+
+#: ../../include/functions_menu.php:590
+msgid "Administration"
+msgstr "AdministraciĆ³n"
+
+#: ../../include/functions_incidents.php:29 ../../include/functions_incidents.php:55
+msgid "Informative"
+msgstr "Informativo"
+
+#: ../../include/functions_incidents.php:30 ../../include/functions_incidents.php:59
+#: ../../include/functions_netflow.php:1845
+msgid "Low"
+msgstr "Bajo"
+
+#: ../../include/functions_incidents.php:31 ../../include/functions_incidents.php:63
+#: ../../include/functions_netflow.php:1846
+msgid "Medium"
+msgstr "Medio"
+
+#: ../../include/functions_incidents.php:32 ../../include/functions_incidents.php:67
+msgid "Serious"
+msgstr "Grave"
+
+#: ../../include/functions_incidents.php:33 ../../include/functions_incidents.php:71
+msgid "Very serious"
+msgstr "Muy grave"
+
+#: ../../include/functions_incidents.php:95 ../../include/functions_incidents.php:116
+msgid "Active incidents"
+msgstr "Incidentes activos"
+
+#: ../../include/functions_incidents.php:96 ../../include/functions_incidents.php:120
+msgid "Active incidents, with comments"
+msgstr "Incidentes activos, con comentarios"
+
+#: ../../include/functions_incidents.php:97 ../../include/functions_incidents.php:124
+msgid "Rejected incidents"
+msgstr "Incidentes rechazados"
+
+#: ../../include/functions_incidents.php:98 ../../include/functions_incidents.php:128
+msgid "Expired incidents"
+msgstr "Incidentes caducados"
+
+#: ../../include/functions_incidents.php:99 ../../include/functions_incidents.php:132
+msgid "Closed incidents"
+msgstr "Incidentes cerrados"
+
+#: ../../include/help/clippy/topology_group.php:35
+msgid "Topology Group"
+msgstr "TipologĆ­a de grupo"
+
+#: ../../include/help/clippy/topology_group.php:35
+msgid ""
+"Please note that group topology maps do not show the parent relationship between "
+"nodes, it only shows the group parentship and the agent distribution inside them. "
+msgstr ""
+"Ten en cuenta que el grupo de mapas de topologĆ­a no muestra la relaciĆ³n padre entre "
+"los nodos, solo muestra el grupo padre y el agente de distribuciĆ³n dentro de ellos. "
+
+#: ../../include/help/clippy/homepage.php:75
+msgid "Hi, can I help you?"
+msgstr "Hola. ĀæTe puedo ayudar?"
+
+#: ../../include/help/clippy/homepage.php:75
+#, php-format
+msgid ""
+"Let me introduce my self: I am Pandorin, the annoying assistant of %s. You can follow "
+"my steps to do basic tasks in %s or you can close me and never see me again."
+msgstr ""
+"DĆ©jame que me presente: Soy PandorĆ­n, el molestoso asistente de %s. Puedes seguir los "
+"pasos que te indico para llevar a cabo tareas bƔsicas en %s o cerrarme y no volverme "
+"a ver nunca."
+
+#: ../../include/help/clippy/homepage.php:75
+msgid "Close this wizard and don't open it again."
+msgstr "Cerrar el asistente y no volver a abrirlo."
+
+#: ../../include/help/clippy/homepage.php:79
+msgid "Which task would you like to do first?"
+msgstr "ĀæQuĆ© tarea te gustarĆ­a realizar primero?"
+
+#: ../../include/help/clippy/homepage.php:79
+#, php-format
+msgid "Ping a Linux or Windows server using a %s agent."
+msgstr "Hacer ping a un servidor Linux o Windows usando un agente %s."
+
+#: ../../include/help/clippy/homepage.php:79
+msgid "Create a alert by email in a critical module."
+msgstr "Crear una alerta que avise por email para un mĆ³dulo crĆ­tico"
+
+#: ../../include/help/clippy/homepage.php:190
+#, php-format
+msgid "The first thing you have to do is to setup the e-mail config on the %s Server."
+msgstr ""
+"Lo primero que tiene que hacer es establecer la configuraciĆ³n del correo electrĆ³nico "
+"del servidor de %s."
+
+#: ../../include/help/clippy/homepage.php:190
+msgid "If you have it already configured you can go to the next step."
+msgstr "Si ya estĆ” configurado, puedes ir al siguiente paso."
+
+#: ../../include/help/clippy/homepage.php:195
+msgid "Now, pull down the Manage alerts menu and click on Actions. "
+msgstr "Ahora, abre el menĆŗ Administrar alertas y haz clic en Acciones. "
+
+#: ../../include/help/clippy/module_unknow.php:35
+msgid "You have unknown modules in this agent."
+msgstr "Tienes mĆ³dulos en estado desconocido en este agente."
+
+#: ../../include/help/clippy/module_unknow.php:35
+msgid ""
+"Unknown modules are modules which receive data normally at least in one occassion, "
+"but at this time are not receving data. Please check our troubleshoot help page to "
+"help you determine why you have unknown modules."
+msgstr ""
+"Los mĆ³dulos desconocidos son mĆ³dulos que reciben datos normalmente al menos en una "
+"ocasiĆ³n, pero en este momento no se reciben datos. Por favor, consulta la pĆ”gina de "
+"ayuda para solucionar los problemas sobre los mĆ³dulos desconocidos."
+
+#: ../../include/help/clippy/modules_not_learning_mode.php:46
+msgid ""
+"Please note that you have your agent setup to do not add new modules coming from the "
+"data XML."
+msgstr ""
+"Por favor, ten en cuenta que si no tienes activado el modo aprendizaje no se aƱadirƔn "
+"nuevos mĆ³dulos que vengan del XML."
+
+#: ../../include/help/clippy/modules_not_learning_mode.php:46
+msgid ""
+"That means if you have a local plugin or add manually new modules to the "
+"configuration file, you won't have it in your agent, unless you first create manually "
+"in the interface (with the exact name and type as coming in the XML file)."
+msgstr ""
+"Esto quiere decir que si se tiene un plugin local o se aƱaden manualmente nuevos "
+"mĆ³dulos al archivo de configuraciĆ³n, no se encontrarĆ” en el agente a menos que se "
+"cree primero en la interfaz (con el mismo nombre y tipo que el archivo XML)."
+
+#: ../../include/help/clippy/modules_not_learning_mode.php:46
+msgid ""
+"You should use the \"normal\" mode (non learn) only when you don't intend to add more "
+"modules to the agent."
+msgstr ""
+"DeberĆ­as usar el modo \"normal\" (no aprendizaje) solo cuando no tengas intenciĆ³n de "
+"aƱadir mĆ”s mĆ³dulos al agente."
+
+#: ../../include/help/clippy/operation_agentes_ver_agente.php:35
+msgid ""
+"The last step is to check the alert created. Click on the round icon to force the "
+"action execution and after a few minutes you will receive the alert in your email."
+msgstr ""
+"El Ćŗltimo paso es comprobar que la alerta ha sido creada. Haz clic en el icono "
+"redondo para forzar la ejecuciĆ³n de la acciĆ³n y despuĆ©s de unos minutos recibirĆ”s la "
+"alerta en tu correo electrĆ³nico."
+
+#: ../../include/help/clippy/operation_agentes_ver_agente.php:35
+msgid "And restart your pandora server to read again general configuration tokens."
+msgstr ""
+"Reinicia tu servidor de Pandora FMS para leer otra vez lo tokens generales de "
+"configuraciĆ³n."
+
+#: ../../include/help/clippy/godmode_alerts_alert_actions.php:35
+msgid ""
+"Let me show you how to create an email action: Click on Create button and fill the "
+"form showed in the following screen."
+msgstr ""
+"Te voy a enseƱar a crear una acciĆ³n de correo electrĆ³nico: haz clic en el botĆ³n Crear "
+"y rellena el formulario que aparecerĆ” en la siguiente pantalla."
+
+#: ../../include/help/clippy/godmode_alerts_alert_actions.php:49
+msgid ""
+"Now, you have to go to the monitors list and look for a critical module to apply the "
+"alert."
+msgstr ""
+"Ahora ve a la lista de monitores y busca un mĆ³dulo en estado crĆ­tico para enlazarle "
+"la alerta."
+
+#: ../../include/help/clippy/godmode_alerts_alert_actions.php:54
+msgid ""
+"Click on the arrow to drop down the Monitoring submenu and select Monitor Detail."
+msgstr ""
+"Haz clic en la flecha para desplegar el submenĆŗ MonitorizaciĆ³n y selecciona Detalle "
+"del monitor."
+
+#: ../../include/help/clippy/agent_out_of_limits.php:35
+msgid "Agent contact date passed it's ETA!."
+msgstr "Ā”La fecha de contacto del agente pasĆ³ su plazo estimado!"
+
+#: ../../include/help/clippy/agent_out_of_limits.php:35
+msgid ""
+"This happen when your agent stopped reporting or the server have any problem (too "
+"load or just down). Check also connectivity between the agent and the server."
+msgstr ""
+"Esto sucede cuando un agente deja de informar o el servidor tiene algĆŗn problema "
+"(demasiada carga o simplemente estƔ caƭdo). Comprueba tambiƩn la conectividad entre "
+"el agente y el servidor."
+
+#: ../../include/help/clippy/godmode_agentes_modificar_agente.php:34
+msgid "I'm going to show you how to monitor a server."
+msgstr "Te voy a mostrar cĆ³mo monitorizar un servidor."
+
+#: ../../include/help/clippy/godmode_agentes_modificar_agente.php:38
+msgid "Please, type an agent to save the modules for monitoring a server."
+msgstr ""
+"Por favor, escribe el nombre de un agente para guardar los mĆ³dulos para monitorizar "
+"un servidor."
+
+#: ../../include/help/clippy/godmode_agentes_modificar_agente.php:43
+msgid "If you have typed the name correctly you will see the agent."
+msgstr "Si has introducido el nombre correctamente, verƔs el agente."
+
+#: ../../include/help/clippy/godmode_agentes_modificar_agente.php:57
+msgid "Now, please choose the agent you searched."
+msgstr "Ahora elige el agente que buscaste."
+
+#: ../../include/help/clippy/godmode_agentes_modificar_agente.php:62
+msgid "Choose the agent and click on the name."
+msgstr "Elige el agente y haz clic en el nombre."
+
+#: ../../include/help/clippy/modules_not_init.php:35
+msgid "You have non initialized modules"
+msgstr "Tienes mĆ³dulos sin iniciar."
+
+#: ../../include/help/clippy/modules_not_init.php:35
+msgid ""
+"This happen when you have just created a module and it's not executed at first time. "
+"Usually in a few seconds should be initialized and you will be able to see in main "
+"view. If you keep non-init modules for more than 24hr (due a problem in it's "
+"execution or configuration) they will be automatically deleted by the system. Non-"
+"init are not visible in the Ć¢Ā€Āœmain viewĆ¢Ā€Ā, you can see/edit them in the module "
+"administration section, in the agent administrator."
+msgstr ""
+"Esto sucede cuando se acaba de crear un mĆ³dulo y no estĆ” ejecutado. Por lo general, "
+"en unos pocos segundos se deberƭa iniciar y podrƔs verlo en la vista principal. Si se "
+"mantienen mĆ³dulos no iniciados durante mĆ”s de 24 horas (puede ser un problema en la "
+"ejecuciĆ³n o configuraciĆ³n) serĆ”n eliminados automĆ”ticamente por el sistema. Los no "
+"iniciados no son visibles en la vista principal; se pueden ver/editar en la secciĆ³n "
+"de administraciĆ³n del mĆ³dulo, en el administrador de agente."
+
+#: ../../include/help/clippy/godmode_alerts_configure_alert_action.php:34
+msgid "Fill the name of your action."
+msgstr "Rellena el nombre de la acciĆ³n."
+
+#: ../../include/help/clippy/godmode_alerts_configure_alert_action.php:38
+msgid ""
+"Select the group in the drop-down list and filter for ACL (the user in this group can "
+"use your action to create an alert)."
+msgstr ""
+"Selecciona el grupo en la lista desplegable y un filtro para las ACL (el usuario en "
+"este grupo puede utilizar la acciĆ³n de crear una alerta)."
+
+#: ../../include/help/clippy/godmode_alerts_configure_alert_action.php:42
+msgid "In the command field select \"email\"."
+msgstr "En este campo de comando elige \"email\"."
+
+#: ../../include/help/clippy/godmode_alerts_configure_alert_action.php:46
+msgid "In the threshold field enter the seconds. The help icon show more information."
+msgstr ""
+"En el campo de umbral se rellena con un nĆŗmero de segundos. El icono de ayuda te "
+"mostrarƔ mƔs ayuda."
+
+#: ../../include/help/clippy/godmode_alerts_configure_alert_action.php:51
+msgid ""
+"In the first field enter the email address/addresses where you want to receive the "
+"email alerts separated with comas ( , ) or white spaces."
+msgstr ""
+"En el primer campo introduce la direcciĆ³n/es de email en las que deseas recibir las "
+"alertas de email separadas por comas (,) o espacios en blanco."
+
+#: ../../include/help/clippy/godmode_alerts_configure_alert_action.php:56
+msgid ""
+"In the \"Subject\"  field  you can use the macros _agent_ or _module_ for each name."
+msgstr ""
+"En el campo \"Asunto\" puedes usar macros _agent_ o _module_ para el asunto del email."
+
+#: ../../include/help/clippy/godmode_alerts_configure_alert_action.php:61
+msgid ""
+"In the text field, you can also use macros. Get more information about the macros by "
+"clicking on the help icon."
+msgstr ""
+"En el campo de texto, tambiĆ©n puedes utilizar las macros. Hay mas informaciĆ³n acerca "
+"de las macros en el icono de ayuda."
+
+#: ../../include/help/clippy/godmode_alerts_configure_alert_action.php:66
+msgid "Click on Create button to create the action."
+msgstr "Haz clic en el botĆ³n de crear para crear la acciĆ³n."
+
+#: ../../include/help/clippy/data_configuration_module.php:35
+msgid "Data Configuration Module."
+msgstr "MĆ³dulos de datos de configuraciĆ³n"
+
+#: ../../include/help/clippy/data_configuration_module.php:35
+msgid ""
+"Please note that information provided here affects how the agent collect information "
+"and generate the data XML. Any data/configuration reported by the agent, different "
+"from data or description is discarded, and the configuration shown in the console "
+"prevails over any configuration coming from the agent, this applies for example for "
+"crit/warn thresholds, interval, module group, min/max value, tags, etc."
+msgstr ""
+"Por favor, ten en cuenta que la informaciĆ³n aquĆ­ proporcionada afecta la forma en que "
+"el agente recoge la informaciĆ³n y genera el XML de datos. Cualquier dato/"
+"configuraciĆ³n enviado por el agente, a diferencia de los enviados desde datos o "
+"descripciĆ³n que son descartados, y la configuraciĆ³n mostrada en la consola prevalece "
+"sobre cualquier configuraciĆ³n procedente del agente. Esto se aplica por ejemplo para "
+"umbrales crĆ­ticos/advertencia, intervalo, grupo mĆ³dulo, valor mĆ­nimo/mĆ”ximo, "
+"etiquetas, etc."
+
+#: ../../include/help/clippy/data_configuration_module.php:35
+msgid ""
+"Information imported FIRST time from the XML will fill the information you can see in "
+"the console, but after the first import, system will ignore any update coming from "
+"the XML/Agent."
+msgstr ""
+"La informaciĆ³n importada por PRIMERA vez desde el XML llenarĆ” la informaciĆ³n visible "
+"en la consola, pero despuĆ©s de la primera importaciĆ³n, el sistema ignorarĆ” cualquier "
+"actualizaciĆ³n que viene del XML/Agente."
+
+#: ../../include/help/clippy/godmode_agentes_configurar_agente.php:34
+msgid "Now you must go to Modules. Don't worry I'll lead you."
+msgstr "Ahora ve a los mĆ³dulos. Pero no te preocupes, te guiarĆ© paso a paso."
+
+#: ../../include/help/clippy/godmode_agentes_configurar_agente.php:39
+msgid "Click in this tab.."
+msgstr "Haz clic en esta pestaƱa."
+
+#: ../../include/help/clippy/godmode_agentes_configurar_agente.php:53
+msgid "Now you must create the module. Don't worry, i'll teach you."
+msgstr "Ahora tienes que crear el mĆ³dulo, pero no te preocupes, yo te enseƱarĆ©."
+
+#: ../../include/help/clippy/godmode_agentes_configurar_agente.php:57
+msgid "Choose the network server module."
+msgstr "Elige el mĆ³dulo de servidor de red."
+
+#: ../../include/help/clippy/godmode_agentes_configurar_agente.php:61
+msgid "And click the button."
+msgstr "Y haz clic en el botĆ³n."
+
+#: ../../include/help/clippy/godmode_agentes_configurar_agente.php:75
+msgid "Now you must create the module. Don't worry, i'll teach you ."
+msgstr "Ahora tienes que crear el mĆ³dulo, pero no te preocupes, yo te enseƱarĆ©."
+
+#: ../../include/help/clippy/godmode_agentes_configurar_agente.php:79
+msgid "Now we are going to fill the form."
+msgstr "Ahora procedemos a rellenar el formulario."
+
+#: ../../include/help/clippy/godmode_agentes_configurar_agente.php:83
+msgid "Please choose Network Management."
+msgstr "Por favor, selecciona \"GestiĆ³n de redes\"."
+
+#: ../../include/help/clippy/godmode_agentes_configurar_agente.php:87
+msgid "Choose the component named \"Host alive\"."
+msgstr "Selecciona el componente llamado \"Host alive\"."
+
+#: ../../include/help/clippy/godmode_agentes_configurar_agente.php:91
+msgid "You can change the name if you want."
+msgstr "Puedes cambiar el nombre si quieres."
+
+#: ../../include/help/clippy/godmode_agentes_configurar_agente.php:95
+msgid "Check if the IP showed is the IP of your machine."
+msgstr "Prueba si la IP mostrada es la IP de tu mƔquina."
+
+#: ../../include/help/clippy/godmode_agentes_configurar_agente.php:99
+msgid "And only to finish it is clicking this button."
+msgstr "Y para terminar pulsa en este botĆ³n."
+
+#: ../../include/help/clippy/godmode_agentes_configurar_agente.php:114
+msgid ""
+"Congrats! Your module has been created. 
and the status color is blue.
That color means that the module hasn't been executed for the first time. In " +"the next seconds, if there is no problem, the status color will turn into red " +"or green." +msgstr "" +"Ā”Felicidades! Has creado tu mĆ³dulo
y el color de estado es azul.
" +"Ese color significa que el mĆ³dulo no se ha ejecutado. En los prĆ³ximos segundos, si no " +"hay problemas, el color de estado pasarĆ” a rojo o verde." + +#: ../../include/help/clippy/godmode_agentes_configurar_agente.php:129 +msgid "Click on alerts tab and then fill the form to add an alert." +msgstr "" +"Haz clic en la pestaƱa de alertas para rellenar el formulario con la alerta a aƱadir." + +#: ../../include/help/clippy/godmode_agentes_configurar_agente.php:143 +msgid "Select the critical module." +msgstr "Elige el mĆ³dulo crĆ­tico." + +#: ../../include/help/clippy/godmode_agentes_configurar_agente.php:147 +msgid "In template select \"Critical Condition\"." +msgstr "En las plantillas, selecciona \"Critical Condition\"." + +#: ../../include/help/clippy/godmode_agentes_configurar_agente.php:151 +msgid "Now, select the action created before." +msgstr "Ahora, elige la acciĆ³n creada anteriormente." + +#: ../../include/help/clippy/godmode_agentes_configurar_agente.php:156 +msgid "Click on Add Alert button to create the alert." +msgstr "Haz clic en el botĆ³n aƱadir alerta para crear la alerta." + +#: ../../include/help/clippy/godmode_agentes_configurar_agente.php:171 +msgid "" +"To test the alert you've just created go to the main view by clicking on the eye tab." +msgstr "" +"Para probar la alerta que acabas de crear, ve a la vista principal, haz clic en la " +"pestaƱa con el icono del ojo." + +#: ../../include/help/clippy/server_queued_modules.php:35 +msgid "Excesive Queued." +msgstr "Demasiados mĆ³dulos en cola" + +#: ../../include/help/clippy/server_queued_modules.php:35 +msgid "" +"You have too much items in the processing queue. This can happen if your server is " +"too loaded and/or not properly configured. This could be something temporal, or a " +"bottleneck. One possible solution is increase number of server threads, but you " +"should consider getting support about this." +msgstr "" +"Tienes demasiados elementos en cola. Esto puede ocurrir si el servidor estĆ” demasiado " +"cargado y/o no estĆ” bien configurado. Puede ser algo temporal, o un cuello de " +"botella. Una posible soluciĆ³n es aumentar el nĆŗmero de hilos del servidor, pero " +"deberĆ­as pensar en consultarlo con soporte tĆ©cnico." + +#: ../../include/help/clippy/servers_down.php:35 +msgid "All servers down" +msgstr "Todo los servidores estĆ”n caĆ­dos" + +#: ../../include/help/clippy/servers_down.php:35 +msgid "" +"Can you up all servers. You go to terminal in linux and execute the next command: " +"\"sudo /etc/init.d/pandora_server restart\". It's possible need introduce root pass." +msgstr "" +"Puedes activar todos los servidores. Tienes que ir al terminal de Linux y ejecutar el " +"siguiente comando: \"sudo /etc/init.d/pandora_server restart\". Es posible que " +"necesites introducir la contraseƱa de root." + +#: ../../include/help/clippy/interval_agent_min.php:35 +msgid "Interval Agent." +msgstr "Intervalo de agente" + +#: ../../include/help/clippy/interval_agent_min.php:35 +msgid "" +"Please note that having agents with a monitoring interval below 300 seconds is not " +"recommended. This will impact seriously in the performance of the server. For " +"example, having 200 agents with one minute interval, is the same than having 1000 " +"agents with a 5 minute interval. The probability of getting unknown modules is " +"higher, and the impact on the server is higher because it requires a shorter response " +"time." +msgstr "" +"Por favor, ten en cuenta que no se recomienda tener agentes con un intervalo de " +"monitorizaciĆ³n por debajo de los 300 segundos. Esto tendrĆ” un impacto serio en el " +"rendimiento del servidor. Tener 200 agentes con un intervalo de un minuto, es lo " +"mismo que tener 1000 agentes con un intervalo de 5 minutos. La probabilidad de " +"obtener mĆ³dulos desconocidos es mĆ”s alto, y el impacto en el servidor es mayor, ya " +"que requiere un tiempo de respuesta mĆ”s corto." + +#: ../../include/help/clippy/operation_agentes_status_monitor.php:34 +msgid "" +"Now, you have to go to the monitors list and look for a \"critical\" module to apply " +"the alert." +msgstr "" +"Ahora, tienes que ir a la lista de monitores y buscar un mĆ³dulo en estado \"crĆ­tico\" " +"para enlazarle una alerta." + +#: ../../include/help/clippy/operation_agentes_status_monitor.php:38 +msgid "" +"If you know the name of the agent or the name of the module in critical status, type " +"it in this field to make the module list shorter. You can write the entire name or " +"just a part of it." +msgstr "" +"Si conoces el nombre del agente o el nombre del mĆ³dulo en estado crĆ­tico, escrĆ­belo " +"en este campo para hacer la lista de mĆ³dulos mĆ”s cortos. Puedes escribir el nombre " +"completo o solo una parte." + +#: ../../include/help/clippy/operation_agentes_status_monitor.php:43 +msgid "Click on Show button to get the modules list filtered." +msgstr "Haz clic en botĆ³n Mostrar para obtener la lista filtrada." + +#: ../../include/help/clippy/operation_agentes_status_monitor.php:58 +msgid "Now, to edit the module, click on the wrench that appears in the type column." +msgstr "" +"Ahora, para editar el mĆ³dulo, haz clic en la llave inglesa que aparece en la columna " +"del tipo." + +#: ../../include/help/clippy/extension_cron_send_email.php:35 +msgid "The configuration of email for the task email is in the enterprise setup:" +msgstr "" +"La configuraciĆ³n del email para la tarea programada de emails estĆ” en la " +"configuraciĆ³n de Enterprise:" + +#: ../../include/help/clippy/extension_cron_send_email.php:35 +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:787 +#: ../../operation/users/user_edit.php:796 +msgid "Profiles/Groups assigned to this user" +msgstr "Perfiles/Grupos asignados a este usuario" + +#: ../../include/functions_network.php:34 +msgid "Top listeners" +msgstr "Top listeners" + +#: ../../include/functions_network.php:35 +msgid "Top talkers" +msgstr "Top talkers" + +#: ../../include/functions_network.php:45 +msgid "Top TCP protocols" +msgstr "Top de protocolos TCP" + +#: ../../include/functions_network.php:46 +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" + +#: ../../include/functions_ui.php:469 +msgid "Error processing request" +msgstr "Error al procesar la peticiĆ³n" + +#: ../../include/functions_ui.php:625 +msgid "" +"Is possible that this view uses part of information which your user has not access" +msgstr "" +"Es posible que esta vista utilice parte de la informaciĆ³n a la cual tu usuario no " +"tenga acceso." + +#: ../../include/functions_ui.php:874 +msgid "Software" +msgstr "Software" + +#: ../../include/functions_ui.php:1361 +msgid "The alert would fire when the value is over " +msgstr "" +"La alerta se dispararĆ” cuando el valor estĆ© por encima de ." + +#: ../../include/functions_ui.php:1366 +msgid "The alert would fire when the value is under " +msgstr "" +"La alerta se dispararĆ” cuando el valor estĆ© por debajo de ." + +#: ../../include/functions_ui.php:1381 +msgid "Unknown option." +msgstr "OpciĆ³n desconocida." + +#: ../../include/functions_ui.php:1735 ../../include/functions_config.php:2384 +msgid "the Flexible Monitoring System" +msgstr "Sistema Flexible de MonitorizaciĆ³n" + +#: ../../include/functions_ui.php:2113 ../../include/functions_ui.php:2139 +#, php-format +msgid "Total items: %s" +msgstr "NĆŗmero total de elementos: %s" + +#: ../../include/functions_ui.php:2540 +msgid "Unknown type" +msgstr "Tipo desconocido" + +#: ../../include/functions_ui.php:3443 +msgid "No matching records found" +msgstr "No se encontraron registros coincidentes" + +#: ../../include/functions_ui.php:3444 +msgid "No data available in table" +msgstr "No hay datos disponibles en la tabla" + +#: ../../include/functions_ui.php:3536 ../../include/functions_ui.php:3537 +msgid "Export current page to CSV" +msgstr "Exportar pĆ”gina actual a CSV" + +#: ../../include/functions_ui.php:3806 ../../include/functions_events.php:75 +#: ../../include/functions_events.php:101 ../../operation/events/events.php:599 +#: ../../operation/events/events.php:663 +msgid "ALERT" +msgstr "ALERTA" + +#: ../../include/functions_ui.php:3884 ../../include/functions_events.php:167 +#: ../../operation/events/events.php:523 +msgid "MAINTENANCE" +msgstr "MANTENIMIENTO" + +#: ../../include/functions_ui.php:3889 ../../include/functions_events.php:170 +#: ../../operation/events/events.php:528 +msgid "INFORMATIONAL" +msgstr "INFORMATIVO" + +#: ../../include/functions_ui.php:3909 ../../include/functions_events.php:176 +#: ../../operation/events/events.php:538 +msgid "MINOR" +msgstr "MENOR" + +#: ../../include/functions_ui.php:3914 ../../include/functions_events.php:173 +#: ../../operation/events/events.php:533 +msgid "MAJOR" +msgstr "MAYOR" + +#: ../../include/functions_ui.php:4725 ../../include/functions_html.php:930 +#: ../../include/functions_html.php:3313 ../../include/functions_html.php:3805 +#: ../../include/functions_reporting.php:11507 +#: ../../include/functions_reporting.php:11664 +#: ../../include/functions_reporting.php:11678 +#: ../../include/functions_reporting.php:14017 +#: ../../include/functions_reporting.php:14092 +msgid "Enterprise version not installed" +msgstr "VersiĆ³n Enterprise no instalada" + +#: ../../include/functions_ui.php:5107 +msgid "Type at least two characters to search." +msgstr "Escribe al menos dos caracteres para buscar." + +#: ../../include/functions_ui.php:6046 +msgid "Unhandled error" +msgstr "Error no tratado" + +#: ../../include/functions_ui.php:6047 +msgid "An unhandled error occurs" +msgstr "Ha ocurrido un error no tratado" + +#: ../../include/functions_ui.php:6318 +#, 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 "" +"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:6639 +msgid "Execute query" +msgstr "Ejecutar consulta" + +#: ../../include/functions_ui.php:6661 +msgid "Results" +msgstr "Resultados" + +#: ../../include/functions_ui.php:6725 +msgid "Show password" +msgstr "Mostrar contraseƱa" + +#: ../../include/functions_visual_map.php:1746 +#: ../../include/functions_visual_map.php:1748 +#: ../../include/rest-api/models/VisualConsole/Items/StaticGraph.php:283 +#: ../../include/rest-api/models/VisualConsole/Items/StaticGraph.php:287 +msgid "Last value: " +msgstr "ƚltimo valor: " + +#: ../../include/functions_visual_map.php:2632 +msgid "Agent successfully added to layout" +msgstr "Agente aƱadido correctamente al diseƱo" + +#: ../../include/functions_visual_map.php:2824 +msgid "Modules successfully added to layout" +msgstr "MĆ³dulos aƱadidos correctamente al diseƱo" + +#: ../../include/functions_visual_map.php:3157 +msgid "Agents successfully added to layout" +msgstr "Agentes aƱadidos correctamente al diseƱo" + +#: ../../include/functions_visual_map.php:3553 +msgid "Cannot load the visualmap" +msgstr "No se puede cargar el mapa visual" + +#: ../../include/functions_visual_map.php:4219 +#: ../../include/rest-api/models/VisualConsole/Item.php:2107 +msgid "Bars graph" +msgstr "GrĆ”fico de barras" + +#: ../../include/functions_visual_map.php:4229 +#: ../../include/rest-api/models/VisualConsole/Item.php:2115 +msgid "Percentile bar" +msgstr "Barra de porcentaje" + +#: ../../include/functions_visual_map.php:4234 +#: ../../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" +msgstr "Asistente de %s" + +#: ../../include/functions_clippy.php:189 ../../include/functions_clippy.php:194 +msgid "End wizard" +msgstr "Cerrar asistente" + +#: ../../include/functions_clippy.php:227 +msgid "Next →" +msgstr "Siguiente →" + +#: ../../include/functions_clippy.php:228 +msgid "← Back" +msgstr "← Anterior" + +#: ../../include/functions_clippy.php:240 +msgid "Do you want to exit the help tour?" +msgstr "ĀæQuieres salir de la ayuda guiada?" + +#: ../../include/functions_alerts.php:674 +msgid "Max and min" +msgstr "MĆ”x. y mĆ­n." + +#: ../../include/functions_alerts.php:677 +msgid "Equal to" +msgstr "Igual a" + +#: ../../include/functions_alerts.php:678 +msgid "Not equal to" +msgstr "Diferente de" + +#: ../../include/functions_alerts.php:682 +msgid "On Change" +msgstr "en estado de cambio" + +#: ../../include/functions_alerts.php:684 +msgid "Not normal status" +msgstr "Estado anormal" + +#: ../../include/functions_alerts.php:1685 +msgid "No actions defined" +msgstr "No hay acciones definidas" + +#: ../../include/functions_alerts.php:2658 +msgid "Alert and command group does not match" +msgstr "El grupo de la alerta y del comando no coinciden" + +#: ../../include/functions_snmp.php:65 +msgid "Load Average (Last minute)" +msgstr "Carga media (Ćŗltima hora)" + +#: ../../include/functions_snmp.php:69 +msgid "Load Average (Last 5 minutes)" +msgstr "Carga media (Ćŗltimos 5 minutos)" + +#: ../../include/functions_snmp.php:73 +msgid "Load Average (Last 15 minutes)" +msgstr "Carga media (Ćŗltimos 15 minutos)" + +#: ../../include/functions_snmp.php:77 +msgid "Total Swap Size configured for the host" +msgstr "TamaƱo de intercambio total configurado para el host" + +#: ../../include/functions_snmp.php:81 +msgid "Available Swap Space on the host" +msgstr "Espacio de intercambio disponible en el host" + +#: ../../include/functions_snmp.php:85 +msgid "Total Real/Physical Memory Size on the host" +msgstr "TamaƱo de memoria real/fĆ­sica en el servidor" + +#: ../../include/functions_snmp.php:89 +msgid "Available Real/Physical Memory Space on the host" +msgstr "Memoria real/fĆ­sica disponible en el servidor" + +#: ../../include/functions_snmp.php:93 +msgid "Total Available Memory on the host" +msgstr "Memoria total disponible" + +#: ../../include/functions_snmp.php:97 +msgid "Total Cached Memory" +msgstr "Memoria de cachĆ© total" + +#: ../../include/functions_snmp.php:101 +msgid "Total Buffered Memory" +msgstr "Memoria total del bĆŗfer" + +#: ../../include/functions_snmp.php:105 +msgid "Amount of memory swapped in from disk (kB/s)" +msgstr "La cantidad de memoria intercambiada desde el disco (kB/s)" + +#: ../../include/functions_snmp.php:109 +msgid "Amount of memory swapped to disk (kB/s)" +msgstr "Cantidad de memoria intercambiada con el disco (kB/s)" + +#: ../../include/functions_snmp.php:113 +msgid "Number of blocks sent to a block device" +msgstr "NĆŗmero de bloques enviado al dispositivo de bloques" + +#: ../../include/functions_snmp.php:117 +msgid "Number of blocks received from a block device" +msgstr "NĆŗmero de bloques recibidos del dispositivo de bloques" + +#: ../../include/functions_snmp.php:121 +msgid "Number of interrupts processed" +msgstr "NĆŗmero de interrupciones procesadas" + +#: ../../include/functions_snmp.php:125 +msgid "Number of context switches" +msgstr "NĆŗmero de cambios de contexto" + +#: ../../include/functions_snmp.php:129 +msgid "user CPU time" +msgstr "tiempo de CPU de usuario" + +#: ../../include/functions_snmp.php:133 +msgid "system CPU time" +msgstr "tiempo de CPU del sistema" + +#: ../../include/functions_snmp.php:137 +msgid "idle CPU time" +msgstr "tiempo de inactividad de la CPU" + +#: ../../include/functions_snmp.php:141 +msgid "system Up time" +msgstr "Tiempo de actividad del sistema" + +#: ../../include/functions_snmp.php:349 +msgid "Pagination" +msgstr "PaginaciĆ³n" + +#: ../../include/functions_snmp.php:381 ../../include/functions_snmp.php:389 +msgid "Group by Enterprise String / IP" +msgstr "Agrupar por Cadena Enterprise/IP" + +#: ../../include/functions_db.php:147 +#, php-format +msgid "Error connecting to database %s at %s." +msgstr "Error al conectar a la base de datos %s el %s" + +#: ../../include/functions_db.php:1900 +msgid "Database debug" +msgstr "Depurar BD" + +#: ../../include/functions_db.php:1917 +msgid "SQL sentence" +msgstr "Consulta SQL" + +#: ../../include/functions_db.php:1919 +msgid "Rows" +msgstr "Filas" + +#: ../../include/functions_db.php:1920 +msgid "Saved" +msgstr "Guardado" + +#: ../../include/functions_db.php:1921 +msgid "Time (ms)" +msgstr "Tiempo (ms)" + +#: ../../include/rest-api/models/VisualConsole/Items/ColorCloud.php:438 +msgid "Add new range" +msgstr "AƱadir nuevo intervalo" + +#: ../../include/rest-api/models/VisualConsole/Items/ColorCloud.php:495 +msgid "Current ranges" +msgstr "Intervalos actuales" + +#: ../../include/rest-api/models/VisualConsole/Items/Box.php:217 +#: ../../include/rest-api/models/VisualConsole/Item.php:1994 +msgid "width" +msgstr "ancho" + +#: ../../include/rest-api/models/VisualConsole/Items/Box.php:227 +#: ../../include/rest-api/models/VisualConsole/Item.php:2004 +msgid "height" +msgstr "altura" + +#: ../../include/rest-api/models/VisualConsole/Items/Box.php:249 +#: ../../include/rest-api/models/VisualConsole/Item.php:2026 +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 +msgid "Show on top" +msgstr "Mostrar primero" + +#: ../../include/rest-api/models/VisualConsole/Items/Box.php:311 +msgid "Border Width" +msgstr "Ancho del borde" + +#: ../../include/rest-api/models/VisualConsole/Items/Box.php:335 +msgid "Fill transparent" +msgstr "Relleno transparente" + +#: ../../include/rest-api/models/VisualConsole/Items/BasicChart.php:325 +msgid "Module name color" +msgstr "Color del nombre del mĆ³dulo" + +#: ../../include/rest-api/models/VisualConsole/Items/StaticGraph.php:410 +msgid "Show Last Value" +msgstr "Mostrar Ćŗltimo valor" + +#: ../../include/rest-api/models/VisualConsole/Items/SimpleValue.php:365 +msgid "Avg Value" +msgstr "Valor medio" + +#: ../../include/rest-api/models/VisualConsole/Items/BarsGraph.php:487 +#: ../../include/rest-api/models/VisualConsole/Items/ModuleGraph.php:658 +msgid "Graph Type" +msgstr "Tipo de grĆ”fica" + +#: ../../include/rest-api/models/VisualConsole/Items/EventsHistory.php:270 +msgid "12h" +msgstr "12h" + +#: ../../include/rest-api/models/VisualConsole/Items/EventsHistory.php:290 +msgid "Legend color" +msgstr "Color de leyenda" + +#: ../../include/rest-api/models/VisualConsole/Items/ModuleGraph.php:672 +#: ../../include/lib/Dashboard/Widgets/custom_graph.php:339 +#: ../../include/lib/Dashboard/Widgets/single_graph.php:294 +msgid "Show legend" +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 +msgid "Failed to connect to node" +msgstr "No se ha podido conectar con el nodo" + +#: ../../include/rest-api/models/VisualConsole/Items/Odometer.php:416 +msgid "Title color" +msgstr "Color del tĆ­tulo" + +#: ../../include/rest-api/models/VisualConsole/View.php:66 +msgid "Label settings" +msgstr "ConfiguraciĆ³n de etiquetas" + +#: ../../include/rest-api/models/VisualConsole/View.php:72 +#: ../../include/rest-api/models/VisualConsole/View.php:104 +msgid "General settings" +msgstr "ConfiguraciĆ³n general" + +#: ../../include/rest-api/models/VisualConsole/View.php:78 +#: ../../include/rest-api/models/VisualConsole/View.php:94 +#: ../../include/rest-api/models/VisualConsole/View.php:110 +msgid "Specific settings" +msgstr "ConfiguraciĆ³n especĆ­fica" + +#: ../../include/rest-api/models/VisualConsole/View.php:213 +msgid "Item type not valid [" +msgstr "Tipo de elemento no vĆ”lido [" + +#: ../../include/rest-api/models/VisualConsole/View.php:218 +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 +msgid "NetworkLink from" +msgstr "NetworkLink de" + +#: ../../include/rest-api/models/VisualConsole/View.php:733 +#: ../../include/rest-api/models/VisualConsole/View.php:812 +#, 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 +#: ../../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 +#: ../../operation/agentes/interface_traffic_graph_win.php:79 +msgid "Out" +msgstr "Fuera" + +#: ../../include/rest-api/models/VisualConsole/View.php:808 +msgid "NetworkLink to" +msgstr "NetworkLink a" + +#: ../../include/rest-api/models/VisualConsole/View.php:860 +#, 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 +msgid "Label position" +msgstr "PosiciĆ³n de la etiqueta" + +#: ../../include/rest-api/models/VisualConsole/Item.php:2051 +msgid "Link enabled" +msgstr "Enlace habilitado" + +#: ../../include/rest-api/models/VisualConsole/Item.php:2093 +msgid "Static graph" +msgstr "Imagen estĆ”tica" + +#: ../../include/rest-api/models/VisualConsole/Item.php:2111 +msgid "Event History Graph" +msgstr "GrĆ”fica de histĆ³rico de eventos" + +#: ../../include/rest-api/models/VisualConsole/Item.php:2119 +msgid "Percentile bubble" +msgstr "GrĆ”fica bubble de percentil" + +#: ../../include/rest-api/models/VisualConsole/Item.php:2584 +#: ../../include/rest-api/models/VisualConsole/Item.php:2585 +msgid "Image Vc" +msgstr "Imagen Vc" + +#: ../../include/functions_notifications.php:807 +msgid "Subtype customization" +msgstr "PersonalizaciĆ³n de subtipo" + +#: ../../include/functions_notifications.php:834 +msgid "Notified users" +msgstr "Usuarios notificados" + +#: ../../include/functions_notifications.php:834 +msgid "Notified groups" +msgstr "Grupos notificados" + +#: ../../include/functions_notifications.php:835 +msgid "Add users" +msgstr "AƱadir usuarios" + +#: ../../include/functions_notifications.php:835 +msgid "Add groups" +msgstr "AƱadir grupos" + +#: ../../include/functions_notifications.php:836 +msgid "Delete users" +msgstr "Borrar usuarios" + +#: ../../include/functions_notifications.php:836 +msgid "Delete groups" +msgstr "Borrar grupos" + +#: ../../include/functions_notifications.php:941 +msgid "Remove elements" +msgstr "Eliminar elementos" + +#: ../../include/functions_notifications.php:1058 +msgid "Click here to get more information" +msgstr "Pinche aquĆ­ para obtener mĆ”s informaciĆ³n" + +#: ../../include/functions_reports.php:638 ../../include/functions_reports.php:642 +#: ../../include/functions_reports.php:647 ../../include/functions_reports.php:653 +#: ../../include/functions_reports.php:660 ../../include/functions_reports.php:664 +#: ../../include/functions_reports.php:668 ../../include/functions_reports.php:675 +#: ../../include/functions_reports.php:681 ../../include/functions_reports.php:686 +#: ../../include/functions_groups.php:123 ../../include/functions_groups.php:187 +#: ../../operation/search_results.php:119 ../../operation/agentes/ver_agente.php:1560 +msgid "Graphs" +msgstr "GrĆ”ficos" + +#: ../../include/functions_reports.php:639 ../../include/functions_reports.php:1083 +#: ../../include/functions_reporting.php:10138 +#: ../../include/functions_reporting.php:10298 msgid "Simple graph" msgstr "GrĆ”fico simple" -#: ../../include/functions_reports.php:643 -#: ../../enterprise/include/functions_reporting.php:8347 -msgid "Simple baseline graph" -msgstr "GrĆ”fico simple de lĆ­nea base" - -#: ../../include/functions_reports.php:661 -#: ../../enterprise/include/functions_reporting_csv.php:1137 -msgid "SQL vertical bar graph" -msgstr "GrĆ”fico de barra vertical SQL" - -#: ../../include/functions_reports.php:665 -#: ../../enterprise/include/functions_reporting_csv.php:1141 -msgid "SQL pie graph" -msgstr "GrĆ”fico circular de SQL" - -#: ../../include/functions_reports.php:669 -#: ../../enterprise/include/functions_reporting_csv.php:1139 -msgid "SQL horizontal bar graph" -msgstr "GrĆ”fica de barras horizontales SQL" - #: ../../include/functions_reports.php:676 msgid "Automatic combined Graph" msgstr "GrĆ”fico automĆ”tico combinado" @@ -14455,67 +42729,14 @@ msgstr "GrĆ”fico de disponibilidad" msgid "Module Histogram graph" msgstr "GrĆ”fico de histĆ³rico de mĆ³dulo" -#: ../../include/functions_reports.php:692 -#: ../../enterprise/tools/ipam/ipam.php:453 ../../enterprise/godmode/menu.php:322 -msgid "IPAM" -msgstr "IPAM" - #: ../../include/functions_reports.php:693 msgid "IPAM networks" msgstr "Redes IPAM" -#: ../../include/functions_reports.php:698 -#: ../../include/functions_reports.php:703 -#: ../../include/functions_reports.php:707 -#: ../../include/functions_reports.php:711 -#: ../../include/functions_reports.php:717 -#: ../../enterprise/operation/services/services.service.php:128 -#: ../../enterprise/operation/services/services.list.php:508 -#: ../../enterprise/include/functions_reporting_csv.php:1991 -msgid "SLA" -msgstr "SLA" - -#: ../../include/functions_reports.php:699 -#: ../../include/functions_reporting.php:950 -#: ../../enterprise/include/functions_reporting_csv.php:1481 -#: ../../enterprise/godmode/services/services.service.php:832 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:221 -msgid "S.L.A." -msgstr "SLA" - -#: ../../include/functions_reports.php:704 -#: ../../enterprise/include/functions_reporting.php:2371 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:222 -msgid "Monthly S.L.A." -msgstr "SLA mensual" - -#: ../../include/functions_reports.php:708 -#: ../../enterprise/include/functions_reporting.php:3323 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:223 -msgid "Weekly S.L.A." -msgstr "SLA semanal" - -#: ../../include/functions_reports.php:712 -#: ../../enterprise/include/functions_reporting.php:4301 -msgid "Hourly S.L.A." -msgstr "SLA cada hora" - -#: ../../include/functions_reports.php:718 -#: ../../enterprise/include/functions_reporting.php:5566 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:226 -msgid "Services S.L.A." -msgstr "SLA de servicios" - -#: ../../include/functions_reports.php:724 -#: ../../include/functions_reports.php:728 +#: ../../include/functions_reports.php:724 ../../include/functions_reports.php:728 msgid "Forecasting" msgstr "PredicciĆ³n" -#: ../../include/functions_reports.php:725 -#: ../../enterprise/include/functions_reporting_csv.php:768 -msgid "Prediction date" -msgstr "Fecha de predicciĆ³n" - #: ../../include/functions_reports.php:729 msgid "Projection graph" msgstr "GrĆ”fico de proyecciĆ³n" @@ -14540,100 +42761,23 @@ msgstr "Informe de monitores" msgid "Serialize data" msgstr "Serializar datos" -#: ../../include/functions_reports.php:754 -#: ../../include/functions_reporting.php:6442 -#: ../../include/functions_reporting.php:9742 -#: ../../enterprise/include/functions_reporting_csv.php:1170 -#: ../../enterprise/include/functions_reporting_csv.php:1188 -#: ../../enterprise/include/functions_reporting_csv.php:1190 -msgid "Summatory" -msgstr "Sumatorio" - #: ../../include/functions_reports.php:758 msgid "Historical Data" msgstr "Datos histĆ³ricos" -#: ../../include/functions_reports.php:762 -#: ../../include/functions_reporting.php:9259 -#: ../../include/functions_reporting_html.php:3754 -#: ../../enterprise/include/functions_reporting_csv.php:1311 -#: ../../enterprise/include/functions_reporting_csv.php:1325 -#: ../../enterprise/include/functions_reporting_csv.php:1329 -#: ../../enterprise/include/functions_reporting_csv.php:1340 -msgid "Increment" -msgstr "Incremento" - -#: ../../include/functions_reports.php:766 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1742 -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:196 -#: ../../godmode/reporting/reporting_builder.item_editor.php:1238 -msgid "Last value" -msgstr "ƚltimo valor" - -#: ../../include/functions_reports.php:770 -#: ../../include/functions_reports.php:776 -#: ../../include/functions_reports.php:782 -#: ../../include/functions_reports.php:788 -#: ../../include/functions_reports.php:794 -#: ../../include/functions_reports.php:801 -#: ../../include/functions_reports.php:808 -#: ../../include/functions_reports.php:814 -#: ../../include/functions_reports.php:818 -#: ../../include/functions_reports.php:823 +#: ../../include/functions_reports.php:770 ../../include/functions_reports.php:776 +#: ../../include/functions_reports.php:782 ../../include/functions_reports.php:788 +#: ../../include/functions_reports.php:794 ../../include/functions_reports.php:801 +#: ../../include/functions_reports.php:808 ../../include/functions_reports.php:814 +#: ../../include/functions_reports.php:818 ../../include/functions_reports.php:823 #: ../../include/functions_reports.php:829 msgid "Grouped" msgstr "Agrupado" -#: ../../include/functions_reports.php:771 ../../include/ajax/events.php:1494 -#: ../../include/functions_reporting.php:9404 -#: ../../enterprise/include/functions_reporting_csv.php:992 -#: ../../enterprise/include/class/Aws.cloud.php:345 -#: ../../enterprise/meta/include/functions_wizard_meta.php:248 -#: ../../enterprise/meta/include/functions_wizard_meta.php:533 -#: ../../enterprise/meta/include/functions_wizard_meta.php:605 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1153 -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:48 -#: ../../godmode/setup/setup.php:96 ../../godmode/setup/setup.php:249 -#: ../../godmode/servers/plugin.php:367 ../../godmode/servers/plugin.php:372 -#: ../../godmode/alerts/configure_alert_template.php:229 -#: ../../godmode/alerts/configure_alert_template.php:233 -msgid "General" -msgstr "General" - -#: ../../include/functions_reports.php:777 -#: ../../include/functions_reports.php:783 -#: ../../enterprise/include/functions_reporting_csv.php:986 -msgid "Group report" -msgstr "Grupo de informes" - -#: ../../include/functions_reports.php:789 -#: ../../include/functions_reporting.php:3052 -#: ../../enterprise/include/functions_reporting_csv.php:900 -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:47 -msgid "Exception" -msgstr "ExcepciĆ³n" - -#: ../../include/functions_reports.php:795 -#: ../../extensions/agents_modules.php:465 -msgid "Agents/Modules" -msgstr "Agentes/MĆ³dulos" - #: ../../include/functions_reports.php:802 msgid "Agents/Modules status" msgstr "Estado de los agentes/mĆ³dulos" -#: ../../include/functions_reports.php:809 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2251 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:438 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2225 -msgid "SQL query" -msgstr "Consulta SQL" - -#: ../../include/functions_reports.php:815 -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:46 -msgid "Top n" -msgstr "Top N" - #: ../../include/functions_reports.php:819 msgid "Network interfaces" msgstr "Interfaces de red" @@ -14642,32 +42786,10 @@ msgstr "Interfaces de red" msgid "Custom Render" msgstr "Renderizado personalizado" -#: ../../include/functions_reports.php:830 -#: ../../include/functions_reporting.php:8129 -#: ../../include/functions_reporting.php:8521 -#: ../../enterprise/include/functions_reporting_csv.php:473 -#: ../../enterprise/include/functions_reporting.php:1227 -msgid "Availability" -msgstr "Disponibilidad" - -#: ../../include/functions_reports.php:834 -#: ../../include/functions_reports.php:838 +#: ../../include/functions_reports.php:834 ../../include/functions_reports.php:838 msgid "Text/HTML " msgstr "Texto/HTML " -#: ../../include/functions_reports.php:835 -#: ../../include/lib/Dashboard/Widgets/post.php:214 -#: ../../include/functions_reporting.php:6831 -#: ../../enterprise/include/functions_reporting_csv.php:2387 -#: ../../enterprise/include/functions_reporting_csv.php:2401 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2189 -#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor_form.php:74 -#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:385 -#: ../../godmode/setup/setup_visuals.php:1289 ../../godmode/setup/news.php:205 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2189 -msgid "Text" -msgstr "Texto" - #: ../../include/functions_reports.php:839 msgid "Import text from URL" msgstr "Importar texto de una URL" @@ -14700,80 +42822,18 @@ msgstr "Informe de evento de agente" msgid "Group event report" msgstr "Informe de evento de grupo" -#: ../../include/functions_reports.php:878 -#: ../../include/functions_reports.php:885 -#: ../../include/functions_reports.php:886 -#: ../../include/functions_reports.php:890 -#: ../../include/functions_reporting.php:2616 -#: ../../enterprise/operation/menu.php:19 -#: ../../enterprise/operation/snmpconsole/snmp_view.php:23 -#: ../../enterprise/operation/agentes/ver_agente.php:192 -#: ../../enterprise/operation/inventory/inventory.php:137 -#: ../../enterprise/include/functions_reporting_csv.php:754 -#: ../../enterprise/meta/general/main_menu.php:229 -#: ../../enterprise/godmode/agentes/configurar_agente.php:88 -#: ../../enterprise/godmode/policies/policies.php:539 -#: ../../godmode/setup/setup_integria.php:314 -#: ../../godmode/agentes/configurar_agente.php:712 -msgid "Inventory" -msgstr "Inventario" - -#: ../../include/functions_reports.php:879 -#: ../../enterprise/include/functions_reporting_csv.php:696 -msgid "Agents inventory" -msgstr "Inventario de agentes" - #: ../../include/functions_reports.php:891 msgid "Inventory changes" msgstr "Inventario de cambios" -#: ../../include/functions_reports.php:898 -#: ../../include/functions_reports.php:902 -#: ../../include/class/ModuleTemplates.class.php:195 -#: ../../include/class/ModuleTemplates.class.php:213 -#: ../../include/class/ConfigPEN.class.php:327 -#: ../../enterprise/views/ncm/agent/details.php:600 -#: ../../enterprise/meta/monitoring/wizard/wizard.module.web.php:100 -#: ../../enterprise/meta/monitoring/wizard/wizard.module.local.php:107 -#: ../../enterprise/meta/monitoring/wizard/wizard.agent.php:64 -#: ../../enterprise/meta/monitoring/wizard/wizard.module.network.php:119 -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:351 -#: ../../enterprise/godmode/modules/configure_local_component.php:483 -#: ../../enterprise/godmode/agentes/agent_disk_conf_editor.php:251 -#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:652 -#: ../../godmode/setup/setup.php:330 ../../godmode/menu.php:210 -#: ../../godmode/agentes/planned_downtime.list.php:615 -msgid "Configuration" -msgstr "ConfiguraciĆ³n" - -#: ../../include/functions_reports.php:899 -#: ../../include/functions_reporting.php:6257 +#: ../../include/functions_reports.php:899 ../../include/functions_reporting.php:6434 msgid "Agent configuration" msgstr "ConfiguraciĆ³n de agentes" -#: ../../include/functions_reports.php:903 -#: ../../include/functions_reporting.php:4518 +#: ../../include/functions_reports.php:903 ../../include/functions_reporting.php:4695 msgid "Group configuration" msgstr "ConfiguraciĆ³n del grupo" -#: ../../include/functions_reports.php:906 -#: ../../include/functions_reports.php:910 -#: ../../include/functions_reports.php:914 -#: ../../include/functions_reports.php:918 -#: ../../enterprise/include/functions_enterprise.php:452 -#: ../../enterprise/meta/general/main_menu.php:381 -#: ../../enterprise/meta/general/logon_ok.php:37 -#: ../../enterprise/meta/general/main_header.php:275 -#: ../../godmode/setup/setup.php:151 ../../godmode/setup/setup.php:271 -#: ../../godmode/menu.php:342 -msgid "Netflow" -msgstr "Netflow" - -#: ../../include/functions_reports.php:907 -#: ../../enterprise/include/functions_reporting_csv.php:2607 -msgid "Netflow area chart" -msgstr "GrĆ”fico de Ć”rea de Netflow" - #: ../../include/functions_reports.php:911 msgid "Netflow data table" msgstr "Tabla de datos de Netflow" @@ -14782,59 +42842,15 @@ msgstr "Tabla de datos de Netflow" msgid "Netflow summary table" msgstr "Tabla de resumen de Netflow" -#: ../../include/functions_reports.php:919 -#: ../../include/functions_reporting.php:5933 -#: ../../enterprise/include/functions_reporting_csv.php:2786 -msgid "Netflow top-N connections" -msgstr "Conexiones Netflow top-N" - -#: ../../include/functions_reports.php:925 -#: ../../enterprise/include/functions_reporting.php:2144 -msgid "Log" -msgstr "Log" - -#: ../../include/functions_reports.php:926 -#: ../../enterprise/include/functions_reporting.php:2131 -msgid "Log report" -msgstr "Informe de log" - -#: ../../include/functions_reports.php:932 -#: ../../include/functions_reports.php:933 -#: ../../include/functions_reporting.php:4396 -#: ../../enterprise/include/functions_reporting_csv.php:2531 -msgid "Permissions report" -msgstr "Informe de permisos" - -#: ../../include/functions_reports.php:938 -#: ../../enterprise/views/ncm/devices/list.php:64 -msgid "NCM" -msgstr "NCM" - #: ../../include/functions_reports.php:939 msgid "Network configuration changes" msgstr "Cambios en la configuraciĆ³n de red" -#: ../../include/functions_reports.php:956 -#: ../../enterprise/godmode/policies/policy_modules.php:1363 -#: ../../godmode/agentes/configurar_agente.php:2114 -#, php-format -msgid "copy of %s" -msgstr "copia de %s" - #: ../../include/functions_reports.php:1066 msgid "Macro" msgstr "Macro" -#: ../../include/functions_reports.php:1080 -#: ../../include/functions_reports.php:1210 -#: ../../enterprise/meta/monitoring/wizard/wizard.php:152 -#: ../../godmode/modules/manage_network_components_form_wizard.php:393 -#: ../../godmode/modules/manage_network_components_form_wizard.php:435 -msgid "String" -msgstr "Cadena" - -#: ../../include/functions_reports.php:1081 -#: ../../include/functions_reports.php:1210 +#: ../../include/functions_reports.php:1081 ../../include/functions_reports.php:1210 #: ../../include/functions_reports.php:1230 msgid "Sql" msgstr "Sql" @@ -14843,782 +42859,739 @@ msgstr "Sql" msgid "Graph Sql" msgstr "GrĆ”fico SQL" -#: ../../include/functions_reports.php:1380 -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:759 -msgid "Period " -msgstr "Periodo " +#: ../../include/functions_html.php:595 ../../include/functions_html.php:969 +msgid "Please select an item from this list." +msgstr "Seleccione un elemento de la lista." -#: ../../include/ajax/module.php:199 ../../include/functions.php:3359 -msgid "30 minutes" -msgstr "30 minutos" +#: ../../include/functions_html.php:621 ../../include/functions_html.php:5910 +msgid "Please select..." +msgstr "Seleccione..." -#: ../../include/ajax/module.php:201 -#: ../../enterprise/godmode/reporting/graph_template_editor.php:220 -msgid "6 hours" -msgstr "6 horas" +#: ../../include/functions_html.php:1592 +msgid "Type to search agents" +msgstr "Escriba para buscar agentes" -#: ../../include/ajax/module.php:202 -#: ../../enterprise/godmode/reporting/graph_template_editor.php:221 -#: ../../godmode/setup/performance.php:532 -msgid "12 hours" -msgstr "12 horas" +#: ../../include/functions_html.php:1606 +msgid "Type to search modules" +msgstr "Escriba para buscar mĆ³dulos" -#: ../../include/ajax/module.php:203 ../../include/ajax/graph.ajax.php:150 -#: ../../include/functions.php:2695 -#: ../../enterprise/godmode/reporting/graph_template_editor.php:222 -#: ../../godmode/reporting/create_container.php:350 -msgid "1 day" -msgstr "1 dĆ­a" +#: ../../include/functions_html.php:1677 +msgid "Only common modules" +msgstr "Solo mĆ³dulos comunes" -#: ../../include/ajax/module.php:204 ../../include/ajax/graph.ajax.php:153 -#: ../../include/functions.php:2696 -#: ../../godmode/reporting/create_container.php:353 -msgid "1 week" -msgstr "1 semana" +#: ../../include/functions_html.php:2123 +msgid "weeks" +msgstr "semanas" -#: ../../include/ajax/module.php:205 ../../include/ajax/graph.ajax.php:154 -#: ../../include/functions.php:2697 -#: ../../enterprise/godmode/reporting/graph_template_editor.php:226 -#: ../../godmode/reporting/create_container.php:354 -msgid "15 days" -msgstr "15 dĆ­as" +#: ../../include/functions_html.php:2285 +msgid "Month day" +msgstr "DĆ­a del mes" -#: ../../include/ajax/module.php:206 ../../include/ajax/graph.ajax.php:155 -#: ../../include/functions.php:2698 -#: ../../godmode/reporting/create_container.php:355 -msgid "1 month" -msgstr "1 mes" +#: ../../include/functions_html.php:2287 +msgid "Week day" +msgstr "DĆ­a de la semana" -#: ../../include/ajax/module.php:207 -msgid "3 months" -msgstr "3 meses" +#: ../../include/functions_html.php:4578 +msgid "Type at least two characters to search the module." +msgstr "Escribe al menos dos caracteres para buscar el mĆ³dulo." -#: ../../include/ajax/module.php:208 -#: ../../enterprise/godmode/reporting/graph_template_editor.php:229 -msgid "6 months" -msgstr "6 meses" - -#: ../../include/ajax/module.php:209 ../../include/functions.php:2701 -#: ../../enterprise/godmode/reporting/graph_template_editor.php:230 -msgid "1 year" -msgstr "1 aƱo" - -#: ../../include/ajax/module.php:210 -msgid "2 years" -msgstr "2 aƱos" - -#: ../../include/ajax/module.php:211 -msgid "3 years" -msgstr "3 aƱos" - -#: ../../include/ajax/module.php:307 -msgid "Exact phrase" -msgstr "Frase exacta" - -#: ../../include/ajax/module.php:981 -#: ../../enterprise/meta/include/functions_wizard_meta.php:999 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1084 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1317 -msgid "Thresholds" -msgstr "Umbrales" - -#: ../../include/ajax/module.php:1084 ../../include/ajax/module.php:1092 -#: ../../godmode/agentes/module_manager.php:1042 -#: ../../godmode/agentes/module_manager.php:1050 -msgid "Adopted" -msgstr "Adoptado" - -#: ../../include/ajax/module.php:1092 ../../include/ajax/module.php:1095 -#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:991 -#: ../../godmode/massive/massive_edit_modules.php:1067 -#: ../../godmode/agentes/module_manager.php:1050 -#: ../../godmode/agentes/module_manager.php:1053 -msgid "Unlinked" -msgstr "Desenlazado" - -#: ../../include/ajax/module.php:1304 -msgid "Any monitors aren't with this filter." -msgstr "No todos los monitores llevan este filtro" - -#: ../../include/ajax/module.php:1306 -msgid "This agent doesn't have any active monitors." -msgstr "Este agente no tiene ningĆŗn monitor activo." - -#: ../../include/ajax/visual_console_builder.ajax.php:343 -#: ../../include/functions_visual_map.php:2833 -#: ../../enterprise/operation/agentes/wux_console_view.php:593 -#: ../../enterprise/godmode/setup/setup_acl.php:791 -#: ../../enterprise/godmode/reporting/visual_console_template.php:305 -msgid "No data to show" -msgstr "No hay datos que mostrar" - -#: ../../include/ajax/graph.ajax.php:147 ../../include/ajax/graph.ajax.php:148 -#: ../../include/ajax/graph.ajax.php:149 ../../include/functions.php:2693 -#: ../../include/functions.php:2694 -#: ../../godmode/reporting/create_container.php:347 -#: ../../godmode/reporting/create_container.php:348 -#: ../../godmode/reporting/create_container.php:349 +#: ../../include/functions_html.php:4739 ../../index.php:487 ../../index.php:764 +#: ../../index.php:838 #, php-format -msgid "%s hours" -msgstr "%s horas" +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." -#: ../../include/ajax/graph.ajax.php:151 ../../include/ajax/graph.ajax.php:152 -#: ../../godmode/reporting/create_container.php:351 -#: ../../godmode/reporting/create_container.php:352 +#: ../../include/functions_html.php:5665 +msgid "Type at least two characters to search the user." +msgstr "Escriba al menos dos caracteres para buscar el usuario." + +#: ../../include/functions_html.php:6054 +msgid "Primary group cannot be secondary too." +msgstr "Un grupo primario no puede ser tambiĆ©n secundario." + +#: ../../include/functions_register.php:105 #, php-format -msgid "%s days" -msgstr "%s dĆ­as" +msgid "%s configuration wizard" +msgstr "Asistente de configuraciĆ³n de %s" -#: ../../include/ajax/graph.ajax.php:161 -msgid "Time container lapse" -msgstr "Lapso del contenedor de tiempo" - -#: ../../include/ajax/alert_list.ajax.php:345 -#: ../../enterprise/meta/advanced/metasetup.consoles.php:387 -#: ../../enterprise/godmode/setup/setup_metaconsole.php:147 -#: ../../enterprise/godmode/policies/policy_modules.php:517 -#: ../../enterprise/godmode/policies/policy_alerts.php:126 -#: ../../godmode/massive/massive_enable_disable_alerts.php:102 -#: ../../godmode/agentes/configurar_agente.php:2175 -#: ../../godmode/agentes/modificar_agente.php:234 -#: ../../godmode/alerts/alert_list.php:366 ../../godmode/users/user_list.php:372 -msgid "Successfully enabled" -msgstr "Activado correctamente" - -#: ../../include/ajax/alert_list.ajax.php:347 -#: ../../enterprise/meta/advanced/metasetup.consoles.php:388 -#: ../../enterprise/godmode/setup/setup_metaconsole.php:148 -#: ../../enterprise/godmode/policies/policy_modules.php:518 -#: ../../enterprise/godmode/policies/policy_alerts.php:127 -#: ../../godmode/massive/massive_enable_disable_alerts.php:102 -#: ../../godmode/agentes/configurar_agente.php:2176 -#: ../../godmode/agentes/modificar_agente.php:235 -#: ../../godmode/alerts/alert_list.php:367 -msgid "Could not be enabled" -msgstr "No se pudo activar" - -#: ../../include/ajax/alert_list.ajax.php:366 -#: ../../enterprise/meta/advanced/metasetup.consoles.php:412 -#: ../../enterprise/godmode/setup/setup_metaconsole.php:156 -#: ../../enterprise/godmode/policies/policy_modules.php:534 -#: ../../enterprise/godmode/policies/policy_alerts.php:152 -#: ../../godmode/massive/massive_enable_disable_alerts.php:124 -#: ../../godmode/agentes/configurar_agente.php:2200 -#: ../../godmode/agentes/modificar_agente.php:277 -#: ../../godmode/alerts/alert_list.php:393 ../../godmode/users/user_list.php:366 -msgid "Successfully disabled" -msgstr "Desactivado correctamente" - -#: ../../include/ajax/alert_list.ajax.php:368 -#: ../../enterprise/godmode/setup/setup_metaconsole.php:157 -#: ../../enterprise/godmode/policies/policy_modules.php:535 -#: ../../enterprise/godmode/policies/policy_alerts.php:153 -#: ../../godmode/massive/massive_enable_disable_alerts.php:124 -#: ../../godmode/agentes/configurar_agente.php:2201 -#: ../../godmode/agentes/modificar_agente.php:278 -#: ../../godmode/alerts/alert_list.php:394 -msgid "Could not be disabled" -msgstr "No se pudo desactivar" - -#: ../../include/ajax/alert_list.ajax.php:503 -#: ../../include/class/AgentsAlerts.class.php:314 -#: ../../enterprise/godmode/policies/policy_external_alerts.php:600 -#: ../../enterprise/godmode/policies/policy_alerts.php:596 -#: ../../godmode/massive/massive_add_action_alerts.php:252 -#: ../../godmode/alerts/alert_list.list.php:753 -#: ../../godmode/alerts/alert_list.builder.php:127 -msgid "Number of alerts match from" -msgstr "NĆŗmero de alertas coincidentes con" - -#: ../../include/ajax/alert_list.ajax.php:527 -#: ../../include/class/AgentsAlerts.class.php:385 -#: ../../include/functions_reporting_html.php:3439 -#: ../../include/functions_reporting_html.php:5206 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2298 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2510 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3345 -#: ../../enterprise/meta/monitoring/wizard/wizard.manage_alert.php:290 -#: ../../godmode/alerts/alert_list.list.php:651 -#: ../../godmode/alerts/alert_list.list.php:777 -#: ../../godmode/alerts/alert_list.builder.php:173 -#: ../../godmode/alerts/alert_view.php:361 -#: ../../godmode/alerts/configure_alert_action.php:284 -msgid "Threshold" -msgstr "Umbral" - -#: ../../include/ajax/alert_list.ajax.php:579 -#: ../../include/functions_reporting_html.php:86 -#: ../../include/functions_reporting_html.php:5536 -#: ../../godmode/agentes/planned_downtime.editor.php:634 -msgid "From:" -msgstr "Desde:" - -#: ../../include/ajax/alert_list.ajax.php:593 -#: ../../include/functions_reporting_html.php:86 -#: ../../include/functions_reporting_html.php:5536 -#: ../../godmode/agentes/planned_downtime.editor.php:638 -msgid "To:" -msgstr "Hasta:" - -#: ../../include/ajax/double_auth.ajax.php:144 -msgid "This is the private code that you should use with your authenticator app" -msgstr "" -"Esta es la clave privada que deberĆ­as usar con la aplicaciĆ³n de " -"autentificaciĆ³n." - -#: ../../include/ajax/double_auth.ajax.php:145 -#: ../../include/ajax/double_auth.ajax.php:288 +#: ../../include/functions_register.php:108 +#, php-format msgid "" -"You could enter the code manually or use the QR code to add it automatically" -msgstr "" -"Puedes introducir el cĆ³digo manualmente o usar el cĆ³digo QR para aƱadirlo " -"automĆ”ticamente." +"Please fill the following information in order to configure your %s instance " +"successfully" +msgstr "Rellene esta informaciĆ³n para configurar su instancia de %s correctamente" -#: ../../include/ajax/double_auth.ajax.php:149 -#: ../../include/ajax/double_auth.ajax.php:292 -#: ../../enterprise/godmode/modules/manage_inventory_modules_form.php:125 -msgid "Code" -msgstr "CĆ³digo" - -#: ../../include/ajax/double_auth.ajax.php:151 -#: ../../include/ajax/double_auth.ajax.php:294 -msgid "QR" -msgstr "QR" - -#: ../../include/ajax/double_auth.ajax.php:190 -msgid "You are about to activate the double authentication" -msgstr "EstĆ”s a punto de activar la doble autentificaciĆ³n." - -#: ../../include/ajax/double_auth.ajax.php:192 +#: ../../include/functions_register.php:165 msgid "" -"With this option enabled, your account access will be more secure, \n" -"\t\tcause a code generated by other application will be required after the " -"login" +"Must have the same time zone as the system or database to avoid mismatches of time." msgstr "" -"Con esta opciĆ³n habilitada, el acceso a tu cuenta serĆ” mĆ”s seguro,\n" -"\t\tporque el cĆ³digo generado por otra aplicaciĆ³n se generarĆ” despuĆ©s de " -"conectarse." +"Debe tener las mismas zonas horarias que el sistema o la base de datos para evitar " +"desajustes de tiempo." -#: ../../include/ajax/double_auth.ajax.php:197 -msgid "You will need to install the app from the following link before continue" +#: ../../include/functions_register.php:171 +msgid "E-mail for receiving alerts" +msgstr "Correo electrĆ³nico para la recepciĆ³n de alertas" + +#: ../../include/functions_register.php:196 +msgid "All fields required" +msgstr "Todos los campos requeridos" + +#: ../../include/functions_register.php:205 +msgid "Are you sure you don't want to configure a base email?" +msgstr "ĀæEstĆ” seguro de que no desea configurar un correo base?" + +#: ../../include/functions_register.php:207 +msgid "" +"You could change this options later in \"alert actions\" and setting your account." msgstr "" -"Tienes que instalar la aplicaciĆ³n desde el siguiente vĆ­nculo antes de " -"continuar." +"Puede modificar las preferencias mĆ”s tarde en \"acciones de alerta\" y configurar su " +"propia cuenta." -#: ../../include/ajax/double_auth.ajax.php:202 -msgid "Download the app" -msgstr "Descargue la aplicaciĆ³n" +#: ../../include/functions_config.php:144 +msgid "Failed updated: User did not login." +msgstr "Fallo de actualizaciĆ³n: el usuario no iniciĆ³ sesiĆ³n" -#: ../../include/ajax/double_auth.ajax.php:206 -#: ../../include/ajax/double_auth.ajax.php:299 -#: ../../include/functions_register.php:188 -msgid "Continue" -msgstr "Continuar" +#: ../../include/functions_config.php:152 +msgid "Failed updated: User is not admin." +msgstr "Fallo de actualizaciĆ³n: el usuario no es administrador" -#: ../../include/ajax/double_auth.ajax.php:222 -msgid "Are you installed the app yet?" -msgstr "ĀæYa has instalado la aplicaciĆ³n?" +#: ../../include/functions_config.php:186 +msgid "phantomjs config directory" +msgstr "Directorio de configuraciĆ³n de phatomjs" -#: ../../include/ajax/double_auth.ajax.php:282 -msgid "A private code has been generated" -msgstr "Un cĆ³digo privado ha sido generado." +#: ../../include/functions_config.php:202 +msgid "SSL cert path" +msgstr "Ruta del certificado SSL" -#: ../../include/ajax/double_auth.ajax.php:287 -msgid "Before continue, you should create a new entry into the authenticator app" -msgstr "" -"Antes de continuar, deberĆ­as crear una nueva entrada dentro de la aplicaciĆ³n " -"de autentificaciĆ³n." +#: ../../include/functions_config.php:210 +msgid "Use cert." +msgstr "Usar certificado" -#: ../../include/ajax/double_auth.ajax.php:297 -msgid "Refresh code" -msgstr "Actualizar el cĆ³digo" +#: ../../include/functions_config.php:242 +msgid "Integria inventory" +msgstr "Inventario Integria IMS" -#: ../../include/ajax/double_auth.ajax.php:366 -msgid "Are you introduced the code in the authenticator app yet?" -msgstr "ĀæYa has introducido el cĆ³digo en la aplicaciĆ³n de autentificaciĆ³n?" +#: ../../include/functions_config.php:246 ../../include/functions_config.php:1717 +msgid "Integria API password" +msgstr "ContraseƱa de la API de Integria IMS" -#: ../../include/ajax/double_auth.ajax.php:429 -msgid "Introduce a code generated by the app" -msgstr "Introduce el cĆ³digo generado por la aplicaciĆ³n." +#: ../../include/functions_config.php:250 +msgid "Integria URL" +msgstr "URL de Integria IMS" -#: ../../include/ajax/double_auth.ajax.php:430 -msgid "If the code is valid, the double authentication will be activated" -msgstr "Si el cĆ³digo es vĆ”lido, se activarĆ” la doble autentificaciĆ³n." +#: ../../include/functions_config.php:263 +#: ../../include/class/ExternalTools.class.php:213 +msgid "Sound for Alert fired" +msgstr "Sonido para alertas disparadas" -#: ../../include/ajax/double_auth.ajax.php:439 -msgid "Validate code" -msgstr "Validar cĆ³digo" +#: ../../include/functions_config.php:267 +#: ../../include/class/ExternalTools.class.php:243 +msgid "Sound for Monitor critical" +msgstr "Sonido para monitores en estado crĆ­tico" -#: ../../include/ajax/double_auth.ajax.php:491 -msgid "The code is valid, you can exit now" -msgstr "El cĆ³digo es vĆ”lido, puedes salir ahora." +#: ../../include/functions_config.php:271 +#: ../../include/class/ExternalTools.class.php:273 +msgid "Sound for Monitor warning" +msgstr "Sonido para monitores en estado de advertencia" -#: ../../include/ajax/double_auth.ajax.php:500 ../../index.php:333 -#: ../../enterprise/meta/index.php:295 ../../mobile/include/user.class.php:280 -msgid "Invalid code" -msgstr "CĆ³digo no vĆ”lido" +#: ../../include/functions_config.php:284 +msgid "License information" +msgstr "InformaciĆ³n sobre la licencia" -#: ../../include/ajax/double_auth.ajax.php:508 -msgid "The code is valid, but it was an error saving the data" -msgstr "El cĆ³digo es vĆ”lido, pero hubo un error al guardar los datos." +#: ../../include/functions_config.php:314 +msgid "Use custom encoding" +msgstr "Use codificaciĆ³n personalizada" -#: ../../include/ajax/heatmap.ajax.php:79 -msgid "Group modules by tag" -msgstr "Agrupar mĆ³dulos por etiqueta" +#: ../../include/functions_config.php:334 +msgid "Limit parameters bulk" +msgstr "LĆ­mite de operaciones en bloque" -#: ../../include/ajax/heatmap.ajax.php:80 -msgid "Group modules by module group" -msgstr "Agrupar mĆ³dulos por grupo de mĆ³dulos" +#: ../../include/functions_config.php:338 +msgid "Identification_reminder" +msgstr "Recordatorio de identificaciĆ³n" -#: ../../include/ajax/heatmap.ajax.php:97 -msgid "Show groups" -msgstr "Mostrar grupos" +#: ../../include/functions_config.php:342 +msgid "Include_agents" +msgstr "Incluir agentes" -#: ../../include/ajax/custom_fields.php:413 -#: ../../include/class/AgentWizard.class.php:1184 -msgid "Treshold" -msgstr "Umbral" +#: ../../include/functions_config.php:346 +msgid "alias_as_name" +msgstr "Alias como nombre" -#: ../../include/ajax/custom_fields.php:414 -msgid "Current interval" -msgstr "Intervalo actual" +#: ../../include/functions_config.php:350 +msgid "Console log enabled" +msgstr "Log de consola habilitado" -#: ../../include/ajax/custom_fields.php:460 -#: ../../include/ajax/custom_fields.php:513 -msgid "Modules normal" -msgstr "MĆ³dulos normales" +#: ../../include/functions_config.php:354 +msgid "Audit log enabled" +msgstr "Log de auditorĆ­a habilitado" -#: ../../include/ajax/custom_fields.php:471 -msgid "Modules critical" -msgstr "MĆ³dulos crĆ­ticos" +#: ../../include/functions_config.php:358 +msgid "Module Custom ID read only" +msgstr "Solo lectura del ID personalizado del mĆ³dulo" -#: ../../include/ajax/custom_fields.php:482 -msgid "Modules warning" -msgstr "MĆ³dulos en estado de advertencia" +#: ../../include/functions_config.php:413 +msgid "Replication DB host" +msgstr "Host de la BD de replicaciĆ³n" -#: ../../include/ajax/custom_fields.php:492 -msgid "Modules unknown" -msgstr "MĆ³dulos desconocidos" +#: ../../include/functions_config.php:417 +msgid "Replication DB database" +msgstr "Nombre de la BD de replicaciĆ³n" -#: ../../include/ajax/custom_fields.php:503 -msgid "Modules no init" -msgstr "MĆ³dulos no iniciados" +#: ../../include/functions_config.php:421 +msgid "Replication DB user" +msgstr "Usuario de la BD de replicaciĆ³n" -#: ../../include/ajax/custom_fields.php:545 -msgid "New Filter" -msgstr "Nuevo filtro" +#: ../../include/functions_config.php:425 +msgid "Replication DB password" +msgstr "ContraseƱa de la BD de replicaciĆ³n" -#: ../../include/ajax/custom_fields.php:552 -msgid "Existing Filter" -msgstr "Filtro existente" +#: ../../include/functions_config.php:429 +msgid "Replication DB port" +msgstr "Puerto de la BD de replicaciĆ³n" -#: ../../include/ajax/custom_fields.php:652 -#: ../../enterprise/meta/event/custom_events.php:44 -#: ../../godmode/snmpconsole/snmp_filters.php:37 -#: ../../godmode/events/event_filter.php:225 -#: ../../godmode/netflow/nf_edit.php:217 -#: ../../godmode/netflow/nf_edit_form.php:190 -msgid "Create filter" -msgstr "Crear filtro" +#: ../../include/functions_config.php:433 +msgid "Metaconsole agent cache" +msgstr "CachĆ© de agente de la Metaconsola" -#: ../../include/ajax/custom_fields.php:700 -msgid "Delete filter" -msgstr "Eliminar filtro" +#: ../../include/functions_config.php:441 +msgid "Enable Update Manager" +msgstr "Habilitar Update Manager" -#: ../../include/ajax/custom_fields.php:737 -#: ../../godmode/agentes/fields_manager.php:46 -msgid "The name must not be empty" -msgstr "El nombre no puede estar vacĆ­o." +#: ../../include/functions_config.php:445 +msgid "Ipam Ocuppied Manager Critical" +msgstr "Ipam Ocuppied Manager CrĆ­tico" -#: ../../include/ajax/custom_fields.php:750 -msgid "Filter name already exists in the bbdd" -msgstr "El nombre del filtro ya existe en la base de datos" +#: ../../include/functions_config.php:449 +msgid "Ipam Ocuppied Manager Warning" +msgstr "Ipam Ocuppied Manager Advertencia" -#: ../../include/ajax/custom_fields.php:762 -msgid "Please, select a custom field" -msgstr "Seleccione un campo personalizado" +#: ../../include/functions_config.php:622 +msgid "Secontary start TLS" +msgstr "TLS de inicio secundario" -#: ../../include/ajax/custom_fields.php:790 -msgid "Success create filter." -msgstr "Se ha creado el filtro." +#: ../../include/functions_config.php:738 +msgid "Saml profile parameters" +msgstr "ParĆ”metros de perfil saml" -#: ../../include/ajax/custom_fields.php:797 -msgid "Error create filter." -msgstr "Error al crear el filtro." +#: ../../include/functions_config.php:754 +msgid "2FA all users" +msgstr "2FA todos los usuarios" -#: ../../include/ajax/custom_fields.php:822 -#: ../../include/ajax/custom_fields.php:895 -msgid "please, select a filter" -msgstr "Seleccione un filtro" +#: ../../include/functions_config.php:761 +msgid "Session timeout forced to 90 minutes" +msgstr "LĆ­mite de tiempo de la sesiĆ³n forzado a 90 minutos" -#: ../../include/ajax/custom_fields.php:838 -msgid "please, select a custom field" -msgstr "Seleccione un campo personalizado" +#: ../../include/functions_config.php:820 +msgid "Max. days before autodisable deletion" +msgstr "DĆ­as mĆ”ximos antes de eliminar los deshabilitados" -#: ../../include/ajax/custom_fields.php:864 -msgid "Success update filter." -msgstr "Se ha actualizado el filtro." +#: ../../include/functions_config.php:824 +msgid "Item limit for realtime reports)" +msgstr "LĆ­mite de elementos para los informes de tiempo real" -#: ../../include/ajax/custom_fields.php:871 -msgid "Error update filter." -msgstr "Error al actualizar el filtro." +#: ../../include/functions_config.php:856 +msgid "Big Operatiopn Step to purge old data" +msgstr "Gran operaciĆ³n para la purga de datos antiguos" -#: ../../include/ajax/custom_fields.php:914 -msgid "Success delete filter." -msgstr "Se ha eliminado el filtro." +#: ../../include/functions_config.php:890 +msgid "Max execution event response" +msgstr "MĆ”xima respuesta de ejecuciĆ³n de eventos" -#: ../../include/ajax/custom_fields.php:921 -msgid "Error delete filter." -msgstr "Error al eliminar el filtro." +#: ../../include/functions_config.php:898 +msgid "SNMP walk binary path" +msgstr "Ruta del binario SNMP walk" -#: ../../include/ajax/snmp_browser.ajax.php:113 -#: ../../include/ajax/snmp_browser.ajax.php:124 -#: ../../include/ajax/snmp_browser.ajax.php:134 -msgid "SNMP modules" -msgstr "MĆ³dulos SNMP" +#: ../../include/functions_config.php:902 +msgid "SNMP walk binary path (fallback for v1)" +msgstr "Ruta del binario SNMP walk (alternativa para la v1)" -#: ../../include/ajax/snmp_browser.ajax.php:117 -msgid "Error creating the following modules:" -msgstr "Error al crear los siguientes mĆ³dulos:" +#: ../../include/functions_config.php:906 +msgid "Default WMI Binary" +msgstr "Binario WMI por defecto" -#: ../../include/ajax/snmp_browser.ajax.php:128 -msgid "Modules successfully created" -msgstr "MĆ³dulos creados correctamente" +#: ../../include/functions_config.php:1009 +msgid "Show QR code header" +msgstr "Mostrar cĆ³digo QR en la cabecera" -#: ../../include/ajax/snmp_browser.ajax.php:138 -msgid "Module must be applied to an agent or a policy" -msgstr "El mĆ³dulo debe aplicarse a un agente o a una polĆ­tica" +#: ../../include/functions_config.php:1037 +msgid "Custom logo white background" +msgstr "Fondo blanco del logo personalizado" -#: ../../include/ajax/snmp_browser.ajax.php:263 -msgid "Failed to create policy" -msgstr "Error al crear polĆ­tica" +#: ../../include/functions_config.php:1065 +msgid "Custom title header" +msgstr "Encabezado de tĆ­tulo personalizado" -#: ../../include/ajax/snmp_browser.ajax.php:264 -msgid "Policy created succesfully" -msgstr "PolĆ­tica creada con Ć©xito" +#: ../../include/functions_config.php:1069 +msgid "Custom subtitle header" +msgstr "Encabezado del subtĆ­tulo personalizado" -#: ../../include/ajax/events.php:97 -msgid "Failed to retrieve comments" -msgstr "No se han podido obtener los comentarios" +#: ../../include/functions_config.php:1093 ../../include/functions_config.php:1133 +msgid "Custom Docs url" +msgstr "URL de documentos personalizados" -#: ../../include/ajax/events.php:1176 -msgid "Error executing response" -msgstr "Error al ejecutar respuesta" +#: ../../include/functions_config.php:1097 ../../include/functions_config.php:1137 +msgid "Custom support url" +msgstr "URL de soporte personalizado" -#: ../../include/ajax/events.php:1213 -#: ../../enterprise/tools/ipam/ipam_ajax.php:540 +#: ../../include/functions_config.php:1109 +msgid "Custom logo metaconsole (white background)" +msgstr "Logo personalizado de la consola (fondo blanco)" + +#: ../../include/functions_config.php:1113 +msgid "Custom logo login metaconsole" +msgstr "Logo personalizado de la conexiĆ³n a la Metaconsola" + +#: ../../include/functions_config.php:1117 +msgid "Custom splash login metaconsole" +msgstr "ConexiĆ³n del Splash personalizado de la Metaconsola" + +#: ../../include/functions_config.php:1121 +msgid "Custom title1 login metaconsole" +msgstr "TĆ­tulo1 conexiĆ³n personalizado de la Metaconsola" + +#: ../../include/functions_config.php:1125 +msgid "Custom title2 login metaconsole" +msgstr "TĆ­tulo2 conexiĆ³n personalizado de la Metaconsola" + +#: ../../include/functions_config.php:1129 +msgid "Login background metaconsole" +msgstr "Fondo de la conexiĆ³n a la Metaconsola" + +#: ../../include/functions_config.php:1153 +msgid "Default line favourite_view for the Visual Console" +msgstr "LĆ­nea por defecto favourite_view para la consola visual" + +#: ../../include/functions_config.php:1157 +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:1169 +msgid "Default line menu items for the Services" +msgstr "Linea de elementos de menĆŗ por defecto para los servicios" + +#: ../../include/functions_config.php:1201 +msgid "Show units in values report" +msgstr "Mostrar unidades en los valores del informe" + +#: ../../include/functions_config.php:1209 +msgid "Autohidden menu" +msgstr "Ocultar menĆŗ automĆ”ticamente" + +#: ../../include/functions_config.php:1213 +msgid "visual_animation" +msgstr "visual_animation" + +#: ../../include/functions_config.php:1221 +msgid "Fixed graph" +msgstr "GrĆ”fico fijo" + +#: ../../include/functions_config.php:1229 +msgid "Paginate module" +msgstr "Paginar vista de mĆ³dulos" + +#: ../../include/functions_config.php:1233 +#: ../../include/class/ExternalTools.class.php:303 +msgid "Custom graphviz directory" +msgstr "Directorio personalizado graphviz" + +#: ../../include/functions_config.php:1241 +msgid "Shortened module graph data" +msgstr "GrĆ”fico de mĆ³dulo de datos acortados" + +#: ../../include/functions_config.php:1249 +msgid "Show empty groups in group view." +msgstr "Mostrar grupos vacĆ­os en la vista de grupos." + +#: ../../include/functions_config.php:1257 +msgid "Default type of module charts." +msgstr "Tipo de grĆ”ficos de mĆ³dulos por defecto" + +#: ../../include/functions_config.php:1261 +msgid "Default Number of elements in Custom Graph." +msgstr "NĆŗmero de elementos por defecto en grĆ”fica personalizada." + +#: ../../include/functions_config.php:1265 +msgid "Default type of interface charts." +msgstr "Tipo predefinido para los grĆ”ficos de interfaz" + +#: ../../include/functions_config.php:1281 +msgid "Display lateral menus with left click" +msgstr "Mostrar los menĆŗs laterales con el clic izquierdo" + +#: ../../include/functions_config.php:1290 +msgid "Service item padding size" +msgstr "Espacio entre los nodos del mapa de servicios" + +#: ../../include/functions_config.php:1295 +msgid "Default percentil" +msgstr "Percentil por defecto" + +#: ../../include/functions_config.php:1299 +msgid "Default full scale (TIP)" +msgstr "Escala completa por defecto (TIP)" + +#: ../../include/functions_config.php:1303 +msgid "Default soft graphs" +msgstr "GrĆ”ficas soft por defecto" + +#: ../../include/functions_config.php:1307 +msgid "Default zoom graphs" +msgstr "GrĆ”ficas ampliadas por defecto" + +#: ../../include/functions_config.php:1316 +msgid "Default height of the chart image" +msgstr "Altuta de la imagen de la grĆ”fica por defecto" + +#: ../../include/functions_config.php:1338 +msgid "Add the custom post process" +msgstr "AƱadir la personalizaciĆ³n al proceso posterior" + +#: ../../include/functions_config.php:1346 +msgid "Delete the custom post process" +msgstr "Borrar la personalizaciĆ³n al proceso posterior" + +#: ../../include/functions_config.php:1400 +msgid "Add custom module unit" +msgstr "AƱadir unidad de mĆ³dulo personalizado" + +#: ../../include/functions_config.php:1406 +msgid "Delete custom module unit" +msgstr "Eliminar unidad de mĆ³dulo personalizado" + +#: ../../include/functions_config.php:1499 +msgid "IP ElasticSearch server" +msgstr "IP del servidor ElasticSearch" + +#: ../../include/functions_config.php:1503 +msgid "Port ElasticSearch server" +msgstr "Puerto del servidor ElasticSearch" + +#: ../../include/functions_config.php:1524 +msgid "Active and historical database cannot be the same." +msgstr "La base de datos activa y la histĆ³rica no pueden ser la misma." + +#: ../../include/functions_config.php:1542 +msgid "Enable history database" +msgstr "Activar base de datos histĆ³rica" + +#: ../../include/functions_config.php:1546 +msgid "Enable history event" +msgstr "Activar histĆ³rico de eventos" + +#: ../../include/functions_config.php:1570 +msgid "Event Days" +msgstr "Eventos en dĆ­a" + +#: ../../include/functions_config.php:1586 +msgid "Delay" +msgstr "Retraso" + +#: ../../include/functions_config.php:1618 +msgid "Historical database purge" +msgstr "Purga de la base de datos histĆ³rica" + +#: ../../include/functions_config.php:1626 +msgid "Historical database partitions" +msgstr "Particiones de base de datos histĆ³rica" + +#: ../../include/functions_config.php:1634 +msgid "Historical database events purge" +msgstr "Purga de eventod de base de datos histĆ³rica" + +#: ../../include/functions_config.php:1642 +msgid "Historical database string purge" +msgstr "Purga de cadenas de base de datos histĆ³rica" + +#: ../../include/functions_config.php:1657 +msgid "eHorus user login" +msgstr "Inicio de sesiĆ³n del usuario a eHorus" + +#: ../../include/functions_config.php:1669 +msgid "eHorus API hostname" +msgstr "Propietario de la API de eHorus" + +#: ../../include/functions_config.php:1673 +msgid "eHorus API port" +msgstr "Puerto de la API de eHorus" + +#: ../../include/functions_config.php:1677 +msgid "eHorus request timeout" +msgstr "Tiempo de respuesta de eHorus" + +#: ../../include/functions_config.php:1681 +msgid "eHorus id custom field" +msgstr "ID del campo personalizado de eHorus" + +#: ../../include/functions_config.php:1687 +msgid "Integria user login" +msgstr "Usuario de Integria" + +#: ../../include/functions_config.php:1695 +msgid "Integria user" +msgstr "Usuario de Integria" + +#: ../../include/functions_config.php:1699 +msgid "Integria password" +msgstr "ContraseƱa de Integria" + +#: ../../include/functions_config.php:1713 +msgid "integria API hostname" +msgstr "Nombre del host de la API de Integria" + +#: ../../include/functions_config.php:1721 +msgid "Integria request timeout" +msgstr "LĆ­mite de tiempo de las peticiones de Integria" + +#: ../../include/functions_config.php:1725 +msgid "Integria default group" +msgstr "Grupo por defecto de Integria" + +#: ../../include/functions_config.php:1729 +msgid "Integria custom response default group" +msgstr "Grupo de respuesta personalizada de Integria por defecto" + +#: ../../include/functions_config.php:1733 +msgid "Integria default priority" +msgstr "Prioridad por defecto de Integria" + +#: ../../include/functions_config.php:1737 +msgid "Integria custom response default priority" +msgstr "Prioridad de respuesta personalizada de Integria por defecto" + +#: ../../include/functions_config.php:1741 +msgid "Integria default creator" +msgstr "Creador por defecto de Integria" + +#: ../../include/functions_config.php:1745 +msgid "Integria default owner" +msgstr "Propietario de Integria por defecto" + +#: ../../include/functions_config.php:1749 +msgid "Integria custom response default owner" +msgstr "Propietario de respuesta personalizada de Integria por defecto" + +#: ../../include/functions_config.php:1753 +msgid "Integria default ticket type" +msgstr "Tipo de ticket de Integria por defecto" + +#: ../../include/functions_config.php:1757 +msgid "Integria custom response default ticket type" +msgstr "Tipo de ticket de respuesta personalizado de Integria por defecto" + +#: ../../include/functions_config.php:1761 +msgid "Integria default ticket status" +msgstr "Estado del ticket de Integria por defecto" + +#: ../../include/functions_config.php:1765 +msgid "Integria custom response default ticket status" +msgstr "Estado del ticket de respuesta personalizada de Integria por defecto" + +#: ../../include/functions_config.php:1769 +msgid "Integria default ticket title" +msgstr "TĆ­tulo del ticket de Integria por defecto" + +#: ../../include/functions_config.php:1773 +msgid "Integria custom response default ticket title" +msgstr "TĆ­tulo del ticket de respuesta personalizada de Integria por defecto" + +#: ../../include/functions_config.php:1777 +msgid "Integria default ticket content" +msgstr "Contenido del ticket de Integria por defecto" + +#: ../../include/functions_config.php:1781 +msgid "Integria custom response default ticket content" +msgstr "Contenido del ticket de respuesta personalizada de Integria por defecto" + +#: ../../include/functions_config.php:1787 +msgid "Module Library User" +msgstr "Usuario de la biblioteca de mĆ³dulos" + +#: ../../include/functions_config.php:1791 +msgid "Module Library Password" +msgstr "ContraseƱa de la biblioteca de mĆ³dulos" + +#: ../../include/functions_config.php:1797 +msgid "WebSocket bind address" +msgstr "DirecciĆ³n de enlace WebSocket" + +#: ../../include/functions_config.php:1801 +msgid "WebSocket port" +msgstr "Puerto WebSocket" + +#: ../../include/functions_config.php:1824 #, php-format -msgid "Executing command: %s" -msgstr "Ejecutar comando: %s" +msgid "Failed updated: the next values cannot update:
-%s" +msgstr "Error al actualizar: los siguientes valores no se pueden actualizar:
-%s" -#: ../../include/ajax/events.php:1230 ../../include/ajax/events.php:1254 -#: ../../enterprise/tools/ipam/ipam_ajax.php:551 -msgid "Execute again" -msgstr "Ejecutar de nuevo" +#: ../../include/functions_config.php:2380 +#: ../../operation/agentes/networkmap.dinamic.php:226 +msgid "Pandora FMS" +msgstr "Pandora FMS" -#: ../../include/ajax/events.php:1500 -msgid "Related" -msgstr "Relacionado" +#: ../../include/functions_config.php:2388 +msgid "PandoraFMS Metaconsole" +msgstr "Metaconsola PandoraFMS" -#: ../../include/ajax/events.php:1512 -msgid "Agent fields" -msgstr "Campos de agente" +#: ../../include/functions_config.php:2392 +msgid "Centralized operation console" +msgstr "Consola de operaciĆ³n centralizada" -#: ../../include/ajax/events.php:1544 -#: ../../enterprise/meta/event/custom_events.php:79 -#: ../../godmode/events/events.php:100 -msgid "Responses" -msgstr "Respuestas" +#: ../../include/functions_config.php:2396 +msgid "PANDORA FMS" +msgstr "PANDORA FMS" -#: ../../include/ajax/events.php:1650 -msgid "Error adding comment" -msgstr "Error al aƱadir el comentario" +#: ../../include/get_file.php:57 +msgid "Security error. Please contact the administrator." +msgstr "Error de seguridad. Contacta con el administrador." -#: ../../include/ajax/events.php:1651 -msgid "Comment added successfully" -msgstr "Comentario aƱadido correctamente" +#: ../../include/get_file.php:92 +msgid "File is missing in disk storage. Please contact the administrator." +msgstr "" +"El archivo no se encuentra en el disco. Por favor, contacta con el administrador." -#: ../../include/ajax/events.php:1652 -msgid "Error changing event status" -msgstr "Error al cambiar el estado del evento" +#: ../../include/functions_netflow.php:351 +msgid "Avg. Throughput" +msgstr "Rendimiento medio" -#: ../../include/ajax/events.php:1653 -msgid "Event status changed successfully" -msgstr "Estado del evento cambiado correctamente" +#: ../../include/functions_netflow.php:431 +msgid "Average bits per second" +msgstr "Media de bits por segundo" -#: ../../include/ajax/events.php:1654 -msgid "Error changing event owner" -msgstr "Error al cambiar el propietario del evento" +#: ../../include/functions_netflow.php:436 +msgid "Average packets per second" +msgstr "Media de paquetes por segundo" -#: ../../include/ajax/events.php:1655 -msgid "Event owner changed successfully" -msgstr "Propietario del evento cambiado correctamente" +#: ../../include/functions_netflow.php:441 +msgid "Average bytes per packet" +msgstr "Media de bytes por paquete" -#: ../../include/ajax/events.php:1656 -msgid "Error deleting event" -msgstr "Error al eliminar evento" +#: ../../include/functions_netflow.php:1182 +msgid "Area graph" +msgstr "GrĆ”fico del Ć”rea" -#: ../../include/ajax/events.php:1824 -#: ../../enterprise/meta/include/functions_wizard_meta.php:495 -#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:753 -#: ../../godmode/massive/massive_edit_modules.php:817 -#: ../../godmode/agentes/module_manager_editor_wmi.php:59 -#: ../../godmode/agentes/module_manager_editor_network.php:94 -msgid "Auto" -msgstr "AutomĆ”tico" +#: ../../include/functions_netflow.php:1184 ../../operation/agentes/exportdata.php:378 +msgid "Data table" +msgstr "Tabla de datos" -#: ../../include/ajax/events.php:1863 -msgid "Show all Events 24h" -msgstr "Mostrar todos los eventos en las Ćŗltimas 24h" +#: ../../include/functions_netflow.php:1185 +msgid "Top-N connections" +msgstr "Conexiones Top-N" -#: ../../include/ajax/events.php:2000 -msgid "These commands will apply to all selected events" -msgstr "Estos comandos se aplicarĆ”n en todos los eventos seleccionados" +#: ../../include/functions_netflow.php:1186 +msgid "Circular mesh" +msgstr "Malla circular" -#: ../../include/ajax/events.php:2029 -#: ../../include/class/ExternalTools.class.php:581 -#: ../../include/functions_events.php:3836 -#: ../../enterprise/views/ncm/agent/details.php:689 -msgid "Execute" -msgstr "Ejecutar" +#: ../../include/functions_netflow.php:1187 ../../include/functions_netflow.php:1452 +msgid "Host detailed traffic" +msgstr "TrĆ”fico detallado de la mĆ”quina" -#: ../../include/ajax/events.php:2108 -msgid "Alert fired in module " -msgstr "Alerta disparada en el mĆ³dulo " +#: ../../include/functions_netflow.php:1439 +msgid "Sent" +msgstr "Enviado" -#: ../../include/ajax/events.php:2122 ../../include/ajax/events.php:2136 -#: ../../include/ajax/events.php:2150 -#: ../../enterprise/godmode/massive/massive_add_modules_policy.php:82 -msgid "Module " -msgstr "MĆ³dulo " +#: ../../include/functions_netflow.php:1447 +msgid "Received" +msgstr "Recibido" -#: ../../include/ajax/events.php:2123 -msgid " is going to critical" -msgstr " cambiando a CRƍTICO" +#: ../../include/functions_netflow.php:1628 +msgid "Dst port" +msgstr "Puerto destino" -#: ../../include/ajax/events.php:2137 -msgid " is going to warning" -msgstr " cambiando a ADVERTENCIA" +#: ../../include/functions_netflow.php:1631 +msgid "Dst IP" +msgstr "IP de destino" -#: ../../include/ajax/events.php:2151 -msgid " is going to unknown" -msgstr " cambiando a DESCONOCIDO" +#: ../../include/functions_netflow.php:1634 +msgid "Src IP" +msgstr "IP de origen" + +#: ../../include/functions_netflow.php:1637 +msgid "Src port" +msgstr "Puerto de origen" + +#: ../../include/functions_netflow.php:1823 +#, php-format +msgid "nfdump binary (%s) not found!" +msgstr "nfdump binary (%s) no encontrado" + +#: ../../include/functions_netflow.php:1830 +msgid "Make sure nfdump version 1.6.8 or newer is installed!" +msgstr "AsegĆŗrate de que tienes instalada la versiĆ³n 1.6.8 nfdump o alguna posterior." + +#: ../../include/functions_netflow.php:1847 +msgid "High" +msgstr "Alta" + +#: ../../include/functions_netflow.php:1848 +msgid "Ultra High" +msgstr "Extra alta" + +#: ../../include/functions_netflow.php:1881 +#, php-format +msgid "Agregate by %s" +msgstr "AƱadir por %s" + +#: ../../include/functions_netflow.php:1889 +#, php-format +msgid "Resolution %s" +msgstr "ResoluciĆ³n de %s" #: ../../include/class/Tree.class.php:775 ../../include/class/Tree.class.php:777 msgid "Module alerts" msgstr "Alertas de mĆ³dulo" -#: ../../include/class/ModuleTemplates.class.php:196 -#: ../../include/class/ModuleTemplates.class.php:214 -#: ../../include/class/ConfigPEN.class.php:332 -#: ../../include/functions_menu.php:515 -#: ../../enterprise/views/ncm/templates/list.php:32 -#: ../../enterprise/include/functions_reporting.php:146 -#: ../../enterprise/include/functions_reporting.php:7983 -#: ../../enterprise/include/functions_reporting.php:8011 -#: ../../enterprise/include/functions_reporting.php:8082 -#: ../../enterprise/meta/include/functions_alerts_meta.php:129 -#: ../../enterprise/meta/include/functions_alerts_meta.php:160 -#: ../../enterprise/godmode/reporting/visual_console_template.php:109 -#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:191 -#: ../../enterprise/godmode/reporting/graph_template_wizard.php:192 -#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:261 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2094 -#: ../../godmode/reporting/reporting_builder.item_editor.php:1884 -#: ../../godmode/menu.php:144 ../../godmode/menu.php:230 -#: ../../godmode/agentes/configurar_agente.php:740 -msgid "Templates" -msgstr "Plantillas" - -#: ../../include/class/ModuleTemplates.class.php:199 -#: ../../include/class/ModuleTemplates.class.php:217 -#: ../../include/class/ModuleTemplates.class.php:227 -#: ../../godmode/modules/manage_network_templates.php:39 -#: ../../godmode/modules/manage_network_templates_form.php:32 -msgid "Module template management" -msgstr "GestiĆ³n de plantillas de mĆ³dulos" - -#: ../../include/class/ModuleTemplates.class.php:353 -#, php-format -msgid "Template %s successfully updated" -msgstr "Plantilla %s actualizada con Ć©xito" - -#: ../../include/class/ModuleTemplates.class.php:355 -#: ../../enterprise/godmode/reporting/graph_template_editor.php:174 -msgid "Error updating template" -msgstr "Error al actualizar la plantilla" - -#: ../../include/class/ModuleTemplates.class.php:400 -#, php-format -msgid "Template %s successfully created" -msgstr "Plantilla %s creada con Ć©xito" - -#: ../../include/class/ModuleTemplates.class.php:402 -msgid "Error creating template" -msgstr "Error al crear plantilla" - -#: ../../include/class/ModuleTemplates.class.php:410 -#, php-format -msgid "Template %s successfully deleted" -msgstr "Plantilla %s eliminada con Ć©xito" - -#: ../../include/class/ModuleTemplates.class.php:412 -#, php-format -msgid "Error deleting %s template" -msgstr "Error al eliminar la plantilla %s" - -#: ../../include/class/ModuleTemplates.class.php:559 -msgid "Module successfully deleted" -msgstr "MĆ³dulo eliminado con Ć©xito" - -#: ../../include/class/ModuleTemplates.class.php:561 -msgid "Error deleting module" -msgstr "Error al eliminar el mĆ³dulo" - -#: ../../include/class/ModuleTemplates.class.php:572 -msgid "Block successfully deleted" -msgstr "Bloque eliminado con Ć©xito" - -#: ../../include/class/ModuleTemplates.class.php:574 -msgid "Error deleting block" -msgstr "Error al eliminar bloque" - -#: ../../include/class/ModuleTemplates.class.php:586 -msgid "All templates deleted" -msgstr "Eliminadas todas las plantillas" - -#: ../../include/class/ModuleTemplates.class.php:588 -msgid "Error deleting all templates" -msgstr "Error al eliminar todas las plantillas" - -#: ../../include/class/ModuleTemplates.class.php:597 -msgid "Selected templates deleted" -msgstr "Eliminadas las plantillas seleccionadas" - -#: ../../include/class/ModuleTemplates.class.php:599 -msgid "Error deleting selected templates" -msgstr "Error al eliminar las plantillas seleccionadas" - -#: ../../include/class/ModuleTemplates.class.php:611 -msgid "Something gone wrong. Please, try again" -msgstr "Ha habido un error. intĆ©ntelo de nuevo." - -#: ../../include/class/ModuleTemplates.class.php:662 -msgid "The modules is already added" -msgstr "El mĆ³dulo ya se ha aƱadido" - -#: ../../include/class/ModuleTemplates.class.php:804 -#: ../../enterprise/meta/include/functions_wizard_meta.php:309 -#: ../../godmode/modules/manage_network_templates_form.php:341 -msgid "Components" -msgstr "Componentes" - -#: ../../include/class/ModuleTemplates.class.php:1074 #: ../../include/class/ConfigPEN.class.php:428 #: ../../include/class/ConfigPEN.class.php:597 +#: ../../include/class/ModuleTemplates.class.php:1074 msgid "PEN" msgstr "PEN" -#: ../../include/class/ModuleTemplates.class.php:1111 -#: ../../include/class/ModuleTemplates.class.php:1383 -msgid "Add components" -msgstr "AƱadir componentes" +#: ../../include/class/ConfigPEN.class.php:435 +#: ../../include/class/ConfigPEN.class.php:598 +msgid "Manufacturer" +msgstr "Fabricante" -#: ../../include/class/ModuleTemplates.class.php:1163 -#: ../../include/class/ModuleTemplates.class.php:1298 -msgid "No module blocks for this profile" -msgstr "No hay bloques de mĆ³dulos para este perfil" +#: ../../include/class/ConfigPEN.class.php:483 +msgid "PEN is required" +msgstr "Se requiere PEN" -#: ../../include/class/ModuleTemplates.class.php:1186 -msgid "Delete this block" -msgstr "Eliminar este bloque" +#: ../../include/class/ConfigPEN.class.php:509 +msgid "PEN is required." +msgstr "Se requiere PEN" -#: ../../include/class/ModuleTemplates.class.php:1188 -msgid "Do you want delete this block?" -msgstr "ĀæDesea eliminar este bloque?" +#: ../../include/class/ConfigPEN.class.php:513 +msgid "Manufacturer is required" +msgstr "Se requiere fabricante" -#: ../../include/class/ModuleTemplates.class.php:1208 -#: ../../enterprise/godmode/modules/manage_inventory_modules_form.php:121 -#: ../../godmode/massive/massive_standby_alerts.php:223 -#: ../../godmode/massive/massive_standby_alerts.php:258 -#: ../../godmode/massive/massive_enable_disable_alerts.php:195 -#: ../../godmode/massive/massive_enable_disable_alerts.php:230 -msgid "Format" -msgstr "Formato" +#: ../../include/class/ConfigPEN.class.php:530 +msgid "This PEN definition does not exist" +msgstr "Esta definiciĆ³n de PEN no existe" -#: ../../include/class/ModuleTemplates.class.php:1234 -#: ../../godmode/modules/manage_network_components.php:804 -msgid "Network module" -msgstr "MĆ³dulo de red" +#: ../../include/class/ConfigPEN.class.php:544 +msgid "created" +msgstr "creado" -#: ../../include/class/ModuleTemplates.class.php:1245 -#: ../../godmode/modules/manage_network_components.php:815 -msgid "WMI module" -msgstr "MĆ³dulo WMI" +#: ../../include/class/ConfigPEN.class.php:550 +msgid "This PEN definition already exists" +msgstr "Esta definiciĆ³n PEN ya existe" -#: ../../include/class/ModuleTemplates.class.php:1256 -#: ../../godmode/modules/manage_network_components.php:826 -msgid "Plug-in module" -msgstr "MĆ³dulo de plugin" - -#: ../../include/class/ModuleTemplates.class.php:1283 -msgid "Delete this module" -msgstr "Eliminar este mĆ³dulo" - -#: ../../include/class/ModuleTemplates.class.php:1285 -msgid "Do you want delete this module?" -msgstr "ĀæDesea eliminar este mĆ³dulo?" - -#: ../../include/class/ModuleTemplates.class.php:1476 -msgid "Do you want delete all templates?" -msgstr "ĀæDesea eliminar todas las plantillas?" - -#: ../../include/class/ModuleTemplates.class.php:1479 -msgid "Do you want delete the selected templates?" -msgstr "ĀæDesea eliminar las plantillas seleccionadas?" - -#: ../../include/class/AuditLog.class.php:128 -#: ../../enterprise/godmode/admin_access_logs.php:54 -#: ../../enterprise/godmode/policies/policy_agents.php:854 -#: ../../enterprise/godmode/policies/policy_agents.php:1369 -#: ../../mobile/operation/agents.php:407 -#: ../../godmode/reporting/visual_console_builder.elements.php:118 -msgid "A." -msgstr "A." - -#: ../../include/class/AuditLog.class.php:136 +#: ../../include/class/ConfigPEN.class.php:571 #, php-format -msgid "%s audit" -msgstr "AuditorĆ­a %s" +msgid "Succesfully %s" +msgstr "Con Ć©xito %s" -#: ../../include/class/AuditLog.class.php:136 -msgid "Review Logs" -msgstr "Revisar logs" +#: ../../include/class/ConfigPEN.class.php:651 +msgid "Register manufacturer" +msgstr "Registrar fabricante" -#: ../../include/class/AuditLog.class.php:145 -#: ../../enterprise/include/class/ManageBackups.class.php:117 -msgid "Admin Tools" -msgstr "Herramientas de administrador" +#: ../../include/class/ConfigPEN.class.php:667 +msgid "Are you sure you want to delete this PEN?" +msgstr "ĀæEstĆ” seguro de que quiere eliminar este PEN?" -#: ../../include/class/AuditLog.class.php:149 -msgid "System Audit log" -msgstr "Logs de auditorĆ­a del sistema" - -#: ../../include/class/AuditLog.class.php:376 -#: ../../enterprise/include/class/ManageBackups.class.php:424 -msgid "There is no additional information to display" -msgstr "No hay informaciĆ³n adicional que mostrar" - -#: ../../include/class/Heatmap.class.php:743 -#: ../../enterprise/include/class/CommandCenter.class.php:454 -msgid "Info" -msgstr "InformaciĆ³n" - -#: ../../include/class/HelpFeedBack.class.php:99 -#: ../../enterprise/include/class/Omnishell.class.php:319 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:719 -msgid "Page not found" -msgstr "PĆ”gina no encontrada" +#: ../../include/class/ConfigPEN.class.php:694 +msgid "Register new manufacturer" +msgstr "Registrar nuevo fabricante" #: ../../include/class/HelpFeedBack.class.php:104 msgid "Browser not compatible." @@ -15645,6 +43618,12 @@ msgstr "Tu email" msgid "Submit" msgstr "Enviar" +#: ../../include/class/HelpFeedBack.class.php:213 +#: ../../include/class/Diagnostics.class.php:1967 ../../general/header.php:356 +#: ../../general/header.php:358 +msgid "Feedback" +msgstr "Feedback" + #: ../../include/class/HelpFeedBack.class.php:253 msgid "[pandorafms wiki] New suggestion" msgstr "[pandorafms wiki] Nueva sugerencia" @@ -15669,613 +43648,6 @@ msgstr "Su informe se ha enviado a Ɓrtica correctamente" msgid "Thank you!" msgstr "Ā”Gracias!" -#: ../../include/class/ManageNetScanScripts.class.php:104 -#: ../../include/class/CustomNetScan.class.php:352 -#: ../../enterprise/include/class/CSVImportAgents.class.php:98 -#: ../../enterprise/include/class/DeploymentCenter.class.php:594 -#: ../../godmode/wizards/HostDevices.class.php:196 -msgid "Host & Devices" -msgstr "Host y dispositivos" - -#: ../../include/class/ManageNetScanScripts.class.php:122 -msgid "Net scan scripts" -msgstr "Guiones de escaneo de red" - -#: ../../include/class/ManageNetScanScripts.class.php:223 -msgid "Problem creating" -msgstr "Error al crear" - -#: ../../include/class/ManageNetScanScripts.class.php:228 -#: ../../enterprise/godmode/modules/local_components.php:326 -#: ../../godmode/modules/manage_network_components.php:438 -msgid "Created successfully" -msgstr "Creado correctamente" - -#: ../../include/class/ManageNetScanScripts.class.php:234 -#: ../../include/class/ManageNetScanScripts.class.php:321 -msgid "Name or Script fullpath they can not be empty" -msgstr "El nombre o ruta completa del guiĆ³n no pueden estar vacĆ­os" - -#: ../../include/class/ManageNetScanScripts.class.php:255 -#: ../../include/class/ManageNetScanScripts.class.php:342 -msgid "Problem deleting Net scan Scripts, Not selected script" -msgstr "" -"Error al eliminar los scripts de escaneo de red. No hay scripts seleccionados" - -#: ../../include/class/ManageNetScanScripts.class.php:310 -msgid "Problem updating" -msgstr "Error al actualizar" - -#: ../../include/class/ManageNetScanScripts.class.php:315 -#: ../../enterprise/godmode/modules/local_components.php:401 -#: ../../godmode/modules/manage_network_components.php:534 -msgid "Updated successfully" -msgstr "Actualizado correctamente" - -#: ../../include/class/ManageNetScanScripts.class.php:361 -msgid "Problem deleting Net scan Scripts" -msgstr "Error al eliminar los scripts de escaneo de red" - -#: ../../include/class/ManageNetScanScripts.class.php:366 -msgid "Deleted successfully" -msgstr "Borrado correctamente" - -#: ../../include/class/ManageNetScanScripts.class.php:434 -#: ../../include/class/ExternalTools.class.php:353 -#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:1103 -#: ../../godmode/servers/plugin.php:429 ../../godmode/servers/plugin.php:434 -#: ../../godmode/servers/plugin.php:817 -#: ../../godmode/modules/manage_network_components_form_network.php:223 -#: ../../godmode/events/event_responses.editor.php:157 -#: ../../godmode/events/event_responses.editor.php:164 -#: ../../godmode/massive/massive_edit_plugins.php:480 -#: ../../godmode/massive/massive_edit_modules.php:1181 -#: ../../godmode/agentes/module_manager_editor_network.php:433 -#: ../../godmode/alerts/alert_actions.php:272 -#: ../../godmode/alerts/alert_actions.php:327 -#: ../../godmode/alerts/configure_alert_command.php:246 -#: ../../godmode/alerts/configure_alert_action.php:247 -msgid "Command" -msgstr "Comando" - -#: ../../include/class/ManageNetScanScripts.class.php:439 -msgid "Are you sure delete script?" -msgstr "ĀæEstĆ” seguro de que desea borrar el script?" - -#: ../../include/class/ManageNetScanScripts.class.php:459 -msgid "Delete Script" -msgstr "Eliminar guiĆ³n" - -#: ../../include/class/ManageNetScanScripts.class.php:478 -msgid "There are no net scan scripts in the system" -msgstr "No hay scripts de escaneo de red en el sistema" - -#: ../../include/class/ManageNetScanScripts.class.php:552 -msgid "Script fullpath" -msgstr "Ruta completa del script" - -#: ../../include/class/ManageNetScanScripts.class.php:636 -#: ../../enterprise/godmode/modules/configure_local_component.php:639 -#: ../../godmode/servers/plugin.php:492 -msgid "Default value" -msgstr "Valor por defecto" - -#: ../../include/class/ManageNetScanScripts.class.php:667 -#: ../../godmode/servers/plugin.php:505 -msgid "Hide value" -msgstr "Ocultar valor" - -#: ../../include/class/ManageNetScanScripts.class.php:669 -#: ../../godmode/servers/plugin.php:506 -msgid "This field will show up as dots like a password" -msgstr "En este campo aparecerĆ”n puntos como en un campo de tipo contraseƱa." - -#: ../../include/class/ManageNetScanScripts.class.php:690 -#: ../../include/functions_ui.php:1446 -#: ../../enterprise/meta/general/login_page.php:75 -#: ../../enterprise/meta/include/reset_pass.php:58 -#: ../../enterprise/meta/include/process_reset_pass.php:58 -#: ../../enterprise/godmode/modules/configure_local_component.php:645 -#: ../../godmode/servers/plugin.php:526 -msgid "Help" -msgstr "Ayuda" - -#: ../../include/class/ManageNetScanScripts.class.php:724 -#: ../../enterprise/godmode/modules/configure_local_component.php:655 -#: ../../godmode/servers/plugin.php:554 -msgid "Add macro" -msgstr "AƱadir macro" - -#: ../../include/class/ManageNetScanScripts.class.php:742 -#: ../../enterprise/godmode/modules/configure_local_component.php:663 -#: ../../godmode/servers/plugin.php:568 -msgid "Delete macro" -msgstr "Eliminar macro" - -#: ../../include/class/AgentsAlerts.class.php:304 -#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:441 -#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:548 -#: ../../enterprise/meta/monitoring/wizard/wizard.manage_alert.php:263 -#: ../../godmode/alerts/configure_alert_template.php:758 -#: ../../godmode/alerts/alert_list.builder.php:117 -msgid "Default action" -msgstr "AcciĆ³n predeterminada" - -#: ../../include/class/AgentsAlerts.class.php:332 -#: ../../godmode/alerts/alert_list.builder.php:136 -#: ../../godmode/alerts/configure_alert_action.php:169 -msgid "Create Action" -msgstr "Crear acciĆ³n" - -#: ../../include/class/AgentsAlerts.class.php:379 -#: ../../godmode/alerts/configure_alert_template.php:607 -#: ../../godmode/alerts/alert_list.builder.php:169 -msgid "Create Template" -msgstr "Crear plantilla" - -#: ../../include/class/AgentsAlerts.class.php:396 -#: ../../enterprise/godmode/alerts/alert_inventory_builder.php:282 -#: ../../godmode/alerts/alert_list.builder.php:204 -msgid "Add alert" -msgstr "AƱadir alerta" - -#: ../../include/class/AgentsAlerts.class.php:502 -msgid "There are no agents with alerts" -msgstr "No existen agentes con alertas" - -#: ../../include/class/AgentsAlerts.class.php:580 -msgid "Previous alerts" -msgstr "Alertas previas" - -#: ../../include/class/AgentsAlerts.class.php:644 -msgid "More alerts" -msgstr "MĆ”s alertas" - -#: ../../include/class/AgentsAlerts.class.php:729 -msgid "Agents/Alerts" -msgstr "Agentes/Alertas" - -#: ../../include/class/AgentsAlerts.class.php:778 -msgid "Show modules without alerts" -msgstr "Mostrar mĆ³dulos sin alertas" - -#: ../../include/class/AgentsAlerts.class.php:937 -#: ../../include/functions_ui.php:1247 -#: ../../enterprise/operation/agentes/policy_view.php:345 -#: ../../mobile/operation/alerts.php:324 -#: ../../godmode/alerts/alert_list.list.php:559 -#: ../../godmode/alerts/alert_view.php:105 -msgid "time(s)" -msgstr "Veces" - -#: ../../include/class/AgentsAlerts.class.php:940 -#: ../../include/functions_reporting.php:12344 -#: ../../include/functions_ui.php:1250 -#: ../../enterprise/operation/agentes/policy_view.php:348 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3186 -#: ../../enterprise/godmode/alerts/alert_inventory_list.php:261 -#: ../../mobile/operation/alerts.php:327 -#: ../../godmode/alerts/alert_list.list.php:562 -#: ../../godmode/alerts/alert_view.php:108 -msgid "Alert disabled" -msgstr "Alerta desactivada" - -#: ../../include/class/WebServerModuleDebug.class.php:143 -msgid "Performing query. Please wait." -msgstr "Consulta en proceso. Espere." - -#: ../../include/class/WebServerModuleDebug.class.php:174 -msgid "No results" -msgstr "No hay resultados" - -#: ../../include/class/WebServerModuleDebug.class.php:197 -msgid "Error performing execution" -msgstr "Error al llevar a cabo la ejecuciĆ³n" - -#: ../../include/class/WebServerModuleDebug.class.php:229 -msgid "Please, wait for a first execution of module" -msgstr "Espere a la primera ejecuciĆ³n del mĆ³dulo" - -#: ../../include/class/WebServerModuleDebug.class.php:325 -#: ../../godmode/agentes/module_manager_editor_web.php:180 -msgid "Debug" -msgstr "Depurar" - -#: ../../include/class/OrderInterpreter.class.php:105 -#: ../../enterprise/meta/monitoring/tactical.php:40 -msgid "Tactical View" -msgstr "Vista tĆ”ctica" - -#: ../../include/class/OrderInterpreter.class.php:123 -msgid "Agent Management" -msgstr "GestiĆ³n de agentes" - -#: ../../include/class/OrderInterpreter.class.php:141 ../../godmode/menu.php:322 -msgid "General Setup" -msgstr "ConfiguraciĆ³n general" - -#: ../../include/class/OrderInterpreter.class.php:157 -msgid "Manage Policies" -msgstr "Gestionar polĆ­ticas" - -#: ../../include/class/OrderInterpreter.class.php:171 -msgid "List Alerts" -msgstr "Listar alertas" - -#: ../../include/class/OrderInterpreter.class.php:195 -msgid "View Events" -msgstr "Ver eventos" - -#: ../../include/class/OrderInterpreter.class.php:247 -msgid "Manage Servers" -msgstr "Gestionar servidores" - -#: ../../include/class/OrderInterpreter.class.php:261 -msgid "Edit User" -msgstr "Editar usuario" - -#: ../../include/class/OrderInterpreter.class.php:271 -msgid "Tree View" -msgstr "Vista de Ć”rbol" - -#: ../../include/class/OrderInterpreter.class.php:281 -msgid "Network Component" -msgstr "Componente de red" - -#: ../../include/class/OrderInterpreter.class.php:295 -msgid "Task List" -msgstr "Lista de tareas" - -#: ../../include/class/OrderInterpreter.class.php:339 ../../godmode/menu.php:528 -msgid "Warp Update" -msgstr "ActualizaciĆ³n de Warp" - -#: ../../include/class/OrderInterpreter.class.php:353 -msgid "Manage Agent Groups" -msgstr "Gestionar grupos de agentes" - -#: ../../include/class/OrderInterpreter.class.php:394 -msgid "GO TO " -msgstr "IR A " - -#: ../../include/class/OrderInterpreter.class.php:423 -msgid "results found" -msgstr "Resultados encontrados" - -#: ../../include/class/OrderInterpreter.class.php:427 -msgid "Press enter to search" -msgstr "BĆŗsqueda de texto libre" - -#: ../../include/class/AgentWizard.class.php:448 -msgid "There are not defined Remote components for this performance." -msgstr "No hay componentes remotos definidos para esta acciĆ³n" - -#: ../../include/class/AgentWizard.class.php:541 -#: ../../include/functions_snmp_browser.php:766 -#: ../../godmode/events/event_responses.editor.php:175 -msgid "Local console" -msgstr "Consola local" - -#: ../../include/class/AgentWizard.class.php:567 -msgid "SNMP Walk" -msgstr "ExploraciĆ³n SNMP" - -#: ../../include/class/AgentWizard.class.php:572 -msgid "WMI Explorer" -msgstr "Buscador WMI" - -#: ../../include/class/AgentWizard.class.php:615 -#: ../../include/functions_snmp_browser.php:702 -#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:757 -#: ../../godmode/massive/massive_edit_modules.php:821 -#: ../../godmode/agentes/module_manager_editor_wmi.php:45 -#: ../../godmode/agentes/module_manager_editor_network.php:80 -msgid "Target IP" -msgstr "IP objetivo" - -#: ../../include/class/AgentWizard.class.php:630 -#: ../../include/functions_config.php:1547 -#: ../../include/functions_snmp_browser.php:714 -#: ../../enterprise/views/ncm/agent/manage.php:118 -#: ../../enterprise/include/class/Aws.cloud.php:556 -#: ../../enterprise/include/class/Aws.S3.php:574 -#: ../../enterprise/include/class/VMware.app.php:632 -#: ../../enterprise/include/class/Azure.cloud.php:813 -#: ../../enterprise/godmode/setup/setup_history.php:174 -#: ../../enterprise/godmode/servers/manage_export_form.php:121 -#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:1063 -#: ../../extensions/quick_shell.php:181 -#: ../../godmode/servers/modificar_server.php:84 -#: ../../godmode/modules/manage_network_components_form_network.php:53 -#: ../../godmode/massive/massive_edit_modules.php:1145 -#: ../../godmode/agentes/module_manager_editor_network.php:126 -msgid "Port" -msgstr "Puerto" - -#: ../../include/class/AgentWizard.class.php:646 -msgid "namespace" -msgstr "namespace" - -#: ../../include/class/AgentWizard.class.php:659 -#: ../../include/class/CredentialStore.class.php:957 -#: ../../enterprise/include/functions_ui.php:102 -#: ../../enterprise/godmode/setup/setup_module_library.php:49 -#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:849 -#: ../../extensions/quick_shell.php:174 -#: ../../godmode/modules/manage_network_components_form_wmi.php:47 -#: ../../godmode/massive/massive_edit_modules.php:906 -#: ../../godmode/agentes/module_manager_editor_wmi.php:103 -msgid "Username" -msgstr "Usuario" - -#: ../../include/class/AgentWizard.class.php:688 -#: ../../godmode/events/event_responses.editor.php:192 -msgid "Server to execute command" -msgstr "Servidor para ejecutar el comando" - -#: ../../include/class/AgentWizard.class.php:704 -#: ../../enterprise/tools/ipam/ipam_vlan_wizard.php:263 -#: ../../godmode/modules/manage_network_components_form_network.php:82 -#: ../../godmode/agentes/module_manager_editor_network.php:149 -msgid "SNMP community" -msgstr "Comunidad SNMP" - -#: ../../include/class/AgentWizard.class.php:726 -#: ../../enterprise/tools/ipam/ipam_vlan_wizard.php:272 -#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:780 -#: ../../godmode/modules/manage_network_components_form_network.php:55 -#: ../../godmode/massive/massive_edit_modules.php:839 -#: ../../godmode/wizards/HostDevices.class.php:1199 -#: ../../godmode/agentes/module_manager_editor_network.php:180 -msgid "SNMP version" -msgstr "VersiĆ³n SNMP" - -#: ../../include/class/AgentWizard.class.php:801 -#: ../../include/functions_snmp_browser.php:890 -#: ../../enterprise/tools/ipam/ipam_vlan_wizard.php:360 -#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:812 -#: ../../godmode/modules/manage_network_components_form_network.php:161 -#: ../../godmode/massive/massive_edit_modules.php:869 -#: ../../godmode/wizards/HostDevices.class.php:1332 -#: ../../godmode/agentes/module_manager_editor_network.php:408 -msgid "Security level" -msgstr "Nivel de seguridad" - -#: ../../include/class/AgentWizard.class.php:816 -msgid "User authentication" -msgstr "AutenticaciĆ³n de usuario" - -#: ../../include/class/AgentWizard.class.php:831 -#: ../../include/functions_config.php:544 -#: ../../enterprise/meta/include/functions_meta.php:502 -#: ../../godmode/setup/setup_auth.php:440 -msgid "Authentication method" -msgstr "MĆ©todo de autentificaciĆ³n" - -#: ../../include/class/AgentWizard.class.php:845 -msgid "Password authentication" -msgstr "ContraseƱa de autenticaciĆ³n" - -#: ../../include/class/AgentWizard.class.php:860 -#: ../../include/functions_snmp_browser.php:853 -#: ../../enterprise/tools/ipam/ipam_vlan_wizard.php:324 -#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:806 -#: ../../godmode/modules/manage_network_components_form_network.php:123 -#: ../../godmode/massive/massive_edit_modules.php:863 -#: ../../godmode/wizards/HostDevices.class.php:1286 -#: ../../godmode/agentes/module_manager_editor_network.php:369 -msgid "Privacy method" -msgstr "MĆ©todo de privacidad" - -#: ../../include/class/AgentWizard.class.php:874 -#: ../../include/functions_snmp_browser.php:867 -#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:808 -#: ../../godmode/modules/manage_network_components_form_network.php:136 -#: ../../godmode/massive/massive_edit_modules.php:865 -#: ../../godmode/wizards/HostDevices.class.php:1301 -#: ../../godmode/agentes/module_manager_editor_network.php:371 -msgid "Privacy pass" -msgstr "ConexiĆ³n privada" - -#: ../../include/class/AgentWizard.class.php:998 -#, php-format -msgid "The PEN (%s) is not registered." -msgstr "PEN (%s) no estĆ” registrado." - -#: ../../include/class/AgentWizard.class.php:1065 -msgid "The SNMP Walk does not return anything with the received arguments." -msgstr "La pasarela SNMP no devuelve nada con los argumentos recibidos." - -#: ../../include/class/AgentWizard.class.php:1118 -#, php-format -msgid "The target host response with an error: %s" -msgstr "Respuesta del host objetivo con un error: %s" - -#: ../../include/class/AgentWizard.class.php:1168 -msgid "No selected modules" -msgstr "No hay mĆ³dulos seleccionados" - -#: ../../include/class/AgentWizard.class.php:1205 -msgid "Module exists in policy" -msgstr "El mĆ³dulo existe en la polĆ­tica" - -#: ../../include/class/AgentWizard.class.php:1215 -msgid "Module exists in agent" -msgstr "El mĆ³dulo existe en el agente" - -#: ../../include/class/AgentWizard.class.php:1222 -msgid "Module with the same name in the module creation list" -msgstr "MĆ³dulo con el mismo nombre en la lista de creaciĆ³n de mĆ³dulos" - -#: ../../include/class/AgentWizard.class.php:1252 -#: ../../include/functions_servers.php:738 -msgid "Enterprise Satellite server" -msgstr "Servidor Enterprise SatĆ©lite" - -#: ../../include/class/AgentWizard.class.php:1262 -#: ../../include/functions_servers.php:608 -#: ../../include/functions_servers.php:1320 -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:446 -msgid "Plugin server" -msgstr "Servidor de plugins" - -#: ../../include/class/AgentWizard.class.php:1272 -#: ../../include/functions_servers.php:634 -#: ../../include/functions_servers.php:1326 -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:491 -msgid "WMI server" -msgstr "Servidor WMI" - -#: ../../include/class/AgentWizard.class.php:1281 -#: ../../include/functions_servers.php:569 -#: ../../include/functions_servers.php:1308 -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:401 -msgid "Network server" -msgstr "Servidor de red" - -#: ../../include/class/AgentWizard.class.php:1625 -#, php-format -msgid "Module \"%s\" exits in this policy" -msgstr "El mĆ³dulo \"%s\" sale de esta polĆ­tica" - -#: ../../include/class/AgentWizard.class.php:1727 -#: ../../include/class/AgentWizard.class.php:2155 -#, php-format -msgid "Module %s module_exec not configuration" -msgstr "MĆ³dulo %s module_exec no configurado" - -#: ../../include/class/AgentWizard.class.php:1883 -#: ../../include/class/AgentWizard.class.php:2330 -#, php-format -msgid "Module %s satellite execution not configuration" -msgstr "No se ha configurado la ejecuciĆ³n del mĆ³dulo %s del satĆ©lite" - -#: ../../include/class/AgentWizard.class.php:1975 -#, php-format -msgid "Module \"%s\" problems insert in bbdd" -msgstr "El mĆ³dulo \"%s\" no se ha podido insertar en la base de datos" - -#: ../../include/class/AgentWizard.class.php:1983 -#: ../../include/class/AgentWizard.class.php:2413 -msgid "Modules created" -msgstr "MĆ³dulos creados" - -#: ../../include/class/AgentWizard.class.php:2013 -#, php-format -msgid "Module \"%s\" exists in this agent" -msgstr "El mĆ³dulo \"%s\" sale de este agente" - -#: ../../include/class/AgentWizard.class.php:2495 -#: ../../include/functions.php:2705 -#: ../../enterprise/operation/agentes/policy_view.php:184 -#: ../../enterprise/operation/agentes/policy_view.php:277 -#: ../../enterprise/operation/agentes/policy_view.php:570 -#: ../../enterprise/meta/monitoring/wizard/wizard.php:138 -#: ../../godmode/modules/manage_network_components_form_plugin.php:54 -#: ../../godmode/modules/manage_network_components_form_wmi.php:60 -#: ../../godmode/alerts/configure_alert_template.php:1288 -#: ../../godmode/alerts/alert_list.builder.php:293 -msgid "Empty" -msgstr "VacĆ­o" - -#: ../../include/class/AgentWizard.class.php:2604 -msgid "Select all filtered interfaces" -msgstr "Seleccione todas las interfaces filtradas" - -#: ../../include/class/AgentWizard.class.php:2627 -msgid "OperStatus UP" -msgstr "OperStatus UP" - -#: ../../include/class/AgentWizard.class.php:2638 -msgid "AdminStatus UP" -msgstr "AdminStatus UP" - -#: ../../include/class/AgentWizard.class.php:3324 -msgid "No information could be retrieved." -msgstr "No se ha podido obtener informaciĆ³n" - -#: ../../include/class/AgentWizard.class.php:3614 -msgid "Create modules" -msgstr "Crear mĆ³dulos" - -#: ../../include/class/AgentWizard.class.php:3923 -msgid "Add general monitoring for all selected interfaces" -msgstr "AƱada monitorizaciĆ³n general para todas las interfaces seleccionadas" - -#: ../../include/class/AgentWizard.class.php:3944 -#: ../../include/class/AgentWizard.class.php:3945 -#: ../../include/class/AgentWizard.class.php:3964 -#: ../../include/class/AgentWizard.class.php:3965 -msgid "Modules selected" -msgstr "MĆ³dulos seleccionados" - -#: ../../include/class/AgentWizard.class.php:4033 -msgid "Module info" -msgstr "InformaciĆ³n del mĆ³dulo" - -#: ../../include/class/AgentWizard.class.php:4062 -msgid "Current value" -msgstr "Valor actual" - -#: ../../include/class/AgentWizard.class.php:5548 -#, php-format -msgid "The operation '%s' is not permitted. Review for remote components." -msgstr "La operaciĆ³n '%s' no estĆ” permitida. Revise los componentes remotos." - -#: ../../include/class/AgentWizard.class.php:5963 -msgid "Modules about to be created" -msgstr "MĆ³dulos a punto de ser creados" - -#: ../../include/class/WelcomeWindow.class.php:157 -msgid "Welcome to" -msgstr "Bienvenido a" - -#: ../../include/class/WelcomeWindow.class.php:158 -msgid "Do not show anymore" -msgstr "No volver a mostrar" - -#: ../../include/class/WelcomeWindow.class.php:167 -msgid "Cancel Configuration Window" -msgstr "Cancelar ventana de configuraciĆ³n" - -#: ../../include/class/WelcomeWindow.class.php:172 -msgid "Are you sure you want to cancel this tutorial?" -msgstr "ĀæEstĆ” seguro de que desea borrar este tutorial?" - -#: ../../include/class/WelcomeWindow.class.php:428 -msgid "Please ensure mail configuration matches your needs" -msgstr "" -"AsegĆŗrese de que la configuraciĆ³n del correo electrĆ³nico se ajusta a sus " -"necesidades" - -#: ../../include/class/WelcomeWindow.class.php:462 -msgid "Create an agent" -msgstr "Crear agente" - -#: ../../include/class/WelcomeWindow.class.php:487 -msgid "Create a module to check if an agent is online" -msgstr "Crear mĆ³dulo para saber si el agente estĆ” en lĆ­nea" - -#: ../../include/class/WelcomeWindow.class.php:512 -msgid "Be warned if something is wrong, create an alert on the module" -msgstr "" -"MantĆ©ngase informado de cualquier problema, cree una alerta para el mĆ³dulo" - -#: ../../include/class/WelcomeWindow.class.php:537 -msgid "Discover hosts and devices in your network" -msgstr "Explorar hosts y dispositivos en la red" - -#: ../../include/class/WelcomeWindow.class.php:565 -msgid "If something is not working as expected, look for this icon and report!" -msgstr "" -"Si algo no funciona como deberĆ­a, !busque este icono e informe del problemaĀ”" - -#: ../../include/class/Diagnostics.class.php:144 -#: ../../enterprise/operation/reporting/custom_reporting.php:64 -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:581 -msgid "Export to PDF" -msgstr "Exportar a PDF" - #: ../../include/class/Diagnostics.class.php:157 #, php-format msgid "%s Diagnostic tool" @@ -16290,10 +43662,6 @@ msgstr "InformaciĆ³n del estado de %s" msgid "PHP setup" msgstr "ConfiguraciĆ³n PHP" -#: ../../include/class/Diagnostics.class.php:230 ../../godmode/db/db_main.php:98 -msgid "Database size stats" -msgstr "TamaƱo de estadĆ­sticas de la base de datos" - #: ../../include/class/Diagnostics.class.php:234 msgid "Database health status" msgstr "Estado de la base de datos" @@ -16457,11 +43825,6 @@ msgstr "Total de registros de datos de mĆ³dulos" msgid "Total agent access record" msgstr "Registro total de acceso de agentes" -#: ../../include/class/Diagnostics.class.php:569 -#: ../../include/functions_reporting.php:13932 ../../godmode/db/db_main.php:108 -msgid "Total events" -msgstr "Total de eventos" - #: ../../include/class/Diagnostics.class.php:573 msgid "Total traps" msgstr "Traps totales" @@ -16510,11 +43873,6 @@ msgstr "Desarrollo del esquema de la base de datos" msgid "DB Size" msgstr "TamaƱo de la base de datos" -#: ../../include/class/Diagnostics.class.php:722 -#: ../../enterprise/godmode/reporting/aws_view.php:54 -msgid "CPU" -msgstr "CPU" - #: ../../include/class/Diagnostics.class.php:726 msgid "RAM" msgstr "RAM" @@ -16523,16 +43881,6 @@ msgstr "RAM" msgid "Os" msgstr "SO" -#: ../../include/class/Diagnostics.class.php:734 -#: ../../include/class/Diagnostics.class.php:752 -#: ../../enterprise/tools/ipam/ipam_ajax.php:364 -#: ../../enterprise/tools/ipam/ipam_network.php:396 -#: ../../enterprise/include/functions_ipam.php:1648 -#: ../../enterprise/include/functions_ipam.php:1649 -#: ../../enterprise/include/functions_ipam.php:2037 -msgid "Hostname" -msgstr "Nombre de host" - #: ../../include/class/Diagnostics.class.php:738 #: ../../include/class/Diagnostics.class.php:756 #: ../../include/class/NetworkMap.class.php:2909 @@ -16545,11 +43893,9 @@ msgstr "InnoDB buffer pool size" #: ../../include/class/Diagnostics.class.php:788 #, php-format -msgid "" -"It has to be 40% of the server memory not recommended to be greater or less" +msgid "It has to be 40% of the server memory not recommended to be greater or less" msgstr "" -"Debe ser un 40% de la memoria del servidor. No se recomienda ningĆŗn otro " -"porcentaje." +"Debe ser un 40% de la memoria del servidor. No se recomienda ningĆŗn otro porcentaje." #: ../../include/class/Diagnostics.class.php:793 msgid "InnoDB file per table" @@ -16654,11 +44000,9 @@ msgid "Thread stack" msgstr "Hilos acumulados" #: ../../include/class/Diagnostics.class.php:970 -msgid "" -"Table fragmentation is higher than recommended. They should be defragmented." +msgid "Table fragmentation is higher than recommended. They should be defragmented." msgstr "" -"La fragmentaciĆ³n de tablas es mayor de la recomendada. DeberĆ­an estar " -"desfragmentadas." +"La fragmentaciĆ³n de tablas es mayor de la recomendada. DeberĆ­an estar desfragmentadas." #: ../../include/class/Diagnostics.class.php:974 msgid "Table fragmentation is correct." @@ -16710,11 +44054,9 @@ msgstr "La capacidad de la licencia excede del 90 por ciento" #: ../../include/class/Diagnostics.class.php:1095 msgid "" -"The average of modules per agent is more than 40. You can have performance " -"problems" +"The average of modules per agent is more than 40. You can have performance problems" msgstr "" -"La media de mĆ³dulos por agente es mĆ”s de 40. Puede sufrir problemas de " -"rendimiento" +"La media de mĆ³dulos por agente es mĆ”s de 40. Puede sufrir problemas de rendimiento" #: ../../include/class/Diagnostics.class.php:1100 msgid "The average of modules per agent is less than 40" @@ -16724,71 +44066,15 @@ msgstr "La media de mĆ³dulos por agente es menos de 40" msgid "The system has no load" msgstr "El sistema no tiene carga" -#: ../../include/class/Diagnostics.class.php:1152 -#: ../../godmode/setup/license.php:129 -msgid "Customer key" -msgstr "Clave del cliente" - -#: ../../include/class/Diagnostics.class.php:1156 -#: ../../enterprise/include/functions_license.php:120 -msgid "Support expires" -msgstr "El soporte caduca" - -#: ../../include/class/Diagnostics.class.php:1160 -#: ../../godmode/setup/license.php:135 -msgid "Platform Limit" -msgstr "LĆ­mite de la plataforma" - -#: ../../include/class/Diagnostics.class.php:1164 -#: ../../godmode/setup/license.php:138 -msgid "Current Platform Count" -msgstr "CĆ³mputo de la plataforma actual" - -#: ../../include/class/Diagnostics.class.php:1168 -#: ../../godmode/setup/license.php:141 -msgid "Current Platform Count (enabled: items)" -msgstr "CĆ³mputo de la plataforma actual (activado: elementos)" - -#: ../../include/class/Diagnostics.class.php:1172 -#: ../../godmode/setup/license.php:144 -msgid "Current Platform Count (disabled: items)" -msgstr "CĆ³mputo de la plataforma actual (desactivado: elementos)" - -#: ../../include/class/Diagnostics.class.php:1176 -#: ../../godmode/setup/license.php:147 -msgid "License Mode" -msgstr "Modalidad de licencia" - #: ../../include/class/Diagnostics.class.php:1180 msgid "Network Management System" msgstr "Sistema de administraciĆ³n de la red" -#: ../../include/class/Diagnostics.class.php:1181 -#: ../../include/class/Diagnostics.class.php:1185 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3330 -#: ../../enterprise/godmode/policies/policy_external_alerts.php:461 -#: ../../enterprise/godmode/policies/policy_alerts.php:430 -#: ../../godmode/alerts/alert_list.list.php:638 -msgid "On" -msgstr "Activado" - #: ../../include/class/Diagnostics.class.php:1181 #: ../../include/class/Diagnostics.class.php:1185 msgid "Off" msgstr "Apagado" -#: ../../include/class/Diagnostics.class.php:1184 -#: ../../include/functions_ui.php:866 ../../godmode/setup/license.php:153 -#: ../../godmode/servers/modificar_server.php:42 -#: ../../godmode/agentes/agent_manager.php:452 -msgid "Satellite" -msgstr "SatĆ©lite" - -#: ../../include/class/Diagnostics.class.php:1188 -#: ../../godmode/setup/license.php:156 -msgid "Licensed to" -msgstr "Con licencia para" - #: ../../include/class/Diagnostics.class.php:1192 msgid "Status of agents capacity" msgstr "Estado de la capacidad de los agentes" @@ -16815,11 +44101,10 @@ msgstr "Total de archivos en la carpeta adjunta" #: ../../include/class/Diagnostics.class.php:1277 msgid "" -"The tagente_datos table contains too much data. A historical database is " -"recommended." +"The tagente_datos table contains too much data. A historical database is recommended." msgstr "" -"La tabla tagente_datos contiene demasiados datos. Se recomienda una base de " -"datos histĆ³rica." +"La tabla tagente_datos contiene demasiados datos. Se recomienda una base de datos " +"histĆ³rica." #: ../../include/class/Diagnostics.class.php:1282 msgid "The tagente_datos table contains an acceptable amount of data." @@ -16847,27 +44132,27 @@ msgstr "Hilos pandora_server en ejecuciĆ³n actualmente" #: ../../include/class/Diagnostics.class.php:1352 msgid "" -"There's more pandora_server threads than configured, are you running multiple " -"servers simultaneusly?." +"There's more pandora_server threads than configured, are you running multiple servers " +"simultaneusly?." msgstr "" -"Hay mĆ”s hilos pandora_server de los configurados, ĀæestĆ” ejecutando varios " -"servidores a la vez?" +"Hay mĆ”s hilos pandora_server de los configurados, ĀæestĆ” ejecutando varios servidores " +"a la vez?" #: ../../include/class/Diagnostics.class.php:1486 msgid "" -"Please check your Pandora Server setup and make sure that the database " -"maintenance daemon is running." +"Please check your Pandora Server setup and make sure that the database maintenance " +"daemon is running." 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." +"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:1490 msgid "" -"It' is very important to keep the database up-to-date to get the best " -"performance and results in Pandora" +"It' is very important to keep the database up-to-date to get the best performance and " +"results in Pandora" msgstr "" -"Es muy importante que la base de datos estĆ© actualizada para conseguir un " -"rendimiento y resultados Ć³ptimos en Pandora FMS" +"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:1752 msgid "You have more than 10 MB of logs" @@ -16877,17 +44162,6 @@ msgstr "Tiene mĆ”s de 10MB de registros" msgid "You have less than 10 MB of logs" msgstr "Tiene menos de 10MB de logs" -#: ../../include/class/Diagnostics.class.php:1818 -#: ../../enterprise/include/class/CommandCenter.class.php:461 -#: ../../enterprise/include/functions_login.php:145 -msgid "Successfully" -msgstr "Correcto" - -#: ../../include/class/Diagnostics.class.php:1910 -#: ../../update_manager_client/views/register.php:78 -msgid "Your email" -msgstr "Su email" - #: ../../include/class/Diagnostics.class.php:1922 msgid "Include installation data" msgstr "Incluir datos de instalaciĆ³n" @@ -16911,8 +44185,7 @@ msgstr "Encontrar archivos adjuntos a este correo" #: ../../include/class/Diagnostics.class.php:1985 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" +msgstr "El PDF es la informaciĆ³n de diagnĆ³stico obtenida en el momento del informe" #: ../../include/class/Diagnostics.class.php:1988 msgid "CSV contains the statuses of every product file" @@ -16921,8 +44194,7 @@ msgstr "CSV contiene los estados de cada archivo de producto" #: ../../include/class/Diagnostics.class.php:1993 #, php-format msgid "" -"If you think this report must be escalated, feel free to forward this mail to " -"\"%s\"" +"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:1997 @@ -16934,17 +44206,17 @@ 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 "" -"La informaciĆ³n aquĆ­ incluida es privilegiada y confidencial, destinada al uso " -"del individuo o la entidad arriba mencionada" +"La informaciĆ³n aquĆ­ incluida es privilegiada y confidencial, destinada al uso del " +"individuo o la entidad arriba mencionada" #: ../../include/class/Diagnostics.class.php:2003 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" +"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 "" -"Si el lector del mensaje no es el destinatario deseado, le comunicamos que " -"estĆ” prohibido difundir, distribuir o copiar este comunicado" +"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:2007 msgid "If you have received this transmission in error, do not read it" @@ -16952,11 +44224,11 @@ msgstr "Si ha recibido este mensaje por error, no lo lea" #: ../../include/class/Diagnostics.class.php:2011 msgid "" -"Please immediately reply to the sender that you have received this " -"communication in error and then delete it" +"Please immediately reply to the sender that you have received this communication in " +"error and then delete it" msgstr "" -"ComunĆ­quele al remitente que ha recibido esta comunicaciĆ³n por error y acto " -"seguido elimĆ­nela" +"ComunĆ­quele al remitente que ha recibido esta comunicaciĆ³n por error y acto seguido " +"elimĆ­nela" #: ../../include/class/Diagnostics.class.php:2090 msgid "Invalid cron task" @@ -16971,29 +44243,565 @@ msgstr "Se ha procesado el envĆ­o de informaciĆ³n" msgid "Diagnostics Info" msgstr "InformaciĆ³n de diagnĆ³stico" -#: ../../include/class/Diagnostics.class.php:2130 -#: ../../include/class/Diagnostics.class.php:2248 -#: ../../enterprise/include/functions_reporting_pdf.php:72 -#, php-format -msgid "Automated %s report for user defined report" -msgstr "Informe de %s automatizado para informe definido por el usuario" - -#: ../../include/class/Diagnostics.class.php:2175 -#: ../../include/functions_snmp_browser.php:880 -#: ../../enterprise/tools/ipam/ipam_vlan_wizard.php:350 -#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:811 -#: ../../godmode/modules/manage_network_components_form_network.php:151 -#: ../../godmode/massive/massive_edit_modules.php:868 -#: ../../godmode/wizards/HostDevices.class.php:1322 -#: ../../godmode/agentes/module_manager_editor_network.php:394 -msgid "MD5" -msgstr "MD5" - #: ../../include/class/Diagnostics.class.php:2244 #: ../../include/class/Diagnostics.class.php:2254 msgid "PHP Info" msgstr "InformaciĆ³n PHP" +#: ../../include/class/NetworkMap.class.php:2317 +msgid "Failed to generate dotmap, please select different layout schema" +msgstr "No se ha podido generar dotmap, seleccione un formato diferente" + +#: ../../include/class/NetworkMap.class.php:2452 +msgid "Failed to retrieve graph data." +msgstr "No se ha podido obtener datos de grĆ”fica." + +#: ../../include/class/NetworkMap.class.php:2663 +msgid "Holding Area" +msgstr "BĆŗfer de procesamiento" + +#: ../../include/class/NetworkMap.class.php:2790 +#, php-format +msgid "Edit node %s" +msgstr "Modificar el nodo %s" + +#: ../../include/class/NetworkMap.class.php:2792 +msgid "Show details and options" +msgstr "Mostrar detalles y opciones" + +#: ../../include/class/NetworkMap.class.php:2793 +msgid "Add a interface link" +msgstr "AƱadir enlace de interfaz" + +#: ../../include/class/NetworkMap.class.php:2794 +msgid "Set parent interface" +msgstr "Establecer padre en la relaciĆ³n de interfaz" + +#: ../../include/class/NetworkMap.class.php:2795 +msgid "Set as children" +msgstr "Establecer como hijo" + +#: ../../include/class/NetworkMap.class.php:2796 +msgid "Set parent" +msgstr "Establecer como padre" + +#: ../../include/class/NetworkMap.class.php:2797 +#: ../../include/class/NetworkMap.class.php:2810 +msgid "Abort the action of set relationship" +msgstr "Cancelar la acciĆ³n de relacionar por parentesco" + +#: ../../include/class/NetworkMap.class.php:2799 +#: ../../include/class/NetworkMap.class.php:3155 +msgid "Add node" +msgstr "AƱadir nodo" + +#: ../../include/class/NetworkMap.class.php:2800 +msgid "Set center" +msgstr "Fijar centro" + +#: ../../include/class/NetworkMap.class.php:2802 +msgid "Refresh Holding area" +msgstr "Actualizar bĆŗfer de procesamiento" + +#: ../../include/class/NetworkMap.class.php:2803 +#: ../../include/class/NetworkMap.class.php:2806 +msgid "Proceed" +msgstr "Proceder" + +#: ../../include/class/NetworkMap.class.php:2804 +msgid "" +"Resetting the map will delete all customizations you have done, including manual " +"relationships between elements, new items, etc." +msgstr "" +"Al resetear el mapa se borrarĆ”n todas las personalizaciones que hayas hecho, " +"incluyendo las relaciones manuales entre elementos, nuevos elementos, etc." + +#: ../../include/class/NetworkMap.class.php:2808 +msgid "Restart map" +msgstr "Resetear el mapa" + +#: ../../include/class/NetworkMap.class.php:2809 +msgid "Abort the interface relationship" +msgstr "Abortar la relaciĆ³n de interfaz" + +#: ../../include/class/NetworkMap.class.php:2827 +#: ../../include/class/NetworkMap.class.php:2876 +msgid "Edit node" +msgstr "Modificar nodo" + +#: ../../include/class/NetworkMap.class.php:2837 +#: ../../include/class/NetworkMap.class.php:2886 +msgid "Adresses" +msgstr "Direcciones" + +#: ../../include/class/NetworkMap.class.php:2839 +#: ../../include/class/NetworkMap.class.php:2888 +msgid "OS type" +msgstr "Tipo de SO" + +#: ../../include/class/NetworkMap.class.php:2846 +#: ../../include/class/NetworkMap.class.php:2847 +#: ../../include/class/NetworkMap.class.php:2895 +#: ../../include/class/NetworkMap.class.php:2896 +msgid "Node Details" +msgstr "Detalles de nodo" + +#: ../../include/class/NetworkMap.class.php:2921 +#: ../../include/class/NetworkMap.class.php:2922 +msgid "Interface Information (SNMP)" +msgstr "InformaciĆ³n de interfaces (SNMP)" + +#: ../../include/class/NetworkMap.class.php:2933 +msgid "Shape" +msgstr "Forma" + +#: ../../include/class/NetworkMap.class.php:2936 +msgid "Circle" +msgstr "CĆ­rculo" + +#: ../../include/class/NetworkMap.class.php:2937 +msgid "Square" +msgstr "Cuadrado" + +#: ../../include/class/NetworkMap.class.php:2938 +msgid "Rhombus" +msgstr "Rombo" + +#: ../../include/class/NetworkMap.class.php:2951 +msgid "name node" +msgstr "Nombrar nodo" + +#: ../../include/class/NetworkMap.class.php:2969 +#: ../../include/class/NetworkMap.class.php:3272 +msgid "name fictional node" +msgstr "Nombre de nodo ficticio" + +#: ../../include/class/NetworkMap.class.php:2974 +#: ../../include/class/NetworkMap.class.php:3277 +msgid "Networkmap to link" +msgstr "Enlace a mapa de red" + +#: ../../include/class/NetworkMap.class.php:2986 +msgid "Update fictional node" +msgstr "Actualizar nodo ficticio" + +#: ../../include/class/NetworkMap.class.php:2996 +#: ../../include/class/NetworkMap.class.php:2997 +msgid "Node options" +msgstr "Opciones de nodo" + +#: ../../include/class/NetworkMap.class.php:3008 +#: ../../include/class/NetworkMap.class.php:3101 +msgid "Node source" +msgstr "Nodo origen" + +#: ../../include/class/NetworkMap.class.php:3009 +#: ../../include/class/NetworkMap.class.php:3102 +msgid "Interface source" +msgstr "Interfaz origen" + +#: ../../include/class/NetworkMap.class.php:3010 +#: ../../include/class/NetworkMap.class.php:3103 +msgid "Interface Target" +msgstr "Interfaz objetivo" + +#: ../../include/class/NetworkMap.class.php:3012 +#: ../../include/class/NetworkMap.class.php:3104 +msgid "Node target" +msgstr "Nodo objetivo" + +#: ../../include/class/NetworkMap.class.php:3013 +msgid "E." +msgstr "E." + +#: ../../include/class/NetworkMap.class.php:3075 +msgid "There are not relations" +msgstr "No hay relaciones" + +#: ../../include/class/NetworkMap.class.php:3143 +msgid "Add interface link" +msgstr "AƱadir enlace de interfaz" + +#: ../../include/class/NetworkMap.class.php:3174 +#: ../../include/class/NetworkMap.class.php:3196 +#: ../../include/class/NetworkMap.class.php:3197 +#: ../../include/class/NetworkMap.class.php:3247 +#: ../../include/class/NetworkMap.class.php:3259 +#: ../../include/class/NetworkMap.class.php:3300 +msgid "Add agent node" +msgstr "AƱadir nodo de agente" + +#: ../../include/class/NetworkMap.class.php:3258 +msgid "Add agent node (filter by group)" +msgstr "AƱadir nodo de agente (filtro por grupo)" + +#: ../../include/class/NetworkMap.class.php:3289 +msgid "Add fictional node" +msgstr "AƱadir nodo ficticio" + +#: ../../include/class/NetworkMap.class.php:3299 +msgid "Add fictional point" +msgstr "AƱadir punto ficticio" + +#: ../../include/class/NetworkMap.class.php:3513 +msgid "Open Minimap" +msgstr "Abrir Minimapa" + +#: ../../include/class/NetworkMap.class.php:3519 +msgid "Hide Labels" +msgstr "Ocultar etiquetas" + +#: ../../include/class/AgentsAlerts.class.php:502 +msgid "There are no agents with alerts" +msgstr "No existen agentes con alertas" + +#: ../../include/class/AgentsAlerts.class.php:580 +msgid "Previous alerts" +msgstr "Alertas previas" + +#: ../../include/class/AgentsAlerts.class.php:644 +msgid "More alerts" +msgstr "MĆ”s alertas" + +#: ../../include/class/AgentsAlerts.class.php:729 +msgid "Agents/Alerts" +msgstr "Agentes/Alertas" + +#: ../../include/class/AgentsAlerts.class.php:778 +msgid "Show modules without alerts" +msgstr "Mostrar mĆ³dulos sin alertas" + +#: ../../include/class/AgentsAlerts.class.php:808 +#: ../../operation/gis_maps/render_view.php:155 +msgid "10 minutes" +msgstr "10 minutos" + +#: ../../include/class/ManageNetScanScripts.class.php:122 +msgid "Net scan scripts" +msgstr "Guiones de escaneo de red" + +#: ../../include/class/ManageNetScanScripts.class.php:223 +msgid "Problem creating" +msgstr "Error al crear" + +#: ../../include/class/ManageNetScanScripts.class.php:234 +#: ../../include/class/ManageNetScanScripts.class.php:321 +msgid "Name or Script fullpath they can not be empty" +msgstr "El nombre o ruta completa del guiĆ³n no pueden estar vacĆ­os" + +#: ../../include/class/ManageNetScanScripts.class.php:255 +#: ../../include/class/ManageNetScanScripts.class.php:342 +msgid "Problem deleting Net scan Scripts, Not selected script" +msgstr "Error al eliminar los scripts de escaneo de red. No hay scripts seleccionados" + +#: ../../include/class/ManageNetScanScripts.class.php:310 +msgid "Problem updating" +msgstr "Error al actualizar" + +#: ../../include/class/ManageNetScanScripts.class.php:361 +msgid "Problem deleting Net scan Scripts" +msgstr "Error al eliminar los scripts de escaneo de red" + +#: ../../include/class/ManageNetScanScripts.class.php:366 +msgid "Deleted successfully" +msgstr "Borrado correctamente" + +#: ../../include/class/ManageNetScanScripts.class.php:439 +msgid "Are you sure delete script?" +msgstr "ĀæEstĆ” seguro de que desea borrar el script?" + +#: ../../include/class/ManageNetScanScripts.class.php:459 +msgid "Delete Script" +msgstr "Eliminar guiĆ³n" + +#: ../../include/class/ManageNetScanScripts.class.php:478 +msgid "There are no net scan scripts in the system" +msgstr "No hay scripts de escaneo de red en el sistema" + +#: ../../include/class/ManageNetScanScripts.class.php:552 +msgid "Script fullpath" +msgstr "Ruta completa del script" + +#: ../../include/class/CredentialStore.class.php:611 +#, php-format +msgid "Not a valid JSON: %s" +msgstr "JSON no vĆ”lido: %s" + +#: ../../include/class/CredentialStore.class.php:621 +msgid "Key identifier is required" +msgstr "Se necesita identificador de clave" + +#: ../../include/class/CredentialStore.class.php:623 +msgid "You must select a group where store this key!" +msgstr "Seleccione un grupo donde guardar esta clave" + +#: ../../include/class/CredentialStore.class.php:625 +msgid "You must specify a product type" +msgstr "Especifique el tipo de producto" + +#: ../../include/class/CredentialStore.class.php:627 +msgid "You must specify a username and/or password" +msgstr "Especifique el nombre de usuario y/o la contraseƱa" + +#: ../../include/class/CredentialStore.class.php:629 +msgid "Identifier with forbidden characters. Check the documentation." +msgstr "Identificador con caracteres prohibidos. Consulte la documentaciĆ³n." + +#: ../../include/class/CredentialStore.class.php:742 +msgid "identifier cannot be empty" +msgstr "El identificador no puede estar vacĆ­o" + +#: ../../include/class/CredentialStore.class.php:785 +#, php-format +msgid "Database encryption is not enabled. Credentials will be stored in plaintext. %s" +msgstr "" +"El cifrado de la base de datos no estĆ” disponible. Los credenciales se guardarĆ”n en " +"texto sin formato. %s" + +#: ../../include/class/CredentialStore.class.php:804 +#: ../../include/class/CredentialStore.class.php:937 +msgid "Product" +msgstr "Producto" + +#: ../../include/class/CredentialStore.class.php:869 +msgid "Add key" +msgstr "AƱadir clave" + +#: ../../include/class/CredentialStore.class.php:960 +msgid "Extra (2)" +msgstr "Extra (2)" + +#: ../../include/class/CredentialStore.class.php:970 +#: ../../include/class/CredentialStore.class.php:1141 +msgid "Access key ID" +msgstr "ID de la clave de accso" + +#: ../../include/class/CredentialStore.class.php:971 +#: ../../include/class/CredentialStore.class.php:1142 +msgid "Secret access key" +msgstr "Clave de acceso secreta" + +#: ../../include/class/CredentialStore.class.php:977 +#: ../../include/class/CredentialStore.class.php:994 +msgid "Account ID" +msgstr "ID de la cuenta" + +#: ../../include/class/CredentialStore.class.php:978 +#: ../../include/class/CredentialStore.class.php:1149 +msgid "Application secret" +msgstr "Secretos de aplicaciĆ³n" + +#: ../../include/class/CredentialStore.class.php:979 +#: ../../include/class/CredentialStore.class.php:1150 +msgid "Tenant or domain name" +msgstr "Propietario o nombre del dominio" + +#: ../../include/class/CredentialStore.class.php:980 +#: ../../include/class/CredentialStore.class.php:1151 +msgid "Subscription id" +msgstr "ID de la suscripciĆ³n" + +#: ../../include/class/CredentialStore.class.php:984 +#: ../../include/class/CredentialStore.class.php:1167 +msgid "Auth JSON" +msgstr "AutenticaciĆ³n JSON" + +#: ../../include/class/CredentialStore.class.php:1148 +msgid "Client ID" +msgstr "ID de cliente" + +#: ../../include/class/CredentialStore.class.php:1157 +msgid "Account ID." +msgstr "ID de la cuenta" + +#: ../../include/class/CredentialStore.class.php:1243 +msgid "Register new key into keystore" +msgstr "Registrar una clave nueva en el repositorio de claves" + +#: ../../include/class/CredentialStore.class.php:1247 +msgid "Update key" +msgstr "Actualizar clave" + +#: ../../include/class/AuditLog.class.php:136 +#, php-format +msgid "%s audit" +msgstr "AuditorĆ­a %s" + +#: ../../include/class/AuditLog.class.php:136 +msgid "Review Logs" +msgstr "Revisar logs" + +#: ../../include/class/AuditLog.class.php:149 +msgid "System Audit log" +msgstr "Logs de auditorĆ­a del sistema" + +#: ../../include/class/OrderInterpreter.class.php:123 +msgid "Agent Management" +msgstr "GestiĆ³n de agentes" + +#: ../../include/class/OrderInterpreter.class.php:157 +msgid "Manage Policies" +msgstr "Gestionar polĆ­ticas" + +#: ../../include/class/OrderInterpreter.class.php:171 +msgid "List Alerts" +msgstr "Listar alertas" + +#: ../../include/class/OrderInterpreter.class.php:195 +msgid "View Events" +msgstr "Ver eventos" + +#: ../../include/class/OrderInterpreter.class.php:247 +msgid "Manage Servers" +msgstr "Gestionar servidores" + +#: ../../include/class/OrderInterpreter.class.php:261 +msgid "Edit User" +msgstr "Editar usuario" + +#: ../../include/class/OrderInterpreter.class.php:271 +msgid "Tree View" +msgstr "Vista de Ć”rbol" + +#: ../../include/class/OrderInterpreter.class.php:281 +msgid "Network Component" +msgstr "Componente de red" + +#: ../../include/class/OrderInterpreter.class.php:295 +msgid "Task List" +msgstr "Lista de tareas" + +#: ../../include/class/OrderInterpreter.class.php:353 +msgid "Manage Agent Groups" +msgstr "Gestionar grupos de agentes" + +#: ../../include/class/OrderInterpreter.class.php:394 +msgid "GO TO " +msgstr "IR A " + +#: ../../include/class/OrderInterpreter.class.php:423 +msgid "results found" +msgstr "Resultados encontrados" + +#: ../../include/class/OrderInterpreter.class.php:427 +msgid "Press enter to search" +msgstr "BĆŗsqueda de texto libre" + +#: ../../include/class/CustomNetScan.class.php:369 +#: ../../include/class/CustomNetScan.class.php:394 +msgid "NetScan Custom" +msgstr "PersonalizaciĆ³n NetScan" + +#: ../../include/class/CustomNetScan.class.php:611 +msgid "Recon script" +msgstr "Recon script" + +#: ../../include/class/CustomNetScan.class.php:652 +msgid "Explanation" +msgstr "ExplicaciĆ³n" + +#: ../../include/class/CustomNetScan.class.php:668 +msgid "macro_desc" +msgstr "macro_desc" + +#: ../../include/class/ModuleTemplates.class.php:353 +#, php-format +msgid "Template %s successfully updated" +msgstr "Plantilla %s actualizada con Ć©xito" + +#: ../../include/class/ModuleTemplates.class.php:400 +#, php-format +msgid "Template %s successfully created" +msgstr "Plantilla %s creada con Ć©xito" + +#: ../../include/class/ModuleTemplates.class.php:402 +msgid "Error creating template" +msgstr "Error al crear plantilla" + +#: ../../include/class/ModuleTemplates.class.php:410 +#, php-format +msgid "Template %s successfully deleted" +msgstr "Plantilla %s eliminada con Ć©xito" + +#: ../../include/class/ModuleTemplates.class.php:412 +#, php-format +msgid "Error deleting %s template" +msgstr "Error al eliminar la plantilla %s" + +#: ../../include/class/ModuleTemplates.class.php:559 +msgid "Module successfully deleted" +msgstr "MĆ³dulo eliminado con Ć©xito" + +#: ../../include/class/ModuleTemplates.class.php:561 +msgid "Error deleting module" +msgstr "Error al eliminar el mĆ³dulo" + +#: ../../include/class/ModuleTemplates.class.php:572 +msgid "Block successfully deleted" +msgstr "Bloque eliminado con Ć©xito" + +#: ../../include/class/ModuleTemplates.class.php:574 +msgid "Error deleting block" +msgstr "Error al eliminar bloque" + +#: ../../include/class/ModuleTemplates.class.php:586 +msgid "All templates deleted" +msgstr "Eliminadas todas las plantillas" + +#: ../../include/class/ModuleTemplates.class.php:588 +msgid "Error deleting all templates" +msgstr "Error al eliminar todas las plantillas" + +#: ../../include/class/ModuleTemplates.class.php:597 +msgid "Selected templates deleted" +msgstr "Eliminadas las plantillas seleccionadas" + +#: ../../include/class/ModuleTemplates.class.php:599 +msgid "Error deleting selected templates" +msgstr "Error al eliminar las plantillas seleccionadas" + +#: ../../include/class/ModuleTemplates.class.php:611 +msgid "Something gone wrong. Please, try again" +msgstr "Ha habido un error. intĆ©ntelo de nuevo." + +#: ../../include/class/ModuleTemplates.class.php:662 +msgid "The modules is already added" +msgstr "El mĆ³dulo ya se ha aƱadido" + +#: ../../include/class/ModuleTemplates.class.php:1111 +#: ../../include/class/ModuleTemplates.class.php:1383 +msgid "Add components" +msgstr "AƱadir componentes" + +#: ../../include/class/ModuleTemplates.class.php:1163 +#: ../../include/class/ModuleTemplates.class.php:1298 +msgid "No module blocks for this profile" +msgstr "No hay bloques de mĆ³dulos para este perfil" + +#: ../../include/class/ModuleTemplates.class.php:1186 +msgid "Delete this block" +msgstr "Eliminar este bloque" + +#: ../../include/class/ModuleTemplates.class.php:1188 +msgid "Do you want delete this block?" +msgstr "ĀæDesea eliminar este bloque?" + +#: ../../include/class/ModuleTemplates.class.php:1283 +msgid "Delete this module" +msgstr "Eliminar este mĆ³dulo" + +#: ../../include/class/ModuleTemplates.class.php:1285 +msgid "Do you want delete this module?" +msgstr "ĀæDesea eliminar este mĆ³dulo?" + +#: ../../include/class/ModuleTemplates.class.php:1476 +msgid "Do you want delete all templates?" +msgstr "ĀæDesea eliminar todas las plantillas?" + +#: ../../include/class/ModuleTemplates.class.php:1479 +msgid "Do you want delete the selected templates?" +msgstr "ĀæDesea eliminar las plantillas seleccionadas?" + #: ../../include/class/ConsoleSupervisor.php:839 msgid "Limited mode." msgstr "Modo limitado." @@ -17012,8 +44820,7 @@ msgstr "Licencia caducada" #: ../../include/class/ConsoleSupervisor.php:873 msgid "Your license has expired. Please, contact our sales department." -msgstr "" -"La licencia ha caducado. PĆ³ngase en contacto con el departamento comercial." +msgstr "La licencia ha caducado. PĆ³ngase en contacto con el departamento comercial." #: ../../include/class/ConsoleSupervisor.php:875 msgid "Support expired" @@ -17022,8 +44829,8 @@ msgstr "Soporte caducado" #: ../../include/class/ConsoleSupervisor.php:876 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." +"Esta licencia ya no cuenta con soporte. PĆ³ngase en contacto con el departamento " +"comercial." #: ../../include/class/ConsoleSupervisor.php:957 msgid "Attachment directory is not writable" @@ -17031,11 +44838,9 @@ msgstr "No puede escribir en el directorio de adjuntos" #: ../../include/class/ConsoleSupervisor.php:959 #, php-format -msgid "" -"Directory %s is not writable. Please, configure corresponding permissions." +msgid "Directory %s is not writable. Please, configure corresponding permissions." msgstr "" -"No se ha podido escribir en el directorio de %s. Configure los permisos " -"pertinentes." +"No se ha podido escribir en el directorio de %s. Configure los permisos pertinentes." #: ../../include/class/ConsoleSupervisor.php:979 msgid "There are too many files in attachment directory" @@ -17044,11 +44849,10 @@ msgstr "Ha superado el lĆ­mite de archivos en el directorio de adjuntos" #: ../../include/class/ConsoleSupervisor.php:981 #, php-format msgid "" -"There are more than %d files in attachment, consider cleaning up attachment " -"directory manually." +"There are more than %d files in attachment, consider cleaning up attachment directory " +"manually." msgstr "" -"Hay mĆ”s de %d archivos en adjuntos, vacĆ­e el directorio de adjuntos " -"manualmente." +"Hay mĆ”s de %d archivos en adjuntos, vacĆ­e el directorio de adjuntos manualmente." #: ../../include/class/ConsoleSupervisor.php:1013 msgid "Remote configuration directory is not readable" @@ -17056,9 +44860,7 @@ msgstr "No se ha podido leer el directorio de configuraciĆ³n remota" #: ../../include/class/ConsoleSupervisor.php:1015 #, php-format -msgid "" -"Remote configuration directory %s is not readable. Please, adjust " -"configuration." +msgid "Remote configuration directory %s is not readable. Please, adjust configuration." msgstr "" "No se ha podido leer el directorio de configuraciĆ³n remota de %s. Modifique la " "configuraciĆ³n." @@ -17069,12 +44871,10 @@ msgstr "No se ha podido escribir en el directorio de configuraciĆ³n remota" #: ../../include/class/ConsoleSupervisor.php:1034 #, php-format -msgid "" -"Remote configuration directory %s is not writable. Please, adjust " -"configuration." +msgid "Remote configuration directory %s is not writable. Please, adjust configuration." msgstr "" -"No se ha podido escribir en el directorio de configuraciĆ³n remota de %s. " -"Modifique la configuraciĆ³n." +"No se ha podido escribir en el directorio de configuraciĆ³n remota de %s. Modifique la " +"configuraciĆ³n." #: ../../include/class/ConsoleSupervisor.php:1050 msgid "Remote collections directory is not writable" @@ -17084,8 +44884,8 @@ msgstr "No se ha podido escribir en en el directorio de colecciones remotas." #, 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." +"No se ha podido escribir en en el directorio de colecciones remotas de %s. Modifique " +"la configuraciĆ³n." #: ../../include/class/ConsoleSupervisor.php:1068 msgid "Remote md5 directory is not writable" @@ -17095,8 +44895,7 @@ msgstr "No se ha podido escribir en el directorio remoto md5" #, 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." +"No se ha podido escribir en el directorio MD5 de %s. Modifique la configuraciĆ³n." #: ../../include/class/ConsoleSupervisor.php:1098 msgid "There are too much files in spool" @@ -17104,8 +44903,7 @@ msgstr "Demasiados archivos en spool" #: ../../include/class/ConsoleSupervisor.php:1100 #, php-format -msgid "" -"There are more than %d files in %s. Consider checking DataServer performance" +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:1121 @@ -17128,10 +44926,8 @@ msgstr "No hay servidores disponibles." #: ../../include/class/ConsoleSupervisor.php:1279 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." +"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:1324 #, php-format @@ -17151,11 +44947,11 @@ msgstr "%s (%s) no estĆ” en ejecuciĆ³n." #: ../../include/class/ConsoleSupervisor.php:1342 #, php-format msgid "" -"%s (%s) is not running. Please, check configuration file or remove this server " -"from server list." +"%s (%s) is not running. Please, check configuration file or remove this server from " +"server list." msgstr "" -"%s (%s) no estĆ” en ejecuciĆ³n. Compruebe el archivo de configuraciĆ³n o elimine " -"este servidor de la lista de servidores." +"%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:1394 msgid "No master servers found." @@ -17163,25 +44959,22 @@ msgstr "No se han encontrado servidores maestros." #: ../../include/class/ConsoleSupervisor.php:1395 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." +"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:1450 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" +"El modo seguro PHP estĆ” habilitado. Algunas funcionalidades podrĆ­an no funcionar " +"correctamente" #: ../../include/class/ConsoleSupervisor.php:1451 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)" +"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 "" -"Para deshabilitarlo, dirĆ­jase al archivo de configuraciĆ³n PHP (php.ini) y " -"escriba safe_mode = Off (No olvide reiniciar el proceso de apache despuĆ©s de " -"los cambios)" +"Para deshabilitarlo, dirĆ­jase al archivo de configuraciĆ³n PHP (php.ini) y escriba " +"safe_mode = Off (No olvide reiniciar el proceso de apache despuĆ©s de los cambios)" #: ../../include/class/ConsoleSupervisor.php:1469 #, php-format @@ -17203,8 +44996,8 @@ msgid "" "Please, change it on your PHP configuration file (php.ini) or contact with " "administrator (Do not forget to restart Apache process after)" 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)" +"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:1493 #: ../../include/class/ConsoleSupervisor.php:1517 @@ -17229,8 +45022,8 @@ msgid "" "Please, change it on your PHP configuration file (php.ini) or contact with " "administrator (Dont forget restart apache process after changes)" 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)." +"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:1522 #: ../../include/class/ConsoleSupervisor.php:1551 @@ -17244,8 +45037,8 @@ msgid "" "Please, change it on your PHP configuration file (php.ini) or contact with " "administrator" msgstr "" -"Por favor, cĆ”mbialo en el archivo de configuraciĆ³n de PHP (php.ini) o contacta " -"con un administrador." +"Por favor, cĆ”mbialo en el archivo de configuraciĆ³n de PHP (php.ini) o contacta con un " +"administrador." #: ../../include/class/ConsoleSupervisor.php:1569 msgid "Problems with disable_functions in php.ini" @@ -17256,8 +45049,8 @@ msgid "" "The variable disable_functions contains functions system() or exec() in PHP " "configuration file (php.ini)" msgstr "" -"La variable disable_funtionc contiene las funciones system() o exec() en el " -"archivo de configuraciĆ³n PHP (php.ini)" +"La variable disable_funtionc contiene las funciones system() o exec() en el archivo " +"de configuraciĆ³n PHP (php.ini)" #: ../../include/class/ConsoleSupervisor.php:1587 msgid "PhantomJS is not installed" @@ -17265,27 +45058,49 @@ msgstr "PhantomJS no estĆ” instalado" #: ../../include/class/ConsoleSupervisor.php:1588 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:" +"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:" 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 PhantomJS. " +"Para ello siga estos pasos:" #: ../../include/class/ConsoleSupervisor.php:1605 msgid "PHP UPDATE REQUIRED" msgstr "PHP DEBE ACTUALIZARSE" +#: ../../include/class/ConsoleSupervisor.php:1606 ../../general/php7_message.php:30 +msgid "" +"For a correct operation of PandoraFMS, PHP must be updated to version 7.0 or higher." +msgstr "" +"Para que Pandora FMS funcione correctamente, PHP debe estar actualizado a la versiĆ³n " +"7.0 o superior." + +#: ../../include/class/ConsoleSupervisor.php:1606 ../../general/php7_message.php:31 +msgid "Otherwise, functionalities will be lost." +msgstr "Si no, ciertas funcionalidades no estarĆ”n disponibles." + +#: ../../include/class/ConsoleSupervisor.php:1606 ../../general/php7_message.php:33 +msgid "Report download in PDF format" +msgstr "Descarga de informes en formato PDF" + +#: ../../include/class/ConsoleSupervisor.php:1606 ../../general/php7_message.php:34 +msgid "Emails Sending" +msgstr "EnvĆ­o de emails" + +#: ../../include/class/ConsoleSupervisor.php:1606 ../../general/php7_message.php:35 +msgid "Metaconsole Collections" +msgstr "Colecciones de la metaconsola" + #: ../../include/class/ConsoleSupervisor.php:1672 msgid "Historical database not available" msgstr "Base de datos histĆ³rica no disponible" #: ../../include/class/ConsoleSupervisor.php:1673 msgid "" -"Historical database is enabled, though not accessible with the current " -"configuration." +"Historical database is enabled, though not accessible with the current configuration." msgstr "" -"La base de datos histĆ³rica estĆ” habilitada pero no accesible con la " -"configuraciĆ³n actual." +"La base de datos histĆ³rica estĆ” habilitada pero no accesible con la configuraciĆ³n " +"actual." #: ../../include/class/ConsoleSupervisor.php:1716 msgid "Database maintenance problem" @@ -17294,13 +45109,12 @@ msgstr "Problema de mantenimiento de la base de datos" #: ../../include/class/ConsoleSupervisor.php:1718 #, php-format msgid "" -"Your database hasn't been through maintenance for 48hrs. Please, check " -"documentation on how to perform this maintenance process on %s and enable it " -"as soon as possible." +"Your database hasn't been through maintenance for 48hrs. Please, check documentation " +"on how to perform this maintenance process on %s and enable it as soon as possible." msgstr "" -"La base de datos no ha pasado por el proceso de mantenimiento durante 48h. " -"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." +"La base de datos no ha pasado por el proceso de mantenimiento durante 48h. 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:1778 msgid "Historical database maintenance problem." @@ -17309,13 +45123,13 @@ msgstr "Problema de mantenimiento de la base de datos histĆ³rica." #: ../../include/class/ConsoleSupervisor.php:1780 #, php-format msgid "" -"Your historical database hasn't been through maintenance for 48hrs. Please, " -"check documentation on how to perform this maintenance process on %s and " -"enable it as soon as possible." +"Your historical database hasn't been through maintenance for 48hrs. Please, check " +"documentation on how to perform this maintenance process on %s and enable it as soon " +"as possible." msgstr "" -"La base de datos no ha pasado por el proceso de mantenimiento durante 48h. " -"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." +"La base de datos no ha pasado por el proceso de mantenimiento durante 48h. 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:1818 msgid "Historical database MR mismatch" @@ -17323,11 +45137,11 @@ msgstr "Error de coincidencia de la base de datos histĆ³rica MR" #: ../../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." +"Your historical database is not using the same schema as the main DB. This could " +"produce anomalies while storing historical data." 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." +"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:1859 msgid "Log collector cannot connect to ElasticSearch" @@ -17344,8 +45158,7 @@ msgstr "La base de datos de la Metaconsola no estĆ” disponible." #: ../../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." +"No puede conectar con la base de datos de la Metaconsola con la configuraciĆ³n actual." #: ../../include/class/ConsoleSupervisor.php:1958 msgid "Scheduled downtime running." @@ -17356,8 +45169,8 @@ msgid "" "A scheduled downtime is running. Some monitoring data won't be available while " "downtime is taking place." msgstr "" -"Se estĆ” ejecutando una parada planificada. Algunos de los datos de " -"monitorizaciĆ³n no estarĆ”n disponibles durante dicha parada." +"Se estĆ” ejecutando una parada planificada. Algunos de los datos de monitorizaciĆ³n no " +"estarĆ”n disponibles durante dicha parada." #: ../../include/class/ConsoleSupervisor.php:2115 msgid "Downtime scheduled soon." @@ -17366,8 +45179,8 @@ msgstr "Parada planificada prĆ³ximamente." #: ../../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." +"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 "" "Se ejecutarĆ” una parada planificada de %s a %s. Algunos de los datos de " "monitorizaciĆ³n no estarĆ”n disponibles durante dicha parada." @@ -17386,10 +45199,8 @@ msgstr "No se ha cambiado la contraseƱa por defecto del usuario \"Admin\"" #: ../../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." +"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:2216 msgid "Default font doesn't exist" @@ -17397,11 +45208,11 @@ msgstr "No existe una fuente por defecto" #: ../../include/class/ConsoleSupervisor.php:2217 msgid "" -"Your defined font doesn't exist or is not defined. Please, check font " -"parameters in your config" +"Your defined font doesn't exist or is not defined. Please, check font parameters in " +"your config" msgstr "" -"La fuente seleccionada no existe o no estĆ” definida. Compruebe los parĆ”metros " -"de fuente en la configuraciĆ³n" +"La fuente seleccionada no existe o no estĆ” definida. Compruebe los parĆ”metros de " +"fuente en la configuraciĆ³n" #: ../../include/class/ConsoleSupervisor.php:2240 msgid "Developer mode is enabled" @@ -17410,13 +45221,13 @@ msgstr "El modo Ā«desarrolladorĀ» estĆ” activado." #: ../../include/class/ConsoleSupervisor.php:2242 #, php-format msgid "" -"Your %s has the \"develop_bypass\" mode enabled. This is a developer mode and " -"should be disabled in a production environment. This value is located in the " -"main index.php file" +"Your %s has the \"develop_bypass\" mode enabled. This is a developer mode and should " +"be disabled in a production environment. This value is located in the main index.php " +"file" msgstr "" -"%s tiene el modo \"develop_bypass\" habilitado. Este es un modo de desarrollo " -"y debe estar desactivado en un entorno de producciĆ³n. El valor se encuentra en " -"el archivo principal index.php" +"%s tiene el modo \"develop_bypass\" habilitado. Este es un modo de desarrollo y debe " +"estar desactivado en un entorno de producciĆ³n. El valor se encuentra en el archivo " +"principal index.php" #: ../../include/class/ConsoleSupervisor.php:2266 msgid "Event storm protection is enabled." @@ -17424,11 +45235,11 @@ msgstr "La protecciĆ³n de tormenta de eventos estĆ” habilitada." #: ../../include/class/ConsoleSupervisor.php:2267 msgid "" -"Some events may get lost while this mode is enabled. The server must be " -"restarted after altering this setting." +"Some events may get lost while this mode is enabled. The server must be restarted " +"after altering this setting." msgstr "" -"PodrĆ­an perderse algunos elementos al habilitar este modo. Reinicie el " -"servidor despuĆ©s de las modificaciones" +"PodrĆ­an perderse algunos elementos al habilitar este modo. Reinicie el servidor " +"despuĆ©s de las modificaciones" #: ../../include/class/ConsoleSupervisor.php:2293 msgid "Failed to retrieve updates, please configure utility" @@ -17441,8 +45252,7 @@ msgstr "Nueva actualizaciĆ³n de la consola %s" #: ../../include/class/ConsoleSupervisor.php:2314 msgid "There is a new update available. Please.About minor release update." +"There is one or more minor releases available. .About minor release update." msgstr "" -"Hay una o mĆ”s releases menores disponibles, .Sobre la actualizaciĆ³n menor." - -#: ../../include/class/ConsoleSupervisor.php:2376 -#: ../../enterprise/include/functions_tasklist.php:56 -msgid "DiscoveryConsoleTasks is not running properly" -msgstr "DiscoveryConsoleTasks no funciona adecuadamente" +"Hay una o mĆ”s releases menores disponibles, .Sobre la actualizaciĆ³n menor." #: ../../include/class/ConsoleSupervisor.php:2378 msgid "Discovery relies on an appropriate cron setup." msgstr "Discovery depende de la configuraciĆ³n cron adecuada" -#: ../../include/class/ConsoleSupervisor.php:2379 -#: ../../enterprise/include/functions_tasklist.php:59 -msgid "Please, add the following line to your crontab file:" -msgstr "AƱada la siguiente lĆ­nea a su archivo crontab:" - -#: ../../include/class/ConsoleSupervisor.php:2392 -#: ../../enterprise/include/functions_tasklist.php:74 -msgid "Last execution" -msgstr "ƚltima ejecuciĆ³n" - #: ../../include/class/ConsoleSupervisor.php:2394 msgid "Please, make sure process is not locked." msgstr "AsegĆŗrese de que el proceso no estĆ” bloqueado." @@ -17484,12 +45279,12 @@ msgstr "AsegĆŗrese de que el proceso no estĆ” bloqueado." msgid "DiscoveryConsoleTasks is not configured." msgstr "DiscoveryConsoleTasks no estĆ” configurado." -#: ../../include/class/ConsoleSupervisor.php:2498 +#: ../../include/class/ConsoleSupervisor.php:2496 #, php-format msgid "%s version misaligned with Console" msgstr "La versiĆ³n de %s no estĆ” alineada con la consola" -#: ../../include/class/ConsoleSupervisor.php:2502 +#: ../../include/class/ConsoleSupervisor.php:2500 #, php-format msgid "" "Server %s and this console have different versions. This might cause several " @@ -17498,102 +45293,339 @@ msgstr "" "El servidor de %s y la consola tienen diferentes versiones. Esto podrĆ­a causar " "diversos fallos. Actualice el servidor." -#: ../../include/class/ConsoleSupervisor.php:2565 +#: ../../include/class/ConsoleSupervisor.php:2563 msgid "AllowOverride is disabled" msgstr "AllowOverride estĆ” deshabilitado" -#: ../../include/class/ConsoleSupervisor.php:2611 +#: ../../include/class/ConsoleSupervisor.php:2609 msgid "Desynchronized operation on the node " msgstr "OperaciĆ³n desincronizada en el nodo " -#: ../../include/class/ConsoleSupervisor.php:2634 +#: ../../include/class/ConsoleSupervisor.php:2632 msgid "Pandora FMS console log file changed location" -msgstr "" -"El archivo de logs de la consola de Pandora FMS ha cambiado de localizaciĆ³n" +msgstr "El archivo de logs de la consola de Pandora FMS ha cambiado de localizaciĆ³n" -#: ../../include/class/ConsoleSupervisor.php:2638 +#: ../../include/class/ConsoleSupervisor.php:2636 #, php-format msgid "" -"Pandora FMS console log file has been moved to new location %s/log. Currently " -"you have an outdated and inoperative version of this file at %s. Please, " -"consider deleting it." +"Pandora FMS console log file has been moved to new location %s/log. Currently you " +"have an outdated and inoperative version of this file at %s. Please, consider " +"deleting it." msgstr "" -"El archivo de logs de la consola de Pandora FMS se ha movido a una nueva " -"localizaciĆ³n %s/log. Actualmente tiene una versiĆ³n operativa y obsoleta de " -"este archivo en %s. Piense en eliminarlo." +"El archivo de logs de la consola de Pandora FMS se ha movido a una nueva localizaciĆ³n " +"%s/log. Actualmente tiene una versiĆ³n operativa y obsoleta de este archivo en %s. " +"Piense en eliminarlo." -#: ../../include/class/ConsoleSupervisor.php:2673 +#: ../../include/class/ConsoleSupervisor.php:2671 msgid "Pandora FMS audit log file changed location" -msgstr "" -"El archivo de log de auditorĆ­a de Pandora FMS ha cambiado de localizaciĆ³n" +msgstr "El archivo de log de auditorĆ­a de Pandora FMS ha cambiado de localizaciĆ³n" -#: ../../include/class/ConsoleSupervisor.php:2677 +#: ../../include/class/ConsoleSupervisor.php:2675 #, php-format msgid "" -"Pandora FMS audit log file has been moved to new location %s/log. Currently " -"you have an outdated and inoperative version of this file at %s. Please, " -"consider deleting it." +"Pandora FMS audit log file has been moved to new location %s/log. Currently you have " +"an outdated and inoperative version of this file at %s. Please, consider deleting it." msgstr "" -"El archivo de log de auditorĆ­a de Pandora FMS se ha movido a una nueva " -"localizaciĆ³n %s/log. Actualmente tiene una versiĆ³n obsoleta e inoperativa de " -"este archivo en %s. Piense en eliminarlo." +"El archivo de log de auditorĆ­a de Pandora FMS se ha movido a una nueva localizaciĆ³n " +"%s/log. Actualmente tiene una versiĆ³n obsoleta e inoperativa de este archivo en %s. " +"Piense en eliminarlo." -#: ../../include/class/ConsoleSupervisor.php:2763 +#: ../../include/class/ConsoleSupervisor.php:2761 #, 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:2765 +#: ../../include/class/ConsoleSupervisor.php:2763 #, 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." +"Synchronization queue lenght for node %s is %d items, this value should be 0 or lower " +"than %d, please check the queue status." 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." +"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:2818 +#: ../../include/class/ConsoleSupervisor.php:2816 #, php-format msgid "Node %s sync queue failed, " msgstr "Error en la cola de sincronizaciĆ³n de %s de nodo, " -#: ../../include/class/ConsoleSupervisor.php:2820 +#: ../../include/class/ConsoleSupervisor.php:2818 #, php-format msgid "" -"Node %s cannot process synchronization queue due %s, please check the queue " -"status." +"Node %s cannot process synchronization queue due %s, please check the queue status." msgstr "" -"Los %s nodos no pueden procesar la cola de sincronizaciĆ³n debido %s, verifique " -"el estado de la cola." +"Los %s nodos no pueden procesar la cola de sincronizaciĆ³n debido %s, verifique el " +"estado de la cola." -#: ../../include/class/HTML.class.php:419 -#: ../../include/class/CustomNetScan.class.php:314 -#: ../../include/class/CustomNetScan.class.php:422 -#: ../../enterprise/include/class/MicrosoftSQLServer.app.php:356 -#: ../../enterprise/include/class/Aws.cloud.php:1126 -#: ../../enterprise/include/class/MySQL.app.php:371 -#: ../../enterprise/include/class/Oracle.app.php:361 -#: ../../enterprise/include/class/DB2.app.php:354 -#: ../../enterprise/include/class/SAP.app.php:401 -#: ../../enterprise/include/class/Omnishell.class.php:630 -#: ../../enterprise/include/class/Omnishell.class.php:980 -#: ../../enterprise/include/class/Omnishell.class.php:1349 -#: ../../enterprise/include/class/VMware.app.php:455 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:285 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:339 -#: ../../enterprise/include/class/Azure.cloud.php:689 -#: ../../enterprise/include/class/Google.cloud.php:686 -#: ../../enterprise/include/lib/ClusterViewer/ClusterWizard.php:349 -#: ../../enterprise/include/lib/ClusterViewer/ClusterManager.php:752 -#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:469 -#: ../../godmode/modules/manage_network_components_form.php:367 -#: ../../godmode/reporting/graph_builder.main.php:308 -#: ../../godmode/wizards/HostDevices.class.php:648 -#: ../../godmode/wizards/HostDevices.class.php:747 -#: ../../godmode/wizards/Wizard.main.php:416 -#: ../../godmode/wizards/DiscoveryTaskList.class.php:181 -msgid "Go back" -msgstr "Volver" +#: ../../include/class/CalendarManager.class.php:161 +msgid "Alert calendar list" +msgstr "Lista de calendario de alertas" + +#: ../../include/class/CalendarManager.class.php:183 +msgid "Edit calendar" +msgstr "Editar calendario" + +#: ../../include/class/CalendarManager.class.php:197 +msgid "Alert special days" +msgstr "Alerta dĆ­as especiales" + +#: ../../include/class/CalendarManager.class.php:274 +#: ../../include/class/CalendarManager.class.php:491 +#, php-format +msgid "Calendar not found: %s" +msgstr "Calendario no encontrado: %s" + +#: ../../include/class/CalendarManager.class.php:302 +msgid "Calendar successfully deleted" +msgstr "Calendario eliminado correctamente" + +#: ../../include/class/CalendarManager.class.php:325 +#, php-format +msgid "Special day not found: %s" +msgstr "DĆ­a especial no encontrado: %s" + +#: ../../include/class/CalendarManager.class.php:337 +msgid "Special day successfully deleted" +msgstr "DĆ­a especial eliminado correctamente" + +#: ../../include/class/CalendarManager.class.php:410 +msgid "Skipped dates: " +msgstr "Fechas omitidas: " + +#: ../../include/class/CalendarManager.class.php:448 +msgid "Success to upload iCalendar" +msgstr "Ɖxito al cargar iCalendar" + +#: ../../include/class/CalendarManager.class.php:449 +msgid "Fail to upload iCalendar" +msgstr "Error al cargar iCalendar" + +#: ../../include/class/CalendarManager.class.php:554 +msgid "Failed saving calendar: name exists" +msgstr "Error al guardar el calendario: el nombre existe" + +#: ../../include/class/CalendarManager.class.php:563 +msgid "Failed saving calendar: " +msgstr "Error al guardar el calendario: " + +#: ../../include/class/CalendarManager.class.php:834 +#, php-format +msgid "Special days not found: %s" +msgstr "DĆ­as especiales no encontrados: %s" + +#: ../../include/class/CalendarManager.class.php:877 +#, php-format +msgid "SpecialDay not found: %s" +msgstr "SpecialDay no encontrado: %s" + +#: ../../include/class/CalendarManager.class.php:930 +msgid "Failed saving calendar: already exists" +msgstr "Error al guardar el calendario: ya existe" + +#: ../../include/class/CalendarManager.class.php:939 +msgid "Failed saving special day: " +msgstr "Fallo al guardar el dĆ­a especial:" + +#: ../../include/class/CalendarManager.class.php:1007 +#, php-format +msgid "Same as %s" +msgstr "Igual que %s" + +#: ../../include/class/CalendarManager.class.php:1009 +msgid "Templates not being fired" +msgstr "Plantillas que no se estĆ”n activando" + +#: ../../include/class/WelcomeWindow.class.php:157 +msgid "Welcome to" +msgstr "Bienvenido a" + +#: ../../include/class/WelcomeWindow.class.php:158 +msgid "Do not show anymore" +msgstr "No volver a mostrar" + +#: ../../include/class/WelcomeWindow.class.php:167 +msgid "Cancel Configuration Window" +msgstr "Cancelar ventana de configuraciĆ³n" + +#: ../../include/class/WelcomeWindow.class.php:172 +msgid "Are you sure you want to cancel this tutorial?" +msgstr "ĀæEstĆ” seguro de que desea borrar este tutorial?" + +#: ../../include/class/WelcomeWindow.class.php:428 +msgid "Please ensure mail configuration matches your needs" +msgstr "" +"AsegĆŗrese de que la configuraciĆ³n del correo electrĆ³nico se ajusta a sus necesidades" + +#: ../../include/class/WelcomeWindow.class.php:462 +msgid "Create an agent" +msgstr "Crear agente" + +#: ../../include/class/WelcomeWindow.class.php:487 +msgid "Create a module to check if an agent is online" +msgstr "Crear mĆ³dulo para saber si el agente estĆ” en lĆ­nea" + +#: ../../include/class/WelcomeWindow.class.php:512 +msgid "Be warned if something is wrong, create an alert on the module" +msgstr "MantĆ©ngase informado de cualquier problema, cree una alerta para el mĆ³dulo" + +#: ../../include/class/WelcomeWindow.class.php:537 +msgid "Discover hosts and devices in your network" +msgstr "Explorar hosts y dispositivos en la red" + +#: ../../include/class/WelcomeWindow.class.php:565 +msgid "If something is not working as expected, look for this icon and report!" +msgstr "Si algo no funciona como deberĆ­a, !busque este icono e informe del problemaĀ”" + +#: ../../include/class/WebServerModuleDebug.class.php:143 +msgid "Performing query. Please wait." +msgstr "Consulta en proceso. Espere." + +#: ../../include/class/WebServerModuleDebug.class.php:174 +msgid "No results" +msgstr "No hay resultados" + +#: ../../include/class/WebServerModuleDebug.class.php:197 +msgid "Error performing execution" +msgstr "Error al llevar a cabo la ejecuciĆ³n" + +#: ../../include/class/WebServerModuleDebug.class.php:229 +msgid "Please, wait for a first execution of module" +msgstr "Espere a la primera ejecuciĆ³n del mĆ³dulo" + +#: ../../include/class/AgentWizard.class.php:456 +msgid "There are not defined Remote components for this performance." +msgstr "No hay componentes remotos definidos para esta acciĆ³n" + +#: ../../include/class/AgentWizard.class.php:575 +msgid "SNMP Walk" +msgstr "ExploraciĆ³n SNMP" + +#: ../../include/class/AgentWizard.class.php:580 +msgid "WMI Explorer" +msgstr "Buscador WMI" + +#: ../../include/class/AgentWizard.class.php:654 +msgid "namespace" +msgstr "namespace" + +#: ../../include/class/AgentWizard.class.php:824 +msgid "User authentication" +msgstr "AutenticaciĆ³n de usuario" + +#: ../../include/class/AgentWizard.class.php:853 +msgid "Password authentication" +msgstr "ContraseƱa de autenticaciĆ³n" + +#: ../../include/class/AgentWizard.class.php:1006 +#, php-format +msgid "The PEN (%s) is not registered." +msgstr "PEN (%s) no estĆ” registrado." + +#: ../../include/class/AgentWizard.class.php:1073 +msgid "The SNMP Walk does not return anything with the received arguments." +msgstr "La pasarela SNMP no devuelve nada con los argumentos recibidos." + +#: ../../include/class/AgentWizard.class.php:1133 +#, php-format +msgid "The target host response with an error: %s" +msgstr "Respuesta del host objetivo con un error: %s" + +#: ../../include/class/AgentWizard.class.php:1183 +msgid "No selected modules" +msgstr "No hay mĆ³dulos seleccionados" + +#: ../../include/class/AgentWizard.class.php:1220 +msgid "Module exists in policy" +msgstr "El mĆ³dulo existe en la polĆ­tica" + +#: ../../include/class/AgentWizard.class.php:1230 +msgid "Module exists in agent" +msgstr "El mĆ³dulo existe en el agente" + +#: ../../include/class/AgentWizard.class.php:1237 +msgid "Module with the same name in the module creation list" +msgstr "MĆ³dulo con el mismo nombre en la lista de creaciĆ³n de mĆ³dulos" + +#: ../../include/class/AgentWizard.class.php:1640 +#, php-format +msgid "Module \"%s\" exits in this policy" +msgstr "El mĆ³dulo \"%s\" sale de esta polĆ­tica" + +#: ../../include/class/AgentWizard.class.php:1742 +#: ../../include/class/AgentWizard.class.php:2170 +#, php-format +msgid "Module %s module_exec not configuration" +msgstr "MĆ³dulo %s module_exec no configurado" + +#: ../../include/class/AgentWizard.class.php:1898 +#: ../../include/class/AgentWizard.class.php:2345 +#, php-format +msgid "Module %s satellite execution not configuration" +msgstr "No se ha configurado la ejecuciĆ³n del mĆ³dulo %s del satĆ©lite" + +#: ../../include/class/AgentWizard.class.php:1990 +#, php-format +msgid "Module \"%s\" problems insert in bbdd" +msgstr "El mĆ³dulo \"%s\" no se ha podido insertar en la base de datos" + +#: ../../include/class/AgentWizard.class.php:1998 +#: ../../include/class/AgentWizard.class.php:2428 +msgid "Modules created" +msgstr "MĆ³dulos creados" + +#: ../../include/class/AgentWizard.class.php:2028 +#, php-format +msgid "Module \"%s\" exists in this agent" +msgstr "El mĆ³dulo \"%s\" sale de este agente" + +#: ../../include/class/AgentWizard.class.php:2619 +msgid "Select all filtered interfaces" +msgstr "Seleccione todas las interfaces filtradas" + +#: ../../include/class/AgentWizard.class.php:2642 +msgid "OperStatus UP" +msgstr "OperStatus UP" + +#: ../../include/class/AgentWizard.class.php:2653 +msgid "AdminStatus UP" +msgstr "AdminStatus UP" + +#: ../../include/class/AgentWizard.class.php:3046 +#: ../../include/class/AgentWizard.class.php:3350 +msgid "No information could be retrieved." +msgstr "No se ha podido obtener informaciĆ³n" + +#: ../../include/class/AgentWizard.class.php:3640 +msgid "Create modules" +msgstr "Crear mĆ³dulos" + +#: ../../include/class/AgentWizard.class.php:3949 +msgid "Add general monitoring for all selected interfaces" +msgstr "AƱada monitorizaciĆ³n general para todas las interfaces seleccionadas" + +#: ../../include/class/AgentWizard.class.php:3970 +#: ../../include/class/AgentWizard.class.php:3971 +#: ../../include/class/AgentWizard.class.php:3990 +#: ../../include/class/AgentWizard.class.php:3991 +msgid "Modules selected" +msgstr "MĆ³dulos seleccionados" + +#: ../../include/class/AgentWizard.class.php:4059 +msgid "Module info" +msgstr "InformaciĆ³n del mĆ³dulo" + +#: ../../include/class/AgentWizard.class.php:4088 +msgid "Current value" +msgstr "Valor actual" + +#: ../../include/class/AgentWizard.class.php:5575 +#, php-format +msgid "The operation '%s' is not permitted. Review for remote components." +msgstr "La operaciĆ³n '%s' no estĆ” permitida. Revise los componentes remotos." + +#: ../../include/class/AgentWizard.class.php:5989 +msgid "Modules about to be created" +msgstr "MĆ³dulos a punto de ser creados" #: ../../include/class/ExternalTools.class.php:185 msgid "Changes successfully saved." @@ -17603,32 +45635,12 @@ msgstr "Cambios guardados correctamente." msgid "Changes not saved." msgstr "Cambios no guardados." -#: ../../include/class/ExternalTools.class.php:213 -#: ../../include/functions_config.php:263 -msgid "Sound for Alert fired" -msgstr "Sonido para alertas disparadas" - #: ../../include/class/ExternalTools.class.php:233 #: ../../include/class/ExternalTools.class.php:263 #: ../../include/class/ExternalTools.class.php:293 msgid "Play sound" msgstr "Reproducir sonido" -#: ../../include/class/ExternalTools.class.php:243 -#: ../../include/functions_config.php:267 -msgid "Sound for Monitor critical" -msgstr "Sonido para monitores en estado crĆ­tico" - -#: ../../include/class/ExternalTools.class.php:273 -#: ../../include/functions_config.php:271 -msgid "Sound for Monitor warning" -msgstr "Sonido para monitores en estado de advertencia" - -#: ../../include/class/ExternalTools.class.php:303 -#: ../../include/functions_config.php:1251 -msgid "Custom graphviz directory" -msgstr "Directorio personalizado graphviz" - #: ../../include/class/ExternalTools.class.php:313 msgid "Traceroute path" msgstr "Ruta Traceroute" @@ -17691,41 +45703,6 @@ msgstr "Escaneo bĆ”sico de puertos TCP" msgid "DiG/Whois Lookup" msgstr "BĆŗsqueda DiG/Whois" -#: ../../include/class/ExternalTools.class.php:530 -#: ../../include/functions_menu.php:597 -#: ../../include/functions_reporting_html.php:2208 -#: ../../include/functions_reporting_html.php:4692 -#: ../../enterprise/include/functions_reporting_csv.php:1014 -#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:155 -#: ../../enterprise/include/class/CommandCenter.class.php:451 -#: ../../enterprise/meta/include/functions_autoprovision.php:641 -#: ../../enterprise/meta/advanced/policymanager.queue.php:214 -#: ../../enterprise/meta/advanced/policymanager.queue.php:259 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3740 -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:231 -#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:339 -#: ../../enterprise/godmode/policies/policy_queue.php:605 -#: ../../enterprise/godmode/policies/policy_queue.php:649 -#: ../../extensions/api_checker.php:156 ../../godmode/extensions.php:148 -#: ../../godmode/reporting/reporting_builder.item_editor.php:4332 -msgid "Operation" -msgstr "OperaciĆ³n" - -#: ../../include/class/ExternalTools.class.php:537 -#: ../../enterprise/views/ncm/agent/details.php:256 -#: ../../enterprise/views/ncm/agent/manage.php:135 -#: ../../enterprise/views/ncm/agent/manage.php:148 -#: ../../enterprise/views/ncm/agent/manage.php:181 -#: ../../enterprise/views/ncm/agent/manage.php:274 -#: ../../enterprise/views/ncm/agent/manage.php:309 -#: ../../enterprise/views/ncm/snippets/edit.php:138 -#: ../../enterprise/views/ncm/templates/edit.php:347 -#: ../../enterprise/godmode/massive/massive_edit_service_elements.php:230 -#: ../../enterprise/godmode/massive/massive_delete_service_elements.php:188 -#: ../../enterprise/godmode/massive/massive_add_service_elements.php:329 -msgid "Please select" -msgstr "Seleccione" - #: ../../include/class/ExternalTools.class.php:542 msgid "IP Adress" msgstr "DirecciĆ³n IP" @@ -17734,12 +45711,6 @@ msgstr "DirecciĆ³n IP" msgid "SNMP Version" msgstr "VersiĆ³n SNMP" -#: ../../include/class/ExternalTools.class.php:570 -#: ../../enterprise/meta/include/functions_wizard_meta.php:967 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1484 -msgid "SNMP Community" -msgstr "Comunidad SNMP" - #: ../../include/class/ExternalTools.class.php:707 msgid "Command not response" msgstr "Comando no responde" @@ -17750,16 +45721,8 @@ msgstr "El comando fallĆ³ y obtuvo el cĆ³digo de retorno:" #: ../../include/class/ExternalTools.class.php:726 msgid "" -"Something went wrong while perform the execution. Please check the " -"configuration." -msgstr "" -"Ha habido un error al llevar a cabo la ejecuciĆ³n. Revise la configuraciĆ³n." - -#: ../../include/class/ExternalTools.class.php:750 -#: ../../godmode/agentes/configurar_agente.php:886 -#: ../../godmode/agentes/configurar_agente.php:1037 -msgid "The ip or dns name entered cannot be resolved" -msgstr "La IP o nombre del DNS no se puede resolver" +"Something went wrong while perform the execution. Please check the configuration." +msgstr "Ha habido un error al llevar a cabo la ejecuciĆ³n. Revise la configuraciĆ³n." #: ../../include/class/ExternalTools.class.php:763 msgid "SNMP information for " @@ -17831,927 +45794,962 @@ msgstr "Llevando a cabo ejecuciĆ³n %s en %s" msgid "Performing %s execution" msgstr "Llevando a cabo ejecuciĆ³n %s" -#: ../../include/class/ConfigPEN.class.php:337 -#: ../../include/class/ConfigPEN.class.php:345 ../../godmode/menu.php:151 -msgid "Private Enterprise Numbers" -msgstr "NĆŗmeros privados de empresa" +#: ../../include/functions_reporting.php:366 +msgid " agents" +msgstr " agentes" -#: ../../include/class/ConfigPEN.class.php:435 -#: ../../include/class/ConfigPEN.class.php:598 -msgid "Manufacturer" -msgstr "Fabricante" +#: ../../include/functions_reporting.php:376 +msgid " modules" +msgstr " mĆ³dulos" -#: ../../include/class/ConfigPEN.class.php:483 -msgid "PEN is required" -msgstr "Se requiere PEN" +#: ../../include/functions_reporting.php:1512 +msgid "Top N" +msgstr "Top N" -#: ../../include/class/ConfigPEN.class.php:509 -msgid "PEN is required." -msgstr "Se requiere PEN" +#: ../../include/functions_reporting.php:1698 +msgid "Insuficient data" +msgstr "Datos insuficientes" -#: ../../include/class/ConfigPEN.class.php:513 -msgid "Manufacturer is required" -msgstr "Se requiere fabricante" +#: ../../include/functions_reporting.php:2011 +msgid "Event Report Group" +msgstr "Informe de eventos del grupo" -#: ../../include/class/ConfigPEN.class.php:530 -msgid "This PEN definition does not exist" -msgstr "Esta definiciĆ³n de PEN no existe" +#: ../../include/functions_reporting.php:2059 +msgid "Exclude " +msgstr "Excluir " -#: ../../include/class/ConfigPEN.class.php:544 -msgid "created" -msgstr "creado" +#: ../../include/functions_reporting.php:2237 ../../include/functions_reporting.php:4076 +#: ../../include/functions_reporting.php:10745 ../../include/functions_events.php:2381 +#: ../../include/functions_events.php:2984 ../../include/functions_events.php:3265 +#: ../../include/functions_events.php:3274 ../../include/functions_events.php:3281 +#: ../../include/functions_events.php:3288 ../../operation/snmpconsole/snmp_view.php:588 +#: ../../operation/snmpconsole/snmp_view.php:941 +#: ../../operation/snmpconsole/snmp_view.php:1234 +msgid "Validated" +msgstr "Validado" -#: ../../include/class/ConfigPEN.class.php:550 -msgid "This PEN definition already exists" -msgstr "Esta definiciĆ³n PEN ya existe" +#: ../../include/functions_reporting.php:2238 ../../include/functions_reporting.php:4077 +#: ../../include/functions_reporting.php:10746 +#: ../../operation/snmpconsole/snmp_view.php:587 +#: ../../operation/snmpconsole/snmp_view.php:931 +#: ../../operation/snmpconsole/snmp_view.php:1243 +msgid "Not validated" +msgstr "Sin validar" -#: ../../include/class/ConfigPEN.class.php:564 -#: ../../enterprise/godmode/massive/massive_edit_service_elements.php:172 -msgid "updated" -msgstr "actualizado" +#: ../../include/functions_reporting.php:2305 +msgid "Event Report Module" +msgstr "Informe de eventos del mĆ³dulo" -#: ../../include/class/ConfigPEN.class.php:571 +#: ../../include/functions_reporting.php:2945 +msgid "Agent/Modules" +msgstr "Agentes/mĆ³dulos" + +#: ../../include/functions_reporting.php:3042 +msgid "Agent/Modules Status" +msgstr "Estado del agente/mĆ³dulos" + +#: ../../include/functions_reporting.php:3191 +msgid "Exception - Everything" +msgstr "ExcepciĆ³n - Todo" + +#: ../../include/functions_reporting.php:3197 #, php-format -msgid "Succesfully %s" -msgstr "Con Ć©xito %s" +msgid "Exception - Modules over or equal to %s" +msgstr "ExcepciĆ³n - MĆ³dulos por encima de o igual a %s" -#: ../../include/class/ConfigPEN.class.php:651 -msgid "Register manufacturer" -msgstr "Registrar fabricante" - -#: ../../include/class/ConfigPEN.class.php:667 -msgid "Are you sure you want to delete this PEN?" -msgstr "ĀæEstĆ” seguro de que quiere eliminar este PEN?" - -#: ../../include/class/ConfigPEN.class.php:694 -msgid "Register new manufacturer" -msgstr "Registrar nuevo fabricante" - -#: ../../include/class/CredentialStore.class.php:611 +#: ../../include/functions_reporting.php:3200 #, php-format -msgid "Not a valid JSON: %s" -msgstr "JSON no vĆ”lido: %s" +msgid "Modules over or equal to %s" +msgstr "MĆ³dulos por encima de o igual a %s" -#: ../../include/class/CredentialStore.class.php:621 -msgid "Key identifier is required" -msgstr "Se necesita identificador de clave" - -#: ../../include/class/CredentialStore.class.php:623 -msgid "You must select a group where store this key!" -msgstr "Seleccione un grupo donde guardar esta clave" - -#: ../../include/class/CredentialStore.class.php:625 -msgid "You must specify a product type" -msgstr "Especifique el tipo de producto" - -#: ../../include/class/CredentialStore.class.php:627 -msgid "You must specify a username and/or password" -msgstr "Especifique el nombre de usuario y/o la contraseƱa" - -#: ../../include/class/CredentialStore.class.php:629 -msgid "Identifier with forbidden characters. Check the documentation." -msgstr "Identificador con caracteres prohibidos. Consulte la documentaciĆ³n." - -#: ../../include/class/CredentialStore.class.php:742 -msgid "identifier cannot be empty" -msgstr "El identificador no puede estar vacĆ­o" - -#: ../../include/class/CredentialStore.class.php:747 -#: ../../enterprise/include/class/LogSource.class.php:567 -msgid "Not allowed" -msgstr "No permitido" - -#: ../../include/class/CredentialStore.class.php:786 -#: ../../enterprise/include/class/LogSource.class.php:611 -msgid "How to configure encryption." -msgstr "Como configurar el cifrado." - -#: ../../include/class/CredentialStore.class.php:785 +#: ../../include/functions_reporting.php:3205 #, php-format -msgid "" -"Database encryption is not enabled. Credentials will be stored in plaintext. %s" +msgid "Exception - Modules under or equal to %s" +msgstr "ExcepciĆ³n - MĆ³dulos por debajo o igual a %s" + +#: ../../include/functions_reporting.php:3208 +#, php-format +msgid "Modules under or equal to %s" +msgstr "MĆ³dulos por debajo de o igual a %s" + +#: ../../include/functions_reporting.php:3213 +#, php-format +msgid "Exception - Modules under %s" +msgstr "ExcepciĆ³n - MĆ³dulos por debajo de %s" + +#: ../../include/functions_reporting.php:3216 +#, php-format +msgid "Modules under %s" +msgstr "MĆ³dulos por debajo de %s" + +#: ../../include/functions_reporting.php:3221 +#, php-format +msgid "Exception - Modules over %s" +msgstr "ExcepciĆ³n - MĆ³dulos por encima de %s" + +#: ../../include/functions_reporting.php:3224 +#, php-format +msgid "Modules over %s" +msgstr "MĆ³dulos por encima de %s" + +#: ../../include/functions_reporting.php:3229 +#, php-format +msgid "Exception - Equal to %s" +msgstr "ExcepciĆ³n - Igual a %s" + +#: ../../include/functions_reporting.php:3232 +#, php-format +msgid "Equal to %s" +msgstr "Igual a %s" + +#: ../../include/functions_reporting.php:3237 +#, php-format +msgid "Exception - Not equal to %s" +msgstr "ExcepciĆ³n - No igual a %s" + +#: ../../include/functions_reporting.php:3240 +#, php-format +msgid "Not equal to %s" +msgstr "No igual a %s" + +#: ../../include/functions_reporting.php:3244 +msgid "Exception - Modules at normal status" +msgstr "ExcepciĆ³n - MĆ³dulos en estado normal" + +#: ../../include/functions_reporting.php:3245 +msgid "Modules at normal status" +msgstr "MĆ³dulos en estado normal" + +#: ../../include/functions_reporting.php:3249 +msgid "Exception - Modules at critical or warning status" +msgstr "ExcepciĆ³n - MĆ³dulos en estado crĆ­tico o de advertencia" + +#: ../../include/functions_reporting.php:3250 +msgid "Modules at critical or warning status" +msgstr "MĆ³dulos en estado crĆ­tico o de advertencia" + +#: ../../include/functions_reporting.php:3530 +msgid "There are no Modules under those conditions." +msgstr "No hay mĆ³dulos bajo esas condiciones" + +#: ../../include/functions_reporting.php:3534 +#, 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:3538 +#, 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:3542 +#, php-format +msgid "There are no Modules less %s." +msgstr "No hay mĆ³dulos por debajo de %s" + +#: ../../include/functions_reporting.php:3546 +#, php-format +msgid "There are no Modules over %s." +msgstr "No hay mĆ³dulos por encima de %s" + +#: ../../include/functions_reporting.php:3550 +#, php-format +msgid "There are no Modules equal to %s" +msgstr "No hay mĆ³dulos iguales a %s" + +#: ../../include/functions_reporting.php:3554 +#, php-format +msgid "There are no Modules not equal to %s" +msgstr "No hay mĆ³dulos no iguales a %s" + +#: ../../include/functions_reporting.php:3558 +msgid "There are no Modules normal status" +msgstr "No hay mĆ³dulos en estado normal" + +#: ../../include/functions_reporting.php:3562 +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:3913 +msgid "Event Report Agent" +msgstr "Informe de eventos de agentes" + +#: ../../include/functions_reporting.php:4264 +msgid "Database Serialized" +msgstr "Base de datos serializada" + +#: ../../include/functions_reporting.php:4460 +msgid "Last Value" +msgstr "ƚltimo valor" + +#: ../../include/functions_reporting.php:4784 +msgid "Network interfaces report" +msgstr "Informe de las interfaces de red" + +#: ../../include/functions_reporting.php:4878 +msgid "Custom render report" +msgstr "Informe de representaciĆ³n personalizado" + +#: ../../include/functions_reporting.php:4918 ../../include/functions_reporting.php:4944 +msgid "This query is insecure, it could apply unwanted modiffications on the schema" msgstr "" -"El cifrado de la base de datos no estĆ” disponible. Los credenciales se " -"guardarĆ”n en texto sin formato. %s" +"Esta consulta es insegura, podrĆ­a aplicar modificationes no deseadas en el esquema" -#: ../../include/class/CredentialStore.class.php:803 -#: ../../include/class/CredentialStore.class.php:911 -#: ../../enterprise/views/ncm/firmwares/list.php:74 -#: ../../enterprise/include/class/Omnishell.class.php:398 -msgid "Identifier" -msgstr "Identificador" +#: ../../include/functions_reporting.php:5175 +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/class/CredentialStore.class.php:804 -#: ../../include/class/CredentialStore.class.php:937 -msgid "Product" -msgstr "Producto" +#: ../../include/functions_reporting.php:5196 +msgid "bytes/s" +msgstr "bytes/s" -#: ../../include/class/CredentialStore.class.php:869 -msgid "Add key" -msgstr "AƱadir clave" +#: ../../include/functions_reporting.php:5403 ../../include/functions_reporting.php:5420 +#: ../../include/functions_reporting.php:5437 +msgid "Not triggered" +msgstr "No disparado" -#: ../../include/class/CredentialStore.class.php:946 -#: ../../enterprise/include/class/Aws.cloud.php:118 -msgid "Aws" -msgstr "Aws" +#: ../../include/functions_reporting.php:5863 +msgid "SQL Graph Vertical Bars" +msgstr "GrĆ”fico de barras verticales SQL" -#: ../../include/class/CredentialStore.class.php:947 -#: ../../enterprise/include/class/Azure.cloud.php:153 -msgid "Azure" -msgstr "Azure" +#: ../../include/functions_reporting.php:5867 +msgid "SQL Graph Horizontal Bars" +msgstr "GrĆ”fico de barras horizontales SQL" -#: ../../include/class/CredentialStore.class.php:948 -#: ../../enterprise/include/class/SAPView.class.php:621 -#: ../../enterprise/include/class/SAPView.class.php:624 -#: ../../enterprise/godmode/menu.php:177 -msgid "SAP" -msgstr "SAP" +#: ../../include/functions_reporting.php:5871 +msgid "SQL Graph Pie" +msgstr "GrĆ”fico SQL circular" -#: ../../include/class/CredentialStore.class.php:949 -#: ../../enterprise/include/class/Google.cloud.php:147 -msgid "Google" -msgstr "Google" +#: ../../include/functions_reporting.php:6098 +msgid "Netflow Area" +msgstr "Ɓrea de Netflow" -#: ../../include/class/CredentialStore.class.php:959 -#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:342 -msgid "Extra" -msgstr "Extra" +#: ../../include/functions_reporting.php:6102 +msgid "Netflow Summary" +msgstr "Resumen de Netflow" -#: ../../include/class/CredentialStore.class.php:960 -msgid "Extra (2)" -msgstr "Extra (2)" +#: ../../include/functions_reporting.php:6106 +msgid "Netflow Data" +msgstr "Datos de Netflow" -#: ../../include/class/CredentialStore.class.php:970 -#: ../../include/class/CredentialStore.class.php:1141 -msgid "Access key ID" -msgstr "ID de la clave de accso" +#: ../../include/functions_reporting.php:6114 +msgid "Unknown report" +msgstr "Informe desconocido" -#: ../../include/class/CredentialStore.class.php:971 -#: ../../include/class/CredentialStore.class.php:1142 -msgid "Secret access key" -msgstr "Clave de acceso secreta" +#: ../../include/functions_reporting.php:6208 +msgid "Prediction Date" +msgstr "Fecha de predicciĆ³n" -#: ../../include/class/CredentialStore.class.php:977 -#: ../../include/class/CredentialStore.class.php:994 -msgid "Account ID" -msgstr "ID de la cuenta" - -#: ../../include/class/CredentialStore.class.php:978 -#: ../../include/class/CredentialStore.class.php:1149 -msgid "Application secret" -msgstr "Secretos de aplicaciĆ³n" - -#: ../../include/class/CredentialStore.class.php:979 -#: ../../include/class/CredentialStore.class.php:1150 -msgid "Tenant or domain name" -msgstr "Propietario o nombre del dominio" - -#: ../../include/class/CredentialStore.class.php:980 -#: ../../include/class/CredentialStore.class.php:1151 -msgid "Subscription id" -msgstr "ID de la suscripciĆ³n" - -#: ../../include/class/CredentialStore.class.php:984 -#: ../../include/class/CredentialStore.class.php:1167 -msgid "Auth JSON" -msgstr "AutenticaciĆ³n JSON" - -#: ../../include/class/CredentialStore.class.php:1148 -msgid "Client ID" -msgstr "ID de cliente" - -#: ../../include/class/CredentialStore.class.php:1157 -msgid "Account ID." -msgstr "ID de la cuenta" - -#: ../../include/class/CredentialStore.class.php:1243 -msgid "Register new key into keystore" -msgstr "Registrar una clave nueva en el repositorio de claves" - -#: ../../include/class/CredentialStore.class.php:1247 -msgid "Update key" -msgstr "Actualizar clave" - -#: ../../include/class/CustomNetScan.class.php:134 -#: ../../enterprise/include/class/Aws.cloud.php:886 -#: ../../enterprise/include/class/Aws.S3.php:166 -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." - -#: ../../include/class/CustomNetScan.class.php:158 -#: ../../enterprise/include/class/MicrosoftSQLServer.app.php:193 -#: ../../enterprise/include/class/Aws.cloud.php:907 -#: ../../enterprise/include/class/MySQL.app.php:196 -#: ../../enterprise/include/class/Oracle.app.php:194 -#: ../../enterprise/include/class/DB2.app.php:187 -#: ../../enterprise/include/class/SAP.app.php:175 -#: ../../enterprise/include/class/VMware.app.php:254 -#: ../../enterprise/include/class/Azure.cloud.php:420 -#: ../../enterprise/include/class/Google.cloud.php:423 -#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:139 -#: ../../godmode/wizards/HostDevices.class.php:412 -msgid "You have no access to edit this task." -msgstr "No tiene permisos para editar esta tarea." - -#: ../../include/class/CustomNetScan.class.php:168 -#: ../../enterprise/include/class/MicrosoftSQLServer.app.php:203 -#: ../../enterprise/include/class/Aws.cloud.php:917 -#: ../../enterprise/include/class/Aws.S3.php:183 -#: ../../enterprise/include/class/MySQL.app.php:206 -#: ../../enterprise/include/class/Oracle.app.php:204 -#: ../../enterprise/include/class/DB2.app.php:197 -#: ../../enterprise/include/class/SAP.app.php:185 -#: ../../enterprise/include/class/VMware.app.php:264 -#: ../../godmode/wizards/HostDevices.class.php:422 -msgid "You must provide a task name." -msgstr "AƱada un nombre a la tarea" - -#: ../../include/class/CustomNetScan.class.php:173 -#: ../../enterprise/include/class/MicrosoftSQLServer.app.php:208 -#: ../../enterprise/include/class/Aws.cloud.php:922 -#: ../../enterprise/include/class/Aws.S3.php:188 -#: ../../enterprise/include/class/MySQL.app.php:211 -#: ../../enterprise/include/class/Oracle.app.php:209 -#: ../../enterprise/include/class/DB2.app.php:202 -#: ../../enterprise/include/class/SAP.app.php:190 -#: ../../enterprise/include/class/VMware.app.php:269 -#: ../../godmode/wizards/HostDevices.class.php:427 -msgid "You must select a Discovery Server." -msgstr "Seleccione un servidor de Discovery" - -#: ../../include/class/CustomNetScan.class.php:178 -#: ../../enterprise/include/class/MicrosoftSQLServer.app.php:218 -#: ../../enterprise/include/class/Aws.cloud.php:927 -#: ../../enterprise/include/class/Aws.S3.php:193 -#: ../../enterprise/include/class/MySQL.app.php:226 -#: ../../enterprise/include/class/Oracle.app.php:219 -#: ../../enterprise/include/class/DB2.app.php:212 -#: ../../enterprise/include/class/SAP.app.php:200 -#: ../../enterprise/include/class/VMware.app.php:279 -#: ../../godmode/wizards/HostDevices.class.php:438 -msgid "You must select a valid group." -msgstr "Seleccione un grupo vĆ”lido." - -#: ../../include/class/CustomNetScan.class.php:222 -#: ../../godmode/wizards/HostDevices.class.php:483 -#: ../../godmode/wizards/HostDevices.class.php:595 -msgid "Failed to find network scan task." -msgstr "No se ha encontrado tarea de escaneo de red." - -#: ../../include/class/CustomNetScan.class.php:369 -#: ../../include/class/CustomNetScan.class.php:394 -msgid "NetScan Custom" -msgstr "PersonalizaciĆ³n NetScan" - -#: ../../include/class/CustomNetScan.class.php:403 -#: ../../godmode/wizards/HostDevices.class.php:728 -msgid "Internal error, please re-run this wizard." -msgstr "Error interno, vuelva a ejecutar el asistente." - -#: ../../include/class/CustomNetScan.class.php:446 -#: ../../enterprise/include/class/MicrosoftSQLServer.app.php:439 -#: ../../enterprise/include/class/Aws.cloud.php:1201 -#: ../../enterprise/include/class/Aws.S3.php:401 -#: ../../enterprise/include/class/MySQL.app.php:442 -#: ../../enterprise/include/class/Oracle.app.php:444 -#: ../../enterprise/include/class/DB2.app.php:437 -#: ../../enterprise/include/class/SAP.app.php:469 -#: ../../enterprise/include/class/VMware.app.php:583 -#: ../../enterprise/include/class/Azure.cloud.php:771 -#: ../../enterprise/include/class/Google.cloud.php:759 -#: ../../godmode/wizards/HostDevices.class.php:838 -#: ../../godmode/wizards/DiscoveryTaskList.class.php:588 -msgid "Task name" -msgstr "Nombre de la tarea" - -#: ../../include/class/CustomNetScan.class.php:480 -#: ../../enterprise/include/class/MicrosoftSQLServer.app.php:451 -#: ../../enterprise/include/class/Aws.cloud.php:1213 -#: ../../enterprise/include/class/Aws.S3.php:413 -#: ../../enterprise/include/class/MySQL.app.php:454 -#: ../../enterprise/include/class/Oracle.app.php:456 -#: ../../enterprise/include/class/DB2.app.php:449 -#: ../../enterprise/include/class/SAP.app.php:482 -#: ../../enterprise/include/class/VMware.app.php:594 -#: ../../godmode/wizards/HostDevices.class.php:849 +#: ../../include/functions_reporting.php:7113 msgid "" -"You must select a Discovery Server to run the Task, otherwise the Recon Task " -"will never run" +"Illegal query: Due security restrictions, there are some tokens or words you cannot " +"use: *, delete, drop, alter, modify, password, pass, insert or update." msgstr "" -"Seleccione un servidos de Discovery para ejecutar la tarea, si no la tarea de " -"reconocimiento no se ejecutarĆ”" +"Consulta ilegal: debido a restricciones de seguridad, hay algunos tokens o palabras " +"que no se puede usar: *, borrar, eliminar, soltar, alterar, modificar, contraseƱa, " +"pass, insertar o actualizar." -#: ../../include/class/CustomNetScan.class.php:521 -#: ../../enterprise/include/class/MicrosoftSQLServer.app.php:538 -#: ../../enterprise/include/class/Aws.cloud.php:1319 -#: ../../enterprise/include/class/Aws.S3.php:507 -#: ../../enterprise/include/class/MySQL.app.php:559 -#: ../../enterprise/include/class/Oracle.app.php:544 -#: ../../enterprise/include/class/DB2.app.php:537 -#: ../../enterprise/include/class/SAP.app.php:514 -#: ../../enterprise/include/class/VMware.app.php:668 -#: ../../godmode/wizards/HostDevices.class.php:799 -msgid "Manual interval means that it will be executed only On-demand" -msgstr "Intervalo manual significa que serĆ” ejecutado solo bajo demanda." +#: ../../include/functions_reporting.php:8527 ../../include/functions_reporting.php:9245 +msgid "No Address" +msgstr "Sin direcciĆ³n" -#: ../../include/class/CustomNetScan.class.php:528 -#: ../../include/functions_reporting_html.php:2338 -#: ../../enterprise/include/class/MicrosoftSQLServer.app.php:545 -#: ../../enterprise/include/class/Aws.cloud.php:1326 -#: ../../enterprise/include/class/Aws.S3.php:514 -#: ../../enterprise/include/class/MySQL.app.php:566 -#: ../../enterprise/include/class/Oracle.app.php:551 -#: ../../enterprise/include/class/DB2.app.php:544 -#: ../../enterprise/include/class/SAP.app.php:521 -#: ../../enterprise/include/class/VMware.app.php:675 -#: ../../enterprise/include/class/VMware.app.php:887 -#: ../../godmode/wizards/HostDevices.class.php:806 -msgid "Defined" -msgstr "Definido" +#: ../../include/functions_reporting.php:9544 +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/class/CustomNetScan.class.php:529 -#: ../../enterprise/tools/ipam/ipam_list.php:670 -#: ../../enterprise/operation/services/services.list.php:275 -#: ../../enterprise/operation/services/services.table_services.php:197 -#: ../../enterprise/include/class/MicrosoftSQLServer.app.php:546 -#: ../../enterprise/include/class/Aws.cloud.php:1327 -#: ../../enterprise/include/class/Aws.S3.php:515 -#: ../../enterprise/include/class/MySQL.app.php:567 -#: ../../enterprise/include/class/Oracle.app.php:552 -#: ../../enterprise/include/class/DB2.app.php:545 -#: ../../enterprise/include/class/SAP.app.php:522 -#: ../../enterprise/include/class/VMware.app.php:676 -#: ../../enterprise/include/functions_ipam.php:1356 -#: ../../enterprise/godmode/services/services.service.php:658 -#: ../../enterprise/godmode/massive/massive_create_services.php:698 -#: ../../godmode/wizards/HostDevices.class.php:807 -#: ../../godmode/wizards/DiscoveryTaskList.class.php:712 -msgid "Manual" -msgstr "Manual" +#: ../../include/functions_reporting.php:9562 +msgid "The monitor type is not numeric" +msgstr "El tipo de monitor no es numĆ©rico." -#: ../../include/class/CustomNetScan.class.php:545 -#: ../../godmode/wizards/HostDevices.class.php:813 -msgid "The minimum recomended interval for Recon Task is 5 minutes" -msgstr "El intervalo mĆ­nimo recomendado para Recon Task es de 5 minutos." +#: ../../include/functions_reporting.php:9988 +msgid "Maximum" +msgstr "MĆ”ximo" -#: ../../include/class/CustomNetScan.class.php:553 -#: ../../enterprise/include/class/MicrosoftSQLServer.app.php:570 -#: ../../enterprise/include/class/MySQL.app.php:591 -#: ../../enterprise/include/class/Oracle.app.php:576 -#: ../../enterprise/include/class/DB2.app.php:569 -#: ../../enterprise/include/class/SAP.app.php:444 -#: ../../enterprise/include/class/VMware.app.php:536 -#: ../../enterprise/include/lib/ClusterViewer/ClusterWizard.php:1202 -#: ../../godmode/setup/setup_integria.php:636 -#: ../../godmode/wizards/HostDevices.class.php:772 -msgid "Update and continue" -msgstr "Actualizar y continuar" +#: ../../include/functions_reporting.php:10066 +msgid "Automatic combined graph" +msgstr "GrĆ”fica combinada automĆ”tica" -#: ../../include/class/CustomNetScan.class.php:611 -msgid "Recon script" -msgstr "Recon script" +#: ../../include/functions_reporting.php:11420 +#: ../../include/functions_reporting.php:11444 +msgid "Server health" +msgstr "Estado del servidor" -#: ../../include/class/CustomNetScan.class.php:652 -msgid "Explanation" -msgstr "ExplicaciĆ³n" - -#: ../../include/class/CustomNetScan.class.php:668 -msgid "macro_desc" -msgstr "macro_desc" - -#: ../../include/class/CustomNetScan.class.php:725 -#: ../../enterprise/include/class/MicrosoftSQLServer.app.php:793 -#: ../../enterprise/include/class/Aws.cloud.php:1423 -#: ../../enterprise/include/class/MySQL.app.php:908 -#: ../../enterprise/include/class/Oracle.app.php:949 -#: ../../enterprise/include/class/DB2.app.php:840 -#: ../../enterprise/include/class/SAP.app.php:802 -#: ../../enterprise/include/class/Omnishell.class.php:852 -#: ../../enterprise/include/class/VMware.app.php:863 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2138 -#: ../../enterprise/include/lib/ClusterViewer/ClusterWizard.php:1206 -#: ../../enterprise/meta/monitoring/wizard/wizard.php:133 -#: ../../enterprise/godmode/wizards/Cloud.class.php:579 -#: ../../godmode/wizards/HostDevices.class.php:1569 -#: ../../godmode/alerts/configure_alert_template.php:1171 -msgid "Finish" -msgstr "Finalizar" - -#: ../../include/class/CustomNetScan.class.php:758 -#: ../../enterprise/include/class/MicrosoftSQLServer.app.php:821 -#: ../../enterprise/include/class/Aws.cloud.php:1590 -#: ../../enterprise/include/class/Aws.S3.php:658 -#: ../../enterprise/include/class/MySQL.app.php:944 -#: ../../enterprise/include/class/Oracle.app.php:977 -#: ../../enterprise/include/class/DB2.app.php:868 -#: ../../enterprise/include/class/SAP.app.php:924 -#: ../../enterprise/include/class/VMware.app.php:1014 -#: ../../enterprise/include/class/Azure.cloud.php:990 -#: ../../enterprise/include/class/Google.cloud.php:952 -#: ../../godmode/wizards/HostDevices.class.php:1589 -msgid "Task configured." -msgstr "Tarea configurada." - -#: ../../include/class/CustomNetScan.class.php:762 -#: ../../enterprise/include/class/MicrosoftSQLServer.app.php:825 -#: ../../enterprise/include/class/MySQL.app.php:948 -#: ../../enterprise/include/class/Oracle.app.php:981 -#: ../../enterprise/include/class/DB2.app.php:872 -#: ../../enterprise/include/class/SAP.app.php:928 -#: ../../enterprise/include/class/VMware.app.php:1018 -#: ../../enterprise/include/class/Azure.cloud.php:994 -#: ../../enterprise/include/class/Google.cloud.php:956 -#: ../../godmode/wizards/HostDevices.class.php:1593 -msgid "Wizard failed. Cannot configure task." -msgstr "Error del asistente. No puede configurar la tarea." - -#: ../../include/class/CalendarManager.class.php:161 -msgid "Alert calendar list" -msgstr "Lista de calendario de alertas" - -#: ../../include/class/CalendarManager.class.php:183 -msgid "Edit calendar" -msgstr "Editar calendario" - -#: ../../include/class/CalendarManager.class.php:197 -msgid "Alert special days" -msgstr "Alerta dĆ­as especiales" - -#: ../../include/class/CalendarManager.class.php:272 -#: ../../include/class/CalendarManager.class.php:473 +#: ../../include/functions_reporting.php:11420 #, php-format -msgid "Calendar not found: %s" -msgstr "Calendario no encontrado: %s" +msgid "%d Downed servers" +msgstr "%d servidores caĆ­dos" -#: ../../include/class/CalendarManager.class.php:284 -msgid "Calendar successfully deleted" -msgstr "Calendario eliminado correctamente" +#: ../../include/functions_reporting.php:11425 +#: ../../include/functions_reporting.php:11448 +msgid "Monitor health" +msgstr "Estado del monitor" -#: ../../include/class/CalendarManager.class.php:307 +#: ../../include/functions_reporting.php:11425 #, php-format -msgid "Special day not found: %s" -msgstr "DĆ­a especial no encontrado: %s" +msgid "%d Not Normal monitors" +msgstr "%d monitores fuera de la normalidad" -#: ../../include/class/CalendarManager.class.php:319 -msgid "Special day successfully deleted" -msgstr "DĆ­a especial eliminado correctamente" +#: ../../include/functions_reporting.php:11425 +#: ../../include/functions_reporting.php:11449 +msgid "of monitors up" +msgstr "de monitores funcionando" -#: ../../include/class/CalendarManager.class.php:392 -msgid "Skipped dates: " -msgstr "Fechas omitidas: " +#: ../../include/functions_reporting.php:11430 +#: ../../include/functions_reporting.php:11452 +msgid "Module sanity" +msgstr "Estado de los mĆ³dulos" -#: ../../include/class/CalendarManager.class.php:430 -msgid "Success to upload iCalendar" -msgstr "Ɖxito al cargar iCalendar" - -#: ../../include/class/CalendarManager.class.php:431 -msgid "Fail to upload iCalendar" -msgstr "Error al cargar iCalendar" - -#: ../../include/class/CalendarManager.class.php:488 -#: ../../include/class/CalendarManager.class.php:841 -#: ../../enterprise/include/class/NetworkConfigManager.class.php:1785 -#: ../../enterprise/include/class/NetworkConfigManager.class.php:1875 -#: ../../enterprise/include/class/NetworkConfigManager.class.php:1970 -#: ../../enterprise/include/class/NetworkConfigManager.class.php:2064 -#: ../../enterprise/include/class/DatabaseHA.class.php:796 -msgid "Failed to update" -msgstr "Error al actualizar" - -#: ../../include/class/CalendarManager.class.php:490 -#: ../../include/class/CalendarManager.class.php:843 -#: ../../include/functions_alerts.php:2747 -#: ../../include/functions_planned_downtimes.php:114 -#: ../../include/functions_planned_downtimes.php:832 -#: ../../enterprise/tools/ipam/ipam_network_location_config.php:50 -#: ../../enterprise/tools/ipam/ipam_action.php:214 -#: ../../enterprise/operation/agentes/transactional_map.php:134 -#: ../../enterprise/include/ajax/servers.ajax.php:197 -#: ../../enterprise/include/ajax/servers.ajax.php:330 -#: ../../enterprise/include/class/NetworkConfigManager.class.php:1787 -#: ../../enterprise/include/class/NetworkConfigManager.class.php:1877 -#: ../../enterprise/include/class/NetworkConfigManager.class.php:1972 -#: ../../enterprise/include/class/NetworkConfigManager.class.php:2066 -#: ../../enterprise/meta/advanced/cron_main.php:158 -#: ../../enterprise/meta/advanced/cron_main.php:202 -#: ../../enterprise/meta/advanced/cron_main.php:295 -#: ../../enterprise/meta/advanced/links.php:49 -#: ../../enterprise/godmode/setup/setup_metaconsole.php:125 -#: ../../enterprise/godmode/servers/credential_boxes_satellite.php:80 -#: ../../enterprise/godmode/servers/credential_boxes_satellite.php:111 -#: ../../enterprise/godmode/servers/manage_export.php:112 -#: ../../enterprise/godmode/servers/manage_export.php:119 -#: ../../enterprise/godmode/reporting/reporting_builder.template_editor.php:47 -#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:221 -#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:234 -#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:283 -#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:302 -#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:382 -#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:399 -#: ../../enterprise/godmode/alerts/alert_inventory_builder.php:76 -#: ../../godmode/setup/news.php:66 ../../godmode/setup/gis.php:47 -#: ../../godmode/setup/links.php:44 ../../godmode/modules/manage_nc_groups.php:84 -#: ../../godmode/snmpconsole/snmp_alert.php:302 -#: ../../godmode/snmpconsole/snmp_filters.php:164 -#: ../../godmode/agentes/configurar_agente.php:881 -#: ../../godmode/agentes/planned_downtime.editor.php:416 -#: ../../godmode/alerts/configure_alert_template.php:536 -#: ../../godmode/alerts/alert_commands.php:572 -#: ../../godmode/alerts/alert_list.php:178 -#: ../../godmode/users/configure_user.php:474 -#: ../../godmode/users/profile_list.php:269 -msgid "Successfully created" -msgstr "Creado correctamente" - -#: ../../include/class/CalendarManager.class.php:491 -#: ../../include/class/CalendarManager.class.php:844 -#: ../../enterprise/include/class/NetworkConfigManager.class.php:1788 -#: ../../enterprise/include/class/NetworkConfigManager.class.php:1878 -#: ../../enterprise/include/class/NetworkConfigManager.class.php:1973 -#: ../../enterprise/include/class/NetworkConfigManager.class.php:2067 -msgid "Failed to create" -msgstr "Error al crear" - -#: ../../include/class/CalendarManager.class.php:507 -msgid "Failed saving calendar: name exists" -msgstr "Error al guardar el calendario: el nombre existe" - -#: ../../include/class/CalendarManager.class.php:516 -msgid "Failed saving calendar: " -msgstr "Error al guardar el calendario: " - -#: ../../include/class/CalendarManager.class.php:523 -#: ../../include/class/CalendarManager.class.php:895 -#: ../../include/functions_reporting.php:4750 -#: ../../include/functions_reporting.php:4778 -#: ../../enterprise/include/class/NetworkConfigManager.class.php:1725 -#: ../../enterprise/include/class/NetworkConfigManager.class.php:1807 -#: ../../enterprise/include/class/NetworkConfigManager.class.php:1901 -#: ../../enterprise/include/class/NetworkConfigManager.class.php:1992 -#: ../../enterprise/include/class/NetworkConfigManager.class.php:2131 -#: ../../enterprise/include/class/NetworkConfigManager.class.php:2792 -#: ../../enterprise/include/lib/Metaconsole/Node.php:1514 +#: ../../include/functions_reporting.php:11430 #, php-format -msgid "Error: %s" -msgstr "Error: %s" +msgid "%d Not inited monitors" +msgstr "%d monitores sin iniciar" -#: ../../include/class/CalendarManager.class.php:783 +#: ../../include/functions_reporting.php:11430 +#: ../../include/functions_reporting.php:11453 +msgid "of total modules inited" +msgstr "del total de mĆ³dulos iniciados" + +#: ../../include/functions_reporting.php:11435 +#: ../../include/functions_reporting.php:12547 +#: ../../include/functions_reporting.php:12557 #, php-format -msgid "Special days not found: %s" -msgstr "DĆ­as especiales no encontrados: %s" +msgid "%d Fired alerts" +msgstr "%d alertas disparadas" -#: ../../include/class/CalendarManager.class.php:826 +#: ../../include/functions_reporting.php:11435 +#: ../../include/functions_reporting.php:11457 +msgid "of defined alerts not fired" +msgstr "de alertas definidas no disparadas" + +#: ../../include/functions_reporting.php:11529 +msgid "Defined and fired alerts" +msgstr "Alertas definidas y disparadas" + +#: ../../include/functions_reporting.php:11708 +msgid "Defined users" +msgstr "Usuarios definidos" + +#: ../../include/functions_reporting.php:12404 +msgid "Agent without data" +msgstr "Agente sin datos" + +#: ../../include/functions_reporting.php:12543 #, php-format -msgid "SpecialDay not found: %s" -msgstr "SpecialDay no encontrado: %s" +msgid "%d Normal modules" +msgstr "%d mĆ³dulos normales" -#: ../../include/class/CalendarManager.class.php:879 -msgid "Failed saving calendar: already exists" -msgstr "Error al guardar el calendario: ya existe" - -#: ../../include/class/CalendarManager.class.php:888 -msgid "Failed saving special day: " -msgstr "Fallo al guardar el dĆ­a especial:" - -#: ../../include/class/CalendarManager.class.php:956 +#: ../../include/functions_reporting.php:12544 #, php-format -msgid "Same as %s" -msgstr "Igual que %s" +msgid "%d Critical modules" +msgstr "%d mĆ³dulos crĆ­ticos" -#: ../../include/class/CalendarManager.class.php:958 -msgid "Templates not being fired" -msgstr "Plantillas que no se estĆ”n activando" - -#: ../../include/class/NetworkMap.class.php:2317 -msgid "Failed to generate dotmap, please select different layout schema" -msgstr "No se ha podido generar dotmap, seleccione un formato diferente" - -#: ../../include/class/NetworkMap.class.php:2452 -msgid "Failed to retrieve graph data." -msgstr "No se ha podido obtener datos de grĆ”fica." - -#: ../../include/class/NetworkMap.class.php:2663 -msgid "Holding Area" -msgstr "BĆŗfer de procesamiento" - -#: ../../include/class/NetworkMap.class.php:2790 +#: ../../include/functions_reporting.php:12545 #, php-format -msgid "Edit node %s" -msgstr "Modificar el nodo %s" +msgid "%d Warning modules" +msgstr "%d mĆ³dulos en estado de advertencia" -#: ../../include/class/NetworkMap.class.php:2792 -msgid "Show details and options" -msgstr "Mostrar detalles y opciones" +#: ../../include/functions_reporting.php:12546 +#, php-format +msgid "%d Unknown modules" +msgstr "%d mĆ³dulos desconocidos" -#: ../../include/class/NetworkMap.class.php:2793 -msgid "Add a interface link" -msgstr "AƱadir enlace de interfaz" +#: ../../include/functions_reporting.php:12551 +#, php-format +msgid "%d Total agents" +msgstr "%d del total de agentes" -#: ../../include/class/NetworkMap.class.php:2794 -msgid "Set parent interface" -msgstr "Establecer padre en la relaciĆ³n de interfaz" +#: ../../include/functions_reporting.php:12552 +#, php-format +msgid "%d Normal agents" +msgstr "%d agentes normales" -#: ../../include/class/NetworkMap.class.php:2795 -msgid "Set as children" -msgstr "Establecer como hijo" +#: ../../include/functions_reporting.php:12553 +#, php-format +msgid "%d Critical agents" +msgstr "%d agentes en estado crĆ­tico" -#: ../../include/class/NetworkMap.class.php:2796 -msgid "Set parent" -msgstr "Establecer como padre" +#: ../../include/functions_reporting.php:12554 +#, php-format +msgid "%d Warning agents" +msgstr "%d agentes en estado de advertencia" -#: ../../include/class/NetworkMap.class.php:2797 -#: ../../include/class/NetworkMap.class.php:2810 -msgid "Abort the action of set relationship" -msgstr "Cancelar la acciĆ³n de relacionar por parentesco" +#: ../../include/functions_reporting.php:12555 +#, php-format +msgid "%d Unknown agents" +msgstr "%d agentes desconocidos" -#: ../../include/class/NetworkMap.class.php:2799 -#: ../../include/class/NetworkMap.class.php:3155 -msgid "Add node" -msgstr "AƱadir nodo" +#: ../../include/functions_reporting.php:12556 +#, php-format +msgid "%d not init agents" +msgstr "%d agentes no iniciados" -#: ../../include/class/NetworkMap.class.php:2800 -msgid "Set center" -msgstr "Fijar centro" +#: ../../include/functions_reporting.php:13984 +msgid "Total running modules" +msgstr "Total de mĆ³dulos en ejecuciĆ³n" -#: ../../include/class/NetworkMap.class.php:2802 -msgid "Refresh Holding area" -msgstr "Actualizar bĆŗfer de procesamiento" +#: ../../include/functions_reporting.php:13987 +#: ../../include/functions_reporting.php:14002 +#: ../../include/functions_reporting.php:14014 +#: ../../include/functions_reporting.php:14032 +#: ../../include/functions_reporting.php:14044 +#: ../../include/functions_reporting.php:14056 +#: ../../include/functions_reporting.php:14068 +msgid "Ratio" +msgstr "ProporciĆ³n" -#: ../../include/class/NetworkMap.class.php:2803 -#: ../../include/class/NetworkMap.class.php:2806 -msgid "Proceed" -msgstr "Proceder" +#: ../../include/functions_reporting.php:13987 +#: ../../include/functions_reporting.php:14002 +#: ../../include/functions_reporting.php:14014 +#: ../../include/functions_reporting.php:14032 +#: ../../include/functions_reporting.php:14044 +#: ../../include/functions_reporting.php:14056 +#: ../../include/functions_reporting.php:14068 +msgid "Modules by second" +msgstr "MĆ³dulos por segundo" -#: ../../include/class/NetworkMap.class.php:2804 +#: ../../include/functions_reporting.php:13999 +msgid "Local modules" +msgstr "MĆ³dulos locales" + +#: ../../include/functions_reporting.php:14009 +msgid "Network modules" +msgstr "MĆ³dulos de red" + +#: ../../include/functions_reporting.php:14028 +msgid "Plugin modules" +msgstr "MĆ³dulos de plugin" + +#: ../../include/functions_reporting.php:14040 +msgid "Prediction modules" +msgstr "MĆ³dulos de predicciĆ³n" + +#: ../../include/functions_reporting.php:14052 +msgid "WMI modules" +msgstr "MĆ³dulos WMI" + +#: ../../include/functions_reporting.php:14064 +msgid "Web modules" +msgstr "MĆ³dulos web" + +#: ../../include/functions_reporting.php:14102 +#: ../../include/lib/Dashboard/Widgets/tactical.php:287 +msgid "Server performance" +msgstr "Rendimiento del servidor" + +#: ../../include/functions_reporting.php:14221 +msgid "Weekly:" +msgstr "Semanalmente:" + +#: ../../include/functions_reporting.php:14263 +msgid "Monthly:" +msgstr "Mensual:" + +#: ../../include/functions_reporting.php:14264 +msgid "From day" +msgstr "Desde el dĆ­a" + +#: ../../include/functions_reporting.php:14265 +msgid "To day" +msgstr "Hasta el dĆ­a" + +#: ../../include/functions_reporting.php:14799 +msgid "Module Histogram Graph" +msgstr "GrĆ”fico de histograma del mĆ³dulo" + +#: ../../include/functions_reporting.php:15191 +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:15192 +msgid "report" +msgstr "informe" + +#: ../../include/functions_filemanager.php:135 +#: ../../include/functions_filemanager.php:192 +#: ../../include/functions_filemanager.php:247 +#: ../../include/functions_filemanager.php:340 +msgid "Security error" +msgstr "Error de seguridad" + +#: ../../include/functions_filemanager.php:154 +msgid "Upload error" +msgstr "Error de subida" + +#: ../../include/functions_filemanager.php:163 +#, php-format +msgid "Issue setting umask: %s" +msgstr "Problema al configurar umask: %s" + +#: ../../include/functions_filemanager.php:168 +#: ../../include/functions_filemanager.php:198 +msgid "Upload correct" +msgstr "Subida correcta" + +#: ../../include/functions_filemanager.php:195 +msgid "It was impossible to uncompress your file" +msgstr "Era imposible descomprimir el archivo" + +#: ../../include/functions_filemanager.php:211 msgid "" -"Resetting the map will delete all customizations you have done, including " -"manual relationships between elements, new items, etc." +"File size seems to be too large. Please check your php.ini configuration or contact " +"with the administrator" msgstr "" -"Al resetear el mapa se borrarĆ”n todas las personalizaciones que hayas hecho, " -"incluyendo las relaciones manuales entre elementos, nuevos elementos, etc." +"El tamaƱo del archivo es demasiado grande. Por favor, comprueba la configuraciĆ³n de " +"php.ini o contacta con el administrador." -#: ../../include/class/NetworkMap.class.php:2808 -msgid "Restart map" -msgstr "Resetear el mapa" +#: ../../include/functions_filemanager.php:260 +msgid "File created correctly" +msgstr "Filtro creado correctamente" -#: ../../include/class/NetworkMap.class.php:2809 -msgid "Abort the interface relationship" -msgstr "Abortar la relaciĆ³n de interfaz" +#: ../../include/functions_filemanager.php:263 +msgid "Error creating file" +msgstr "Error al crear el archivo" -#: ../../include/class/NetworkMap.class.php:2827 -#: ../../include/class/NetworkMap.class.php:2876 -msgid "Edit node" -msgstr "Modificar nodo" +#: ../../include/functions_filemanager.php:270 +#: ../../include/functions_filemanager.php:320 +msgid "Error creating file with empty name" +msgstr "Error al crear archivo con nombre en blanco" -#: ../../include/class/NetworkMap.class.php:2837 -#: ../../include/class/NetworkMap.class.php:2886 -msgid "Adresses" -msgstr "Direcciones" +#: ../../include/functions_filemanager.php:311 +msgid "Directory created" +msgstr "Directorio creado" -#: ../../include/class/NetworkMap.class.php:2839 -#: ../../include/class/NetworkMap.class.php:2888 -msgid "OS type" -msgstr "Tipo de SO" +#: ../../include/functions_filemanager.php:314 +msgid "Something gone wrong creating directory" +msgstr "Algo saliĆ³ mal al crear un directorio" -#: ../../include/class/NetworkMap.class.php:2846 -#: ../../include/class/NetworkMap.class.php:2847 -#: ../../include/class/NetworkMap.class.php:2895 -#: ../../include/class/NetworkMap.class.php:2896 -msgid "Node Details" -msgstr "Detalles de nodo" +#: ../../include/functions_filemanager.php:539 +#: ../../include/functions_filemanager.php:775 +msgid "Create a Directory" +msgstr "Crear directorio" -#: ../../include/class/NetworkMap.class.php:2910 -#: ../../enterprise/tools/ipam/ipam_ajax.php:473 -msgid "MAC" -msgstr "MAC" +#: ../../include/functions_filemanager.php:543 +#: ../../include/functions_filemanager.php:786 +#: ../../include/functions_filemanager.php:789 +msgid "Create a Text" +msgstr "Crear texto" -#: ../../include/class/NetworkMap.class.php:2921 -#: ../../include/class/NetworkMap.class.php:2922 -msgid "Interface Information (SNMP)" -msgstr "InformaciĆ³n de interfaces (SNMP)" +#: ../../include/functions_filemanager.php:547 +#: ../../include/functions_filemanager.php:800 +#: ../../include/functions_filemanager.php:803 +msgid "Upload Files" +msgstr "Subir archivos" -#: ../../include/class/NetworkMap.class.php:2933 -msgid "Shape" -msgstr "Forma" - -#: ../../include/class/NetworkMap.class.php:2936 -msgid "Circle" -msgstr "CĆ­rculo" - -#: ../../include/class/NetworkMap.class.php:2937 -msgid "Square" -msgstr "Cuadrado" - -#: ../../include/class/NetworkMap.class.php:2938 -msgid "Rhombus" -msgstr "Rombo" - -#: ../../include/class/NetworkMap.class.php:2951 -msgid "name node" -msgstr "Nombrar nodo" - -#: ../../include/class/NetworkMap.class.php:2957 -#: ../../enterprise/include/functions_HA_cluster.php:496 -msgid "Update node" -msgstr "Actualizar nodo" - -#: ../../include/class/NetworkMap.class.php:2969 -#: ../../include/class/NetworkMap.class.php:3272 -msgid "name fictional node" -msgstr "Nombre de nodo ficticio" - -#: ../../include/class/NetworkMap.class.php:2974 -#: ../../include/class/NetworkMap.class.php:3277 -msgid "Networkmap to link" -msgstr "Enlace a mapa de red" - -#: ../../include/class/NetworkMap.class.php:2986 -msgid "Update fictional node" -msgstr "Actualizar nodo ficticio" - -#: ../../include/class/NetworkMap.class.php:2996 -#: ../../include/class/NetworkMap.class.php:2997 -msgid "Node options" -msgstr "Opciones de nodo" - -#: ../../include/class/NetworkMap.class.php:3008 -#: ../../include/class/NetworkMap.class.php:3101 -msgid "Node source" -msgstr "Nodo origen" - -#: ../../include/class/NetworkMap.class.php:3009 -#: ../../include/class/NetworkMap.class.php:3102 -msgid "Interface source" -msgstr "Interfaz origen" - -#: ../../include/class/NetworkMap.class.php:3010 -#: ../../include/class/NetworkMap.class.php:3103 -msgid "Interface Target" -msgstr "Interfaz objetivo" - -#: ../../include/class/NetworkMap.class.php:3012 -#: ../../include/class/NetworkMap.class.php:3104 -msgid "Node target" -msgstr "Nodo objetivo" - -#: ../../include/class/NetworkMap.class.php:3013 -msgid "E." -msgstr "E." - -#: ../../include/class/NetworkMap.class.php:3075 -msgid "There are not relations" -msgstr "No hay relaciones" - -#: ../../include/class/NetworkMap.class.php:3086 -#: ../../include/class/NetworkMap.class.php:3087 -#: ../../enterprise/meta/advanced/metasetup.relations.php:330 -msgid "Relations" -msgstr "Relaciones" - -#: ../../include/class/NetworkMap.class.php:3143 -msgid "Add interface link" -msgstr "AƱadir enlace de interfaz" - -#: ../../include/class/NetworkMap.class.php:3174 -#: ../../include/class/NetworkMap.class.php:3196 -#: ../../include/class/NetworkMap.class.php:3197 -#: ../../include/class/NetworkMap.class.php:3247 -#: ../../include/class/NetworkMap.class.php:3259 -#: ../../include/class/NetworkMap.class.php:3300 -msgid "Add agent node" -msgstr "AƱadir nodo de agente" - -#: ../../include/class/NetworkMap.class.php:3258 -msgid "Add agent node (filter by group)" -msgstr "AƱadir nodo de agente (filtro por grupo)" - -#: ../../include/class/NetworkMap.class.php:3289 -msgid "Add fictional node" -msgstr "AƱadir nodo ficticio" - -#: ../../include/class/NetworkMap.class.php:3299 -msgid "Add fictional point" -msgstr "AƱadir punto ficticio" - -#: ../../include/class/NetworkMap.class.php:3513 -msgid "Open Minimap" -msgstr "Abrir Minimapa" - -#: ../../include/class/NetworkMap.class.php:3519 -msgid "Hide Labels" -msgstr "Ocultar etiquetas" - -#: ../../include/class/TreeGroupEdition.class.php:164 -#: ../../enterprise/meta/event/custom_events.php:249 -#: ../../enterprise/meta/monitoring/custom_fields_view.php:1151 -#: ../../godmode/events/custom_events.php:204 -#: ../../godmode/agentes/status_monitor_custom_fields.php:241 -msgid "Confirm" -msgstr "Confirmar" - -#: ../../include/functions_network_components.php:590 -#: ../../include/functions_alerts.php:1124 -#: ../../enterprise/include/functions_local_components.php:354 -msgid "Copy of" -msgstr "Copia de" - -#: ../../include/lib/Group.php:299 +#: ../../include/functions_filemanager.php:578 #, php-format -msgid "Failed to save group %s" -msgstr "Error al guardar el %s de grupo" +msgid "Directory %s doesn't exist!" +msgstr "El directorio %s no existe!" -#: ../../include/lib/View.php:69 -#, php-format -msgid "View %s not found" -msgstr "Vista %s no encontrada" +#: ../../include/functions_filemanager.php:623 +msgid "Parent directory" +msgstr "Directorio padre" -#: ../../include/lib/Agent.php:349 ../../include/lib/Module.php:1170 -#: ../../include/lib/Entity.php:303 ../../enterprise/include/lib/Service.php:397 -#: ../../enterprise/include/lib/Service.php:736 -#: ../../enterprise/include/lib/Service.php:917 -#: ../../enterprise/include/lib/Metaconsole/Node.php:1414 -#: ../../enterprise/include/lib/Metaconsole/Synchronizer.php:402 -#: ../../enterprise/include/lib/ServiceElement.php:390 -#: ../../enterprise/include/lib/ServiceElement.php:921 -#: ../../enterprise/include/lib/ServiceElement.php:963 -#: ../../enterprise/include/lib/ServiceElement.php:1005 -#: ../../enterprise/include/lib/ServiceElement.php:1111 -#: ../../enterprise/include/lib/ServiceElement.php:1153 -#, php-format -msgid "Cannot connect to node %d" -msgstr "No se puede conectar al nodo %d" +#: ../../include/functions_filemanager.php:637 +msgid "Directory" +msgstr "Directorio" -#: ../../include/lib/Module.php:256 -msgid " error: Module has no agent assigned." -msgstr " error: El mĆ³dulo no tiene agente asignado" +#: ../../include/functions_filemanager.php:645 +msgid "Compressed file" +msgstr "Archivo comprimido" -#: ../../include/lib/Module.php:803 ../../enterprise/include/lib/Policy.php:1196 -#: ../../enterprise/include/lib/Policy/Module.php:201 -#, php-format -msgid "Module already exists: \"%s\"" -msgstr "El mĆ³dulo ya existe: \"%s\"" +#: ../../include/functions_filemanager.php:649 +#: ../../include/functions_filemanager.php:656 +msgid "Text file" +msgstr "Archivo de texto" -#: ../../include/lib/Module.php:1037 -msgid "Module name empty." -msgstr "Nombre de mĆ³dulo vacĆ­o." +#: ../../include/functions_filemanager.php:689 +msgid "This file could be executed by any user" +msgstr "Cualquier usuario podrĆ­a ejecutar este archivo" -#: ../../include/lib/Module.php:1043 -msgid "Invalid characters in module name" -msgstr "Caracteres no vĆ”lidos en el nombre del mĆ³dulo" +#: ../../include/functions_filemanager.php:690 +msgid "Make sure it can't perform dangerous tasks" +msgstr "AsegĆŗrate de que no puede desempeƱar tareas peligrosas" -#: ../../include/lib/Module.php:1049 -msgid "Module already exists please select another name or agent." -msgstr "Este mĆ³dulo ya existe. Seleccione otro nombre o agente." +#: ../../include/functions_filemanager.php:758 +msgid "No files or directories to show." +msgstr "No hay archivos o directorios a mostrar." -#: ../../include/lib/Module.php:1055 -msgid "Insufficent permissions to perform this action" -msgstr "Permisos insuficientes para llevar a cabo esta acciĆ³n" +#: ../../include/functions_filemanager.php:772 +#: ../../include/functions_filemanager.php:898 +msgid "Create directory" +msgstr "Crear directorio" -#: ../../include/lib/Module.php:1062 -#, php-format -msgid "Error while processing: %s" -msgstr "Error al procesar: %s" +#: ../../include/functions_filemanager.php:834 +msgid "The zip upload in this dir, easy to upload multiple files." +msgstr "Subir archivo zip a este directorio, Ćŗtil para subir mĆŗltiples archivos." -#: ../../include/lib/Dashboard/Manager.php:599 +#: ../../include/functions_filemanager.php:836 +msgid "Decompress" +msgstr "Descomprimir" + +#: ../../include/functions_filemanager.php:910 +msgid "Create text" +msgstr "Crear texto" + +#: ../../include/functions_filemanager.php:922 +msgid "Upload file/s" +msgstr "Subir archivo/s" + +#: ../../include/functions_filemanager.php:931 +msgid "The directory is read-only" +msgstr "Este directorio es solo de lectura" + +#: ../../include/functions_tags.php:712 +msgid "Click here to open a popup window with URL tag" +msgstr "Haz clic aquĆ­ para abrir una ventana popup con la etiqueta URL" + +#: ../../include/lib/Dashboard/Manager.php:600 #, php-format msgid "Copy of %s" msgstr "Copia de %s" -#: ../../include/lib/Dashboard/Manager.php:988 +#: ../../include/lib/Dashboard/Manager.php:989 msgid "Error create or update dashboard" msgstr "Error al crear o actualizar el panel de control" -#: ../../include/lib/Dashboard/Manager.php:1461 +#: ../../include/lib/Dashboard/Manager.php:1470 msgid "Icon image dashboard" msgstr "Panel de control de imĆ”genes de iconos" +#: ../../include/lib/Dashboard/Widget.php:459 +#: ../../include/lib/Dashboard/Widgets/maps_made_by_user.php:238 +#: ../../include/lib/Dashboard/Widgets/maps_made_by_user.php:322 +#: ../../include/lib/Dashboard/Widgets/reports.php:285 +#, php-format +msgid "Failed to connect to node %d" +msgstr "No se ha podido conectar con el nodo %d" + +#: ../../include/lib/Dashboard/Widget.php:474 +#: ../../include/lib/Dashboard/Widgets/agent_module.php:640 +msgid "Please configure this widget before usage" +msgstr "Por favor, configura este widget antes de usarlo" + +#: ../../include/lib/Dashboard/Widget.php:482 +msgid "Widget cannot be loaded" +msgstr "No se puede cargar el widget" + +#: ../../include/lib/Dashboard/Widget.php:482 +msgid "Please, configure the widget again to recover it" +msgstr "Por favor, configĆŗralo de nuevo" + +#: ../../include/lib/Dashboard/Widgets/groups_status.php:158 +#: ../../include/lib/Dashboard/Widgets/groups_status.php:499 +msgid "General group status" +msgstr "Estado general de grupo" + +#: ../../include/lib/Dashboard/Widgets/groups_status.php:453 +msgid "Not agents in this group" +msgstr "No hay agentes en este grupo" + +#: ../../include/lib/Dashboard/Widgets/system_group_status.php:158 +#: ../../include/lib/Dashboard/Widgets/system_group_status.php:622 +msgid "Groups status" +msgstr "Estado de los grupos" + +#: ../../include/lib/Dashboard/Widgets/system_group_status.php:314 +msgid "Alert Fired" +msgstr "Alerta disparada" + +#: ../../include/lib/Dashboard/Widgets/system_group_status.php:522 +msgid "Modules in normal status" +msgstr "MĆ³dulos en estado normal" + +#: ../../include/lib/Dashboard/Widgets/system_group_status.php:538 +msgid "Modules in warning status" +msgstr "Modulos en estado de advertencia" + +#: ../../include/lib/Dashboard/Widgets/system_group_status.php:555 +msgid "Modules in critical status" +msgstr "MĆ³dulos en estado crĆ­tico" + +#: ../../include/lib/Dashboard/Widgets/system_group_status.php:601 +msgid "No modules in selected groups" +msgstr "No hay mĆ³dulos en los grupos seleccionados" + #: ../../include/lib/Dashboard/Widgets/sla_percent.php:174 #: ../../include/lib/Dashboard/Widgets/sla_percent.php:482 msgid "SLA percentage" msgstr "Porcentaje SLA" #: ../../include/lib/Dashboard/Widgets/sla_percent.php:344 -#: ../../include/lib/Dashboard/Widgets/module_value.php:325 #: ../../include/lib/Dashboard/Widgets/module_icon.php:411 +#: ../../include/lib/Dashboard/Widgets/module_value.php:325 msgid "Text size of value in px" msgstr "TamaƱo de texto del valor en pĆ­xels" #: ../../include/lib/Dashboard/Widgets/sla_percent.php:356 -#: ../../include/lib/Dashboard/Widgets/module_table_value.php:301 -#: ../../include/lib/Dashboard/Widgets/module_value.php:337 -#: ../../include/lib/Dashboard/Widgets/module_status.php:401 -#: ../../include/lib/Dashboard/Widgets/graph_module_histogram.php:335 #: ../../include/lib/Dashboard/Widgets/module_icon.php:423 +#: ../../include/lib/Dashboard/Widgets/module_value.php:337 +#: ../../include/lib/Dashboard/Widgets/module_table_value.php:301 +#: ../../include/lib/Dashboard/Widgets/graph_module_histogram.php:335 +#: ../../include/lib/Dashboard/Widgets/module_status.php:401 msgid "Text size of label in px" msgstr "TamaƱo de texto de la etiqueta en pĆ­xels" #: ../../include/lib/Dashboard/Widgets/sla_percent.php:413 #: ../../include/lib/Dashboard/Widgets/sla_percent.php:424 +#: ../../include/lib/Dashboard/Widgets/events_list.php:528 #: ../../include/lib/Dashboard/Widgets/agent_module.php:665 -#: ../../include/lib/Dashboard/Widgets/events_list.php:518 msgid "You don't have access" msgstr "No tienes acceso" +#: ../../include/lib/Dashboard/Widgets/post.php:158 +#: ../../include/lib/Dashboard/Widgets/post.php:276 +msgid "Panel with a message" +msgstr "Panel con un mensaje" + +#: ../../include/lib/Dashboard/Widgets/BlockHistogram.php:172 +#: ../../include/lib/Dashboard/Widgets/BlockHistogram.php:632 +msgid "Block histogram" +msgstr "Histograma de bloques" + +#: ../../include/lib/Dashboard/Widgets/BlockHistogram.php:266 +msgid "Font color" +msgstr "Color de fuente" + +#: ../../include/lib/Dashboard/Widgets/BlockHistogram.php:280 +#: ../../include/lib/Dashboard/Widgets/ColorModuleTabs.php:256 +msgid "Agent / module" +msgstr "Agente/mĆ³dulo" + +#: ../../include/lib/Dashboard/Widgets/BlockHistogram.php:457 +#: ../../include/lib/Dashboard/Widgets/ColorModuleTabs.php:408 +msgid "Not found modules" +msgstr "MĆ³dulos no encontrados" + +#: ../../include/lib/Dashboard/Widgets/service_view.php:190 +msgid "Service View" +msgstr "Vista de servicio" + +#: ../../include/lib/Dashboard/Widgets/service_view.php:246 +msgid "Tree" +msgstr "Ɓrbol" + +#: ../../include/lib/Dashboard/Widgets/service_view.php:298 +#: ../../include/lib/Dashboard/Widgets/service_map.php:368 +msgid "The user doesn't have permission to read agents" +msgstr "El usuario no tiene permiso de lectura para agentes" + +#: ../../include/lib/Dashboard/Widgets/service_view.php:456 +msgid "Services view" +msgstr "Vista de servicios" + +#: ../../include/lib/Dashboard/Widgets/maps_status.php:158 +#: ../../include/lib/Dashboard/Widgets/maps_status.php:388 +msgid "General visual maps report" +msgstr "Informe de mapas visuales general" + +#: ../../include/lib/Dashboard/Widgets/maps_status.php:263 +msgid "Maps" +msgstr "Mapas" + +#: ../../include/lib/Dashboard/Widgets/example.php:158 +#: ../../include/lib/Dashboard/Widgets/example.php:277 +#, php-format +msgid "Welcome message to %s" +msgstr "Mensaje de bienvenida a %s" + +#: ../../include/lib/Dashboard/Widgets/example.php:245 +#: ../../general/login_help_dialog.php:39 +#, php-format +msgid "Welcome to %s" +msgstr "Bienvenido a %s" + +#: ../../include/lib/Dashboard/Widgets/example.php:249 +msgid "This is an example of a dashboard widget. A widget may contain elements" +msgstr "" +"Este es un ejemplo de un widget del dashboard. Un widget puede contener elementos." + +#: ../../include/lib/Dashboard/Widgets/example.php:250 +msgid "To add more elements, click on \"Add widgets\" on the top of this page." +msgstr "" +"Para aƱadir mĆ”s elementos, haz clic en \"Add widgets\" en la parte superior " +"de esta pĆ”gina." + +#: ../../include/lib/Dashboard/Widgets/example.php:251 +#: ../../include/lib/Dashboard/Widgets/example.php:253 +msgid "" +"To delete this message, click on the delete button on top right corner of this " +"element." +msgstr "" +"Para eliminar este mensaje, haz clic sobre el botĆ³n de la esquina derecha de este " +"elemento." + +#: ../../include/lib/Dashboard/Widgets/example.php:252 +msgid "To do so, just click on the title and drag and drop it to the desired place." +msgstr "" +"Para hacer eso, haz clic en el tĆ­tulo, arrastra y suelta el elemento en el lugar " +"deseado." + +#: ../../include/lib/Dashboard/Widgets/example.php:254 +#, php-format +msgid "Thanks for using %s." +msgstr "Gracias por usar %s." + +#: ../../include/lib/Dashboard/Widgets/monitor_health.php:158 +#: ../../include/lib/Dashboard/Widgets/monitor_health.php:337 +msgid "Global health info" +msgstr "InformaciĆ³n del estado global" + +#: ../../include/lib/Dashboard/Widgets/network_map.php:172 +#: ../../include/lib/Dashboard/Widgets/network_map.php:478 ../../operation/menu.php:165 +msgid "Network map" +msgstr "Mapa de red" + +#: ../../include/lib/Dashboard/Widgets/network_map.php:258 +msgid "It is recommended to have only one such widget in the control panel." +msgstr "Se recomienda tener solo uno de estos widgets en el panel de control." + +#: ../../include/lib/Dashboard/Widgets/network_map.php:335 +msgid "Introduce x-axis data. Right=positive Left=negative" +msgstr "Introducir datos en el eje X. Derecha = positivo / Izquierda = negativo." + +#: ../../include/lib/Dashboard/Widgets/network_map.php:339 +msgid "X offset" +msgstr "Desplazamiento en X" + +#: ../../include/lib/Dashboard/Widgets/network_map.php:350 +msgid "Introduce Y-axis data. Top=positive Bottom=negative" +msgstr "Introducir datos en el eje Y. Arriba = positivo / Abajo = negativo" + +#: ../../include/lib/Dashboard/Widgets/network_map.php:354 +msgid "Y offset" +msgstr "Desplazamiento en Y" + +#: ../../include/lib/Dashboard/Widgets/network_map.php:378 +msgid "Zoom level" +msgstr "Nivel de zoom" + +#: ../../include/lib/Dashboard/Widgets/alerts_fired.php:162 +#: ../../include/lib/Dashboard/Widgets/alerts_fired.php:360 +msgid "Triggered alerts report" +msgstr "Informe de alertas disparadas" + +#: ../../include/lib/Dashboard/Widgets/alerts_fired.php:333 +msgid "Not alert fired" +msgstr "No hay alertas disparadas" + +#: ../../include/lib/Dashboard/Widgets/alerts_fired.php:342 +#: ../../include/lib/Dashboard/Widgets/events_list.php:521 +msgid "You must select some group" +msgstr "Seleccione un grupo" + +#: ../../include/lib/Dashboard/Widgets/events_list.php:175 +#: ../../include/lib/Dashboard/Widgets/events_list.php:702 +msgid "List of latest events" +msgstr "Lista de Ćŗltimos eventos" + +#: ../../include/lib/Dashboard/Widgets/events_list.php:305 +msgid "Custom filters" +msgstr "Filtros personalizados" + +#: ../../include/lib/Dashboard/Widgets/events_list.php:370 +msgid "Limit" +msgstr "LĆ­mite" + +#: ../../include/lib/Dashboard/Widgets/events_list.php:383 +#: ../../include/functions_events.php:2976 ../../include/functions_events.php:2982 +#: ../../include/functions_events.php:3004 +msgid "All event" +msgstr "Todos los eventos" + +#: ../../include/lib/Dashboard/Widgets/events_list.php:384 +#: ../../include/functions_events.php:2978 ../../include/functions_events.php:3012 +msgid "Only validated" +msgstr "Solo eventos validados" + +#: ../../include/lib/Dashboard/Widgets/events_list.php:385 +msgid "Only pending" +msgstr "Solo pendientes" + +#: ../../include/lib/Dashboard/Widgets/wux_transaction_stats.php:172 +#: ../../include/lib/Dashboard/Widgets/wux_transaction_stats.php:378 +msgid "WUX transaction stats" +msgstr "EstadĆ­sticas de transacciones WUX" + +#: ../../include/lib/Dashboard/Widgets/wux_transaction_stats.php:270 +#: ../../include/lib/Dashboard/Widgets/wux_transaction.php:259 +msgid "Wux transaction" +msgstr "TransacciĆ³n WUX" + +#: ../../include/lib/Dashboard/Widgets/wux_transaction_stats.php:288 +msgid "View all statistics" +msgstr "Ver todas las estadĆ­sticas" + +#: ../../include/lib/Dashboard/Widgets/module_icon.php:178 +#: ../../include/lib/Dashboard/Widgets/module_icon.php:540 +msgid "Icon and module value" +msgstr "Valor de mĆ³dulo e icono" + +#: ../../include/lib/Dashboard/Widgets/module_icon.php:435 +#: ../../include/lib/Dashboard/Widgets/module_status.php:413 +msgid "Size of icon" +msgstr "TamaƱo del icono" + +#: ../../include/lib/Dashboard/Widgets/url.php:158 +#: ../../include/lib/Dashboard/Widgets/url.php:286 +msgid "URL content" +msgstr "Contenido de la URL" + +#: ../../include/lib/Dashboard/Widgets/url.php:263 +msgid "Please, configure this widget before use" +msgstr "Por favor, configura este widget antes de usarlo." + +#: ../../include/lib/Dashboard/Widgets/module_value.php:173 +#: ../../include/lib/Dashboard/Widgets/module_value.php:433 +msgid "Module value" +msgstr "Valor del mĆ³dulo" + +#: ../../include/lib/Dashboard/Widgets/wux_transaction.php:169 +#: ../../include/lib/Dashboard/Widgets/wux_transaction.php:418 +msgid "Agent WUX transaction" +msgstr "TransacciĆ³n de agente WUX" + +#: ../../include/lib/Dashboard/Widgets/wux_transaction.php:370 +#: ../../include/lib/Dashboard/Widgets/wux_transaction.php:375 +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 +msgid "Top N events by module" +msgstr "N primeros eventos por mĆ³dulo" + +#: ../../include/lib/Dashboard/Widgets/top_n_events_by_module.php:258 +#: ../../include/lib/Dashboard/Widgets/top_n_events_by_group.php:258 +msgid "Amount to show" +msgstr "Cantidad a mostrar" + +#: ../../include/lib/Dashboard/Widgets/top_n_events_by_module.php:318 +#: ../../include/lib/Dashboard/Widgets/top_n_events_by_group.php:318 +msgid "No legend" +msgstr "Sin leyenda" + +#: ../../include/lib/Dashboard/Widgets/top_n_events_by_module.php:322 +#: ../../include/lib/Dashboard/Widgets/top_n_events_by_group.php:322 +msgid "Legend Position" +msgstr "PosiciĆ³n de la leyenda" + +#: ../../include/lib/Dashboard/Widgets/top_n_events_by_module.php:371 +#: ../../include/lib/Dashboard/Widgets/top_n_events_by_group.php:373 +msgid "Please select one or more groups." +msgstr "Por favor, selecciona uno o mĆ”s grupos" + +#: ../../include/lib/Dashboard/Widgets/top_n_events_by_module.php:423 +#: ../../include/lib/Dashboard/Widgets/top_n_events_by_group.php:419 +msgid "There is not data to show." +msgstr "No hay datos que mostrar." + +#: ../../include/lib/Dashboard/Widgets/ColorModuleTabs.php:172 +#: ../../include/lib/Dashboard/Widgets/ColorModuleTabs.php:536 +msgid "Color tabs modules" +msgstr "Color de las pestaƱas de mĆ³dulos" + +#: ../../include/lib/Dashboard/Widgets/ColorModuleTabs.php:285 +msgid "Format Data" +msgstr "Formatear datos" + #: ../../include/lib/Dashboard/Widgets/module_table_value.php:175 msgid "Show module value in a table" msgstr "Mostrar el valor del mĆ³dulo en una tabla" @@ -18788,98 +46786,71 @@ msgstr "Separador de datos" msgid "Module in a table" msgstr "MĆ³dulo en una tabla" -#: ../../include/lib/Dashboard/Widgets/module_value.php:173 -#: ../../include/lib/Dashboard/Widgets/module_value.php:433 -msgid "Module value" -msgstr "Valor del mĆ³dulo" +#: ../../include/lib/Dashboard/Widgets/graph_module_histogram.php:175 +#: ../../include/lib/Dashboard/Widgets/graph_module_histogram.php:431 +msgid "Module histogram" +msgstr "Histograma de mĆ³dulo" -#: ../../include/lib/Dashboard/Widgets/top_n_events_by_group.php:163 -#: ../../include/lib/Dashboard/Widgets/top_n_events_by_group.php:506 -msgid "Top N events by agent" -msgstr "Primeros N eventos por agente" +#: ../../include/lib/Dashboard/Widgets/service_map.php:300 +msgid "" +"ZOOM functionality is only available when there is only one such widget in the " +"dashboard" +msgstr "" +"La funcionalidad ZOOM solo estĆ” disponible cuando solo hay un widget en el panel de " +"control" -#: ../../include/lib/Dashboard/Widgets/top_n_events_by_group.php:258 -#: ../../include/lib/Dashboard/Widgets/top_n_events_by_module.php:258 -msgid "Amount to show" -msgstr "Cantidad a mostrar" +#: ../../include/lib/Dashboard/Widgets/service_map.php:320 +msgid "Enable sunburst" +msgstr "Habilitar sunburst" -#: ../../include/lib/Dashboard/Widgets/top_n_events_by_group.php:317 -#: ../../include/lib/Dashboard/Widgets/top_n_events_by_module.php:317 -#: ../../include/rest-api/models/VisualConsole/Item.php:1957 -#: ../../godmode/setup/gis_step_2.php:350 -msgid "Bottom" -msgstr "Inferior" +#: ../../include/lib/Dashboard/Widgets/service_map.php:379 +msgid "Missing Service id" +msgstr "Falta el ID de servicio" -#: ../../include/lib/Dashboard/Widgets/top_n_events_by_group.php:318 -#: ../../include/lib/Dashboard/Widgets/top_n_events_by_module.php:318 -msgid "No legend" -msgstr "Sin leyenda" +#: ../../include/lib/Dashboard/Widgets/agent_module.php:173 +#: ../../include/lib/Dashboard/Widgets/agent_module.php:840 +msgid "Agent/Module View" +msgstr "Vista de Agente/MĆ³dulo" -#: ../../include/lib/Dashboard/Widgets/top_n_events_by_group.php:322 -#: ../../include/lib/Dashboard/Widgets/top_n_events_by_module.php:322 -msgid "Legend Position" -msgstr "PosiciĆ³n de la leyenda" +#: ../../include/lib/Dashboard/Widgets/agent_module.php:250 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:439 +msgid "Filter modules" +msgstr "Filtrar mĆ³dulos" -#: ../../include/lib/Dashboard/Widgets/top_n_events_by_group.php:375 -#: ../../include/lib/Dashboard/Widgets/top_n_events_by_module.php:373 -msgid "Please select one or more groups." -msgstr "Por favor, selecciona uno o mĆ”s grupos" +#: ../../include/lib/Dashboard/Widgets/custom_graph.php:168 +#: ../../include/lib/Dashboard/Widgets/custom_graph.php:521 +msgid "Defined custom graph" +msgstr "GrĆ”fica personalizada definida" -#: ../../include/lib/Dashboard/Widgets/top_n_events_by_group.php:423 -#: ../../include/lib/Dashboard/Widgets/top_n_events_by_module.php:427 -msgid "There is not data to show." -msgstr "No hay datos que mostrar." +#: ../../include/lib/Dashboard/Widgets/custom_graph.php:294 +msgid "This graph has been deleted." +msgstr "Se ha eliminado esta grĆ”fica." -#: ../../include/lib/Dashboard/Widgets/top_n_events_by_group.php:483 -#: ../../include/lib/Dashboard/Widgets/top_n_events_by_module.php:518 -#: ../../include/functions_graph.php:2649 ../../include/functions_graph.php:2785 -#: ../../include/functions_graph.php:2883 ../../include/functions_graph.php:3344 -#: ../../include/functions_graph.php:3918 -#: ../../include/functions_reporting.php:1802 -#: ../../include/functions_reporting.php:2051 -#: ../../include/functions_reporting.php:2077 -#: ../../include/functions_reporting.php:2104 -#: ../../include/functions_reporting.php:2132 -#: ../../include/functions_reporting.php:3486 -#: ../../include/functions_reporting.php:3860 -#: ../../include/functions_reporting.php:3888 -#: ../../include/functions_reporting.php:3916 -#: ../../include/functions_reporting.php:4889 -#: ../../include/functions_reporting.php:10495 -#: ../../include/functions_reporting.php:10523 -#: ../../include/functions_reporting.php:10551 -msgid "other" -msgstr "otro" +#: ../../include/lib/Dashboard/Widgets/custom_graph.php:321 +#: ../../operation/reporting/graph_viewer.php:376 +msgid "Horizontal Bars" +msgstr "Barras horizontales" -#: ../../include/lib/Dashboard/Widgets/top_n_events_by_module.php:163 -#: ../../include/lib/Dashboard/Widgets/top_n_events_by_module.php:541 -msgid "Top N events by module" -msgstr "N primeros eventos por mĆ³dulo" +#: ../../include/lib/Dashboard/Widgets/custom_graph.php:322 +#: ../../operation/reporting/graph_viewer.php:377 +msgid "Vertical Bars" +msgstr "Barras verticales" -#: ../../include/lib/Dashboard/Widgets/maps_status.php:158 -#: ../../include/lib/Dashboard/Widgets/maps_status.php:388 -msgid "General visual maps report" -msgstr "Informe de mapas visuales general" +#: ../../include/lib/Dashboard/Widgets/single_graph.php:170 +#: ../../include/lib/Dashboard/Widgets/single_graph.php:393 +msgid "Agent module graph" +msgstr "GrĆ”fica de mĆ³dulo de agente" -#: ../../include/lib/Dashboard/Widgets/maps_status.php:263 -msgid "Maps" -msgstr "Mapas" - -#: ../../include/lib/Dashboard/Widgets/maps_status.php:360 -#: ../../godmode/massive/massive_edit_agents.php:981 -msgid "Bad" -msgstr "Mal" +#: ../../include/lib/Dashboard/Widgets/reports.php:164 +#: ../../include/lib/Dashboard/Widgets/reports.php:452 +msgid "Custom report" +msgstr "Informe personalizado" #: ../../include/lib/Dashboard/Widgets/os_quick_report.php:173 #: ../../include/lib/Dashboard/Widgets/os_quick_report.php:335 msgid "OS quick report" msgstr "Informe rĆ”pido del sistema operativo" -#: ../../include/lib/Dashboard/Widgets/os_quick_report.php:284 -#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:118 -msgid "OS name" -msgstr "Nombre del SO" - #: ../../include/lib/Dashboard/Widgets/os_quick_report.php:285 msgid "total agents" msgstr "agentes totales" @@ -18896,451 +46867,6 @@ msgstr "agentes crĆ­ticos" msgid "unknown agents" msgstr "agentes en desconocido" -#: ../../include/lib/Dashboard/Widgets/url.php:158 -#: ../../include/lib/Dashboard/Widgets/url.php:286 -msgid "URL content" -msgstr "Contenido de la URL" - -#: ../../include/lib/Dashboard/Widgets/url.php:216 -#: ../../include/functions_reporting.php:6792 -#: ../../enterprise/meta/include/functions_wizard_meta.php:645 -#: ../../enterprise/meta/monitoring/wizard/wizard.php:151 -#: ../../godmode/tag/edit_tag.php:227 -msgid "Url" -msgstr "URL" - -#: ../../include/lib/Dashboard/Widgets/url.php:263 -msgid "Please, configure this widget before use" -msgstr "Por favor, configura este widget antes de usarlo." - -#: ../../include/lib/Dashboard/Widgets/wux_transaction.php:169 -#: ../../include/lib/Dashboard/Widgets/wux_transaction.php:418 -msgid "Agent WUX transaction" -msgstr "TransacciĆ³n de agente WUX" - -#: ../../include/lib/Dashboard/Widgets/wux_transaction.php:259 -#: ../../include/lib/Dashboard/Widgets/wux_transaction_stats.php:270 -msgid "Wux transaction" -msgstr "TransacciĆ³n WUX" - -#: ../../include/lib/Dashboard/Widgets/wux_transaction.php:320 -#: ../../enterprise/operation/agentes/wux_console_view.php:75 -msgid "No wux transaction selected." -msgstr "Ninguna transacciĆ³n WUX seleccionada" - -#: ../../include/lib/Dashboard/Widgets/wux_transaction.php:370 -#: ../../include/lib/Dashboard/Widgets/wux_transaction.php:375 -msgid "Global status" -msgstr "Estado global" - -#: ../../include/lib/Dashboard/Widgets/wux_transaction.php:398 -#: ../../enterprise/operation/agentes/wux_console_view.php:149 -msgid "Phase modules not found" -msgstr "Fase de mĆ³dulo no encontrada" - -#: ../../include/lib/Dashboard/Widgets/reports.php:164 -#: ../../include/lib/Dashboard/Widgets/reports.php:441 -msgid "Custom report" -msgstr "Informe personalizado" - -#: ../../include/lib/Dashboard/Widgets/reports.php:274 -#: ../../include/lib/Dashboard/Widgets/maps_made_by_user.php:227 -#: ../../include/lib/Dashboard/Widgets/maps_made_by_user.php:311 -#: ../../include/lib/Dashboard/Widget.php:454 -#, php-format -msgid "Failed to connect to node %d" -msgstr "No se ha podido conectar con el nodo %d" - -#: ../../include/lib/Dashboard/Widgets/custom_graph.php:168 -#: ../../include/lib/Dashboard/Widgets/custom_graph.php:521 -msgid "Defined custom graph" -msgstr "GrĆ”fica personalizada definida" - -#: ../../include/lib/Dashboard/Widgets/custom_graph.php:294 -msgid "This graph has been deleted." -msgstr "Se ha eliminado esta grĆ”fica." - -#: ../../include/lib/Dashboard/Widgets/custom_graph.php:339 -#: ../../include/lib/Dashboard/Widgets/single_graph.php:295 -#: ../../include/rest-api/models/VisualConsole/Items/ModuleGraph.php:672 -msgid "Show legend" -msgstr "Mostrar leyenda" - -#: ../../include/lib/Dashboard/Widgets/monitor_health.php:158 -#: ../../include/lib/Dashboard/Widgets/monitor_health.php:337 -msgid "Global health info" -msgstr "InformaciĆ³n del estado global" - -#: ../../include/lib/Dashboard/Widgets/system_group_status.php:158 -#: ../../include/lib/Dashboard/Widgets/system_group_status.php:622 -msgid "Groups status" -msgstr "Estado de los grupos" - -#: ../../include/lib/Dashboard/Widgets/system_group_status.php:314 -msgid "Alert Fired" -msgstr "Alerta disparada" - -#: ../../include/lib/Dashboard/Widgets/system_group_status.php:522 -msgid "Modules in normal status" -msgstr "MĆ³dulos en estado normal" - -#: ../../include/lib/Dashboard/Widgets/system_group_status.php:538 -msgid "Modules in warning status" -msgstr "Modulos en estado de advertencia" - -#: ../../include/lib/Dashboard/Widgets/system_group_status.php:555 -msgid "Modules in critical status" -msgstr "MĆ³dulos en estado crĆ­tico" - -#: ../../include/lib/Dashboard/Widgets/system_group_status.php:601 -msgid "No modules in selected groups" -msgstr "No hay mĆ³dulos en los grupos seleccionados" - -#: ../../include/lib/Dashboard/Widgets/single_graph.php:170 -#: ../../include/lib/Dashboard/Widgets/single_graph.php:394 -msgid "Agent module graph" -msgstr "GrĆ”fica de mĆ³dulo de agente" - -#: ../../include/lib/Dashboard/Widgets/tactical.php:262 -msgid "Status and Monitor checks" -msgstr "Comprobaciones de estado y monitor" - -#: ../../include/lib/Dashboard/Widgets/tactical.php:274 -#: ../../include/functions_reporting.php:13949 -msgid "Server performance" -msgstr "Rendimiento del servidor" - -#: ../../include/lib/Dashboard/Widgets/tactical.php:286 -#: ../../include/functions_netflow.php:1183 -#: ../../include/functions_reporting_html.php:4579 -#: ../../include/functions_reporting_html.php:4849 -#: ../../include/functions_reporting_html.php:4986 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:467 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3083 -#: ../../godmode/reporting/reporting_builder.item_editor.php:3150 -#: ../../godmode/wizards/DiscoveryTaskList.class.php:1417 -msgid "Summary" -msgstr "Lista de agentes" - -#: ../../include/lib/Dashboard/Widgets/groups_status.php:158 -#: ../../include/lib/Dashboard/Widgets/groups_status.php:481 -msgid "General group status" -msgstr "Estado general de grupo" - -#: ../../include/lib/Dashboard/Widgets/groups_status.php:435 -msgid "Not agents in this group" -msgstr "No hay agentes en este grupo" - -#: ../../include/lib/Dashboard/Widgets/example.php:158 -#: ../../include/lib/Dashboard/Widgets/example.php:277 -#, php-format -msgid "Welcome message to %s" -msgstr "Mensaje de bienvenida a %s" - -#: ../../include/lib/Dashboard/Widgets/example.php:249 -msgid "This is an example of a dashboard widget. A widget may contain elements" -msgstr "" -"Este es un ejemplo de un widget del dashboard. Un widget puede contener " -"elementos." - -#: ../../include/lib/Dashboard/Widgets/example.php:250 -msgid "" -"To add more elements, click on \"Add widgets\" on the top of this " -"page." -msgstr "" -"Para aƱadir mĆ”s elementos, haz clic en \"Add widgets\" en la parte " -"superior de esta pĆ”gina." - -#: ../../include/lib/Dashboard/Widgets/example.php:251 -#: ../../include/lib/Dashboard/Widgets/example.php:253 -msgid "" -"To delete this message, click on the delete button on top right corner of this " -"element." -msgstr "" -"Para eliminar este mensaje, haz clic sobre el botĆ³n de la esquina derecha de " -"este elemento." - -#: ../../include/lib/Dashboard/Widgets/example.php:252 -msgid "" -"To do so, just click on the title and drag and drop it to the desired place." -msgstr "" -"Para hacer eso, haz clic en el tĆ­tulo, arrastra y suelta el elemento en el " -"lugar deseado." - -#: ../../include/lib/Dashboard/Widgets/example.php:254 -#, php-format -msgid "Thanks for using %s." -msgstr "Gracias por usar %s." - -#: ../../include/lib/Dashboard/Widgets/post.php:158 -#: ../../include/lib/Dashboard/Widgets/post.php:276 -msgid "Panel with a message" -msgstr "Panel con un mensaje" - -#: ../../include/lib/Dashboard/Widgets/clock.php:216 -msgid "Analogic" -msgstr "AnalĆ³gico" - -#: ../../include/lib/Dashboard/Widgets/clock.php:217 -msgid "Digital" -msgstr "Digital" - -#: ../../include/lib/Dashboard/Widgets/module_status.php:413 -#: ../../include/lib/Dashboard/Widgets/module_icon.php:435 -msgid "Size of icon" -msgstr "TamaƱo del icono" - -#: ../../include/lib/Dashboard/Widgets/graph_module_histogram.php:175 -#: ../../include/lib/Dashboard/Widgets/graph_module_histogram.php:431 -msgid "Module histogram" -msgstr "Histograma de mĆ³dulo" - -#: ../../include/lib/Dashboard/Widgets/alerts_fired.php:162 -#: ../../include/lib/Dashboard/Widgets/alerts_fired.php:360 -msgid "Triggered alerts report" -msgstr "Informe de alertas disparadas" - -#: ../../include/lib/Dashboard/Widgets/alerts_fired.php:333 -msgid "Not alert fired" -msgstr "No hay alertas disparadas" - -#: ../../include/lib/Dashboard/Widgets/alerts_fired.php:342 -#: ../../include/lib/Dashboard/Widgets/events_list.php:511 -msgid "You must select some group" -msgstr "Seleccione un grupo" - -#: ../../include/lib/Dashboard/Widgets/agent_module.php:173 -#: ../../include/lib/Dashboard/Widgets/agent_module.php:840 -msgid "Agent/Module View" -msgstr "Vista de Agente/MĆ³dulo" - -#: ../../include/lib/Dashboard/Widgets/agent_module.php:250 -#: ../../include/lib/Dashboard/Widgets/tree_view.php:439 -msgid "Filter modules" -msgstr "Filtrar mĆ³dulos" - -#: ../../include/lib/Dashboard/Widgets/agent_module.php:255 -#: ../../extensions/agents_modules.php:396 -#: ../../godmode/reporting/reporting_builder.item_editor.php:1857 -msgid "Show module status" -msgstr "Mostrar el estado del mĆ³dulo" - -#: ../../include/lib/Dashboard/Widgets/agent_module.php:256 -#: ../../extensions/agents_modules.php:397 -#: ../../godmode/reporting/reporting_builder.item_editor.php:1858 -msgid "Show module data" -msgstr "Mostrar datos del mĆ³dulo" - -#: ../../include/lib/Dashboard/Widgets/agent_module.php:265 -#: ../../extensions/agents_modules.php:400 -#: ../../godmode/reporting/reporting_builder.item_editor.php:1853 -msgid "Information to be shown" -msgstr "InformaciĆ³n que debe mostrarse" - -#: ../../include/lib/Dashboard/Widgets/agent_module.php:536 -#: ../../include/functions_reporting_html.php:2007 -#: ../../enterprise/include/functions_reporting_pdf.php:946 -#, php-format -msgid "%s in %s : NORMAL" -msgstr "%s en %s : NORMAL" - -#: ../../include/lib/Dashboard/Widgets/agent_module.php:552 -#: ../../include/functions_reporting_html.php:1919 -#: ../../enterprise/include/functions_reporting_pdf.php:963 -#, php-format -msgid "%s in %s : CRITICAL" -msgstr "%s en %s : CRƍTICO" - -#: ../../include/lib/Dashboard/Widgets/agent_module.php:568 -#: ../../include/functions_reporting_html.php:1936 -#: ../../enterprise/include/functions_reporting_pdf.php:980 -#, php-format -msgid "%s in %s : WARNING" -msgstr "%s en %s : ADVERTENCIA" - -#: ../../include/lib/Dashboard/Widgets/agent_module.php:584 -#: ../../include/functions_reporting_html.php:1953 -#: ../../enterprise/include/functions_reporting_pdf.php:997 -#, php-format -msgid "%s in %s : UNKNOWN" -msgstr "%s en %s : DESCONOCIDO" - -#: ../../include/lib/Dashboard/Widgets/agent_module.php:600 -#: ../../include/functions_reporting_html.php:1989 -#: ../../enterprise/include/functions_reporting_pdf.php:1014 -#, php-format -msgid "%s in %s : Not initialize" -msgstr "%s en %s : No iniciado" - -#: ../../include/lib/Dashboard/Widgets/agent_module.php:617 -#: ../../include/functions_reporting_html.php:1972 -#: ../../enterprise/include/functions_reporting_pdf.php:1031 -#, php-format -msgid "%s in %s : ALERTS FIRED" -msgstr "%s en %s : ALERTA DISPARADA" - -#: ../../include/lib/Dashboard/Widgets/agent_module.php:640 -#: ../../include/lib/Dashboard/Widget.php:469 -msgid "Please configure this widget before usage" -msgstr "Por favor, configura este widget antes de usarlo." - -#: ../../include/lib/Dashboard/Widgets/wux_transaction_stats.php:172 -#: ../../include/lib/Dashboard/Widgets/wux_transaction_stats.php:378 -msgid "WUX transaction stats" -msgstr "EstadĆ­sticas de transacciones WUX" - -#: ../../include/lib/Dashboard/Widgets/wux_transaction_stats.php:288 -msgid "View all statistics" -msgstr "Ver todas las estadĆ­sticas" - -#: ../../include/lib/Dashboard/Widgets/service_view.php:190 -msgid "Service View" -msgstr "Vista de servicio" - -#: ../../include/lib/Dashboard/Widgets/service_view.php:246 -msgid "Tree" -msgstr "Ɓrbol" - -#: ../../include/lib/Dashboard/Widgets/service_view.php:247 -#: ../../enterprise/include/class/CommandCenter.class.php:453 -msgid "Table" -msgstr "Tabla" - -#: ../../include/lib/Dashboard/Widgets/service_view.php:298 -#: ../../include/lib/Dashboard/Widgets/service_map.php:364 -msgid "The user doesn't have permission to read agents" -msgstr "El usuario no tiene permiso de lectura para agentes" - -#: ../../include/lib/Dashboard/Widgets/service_view.php:456 -msgid "Services view" -msgstr "Vista de servicios" - -#: ../../include/lib/Dashboard/Widgets/network_map.php:258 -msgid "It is recommended to have only one such widget in the control panel." -msgstr "Se recomienda tener solo uno de estos widgets en el panel de control." - -#: ../../include/lib/Dashboard/Widgets/network_map.php:335 -msgid "Introduce x-axis data. Right=positive Left=negative" -msgstr "Introducir datos en el eje X. Derecha = positivo / Izquierda = negativo." - -#: ../../include/lib/Dashboard/Widgets/network_map.php:339 -msgid "X offset" -msgstr "Desplazamiento en X" - -#: ../../include/lib/Dashboard/Widgets/network_map.php:350 -msgid "Introduce Y-axis data. Top=positive Bottom=negative" -msgstr "Introducir datos en el eje Y. Arriba = positivo / Abajo = negativo" - -#: ../../include/lib/Dashboard/Widgets/network_map.php:354 -msgid "Y offset" -msgstr "Desplazamiento en Y" - -#: ../../include/lib/Dashboard/Widgets/network_map.php:378 -msgid "Zoom level" -msgstr "Nivel de zoom" - -#: ../../include/lib/Dashboard/Widgets/service_map.php:192 -#: ../../enterprise/operation/services/services.service.php:63 -#: ../../enterprise/operation/services/services.service_map.php:78 -msgid "Service Map" -msgstr "Mapa de servicio" - -#: ../../include/lib/Dashboard/Widgets/service_map.php:297 -msgid "" -"ZOOM functionality is only available when there is only one such widget in the " -"dashboard" -msgstr "" -"La funcionalidad ZOOM solo estĆ” disponible cuando solo hay un widget en el " -"panel de control" - -#: ../../include/lib/Dashboard/Widgets/service_map.php:304 -#: ../../enterprise/include/functions_visual_map_editor.php:30 -#: ../../enterprise/include/functions_visual_map_editor.php:41 -#: ../../enterprise/include/functions_visual_map_editor.php:54 -#: ../../enterprise/include/functions_visual_map_editor.php:85 -#: ../../enterprise/include/functions_services.php:1712 -#: ../../enterprise/include/functions_reporting.php:6136 -#: ../../enterprise/include/functions_visual_map.php:539 -#: ../../enterprise/include/rest-api/models/VisualConsole/Items/Service.php:288 -#: ../../enterprise/godmode/services/services.elements.php:95 -#: ../../enterprise/godmode/services/services.elements.php:181 -#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:25 -#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:166 -#: ../../godmode/reporting/reporting_builder.item_editor.php:3808 -msgid "Service" -msgstr "Servicio" - -#: ../../include/lib/Dashboard/Widgets/service_map.php:317 -msgid "Enable sunburst" -msgstr "Habilitar sunburst" - -#: ../../include/lib/Dashboard/Widgets/service_map.php:375 -msgid "Missing Service id" -msgstr "Falta el ID de servicio" - -#: ../../include/lib/Dashboard/Widgets/service_map.php:437 -#: ../../enterprise/operation/services/services.php:164 -#: ../../enterprise/godmode/services/services.elements.php:766 -#: ../../enterprise/godmode/services/services.service.php:465 -msgid "Service map" -msgstr "Mapa del servicio" - -#: ../../include/lib/Dashboard/Widgets/events_list.php:175 -#: ../../include/lib/Dashboard/Widgets/events_list.php:810 -msgid "List of latest events" -msgstr "Lista de Ćŗltimos eventos" - -#: ../../include/lib/Dashboard/Widgets/events_list.php:294 -msgid "Custom filters" -msgstr "Filtros personalizados" - -#: ../../include/lib/Dashboard/Widgets/events_list.php:359 -msgid "Limit" -msgstr "LĆ­mite" - -#: ../../include/lib/Dashboard/Widgets/events_list.php:372 -#: ../../include/functions_events.php:3379 -#: ../../include/functions_events.php:3385 -#: ../../include/functions_events.php:3407 -msgid "All event" -msgstr "Todos los eventos" - -#: ../../include/lib/Dashboard/Widgets/events_list.php:373 -#: ../../include/functions_events.php:3381 -#: ../../include/functions_events.php:3415 -msgid "Only validated" -msgstr "Solo eventos validados" - -#: ../../include/lib/Dashboard/Widgets/events_list.php:374 -msgid "Only pending" -msgstr "Solo pendientes" - -#: ../../include/lib/Dashboard/Widgets/events_list.php:436 -#: ../../include/functions_html.php:1248 ../../include/functions_html.php:1400 -#: ../../enterprise/godmode/massive/massive_add_modules_policy.php:115 -#: ../../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 -#: ../../godmode/massive/massive_add_alerts.php:228 -#: ../../godmode/massive/massive_delete_modules.php:386 -#: ../../godmode/massive/massive_copy_modules.php:112 -#: ../../godmode/massive/massive_copy_modules.php:265 -#: ../../godmode/massive/massive_standby_alerts.php:200 -#: ../../godmode/massive/massive_add_action_alerts.php:209 -#: ../../godmode/massive/massive_edit_agents.php:520 -#: ../../godmode/massive/massive_delete_action_alerts.php:221 -#: ../../godmode/massive/massive_delete_alerts.php:311 -#: ../../godmode/massive/massive_delete_agents.php:199 -#: ../../godmode/massive/massive_enable_disable_alerts.php:171 -#: ../../godmode/massive/massive_edit_modules.php:370 -msgid "Group recursion" -msgstr "RecursiĆ³n de grupos" - -#: ../../include/lib/Dashboard/Widgets/events_list.php:792 -msgid "There are no events matching selected search filters" -msgstr "No hay eventos que coincidan con los filtros seleccionados" - #: ../../include/lib/Dashboard/Widgets/tree_view.php:341 msgid "Type tree" msgstr "Tipo de Ć”rbol" @@ -19353,11 +46879,6 @@ msgstr "Abrir todos los grupos" msgid "Agents status" msgstr "Estado de agente" -#: ../../include/lib/Dashboard/Widgets/tree_view.php:405 -#: ../../godmode/massive/massive_edit_modules.php:506 -msgid "Filter agents" -msgstr "Filtrar agentes" - #: ../../include/lib/Dashboard/Widgets/tree_view.php:427 msgid "Modules status" msgstr "Estado de mĆ³dulos" @@ -19371,4433 +46892,108 @@ msgstr "" "El usuario no tiene permisos para leer agentes. PĆ³ngase en contacto con su " "administrador de %s." -#: ../../include/lib/Dashboard/Widgets/module_icon.php:178 -#: ../../include/lib/Dashboard/Widgets/module_icon.php:540 -msgid "Icon and module value" -msgstr "Valor de mĆ³dulo e icono" +#: ../../include/lib/Dashboard/Widgets/tree_view.php:605 ../../operation/tree.php:423 +msgid "Operating systems found" +msgstr "Sistemas operativos encontrados" + +#: ../../include/lib/Dashboard/Widgets/tree_view.php:609 ../../operation/tree.php:426 +msgid "Tags found" +msgstr "Etiquetas encontradas" + +#: ../../include/lib/Dashboard/Widgets/tree_view.php:613 ../../operation/tree.php:429 +msgid "Module Groups found" +msgstr "Grupos de mĆ³dulos encontrados" + +#: ../../include/lib/Dashboard/Widgets/tree_view.php:617 ../../operation/tree.php:432 +#: ../../operation/search_main.php:56 +msgid "Modules found" +msgstr "MĆ³dulos encontrados" + +#: ../../include/lib/Dashboard/Widgets/tree_view.php:622 ../../operation/tree.php:436 +msgid "Groups found" +msgstr "Grupos encontrados" #: ../../include/lib/Dashboard/Widgets/top_n.php:163 #: ../../include/lib/Dashboard/Widgets/top_n.php:528 msgid "Top N of agent modules" msgstr "Primeros N mĆ³dulos de agente" -#: ../../include/lib/Dashboard/Widgets/top_n.php:207 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2032 -msgid "" -"Case insensitive regular expression for agent name. For example: Network.* " -"will match with the following agent names: network_agent1, NetworK CHECKS" -msgstr "" -"ExpresiĆ³n regular no sensible a mayĆŗsculas/minĆŗsculas, para buscar el agente. " -"Por ejemplo: Network.* coincidirĆ­a con los siguientes nombres de agentes: " -"network_agent1, NetworK CHECKS" - #: ../../include/lib/Dashboard/Widgets/top_n.php:222 msgid "" -"Case insensitive regular expression or string for module name. For example: ." -"*usage.* will match: cpu_usage, vram usage." +"Case insensitive regular expression or string for module name. For example: .*usage.* " +"will match: cpu_usage, vram usage." msgstr "" -"ExpresiĆ³n regular o cadena para el nombre del mĆ³dulo que diferencia entre " -"mayĆŗsculas y minĆŗsculas. Por ejemplo: .*usage.* coincidirĆ” con: cpu_usage o " -"vram usage." - -#: ../../include/lib/Dashboard/Widgets/top_n.php:249 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2424 -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:363 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2374 -msgid "Quantity (n)" -msgstr "Cantidad (n)" - -#: ../../include/lib/Dashboard/Widgets/top_n.php:261 -#: ../../enterprise/operation/log/log_viewer.php:497 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:63 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:202 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2398 -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:351 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:317 -#: ../../godmode/reporting/reporting_builder.item_editor.php:64 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2348 -msgid "Ascending" -msgstr "Ascendente" - -#: ../../include/lib/Dashboard/Widgets/top_n.php:262 -#: ../../enterprise/operation/log/log_viewer.php:496 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:64 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:203 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2405 -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:353 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:324 -#: ../../godmode/reporting/reporting_builder.item_editor.php:65 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2355 -msgid "Descending" -msgstr "Descendente" - -#: ../../include/lib/Dashboard/Widgets/top_n.php:263 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2412 -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:355 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:331 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2362 -msgid "By agent name" -msgstr "Por nombre de agente" - -#: ../../include/lib/Dashboard/Widgets/top_n.php:267 -#: ../../enterprise/operation/log/log_viewer.php:500 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:450 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2395 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2964 -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:346 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2345 -#: ../../godmode/reporting/reporting_builder.item_editor.php:3041 -#: ../../godmode/netflow/nf_item_list.php:173 -msgid "Order" -msgstr "Orden" +"ExpresiĆ³n regular o cadena para el nombre del mĆ³dulo que diferencia entre mayĆŗsculas " +"y minĆŗsculas. Por ejemplo: .*usage.* coincidirĆ” con: cpu_usage o vram usage." #: ../../include/lib/Dashboard/Widgets/top_n.php:280 msgid "Avg." msgstr "Media" -#: ../../include/lib/Dashboard/Widgets/top_n.php:281 -#: ../../include/functions_alerts.php:675 ../../include/functions_treeview.php:92 -#: ../../include/functions_treeview.php:104 -#: ../../include/functions_reporting_html.php:5242 -#: ../../enterprise/godmode/modules/configure_local_component.php:320 -#: ../../enterprise/godmode/modules/configure_local_component.php:363 -#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:517 -#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:608 -#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:830 -#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:308 -#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:357 -#: ../../godmode/modules/manage_network_components_form_wizard.php:389 -#: ../../godmode/modules/manage_network_components_form_wizard.php:424 -#: ../../godmode/modules/manage_network_components_form_common.php:174 -#: ../../godmode/modules/manage_network_components_form_common.php:215 -#: ../../godmode/massive/massive_edit_modules.php:580 -#: ../../godmode/massive/massive_edit_modules.php:671 -#: ../../godmode/massive/massive_edit_modules.php:887 -#: ../../godmode/agentes/module_manager_editor_common.php:428 -#: ../../godmode/agentes/module_manager_editor_common.php:489 -#: ../../godmode/alerts/configure_alert_template.php:862 -msgid "Max." -msgstr "MĆ”x." - -#: ../../include/lib/Dashboard/Widgets/top_n.php:282 -#: ../../include/functions_alerts.php:676 ../../include/functions_treeview.php:92 -#: ../../include/functions_treeview.php:104 -#: ../../include/functions_reporting_html.php:5241 -#: ../../enterprise/godmode/modules/configure_local_component.php:311 -#: ../../enterprise/godmode/modules/configure_local_component.php:354 -#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:502 -#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:593 -#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:828 -#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:293 -#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:342 -#: ../../godmode/modules/manage_network_components_form_wizard.php:387 -#: ../../godmode/modules/manage_network_components_form_wizard.php:415 -#: ../../godmode/modules/manage_network_components_form_common.php:165 -#: ../../godmode/modules/manage_network_components_form_common.php:206 -#: ../../godmode/massive/massive_edit_modules.php:565 -#: ../../godmode/massive/massive_edit_modules.php:656 -#: ../../godmode/massive/massive_edit_modules.php:885 -#: ../../godmode/alerts/configure_alert_template.php:850 -msgid "Min." -msgstr "MĆ­n." - #: ../../include/lib/Dashboard/Widgets/top_n.php:448 msgid "There are no agents/modules found matching filter set" -msgstr "" -"No se han encontrado agentes/mĆ³dulos que coincidan con los filtros establecidos" +msgstr "No se han encontrado agentes/mĆ³dulos que coincidan con los filtros establecidos" -#: ../../include/lib/Dashboard/Widget.php:477 -msgid "Widget cannot be loaded" -msgstr "El widget no se puede cargar." +#: ../../include/lib/Dashboard/Widgets/tactical.php:275 +msgid "Status and Monitor checks" +msgstr "Comprobaciones de estado y monitor" -#: ../../include/lib/Dashboard/Widget.php:481 -msgid "Please, configure the widget again to recover it" -msgstr "Por favor, configura el widget otra vez para recuperarlo." +#: ../../include/lib/Dashboard/Widgets/clock.php:216 +msgid "Analogic" +msgstr "AnalĆ³gico" -#: ../../include/lib/Dashboard/Widget.php:588 -#: ../../include/functions_events.php:4992 -#: ../../enterprise/godmode/policies/policy_queue.php:670 -#: ../../enterprise/godmode/policies/policy_linking.php:153 -#: ../../godmode/massive/massive_delete_agents.php:252 -msgid "Node" -msgstr "Nodo" +#: ../../include/lib/Dashboard/Widgets/clock.php:217 +msgid "Digital" +msgstr "Digital" -#: ../../include/lib/Dashboard/Widget.php:595 -#: ../../enterprise/meta/advanced/policymanager.sync.php:308 -#: ../../extensions/dbmanager.php:204 -msgid "This metaconsole" -msgstr "Esta Metaconsola" +#: ../../include/lib/Dashboard/Widgets/top_n_events_by_group.php:163 +#: ../../include/lib/Dashboard/Widgets/top_n_events_by_group.php:502 +msgid "Top N events by agent" +msgstr "Primeros N eventos por agente" -#: ../../include/functions_tags.php:712 -msgid "Click here to open a popup window with URL tag" -msgstr "Haz clic aquĆ­ para abrir una ventana popup con la etiqueta URL." +#: ../../include/lib/Core/DBMaintainer.php:173 +msgid "Connection problems" +msgstr "ConexiĆ³n fallida" -#: ../../include/auth/mysql.php:319 ../../include/auth/mysql.php:347 -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:334 ../../include/auth/mysql.php:397 -#: ../../include/auth/mysql.php:412 ../../include/auth/mysql.php:443 -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:360 -msgid "" -"Ooops User not found in \n" -"\t\t\t\tdatabase or incorrect password" -msgstr "" -"Ā”Uuups! Usuario no encontrado en \n" -"\t\t\t\tla base de datos o contraseƱa incorrecta." - -#: ../../include/auth/mysql.php:372 ../../include/auth/mysql.php:402 -#: ../../include/auth/mysql.php:437 ../../enterprise/include/auth/saml.php:241 -msgid "Please, login into metaconsole first" -msgstr "Por favor, inicie sesiĆ³n en la metaconsola primero" - -#: ../../include/auth/mysql.php:718 -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:766 -msgid "Your installation of PHP does not support LDAP" -msgstr "Su instalaciĆ³n de PHP no es compatible con LDAP." - -#: ../../include/functions_events.php:134 -msgid "NEW" -msgstr "NUEVO" - -#: ../../include/functions_events.php:137 -msgid "IN PROCESS" -msgstr "EN PROCESO" - -#: ../../include/functions_events.php:140 -msgid "VALIDATED" -msgstr "VALIDADO" - -#: ../../include/functions_events.php:191 -#: ../../enterprise/meta/include/functions_events_meta.php:58 -msgid "Event id" -msgstr "IdentificaciĆ³n del evento" - -#: ../../include/functions_events.php:192 ../../include/functions_events.php:2611 -#: ../../include/functions_events.php:4985 -#: ../../include/functions_reporting_html.php:1282 -#: ../../include/functions_reporting_html.php:1290 -#: ../../include/functions_reporting_html.php:5017 -#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:419 -#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:479 -#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:526 -#: ../../enterprise/meta/include/functions_events_meta.php:62 -msgid "Event name" -msgstr "Nombre del evento" - -#: ../../include/functions_events.php:199 -msgid "Agent module" -msgstr "MĆ³dulo de agente" - -#: ../../include/functions_events.php:205 ../../include/functions_events.php:4704 -#: ../../enterprise/meta/include/functions_events_meta.php:114 -msgid "Extra id" -msgstr "ID extra" - -#: ../../include/functions_events.php:209 -#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:69 -#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:252 -#: ../../enterprise/meta/include/functions_events_meta.php:130 -#: ../../enterprise/godmode/setup/setup_metaconsole.php:198 -#: ../../enterprise/godmode/setup/setup_metaconsole.php:273 -#: ../../godmode/wizards/DiscoveryTaskList.class.php:591 -msgid "Server name" -msgstr "Nombre del servidor" - -#: ../../include/functions_events.php:212 -msgid "Module custom id" -msgstr "ID personalizada de mĆ³dulo" - -#: ../../include/functions_events.php:230 -#: ../../godmode/events/custom_events.php:94 -msgid "Event Id" -msgstr "Id de evento" - -#: ../../include/functions_events.php:242 -#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:123 -#: ../../enterprise/include/functions_inventory.php:142 -#: ../../enterprise/include/functions_inventory.php:176 -#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:461 -msgid "Agent alias" -msgstr "Alias del agente" - -#: ../../include/functions_events.php:278 -#: ../../godmode/events/custom_events.php:110 -msgid "Extra Id" -msgstr "ID extra" - -#: ../../include/functions_events.php:290 -#: ../../godmode/events/custom_events.php:114 -msgid "Server Name" -msgstr "Nombre del servidor" - -#: ../../include/functions_events.php:299 ../../include/functions_events.php:5161 -#: ../../godmode/events/custom_events.php:118 -msgid "Module custom ID" -msgstr "ID personalizada de mĆ”dulo" - -#: ../../include/functions_events.php:308 -#: ../../godmode/events/custom_events.php:117 -msgid "Severity mini" -msgstr "Prioridad baja" - -#: ../../include/functions_events.php:312 -#: ../../godmode/events/custom_events.php:98 -msgid "Agent IP" -msgstr "IP del agente" - -#: ../../include/functions_events.php:2629 -#: ../../enterprise/operation/agentes/policy_view.php:70 -msgid "V." -msgstr "V." - -#: ../../include/functions_events.php:2726 -msgid "Events -by module-" -msgstr "Eventos -por mĆ³dulo-" - -#: ../../include/functions_events.php:2873 -msgid "Going to unknown" -msgstr "Cambiando a estado desconocido" - -#: ../../include/functions_events.php:2877 -#: ../../include/functions_events.php:3264 ../../include/functions.php:1229 -msgid "Alert recovered" -msgstr "Alerta recuperada" - -#: ../../include/functions_events.php:2881 -msgid "Alert manually validated" -msgstr "Alerta validada manualmente" - -#: ../../include/functions_events.php:2885 -msgid "Going from critical to warning" -msgstr "Cambiando de crĆ­tico a advertencia" - -#: ../../include/functions_events.php:2891 -msgid "Going up to critical state" -msgstr "Entrando en estado crĆ­tico" - -#: ../../include/functions_events.php:2897 -msgid "Going up to normal state" -msgstr "Subiendo a estado normal" - -#: ../../include/functions_events.php:2901 -msgid "Going down from normal to warning" -msgstr "Cambiando de normal a advertencia" - -#: ../../include/functions_events.php:2913 -msgid "Discovery server detected a new host" -msgstr "El servidor Discovery ha detectado un host nuevo" - -#: ../../include/functions_events.php:2917 -msgid "New agent created" -msgstr "Agente nuevo creado" - -#: ../../include/functions_events.php:2921 -#: ../../include/functions_events.php:3288 ../../include/functions.php:1237 -msgid "Configuration change" -msgstr "Cambio de configuraciĆ³n" - -#: ../../include/functions_events.php:2925 -#: ../../include/functions_events.php:3268 ../../include/functions.php:1230 -msgid "Alert ceased" -msgstr "Alerta finalizada" - -#: ../../include/functions_events.php:2934 -msgid "Unknown type:" -msgstr "Tipo desconocido:" - -#: ../../include/functions_events.php:3248 ../../include/functions.php:1222 -msgid "Monitor Critical" -msgstr "Monitor en estado crĆ­tico" - -#: ../../include/functions_events.php:3252 ../../include/functions.php:1223 -msgid "Monitor Warning" -msgstr "Monitor en estado de advertencia" - -#: ../../include/functions_events.php:3256 ../../include/functions.php:1224 -msgid "Monitor Normal" -msgstr "Monitor en estado normal" - -#: ../../include/functions_events.php:3272 ../../include/functions.php:1231 -msgid "Alert manual validation" -msgstr "ValidaciĆ³n manual de alerta" - -#: ../../include/functions_events.php:3276 ../../include/functions.php:1234 -msgid "Recon host detected" -msgstr "Equipo de red detectado con recon" - -#: ../../include/functions_events.php:3296 ../../include/functions.php:1238 -#: ../../enterprise/views/ncm/snippets/edit.php:42 -#: ../../enterprise/views/ncm/snippets/list.php:32 -#: ../../enterprise/views/ncm/firmwares/edit.php:41 -#: ../../enterprise/views/ncm/firmwares/list.php:32 -#: ../../enterprise/views/ncm/vendors/edit.php:35 -#: ../../enterprise/views/ncm/vendors/list.php:32 -#: ../../enterprise/views/ncm/devices/list.php:32 -#: ../../enterprise/views/ncm/devices/list.php:67 -#: ../../enterprise/views/ncm/templates/edit.php:42 -#: ../../enterprise/views/ncm/templates/list.php:32 -#: ../../enterprise/views/ncm/models/edit.php:37 -#: ../../enterprise/views/ncm/models/list.php:32 -msgid "Network configuration manager" -msgstr "Administrador de configuraciĆ³n de red" - -#: ../../include/functions_events.php:3332 ../../include/functions_graph.php:3538 -#: ../../include/functions_graph.php:3539 ../../include/functions_graph.php:5119 -#: ../../include/functions.php:1027 ../../include/functions.php:1270 -#: ../../include/functions.php:1307 -msgid "Informational" -msgstr "Informativo" - -#: ../../include/functions_events.php:3380 -#: ../../include/functions_events.php:3411 -msgid "Only new" -msgstr "Solo nuevos" - -#: ../../include/functions_events.php:3382 -#: ../../include/functions_events.php:3419 -msgid "Only in process" -msgstr "Solo en proceso" - -#: ../../include/functions_events.php:3383 -#: ../../include/functions_events.php:3423 -msgid "Only not validated" -msgstr "Solo no validados" - -#: ../../include/functions_events.php:3386 -#: ../../include/functions_events.php:3674 -#: ../../enterprise/meta/monitoring/wizard/wizard.php:139 -msgid "New" -msgstr "Nuevo" - -#: ../../include/functions_events.php:3388 -#: ../../include/functions_events.php:3675 -#: ../../include/functions_events.php:3684 -msgid "In process" -msgstr "En proceso" - -#: ../../include/functions_events.php:3389 -msgid "Not Validated" -msgstr "No validado" - -#: ../../include/functions_events.php:3578 -msgid "Change owner" -msgstr "Cambiar propietario" - -#: ../../include/functions_events.php:3659 -msgid "Change status" -msgstr "Cambiar estado" - -#: ../../include/functions_events.php:3801 -msgid "Custom responses" -msgstr "Respuesta personalizada" - -#: ../../include/functions_events.php:4379 -msgid "Extended information" -msgstr "InformaciĆ³n extendida" - -#: ../../include/functions_events.php:4407 -msgid "There was an error connecting to the node" -msgstr "Error al conectarse al nodo" - -#: ../../include/functions_events.php:4446 -msgid "Agent details" -msgstr "Detalles del agente" - -#: ../../include/functions_events.php:4460 -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:4511 -msgid "View custom fields" -msgstr "Ver campos personalizados" - -#: ../../include/functions_events.php:4534 -msgid "Module details" -msgstr "Detalles del mĆ³dulo" - -#: ../../include/functions_events.php:4550 -msgid "No assigned" -msgstr "No asignado" - -#: ../../include/functions_events.php:4627 ../../godmode/alerts/alert_view.php:65 -#: ../../godmode/alerts/alert_view.php:280 -msgid "Alert details" -msgstr "Detalles de alerta" - -#: ../../include/functions_events.php:4641 -#: ../../include/functions_events.php:4650 -msgid "Go to data overview" -msgstr "Ir a la vista general de datos" - -#: ../../include/functions_events.php:4766 +#: ../../include/lib/View.php:69 #, php-format -msgid "Invalid custom data: %s" -msgstr "Datos personalizados no vĆ”lidos: %s" +msgid "View %s not found" +msgstr "Vista %s no encontrada" -#: ../../include/functions_events.php:5001 -msgid "First event" -msgstr "Primer evento" +#: ../../include/lib/Module.php:258 +msgid " error: Module has no agent assigned." +msgstr " error: El mĆ³dulo no tiene agente asignado" -#: ../../include/functions_events.php:5001 -msgid "Last event" -msgstr "ƚltimo evento" +#: ../../include/lib/Module.php:1039 +msgid "Module name empty." +msgstr "Nombre de mĆ³dulo vacĆ­o." -#: ../../include/functions_events.php:5081 ../../mobile/operation/events.php:540 -msgid "Acknowledged by" -msgstr "Admitido por" +#: ../../include/lib/Module.php:1045 +msgid "Invalid characters in module name" +msgstr "Caracteres no vĆ”lidos en el nombre del mĆ³dulo" -#: ../../include/functions_events.php:5085 -msgid "Autovalidated" -msgstr "Autovalidado" +#: ../../include/lib/Module.php:1051 +msgid "Module already exists please select another name or agent." +msgstr "Este mĆ³dulo ya existe. Seleccione otro nombre o agente." -#: ../../include/functions_events.php:5126 -#: ../../godmode/groups/configure_group.php:246 -msgid "Contact" -msgstr "Contacto" +#: ../../include/lib/Module.php:1057 +msgid "Insufficent permissions to perform this action" +msgstr "Permisos insuficientes para llevar a cabo esta acciĆ³n" -#: ../../include/functions_events.php:5151 -msgid "ID extra" -msgstr "ID extra" - -#: ../../include/functions_events.php:5216 -msgid "There are no comments" -msgstr "No hay comentarios" - -#: ../../include/functions_events.php:5373 -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 " -"operate with them. The operation, when event replication is enabled, must be " -"done only in the Metaconsole." -msgstr "" -"Si la replicaciĆ³n de evento estĆ” en proceso, no sera posible aƱadir " -"comentarios. Esta opciĆ³n solo permite a los usuarios locales de Pandora FMS " -"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:5577 -msgid "Pandora System" -msgstr "Sistema de Pandora FMS" - -#: ../../include/functions_events.php:5776 -msgid "Validated but not assigned" -msgstr "Validado pero no asignado" - -#: ../../include/functions_events.php:6723 -msgid "Agent Module" -msgstr "MĆ³dulo del agente" - -#: ../../include/functions_db.php:147 +#: ../../include/lib/Module.php:1064 #, php-format -msgid "Error connecting to database %s at %s." -msgstr "Error al conectar a la base de datos %s el %s" +msgid "Error while processing: %s" +msgstr "Error al procesar: %s" -#: ../../include/functions_db.php:1900 -msgid "Database debug" -msgstr "Depurar BD" - -#: ../../include/functions_db.php:1917 -msgid "SQL sentence" -msgstr "Consulta SQL" - -#: ../../include/functions_db.php:1918 -#: ../../include/functions_reporting_html.php:4046 -#: ../../include/functions_reporting_html.php:4193 -#: ../../include/functions_reporting_html.php:4534 -#: ../../include/functions_reporting_html.php:4545 -#: ../../enterprise/views/ncm/agent/details.php:90 -#: ../../enterprise/include/class/CommandCenter.class.php:468 -#: ../../extensions/api_checker.php:219 ../../extensions/api_checker.php:226 -msgid "Result" -msgstr "Resultado" - -#: ../../include/functions_db.php:1919 -msgid "Rows" -msgstr "Filas" - -#: ../../include/functions_db.php:1920 -msgid "Saved" -msgstr "Guardado" - -#: ../../include/functions_db.php:1921 -msgid "Time (ms)" -msgstr "Tiempo (ms)" - -#: ../../include/functions_groups.php:75 -msgid "Alert Actions" -msgstr "Acciones de alerta" - -#: ../../include/functions_groups.php:91 -msgid "Alert Templates" -msgstr "Plantillas de alerta" - -#: ../../include/functions_groups.php:155 -msgid "Layout visual console" -msgstr "DiseƱo de la consola visual" - -#: ../../include/functions_groups.php:171 -msgid "Plannet down time" -msgstr "Tiempo de inactividad estipulado" - -#: ../../include/functions_groups.php:203 -msgid "GIS maps" -msgstr "Mapas GIS" - -#: ../../include/functions_groups.php:219 -msgid "GIS connections" -msgstr "Conexiones GIS" - -#: ../../include/functions_groups.php:235 -msgid "GIS map layers" -msgstr "Mapas GIS adicionales" - -#: ../../include/functions_groups.php:251 -msgid "Network maps" -msgstr "Mapas de red" - -#: ../../include/functions_config.php:144 -msgid "Failed updated: User did not login." -msgstr "Fallo de actualizaciĆ³n: el usuario no iniciĆ³ sesiĆ³n" - -#: ../../include/functions_config.php:152 -msgid "Failed updated: User is not admin." -msgstr "Fallo de actualizaciĆ³n: el usuario no es administrador" - -#: ../../include/functions_config.php:178 -#: ../../enterprise/meta/include/functions_meta.php:77 -#: ../../enterprise/meta/advanced/metasetup.setup.php:113 -msgid "Language settings" -msgstr "ConfiguraciĆ³n de idioma" - -#: ../../include/functions_config.php:182 -#: ../../enterprise/meta/include/functions_meta.php:138 -#: ../../enterprise/meta/advanced/metasetup.setup.php:155 -#: ../../godmode/setup/setup_general.php:88 -msgid "Remote config directory" -msgstr "Directorio remoto de configuraciĆ³n" - -#: ../../include/functions_config.php:186 -msgid "phantomjs config directory" -msgstr "Directorio de configuraciĆ³n de phatomjs" - -#: ../../include/functions_config.php:190 -#: ../../enterprise/meta/include/functions_meta.php:82 -#: ../../enterprise/meta/advanced/metasetup.setup.php:126 -#: ../../godmode/setup/setup_general.php:110 -msgid "Auto login (hash) password" -msgstr "ContraseƱa (Ā«hashĀ») de inicio de sesiĆ³n automĆ”tico" - -#: ../../include/functions_config.php:194 -#: ../../enterprise/meta/include/functions_meta.php:92 -#: ../../enterprise/meta/advanced/metasetup.setup.php:142 -#: ../../godmode/setup/setup_general.php:124 -msgid "Time source" -msgstr "Hora de referencia" - -#: ../../include/functions_config.php:198 -#: ../../godmode/setup/setup_general.php:137 -msgid "Automatic check for updates" -msgstr "ComprobaciĆ³n automĆ”tica de actualizaciones" - -#: ../../include/functions_config.php:202 -msgid "SSL cert path" -msgstr "Ruta del certificado SSL" - -#: ../../include/functions_config.php:206 -#: ../../enterprise/meta/include/functions_meta.php:102 -#: ../../enterprise/meta/advanced/metasetup.setup.php:148 -#: ../../godmode/setup/setup_general.php:149 -msgid "Enforce https" -msgstr "Forzar https" - -#: ../../include/functions_config.php:210 -msgid "Use cert." -msgstr "Usar certificado" - -#: ../../include/functions_config.php:217 -#: ../../enterprise/meta/include/functions_meta.php:127 -#: ../../enterprise/meta/advanced/metasetup.setup.php:152 -#: ../../godmode/setup/setup_general.php:183 -msgid "Attachment store" -msgstr "Almacenamiento de adjuntos" - -#: ../../include/functions_config.php:219 -#: ../../enterprise/meta/include/functions_meta.php:122 -#: ../../enterprise/meta/advanced/cron_main.php:159 -#: ../../enterprise/meta/advanced/cron_main.php:203 -#: ../../enterprise/meta/advanced/cron_main.php:296 -#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:213 -#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:276 -#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:371 -msgid "Path doesn't exists or is not writable" -msgstr "La ruta no existe o no se puede escribir en ella." - -#: ../../include/functions_config.php:224 -#: ../../enterprise/meta/include/functions_meta.php:120 -msgid "Attachment store." -msgstr "Almacenamiento de adjuntos." - -#: ../../include/functions_config.php:230 -#: ../../enterprise/meta/include/functions_meta.php:238 -#: ../../enterprise/meta/advanced/metasetup.setup.php:272 -#: ../../godmode/setup/setup_general.php:193 -msgid "IP list with API access" -msgstr "Lista de IPs con acceso a la API" - -#: ../../include/functions_config.php:234 -#: ../../enterprise/meta/include/functions_meta.php:218 -#: ../../enterprise/meta/include/functions_meta.php:228 -#: ../../enterprise/meta/advanced/metasetup.setup.php:267 -#: ../../enterprise/meta/advanced/metasetup.consoles.php:533 -#: ../../enterprise/godmode/setup/setup_metaconsole.php:210 -#: ../../godmode/setup/setup_general.php:212 -msgid "API password" -msgstr "ContraseƱa de la API" - -#: ../../include/functions_config.php:238 -#: ../../godmode/setup/setup_general.php:223 -msgid "Enable GIS features" -msgstr "Habilitar funcionalidades GIS" - -#: ../../include/functions_config.php:242 -msgid "Integria inventory" -msgstr "Inventario Integria IMS" - -#: ../../include/functions_config.php:246 ../../include/functions_config.php:1731 -msgid "Integria API password" -msgstr "ContraseƱa de la API de Integria IMS" - -#: ../../include/functions_config.php:250 -msgid "Integria URL" -msgstr "URL de Integria IMS" - -#: ../../include/functions_config.php:254 -#: ../../godmode/setup/setup_general.php:231 -msgid "Enable Netflow" -msgstr "Activar Netflow" - -#: ../../include/functions_config.php:259 -#: ../../include/functions_register.php:164 -#: ../../enterprise/meta/include/functions_meta.php:158 -#: ../../enterprise/meta/advanced/metasetup.setup.php:191 -#: ../../godmode/setup/setup_general.php:279 -msgid "Timezone setup" -msgstr "ConfiguraciĆ³n de zona horaria" - -#: ../../include/functions_config.php:284 -msgid "License information" -msgstr "InformaciĆ³n sobre la licencia" - -#: ../../include/functions_config.php:290 -#: ../../enterprise/meta/include/functions_meta.php:168 -#: ../../enterprise/meta/advanced/metasetup.setup.php:197 -#: ../../godmode/setup/setup_general.php:319 -msgid "Public URL" -msgstr "URL pĆŗblica" - -#: ../../include/functions_config.php:294 -#: ../../enterprise/meta/include/functions_meta.php:178 -#: ../../enterprise/meta/advanced/metasetup.setup.php:201 -#: ../../godmode/setup/setup_general.php:329 -msgid "Force use Public URL" -msgstr "Forzar el uso de la URL pĆŗblica" - -#: ../../include/functions_config.php:298 -#: ../../enterprise/meta/include/functions_meta.php:188 -#: ../../enterprise/meta/advanced/metasetup.setup.php:215 -#: ../../godmode/setup/setup_general.php:343 -msgid "Public URL host exclusions" -msgstr "Exclusiones del host de URL pĆŗblica" - -#: ../../include/functions_config.php:302 -#: ../../godmode/setup/setup_general.php:353 -msgid "Referer security" -msgstr "Seguridad de Referer" - -#: ../../include/functions_config.php:306 -#: ../../godmode/setup/setup_general.php:361 -msgid "Event storm protection" -msgstr "ProtecciĆ³n de tormenta de eventos" - -#: ../../include/functions_config.php:310 -#: ../../enterprise/meta/include/functions_meta.php:208 -#: ../../enterprise/meta/advanced/metasetup.setup.php:222 -#: ../../godmode/setup/setup_general.php:370 -msgid "Command Snapshot" -msgstr "Salida de comandos como capturas" - -#: ../../include/functions_config.php:314 -msgid "Use custom encoding" -msgstr "Use codificaciĆ³n personalizada" - -#: ../../include/functions_config.php:318 -#: ../../godmode/setup/setup_general.php:386 -msgid "Server logs directory" -msgstr "Directorio de logs del servidor" - -#: ../../include/functions_config.php:322 -#: ../../godmode/setup/setup_general.php:396 -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" - -#: ../../include/functions_config.php:326 -#: ../../godmode/setup/setup_general.php:411 -msgid "Tutorial mode" -msgstr "Modo tutorial" - -#: ../../include/functions_config.php:330 -#: ../../godmode/setup/setup_general.php:425 -msgid "Allow create scheduled downtimes in the past" -msgstr "" -"Permitir la creaciĆ³n de paradas planificadas con fecha anterior a la actual" - -#: ../../include/functions_config.php:334 -msgid "Limit parameters bulk" -msgstr "LĆ­mite de operaciones en bloque" - -#: ../../include/functions_config.php:338 -msgid "Identification_reminder" -msgstr "Recordatorio de identificaciĆ³n" - -#: ../../include/functions_config.php:342 -msgid "Include_agents" -msgstr "Incluir agentes" - -#: ../../include/functions_config.php:346 -msgid "alias_as_name" -msgstr "Alias como nombre" - -#: ../../include/functions_config.php:350 -msgid "Console log enabled" -msgstr "Log de consola habilitado" - -#: ../../include/functions_config.php:354 -msgid "Audit log enabled" -msgstr "Log de auditorĆ­a habilitado" - -#: ../../include/functions_config.php:358 -msgid "Module Custom ID read only" -msgstr "Solo lectura del ID personalizado del mĆ³dulo" - -#: ../../include/functions_config.php:362 -#: ../../godmode/setup/setup_general.php:459 -#: ../../godmode/agentes/agent_manager.php:304 -msgid "Unique IP" -msgstr "IP Ćŗnica" - -#: ../../include/functions_config.php:366 -#: ../../enterprise/meta/advanced/metasetup.mail.php:115 -msgid "Server SMTP" -msgstr "Servidor SMTP" - -#: ../../include/functions_config.php:370 -#: ../../enterprise/meta/advanced/metasetup.mail.php:109 -msgid "From dir" -msgstr "Desde dir" - -#: ../../include/functions_config.php:374 -#: ../../enterprise/meta/advanced/metasetup.mail.php:112 -#: ../../godmode/setup/setup_general.php:538 -msgid "From name" -msgstr "Desde nombre" - -#: ../../include/functions_config.php:378 -#: ../../enterprise/meta/advanced/metasetup.mail.php:118 -msgid "Port SMTP" -msgstr "Puerto SMTP" - -#: ../../include/functions_config.php:382 -#: ../../godmode/setup/setup_general.php:568 -msgid "Encryption" -msgstr "EncriptaciĆ³n" - -#: ../../include/functions_config.php:386 -#: ../../enterprise/meta/advanced/metasetup.mail.php:121 -#: ../../godmode/setup/setup_general.php:579 -msgid "Email user" -msgstr "Usuario de email" - -#: ../../include/functions_config.php:390 -#: ../../enterprise/meta/advanced/metasetup.mail.php:124 -#: ../../godmode/setup/setup_general.php:589 -msgid "Email password" -msgstr "ContraseƱa de email" - -#: ../../include/functions_config.php:397 -#: ../../enterprise/godmode/setup/setup.php:47 -msgid "Forward SNMP traps to agent (if exist)" -msgstr "Reenviar los traps SNMP al agente (si existe)" - -#: ../../include/functions_config.php:401 -#: ../../enterprise/godmode/setup/setup.php:77 -msgid "Use Enterprise ACL System" -msgstr "Utilizar el sistema ACL Enterprise" - -#: ../../include/functions_config.php:405 -#: ../../enterprise/meta/include/functions_meta.php:68 -msgid "Activate Metaconsole" -msgstr "Activar la Metaconsola" - -#: ../../include/functions_config.php:409 -#: ../../enterprise/meta/include/functions_meta.php:273 -#: ../../enterprise/meta/advanced/metasetup.setup.php:288 -#: ../../enterprise/godmode/setup/setup.php:90 -msgid "Size of collection" -msgstr "TamaƱo de la colecciĆ³n" - -#: ../../include/functions_config.php:413 -#: ../../enterprise/godmode/setup/setup.php:104 -msgid "Events replication" -msgstr "ReplicaciĆ³n de eventos" - -#: ../../include/functions_config.php:418 -#: ../../enterprise/godmode/setup/setup.php:116 -msgid "Replication interval" -msgstr "Intervalo de replicaciĆ³n" - -#: ../../include/functions_config.php:422 -#: ../../enterprise/godmode/setup/setup.php:130 -msgid "Replication limit" -msgstr "LĆ­mite de replicaciĆ³n" - -#: ../../include/functions_config.php:426 -#: ../../enterprise/godmode/setup/setup.php:157 -msgid "Replication mode" -msgstr "Modo de replicaciĆ³n" - -#: ../../include/functions_config.php:430 -#: ../../enterprise/godmode/setup/setup.php:264 -msgid "Show events list in local console (read only)" -msgstr "Mostrar lista de eventos en la consola local (solo lectura)" - -#: ../../include/functions_config.php:435 -msgid "Replication DB engine" -msgstr "Motor de BD de replicaciĆ³n" - -#: ../../include/functions_config.php:439 -msgid "Replication DB host" -msgstr "Host de la BD de replicaciĆ³n" - -#: ../../include/functions_config.php:443 -msgid "Replication DB database" -msgstr "Nombre de la BD de replicaciĆ³n" - -#: ../../include/functions_config.php:447 -msgid "Replication DB user" -msgstr "Usuario de la BD de replicaciĆ³n" - -#: ../../include/functions_config.php:451 -msgid "Replication DB password" -msgstr "ContraseƱa de la BD de replicaciĆ³n" - -#: ../../include/functions_config.php:455 -msgid "Replication DB port" -msgstr "Puerto de la BD de replicaciĆ³n" - -#: ../../include/functions_config.php:459 -msgid "Metaconsole agent cache" -msgstr "CachĆ© de agente de la Metaconsola" - -#: ../../include/functions_config.php:463 -#: ../../enterprise/godmode/setup/setup.php:366 -msgid "Activate Log Collector" -msgstr "Activar el colector de logs" - -#: ../../include/functions_config.php:467 -msgid "Enable Update Manager" -msgstr "Habilitar Update Manager" - -#: ../../include/functions_config.php:471 -msgid "Ipam Ocuppied Manager Critical" -msgstr "Ipam Ocuppied Manager CrĆ­tico" - -#: ../../include/functions_config.php:475 -msgid "Ipam Ocuppied Manager Warning" -msgstr "Ipam Ocuppied Manager Advertencia" - -#: ../../include/functions_config.php:479 -#: ../../enterprise/godmode/setup/setup.php:413 -msgid "SAP/R3 Plugin Licence" -msgstr "Licencia plugin SAP/R3" - -#: ../../include/functions_config.php:484 -#: ../../enterprise/godmode/setup/setup.php:282 -msgid "Inventory changes blacklist" -msgstr "Lista negra ante cambios de inventario" - -#: ../../include/functions_config.php:492 -#: ../../enterprise/meta/include/functions_meta.php:344 -#: ../../enterprise/meta/advanced/metasetup.password.php:79 -#: ../../enterprise/godmode/setup/setup.php:467 -msgid "Enable password policy" -msgstr "Habilitar polĆ­tica de contraseƱas" - -#: ../../include/functions_config.php:496 -#: ../../enterprise/meta/include/functions_meta.php:354 -#: ../../enterprise/meta/advanced/metasetup.password.php:101 -#: ../../enterprise/godmode/setup/setup.php:476 -msgid "Min. size password" -msgstr "ContraseƱa con tamaƱo mĆ­nimo" - -#: ../../include/functions_config.php:500 -#: ../../enterprise/meta/include/functions_meta.php:384 -#: ../../enterprise/meta/advanced/metasetup.password.php:105 -#: ../../enterprise/godmode/setup/setup.php:505 -msgid "Password expiration" -msgstr "ExpiraciĆ³n de contraseƱa" - -#: ../../include/functions_config.php:504 -#: ../../enterprise/meta/include/functions_meta.php:394 -#: ../../enterprise/meta/advanced/metasetup.password.php:132 -#: ../../enterprise/godmode/setup/setup.php:516 -msgid "Force change password on first login" -msgstr "Forzar cambio de contraseƱa en el primer inicio de sesiĆ³n" - -#: ../../include/functions_config.php:508 -#: ../../enterprise/meta/include/functions_meta.php:404 -#: ../../enterprise/meta/advanced/metasetup.password.php:109 -#: ../../enterprise/godmode/setup/setup.php:525 -msgid "User blocked if login fails" -msgstr "Usuario bloqueado si la identificaciĆ³n falla" - -#: ../../include/functions_config.php:512 -#: ../../enterprise/meta/include/functions_meta.php:414 -#: ../../enterprise/meta/advanced/metasetup.password.php:113 -#: ../../enterprise/godmode/setup/setup.php:536 -msgid "Number of failed login attempts" -msgstr "NĆŗmero de intentos de identificaciĆ³n fallidos" - -#: ../../include/functions_config.php:516 -#: ../../enterprise/meta/include/functions_meta.php:364 -#: ../../enterprise/meta/advanced/metasetup.password.php:138 -#: ../../enterprise/godmode/setup/setup.php:487 -msgid "Password must have numbers" -msgstr "La contraseƱa debe contener nĆŗmeros." - -#: ../../include/functions_config.php:520 -#: ../../enterprise/meta/include/functions_meta.php:374 -#: ../../enterprise/meta/advanced/metasetup.password.php:142 -#: ../../enterprise/godmode/setup/setup.php:496 -msgid "Password must have symbols" -msgstr "La contraseƱa debe contener sĆ­mbolos." - -#: ../../include/functions_config.php:524 -#: ../../enterprise/meta/include/functions_meta.php:447 -#: ../../enterprise/meta/advanced/metasetup.password.php:126 -#: ../../enterprise/godmode/setup/setup.php:547 -msgid "Apply password policy to admin users" -msgstr "Aplicar la polĆ­tica de contraseƱas a los usuarios administradores" - -#: ../../include/functions_config.php:528 -#: ../../enterprise/meta/include/functions_meta.php:424 -#: ../../enterprise/meta/advanced/metasetup.password.php:121 -#: ../../enterprise/godmode/setup/setup.php:556 -msgid "Enable password history" -msgstr "Activar histĆ³rico de contraseƱas" - -#: ../../include/functions_config.php:532 -#: ../../enterprise/meta/include/functions_meta.php:436 -#: ../../enterprise/meta/advanced/metasetup.password.php:117 -#: ../../enterprise/godmode/setup/setup.php:565 -msgid "Compare previous password" -msgstr "Comparar la contraseƱa anterior" - -#: ../../include/functions_config.php:536 -#: ../../enterprise/meta/include/functions_meta.php:458 -#: ../../enterprise/meta/advanced/metasetup.password.php:146 -#: ../../enterprise/godmode/setup/setup.php:577 -msgid "Activate reset password" -msgstr "Activar reseteo de contraseƱa" - -#: ../../include/functions_config.php:548 -#: ../../enterprise/meta/include/functions_meta.php:522 -#: ../../enterprise/meta/include/functions_meta.php:741 -#: ../../godmode/setup/setup_auth.php:69 -msgid "Autocreate remote users" -msgstr "Crear usuarios remotos automĆ”ticamente" - -#: ../../include/functions_config.php:552 -#: ../../enterprise/meta/include/functions_meta.php:532 -#: ../../enterprise/godmode/setup/setup_auth.php:55 -#: ../../enterprise/godmode/setup/setup_auth.php:303 -#: ../../enterprise/godmode/setup/setup_auth.php:364 -#: ../../enterprise/godmode/setup/setup_auth.php:1159 -msgid "Autocreate profile" -msgstr "Crear el perfil automĆ”ticamente" - -#: ../../include/functions_config.php:556 -#: ../../enterprise/meta/include/functions_meta.php:542 -#: ../../enterprise/godmode/setup/setup_auth.php:61 -#: ../../enterprise/godmode/setup/setup_auth.php:309 -#: ../../enterprise/godmode/setup/setup_auth.php:370 -#: ../../enterprise/godmode/setup/setup_auth.php:1165 -msgid "Autocreate profile group" -msgstr "Crear perfil de grupo automĆ”ticamente" - -#: ../../include/functions_config.php:560 -#: ../../enterprise/meta/include/functions_meta.php:552 -#: ../../enterprise/godmode/setup/setup_auth.php:68 -#: ../../enterprise/godmode/setup/setup_auth.php:318 -#: ../../enterprise/godmode/setup/setup_auth.php:379 -#: ../../enterprise/godmode/setup/setup_auth.php:1174 -msgid "Autocreate profile tags" -msgstr "Crear etiquetas de perfil automĆ”ticamente" - -#: ../../include/functions_config.php:564 -#: ../../enterprise/meta/include/functions_meta.php:562 -#: ../../enterprise/godmode/setup/setup_auth.php:324 -msgid "Automatically assigned no hierarchy" -msgstr "JerarquĆ­a no asignada automĆ”ticamente" - -#: ../../include/functions_config.php:568 -#: ../../enterprise/meta/include/functions_meta.php:572 -#: ../../enterprise/godmode/setup/setup_auth.php:569 -#: ../../enterprise/godmode/setup/setup_auth.php:1371 -msgid "Autocreate blacklist" -msgstr "Crear una lista negra automĆ”ticamente" - -#: ../../include/functions_config.php:572 -#: ../../enterprise/meta/include/functions_meta.php:635 -#: ../../enterprise/godmode/setup/setup_auth.php:577 -#: ../../enterprise/godmode/setup/setup_auth.php:1379 -msgid "Active directory server" -msgstr "Servidor de directorio activo" - -#: ../../include/functions_config.php:576 -#: ../../enterprise/meta/include/functions_meta.php:645 -#: ../../enterprise/godmode/setup/setup_auth.php:583 -#: ../../enterprise/godmode/setup/setup_auth.php:1385 -msgid "Active directory port" -msgstr "Puerto del directorio activo" - -#: ../../include/functions_config.php:580 ../../include/functions_config.php:616 -#: ../../enterprise/meta/include/functions_meta.php:655 -#: ../../enterprise/meta/include/functions_meta.php:939 -#: ../../enterprise/godmode/setup/setup_auth.php:589 -#: ../../enterprise/godmode/setup/setup_auth.php:1391 -#: ../../godmode/setup/setup_auth.php:137 -msgid "Start TLS" -msgstr "Start TLS" - -#: ../../include/functions_config.php:584 -#: ../../enterprise/meta/include/functions_meta.php:665 -#: ../../enterprise/godmode/setup/setup_auth.php:353 -#: ../../enterprise/godmode/setup/setup_auth.php:1148 -msgid "Advanced Config AD" -msgstr "ConfiguraciĆ³n avanzada AD" - -#: ../../include/functions_config.php:588 -#: ../../enterprise/meta/include/functions_meta.php:705 -#: ../../enterprise/godmode/setup/setup_auth.php:106 -msgid "Advanced Config LDAP" -msgstr "ConfiguraciĆ³n LDAP avanzada" - -#: ../../include/functions_config.php:592 -#: ../../enterprise/meta/include/functions_meta.php:675 -#: ../../enterprise/godmode/setup/setup_auth.php:595 -#: ../../enterprise/godmode/setup/setup_auth.php:1397 -msgid "Domain" -msgstr "Dominio" - -#: ../../include/functions_config.php:596 -#: ../../enterprise/meta/include/functions_meta.php:685 -#: ../../enterprise/godmode/setup/setup_auth.php:413 -#: ../../enterprise/godmode/setup/setup_auth.php:1208 -msgid "Advanced Permisions AD" -msgstr "Permisos avanzados de AD" - -#: ../../include/functions_config.php:600 -#: ../../enterprise/meta/include/functions_meta.php:695 -#: ../../enterprise/godmode/setup/setup_auth.php:129 -msgid "Advanced Permissions LDAP" -msgstr "Permisos LDAP avanzados" - -#: ../../include/functions_config.php:604 -#: ../../enterprise/meta/include/functions_meta.php:909 -#: ../../godmode/setup/setup_auth.php:92 -msgid "LDAP server" -msgstr "Servidor LDAP" - -#: ../../include/functions_config.php:608 -#: ../../enterprise/meta/include/functions_meta.php:919 -#: ../../godmode/setup/setup_auth.php:105 -msgid "LDAP port" -msgstr "Puerto LDAP" - -#: ../../include/functions_config.php:612 -#: ../../enterprise/meta/include/functions_meta.php:929 -#: ../../godmode/setup/setup_auth.php:123 -msgid "LDAP version" -msgstr "VersiĆ³n LDAP" - -#: ../../include/functions_config.php:620 -#: ../../enterprise/meta/include/functions_meta.php:949 -#: ../../godmode/setup/setup_auth.php:148 -msgid "Base DN" -msgstr "DN base" - -#: ../../include/functions_config.php:624 -#: ../../enterprise/meta/include/functions_meta.php:959 -#: ../../godmode/setup/setup_auth.php:161 -msgid "Login attribute" -msgstr "Atributo de acceso" - -#: ../../include/functions_config.php:628 -#: ../../enterprise/meta/include/functions_meta.php:969 -#: ../../godmode/setup/setup_auth.php:174 -msgid "Admin LDAP login" -msgstr "Inicio de sesiĆ³n de administrador LDAP" - -#: ../../include/functions_config.php:632 -#: ../../enterprise/meta/include/functions_meta.php:979 -#: ../../godmode/setup/setup_auth.php:187 -msgid "Admin LDAP password" -msgstr "ContraseƱa de administrador LDAP" - -#: ../../include/functions_config.php:636 -#: ../../enterprise/meta/include/functions_meta.php:999 -#: ../../godmode/setup/setup_auth.php:222 -msgid "Secondary LDAP server" -msgstr "Servidor LDAP secundario" - -#: ../../include/functions_config.php:640 -#: ../../enterprise/meta/include/functions_meta.php:1009 -#: ../../godmode/setup/setup_auth.php:235 -msgid "Secondary LDAP port" -msgstr "Puerto LDAP secundario" - -#: ../../include/functions_config.php:644 -#: ../../enterprise/meta/include/functions_meta.php:1019 -#: ../../godmode/setup/setup_auth.php:253 -msgid "Secondary LDAP version" -msgstr "VersiĆ³n LDAP secundaria" - -#: ../../include/functions_config.php:648 -msgid "Secontary start TLS" -msgstr "TLS de inicio secundario" - -#: ../../include/functions_config.php:652 -#: ../../enterprise/meta/include/functions_meta.php:1039 -msgid "Secondary base DN" -msgstr "Base secundaria DN" - -#: ../../include/functions_config.php:656 -#: ../../enterprise/meta/include/functions_meta.php:1049 -msgid "Secondary login attribute" -msgstr "Atributo de inicio de sesiĆ³n secundario" - -#: ../../include/functions_config.php:660 -#: ../../enterprise/meta/include/functions_meta.php:1059 -#: ../../godmode/setup/setup_auth.php:304 -msgid "Admin secondary LDAP login" -msgstr "Inicio de sesiĆ³n LDAP secundario del administrador" - -#: ../../include/functions_config.php:664 -#: ../../enterprise/meta/include/functions_meta.php:1069 -#: ../../godmode/setup/setup_auth.php:317 -msgid "Admin secondary LDAP password" -msgstr "ContraseƱa LDAP secundaria del administrador" - -#: ../../include/functions_config.php:668 -#: ../../enterprise/meta/include/functions_meta.php:512 -#: ../../godmode/setup/setup_auth.php:56 -msgid "Fallback to local authentication" -msgstr "Alternativa si falla la autentificaciĆ³n" - -#: ../../include/functions_config.php:672 -#: ../../enterprise/meta/include/functions_meta.php:1102 -#: ../../enterprise/godmode/setup/setup_auth.php:101 -msgid "Login user attribute" -msgstr "Identificar atributo de usuario" - -#: ../../include/functions_config.php:676 -#: ../../enterprise/meta/include/functions_meta.php:1123 -#: ../../enterprise/godmode/setup/setup_auth.php:94 -msgid "LDAP function" -msgstr "FunciĆ³n LDAP" - -#: ../../include/functions_config.php:681 ../../include/functions_config.php:797 -#: ../../enterprise/meta/include/functions_meta.php:618 -#: ../../enterprise/meta/include/functions_meta.php:1082 -#: ../../enterprise/godmode/setup/setup_auth.php:82 -#: ../../enterprise/godmode/setup/setup_auth.php:348 -msgid "Save Password" -msgstr "Guardar contraseƱa" - -#: ../../include/functions_config.php:688 -#: ../../enterprise/meta/include/functions_meta.php:1112 -msgid "Save profile" -msgstr "Guardar perfil" - -#: ../../include/functions_config.php:692 -#: ../../enterprise/meta/include/functions_meta.php:990 -msgid "LDAP secondary enabled" -msgstr "LDAP secundario habilitado" - -#: ../../include/functions_config.php:696 -#: ../../enterprise/godmode/setup/setup_auth.php:1021 -msgid "MySQL host" -msgstr "DirecciĆ³n de MySQL" - -#: ../../include/functions_config.php:700 ../../include/functions_config.php:720 -#: ../../enterprise/meta/include/functions_meta.php:1145 -#: ../../enterprise/meta/include/functions_meta.php:1199 -#: ../../enterprise/meta/include/functions_meta.php:1253 -#: ../../enterprise/godmode/setup/setup_auth.php:1027 -#: ../../enterprise/godmode/setup/setup_auth.php:1059 -msgid "MySQL port" -msgstr "Puerto de MySQL" - -#: ../../include/functions_config.php:704 ../../include/functions_config.php:724 -#: ../../include/functions_config.php:1551 -#: ../../enterprise/meta/include/functions_meta.php:1155 -#: ../../enterprise/meta/include/functions_meta.php:1209 -#: ../../enterprise/meta/include/functions_meta.php:1263 -#: ../../enterprise/godmode/setup/setup_history.php:189 -#: ../../enterprise/godmode/setup/setup_auth.php:1033 -#: ../../enterprise/godmode/setup/setup_auth.php:1065 -msgid "Database name" -msgstr "Nombre de la base de datos" - -#: ../../include/functions_config.php:716 -#: ../../enterprise/meta/include/functions_meta.php:1243 -#: ../../enterprise/godmode/setup/setup_auth.php:1053 -msgid "Integria host" -msgstr "Servidor de Integria IMS" - -#: ../../include/functions_config.php:736 -#: ../../enterprise/meta/include/functions_meta.php:754 -msgid "Saml path" -msgstr "Ruta de SAML" - -#: ../../include/functions_config.php:740 -#: ../../enterprise/meta/include/functions_meta.php:767 -msgid "Saml source" -msgstr "Saml origen" - -#: ../../include/functions_config.php:744 -#: ../../enterprise/meta/include/functions_meta.php:780 -msgid "Saml user id parameter" -msgstr "ParĆ”metro de ID de usuario saml" - -#: ../../include/functions_config.php:748 -#: ../../enterprise/meta/include/functions_meta.php:793 -msgid "Saml mail parameter" -msgstr "ParĆ”metro de correo de saml" - -#: ../../include/functions_config.php:752 -#: ../../enterprise/meta/include/functions_meta.php:806 -msgid "Saml group name parameter" -msgstr "ParĆ”metro de nombre de grupo saml" - -#: ../../include/functions_config.php:756 -#: ../../enterprise/meta/include/functions_meta.php:819 -msgid "Saml attr type parameter" -msgstr "ParĆ”metro de tipo de attr saml" - -#: ../../include/functions_config.php:760 -#: ../../enterprise/meta/include/functions_meta.php:832 -msgid "Saml profiles and tags parameter" -msgstr "ParĆ”metro de perfiles y etiquetas saml" - -#: ../../include/functions_config.php:764 -msgid "Saml profile parameters" -msgstr "ParĆ”metros de perfil saml" - -#: ../../include/functions_config.php:768 -#: ../../enterprise/meta/include/functions_meta.php:871 -msgid "Saml tag parameter" -msgstr "ParĆ”metro de etiqueta saml" - -#: ../../include/functions_config.php:772 -#: ../../enterprise/meta/include/functions_meta.php:845 -msgid "Saml profile and tag separator" -msgstr "Separador de perfil y etiqueta saml" - -#: ../../include/functions_config.php:780 -msgid "2FA all users" -msgstr "2FA todos los usuarios" - -#: ../../include/functions_config.php:784 ../../include/functions_config.php:790 -#: ../../enterprise/meta/include/functions_meta.php:604 -#: ../../enterprise/meta/include/functions_meta.php:897 -msgid "Session timeout" -msgstr "SesiĆ³n expirada" - -#: ../../include/functions_config.php:787 -msgid "Session timeout forced to 90 minutes" -msgstr "LĆ­mite de tiempo de la sesiĆ³n forzado a 90 minutos" - -#: ../../include/functions_config.php:813 -#: ../../enterprise/meta/include/functions_meta.php:1919 -#: ../../enterprise/meta/advanced/metasetup.performance.php:79 -#: ../../godmode/setup/performance.php:259 -#: ../../godmode/setup/performance.php:449 -msgid "Max. days before delete events" -msgstr "NĀŗ max. de dĆ­as antes de borrar eventos" - -#: ../../include/functions_config.php:818 ../../godmode/setup/performance.php:273 -msgid "Max. days before delete traps" -msgstr "NĀŗ max. de dĆ­as antes de borrar traps SNMP" - -#: ../../include/functions_config.php:822 ../../godmode/setup/performance.php:293 -#: ../../godmode/setup/performance.php:459 -msgid "Max. days before delete string data" -msgstr "NĀŗ max. de dĆ­as antes de borrar datos de tipo texto" - -#: ../../include/functions_config.php:826 -#: ../../enterprise/meta/include/functions_meta.php:1944 -#: ../../enterprise/meta/advanced/metasetup.performance.php:92 -#: ../../godmode/setup/performance.php:283 -msgid "Max. days before delete audit events" -msgstr "NĀŗ max. de dĆ­as antes de borrar eventos de auditorĆ­a interna" - -#: ../../include/functions_config.php:830 ../../godmode/setup/performance.php:303 -msgid "Max. days before delete GIS data" -msgstr "NĀŗ max. de dĆ­as antes de borrar informaciĆ³n GIS" - -#: ../../include/functions_config.php:834 ../../godmode/setup/performance.php:313 -#: ../../godmode/setup/performance.php:419 -msgid "Max. days before purge" -msgstr "MĆ”x. dĆ­as antes de purga de datos" - -#: ../../include/functions_config.php:838 ../../godmode/setup/performance.php:333 -msgid "Max. days before delete unknown modules" -msgstr "MĆ”ximo de dĆ­as antes de borrar mĆ³dulos desconocidos" - -#: ../../include/functions_config.php:842 ../../godmode/setup/performance.php:323 -#: ../../godmode/setup/performance.php:429 -msgid "Max. days before compact data" -msgstr "MĆ”x. dĆ­as antes de comprimir datos" - -#: ../../include/functions_config.php:846 -msgid "Max. days before autodisable deletion" -msgstr "DĆ­as mĆ”ximos antes de eliminar los deshabilitados" - -#: ../../include/functions_config.php:850 -msgid "Item limit for realtime reports)" -msgstr "LĆ­mite de elementos para los informes de tiempo real" - -#: ../../include/functions_config.php:854 ../../godmode/setup/performance.php:439 -#: ../../godmode/setup/performance.php:520 -msgid "Compact interpolation in hours (1 Fine-20 bad)" -msgstr "InterpolaciĆ³n de la compactaciĆ³n en horas (1 bueno - 20 malo)" - -#: ../../include/functions_config.php:858 -#: ../../enterprise/meta/include/functions_meta.php:1954 -#: ../../enterprise/meta/advanced/metasetup.performance.php:95 -#: ../../godmode/setup/performance.php:540 -msgid "Default hours for event view" -msgstr "NĀŗ de horas predeterminado para la visualizaciĆ³n de eventos" - -#: ../../include/functions_config.php:862 ../../godmode/setup/performance.php:550 -msgid "Use realtime statistics" -msgstr "Usar estadĆ­sticas en tiempo real" - -#: ../../include/functions_config.php:866 ../../godmode/setup/performance.php:558 -msgid "Batch statistics period (secs)" -msgstr "PerĆ­odo de las estadĆ­sticas programadas (seg.)" - -#: ../../include/functions_config.php:870 -#: ../../enterprise/meta/include/functions_meta.php:1964 -#: ../../godmode/setup/performance.php:568 -msgid "Use agent access graph" -msgstr "Usar la grĆ”fica de acceso del agente" - -#: ../../include/functions_config.php:874 ../../godmode/setup/performance.php:571 -msgid "Max. recommended number of files in attachment directory" -msgstr "Max. nĆŗmero de archivos recomendado para el directorio de adjuntos" - -#: ../../include/functions_config.php:878 ../../godmode/setup/performance.php:581 -msgid "Delete not init modules" -msgstr "Borrar mĆ³dulos no iniciados" - -#: ../../include/functions_config.php:882 -msgid "Big Operatiopn Step to purge old data" -msgstr "Gran operaciĆ³n para la purga de datos antiguos" - -#: ../../include/functions_config.php:886 ../../godmode/setup/performance.php:594 -msgid "Small Operation Step to purge old data" -msgstr "OperaciĆ³n menor para la purga de datos antiguos" - -#: ../../include/functions_config.php:890 ../../godmode/setup/performance.php:353 -msgid "Retention period of past special days" -msgstr "PerĆ­odo de retenciĆ³n de dĆ­as especiales pasados" - -#: ../../include/functions_config.php:894 -#: ../../enterprise/meta/include/functions_meta.php:2007 -#: ../../enterprise/meta/advanced/metasetup.performance.php:131 -#: ../../godmode/setup/performance.php:363 -msgid "Max. macro data fields" -msgstr "NĀŗ mĆ”x. de campos de macro de datos" - -#: ../../include/functions_config.php:899 ../../godmode/setup/performance.php:377 -msgid "Max. days before delete inventory data" -msgstr "NĀŗ de dĆ­as mĆ”ximo antes del borrado de datos de inventario" - -#: ../../include/functions_config.php:904 ../../godmode/setup/performance.php:477 -msgid "Max. days before delete old messages" -msgstr "NĆŗm. mĆ”x. de dĆ­as antes de borrar mensajes antiguos" - -#: ../../include/functions_config.php:908 ../../godmode/setup/performance.php:490 -msgid "Max. days before delete old network matrix data" -msgstr "NĆŗm. mĆ”x. de dĆ­as antes de borrar datos de matriz antiguos" - -#: ../../include/functions_config.php:912 ../../godmode/setup/performance.php:604 -msgid "Graph container - Max. Items" -msgstr "Contenedor de grĆ”ficas - MĆ”x. elementos" - -#: ../../include/functions_config.php:916 -msgid "Max execution event response" -msgstr "MĆ”xima respuesta de ejecuciĆ³n de eventos" - -#: ../../include/functions_config.php:920 -#: ../../enterprise/meta/advanced/metasetup.performance.php:122 -#: ../../godmode/setup/performance.php:624 -msgid "Row limit in csv log" -msgstr "LĆ­mite de lĆ­neas en log CSV" - -#: ../../include/functions_config.php:924 -msgid "SNMP walk binary path" -msgstr "Ruta del binario SNMP walk" - -#: ../../include/functions_config.php:928 -msgid "SNMP walk binary path (fallback for v1)" -msgstr "Ruta del binario SNMP walk (alternativa para la v1)" - -#: ../../include/functions_config.php:947 -#: ../../enterprise/meta/include/functions_meta.php:2027 -msgid "PhantomJS cache interval" -msgstr "Intervalo de cachĆ© de PhantomJS" - -#: ../../include/functions_config.php:954 -#: ../../enterprise/meta/include/functions_meta.php:1298 -#: ../../enterprise/meta/advanced/metasetup.visual.php:105 -#: ../../godmode/setup/setup_visuals.php:1256 -msgid "Date format string" -msgstr "Formato de fecha a mostrar" - -#: ../../include/functions_config.php:958 -#: ../../enterprise/meta/include/functions_meta.php:1308 -msgid "Timestamp or time comparation" -msgstr "Marca o comparaciĆ³n temporal" - -#: ../../include/functions_config.php:962 -#: ../../enterprise/meta/advanced/metasetup.visual.php:166 -#: ../../godmode/setup/setup_visuals.php:698 -msgid "Graph color #1" -msgstr "Color de la grĆ”fica #1" - -#: ../../include/functions_config.php:966 -#: ../../enterprise/meta/advanced/metasetup.visual.php:176 -#: ../../godmode/setup/setup_visuals.php:709 -msgid "Graph color #2" -msgstr "Color de la grĆ”fica #2" - -#: ../../include/functions_config.php:970 -#: ../../enterprise/meta/advanced/metasetup.visual.php:186 -#: ../../godmode/setup/setup_visuals.php:720 -msgid "Graph color #3" -msgstr "Color de la grĆ”fica #3" - -#: ../../include/functions_config.php:974 -#: ../../godmode/setup/setup_visuals.php:731 -msgid "Graph color #4" -msgstr "Color del grĆ”fico #4" - -#: ../../include/functions_config.php:978 -#: ../../godmode/setup/setup_visuals.php:742 -msgid "Graph color #5" -msgstr "Color del grĆ”fico #5" - -#: ../../include/functions_config.php:982 -#: ../../godmode/setup/setup_visuals.php:753 -msgid "Graph color #6" -msgstr "Color del grĆ”fico #6" - -#: ../../include/functions_config.php:986 -#: ../../godmode/setup/setup_visuals.php:764 -msgid "Graph color #7" -msgstr "Color del grĆ”fico #7" - -#: ../../include/functions_config.php:990 -#: ../../godmode/setup/setup_visuals.php:775 -msgid "Graph color #8" -msgstr "Color del grĆ”fico #8" - -#: ../../include/functions_config.php:994 -#: ../../godmode/setup/setup_visuals.php:786 -msgid "Graph color #9" -msgstr "Color del grĆ”fico #9" - -#: ../../include/functions_config.php:998 -#: ../../godmode/setup/setup_visuals.php:797 -msgid "Graph color #10" -msgstr "Color del grĆ”fico #10" - -#: ../../include/functions_config.php:1002 -#: ../../enterprise/meta/include/functions_meta.php:1433 -#: ../../enterprise/meta/advanced/metasetup.visual.php:232 -#: ../../godmode/setup/setup_visuals.php:808 -msgid "Value to interface graphics" -msgstr "Valor para la interfaz grĆ”fica" - -#: ../../include/functions_config.php:1006 -#: ../../enterprise/meta/include/functions_meta.php:1373 -msgid "Data precision for reports" -msgstr "PrecisiĆ³n de los datos en los informes" - -#: ../../include/functions_config.php:1015 -#: ../../godmode/setup/setup_visuals.php:137 -msgid "Style template" -msgstr "Plantilla de estilo" - -#: ../../include/functions_config.php:1023 -#: ../../enterprise/meta/include/functions_meta.php:1456 -#: ../../enterprise/meta/advanced/metasetup.visual.php:265 -#: ../../godmode/setup/setup_visuals.php:883 -msgid "Use round corners" -msgstr "Usar bordes redondeados" - -#: ../../include/functions_config.php:1027 -#: ../../enterprise/meta/include/functions_meta.php:1467 -#: ../../enterprise/meta/advanced/metasetup.visual.php:273 -#: ../../godmode/setup/setup_visuals.php:892 -msgid "Chart fit to content" -msgstr "Tabla adaptada al contenido" - -#: ../../include/functions_config.php:1031 -msgid "Show QR code header" -msgstr "Mostrar cĆ³digo QR en la cabecera" - -#: ../../include/functions_config.php:1035 -#: ../../godmode/setup/setup_visuals.php:150 -msgid "Status icon set" -msgstr "Icono de estado en" - -#: ../../include/functions_config.php:1039 -#: ../../enterprise/meta/include/functions_meta.php:1777 -msgid "Font path" -msgstr "Ruta de la tipografĆ­a" - -#: ../../include/functions_config.php:1043 -#: ../../godmode/reporting/visual_console_builder.wizard.php:228 -msgid "Font size" -msgstr "TamaƱo de fuente" - -#: ../../include/functions_config.php:1047 -#: ../../enterprise/meta/include/functions_meta.php:1598 -#: ../../enterprise/meta/advanced/metasetup.visual.php:503 -#: ../../godmode/setup/setup_visuals.php:190 -msgid "Custom favicon" -msgstr "Personalizar favicon" - -#: ../../include/functions_config.php:1051 -#: ../../include/functions_config.php:1445 -#: ../../enterprise/meta/include/functions_meta.php:1568 -#: ../../enterprise/meta/include/functions_meta.php:1819 -#: ../../enterprise/meta/advanced/metasetup.visual.php:1053 -#: ../../enterprise/godmode/reporting/reporting_builder.advanced.php:127 -#: ../../enterprise/godmode/reporting/reporting_builder.template_advanced.php:130 -#: ../../godmode/setup/setup_visuals.php:1149 -msgid "Custom logo" -msgstr "Logo personalizado" - -#: ../../include/functions_config.php:1055 -#: ../../enterprise/meta/include/functions_meta.php:1578 -msgid "Custom logo collapsed" -msgstr "Icono menĆŗ reducido" - -#: ../../include/functions_config.php:1059 -msgid "Custom logo white background" -msgstr "Fondo blanco del logo personalizado" - -#: ../../include/functions_config.php:1063 -#: ../../enterprise/meta/include/functions_meta.php:1608 -msgid "Custom logo login" -msgstr "Logo personalizado en la pantalla de bienvenida" - -#: ../../include/functions_config.php:1067 -#: ../../enterprise/meta/include/functions_meta.php:1618 -msgid "Custom splash login" -msgstr "Login de Splash personalizado" - -#: ../../include/functions_config.php:1071 -#: ../../godmode/setup/setup_visuals.php:393 -msgid "Custom documentation logo" -msgstr "Logo de documentaciĆ³n personalizado" - -#: ../../include/functions_config.php:1075 -#: ../../godmode/setup/setup_visuals.php:413 -msgid "Custom support logo" -msgstr "Logo de soporte personalizado" - -#: ../../include/functions_config.php:1079 -#: ../../include/functions_config.php:1083 -#: ../../godmode/setup/setup_visuals.php:432 -msgid "Custom networkmap center logo" -msgstr "Logo central del mapa de red personalizado" - -#: ../../include/functions_config.php:1087 -msgid "Custom title header" -msgstr "Encabezado de tĆ­tulo personalizado" - -#: ../../include/functions_config.php:1091 -msgid "Custom subtitle header" -msgstr "Encabezado del subtĆ­tulo personalizado" - -#: ../../include/functions_config.php:1095 -#: ../../enterprise/meta/include/functions_meta.php:1668 -msgid "Meta custom title header" -msgstr "Encabezado de tĆ­tulo personalizado" - -#: ../../include/functions_config.php:1099 -#: ../../enterprise/meta/include/functions_meta.php:1678 -msgid "Meta custom subtitle header" -msgstr "Encabezado de subtĆ­tulos meta personalizado" - -#: ../../include/functions_config.php:1103 -#: ../../enterprise/meta/include/functions_meta.php:1648 -msgid "Custom title1 login" -msgstr "TĆ­tulo1 conexiĆ³n personalizado" - -#: ../../include/functions_config.php:1107 -#: ../../enterprise/meta/include/functions_meta.php:1658 -msgid "Custom title2 login" -msgstr "TĆ­tulo2 conexiĆ³n personalizado" - -#: ../../include/functions_config.php:1111 -#: ../../godmode/setup/setup_visuals.php:176 -msgid "Login background" -msgstr "Imagen de fondo de la pantalla de inicio de sesiĆ³n" - -#: ../../include/functions_config.php:1115 -#: ../../include/functions_config.php:1155 -msgid "Custom Docs url" -msgstr "URL de documentos personalizados" - -#: ../../include/functions_config.php:1119 -#: ../../include/functions_config.php:1159 -msgid "Custom support url" -msgstr "URL de soporte personalizado" - -#: ../../include/functions_config.php:1123 -#: ../../enterprise/meta/include/functions_meta.php:1628 -#: ../../enterprise/meta/advanced/metasetup.visual.php:724 -#: ../../enterprise/meta/advanced/metasetup.visual.php:795 -#: ../../godmode/setup/setup_visuals.php:507 -msgid "Product name" -msgstr "Nombre del producto" - -#: ../../include/functions_config.php:1127 -#: ../../enterprise/meta/include/functions_meta.php:1638 -#: ../../enterprise/meta/advanced/metasetup.visual.php:735 -#: ../../enterprise/meta/advanced/metasetup.visual.php:805 -#: ../../godmode/setup/setup_visuals.php:513 -msgid "Copyright notice" -msgstr "Aviso de copyright" - -#: ../../include/functions_config.php:1131 -msgid "Custom logo metaconsole (white background)" -msgstr "Logo personalizado de la consola (fondo blanco)" - -#: ../../include/functions_config.php:1135 -msgid "Custom logo login metaconsole" -msgstr "Logo personalizado de la conexiĆ³n a la Metaconsola" - -#: ../../include/functions_config.php:1139 -msgid "Custom splash login metaconsole" -msgstr "ConexiĆ³n del Splash personalizado de la Metaconsola" - -#: ../../include/functions_config.php:1143 -msgid "Custom title1 login metaconsole" -msgstr "TĆ­tulo1 conexiĆ³n personalizado de la Metaconsola" - -#: ../../include/functions_config.php:1147 -msgid "Custom title2 login metaconsole" -msgstr "TĆ­tulo2 conexiĆ³n personalizado de la Metaconsola" - -#: ../../include/functions_config.php:1151 -msgid "Login background metaconsole" -msgstr "Fondo de la conexiĆ³n a la Metaconsola" - -#: ../../include/functions_config.php:1163 -#: ../../enterprise/meta/include/functions_meta.php:1884 -msgid "Use the legacy Visual Console" -msgstr "Usar la consola visual heredada" - -#: ../../include/functions_config.php:1167 -#: ../../enterprise/meta/include/functions_meta.php:1895 -msgid "Default expiration of the Visual Console item's cache" -msgstr "Caducidad del cachĆ© de los elementos de la consola visual por defecto" - -#: ../../include/functions_config.php:1171 -#: ../../enterprise/meta/include/functions_meta.php:1906 -#: ../../enterprise/meta/advanced/metasetup.visual.php:874 -#: ../../godmode/setup/setup_visuals.php:1055 -msgid "Default interval for refresh on Visual Console" -msgstr "Intervalo de actualizaciĆ³n por defecto en la consola visual" - -#: ../../include/functions_config.php:1175 -msgid "Default line favourite_view for the Visual Console" -msgstr "LĆ­nea por defecto favourite_view para la consola visual" - -#: ../../include/functions_config.php:1179 -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:1183 -#: ../../godmode/setup/setup_visuals.php:1069 -msgid "Default line thickness for the Visual Console" -msgstr "Grosor de lĆ­nea por defecto en las consolas visuales" - -#: ../../include/functions_config.php:1187 -msgid "Default line menu items for the Services" -msgstr "Linea de elementos de menĆŗ por defecto para los servicios" - -#: ../../include/functions_config.php:1191 -#: ../../include/functions_config.php:1195 -#: ../../godmode/setup/setup_visuals.php:653 -msgid "Agent size text" -msgstr "TamaƱo del texto del agente" - -#: ../../include/functions_config.php:1199 -#: ../../godmode/setup/setup_visuals.php:658 -msgid "Module size text" -msgstr "TamaƱo del nombre del mĆ³dulo" - -#: ../../include/functions_config.php:1203 -#: ../../include/functions_config.php:1207 -#: ../../godmode/setup/setup_visuals.php:663 -msgid "Description size text" -msgstr "TamaƱo del texto de la descripciĆ³n" - -#: ../../include/functions_config.php:1211 -#: ../../godmode/setup/setup_visuals.php:667 -msgid "Item title size text" -msgstr "TamaƱo del texto de los tĆ­tulos de elementos" - -#: ../../include/functions_config.php:1215 -#: ../../godmode/setup/setup_visuals.php:583 -msgid "GIS Labels" -msgstr "Etiquetas GIS" - -#: ../../include/functions_config.php:1219 -msgid "Show units in values report" -msgstr "Mostrar unidades en los valores del informe" - -#: ../../include/functions_config.php:1223 -#: ../../godmode/setup/setup_visuals.php:598 -msgid "Default icon in GIS" -msgstr "Icono GIS por defecto" - -#: ../../include/functions_config.php:1227 -msgid "Autohidden menu" -msgstr "Ocultar menĆŗ automĆ”ticamente" - -#: ../../include/functions_config.php:1231 -msgid "visual_animation" -msgstr "visual_animation" - -#: ../../include/functions_config.php:1235 -#: ../../enterprise/meta/include/functions_meta.php:1478 -#: ../../enterprise/meta/advanced/metasetup.visual.php:281 -msgid "Disable help" -msgstr "Deshabilitar ayuda" - -#: ../../include/functions_config.php:1239 -msgid "Fixed graph" -msgstr "GrĆ”fico fijo" - -#: ../../include/functions_config.php:1243 -#: ../../godmode/setup/setup_visuals.php:544 -msgid "Fixed header" -msgstr "Cabecera fija" - -#: ../../include/functions_config.php:1247 -msgid "Paginate module" -msgstr "Paginar vista de mĆ³dulos" - -#: ../../include/functions_config.php:1255 -#: ../../godmode/setup/setup_visuals.php:1236 -msgid "Networkmap max width" -msgstr "MĆ”ximo ancho de Networkmap" - -#: ../../include/functions_config.php:1259 -msgid "Shortened module graph data" -msgstr "GrĆ”fico de mĆ³dulo de datos acortados" - -#: ../../include/functions_config.php:1263 -#: ../../enterprise/meta/advanced/metasetup.visual.php:456 -msgid "Show the group name instead the group icon." -msgstr "Mostrar el nombre del grupo en lugar de icono del grupo" - -#: ../../include/functions_config.php:1267 -#: ../../godmode/setup/setup_visuals.php:857 -msgid "Default line thickness for the Custom Graph." -msgstr "Espesor de la lĆ­nea predeterminada para el grĆ”fico personalizado" - -#: ../../include/functions_config.php:1271 -msgid "Default type of module charts." -msgstr "Tipo de grĆ”ficos de mĆ³dulos por defecto" - -#: ../../include/functions_config.php:1275 -msgid "Default Number of elements in Custom Graph." -msgstr "NĆŗmero de elementos por defecto en grĆ”fica personalizada." - -#: ../../include/functions_config.php:1279 -msgid "Default type of interface charts." -msgstr "Tipo predefinido para los grĆ”ficos de interfaz" - -#: ../../include/functions_config.php:1283 -#: ../../enterprise/meta/include/functions_meta.php:1859 -#: ../../enterprise/meta/advanced/metasetup.visual.php:466 -#: ../../godmode/setup/setup_visuals.php:88 -msgid "Display data of proc modules in other format" -msgstr "Mostrar los datos de los mĆ³dulos proc en otro formato" - -#: ../../include/functions_config.php:1287 -#: ../../enterprise/meta/include/functions_meta.php:1869 -#: ../../enterprise/meta/advanced/metasetup.visual.php:474 -#: ../../godmode/setup/setup_visuals.php:97 -msgid "Display text proc modules have state is ok" -msgstr "Texto mostrado cuando el estado del mĆ³dulo proc es OK" - -#: ../../include/functions_config.php:1290 -#: ../../include/functions_config.php:3185 -#: ../../include/functions_reporting_html.php:662 -#: ../../enterprise/include/functions_reporting_csv.php:1541 -#: ../../enterprise/include/functions_reporting_csv.php:1587 -#: ../../enterprise/include/functions_reporting_csv.php:1905 -#: ../../enterprise/include/functions_reporting.php:1875 -#: ../../enterprise/include/functions_reporting.php:1916 -#: ../../enterprise/include/functions_reporting.php:2919 -#: ../../enterprise/include/functions_reporting.php:2978 -#: ../../enterprise/include/functions_reporting.php:3907 -#: ../../enterprise/include/functions_reporting.php:3966 -#: ../../enterprise/include/functions_reporting.php:6161 -msgid "Fail" -msgstr "Fallo" - -#: ../../include/functions_config.php:1291 -#: ../../enterprise/meta/include/functions_meta.php:1879 -#: ../../enterprise/meta/advanced/metasetup.visual.php:484 -#: ../../godmode/setup/setup_visuals.php:101 -msgid "Display text when proc modules have state critical" -msgstr "Texto mostrado cuando el estado del mĆ³dulo proc es CrĆ­tico" - -#: ../../include/functions_config.php:1295 -msgid "Display lateral menus with left click" -msgstr "Mostrar los menĆŗs laterales con el clic izquierdo" - -#: ../../include/functions_config.php:1300 -#: ../../godmode/setup/setup_visuals.php:116 -msgid "Service label font size" -msgstr "TamaƱo de fuente para el mapa de servicios" - -#: ../../include/functions_config.php:1304 -msgid "Service item padding size" -msgstr "Espacio entre los nodos del mapa de servicios" - -#: ../../include/functions_config.php:1309 -msgid "Default percentil" -msgstr "Percentil por defecto" - -#: ../../include/functions_config.php:1313 -msgid "Default full scale (TIP)" -msgstr "Escala completa por defecto (TIP)" - -#: ../../include/functions_config.php:1317 -msgid "Default soft graphs" -msgstr "GrĆ”ficas soft por defecto" - -#: ../../include/functions_config.php:1321 -msgid "Default zoom graphs" -msgstr "GrĆ”ficas ampliadas por defecto" - -#: ../../include/functions_config.php:1330 -msgid "Default height of the chart image" -msgstr "Altuta de la imagen de la grĆ”fica por defecto" - -#: ../../include/functions_config.php:1352 -msgid "Add the custom post process" -msgstr "AƱadir la personalizaciĆ³n al proceso posterior" - -#: ../../include/functions_config.php:1360 -msgid "Delete the custom post process" -msgstr "Borrar la personalizaciĆ³n al proceso posterior" - -#: ../../include/functions_config.php:1402 -#: ../../enterprise/meta/include/functions_meta.php:1767 -#: ../../enterprise/meta/advanced/metasetup.visual.php:420 -#: ../../godmode/setup/setup_visuals.php:1357 -msgid "Delete interval" -msgstr "Borrar intervalo" - -#: ../../include/functions_config.php:1414 -msgid "Add custom module unit" -msgstr "AƱadir unidad de mĆ³dulo personalizado" - -#: ../../include/functions_config.php:1420 -msgid "Delete custom module unit" -msgstr "Eliminar unidad de mĆ³dulo personalizado" - -#: ../../include/functions_config.php:1425 -#: ../../enterprise/meta/include/functions_meta.php:1799 -msgid "Custom report info" -msgstr "InformaciĆ³n del informe personalizado" - -#: ../../include/functions_config.php:1429 -#: ../../enterprise/meta/include/functions_meta.php:1383 -#: ../../enterprise/meta/advanced/metasetup.visual.php:966 -#: ../../godmode/setup/setup_visuals.php:1121 -msgid "HTML font size for SLA (em)" -msgstr "TamaƱo de fuente en SLA (em)" - -#: ../../include/functions_config.php:1433 -#: ../../enterprise/meta/include/functions_meta.php:1393 -#: ../../enterprise/meta/advanced/metasetup.visual.php:963 -#: ../../godmode/setup/setup_visuals.php:1116 -msgid "PDF font size (px)" -msgstr "TamaƱo de fuente de PDF (px)" - -#: ../../include/functions_config.php:1437 -#: ../../include/functions_config.php:1441 -#: ../../include/functions_config.php:1445 -#: ../../include/functions_config.php:1449 -#: ../../include/functions_config.php:1453 -#: ../../include/functions_config.php:1457 -#: ../../enterprise/meta/include/functions_meta.php:1793 -#: ../../enterprise/meta/include/functions_meta.php:1809 -#: ../../enterprise/meta/include/functions_meta.php:1819 -#: ../../enterprise/meta/include/functions_meta.php:1829 -#: ../../enterprise/meta/include/functions_meta.php:1839 -#: ../../enterprise/meta/include/functions_meta.php:1849 -#: ../../enterprise/meta/advanced/metasetup.visual.php:1053 -#: ../../enterprise/meta/advanced/metasetup.visual.php:1066 -#: ../../enterprise/meta/advanced/metasetup.visual.php:1077 -#: ../../enterprise/meta/advanced/metasetup.visual.php:1087 -#: ../../godmode/setup/setup_visuals.php:1149 -#: ../../godmode/setup/setup_visuals.php:1164 -#: ../../godmode/setup/setup_visuals.php:1172 -#: ../../godmode/setup/setup_visuals.php:1192 -#: ../../godmode/setup/setup_visuals.php:1208 -msgid "Custom report front" -msgstr "Portada de informe personalizado" - -#: ../../include/functions_config.php:1441 -#: ../../enterprise/meta/include/functions_meta.php:1809 -#: ../../enterprise/godmode/reporting/reporting_builder.advanced.php:116 -#: ../../enterprise/godmode/reporting/reporting_builder.template_advanced.php:127 -msgid "Font family" -msgstr "Tipo de letra" - -#: ../../include/functions_config.php:1449 -#: ../../enterprise/meta/include/functions_meta.php:1829 -#: ../../enterprise/meta/advanced/metasetup.visual.php:1077 -#: ../../enterprise/godmode/reporting/reporting_builder.advanced.php:153 -#: ../../enterprise/godmode/reporting/reporting_builder.template_advanced.php:142 -#: ../../godmode/setup/setup_visuals.php:1172 -msgid "Header" -msgstr "Encabezado" - -#: ../../include/functions_config.php:1453 -#: ../../enterprise/meta/include/functions_meta.php:1839 -#: ../../enterprise/meta/advanced/metasetup.visual.php:1087 -#: ../../enterprise/godmode/reporting/reporting_builder.advanced.php:163 -#: ../../enterprise/godmode/reporting/reporting_builder.template_advanced.php:152 -#: ../../godmode/setup/setup_visuals.php:1192 -msgid "First page" -msgstr "Primera pĆ”gina" - -#: ../../include/functions_config.php:1457 -#: ../../enterprise/meta/include/functions_meta.php:1849 -#: ../../enterprise/godmode/reporting/reporting_builder.advanced.php:173 -#: ../../enterprise/godmode/reporting/reporting_builder.template_advanced.php:162 -#: ../../godmode/setup/setup_visuals.php:1208 -msgid "Footer" -msgstr "Pie de pĆ”gina" - -#: ../../include/functions_config.php:1461 -#: ../../enterprise/meta/include/functions_meta.php:1413 -#: ../../enterprise/meta/advanced/metasetup.visual.php:988 -#: ../../godmode/setup/setup_visuals.php:1400 -msgid "CSV divider" -msgstr "Separador CSV" - -#: ../../include/functions_config.php:1465 -#: ../../enterprise/meta/include/functions_meta.php:1423 -#: ../../enterprise/meta/advanced/metasetup.visual.php:1028 -#: ../../godmode/setup/setup_visuals.php:1446 -msgid "CSV decimal separator" -msgstr "Separador decimal CSV" - -#: ../../include/functions_config.php:1469 -#: ../../enterprise/meta/include/functions_meta.php:1787 -msgid "Use data multiplier" -msgstr "Usar multiplicador de datos" - -#: ../../include/functions_config.php:1475 -#: ../../godmode/setup/setup_netflow.php:47 -msgid "Data storage path" -msgstr "Ruta de almacenamiento de datos" - -#: ../../include/functions_config.php:1479 -#: ../../godmode/setup/setup_netflow.php:50 -msgid "Daemon interval" -msgstr "Intervalo del demonio" - -#: ../../include/functions_config.php:1483 -#: ../../godmode/setup/setup_netflow.php:53 -msgid "Daemon binary path" -msgstr "Ruta de demonio binario" - -#: ../../include/functions_config.php:1487 -#: ../../godmode/setup/setup_netflow.php:56 -msgid "Nfdump binary path" -msgstr "Ruta binaria Nfdump" - -#: ../../include/functions_config.php:1491 -#: ../../godmode/setup/setup_netflow.php:59 -msgid "Nfexpire binary path" -msgstr "Ruta binaria Nfexpire" - -#: ../../include/functions_config.php:1495 -#: ../../godmode/setup/setup_netflow.php:62 -msgid "Maximum chart resolution" -msgstr "MĆ”xima resoluciĆ³n del grĆ”fico" - -#: ../../include/functions_config.php:1499 -#: ../../enterprise/meta/advanced/metasetup.setup.php:218 -#: ../../godmode/setup/setup_netflow.php:65 -msgid "Disable custom live view filters" -msgstr "Desactiva los filtros de vista activa personalizados" - -#: ../../include/functions_config.php:1503 -#: ../../godmode/setup/setup_netflow.php:67 -msgid "Netflow max lifetime" -msgstr "Tiempo mĆ”ximo del Netflow" - -#: ../../include/functions_config.php:1507 -#: ../../godmode/setup/setup_netflow.php:70 -msgid "Name resolution for IP address" -msgstr "Habilitar la resoluciĆ³n de nombre con IP" - -#: ../../include/functions_config.php:1513 -msgid "IP ElasticSearch server" -msgstr "IP del servidor ElasticSearch" - -#: ../../include/functions_config.php:1517 -msgid "Port ElasticSearch server" -msgstr "Puerto del servidor ElasticSearch" - -#: ../../include/functions_config.php:1521 -#: ../../enterprise/meta/include/functions_meta.php:490 -#: ../../enterprise/godmode/setup/setup_log_collector.php:41 -msgid "Number of logs viewed" -msgstr "NĆŗmero de logs vistos" - -#: ../../include/functions_config.php:1525 -#: ../../enterprise/godmode/setup/setup_log_collector.php:44 -msgid "Days to purge old information" -msgstr "DĆ­as para purgar informaciĆ³n antigua" - -#: ../../include/functions_config.php:1538 -msgid "Active and historical database cannot be the same." -msgstr "La base de datos activa y la histĆ³rica no pueden ser la misma." - -#: ../../include/functions_config.php:1543 -#: ../../enterprise/godmode/setup/setup_history.php:159 -msgid "Host" -msgstr "Host" - -#: ../../include/functions_config.php:1556 -msgid "Enable history database" -msgstr "Activar base de datos histĆ³rica" - -#: ../../include/functions_config.php:1560 -msgid "Enable history event" -msgstr "Activar histĆ³rico de eventos" - -#: ../../include/functions_config.php:1564 -#: ../../enterprise/godmode/setup/setup_history.php:204 -msgid "Database user" -msgstr "Usuario de la base de datos" - -#: ../../include/functions_config.php:1568 -#: ../../enterprise/godmode/setup/setup_history.php:219 -msgid "Database password" -msgstr "ContraseƱa de la base de datos" - -#: ../../include/functions_config.php:1576 -#: ../../enterprise/tools/ipam/ipam_editor.php:327 -#: ../../enterprise/include/ajax/ipam.ajax.php:521 -#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:104 -#: ../../godmode/alerts/alert_templates.php:73 -msgid "Days" -msgstr "DĆ­as" - -#: ../../include/functions_config.php:1584 -msgid "Event Days" -msgstr "Eventos en dĆ­a" - -#: ../../include/functions_config.php:1592 -#: ../../enterprise/include/class/CommandCenter.class.php:456 -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:746 -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:1051 -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:1146 -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:1496 -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:1781 -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2106 -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2537 -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2550 -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2878 -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:3055 -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:3145 -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:3184 -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:3249 -#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:465 -#: ../../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 -msgid "Step" -msgstr "Paso" - -#: ../../include/functions_config.php:1600 -msgid "Delay" -msgstr "Retraso" - -#: ../../include/functions_config.php:1632 -msgid "Historical database purge" -msgstr "Purga de la base de datos histĆ³rica" - -#: ../../include/functions_config.php:1640 -msgid "Historical database partitions" -msgstr "Particiones de base de datos histĆ³rica" - -#: ../../include/functions_config.php:1648 -msgid "Historical database events purge" -msgstr "Purga de eventod de base de datos histĆ³rica" - -#: ../../include/functions_config.php:1656 -msgid "Historical database string purge" -msgstr "Purga de cadenas de base de datos histĆ³rica" - -#: ../../include/functions_config.php:1667 -#: ../../godmode/setup/setup_ehorus.php:58 -msgid "Enable eHorus" -msgstr "Activar eHorus" - -#: ../../include/functions_config.php:1671 -msgid "eHorus user login" -msgstr "Inicio de sesiĆ³n del usuario a eHorus" - -#: ../../include/functions_config.php:1675 -#: ../../godmode/users/configure_user.php:1308 -msgid "eHorus user" -msgstr "Usuario de eHorus" - -#: ../../include/functions_config.php:1679 -#: ../../godmode/users/configure_user.php:1317 -msgid "eHorus password" -msgstr "ContraseƱa de eHorus" - -#: ../../include/functions_config.php:1683 -msgid "eHorus API hostname" -msgstr "Propietario de la API de eHorus" - -#: ../../include/functions_config.php:1687 -msgid "eHorus API port" -msgstr "Puerto de la API de eHorus" - -#: ../../include/functions_config.php:1691 -msgid "eHorus request timeout" -msgstr "Tiempo de respuesta de eHorus" - -#: ../../include/functions_config.php:1695 -msgid "eHorus id custom field" -msgstr "ID del campo personalizado de eHorus" - -#: ../../include/functions_config.php:1701 -msgid "Integria user login" -msgstr "Usuario de Integria" - -#: ../../include/functions_config.php:1705 -#: ../../godmode/setup/setup_integria.php:261 -msgid "Enable Integria IMS" -msgstr "Habilitar Integria IMS" - -#: ../../include/functions_config.php:1709 -msgid "Integria user" -msgstr "Usuario de Integria" - -#: ../../include/functions_config.php:1713 -msgid "Integria password" -msgstr "ContraseƱa de Integria" - -#: ../../include/functions_config.php:1727 -msgid "integria API hostname" -msgstr "Nombre del host de la API de Integria" - -#: ../../include/functions_config.php:1735 -msgid "Integria request timeout" -msgstr "LĆ­mite de tiempo de las peticiones de Integria" - -#: ../../include/functions_config.php:1739 -msgid "Integria default group" -msgstr "Grupo por defecto de Integria" - -#: ../../include/functions_config.php:1743 -msgid "Integria custom response default group" -msgstr "Grupo de respuesta personalizada de Integria por defecto" - -#: ../../include/functions_config.php:1747 -msgid "Integria default priority" -msgstr "Prioridad por defecto de Integria" - -#: ../../include/functions_config.php:1751 -msgid "Integria custom response default priority" -msgstr "Prioridad de respuesta personalizada de Integria por defecto" - -#: ../../include/functions_config.php:1755 -msgid "Integria default creator" -msgstr "Creador por defecto de Integria" - -#: ../../include/functions_config.php:1759 -msgid "Integria default owner" -msgstr "Propietario de Integria por defecto" - -#: ../../include/functions_config.php:1763 -msgid "Integria custom response default owner" -msgstr "Propietario de respuesta personalizada de Integria por defecto" - -#: ../../include/functions_config.php:1767 -msgid "Integria default ticket type" -msgstr "Tipo de ticket de Integria por defecto" - -#: ../../include/functions_config.php:1771 -msgid "Integria custom response default ticket type" -msgstr "Tipo de ticket de respuesta personalizado de Integria por defecto" - -#: ../../include/functions_config.php:1775 -msgid "Integria default ticket status" -msgstr "Estado del ticket de Integria por defecto" - -#: ../../include/functions_config.php:1779 -msgid "Integria custom response default ticket status" -msgstr "Estado del ticket de respuesta personalizada de Integria por defecto" - -#: ../../include/functions_config.php:1783 -msgid "Integria default ticket title" -msgstr "TĆ­tulo del ticket de Integria por defecto" - -#: ../../include/functions_config.php:1787 -msgid "Integria custom response default ticket title" -msgstr "TĆ­tulo del ticket de respuesta personalizada de Integria por defecto" - -#: ../../include/functions_config.php:1791 -msgid "Integria default ticket content" -msgstr "Contenido del ticket de Integria por defecto" - -#: ../../include/functions_config.php:1795 -msgid "Integria custom response default ticket content" -msgstr "Contenido del ticket de respuesta personalizada de Integria por defecto" - -#: ../../include/functions_config.php:1801 -msgid "Module Library User" -msgstr "Usuario de la biblioteca de mĆ³dulos" - -#: ../../include/functions_config.php:1805 -msgid "Module Library Password" -msgstr "ContraseƱa de la biblioteca de mĆ³dulos" - -#: ../../include/functions_config.php:1811 -msgid "WebSocket bind address" -msgstr "DirecciĆ³n de enlace WebSocket" - -#: ../../include/functions_config.php:1815 -msgid "WebSocket port" -msgstr "Puerto WebSocket" - -#: ../../include/functions_config.php:1819 -#: ../../godmode/setup/setup_websocket_engine.php:67 -msgid "WebSocket proxy url" -msgstr "URL del proxy de WebSocket" - -#: ../../include/functions_config.php:1838 +#: ../../include/lib/Group.php:299 #, php-format -msgid "Failed updated: the next values cannot update:
-%s" -msgstr "" -"Error al actualizar: los siguientes valores no se pueden actualizar:
-%s" - -#: ../../include/functions_config.php:2414 ../../include/functions_ui.php:1729 -msgid "the Flexible Monitoring System" -msgstr "Sistema Flexible de MonitorizaciĆ³n" - -#: ../../include/functions_config.php:2418 -msgid "PandoraFMS Metaconsole" -msgstr "Metaconsola PandoraFMS" - -#: ../../include/functions_config.php:2422 -msgid "Centralized operation console" -msgstr "Consola de operaciĆ³n centralizada" - -#: ../../include/functions_config.php:2426 -msgid "PANDORA FMS" -msgstr "PANDORA FMS" - -#: ../../include/functions_config.php:2430 -#: ../../enterprise/include/reset_pass.php:146 -#: ../../enterprise/include/reset_pass.php:149 -#: ../../enterprise/include/process_reset_pass.php:159 -#: ../../enterprise/include/process_reset_pass.php:162 -msgid "ONE TOOL TO MONITOR THEM ALL" -msgstr "UNA HERRAMIENTA PARA GOBERNARLOS A TODOS" - -#: ../../include/functions_config.php:2470 -#: ../../enterprise/meta/general/login_page.php:209 -msgid "PANDORA FMS NEXT GENERATION" -msgstr "PANDORA FMS NEXT GENERATION" - -#: ../../include/functions_config.php:2474 -#: ../../enterprise/meta/general/login_page.php:217 -#: ../../enterprise/meta/include/reset_pass.php:147 -#: ../../enterprise/meta/include/process_reset_pass.php:150 -msgid "METACONSOLE" -msgstr "METACONSOLA" - -#: ../../include/functions_alerts.php:477 -#: ../../enterprise/include/functions_policies.php:423 -#: ../../enterprise/include/functions_policies.php:438 -msgid "copy" -msgstr "copiar" - -#: ../../include/functions_alerts.php:673 -#: ../../enterprise/godmode/massive/massive_delete_alerts_policy.php:138 -#: ../../enterprise/godmode/massive/massive_delete_alerts_policy.php:139 -#: ../../enterprise/godmode/massive/massive_add_alerts_policy.php:128 -#: ../../enterprise/godmode/massive/massive_add_alerts_policy.php:129 -msgid "Regular expression" -msgstr "ExpresiĆ³n regular" - -#: ../../include/functions_alerts.php:674 -msgid "Max and min" -msgstr "MĆ”x. y mĆ­n." - -#: ../../include/functions_alerts.php:677 -msgid "Equal to" -msgstr "Igual a" - -#: ../../include/functions_alerts.php:678 -msgid "Not equal to" -msgstr "Diferente de" - -#: ../../include/functions_alerts.php:679 ../../include/functions_treeview.php:96 -#: ../../enterprise/godmode/modules/configure_local_component.php:310 -#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:498 -#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:289 -#: ../../godmode/modules/manage_network_components_form_common.php:164 -#: ../../godmode/massive/massive_edit_modules.php:561 -msgid "Warning status" -msgstr "Estado advertencia" - -#: ../../include/functions_alerts.php:680 -#: ../../include/functions_treeview.php:108 -#: ../../enterprise/godmode/modules/configure_local_component.php:353 -#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:589 -#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:338 -#: ../../godmode/modules/manage_network_components_form_common.php:205 -#: ../../godmode/massive/massive_edit_modules.php:652 -msgid "Critical status" -msgstr "Estado crĆ­tico" - -#: ../../include/functions_alerts.php:681 -#: ../../enterprise/operation/agentes/wux_console_view.php:369 -#: ../../enterprise/operation/agentes/wux_console_view.php:373 -msgid "Unknown status" -msgstr "Estado desconocido" - -#: ../../include/functions_alerts.php:682 -msgid "On Change" -msgstr "en estado de cambio" - -#: ../../include/functions_alerts.php:683 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2360 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3328 -#: ../../enterprise/godmode/policies/policy_external_alerts.php:459 -#: ../../enterprise/godmode/policies/policy_alerts.php:428 -#: ../../godmode/alerts/alert_list.list.php:636 -#: ../../godmode/alerts/alert_view.php:234 -msgid "Always" -msgstr "Siempre" - -#: ../../include/functions_alerts.php:684 -msgid "Not normal status" -msgstr "Estado anormal" - -#: ../../include/functions_alerts.php:1685 -msgid "No actions defined" -msgstr "No hay acciones definidas" - -#: ../../include/functions_alerts.php:2647 -#: ../../godmode/alerts/alert_commands.php:567 -msgid "No command specified" -msgstr "NingĆŗn comando especificado" - -#: ../../include/functions_alerts.php:2652 -#: ../../godmode/alerts/alert_commands.php:563 -msgid "No name specified" -msgstr "NingĆŗn nombre especificado" - -#: ../../include/functions_alerts.php:2658 -msgid "Alert and command group does not match" -msgstr "El grupo de la alerta y del comando no coinciden" - -#: ../../include/functions_snmp.php:65 -msgid "Load Average (Last minute)" -msgstr "Carga media (Ćŗltima hora)" - -#: ../../include/functions_snmp.php:69 -msgid "Load Average (Last 5 minutes)" -msgstr "Carga media (Ćŗltimos 5 minutos)" - -#: ../../include/functions_snmp.php:73 -msgid "Load Average (Last 15 minutes)" -msgstr "Carga media (Ćŗltimos 15 minutos)" - -#: ../../include/functions_snmp.php:77 -msgid "Total Swap Size configured for the host" -msgstr "TamaƱo de intercambio total configurado para el host" - -#: ../../include/functions_snmp.php:81 -msgid "Available Swap Space on the host" -msgstr "Espacio de intercambio disponible en el host" - -#: ../../include/functions_snmp.php:85 -msgid "Total Real/Physical Memory Size on the host" -msgstr "TamaƱo de memoria real/fĆ­sica en el servidor" - -#: ../../include/functions_snmp.php:89 -msgid "Available Real/Physical Memory Space on the host" -msgstr "Memoria real/fĆ­sica disponible en el servidor" - -#: ../../include/functions_snmp.php:93 -msgid "Total Available Memory on the host" -msgstr "Memoria total disponible" - -#: ../../include/functions_snmp.php:97 -msgid "Total Cached Memory" -msgstr "Memoria de cachĆ© total" - -#: ../../include/functions_snmp.php:101 -msgid "Total Buffered Memory" -msgstr "Memoria total del bĆŗfer" - -#: ../../include/functions_snmp.php:105 -msgid "Amount of memory swapped in from disk (kB/s)" -msgstr "La cantidad de memoria intercambiada desde el disco (kB/s)" - -#: ../../include/functions_snmp.php:109 -msgid "Amount of memory swapped to disk (kB/s)" -msgstr "Cantidad de memoria intercambiada con el disco (kB/s)" - -#: ../../include/functions_snmp.php:113 -msgid "Number of blocks sent to a block device" -msgstr "NĆŗmero de bloques enviado al dispositivo de bloques" - -#: ../../include/functions_snmp.php:117 -msgid "Number of blocks received from a block device" -msgstr "NĆŗmero de bloques recibidos del dispositivo de bloques" - -#: ../../include/functions_snmp.php:121 -msgid "Number of interrupts processed" -msgstr "NĆŗmero de interrupciones procesadas" - -#: ../../include/functions_snmp.php:125 -msgid "Number of context switches" -msgstr "NĆŗmero de cambios de contexto" - -#: ../../include/functions_snmp.php:129 -msgid "user CPU time" -msgstr "tiempo de CPU de usuario" - -#: ../../include/functions_snmp.php:133 -msgid "system CPU time" -msgstr "tiempo de CPU del sistema" - -#: ../../include/functions_snmp.php:137 -msgid "idle CPU time" -msgstr "tiempo de inactividad de la CPU" - -#: ../../include/functions_snmp.php:141 -msgid "system Up time" -msgstr "Tiempo de actividad del sistema" - -#: ../../include/functions_snmp.php:349 -msgid "Pagination" -msgstr "PaginaciĆ³n" - -#: ../../include/functions_snmp.php:381 ../../include/functions_snmp.php:389 -msgid "Group by Enterprise String / IP" -msgstr "Agrupar por Cadena Enterprise/IP" - -#: ../../include/functions_snmp.php:402 ../../include/functions_html.php:2109 -#: ../../include/functions.php:504 ../../include/functions.php:635 -#: ../../enterprise/include/ajax/log_viewer.ajax.php:278 -#: ../../enterprise/meta/advanced/metasetup.visual.php:384 -#: ../../godmode/setup/setup_visuals.php:1344 -msgid "hours" -msgstr "horas" - -#: ../../include/functions_snmp.php:441 -#: ../../enterprise/include/functions_events.php:291 -msgid "Active filter" -msgstr "Filtro activo" - -#: ../../include/functions_snmp.php:441 -#: ../../enterprise/include/functions_events.php:291 -msgid "Active filters" -msgstr "Filtros activos" - -#: ../../include/functions_menu.php:491 -msgid "Configure user" -msgstr "Configurar usuario" - -#: ../../include/functions_menu.php:492 -msgid "Configure profile" -msgstr "Configurar perfil" - -#: ../../include/functions_menu.php:494 -msgid "Module templates management" -msgstr "GestiĆ³n de plantillas de mĆ³dulos" - -#: ../../include/functions_menu.php:495 -msgid "Inventory modules management" -msgstr "GestiĆ³n de mĆ³dulos de inventario" - -#: ../../include/functions_menu.php:497 -#: ../../enterprise/meta/include/functions_agents_meta.php:614 -#: ../../enterprise/meta/include/functions_agents_meta.php:619 -#: ../../enterprise/extensions/disabled/check_acls.php:50 -#: ../../enterprise/extensions/disabled/check_acls.php:137 -msgid "Agents management" -msgstr "GestiĆ³n de agentes" - -#: ../../include/functions_menu.php:499 -#: ../../godmode/alerts/configure_alert_template.php:99 -#: ../../godmode/alerts/configure_alert_template.php:123 -#: ../../godmode/alerts/configure_alert_template.php:155 -msgid "Configure alert template" -msgstr "Configurar plantilla de alerta" - -#: ../../include/functions_menu.php:501 -#: ../../godmode/users/configure_profile.php:343 -msgid "View visual console" -msgstr "Ver consola visual" - -#: ../../include/functions_menu.php:502 -msgid "Builder visual console" -msgstr "Configurador de la consola visual" - -#: ../../include/functions_menu.php:504 -msgid "View reporting" -msgstr "Ver informes" - -#: ../../include/functions_menu.php:505 -msgid "Graph viewer" -msgstr "Visor de grĆ”ficos" - -#: ../../include/functions_menu.php:507 -msgid "Manage custom graphs" -msgstr "Gestionar grĆ”ficos personalizados" - -#: ../../include/functions_menu.php:508 -msgid "View graph containers" -msgstr "Ver contenedores de grĆ”fico" - -#: ../../include/functions_menu.php:509 -msgid "Manage graph containers" -msgstr "Gestionar contenedores de grĆ”fico" - -#: ../../include/functions_menu.php:510 -msgid "View graph templates" -msgstr "Ver plantillas de grĆ”fico" - -#: ../../include/functions_menu.php:511 -msgid "Manage graph templates" -msgstr "Gestionar plantillas de grĆ”fico" - -#: ../../include/functions_menu.php:512 -msgid "Graph template items" -msgstr "Elementos de la plantilla de grĆ”fico" - -#: ../../include/functions_menu.php:513 -msgid "Graph template wizard" -msgstr "Asistente de plantilla de grĆ”fico" - -#: ../../include/functions_menu.php:514 -#: ../../enterprise/include/functions_reporting.php:124 -#: ../../enterprise/meta/general/main_menu.php:296 -#: ../../enterprise/meta/general/main_header.php:200 -msgid "Templates wizard" -msgstr "Asistente de plantillas" - -#: ../../include/functions_menu.php:517 -msgid "Manage GIS Maps" -msgstr "Gestionar mapas GIS" - -#: ../../include/functions_menu.php:520 -msgid "Manage messages" -msgstr "Gestionar mensajes" - -#: ../../include/functions_menu.php:522 -msgid "Manage module groups" -msgstr "Gestionar grupos de mĆ³dulos" - -#: ../../include/functions_menu.php:523 -msgid "Manage custom field" -msgstr "Gestionar campos personalizados" - -#: ../../include/functions_menu.php:525 -msgid "Manage alert actions" -msgstr "Gestionar acciones de alertas" - -#: ../../include/functions_menu.php:526 -msgid "Manage commands" -msgstr "Gestionar comandos" - -#: ../../include/functions_menu.php:528 -msgid "Manage export targets" -msgstr "Gestionar objetivos de exportaciĆ³n" - -#: ../../include/functions_menu.php:533 -msgid "Manage incident" -msgstr "Gestionar incidentes" - -#: ../../include/functions_menu.php:535 -msgid "Manage groups" -msgstr "Gestionar grupos" - -#: ../../include/functions_menu.php:536 -#: ../../enterprise/meta/advanced/component_management.php:52 -msgid "Tags management" -msgstr "GestiĆ³n de etiquetas" - -#: ../../include/functions_menu.php:595 -msgid "Administration" -msgstr "AdministraciĆ³n" - -#: ../../include/functions_agents.php:836 -#: ../../enterprise/godmode/massive/massive_add_modules_policy.php:366 -#: ../../godmode/massive/massive_copy_modules.php:551 -msgid "No source agent to copy" -msgstr "No hay agente de origen del que copiar" - -#: ../../include/functions_agents.php:841 -#: ../../godmode/massive/massive_copy_modules.php:569 -msgid "No destiny agent(s) to copy" -msgstr "No hay agentes destino a los que copiar" - -#: ../../include/functions_agents.php:867 -#: ../../enterprise/godmode/massive/massive_add_modules_policy.php:371 -#: ../../godmode/massive/massive_copy_modules.php:564 -msgid "No modules have been selected" -msgstr "No se ha seleccionado ningĆŗn mĆ³dulo" - -#: ../../include/functions_agents.php:1005 -msgid "" -"There was an error copying the agent configuration, the copy has been cancelled" -msgstr "" -"Hubo un error al copiar la configuraciĆ³n del agente, se cancelĆ³ la copia." - -#: ../../include/functions_agents.php:1018 -#: ../../include/functions_planned_downtimes.php:961 -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:455 -#: ../../enterprise/godmode/policies/policies.php:235 -#: ../../godmode/reporting/map_builder.php:315 -#: ../../godmode/reporting/map_builder.php:322 -#: ../../godmode/reporting/reporting_builder.php:737 -#: ../../godmode/alerts/alert_actions.php:129 -#: ../../godmode/alerts/alert_commands.php:625 -msgid "Successfully copied" -msgstr "Copia realizada correctamente" - -#: ../../include/functions_agents.php:2963 -#: ../../include/functions_agents.php:3002 -#: ../../include/functions_agents.php:3073 -msgid "No Monitors" -msgstr "No hay monitores" - -#: ../../include/functions_agents.php:2971 -#: ../../include/functions_agents.php:3026 -#: ../../include/functions_agents.php:3081 -#: ../../include/functions_reporting.php:12303 -msgid "At least one module in CRITICAL status" -msgstr "Al menos un mĆ³dulo estĆ” en estado CRƍTICO" - -#: ../../include/functions_agents.php:2977 -#: ../../include/functions_agents.php:3036 -#: ../../include/functions_agents.php:3089 -#: ../../include/functions_reporting.php:12310 -msgid "At least one module in WARNING status" -msgstr "Al menos un mĆ³dulo estĆ” en estado de ADVERTENCIA" - -#: ../../include/functions_agents.php:2983 -#: ../../include/functions_agents.php:3046 -#: ../../include/functions_agents.php:3097 -#: ../../include/functions_reporting.php:12317 -msgid "At least one module is in UKNOWN status" -msgstr "Al menos un mĆ³dulo estĆ” en estado DESCONOCIDO" - -#: ../../include/functions_agents.php:2989 -#: ../../include/functions_agents.php:3056 -#: ../../include/functions_agents.php:3105 -#: ../../include/functions_reporting.php:12324 -msgid "All Monitors OK" -msgstr "Todos los monitores OK" - -#: ../../include/functions_agents.php:3014 -msgid "Alert fired on agent" -msgstr "Alerta disparada en agente" - -#: ../../include/functions_agents.php:3847 -#: ../../include/functions_agents.php:3901 -#: ../../include/functions_reporting_html.php:5565 -#: ../../enterprise/meta/monitoring/custom_fields_view.php:400 -msgid "Agents ok" -msgstr "Agentes OK" - -#: ../../include/functions_agents.php:3857 -#: ../../include/functions_reporting_html.php:5556 -#: ../../enterprise/meta/monitoring/custom_fields_view.php:374 -#: ../../mobile/operation/groups.php:153 -msgid "Agents critical" -msgstr "Agentes crĆ­ticos" - -#: ../../include/functions_agents.php:3867 -#: ../../include/functions_reporting_html.php:5559 -#: ../../enterprise/meta/monitoring/custom_fields_view.php:387 -msgid "Agents warning" -msgstr "Agentes en estado de advertencia" - -#: ../../include/functions_agents.php:3877 -#: ../../include/functions_reporting_html.php:5568 -#: ../../enterprise/meta/monitoring/custom_fields_view.php:413 -#: ../../mobile/operation/groups.php:156 -msgid "Agents unknown" -msgstr "Agentes desconocidos" - -#: ../../include/functions_agents.php:3891 -#: ../../include/functions_reporting_html.php:5574 -#: ../../enterprise/meta/monitoring/custom_fields_view.php:426 -#: ../../mobile/operation/groups.php:150 -msgid "Agents not init" -msgstr "Agentes no iniciados" - -#: ../../include/functions_agents.php:3997 -#: ../../enterprise/include/class/SAP.app.php:727 -msgid "SAP Login OK" -msgstr "Inicio de sesiĆ³n SAP correcto" - -#: ../../include/functions_agents.php:3998 -#: ../../enterprise/include/class/SAP.app.php:728 -msgid "SAP Dumps" -msgstr "Volcados SAP" - -#: ../../include/functions_agents.php:3999 -#: ../../enterprise/include/class/SAP.app.php:729 -msgid "SAP lock entry list" -msgstr "Lista de entradas de bloqueo SAP" - -#: ../../include/functions_agents.php:4000 -#: ../../enterprise/include/class/SAP.app.php:730 -msgid "SAP canceled Jobs" -msgstr "Trabajos SAP cancelados" - -#: ../../include/functions_agents.php:4001 -#: ../../enterprise/include/class/SAP.app.php:731 -msgid "SAP Batch inputs erroneous" -msgstr "Entradas SAP en grupo errĆ³neas" - -#: ../../include/functions_agents.php:4002 -#: ../../enterprise/include/class/SAP.app.php:732 -msgid "SAP IDOC erroneous" -msgstr "SAP IDOC errĆ³neo" - -#: ../../include/functions_agents.php:4003 -#: ../../enterprise/include/class/SAP.app.php:733 -msgid "SAP IDOC OK" -msgstr "SAP IDOC OK" - -#: ../../include/functions_agents.php:4004 -#: ../../enterprise/include/class/SAP.app.php:734 -msgid "SAP WP without active restart" -msgstr "WP SAP sin reinicio activo" - -#: ../../include/functions_agents.php:4005 -#: ../../enterprise/include/class/SAP.app.php:735 -msgid "SAP WP stopped" -msgstr "WP SAP parado" - -#: ../../include/functions_agents.php:4006 -#: ../../enterprise/include/class/SAP.app.php:736 -msgid "Average time of SAPGUI response" -msgstr "Media de tiempo de respuesta de SAPGUI" - -#: ../../include/functions_agents.php:4007 -msgid "Dialog response time" -msgstr "Tiempo de respuesta del diĆ”logo" - -#: ../../include/functions_agents.php:4008 -#: ../../enterprise/include/class/SAP.app.php:737 -msgid "Dialog Logged users" -msgstr "Usuarios conectados en el diĆ”logo" - -#: ../../include/functions_agents.php:4009 -#: ../../enterprise/include/class/SAP.app.php:738 -msgid "TRFC in error" -msgstr "TRFC en error" - -#: ../../include/functions_agents.php:4010 -#: ../../enterprise/include/class/SAP.app.php:739 -msgid "QRFC in error SMQ2" -msgstr "QRFC en error SMQ2" - -#: ../../include/functions_agents.php:4011 -#: ../../enterprise/include/class/SAP.app.php:740 -msgid "Number of Update WPs in error" -msgstr "NĆŗmero de WPs de actualizaciĆ³n en error" - -#: ../../include/functions_network.php:34 -msgid "Top listeners" -msgstr "Top listeners" - -#: ../../include/functions_network.php:35 -msgid "Top talkers" -msgstr "Top talkers" - -#: ../../include/functions_network.php:45 -msgid "Top TCP protocols" -msgstr "Top de protocolos TCP" - -#: ../../include/functions_network.php:46 -msgid "Top UDP protocols" -msgstr "Top de protocolos UDP" - -#: ../../include/functions_notifications.php:807 -msgid "Subtype customization" -msgstr "PersonalizaciĆ³n de subtipo" - -#: ../../include/functions_notifications.php:834 -msgid "Notified users" -msgstr "Usuarios notificados" - -#: ../../include/functions_notifications.php:834 -msgid "Notified groups" -msgstr "Grupos notificados" - -#: ../../include/functions_notifications.php:835 -msgid "Add users" -msgstr "AƱadir usuarios" - -#: ../../include/functions_notifications.php:835 -msgid "Add groups" -msgstr "AƱadir grupos" - -#: ../../include/functions_notifications.php:836 -msgid "Delete users" -msgstr "Borrar usuarios" - -#: ../../include/functions_notifications.php:836 -msgid "Delete groups" -msgstr "Borrar grupos" - -#: ../../include/functions_notifications.php:928 -#: ../../enterprise/godmode/massive/massive_add_service_elements.php:616 -msgid "Add elements" -msgstr "AƱadir elementos" - -#: ../../include/functions_notifications.php:941 -msgid "Remove elements" -msgstr "Eliminar elementos" - -#: ../../include/functions_notifications.php:1058 -msgid "Click here to get more information" -msgstr "Pinche aquĆ­ para obtener mĆ”s informaciĆ³n" - -#: ../../include/functions_netflow.php:348 -#: ../../enterprise/include/functions_reporting_csv.php:2808 -msgid "Destination IP" -msgstr "IP de destino" - -#: ../../include/functions_netflow.php:350 -#: ../../enterprise/include/functions_reporting_csv.php:2808 -msgid "% Traffic" -msgstr "% TrĆ”fico" - -#: ../../include/functions_netflow.php:351 -msgid "Avg. Throughput" -msgstr "Rendimiento medio" - -#: ../../include/functions_netflow.php:416 -#: ../../enterprise/include/functions_reporting_csv.php:2680 -msgid "Total flows" -msgstr "Fluctuaciones totales" - -#: ../../include/functions_netflow.php:421 -#: ../../enterprise/include/functions_reporting_csv.php:2680 -msgid "Total bytes" -msgstr "Bytes totales" - -#: ../../include/functions_netflow.php:426 -#: ../../enterprise/include/functions_reporting_csv.php:2680 -msgid "Total packets" -msgstr "Paquetes totales" - -#: ../../include/functions_netflow.php:431 -msgid "Average bits per second" -msgstr "Media de bits por segundo" - -#: ../../include/functions_netflow.php:436 -msgid "Average packets per second" -msgstr "Media de paquetes por segundo" - -#: ../../include/functions_netflow.php:441 -msgid "Average bytes per packet" -msgstr "Media de bytes por paquete" - -#: ../../include/functions_netflow.php:1182 -msgid "Area graph" -msgstr "GrĆ”fico del Ć”rea" - -#: ../../include/functions_netflow.php:1185 -msgid "Top-N connections" -msgstr "Conexiones Top-N" - -#: ../../include/functions_netflow.php:1186 -msgid "Circular mesh" -msgstr "Malla circular" - -#: ../../include/functions_netflow.php:1187 -#: ../../include/functions_netflow.php:1452 -msgid "Host detailed traffic" -msgstr "TrĆ”fico detallado de la mĆ”quina" - -#: ../../include/functions_netflow.php:1439 -msgid "Sent" -msgstr "Enviado" - -#: ../../include/functions_netflow.php:1447 -msgid "Received" -msgstr "Recibido" - -#: ../../include/functions_netflow.php:1628 -msgid "Dst port" -msgstr "Puerto destino" - -#: ../../include/functions_netflow.php:1631 -msgid "Dst IP" -msgstr "IP de destino" - -#: ../../include/functions_netflow.php:1634 -msgid "Src IP" -msgstr "IP de origen" - -#: ../../include/functions_netflow.php:1637 -msgid "Src port" -msgstr "Puerto de origen" - -#: ../../include/functions_netflow.php:1823 -#, php-format -msgid "nfdump binary (%s) not found!" -msgstr "nfdump binary (%s) no encontrado" - -#: ../../include/functions_netflow.php:1830 -msgid "Make sure nfdump version 1.6.8 or newer is installed!" -msgstr "" -"AsegĆŗrate de que tienes instalada la versiĆ³n 1.6.8 nfdump o alguna posterior." - -#: ../../include/functions_netflow.php:1847 -msgid "High" -msgstr "Alta" - -#: ../../include/functions_netflow.php:1848 -msgid "Ultra High" -msgstr "Extra alta" - -#: ../../include/functions_netflow.php:1849 -#: ../../enterprise/include/functions_cron.php:500 -msgid "Hourly" -msgstr "Cada hora" - -#: ../../include/functions_netflow.php:1850 -#: ../../enterprise/include/functions_cron.php:501 -#: ../../enterprise/include/lib/NetworkManager.php:178 -#: ../../godmode/agentes/module_manager_editor_prediction.php:183 -msgid "Daily" -msgstr "Diariamente" - -#: ../../include/functions_netflow.php:1881 -#, php-format -msgid "Agregate by %s" -msgstr "AƱadir por %s" - -#: ../../include/functions_netflow.php:1889 -#, php-format -msgid "Resolution %s" -msgstr "ResoluciĆ³n de %s" - -#: ../../include/functions_servers.php:556 -#: ../../include/functions_servers.php:1305 -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:386 -msgid "Data server" -msgstr "Servidor de datos" - -#: ../../include/functions_servers.php:582 -msgid "SNMP Trap server" -msgstr "Servidor de traps SNMP" - -#: ../../include/functions_servers.php:621 -#: ../../enterprise/include/lib/ClusterViewer/ClusterWizard.php:840 -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:476 -msgid "Prediction server" -msgstr "Servidor de predicciĆ³n" - -#: ../../include/functions_servers.php:647 -#: ../../include/functions_servers.php:1332 -#: ../../enterprise/godmode/servers/manage_export_form.php:79 -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:537 -msgid "Export server" -msgstr "Servidor de exportaciĆ³n" - -#: ../../include/functions_servers.php:660 -#: ../../include/functions_servers.php:1335 -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:522 -msgid "Inventory server" -msgstr "Servidor de inventario" - -#: ../../include/functions_servers.php:673 -#: ../../include/functions_servers.php:1329 -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:507 -msgid "Web server" -msgstr "Servidor web" - -#: ../../include/functions_servers.php:686 -#: ../../include/functions_servers.php:1338 -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:552 -msgid "Event server" -msgstr "Servidor de eventos" - -#: ../../include/functions_servers.php:699 -msgid "Correlation server" -msgstr "Servidor de correlaciĆ³n" - -#: ../../include/functions_servers.php:712 -#: ../../include/functions_servers.php:1314 -msgid "Enterprise ICMP server" -msgstr "Servidor ICMP Enterprise" - -#: ../../include/functions_servers.php:725 -#: ../../include/functions_servers.php:1317 -msgid "Enterprise SNMP server" -msgstr "Servidor SNMP Enterprise" - -#: ../../include/functions_servers.php:751 -msgid "Enterprise Transactional server" -msgstr "Servidor transaccional Enterprise" - -#: ../../include/functions_servers.php:764 -msgid "Mainframe server" -msgstr "Servidor mainframe" - -#: ../../include/functions_servers.php:777 -msgid "Sync server" -msgstr "Servidor sync" - -#: ../../include/functions_servers.php:790 -msgid "Wux server" -msgstr "Servidor WUX" - -#: ../../include/functions_servers.php:803 -#: ../../include/functions_servers.php:1344 -msgid "Log server" -msgstr "Servidor de registros" - -#: ../../include/functions_servers.php:816 -#: ../../include/functions_servers.php:1359 -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:612 -msgid "NCM server" -msgstr "Servidor NCM" - -#: ../../include/functions_servers.php:829 -msgid "Autoprovision server" -msgstr "Servidor de auto aprovisionamiento" - -#: ../../include/functions_servers.php:842 -msgid "Migration server" -msgstr "Servidor de migraciĆ³n" - -#: ../../include/functions_servers.php:855 -#: ../../include/functions_servers.php:1356 -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:416 -msgid "Alert server" -msgstr "Servidor de alertas" - -#: ../../include/functions_servers.php:1311 -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:582 -msgid "SNMP server" -msgstr "Servidor SNMP" - -#: ../../include/functions_servers.php:1323 -msgid "Prediction Server" -msgstr "Servidor de predicciĆ³n" - -#: ../../include/functions_servers.php:1347 -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:597 -msgid "WUX server" -msgstr "Servidor WUX" - -#: ../../include/functions_servers.php:1350 -msgid "Satellite server" -msgstr "Servidor SatĆ©lite" - -#: ../../include/functions_servers.php:1353 -msgid "Transactional server" -msgstr "Servidor transaccional" - -#: ../../include/functions_clippy.php:152 -#, php-format -msgid "%s assistant" -msgstr "Asistente de %s" - -#: ../../include/functions_clippy.php:189 ../../include/functions_clippy.php:194 -msgid "End wizard" -msgstr "Cerrar asistente" - -#: ../../include/functions_clippy.php:227 -msgid "Next →" -msgstr "Siguiente →" - -#: ../../include/functions_clippy.php:228 -msgid "← Back" -msgstr "← Anterior" - -#: ../../include/functions_clippy.php:240 -msgid "Do you want to exit the help tour?" -msgstr "ĀæQuieres salir de la ayuda guiada?" - -#: ../../include/functions_api.php:118 -msgid "Not `set`, `get` or `help` operation selected." -msgstr "No hay operaciĆ³n 'set', 'get' o 'help' seleccionada" - -#: ../../include/functions_api.php:128 -msgid "This operation does not exist." -msgstr "Esta operaciĆ³n no existe." - -#: ../../include/functions_api.php:138 -msgid "The Id does not exist in database." -msgstr "El ID no existe en la base de datos." - -#: ../../include/functions_api.php:148 -msgid "This operation can not be used in cluster elements." -msgstr "Esta operaciĆ³n no es posible en elementos de un cluster." - -#: ../../include/functions_api.php:158 -msgid "The user has not enough permissions for perform this action." -msgstr "" -"El usuario no tiene los permisos suficientes para llevar a cabo esta acciĆ³n." - -#: ../../include/functions_api.php:168 -#: ../../enterprise/meta/monitoring/custom_fields_view.php:719 -msgid "No data to show." -msgstr "No hay datos." - -#: ../../include/functions_api.php:178 -msgid "" -"This console is not the environment administrator. Please, manage this feature " -"from centralized manager console (Metaconsole)." -msgstr "" -"Esta consola no es el administrador del entorno. Gestione esta funcionalidad " -"desde la consola de gestiĆ³n centralizada (Metaconsola)." - -#: ../../include/functions_api.php:188 -msgid "Auth error" -msgstr "Error de autenticaciĆ³n" - -#: ../../include/functions_api.php:1473 -msgid "" -"The agent could not be modified. For security reasons, use a group other than " -"0." -msgstr "" -"No se ha podido modificar el agente. Por motivos de seguridad, use un grupo " -"diferente de 0." - -#: ../../include/functions_api.php:1828 -#, php-format -msgid "Updated %d/%d agents" -msgstr "Se han actualizado %d/%d agentes" - -#: ../../include/functions_api.php:1836 -msgid "Agent updated." -msgstr "Agente actualizado." - -#: ../../include/functions_api.php:2025 ../../godmode/setup/os.php:238 -msgid "Success creating OS" -msgstr "SO creado correctamente" - -#: ../../include/functions_api.php:2027 -msgid "Could not create OS" -msgstr "No se ha podido crear el sistema operativo." - -#: ../../include/functions_api.php:2064 ../../godmode/setup/os.php:246 -msgid "Success updating OS" -msgstr "SO creado correctamente" - -#: ../../include/functions_api.php:2066 -msgid "Could not update OS" -msgstr "No se ha podido actualizar el sistema operativo" - -#: ../../include/functions_api.php:2267 -msgid "The agent was successfully deleted" -msgstr "El agente se ha eliminado correctamente" - -#: ../../include/functions_api.php:3762 -msgid "Network module updated." -msgstr "MĆ³dulo de red actualizado" - -#: ../../include/functions_api.php:4058 -msgid "Plugin module updated." -msgstr "MĆ³dulo de plugin actualizado" - -#: ../../include/functions_api.php:4414 -#, php-format -msgid "Synthetic module created ID: %s" -msgstr "ID creada por el mĆ³dulo sintĆ©tico: %s" - -#: ../../include/functions_api.php:4567 -msgid "Synthetic module created ID: " -msgstr "ID del mĆ³dulo sintĆ©tico creado: " - -#: ../../include/functions_api.php:4684 -msgid "Data module updated." -msgstr "Datos del mĆ³dulo actualizado" - -#: ../../include/functions_api.php:5057 -msgid "SNMP module updated." -msgstr "MĆ³dulo SNMP actualizado" - -#: ../../include/functions_api.php:5664 -msgid "Error creating alert template. Id_group cannot be left blank." -msgstr "Error al crear plantilla de alerta. Id_group no puede estar en blanco." - -#: ../../include/functions_api.php:5678 -msgid "" -"Error creating alert template. Invalid id_group or the user has not enough " -"permission to make this action." -msgstr "" -"Error al crear plantilla de alerta. Id_group no vĆ”lido o no tiene permisos " -"suficientes para ejecutar esta acciĆ³n." - -#: ../../include/functions_api.php:5824 -msgid "" -"Error updating alert template. Invalid id_group or the user has not enough " -"permission to make this action." -msgstr "" -"Error al cargar la plantilla de la alerta. Id_group no vĆ”lido o el usuario no " -"tiene los permisos suficientes para ejecutar esta acciĆ³n." - -#: ../../include/functions_api.php:5908 -msgid "Successful update of the alert template" -msgstr "ActualizaciĆ³n correcta de la plantilla de alerta" - -#: ../../include/functions_api.php:5956 -msgid "Error deleting alert template. Id_template doesn't exist." -msgstr "Error al eliminar la plantilla de alerta. Id_template no existe." - -#: ../../include/functions_api.php:5985 -msgid "Successful delete of alert template." -msgstr "Plantilla de alerta borrada correctamente." - -#: ../../include/functions_api.php:6405 ../../include/functions_api.php:12354 -#: ../../include/functions_api.php:12420 ../../include/functions_api.php:12701 -#: ../../include/functions_api.php:12781 -#, php-format -msgid "%d agents affected" -msgstr "%d agentes afectados" - -#: ../../include/functions_api.php:6551 -msgid "Correct deleting of module template." -msgstr "Plantilla de mĆ³dulo borrada correctamente" - -#: ../../include/functions_api.php:6659 -msgid "Successful delete of module template." -msgstr "Plantilla de mĆ³dulo eliminada correctamente." - -#: ../../include/functions_api.php:6692 -msgid "Error validating alert. Id_template cannot be left blank." -msgstr "Error al validar la alerta. Id_template no puede estar en blanco." - -#: ../../include/functions_api.php:6700 -msgid "Error validating alert. Id_agent cannot be left blank." -msgstr "Error al validar a alerta. Id_agent no puede estar vacĆ­o." - -#: ../../include/functions_api.php:6708 -msgid "Error validating alert. Id_module cannot be left blank." -msgstr "Error al validar la alerta. Id_module no puede estar en blanco." - -#: ../../include/functions_api.php:6779 -msgid "Error validating alert. Specified alert does not exist." -msgstr "Error al validar alerta. La alerta especificada no existe." - -#: ../../include/functions_api.php:6790 -msgid "Error validating alert" -msgstr "Error al validar la alerta." - -#: ../../include/functions_api.php:6864 -#, php-format -msgid "Correct validation of all alerts (total %d)." -msgstr "ValidaciĆ³n correcta de todas las alertas (total %d)." - -#: ../../include/functions_api.php:6958 -msgid "Correct validation of all policy alerts." -msgstr "ValidaciĆ³n correcta de las alertas de polĆ­tica." - -#: ../../include/functions_api.php:7000 -msgid "" -"Error stopping downtime. Periodical and running scheduled downtime cannot be " -"stopped." -msgstr "" -"Error al detener el tiempo de inactividad. Las paradas planificadas periĆ³dicas " -"y en ejecuciĆ³n no pueden detenerse." - -#: ../../include/functions_api.php:7013 -msgid "Downtime stopped." -msgstr "Tiempo de inactividad interrumpido" - -#: ../../include/functions_api.php:7495 -msgid "and this modules are doesn't exists or not applicable a this agents: " -msgstr "y este mĆ³dulo no existe o no es aplicable a estos agentes: " - -#: ../../include/functions_api.php:7499 -msgid "and this agents are generate problems: " -msgstr "y estos agentes generan problemas: " - -#: ../../include/functions_api.php:7503 -msgid "and this agents with ids are doesn't exists: " -msgstr "y estos agentes con los identificadores no existen: " - -#: ../../include/functions_api.php:7651 -msgid "Planned downtime updated" -msgstr "Tiempo de parada planificado actualizado" - -#: ../../include/functions_api.php:7727 -msgid " Agents deleted" -msgstr " Agentes eliminados" - -#: ../../include/functions_api.php:7808 -msgid " Agents added" -msgstr " Agentes aƱadidos" - -#: ../../include/functions_api.php:7928 -msgid "Data policy module updated." -msgstr "PolĆ­tica de mĆ³dulo de datos actualizado" - -#: ../../include/functions_api.php:8161 -msgid "Network policy module updated." -msgstr "MĆ³dulo de red de la polĆ­tica actualizado" - -#: ../../include/functions_api.php:8418 -msgid "Plugin policy module updated." -msgstr "MĆ³dulo de plugin de la polĆ­tica actualizado" - -#: ../../include/functions_api.php:8927 -msgid "SNMP policy module updated." -msgstr "MĆ³dulo SNMP de la polĆ­tica actualizado" - -#: ../../include/functions_api.php:9272 -msgid "Successful deletion" -msgstr "Eliminado correctamente." - -#: ../../include/functions_api.php:9588 -msgid "User created." -msgstr "Usuario creado." - -#: ../../include/functions_api.php:9683 -msgid "User updated." -msgstr "Usuario actualizado." - -#: ../../include/functions_api.php:9762 -msgid "Enabled user." -msgstr "Usuario habilitado" - -#: ../../include/functions_api.php:9770 -msgid "Disabled user." -msgstr "Usuario deshabilitado" - -#: ../../include/functions_api.php:10067 -#, php-format -msgid "Template have been inserted in %d agents." -msgstr "Las plantillas se han insertado en %d agentes." - -#: ../../include/functions_api.php:10239 -msgid "XML file was generated successfully in path: " -msgstr "El archivo XML se ha creado correctamente en la ruta: " - -#: ../../include/functions_api.php:10379 -#, php-format -msgid "Module has been created in %d agents." -msgstr "El mĆ³dulo se ha cread en %d agentes." - -#: ../../include/functions_api.php:10509 -#, php-format -msgid "Action has been set for %d agents." -msgstr "La acciĆ³n se ha asignado a %d agentes." - -#: ../../include/functions_api.php:11165 -#: ../../godmode/agentes/configurar_agente.php:2236 -#, php-format -msgid "Save by %s Console" -msgstr "Guardar por consola de %s" - -#: ../../include/functions_api.php:11166 -#: ../../godmode/agentes/configurar_agente.php:2254 -#, php-format -msgid "Update by %s Console" -msgstr "Actualizar por consola de %s" - -#: ../../include/functions_api.php:11167 -#: ../../godmode/agentes/configurar_agente.php:2270 -#, php-format -msgid "Insert by %s Console" -msgstr "Insertar por consola de %s" - -#: ../../include/functions_api.php:11944 -msgid "User deleted." -msgstr "Usuario borrado." - -#: ../../include/functions_api.php:12005 -msgid "User profile added." -msgstr "Perfil de usuario aƱadido." - -#: ../../include/functions_api.php:12072 -msgid "User profile deleted." -msgstr "Perfil de usuario eliminado." - -#: ../../include/functions_api.php:12361 -msgid "Module disabled successfully." -msgstr "MĆ³dulo deshabilitado correctamente." - -#: ../../include/functions_api.php:12363 -msgid "The module could not be disabled." -msgstr "No se ha podido deshabilitar el mĆ³dulo." - -#: ../../include/functions_api.php:12427 -msgid "Module enabled successfully." -msgstr "MĆ³dulo habilitado correctamente." - -#: ../../include/functions_api.php:12429 -msgid "The module could not be enabled." -msgstr "El mĆ³dulo no se ha podido habilitar." - -#: ../../include/functions_api.php:12477 ../../include/functions_api.php:12530 -msgid "The alert could not be disabled." -msgstr "La alerta no se ha podido deshabilitar." - -#: ../../include/functions_api.php:12577 ../../include/functions_api.php:12630 -msgid "The alert could not be enabled." -msgstr "La alerta no se ha podido habilitar." - -#: ../../include/functions_api.php:13902 -msgid "Enabled agent." -msgstr "Agente habilitado" - -#: ../../include/functions_api.php:13910 -msgid "Disabled agent." -msgstr "Agente deshabilitado" - -#: ../../include/functions_api.php:14889 -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:14891 -#, 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:14894 -msgid "This function is for metaconsole only." -msgstr "funciĆ³n exclusiva de la Metaconsola." - -#: ../../include/functions_api.php:15279 ../../include/functions_api.php:15350 -msgid "Successfully deleted." -msgstr "Eliminado correctamente" - -#: ../../include/functions_api.php:15309 -msgid "The user cannot access the cluster." -msgstr "El usuario no puede acceder al cluster." - -#: ../../include/functions_api.php:15403 -#: ../../godmode/agentes/agent_template.php:67 -msgid "Created by template " -msgstr "Creado mediante la plantilla " - -#: ../../include/functions_api.php:15497 -#: ../../godmode/agentes/agent_template.php:163 -msgid "Modules successfully added" -msgstr "MĆ³dulos aƱadidos correctamente" - -#: ../../include/functions_api.php:16195 -msgid "Event filter successfully created." -msgstr "Filtro de evento creado correctamente." - -#: ../../include/functions_api.php:16428 -msgid "Event filter successfully updated." -msgstr "Filtro de evento creado correctamente." - -#: ../../include/functions_api.php:16469 -msgid "Event filter successfully deleted." -msgstr "Filtro de evento borrado correctamente." - -#: ../../include/functions_api.php:16785 -msgid "Validated traps." -msgstr "Traps validados." - -#: ../../include/functions_api.php:16812 -msgid "Deleted traps." -msgstr "Traps eliminados." - -#: ../../include/functions_api.php:17005 -#, 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:17007 -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:17459 -#, 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:17619 -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:17627 -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:17652 -msgid "Error in discovery task enabling/disabling." -msgstr "Error al habilitar/deshabilitar la tarea discovery." - -#: ../../include/functions_api.php:17660 -msgid "Enabled discovery task." -msgstr "Tarea discovery habilitada." - -#: ../../include/functions_api.php:17668 -msgid "Disabled discovery task." -msgstr "Tarea discovery deshabilitada." - -#: ../../include/functions_filemanager.php:135 -#: ../../include/functions_filemanager.php:192 -#: ../../include/functions_filemanager.php:247 -#: ../../include/functions_filemanager.php:340 -msgid "Security error" -msgstr "Error de seguridad" - -#: ../../include/functions_filemanager.php:154 -msgid "Upload error" -msgstr "Error de subida" - -#: ../../include/functions_filemanager.php:163 -#, php-format -msgid "Issue setting umask: %s" -msgstr "Problema al configurar umask: %s" - -#: ../../include/functions_filemanager.php:168 -#: ../../include/functions_filemanager.php:198 -msgid "Upload correct" -msgstr "Subida correcta" - -#: ../../include/functions_filemanager.php:195 -msgid "It was impossible to uncompress your file" -msgstr "Era imposible descomprimir el archivo" - -#: ../../include/functions_filemanager.php:211 -msgid "" -"File size seems to be too large. Please check your php.ini configuration or " -"contact with the administrator" -msgstr "" -"El tamaƱo del archivo es demasiado grande. Por favor, comprueba la " -"configuraciĆ³n de php.ini o contacta con el administrador." - -#: ../../include/functions_filemanager.php:260 -msgid "File created correctly" -msgstr "Filtro creado correctamente" - -#: ../../include/functions_filemanager.php:263 -msgid "Error creating file" -msgstr "Error al crear el archivo" - -#: ../../include/functions_filemanager.php:270 -#: ../../include/functions_filemanager.php:320 -msgid "Error creating file with empty name" -msgstr "Error al crear archivo con nombre en blanco" - -#: ../../include/functions_filemanager.php:296 -#: ../../enterprise/meta/advanced/collections.editor.php:167 -#: ../../enterprise/godmode/agentes/collections.editor.php:198 -msgid "Security error." -msgstr "Error de seguridad" - -#: ../../include/functions_filemanager.php:311 -msgid "Directory created" -msgstr "Directorio creado" - -#: ../../include/functions_filemanager.php:314 -msgid "Something gone wrong creating directory" -msgstr "Algo saliĆ³ mal al crear un directorio" - -#: ../../include/functions_filemanager.php:342 -#: ../../include/functions_filemanager.php:359 -#: ../../include/functions_reporting_html.php:1691 -#: ../../enterprise/include/functions_inventory.php:891 -#: ../../enterprise/include/functions_inventory.php:956 -msgid "Deleted" -msgstr "Eliminado(s)" - -#: ../../include/functions_filemanager.php:539 -#: ../../include/functions_filemanager.php:775 -msgid "Create a Directory" -msgstr "Crear directorio" - -#: ../../include/functions_filemanager.php:543 -#: ../../include/functions_filemanager.php:786 -#: ../../include/functions_filemanager.php:789 -msgid "Create a Text" -msgstr "Crear texto" - -#: ../../include/functions_filemanager.php:547 -#: ../../include/functions_filemanager.php:800 -#: ../../include/functions_filemanager.php:803 -msgid "Upload Files" -msgstr "Subir archivos" - -#: ../../include/functions_filemanager.php:578 -#, php-format -msgid "Directory %s doesn't exist!" -msgstr "El directorio %s no existe" - -#: ../../include/functions_filemanager.php:590 -#: ../../godmode/setup/file_manager.php:66 ../../godmode/servers/plugin.php:235 -#, php-format -msgid "Index of %s" -msgstr "ƍndice de %s" - -#: ../../include/functions_filemanager.php:605 -#: ../../extensions/files_repo/files_repo_list.php:58 -msgid "Last modification" -msgstr "ƚltima modificaciĆ³n" - -#: ../../include/functions_filemanager.php:623 -msgid "Parent directory" -msgstr "Directorio padre" - -#: ../../include/functions_filemanager.php:637 -msgid "Directory" -msgstr "Directorio" - -#: ../../include/functions_filemanager.php:645 -msgid "Compressed file" -msgstr "Archivo comprimido" - -#: ../../include/functions_filemanager.php:649 -#: ../../include/functions_filemanager.php:656 -msgid "Text file" -msgstr "Archivo de texto" - -#: ../../include/functions_filemanager.php:689 -msgid "This file could be executed by any user" -msgstr "Cualquier usuario podrĆ­a ejecutar este archivo." - -#: ../../include/functions_filemanager.php:690 -msgid "Make sure it can't perform dangerous tasks" -msgstr "AsegĆŗrate de que no puede desempeƱar tareas peligrosas" - -#: ../../include/functions_filemanager.php:737 -#: ../../enterprise/meta/advanced/collections.editor.php:125 -#: ../../enterprise/meta/advanced/collections.editor.php:193 -#: ../../enterprise/godmode/agentes/collections.editor.php:158 -#: ../../enterprise/godmode/agentes/collections.editor.php:224 -#: ../../godmode/servers/plugin.php:173 -msgid "Edit file" -msgstr "Editar archivo" - -#: ../../include/functions_filemanager.php:758 -msgid "No files or directories to show." -msgstr "No hay archivos o directorios a mostrar." - -#: ../../include/functions_filemanager.php:772 -#: ../../include/functions_filemanager.php:898 -msgid "Create directory" -msgstr "Crear directorio" - -#: ../../include/functions_filemanager.php:834 -msgid "The zip upload in this dir, easy to upload multiple files." -msgstr "Subir archivo zip a este directorio, Ćŗtil para subir mĆŗltiples archivos." - -#: ../../include/functions_filemanager.php:836 -msgid "Decompress" -msgstr "Descomprimir" - -#: ../../include/functions_filemanager.php:853 -#: ../../enterprise/include/class/CSVImportAgents.class.php:198 -#: ../../enterprise/extensions/csv_import_group/main.php:105 -msgid "Go" -msgstr "Ir" - -#: ../../include/functions_filemanager.php:910 -msgid "Create text" -msgstr "Crear texto" - -#: ../../include/functions_filemanager.php:922 -msgid "Upload file/s" -msgstr "Subir archivo/s" - -#: ../../include/functions_filemanager.php:931 -msgid "The directory is read-only" -msgstr "Este directorio es solo de lectura." - -#: ../../include/functions_treeview.php:52 -msgid "There was a problem loading module" -msgstr "Error al cargar el mĆ³dulo" - -#: ../../include/functions_treeview.php:90 -#: ../../include/functions_treeview.php:102 -#: ../../enterprise/godmode/modules/configure_local_component.php:329 -#: ../../enterprise/godmode/modules/configure_local_component.php:372 -#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:532 -#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:623 -#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:323 -#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:372 -#: ../../godmode/modules/manage_network_components_form_common.php:183 -#: ../../godmode/modules/manage_network_components_form_common.php:224 -#: ../../godmode/massive/massive_edit_modules.php:595 -#: ../../godmode/massive/massive_edit_modules.php:686 -#: ../../godmode/agentes/module_manager_editor_common.php:444 -#: ../../godmode/agentes/module_manager_editor_common.php:505 -msgid "Str." -msgstr "Str." - -#: ../../include/functions_treeview.php:315 -#: ../../include/graphs/functions_flot.php:509 -#: ../../include/functions_reporting_html.php:655 -#: ../../include/functions_reporting_html.php:4416 -msgid "No data" -msgstr "Sin datos" - -#: ../../include/functions_treeview.php:342 -msgid "Go to module edition" -msgstr "Ir a la ediciĆ³n de mĆ³dulos" - -#: ../../include/functions_treeview.php:393 -msgid "There was a problem loading alerts" -msgstr "Error al cargar las alertas" - -#: ../../include/functions_treeview.php:454 -#: ../../include/functions_reporting_html.php:5086 -#: ../../include/functions_reporting_html.php:5208 -#: ../../godmode/snmpconsole/snmp_alert.php:1271 -msgid "Times fired" -msgstr "NĀŗ de veces disparada" - -#: ../../include/functions_treeview.php:478 -msgid "Go to alerts edition" -msgstr "Ir a \"editar alertas\"" - -#: ../../include/functions_treeview.php:676 -msgid "Next agent contact" -msgstr "Siguiente contacto con el agente" - -#: ../../include/functions_treeview.php:703 -msgid "Edit cluster" -msgstr "Editar cluster" - -#: ../../include/functions_treeview.php:707 -msgid "Go to agent edition" -msgstr "Ir a \"editar agentes\"" - -#: ../../include/functions_treeview.php:719 -msgid "Agent data" -msgstr "Datos de agentes" - -#: ../../include/functions_treeview.php:799 -msgid "Advanced information" -msgstr "InformaciĆ³n avanzada" - -#: ../../include/functions_treeview.php:812 -msgid "Agent access rate (24h)" -msgstr "Accesibilidad del agente (24h)" - -#: ../../include/functions_treeview.php:831 ../../mobile/operation/agent.php:268 -msgid "Events (24h)" -msgstr "Eventos (24h)" - -#: ../../include/functions_treeview.php:901 -msgid "Interface information" -msgstr "Interfaz de informaciĆ³n" - -#: ../../include/functions_container.php:148 -#: ../../godmode/reporting/graphs.php:312 -msgid "Number of Graphs" -msgstr "NĆŗmero de grĆ”ficos" - -#: ../../include/help/clippy/godmode_alerts_alert_actions.php:35 -msgid "" -"Let me show you how to create an email action: Click on Create button and fill " -"the form showed in the following screen." -msgstr "" -"Te voy a enseƱar a crear una acciĆ³n de correo electrĆ³nico: haz clic en el " -"botĆ³n Crear y rellena el formulario que aparecerĆ” en la siguiente pantalla." - -#: ../../include/help/clippy/godmode_alerts_alert_actions.php:49 -msgid "" -"Now, you have to go to the monitors list and look for a critical module to " -"apply the alert." -msgstr "" -"Ahora ve a la lista de monitores y busca un mĆ³dulo en estado crĆ­tico para " -"enlazarle la alerta." - -#: ../../include/help/clippy/godmode_alerts_alert_actions.php:54 -msgid "" -"Click on the arrow to drop down the Monitoring submenu and select Monitor " -"Detail." -msgstr "" -"Haz clic en la flecha para desplegar el submenĆŗ MonitorizaciĆ³n y selecciona " -"Detalle del monitor." - -#: ../../include/help/clippy/topology_group.php:35 -msgid "Topology Group" -msgstr "TipologĆ­a de grupo" - -#: ../../include/help/clippy/topology_group.php:35 -msgid "" -"Please note that group topology maps do not show the parent relationship " -"between nodes, it only shows the group parentship and the agent distribution " -"inside them. " -msgstr "" -"Ten en cuenta que el grupo de mapas de topologĆ­a no muestra la relaciĆ³n padre " -"entre los nodos, solo muestra el grupo padre y el agente de distribuciĆ³n " -"dentro de ellos. " - -#: ../../include/help/clippy/data_configuration_module.php:35 -msgid "Data Configuration Module." -msgstr "MĆ³dulos de datos de configuraciĆ³n" - -#: ../../include/help/clippy/data_configuration_module.php:35 -msgid "" -"Please note that information provided here affects how the agent collect " -"information and generate the data XML. Any data/configuration reported by the " -"agent, different from data or description is discarded, and the configuration " -"shown in the console prevails over any configuration coming from the agent, " -"this applies for example for crit/warn thresholds, interval, module group, min/" -"max value, tags, etc." -msgstr "" -"Por favor, ten en cuenta que la informaciĆ³n aquĆ­ proporcionada afecta la forma " -"en que el agente recoge la informaciĆ³n y genera el XML de datos. Cualquier " -"dato/configuraciĆ³n enviado por el agente, a diferencia de los enviados desde " -"datos o descripciĆ³n que son descartados, y la configuraciĆ³n mostrada en la " -"consola prevalece sobre cualquier configuraciĆ³n procedente del agente. Esto se " -"aplica por ejemplo para umbrales crĆ­ticos/advertencia, intervalo, grupo " -"mĆ³dulo, valor mĆ­nimo/mĆ”ximo, etiquetas, etc." - -#: ../../include/help/clippy/data_configuration_module.php:35 -msgid "" -"Information imported FIRST time from the XML will fill the information you can " -"see in the console, but after the first import, system will ignore any update " -"coming from the XML/Agent." -msgstr "" -"La informaciĆ³n importada por PRIMERA vez desde el XML llenarĆ” la informaciĆ³n " -"visible en la consola, pero despuĆ©s de la primera importaciĆ³n, el sistema " -"ignorarĆ” cualquier actualizaciĆ³n que viene del XML/Agente." - -#: ../../include/help/clippy/homepage.php:75 -msgid "Hi, can I help you?" -msgstr "Hola. ĀæTe puedo ayudar?" - -#: ../../include/help/clippy/homepage.php:75 -#, php-format -msgid "" -"Let me introduce my self: I am Pandorin, the annoying assistant of %s. You can " -"follow my steps to do basic tasks in %s or you can close me and never see me " -"again." -msgstr "" -"DĆ©jame que me presente: Soy PandorĆ­n, el molestoso asistente de %s. Puedes " -"seguir los pasos que te indico para llevar a cabo tareas bĆ”sicas en %s o " -"cerrarme y no volverme a ver nunca." - -#: ../../include/help/clippy/homepage.php:75 -msgid "Close this wizard and don't open it again." -msgstr "Cerrar el asistente y no volver a abrirlo." - -#: ../../include/help/clippy/homepage.php:79 -msgid "Which task would you like to do first?" -msgstr "ĀæQuĆ© tarea te gustarĆ­a realizar primero?" - -#: ../../include/help/clippy/homepage.php:79 -#, php-format -msgid "Ping a Linux or Windows server using a %s agent." -msgstr "Hacer ping a un servidor Linux o Windows usando un agente %s." - -#: ../../include/help/clippy/homepage.php:79 -msgid "Create a alert by email in a critical module." -msgstr "Crear una alerta que avise por email para un mĆ³dulo crĆ­tico" - -#: ../../include/help/clippy/homepage.php:190 -#, php-format -msgid "" -"The first thing you have to do is to setup the e-mail config on the %s Server." -msgstr "" -"Lo primero que tiene que hacer es establecer la configuraciĆ³n del correo " -"electrĆ³nico del servidor de %s." - -#: ../../include/help/clippy/homepage.php:190 -msgid "If you have it already configured you can go to the next step." -msgstr "Si ya estĆ” configurado, puedes ir al siguiente paso." - -#: ../../include/help/clippy/homepage.php:195 -msgid "Now, pull down the Manage alerts menu and click on Actions. " -msgstr "Ahora, abre el menĆŗ Administrar alertas y haz clic en Acciones. " - -#: ../../include/help/clippy/godmode_agentes_configurar_agente.php:34 -msgid "Now you must go to Modules. Don't worry I'll lead you." -msgstr "Ahora ve a los mĆ³dulos. Pero no te preocupes, te guiarĆ© paso a paso." - -#: ../../include/help/clippy/godmode_agentes_configurar_agente.php:39 -msgid "Click in this tab.." -msgstr "Haz clic en esta pestaƱa." - -#: ../../include/help/clippy/godmode_agentes_configurar_agente.php:53 -msgid "Now you must create the module. Don't worry, i'll teach you." -msgstr "Ahora tienes que crear el mĆ³dulo, pero no te preocupes, yo te enseƱarĆ©." - -#: ../../include/help/clippy/godmode_agentes_configurar_agente.php:57 -msgid "Choose the network server module." -msgstr "Elige el mĆ³dulo de servidor de red." - -#: ../../include/help/clippy/godmode_agentes_configurar_agente.php:61 -msgid "And click the button." -msgstr "Y haz clic en el botĆ³n." - -#: ../../include/help/clippy/godmode_agentes_configurar_agente.php:75 -msgid "Now you must create the module. Don't worry, i'll teach you ." -msgstr "Ahora tienes que crear el mĆ³dulo, pero no te preocupes, yo te enseƱarĆ©." - -#: ../../include/help/clippy/godmode_agentes_configurar_agente.php:79 -msgid "Now we are going to fill the form." -msgstr "Ahora procedemos a rellenar el formulario." - -#: ../../include/help/clippy/godmode_agentes_configurar_agente.php:83 -msgid "Please choose Network Management." -msgstr "Por favor, selecciona \"GestiĆ³n de redes\"." - -#: ../../include/help/clippy/godmode_agentes_configurar_agente.php:87 -msgid "Choose the component named \"Host alive\"." -msgstr "Selecciona el componente llamado \"Host alive\"." - -#: ../../include/help/clippy/godmode_agentes_configurar_agente.php:91 -msgid "You can change the name if you want." -msgstr "Puedes cambiar el nombre si quieres." - -#: ../../include/help/clippy/godmode_agentes_configurar_agente.php:95 -msgid "Check if the IP showed is the IP of your machine." -msgstr "Prueba si la IP mostrada es la IP de tu mĆ”quina." - -#: ../../include/help/clippy/godmode_agentes_configurar_agente.php:99 -msgid "And only to finish it is clicking this button." -msgstr "Y para terminar pulsa en este botĆ³n." - -#: ../../include/help/clippy/godmode_agentes_configurar_agente.php:114 -msgid "" -"Congrats! Your module has been created.
and the status color is blue." -"
That color means that the module hasn't been executed for the first " -"time. In the next seconds, if there is no problem, the status color will turn " -"into red or green." -msgstr "" -"Ā”Felicidades! Has creado tu mĆ³dulo
y el color de estado es azul." -"
Ese color significa que el mĆ³dulo no se ha ejecutado. En los prĆ³ximos " -"segundos, si no hay problemas, el color de estado pasarĆ” a rojo o " -"verde." - -#: ../../include/help/clippy/godmode_agentes_configurar_agente.php:119 -#: ../../include/help/clippy/operation_agentes_ver_agente.php:40 -#: ../../godmode/wizards/DiscoveryTaskList.class.php:1837 -#: ../../godmode/wizards/DiscoveryTaskList.class.php:1843 -msgid "Done" -msgstr "Hecho" - -#: ../../include/help/clippy/godmode_agentes_configurar_agente.php:129 -msgid "Click on alerts tab and then fill the form to add an alert." -msgstr "" -"Haz clic en la pestaƱa de alertas para rellenar el formulario con la alerta a " -"aƱadir." - -#: ../../include/help/clippy/godmode_agentes_configurar_agente.php:143 -msgid "Select the critical module." -msgstr "Elige el mĆ³dulo crĆ­tico." - -#: ../../include/help/clippy/godmode_agentes_configurar_agente.php:147 -msgid "In template select \"Critical Condition\"." -msgstr "En las plantillas, selecciona \"Critical Condition\"." - -#: ../../include/help/clippy/godmode_agentes_configurar_agente.php:151 -msgid "Now, select the action created before." -msgstr "Ahora, elige la acciĆ³n creada anteriormente." - -#: ../../include/help/clippy/godmode_agentes_configurar_agente.php:156 -msgid "Click on Add Alert button to create the alert." -msgstr "Haz clic en el botĆ³n aƱadir alerta para crear la alerta." - -#: ../../include/help/clippy/godmode_agentes_configurar_agente.php:171 -msgid "" -"To test the alert you've just created go to the main view by clicking on the " -"eye tab." -msgstr "" -"Para probar la alerta que acabas de crear, ve a la vista principal, haz clic " -"en la pestaƱa con el icono del ojo." - -#: ../../include/help/clippy/servers_down.php:35 -msgid "All servers down" -msgstr "Todo los servidores estĆ”n caĆ­dos" - -#: ../../include/help/clippy/servers_down.php:35 -msgid "" -"Can you up all servers. You go to terminal in linux and execute the next " -"command: \"sudo /etc/init.d/pandora_server restart\". It's possible need " -"introduce root pass." -msgstr "" -"Puedes activar todos los servidores. Tienes que ir al terminal de Linux y " -"ejecutar el siguiente comando: \"sudo /etc/init.d/pandora_server restart\". Es " -"posible que necesites introducir la contraseƱa de root." - -#: ../../include/help/clippy/extension_cron_send_email.php:35 -msgid "The configuration of email for the task email is in the enterprise setup:" -msgstr "" -"La configuraciĆ³n del email para la tarea programada de emails estĆ” en la " -"configuraciĆ³n de Enterprise:" - -#: ../../include/help/clippy/extension_cron_send_email.php:35 -msgid "Please check if the email configuration is correct." -msgstr "Por favor, confirma que la configuraciĆ³n de email es correcta." - -#: ../../include/help/clippy/module_unknow.php:35 -msgid "You have unknown modules in this agent." -msgstr "Tienes mĆ³dulos en estado desconocido en este agente." - -#: ../../include/help/clippy/module_unknow.php:35 -msgid "" -"Unknown modules are modules which receive data normally at least in one " -"occassion, but at this time are not receving data. Please check our " -"troubleshoot help page to help you determine why you have unknown modules." -msgstr "" -"Los mĆ³dulos desconocidos son mĆ³dulos que reciben datos normalmente al menos en " -"una ocasiĆ³n, pero en este momento no se reciben datos. Por favor, consulta la " -"pĆ”gina de ayuda para solucionar los problemas sobre los mĆ³dulos desconocidos." - -#: ../../include/help/clippy/modules_not_init.php:35 -msgid "You have non initialized modules" -msgstr "Tienes mĆ³dulos sin iniciar." - -#: ../../include/help/clippy/modules_not_init.php:35 -msgid "" -"This happen when you have just created a module and it's not executed at first " -"time. Usually in a few seconds should be initialized and you will be able to " -"see in main view. If you keep non-init modules for more than 24hr (due a " -"problem in it's execution or configuration) they will be automatically deleted " -"by the system. Non-init are not visible in the Ć¢Ā€Āœmain viewĆ¢Ā€Ā, you can see/edit " -"them in the module administration section, in the agent administrator." -msgstr "" -"Esto sucede cuando se acaba de crear un mĆ³dulo y no estĆ” ejecutado. Por lo " -"general, en unos pocos segundos se deberĆ­a iniciar y podrĆ”s verlo en la vista " -"principal. Si se mantienen mĆ³dulos no iniciados durante mĆ”s de 24 horas (puede " -"ser un problema en la ejecuciĆ³n o configuraciĆ³n) serĆ”n eliminados " -"automĆ”ticamente por el sistema. Los no iniciados no son visibles en la vista " -"principal; se pueden ver/editar en la secciĆ³n de administraciĆ³n del mĆ³dulo, en " -"el administrador de agente." - -#: ../../include/help/clippy/godmode_alerts_configure_alert_action.php:34 -msgid "Fill the name of your action." -msgstr "Rellena el nombre de la acciĆ³n." - -#: ../../include/help/clippy/godmode_alerts_configure_alert_action.php:38 -msgid "" -"Select the group in the drop-down list and filter for ACL (the user in this " -"group can use your action to create an alert)." -msgstr "" -"Selecciona el grupo en la lista desplegable y un filtro para las ACL (el " -"usuario en este grupo puede utilizar la acciĆ³n de crear una alerta)." - -#: ../../include/help/clippy/godmode_alerts_configure_alert_action.php:42 -msgid "In the command field select \"email\"." -msgstr "En este campo de comando elige \"email\"." - -#: ../../include/help/clippy/godmode_alerts_configure_alert_action.php:46 -msgid "" -"In the threshold field enter the seconds. The help icon show more information." -msgstr "" -"En el campo de umbral se rellena con un nĆŗmero de segundos. El icono de ayuda " -"te mostrarĆ” mĆ”s ayuda." - -#: ../../include/help/clippy/godmode_alerts_configure_alert_action.php:51 -msgid "" -"In the first field enter the email address/addresses where you want to receive " -"the email alerts separated with comas ( , ) or white spaces." -msgstr "" -"En el primer campo introduce la direcciĆ³n/es de email en las que deseas " -"recibir las alertas de email separadas por comas (,) o espacios en blanco." - -#: ../../include/help/clippy/godmode_alerts_configure_alert_action.php:56 -msgid "" -"In the \"Subject\" field you can use the macros _agent_ or _module_ for each " -"name." -msgstr "" -"En el campo \"Asunto\" puedes usar macros _agent_ o _module_ para el asunto " -"del email." - -#: ../../include/help/clippy/godmode_alerts_configure_alert_action.php:61 -msgid "" -"In the text field, you can also use macros. Get more information about the " -"macros by clicking on the help icon." -msgstr "" -"En el campo de texto, tambiĆ©n puedes utilizar las macros. Hay mas informaciĆ³n " -"acerca de las macros en el icono de ayuda." - -#: ../../include/help/clippy/godmode_alerts_configure_alert_action.php:66 -msgid "Click on Create button to create the action." -msgstr "Haz clic en el botĆ³n de crear para crear la acciĆ³n." - -#: ../../include/help/clippy/interval_agent_min.php:35 -msgid "Interval Agent." -msgstr "Intervalo de agente" - -#: ../../include/help/clippy/interval_agent_min.php:35 -msgid "" -"Please note that having agents with a monitoring interval below 300 seconds is " -"not recommended. This will impact seriously in the performance of the server. " -"For example, having 200 agents with one minute interval, is the same than " -"having 1000 agents with a 5 minute interval. The probability of getting " -"unknown modules is higher, and the impact on the server is higher because it " -"requires a shorter response time." -msgstr "" -"Por favor, ten en cuenta que no se recomienda tener agentes con un intervalo " -"de monitorizaciĆ³n por debajo de los 300 segundos. Esto tendrĆ” un impacto serio " -"en el rendimiento del servidor. Tener 200 agentes con un intervalo de un " -"minuto, es lo mismo que tener 1000 agentes con un intervalo de 5 minutos. La " -"probabilidad de obtener mĆ³dulos desconocidos es mĆ”s alto, y el impacto en el " -"servidor es mayor, ya que requiere un tiempo de respuesta mĆ”s corto." - -#: ../../include/help/clippy/server_queued_modules.php:35 -msgid "Excesive Queued." -msgstr "Demasiados mĆ³dulos en cola" - -#: ../../include/help/clippy/server_queued_modules.php:35 -msgid "" -"You have too much items in the processing queue. This can happen if your " -"server is too loaded and/or not properly configured. This could be something " -"temporal, or a bottleneck. One possible solution is increase number of server " -"threads, but you should consider getting support about this." -msgstr "" -"Tienes demasiados elementos en cola. Esto puede ocurrir si el servidor estĆ” " -"demasiado cargado y/o no estĆ” bien configurado. Puede ser algo temporal, o un " -"cuello de botella. Una posible soluciĆ³n es aumentar el nĆŗmero de hilos del " -"servidor, pero deberĆ­as pensar en consultarlo con soporte tĆ©cnico." - -#: ../../include/help/clippy/modules_not_learning_mode.php:46 -msgid "" -"Please note that you have your agent setup to do not add new modules coming " -"from the data XML." -msgstr "" -"Por favor, ten en cuenta que si no tienes activado el modo aprendizaje no se " -"aƱadirĆ”n nuevos mĆ³dulos que vengan del XML." - -#: ../../include/help/clippy/modules_not_learning_mode.php:46 -msgid "" -"That means if you have a local plugin or add manually new modules to the " -"configuration file, you won't have it in your agent, unless you first create " -"manually in the interface (with the exact name and type as coming in the XML " -"file)." -msgstr "" -"Esto quiere decir que si se tiene un plugin local o se aƱaden manualmente " -"nuevos mĆ³dulos al archivo de configuraciĆ³n, no se encontrarĆ” en el agente a " -"menos que se cree primero en la interfaz (con el mismo nombre y tipo que el " -"archivo XML)." - -#: ../../include/help/clippy/modules_not_learning_mode.php:46 -msgid "" -"You should use the \"normal\" mode (non learn) only when you don't intend to " -"add more modules to the agent." -msgstr "" -"DeberĆ­as usar el modo \"normal\" (no aprendizaje) solo cuando no tengas " -"intenciĆ³n de aƱadir mĆ”s mĆ³dulos al agente." - -#: ../../include/help/clippy/operation_agentes_ver_agente.php:35 -msgid "" -"The last step is to check the alert created. Click on the round icon to force " -"the action execution and after a few minutes you will receive the alert in " -"your email." -msgstr "" -"El Ćŗltimo paso es comprobar que la alerta ha sido creada. Haz clic en el icono " -"redondo para forzar la ejecuciĆ³n de la acciĆ³n y despuĆ©s de unos minutos " -"recibirĆ”s la alerta en tu correo electrĆ³nico." - -#: ../../include/help/clippy/operation_agentes_ver_agente.php:35 -msgid "" -"And restart your pandora server to read again general configuration tokens." -msgstr "" -"Reinicia tu servidor de Pandora FMS para leer otra vez lo tokens generales de " -"configuraciĆ³n." - -#: ../../include/help/clippy/agent_out_of_limits.php:35 -msgid "Agent contact date passed it's ETA!." -msgstr "Ā”La fecha de contacto del agente pasĆ³ su plazo estimado!" - -#: ../../include/help/clippy/agent_out_of_limits.php:35 -msgid "" -"This happen when your agent stopped reporting or the server have any problem " -"(too load or just down). Check also connectivity between the agent and the " -"server." -msgstr "" -"Esto sucede cuando un agente deja de informar o el servidor tiene algĆŗn " -"problema (demasiada carga o simplemente estĆ” caĆ­do). Comprueba tambiĆ©n la " -"conectividad entre el agente y el servidor." - -#: ../../include/help/clippy/operation_agentes_status_monitor.php:34 -msgid "" -"Now, you have to go to the monitors list and look for a \"critical\" module to " -"apply the alert." -msgstr "" -"Ahora, tienes que ir a la lista de monitores y buscar un mĆ³dulo en estado " -"\"crĆ­tico\" para enlazarle una alerta." - -#: ../../include/help/clippy/operation_agentes_status_monitor.php:38 -msgid "" -"If you know the name of the agent or the name of the module in critical " -"status, type it in this field to make the module list shorter. You can write " -"the entire name or just a part of it." -msgstr "" -"Si conoces el nombre del agente o el nombre del mĆ³dulo en estado crĆ­tico, " -"escrĆ­belo en este campo para hacer la lista de mĆ³dulos mĆ”s cortos. Puedes " -"escribir el nombre completo o solo una parte." - -#: ../../include/help/clippy/operation_agentes_status_monitor.php:43 -msgid "Click on Show button to get the modules list filtered." -msgstr "Haz clic en botĆ³n Mostrar para obtener la lista filtrada." - -#: ../../include/help/clippy/operation_agentes_status_monitor.php:58 -msgid "" -"Now, to edit the module, click on the wrench that appears in the type column." -msgstr "" -"Ahora, para editar el mĆ³dulo, haz clic en la llave inglesa que aparece en la " -"columna del tipo." - -#: ../../include/help/clippy/godmode_agentes_modificar_agente.php:34 -msgid "I'm going to show you how to monitor a server." -msgstr "Te voy a mostrar cĆ³mo monitorizar un servidor." - -#: ../../include/help/clippy/godmode_agentes_modificar_agente.php:38 -msgid "Please, type an agent to save the modules for monitoring a server." -msgstr "" -"Por favor, escribe el nombre de un agente para guardar los mĆ³dulos para " -"monitorizar un servidor." - -#: ../../include/help/clippy/godmode_agentes_modificar_agente.php:43 -msgid "If you have typed the name correctly you will see the agent." -msgstr "Si has introducido el nombre correctamente, verĆ”s el agente." - -#: ../../include/help/clippy/godmode_agentes_modificar_agente.php:57 -msgid "Now, please choose the agent you searched." -msgstr "Ahora elige el agente que buscaste." - -#: ../../include/help/clippy/godmode_agentes_modificar_agente.php:62 -msgid "Choose the agent and click on the name." -msgstr "Elige el agente y haz clic en el nombre." - -#: ../../include/functions_graph.php:1089 -#: ../../include/functions_reporting.php:4333 -#: ../../include/functions_reporting.php:4376 -msgid "No data to display within the selected interval" -msgstr "No hay datos en el intervalo seleccionado" - -#: ../../include/functions_graph.php:1538 -#: ../../enterprise/godmode/reporting/reporting_builder.template_list_item.php:409 -#: ../../godmode/reporting/reporting_builder.list_items.php:445 -msgid "No items." -msgstr "Sin elementos" - -#: ../../include/functions_graph.php:2630 -msgid "Not fired alerts" -msgstr "No se han disparado alertas." - -#: ../../include/functions_graph.php:2898 ../../include/functions_graph.php:2946 -#: ../../include/graphs/functions_gd.php:183 -#: ../../include/graphs/functions_gd.php:466 -msgid "Out of limits" -msgstr "Fuera de lĆ­mites" - -#: ../../include/functions_graph.php:3548 ../../include/functions_graph.php:3549 -#: ../../include/functions_graph.php:5135 ../../include/functions.php:1043 -#: ../../include/functions.php:1272 ../../include/functions.php:1323 -msgid "Minor" -msgstr "Menor" - -#: ../../include/functions_graph.php:3558 ../../include/functions_graph.php:3559 -#: ../../include/functions_graph.php:5139 ../../include/functions.php:1047 -#: ../../include/functions.php:1274 ../../include/functions.php:1327 -msgid "Major" -msgstr "Principal" - -#: ../../include/functions_graph.php:5518 -msgid "Main node" -msgstr "Nodo principal" +msgid "Failed to save group %s" +msgstr "Error al guardar el %s de grupo" #: ../../include/functions_snmp_browser.php:355 msgid "The server did not return any response." msgstr "El servidor no ha devuelto ninguna respuesta" -#: ../../include/functions_snmp_browser.php:556 -#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor_form.php:56 -#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:382 -#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:299 -#: ../../godmode/setup/snmp_wizard.php:42 -msgid "OID" -msgstr "OID" - #: ../../include/functions_snmp_browser.php:558 msgid "Numeric OID" msgstr "OID numĆ©rico" @@ -23818,40 +47014,14 @@ msgstr "Acceso mĆ”ximo" msgid "OID Information" msgstr "InformaciĆ³n OID" -#: ../../include/functions_snmp_browser.php:638 -#: ../../godmode/agentes/module_manager.php:1205 -msgid "Create network component" -msgstr "Crear componentes de red" - #: ../../include/functions_snmp_browser.php:647 msgid "Create agent module" msgstr "Crear mĆ³dulo de agente" -#: ../../include/functions_snmp_browser.php:727 -#: ../../godmode/snmpconsole/snmp_trap_generator.php:95 -msgid "Community" -msgstr "Comunidad" - #: ../../include/functions_snmp_browser.php:736 msgid "Starting OID" msgstr "Iniciar OID" -#: ../../include/functions_snmp_browser.php:746 -#: ../../include/functions_reporting_html.php:1553 -#: ../../enterprise/tools/ipam/ipam_calculator.php:52 -#: ../../enterprise/include/functions_reporting_csv.php:718 -#: ../../enterprise/include/class/AgentRepository.class.php:366 -#: ../../enterprise/include/class/AgentRepository.class.php:632 -#: ../../enterprise/meta/advanced/servers.build_table.php:63 -#: ../../enterprise/meta/advanced/metasetup.consoles.php:838 -#: ../../enterprise/godmode/servers/list_satellite.php:39 -#: ../../godmode/servers/servers.build_table.php:82 -#: ../../godmode/update_manager/update_manager.history.php:40 -#: ../../godmode/extensions.php:139 -#: ../../godmode/reporting/reporting_builder.item_editor.php:78 -msgid "Version" -msgstr "VersiĆ³n" - #: ../../include/functions_snmp_browser.php:786 msgid "Server to execute" msgstr "Servidor a ejecutar" @@ -23860,96 +47030,6 @@ msgstr "Servidor a ejecutar" msgid "Browse" msgstr "Examinar" -#: ../../include/functions_snmp_browser.php:826 -#: ../../enterprise/tools/ipam/ipam_vlan_wizard.php:299 -#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:795 -#: ../../godmode/modules/manage_network_components_form_network.php:96 -#: ../../godmode/massive/massive_edit_modules.php:852 -#: ../../godmode/wizards/HostDevices.class.php:1259 -#: ../../godmode/agentes/module_manager_editor_network.php:336 -msgid "Auth user" -msgstr "AutentificaciĆ³n de usuario" - -#: ../../include/functions_snmp_browser.php:836 -#: ../../enterprise/tools/ipam/ipam_vlan_wizard.php:308 -#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:804 -#: ../../godmode/modules/manage_network_components_form_network.php:105 -#: ../../godmode/massive/massive_edit_modules.php:861 -#: ../../godmode/wizards/HostDevices.class.php:1270 -#: ../../godmode/agentes/module_manager_editor_network.php:349 -msgid "Auth password" -msgstr "AutentificaciĆ³n de contraseƱa" - -#: ../../include/functions_snmp_browser.php:856 -#: ../../enterprise/tools/ipam/ipam_vlan_wizard.php:327 -#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:807 -#: ../../godmode/modules/manage_network_components_form_network.php:126 -#: ../../godmode/massive/massive_edit_modules.php:864 -#: ../../godmode/wizards/HostDevices.class.php:1291 -#: ../../godmode/agentes/module_manager_editor_network.php:370 -msgid "DES" -msgstr "DES" - -#: ../../include/functions_snmp_browser.php:857 -#: ../../enterprise/tools/ipam/ipam_vlan_wizard.php:328 -#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:807 -#: ../../godmode/modules/manage_network_components_form_network.php:127 -#: ../../godmode/massive/massive_edit_modules.php:864 -#: ../../godmode/wizards/HostDevices.class.php:1292 -#: ../../godmode/agentes/module_manager_editor_network.php:370 -msgid "AES" -msgstr "AES" - -#: ../../include/functions_snmp_browser.php:877 -#: ../../enterprise/tools/ipam/ipam_vlan_wizard.php:347 -#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:810 -#: ../../godmode/modules/manage_network_components_form_network.php:148 -#: ../../godmode/massive/massive_edit_modules.php:867 -#: ../../godmode/wizards/HostDevices.class.php:1317 -#: ../../godmode/agentes/module_manager_editor_network.php:391 -msgid "Auth method" -msgstr "MĆ©todo de autentificaciĆ³n" - -#: ../../include/functions_snmp_browser.php:881 -#: ../../enterprise/tools/ipam/ipam_vlan_wizard.php:351 -#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:811 -#: ../../godmode/modules/manage_network_components_form_network.php:152 -#: ../../godmode/massive/massive_edit_modules.php:868 -#: ../../godmode/wizards/HostDevices.class.php:1323 -#: ../../godmode/agentes/module_manager_editor_network.php:395 -msgid "SHA" -msgstr "SHA" - -#: ../../include/functions_snmp_browser.php:893 -#: ../../enterprise/tools/ipam/ipam_vlan_wizard.php:363 -#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:815 -#: ../../godmode/modules/manage_network_components_form_network.php:164 -#: ../../godmode/massive/massive_edit_modules.php:872 -#: ../../godmode/wizards/HostDevices.class.php:1337 -#: ../../godmode/agentes/module_manager_editor_network.php:411 -msgid "Not auth and not privacy method" -msgstr "MĆ©todo sin autentificaciĆ³n ni privacidad" - -#: ../../include/functions_snmp_browser.php:894 -#: ../../enterprise/tools/ipam/ipam_vlan_wizard.php:364 -#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:816 -#: ../../godmode/modules/manage_network_components_form_network.php:165 -#: ../../godmode/massive/massive_edit_modules.php:873 -#: ../../godmode/wizards/HostDevices.class.php:1338 -#: ../../godmode/agentes/module_manager_editor_network.php:412 -msgid "Auth and not privacy method" -msgstr "MĆ©todo con autentificaciĆ³n y sin privacidad" - -#: ../../include/functions_snmp_browser.php:895 -#: ../../enterprise/tools/ipam/ipam_vlan_wizard.php:365 -#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:817 -#: ../../godmode/modules/manage_network_components_form_network.php:166 -#: ../../godmode/massive/massive_edit_modules.php:874 -#: ../../godmode/wizards/HostDevices.class.php:1339 -#: ../../godmode/agentes/module_manager_editor_network.php:413 -msgid "Auth and privacy method" -msgstr "MĆ©todo con autentificaciĆ³n y privacidad" - #: ../../include/functions_snmp_browser.php:939 msgid "First match" msgstr "Primera correspondencia" @@ -23998,1000 +47078,253 @@ msgstr "Crear mĆ³dulos de polĆ­ticas" msgid "Create network components" msgstr "Crear componentes de red" -#: ../../include/functions_snmp_browser.php:1511 +#: ../../include/functions_snmp_browser.php:1519 msgid " available" msgstr " disponible" -#: ../../include/functions_snmp_browser.php:1511 -#: ../../include/functions_snmp_browser.php:1513 -#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:172 -#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:177 -#: ../../enterprise/godmode/reporting/graph_template_wizard.php:228 -#: ../../enterprise/godmode/reporting/graph_template_wizard.php:234 -#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:412 -#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:422 -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:832 -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:834 -msgid "Select all" -msgstr "Seleccionar todo" - -#: ../../include/functions_snmp_browser.php:1513 +#: ../../include/functions_snmp_browser.php:1521 msgid " to apply" msgstr " a aplicar" -#: ../../include/functions_snmp_browser.php:1566 +#: ../../include/functions_snmp_browser.php:1542 +#: ../../operation/snmpconsole/snmp_browser.php:541 +msgid "Create new policy" +msgstr "Crear nueva polĆ­tica" + +#: ../../include/functions_snmp_browser.php:1574 msgid "Undo" msgstr "Deshacer" -#: ../../include/functions_reporting.php:364 -msgid " agents" -msgstr " agentes" - -#: ../../include/functions_reporting.php:374 -msgid " modules" -msgstr " mĆ³dulos" - -#: ../../include/functions_reporting.php:996 -#: ../../include/functions_reporting.php:8563 -#: ../../enterprise/include/functions_reporting.php:2493 -#: ../../enterprise/include/functions_reporting.php:3437 -#: ../../enterprise/include/functions_reporting.php:4412 -msgid "There are no SLAs defined" -msgstr "No hay SLA definidos" - -#: ../../include/functions_reporting.php:1071 -#: ../../include/functions_reporting.php:8941 -#: ../../enterprise/include/functions_reporting.php:2546 -#: ../../enterprise/include/functions_reporting.php:3490 -#: ../../enterprise/include/functions_reporting.php:4465 -msgid "Inverse" -msgstr "Inverso" - -#: ../../include/functions_reporting.php:1510 -msgid "Top N" -msgstr "Top N" - -#: ../../include/functions_reporting.php:1520 ../../include/functions_ui.php:2604 -#: ../../include/functions_reporting_html.php:4740 -#: ../../enterprise/include/functions_reporting_csv.php:1030 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2208 -#: ../../enterprise/meta/include/functions_wizard_meta.php:983 -#: ../../enterprise/meta/include/functions_wizard_meta.php:992 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1068 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1077 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1271 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1280 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1508 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1517 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1593 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1602 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1713 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1722 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1808 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2442 -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:293 -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:386 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:759 -#: ../../godmode/reporting/reporting_builder.item_editor.php:1306 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2407 -#: ../../godmode/alerts/alert_view.php:266 -msgid "Max" -msgstr "MĆ”x." - -#: ../../include/functions_reporting.php:1524 ../../include/functions_ui.php:2604 -#: ../../include/functions_reporting_html.php:4741 -#: ../../enterprise/include/functions_reporting_csv.php:1030 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2208 -#: ../../enterprise/meta/include/functions_wizard_meta.php:981 -#: ../../enterprise/meta/include/functions_wizard_meta.php:990 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1066 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1075 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1269 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1278 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1506 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1515 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1591 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1600 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1711 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1720 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1810 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2449 -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:281 -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:393 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:751 -#: ../../godmode/reporting/reporting_builder.item_editor.php:1304 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2414 -#: ../../godmode/alerts/alert_view.php:266 -msgid "Min" -msgstr "MĆ­n." - -#: ../../include/functions_reporting.php:1530 -#: ../../include/functions_reporting_html.php:4739 -#: ../../enterprise/include/functions_reporting_csv.php:1030 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2456 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2421 -msgid "Avg" -msgstr "Media" - -#: ../../include/functions_reporting.php:1582 -#: ../../include/functions_reporting.php:3166 -#: ../../include/functions_reporting_html.php:801 -#: ../../include/functions_reporting_html.php:4258 -#: ../../include/functions_reporting_html.php:4807 -#: ../../include/functions_reporting_html.php:4810 -#: ../../enterprise/include/functions_reporting.php:5146 -msgid "There are no Agent/Modules defined" -msgstr "No hay Agentes/MĆ³dulos definidos" - -#: ../../include/functions_reporting.php:1638 -msgid "Insuficient data" -msgstr "Datos insuficientes" - -#: ../../include/functions_reporting.php:1889 -msgid "Event Report Group" -msgstr "Informe de eventos del grupo" - -#: ../../include/functions_reporting.php:1937 -msgid "Exclude " -msgstr "Excluir " - -#: ../../include/functions_reporting.php:2187 -msgid "Event Report Module" -msgstr "Informe de eventos del mĆ³dulo" - -#: ../../include/functions_reporting.php:2521 -#: ../../enterprise/include/functions_reporting_csv.php:740 -msgid "Inventory Changes" -msgstr "Cambios de inventario" - -#: ../../include/functions_reporting.php:2594 -#: ../../enterprise/tools/ipam/ipam_action.php:385 -msgid "No changes found." -msgstr "No se han encontrado cambios" - -#: ../../include/functions_reporting.php:2691 -#: ../../enterprise/operation/log/log_viewer.php:1256 -#: ../../enterprise/operation/log/log_viewer.php:1264 -#: ../../enterprise/operation/agentes/agent_inventory.php:280 -#: ../../enterprise/operation/inventory/inventory.php:475 -#: ../../enterprise/operation/inventory/inventory.php:518 -#: ../../enterprise/godmode/agentes/collection_manager.php:196 -#: ../../godmode/reporting/reporting_builder.php:1262 -msgid "No data found." -msgstr "No se encontraron datos." - -#: ../../include/functions_reporting.php:2718 -#: ../../godmode/alerts/alert_actions.php:74 -msgid "Alert actions" +#: ../../include/functions_groups.php:75 +msgid "Alert Actions" msgstr "Acciones de alerta" -#: ../../include/functions_reporting.php:2827 -msgid "Agent/Modules" -msgstr "Agentes/mĆ³dulos" +#: ../../include/functions_groups.php:91 +msgid "Alert Templates" +msgstr "Plantillas de alerta" -#: ../../include/functions_reporting.php:2868 -#: ../../extensions/agents_modules.php:750 -msgid "There are no agents with modules" -msgstr "No hay agentes con mĆ³dulos" +#: ../../include/functions_groups.php:107 +#: ../../operation/agentes/pandora_networkmap.editor.php:337 +#: ../../operation/agentes/pandora_networkmap.view.php:137 +msgid "Discovery task" +msgstr "Tarea Discovery" -#: ../../include/functions_reporting.php:2924 -msgid "Agent/Modules Status" -msgstr "Estado del agente/mĆ³dulos" +#: ../../include/functions_groups.php:155 +msgid "Layout visual console" +msgstr "DiseƱo de la consola visual" -#: ../../include/functions_reporting.php:3073 -msgid "Exception - Everything" -msgstr "ExcepciĆ³n - Todo" +#: ../../include/functions_groups.php:171 +msgid "Plannet down time" +msgstr "Tiempo de inactividad estipulado" -#: ../../include/functions_reporting.php:3074 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2536 -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:430 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2549 -msgid "Everything" -msgstr "Todo" +#: ../../include/functions_groups.php:203 +msgid "GIS maps" +msgstr "Mapas GIS" -#: ../../include/functions_reporting.php:3079 +#: ../../include/functions_groups.php:219 +msgid "GIS connections" +msgstr "Conexiones GIS" + +#: ../../include/functions_groups.php:235 +msgid "GIS map layers" +msgstr "Mapas GIS adicionales" + +#: ../../include/functions_groups.php:251 +msgid "Network maps" +msgstr "Mapas de red" + +#: ../../include/functions_events.php:142 +msgid "NEW" +msgstr "NUEVO" + +#: ../../include/functions_events.php:145 +msgid "IN PROCESS" +msgstr "EN PROCESO" + +#: ../../include/functions_events.php:148 +msgid "VALIDATED" +msgstr "VALIDADO" + +#: ../../include/functions_events.php:207 +msgid "Agent module" +msgstr "MĆ³dulo de agente" + +#: ../../include/functions_events.php:220 +msgid "Module custom id" +msgstr "ID personalizada de mĆ³dulo" + +#: ../../include/functions_events.php:1623 #, php-format -msgid "Exception - Modules over or equal to %s" -msgstr "ExcepciĆ³n - MĆ³dulos por encima de o igual a %s" +msgid "Could not connect: %s" +msgstr "No se ha podido conectar: %s" -#: ../../include/functions_reporting.php:3082 +#: ../../include/functions_events.php:2341 ../../operation/agentes/tactical.php:228 +msgid "Latest events" +msgstr "ƚltimos eventos" + +#: ../../include/functions_events.php:2478 +msgid "Events -by module-" +msgstr "Eventos -por mĆ³dulo-" + +#: ../../include/functions_events.php:2484 ../../operation/agentes/tactical.php:245 +msgid "Event graph" +msgstr "GrĆ”fico de eventos" + +#: ../../include/functions_events.php:2486 ../../operation/agentes/tactical.php:248 +msgid "Event graph by agent" +msgstr "GrĆ”fico de eventos por agente" + +#: ../../include/functions_events.php:2625 +msgid "Going to unknown" +msgstr "Cambiando a estado desconocido" + +#: ../../include/functions_events.php:2633 +msgid "Alert manually validated" +msgstr "Alerta validada manualmente" + +#: ../../include/functions_events.php:2637 +msgid "Going from critical to warning" +msgstr "Cambiando de crĆ­tico a advertencia" + +#: ../../include/functions_events.php:2643 +msgid "Going up to critical state" +msgstr "Entrando en estado crĆ­tico" + +#: ../../include/functions_events.php:2649 +msgid "Going up to normal state" +msgstr "Subiendo a estado normal" + +#: ../../include/functions_events.php:2653 +msgid "Going down from normal to warning" +msgstr "Cambiando de normal a advertencia" + +#: ../../include/functions_events.php:2665 +msgid "Discovery server detected a new host" +msgstr "El servidor Discovery ha detectado un host nuevo" + +#: ../../include/functions_events.php:2669 +msgid "New agent created" +msgstr "Agente nuevo creado" + +#: ../../include/functions_events.php:2686 +msgid "Unknown type:" +msgstr "Tipo desconocido:" + +#: ../../include/functions_events.php:2977 ../../include/functions_events.php:3008 +msgid "Only new" +msgstr "Solo nuevos" + +#: ../../include/functions_events.php:2979 ../../include/functions_events.php:3016 +msgid "Only in process" +msgstr "Solo en proceso" + +#: ../../include/functions_events.php:2980 ../../include/functions_events.php:3020 +msgid "Only not validated" +msgstr "Solo no validados" + +#: ../../include/functions_events.php:2985 ../../include/functions_events.php:3264 +#: ../../include/functions_events.php:3273 +msgid "In process" +msgstr "En proceso" + +#: ../../include/functions_events.php:2986 +msgid "Not Validated" +msgstr "No validado" + +#: ../../include/functions_events.php:3178 +msgid "Change owner" +msgstr "Cambiar propietario" + +#: ../../include/functions_events.php:3249 +msgid "Change status" +msgstr "Cambiar estado" + +#: ../../include/functions_events.php:3343 ../../include/functions_events.php:4912 +#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:314 +msgid "Add comment" +msgstr "AƱadir comentario" + +#: ../../include/functions_events.php:3363 ../../include/functions_events.php:3367 +#: ../../operation/events/events.php:886 +msgid "Delete event" +msgstr "Eliminar evento" + +#: ../../include/functions_events.php:3387 +msgid "Custom responses" +msgstr "Respuesta personalizada" + +#: ../../include/functions_events.php:3943 +msgid "Extended information" +msgstr "InformaciĆ³n extendida" + +#: ../../include/functions_events.php:3974 +msgid "There was an error connecting to the node" +msgstr "Error al conectarse al nodo" + +#: ../../include/functions_events.php:3995 +msgid "Agent details" +msgstr "Detalles del agente" + +#: ../../include/functions_events.php:4009 +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:4060 +msgid "View custom fields" +msgstr "Ver campos personalizados" + +#: ../../include/functions_events.php:4083 +msgid "Module details" +msgstr "Detalles del mĆ³dulo" + +#: ../../include/functions_events.php:4099 +msgid "No assigned" +msgstr "No asignado" + +#: ../../include/functions_events.php:4183 ../../include/functions_events.php:4192 +msgid "Go to data overview" +msgstr "Ir a la vista general de datos" + +#: ../../include/functions_events.php:4308 #, php-format -msgid "Modules over or equal to %s" -msgstr "MĆ³dulos por encima de o igual a %s" +msgid "Invalid custom data: %s" +msgstr "Datos personalizados no vĆ”lidos: %s" -#: ../../include/functions_reporting.php:3087 -#, php-format -msgid "Exception - Modules under or equal to %s" -msgstr "ExcepciĆ³n - MĆ³dulos por debajo o igual a %s" +#: ../../include/functions_events.php:4537 +msgid "First event" +msgstr "Primer evento" -#: ../../include/functions_reporting.php:3090 -#, php-format -msgid "Modules under or equal to %s" -msgstr "MĆ³dulos por debajo de o igual a %s" +#: ../../include/functions_events.php:4537 +msgid "Last event" +msgstr "ƚltimo evento" -#: ../../include/functions_reporting.php:3095 -#, php-format -msgid "Exception - Modules under %s" -msgstr "ExcepciĆ³n - MĆ³dulos por debajo de %s" +#: ../../include/functions_events.php:4621 +msgid "Autovalidated" +msgstr "Autovalidado" -#: ../../include/functions_reporting.php:3098 -#, php-format -msgid "Modules under %s" -msgstr "MĆ³dulos por debajo de %s" +#: ../../include/functions_events.php:4687 +msgid "ID extra" +msgstr "ID extra" -#: ../../include/functions_reporting.php:3103 -#, php-format -msgid "Exception - Modules over %s" -msgstr "ExcepciĆ³n - MĆ³dulos por encima de %s" +#: ../../include/functions_events.php:4761 +msgid "There are no comments" +msgstr "No hay comentarios" -#: ../../include/functions_reporting.php:3106 -#, php-format -msgid "Modules over %s" -msgstr "MĆ³dulos por encima de %s" +#: ../../include/functions_events.php:4825 ../../general/logon_ok.php:199 +msgid "by" +msgstr "por" -#: ../../include/functions_reporting.php:3111 -#, php-format -msgid "Exception - Equal to %s" -msgstr "ExcepciĆ³n - Igual a %s" - -#: ../../include/functions_reporting.php:3114 -#, php-format -msgid "Equal to %s" -msgstr "Igual a %s" - -#: ../../include/functions_reporting.php:3119 -#, php-format -msgid "Exception - Not equal to %s" -msgstr "ExcepciĆ³n - No igual a %s" - -#: ../../include/functions_reporting.php:3122 -#, php-format -msgid "Not equal to %s" -msgstr "No igual a %s" - -#: ../../include/functions_reporting.php:3126 -msgid "Exception - Modules at normal status" -msgstr "ExcepciĆ³n - MĆ³dulos en estado normal" - -#: ../../include/functions_reporting.php:3127 -msgid "Modules at normal status" -msgstr "MĆ³dulos en estado normal" - -#: ../../include/functions_reporting.php:3131 -msgid "Exception - Modules at critical or warning status" -msgstr "ExcepciĆ³n - MĆ³dulos en estado crĆ­tico o de advertencia" - -#: ../../include/functions_reporting.php:3132 -msgid "Modules at critical or warning status" -msgstr "MĆ³dulos en estado crĆ­tico o de advertencia" - -#: ../../include/functions_reporting.php:3351 -msgid "There are no Modules under those conditions." -msgstr "No hay mĆ³dulos bajo esas condiciones" - -#: ../../include/functions_reporting.php:3355 -#, 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:3359 -#, 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:3363 -#, php-format -msgid "There are no Modules less %s." -msgstr "No hay mĆ³dulos por debajo de %s" - -#: ../../include/functions_reporting.php:3367 -#, php-format -msgid "There are no Modules over %s." -msgstr "No hay mĆ³dulos por encima de %s" - -#: ../../include/functions_reporting.php:3371 -#, php-format -msgid "There are no Modules equal to %s" -msgstr "No hay mĆ³dulos iguales a %s" - -#: ../../include/functions_reporting.php:3375 -#, php-format -msgid "There are no Modules not equal to %s" -msgstr "No hay mĆ³dulos no iguales a %s" - -#: ../../include/functions_reporting.php:3379 -msgid "There are no Modules normal status" -msgstr "No hay mĆ³dulos en estado normal" - -#: ../../include/functions_reporting.php:3383 -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:3540 -#: ../../enterprise/include/functions_reporting_csv.php:969 -msgid "Group Report" -msgstr "Informe del grupo" - -#: ../../include/functions_reporting.php:3720 -msgid "Event Report Agent" -msgstr "Informe de eventos de agentes" - -#: ../../include/functions_reporting.php:3952 -#: ../../enterprise/include/functions_reporting_csv.php:2175 -#: ../../enterprise/godmode/modules/configure_local_component.php:447 -#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:966 -#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:318 -#: ../../godmode/modules/manage_network_components_form_common.php:305 -#: ../../godmode/massive/massive_edit_modules.php:1042 -#: ../../godmode/agentes/module_manager_editor_common.php:532 -msgid "Historical data" -msgstr "HistĆ³rico de datos" - -#: ../../include/functions_reporting.php:4087 -msgid "Database Serialized" -msgstr "Base de datos serializada" - -#: ../../include/functions_reporting.php:4283 -msgid "Last Value" -msgstr "ƚltimo valor" - -#: ../../include/functions_reporting.php:4445 -#: ../../godmode/reporting/reporting_builder.item_editor.php:3354 -msgid "Unnasigned group" -msgstr "Grupo no asignado" - -#: ../../include/functions_reporting.php:4451 -#: ../../godmode/reporting/reporting_builder.item_editor.php:3308 -msgid "Unassigned group" -msgstr "Grupo no asignado" - -#: ../../include/functions_reporting.php:4607 -msgid "Network interfaces report" -msgstr "Informe de las interfaces de red" - -#: ../../include/functions_reporting.php:4701 -msgid "Custom render report" -msgstr "Informe de representaciĆ³n personalizado" - -#: ../../include/functions_reporting.php:4741 -#: ../../include/functions_reporting.php:4767 +#: ../../include/functions_events.php:4922 msgid "" -"This query is insecure, it could apply unwanted modiffications on the schema" +"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 operate with " +"them. The operation, when event replication is enabled, must be done only in the " +"Metaconsole." msgstr "" -"Esta consulta es insegura, podrĆ­a aplicar modificationes no deseadas en el " -"esquema" - -#: ../../include/functions_reporting.php:4998 -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:5019 -msgid "bytes/s" -msgstr "bytes/s" - -#: ../../include/functions_reporting.php:5139 -#: ../../enterprise/include/functions_reporting_csv.php:2447 -msgid "Alert Report Group" -msgstr "Informe de alertas de grupo" - -#: ../../include/functions_reporting.php:5226 -#: ../../include/functions_reporting.php:5243 -#: ../../include/functions_reporting.php:5260 -msgid "Not triggered" -msgstr "No disparado" - -#: ../../include/functions_reporting.php:5319 -#: ../../enterprise/include/functions_reporting_csv.php:2445 -msgid "Alert Report Agent" -msgstr "Informe de alertas de agente" - -#: ../../include/functions_reporting.php:5486 -#: ../../enterprise/include/functions_reporting_csv.php:2443 -msgid "Alert Report Module" -msgstr "Informe de alertas de mĆ³dulo" - -#: ../../include/functions_reporting.php:5686 -msgid "SQL Graph Vertical Bars" -msgstr "GrĆ”fico de barras verticales SQL" - -#: ../../include/functions_reporting.php:5690 -msgid "SQL Graph Horizontal Bars" -msgstr "GrĆ”fico de barras horizontales SQL" - -#: ../../include/functions_reporting.php:5694 -msgid "SQL Graph Pie" -msgstr "GrĆ”fico SQL circular" - -#: ../../include/functions_reporting.php:5778 -#: ../../enterprise/include/functions_reporting_csv.php:1415 -#: ../../enterprise/include/functions_reporting_csv.php:1433 -#: ../../enterprise/include/functions_reporting_csv.php:1435 -msgid "Monitor Report" -msgstr "Informe de monitores" - -#: ../../include/functions_reporting.php:5921 -msgid "Netflow Area" -msgstr "Ɓrea de Netflow" - -#: ../../include/functions_reporting.php:5925 -msgid "Netflow Summary" -msgstr "Resumen de Netflow" - -#: ../../include/functions_reporting.php:5929 -msgid "Netflow Data" -msgstr "Datos de Netflow" - -#: ../../include/functions_reporting.php:5937 -msgid "Unknown report" -msgstr "Informe desconocido" - -#: ../../include/functions_reporting.php:6031 -msgid "Prediction Date" -msgstr "Fecha de predicciĆ³n" - -#: ../../include/functions_reporting.php:6136 -#: ../../enterprise/include/functions_reporting_csv.php:788 -msgid "Projection Graph" -msgstr "GrĆ”fico de proyecciĆ³n" - -#: ../../include/functions_reporting.php:6434 -#: ../../include/rest-api/models/VisualConsole/Items/Percentile.php:492 -#: ../../enterprise/include/functions_reporting_csv.php:1256 -#: ../../enterprise/godmode/modules/configure_local_component.php:466 -#: ../../godmode/modules/manage_network_components_form_common.php:310 -#: ../../godmode/agentes/module_manager_editor_common.php:668 -msgid "Max. Value" -msgstr "Valor mĆ”ximo" - -#: ../../include/functions_reporting.php:6438 -#: ../../include/rest-api/models/VisualConsole/Items/Percentile.php:480 -#: ../../enterprise/include/functions_reporting_csv.php:1201 -#: ../../enterprise/godmode/modules/configure_local_component.php:461 -#: ../../godmode/modules/manage_network_components_form_common.php:308 -#: ../../godmode/agentes/module_manager_editor_common.php:664 -msgid "Min. Value" -msgstr "Valor mĆ­nimo" - -#: ../../include/functions_reporting.php:6447 -#: ../../enterprise/include/functions_reporting_csv.php:1360 -#: ../../enterprise/include/functions_reporting_csv.php:1379 -#: ../../enterprise/include/functions_reporting_csv.php:1381 -#: ../../enterprise/include/functions_reporting_csv.php:1387 -#: ../../enterprise/include/functions_reporting_csv.php:1389 -msgid "AVG. Value" -msgstr "Valor medio" - -#: ../../include/functions_reporting.php:6663 -#: ../../include/functions_reporting.php:6686 -#: ../../include/functions_reporting.php:6701 -#: ../../include/functions_reporting.php:6717 -#: ../../include/functions_reporting.php:6732 -#: ../../include/functions_reporting_html.php:3565 -#: ../../include/functions_reporting_html.php:3594 -#: ../../include/functions_reporting_html.php:3635 -#: ../../include/functions_reporting_html.php:3658 -#: ../../include/functions_reporting_html.php:3661 -#: ../../include/functions_reporting_html.php:3668 -#: ../../enterprise/include/functions_reporting_csv.php:1290 -#: ../../enterprise/include/functions_reporting_pdf.php:526 -#: ../../enterprise/include/functions_reporting_pdf.php:558 -#: ../../enterprise/include/functions_reporting_pdf.php:584 -#: ../../enterprise/include/functions_reporting_pdf.php:609 -#: ../../enterprise/include/functions_reporting_pdf.php:612 -#: ../../enterprise/include/functions_reporting_pdf.php:619 -msgid "Maximun" -msgstr "MĆ”ximo" - -#: ../../include/functions_reporting.php:6681 -#: ../../include/functions_reporting_html.php:3634 -#: ../../include/functions_reporting_html.php:3641 -#: ../../include/functions_reporting_html.php:3649 -#: ../../include/functions_reporting_html.php:3660 -#: ../../include/functions_reporting_html.php:3665 -#: ../../enterprise/include/functions_reporting_csv.php:1235 -#: ../../enterprise/include/functions_reporting_csv.php:1290 -#: ../../enterprise/include/functions_reporting_csv.php:1394 -#: ../../enterprise/include/functions_reporting_pdf.php:583 -#: ../../enterprise/include/functions_reporting_pdf.php:590 -#: ../../enterprise/include/functions_reporting_pdf.php:597 -#: ../../enterprise/include/functions_reporting_pdf.php:611 -#: ../../enterprise/include/functions_reporting_pdf.php:616 -msgid "Lapse" -msgstr "Tiempo transcurrido" - -#: ../../include/functions_reporting.php:6854 -#: ../../enterprise/include/functions_reporting_csv.php:1084 -#: ../../enterprise/godmode/reporting/mysql_builder.php:232 -msgid "SQL" -msgstr "SQL" - -#: ../../include/functions_reporting.php:6932 -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 "" -"Consulta ilegal: debido a restricciones de seguridad, hay algunos tokens o " -"palabras que no se puede usar: *, borrar, eliminar, soltar, alterar, " -"modificar, contraseƱa, pass, insertar o actualizar." - -#: ../../include/functions_reporting.php:8346 -#: ../../include/functions_reporting.php:9064 -msgid "No Address" -msgstr "Sin direcciĆ³n" - -#: ../../include/functions_reporting.php:9363 -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:9381 -msgid "The monitor type is not numeric" -msgstr "El tipo de monitor no es numĆ©rico." - -#: ../../include/functions_reporting.php:9746 -#: ../../enterprise/include/functions_reporting_csv.php:1235 -msgid "Minimum" -msgstr "MĆ­nimo" - -#: ../../include/functions_reporting.php:9750 -msgid "Maximum" -msgstr "MĆ”ximo" - -#: ../../include/functions_reporting.php:9755 -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:270 -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:400 -msgid "Rate" -msgstr "Tasa" - -#: ../../include/functions_reporting.php:9854 -msgid "Automatic combined graph" -msgstr "GrĆ”fica combinada automĆ”tica" - -#: ../../include/functions_reporting.php:10691 -msgid "Maximum of events shown" -msgstr "MĆ”ximo nĆŗmero de eventos mostrados" - -#: ../../include/functions_reporting.php:11267 -#: ../../include/functions_reporting.php:11291 -msgid "Server health" -msgstr "Estado del servidor" - -#: ../../include/functions_reporting.php:11267 -#, php-format -msgid "%d Downed servers" -msgstr "%d servidores caĆ­dos" - -#: ../../include/functions_reporting.php:11272 -#: ../../include/functions_reporting.php:11295 -msgid "Monitor health" -msgstr "Estado del monitor" - -#: ../../include/functions_reporting.php:11272 -#, php-format -msgid "%d Not Normal monitors" -msgstr "%d monitores fuera de la normalidad" - -#: ../../include/functions_reporting.php:11272 -#: ../../include/functions_reporting.php:11296 -msgid "of monitors up" -msgstr "de monitores funcionando" - -#: ../../include/functions_reporting.php:11277 -#: ../../include/functions_reporting.php:11299 -msgid "Module sanity" -msgstr "Estado de los mĆ³dulos" - -#: ../../include/functions_reporting.php:11277 -#, php-format -msgid "%d Not inited monitors" -msgstr "%d monitores sin iniciar" - -#: ../../include/functions_reporting.php:11277 -#: ../../include/functions_reporting.php:11300 -msgid "of total modules inited" -msgstr "del total de mĆ³dulos iniciados" - -#: ../../include/functions_reporting.php:11282 -#: ../../include/functions_reporting.php:11303 -#: ../../include/functions_reporting_html.php:4949 -msgid "Alert level" -msgstr "Nivel de alerta" - -#: ../../include/functions_reporting.php:11282 -#: ../../include/functions_reporting.php:12394 -#: ../../include/functions_reporting.php:12404 -#, php-format -msgid "%d Fired alerts" -msgstr "%d alertas disparadas" - -#: ../../include/functions_reporting.php:11282 -#: ../../include/functions_reporting.php:11304 -msgid "of defined alerts not fired" -msgstr "de alertas definidas no disparadas" - -#: ../../include/functions_reporting.php:11343 -#: ../../enterprise/include/functions_reporting_csv.php:983 -msgid "Defined alerts" -msgstr "Alertas definidas" - -#: ../../include/functions_reporting.php:11354 -#: ../../include/functions_reporting.php:11511 -#: ../../include/functions_reporting.php:11525 -#: ../../include/functions_reporting.php:13864 -#: ../../include/functions_reporting.php:13939 -#: ../../include/functions_ui.php:4660 ../../include/functions_html.php:930 -#: ../../include/functions_html.php:3297 ../../include/functions_html.php:3789 -msgid "Enterprise version not installed" -msgstr "VersiĆ³n Enterprise no instalada" - -#: ../../include/functions_reporting.php:11376 -msgid "Defined and fired alerts" -msgstr "Alertas definidas y disparadas" - -#: ../../include/functions_reporting.php:11430 -#: ../../enterprise/meta/monitoring/custom_fields_view.php:474 -msgid "Monitor normal" -msgstr "Monitor normal" - -#: ../../include/functions_reporting.php:11441 -#: ../../enterprise/meta/monitoring/custom_fields_view.php:496 -msgid "Monitor not init" -msgstr "Monitor en estado no iniciado" - -#: ../../include/functions_reporting.php:11461 -#: ../../include/functions_reporting.php:11467 -#: ../../enterprise/meta/monitoring/custom_fields_view.php:519 -msgid "Monitors by status" -msgstr "Monitores por estado" - -#: ../../include/functions_reporting.php:11514 -#: ../../include/functions_reporting_html.php:5618 -msgid "Monitor checks" -msgstr "Comprobaciones de monitores" - -#: ../../include/functions_reporting.php:11533 -#: ../../include/functions_reporting_html.php:5625 -msgid "Total agents and monitors" -msgstr "Total de agentes y monitores" - -#: ../../include/functions_reporting.php:11555 -msgid "Defined users" -msgstr "Usuarios definidos" - -#: ../../include/functions_reporting.php:12251 -msgid "Agent without data" -msgstr "Agente sin datos" - -#: ../../include/functions_reporting.php:12380 -#: ../../include/functions_reporting.php:12389 -#: ../../enterprise/operation/agentes/tag_view.php:1075 -#, php-format -msgid "%d Total modules" -msgstr "%d mĆ³dulos totales" - -#: ../../include/functions_reporting.php:12381 -#: ../../enterprise/operation/agentes/tag_view.php:1076 -#, php-format -msgid "%d Modules in normal status" -msgstr "%d mĆ³dulos en estado normal" - -#: ../../include/functions_reporting.php:12382 -#: ../../enterprise/operation/agentes/tag_view.php:1077 -#, php-format -msgid "%d Modules in critical status" -msgstr "%d mĆ³dulos en estado crĆ­tico" - -#: ../../include/functions_reporting.php:12383 -#: ../../enterprise/operation/agentes/tag_view.php:1078 -#, php-format -msgid "%d Modules in warning status" -msgstr "%d mĆ³dulos en estado de advertencia" - -#: ../../include/functions_reporting.php:12384 -#: ../../enterprise/operation/agentes/tag_view.php:1079 -#, php-format -msgid "%d Modules in unknown status" -msgstr "%d mĆ³dulos en estado desconocido" - -#: ../../include/functions_reporting.php:12385 -#: ../../enterprise/operation/agentes/tag_view.php:1080 -#, php-format -msgid "%d Modules in not init status" -msgstr "%d mĆ³dulos en estado no iniciado" - -#: ../../include/functions_reporting.php:12390 -#, php-format -msgid "%d Normal modules" -msgstr "%d mĆ³dulos normales" - -#: ../../include/functions_reporting.php:12391 -#, php-format -msgid "%d Critical modules" -msgstr "%d mĆ³dulos crĆ­ticos" - -#: ../../include/functions_reporting.php:12392 -#, php-format -msgid "%d Warning modules" -msgstr "%d mĆ³dulos en estado de advertencia" - -#: ../../include/functions_reporting.php:12393 -#, php-format -msgid "%d Unknown modules" -msgstr "%d mĆ³dulos desconocidos" - -#: ../../include/functions_reporting.php:12398 -#, php-format -msgid "%d Total agents" -msgstr "%d del total de agentes" - -#: ../../include/functions_reporting.php:12399 -#, php-format -msgid "%d Normal agents" -msgstr "%d agentes normales" - -#: ../../include/functions_reporting.php:12400 -#, php-format -msgid "%d Critical agents" -msgstr "%d agentes en estado crĆ­tico" - -#: ../../include/functions_reporting.php:12401 -#, php-format -msgid "%d Warning agents" -msgstr "%d agentes en estado de advertencia" - -#: ../../include/functions_reporting.php:12402 -#, php-format -msgid "%d Unknown agents" -msgstr "%d agentes desconocidos" - -#: ../../include/functions_reporting.php:12403 -#, php-format -msgid "%d not init agents" -msgstr "%d agentes no iniciados" - -#: ../../include/functions_reporting.php:13831 -msgid "Total running modules" -msgstr "Total de mĆ³dulos en ejecuciĆ³n" - -#: ../../include/functions_reporting.php:13834 -#: ../../include/functions_reporting.php:13849 -#: ../../include/functions_reporting.php:13861 -#: ../../include/functions_reporting.php:13879 -#: ../../include/functions_reporting.php:13891 -#: ../../include/functions_reporting.php:13903 -#: ../../include/functions_reporting.php:13915 -msgid "Ratio" -msgstr "ProporciĆ³n" - -#: ../../include/functions_reporting.php:13834 -#: ../../include/functions_reporting.php:13849 -#: ../../include/functions_reporting.php:13861 -#: ../../include/functions_reporting.php:13879 -#: ../../include/functions_reporting.php:13891 -#: ../../include/functions_reporting.php:13903 -#: ../../include/functions_reporting.php:13915 -msgid "Modules by second" -msgstr "MĆ³dulos por segundo" - -#: ../../include/functions_reporting.php:13846 -msgid "Local modules" -msgstr "MĆ³dulos locales" - -#: ../../include/functions_reporting.php:13856 -msgid "Network modules" -msgstr "MĆ³dulos de red" - -#: ../../include/functions_reporting.php:13875 -msgid "Plugin modules" -msgstr "MĆ³dulos de plugin" - -#: ../../include/functions_reporting.php:13887 -msgid "Prediction modules" -msgstr "MĆ³dulos de predicciĆ³n" - -#: ../../include/functions_reporting.php:13899 -msgid "WMI modules" -msgstr "MĆ³dulos WMI" - -#: ../../include/functions_reporting.php:13911 -msgid "Web modules" -msgstr "MĆ³dulos web" - -#: ../../include/functions_reporting.php:14068 -msgid "Weekly:" -msgstr "Semanalmente:" - -#: ../../include/functions_reporting.php:14110 -msgid "Monthly:" -msgstr "Mensual:" - -#: ../../include/functions_reporting.php:14111 -msgid "From day" -msgstr "Desde el dĆ­a" - -#: ../../include/functions_reporting.php:14112 -msgid "To day" -msgstr "Hasta el dĆ­a" - -#: ../../include/functions_reporting.php:14646 -msgid "Module Histogram Graph" -msgstr "GrĆ”fico de histograma del mĆ³dulo" - -#: ../../include/functions_reporting.php:15027 -#: ../../enterprise/include/functions_cron.php:1776 -msgid "Greetings" -msgstr "Saludos" - -#: ../../include/functions_reporting.php:15029 -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:15030 -msgid "report" -msgstr "informe" - -#: ../../include/functions_reporting.php:15033 -#: ../../enterprise/include/functions_cron.php:1780 -#: ../../mobile/include/ui.class.php:327 -#: ../../mobile/include/functions_web.php:84 -msgid "Generated at" -msgstr "Generado el" - -#: ../../include/functions_reporting.php:15035 -#: ../../enterprise/include/functions_cron.php:1782 -msgid "Thanks for your time." -msgstr "Gracias por tu tiempo." - -#: ../../include/functions_reporting.php:15037 -#: ../../enterprise/include/functions_cron.php:1784 -msgid "Best regards, Pandora FMS" -msgstr "Saludos cordiales, Pandora FMS" - -#: ../../include/functions_reporting.php:15039 -#: ../../enterprise/include/functions_cron.php:1786 -msgid "" -"This is an automatically generated email from Pandora FMS, please do not reply." -msgstr "" -"Este es un email generado automĆ”ticamente por Pandora FMS. Por favor, no " -"respondas a este email." - -#: ../../include/functions_visual_map.php:1746 -#: ../../include/functions_visual_map.php:1748 -#: ../../include/rest-api/models/VisualConsole/Items/StaticGraph.php:275 -#: ../../include/rest-api/models/VisualConsole/Items/StaticGraph.php:279 -msgid "Last value: " -msgstr "ƚltimo valor: " - -#: ../../include/functions_visual_map.php:2566 -#: ../../include/functions_visual_map.php:2947 -#: ../../enterprise/godmode/policies/policy_agents.php:1152 -#: ../../godmode/massive/massive_add_alerts.php:100 -#: ../../godmode/massive/massive_delete_modules.php:87 -#: ../../godmode/massive/massive_add_action_alerts.php:75 -#: ../../godmode/massive/massive_edit_agents.php:172 -#: ../../godmode/massive/massive_delete_alerts.php:113 -#: ../../godmode/massive/massive_delete_agents.php:61 -msgid "No agents selected" -msgstr "No se seleccionĆ³ ningĆŗn agente" - -#: ../../include/functions_visual_map.php:2632 -msgid "Agent successfully added to layout" -msgstr "Agente aƱadido correctamente al diseƱo" - -#: ../../include/functions_visual_map.php:2674 -#: ../../enterprise/include/functions_massive.php:54 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:896 -#: ../../godmode/massive/massive_add_action_alerts.php:163 -#: ../../godmode/massive/massive_delete_action_alerts.php:175 -#: ../../godmode/massive/massive_edit_modules.php:1999 -#: ../../godmode/agentes/module_manager.php:274 -msgid "No modules selected" -msgstr "No se han seleccionado mĆ³dulos." - -#: ../../include/functions_visual_map.php:2816 -msgid "Modules successfully added to layout" -msgstr "MĆ³dulos aƱadidos correctamente al diseƱo" - -#: ../../include/functions_visual_map.php:3141 -msgid "Agents successfully added to layout" -msgstr "Agentes aƱadidos correctamente al diseƱo" - -#: ../../include/functions_visual_map.php:3537 -msgid "Cannot load the visualmap" -msgstr "No se puede cargar el mapa visual" - -#: ../../include/functions_visual_map.php:4189 -#: ../../include/rest-api/models/VisualConsole/Item.php:2107 -msgid "Bars graph" -msgstr "GrĆ”fico de barras" - -#: ../../include/functions_visual_map.php:4199 -#: ../../include/rest-api/models/VisualConsole/Item.php:2115 -msgid "Percentile bar" -msgstr "Barra de porcentaje" - -#: ../../include/functions_visual_map.php:4204 -#: ../../include/rest-api/models/VisualConsole/Item.php:2123 -msgid "Circular progress bar" -msgstr "Barra de progreso circular" - -#: ../../include/functions_modules.php:4015 -msgid "Realtime SNMP graph" -msgstr "GrĆ”fica SNMP en tiempo real" - -#: ../../include/functions_modules.php:4080 -msgid "ALL" -msgstr "TODO" - -#: ../../include/functions_modules.php:4096 -msgid "NOT NORMAL" -msgstr "NO NORMAL" - -#: ../../include/functions_planned_downtimes.php:40 -#: ../../include/functions_planned_downtimes.php:742 -#: ../../godmode/agentes/planned_downtime.editor.php:241 -msgid "" -"Not created. Error inserting data. Start time must be higher than the current " -"time" -msgstr "" -"No ha sido creado. Error insertando datos. La fecha de comienzo debe ser " -"anterior a la fecha actual." - -#: ../../include/functions_planned_downtimes.php:42 -#: ../../include/functions_planned_downtimes.php:47 -#: ../../include/functions_planned_downtimes.php:49 -#: ../../include/functions_planned_downtimes.php:747 -#: ../../include/functions_planned_downtimes.php:754 -#: ../../include/functions_planned_downtimes.php:762 -#: ../../include/functions_planned_downtimes.php:770 -#: ../../include/functions_planned_downtimes.php:775 -#: ../../include/functions_planned_downtimes.php:780 -#: ../../include/functions_planned_downtimes.php:785 -#: ../../include/functions_planned_downtimes.php:790 -#: ../../include/functions_planned_downtimes.php:795 -#: ../../include/functions_planned_downtimes.php:800 -#: ../../godmode/agentes/planned_downtime.editor.php:245 -#: ../../godmode/agentes/planned_downtime.editor.php:249 -#: ../../godmode/agentes/planned_downtime.editor.php:257 -#: ../../godmode/agentes/planned_downtime.editor.php:261 -msgid "Not created. Error inserting data" -msgstr "No se pudo crear. Error al insertar los datos." - -#: ../../include/functions_planned_downtimes.php:42 -#: ../../include/functions_planned_downtimes.php:754 -#: ../../godmode/agentes/planned_downtime.editor.php:245 -msgid "The end date must be higher than the start date" -msgstr "La fecha de fin debe ser posterior a la fecha de inicio." - -#: ../../include/functions_planned_downtimes.php:47 -#: ../../include/functions_planned_downtimes.php:762 -#: ../../godmode/agentes/planned_downtime.editor.php:257 -#: ../../godmode/agentes/planned_downtime.editor.php:722 -#: ../../godmode/agentes/planned_downtime.editor.php:735 -msgid "The end time must be higher than the start time" -msgstr "La hora de fin debe ser posterior a la fecha de inicio." - -#: ../../include/functions_planned_downtimes.php:49 -#: ../../include/functions_planned_downtimes.php:770 -#: ../../godmode/agentes/planned_downtime.editor.php:261 -#: ../../godmode/agentes/planned_downtime.editor.php:707 -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." - -#: ../../include/functions_planned_downtimes.php:98 -#: ../../include/functions_planned_downtimes.php:814 -#: ../../godmode/agentes/planned_downtime.editor.php:313 -msgid "Each scheduled downtime must have a different name" -msgstr "Cada tiempo de inactividad programado debe tener un nombre diferente" - -#: ../../include/functions_planned_downtimes.php:103 -#: ../../include/functions_planned_downtimes.php:820 -#: ../../godmode/agentes/planned_downtime.editor.php:318 -#: ../../godmode/agentes/planned_downtime.editor.php:350 -msgid "Scheduled downtime must have a name" -msgstr "La parada de servicio planeada debe tener un nombre." +"Si la replicaciĆ³n de evento estĆ” en proceso, no sera posible aƱadir comentarios. Esta " +"opciĆ³n solo permite a los usuarios locales de Pandora FMS 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_planned_downtimes.php:575 msgid "Succesful stopped the Downtime" @@ -25006,11 +47339,6 @@ msgstr "La parada planificada no ha podido ser detenida" msgid "Enabled %s elements from the downtime" msgstr "Habilitar %s elementos desde la parada" -#: ../../include/functions_planned_downtimes.php:747 -#: ../../godmode/agentes/planned_downtime.editor.php:249 -msgid "The end date must be higher than the current time" -msgstr "La fecha fin deberĆ­a ser posterior a la fecha actual." - #: ../../include/functions_planned_downtimes.php:775 msgid "The downtime must be quiet, disable_agents or disable_agents_alerts" msgstr "La parada debe estar silenciada, disable_agents o disable_agents_alerts" @@ -25037,8 +47365,7 @@ msgstr "Formato de fecha incorrecto" #: ../../include/functions_planned_downtimes.php:907 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." +msgstr "Esta parada planificada se estĆ” ejecutando. No se puede borrar en este momento." #: ../../include/functions_planned_downtimes.php:914 msgid "Deleted this scheduled downtime successfully." @@ -25048,21 +47375,6 @@ msgstr "Parada planificada borrada correctamente." msgid "Problems for deleted this scheduled downtime." msgstr "Error al borrar la parada planificada." -#: ../../include/functions_planned_downtimes.php:949 -#: ../../include/functions_maps.php:73 -#: ../../include/functions_networkmap.php:2068 -msgid "Copy of " -msgstr "Copiar de " - -#: ../../include/functions_planned_downtimes.php:958 -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:456 -#: ../../enterprise/godmode/policies/policies.php:236 -#: ../../godmode/reporting/reporting_builder.php:738 -#: ../../godmode/alerts/alert_actions.php:130 -#: ../../godmode/alerts/alert_commands.php:626 -msgid "Could not be copied" -msgstr "No se ha podido copiar" - #: ../../include/functions_planned_downtimes.php:976 msgid "Error adding agents to copied downtime" msgstr "Error al agregar agentes al tiempo de inactividad copiado" @@ -25071,26986 +47383,3254 @@ msgstr "Error al agregar agentes al tiempo de inactividad copiado" msgid "Error adding module to copied downtime" msgstr "Error al agregar mĆ³dulo al tiempo de inactividad copiado" -#: ../../include/api.php:237 -msgid "User or group not specified" -msgstr "Usuario o grupo no especificados" - -#: ../../include/api.php:238 -msgid "User, group not specified" -msgstr "Usuario y grupo no especificados" - -#: ../../include/api.php:269 -msgid "User, group or profile not specified" -msgstr "Usuario, grupo o perfil no especificados" - -#: ../../include/api.php:270 -msgid "User, group or profile status not specified" -msgstr "Usuario, grupo o estado de perfil no especificados" - -#: ../../include/graphs/functions_flot.php:365 -msgid "Cancel zoom" -msgstr "Cancelar el zoom" - -#: ../../include/graphs/functions_flot.php:367 -msgid "Warning and Critical thresholds" -msgstr "Umbrales de advertencia y crĆ­tico" - -#: ../../include/graphs/functions_flot.php:372 -msgid "Overview graph" -msgstr "GrĆ”fico de vista general" - -#: ../../include/graphs/export_data.php:88 -#: ../../include/graphs/export_data.php:154 -msgid "An error occured exporting the data" -msgstr "Error al exportar los datos" - -#: ../../include/graphs/export_data.php:100 -#: ../../enterprise/godmode/reporting/visual_console_builder.wizard_services.php:141 -msgid "Selected" -msgstr "Seleccionado" - -#: ../../include/functions_register.php:105 -#, php-format -msgid "%s configuration wizard" -msgstr "Asistente de configuraciĆ³n de %s" - -#: ../../include/functions_register.php:108 -#, php-format -msgid "" -"Please fill the following information in order to configure your %s instance " -"successfully" -msgstr "" -"Rellene esta informaciĆ³n para configurar su instancia de %s correctamente" - -#: ../../include/functions_register.php:122 -#: ../../godmode/setup/setup_general.php:77 -msgid "Language code" -msgstr "Codigo de idioma" - -#: ../../include/functions_register.php:165 -msgid "" -"Must have the same time zone as the system or database to avoid mismatches of " -"time." -msgstr "" -"Debe tener las mismas zonas horarias que el sistema o la base de datos para " -"evitar desajustes de tiempo." - -#: ../../include/functions_register.php:171 -msgid "E-mail for receiving alerts" -msgstr "Correo electrĆ³nico para la recepciĆ³n de alertas" - -#: ../../include/functions_register.php:196 -msgid "All fields required" -msgstr "Todos los campos requeridos" - -#: ../../include/functions_register.php:205 -msgid "Are you sure you don't want to configure a base email?" -msgstr "ĀæEstĆ” seguro de que no desea configurar un correo base?" - -#: ../../include/functions_register.php:207 -msgid "" -"You could change this options later in \"alert actions\" and setting your " -"account." -msgstr "" -"Puede modificar las preferencias mĆ”s tarde en \"acciones de alerta\" y " -"configurar su propia cuenta." - -#: ../../include/functions_maps.php:38 -#: ../../include/functions_networkmap.php:1307 -msgid "Topology" -msgstr "TopologĆ­a" - -#: ../../include/functions_profile.php:216 -#: ../../enterprise/godmode/setup/setup_auth.php:175 -#: ../../enterprise/godmode/setup/setup_auth.php:232 -msgid "No hierarchy" -msgstr "No hay jerarquĆ­a" - -#: ../../include/functions_ui.php:287 -msgid "Information" -msgstr "InformaciĆ³n" - -#: ../../include/functions_ui.php:465 -msgid "Request successfully processed" -msgstr "PeticiĆ³n procesada correctamente" - -#: ../../include/functions_ui.php:469 -msgid "Error processing request" -msgstr "Error al procesar la peticiĆ³n" - -#: ../../include/functions_ui.php:625 -msgid "" -"Is possible that this view uses part of information which your user has not " -"access" -msgstr "" -"Es posible que esta vista utilice parte de la informaciĆ³n a la cual tu usuario " -"no tenga acceso." - -#: ../../include/functions_ui.php:874 -msgid "Software" -msgstr "Software" - -#: ../../include/functions_ui.php:1323 -#: ../../godmode/alerts/configure_alert_template.php:1218 -#: ../../godmode/alerts/alert_view.php:175 -msgid "The alert would fire when the value is " -msgstr "La alerta se dispararĆ” cuando el valor sea ." - -#: ../../include/functions_ui.php:1328 -#: ../../godmode/alerts/configure_alert_template.php:1219 -#: ../../godmode/alerts/alert_view.php:180 -msgid "The alert would fire when the value is not " -msgstr "" -"La alerta se dispararĆ” cuando el valor no sea ." - -#: ../../include/functions_ui.php:1334 -#: ../../godmode/alerts/configure_alert_template.php:1216 -#: ../../godmode/alerts/alert_view.php:166 -msgid "The alert would fire when the value matches " -msgstr "" -"La alerta se dispararĆ” cuando el valor coincida con ." - -#: ../../include/functions_ui.php:1337 ../../godmode/alerts/alert_view.php:168 -msgid "" -"The alert would fire when the value doesn't match " -msgstr "" -"La alerta se dispararĆ” cuando el valor no coincida con ." - -#: ../../include/functions_ui.php:1346 -#: ../../godmode/alerts/configure_alert_template.php:1220 -#: ../../godmode/alerts/alert_view.php:187 -msgid "" -"The alert would fire when the value is between and " -"" -msgstr "" -"La alerta se dispararĆ” cuando el valor estĆ© entre y " -"." - -#: ../../include/functions_ui.php:1349 ../../godmode/alerts/alert_view.php:191 -msgid "" -"The alert would fire when the value is not between " -"and " -msgstr "" -"La alerta se dispararĆ” cuando el valor no estĆ© entre " -"y ." - -#: ../../include/functions_ui.php:1355 -msgid "The alert would fire when the value is over " -msgstr "" -"La alerta se dispararĆ” cuando el valor estĆ© por encima de ." - -#: ../../include/functions_ui.php:1360 -msgid "The alert would fire when the value is under " -msgstr "" -"La alerta se dispararĆ” cuando el valor estĆ© por debajo de ." - -#: ../../include/functions_ui.php:1365 -#: ../../godmode/alerts/configure_alert_template.php:1224 -#: ../../godmode/alerts/alert_view.php:218 -msgid "The alert would fire when the module is in warning status" -msgstr "La alerta se dispararĆ” cuando el mĆ³dulo estĆ© en estado advertencia." - -#: ../../include/functions_ui.php:1370 -#: ../../godmode/alerts/configure_alert_template.php:1225 -#: ../../godmode/alerts/alert_view.php:222 -msgid "The alert would fire when the module is in critical status" -msgstr "La alerta se dispararĆ” cuando el mĆ³dulo estĆ© en estado crĆ­tico." - -#: ../../include/functions_ui.php:1375 -msgid "Unknown option." -msgstr "OpciĆ³n desconocida." - -#: ../../include/functions_ui.php:2107 ../../include/functions_ui.php:2133 -#, php-format -msgid "Total items: %s" -msgstr "NĆŗmero total de elementos: %s" - -#: ../../include/functions_ui.php:2534 -msgid "Unknown type" -msgstr "Tipo desconocido" - -#: ../../include/functions_ui.php:3414 -#: ../../enterprise/include/class/DatabaseHA.class.php:217 -#: ../../enterprise/meta/monitoring/custom_fields_view.php:347 -#: ../../enterprise/meta/monitoring/custom_fields_view.php:349 -#: ../../godmode/wizards/DiscoveryTaskList.class.php:1861 -msgid "Processing" -msgstr "Procesando" - -#: ../../include/functions_ui.php:3502 ../../include/functions_ui.php:3503 -msgid "Export current page to CSV" -msgstr "Exportar pĆ”gina actual a CSV" - -#: ../../include/functions_ui.php:5042 -msgid "Type at least two characters to search." -msgstr "Escribe al menos dos caracteres para buscar." - -#: ../../include/functions_ui.php:5780 ../../include/functions_html.php:5341 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3678 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3930 -#: ../../godmode/reporting/create_container.php:418 -#: ../../godmode/reporting/reporting_builder.item_editor.php:1664 -#: ../../godmode/reporting/reporting_builder.item_editor.php:4047 -#: ../../godmode/reporting/reporting_builder.item_editor.php:4084 -#: ../../godmode/reporting/reporting_builder.item_editor.php:4253 -#: ../../godmode/reporting/reporting_builder.item_editor.php:4526 -#: ../../godmode/reporting/reporting_builder.item_editor.php:4560 -#: ../../godmode/reporting/reporting_builder.item_editor.php:4614 -msgid "Select an Agent first" -msgstr "Debe seleccionar primero un agente" - -#: ../../include/functions_ui.php:5981 -msgid "Unhandled error" -msgstr "Error no tratado" - -#: ../../include/functions_ui.php:5982 -msgid "An unhandled error occurs" -msgstr "Ha ocurrido un error no tratado" - -#: ../../include/functions_ui.php:6227 -#: ../../enterprise/operation/agentes/tag_view.php:873 -#: ../../enterprise/operation/agentes/tag_view.php:883 -#: ../../enterprise/operation/agentes/wux_console_view.php:352 -#: ../../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/include/functions_ux_console.php:507 -msgid "Snapshot view" -msgstr "Vista de captura de pantalla" - -#: ../../include/functions_ui.php:6253 -#, 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 "" -"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:6557 -#: ../../enterprise/include/class/CommandCenter.class.php:452 -msgid "Query" -msgstr "Consulta" - -#: ../../include/functions_ui.php:6574 -msgid "Execute query" -msgstr "Ejecutar consulta" - -#: ../../include/functions_ui.php:6596 -msgid "Results" -msgstr "Resultados" - -#: ../../include/functions_ui.php:6660 -msgid "Show password" -msgstr "Mostrar contraseƱa" - -#: ../../include/functions_integriaims.php:42 -msgid "Configure Integria IMS" -msgstr "Configurar Integria IMS" - -#: ../../include/functions_integriaims.php:43 -msgid "Ticket list" -msgstr "Lista de tickets" - -#: ../../include/functions_integriaims.php:44 -msgid "New ticket" -msgstr "Nuevo ticket" - -#: ../../include/functions_integriaims.php:73 -msgid "Edit ticket" -msgstr "Editar ticket" - -#: ../../include/functions_integriaims.php:74 -msgid "View ticket" -msgstr "Ver ticket" - -#: ../../include/functions_integriaims.php:307 -msgid "" -"API request failed. Please check Integria IMS' access credentials in Pandora " -"setup." -msgstr "" -"Error de peticiĆ³n API. Compruebe los credenciales de acceso a Integria IMS en " -"los ajustes de Pandora FMS." - -#: ../../include/functions_integriaims.php:557 -msgid "File successfully added" -msgstr "Archivo aƱadido correctamente" - -#: ../../include/functions_integriaims.php:558 -msgid "File could not be added" -msgstr "no se ha podido aƱadir el archivo" - -#: ../../include/functions_integriaims.php:561 -msgid "File has an invalid extension" -msgstr "El archivo tiene una extensiĆ³n no vĆ”lida" - -#: ../../include/rest-api/models/VisualConsole/Item.php:1958 -#: ../../godmode/setup/gis_step_2.php:364 -msgid "Top" -msgstr "Superior" - -#: ../../include/rest-api/models/VisualConsole/Item.php:1959 -#: ../../godmode/setup/gis_step_2.php:357 -msgid "Right" -msgstr "Derecha" - -#: ../../include/rest-api/models/VisualConsole/Item.php:1960 -#: ../../godmode/setup/gis_step_2.php:343 -msgid "Left" -msgstr "Izquierda" - -#: ../../include/rest-api/models/VisualConsole/Item.php:1964 -msgid "Label position" -msgstr "PosiciĆ³n de la etiqueta" - -#: ../../include/rest-api/models/VisualConsole/Item.php:1994 -#: ../../include/rest-api/models/VisualConsole/Items/Box.php:217 -msgid "width" -msgstr "ancho" - -#: ../../include/rest-api/models/VisualConsole/Item.php:2004 -#: ../../include/rest-api/models/VisualConsole/Items/Box.php:227 -msgid "height" -msgstr "altura" - -#: ../../include/rest-api/models/VisualConsole/Item.php:2026 -#: ../../include/rest-api/models/VisualConsole/Items/Box.php:249 -msgid "X" -msgstr "X" - -#: ../../include/rest-api/models/VisualConsole/Item.php:2036 -#: ../../include/rest-api/models/VisualConsole/Items/Box.php:259 -#: ../../include/functions.php:491 ../../include/functions.php:643 -msgid "Y" -msgstr "Y" - -#: ../../include/rest-api/models/VisualConsole/Item.php:2051 -msgid "Link enabled" -msgstr "Enlace habilitado" - -#: ../../include/rest-api/models/VisualConsole/Item.php:2063 -#: ../../include/rest-api/models/VisualConsole/Items/NetworkLink.php:950 -#: ../../include/rest-api/models/VisualConsole/Items/Line.php:499 -#: ../../include/rest-api/models/VisualConsole/Items/Box.php:273 -msgid "Show on top" -msgstr "Mostrar primero" - -#: ../../include/rest-api/models/VisualConsole/Item.php:2093 -msgid "Static graph" -msgstr "Imagen estĆ”tica" - -#: ../../include/rest-api/models/VisualConsole/Item.php:2111 -msgid "Event History Graph" -msgstr "GrĆ”fica de histĆ³rico de eventos" - -#: ../../include/rest-api/models/VisualConsole/Item.php:2119 -msgid "Percentile bubble" -msgstr "GrĆ”fica bubble de percentil" - -#: ../../include/rest-api/models/VisualConsole/Item.php:2584 -#: ../../include/rest-api/models/VisualConsole/Item.php:2585 -msgid "Image Vc" -msgstr "Imagen Vc" - -#: ../../include/rest-api/models/VisualConsole/Items/BasicChart.php:325 -msgid "Module name color" -msgstr "Color del nombre del mĆ³dulo" - -#: ../../include/rest-api/models/VisualConsole/Items/StaticGraph.php:402 -msgid "Show Last Value" -msgstr "Mostrar Ćŗltimo valor" - -#: ../../include/rest-api/models/VisualConsole/Items/ColorCloud.php:438 -msgid "Add new range" -msgstr "AƱadir nuevo intervalo" - -#: ../../include/rest-api/models/VisualConsole/Items/ColorCloud.php:495 -msgid "Current ranges" -msgstr "Intervalos actuales" - -#: ../../include/rest-api/models/VisualConsole/Items/SimpleValue.php:365 -msgid "Avg Value" -msgstr "Valor medio" - -#: ../../include/rest-api/models/VisualConsole/Items/SimpleValue.php:366 -#: ../../include/functions_reporting_html.php:997 -#: ../../include/functions_reporting_html.php:2264 -#: ../../include/functions_reporting_html.php:4296 -#: ../../include/functions_reporting_html.php:4837 -msgid "Max Value" -msgstr "Valor mĆ”ximo" - -#: ../../include/rest-api/models/VisualConsole/Items/SimpleValue.php:367 -#: ../../include/functions_reporting_html.php:995 -#: ../../include/functions_reporting_html.php:2262 -#: ../../include/functions_reporting_html.php:4298 -#: ../../include/functions_reporting_html.php:4834 -msgid "Min Value" -msgstr "Valor mĆ­nimo" - -#: ../../include/rest-api/models/VisualConsole/Items/BarsGraph.php:487 -#: ../../include/rest-api/models/VisualConsole/Items/ModuleGraph.php:658 -msgid "Graph Type" -msgstr "Tipo de grĆ”fica" - -#: ../../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 -msgid "Failed to connect to node" -msgstr "No se ha podido conectar con el nodo" - -#: ../../include/rest-api/models/VisualConsole/Items/ModuleGraph.php:567 -#: ../../enterprise/include/functions_reporting_csv.php:2298 -msgid "Custom Graph" -msgstr "GrĆ”fica personalizada" - -#: ../../include/rest-api/models/VisualConsole/Items/Box.php:311 -msgid "Border Width" -msgstr "Ancho del borde" - -#: ../../include/rest-api/models/VisualConsole/Items/Box.php:335 -msgid "Fill transparent" -msgstr "Relleno transparente" - -#: ../../include/rest-api/models/VisualConsole/Items/Odometer.php:416 -msgid "Title color" -msgstr "Color del tĆ­tulo" - -#: ../../include/rest-api/models/VisualConsole/Items/EventsHistory.php:270 -msgid "12h" -msgstr "12h" - -#: ../../include/rest-api/models/VisualConsole/Items/EventsHistory.php:290 -msgid "Legend color" -msgstr "Color de leyenda" - -#: ../../include/rest-api/models/VisualConsole/View.php:66 -msgid "Label settings" -msgstr "ConfiguraciĆ³n de etiquetas" - -#: ../../include/rest-api/models/VisualConsole/View.php:72 -#: ../../include/rest-api/models/VisualConsole/View.php:104 -msgid "General settings" -msgstr "ConfiguraciĆ³n general" - -#: ../../include/rest-api/models/VisualConsole/View.php:78 -#: ../../include/rest-api/models/VisualConsole/View.php:94 -#: ../../include/rest-api/models/VisualConsole/View.php:110 -msgid "Specific settings" -msgstr "ConfiguraciĆ³n especĆ­fica" - -#: ../../include/rest-api/models/VisualConsole/View.php:213 -msgid "Item type not valid [" -msgstr "Tipo de elemento no vĆ”lido [" - -#: ../../include/rest-api/models/VisualConsole/View.php:218 -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 -msgid "NetworkLink from" -msgstr "NetworkLink de" - -#: ../../include/rest-api/models/VisualConsole/View.php:733 -#: ../../include/rest-api/models/VisualConsole/View.php:812 -#, php-format -msgid "Interface %s status" -msgstr "Estado de la interfaz %s" - -#: ../../include/rest-api/models/VisualConsole/View.php:808 -msgid "NetworkLink to" -msgstr "NetworkLink a" - -#: ../../include/rest-api/models/VisualConsole/View.php:860 -#, php-format -msgid "Failed to generate charts: %s" -msgstr "No se han podido generar las tablas: %s" - -#: ../../include/functions_html.php:595 ../../include/functions_html.php:969 -msgid "Please select an item from this list." -msgstr "Seleccione un elemento de la lista." - -#: ../../include/functions_html.php:621 ../../include/functions_html.php:5792 -msgid "Please select..." -msgstr "Seleccione..." - -#: ../../include/functions_html.php:1582 -msgid "Type to search agents" -msgstr "Escriba para buscar agentes" - -#: ../../include/functions_html.php:1596 -msgid "Type to search modules" -msgstr "Escriba para buscar mĆ³dulos" - -#: ../../include/functions_html.php:1659 ../../include/functions_html.php:1678 -#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:265 -#: ../../extensions/agents_modules.php:436 -#: ../../extensions/agents_modules.php:439 -#: ../../godmode/reporting/reporting_builder.item_editor.php:1780 -#: ../../godmode/massive/massive_add_alerts.php:264 -#: ../../godmode/massive/massive_delete_modules.php:555 -#: ../../godmode/massive/massive_add_action_alerts.php:224 -#: ../../godmode/massive/massive_delete_action_alerts.php:245 -#: ../../godmode/massive/massive_delete_alerts.php:345 -#: ../../godmode/massive/massive_edit_modules.php:528 -#: ../../godmode/agentes/planned_downtime.editor.php:817 -msgid "Show common modules" -msgstr "Mostrar mĆ³dulos comunes" - -#: ../../include/functions_html.php:1660 -#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:266 -#: ../../extensions/agents_modules.php:437 -#: ../../godmode/reporting/reporting_builder.item_editor.php:1781 -#: ../../godmode/massive/massive_add_alerts.php:265 -#: ../../godmode/massive/massive_delete_modules.php:556 -#: ../../godmode/massive/massive_add_action_alerts.php:225 -#: ../../godmode/massive/massive_delete_action_alerts.php:246 -#: ../../godmode/massive/massive_delete_alerts.php:346 -#: ../../godmode/massive/massive_edit_modules.php:529 -#: ../../godmode/agentes/planned_downtime.editor.php:818 -msgid "Show all modules" -msgstr "Mostrar todos los mĆ³dulos" - -#: ../../include/functions_html.php:1667 -msgid "Only common modules" -msgstr "Solo mĆ³dulos comunes" - -#: ../../include/functions_html.php:1838 ../../include/functions_html.php:1939 -#: ../../include/functions_html.php:2077 -#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:552 -#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:573 -#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:643 -#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:664 -#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:695 -#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:704 -#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:763 -#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:786 -#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:807 -#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:811 -#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:822 -#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:842 -#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:867 -#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:883 -#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:944 -#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:967 -#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:985 -#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:991 -#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:1004 -#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:1032 -#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:1134 -#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:28 -#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:315 -#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:330 -#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:475 -#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:489 -#: ../../godmode/massive/massive_edit_agents.php:669 -#: ../../godmode/massive/massive_edit_agents.php:694 -#: ../../godmode/massive/massive_edit_agents.php:711 -#: ../../godmode/massive/massive_edit_agents.php:725 -#: ../../godmode/massive/massive_edit_agents.php:749 -#: ../../godmode/massive/massive_edit_agents.php:859 -#: ../../godmode/massive/massive_edit_agents.php:906 -#: ../../godmode/massive/massive_edit_agents.php:981 -#: ../../godmode/massive/massive_edit_agents.php:985 -#: ../../godmode/massive/massive_edit_agents.php:994 -#: ../../godmode/massive/massive_edit_agents.php:1022 -#: ../../godmode/massive/massive_edit_agents.php:1091 -#: ../../godmode/massive/massive_edit_modules.php:615 -#: ../../godmode/massive/massive_edit_modules.php:637 -#: ../../godmode/massive/massive_edit_modules.php:706 -#: ../../godmode/massive/massive_edit_modules.php:728 -#: ../../godmode/massive/massive_edit_modules.php:759 -#: ../../godmode/massive/massive_edit_modules.php:768 -#: ../../godmode/massive/massive_edit_modules.php:827 -#: ../../godmode/massive/massive_edit_modules.php:845 -#: ../../godmode/massive/massive_edit_modules.php:864 -#: ../../godmode/massive/massive_edit_modules.php:868 -#: ../../godmode/massive/massive_edit_modules.php:879 -#: ../../godmode/massive/massive_edit_modules.php:899 -#: ../../godmode/massive/massive_edit_modules.php:924 -#: ../../godmode/massive/massive_edit_modules.php:936 -#: ../../godmode/massive/massive_edit_modules.php:997 -#: ../../godmode/massive/massive_edit_modules.php:1043 -#: ../../godmode/massive/massive_edit_modules.php:1061 -#: ../../godmode/massive/massive_edit_modules.php:1067 -#: ../../godmode/massive/massive_edit_modules.php:1080 -#: ../../godmode/massive/massive_edit_modules.php:1108 -#: ../../godmode/massive/massive_edit_modules.php:1212 -msgid "No change" -msgstr "Sin cambios" - -#: ../../include/functions_html.php:2110 ../../include/functions.php:500 -#: ../../include/functions.php:631 -#: ../../enterprise/include/ajax/log_viewer.ajax.php:280 -#: ../../enterprise/meta/advanced/metasetup.visual.php:385 -#: ../../godmode/setup/setup_visuals.php:1345 ../../godmode/db/db_main.php:86 -#: ../../godmode/db/db_main.php:92 -msgid "days" -msgstr "dĆ­as" - -#: ../../include/functions_html.php:2111 -msgid "weeks" -msgstr "semanas" - -#: ../../include/functions_html.php:2112 ../../include/functions.php:501 -#: ../../include/functions.php:632 -#: ../../enterprise/meta/advanced/metasetup.visual.php:386 -#: ../../godmode/setup/setup_visuals.php:1346 -msgid "months" -msgstr "meses" - -#: ../../include/functions_html.php:2113 ../../include/functions.php:502 -#: ../../include/functions.php:633 -#: ../../enterprise/meta/advanced/metasetup.visual.php:387 -#: ../../godmode/setup/setup_visuals.php:1347 -msgid "years" -msgstr "aƱos" - -#: ../../include/functions_html.php:2273 -msgid "Month day" -msgstr "DĆ­a del mes" - -#: ../../include/functions_html.php:2274 -#: ../../enterprise/include/functions_reporting_csv.php:1737 -#: ../../enterprise/include/functions_reporting_csv.php:2045 -msgid "Month" -msgstr "Mes" - -#: ../../include/functions_html.php:2275 -msgid "Week day" -msgstr "DĆ­a de la semana" - -#: ../../include/functions_html.php:4562 -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:4723 ../../index.php:484 ../../index.php:761 -#: ../../index.php:835 -#, 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." - -#: ../../include/functions_html.php:5547 -msgid "Type at least two characters to search the user." -msgstr "Escriba al menos dos caracteres para buscar el usuario." - -#: ../../include/functions_html.php:5936 -msgid "Primary group cannot be secondary too." -msgstr "Un grupo primario no puede ser tambiĆ©n secundario." - -#: ../../include/functions_html.php:5950 -#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:540 -#: ../../godmode/massive/massive_edit_agents.php:804 -msgid "Add secondary groups" -msgstr "AƱadir grupos secundarios" - -#: ../../include/functions_html.php:5963 -#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:547 -#: ../../godmode/massive/massive_edit_agents.php:830 -msgid "Remove secondary groups" -msgstr "Eliminar grupos secundarios" - -#: ../../include/functions_networkmap.php:1303 -msgid "Radial dynamic" -msgstr "DinĆ”mico radial" - -#: ../../include/functions_networkmap.php:1332 -msgid "Create a new topology map" -msgstr "Crear nuevo mapa topolĆ³gico" - -#: ../../include/functions_networkmap.php:1333 -msgid "Create a new group map" -msgstr "Crear nuevo mapa de grupo" - -#: ../../include/functions_networkmap.php:1334 -msgid "Create a new dynamic map" -msgstr "Crear un nuevo mapa dinĆ”mico" - -#: ../../include/functions_networkmap.php:1336 -msgid "Create a new radial dynamic map" -msgstr "Crear un nuevo mapa dinĆ”mico radial" - -#: ../../include/functions_networkmap.php:3404 -msgid "Map not found." -msgstr "Mapa no encontrado." - -#: ../../include/functions.php:231 -msgid "." -msgstr "." - -#: ../../include/functions.php:233 -msgid "," -msgstr "," - -#: ../../include/functions.php:488 ../../include/functions.php:640 -msgid "s" -msgstr "s" - -#: ../../include/functions.php:489 ../../include/functions.php:641 -msgid "d" -msgstr "d" - -#: ../../include/functions.php:490 ../../include/functions.php:642 -msgid "M" -msgstr "M" - -#: ../../include/functions.php:492 ../../include/functions.php:644 -msgid "m" -msgstr "m" - -#: ../../include/functions.php:493 ../../include/functions.php:645 -msgid "h" -msgstr "h" - -#: ../../include/functions.php:494 ../../include/functions.php:646 -msgid "N" -msgstr "N" - -#: ../../include/functions.php:1226 -msgid "Monitor Unknown" -msgstr "Monitor en estado desconocido" - -#: ../../include/functions.php:1233 -msgid "Agent created" -msgstr "Agente creado" - -#: ../../include/functions.php:1354 ../../include/functions.php:1384 -msgid "ALERT FIRED" -msgstr "ALERTA DISPARADA" - -#: ../../include/functions.php:2681 -#: ../../godmode/reporting/create_container.php:345 -msgid "custom" -msgstr "personalizado" - -#: ../../include/functions.php:2687 -#, php-format -msgid "%s seconds" -msgstr "%s segundos" - -#: ../../include/functions.php:2690 ../../include/functions.php:2691 -#, php-format -msgid "%s minutes" -msgstr "%s minutos" - -#: ../../include/functions.php:2699 ../../include/functions.php:2700 -#, php-format -msgid "%s months" -msgstr "%s meses" - -#: ../../include/functions.php:2702 ../../include/functions.php:2703 -#, php-format -msgid "%s years" -msgstr "%s aƱos" - -#: ../../include/functions.php:2705 -msgid "Default values will be used" -msgstr "Se usarĆ”n los valores por defecto" - -#: ../../include/functions.php:2890 ../../include/functions.php:2895 -msgid "The file exceeds the maximum size" -msgstr "El archivo excede el tamaƱo mĆ”ximo" - -#: ../../include/functions.php:2891 -msgid "" -"Please check this PHP runtime variable values:
  upload_max_filesize "
-"(currently "
-msgstr ""
-"Compruebe los valores de esta variable de tiempo de ejecuciĆ³n de PHP: "
-"
upload_max_filesize (actualmente "
-
-#: ../../include/functions.php:2899
-msgid "The uploaded file was only partially uploaded"
-msgstr "El archivo se ha subido parcialmente."
-
-#: ../../include/functions.php:2903
-msgid "No file was uploaded"
-msgstr "No se subiĆ³ ningĆŗn archivo."
-
-#: ../../include/functions.php:2907
-msgid "Missing a temporary folder"
-msgstr "El directorio temporal no existe."
-
-#: ../../include/functions.php:2911
-msgid "Failed to write file to disk"
-msgstr "No se pudo escribir el archivo al disco."
-
-#: ../../include/functions.php:2915
-msgid "File upload stopped by extension"
-msgstr "Subida de archivo cancelada por la extensiĆ³n"
-
-#: ../../include/functions.php:2919
-msgid "Unknown upload error"
-msgstr "Error desconocido al subir el archivo"
-
-#: ../../include/functions.php:3030
-msgid "No data found to export"
-msgstr "Datos no encontrados para exportar"
-
-#: ../../include/functions.php:3350
-#: ../../enterprise/include/lib/Metaconsole/Node.php:1195
-#: ../../enterprise/include/lib/Metaconsole/Node.php:1196
-#: ../../enterprise/include/functions_HA_cluster.php:58
-#: ../../enterprise/godmode/agentes/agent_autoconfiguration.php:170
-#: ../../enterprise/godmode/agentes/plugins_manager.php:195
-#: ../../enterprise/godmode/agentes/plugins_manager.php:271
-#: ../../enterprise/godmode/policies/policy_alerts.php:714
-#: ../../godmode/extensions.php:259 ../../godmode/alerts/alert_list.list.php:1003
-#: ../../godmode/users/user_list.php:740
-msgid "Disable"
-msgstr "Desactivar"
-
-#: ../../include/functions.php:3353
-msgid "15 seconds"
-msgstr "15 segundos"
-
-#: ../../include/functions.php:3358
-msgid "15 minutes"
-msgstr "15 minutos"
-
-#: ../../include/functions.php:3874
-msgid "Summatory series"
-msgstr "Series sumatorias"
-
-#: ../../include/functions.php:3878
-msgid "Average series"
-msgstr "Series de media"
-
-#: ../../include/functions.php:3906 ../../include/functions.php:3925
-#: ../../include/functions.php:3939 ../../include/functions.php:3961
-#: ../../include/functions.php:4042 ../../include/functions.php:4114
-msgid "Unit "
-msgstr "Unidad "
-
-#: ../../include/functions.php:3974
-#: ../../enterprise/godmode/reporting/graph_template_item_editor.php:187
-#: ../../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
-msgid "Weight"
-msgstr "Peso"
-
-#: ../../include/functions.php:3987 ../../include/functions.php:4052
-msgid "Min:"
-msgstr "MĆ­n.:"
-
-#: ../../include/functions.php:3994 ../../include/functions.php:4059
-msgid "Max:"
-msgstr "MƔx.:"
-
-#: ../../include/functions.php:4001 ../../include/functions.php:4066
-msgid "Avg:"
-msgstr "Media:"
-
-#: ../../include/functions.php:4109 ../../include/functions.php:4117
-#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2502
-#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:590
-#: ../../godmode/reporting/reporting_builder.item_editor.php:2525
-#: ../../godmode/reporting/graph_builder.main.php:245
-msgid "Percentil"
-msgstr "Percentil"
-
-#: ../../include/functions.php:4111 ../../include/functions.php:4119
-msgid "of module"
-msgstr "de mĆ³dulo"
-
-#: ../../include/functions.php:4136
-msgid "Projection"
-msgstr "ProyecciĆ³n"
-
-#: ../../include/functions.php:5954
-msgid "Testing Pandora FMS email"
-msgstr "Probando el email de Pandora FMS"
-
-#: ../../include/functions.php:5967
-msgid ""
-"This is an email test sent from Pandora FMS. If you can read this, your "
-"configuration works."
-msgstr ""
-"Este es un email de prueba enviado desde Pandora FMS. Si lo ha recibido "
-"significa que la configuraciĆ³n funciona."
-
-#: ../../include/get_file.php:39
-msgid "Security error. Please contact the administrator."
-msgstr "Error de seguridad. Contacta con el administrador."
-
-#: ../../include/get_file.php:74
-msgid "File is missing in disk storage. Please contact the administrator."
-msgstr ""
-"El archivo no se encuentra en el disco. Por favor, contacta con el "
-"administrador."
-
-#: ../../include/functions_reporting_html.php:109
-msgid "Label: "
-msgstr "Etiqueta: "
-
-#: ../../include/functions_reporting_html.php:138
-#: ../../enterprise/include/functions_reporting_csv.php:2220
-#: ../../enterprise/include/functions_reporting_csv.php:2224
-#: ../../enterprise/include/functions_reporting_pdf.php:1785
-msgid "Generated"
-msgstr "Generado"
-
-#: ../../include/functions_reporting_html.php:141
-#: ../../enterprise/include/functions_reporting_pdf.php:1789
-msgid "Report date"
-msgstr "Fecha del informe"
-
-#: ../../include/functions_reporting_html.php:544
-#: ../../enterprise/include/functions_reporting.php:1854
-#: ../../enterprise/include/functions_reporting.php:2893
-#: ../../enterprise/include/functions_reporting.php:3880
-msgid "Max/Min Values"
-msgstr "Valores max/min"
-
-#: ../../include/functions_reporting_html.php:545
-#: ../../enterprise/include/functions_reporting_csv.php:1506
-#: ../../enterprise/include/functions_reporting_csv.php:1552
-#: ../../enterprise/include/functions_reporting_csv.php:1625
-#: ../../enterprise/include/functions_reporting_csv.php:1744
-#: ../../enterprise/include/functions_reporting_csv.php:2052
-#: ../../enterprise/include/functions_reporting.php:1855
-#: ../../enterprise/include/functions_reporting.php:2894
-#: ../../enterprise/include/functions_reporting.php:3881
-#: ../../enterprise/include/functions_reporting.php:6137
-msgid "SLA Limit"
-msgstr "LĆ­mite del SLA"
-
-#: ../../include/functions_reporting_html.php:546
-#: ../../enterprise/include/functions_reporting.php:1856
-#: ../../enterprise/include/functions_reporting.php:2024
-#: ../../enterprise/include/functions_reporting.php:2895
-#: ../../enterprise/include/functions_reporting.php:3882
-#: ../../enterprise/include/functions_reporting.php:6138
-msgid "SLA Compliance"
-msgstr "Cumplimiento del SLA"
-
-#: ../../include/functions_reporting_html.php:578
-#: ../../enterprise/include/functions_reporting.php:4965
-msgid "Global Time"
-msgstr "Tiempo global"
-
-#: ../../include/functions_reporting_html.php:579
-#: ../../enterprise/include/functions_reporting_csv.php:1980
-#: ../../enterprise/include/functions_reporting.php:4966
-msgid "Time Total"
-msgstr "Tiempo total"
-
-#: ../../include/functions_reporting_html.php:580
-msgid "Time Failed"
-msgstr "Tiempo en fallo"
-
-#: ../../include/functions_reporting_html.php:581
-#: ../../include/functions_reporting_html.php:3893
-#: ../../enterprise/include/functions_reporting_csv.php:1981
-#: ../../enterprise/include/functions_reporting.php:4969
-msgid "Time OK"
-msgstr "Tiempo OK"
-
-#: ../../include/functions_reporting_html.php:582
-#: ../../include/functions_reporting_html.php:3905
-#: ../../enterprise/include/functions_reporting_csv.php:1983
-#: ../../enterprise/include/functions_reporting.php:4970
-msgid "Time Unknown"
-msgstr "Tiempo desconocido"
-
-#: ../../include/functions_reporting_html.php:583
-#: ../../enterprise/include/functions_reporting_csv.php:1984
-#: ../../enterprise/include/functions_reporting.php:4971
-msgid "Time Not Init"
-msgstr "Tiempo no iniciado"
-
-#: ../../include/functions_reporting_html.php:584
-msgid "Downtime"
-msgstr "Parada planificada"
-
-#: ../../include/functions_reporting_html.php:611
-#: ../../enterprise/include/functions_reporting.php:5060
-msgid "Checks Time"
-msgstr "Tiempo de comprobaciones"
-
-#: ../../include/functions_reporting_html.php:612
-#: ../../enterprise/include/functions_reporting_csv.php:1986
-#: ../../enterprise/include/functions_reporting.php:5061
-msgid "Checks Total"
-msgstr "Comprobaciones totales"
-
-#: ../../include/functions_reporting_html.php:613
-#: ../../enterprise/include/functions_reporting_csv.php:530
-msgid "Checks Failed"
-msgstr "Comprobaciones fallidas"
-
-#: ../../include/functions_reporting_html.php:614
-#: ../../include/functions_reporting_html.php:3987
-#: ../../enterprise/include/functions_reporting_csv.php:1987
-#: ../../enterprise/include/functions_reporting.php:5064
-msgid "Checks OK"
-msgstr "Comprobaciones OK"
-
-#: ../../include/functions_reporting_html.php:615
-#: ../../enterprise/include/functions_reporting_csv.php:1989
-#: ../../enterprise/include/functions_reporting.php:5065
-msgid "Checks Unknown"
-msgstr "Comprobaciones desconocidas"
-
-#: ../../include/functions_reporting_html.php:633
-#: ../../include/functions_reporting_html.php:672
-#: ../../include/functions_reporting_html.php:743
-#: ../../include/functions_reporting_html.php:821
-#: ../../include/functions_reporting_html.php:4069
-#: ../../include/functions_reporting_html.php:4216
-#: ../../enterprise/include/functions_reporting.php:4925
-msgid "24 x 7"
-msgstr "24/7"
-
-#: ../../include/functions_reporting_html.php:864
-#: ../../include/functions_reporting_html.php:4610
-#: ../../enterprise/include/functions_services.php:1453
-#: ../../enterprise/include/functions_reporting.php:3195
-#: ../../enterprise/include/functions_reporting.php:4196
-#: ../../enterprise/include/functions_reporting.php:6203
-msgid "Unknow"
-msgstr "Desconocido"
-
-#: ../../include/functions_reporting_html.php:869
-#: ../../include/functions_reporting_html.php:4615
-#: ../../enterprise/include/functions_reporting.php:1896
-#: ../../enterprise/include/functions_reporting.php:2949
-#: ../../enterprise/include/functions_reporting.php:3200
-#: ../../enterprise/include/functions_reporting.php:3937
-#: ../../enterprise/include/functions_reporting.php:4201
-#: ../../enterprise/include/functions_reporting.php:4852
-#: ../../enterprise/include/functions_reporting.php:6208
-msgid "Not Init"
-msgstr "No iniciado"
-
-#: ../../include/functions_reporting_html.php:874
-#: ../../include/functions_reporting_html.php:4620
-#: ../../enterprise/include/functions_reporting.php:3205
-#: ../../enterprise/include/functions_reporting.php:4206
-#: ../../enterprise/include/functions_reporting.php:6213
-msgid "Downtimes"
-msgstr "Paradas planificadas"
-
-#: ../../include/functions_reporting_html.php:879
-#: ../../include/functions_reporting_html.php:4625
-#: ../../godmode/agentes/planned_downtime.editor.php:67
-#: ../../godmode/agentes/planned_downtime.list.php:174
-msgid "Scheduled Downtime"
-msgstr "Parada planificada"
-
-#: ../../include/functions_reporting_html.php:996
-#: ../../include/functions_reporting_html.php:2263
-#: ../../include/functions_reporting_html.php:4299
-#: ../../include/functions_reporting_html.php:4835
-msgid "Average Value"
-msgstr "Valor medio"
-
-#: ../../include/functions_reporting_html.php:1052
-#: ../../include/functions_reporting_html.php:1060
-#: ../../include/functions_reporting_html.php:2392
-msgid "Val. by"
-msgstr "Val. por"
-
-#: ../../include/functions_reporting_html.php:1123
-#, php-format
-msgid "%s System"
-msgstr "Sistema %s"
-
-#: ../../include/functions_reporting_html.php:1181
-#: ../../include/functions_reporting_html.php:1395
-msgid "Events by agent"
-msgstr "Eventos por agente"
-
-#: ../../include/functions_reporting_html.php:1198
-#: ../../include/functions_reporting_html.php:1412
-msgid "Events by user validator"
-msgstr "Eventos por usuario validador"
-
-#: ../../include/functions_reporting_html.php:1215
-#: ../../include/functions_reporting_html.php:1429
-msgid "Events by Severity"
-msgstr "Eventos por gravedad"
-
-#: ../../include/functions_reporting_html.php:1232
-#: ../../include/functions_reporting_html.php:1446
-msgid "Events validated vs unvalidated"
-msgstr "Eventos validados vs no validados"
-
-#: ../../include/functions_reporting_html.php:1517
-#: ../../enterprise/include/functions_reporting_csv.php:718
-#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:255
-#: ../../enterprise/meta/include/functions_wizard_meta.php:189
-#: ../../enterprise/meta/include/functions_wizard_meta.php:1804
-#: ../../godmode/reporting/reporting_builder.item_editor.php:69
-#: ../../godmode/agentes/agent_manager.php:292
-msgid "Alias"
-msgstr "Alias"
-
-#: ../../include/functions_reporting_html.php:1537
-msgid "Sec. groups"
-msgstr "Sec. grupos"
-
-#: ../../include/functions_reporting_html.php:1557
-msgid "Remote conf."
-msgstr "ConfiguraciĆ³n remota"
-
-#: ../../include/functions_reporting_html.php:1680
-#: ../../enterprise/include/functions_inventory.php:885
-#: ../../enterprise/include/functions_inventory.php:948
-msgid "Added"
-msgstr "AƱadido"
-
-#: ../../include/functions_reporting_html.php:2033
-#: ../../extensions/agents_modules.php:934
-msgid "Orange cell when the module has fired alerts"
-msgstr "Cuadro naranja cuando el mĆ³dulo ha disparado alertas"
-
-#: ../../include/functions_reporting_html.php:2034
-#: ../../extensions/agents_modules.php:936
-msgid "Red cell when the module has a critical status"
-msgstr "Celda roja cuando el mĆ³dulo estĆ” en estado crĆ­tico"
-
-#: ../../include/functions_reporting_html.php:2035
-#: ../../extensions/agents_modules.php:939
-msgid "Yellow cell when the module has a warning status"
-msgstr "Cuadro amarillo cuando el mĆ³dulo estĆ” en estado advertencia"
-
-#: ../../include/functions_reporting_html.php:2036
-#: ../../extensions/agents_modules.php:941
-msgid "Green cell when the module has a normal status"
-msgstr "Cuadro verde cuando el mĆ³dulo estĆ” en estado normal"
-
-#: ../../include/functions_reporting_html.php:2037
-#: ../../extensions/agents_modules.php:943
-msgid "Grey cell when the module has an unknown status"
-msgstr "Cuadro gris cuando el mĆ³dulo estĆ” en estado desconocido"
-
-#: ../../include/functions_reporting_html.php:2038
-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:2065
-#: ../../include/functions_reporting_html.php:2069
-#: ../../extensions/files_repo/files_repo_list.php:164
-msgid "No items"
-msgstr "No hay elementos"
-
-#: ../../include/functions_reporting_html.php:2109
-#: ../../enterprise/include/functions_reporting_csv.php:2742
-msgid "Last time"
-msgstr "ƚltima vez"
-
-#: ../../include/functions_reporting_html.php:2328
-#: ../../include/functions_reporting_html.php:5404
-msgid "Monitors"
-msgstr "Monitores"
-
-#: ../../include/functions_reporting_html.php:2347
-msgid "Events (not validated)"
-msgstr "Eventos (no validados)"
-
-#: ../../include/functions_reporting_html.php:2504
-msgid "Events validated by user"
-msgstr "Eventos validados por el usuario"
-
-#: ../../include/functions_reporting_html.php:2521
-#: ../../include/functions_reporting_html.php:5693
-msgid "Events by severity"
-msgstr "Eventos por gravedad"
-
-#: ../../include/functions_reporting_html.php:2538
-msgid "Amount events validated"
-msgstr "Cantidad de eventos validados"
-
-#: ../../include/functions_reporting_html.php:2962
-msgid "Total summary"
-msgstr "Resumen total"
-
-#: ../../include/functions_reporting_html.php:2969
-msgid "No alerts fired"
-msgstr "No hay alertas disparadas"
-
-#: ../../include/functions_reporting_html.php:3060
-#, php-format
-msgid "Interface '%s' throughput graph"
-msgstr "Interfaz '%s' grƔfico de rendimiento"
-
-#: ../../include/functions_reporting_html.php:3064
-msgid "Mac"
-msgstr "Mac"
-
-#: ../../include/functions_reporting_html.php:3065
-msgid "Actual status"
-msgstr "Estado actual"
-
-#: ../../include/functions_reporting_html.php:3174
-#: ../../godmode/alerts/alert_list.list.php:946
-msgid "No alerts defined"
-msgstr "No hay alertas definidas"
-
-#: ../../include/functions_reporting_html.php:3312
-#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2564
-#: ../../enterprise/godmode/reporting/reporting_builder.global.php:438
-#: ../../godmode/reporting/reporting_builder.item_editor.php:2557
-msgid "Not OK"
-msgstr "Mal"
-
-#: ../../include/functions_reporting_html.php:3429
-#: ../../include/functions_reporting_html.php:3431
-msgid "Empty modules"
-msgstr "MĆ³dulos vacĆ­os"
-
-#: ../../include/functions_reporting_html.php:3438
-msgid "Warning
Critical" -msgstr "Advertencia
CrĆ­tico" - -#: ../../include/functions_reporting_html.php:3443 -#: ../../enterprise/include/functions_reporting_csv.php:2741 -#: ../../enterprise/meta/include/functions_wizard_meta.php:927 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1044 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1225 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1528 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1613 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1750 -#: ../../enterprise/godmode/modules/configure_local_component.php:468 -#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:868 -#: ../../godmode/modules/manage_network_components_form_common.php:312 -#: ../../godmode/massive/massive_edit_modules.php:925 -#: ../../godmode/agentes/module_manager_editor_common.php:582 -msgid "Unit" -msgstr "Unidad" - -#: ../../include/functions_reporting_html.php:3573 -#: ../../include/functions_reporting_html.php:3642 -#: ../../enterprise/include/functions_reporting_pdf.php:534 -#: ../../enterprise/include/functions_reporting_pdf.php:591 -msgid "Minimun" -msgstr "MĆ­nimo" - -#: ../../include/functions_reporting_html.php:3582 -#: ../../include/functions_reporting_html.php:3650 -#: ../../enterprise/include/ajax/log_viewer.ajax.php:85 -#: ../../enterprise/include/functions_reporting_pdf.php:542 -#: ../../enterprise/include/functions_reporting_pdf.php:598 -msgid "Average" -msgstr "Media" - -#: ../../include/functions_reporting_html.php:3752 -#: ../../enterprise/include/functions_reporting_csv.php:1325 -msgid "From data" -msgstr "Desde datos" - -#: ../../include/functions_reporting_html.php:3753 -#: ../../enterprise/include/functions_reporting_csv.php:1325 -msgid "To data" -msgstr "hasta datos" - -#: ../../include/functions_reporting_html.php:3781 -#: ../../enterprise/include/functions_reporting_csv.php:1331 -#: ../../enterprise/include/functions_reporting_csv.php:1342 -msgid "Negative increase: " -msgstr "Incremento negativo: " - -#: ../../include/functions_reporting_html.php:3783 -#: ../../enterprise/include/functions_reporting_csv.php:1333 -#: ../../enterprise/include/functions_reporting_csv.php:1344 -msgid "Positive increase: " -msgstr "Incremento positivo: " - -#: ../../include/functions_reporting_html.php:3785 -#: ../../enterprise/include/functions_reporting_csv.php:1335 -#: ../../enterprise/include/functions_reporting_csv.php:1346 -msgid "Neutral increase: " -msgstr "Incremento neutral: " - -#: ../../include/functions_reporting_html.php:3868 -#: ../../include/functions_reporting_html.php:3962 -#: ../../include/functions_reporting_html.php:4042 -#: ../../include/functions_reporting_html.php:4051 -#: ../../include/functions_reporting_html.php:4189 -#: ../../include/functions_reporting_html.php:4198 -#: ../../include/functions_reporting_html.php:4522 -#: ../../include/functions_reporting_html.php:4528 -#: ../../godmode/agentes/module_manager_editor_common.php:1265 -#: ../../godmode/agentes/module_manager_editor_common.php:1375 -msgid "Failover" -msgstr "ConmutaciĆ³n" - -#: ../../include/functions_reporting_html.php:3881 -#: ../../enterprise/include/functions_reporting_csv.php:494 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2598 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2591 -msgid "Total time" -msgstr "Tiempo total" - -#: ../../include/functions_reporting_html.php:3887 -#: ../../enterprise/include/functions_reporting_csv.php:498 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2606 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2599 -msgid "Time failed" -msgstr "Tiempo en fallo" - -#: ../../include/functions_reporting_html.php:3899 -#: ../../enterprise/include/functions_reporting_csv.php:506 -#: ../../enterprise/include/functions_reporting.php:4968 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2622 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2615 -msgid "Time in warning status" -msgstr "Tiempo en estado de advertencia" - -#: ../../include/functions_reporting_html.php:3911 -msgid "Time Not Init Module" -msgstr "Tiempo en mĆ³dulo no iniciado" - -#: ../../include/functions_reporting_html.php:3917 -#: ../../enterprise/include/functions_reporting_csv.php:1985 -msgid "Time Downtime" -msgstr "Tiempo de parada planificada" - -#: ../../include/functions_reporting_html.php:3922 -msgid "% Ok" -msgstr "% OK" - -#: ../../include/functions_reporting_html.php:3975 -#: ../../enterprise/include/functions_reporting_csv.php:526 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2716 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2707 -msgid "Total checks" -msgstr "Comprobaciones totales" - -#: ../../include/functions_reporting_html.php:3981 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2724 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2715 -msgid "Checks failed" -msgstr "Comprobaciones fallidas" - -#: ../../include/functions_reporting_html.php:3993 -#: ../../enterprise/include/functions_reporting.php:5063 -msgid "Checks Warning" -msgstr "Comprobaciones Advertencia" - -#: ../../include/functions_reporting_html.php:3999 -msgid "Checks Uknown" -msgstr "Comprobaciones en desconocido" - -#: ../../include/functions_reporting_html.php:4038 -#: ../../include/functions_reporting_html.php:4185 -#: ../../include/functions_reporting_html.php:4510 -#: ../../include/functions_reporting_html.php:4516 -msgid "Primary" -msgstr "Primario" - -#: ../../include/functions_reporting_html.php:4295 -#: ../../enterprise/include/functions_reporting_csv.php:661 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2764 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2767 -msgid "Agent max value" -msgstr "Valor mĆ”ximo del agente" - -#: ../../include/functions_reporting_html.php:4297 -#: ../../enterprise/include/functions_reporting_csv.php:666 -msgid "Agent min value" -msgstr "Valor mĆ­nimo del agente" - -#: ../../include/functions_reporting_html.php:4742 -#: ../../enterprise/include/functions_reporting_csv.php:1030 -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:258 -msgid "Sum" -msgstr "Suma" - -#: ../../include/functions_reporting_html.php:5085 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1379 -msgid "Alert description" -msgstr "DescripciĆ³n de la alerta" - -#: ../../include/functions_reporting_html.php:5125 -#: ../../include/functions_reporting_html.php:5279 -#: ../../enterprise/meta/monitoring/wizard/wizard.create_module.php:148 -#: ../../mobile/include/functions_web.php:24 -msgid "Monitor" -msgstr "Monitor" - -#: ../../include/functions_reporting_html.php:5178 -#, php-format -msgid "Agents in group: %s" -msgstr "Agentes en el grupo: %s" - -#: ../../include/functions_reporting_html.php:5280 -msgid "Last failure" -msgstr "ƚltimo fallo" - -#: ../../include/functions_reporting_html.php:5370 -msgid "N/A(*)" -msgstr "N/A(*)" - -#: ../../include/functions_reporting_html.php:5583 -#: ../../include/functions_reporting_html.php:5588 -#: ../../enterprise/meta/monitoring/custom_fields_view.php:511 -msgid "Agents by status" -msgstr "Agentes por estado" - -#: ../../include/functions_reporting_html.php:5644 -#: ../../include/functions_reporting_html.php:5649 -msgid "Node overview" -msgstr "Resumen de nodos" - -#: ../../include/functions_reporting_html.php:5669 -#: ../../include/functions_reporting_html.php:5681 -msgid "Critical events" -msgstr "Eventos en estado crĆ­tico" - -#: ../../include/functions_reporting_html.php:5672 -#: ../../include/functions_reporting_html.php:5683 -msgid "Warning events" -msgstr "Eventos en estado de advertencia" - -#: ../../include/functions_reporting_html.php:5675 -#: ../../include/functions_reporting_html.php:5685 -msgid "OK events" -msgstr "Eventos OK" - -#: ../../include/functions_reporting_html.php:5678 -#: ../../include/functions_reporting_html.php:5687 -msgid "Unknown events" -msgstr "Eventos desconocidos" - -#: ../../include/functions_reporting_html.php:5703 -msgid "Important Events by Criticity" -msgstr "Eventos importantes por gravedad" - -#: ../../include/functions_reporting_html.php:5729 -#, php-format -msgid "Last activity in %s console" -msgstr "ƚltima actividad en la consola %s" - -#: ../../include/functions_reporting_html.php:5820 -#: ../../include/functions_reporting_html.php:5962 -msgid "Events info (1hr.)" -msgstr "InformaciĆ³n de eventos (1h)" - -#: ../../include/functions_reporting_html.php:6145 -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:6146 -msgid "" -"If the duration of the scheduled downtime is less than 5 minutes it will not " -"be represented in the graph" -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:6152 -#: ../../godmode/modules/manage_network_components_form_wizard.php:655 -#: ../../godmode/agentes/planned_downtime.editor.php:609 -#: ../../godmode/agentes/planned_downtime.list.php:614 -msgid "Execution" -msgstr "EjecuciĆ³n" - -#: ../../include/functions_reporting_html.php:6184 -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:6184 -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_reporting_html.php:6217 -#: ../../include/functions_reporting_html.php:6240 -#: ../../enterprise/include/functions_reporting_csv.php:2549 -#: ../../enterprise/include/functions_reporting_csv.php:2559 -msgid "Full name" -msgstr "Nombre completo" - -#: ../../include/functions_reporting_html.php:6218 -#: ../../include/functions_reporting_html.php:6241 -#: ../../enterprise/include/functions_reporting_csv.php:2549 -#: ../../enterprise/include/functions_reporting_csv.php:2559 -msgid "Permissions" -msgstr "Permisos" - -#: ../../update_manager_client/views/register.php:47 -msgid "Register to Warp Update" -msgstr "RegĆ­strese para Warp Update" - -#: ../../update_manager_client/views/register.php:54 -#, php-format -msgid "Keep this %s console up to date with latest updates." -msgstr "Mantener la consola %s actualizada con las Ćŗltimas actualizaciones." - -#: ../../update_manager_client/views/register.php:61 -#, php-format -msgid "" -"When you subscribe to the Warp update service for %s, you accept that we\n" -" register your %s instance as an identifier on a database owned by " -"%s. This data will solely be used to\n" -" provide you with information about %s and will not be conceded to " -"third parties. You can unregister from\n" -" said database at any time from the Warp update options." -msgstr "" -"Al suscribirse al servicio Warp Update para %s, acepta que\n" -" registremos su %s instancia como identificador en una base de " -"datos propiedad de %s. Estos datos se usarĆ”n exclusivamente para\n" -" proporcionarle informaciĆ³n sobre %s y no se compartirĆ” con " -"terceros. Puede darse de baja de la\n" -" base de datos en cualquier momento desde las opciones de Warp " -"update." - -#: ../../update_manager_client/views/register.php:74 -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:97 -msgid "OK!" -msgstr "Ā”OK!" - -#: ../../update_manager_client/views/register.php:112 -msgid "Are you sure you don't want to use Warp update?" -msgstr "ĀæEstĆ” seguro de que no quiere usar Warp update?" - -#: ../../update_manager_client/views/register.php:116 -msgid "" -"You will need to update your system manually, through source code or RPM\n" -" packages to be up to date with latest updates." -msgstr "" -"DeberĆ” actualizar su sistema manualmente a travĆ©s del cĆ³digo fuente o de los " -"paquetes RPM para estar al dĆ­a con las Ćŗltimas actualizaciones." - -#: ../../update_manager_client/views/register.php:208 -msgid "Unsuccessful subscription" -msgstr "SuscripciĆ³n incorrecta" - -#: ../../update_manager_client/views/register.php:213 -msgid "Pandora successfully subscribed with UID: " -msgstr "Pandora FMS se suscribiĆ³ correctamente con UID: " - -#: ../../update_manager_client/views/online.php:43 -msgid "The latest version of package installed is" -msgstr "La Ćŗltima versiĆ³n instalada del paquete es:" - -#: ../../update_manager_client/views/online.php:63 -msgid "Update to next version" -msgstr "Actualizar a la siguiente versiĆ³n" - -#: ../../update_manager_client/views/online.php:64 -msgid "Update to latest version" -msgstr "Actualizar a la Ćŗltima versiĆ³n" - -#: ../../update_manager_client/views/online.php:88 -#: ../../update_manager_client/views/offline.php:73 -msgid "Updating to" -msgstr "Actualizando" - -#: ../../update_manager_client/views/online.php:89 -#: ../../update_manager_client/views/offline.php:74 -msgid "Do you really want to leave our brilliant application?" -msgstr "ĀæEstĆ”s seguro de que quieres realizar esta acciĆ³n?" - -#: ../../update_manager_client/views/online.php:90 -#: ../../update_manager_client/views/offline.php:75 -msgid "There are no updates available" -msgstr "No hay actualizaciones disponibles" - -#: ../../update_manager_client/views/online.php:91 -#: ../../update_manager_client/views/offline.php:76 -msgid "Searching for updates..." -msgstr "Buscando actualizaciones..." - -#: ../../update_manager_client/views/online.php:92 -#: ../../update_manager_client/views/offline.php:77 -msgid "Package" -msgstr "Paquete" - -#: ../../update_manager_client/views/online.php:93 -#: ../../update_manager_client/views/offline.php:78 -#: ../../enterprise/tools/ipam/ipam_action.php:380 -msgid "Successfully updated." -msgstr "Actualizado correctamente" - -#: ../../update_manager_client/views/online.php:122 -#: ../../update_manager_client/views/online.php:163 -#: ../../update_manager_client/views/offline.php:70 -msgid "This action will upgrade this console to version " -msgstr "Esta acciĆ³n actualizarĆ” esta consola a la versiĆ³n " - -#: ../../update_manager_client/views/online.php:123 -#: ../../update_manager_client/views/online.php:164 -msgid "Update to" -msgstr "ActualizaciĆ³n para" - -#: ../../update_manager_client/views/online.php:144 -#: ../../update_manager_client/views/online.php:148 -msgid "Failed to update to " -msgstr "Error al actualizar a " - -#: ../../update_manager_client/views/online.php:187 -msgid "Failed to update:" -msgstr "Error al actualizar" - -#: ../../update_manager_client/views/offline.php:65 -msgid "Drop the package here or" -msgstr "Arrastre el paquete hasta aquĆ­ o" - -#: ../../update_manager_client/views/offline.php:66 -msgid "Browse it" -msgstr "navegue hasta Ć©l" - -#: ../../update_manager_client/views/offline.php:67 -msgid "The package has been uploaded successfully." -msgstr "Se ha subido correctamente el paquete." - -#: ../../update_manager_client/views/offline.php:68 -#, php-format -msgid "" -"Please keep in mind that this package is going to override your actual %s " -"files and that it's recommended to conduct a backup before continuing the " -"updating process." -msgstr "" -"Tenga en cuenta que este paquete anularĆ” los archivos de %s actuales, por lo " -"que se recomienda hacer una copia de seguridad antes de continuar con el " -"proceso de actualizaciĆ³n." - -#: ../../update_manager_client/views/offline.php:69 -msgid "Click on the file below to begin." -msgstr "Haz clic en el archivo de abajo para comenzar." - -#: ../../update_manager_client/views/offline.php:71 -msgid "This action will upgrade all servers to version " -msgstr "Esta acciĆ³n actualizarĆ” todos los servidores a la versiĆ³n " - -#: ../../update_manager_client/views/offline.php:79 -msgid "Package rejected. These package changes will not apply." -msgstr "Paquete rechazado. Los cambios de este paquete no se aplicarĆ”n." - -#: ../../update_manager_client/views/offline.php:81 -#, php-format -msgid "" -"This update does not correspond with next version of %s. Are you sure you want " -"to install it?" -msgstr "" -"Esta actualizaciĆ³n no se corresponde con la siguiente versiĆ³n de %s. ĀæEstĆ”s " -"seguro de que quieres instalarlo?" - -#: ../../update_manager_client/views/offline.php:82 -msgid "" -"This server update does not correspond with current console version. Are you " -"sure you want to install it?" -msgstr "" -"Esta actualizaciĆ³n del servidor no se corresponde con la versiĆ³n actual de la " -"consola. ĀæEstĆ”s seguro de que quieres instalarlo?" - -#: ../../update_manager_client/views/offline.php:83 -msgid "" -"File name does not match required format: package_NUMBER.oum or " -"pandorafms_server[_enterprise]-7.0NG.NUMBER_x86[_64].tar.gz, you can use " -"numbers with decimals." -msgstr "" -"El nombre del archivo no coincide con el formato requerido: package_NUMBER.oum " -"o pandorafms_server[_enterprise]-7.0NG. NUMBER_x86[_64].tar.gz, puede usar " -"nĆŗmeros con decimales." - -#: ../../update_manager_client/views/offline.php:84 -msgid "Files included in this package" -msgstr "Archivos incluidos en este paquete" - -#: ../../update_manager_client/views/offline.php:85 -msgid "Ignore" -msgstr "Ignorar" - -#: ../../update_manager_client/views/offline.php:86 -msgid "Verify package signature" -msgstr "Verificar la firma del paquete" - -#: ../../update_manager_client/views/offline.php:87 -#, php-format -msgid "" -"Copy into the textarea the signature validation token you can retrieve from %s " -"and press OK to verify the package, press ignore to avoid signature " -"verification" -msgstr "" -"Copie en el Ć”rea de texto el token de validaciĆ³n de firma que puede recuperar " -"de %s y presione OK para verificar el paquete, presione ignorar para evitar la " -"verificaciĆ³n de firma" - -#: ../../update_manager_client/views/offline.php:88 -msgid "" -"This server update does not correspond with current console version and is not " -"going to be installed unless patches are allowed. Please enable patches in " -"update manager settings." -msgstr "" -"Esta actualizaciĆ³n del servidor no se corresponde con la versiĆ³n actual de la " -"consola y no se va a instalar a menos que se permitan parches. Habilite los " -"parches en la configuraciĆ³n del administrador de actualizaciones." - -#: ../../update_manager_client/views/offline.php:89 -#, php-format -msgid "" -"This update does not correspond with next version of %s and is not going to be " -"installed unless patches are allowed. Please enable patches in update manager " -"settings." -msgstr "" -"Esta actualizaciĆ³n no se corresponde con la siguiente versiĆ³n de %s y no se va " -"a instalar a menos que se permitan parches. Habilite los parches en la " -"configuraciĆ³n del administrador de actualizaciones." - -#: ../../update_manager_client/lib/UpdateManager/Client.php:712 -#, php-format -msgid "server update %d" -msgstr "%d de actualizaciĆ³n del servidor" - -#: ../../update_manager_client/lib/UpdateManager/Client.php:714 -#, php-format -msgid "console update %d" -msgstr "%d de actualizaciĆ³n de la consola" - -#: ../../update_manager_client/lib/UpdateManager/Client.php:734 -#, php-format -msgid "Downloading %s %.2f/ %.2f MB." -msgstr "Descarga de %s %.2f/ %.2f MB." - -#: ../../update_manager_client/lib/UpdateManager/Client.php:745 -#, php-format -msgid "Downloading %.2f MB" -msgstr "Descarga de %.2f MB" - -#: ../../update_manager_client/lib/UpdateManager/Client.php:1469 -#, php-format -msgid "Failed to analyze package: %s" -msgstr "Error al analizar el paquete: %s" - -#: ../../update_manager_client/lib/UpdateManager/Client.php:1560 -msgid "Searching update package" -msgstr "BĆŗsqueda del paquete de actualizaciĆ³n" - -#: ../../update_manager_client/lib/UpdateManager/Client.php:1592 -msgid "Retrieving update" -msgstr "RecuperaciĆ³n de la actualizaciĆ³n" - -#: ../../update_manager_client/lib/UpdateManager/Client.php:1683 -msgid "Extracting package" -msgstr "ExtracciĆ³n del paquete" - -#: ../../update_manager_client/lib/UpdateManager/Client.php:1750 -msgid "Testing files" -msgstr "Archivos de prueba" - -#: ../../update_manager_client/lib/UpdateManager/Client.php:1782 -#, php-format -msgid "Applying MR %s" -msgstr "AplicaciĆ³n de la %s de RM" - -#: ../../update_manager_client/lib/UpdateManager/Client.php:1819 -msgid "Applying file updates" -msgstr "AplicaciĆ³n de actualizaciones de archivos" - -#: ../../update_manager_client/lib/UpdateManager/Client.php:1841 -msgid "Retrieving server update" -msgstr "RecuperaciĆ³n de la actualizaciĆ³n del servidor" - -#: ../../update_manager_client/lib/UpdateManager/Client.php:1856 -msgid "Cleaning" -msgstr "Limpieza" - -#: ../../update_manager_client/lib/UpdateManager/Client.php:1874 -#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:544 -msgid "Completed" -msgstr "Completado" - -#: ../../update_manager_client/lib/UpdateManager/Client.php:1969 -msgid "Updating to " -msgstr "ActualizaciĆ³n a " - -#: ../../update_manager_client/lib/UpdateManager/UI/Manager.php:484 -msgid "Next update" -msgstr "prĆ³xima actualizaciĆ³n" - -#: ../../update_manager_client/lib/UpdateManager/UI/Manager.php:489 -msgid "Show details" -msgstr "Ver detalles" - -#: ../../update_manager_client/lib/UpdateManager/UI/Manager.php:514 -#, php-format -msgid "%s update(s) available more" -msgstr "%s actualizaciĆ³n(es) disponible(s) mĆ”s" - -#: ../../update_manager_client/lib/UpdateManager/UI/Manager.php:526 -msgid "details" -msgstr "detalles" - -#: ../../update_manager_client/lib/UpdateManager/UI/Manager.php:604 -msgid "Failed creating temporary directory." -msgstr "Error al crear un directorio temporal." - -#: ../../update_manager_client/lib/UpdateManager/UI/Manager.php:614 -msgid "Failed storing uploaded file." -msgstr "Error al almacenar el archivo cargado." - -#: ../../update_manager_client/lib/UpdateManager/UI/Manager.php:646 -#, php-format -msgid "Invalid extension. The package needs to be in `%s` or `%s` format." -msgstr "ExtensiĆ³n no vĆ”lida. El paquete debe estar en formato \"%s\" o \"%s\"." - -#: ../../update_manager_client/lib/UpdateManager/UI/Manager.php:655 -msgid "Failed uploading file." -msgstr "Error al cargar el archivo." - -#: ../../update_manager_client/lib/UpdateManager/UI/Manager.php:690 -msgid "Signatures does not match." -msgstr "Las firmas no coinciden." - -#: ../../update_manager_client/lib/UpdateManager/UI/Manager.php:749 -#, php-format -msgid "Update %s successfully installed." -msgstr "La actualizaciĆ³n %s instalado correctamente." - -#: ../../update_manager_client/lib/UpdateManager/UI/Manager.php:752 -#, php-format -msgid "Failed while updating: %s" -msgstr "Error al actualizar: %s" - -#: ../../index.php:345 ../../enterprise/meta/index.php:307 -msgid "The code shouldn't be empty" -msgstr "El cĆ³digo no deberĆ­a estar vacĆ­o" - -#: ../../index.php:358 ../../enterprise/meta/index.php:320 -msgid "Expired login" -msgstr "Inicio de sesiĆ³n caducado" - -#: ../../index.php:365 ../../index.php:371 ../../enterprise/meta/index.php:327 -#: ../../enterprise/meta/index.php:333 -msgid "Login error" -msgstr "Error de conexiĆ³n" - -#: ../../index.php:789 ../../enterprise/meta/index.php:616 -msgid "Password changed successfully" -msgstr "ContraseƱa modificada correctamente" - -#: ../../index.php:795 ../../enterprise/meta/index.php:622 -msgid "Failed to change password" -msgstr "No se pudo modificar la contraseƱa" - -#: ../../index.php:800 ../../enterprise/include/process_reset_pass.php:127 -#: ../../enterprise/meta/include/process_reset_pass.php:123 -#: ../../enterprise/meta/index.php:625 -msgid "Passwords must be the same" -msgstr "Las contraseƱas deben coincidir" - -#: ../../index.php:812 ../../enterprise/meta/index.php:636 -msgid "Too much time since password change request" -msgstr "Ha pasado demasiado tiempo desde la solicitud de cambio de contraseƱa" - -#: ../../index.php:819 ../../enterprise/meta/index.php:643 -msgid "This user has not requested a password change" -msgstr "Este usuario no ha solicitado un cambio de contraseƱa" - -#: ../../index.php:846 ../../enterprise/meta/index.php:659 -msgid "Id user cannot be empty" -msgstr "El ID de usuario no puede estar vacĆ­o" - -#: ../../index.php:854 ../../enterprise/meta/index.php:667 -msgid "Error in reset password request" -msgstr "Error en la solicitud para restablecer la contraseƱa" - -#: ../../index.php:862 ../../enterprise/meta/index.php:675 -msgid "This user doesn't have a valid email address" -msgstr "Este usuario no tiene una direcciĆ³n vĆ”lida de email" - -#: ../../index.php:872 ../../enterprise/include/reset_pass.php:108 -#: ../../enterprise/meta/include/reset_pass.php:103 -#: ../../enterprise/meta/index.php:691 -msgid "Reset password" -msgstr "Restablecer la contraseƱa" - -#: ../../index.php:873 ../../enterprise/meta/index.php:692 -msgid "This is an automatically sent message for user " -msgstr "Este es un mensaje enviado automĆ”ticamente para el usuario " - -#: ../../index.php:876 ../../enterprise/meta/index.php:695 -msgid "Please click the link below to reset your password" -msgstr "Haz clic en el enlace de abajo para restablecer la contraseƱa" - -#: ../../index.php:878 ../../enterprise/meta/index.php:697 -msgid "Reset your password" -msgstr "Restablecer la contraseƱa" - -#: ../../index.php:882 ../../enterprise/meta/index.php:701 -msgid "Please do not reply to this email." -msgstr "No respondas a este email." - -#: ../../index.php:887 ../../enterprise/meta/index.php:707 -msgid "Error at sending the email" -msgstr "Error al enviar el email" - -#: ../../index.php:947 +#: ../../index.php:950 msgid "User doesn\\'t exist." msgstr "El usuario no existe." -#: ../../index.php:969 +#: ../../index.php:972 msgid "User only can use the API." msgstr "El usuario solo puede usar la API." -#: ../../index.php:1164 +#: ../../index.php:1167 #, php-format msgid "Metaconsole MR (%d) is different than this one (%d)" msgstr "La Metaconsola MR (%d) es diferente a esta (%d)" -#: ../../index.php:1170 ../../enterprise/meta/index.php:925 -msgid "Please keep all environment updated to same version." -msgstr "Mantenga todo el entorno actualizado a la misma versiĆ³n." +#: ../../operation/search_users.php:23 ../../operation/search_agents.php:30 +#: ../../operation/search_alerts.php:24 ../../operation/search_reports.php:25 +#: ../../operation/search_graphs.php:21 ../../operation/search_modules.php:23 +#: ../../operation/search_policies.php:22 ../../operation/search_maps.php:19 +msgid "Zero results found" +msgstr "No se encontrĆ³ ningĆŗn resultado" -#: ../../index.php:1258 ../../enterprise/meta/index.php:982 -#: ../../enterprise/meta/index.php:1061 -msgid "Sorry! I can't find the page!" -msgstr "No se puede encontrar la pĆ”gina" +#: ../../operation/search_users.php:47 +msgid "Profile" +msgstr "Perfil" -#: ../../enterprise/tools/ipam/ipam_excel.php:134 -#: ../../enterprise/tools/ipam/ipam_calculator.php:84 -#: ../../enterprise/tools/ipam/ipam_supernet_config.php:564 -msgid "Mask" -msgstr "MĆ”scara" +#: ../../operation/search_users.php:72 +msgid "Standard User" +msgstr "Usuario estĆ”ndar" -#: ../../enterprise/tools/ipam/ipam_excel.php:135 -msgid "Subneting Mask" -msgstr "MĆ”scara de subnetting" +#: ../../operation/heatmap.php:92 ../../operation/menu.php:69 +msgid "Heatmap view" +msgstr "Vista de mapa de calor" -#: ../../enterprise/tools/ipam/ipam_excel.php:136 -#: ../../enterprise/tools/ipam/ipam_excel.php:202 -#: ../../enterprise/include/functions_ipam.php:1559 -#: ../../enterprise/include/functions_ipam.php:1989 -msgid "Total IPs" -msgstr "IPs totales" - -#: ../../enterprise/tools/ipam/ipam_excel.php:137 -#: ../../enterprise/tools/ipam/ipam_excel.php:203 -#: ../../enterprise/include/functions_ipam.php:1990 -msgid "Alive IPs" -msgstr "IPs activas" - -#: ../../enterprise/tools/ipam/ipam_excel.php:138 -#: ../../enterprise/tools/ipam/ipam_excel.php:204 -#: ../../enterprise/include/functions_ipam.php:1991 -msgid "Occupied %" -msgstr "Ocupado %" - -#: ../../enterprise/tools/ipam/ipam_excel.php:139 -#: ../../enterprise/tools/ipam/ipam_excel.php:205 -#: ../../enterprise/include/functions_ipam.php:1992 -msgid "Available %" -msgstr "Disponible %" - -#: ../../enterprise/tools/ipam/ipam_excel.php:140 -#: ../../enterprise/tools/ipam/ipam_excel.php:206 -#: ../../enterprise/include/functions_ipam.php:1993 -msgid "Managed IPs" -msgstr "IPs gestionadas" - -#: ../../enterprise/tools/ipam/ipam_excel.php:141 -#: ../../enterprise/tools/ipam/ipam_excel.php:207 -#: ../../enterprise/include/functions_ipam.php:1994 -msgid "Managed %" -msgstr "Gestionadas %" - -#: ../../enterprise/tools/ipam/ipam_excel.php:142 -#: ../../enterprise/tools/ipam/ipam_excel.php:208 -#: ../../enterprise/include/functions_ipam.php:1995 -msgid "Unmanaged %" -msgstr "No gestionadas %" - -#: ../../enterprise/tools/ipam/ipam_excel.php:143 -#: ../../enterprise/tools/ipam/ipam_excel.php:209 -#: ../../enterprise/include/functions_ipam.php:1996 -msgid "Reserved IPs" -msgstr "IPs reservadas" - -#: ../../enterprise/tools/ipam/ipam_excel.php:144 -#: ../../enterprise/tools/ipam/ipam_excel.php:210 -#: ../../enterprise/include/functions_ipam.php:1997 -msgid "Reserved %" -msgstr "Reservado %" - -#: ../../enterprise/tools/ipam/ipam_excel.php:145 -#: ../../enterprise/tools/ipam/ipam_excel.php:211 -#: ../../enterprise/include/functions_ipam.php:1998 -msgid "Not reserved %" -msgstr "No reservadas %" - -#: ../../enterprise/tools/ipam/ipam_excel.php:212 -#: ../../enterprise/tools/ipam/ipam_vlan_config.php:342 -#: ../../enterprise/tools/ipam/ipam_vlan_config.php:674 -#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:398 -#: ../../godmode/massive/massive_edit_agents.php:798 -#: ../../godmode/agentes/module_manager_editor_common.php:567 -#: ../../godmode/agentes/agent_manager.php:198 -#: ../../godmode/groups/configure_group.php:238 -msgid "Custom ID" -msgstr "ID personalizado" - -#: ../../enterprise/tools/ipam/ipam_vlan_config.php:45 -#: ../../enterprise/tools/ipam/ipam_vlan_config.php:268 -msgid "There is no VLAN name. Please introduce a name" -msgstr "No hay nombre de vlan. AƱada un nombre" - -#: ../../enterprise/tools/ipam/ipam_vlan_config.php:49 -#: ../../enterprise/tools/ipam/ipam_vlan_config.php:87 -#: ../../enterprise/tools/ipam/ipam_vlan_config.php:272 -msgid "Custom ID is not valid" -msgstr "El ID personalizado no es vĆ”lido" - -#: ../../enterprise/tools/ipam/ipam_vlan_config.php:66 -msgid "Vlan created" -msgstr "Vlan creada" - -#: ../../enterprise/tools/ipam/ipam_vlan_config.php:68 -msgid "Vlan not created" -msgstr "Vlan no creada" - -#: ../../enterprise/tools/ipam/ipam_vlan_config.php:72 -#: ../../enterprise/tools/ipam/ipam_vlan_config.php:296 -msgid "VLAN name exists in database, please select another name" -msgstr "" -"El nombre de la vlan ya existe en la base de datos, seleccione otro nombre" - -#: ../../enterprise/tools/ipam/ipam_vlan_config.php:83 -msgid "There is no vlan name. Please introduce a name" -msgstr "No hay nombre de vlan. AƱada un nombre" - -#: ../../enterprise/tools/ipam/ipam_vlan_config.php:109 -msgid "Vlan updated" -msgstr "Vlan actualizada" - -#: ../../enterprise/tools/ipam/ipam_vlan_config.php:111 -msgid "Vlan not updated" -msgstr "Vlan no actualizada" - -#: ../../enterprise/tools/ipam/ipam_vlan_config.php:115 -msgid "Vlan name exists in database, please select other name" -msgstr "" -"El nombre de la vlan ya existe en la base de datos, seleccione otro nombre" - -#: ../../enterprise/tools/ipam/ipam_vlan_config.php:135 -msgid "Could not be deleted, please select vlan" -msgstr "No se ha podido borrar, seleccione vlan" - -#: ../../enterprise/tools/ipam/ipam_vlan_config.php:163 -msgid "Network name cannot be repeated in this Vlan" -msgstr "El nombre de la red no se puede repetir en esta vlan" - -#: ../../enterprise/tools/ipam/ipam_vlan_config.php:170 -#: ../../enterprise/tools/ipam/ipam_supernet_config.php:436 -msgid "Successfully added networks" -msgstr "Redes aƱadidas correctamente" - -#: ../../enterprise/tools/ipam/ipam_vlan_config.php:174 -#: ../../enterprise/tools/ipam/ipam_supernet_config.php:440 -msgid "Network could not be added" -msgstr "No se ha podido aƱadir la red" - -#: ../../enterprise/tools/ipam/ipam_vlan_config.php:179 -msgid "Network name could not be added, please select network" -msgstr "No se ha podido aƱadir el nombre de la red, seleccione una red" - -#: ../../enterprise/tools/ipam/ipam_vlan_config.php:184 -msgid "Vlan name could not be added, please select vlan" -msgstr "No se ha podido aƱadir el nombre de la vlan, seleccione vlan" - -#: ../../enterprise/tools/ipam/ipam_vlan_config.php:212 -msgid "Could not be deleted, please select VLAN and network" -msgstr "No se ha podido eliminar, seleccione una VLAN y una red" - -#: ../../enterprise/tools/ipam/ipam_vlan_config.php:219 -#, php-format -msgid "Failed to delete %d/%d networks from VLAN" -msgstr "Error al eliminar redes %d/%d de VLAN" - -#: ../../enterprise/tools/ipam/ipam_vlan_config.php:223 -msgid "Successfully deleted network from VLAN" -msgstr "Red eliminada correctamente de VLAN" - -#: ../../enterprise/tools/ipam/ipam_vlan_config.php:225 -#, php-format -msgid "Successfully deleted %d/%d networks from VLAN" -msgstr "Redes %d/%d eliminadas correctamente de VLAN" - -#: ../../enterprise/tools/ipam/ipam_vlan_config.php:228 -#: ../../enterprise/tools/ipam/ipam_supernet_config.php:495 -msgid "No items selected" -msgstr "No hay elementos seleccionados" - -#: ../../enterprise/tools/ipam/ipam_vlan_config.php:303 -#, php-format -msgid "%s VLAN networks have been created" -msgstr "%s redes VLAN creadas" - -#: ../../enterprise/tools/ipam/ipam_vlan_config.php:305 -msgid "Could not create VLAN networks" -msgstr "No se pudieron crear redes VLAN" - -#: ../../enterprise/tools/ipam/ipam_vlan_config.php:316 -#: ../../enterprise/tools/ipam/ipam_supernet_config.php:701 -#: ../../enterprise/tools/ipam/ipam_list.php:447 -#: ../../enterprise/extensions/csv_import_group/main.php:68 -msgid "The CSV file must have the fields in the following order: " -msgstr "El archivo CSV debe tener los campos en el siguiente orden:" - -#: ../../enterprise/tools/ipam/ipam_vlan_config.php:339 -#: ../../enterprise/tools/ipam/ipam_vlan_network.php:39 -#: ../../enterprise/tools/ipam/ipam_vlan_wizard.php:58 -#: ../../enterprise/tools/ipam/ipam_vlan_wizard.php:62 -#: ../../enterprise/tools/ipam/ipam_vlan_wizard.php:67 -#: ../../enterprise/tools/ipam/ipam_list.php:151 -#: ../../enterprise/tools/ipam/ipam_list.php:602 -msgid "Vlan" -msgstr "Vlan" - -#: ../../enterprise/tools/ipam/ipam_vlan_config.php:366 -#: ../../enterprise/tools/ipam/ipam_vlan_config.php:822 -msgid "Update Vlan" -msgstr "Actualizar vlan" - -#: ../../enterprise/tools/ipam/ipam_vlan_config.php:373 -#: ../../enterprise/tools/ipam/ipam_vlan_config.php:917 -msgid "New Vlan" -msgstr "Nueva vlan" - -#: ../../enterprise/tools/ipam/ipam_vlan_config.php:393 -#: ../../enterprise/tools/ipam/ipam_network.php:115 -#: ../../enterprise/tools/ipam/ipam_supernet_config.php:719 -#: ../../enterprise/tools/ipam/ipam_list.php:50 -#: ../../enterprise/include/class/CSVImportAgents.class.php:146 -#: ../../enterprise/extensions/csv_import_group/main.php:84 -msgid "Upload file" -msgstr "Subir archivo" - -#: ../../enterprise/tools/ipam/ipam_vlan_config.php:402 -#: ../../enterprise/tools/ipam/ipam_network.php:124 -#: ../../enterprise/tools/ipam/ipam_supernet_config.php:728 -#: ../../enterprise/tools/ipam/ipam_list.php:59 -#: ../../enterprise/include/class/CSVImportAgents.class.php:163 -#: ../../enterprise/include/class/DeploymentCenter.class.php:1400 -#: ../../enterprise/extensions/csv_import_group/main.php:87 -msgid "Separator" -msgstr "Separador" - -#: ../../enterprise/tools/ipam/ipam_vlan_config.php:415 -#: ../../enterprise/tools/ipam/ipam_network.php:137 -#: ../../enterprise/tools/ipam/ipam_supernet_config.php:741 -#: ../../enterprise/tools/ipam/ipam_list.php:72 -#: ../../enterprise/extensions/csv_import_group/main.php:100 -msgid "Upload CSV file" -msgstr "Subir archivo CSV" - -#: ../../enterprise/tools/ipam/ipam_vlan_config.php:435 -msgid "Search filter by name" -msgstr "Filtro de bĆŗsqueda por nombre" - -#: ../../enterprise/tools/ipam/ipam_vlan_config.php:688 -#: ../../enterprise/tools/ipam/ipam_supernet_config.php:1071 -msgid "Networks" -msgstr "Redes" - -#: ../../enterprise/tools/ipam/ipam_vlan_config.php:702 -#: ../../enterprise/tools/ipam/ipam_supernet_config.php:1176 -#: ../../enterprise/tools/ipam/ipam_supernet_config.php:1306 -#: ../../enterprise/include/ajax/ipam.ajax.php:691 -#: ../../enterprise/include/ajax/ipam.ajax.php:748 -#: ../../enterprise/include/ajax/ipam.ajax.php:779 -#: ../../enterprise/include/ajax/ipam.ajax.php:826 -msgid "No assigned networks" -msgstr "Redes no asignadas" - -#: ../../enterprise/tools/ipam/ipam_vlan_config.php:736 -msgid "Delete network to vlan" -msgstr "Borrar una red de vlan" - -#: ../../enterprise/tools/ipam/ipam_vlan_config.php:796 -msgid "Manage networks in VLAN" -msgstr "Administrar redes en VLAN" - -#: ../../enterprise/tools/ipam/ipam_vlan_config.php:816 -msgid "Not assigned networks" -msgstr "Redes no asignadas" - -#: ../../enterprise/tools/ipam/ipam_vlan_config.php:829 -#: ../../enterprise/tools/ipam/ipam_vlan_config.php:848 -msgid "Add network to Vlan" -msgstr "AƱadir red a vlan" - -#: ../../enterprise/tools/ipam/ipam_vlan_config.php:832 -msgid "Create network" -msgstr "Crear red" - -#: ../../enterprise/tools/ipam/ipam_vlan_config.php:865 -msgid "Delete Vlan" -msgstr "Eliminar vlan" - -#: ../../enterprise/tools/ipam/ipam_vlan_config.php:906 -#: ../../enterprise/tools/ipam/ipam_vlan_wizard.php:459 -msgid "No vlans found" -msgstr "No se han encontrado vlans" - -#: ../../enterprise/tools/ipam/ipam_network_location_config.php:40 -#: ../../godmode/modules/manage_nc_groups.php:64 -msgid "Could not be created. Blank name" -msgstr "No pudo ser creado. Nombre en blanco" - -#: ../../enterprise/tools/ipam/ipam_network_location_config.php:61 -#: ../../enterprise/godmode/reporting/graph_template_editor.php:155 -#: ../../godmode/modules/manage_nc_groups.php:95 -#: ../../godmode/events/event_edit_filter.php:205 -#: ../../godmode/netflow/nf_edit_form.php:118 -msgid "Not updated. Blank name" -msgstr "No actualizado; nombre en blanco" - -#: ../../enterprise/tools/ipam/ipam_network_location_config.php:72 -#: ../../godmode/setup/news.php:108 -#: ../../godmode/modules/manage_nc_groups.php:119 -#: ../../godmode/events/event_edit_filter.php:216 -#: ../../godmode/netflow/nf_edit_form.php:140 -msgid "Not updated. Error updating data" -msgstr "No se ha podido actualizar. Error al actualizar los datos." - -#: ../../enterprise/tools/ipam/ipam_network_location_config.php:110 -#, php-format -msgid "%d/%d items deleted" -msgstr "Elementos %d/%d eliminados" - -#: ../../enterprise/tools/ipam/ipam_network_location_config.php:112 -msgid "Failed to delete items" -msgstr "Error al eliminar elementos" - -#: ../../enterprise/tools/ipam/ipam_network_location_config.php:167 -msgid "Search filter by name or network address" -msgstr "Filtro de bĆŗsqueda por nombre o direcciĆ³n de red" - -#: ../../enterprise/tools/ipam/ipam_network_location_config.php:273 -msgid "No locations found" -msgstr "No se encontraron ubicaciones" - -#: ../../enterprise/tools/ipam/ipam_network_location_config.php:309 -msgid "There are no defined network locations" -msgstr "No hay ubicaciones de red definidas" - -#: ../../enterprise/tools/ipam/ipam_supernet_network.php:82 -#: ../../enterprise/tools/ipam/ipam_supernet_config.php:536 -#: ../../enterprise/include/ajax/ipam.ajax.php:613 -msgid "Supernet" -msgstr "Superred" - -#: ../../enterprise/tools/ipam/ipam_ajax.php:285 -msgid "There is not an available IP." -msgstr "No hay una IP disponible" - -#: ../../enterprise/tools/ipam/ipam_ajax.php:287 -msgid "Next available IP Address is:" -msgstr "La siguiente IP disponible es:" - -#: ../../enterprise/tools/ipam/ipam_ajax.php:313 -msgid "Reserve this IP now" -msgstr "Reservar esta IP ahora" - -#: ../../enterprise/tools/ipam/ipam_ajax.php:329 -msgid "Manage this IP now" -msgstr "Gestionar esta IP ahora" - -#: ../../enterprise/tools/ipam/ipam_ajax.php:374 -msgid "Operating system" -msgstr "Sistema operativo" - -#: ../../enterprise/tools/ipam/ipam_ajax.php:384 -msgid "This agent has other IPs" -msgstr "Este agente tiene otras IPs." - -#: ../../enterprise/tools/ipam/ipam_ajax.php:393 -msgid "Generate events" -msgstr "Generar eventos" - -#: ../../enterprise/tools/ipam/ipam_ajax.php:406 -#: ../../enterprise/tools/ipam/ipam_massive.php:103 -#: ../../enterprise/tools/ipam/ipam_network.php:400 -#: ../../enterprise/include/functions_ipam.php:1571 -#: ../../enterprise/include/functions_ipam.php:2042 -msgid "Managed" -msgstr "Gestionado" - -#: ../../enterprise/tools/ipam/ipam_ajax.php:432 -#: ../../enterprise/tools/ipam/ipam_massive.php:103 -#: ../../enterprise/tools/ipam/ipam_network.php:401 -#: ../../enterprise/include/functions_ipam.php:1577 -#: ../../enterprise/include/functions_ipam.php:1734 -#: ../../enterprise/include/functions_ipam.php:2043 -msgid "Reserved" -msgstr "Reservado" - -#: ../../enterprise/tools/ipam/ipam_ajax.php:445 -msgid "Leases Dhcp" -msgstr "Periodo de concesiĆ³n Dhcp" - -#: ../../enterprise/tools/ipam/ipam_ajax.php:455 -msgid "leased mode" -msgstr "Modo de concesiĆ³n" - -#: ../../enterprise/tools/ipam/ipam_ajax.php:468 -msgid "leased expiration" -msgstr "ConcesiĆ³n caducada" - -#: ../../enterprise/tools/ipam/ipam_ajax.php:489 -#: ../../enterprise/tools/ipam/ipam_vlan_wizard.php:424 -msgid "Created" -msgstr "Creado" - -#: ../../enterprise/tools/ipam/ipam_ajax.php:499 -msgid "Edited" -msgstr "Modificado" - -#: ../../enterprise/tools/ipam/ipam_ajax.php:509 -msgid "Tracking" -msgstr "Seguimiento" - -#: ../../enterprise/tools/ipam/ipam_ajax.php:524 -msgid "Ping" -msgstr "Ping" - -#: ../../enterprise/tools/ipam/ipam_ajax.php:565 -msgid "Ping to host" -msgstr "Ping a un host" - -#: ../../enterprise/tools/ipam/ipam_vlan_wizard.php:58 -msgid "succesfully created" -msgstr "creado correctamente" - -#: ../../enterprise/tools/ipam/ipam_vlan_wizard.php:62 -msgid "not created" -msgstr "no creado" - -#: ../../enterprise/tools/ipam/ipam_vlan_wizard.php:67 -msgid "exists in bbdd, please select other name" -msgstr "existe en la base de datos, seleccione otro nombre" - -#: ../../enterprise/tools/ipam/ipam_vlan_wizard.php:72 -msgid "please, select VLAN to be created" -msgstr "seleccione una VLAN para crear" - -#: ../../enterprise/tools/ipam/ipam_vlan_wizard.php:231 -msgid "Please enter adress, for search vlans" -msgstr "AƱada una direcciĆ³n para buscar vlans" - -#: ../../enterprise/tools/ipam/ipam_vlan_wizard.php:337 -msgid "privacy pass" -msgstr "pase privado" - -#: ../../enterprise/tools/ipam/ipam_vlan_wizard.php:374 -#: ../../godmode/wizards/HostDevices.class.php:1248 -msgid "Context" -msgstr "Contexto" - -#: ../../enterprise/tools/ipam/ipam_vlan_wizard.php:397 -msgid "Run" -msgstr "Ejecutar" - -#: ../../enterprise/tools/ipam/ipam_vlan_wizard.php:409 -msgid "Vlan name" -msgstr "Nombre de vlan" - -#: ../../enterprise/tools/ipam/ipam_massive.php:82 -msgid "Addresses" -msgstr "Direcciones" - -#: ../../enterprise/tools/ipam/ipam_network.php:163 -msgid "No addresses found on this network" -msgstr "No se han encontrado direcciones en esta red" - -#: ../../enterprise/tools/ipam/ipam_network.php:314 -msgid "Edit address" -msgstr "Modificar direcciĆ³n" - -#: ../../enterprise/tools/ipam/ipam_network.php:327 -msgid "Disabled address" -msgstr "Deshabilitar direciĆ³n" - -#: ../../enterprise/tools/ipam/ipam_network.php:327 -msgid "This address will not be updated by the server" -msgstr "Esta direcciĆ³n no serĆ” actualizada por el servidor." - -#: ../../enterprise/tools/ipam/ipam_network.php:414 -#: ../../enterprise/include/functions_reporting_csv.php:1936 -#: ../../enterprise/include/functions_reporting.php:2318 -#: ../../enterprise/include/functions_ipam.php:2038 -#: ../../godmode/wizards/DiscoveryTaskList.class.php:1391 -msgid "Alive" -msgstr "Activo" - -#: ../../enterprise/tools/ipam/ipam_network.php:423 -#: ../../godmode/wizards/DiscoveryTaskList.class.php:1396 -msgid "Not alive" -msgstr "Inactivo" - -#: ../../enterprise/tools/ipam/ipam_network.php:454 -#: ../../enterprise/tools/ipam/ipam_network.php:533 -#: ../../enterprise/tools/ipam/ipam_network.php:575 -msgid "Change to automatic mode" -msgstr "Cambiar a modo automĆ”tico" - -#: ../../enterprise/tools/ipam/ipam_network.php:463 -#: ../../enterprise/tools/ipam/ipam_network.php:542 -#: ../../enterprise/tools/ipam/ipam_network.php:584 -msgid "Change to manual mode" -msgstr "Cambiar a modo manual" - -#: ../../enterprise/tools/ipam/ipam_network.php:663 -msgid "Add comments" -msgstr "AƱadir comentarios" - -#: ../../enterprise/tools/ipam/ipam_network.php:691 -msgid "Update agent address" -msgstr "Actualizar direcciĆ³n de agente" - -#: ../../enterprise/tools/ipam/ipam_network.php:857 -msgid "Please, uncheck auto option to set manual agent." -msgstr "Desmarcar la opciĆ³n automĆ”tica para establecer agente manual" - -#: ../../enterprise/tools/ipam/ipam_action.php:121 -#: ../../enterprise/tools/ipam/ipam_action.php:240 -#: ../../enterprise/tools/ipam/ipam_supernet_config.php:227 -#: ../../enterprise/tools/ipam/ipam_supernet_config.php:327 -#: ../../enterprise/tools/ipam/ipam_list.php:383 -msgid "The location is not filled, please add a location." -msgstr "La ubicaciĆ³n no estĆ” indicada. Por favor, aƱade una ubicaciĆ³n." - -#: ../../enterprise/tools/ipam/ipam_action.php:138 -#: ../../enterprise/tools/ipam/ipam_action.php:270 -#: ../../enterprise/tools/ipam/ipam_list.php:400 -msgid "Incorrect format in Subnet field" -msgstr "Formato incorrecto en el campo Subred" - -#: ../../enterprise/tools/ipam/ipam_action.php:198 -#, php-format -msgid "Network could not be added to supernet %s (%s)" -msgstr "No se pudo agregar la red a la superred %s (%s)" - -#: ../../enterprise/tools/ipam/ipam_action.php:202 -#, php-format -msgid "Network added to supernet %s (%s)" -msgstr "Red agregada a la %s de superred (%s)" - -#: ../../enterprise/tools/ipam/ipam_action.php:207 -#, php-format -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:219 -#: ../../enterprise/tools/ipam/ipam_list.php:425 -#, php-format -msgid "Could not be created: %s" -msgstr "No se ha podido crear: %s" - -#: ../../enterprise/tools/ipam/ipam_calculator.php:64 -#: ../../enterprise/tools/ipam/ipam_calculator.php:66 -#: ../../enterprise/tools/ipam/ipam_calculator.php:87 -#: ../../enterprise/tools/ipam/ipam_calculator.php:90 -#: ../../enterprise/tools/ipam/ipam_calculator.php:93 -#: ../../enterprise/tools/ipam/ipam_calculator.php:96 -msgid "Example:" -msgstr "Ejemplo:" - -#: ../../enterprise/tools/ipam/ipam_calculator.php:70 -msgid "Bit mask" -msgstr "MĆ”scara de bit" - -#: ../../enterprise/tools/ipam/ipam_calculator.php:71 -msgid "Net mask" -msgstr "MĆ”scara de red" - -#: ../../enterprise/tools/ipam/ipam_calculator.php:74 -msgid "Mask format" -msgstr "Formato de mĆ”scara" - -#: ../../enterprise/tools/ipam/ipam_calculator.php:105 -msgid "Calculate" -msgstr "Calcular" - -#: ../../enterprise/tools/ipam/ipam_calculator.php:112 -msgid "Address field is empty" -msgstr "El campo DirecciĆ³n estĆ” vacĆ­o." - -#: ../../enterprise/tools/ipam/ipam_calculator.php:120 -msgid "Mask field is empty" -msgstr "El campo MĆ”scara estĆ” vacĆ­o." - -#: ../../enterprise/tools/ipam/ipam_calculator.php:139 -#: ../../enterprise/tools/ipam/ipam_calculator.php:152 -msgid "Incorrect address format" -msgstr "Formato de direcciĆ³n incorrecto" - -#: ../../enterprise/tools/ipam/ipam_calculator.php:144 -#: ../../enterprise/tools/ipam/ipam_calculator.php:157 -#: ../../enterprise/tools/ipam/ipam_calculator.php:162 -msgid "Incorrect mask format" -msgstr "Formato de mĆ”scara incorrecto" - -#: ../../enterprise/tools/ipam/ipam_calculator.php:190 -msgid "Network mask" -msgstr "MĆ”scara de red" - -#: ../../enterprise/tools/ipam/ipam_calculator.php:211 -msgid "Network wildcard" -msgstr "Red wildcard" - -#: ../../enterprise/tools/ipam/ipam_calculator.php:220 -msgid "Network address" -msgstr "DirecciĆ³n de red" - -#: ../../enterprise/tools/ipam/ipam_calculator.php:229 -msgid "Broadcast address" -msgstr "DirecciĆ³n de difusiĆ³n" - -#: ../../enterprise/tools/ipam/ipam_calculator.php:238 -msgid "First valid IP" -msgstr "Primera IP vĆ”lida" - -#: ../../enterprise/tools/ipam/ipam_calculator.php:247 -msgid "Last valid IP" -msgstr "ƚltima IP vĆ”lida" - -#: ../../enterprise/tools/ipam/ipam_calculator.php:257 -msgid "Hosts/Net" -msgstr "Hosts/Red" - -#: ../../enterprise/tools/ipam/ipam_supernet_config.php:52 -#: ../../enterprise/tools/ipam/ipam_supernet_config.php:100 -msgid "There is no supernet name. Please introduce a name" -msgstr "No hay nombre de superred. AƱada un nombre." - -#: ../../enterprise/tools/ipam/ipam_supernet_config.php:56 -#: ../../enterprise/tools/ipam/ipam_supernet_config.php:104 -msgid "There is no supernet address. Please introduce a address" -msgstr "No hay direcciĆ³n de superred. AƱada una direcciĆ³n." - -#: ../../enterprise/tools/ipam/ipam_supernet_config.php:60 -#: ../../enterprise/tools/ipam/ipam_supernet_config.php:108 -msgid "There is no supernet mask. Please introduce a mask" -msgstr "No hay mĆ”scara de superred. AƱada una mĆ”scara" - -#: ../../enterprise/tools/ipam/ipam_supernet_config.php:64 -msgid "There is no valid address. Please introduce a address" -msgstr "No hay direcciĆ³n vĆ”lida. AƱada una direcciĆ³n." - -#: ../../enterprise/tools/ipam/ipam_supernet_config.php:68 -msgid "There is no valid mask. Please introduce a mask" -msgstr "No hay mĆ”scara vĆ”lida. AƱada una mĆ”scara" - -#: ../../enterprise/tools/ipam/ipam_supernet_config.php:83 -msgid "Supernet created" -msgstr "Superred creada." - -#: ../../enterprise/tools/ipam/ipam_supernet_config.php:85 -msgid "Supernet not created" -msgstr "Superred no creada" - -#: ../../enterprise/tools/ipam/ipam_supernet_config.php:89 -#: ../../enterprise/tools/ipam/ipam_supernet_config.php:135 -msgid "Supernet name exists in bbdd, please select other name" -msgstr "" -"El nombre de la superred existe en la base de datos, seleccione otro nombre." - -#: ../../enterprise/tools/ipam/ipam_supernet_config.php:129 -msgid "Supernet updated" -msgstr "Superred actualizada" - -#: ../../enterprise/tools/ipam/ipam_supernet_config.php:131 -msgid "Supernet not updated" -msgstr "Superred no actualizada" - -#: ../../enterprise/tools/ipam/ipam_supernet_config.php:156 -msgid "Could not be deleted, please select supernet" -msgstr "No se ha podido borrar, seleccione una superred" - -#: ../../enterprise/tools/ipam/ipam_supernet_config.php:395 -#, php-format -msgid "Successfully created %d networks" -msgstr "Redes %d creadas con Ć©xito" - -#: ../../enterprise/tools/ipam/ipam_supernet_config.php:399 -msgid "Failed to create networks" -msgstr "Error al crear redes" - -#: ../../enterprise/tools/ipam/ipam_supernet_config.php:402 -msgid "Entered range address is not valid" -msgstr "La direcciĆ³n de intervalo introducida no es vĆ”lida" - -#: ../../enterprise/tools/ipam/ipam_supernet_config.php:429 -msgid "Network name cannot be repeated in this supernet" -msgstr "El nombre de la red no puede repetirse en la superred" - -#: ../../enterprise/tools/ipam/ipam_supernet_config.php:445 -msgid "No networks to be added to supernet" -msgstr "No hay redes a agregar a la superred" - -#: ../../enterprise/tools/ipam/ipam_supernet_config.php:450 -msgid "supernet name could not be added, please select supernet" -msgstr "No se ha podido aƱadir el nombre de la superred, seleccione superred" - -#: ../../enterprise/tools/ipam/ipam_supernet_config.php:479 -msgid "Could not be deleted, please select supernet and network" -msgstr "No se ha podido eliminar, seleccione una red y una superred" - -#: ../../enterprise/tools/ipam/ipam_supernet_config.php:486 -#, php-format -msgid "Failed to delete %d/%d networks from supernet" -msgstr "Error al eliminar las redes %d/%d de la superred" - -#: ../../enterprise/tools/ipam/ipam_supernet_config.php:490 -msgid "Successfully deleted network from supernet" -msgstr "Red eliminada correctamente de la superred" - -#: ../../enterprise/tools/ipam/ipam_supernet_config.php:492 -#, php-format -msgid "Successfully deleted %d/%d networks from supernet" -msgstr "Redes %d/%d eliminadas correctamente de la superred" - -#: ../../enterprise/tools/ipam/ipam_supernet_config.php:582 -msgid "Subnetting Mask" -msgstr "MĆ”scara de subred" - -#: ../../enterprise/tools/ipam/ipam_supernet_config.php:605 -#: ../../enterprise/tools/ipam/ipam_supernet_config.php:777 -#: ../../enterprise/tools/ipam/ipam_supernet_config.php:1064 -#: ../../enterprise/tools/ipam/ipam_list.php:129 -#: ../../enterprise/tools/ipam/ipam_list.php:595 -msgid "Site" -msgstr "Sitio" - -#: ../../enterprise/tools/ipam/ipam_supernet_config.php:640 -#: ../../enterprise/tools/ipam/ipam_supernet_config.php:1313 -msgid "Update Supernet" -msgstr "Actualizar superred" - -#: ../../enterprise/tools/ipam/ipam_supernet_config.php:647 -#: ../../enterprise/tools/ipam/ipam_supernet_config.php:1451 -msgid "New Supernet" -msgstr "Nueva superred" - -#: ../../enterprise/tools/ipam/ipam_supernet_config.php:688 -#, php-format -msgid "%s supernets created" -msgstr "%s superredes creadas" - -#: ../../enterprise/tools/ipam/ipam_supernet_config.php:690 -msgid "supernets creation failed" -msgstr "Error en la creaciĆ³n de superredes" - -#: ../../enterprise/tools/ipam/ipam_supernet_config.php:763 -#: ../../enterprise/tools/ipam/ipam_list.php:93 -msgid "Search filter by name, network address or description" -msgstr "Filtro de bĆŗsqueda por nombre, direcciĆ³n de red o descripciĆ³n" - -#: ../../enterprise/tools/ipam/ipam_supernet_config.php:790 -msgid "Min. networks range" -msgstr "Rango mĆ­nimo de redes" - -#: ../../enterprise/tools/ipam/ipam_supernet_config.php:793 -msgid "Max. networks range" -msgstr "Alcance mĆ”x. de las redes" - -#: ../../enterprise/tools/ipam/ipam_supernet_config.php:1060 -msgid "Address / Masks" -msgstr "DirecciĆ³n / MĆ”scaras" - -#: ../../enterprise/tools/ipam/ipam_supernet_config.php:1062 -msgid "Subnetting mask" -msgstr "MĆ”scara de subred" - -#: ../../enterprise/tools/ipam/ipam_supernet_config.php:1063 -msgid "Networks range" -msgstr "Intervalo de red IP" - -#: ../../enterprise/tools/ipam/ipam_supernet_config.php:1237 -msgid "Delete network in supernet" -msgstr "Eliminar red de superred" - -#: ../../enterprise/tools/ipam/ipam_supernet_config.php:1286 -msgid "Manage networks in supernet" -msgstr "Administrar redes en superred" - -#: ../../enterprise/tools/ipam/ipam_supernet_config.php:1320 -msgid "Add network to supernet" -msgstr "AƱadir red a superred" - -#: ../../enterprise/tools/ipam/ipam_supernet_config.php:1323 -msgid "Next network" -msgstr "Siguiente red" - -#: ../../enterprise/tools/ipam/ipam_supernet_config.php:1355 -msgid "Delete Supernet" -msgstr "Borrar superred" - -#: ../../enterprise/tools/ipam/ipam_supernet_config.php:1444 -msgid "No Supernet found" -msgstr "Superred no encontrada" - -#: ../../enterprise/tools/ipam/ipam.php:52 ../../extensions/files_repo.php:122 -#: ../../extensions/files_repo.php:210 -msgid "Operation view" -msgstr "Vista de operaciĆ³n" - -#: ../../enterprise/tools/ipam/ipam.php:78 -#: ../../enterprise/tools/ipam/ipam.php:356 -msgid "Subnetworks calculator" -msgstr "Calculadora de subredes" - -#: ../../enterprise/tools/ipam/ipam.php:96 -msgid "Vlan config" -msgstr "ConfiguraciĆ³n de vlan" - -#: ../../enterprise/tools/ipam/ipam.php:114 -msgid "Vlan wizard" -msgstr "Asistente de vlan" - -#: ../../enterprise/tools/ipam/ipam.php:133 -msgid "Supernet treeview" -msgstr "VĆ­sta de Ć”rbol de superredes" - -#: ../../enterprise/tools/ipam/ipam.php:152 -msgid "Network locations" -msgstr "Ubicaciones de red" - -#: ../../enterprise/tools/ipam/ipam.php:171 -#: ../../enterprise/tools/ipam/ipam.php:411 -#: ../../enterprise/tools/ipam/ipam_editor.php:224 -#: ../../enterprise/include/ajax/ipam.ajax.php:418 -msgid "Sites" -msgstr "Sitios" - -#: ../../enterprise/tools/ipam/ipam.php:196 -msgid "Vlan statistics" -msgstr "EstadĆ­sticas de vlan" - -#: ../../enterprise/tools/ipam/ipam.php:216 -#: ../../enterprise/tools/ipam/ipam.php:381 -msgid "Supernet config" -msgstr "ConfiguraciĆ³n de superred" - -#: ../../enterprise/tools/ipam/ipam.php:237 -#: ../../enterprise/tools/ipam/ipam.php:396 -msgid "Supernet statistics" -msgstr "EstadĆ­sticas de superred" - -#: ../../enterprise/tools/ipam/ipam.php:257 -msgid "Supernet map" -msgstr "Mapa de superred" - -#: ../../enterprise/tools/ipam/ipam.php:280 -#: ../../enterprise/tools/ipam/ipam_list.php:685 -msgid "Manage addresses" -msgstr "Administrar direcciones" - -#: ../../enterprise/tools/ipam/ipam.php:300 -#: ../../enterprise/tools/ipam/ipam.php:361 -#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:692 -#: ../../godmode/massive/massive_operations.php:390 -#: ../../godmode/massive/massive_edit_plugins.php:921 -msgid "Massive operations" -msgstr "Operaciones masivas" - -#: ../../enterprise/tools/ipam/ipam.php:320 -#: ../../enterprise/tools/ipam/ipam_list.php:694 -msgid "Addresses view" -msgstr "Vista de direcciones" - -#: ../../enterprise/tools/ipam/ipam.php:352 -msgid "/tools/ipam/ipam_network.php" -msgstr "/tools/ipam/ipam_network.php" - -#: ../../enterprise/tools/ipam/ipam.php:366 -msgid "VLAN Config" -msgstr "ConfiguraciĆ³n de VLAN" - -#: ../../enterprise/tools/ipam/ipam.php:371 -msgid "VLAN Wizard" -msgstr "Asistente de VLAN" - -#: ../../enterprise/tools/ipam/ipam.php:376 -msgid "VLAN Statistics" -msgstr "EstadĆ­sticas VLAN" - -#: ../../enterprise/tools/ipam/ipam.php:386 -msgid "Network location config" -msgstr "ConfiguraciĆ³n de ubicaciĆ³n de red" - -#: ../../enterprise/tools/ipam/ipam.php:391 -msgid "Supernet wizard" -msgstr "Asistente de superredes" - -#: ../../enterprise/tools/ipam/ipam.php:401 -msgid "Supernet Map" -msgstr "Mapa de superred" - -#: ../../enterprise/tools/ipam/ipam.php:406 -msgid "Supernet Treeview" -msgstr "Superred creada" - -#: ../../enterprise/tools/ipam/ipam.php:432 -msgid "Operation View" -msgstr "Vista de operaciĆ³n" - -#: ../../enterprise/tools/ipam/ipam.php:449 ../../godmode/menu.php:380 -msgid "Admin tools" -msgstr "Herramientas administrativas" - -#: ../../enterprise/tools/ipam/ipam_supernet_treeview.php:94 -msgid "Found supernets" -msgstr "Superredes encontradas" - -#: ../../enterprise/tools/ipam/ipam_list.php:97 -#: ../../enterprise/tools/ipam/ipam_list.php:588 -#: ../../enterprise/tools/ipam/ipam_editor.php:191 -#: ../../enterprise/include/ajax/ipam.ajax.php:385 -#: ../../enterprise/include/functions_ipam.php:1369 -#: ../../enterprise/include/functions_ipam.php:1983 -#: ../../godmode/events/event_responses.editor.php:123 -msgid "Location" -msgstr "UbicaciĆ³n" - -#: ../../enterprise/tools/ipam/ipam_list.php:434 -#, php-format -msgid "%s networks created" -msgstr "%s redes creadas" - -#: ../../enterprise/tools/ipam/ipam_list.php:436 -msgid "Networks creation failed" -msgstr "Error en la creaciĆ³n de redes" - -#: ../../enterprise/tools/ipam/ipam_list.php:501 -msgid "No networks found" -msgstr "No se ha encontrado ninguna red" - -#: ../../enterprise/tools/ipam/ipam_list.php:609 -#: ../../enterprise/tools/ipam/ipam_editor.php:243 -#: ../../enterprise/include/ajax/ipam.ajax.php:437 -msgid "Vrf" -msgstr "Vrf" - -#: ../../enterprise/tools/ipam/ipam_list.php:625 -msgid "IPs" -msgstr "IPs" - -#: ../../enterprise/tools/ipam/ipam_list.php:708 -msgid "Edit network" -msgstr "Modificar red" - -#: ../../enterprise/tools/ipam/ipam_list.php:719 -msgid "Delete network" -msgstr "Eliminar red" - -#: ../../enterprise/tools/ipam/ipam_sites.php:70 -msgid "Successfully saved" -msgstr "Guardado correctamente" - -#: ../../enterprise/tools/ipam/ipam_sites.php:76 -#, php-format -msgid "Failed to save site %s" -msgstr "Error al guardar el sitio %s" - -#: ../../enterprise/tools/ipam/ipam_sites.php:132 -#, php-format -msgid "Failed to delete site %s" -msgstr "Error al eliminar el sitio %s" - -#: ../../enterprise/tools/ipam/ipam_editor.php:56 -msgid "Network not found" -msgstr "Red no encontrada" - -#: ../../enterprise/tools/ipam/ipam_editor.php:122 -msgid "Format: IP/Mask" -msgstr "Formato: IP/MĆ”scara" - -#: ../../enterprise/tools/ipam/ipam_editor.php:136 -msgid "Examples" -msgstr "Ejemplos" - -#: ../../enterprise/tools/ipam/ipam_editor.php:192 -#: ../../enterprise/include/ajax/ipam.ajax.php:386 -msgid "For example: Central Data Center" -msgstr "Por ejemplo: Central General de Datos" - -#: ../../enterprise/tools/ipam/ipam_editor.php:225 -#: ../../enterprise/include/ajax/ipam.ajax.php:419 -msgid "For example: Pandora" -msgstr "Por ejemplo: Pandora" - -#: ../../enterprise/tools/ipam/ipam_editor.php:244 -#: ../../enterprise/include/ajax/ipam.ajax.php:438 -msgid "Virtual Routing and Forwarding" -msgstr "Enrutamiento y reenvĆ­o virtual" - -#: ../../enterprise/tools/ipam/ipam_editor.php:262 -#: ../../enterprise/include/ajax/ipam.ajax.php:456 -msgid "Include statistical monitors" -msgstr "Incluir monitores estadĆ­sticos" - -#: ../../enterprise/tools/ipam/ipam_editor.php:277 -#: ../../enterprise/include/ajax/ipam.ajax.php:471 -msgid "Lightweight mode" -msgstr "Modo ligero" - -#: ../../enterprise/tools/ipam/ipam_editor.php:278 -#: ../../enterprise/include/ajax/ipam.ajax.php:472 -msgid "Use quicker network scan" -msgstr "Usar escaneado de red rĆ”pido" - -#: ../../enterprise/tools/ipam/ipam_editor.php:294 -#: ../../enterprise/include/ajax/ipam.ajax.php:488 -msgid "Target group for monitoring agent" -msgstr "Grupo de destino para agente de monitorizaciĆ³n" - -#: ../../enterprise/tools/ipam/ipam_editor.php:315 -#: ../../enterprise/include/ajax/ipam.ajax.php:509 -msgid "Scan interval" -msgstr "Comprobar intervalo" - -#: ../../enterprise/tools/ipam/ipam_editor.php:316 -#: ../../enterprise/include/ajax/ipam.ajax.php:510 -msgid "0 for manually scan" -msgstr "0 para comprobaciĆ³n manual" - -#: ../../enterprise/tools/ipam/ipam_editor.php:330 -#: ../../enterprise/include/ajax/ipam.ajax.php:524 -msgid "The list of users can manage the networks in the IPAM." -msgstr "La lista de usuarios puede administrar las redes en el IPAM." - -#: ../../enterprise/tools/ipam/ipam_editor.php:331 -#: ../../enterprise/include/ajax/ipam.ajax.php:525 -msgid " Only the admin users can manage networks and edit the networks" -msgstr "" -" Solo los usuarios administradores pueden administrar redes y editar las redes" - -#: ../../enterprise/tools/ipam/ipam_editor.php:332 -#: ../../enterprise/include/ajax/ipam.ajax.php:526 -msgid "Operator users" -msgstr "Usuarios del operador" - -#: ../../enterprise/tools/ipam/ipam_editor.php:338 -#: ../../enterprise/include/ajax/ipam.ajax.php:532 -msgid "All users" -msgstr "Todos los usuarios" - -#: ../../enterprise/views/ncm/agent/details.php:89 -msgid "Script type" -msgstr "Tipo de script" - -#: ../../enterprise/views/ncm/agent/details.php:91 -msgid "Execution last timestamp" -msgstr "ƚltima marca de tiempo de ejecuciĆ³n" - -#: ../../enterprise/views/ncm/agent/details.php:107 -msgid "Retrieve running configuration" -msgstr "Recuperar la configuraciĆ³n en ejecuciĆ³n" - -#: ../../enterprise/views/ncm/agent/details.php:120 -#: ../../enterprise/views/ncm/agent/details.php:383 -msgid "Restore from backup" -msgstr "Restaurar desde la copia de seguridad" - -#: ../../enterprise/views/ncm/agent/details.php:133 -#: ../../enterprise/views/ncm/agent/details.php:325 -#: ../../enterprise/include/lib/NetworkManager.php:85 -msgid "Retrieve firmware version" -msgstr "Recuperar la versiĆ³n del firmware" - -#: ../../enterprise/views/ncm/agent/details.php:172 -msgid "Running without a backup" -msgstr "EjecuciĆ³n sin copia de seguridad" - -#: ../../enterprise/views/ncm/agent/details.php:181 -msgid "Latest configuration retrieved is different from backed one" -msgstr "" -"La Ćŗltima configuraciĆ³n recuperada es diferente de la que tiene copia de " -"seguridad" - -#: ../../enterprise/views/ncm/agent/details.php:184 -msgid "Backup up to date with latest configuration" -msgstr "Copia de seguridad actualizada con la configuraciĆ³n mĆ”s reciente" - -#: ../../enterprise/views/ncm/agent/details.php:208 -msgid "Configuration backup status" -msgstr "Estado de la copia de seguridad de la configuraciĆ³n" - -#: ../../enterprise/views/ncm/agent/details.php:238 -msgid "Last on demand execution" -msgstr "ƚltima ejecuciĆ³n bajo demanda" - -#: ../../enterprise/views/ncm/agent/details.php:246 -#, php-format -msgid "Customize %s" -msgstr "Personalizar %s" - -#: ../../enterprise/views/ncm/agent/details.php:250 -msgid "Execute snippet" -msgstr "Ejecutar snippet" - -#: ../../enterprise/views/ncm/agent/details.php:265 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1542 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1635 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1760 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1835 -#: ../../enterprise/meta/monitoring/wizard/wizard.module.web.php:103 -#: ../../enterprise/meta/monitoring/wizard/wizard.module.local.php:110 -#: ../../enterprise/meta/monitoring/wizard/wizard.agent.php:66 -#: ../../enterprise/meta/monitoring/wizard/wizard.module.network.php:122 -msgid "Preview" -msgstr "Vista previa" - -#: ../../enterprise/views/ncm/agent/details.php:314 -#, php-format -msgid "Current firmware version: %s" -msgstr "VersiĆ³n actual del firmware: %s" - -#: ../../enterprise/views/ncm/agent/details.php:339 -#, php-format -msgid "Configuration backup present, %s" -msgstr "Copia de seguridad de configuraciĆ³n presente, %s" - -#: ../../enterprise/views/ncm/agent/details.php:346 -msgid "There is no configuration backup" -msgstr "No hay copia de seguridad de configuraciĆ³n" - -#: ../../enterprise/views/ncm/agent/details.php:359 -msgid "Backup latest retrieved configuration" -msgstr "Copia de seguridad de la Ćŗltima configuraciĆ³n recuperada" - -#: ../../enterprise/views/ncm/agent/details.php:372 -#: ../../enterprise/include/class/ManageBackups.class.php:302 -#: ../../extensions/files_repo/files_repo_list.php:123 -msgid "Download" -msgstr "Descargar" - -#: ../../enterprise/views/ncm/agent/details.php:401 -#, php-format -msgid "Latest operation \"%s\" was executed %s ago with result: %s %s" -msgstr "La Ćŗltima operaciĆ³n \"%s\" se ejecutĆ³ hace %s con el resultado: %s %s" - -#: ../../enterprise/views/ncm/agent/details.php:414 -#, php-format -msgid "Script executions queued: %d" -msgstr "Ejecuciones de scripts en cola: %d" - -#: ../../enterprise/views/ncm/agent/details.php:424 -#, php-format -msgid "Configuration backup schedule: %s" -msgstr "ProgramaciĆ³n de copia de seguridad de la configuraciĆ³n: %s" - -#: ../../enterprise/views/ncm/agent/details.php:441 -msgid "Device details" -msgstr "Detalles del dispositivo" - -#: ../../enterprise/views/ncm/agent/details.php:483 -msgid "Configuration timestamp" -msgstr "Marca de tiempo de configuraciĆ³n" - -#: ../../enterprise/views/ncm/agent/details.php:484 -msgid "Diff" -msgstr "Diferencia" - -#: ../../enterprise/views/ncm/agent/details.php:490 -msgid "No changes with current backup" -msgstr "Sin cambios en la copia de seguridad actual" - -#: ../../enterprise/views/ncm/agent/details.php:494 -msgid "This is the latest configuration retrieved" -msgstr "Esta es la Ćŗltima configuraciĆ³n recuperada" - -#: ../../enterprise/views/ncm/agent/details.php:507 -#: ../../enterprise/views/ncm/agent/details.php:511 -msgid "This is the current backup." -msgstr "Esta es la copia de seguridad actual." - -#: ../../enterprise/views/ncm/agent/details.php:523 -msgid "Review this configuration" -msgstr "Revisar esta configuraciĆ³n" - -#: ../../enterprise/views/ncm/agent/details.php:534 -msgid "There is no backup to compare with" -msgstr "No hay ninguna copia de seguridad con la que comparar" - -#: ../../enterprise/views/ncm/agent/details.php:545 -msgid "Backup this configuration" -msgstr "Hacer copia de seguridad de esta configuraciĆ³n" - -#: ../../enterprise/views/ncm/agent/details.php:563 -msgid "Configurations registry" -msgstr "Registro de configuraciones" - -#: ../../enterprise/views/ncm/agent/details.php:574 -msgid "Diff between: backup - selected" -msgstr "Diferencia entre: copia de seguridad - seleccionada" - -#: ../../enterprise/views/ncm/agent/details.php:624 -msgid "Retrieve firmware version?" -msgstr "ĀæRecuperar la versiĆ³n del firmware?" - -#: ../../enterprise/views/ncm/agent/details.php:625 -msgid "" -"This action will connect to the device to retrieve firmware version. Are you " -"sure?" -msgstr "" -"Esta acciĆ³n conectarĆ” con dispositivo para recuperar la versiĆ³n del firmware. " -"ĀæEstĆ” seguro?" - -#: ../../enterprise/views/ncm/agent/details.php:635 -msgid "Get running config?" -msgstr "Obtener running-config" - -#: ../../enterprise/views/ncm/agent/details.php:636 -msgid "" -"This action will connect to the device to retrieve latest configuration. Are " -"you sure?" -msgstr "" -"Esta acciĆ³n se conectarĆ” al dispositivo para recuperar la configuraciĆ³n mĆ”s " -"reciente. ĀæEstĆ”s seguro?" - -#: ../../enterprise/views/ncm/agent/details.php:647 -msgid "Backup latest config?" -msgstr "ĀæCopia de seguridad de la Ćŗltima configuraciĆ³n?" - -#: ../../enterprise/views/ncm/agent/details.php:648 -msgid "" -"This action will overwrite current backup to use latest retrieved " -"configuration. Are you sure?" -msgstr "" -"Esta acciĆ³n sobrescribirĆ” la copia de seguridad actual para utilizar la Ćŗltima " -"configuraciĆ³n recuperada. ĀæEstĆ”s seguro?" - -#: ../../enterprise/views/ncm/agent/details.php:656 -msgid "Backup target config?" -msgstr "ĀæConfiguraciĆ³n de destino de copia de seguridad?" - -#: ../../enterprise/views/ncm/agent/details.php:657 -msgid "" -"This action will overwrite current backup to use selected configuration. Are " -"you sure?" -msgstr "" -"Esta acciĆ³n sobreescribirĆ” la copia de seguridad actual para utilizar la " -"configuraciĆ³n seleccionada. ĀæEstĆ” seguro?" - -#: ../../enterprise/views/ncm/agent/details.php:668 -msgid "Restore device configuration?" -msgstr "ĀæRestaurar la configuraciĆ³n del dispositivo?" - -#: ../../enterprise/views/ncm/agent/details.php:669 -msgid "" -"This action will overwrite device configuration with latest backup. Are you " -"sure?" -msgstr "" -"Esta acciĆ³n sobrescribirĆ” la configuraciĆ³n del dispositivo con la copia de " -"seguridad mĆ”s reciente. ĀæEstĆ”s seguro?" - -#: ../../enterprise/views/ncm/agent/details.php:688 -msgid "Customize script execution" -msgstr "Personalizar la ejecuciĆ³n del script" - -#: ../../enterprise/views/ncm/agent/manage.php:57 -msgid "For instance Cisco" -msgstr "Por ejemplo, Cisco" - -#: ../../enterprise/views/ncm/agent/manage.php:59 -msgid "Device manufacturer" -msgstr "Fabricante del dispositivo" - -#: ../../enterprise/views/ncm/agent/manage.php:87 -msgid "For instance Catalyst 9400" -msgstr "Por ejemplo, Catalyst 9400" - -#: ../../enterprise/views/ncm/agent/manage.php:89 -msgid "Device model" -msgstr "Modelo del dispositivo" - -#: ../../enterprise/views/ncm/agent/manage.php:102 -#: ../../godmode/agentes/module_manager_editor_network.php:482 -msgid "Connection method" -msgstr "Modo de conexiĆ³n" - -#: ../../enterprise/views/ncm/agent/manage.php:107 -msgid "connect using SSH" -msgstr "conectarse mediante SSH" - -#: ../../enterprise/views/ncm/agent/manage.php:108 -msgid "connect using telnet" -msgstr "conectarse mediante telnet" - -#: ../../enterprise/views/ncm/agent/manage.php:131 -msgid "Credentials to access device" -msgstr "Credenciales para acceder al dispositivo" - -#: ../../enterprise/views/ncm/agent/manage.php:144 -msgid "Credentials to administrate device" -msgstr "Credenciales para administrar el dispositivo" - -#: ../../enterprise/views/ncm/agent/manage.php:177 -msgid "NCM template to be used" -msgstr "Plantilla NCM que se utilizarĆ”" - -#: ../../enterprise/views/ncm/agent/manage.php:190 -msgid "Backup schedule (if defined)" -msgstr "ProgramaciĆ³n de copia de seguridad (si se define)" - -#: ../../enterprise/views/ncm/agent/manage.php:195 -msgid "No schedule" -msgstr "No programado" - -#: ../../enterprise/views/ncm/agent/manage.php:197 -msgid "Once a day" -msgstr "Una vez al dĆ­a" - -#: ../../enterprise/views/ncm/agent/manage.php:198 -msgid "Once a week" -msgstr "Una vez a la semana" - -#: ../../enterprise/views/ncm/agent/manage.php:199 -msgid "Once a month" -msgstr "Una vez al mes" - -#: ../../enterprise/views/ncm/agent/manage.php:218 -msgid "Launch event if configuration changes" -msgstr "Iniciar evento si cambia la configuraciĆ³n" - -#: ../../enterprise/views/ncm/agent/manage.php:243 -msgid "NCM state" -msgstr "Estado de NCM" - -#: ../../enterprise/views/ncm/agent/modalOnDemandScript.php:63 -msgid "Select firmware file to update to" -msgstr "Seleccione el archivo de firmware al que desea actualizar" - -#: ../../enterprise/views/ncm/agent/modalOnDemandScript.php:75 -msgid "Transfer from url" -msgstr "Transferir desde url" - -#: ../../enterprise/views/ncm/agent/modalOnDemandScript.php:86 -msgid "Target file name" -msgstr "Nombre del archivo de destino" - -#: ../../enterprise/views/ncm/agent/modalOnDemandScript.php:105 -msgid "Customize execution" -msgstr "Personalizar la ejecuciĆ³n" - -#: ../../enterprise/views/ncm/snippets/edit.php:42 -#: ../../enterprise/views/ncm/snippets/list.php:32 -msgid "Snippets" -msgstr "Snippets" - -#: ../../enterprise/views/ncm/snippets/edit.php:73 -#: ../../enterprise/views/ncm/firmwares/edit.php:72 -#: ../../enterprise/views/ncm/templates/edit.php:73 -msgid "Script not defined" -msgstr "Script no definido" - -#: ../../enterprise/views/ncm/snippets/edit.php:91 -#: ../../enterprise/views/ncm/templates/edit.php:160 -#: ../../enterprise/views/ncm/templates/edit.php:188 -#: ../../enterprise/views/ncm/templates/edit.php:216 -#: ../../enterprise/views/ncm/templates/edit.php:244 -#: ../../enterprise/views/ncm/templates/edit.php:271 -#: ../../enterprise/views/ncm/templates/edit.php:298 -msgid "Script details" -msgstr "Detalles del script" - -#: ../../enterprise/views/ncm/firmwares/edit.php:41 -msgid "Firmware" -msgstr "Firmware" - -#: ../../enterprise/views/ncm/firmwares/edit.php:101 -msgid "" -"Comma separated, a vendors list compatible with scripts defined within " -"firmware." -msgstr "" -"Separado por comas, una lista de proveedores compatible con scripts definidos " -"dentro del firmware." - -#: ../../enterprise/views/ncm/firmwares/edit.php:106 -#: ../../enterprise/views/ncm/vendors/edit.php:35 -#: ../../enterprise/views/ncm/vendors/list.php:32 -#: ../../enterprise/views/ncm/templates/edit.php:107 -#: ../../enterprise/views/ncm/templates/list.php:74 -msgid "Vendors" -msgstr "Fabricantes" - -#: ../../enterprise/views/ncm/firmwares/edit.php:129 -msgid "" -"Comma separated, a model list compatible with scripts defined within firmware." -msgstr "" -"Separado por comas, una lista de modelos compatibles con scripts definidos " -"dentro del firmware." - -#: ../../enterprise/views/ncm/firmwares/edit.php:133 -#: ../../enterprise/views/ncm/firmwares/list.php:76 -#: ../../enterprise/views/ncm/templates/edit.php:134 -#: ../../enterprise/views/ncm/templates/list.php:75 -#: ../../enterprise/views/ncm/models/list.php:32 -msgid "Models" -msgstr "Modelos" - -#: ../../enterprise/views/ncm/firmwares/edit.php:149 -msgid "Current binary file will be overwritten, are you sure?" -msgstr "El archivo binario actual se sobrescribirĆ”, ĀæestĆ” seguro?" - -#: ../../enterprise/views/ncm/firmwares/edit.php:154 -msgid "Binary file" -msgstr "Archivo binario" - -#: ../../enterprise/views/ncm/firmwares/list.php:32 -msgid "Firmwares" -msgstr "Firmwares" - -#: ../../enterprise/views/ncm/firmwares/list.php:75 -#: ../../enterprise/views/ncm/devices/list.php:118 -#: ../../enterprise/views/ncm/models/edit.php:88 -#: ../../enterprise/views/ncm/models/list.php:72 -msgid "Vendor" -msgstr "Fabricante" - -#: ../../enterprise/views/ncm/vendors/edit.php:89 -msgid "icon" -msgstr "icono" - -#: ../../enterprise/views/ncm/devices/list.php:32 -#: ../../enterprise/views/ncm/templates/edit.php:42 -#: ../../enterprise/views/ncm/models/edit.php:37 -msgid "Devices" -msgstr "Dispositivos" - -#: ../../enterprise/views/ncm/devices/list.php:69 -msgid "" -"WARNING: This is a new feature and is still at an early stage. It is available " -"with limited features, use it with caution and send us your feedback to " -"improve these current capabilities." -msgstr "" -"ADVERTENCIA: Esta es una nueva caracterĆ­stica y todavĆ­a se encuentra en una " -"etapa temprana. EstĆ” disponible con funciones limitadas, Ćŗselo con precauciĆ³n " -"y envĆ­enos sus comentarios para mejorar estas capacidades actuales." - -#: ../../enterprise/views/ncm/devices/list.php:72 -msgid "" -"Network configuration manager is used to keep configurations and software " -"versions of any network device in your infrastructure under your control." -msgstr "" -"El administrador de configuraciĆ³n de red se utiliza para mantener las " -"configuraciones y versiones de software de cualquier dispositivo de red en su " -"infraestructura bajo su control." - -#: ../../enterprise/views/ncm/devices/list.php:77 -msgid "" -"To start using it, navigatenavigate to your desired agent, tab Network Config " -"Manager, and enable the ncm features,\n" -" you will be asked for the vendor and model of the device." -msgstr "" -"Para comenzar a usarlo, navegue por el agente que desee, seleccione " -"Administrador de configuraciĆ³n de red y habilite las funciones de ncm,\n" -" se le pedirĆ” el proveedor y el modelo del dispositivo." - -#: ../../enterprise/views/ncm/devices/list.php:84 -msgid "Define a NCM template" -msgstr "Definir una plantilla de NCM" - -#: ../../enterprise/views/ncm/devices/list.php:87 -msgid "Configure agents to use NCM templates" -msgstr "Configurar agentes para usar plantillas NCM" - -#: ../../enterprise/views/ncm/devices/list.php:119 -msgid "Model" -msgstr "Modelo" - -#: ../../enterprise/views/ncm/devices/list.php:121 -msgid "Last queued task" -msgstr "ƚltima tarea en cola" - -#: ../../enterprise/views/ncm/devices/list.php:123 -#: ../../enterprise/include/functions_tasklist.php:158 -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:520 -#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:136 -#: ../../enterprise/godmode/alerts/alert_inventory_list.php:224 -#: ../../enterprise/godmode/policies/policy_alerts.php:354 -#: ../../godmode/massive/massive_copy_modules.php:185 -#: ../../godmode/wizards/DiscoveryTaskList.class.php:612 -#: ../../godmode/alerts/alert_list.list.php:485 -msgid "Operations" -msgstr "Operaciones" - -#: ../../enterprise/views/ncm/templates/edit.php:102 -msgid "" -"Comma separated, a vendors list compatible with scripts defined within " -"template." -msgstr "" -"Separado por comas, una lista de proveedores compatible con scripts definidos " -"dentro de la plantilla." - -#: ../../enterprise/views/ncm/templates/edit.php:130 -msgid "" -"Comma separated, a model list compatible with scripts defined within template." -msgstr "" -"Separado por comas, una lista de modelos compatibles con scripts definidos " -"dentro de la plantilla." - -#: ../../enterprise/views/ncm/templates/edit.php:148 -msgid "This script will be used to test devices availability" -msgstr "" -"Este script se utilizarĆ” para probar la disponibilidad de los dispositivos" - -#: ../../enterprise/views/ncm/templates/edit.php:153 -msgid "Script: Test" -msgstr "Script: prueba" - -#: ../../enterprise/views/ncm/templates/edit.php:176 -msgid "This script will be used to retrieve configuration from devices" -msgstr "" -"Este script se utilizarĆ” para recuperar la configuraciĆ³n de los dispositivos" - -#: ../../enterprise/views/ncm/templates/edit.php:181 -msgid "Script: Get configuration" -msgstr "Script: obtener configuraciĆ³n" - -#: ../../enterprise/views/ncm/templates/edit.php:204 -msgid "" -"This script will be used to apply configuration, previously backed up, to " -"devices" -msgstr "" -"Este script se utilizarĆ” para aplicar la configuraciĆ³n, previamente " -"respaldada, a los dispositivos" - -#: ../../enterprise/views/ncm/templates/edit.php:209 -msgid "Script: set configuration" -msgstr "Script: establecer la configuraciĆ³n" - -#: ../../enterprise/views/ncm/templates/edit.php:232 -msgid "This script will be used to retrieve firmware version from devices" -msgstr "" -"Este script se utilizarĆ” para recuperar la versiĆ³n del firmware de los " -"dispositivos" - -#: ../../enterprise/views/ncm/templates/edit.php:237 -msgid "Script: get firmware" -msgstr "Script: obtener firmware" - -#: ../../enterprise/views/ncm/templates/edit.php:259 -msgid "This script will be used to upgrade firmware version of the devices" -msgstr "" -"Este script se utilizarĆ” para actualizar la versiĆ³n de firmware de los " -"dispositivos" - -#: ../../enterprise/views/ncm/templates/edit.php:264 -msgid "Script: set firmware" -msgstr "Script: establecer firmware" - -#: ../../enterprise/views/ncm/templates/edit.php:286 -msgid "This script will be executed on the devices when selecting CUSTOM task" -msgstr "" -"Este script se ejecutarĆ” en los dispositivos al seleccionar la tarea CUSTOM" - -#: ../../enterprise/views/ncm/templates/edit.php:291 -msgid "Script: custom task" -msgstr "Script: tarea personalizada" - -#: ../../enterprise/views/ncm/templates/list.php:76 -msgid "Scripts defined" -msgstr "Scripts definidos" - -#: ../../enterprise/views/cluster/edit.php:41 -#: ../../enterprise/views/cluster/edit.php:68 -#: ../../enterprise/views/cluster/view.php:44 -#: ../../enterprise/views/cluster/view.php:63 -msgid "Cluster list" -msgstr "Lista de clĆŗsters" - -#: ../../enterprise/views/cluster/edit.php:57 -msgid "cluster " -msgstr "clĆŗster " - -#: ../../enterprise/views/cluster/edit.php:88 -msgid "View this cluster" -msgstr "Ver clĆŗster" - -#: ../../enterprise/views/cluster/view.php:50 -#: ../../enterprise/views/cluster/view.php:81 -msgid "Cluster details" -msgstr "Detalles del clĆŗster" - -#: ../../enterprise/views/cluster/view.php:74 -msgid "Edit this cluster" -msgstr "Editar el clĆŗster" - -#: ../../enterprise/views/cluster/view.php:223 -msgid "Force cluster status calculation" -msgstr "Forzar cĆ”lculo del estado del clĆŗster" - -#: ../../enterprise/views/cluster/view.php:314 -msgid "Cluster agent" -msgstr "Agente del clĆŗster" - -#: ../../enterprise/views/cluster/list.php:122 -msgid "New cluster" -msgstr "Nuevo clĆŗster" - -#: ../../enterprise/operation/log/elasticsearch_interface.php:31 -#: ../../enterprise/operation/log/log_viewer.php:377 -#: ../../enterprise/operation/log/log_viewer.php:417 -#: ../../enterprise/operation/menu.php:181 -#: ../../enterprise/meta/general/main_menu.php:247 -#: ../../enterprise/meta/general/main_header.php:143 -#: ../../enterprise/meta/include/functions_meta.php:293 -#: ../../enterprise/meta/advanced/metasetup.php:80 -#: ../../enterprise/meta/advanced/metasetup.php:223 -msgid "Log viewer" -msgstr "Visor de logs" - -#: ../../enterprise/operation/log/elasticsearch_interface.php:39 -#: ../../enterprise/operation/log/log_viewer.php:391 -#: ../../enterprise/operation/menu.php:211 -msgid "Elasticsearch Interface" -msgstr "Interfaz de ElasticSearch" - -#: ../../enterprise/operation/log/elasticsearch_interface.php:49 -msgid "" -"This is a view to interface with Elasticsearch directly from WEB console. \n" -"Please note that you can damage your Elasticsearch if you don`t know exactly " -"what are you are doing. \n" -"This view is intended to be used only by users with a knowledge of " -"Elasticsearch" -msgstr "" -"Esta es una vista de la interfaz de ElasticSearch directamente desde la " -"consola WEB. \n" -"Tenga en cuenta que puede provocar fallos en ElasticSearch si no sabe lo que " -"estĆ” haciendo con exactitud. \n" -"Esta vista esta destinada a aquellos usuarios que conocen bien ElasticSearch" - -#: ../../enterprise/operation/log/log_viewer.php:405 -#: ../../enterprise/operation/log/log_viewer.php:424 -#: ../../enterprise/operation/log/log_viewer.php:435 -msgid "Log sources" -msgstr "Fuentes de log" - -#: ../../enterprise/operation/log/log_viewer.php:477 -#: ../../enterprise/godmode/reporting/graph_template_item_editor.php:189 -#: ../../enterprise/godmode/reporting/graph_template_item_editor.php:244 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3504 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3579 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3735 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3806 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:4240 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:4385 -msgid "Exact match" -msgstr "Coincidencia exacta" - -#: ../../enterprise/operation/log/log_viewer.php:478 -msgid "All words" -msgstr "Todas las palabras" - -#: ../../enterprise/operation/log/log_viewer.php:479 -msgid "Any word" -msgstr "Cualquier palabra" - -#: ../../enterprise/operation/log/log_viewer.php:482 -msgid "Search mode" -msgstr "Modo de bĆŗsqueda" - -#: ../../enterprise/operation/log/log_viewer.php:529 -msgid "Full context" -msgstr "Contexto completo" - -#: ../../enterprise/operation/log/log_viewer.php:667 -#: ../../enterprise/operation/log/log_viewer.php:668 -msgid "Edit sources" -msgstr "Editar fuentes" - -#: ../../enterprise/operation/log/log_viewer.php:711 -msgid "Show log entries" -msgstr "Mostrar entradas de log" - -#: ../../enterprise/operation/log/log_viewer.php:712 -msgid "Graph log results" -msgstr "Resultados de logs de grĆ”ficas" - -#: ../../enterprise/operation/log/log_viewer.php:714 -msgid "Display mode" -msgstr "Modo de visualizaciĆ³n" - -#: ../../enterprise/operation/log/log_viewer.php:727 -msgid "Use capture model" -msgstr "Usar modelo de captura" - -#: ../../enterprise/operation/log/log_viewer.php:757 -msgid "Create new model" -msgstr "Crear nuevo modelo" - -#: ../../enterprise/operation/log/log_viewer.php:761 -#: ../../godmode/reporting/graph_builder.main.php:220 -msgid "Horizontal bars" -msgstr "Barras horizontales" - -#: ../../enterprise/operation/log/log_viewer.php:762 -#: ../../godmode/reporting/graph_builder.main.php:221 -msgid "Vertical bars" -msgstr "Barras verticales" - -#: ../../enterprise/operation/log/log_viewer.php:764 -msgid "Graph type" -msgstr "Tipo de grĆ”fica" - -#: ../../enterprise/operation/log/log_viewer.php:779 -msgid "Advanced options " -msgstr "Opciones avanzadas " - -#: ../../enterprise/operation/log/log_viewer.php:899 -msgid "" -"The maximum limit of rows has been exceeded. Please enter an email to send the " -"csv file" -msgstr "" -"El lĆ­mite mĆ”ximo de filas se ha superado. AƱada un correo electrĆ³nico para " -"enviar el archivo CSV" - -#: ../../enterprise/operation/log/log_viewer.php:901 -msgid "e-mail address" -msgstr "direcciĆ³n de correo electrĆ³nico" - -#: ../../enterprise/operation/log/log_viewer.php:904 -msgid "" -"WARNING: If your email size exceeds your mail attachment size limit, the file " -"will be saved in the local attachment folder." -msgstr "" -"ADVERTENCIA: Si el tamaƱo del correo electrĆ³nico supera el lĆ­mite de tamaƱo de " -"archivo adjunto, el archivo se guardarĆ” en la carpeta de adjuntos local." - -#: ../../enterprise/operation/log/log_viewer.php:1022 -msgid "The start date cannot be greater than the end date" -msgstr "La fecha de inicio no puede ser posterior a la fecha de finalizaciĆ³n." - -#: ../../enterprise/operation/log/log_viewer.php:1450 -msgid "Add new capture model" -msgstr "AƱadir nuevo modelo de captura" - -#: ../../enterprise/operation/log/log_viewer.php:1453 -msgid "Edit capture model" -msgstr "Editar modelo de captura" - -#: ../../enterprise/operation/log/log_viewer.php:1536 -msgid "Error create new model" -msgstr "Error al crear nuevo modelo" - -#: ../../enterprise/operation/log/log_viewer.php:1563 -msgid "Error delete model" -msgstr "Error al borrar modelo" - -#: ../../enterprise/operation/log/log_viewer.php:1609 -msgid "Error update model" -msgstr "Error al actualizar modelo" - -#: ../../enterprise/operation/services/services.treeview_services.php:111 -#: ../../enterprise/operation/services/services.list.php:284 -#: ../../enterprise/operation/services/services.table_services.php:206 -msgid "Show only favourites" -msgstr "Mostrar solo favoritos" - -#: ../../enterprise/operation/services/services.treeview_services.php:151 -msgid "No favourite services defined." -msgstr "No hay servicios favoritos definidos." - -#: ../../enterprise/operation/services/services.treeview_services.php:153 -#: ../../enterprise/operation/services/services.list.php:447 -#: ../../enterprise/operation/services/services.list.php:456 -#: ../../enterprise/operation/services/services.table_services.php:359 -#: ../../enterprise/operation/services/services.table_services.php:365 -msgid "No services defined." -msgstr "No hay servicios definidos" - -#: ../../enterprise/operation/services/services.treeview_services.php:181 -#: ../../enterprise/operation/services/services.list.php:719 -#: ../../enterprise/operation/services/services.table_services.php:450 -msgid "Create Service" -msgstr "Crear servicio" - -#: ../../enterprise/operation/services/services.treeview_services.php:247 -#: ../../godmode/groups/group_list.php:1035 -msgid "Found groups" -msgstr "Grupos encontrados" - -#: ../../enterprise/operation/services/services.service.php:55 -#: ../../enterprise/operation/services/services.service_map.php:62 -#: ../../enterprise/godmode/services/services.service.php:309 -#: ../../enterprise/godmode/services/services.service.php:354 -msgid "Not found" -msgstr "No encontrado" - -#: ../../enterprise/operation/services/services.service.php:90 -msgid "No Services" -msgstr "Sin servicios" - -#: ../../enterprise/operation/services/services.service.php:203 -#: ../../enterprise/operation/services/services.list.php:586 -msgid "SLA graph" -msgstr "GrĆ”fico SLA" - -#: ../../enterprise/operation/services/services.service.php:227 -msgid "List of elements" -msgstr "Lista de elementos" - -#: ../../enterprise/operation/services/services.list.php:62 -msgid "List of services" -msgstr "de los Servicios" - -#: ../../enterprise/operation/services/services.list.php:100 -msgid "Services successfully deleted" -msgstr "Servicios eliminados correctamente" - -#: ../../enterprise/operation/services/services.list.php:101 -#, php-format -msgid "Error while deleting services: %s" -msgstr "Error al eliminar servicios: %s" - -#: ../../enterprise/operation/services/services.list.php:104 -#: ../../enterprise/include/functions_visual_map.php:683 -msgid "No services selected" -msgstr "NingĆŗn servicio seleccionado" - -#: ../../enterprise/operation/services/services.list.php:118 -msgid "Service deleted successfully" -msgstr "Servicio eliminado correctamente" - -#: ../../enterprise/operation/services/services.list.php:119 -#, php-format -msgid "Error deleting service %s" -msgstr "Error al eliminar el servicio %s" - -#: ../../enterprise/operation/services/services.list.php:127 -msgid "Service forced successfully" -msgstr "Servicio forzado correctamente" - -#: ../../enterprise/operation/services/services.list.php:128 -msgid "Error service forced" -msgstr "Error al forzar el servicio" - -#: ../../enterprise/operation/services/services.list.php:276 -#: ../../enterprise/operation/services/services.table_services.php:198 -#: ../../enterprise/godmode/services/services.service.php:659 -#: ../../enterprise/godmode/massive/massive_create_services.php:699 -msgid "Smart" -msgstr "Inteligente" - -#: ../../enterprise/operation/services/services.list.php:278 -#: ../../enterprise/operation/services/services.table_services.php:200 -#: ../../enterprise/godmode/servers/HA_cluster.php:175 -#: ../../enterprise/godmode/services/services.service.php:651 -#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:880 -#: ../../enterprise/godmode/massive/massive_create_services.php:690 -#: ../../godmode/massive/massive_edit_modules.php:933 -#: ../../godmode/alerts/alert_view.php:407 -msgid "Mode" -msgstr "Modo" - -#: ../../enterprise/operation/services/services.list.php:298 -#: ../../enterprise/operation/services/services.table_services.php:220 -msgid "Show only root services" -msgstr "Mostrar solo los servicios root" - -#: ../../enterprise/operation/services/services.list.php:590 -msgid "Status graph" -msgstr "GrĆ”fica de estados" - -#: ../../enterprise/operation/services/services.service_map.php:116 -msgid "Show tree" -msgstr "Mostrar arbol" - -#: ../../enterprise/operation/services/services.service_map.php:130 -msgid "Show sunburst" -msgstr "Mostrar sunburst" - -#: ../../enterprise/operation/services/services.table_services.php:45 -#: ../../godmode/groups/group_list.php:355 -msgid "Table view" -msgstr "Vista de tabla" - -#: ../../enterprise/operation/services/services.php:90 -#: ../../enterprise/operation/services/services.php:182 -#: ../../enterprise/godmode/services/services.elements.php:697 -#: ../../enterprise/godmode/services/services.service.php:396 -msgid "Services list" -msgstr "Lista de servicios" - -#: ../../enterprise/operation/services/services.php:105 -#: ../../enterprise/godmode/services/services.elements.php:711 -#: ../../enterprise/godmode/services/services.service.php:410 -msgid "Config Service" -msgstr "Configurar servicios" - -#: ../../enterprise/operation/services/services.php:123 -#: ../../enterprise/godmode/services/services.elements.php:728 -#: ../../enterprise/godmode/services/services.service.php:427 -msgid "Config Elements" -msgstr "Configurar elementos" - -#: ../../enterprise/operation/services/services.php:136 -#: ../../enterprise/godmode/services/services.elements.php:740 -#: ../../enterprise/godmode/services/services.service.php:439 -msgid "Bulk service elements operations" -msgstr "Operaciones de elementos de servicio masivos" - -#: ../../enterprise/operation/services/services.php:152 -#: ../../enterprise/godmode/services/services.elements.php:755 -#: ../../enterprise/godmode/services/services.service.php:454 -msgid "View Service" -msgstr "Ver servicio" - -#: ../../enterprise/operation/services/services.php:197 -msgid "Service table view" -msgstr "Vista de tabla de servicios" - -#: ../../enterprise/operation/services/services.php:212 -msgid "Service tree view" -msgstr "Vista de Ć”rbol de servicios" - -#: ../../enterprise/operation/services/services.php:229 -msgid "Bulk creation" -msgstr "CreaciĆ³n masiva" - -#: ../../enterprise/operation/reporting/custom_reporting.php:14 -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:503 -msgid "PDF" -msgstr "PDF" - -#: ../../enterprise/operation/reporting/custom_reporting.php:16 -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:504 -msgid "JSON" -msgstr "JSON" - -#: ../../enterprise/operation/reporting/custom_reporting.php:72 -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:589 -msgid "Export to JSON" -msgstr "Exportar a JSON" - -#: ../../enterprise/operation/reporting/custom_reporting.php:90 -#: ../../enterprise/operation/reporting/custom_reporting.php:164 -#: ../../enterprise/include/functions_reporting.php:8218 -msgid "Send by email" -msgstr "Enviar por correo electrĆ³nico" - -#: ../../enterprise/operation/reporting/custom_reporting.php:101 -#: ../../enterprise/include/functions_reporting.php:8150 -msgid "ID Report" -msgstr "ID Informe" - -#: ../../enterprise/operation/reporting/custom_reporting.php:124 -#: ../../enterprise/include/functions_cron.php:186 -#: ../../enterprise/include/functions_cron.php:236 -#: ../../enterprise/include/functions_reporting.php:8178 -msgid "Send to emails (separated by comma)" -msgstr "Enviar a emails (separados por comas)" - -#: ../../enterprise/operation/reporting/custom_reporting.php:144 -#: ../../enterprise/operation/reporting/custom_reporting.php:158 -#: ../../enterprise/include/functions_cron.php:800 -#: ../../enterprise/include/functions_cron.php:833 -#: ../../enterprise/include/functions_reporting.php:8198 -#: ../../enterprise/include/functions_reporting.php:8212 -msgid "This is an optional field" -msgstr "Este campo es opcional" - -#: ../../enterprise/operation/reporting/custom_reporting.php:200 -#: ../../enterprise/include/functions_reporting.php:8306 -msgid "Send by email " -msgstr "Enviar por correo electrĆ³nico " - -#: ../../enterprise/operation/menu.php:32 -msgid "Cluster View" -msgstr "Visor de clĆŗsters" - -#: ../../enterprise/operation/menu.php:45 -#: ../../enterprise/godmode/reporting/aws_view.php:106 -#: ../../enterprise/godmode/reporting/aws_view.php:139 -msgid "AWS View" -msgstr "Vista AWS" - -#: ../../enterprise/operation/menu.php:143 -msgid "Transactional map" -msgstr "Mapa transaccional" - -#: ../../enterprise/operation/menu.php:160 -#: ../../enterprise/godmode/reporting/mysql_builder.php:79 -#: ../../enterprise/godmode/reporting/mysql_builder.php:206 -msgid "Custom SQL" -msgstr "SQL personalizado" - -#: ../../enterprise/operation/menu.php:170 -#: ../../enterprise/operation/snmpconsole/snmp_view.php:82 -#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor_form.php:24 -#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:44 -msgid "SNMP trap editor" -msgstr "Editor de traps SNMP" - -#: ../../enterprise/operation/menu.php:191 -#: ../../enterprise/operation/agentes/tag_view.php:41 -msgid "Tag view" -msgstr "Visor de etiquetas" - -#: ../../enterprise/operation/menu.php:200 -#: ../../enterprise/include/class/ManageBackups.class.php:121 -msgid "DB Backup Manager" -msgstr "Backup Manager de la BBDD" - -#: ../../enterprise/operation/agentes/policy_view.php:38 -msgid "This agent has no policy assigned" -msgstr "Este agente no tiene ninguna polĆ­tica asignada." - -#: ../../enterprise/operation/agentes/policy_view.php:58 -#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:38 -#: ../../enterprise/godmode/massive/massive_delete_alerts_policy.php:38 -#: ../../enterprise/godmode/massive/massive_edit_tags_policy.php:40 -#: ../../enterprise/godmode/massive/massive_add_alerts_policy.php:38 -#: ../../enterprise/godmode/massive/massive_add_modules_policy.php:40 -#: ../../enterprise/godmode/massive/massive_tags_edit_policy.php:40 -#: ../../enterprise/godmode/policies/policy_agents.php:326 -#: ../../enterprise/godmode/policies/policy_queue.php:218 -#: ../../enterprise/godmode/policies/policy_linking.php:117 -#: ../../enterprise/godmode/policies/policy_modules.php:476 -#: ../../enterprise/godmode/policies/policies.php:268 -#: ../../enterprise/godmode/policies/policy_external_alerts.php:309 -#: ../../enterprise/godmode/policies/configure_policy.php:81 -#: ../../enterprise/godmode/policies/policy_inventory_modules.php:91 -#: ../../enterprise/godmode/policies/policy_alerts.php:64 -#: ../../enterprise/godmode/policies/policy_collections.php:50 -#: ../../enterprise/godmode/policies/policy_plugins.php:38 -#, php-format -msgid "" -"This node is configured with centralized mode. All policies information is " -"read only. Go to %s to manage it." -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." - -#: ../../enterprise/operation/agentes/policy_view.php:69 -#: ../../enterprise/godmode/policies/policy_agents.php:856 -#: ../../enterprise/godmode/policies/policy_agents.php:1371 -msgid "Last application" -msgstr "ƚltima aplicaciĆ³n" - -#: ../../enterprise/operation/agentes/policy_view.php:83 -#: ../../enterprise/godmode/policies/policy_agents.php:1102 -#: ../../enterprise/godmode/policies/policy_agents.php:1427 -msgid "Policy applied" -msgstr "PolĆ­tica aplicada" - -#: ../../enterprise/operation/agentes/policy_view.php:89 -msgid "Policy outdate" -msgstr "PolĆ­tica obsoleta" - -#: ../../enterprise/operation/agentes/policy_view.php:159 -#: ../../enterprise/operation/agentes/policy_view.php:169 -msgid "Toggle the collection table" -msgstr "Cambiar la tabla de la colecciĆ³n" - -#: ../../enterprise/operation/agentes/policy_view.php:164 -#: ../../enterprise/operation/agentes/collection_view.php:76 -#: ../../enterprise/godmode/agentes/collection_manager.php:207 -msgid "Dir" -msgstr "Dir" - -#: ../../enterprise/operation/agentes/policy_view.php:165 -msgid "Descripttion" -msgstr "DescripciĆ³n" - -#: ../../enterprise/operation/agentes/policy_view.php:173 -msgid "Show Collection" -msgstr "Mostrar colecciones" - -#: ../../enterprise/operation/agentes/policy_view.php:195 -#: ../../enterprise/operation/agentes/policy_view.php:196 -#: ../../enterprise/operation/agentes/collection_view.php:108 -#: ../../enterprise/godmode/agentes/collection_manager.php:129 -#: ../../enterprise/godmode/agentes/collection_manager.php:130 -#: ../../enterprise/godmode/agentes/collection_manager.php:254 -msgid "Show files" -msgstr "Mostrar archivos" - -#: ../../enterprise/operation/agentes/policy_view.php:217 -#: ../../enterprise/operation/agentes/policy_view.php:218 -#: ../../enterprise/operation/agentes/collection_view.php:128 -#: ../../enterprise/operation/agentes/collection_view.php:129 -#: ../../enterprise/godmode/policies/policy_collections.php:224 -#: ../../enterprise/godmode/policies/policy_collections.php:296 -msgid "Outdate" -msgstr "Obsoleto" - -#: ../../enterprise/operation/agentes/policy_view.php:253 -#: ../../enterprise/operation/agentes/policy_view.php:265 -msgid "Toggle the alert table" -msgstr "Cambia a la tabla de alertas" - -#: ../../enterprise/operation/agentes/policy_view.php:269 -msgid "Show Alert" -msgstr "Mostrar alertas" - -#: ../../enterprise/operation/agentes/policy_view.php:390 -#: ../../enterprise/operation/agentes/policy_view.php:402 -msgid "Toggle the module table" -msgstr "Cambiar a la tabla de alertas" - -#: ../../enterprise/operation/agentes/policy_view.php:394 -msgid "Relationship" -msgstr "RelaciĆ³n" - -#: ../../enterprise/operation/agentes/policy_view.php:394 -#: ../../enterprise/godmode/policies/policy_agents.php:849 -msgid "R." -msgstr "R." - -#: ../../enterprise/operation/agentes/policy_view.php:406 -msgid "Show Modules" -msgstr "Mostrar mĆ³dulos" - -#: ../../enterprise/operation/agentes/policy_view.php:425 -msgid "(Un-adopted)" -msgstr "(Desadoptados)" - -#: ../../enterprise/operation/agentes/policy_view.php:428 -msgid "(Adopted)" -msgstr "(Adoptados)" - -#: ../../enterprise/operation/agentes/policy_view.php:433 -msgid "(Un-adopted) (Unlinked)" -msgstr "(Desadoptados)(Desvinculados)" - -#: ../../enterprise/operation/agentes/policy_view.php:436 -msgid "(Adopted) (Unlinked)" -msgstr "(Adoptados)(Desvinculados)" - -#: ../../enterprise/operation/agentes/policy_view.php:457 -#: ../../godmode/agentes/module_manager.php:1086 -msgid "Non initialized module" -msgstr "MĆ³dulo no iniciado" - -#: ../../enterprise/operation/agentes/manage_transmap_creation_phases_data.php:34 -#: ../../enterprise/operation/agentes/manage_transmap_creation.php:115 -#: ../../enterprise/operation/agentes/manage_transmap_creation.php:332 -#: ../../enterprise/operation/agentes/manage_transmap_creation.php:417 -#: ../../enterprise/operation/agentes/manage_transmap.php:56 -msgid "Transactions List" -msgstr "Lista de transacciones" - -#: ../../enterprise/operation/agentes/manage_transmap_creation_phases_data.php:42 -#: ../../enterprise/operation/agentes/manage_transmap_creation.php:139 -#: ../../enterprise/operation/agentes/manage_transmap_creation.php:441 -#: ../../enterprise/operation/agentes/manage_transmap.php:96 -msgid "Edit Transaction" -msgstr "Editar transacciĆ³n" - -#: ../../enterprise/operation/agentes/manage_transmap_creation_phases_data.php:50 -msgid "Go back to phases list" -msgstr "Volver a lista de fases" - -#: ../../enterprise/operation/agentes/manage_transmap_creation_phases_data.php:56 -msgid "Transactional Map - Phase - " -msgstr "Mapa transaccional - Fase - " - -#: ../../enterprise/operation/agentes/manage_transmap_creation_phases_data.php:74 -#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:404 -#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:431 -msgid "Launch script" -msgstr "Lanzar script" - -#: ../../enterprise/operation/agentes/manage_transmap_creation_phases_data.php:77 -#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:1057 -#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:500 -#: ../../godmode/massive/massive_edit_modules.php:1135 -#: ../../godmode/agentes/module_manager_editor_common.php:1138 -msgid "Retries" -msgstr "Reintentos" - -#: ../../enterprise/operation/agentes/manage_transmap_creation_phases_data.php:80 -#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:1044 -#: ../../godmode/massive/massive_edit_modules.php:1122 -#: ../../godmode/agentes/module_manager_editor_common.php:1135 -msgid "Timeout" -msgstr "Tiempo de espera" - -#: ../../enterprise/operation/agentes/collection_view.php:60 -#: ../../enterprise/godmode/agentes/collection_manager.php:37 -msgid "This agent have not a remote configuration, please set it." -msgstr "Este agente no se ha configurado remotamente. Por favor, configĆŗralo." - -#: ../../enterprise/operation/agentes/collection_view.php:66 -msgid "No collection assigned to this agent" -msgstr "No se ha asignado ninguna colecciĆ³n a este agente." - -#: ../../enterprise/operation/agentes/collection_view.php:139 -#: ../../enterprise/operation/agentes/collection_view.php:140 -#: ../../enterprise/meta/advanced/collections.data.php:383 -#: ../../enterprise/meta/advanced/collections.data.php:384 -#: ../../enterprise/godmode/agentes/collection_manager.php:175 -#: ../../enterprise/godmode/agentes/collection_manager.php:176 -#: ../../enterprise/godmode/agentes/collection_manager.php:290 -#: ../../enterprise/godmode/agentes/collection_manager.php:291 -#: ../../enterprise/godmode/agentes/collections.data.php:477 -#: ../../enterprise/godmode/agentes/collections.data.php:478 -msgid "The collection directory does not exist." -msgstr "El directorio donde se guardan las colecciones no existe." - -#: ../../enterprise/operation/agentes/url_route_analyzer.php:39 -msgid "No agent selected" -msgstr "No hay ningĆŗn agente seleccionado." - -#: ../../enterprise/operation/agentes/url_route_analyzer.php:42 -msgid "Route not found" -msgstr "Ruta no encontrada" - -#: ../../enterprise/operation/agentes/wux_console_view.php:224 -msgid "Selected transaction has no stats" -msgstr "La transacciĆ³n seleccionada no tiene estadĆ­sticas." - -#: ../../enterprise/operation/agentes/wux_console_view.php:242 -msgid "No WUX transactions found." -msgstr "Ninguna transacciĆ³n WUX encontrada" - -#: ../../enterprise/operation/agentes/wux_console_view.php:261 -#: ../../enterprise/operation/agentes/ux_console_view.php:133 -msgid "Transaction" -msgstr "TransacciĆ³n" - -#: ../../enterprise/operation/agentes/wux_console_view.php:286 -#: ../../enterprise/operation/agentes/ux_console_view.php:142 -msgid "Show transaction" -msgstr "Mostrar transacciĆ³n" - -#: ../../enterprise/operation/agentes/wux_console_view.php:332 -#: ../../enterprise/operation/agentes/ux_console_view.php:266 -msgid "Global results" -msgstr "Resultados globales" - -#: ../../enterprise/operation/agentes/wux_console_view.php:357 -msgid "Failed: " -msgstr "Fallo: " - -#: ../../enterprise/operation/agentes/wux_console_view.php:378 -msgid "Success: " -msgstr "Ɖxito: " - -#: ../../enterprise/operation/agentes/wux_console_view.php:384 -msgid "Total transaction time: " -msgstr "Tiempo total de la transacciĆ³n: " - -#: ../../enterprise/operation/agentes/wux_console_view.php:398 -#, 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 -msgid "View all stats" -msgstr "Ver todas las estadĆ­sticas" - -#: ../../enterprise/operation/agentes/wux_console_view.php:570 -#: ../../enterprise/operation/agentes/ux_console_view.php:332 -msgid "Transaction history" -msgstr "HistĆ³rico de transacciones" - -#: ../../enterprise/operation/agentes/wux_console_view.php:611 -msgid "Invalid transaction." -msgstr "TransacciĆ³n no vĆ”lida" - -#: ../../enterprise/operation/agentes/transactional_map.php:61 -msgid "List of transactions" -msgstr "Lista de transacciones" - -#: ../../enterprise/operation/agentes/transactional_map.php:74 -#: ../../enterprise/operation/agentes/manage_transmap_creation.php:173 -#: ../../enterprise/operation/agentes/manage_transmap_creation.php:353 -#: ../../enterprise/operation/agentes/manage_transmap_creation.php:475 -#: ../../enterprise/operation/agentes/manage_transmap.php:176 -msgid "Transactional Map" -msgstr "Mapa transaccional" - -#: ../../enterprise/operation/agentes/transactional_map.php:149 -msgid "Name can't be empty" -msgstr "El nombre no se puede quedar en blanco." - -#: ../../enterprise/operation/agentes/transactional_map.php:206 -msgid "Transaction name" -msgstr "Nombre de la transacciĆ³n" - -#: ../../enterprise/operation/agentes/transactional_map.php:209 -msgid "Running status" -msgstr "Estado de ejecuciĆ³n" - -#: ../../enterprise/operation/agentes/transactional_map.php:211 -msgid "Time spent" -msgstr "Tiempo utilizado" - -#: ../../enterprise/operation/agentes/transactional_map.php:254 -msgid "Stopped" -msgstr "Detenido" - -#: ../../enterprise/operation/agentes/transactional_map.php:260 -msgid "Starting" -msgstr "Iniciando" - -#: ../../enterprise/operation/agentes/transactional_map.php:260 -msgid "Stopping" -msgstr "Deteniendo" - -#: ../../enterprise/operation/agentes/transactional_map.php:265 -#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:554 -#: ../../godmode/agentes/planned_downtime.list.php:616 -#: ../../godmode/agentes/planned_downtime.list.php:688 -msgid "Running" -msgstr "EjecutĆ”ndose" - -#: ../../enterprise/operation/agentes/transactional_map.php:439 -msgid "Edit phases" -msgstr "Editar fases" - -#: ../../enterprise/operation/agentes/transactional_map.php:461 -msgid "Go to `Status` module" -msgstr "Vaya al mĆ³dulo 'Estado'" - -#: ../../enterprise/operation/agentes/transactional_map.php:492 -msgid "Error in phases section" -msgstr "Error en la secciĆ³n de fases" - -#: ../../enterprise/operation/agentes/transactional_map.php:512 -#: ../../enterprise/operation/agentes/manage_transmap_creation.php:340 -msgid "Create Transaction" -msgstr "Crear transacciĆ³n" - -#: ../../enterprise/operation/agentes/manage_transmap_creation.php:63 -msgid "Please, reset the transaction" -msgstr "Por favor, reinicia la transacciĆ³n." - -#: ../../enterprise/operation/agentes/manage_transmap_creation.php:102 -msgid "Successfully data updated" -msgstr "Datos actualizados correctamente" - -#: ../../enterprise/operation/agentes/manage_transmap_creation.php:103 -msgid "Could not be data updated" -msgstr "Error al actualizar los datos" - -#: ../../enterprise/operation/agentes/manage_transmap_creation.php:127 -#: ../../enterprise/operation/agentes/manage_transmap_creation.php:429 -#: ../../enterprise/operation/agentes/manage_transmap.php:84 -msgid "Edit main data" -msgstr "Editar datos principales" - -#: ../../enterprise/operation/agentes/manage_transmap_creation.php:152 -#: ../../enterprise/operation/agentes/manage_transmap_creation.php:454 -#: ../../enterprise/operation/agentes/manage_transmap.php:109 -msgid "View Transaction" -msgstr "Ver transacciĆ³n" - -#: ../../enterprise/operation/agentes/manage_transmap_creation.php:160 -msgid "Create Phase" -msgstr "Fase de creaciĆ³n" - -#: ../../enterprise/operation/agentes/manage_transmap_creation.php:185 -msgid "Index" -msgstr "ƍndice" - -#: ../../enterprise/operation/agentes/manage_transmap_creation.php:188 -msgid "Dependencies" -msgstr "Dependencias" - -#: ../../enterprise/operation/agentes/manage_transmap_creation.php:189 -msgid "Enables" -msgstr "Activa" - -#: ../../enterprise/operation/agentes/manage_transmap_creation.php:219 -#: ../../enterprise/include/ajax/transactional.ajax.php:174 -msgid "The phase does not have a defined script" -msgstr "La fase no tiene un script definido." - -#: ../../enterprise/operation/agentes/manage_transmap_creation.php:254 -msgid "Not valid dependencies field" -msgstr "Campo de dependencias no vĆ”lido" - -#: ../../enterprise/operation/agentes/manage_transmap_creation.php:260 -msgid "Not valid enables field" -msgstr "Campo de activaciĆ³n no vĆ”lido" - -#: ../../enterprise/operation/agentes/manage_transmap_creation.php:275 -#: ../../enterprise/include/ajax/transactional.ajax.php:211 -msgid "Edit Data" -msgstr "Editar datos" - -#: ../../enterprise/operation/agentes/manage_transmap_creation.php:367 -#: ../../enterprise/operation/agentes/manage_transmap_creation.php:493 -msgid "Loop interval" -msgstr "Intervalo del bucle" - -#: ../../enterprise/operation/agentes/manage_transmap_creation.php:462 -msgid "Transactional Map - Edit Transaction" -msgstr "Mapa transaccional - Editar transacciĆ³n" - -#: ../../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/agent_inventory.diff_view.php:44 -msgid "Unsucessful get module inventory data." -msgstr "No se han podido obtener datos del mĆ³dulo de inventario." - -#: ../../enterprise/operation/agentes/agent_inventory.diff_view.php:173 -#: ../../enterprise/operation/agentes/agent_inventory.diff_view.php:176 -#: ../../mobile/operation/modules.php:799 ../../mobile/operation/tactical.php:239 -#: ../../mobile/operation/events.php:871 -#: ../../mobile/operation/module_graph.php:477 -#: ../../mobile/operation/agents.php:463 -#: ../../godmode/reporting/visual_console_builder.wizard.php:538 -msgid "Loading..." -msgstr "Cargandoā€¦" - -#: ../../enterprise/operation/agentes/manage_transmap.php:153 -msgid "Return to windowed mode" -msgstr "Volver al modo ventana" - -#: ../../enterprise/operation/agentes/manage_transmap.php:182 -msgid "Transaction not found" -msgstr "TransacciĆ³n no encontrada" - -#: ../../enterprise/operation/agentes/manage_transmap.php:185 -msgid "Master lock file not found (No data to show)" -msgstr "Archivo de bloqueo maestro no encontrado (no hay datos que mostrar)" - -#: ../../enterprise/operation/agentes/manage_transmap.php:188 -msgid "Transaction is stopped" -msgstr "TransacciĆ³n detenida" - -#: ../../enterprise/operation/agentes/manage_transmap.php:191 -msgid "Error, please check the transaction phases" -msgstr "Error. Por favor, comprueba las fases de la transacciĆ³n." - -#: ../../enterprise/operation/agentes/ux_console_view.php:43 -msgid "No ux transaction selected." -msgstr "Ninguna transacciĆ³n UX seleccionada" - -#: ../../enterprise/operation/agentes/ux_console_view.php:124 -msgid "No ux transactions found." -msgstr "Ninguna transacciĆ³n UX encontrada" - -#: ../../enterprise/operation/agentes/ux_console_view.php:168 -msgid "Execution results for transaction " -msgstr "Resultados de ejecuciĆ³n para la transacciĆ³n " - -#: ../../enterprise/operation/agentes/ver_agente.php:215 -#: ../../enterprise/include/functions_groups.php:81 -#: ../../enterprise/meta/advanced/collections.php:341 -#: ../../enterprise/godmode/agentes/collections.php:379 -#: ../../godmode/agentes/configurar_agente.php:702 -msgid "Collection" -msgstr "ColecciĆ³n" - -#: ../../enterprise/operation/agentes/ver_agente.php:258 -msgid "URL Route Analyzer" -msgstr "Analizador de ruta de URL" - -#: ../../enterprise/operation/agentes/ver_agente.php:274 -msgid "UX Console" -msgstr "Consola UX" - -#: ../../enterprise/operation/agentes/ver_agente.php:290 -msgid "WUX Console" -msgstr "Consola WUX" - -#: ../../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:2078 -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/include/functions_cron.php:178 -#: ../../enterprise/include/functions_cron.php:256 -#: ../../enterprise/include/functions_cron.php:331 -#: ../../enterprise/include/functions_cron.php:375 -msgid "Report to build" -msgstr "Informe a crear" - -#: ../../enterprise/include/functions_cron.php:199 -#: ../../enterprise/include/functions_cron.php:249 -#: ../../enterprise/include/functions_cron.php:275 -msgid "Report Type" -msgstr "Tipo de informe" - -#: ../../enterprise/include/functions_cron.php:206 -#: ../../enterprise/include/functions_cron.php:353 -msgid "Template to build" -msgstr "Plantilla a crear" - -#: ../../enterprise/include/functions_cron.php:224 -msgid "Regexp agent filter" -msgstr "Filtro de agente RegEx" - -#: ../../enterprise/include/functions_cron.php:264 -#: ../../enterprise/include/functions_cron.php:286 -#: ../../enterprise/include/functions_cron.php:376 -msgid "Save to disk into path" -msgstr "Guardar disco en la ruta" - -#: ../../enterprise/include/functions_cron.php:265 -msgid "The apache user should have read-write access on this folder. Ex: " -msgstr "" -"El usuario de Apache deberĆ­a tener acceso de lectura y escritura en esta " -"carpeta. Por ejemplo: " - -#: ../../enterprise/include/functions_cron.php:271 -msgid "File name prefix" -msgstr "Prefijo del nombre del archivo" - -#: ../../enterprise/include/functions_cron.php:291 -msgid "Active backups" -msgstr "Copias de seguridad activas" - -#: ../../enterprise/include/functions_cron.php:306 -#: ../../enterprise/include/functions_cron.php:332 -#: ../../enterprise/include/functions_cron.php:354 -msgid "Send to email" -msgstr "Enviar a correo electrĆ³nico" - -#: ../../enterprise/include/functions_cron.php:315 -msgid "Function name" -msgstr "Nombre de la funciĆ³n" - -#: ../../enterprise/include/functions_cron.php:333 -msgid "Send custom report by email" -msgstr "Enviar un informe personalizado por email" - -#: ../../enterprise/include/functions_cron.php:355 -msgid "Send custom report (from template) by email" -msgstr "Enviar informe personalizado (desde plantilla) por email" - -#: ../../enterprise/include/functions_cron.php:377 -msgid "Save custom report to disk" -msgstr "Guardar el informe personalizado en el disco" - -#: ../../enterprise/include/functions_cron.php:397 -msgid "Backup Pandora database" -msgstr "Copia de seguridad de la BD de Pandora FMS" - -#: ../../enterprise/include/functions_cron.php:417 -msgid "Execute custom script" -msgstr "Ejecutar script personalizado" - -#: ../../enterprise/include/functions_cron.php:499 -msgid "Not scheduled" -msgstr "No programado" - -#: ../../enterprise/include/functions_cron.php:502 -#: ../../enterprise/include/lib/NetworkManager.php:182 -#: ../../godmode/agentes/module_manager_editor_prediction.php:181 -#: ../../godmode/agentes/planned_downtime.editor.php:649 -msgid "Weekly" -msgstr "Semanalmente" - -#: ../../enterprise/include/functions_cron.php:503 -#: ../../godmode/agentes/module_manager_editor_prediction.php:182 -#: ../../godmode/agentes/planned_downtime.editor.php:650 -msgid "Monthly" -msgstr "Mensualmente" - -#: ../../enterprise/include/functions_cron.php:504 -msgid "Yearly" -msgstr "Anualmente" - -#: ../../enterprise/include/functions_cron.php:1531 -msgid "Scheduled report had an attempt to send an email without attachments." -msgstr "" -"El informe programado tenĆ­a un intento de enviar un correo electrĆ³nico sin " -"archivos adjuntos." - -#: ../../enterprise/include/functions_cron.php:1534 -msgid "Scheduled report had an attempt to send an email with some attachments." -msgstr "" -"El informe programado tenĆ­a un intento de enviar un correo electrĆ³nico con " -"algunos archivos adjuntos." - -#: ../../enterprise/include/functions_cron.php:1778 -msgid "Attached to this email there's a CSV file of the logs" -msgstr "Hay un archivo CSV de los logs adjunto a este correo electrĆ³nico" - -#: ../../enterprise/include/functions_cron.php:1788 -msgid "logs csv" -msgstr "Logs en CSV" - -#: ../../enterprise/include/functions_cron.php:2207 -#, php-format -msgid "Error while executing task: %s, running %s, reason %s" -msgstr "Error al ejecutar la tarea: %s, ejecuciĆ³n de %s, motivo %s" - -#: ../../enterprise/include/functions_cron.php:2221 -#: ../../enterprise/include/functions_cron.php:2231 -msgid "Error while executing task" -msgstr "Error al ejecutar tarea " - -#: ../../enterprise/include/functions_enterprise_api.php:1119 -msgid "Is not metaconsole" -msgstr "No es la metaconsola" - -#: ../../enterprise/include/functions_enterprise_api.php:2580 -msgid "Error getting alert actions." -msgstr "Error al obtener acciones de alertas." - -#: ../../enterprise/include/functions_enterprise_api.php:3553 -#: ../../enterprise/include/functions_enterprise_api.php:3607 -#, php-format -msgid "%d agents added to apply queue." -msgstr "%d agentes aƱadidos a la cola de aplicar." - -#: ../../enterprise/include/functions_enterprise_api.php:3576 -#: ../../enterprise/include/functions_policies.php:4859 -#, php-format -msgid "Successfully applied to node %s." -msgstr "Aplicado correctamente al nodo %s." - -#: ../../enterprise/include/functions_enterprise_api.php:3578 -#: ../../enterprise/include/functions_policies.php:4861 -#, php-format -msgid "Successfully applied to nodes: %s." -msgstr "Aplicado correctamente a los nodos: %s." - -#: ../../enterprise/include/functions_enterprise_api.php:3617 -#, php-format -msgid "Id policy %d already pending to apply." -msgstr "ID de polĆ­tica %d ya pendiente de aplicar." - -#: ../../enterprise/include/functions_enterprise_api.php:3619 -#, php-format -msgid "Id policy %d already pending to apply in Id agent %d." -msgstr "ID de polĆ­tica %d ya pendiente de aplicar en el ID de agente %d." - -#: ../../enterprise/include/functions_enterprise_api.php:4039 -#: ../../enterprise/include/functions_enterprise_api.php:4066 -msgid "" -"Error adding web analysis module to policy. Id_module_type is not correct for " -"web analysis modules." -msgstr "" -"Error al aƱadir el mĆ³dulo de anĆ”lisis web a la polĆ­tica. Id_module_type no es " -"correcto para los mĆ³dulos de anĆ”lisis web." - -#: ../../enterprise/include/functions_enterprise_api.php:4048 -msgid "" -"Network Module could not be added to policy. Id_module_type is not correct for " -"network modules." -msgstr "" -"No se ha podido aƱadir el mĆ³dulo de red a la polĆ­tica. Id_module_type no es " -"correcto para mĆ³dulos de red." - -#: ../../enterprise/include/functions_enterprise_api.php:4057 -msgid "" -"Error adding web module to policy. Id_module_type is not correct for web " -"modules." -msgstr "" -"Error al aƱadir mĆ³dulo web a la polĆ­tica. Id_module_type no es correcto para " -"mĆ³dulos web." - -#: ../../enterprise/include/functions_enterprise_api.php:4078 -msgid "Error adding module to policy configuration_data is not a valid base64." -msgstr "" -"Error al aƱadir mĆ³dulo a la configuraciĆ³n de la polĆ­tica, configuration_data " -"no es una base64 vĆ”lida." - -#: ../../enterprise/include/functions_enterprise_api.php:6079 -msgid "The agent could not be added to the policy." -msgstr "No se ha podido aƱadir el agente a la polĆ­tica." - -#: ../../enterprise/include/functions_enterprise_api.php:6296 -#, php-format -msgid "Failed Updated remote config files %d" -msgstr "Error al actualizar los archivos de configuraciĆ³n remota %d" - -#: ../../enterprise/include/functions_enterprise_api.php:6306 -#, php-format -msgid "Updated remote config files: %d => %d" -msgstr "Archivos de configuraciĆ³n remota actualizados: %d => %d" - -#: ../../enterprise/include/functions_reporting_csv.php:416 -msgid "Event report agent" -msgstr "Informe de los eventos de un agente" - -#: ../../enterprise/include/functions_reporting_csv.php:418 -msgid "Event report group" -msgstr "Informe de los eventos de un grupo" - -#: ../../enterprise/include/functions_reporting_csv.php:442 -msgid "Event report module" -msgstr "Informe de los eventos de un mĆ³dulo" - -#: ../../enterprise/include/functions_reporting_csv.php:502 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2614 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2607 -msgid "Time in OK status" -msgstr "Tiempo en estado OK" - -#: ../../enterprise/include/functions_reporting_csv.php:510 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2630 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2623 -msgid "Time in unknown status" -msgstr "Tiempo en estado desconocido" - -#: ../../enterprise/include/functions_reporting_csv.php:514 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2642 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2635 -msgid "Time of not initialized module" -msgstr "Tiempo de mĆ³dulo no inicializado" - -#: ../../enterprise/include/functions_reporting_csv.php:518 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2654 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2647 -msgid "Time of downtime" -msgstr "Tiempo de parada" - -#: ../../enterprise/include/functions_reporting_csv.php:521 -#: ../../enterprise/include/functions_reporting_csv.php:1429 -msgid "% OK" -msgstr "% OK" - -#: ../../enterprise/include/functions_reporting_csv.php:534 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2732 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2723 -msgid "Checks in OK status" -msgstr "Comprobaciones en estado OK" - -#: ../../enterprise/include/functions_reporting_csv.php:538 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2744 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2747 -msgid "Unknown checks" -msgstr "Comprobaciones desconocidas" - -#: ../../enterprise/include/functions_reporting_csv.php:662 -msgid "Maximum value" -msgstr "Valor mĆ”ximo" - -#: ../../enterprise/include/functions_reporting_csv.php:667 -msgid "Minimum value" -msgstr "Valor mĆ­nimo" - -#: ../../enterprise/include/functions_reporting_csv.php:670 -msgid "Average value" -msgstr "Valor medio" - -#: ../../enterprise/include/functions_reporting_csv.php:718 -msgid "Sec. group" -msgstr "Grupo sec." - -#: ../../enterprise/include/functions_reporting_csv.php:718 -msgid "Custom Field" -msgstr "Campo personalizado" - -#: ../../enterprise/include/functions_reporting_csv.php:817 -msgid "Serialized data " -msgstr "Datos serializados " - -#: ../../enterprise/include/functions_reporting_csv.php:856 -msgid "Last Value " -msgstr "ƚltimo valor " - -#: ../../enterprise/include/functions_reporting_csv.php:983 -msgid "Uknown agents" -msgstr "Agentes desconocidos" - -#: ../../enterprise/include/functions_reporting_csv.php:983 -msgid "Last 8 hours events" -msgstr "Eventos en las Ćŗltimas 8 horas" - -#: ../../enterprise/include/functions_reporting_csv.php:1115 -msgid "Illegal query or any other error" -msgstr "Consulta ilegal o cualquier otro error" - -#: ../../enterprise/include/functions_reporting_csv.php:1220 -#: ../../enterprise/include/functions_reporting_csv.php:1222 -#: ../../enterprise/include/functions_reporting_csv.php:1228 -#: ../../enterprise/include/functions_reporting_csv.php:1230 -msgid "Minimum Value" -msgstr "Valor mĆ­nimo" - -#: ../../enterprise/include/functions_reporting_csv.php:1275 -#: ../../enterprise/include/functions_reporting_csv.php:1277 -#: ../../enterprise/include/functions_reporting_csv.php:1283 -#: ../../enterprise/include/functions_reporting_csv.php:1285 -msgid "Maximun Value" -msgstr "Valor mĆ”ximo" - -#: ../../enterprise/include/functions_reporting_csv.php:1394 -msgid "AVG" -msgstr "Media" - -#: ../../enterprise/include/functions_reporting_csv.php:1429 -msgid "% Wrong" -msgstr "% Mal" - -#: ../../enterprise/include/functions_reporting_csv.php:1444 -msgid "Simple Graph" -msgstr "GrĆ”fico simple" - -#: ../../enterprise/include/functions_reporting_csv.php:1504 -#: ../../enterprise/include/functions_reporting_csv.php:1550 -#: ../../enterprise/include/functions_reporting_csv.php:1623 -#: ../../enterprise/include/functions_reporting_csv.php:1742 -#: ../../enterprise/include/functions_reporting_csv.php:2050 -msgid "SLA Max" -msgstr "SLA mĆ”ximo" - -#: ../../enterprise/include/functions_reporting_csv.php:1505 -#: ../../enterprise/include/functions_reporting_csv.php:1551 -#: ../../enterprise/include/functions_reporting_csv.php:1624 -#: ../../enterprise/include/functions_reporting_csv.php:1743 -#: ../../enterprise/include/functions_reporting_csv.php:2051 -msgid "SLA Min" -msgstr "SLA mĆ­nimo" - -#: ../../enterprise/include/functions_reporting_csv.php:1507 -#: ../../enterprise/include/functions_reporting_csv.php:1553 -msgid "Time Total " -msgstr "Tiempo total " - -#: ../../enterprise/include/functions_reporting_csv.php:1508 -#: ../../enterprise/include/functions_reporting_csv.php:1554 -msgid "Time OK " -msgstr "Tiempo OK " - -#: ../../enterprise/include/functions_reporting_csv.php:1509 -#: ../../enterprise/include/functions_reporting_csv.php:1555 -msgid "Time Error " -msgstr "Tiempo de error " - -#: ../../enterprise/include/functions_reporting_csv.php:1510 -#: ../../enterprise/include/functions_reporting_csv.php:1556 -msgid "Time Unknown " -msgstr "Tiempo en desconocido " - -#: ../../enterprise/include/functions_reporting_csv.php:1511 -#: ../../enterprise/include/functions_reporting_csv.php:1557 -msgid "Time Not Init " -msgstr "Tiempo no iniciado " - -#: ../../enterprise/include/functions_reporting_csv.php:1512 -#: ../../enterprise/include/functions_reporting_csv.php:1558 -msgid "Time Downtime " -msgstr "Tiempo en parada planificada " - -#: ../../enterprise/include/functions_reporting_csv.php:1513 -#: ../../enterprise/include/functions_reporting_csv.php:1559 -msgid "Checks Total " -msgstr "Comprobaciones totales " - -#: ../../enterprise/include/functions_reporting_csv.php:1514 -#: ../../enterprise/include/functions_reporting_csv.php:1560 -msgid "Checks OK " -msgstr "Comprobaciones OK " - -#: ../../enterprise/include/functions_reporting_csv.php:1515 -#: ../../enterprise/include/functions_reporting_csv.php:1561 -msgid "Checks Error " -msgstr "Comprobaciones con error " - -#: ../../enterprise/include/functions_reporting_csv.php:1516 -#: ../../enterprise/include/functions_reporting_csv.php:1562 -msgid "Checks Unknown " -msgstr "Comprobaciones en desconocido " - -#: ../../enterprise/include/functions_reporting_csv.php:1517 -#: ../../enterprise/include/functions_reporting_csv.php:1563 -msgid "Checks Not Init " -msgstr "Comprobaciones en no iniciado " - -#: ../../enterprise/include/functions_reporting_csv.php:1518 -#: ../../enterprise/include/functions_reporting_csv.php:1564 -msgid "SLA " -msgstr "SLA " - -#: ../../enterprise/include/functions_reporting_csv.php:1519 -#: ../../enterprise/include/functions_reporting_csv.php:1565 -msgid "Status " -msgstr "Estado " - -#: ../../enterprise/include/functions_reporting_csv.php:1611 -#: ../../enterprise/include/functions_reporting_csv.php:1727 -#: ../../enterprise/include/functions_reporting_csv.php:1967 -#: ../../enterprise/include/functions_reporting_csv.php:2035 -msgid "Subtitle" -msgstr "SubtĆ­tulo" - -#: ../../enterprise/include/functions_reporting_csv.php:1626 -#: ../../enterprise/include/functions_reporting_csv.php:1758 -#: ../../enterprise/include/functions_reporting_csv.php:2066 -msgid "Time Total Month" -msgstr "Tiempo total del mes" - -#: ../../enterprise/include/functions_reporting_csv.php:1627 -#: ../../enterprise/include/functions_reporting_csv.php:1759 -#: ../../enterprise/include/functions_reporting_csv.php:2067 -msgid "Time OK Month" -msgstr "Tiempo OK del mes" - -#: ../../enterprise/include/functions_reporting_csv.php:1628 -#: ../../enterprise/include/functions_reporting_csv.php:1760 -#: ../../enterprise/include/functions_reporting_csv.php:2068 -msgid "Time Error Month" -msgstr "Tiempo en error del mes" - -#: ../../enterprise/include/functions_reporting_csv.php:1629 -#: ../../enterprise/include/functions_reporting_csv.php:1761 -#: ../../enterprise/include/functions_reporting_csv.php:2069 -msgid "Time Unknown Month" -msgstr "Tiempo en desconocido del mes" - -#: ../../enterprise/include/functions_reporting_csv.php:1630 -#: ../../enterprise/include/functions_reporting_csv.php:1762 -#: ../../enterprise/include/functions_reporting_csv.php:2070 -msgid "Time Downtime Month" -msgstr "Tiempo en parada planificada del mes" - -#: ../../enterprise/include/functions_reporting_csv.php:1631 -#: ../../enterprise/include/functions_reporting_csv.php:1763 -#: ../../enterprise/include/functions_reporting_csv.php:2071 -msgid "Time Not Init Month" -msgstr "Tiempo en no iniciado del mes" - -#: ../../enterprise/include/functions_reporting_csv.php:1632 -#: ../../enterprise/include/functions_reporting_csv.php:1764 -#: ../../enterprise/include/functions_reporting_csv.php:2072 -msgid "Checks Total Month" -msgstr "Comprobaciones totales del mes" - -#: ../../enterprise/include/functions_reporting_csv.php:1633 -#: ../../enterprise/include/functions_reporting_csv.php:1765 -#: ../../enterprise/include/functions_reporting_csv.php:2073 -msgid "Checks OK Month" -msgstr "Comprobaciones OK del mes" - -#: ../../enterprise/include/functions_reporting_csv.php:1634 -#: ../../enterprise/include/functions_reporting_csv.php:1766 -#: ../../enterprise/include/functions_reporting_csv.php:2074 -msgid "Checks Error Month" -msgstr "Comprobaciones en error del mes" - -#: ../../enterprise/include/functions_reporting_csv.php:1635 -#: ../../enterprise/include/functions_reporting_csv.php:1767 -#: ../../enterprise/include/functions_reporting_csv.php:2075 -msgid "Checks Unknown Month" -msgstr "Comprobaciones en desconocido del mes" - -#: ../../enterprise/include/functions_reporting_csv.php:1636 -#: ../../enterprise/include/functions_reporting_csv.php:1768 -#: ../../enterprise/include/functions_reporting_csv.php:2076 -msgid "Checks Not Init Month" -msgstr "Comprobaciones en no iniciado del mes" - -#: ../../enterprise/include/functions_reporting_csv.php:1637 -#: ../../enterprise/include/functions_reporting_csv.php:1769 -#: ../../enterprise/include/functions_reporting_csv.php:2077 -msgid "SLA Month" -msgstr "SLA mensual" - -#: ../../enterprise/include/functions_reporting_csv.php:1638 -#: ../../enterprise/include/functions_reporting_csv.php:1770 -#: ../../enterprise/include/functions_reporting_csv.php:2078 -msgid "Status Month" -msgstr "Estado del mes" - -#: ../../enterprise/include/functions_reporting_csv.php:1660 -#: ../../enterprise/include/functions_reporting.php:2023 -msgid "Day" -msgstr "DĆ­a" - -#: ../../enterprise/include/functions_reporting_csv.php:1661 -#: ../../enterprise/include/functions_reporting_csv.php:1816 -msgid "Time Total Day" -msgstr "Tiempo total del dĆ­a" - -#: ../../enterprise/include/functions_reporting_csv.php:1662 -#: ../../enterprise/include/functions_reporting_csv.php:1817 -msgid "Time OK Day" -msgstr "Tiempo en OK del dĆ­a" - -#: ../../enterprise/include/functions_reporting_csv.php:1663 -#: ../../enterprise/include/functions_reporting_csv.php:1818 -msgid "Time Error Day" -msgstr "Tiempo en error del dĆ­a" - -#: ../../enterprise/include/functions_reporting_csv.php:1664 -#: ../../enterprise/include/functions_reporting_csv.php:1819 -msgid "Time Unknown Day" -msgstr "Tiempo en desconocido del dĆ­a" - -#: ../../enterprise/include/functions_reporting_csv.php:1665 -#: ../../enterprise/include/functions_reporting_csv.php:1820 -msgid "Time Not Init Day" -msgstr "Tiempo en no iniciado del dĆ­a" - -#: ../../enterprise/include/functions_reporting_csv.php:1666 -#: ../../enterprise/include/functions_reporting_csv.php:1821 -msgid "Time Downtime Day" -msgstr "Tiempo en parada planificada del dĆ­a" - -#: ../../enterprise/include/functions_reporting_csv.php:1667 -#: ../../enterprise/include/functions_reporting_csv.php:1822 -msgid "Time Out Day" -msgstr "Tiempo fuera del dĆ­a" - -#: ../../enterprise/include/functions_reporting_csv.php:1668 -#: ../../enterprise/include/functions_reporting_csv.php:1823 -msgid "Checks Total Day" -msgstr "Comprobaciones totales del dĆ­a" - -#: ../../enterprise/include/functions_reporting_csv.php:1669 -#: ../../enterprise/include/functions_reporting_csv.php:1824 -msgid "Checks OK Day" -msgstr "Comprobaciones en OK del dĆ­a" - -#: ../../enterprise/include/functions_reporting_csv.php:1670 -#: ../../enterprise/include/functions_reporting_csv.php:1825 -msgid "Checks Error Day" -msgstr "Comprobaciones en error del dĆ­a" - -#: ../../enterprise/include/functions_reporting_csv.php:1671 -#: ../../enterprise/include/functions_reporting_csv.php:1826 -msgid "Checks Unknown Day" -msgstr "Comprobaciones en desconocido del dĆ­a" - -#: ../../enterprise/include/functions_reporting_csv.php:1672 -#: ../../enterprise/include/functions_reporting_csv.php:1827 -msgid "Checks Not Init Day" -msgstr "Comprobaciones en no iniciado del dĆ­a" - -#: ../../enterprise/include/functions_reporting_csv.php:1673 -#: ../../enterprise/include/functions_reporting_csv.php:1828 -msgid "SLA Day" -msgstr "SLA diario" - -#: ../../enterprise/include/functions_reporting_csv.php:1674 -#: ../../enterprise/include/functions_reporting_csv.php:1829 -msgid "SLA Fixed Day" -msgstr "SLA de dĆ­a fijo" - -#: ../../enterprise/include/functions_reporting_csv.php:1675 -#: ../../enterprise/include/functions_reporting_csv.php:1830 -msgid "Date From Day" -msgstr "Fecha desde dĆ­a" - -#: ../../enterprise/include/functions_reporting_csv.php:1676 -#: ../../enterprise/include/functions_reporting_csv.php:1831 -msgid "Date To Day" -msgstr "Fecha hasta dĆ­a" - -#: ../../enterprise/include/functions_reporting_csv.php:1677 -#: ../../enterprise/include/functions_reporting_csv.php:1832 -msgid "Status Day" -msgstr "Estado del dĆ­a" - -#: ../../enterprise/include/functions_reporting_csv.php:1738 -#: ../../enterprise/include/functions_reporting_csv.php:2046 -msgid "Month Number" -msgstr "NĆŗmero de mes" - -#: ../../enterprise/include/functions_reporting_csv.php:1739 -#: ../../enterprise/include/functions_reporting_csv.php:2047 -msgid "Year" -msgstr "AƱo" - -#: ../../enterprise/include/functions_reporting_csv.php:1789 -msgid "Time Total week" -msgstr "Tiempo total de la semana" - -#: ../../enterprise/include/functions_reporting_csv.php:1790 -msgid "Time OK week" -msgstr "Tiempo en OK de la semana" - -#: ../../enterprise/include/functions_reporting_csv.php:1791 -msgid "Time Error week" -msgstr "Tiempo en error de la semana" - -#: ../../enterprise/include/functions_reporting_csv.php:1792 -msgid "Time Unknown week" -msgstr "Tiempo en desconocido de la semana" - -#: ../../enterprise/include/functions_reporting_csv.php:1793 -msgid "Time Downtime week" -msgstr "Tiempo en parada planificada de la semana" - -#: ../../enterprise/include/functions_reporting_csv.php:1794 -msgid "Time Not Init week" -msgstr "Tiempo en no iniciado de la semana" - -#: ../../enterprise/include/functions_reporting_csv.php:1795 -msgid "Checks Total week" -msgstr "Comprobaciones totales de la semana" - -#: ../../enterprise/include/functions_reporting_csv.php:1796 -msgid "Checks OK week" -msgstr "Comprobaciones en OK de la semana" - -#: ../../enterprise/include/functions_reporting_csv.php:1797 -msgid "Checks Error week" -msgstr "Comprobaciones en error de la semana" - -#: ../../enterprise/include/functions_reporting_csv.php:1798 -msgid "Checks Unknown week" -msgstr "Comprobaciones en desconocido de la semana" - -#: ../../enterprise/include/functions_reporting_csv.php:1799 -msgid "Status week" -msgstr "Estado de la semana" - -#: ../../enterprise/include/functions_reporting_csv.php:1815 -msgid "Day Week" -msgstr "DĆ­a de la semana" - -#: ../../enterprise/include/functions_reporting_csv.php:1867 -msgid "S.L.A. Services" -msgstr "Servicios S.L.A" - -#: ../../enterprise/include/functions_reporting_csv.php:1885 -msgid "Lost sercice " -msgstr "Servicio perdido " - -#: ../../enterprise/include/functions_reporting_csv.php:1886 -msgid "Service " -msgstr "Servicio " - -#: ../../enterprise/include/functions_reporting_csv.php:1887 -msgid "Limit " -msgstr "LĆ­mite " - -#: ../../enterprise/include/functions_reporting_csv.php:1888 -msgid "SLA Compilance " -msgstr "Cumplimiento SLA " - -#: ../../enterprise/include/functions_reporting_csv.php:1889 -msgid "Unknown " -msgstr "Desconocido " - -#: ../../enterprise/include/functions_reporting_csv.php:1890 -msgid "Ok " -msgstr "Ok " - -#: ../../enterprise/include/functions_reporting_csv.php:1891 -msgid "Fail " -msgstr "Error " - -#: ../../enterprise/include/functions_reporting_csv.php:1892 -msgid "Result " -msgstr "Resultado " - -#: ../../enterprise/include/functions_reporting_csv.php:1917 -msgid "IPAM Networks" -msgstr "Redes IPAM" - -#: ../../enterprise/include/functions_reporting_csv.php:1977 -msgid "SLA max" -msgstr "SLA mĆ”ximo" - -#: ../../enterprise/include/functions_reporting_csv.php:1978 -msgid "SLA min" -msgstr "SLA mĆ­nimo" - -#: ../../enterprise/include/functions_reporting_csv.php:1979 -msgid "SLA limit" -msgstr "LĆ­mite de SLA" - -#: ../../enterprise/include/functions_reporting_csv.php:1982 -msgid "Time Error" -msgstr "Tiempo de error" - -#: ../../enterprise/include/functions_reporting_csv.php:1988 -msgid "Checks Error" -msgstr "Comprobaciones en error" - -#: ../../enterprise/include/functions_reporting_csv.php:1990 -#: ../../enterprise/include/functions_reporting.php:5066 -msgid "Checks Not Init" -msgstr "Comprobaciones en no iniciado" - -#: ../../enterprise/include/functions_reporting_csv.php:1992 -msgid "SLA Fixed" -msgstr "SLA fijo" - -#: ../../enterprise/include/functions_reporting_csv.php:2097 -msgid "Time Total day" -msgstr "Tiempo total del dĆ­a" - -#: ../../enterprise/include/functions_reporting_csv.php:2098 -msgid "Time OK day" -msgstr "Tiempo en OK del dĆ­a" - -#: ../../enterprise/include/functions_reporting_csv.php:2099 -msgid "Time Error day" -msgstr "Tiempo en error del dĆ­a" - -#: ../../enterprise/include/functions_reporting_csv.php:2100 -msgid "Time Unknown day" -msgstr "Tiempo en desconocido del dĆ­a" - -#: ../../enterprise/include/functions_reporting_csv.php:2101 -msgid "Time Downtime day" -msgstr "Tiempo en parada planificada del dĆ­a" - -#: ../../enterprise/include/functions_reporting_csv.php:2102 -msgid "Time Not Init day" -msgstr "Tiempo en no iniciado del dĆ­a" - -#: ../../enterprise/include/functions_reporting_csv.php:2103 -msgid "Checks Total day" -msgstr "Comprobaciones totales del dĆ­a" - -#: ../../enterprise/include/functions_reporting_csv.php:2104 -msgid "Checks OK day" -msgstr "Comprobaciones en OK del dĆ­a" - -#: ../../enterprise/include/functions_reporting_csv.php:2105 -msgid "Checks Error day" -msgstr "Comprobaciones en error del dĆ­a" - -#: ../../enterprise/include/functions_reporting_csv.php:2106 -msgid "Checks Unknown day" -msgstr "Comprobaciones en desconocido del dĆ­a" - -#: ../../enterprise/include/functions_reporting_csv.php:2107 -msgid "Status day" -msgstr "Estado del dĆ­a" - -#: ../../enterprise/include/functions_reporting_csv.php:2123 -#: ../../enterprise/include/functions_events.php:230 -msgid "Hours" -msgstr "Horas" - -#: ../../enterprise/include/functions_reporting_csv.php:2124 -msgid "Time Total hours" -msgstr "Tiempo total en horas" - -#: ../../enterprise/include/functions_reporting_csv.php:2125 -msgid "Time OK hours" -msgstr "Tiempo en OK en horas" - -#: ../../enterprise/include/functions_reporting_csv.php:2126 -msgid "Time Error hours" -msgstr "Tiempo en error en horas" - -#: ../../enterprise/include/functions_reporting_csv.php:2127 -msgid "Time Unknown hours" -msgstr "Tiempo en desconocido en horas" - -#: ../../enterprise/include/functions_reporting_csv.php:2128 -msgid "Time Not Init hours" -msgstr "Tiempo en no iniciado en horas" - -#: ../../enterprise/include/functions_reporting_csv.php:2129 -msgid "Time Downtime hours" -msgstr "Tiempo en parada planificada en horas" - -#: ../../enterprise/include/functions_reporting_csv.php:2130 -msgid "Time Out hours" -msgstr "Tiempo fuera en horas" - -#: ../../enterprise/include/functions_reporting_csv.php:2131 -msgid "Checks Total hours" -msgstr "Comprobaciones totales en horas" - -#: ../../enterprise/include/functions_reporting_csv.php:2132 -msgid "Checks OK hours" -msgstr "Comprobaciones en OK en horas" - -#: ../../enterprise/include/functions_reporting_csv.php:2133 -msgid "Checks Error hours" -msgstr "Comprobaciones en error en horas" - -#: ../../enterprise/include/functions_reporting_csv.php:2134 -msgid "Checks Unknown hours" -msgstr "Comprobaciones en desconocido en horas" - -#: ../../enterprise/include/functions_reporting_csv.php:2135 -msgid "Checks Not Init hours" -msgstr "Comprobaciones en no iniciado en horas" - -#: ../../enterprise/include/functions_reporting_csv.php:2136 -msgid "SLA hours" -msgstr "SLA horas" - -#: ../../enterprise/include/functions_reporting_csv.php:2137 -msgid "SLA Fixed hours" -msgstr "SLA horario fijo" - -#: ../../enterprise/include/functions_reporting_csv.php:2138 -msgid "Date From hours" -msgstr "Desde" - -#: ../../enterprise/include/functions_reporting_csv.php:2139 -msgid "Date To hours" -msgstr "Hasta" - -#: ../../enterprise/include/functions_reporting_csv.php:2140 -msgid "Status hours" -msgstr "Estado horas" - -#: ../../enterprise/include/functions_reporting_csv.php:2267 -msgid "Simple Baseline Graph" -msgstr "GrĆ”fica simple base" - -#: ../../enterprise/include/functions_reporting_csv.php:2334 -#: ../../enterprise/meta/include/functions_wizard_meta.php:311 -msgid "Agent modules" -msgstr "MĆ³dulos de agentes" - -#: ../../enterprise/include/functions_reporting_csv.php:2465 -msgid "Actions Triggered" -msgstr "Acciones disparadas" - -#: ../../enterprise/include/functions_reporting_csv.php:2465 -msgid "Template Triggered" -msgstr "Plantillas disparadas" - -#: ../../enterprise/include/functions_reporting_csv.php:2502 -msgid "Event Report Log" -msgstr "Log de informes de eventos" - -#: ../../enterprise/include/functions_reporting_csv.php:2605 -msgid "Netflow data chart" -msgstr "GrĆ”fico de datos de Netflow" - -#: ../../enterprise/include/functions_reporting_csv.php:2660 -msgid "Netflow summary" -msgstr "Resumen de Netflow" - -#: ../../enterprise/include/functions_reporting_csv.php:2680 -msgid "Avg. bits/sec" -msgstr "Promedio de bits/seg." - -#: ../../enterprise/include/functions_reporting_csv.php:2680 -msgid "Avg. packets/sec" -msgstr "Promedio de paquetes/seg." - -#: ../../enterprise/include/functions_reporting_csv.php:2680 -msgid "Avg. bytes/packet" -msgstr "Promedio de bytes/paquete" - -#: ../../enterprise/include/functions_reporting_csv.php:2681 -msgid "Dst. IP" -msgstr "IP de destino" - -#: ../../enterprise/include/functions_reporting_csv.php:2707 -msgid "Agent/module status" -msgstr "Estado del agente/mĆ³dulo" - -#: ../../enterprise/include/functions_reporting_csv.php:2808 -msgid "Average Throughput (bits/sec)" -msgstr "Rendimiento medio (bits/seg)" - -#: ../../enterprise/include/ajax/log_viewer.ajax.php:65 -msgid "Capture regexp" -msgstr "Regexp de captura" - -#: ../../enterprise/include/ajax/log_viewer.ajax.php:75 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1251 -#: ../../enterprise/meta/event/custom_events.php:160 -msgid "Fields" -msgstr "Campos" - -#: ../../enterprise/include/ajax/log_viewer.ajax.php:175 -msgid "Empty ip or port" -msgstr "IP o puerto vacĆ­o" - -#: ../../enterprise/include/ajax/log_viewer.ajax.php:192 -msgid "Curl Error: " -msgstr "Error curl: " - -#: ../../enterprise/include/ajax/servers.ajax.php:99 -#: ../../enterprise/include/ajax/servers.ajax.php:157 -#: ../../enterprise/include/ajax/servers.ajax.php:283 -#: ../../enterprise/include/functions_ipam.php:1343 -#: ../../enterprise/godmode/servers/credential_boxes_satellite.php:248 -#: ../../enterprise/godmode/servers/manage_credential_boxes.php:57 -msgid "Subnet" -msgstr "Subred" - -#: ../../enterprise/include/ajax/servers.ajax.php:139 -#: ../../enterprise/godmode/servers/credential_boxes_satellite.php:293 -#: ../../enterprise/godmode/servers/list_satellite.php:69 -msgid "No Data" -msgstr "No hay datos" - -#: ../../enterprise/include/ajax/url_route_analyzer.ajax.php:33 -msgid "Global time: " -msgstr "Hora global: " - -#: ../../enterprise/include/ajax/ipam.ajax.php:249 -msgid "Current Networks" -msgstr "Redes actuales" - -#: ../../enterprise/include/ajax/ipam.ajax.php:296 -msgid "Please, create networks to assign to " -msgstr "Cree redes que asgignar a " - -#: ../../enterprise/include/ajax/ipam.ajax.php:300 -msgid "No networks to assign to supernet" -msgstr "No hay redes que asignar a la superred" - -#: ../../enterprise/include/ajax/ipam.ajax.php:302 -msgid "Please, create networks to assign to" -msgstr "Creer redes que asignar a" - -#: ../../enterprise/include/ajax/ipam.ajax.php:307 -msgid "Create and add networks in bulk" -msgstr "Crear y agregar redes de forma masiva" - -#: ../../enterprise/include/ajax/ipam.ajax.php:316 -msgid "Starting network" -msgstr "Iniciando red" - -#: ../../enterprise/include/ajax/ipam.ajax.php:316 -msgid "" -"The networks will be created/added starting from this address in the " -"subnetting range given by the mask. Use CIDR format (e.g.: 192.168.72.0/22). " -"If no value was provided, it uses the starting address of the supernet by " -"default." -msgstr "" -"Las redes se crearĆ”n/agregarĆ”n a partir de esta direcciĆ³n en el rango de " -"subredes dado por la mĆ”scara. Utilice el formato CIDR (por ejemplo: " -"192.168.72.0/22). Si no se proporcionĆ³ ningĆŗn valor, utilizarĆ” la direcciĆ³n " -"inicial de la superred de forma predeterminada." - -#: ../../enterprise/include/ajax/ipam.ajax.php:320 -msgid "Max. number" -msgstr "NĆŗmero mĆ”ximo" - -#: ../../enterprise/include/ajax/ipam.ajax.php:320 -msgid "" -"Maximum number of networks to be created/added from starting address of the " -"range specified above" -msgstr "" -"NĆŗmero mĆ”ximo de redes que se crearĆ”n/agregarĆ”n desde la direcciĆ³n inicial del " -"rango especificado anteriormente" - -#: ../../enterprise/include/ajax/ipam.ajax.php:622 -msgid "Go to supernet edition" -msgstr "Ir a la ediciĆ³n de superred" - -#: ../../enterprise/include/ajax/ipam.ajax.php:664 -msgid "Go to network edition" -msgstr "Ir a la ediciĆ³n de red" - -#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:94 -#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:253 -msgid "Group name" -msgstr "Nombre del grupo" - -#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:128 -#: ../../enterprise/godmode/services/services.elements.php:220 -msgid "Custom field name" -msgstr "Nombre de campo personalizado" - -#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:130 -#: ../../enterprise/godmode/services/services.elements.php:232 -msgid "Custom field value" -msgstr "Campo de valor personalizado" - -#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:136 -msgid "IP Network range" -msgstr "Intervalo de red IP" - -#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:141 -msgid "Script" -msgstr "Script" - -#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:143 -msgid "Arguments" -msgstr "Argumentos" - -#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:149 -msgid "Unknown option" -msgstr "OpciĆ³n desconocida" - -#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:188 -#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:842 -msgid "Update rule" -msgstr "Actualizar regla" - -#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:190 -#: ../../enterprise/meta/advanced/agents_setup.autoprovision_rules.php:201 -msgid "Create rule" -msgstr "Crear regla" - -#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:213 -#: ../../enterprise/godmode/modules/manage_inventory_modules.php:63 -#: ../../enterprise/godmode/agentes/agent_autoconfiguration.php:125 -#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:288 -#, 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/include/ajax/agent_autoconfiguration.ajax.php:257 -msgid "IP range" -msgstr "Intervalo IP" - -#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:258 -msgid "Script output (> 0)" -msgstr "Salida del script (> 0)" - -#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:272 -#: ../../enterprise/meta/include/functions_autoprovision.php:642 -#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:340 -#: ../../extensions/quick_shell.php:190 -msgid "Method" -msgstr "MĆ©todo" - -#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:380 -#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:599 -msgid "Op" -msgstr "Op" - -#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:402 -#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:429 -msgid "Launch custom event" -msgstr "Lanzar evento personalizado" - -#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:403 -#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:430 -msgid "Launch alert action" -msgstr "Lanzar acciĆ³n de alerta" - -#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:435 -#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:542 -#: ../../godmode/snmpconsole/snmp_alert.php:1110 -#: ../../godmode/snmpconsole/snmp_alert.php:1257 -msgid "Alert action" -msgstr "AcciĆ³n de alerta" - -#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:455 -#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:562 -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" -msgstr "Argumento del script" - -#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:471 -#: ../../godmode/alerts/alert_list.list.php:688 -#: ../../godmode/alerts/alert_list.list.php:1169 -msgid "Update action" -msgstr "Actualizar acciĆ³n" - -#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:488 -#: ../../enterprise/godmode/alerts/alert_inventory_list.php:344 -#: ../../enterprise/godmode/alerts/alert_inventory_list.php:350 -#: ../../enterprise/godmode/alerts/alert_inventory_list.php:444 -#: ../../enterprise/godmode/policies/policy_external_alerts.php:508 -#: ../../enterprise/godmode/policies/policy_alerts.php:754 -#: ../../godmode/snmpconsole/snmp_alert.php:1381 -#: ../../godmode/alerts/alert_list.list.php:899 -#: ../../godmode/alerts/alert_list.list.php:906 -#: ../../godmode/alerts/alert_list.list.php:1132 -msgid "Add action" -msgstr "AƱadir acciĆ³n" - -#: ../../enterprise/include/ajax/top_n_widget.ajax.php:79 -msgid "avg" -msgstr "media" - -#: ../../enterprise/include/ajax/top_n_widget.ajax.php:80 -#: ../../godmode/reporting/reporting_builder.item_editor.php:4287 -msgid "max" -msgstr "mĆ”x" - -#: ../../enterprise/include/ajax/top_n_widget.ajax.php:81 -#: ../../godmode/reporting/reporting_builder.item_editor.php:4288 -msgid "min" -msgstr "mĆ­n" - -#: ../../enterprise/include/ajax/top_n_widget.ajax.php:82 -#: ../../godmode/reporting/reporting_builder.item_editor.php:4289 -msgid "sum" -msgstr "suma" - -#: ../../enterprise/include/class/SAPView.class.php:146 -#: ../../enterprise/include/class/SAPView.class.php:190 -msgid "SAP View" -msgstr "Vista SAP" - -#: ../../enterprise/include/class/SAPView.class.php:164 -msgid "SAP data not found." -msgstr "Datos SAP no encontrados." - -#: ../../enterprise/include/class/SAPView.class.php:258 -msgid "Refresh Every" -msgstr "Refrescar cada" - -#: ../../enterprise/include/class/SAPView.class.php:259 -#: ../../enterprise/include/class/SAPView.class.php:296 -#: ../../enterprise/include/class/MicrosoftSQLServer.app.php:562 -#: ../../enterprise/include/class/Aws.cloud.php:1343 -#: ../../enterprise/include/class/Aws.S3.php:531 -#: ../../enterprise/include/class/MySQL.app.php:583 -#: ../../enterprise/include/class/Oracle.app.php:568 -#: ../../enterprise/include/class/DB2.app.php:561 -#: ../../enterprise/include/class/SAP.app.php:540 -#: ../../enterprise/include/class/VMware.app.php:693 -msgid "The minimum recomended interval is 5 minutes" -msgstr "El intervalo mĆ­nimo recomendado es de 5 minutos" - -#: ../../enterprise/include/class/SAPView.class.php:295 -msgid "Graph Interval" -msgstr "Intervalo de grĆ”fica" - -#: ../../enterprise/include/class/SAPView.class.php:626 -msgid "" -"SAP view offers you to see the most important modules Discovery Server is " -"usually configured to retry. You have not configured a Discovery SAP R3 task " -"yet, please visit" -msgstr "" -"La vista SAP le ofrece los mĆ³dulos mĆ”s importantes. El servidor Discovery " -"normalmente estĆ” configurado para hacer reintentos. Si aĆŗn no ha configurado " -"la tarea Discovery SAP R3, visite" - -#: ../../enterprise/include/class/SAPView.class.php:626 -#: ../../enterprise/extensions/vmware/vmware_view.php:1240 -#: ../../enterprise/extensions/vmware/vmware_view.php:1526 -msgid "this link" -msgstr "este enlace" - -#: ../../enterprise/include/class/SAPView.class.php:626 -msgid "to start monitoring your SAP infrastructure." -msgstr "para comenzar a monitorizar su infraestructura SAP" - -#: ../../enterprise/include/class/SAPView.class.php:633 -msgid "Discover SAP" -msgstr "Descubrir SAP" - -#: ../../enterprise/include/class/CSVImportAgents.class.php:114 -#: ../../enterprise/godmode/menu.php:159 -#: ../../godmode/wizards/HostDevices.class.php:159 -msgid "Import CSV" -msgstr "Importar CSV" - -#: ../../enterprise/include/class/CSVImportAgents.class.php:121 -msgid "The CSV file must have the fields in the following order:" -msgstr "El archivo CSV debe tener los campos en el siguiente orden:" - -#: ../../enterprise/include/class/CSVImportAgents.class.php:122 -msgid "Agent alias, IP address, OS id, Interval, Group id, Description" -msgstr "" -"Alias de agente, direcciĆ³n IP, ID del SO, Intervalo, ID de grupo, DescripciĆ³n" - -#: ../../enterprise/include/class/CSVImportAgents.class.php:127 -msgid "" -"Warning, this CSV importer will not perform any discovery, it will only create " -"empty agents with the name, IP, OS type, description and group provided in the " -"CSV." -msgstr "" -"Advertencia, este importador CSV no realizarĆ” ningĆŗn descubrimiento, solo " -"crearĆ” agentes vacĆ­os con el nombre, IP, tipo de sistema operativo, " -"descripciĆ³n y grupo proporcionados en el CSV." - -#: ../../enterprise/include/class/CSVImportAgents.class.php:179 -msgid "Alias as name" -msgstr "Alias como nombre" - -#: ../../enterprise/include/class/CSVImportAgents.class.php:244 -msgid "No data or wrong separator" -msgstr "No hay datos o separador incorrecto" - -#: ../../enterprise/include/class/CSVImportAgents.class.php:250 -#, php-format -msgid "Agent %s duplicated." -msgstr "Agente %s duplicado" - -#: ../../enterprise/include/class/CSVImportAgents.class.php:257 -#, php-format -msgid "Id group %s doesn't exist in %s" -msgstr "El ID de grupo %s no existe en %s" - -#: ../../enterprise/include/class/CSVImportAgents.class.php:265 -msgid "General failure." -msgstr "Fallo general." - -#: ../../enterprise/include/class/CSVImportAgents.class.php:286 -msgid "No input file detected" -msgstr "N se ha detectado archivo de entrada" - -#: ../../enterprise/include/class/CSVImportAgents.class.php:375 -msgid "Agent processed successfully" -msgstr "Agente procesado correctamente" - -#: ../../enterprise/include/class/CSVImportAgents.class.php:381 -msgid "Some errors while processing CSV." -msgstr "Algunos errores al procesar CSV." - -#: ../../enterprise/include/class/CSVImportAgents.class.php:384 -msgid "All agents processed correctly" -msgstr "Todos los agentes procesados correctamente" - -#: ../../enterprise/include/class/CSVImportAgents.class.php:391 -#, php-format -msgid "Line %s" -msgstr "LĆ­nea %s" - -#: ../../enterprise/include/class/MicrosoftSQLServer.app.php:171 -msgid "" -"This Microsoft SQL Server configuration has been already defined. Please edit " -"it or create a new one." -msgstr "" -"La configuraciĆ³n del servidor Microsoft SQL ya se ha definido. Edite o cree " -"una nueva." - -#: ../../enterprise/include/class/MicrosoftSQLServer.app.php:213 -msgid "You must provide a valid Microsoft SQL Server server IP or FQDN." -msgstr "Debe aƱadir una IP de servidor Microsoft SQL o FQDN." - -#: ../../enterprise/include/class/MicrosoftSQLServer.app.php:277 -msgid "Failed to find discovery Microsoft SQL Server task." -msgstr "" -"No se ha podido encontrar la tarea de descubrimiento del servidor Microsoft " -"SQL." - -#: ../../enterprise/include/class/MicrosoftSQLServer.app.php:388 -#: ../../enterprise/include/class/MySQL.app.php:403 -#: ../../enterprise/include/class/Oracle.app.php:393 -#: ../../enterprise/include/class/DB2.app.php:386 -#: ../../enterprise/include/class/SAP.app.php:336 -#: ../../enterprise/include/class/VMware.app.php:486 -msgid "Application" -msgstr "AplicaciĆ³n" - -#: ../../enterprise/include/class/MicrosoftSQLServer.app.php:406 -#: ../../enterprise/godmode/menu.php:173 -msgid "Microsoft SQL Server" -msgstr "Servidor Microsoft SQL" - -#: ../../enterprise/include/class/MicrosoftSQLServer.app.php:472 -#: ../../enterprise/include/class/Aws.cloud.php:1234 -#: ../../enterprise/include/class/Aws.S3.php:435 -#: ../../enterprise/include/class/MySQL.app.php:475 -#: ../../enterprise/include/class/Oracle.app.php:477 -#: ../../enterprise/include/class/DB2.app.php:470 -#: ../../enterprise/include/class/SAP.app.php:644 -#: ../../enterprise/include/class/VMware.app.php:763 -msgid "This group will be used also to classify discovered agents" -msgstr "Este grupo se usarĆ” para clasificar los agentes encontrados" - -#: ../../enterprise/include/class/MicrosoftSQLServer.app.php:487 -msgid "Microsoft SQL Server targets" -msgstr "Objetivos del servidor Microsoft SQL" - -#: ../../enterprise/include/class/MicrosoftSQLServer.app.php:488 -msgid "" -"SERVER:PORT\\INSTANCE, comma separated or line by line, as many targets as you " -"need." -msgstr "" -"SERVIDOR:PUERTO\\INSTANCIA, separados por coma o lĆ­nea por lĆ­nea, tantos " -"objetivos como necesite." - -#: ../../enterprise/include/class/MicrosoftSQLServer.app.php:488 -#: ../../enterprise/include/class/Oracle.app.php:494 -#: ../../enterprise/include/class/DB2.app.php:487 -msgid "Use # symbol to comment a line." -msgstr "Use el sĆ­mbolo # para comentar una lĆ­nea." - -#: ../../enterprise/include/class/MicrosoftSQLServer.app.php:635 -#: ../../enterprise/include/class/MySQL.app.php:656 -#: ../../enterprise/include/class/Oracle.app.php:641 -#: ../../enterprise/include/class/DB2.app.php:634 -msgid "Target agent" -msgstr "Agente objetivo" - -#: ../../enterprise/include/class/MicrosoftSQLServer.app.php:636 -#: ../../enterprise/include/class/Oracle.app.php:642 -#: ../../enterprise/include/class/DB2.app.php:635 -msgid "" -"Defines a target agent where this task will store data detected, if you have " -"defined multiple targets, define a comma separated list of names here or leave " -"in blank to use target as name." -msgstr "" -"Define un objetivo de agente donde la tarea almacenarĆ” los datos detectados. " -"Si ha definido varios objetivos, defina una lista de nombres separados por " -"coma o dĆ©jelo en blanco para usar el objetivo como nombre." - -#: ../../enterprise/include/class/MicrosoftSQLServer.app.php:655 -#: ../../enterprise/include/class/MySQL.app.php:676 -#: ../../enterprise/include/class/Oracle.app.php:661 -#: ../../enterprise/include/class/DB2.app.php:654 -msgid "Custom module prefix" -msgstr "Prefijo de mĆ³dulo personalizado" - -#: ../../enterprise/include/class/MicrosoftSQLServer.app.php:656 -#: ../../enterprise/include/class/MySQL.app.php:677 -#: ../../enterprise/include/class/Oracle.app.php:662 -#: ../../enterprise/include/class/DB2.app.php:655 -msgid "" -"Defines a custom prefix to be concatenated before module names generated by " -"this task." -msgstr "" -"Define un prefijo personalizado para concatenar antes de los nombres de " -"mĆ³dulos generados por esta tarea." - -#: ../../enterprise/include/class/MicrosoftSQLServer.app.php:674 -#: ../../enterprise/include/class/MySQL.app.php:757 -#: ../../enterprise/include/class/Oracle.app.php:680 -msgid "Check engine uptime" -msgstr "Comprobar disponibilidad del motor" - -#: ../../enterprise/include/class/MicrosoftSQLServer.app.php:690 -#: ../../enterprise/include/class/MySQL.app.php:773 -#: ../../enterprise/include/class/Oracle.app.php:696 -msgid "Retrieve query statistics" -msgstr "Obtener estadĆ­sticas de consultas" - -#: ../../enterprise/include/class/MicrosoftSQLServer.app.php:706 -#: ../../enterprise/include/class/MySQL.app.php:789 -#: ../../enterprise/include/class/Oracle.app.php:712 -msgid "Analyze connections" -msgstr "Analizar conexiones" - -#: ../../enterprise/include/class/MicrosoftSQLServer.app.php:722 -#: ../../enterprise/include/class/MySQL.app.php:837 -#: ../../enterprise/include/class/Oracle.app.php:776 -#: ../../enterprise/include/class/DB2.app.php:753 -msgid "Execute custom queries" -msgstr "Ejecutar consultas personalizadas" - -#: ../../enterprise/include/class/MicrosoftSQLServer.app.php:774 -#: ../../enterprise/include/class/MySQL.app.php:889 -#: ../../enterprise/include/class/Oracle.app.php:930 -#: ../../enterprise/include/class/DB2.app.php:821 -msgid "Custom queries" -msgstr "Consultas personalizadas" - -#: ../../enterprise/include/class/MicrosoftSQLServer.app.php:775 -#: ../../enterprise/include/class/MySQL.app.php:890 -#: ../../enterprise/include/class/Oracle.app.php:931 -#: ../../enterprise/include/class/DB2.app.php:822 -msgid "Define here your custom queries." -msgstr "Defina aquĆ­ sus consultas personalizadas." - -#: ../../enterprise/include/class/Aws.cloud.php:113 -#: ../../enterprise/include/class/Azure.cloud.php:148 -#: ../../enterprise/include/class/Google.cloud.php:142 -msgid "Cloud message" -msgstr "Mensaje en la nube" - -#: ../../enterprise/include/class/Aws.cloud.php:115 -#: ../../enterprise/include/class/Aws.cloud.php:162 -#: ../../enterprise/include/class/Azure.cloud.php:150 -#: ../../enterprise/include/class/Azure.cloud.php:194 -#: ../../enterprise/include/class/Google.cloud.php:144 -#: ../../enterprise/include/class/Google.cloud.php:188 -#: ../../enterprise/godmode/menu.php:193 -#: ../../enterprise/godmode/wizards/Cloud.class.php:186 -#: ../../enterprise/godmode/wizards/Cloud.class.php:195 -msgid "Cloud" -msgstr "Nube" - -#: ../../enterprise/include/class/Aws.cloud.php:158 -#: ../../enterprise/include/class/Azure.cloud.php:190 -#: ../../enterprise/include/class/DeploymentCenter.class.php:590 -#: ../../enterprise/include/class/Google.cloud.php:184 -#: ../../enterprise/godmode/wizards/Applications.class.php:157 -#: ../../enterprise/godmode/wizards/Cloud.class.php:182 -#: ../../godmode/servers/discovery.php:59 ../../godmode/menu.php:62 -#: ../../godmode/wizards/HostDevices.class.php:190 -msgid "Discovery" -msgstr "Discovery" - -#: ../../enterprise/include/class/Aws.cloud.php:343 -msgid "Recon" -msgstr "Reconocimento" - -#: ../../enterprise/include/class/Aws.cloud.php:344 -msgid "Costs" -msgstr "Costes" - -#: ../../enterprise/include/class/Aws.cloud.php:346 -msgid "Instances" -msgstr "Instancias" - -#: ../../enterprise/include/class/Aws.cloud.php:441 -msgid "Amazon EC2" -msgstr "Amazon EC2" - -#: ../../enterprise/include/class/Aws.cloud.php:446 -msgid "Amazon RDS" -msgstr "Amazon RDS" - -#: ../../enterprise/include/class/Aws.cloud.php:451 -msgid "S3 Buckets" -msgstr "S3 Buckets" - -#: ../../enterprise/include/class/Aws.cloud.php:471 -#: ../../godmode/wizards/HostDevices.class.php:696 -msgid "NetScan" -msgstr "NetScan" - -#: ../../enterprise/include/class/Aws.cloud.php:500 -#: ../../enterprise/include/class/Aws.S3.php:554 -#: ../../enterprise/include/class/VMware.app.php:547 -msgid "" -"This kind of task uses multipurpose plugins in order to generate monitoring " -"data, configure your desired tentacle target." -msgstr "" -"Este tipo de tarea usa plugins multi funciĆ³n para generar datos de " -"monitorizaciĆ³n, configure el objetivo Tentacle deseado." - -#: ../../enterprise/include/class/Aws.cloud.php:510 -msgid "Discovery task name" -msgstr "Nombre de la tarea de discovery" - -#: ../../enterprise/include/class/Aws.cloud.php:540 -#: ../../enterprise/include/class/Aws.S3.php:559 -#: ../../enterprise/include/class/VMware.app.php:614 -#: ../../enterprise/include/class/Azure.cloud.php:797 -msgid "Tentacle options" -msgstr "Opciones de Tentacle" - -#: ../../enterprise/include/class/Aws.cloud.php:566 -#: ../../enterprise/include/class/Aws.S3.php:584 -#: ../../enterprise/include/class/VMware.app.php:643 -#: ../../enterprise/include/class/Azure.cloud.php:823 -#: ../../enterprise/godmode/servers/manage_export_form.php:129 -msgid "Extra options" -msgstr "Opciones adicionales" - -#: ../../enterprise/include/class/Aws.cloud.php:614 -msgid "Total cost" -msgstr "Coste total" - -#: ../../enterprise/include/class/Aws.cloud.php:631 -msgid "Cost by region" -msgstr "Coste por regiĆ³n" - -#: ../../enterprise/include/class/Aws.cloud.php:645 -msgid "Cost interval" -msgstr "Intervalo de coste" - -#: ../../enterprise/include/class/Aws.cloud.php:671 -#: ../../enterprise/include/class/Azure.cloud.php:928 -msgid "Scan and general monitoring." -msgstr "Escaneo y monitorizaciĆ³n general." - -#: ../../enterprise/include/class/Aws.cloud.php:688 -#: ../../enterprise/include/class/Azure.cloud.php:941 -msgid "Cpu performance summary" -msgstr "Resumen del rendimiento de CPU" - -#: ../../enterprise/include/class/Aws.cloud.php:698 -#: ../../enterprise/include/class/Azure.cloud.php:949 -#: ../../enterprise/include/class/Google.cloud.php:911 -msgid "IOPS performance summary" -msgstr "Resumen del rendimiento de IOPS" - -#: ../../enterprise/include/class/Aws.cloud.php:708 -#: ../../enterprise/include/class/Azure.cloud.php:957 -#: ../../enterprise/include/class/Google.cloud.php:919 -msgid "Disk performance summary" -msgstr "Resumen del rendimiento de disco" - -#: ../../enterprise/include/class/Aws.cloud.php:718 -#: ../../enterprise/include/class/Azure.cloud.php:965 -#: ../../enterprise/include/class/Google.cloud.php:927 -msgid "Network performance summary" -msgstr "Resumen del rendimiento de la red" - -#: ../../enterprise/include/class/Aws.cloud.php:742 -#: ../../enterprise/include/class/Aws.cloud.php:1274 -#: ../../enterprise/include/class/Azure.cloud.php:872 -#: ../../enterprise/include/class/Google.cloud.php:822 -msgid "No instances found." -msgstr "No se han encontrado instancias." - -#: ../../enterprise/include/class/Aws.cloud.php:773 -msgid "Select EC2 instances" -msgstr "Seleccionar instancias EC2" - -#: ../../enterprise/include/class/Aws.cloud.php:789 -msgid "Storage" -msgstr "Almacenamiento" - -#: ../../enterprise/include/class/Aws.cloud.php:799 -msgid "Elastic IP Adresses" -msgstr "Direcciones IP elĆ”sticas" - -#: ../../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:987 -msgid "" -"You cannot monitor RDS instances from different types. Please define several " -"tasks for several types." -msgstr "" -"No puede monitorizar las instancias RDS desde diferentes tipos. Defina varias " -"tareas para diferentes tipos." - -#: ../../enterprise/include/class/Aws.cloud.php:994 -msgid "Discovery.Cloud.AWS.RDS" -msgstr "Discovery.Cloud.AWS.RDS" - -#: ../../enterprise/include/class/Aws.cloud.php:1160 -msgid "RDS" -msgstr "RDS" - -#: ../../enterprise/include/class/Aws.cloud.php:1165 -msgid "DB monitoring" -msgstr "MonitorizaciĆ³n de base de datos" - -#: ../../enterprise/include/class/Aws.cloud.php:1175 -msgid "AWS RDS" -msgstr "AWS RDS" - -#: ../../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:1259 -msgid "Global DB password" -msgstr "ContraseƱa de la base de datos global" - -#: ../../enterprise/include/class/Aws.cloud.php:1349 -msgid "Select RDS instances" -msgstr "Seleccionar instancias RDS" - -#: ../../enterprise/include/class/Aws.cloud.php:1492 -#: ../../enterprise/include/class/Azure.cloud.php:355 -#: ../../enterprise/include/class/Google.cloud.php:349 -#, php-format -msgid "%s not found or not executable" -msgstr "%s no encontrado o no ejecutable" - -#: ../../enterprise/include/class/Aws.cloud.php:1652 -msgid "Invalid group" -msgstr "Grupo no vĆ”lido" - -#: ../../enterprise/include/class/Aws.cloud.php:1710 -msgid "Cannot update the recon database" -msgstr "No se ha podido actualizar la base de datos de reconocimiento" - -#: ../../enterprise/include/class/Aws.cloud.php:1732 -msgid "Engine not supported" -msgstr "Motor no compatible" - -#: ../../enterprise/include/class/AgentRepository.class.php:262 -#: ../../enterprise/include/class/DeploymentCenter.class.php:956 -msgid "Deploying" -msgstr "Desplegar" - -#: ../../enterprise/include/class/AgentRepository.class.php:336 -msgid "Time in seconds before deployment is cancelled." -msgstr "Tiempo en segundos antes de que se cancele la implementaciĆ³n." - -#: ../../enterprise/include/class/AgentRepository.class.php:354 -#: ../../enterprise/include/class/AgentRepository.class.php:631 -#: ../../enterprise/include/class/AgentRepository.class.php:681 -#: ../../enterprise/include/class/DeploymentCenter.class.php:757 -#: ../../enterprise/include/class/DeploymentCenter.class.php:825 -#: ../../enterprise/include/class/DeploymentCenter.class.php:1301 -#: ../../enterprise/include/class/DeploymentCenter.class.php:1397 -msgid "Architecture" -msgstr "Arquitectura" - -#: ../../enterprise/include/class/AgentRepository.class.php:375 -msgid "Transfer timeout" -msgstr "Tiempo de espera de transferencia" - -#: ../../enterprise/include/class/AgentRepository.class.php:383 -msgid "Installation file" -msgstr "Archivo de instalaciĆ³n" - -#: ../../enterprise/include/class/AgentRepository.class.php:423 -msgid "Agent version is required" -msgstr "Se requiere versiĆ³n de agente" - -#: ../../enterprise/include/class/AgentRepository.class.php:429 -#: ../../enterprise/include/class/DeploymentCenter.class.php:245 -msgid "Target OS is required" -msgstr "Se requiere SO de destion" - -#: ../../enterprise/include/class/AgentRepository.class.php:431 -#: ../../enterprise/include/class/DeploymentCenter.class.php:247 -msgid "Target architecture is required" -msgstr "Se requiere arquitectura de destino" - -#: ../../enterprise/include/class/AgentRepository.class.php:440 -#: ../../enterprise/include/class/NetworkConfigManager.class.php:2089 -msgid "Cannot create target dir [" -msgstr "No se ha podido crear el dir de destino [" - -#: ../../enterprise/include/class/AgentRepository.class.php:461 -#, php-format -msgid "Invalid installation file for %s" -msgstr "Archivo de instalaciĆ³n para %s no vĆ”lido" - -#: ../../enterprise/include/class/AgentRepository.class.php:490 -msgid "Installation files not modified" -msgstr "Archivos de instalaciĆ³n no modificados" - -#: ../../enterprise/include/class/AgentRepository.class.php:509 -msgid "Installation files updated" -msgstr "Archivos de instalaciĆ³n actualizados" - -#: ../../enterprise/include/class/AgentRepository.class.php:512 -#: ../../enterprise/meta/include/functions_wizard_meta.php:2341 -msgid "Agent successfully updated" -msgstr "Agente actualizado correctamente" - -#: ../../enterprise/include/class/AgentRepository.class.php:516 -msgid "You must provide installation files to create a new entry." -msgstr "AƱada archivos de instalaciĆ³n para crear una nueva entrada." - -#: ../../enterprise/include/class/AgentRepository.class.php:537 -msgid "This agent has been already defined." -msgstr "El agente ya ha sido definido." - -#: ../../enterprise/include/class/AgentRepository.class.php:553 -msgid "Agent successfully registered and uploaded" -msgstr "Agente registrado y actualizado correctamente" - -#: ../../enterprise/include/class/AgentRepository.class.php:591 -#: ../../enterprise/include/class/DeploymentCenter.class.php:335 -msgid "Target successfully deleted" -msgstr "Objetivo borrado correctamente" - -#: ../../enterprise/include/class/AgentRepository.class.php:613 -#: ../../enterprise/godmode/menu.php:126 -msgid "Software agents repository" -msgstr "Repositorio de agentes software" - -#: ../../enterprise/include/class/AgentRepository.class.php:633 -msgid "Uploaded by" -msgstr "Subido por" - -#: ../../enterprise/include/class/AgentRepository.class.php:634 -msgid "Upload date" -msgstr "Fecha de subida" - -#: ../../enterprise/include/class/AgentRepository.class.php:713 -msgid "Add new software" -msgstr "AƱadir nuevo software" - -#: ../../enterprise/include/class/AgentRepository.class.php:900 -msgid "Add new Software agent" -msgstr "AƱadir nuevo agente software" - -#: ../../enterprise/include/class/AgentRepository.class.php:903 -msgid "Update Software agent" -msgstr "Actualizar agente software" - -#: ../../enterprise/include/class/LogSource.class.php:455 -msgid "Source is required" -msgstr "Fuente requerida" - -#: ../../enterprise/include/class/LogSource.class.php:562 -msgid "id cannot be empty" -msgstr "El Id no puede estar vacĆ­o" - -#: ../../enterprise/include/class/LogSource.class.php:610 -#, php-format -msgid "Log monitoring is disabled. %s" -msgstr "La monitorizaciĆ³n de logs estĆ” desactivada. %s" - -#: ../../enterprise/include/class/LogSource.class.php:680 -#: ../../enterprise/include/class/LogSource.class.php:846 -msgid "Add log source" -msgstr "AƱadir fuente de logs" - -#: ../../enterprise/include/class/LogSource.class.php:715 -msgid "Source name" -msgstr "Nombre de la fuente" - -#: ../../enterprise/include/class/LogSource.class.php:850 -msgid "Update log source" -msgstr "Actualizar fuente del log" - -#: ../../enterprise/include/class/Aws.S3.php:60 -msgid "Aws S3" -msgstr "Aws S3" - -#: ../../enterprise/include/class/Aws.S3.php:214 -msgid "You must select something." -msgstr "Debe seleccionar algo." - -#: ../../enterprise/include/class/Aws.S3.php:236 -msgid "Discovery.Cloud.AWS.S3" -msgstr "Discovery.Cloud.AWS.S3" - -#: ../../enterprise/include/class/Aws.S3.php:294 -msgid "Unknown task" -msgstr "Tarea desconocida" - -#: ../../enterprise/include/class/Aws.S3.php:313 -msgid "Unknown section." -msgstr "SecciĆ³n desconocida." - -#: ../../enterprise/include/class/Aws.S3.php:339 -msgid "S3" -msgstr "S3" - -#: ../../enterprise/include/class/Aws.S3.php:344 -msgid "Bucket monitoring" -msgstr "MonitorizaciĆ³n de buckets." - -#: ../../enterprise/include/class/Aws.S3.php:454 -msgid "No buckets found." -msgstr "No se han encontrado buckets." - -#: ../../enterprise/include/class/Aws.S3.php:598 -msgid "Select Buckets to be monitored" -msgstr "Seleccionar buckets a monitorizar" - -#: ../../enterprise/include/class/Aws.S3.php:633 -msgid "Monitor bucket size" -msgstr "Monitorizar tamaƱo de bucket" - -#: ../../enterprise/include/class/Aws.S3.php:643 -msgid "Monitor bucket total items" -msgstr "Monitorizar elementos totales de bucket" - -#: ../../enterprise/include/class/MySQL.app.php:173 -msgid "" -"This MySQL configuration has been already defined. Please edit it or create a " -"new one." -msgstr "Ya se ha definido esta configuraciĆ³n MySQL. EdĆ­tela o cree una nueva." - -#: ../../enterprise/include/class/MySQL.app.php:216 -msgid "You must provide a valid MySQL server IP or FQDN." -msgstr "AƱada una IP de servidor MySQL vĆ”lida o FQDN." - -#: ../../enterprise/include/class/MySQL.app.php:221 -msgid "You must provide a valid port number." -msgstr "AƱada un nĆŗmero de puerto vĆ”lido." - -#: ../../enterprise/include/class/MySQL.app.php:233 -msgid "Discovery.Application.MySQL" -msgstr "Discovery.Application.MySQL" - -#: ../../enterprise/include/class/MySQL.app.php:285 -msgid "Failed to find discovery MySQL task." -msgstr "No se ha encontrado la tarea discovery MySQL." - -#: ../../enterprise/include/class/MySQL.app.php:420 -#: ../../enterprise/godmode/setup/setup.php:178 -msgid "MySQL" -msgstr "MySQL" - -#: ../../enterprise/include/class/MySQL.app.php:491 -msgid "MySQL server IP" -msgstr "IP del servidor MySQL" - -#: ../../enterprise/include/class/MySQL.app.php:492 -msgid "Comma separated, as many targets as you need." -msgstr "Tantos objetivos como desee, separados por comas." - -#: ../../enterprise/include/class/MySQL.app.php:511 -msgid "MySQL server Port" -msgstr "Puerto del servidor MySQL" - -#: ../../enterprise/include/class/MySQL.app.php:657 -msgid "" -"Defines a target agent where this task will store data detected, if you have " -"defined multiple targets, define a comma separated list of names here or leave " -"in blank to use server IP address/ FQDN." -msgstr "" -"Define un agente de destino donde la tarea almacenarĆ” los datos detectados. Si " -"tiene varios objetivos definidos, defina una lista de nombres separados por " -"coma aquĆ­ o dĆ©jelo en blanco para usar la direcciĆ³n IP/FQDN del servidor." - -#: ../../enterprise/include/class/MySQL.app.php:698 -msgid "Scan databases" -msgstr "Bases de datos de escaneo" - -#: ../../enterprise/include/class/MySQL.app.php:714 -msgid "Create agent per database" -msgstr "Crear agente por base de datos" - -#: ../../enterprise/include/class/MySQL.app.php:735 -msgid "Custom database agent prefix" -msgstr "Prefijo de agente de base de datos personalizado" - -#: ../../enterprise/include/class/MySQL.app.php:736 -msgid "" -"Defines a custom prefix to be concatenated before database agent names " -"generated by this task." -msgstr "" -"Define un prefijo personalizado a concatenar antes de los nombres de agentes " -"de base de datos generados por esta tarea." - -#: ../../enterprise/include/class/MySQL.app.php:805 -msgid "Retrieve InnoDB statistics" -msgstr "Obtener estadĆ­sticas InnoDB" - -#: ../../enterprise/include/class/MySQL.app.php:821 -#: ../../enterprise/include/class/Oracle.app.php:760 -#: ../../enterprise/include/class/DB2.app.php:737 -msgid "Retrieve cache statistics" -msgstr "Obtener estadĆ­sticas de bases de datos" - -#: ../../enterprise/include/class/Oracle.app.php:172 -msgid "" -"This Oracle configuration has been already defined. Please edit it or create a " -"new one." -msgstr "Esta configuraciĆ³n Oracle ya se ha definido. EdĆ­tela o cree una nueva." - -#: ../../enterprise/include/class/Oracle.app.php:214 -msgid "You must provide a valid Oracle server IP or FQDN." -msgstr "AƱada una IP de servidor o FQDN de Oracle vĆ”lidos." - -#: ../../enterprise/include/class/Oracle.app.php:226 -msgid "Discovery.Application.Oracle" -msgstr "Discovery.Application.Oracle" - -#: ../../enterprise/include/class/Oracle.app.php:277 -msgid "Failed to find discovery Oracle task." -msgstr "No se ha podido encontrar la tarea discovery Oracle." - -#: ../../enterprise/include/class/Oracle.app.php:411 -#: ../../enterprise/godmode/setup/setup.php:179 -#: ../../enterprise/godmode/menu.php:175 -msgid "Oracle" -msgstr "Oracle" - -#: ../../enterprise/include/class/Oracle.app.php:493 -msgid "Oracle target strings" -msgstr "Cadenas objetivo de Oracle" - -#: ../../enterprise/include/class/Oracle.app.php:494 -msgid "" -"SERVER:PORT/SID, comma separated or line by line, as many targets as you need." -msgstr "" -"SERVER:PORT/SID, separados por coma o lĆ­nea por lĆ­nea, tantos objetivos como " -"precise." - -#: ../../enterprise/include/class/Oracle.app.php:728 -msgid "Calculate fragmentation ratio" -msgstr "Calcular la tasa de fragmentaciĆ³n" - -#: ../../enterprise/include/class/Oracle.app.php:744 -msgid "Monitor tablespaces" -msgstr "Espacio de tablas del monitor" - -#: ../../enterprise/include/class/DB2.app.php:165 -msgid "" -"This DB2 configuration has been already defined. Please edit it or create a " -"new one." -msgstr "Esta configuraciĆ³n DB2 ya se ha definido. Edite o cree una nueva." - -#: ../../enterprise/include/class/DB2.app.php:207 -msgid "You must provide a valid DB2 server IP or FQDN." -msgstr "Debe proveer una IP de servidor DB2 vĆ”lida o FQDN." - -#: ../../enterprise/include/class/DB2.app.php:219 -msgid "Discovery.Application.DB2" -msgstr "Discovery.AplicaciĆ³n.DB2" - -#: ../../enterprise/include/class/DB2.app.php:270 -msgid "Failed to find discovery DB2 task." -msgstr "No se ha podido encontrar la tarea DB2 de discovery." - -#: ../../enterprise/include/class/DB2.app.php:404 -#: ../../enterprise/godmode/menu.php:178 -msgid "DB2" -msgstr "DB2" - -#: ../../enterprise/include/class/DB2.app.php:486 -msgid "DB2 target strings" -msgstr "Cadenas objetivo de DB2" - -#: ../../enterprise/include/class/DB2.app.php:487 -msgid "" -"SERVER:PORT/DATABASE, comma separated or line by line, as many targets as you " -"need." -msgstr "" -"SERVIDOR:PUERTO/BASE DE DATOS, separados por coma o lĆ­nea por lĆ­nea, tantos " -"objetivos como desee." - -#: ../../enterprise/include/class/DB2.app.php:673 -msgid "Get database summary" -msgstr "Obtener resumen de base de datos" - -#: ../../enterprise/include/class/DB2.app.php:689 -msgid "Check transactional log utilization" -msgstr "Comprobar uso de logs transaccionales" - -#: ../../enterprise/include/class/DB2.app.php:705 -msgid "Get number of connections" -msgstr "Obtener nĆŗmero de conexiones" - -#: ../../enterprise/include/class/DB2.app.php:721 -msgid "Check DB size" -msgstr "Comprobar tamaƱo de la base de datos" - -#: ../../enterprise/include/class/SAP.app.php:154 -msgid "" -"This SAP configuration has been already defined. Please edit it or create a " -"new one." -msgstr "Ya se ha definido esta configuraciĆ³n SAP. EdĆ­tela o cree una nueva." - -#: ../../enterprise/include/class/SAP.app.php:195 -msgid "You must specify at last one SAP hostname." -msgstr "Especifique al menos un nombre de host SAP." - -#: ../../enterprise/include/class/SAP.app.php:206 -msgid "Discovery.Application.SAP" -msgstr "Discovery.Application.SAP" - -#: ../../enterprise/include/class/SAP.app.php:262 -msgid "Failed to find discovery SAP task." -msgstr "No se ha encontrado la tarea de discovery SAP." - -#: ../../enterprise/include/class/SAP.app.php:286 -msgid "Select at least a module." -msgstr "Seleccione al menos un mĆ³dulo." - -#: ../../enterprise/include/class/SAP.app.php:354 -msgid "SAP R3" -msgstr "SAP R3" - -#: ../../enterprise/include/class/SAP.app.php:371 -#: ../../enterprise/include/class/DeploymentCenter.class.php:482 -#: ../../enterprise/include/class/DeploymentCenter.class.php:490 -#: ../../enterprise/include/class/DeploymentCenter.class.php:498 -#: ../../enterprise/include/class/DeploymentCenter.class.php:657 -#: ../../enterprise/extensions/vmware/vmware_view.php:1737 -msgid "here" -msgstr "aquĆ­" - -#: ../../enterprise/include/class/SAP.app.php:547 -msgid "SAP Hostname" -msgstr "Nombre del host SAP" - -#: ../../enterprise/include/class/SAP.app.php:571 -msgid "SAP Client" -msgstr "Cliente SAP" - -#: ../../enterprise/include/class/SAP.app.php:585 -msgid "SAP System Number" -msgstr "NĆŗmero del sistema SAP" - -#: ../../enterprise/include/class/SAP.app.php:604 -#: ../../enterprise/include/class/SAP.app.php:607 -#: ../../enterprise/include/class/DeploymentCenter.class.php:1135 -#: ../../enterprise/include/class/DeploymentCenter.class.php:1138 -#: ../../enterprise/include/class/DeploymentCenter.class.php:1265 -#: ../../enterprise/include/class/DeploymentCenter.class.php:1268 -#: ../../godmode/wizards/HostDevices.class.php:1434 -#: ../../godmode/wizards/HostDevices.class.php:1437 -msgid "No credentials available" -msgstr "No hay credenciales disponibles" - -#: ../../enterprise/include/class/SAP.app.php:605 -#: ../../enterprise/include/class/DeploymentCenter.class.php:1136 -#: ../../enterprise/include/class/DeploymentCenter.class.php:1266 -#: ../../godmode/wizards/HostDevices.class.php:1435 -#: ../../godmode/agentes/module_manager_editor_network.php:474 -msgid "Manage credentials" -msgstr "Gestionar credenciales" - -#: ../../enterprise/include/class/SAP.app.php:617 -#: ../../enterprise/include/class/SAP.app.php:631 -msgid "SAP Credentials" -msgstr "Credenciales SAP" - -#: ../../enterprise/include/class/SAP.app.php:617 -#: ../../enterprise/include/class/SAP.app.php:631 -msgid "Optional" -msgstr "Opcional" - -#: ../../enterprise/include/class/SAP.app.php:764 -#, php-format -msgid "" -"Module 180 must be customized before being used, please use advanced options " -"to define the module following the documentation:
%s" -msgstr "" -"El mĆ³dulo 180 debe personalizarse antes de usarse, use las opciones avanzadas " -"para definir el mĆ³dulo siguiendo la documentaciĆ³n:
%s" - -#: ../../enterprise/include/class/SAP.app.php:785 -msgid "Available modules" -msgstr "MĆ³dulos disponibles" - -#: ../../enterprise/include/class/SAP.app.php:821 -msgid "Add monitors" -msgstr "AƱadir monitores" - -#: ../../enterprise/include/class/SAP.app.php:834 -msgid "Remove monitors" -msgstr "Eliminar monitores" - -#: ../../enterprise/include/class/SAP.app.php:845 -#: ../../enterprise/godmode/massive/massive_edit_service_elements.php:350 -#: ../../enterprise/godmode/massive/massive_delete_service_elements.php:241 -#: ../../enterprise/godmode/massive/massive_add_service_elements.php:594 -#: ../../enterprise/godmode/massive/massive_create_services.php:1235 -msgid "Selected modules" -msgstr "MĆ³dulos seleccionados" - -#: ../../enterprise/include/class/SAP.app.php:885 -msgid "Define your custom SAP modules." -msgstr "Defina sus mĆ³dulos SAP personalizados." - -#: ../../enterprise/include/class/SAP.app.php:884 -msgid "Advanced module configuration" -msgstr "ConfiguraciĆ³n de mĆ³dulos avanzada" - -#: ../../enterprise/include/class/SAP.app.php:894 -msgid "Custom module definitions" -msgstr "Definiciones de mĆ³dulos personalizadas" - -#: ../../enterprise/include/class/SAP.app.php:895 -msgid "" -"Each line is a module definition using following format: module name ; " -"module_type ; SAP check definition." -msgstr "" -"Cada lĆ­nea es una definiciĆ³n de mĆ³dulo con el siguiente formato: nombre del " -"mĆ³dulo ; tipo_de_mĆ³dulo ; definiciĆ³n de comprobaciĆ³n SAP." - -#: ../../enterprise/include/class/ManageBackups.class.php:106 -#, php-format -msgid "%s database backup manager" -msgstr "%s de copia de seguridad de la base de datos" - -#: ../../enterprise/include/class/ManageBackups.class.php:129 -#, php-format -msgid "" -"To schedule a periodic (or one-time) backup task you can do it through %s." -msgstr "" -"Para programar una tarea de copia de seguridad periĆ³dica (o Ćŗnica), puede " -"hacerlo a travĆ©s de %s." - -#: ../../enterprise/include/class/ManageBackups.class.php:189 -msgid "Path backups" -msgstr "Ruta de la copia de seguridad" - -#: ../../enterprise/include/class/ManageBackups.class.php:314 -msgid "Rollback to this backup" -msgstr "Revertir a esta copia de seguridad" - -#: ../../enterprise/include/class/ManageBackups.class.php:323 -msgid "Lost" -msgstr "Perdido" - -#: ../../enterprise/include/class/ManageBackups.class.php:330 -msgid "In Progress" -msgstr "En Progreso" - -#: ../../enterprise/include/class/ManageBackups.class.php:361 -msgid "The backup was successfully deleted" -msgstr "La copia de seguridad se ha eliminado correctamente" - -#: ../../enterprise/include/class/ManageBackups.class.php:367 -msgid "Missed id parameter" -msgstr "ParĆ”metro de identificaciĆ³n omitido" - -#: ../../enterprise/include/class/ManageBackups.class.php:386 -msgid "Something was wrong with the rollback action." -msgstr "Algo andaba mal con la acciĆ³n de reversiĆ³n." - -#: ../../enterprise/include/class/ManageBackups.class.php:389 -msgid "Missed id parameter." -msgstr "ParĆ”metro id omitido." - -#: ../../enterprise/include/class/ManageBackups.class.php:437 -msgid "" -"Are you sure you want to delete this database backup file? Once deleted you " -"will not be able to recover it." -msgstr "" -"ĀæEstĆ” seguro de que desea eliminar este archivo de copia de seguridad de la " -"base de datos? Una vez eliminado no podrĆ”s recuperarlo." - -#: ../../enterprise/include/class/ManageBackups.class.php:439 -msgid "Do you like perform a database restoration?" -msgstr "ĀæDesea realizar una restauraciĆ³n de base de datos?" - -#: ../../enterprise/include/class/Omnishell.class.php:214 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:414 -msgid "Please follow the wizard." -msgstr "Siga las instrucciones del asistente." - -#: ../../enterprise/include/class/Omnishell.class.php:226 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:427 -msgid "You have no acess to edit this command." -msgstr "No tiene acceso para editar este comando." - -#: ../../enterprise/include/class/Omnishell.class.php:261 -msgid "Failed to save command." -msgstr "Error al guardar comando." - -#: ../../enterprise/include/class/Omnishell.class.php:272 -msgid "Command not found." -msgstr "Comando no encontrado." - -#: ../../enterprise/include/class/Omnishell.class.php:349 -#: ../../enterprise/include/class/Omnishell.class.php:610 -msgid "You must install php-yaml in order to use this feature." -msgstr "Instale php-yaml para usar esta funcionalidad." - -#: ../../enterprise/include/class/Omnishell.class.php:362 -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:4081 -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:4202 -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:4362 -#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:543 -#: ../../enterprise/meta/advanced/policymanager.queue.php:261 -#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:443 -#: ../../enterprise/godmode/policies/policy_queue.php:671 -#: ../../enterprise/godmode/policies/policy_queue.php:674 -msgid "Finished" -msgstr "Terminado" - -#: ../../enterprise/include/class/Omnishell.class.php:363 -#: ../../enterprise/include/class/Omnishell.class.php:1087 -#: ../../enterprise/include/class/DatabaseHA.class.php:214 -#: ../../godmode/wizards/DiscoveryTaskList.class.php:1845 -msgid "Pending" -msgstr "Pendiente" - -#: ../../enterprise/include/class/Omnishell.class.php:364 -msgid "Not Started" -msgstr "No iniciado" - -#: ../../enterprise/include/class/Omnishell.class.php:401 -#: ../../enterprise/include/functions_ipam.php:1411 -#: ../../enterprise/include/functions_ipam.php:1418 -#: ../../enterprise/include/functions_ipam.php:1423 -#: ../../enterprise/meta/advanced/policymanager.queue.php:260 -#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:702 -#: ../../enterprise/godmode/policies/policy_queue.php:650 -#: ../../godmode/wizards/DiscoveryTaskList.class.php:606 -msgid "Progress" -msgstr "Progreso" - -#: ../../enterprise/include/class/Omnishell.class.php:442 -msgid "Commands status" -msgstr "Estado de los comandos" - -#: ../../enterprise/include/class/Omnishell.class.php:487 -msgid "Create command" -msgstr "Crear comando" - -#: ../../enterprise/include/class/Omnishell.class.php:506 -msgid "Selected command definitions will be erased" -msgstr "Las definiciones de los comandos seleccionadas se eliminarĆ”n." - -#: ../../enterprise/include/class/Omnishell.class.php:688 -msgid "Time out" -msgstr "Tiempo fuera de servicio" - -#: ../../enterprise/include/class/Omnishell.class.php:697 -msgid "Retries " -msgstr "Reintentos " - -#: ../../enterprise/include/class/Omnishell.class.php:708 -msgid "Preconditions " -msgstr "Condiciones previas " - -#: ../../enterprise/include/class/Omnishell.class.php:709 -msgid "All commands defined line per line must success to execute main commands" -msgstr "" -"Todos los comandos definidos en cada lĆ­nea deben ser correctos para ejecutar " -"los comandos principales" - -#: ../../enterprise/include/class/Omnishell.class.php:721 -msgid "Execute commands " -msgstr "Ejecutar comandos " - -#: ../../enterprise/include/class/Omnishell.class.php:722 -msgid "Define as many lines as commands you want to execute" -msgstr "Definir tantas lĆ­neas como comandos desee ejecutar" - -#: ../../enterprise/include/class/Omnishell.class.php:734 -msgid "Postconditions " -msgstr "Condiciones posteriores " - -#: ../../enterprise/include/class/Omnishell.class.php:735 -msgid "" -"All commands defined line per line must success to consider command success" -msgstr "" -"Todos los comandos definidos en cada lĆ­nea deben ser correctos para que el " -"comando se considere correcto" - -#: ../../enterprise/include/class/Omnishell.class.php:825 -#: ../../enterprise/include/class/Omnishell.class.php:904 -#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:264 -#: ../../enterprise/godmode/reporting/graph_template_wizard.php:217 -#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:391 -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:749 -#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:239 -#: ../../enterprise/godmode/policies/policy_agents.php:499 -#: ../../enterprise/godmode/policies/policy_agents.php:513 -msgid "Filter agent" -msgstr "Filtrar agente" - -#: ../../enterprise/include/class/Omnishell.class.php:835 -#: ../../godmode/agentes/planned_downtime.editor.php:805 -msgid "Available agents" -msgstr "Agentes disponibles" - -#: ../../enterprise/include/class/Omnishell.class.php:867 -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:857 -msgid "Add agents" -msgstr "AƱadir agentes" - -#: ../../enterprise/include/class/Omnishell.class.php:880 -msgid "Remove agents" -msgstr "Eliminar agentes" - -#: ../../enterprise/include/class/Omnishell.class.php:915 -#: ../../enterprise/godmode/massive/massive_edit_service_elements.php:335 -#: ../../enterprise/godmode/massive/massive_delete_service_elements.php:226 -#: ../../enterprise/godmode/massive/massive_add_service_elements.php:579 -#: ../../enterprise/godmode/massive/massive_create_services.php:1220 -msgid "Selected agents" -msgstr "Agentes seleccionados" - -#: ../../enterprise/include/class/Omnishell.class.php:1157 -msgid "Selected command definition will be erased" -msgstr "La definiciĆ³n de comando seleccionada se eliminarĆ”" - -#: ../../enterprise/include/class/Omnishell.class.php:1243 -msgid "Command viewer" -msgstr "Visor de comandos" - -#: ../../enterprise/include/class/Omnishell.class.php:1251 -msgid "Detailed view" -msgstr "Vista detallada" - -#: ../../enterprise/include/class/Omnishell.class.php:1392 -msgid "Not an array of ids" -msgstr "No un conjunto de IDs" - -#: ../../enterprise/include/class/Omnishell.class.php:1450 -msgid "There are no targets for this remote command" -msgstr "No hay objetivos para este comando remoto" - -#: ../../enterprise/include/class/Omnishell.class.php:1457 -msgid "Command does not exist" -msgstr "El comando no existe" - -#: ../../enterprise/include/class/Omnishell.class.php:1553 -#: ../../enterprise/include/lib/Metaconsole/Node.php:141 -#: ../../enterprise/include/lib/Metaconsole/Node.php:190 -#: ../../enterprise/include/lib/Metaconsole/Node.php:241 -#: ../../enterprise/include/lib/Metaconsole/Node.php:336 -#: ../../enterprise/include/lib/Metaconsole/Node.php:389 -#: ../../enterprise/meta/advanced/metasetup.consoles.php:99 -msgid "success" -msgstr "con Ć©xito" - -#: ../../enterprise/include/class/Omnishell.class.php:1556 -msgid "timed out" -msgstr "tiempo de espera agotado" - -#: ../../enterprise/include/class/Omnishell.class.php:1559 -msgid "failed" -msgstr "error" - -#: ../../enterprise/include/class/Omnishell.class.php:1575 -msgid "Waiting results..." -msgstr "Esperando resultados..." - -#: ../../enterprise/include/class/Omnishell.class.php:1594 -msgid "RCMD does not exist" -msgstr "RCMD no existe" - -#: ../../enterprise/include/class/VMware.app.php:230 -msgid "" -"This VMware configuration has been already defined. Please edit it or create a " -"new one." -msgstr "Ya se ha definido la configuraciĆ³n VMware. EdĆ­tela o cree una nueva." - -#: ../../enterprise/include/class/VMware.app.php:274 -msgid "You must provide a valid V-Center IP or FQDN." -msgstr "AƱada una IP V-Center o FQDN vĆ”lida." - -#: ../../enterprise/include/class/VMware.app.php:291 -msgid "Discovery.Application.VMware" -msgstr "Discovery.Application.VMware" - -#: ../../enterprise/include/class/VMware.app.php:310 -msgid "Please select a valid group" -msgstr "Seleccione un grupo vĆ”lido" - -#: ../../enterprise/include/class/VMware.app.php:369 -msgid "Failed to find discovery VMware task." -msgstr "No se ha podido encontrar la tarea de discovery VMware." - -#: ../../enterprise/include/class/VMware.app.php:384 -msgid "Threads must be equal or greater than 1." -msgstr "Los hilos deben ser igual o mayor que 1." - -#: ../../enterprise/include/class/VMware.app.php:503 -#: ../../enterprise/godmode/menu.php:176 -msgid "VMware" -msgstr "VMware" - -#: ../../enterprise/include/class/VMware.app.php:656 -msgid "Datacenter user" -msgstr "Usuario del datacenter" - -#: ../../enterprise/include/class/VMware.app.php:707 -msgid "V-Center IP" -msgstr "V-Center IP" - -#: ../../enterprise/include/class/VMware.app.php:718 -msgid "Datacenter name" -msgstr "Nombre del centro de datos" - -#: ../../enterprise/include/class/VMware.app.php:719 -msgid "" -"This name must match with the name wich appears when you log in you VMware " -"manager" -msgstr "" -"El nombre debe coincidir con el nombre que aparece al iniciar sesiĆ³n en el " -"gestor de VMware." - -#: ../../enterprise/include/class/VMware.app.php:749 -msgid "Encrypt passwords" -msgstr "Cifrar contraseƱas" - -#: ../../enterprise/include/class/VMware.app.php:870 -msgid "Max threads" -msgstr "MĆ”ximo de hilos" - -#: ../../enterprise/include/class/VMware.app.php:879 -msgid "Re-scan interval" -msgstr "Intervalo de re-escaneo" - -#: ../../enterprise/include/class/VMware.app.php:880 -msgid "Enables re-scan entities process every interval defined." -msgstr "" -"Hace posible que las entidades de re-escaneo procesen todos los intervalos " -"definidos." - -#: ../../enterprise/include/class/VMware.app.php:913 -msgid "Retry send" -msgstr "Reintentar envĆ­o" - -#: ../../enterprise/include/class/VMware.app.php:923 -msgid "Event mode" -msgstr "Modo de evento" - -#: ../../enterprise/include/class/VMware.app.php:923 -msgid "Only for VCenter." -msgstr "Solo para VCenter." - -#: ../../enterprise/include/class/VMware.app.php:933 -msgid "Virtual network monitoring" -msgstr "MonitorizaciĆ³n de redes virtuales" - -#: ../../enterprise/include/class/VMware.app.php:964 -msgid "Extra settings" -msgstr "Ajustes adicionales" - -#: ../../enterprise/include/class/VMware.app.php:965 -msgid "This RAW block will be directly added to config file." -msgstr "Este bloque RAM se aƱadirĆ” directamente al archivo de configuraciĆ³n." - -#: ../../enterprise/include/class/VMware.app.php:1259 -msgid "Include datastores" -msgstr "Incluir almacenes de datos" - -#: ../../enterprise/include/class/VMware.app.php:1269 -msgid "Include datacenters" -msgstr "Incluir centros de datos" - -#: ../../enterprise/include/class/VMware.app.php:1279 -msgid "Include esxs" -msgstr "Incluir esxs" - -#: ../../enterprise/include/class/VMware.app.php:1289 -msgid "Include vms" -msgstr "Incluir vms" - -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:473 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:532 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:591 -msgid "Alert not found." -msgstr "Alerta no encontrada." - -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:480 -msgid "Invalid json data" -msgstr "Datos json no vĆ”lidos" - -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:575 -msgid "Rules updated." -msgstr "Reglas actualizadas." - -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:578 -msgid "JSON decoding error. Please call support." -msgstr "Error de decodificaciĆ³n JSON. PĆ³ngase en contacto con soporte." - -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:630 -msgid "There was a problem creating Action. You must select an action" -msgstr "Ha habido un problema al crear la acciĆ³n. Seleccione la acciĆ³n." - -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:899 -msgid "Pass" -msgstr "Pasar" - -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:900 -msgid "Drop" -msgstr "Soltar" - -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:926 -msgid "Module alert" -msgstr "Alerta de mĆ³dulos" - -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:946 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2020 -msgid "Load from template" -msgstr "Cargar desde la plantilla" - -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:963 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2199 -#: ../../godmode/alerts/configure_alert_template.php:625 -#: ../../godmode/alerts/alert_view.php:258 -msgid "Use special days list" -msgstr "Utilizar lista de dĆ­as especiales" - -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:980 -#: ../../godmode/alerts/configure_alert_template.php:661 -msgid "Schedule" -msgstr "Programar" - -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:983 -#: ../../godmode/alerts/configure_alert_template.php:665 -msgid "No alert has been scheduled yet" -msgstr "AĆŗn no se ha programado ninguna alerta" - -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1005 -msgid "Execute alert" -msgstr "Ejecutar alerta" - -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1008 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3459 -msgid "from" -msgstr "desde" - -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1028 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3477 -msgid "times in" -msgstr "veces en" - -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1038 -msgid "threshold" -msgstr "umbral" - -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1048 -msgid "Rule evaluation mode" -msgstr "Modo de evaluaciĆ³n de reglas" - -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1048 -msgid "Pass - All alerts are evaluated. Drop - It stops when 1 alert matches." -msgstr "" -"Pass - Se analizan todas las alertas. Drop - Para cuando coincide 1 alerta." - -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1065 -msgid "Grouped by" -msgstr "Agrupados por" - -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1082 -#: ../../enterprise/godmode/alerts/alert_inventory_builder.php:270 -#: ../../godmode/snmpconsole/snmp_alert.php:1130 -#: ../../godmode/alerts/configure_alert_template.php:749 -msgid "Disable event" -msgstr "Deshabilitar evento" - -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1204 -msgid "" -"The templates shown are only for correlative alerts, event alert (legacy) will " -"be deprecated in the future" -msgstr "" -"Las plantillas mostradas solo sirven para las alertas correlativas, la alerta " -"de eventos (heredada) se despreciarĆ” en el futuro" - -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1214 -msgid "Available items" -msgstr "Elementos disponibles" - -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1215 -msgid "Block" -msgstr "Bloquear" - -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1263 -#: ../../enterprise/include/lib/AlertCorrelation.class.php:1044 -msgid "Log content" -msgstr "Contenido de log" - -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1268 -#: ../../enterprise/include/lib/AlertCorrelation.class.php:1047 -msgid "Log source" -msgstr "Fuente de log" - -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1273 -#: ../../enterprise/include/lib/AlertCorrelation.class.php:1050 -msgid "Log agent" -msgstr "Agente de log" - -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1331 -#: ../../enterprise/include/lib/AlertCorrelation.class.php:1056 -msgid "Event content" -msgstr "Contenido de evento" - -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1336 -#: ../../enterprise/include/lib/AlertCorrelation.class.php:1053 -msgid "Event user comment" -msgstr "Comentario de usuario de evento" - -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1341 -#: ../../enterprise/include/lib/AlertCorrelation.class.php:1059 -msgid "Event agent" -msgstr "Agente de evento" - -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1346 -#: ../../enterprise/include/lib/AlertCorrelation.class.php:1062 -msgid "Event module" -msgstr "MĆ³dulo de evento" - -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1351 -#: ../../enterprise/include/lib/AlertCorrelation.class.php:1065 -msgid "Event module alerts" -msgstr "Alertas de mĆ³dulos de eventos" - -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1356 -#: ../../enterprise/include/lib/AlertCorrelation.class.php:1068 -msgid "Event group" -msgstr "Grupo de eventos" - -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1362 -msgid "Event group (recursive)" -msgstr "Recursividad del grupo de eventos" - -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1368 -#: ../../enterprise/include/lib/AlertCorrelation.class.php:1074 -msgid "Event severity" -msgstr "Prioridad de evento" - -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1373 -#: ../../enterprise/include/lib/AlertCorrelation.class.php:1077 -msgid "Event tag" -msgstr "Etiqueta de evento" - -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1378 -#: ../../enterprise/include/lib/AlertCorrelation.class.php:1080 -msgid "Event user" -msgstr "Usuario de evento" - -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1408 -msgid "Operators" -msgstr "Operadores" - -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1413 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1457 -#: ../../enterprise/include/lib/AlertCorrelation.class.php:1393 -msgid "greater than" -msgstr "%1$s debe ser mayor que %2$d (incluido)" - -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1418 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1461 -#: ../../enterprise/include/lib/AlertCorrelation.class.php:1397 -#: ../../enterprise/include/lib/AlertCorrelation.class.php:1405 -msgid "less than" -msgstr "menor que" - -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1423 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1465 -#: ../../enterprise/include/lib/AlertCorrelation.class.php:1401 -msgid "greater or equal than" -msgstr "Mayor o igual (>=)" - -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1428 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1469 -msgid "less or equal than" -msgstr "menor o igual (<=)" - -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1433 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1473 -#: ../../enterprise/include/lib/AlertCorrelation.class.php:1409 -msgid "is equal" -msgstr "es igual" - -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1438 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1477 -#: ../../enterprise/include/lib/AlertCorrelation.class.php:1413 -msgid "is different" -msgstr "es diferente " - -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1443 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1481 -#: ../../enterprise/include/lib/AlertCorrelation.class.php:1417 -msgid "is like (regex)" -msgstr "es como (regex)" - -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1448 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1485 -#: ../../enterprise/include/lib/AlertCorrelation.class.php:1421 -msgid "is not like (regex)" -msgstr "no es como (regex)" - -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1518 -msgid "Modifiers" -msgstr "Modificadores" - -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1523 -msgid "within an interval (seconds)" -msgstr "dentro de un intervalo (segundos)" - -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1528 -msgid "repeated at least" -msgstr "tiene al menos" - -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1568 -msgid "Matches on both true" -msgstr "Coincidencias en ambos verdaderos" - -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1574 -msgid "Matches when any is false" -msgstr "Coincidencias cuando alguna es falsa" - -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1580 -msgid "Matches on any true" -msgstr "Coincidencias en cualquier verdadero" - -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1586 -msgid "Matches when both are false" -msgstr "Coincidencias cuando ambas son falsas" - -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1592 -msgid "Matches when only one is true" -msgstr "Coincidencias cuando solo una es verdadera" - -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1598 -msgid "Matches when both are either true or false" -msgstr "Coincidencias cuando ambas son verdaderas o falsas" - -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1634 -msgid "Rule definition" -msgstr "DefiniciĆ³n de reglas" - -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1923 -msgid "Remove rule" -msgstr "Eliminar regla" - -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1934 -msgid "Remove item" -msgstr "Eliminar elemento" - -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1945 -#: ../../enterprise/include/functions_HA_cluster.php:64 -msgid "Cleanup" -msgstr "Limpiar" - -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2046 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2691 -#: ../../godmode/alerts/configure_alert_template.php:928 -#: ../../godmode/alerts/alert_commands.php:100 -#: ../../godmode/alerts/alert_commands.php:105 -#: ../../godmode/alerts/alert_commands.php:121 -#: ../../godmode/alerts/alert_commands.php:127 -#: ../../godmode/alerts/alert_view.php:484 -#: ../../godmode/alerts/alert_view.php:603 -#, php-format -msgid "Field %s" -msgstr "Campo %s" - -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2113 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2115 -msgid "Triggering Condition" -msgstr "TĆ©rminos de disparo" - -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2203 -#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:122 -#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:313 -#: ../../enterprise/godmode/alerts/alert_inventory_builder.php:230 -#: ../../godmode/snmpconsole/snmp_alert.php:1083 -#: ../../godmode/alerts/configure_alert_template.php:676 -#: ../../godmode/alerts/alert_templates.php:91 -#: ../../godmode/alerts/alert_view.php:262 -msgid "Time threshold" -msgstr "Umbral de tiempo" - -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2208 -#: ../../godmode/alerts/alert_view.php:266 -msgid "Number of alerts" -msgstr "NĆŗmero de alertas" - -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2296 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2559 -#: ../../godmode/alerts/alert_view.php:403 -#: ../../godmode/alerts/configure_alert_action.php:305 -msgid "Firing" -msgstr "Disparado" - -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2411 -msgid "There are no defined actions for this alert" -msgstr "No hay acciones definidas para esta alerta" - -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2482 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3456 -msgid "Number of alerts match" -msgstr "NĆŗmero de coincidencias de alerta" - -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2560 -#: ../../godmode/alerts/alert_view.php:404 -msgid "Recovering" -msgstr "Recuperado" - -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2577 -msgid "" -"Select the desired action and mode to view the Triggering fields for this " -"action" -msgstr "" -"Seleccione la acciĆ³n y el modo deseados para ver los campos de disparo de esta " -"acciĆ³n" - -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2594 -#: ../../godmode/alerts/alert_view.php:395 -msgid "Select the action" -msgstr "Seleccione la acciĆ³n" - -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2652 -#: ../../godmode/alerts/configure_alert_template.php:918 -#: ../../godmode/alerts/alert_view.php:435 -#: ../../godmode/alerts/alert_view.php:569 -msgid "Firing fields" -msgstr "Campos de disparado" - -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2654 -#: ../../godmode/alerts/alert_view.php:437 -msgid "" -"Fields passed to the command executed by this action when the alert is fired" -msgstr "" -"Campos pasados al comando ejecutado por esta acciĆ³n cuando la alerta es " -"disparada" - -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2660 -#: ../../godmode/alerts/alert_view.php:443 -#: ../../godmode/alerts/alert_view.php:566 -msgid "Fields configured on the command associated to the action" -msgstr "Campos configurados en el comando asociado a la acciĆ³n" - -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2663 -msgid "Alerts fields" -msgstr "Campos de alertas" - -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2665 -msgid "Triggering fields configured in Alerts" -msgstr "Campos de disparo configurados en Alertas" - -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2668 -#: ../../godmode/alerts/alert_view.php:451 -msgid "Action fields" -msgstr "Campos de la acciĆ³n" - -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2670 -#: ../../godmode/alerts/alert_view.php:453 -msgid "Triggering fields configured in action" -msgstr "Campos de disparado configurados en la acciĆ³n" - -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2673 -#: ../../godmode/alerts/alert_view.php:457 -msgid "Executed on firing" -msgstr "Ejecutado en disparado" - -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2675 -#: ../../godmode/alerts/alert_view.php:459 -#: ../../godmode/alerts/alert_view.php:571 -msgid "Fields used on execution when the alert is fired" -msgstr "Campos usados en la ejecuciĆ³n cuando la alerta es disparada" - -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2724 -msgid "Correlated alerts" -msgstr "Alertas correladas" - -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2748 -msgid "Alert succesfully deleted" -msgstr "Alerta eliminada correctamente" - -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2757 -msgid "Alerts validated" -msgstr "Alerta validada" - -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2760 -msgid "Failed to process validation" -msgstr "No se ha podido efectuar la validaciĆ³n" - -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2810 -#: ../../enterprise/godmode/modules/local_components.php:547 -#: ../../godmode/modules/manage_network_components.php:659 -msgid "Free Search" -msgstr "BĆŗsqueda libre" - -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2845 -#: ../../enterprise/meta/event/custom_events.php:69 -#: ../../enterprise/meta/event/custom_events.php:88 -#: ../../enterprise/meta/general/main_menu.php:398 -#: ../../enterprise/meta/general/main_header.php:291 -#: ../../godmode/reporting/reporting_builder.list_items.php:222 -#: ../../godmode/events/events.php:90 ../../godmode/events/events.php:110 -msgid "Filters" -msgstr "Filtros" - -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2902 -#: ../../enterprise/include/functions_ipam.php:1643 -#: ../../enterprise/meta/include/functions_autoprovision.php:473 -#: ../../enterprise/meta/include/functions_autoprovision.php:640 -#: ../../enterprise/godmode/reporting/reporting_builder.template_list_item.php:190 -#: ../../godmode/reporting/reporting_builder.list_items.php:440 -#: ../../godmode/reporting/reporting_builder.list_items.php:740 -#: ../../godmode/reporting/graph_builder.graph_editor.php:217 -#: ../../godmode/reporting/graph_builder.graph_editor.php:318 -msgid "Sort" -msgstr "Ordenar" - -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2905 -msgid "Matched" -msgstr "Coincidencias" - -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2928 -#: ../../enterprise/include/class/CommandCenter.class.php:329 -msgid "Sort elements" -msgstr "Clasificar elementos" - -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2973 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3359 -msgid "No associated actions" -msgstr "No hay acciones asociadas" - -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3007 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3023 -msgid "Add Actions" -msgstr "AƱadir acciones" - -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3078 -msgid "There are no defined correlated alerts" -msgstr "No hay alertas correlacionadas definidas" - -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3214 -msgid "Are you sure you want to disable the alert" -msgstr "ĀæEstĆ” seguro de que quiere desactivar la alerta?" - -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3221 -msgid "Are you sure you want to enable the alert" -msgstr "ĀæEstĆ” seguro de que quiere activar la alerta?" - -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3228 -msgid "Disabled Alert" -msgstr "Alerta desactivada" - -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3270 -msgid "Are you sure you want to standby the alert" -msgstr "ĀæEstĆ” seguro de que quiere poner la alerta en suspensiĆ³n?" - -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3277 -msgid "Are you sure you want to activate the alert" -msgstr "ĀæEstĆ” seguro de que quiere activar la alerta?" - -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3285 -msgid "Standby Alert" -msgstr "Alerta en suspensiĆ³n" - -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3334 -#: ../../enterprise/godmode/policies/policy_external_alerts.php:465 -#: ../../enterprise/godmode/policies/policy_alerts.php:434 -#: ../../godmode/alerts/alert_list.list.php:642 -msgid "Until" -msgstr "Hasta" - -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3357 -msgid "Delete Actions" -msgstr "Eliminar acciones" - -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3536 -msgid "Successfully added action" -msgstr "AcciĆ³n aƱadida correctamente" - -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3574 -msgid "Successfully delete action" -msgstr "AcciĆ³n eliminada correctamente" - -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3987 -msgid "Choosetime" -msgstr "Elegir hora" - -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:4210 -msgid "Drop Here" -msgstr "Caer aquĆ­" - -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:4268 -#: ../../godmode/alerts/configure_alert_template.php:1495 -msgid "Simple" -msgstr "Simple" - -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:4269 -#: ../../godmode/alerts/configure_alert_template.php:1496 -msgid "Detailed" -msgstr "Detallado" - -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:4324 -#: ../../godmode/alerts/configure_alert_template.php:1551 -msgid "Drag out to remove" -msgstr "Arrastre hacia afuera para eliminar" - -#: ../../enterprise/include/class/NetworkConfigManager.class.php:375 -msgid "Perform action" -msgstr "Realizar acciĆ³n" - -#: ../../enterprise/include/class/NetworkConfigManager.class.php:628 -#: ../../enterprise/godmode/modules/local_components.php:690 -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:627 -#: ../../enterprise/godmode/policies/policy_modules.php:1555 -#: ../../godmode/modules/manage_network_components.php:859 -#: ../../godmode/modules/manage_network_components.php:860 -#: ../../godmode/reporting/reporting_builder.php:1196 -#: ../../godmode/snmpconsole/snmp_alert.php:1347 -#: ../../godmode/snmpconsole/snmp_alert.php:1348 -#: ../../godmode/agentes/module_manager.php:1166 -#: ../../godmode/alerts/alert_actions.php:435 -#: ../../godmode/alerts/alert_templates.php:431 -msgid "Duplicate" -msgstr "Duplicar" - -#: ../../enterprise/include/class/NetworkConfigManager.class.php:1442 -msgid "NCM devices" -msgstr "Dispositivos NCM" - -#: ../../enterprise/include/class/NetworkConfigManager.class.php:1456 -msgid "NCM templates" -msgstr "Plantillas NCM" - -#: ../../enterprise/include/class/NetworkConfigManager.class.php:1470 -msgid "Registered vendors" -msgstr "Fabricantes registrados" - -#: ../../enterprise/include/class/NetworkConfigManager.class.php:1484 -msgid "Registered models" -msgstr "Modelos registrados" - -#: ../../enterprise/include/class/NetworkConfigManager.class.php:1498 -msgid "Registered snippets" -msgstr "Snippets registrados" - -#: ../../enterprise/include/class/NetworkConfigManager.class.php:1512 -msgid "Registered firmwares" -msgstr "Firmwares registrados" - -#: ../../enterprise/include/class/NetworkConfigManager.class.php:1548 -msgid "No agents with NCM features enabled yet" -msgstr "AĆŗn no hay agentes con funciones de NCM habilitadas" - -#: ../../enterprise/include/class/NetworkConfigManager.class.php:1679 -#: ../../enterprise/include/class/NetworkConfigManager.class.php:2189 -#: ../../enterprise/include/class/NetworkConfigManager.class.php:2240 -#, php-format -msgid "Template not found: %s" -msgstr "Plantilla no encontrada: %s" - -#: ../../enterprise/include/class/NetworkConfigManager.class.php:1704 -msgid "Template created" -msgstr "Plantilla creada" - -#: ../../enterprise/include/class/NetworkConfigManager.class.php:1704 -msgid "Template updated" -msgstr "Plantilla actualizada" - -#: ../../enterprise/include/class/NetworkConfigManager.class.php:1770 -#: ../../enterprise/include/class/NetworkConfigManager.class.php:2314 -#, php-format -msgid "Vendor not found: %s" -msgstr "Fabricante no encontrado: %s" - -#: ../../enterprise/include/class/NetworkConfigManager.class.php:1801 -msgid "Failed saving vendor: " -msgstr "Fallo al guardar fabricante:" - -#: ../../enterprise/include/class/NetworkConfigManager.class.php:1860 -#, php-format -msgid "model not found: %s" -msgstr "modelo no encontrado: %s" - -#: ../../enterprise/include/class/NetworkConfigManager.class.php:1882 -#: ../../enterprise/include/class/NetworkConfigManager.class.php:2653 -msgid "you must select a valid vendor" -msgstr "Debe seleccionar un fabricante vĆ”lido" - -#: ../../enterprise/include/class/NetworkConfigManager.class.php:1895 -msgid "Failed saving model: " -msgstr "Fallo al guardar el modelo: " - -#: ../../enterprise/include/class/NetworkConfigManager.class.php:1955 -#, php-format -msgid "snippet not found: %s" -msgstr "Snippet no encontrado: %s" - -#: ../../enterprise/include/class/NetworkConfigManager.class.php:1986 -msgid "Failed saving snippet: " -msgstr "Error al guardar el snippet: " - -#: ../../enterprise/include/class/NetworkConfigManager.class.php:2049 -#, php-format -msgid "firmware not found: %s" -msgstr "firmware no encontrado: %s" - -#: ../../enterprise/include/class/NetworkConfigManager.class.php:2076 -msgid "Firmware file missing" -msgstr "Falta el archivo de firmware" - -#: ../../enterprise/include/class/NetworkConfigManager.class.php:2108 -#, php-format -msgid "Failed to store file in %s" -msgstr "Error al almacenar el archivo en %s" - -#: ../../enterprise/include/class/NetworkConfigManager.class.php:2125 -msgid "Failed saving firmware: " -msgstr "Error al guardar el firmware: " - -#: ../../enterprise/include/class/NetworkConfigManager.class.php:2152 -msgid "" -"Upload only official binary files from your device provide in raw format (not " -"compressed)" -msgstr "" -"Cargue solo archivos binarios oficiales desde su dispositivo en formato RAW " -"(no comprimido)" - -#: ../../enterprise/include/class/NetworkConfigManager.class.php:2201 -#: ../../godmode/modules/manage_network_templates.php:83 -msgid "Template successfully deleted" -msgstr "Plantilla borrada correctamente" - -#: ../../enterprise/include/class/NetworkConfigManager.class.php:2256 -msgid "Template successfully duplicated" -msgstr "Plantilla duplicada correctamente" - -#: ../../enterprise/include/class/NetworkConfigManager.class.php:2279 -#, php-format -msgid "Model not found: %s" -msgstr "Modelo no encontrado: %s" - -#: ../../enterprise/include/class/NetworkConfigManager.class.php:2291 -msgid "Model successfully deleted" -msgstr "Modelo eliminado correctamente" - -#: ../../enterprise/include/class/NetworkConfigManager.class.php:2326 -msgid "Vendor successfully deleted" -msgstr "Fabriante eliminado correctamente" - -#: ../../enterprise/include/class/NetworkConfigManager.class.php:2349 -#, php-format -msgid "Snippet not found: %s" -msgstr "Snippet no encontrado: %s" - -#: ../../enterprise/include/class/NetworkConfigManager.class.php:2361 -msgid "Snippet successfully deleted" -msgstr "Snippet eliminado correctamente" - -#: ../../enterprise/include/class/NetworkConfigManager.class.php:2384 -#, php-format -msgid "Firmware not found: %s" -msgstr "Firmware no encontrado: %s" - -#: ../../enterprise/include/class/NetworkConfigManager.class.php:2396 -msgid "Firmware successfully deleted" -msgstr "Firmware eliminado correctamente" - -#: ../../enterprise/include/class/NetworkConfigManager.class.php:2475 -msgid "" -"Not executed yet, no content to display, define your own in following textarea." -msgstr "" -"AĆŗn no se ha ejecutado, no hay contenido que mostrar, defina el suyo propio en " -"el siguiente Ć”rea de texto." - -#: ../../enterprise/include/class/NetworkConfigManager.class.php:2484 -msgid "" -"Following content is already queued to be executed! You must wait until " -"execution is finished before being able to modify this." -msgstr "" -"Ā”El siguiente contenido ya estĆ” en cola para ser ejecutado! Debe esperar hasta " -"que finalice la ejecuciĆ³n antes de poder modificarla." - -#: ../../enterprise/include/class/NetworkConfigManager.class.php:2576 -msgid "Check progress" -msgstr "Comprobar el progreso" - -#: ../../enterprise/include/class/NetworkConfigManager.class.php:2585 -#, php-format -msgid "Script scheduled %s %s" -msgstr "Script programado %s %s" - -#: ../../enterprise/include/class/NetworkConfigManager.class.php:2643 -#, php-format -msgid "Error retrieving template: %s" -msgstr "Error al recuperar la plantilla: %s" - -#: ../../enterprise/include/class/NetworkConfigManager.class.php:2649 -msgid "you must select a template" -msgstr "Debe seleccionar una plantilla" - -#: ../../enterprise/include/class/NetworkConfigManager.class.php:2651 -msgid "you must select a valid model" -msgstr "Debe seleccionar un modelo vĆ”lido" - -#: ../../enterprise/include/class/NetworkConfigManager.class.php:2655 -msgid "you must select a valid port" -msgstr "Debe seleccionar un puerto vĆ”lido" - -#: ../../enterprise/include/class/NetworkConfigManager.class.php:2689 -#, php-format -msgid "Failed to update%s" -msgstr "No se pudo actualizar %s" - -#: ../../enterprise/include/class/NetworkConfigManager.class.php:2721 -msgid "No configuration registers to backup" -msgstr "No hay registros de configuraciĆ³n para realizar copias de seguridad" - -#: ../../enterprise/include/class/NetworkConfigManager.class.php:2729 -#: ../../enterprise/include/class/NetworkConfigManager.class.php:2745 -msgid "Successfully backed up" -msgstr "Copia de copia de ha realizada" - -#: ../../enterprise/include/class/NetworkConfigManager.class.php:2780 -msgid "Invalid id given" -msgstr "ID no vĆ”lido" - -#: ../../enterprise/include/class/NetworkConfigManager.class.php:2815 -msgid "" -"Is highly recommendable to execute this kind of operation from agent details " -"to preview the script content" -msgstr "" -"Es muy recomendable ejecutar este tipo de operaciĆ³n desde los detalles del " -"agente para obtener una vista previa del contenido del script" - -#: ../../enterprise/include/class/NetworkConfigManager.class.php:2824 -msgid "This operation is not ready yet! Keep up to date with latest updates" -msgstr "" -"Ā”Esta operaciĆ³n aĆŗn no estĆ” lista! MantĆ©ngase al dĆ­a con las Ćŗltimas " -"actualizaciones" - -#: ../../enterprise/include/class/NetworkConfigManager.class.php:2833 -msgid "Invalid action" -msgstr "AcciĆ³n no vĆ”lida" - -#: ../../enterprise/include/class/NetworkConfigManager.class.php:2852 -#: ../../enterprise/include/class/DatabaseHA.class.php:190 -msgid "Successfully scheduled" -msgstr "Programado correctamente" - -#: ../../enterprise/include/class/NetworkConfigManager.class.php:2853 -msgid "Failed to schedule action." -msgstr "Error al programar la acciĆ³n." - -#: ../../enterprise/include/class/Azure.cloud.php:248 -#: ../../enterprise/include/class/Google.cloud.php:242 -msgid "Task details" -msgstr "Detalles de la tarea" - -#: ../../enterprise/include/class/Azure.cloud.php:249 -#: ../../enterprise/include/class/Google.cloud.php:243 -msgid "Instance explorer" -msgstr "Buscador de instancias" - -#: ../../enterprise/include/class/Azure.cloud.php:250 -#: ../../enterprise/include/class/Google.cloud.php:244 -msgid "Metrics" -msgstr "MĆ©tricas" - -#: ../../enterprise/include/class/Azure.cloud.php:307 -msgid "Microsoft Compute" -msgstr "Microsoft Compute" - -#: ../../enterprise/include/class/Azure.cloud.php:468 -#: ../../enterprise/include/class/Google.cloud.php:470 -msgid "Group not found." -msgstr "Grupo no encontrado" - -#: ../../enterprise/include/class/Azure.cloud.php:598 -#: ../../enterprise/include/class/Azure.cloud.php:646 -#: ../../enterprise/include/class/Google.cloud.php:597 -#: ../../enterprise/include/class/Google.cloud.php:643 -msgid "Unauthorized access" -msgstr "Acceso no autorizado" - -#: ../../enterprise/include/class/Azure.cloud.php:909 -#: ../../enterprise/include/class/Google.cloud.php:865 -msgid "Select target virtual machines" -msgstr "Seleccionar mĆ”quinas virtuales de destino" - -#: ../../enterprise/include/class/DeploymentCenter.class.php:235 -msgid "IP address is required" -msgstr "Se requiere direcciĆ³n IP" - -#: ../../enterprise/include/class/DeploymentCenter.class.php:249 -msgid "Credentials to use are required" -msgstr "Se requieren credenciales de uso" - -#: ../../enterprise/include/class/DeploymentCenter.class.php:251 -msgid "Desired agent version is required" -msgstr "Se requiere la versiĆ³n de agente deseada" - -#: ../../enterprise/include/class/DeploymentCenter.class.php:262 -msgid "Target already defined." -msgstr "Objetivo ya definido." - -#: ../../enterprise/include/class/DeploymentCenter.class.php:288 -msgid "Target successfully added" -msgstr "Objetivo aƱadido correctamente" - -#: ../../enterprise/include/class/DeploymentCenter.class.php:309 -msgid "Target successfully updated" -msgstr "Objetivo actualizado correctamente" - -#: ../../enterprise/include/class/DeploymentCenter.class.php:352 -msgid "You should specify a Discovery server" -msgstr "Especifique un servidor Discovery" - -#: ../../enterprise/include/class/DeploymentCenter.class.php:354 -msgid "You must select some targets to deploy" -msgstr "Seleccione algunos de los objetivos a desplegar" - -#: ../../enterprise/include/class/DeploymentCenter.class.php:384 -#: ../../enterprise/include/class/DeploymentCenter.class.php:1095 -msgid "Failed to schedule" -msgstr "No se ha podido programar" - -#: ../../enterprise/include/class/DeploymentCenter.class.php:399 -msgid "Deploy scheduled" -msgstr "Despliegue programado" - -#: ../../enterprise/include/class/DeploymentCenter.class.php:425 -msgid "CSV file is needed" -msgstr "Se necesita archivo CSV" - -#: ../../enterprise/include/class/DeploymentCenter.class.php:480 -#, php-format -msgid "" -"Credential identifier %s does not exist, please, add it to your repository %s " -msgstr "" -"El identificador de credenciales %s no existe, aƱƔdalo a su repositorio %s " - -#: ../../enterprise/include/class/DeploymentCenter.class.php:488 -#, php-format -msgid "OS %s does not math any existing, please, add it to OS list %s" -msgstr "" -"El sistema operativo %s no coincide con ninguno existente, aƱƔdalo a la lista " -"de sistemas operativos %s" - -#: ../../enterprise/include/class/DeploymentCenter.class.php:496 -#, php-format -msgid "" -"Sofware agent version with id %s does not exist, please, add it to your " -"repository %s " -msgstr "" -"La versiĆ³n del agente software con el ID %s no existe, aƱƔdalo al repositorio " -"%s " - -#: ../../enterprise/include/class/DeploymentCenter.class.php:518 -msgid "No target could be added. " -msgstr "No se ha podido aƱadir ningĆŗn objetivo. " - -#: ../../enterprise/include/class/DeploymentCenter.class.php:613 -#: ../../enterprise/godmode/menu.php:163 -#: ../../godmode/wizards/HostDevices.class.php:165 -#: ../../godmode/wizards/DiscoveryTaskList.class.php:823 -msgid "Agent deployment" -msgstr "Despliegue de agentes" - -#: ../../enterprise/include/class/DeploymentCenter.class.php:621 -msgid "Deployment center" -msgstr "Centro de despliegue" - -#: ../../enterprise/include/class/DeploymentCenter.class.php:637 -msgid "There are no targets defined yet, please add some." -msgstr "AĆŗn no hay objetivos definidos, aƱada alguno." - -#: ../../enterprise/include/class/DeploymentCenter.class.php:644 -#, php-format -msgid "Please set %s to make software available for targets." -msgstr "Programe %s para que el software estĆ© disponible para los objetivos." - -#: ../../enterprise/include/class/DeploymentCenter.class.php:656 -#, php-format -msgid "There are no software agents in your repository yet, please add some %s." -msgstr "No hay agentes software en el repositorio, aƱada algunos %s." - -#: ../../enterprise/include/class/DeploymentCenter.class.php:675 -#: ../../enterprise/include/class/DeploymentCenter.class.php:1751 -msgid "Scan for targets" -msgstr "Escaneo de objetivos" - -#: ../../enterprise/include/class/DeploymentCenter.class.php:684 -msgid "Add target" -msgstr "AƱadir destino" - -#: ../../enterprise/include/class/DeploymentCenter.class.php:693 -msgid "Load targets" -msgstr "Cargar destinos" - -#: ../../enterprise/include/class/DeploymentCenter.class.php:758 -msgid "Key identifier" -msgstr "Identificador de clave" - -#: ../../enterprise/include/class/DeploymentCenter.class.php:759 -#: ../../enterprise/include/class/DeploymentCenter.class.php:1222 -#: ../../enterprise/include/class/DeploymentCenter.class.php:1359 -msgid "Target server IP" -msgstr "IP del servidor de destino" - -#: ../../enterprise/include/class/DeploymentCenter.class.php:760 -msgid "Agent version installed" -msgstr "Verison de agente instalada" - -#: ../../enterprise/include/class/DeploymentCenter.class.php:761 -msgid "Agent version desired" -msgstr "VersiĆ³n de agente deseada" - -#: ../../enterprise/include/class/DeploymentCenter.class.php:762 -msgid "Installation date" -msgstr "Fecha de instalaciĆ³n" - -#: ../../enterprise/include/class/DeploymentCenter.class.php:763 -msgid "Last error" -msgstr "ƚltimo error" - -#: ../../enterprise/include/class/DeploymentCenter.class.php:811 -msgid "Server IP" -msgstr "IP del servidor" - -#: ../../enterprise/include/class/DeploymentCenter.class.php:836 -msgid "State" -msgstr "Estado" - -#: ../../enterprise/include/class/DeploymentCenter.class.php:868 -msgid "Deploy agent to targets" -msgstr "Desplegar agentes a destinos" - -#: ../../enterprise/include/class/DeploymentCenter.class.php:1042 -msgid "You must define a network." -msgstr "Defina una red." - -#: ../../enterprise/include/class/DeploymentCenter.class.php:1044 -msgid "You must select at least one credential to test." -msgstr "Seleccione al menos un credencial a probar." - -#: ../../enterprise/include/class/DeploymentCenter.class.php:1046 -msgid "You must select a Discovery server." -msgstr "Seleccione un servidor Discovery." - -#: ../../enterprise/include/class/DeploymentCenter.class.php:1048 -msgid "Please select a desired software agent version." -msgstr "Seleccione la version deseada del agente software." - -#: ../../enterprise/include/class/DeploymentCenter.class.php:1050 -msgid "Please specify a server IP." -msgstr "Especifique una IP de servidor." - -#: ../../enterprise/include/class/DeploymentCenter.class.php:1070 -#: ../../enterprise/include/class/DeploymentCenter.class.php:1103 -msgid "Discovery task list" -msgstr "Lista de tareas Discovery" - -#: ../../enterprise/include/class/DeploymentCenter.class.php:1069 -#, php-format -msgid "This network is already being scanned. See progress at %s" -msgstr "Ya se estĆ” escaneando la red. Ver progreso en %s" - -#: ../../enterprise/include/class/DeploymentCenter.class.php:1102 -#, php-format -msgid "Network scheduled to be scanned. You can see progress at %s" -msgstr "Escaneo de red programado. Puede ver el progreso en %s." - -#: ../../enterprise/include/class/DeploymentCenter.class.php:1150 -msgid "Network/mask" -msgstr "Red/MĆ”scara" - -#: ../../enterprise/include/class/DeploymentCenter.class.php:1159 -msgid "Scan from" -msgstr "Escanear desde" - -#: ../../enterprise/include/class/DeploymentCenter.class.php:1178 -#: ../../godmode/wizards/HostDevices.class.php:1447 -msgid "Credentials to try with" -msgstr "Credenciales con los que probar" - -#: ../../enterprise/include/class/DeploymentCenter.class.php:1189 -#: ../../enterprise/include/class/DeploymentCenter.class.php:1316 -#: ../../enterprise/include/class/DeploymentCenter.class.php:1326 -#: ../../enterprise/meta/include/functions_wizard_meta.php:974 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1058 -#: ../../extensions/api_checker.php:195 -#: ../../godmode/wizards/HostDevices.class.php:1470 -msgid "Credentials" -msgstr "Credenciales" - -#: ../../enterprise/include/class/DeploymentCenter.class.php:1212 -#: ../../enterprise/include/class/DeploymentCenter.class.php:1349 -msgid "Desired agent version" -msgstr "VersiĆ³n de agente deseada" - -#: ../../enterprise/include/class/DeploymentCenter.class.php:1396 -msgid "CSV format" -msgstr "Formato CVS" - -#: ../../enterprise/include/class/DeploymentCenter.class.php:1397 -msgid "Target agent version" -msgstr "Version de agente objetivo" - -#: ../../enterprise/include/class/DeploymentCenter.class.php:1397 -#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:1120 -#: ../../godmode/modules/manage_network_components_form_network.php:242 -#: ../../godmode/massive/massive_edit_modules.php:1198 -#: ../../godmode/agentes/module_manager_editor_network.php:459 -msgid "Credential identifier" -msgstr "Credencial" - -#: ../../enterprise/include/class/DeploymentCenter.class.php:1397 -msgid "Target server ip" -msgstr "IP del servidor objetivo" - -#: ../../enterprise/include/class/DeploymentCenter.class.php:1416 -msgid "CSV file" -msgstr "Archivo CSV" - -#: ../../enterprise/include/class/DeploymentCenter.class.php:1476 -msgid "Select desired targets to be deployed" -msgstr "Seleccionar objetivos a desplegar" - -#: ../../enterprise/include/class/DeploymentCenter.class.php:1479 -msgid "Deploy from" -msgstr "Desplegar desde" - -#: ../../enterprise/include/class/DeploymentCenter.class.php:1494 -msgid "Available targets" -msgstr "Objetivos disponibles" - -#: ../../enterprise/include/class/DeploymentCenter.class.php:1670 -msgid "Add new target" -msgstr "AƱadir nuevo objetivo" - -#: ../../enterprise/include/class/DeploymentCenter.class.php:1673 -msgid "Update target" -msgstr "Actualizar objetivo" - -#: ../../enterprise/include/class/DeploymentCenter.class.php:1719 -msgid "Import targets from CSV" -msgstr "Importar objetivos desde CSV" - -#: ../../enterprise/include/class/DeploymentCenter.class.php:1752 -#: ../../godmode/modules/manage_network_components_form_wizard.php:637 -msgid "Scan" -msgstr "Escanear" - -#: ../../enterprise/include/class/DeploymentCenter.class.php:1786 -msgid "Select targets" -msgstr "Seleccionar objetivos" - -#: ../../enterprise/include/class/DeploymentCenter.class.php:1787 -#: ../../enterprise/include/functions_HA_cluster.php:46 -msgid "Deploy" -msgstr "Desplegar" - -#: ../../enterprise/include/class/DatabaseHA.class.php:137 -#: ../../enterprise/include/class/DatabaseHA.class.php:241 -#: ../../enterprise/include/class/DatabaseHA.class.php:423 -#: ../../enterprise/include/class/DatabaseHA.class.php:433 -#: ../../enterprise/include/class/DatabaseHA.class.php:525 -#: ../../enterprise/include/class/DatabaseHA.class.php:534 -#: ../../enterprise/include/class/DatabaseHA.class.php:651 -#: ../../enterprise/include/class/DatabaseHA.class.php:660 -msgid "Error, please refresh page" -msgstr "Error, vuelva a cargar la pĆ”gina" - -#: ../../enterprise/include/class/DatabaseHA.class.php:142 -msgid "Action already scheduled" -msgstr "AcciĆ³n ya programada" - -#: ../../enterprise/include/class/DatabaseHA.class.php:148 -msgid "Unavailable action" -msgstr "AcciĆ³n no disponible" - -#: ../../enterprise/include/class/DatabaseHA.class.php:160 -msgid "A node is already being synchronized, please wait until process finish." -msgstr "Ya se estĆ” sincronizando un nodo, espere hasta que el proceso termine." - -#: ../../enterprise/include/class/DatabaseHA.class.php:172 -msgid "Please verify resync configuration is set before use this feature." -msgstr "" -"Compruebe la configuraciĆ³n de resincronizaciĆ³n antes de usar esta funcionalidad" - -#: ../../enterprise/include/class/DatabaseHA.class.php:220 -msgid "Uninitialized" -msgstr "No iniciado" - -#: ../../enterprise/include/class/DatabaseHA.class.php:476 -#: ../../enterprise/include/class/DatabaseHA.class.php:575 -#: ../../enterprise/include/class/DatabaseHA.class.php:1251 -msgid "This is not a cluster node" -msgstr "Este no es un nodo de cluster" - -#: ../../enterprise/include/class/DatabaseHA.class.php:480 -#: ../../enterprise/include/class/DatabaseHA.class.php:1255 -msgid "Failed to retrieve master position" -msgstr "No se ha podido obtener la posiciĆ³n de maestro" - -#: ../../enterprise/include/class/DatabaseHA.class.php:494 -#: ../../enterprise/include/class/DatabaseHA.class.php:1268 -msgid "Failed to retrieve slave information" -msgstr "No se ha podido obtener la informaciĆ³n de esclavo" - -#: ../../enterprise/include/class/DatabaseHA.class.php:611 -msgid "Master" -msgstr "Principal" - -#: ../../enterprise/include/class/DatabaseHA.class.php:614 -msgid "Slave" -msgstr "Esclavo" - -#: ../../enterprise/include/class/DatabaseHA.class.php:823 -#: ../../enterprise/include/class/DatabaseHA.class.php:1006 -msgid "DB Replication user" -msgstr "Usuario de replicaciĆ³n de la base de datos" - -#: ../../enterprise/include/class/DatabaseHA.class.php:824 -msgid "User configured for Master to Slaves replication" -msgstr "Usuario configurado para replicaciĆ³n Maestro - Esclavo" - -#: ../../enterprise/include/class/DatabaseHA.class.php:834 -#: ../../enterprise/include/class/DatabaseHA.class.php:1015 -msgid "DB Replication user password" -msgstr "ContraseƱa de usuario de replicaciĆ³n de la base de datos" - -#: ../../enterprise/include/class/DatabaseHA.class.php:835 -msgid "User password" -msgstr "ContraseƱa de usuario" - -#: ../../enterprise/include/class/DatabaseHA.class.php:845 -msgid "Resync data dir" -msgstr "Resincronizar directorio de datos" - -#: ../../enterprise/include/class/DatabaseHA.class.php:846 -msgid "Directory where mysql files are stored (must be common to all nodes)" -msgstr "" -"Directorio donde se guardan los archivos MySQL (debe ser comĆŗn a todos los " -"nodos)" - -#: ../../enterprise/include/class/DatabaseHA.class.php:856 -msgid "Resync tmp directory" -msgstr "Resincronizar directorio tmp" - -#: ../../enterprise/include/class/DatabaseHA.class.php:857 -msgid "" -"Temporary working directory where to store the backups that will be used to re-" -"synchronize a slave node" -msgstr "" -"Directorio funcional temporal donde guardar las copias de seguridad que se " -"utilizarĆ”n para re-sincronizar un mĆ³dulo esclavo" - -#: ../../enterprise/include/class/DatabaseHA.class.php:867 -msgid "Resync MySQL user" -msgstr "Resincronizar usuario MySQL" - -#: ../../enterprise/include/class/DatabaseHA.class.php:868 -msgid "" -"User of the system that owns the MySQL files, necessary for the adjustment of " -"permissions (by default mysql)" -msgstr "" -"Usuario del sistema que posee los archivos MySQL, necesario para el ajuste de " -"los permisos (por defecto MySQL)" - -#: ../../enterprise/include/class/DatabaseHA.class.php:878 -msgid "Resync MySQL group" -msgstr "Resincronizar grupo MySQL" - -#: ../../enterprise/include/class/DatabaseHA.class.php:879 -msgid "" -"System group that owns the MySQL files, needed for permissions setting " -"(default mysql)" -msgstr "" -"Grupo del sistema que posee los archivos MySQL, necesario para los ajustes de " -"permisos (MySQL por defecto)" - -#: ../../enterprise/include/class/DatabaseHA.class.php:940 -msgid "IP or FQDN" -msgstr "IP o FQDN" - -#: ../../enterprise/include/class/DatabaseHA.class.php:941 -msgid "" -"This action only registers an already configured node. This action does not " -"configure any resource." -msgstr "" -"Esta acciĆ³n solo registra un nodo ya configurado. Esta acciĆ³n no configura " -"ninguna fuente." - -#: ../../enterprise/include/class/DatabaseHA.class.php:951 -msgid "Cluster node label (pcs)" -msgstr "Etiqueta de nodo de cluster (pcs)" - -#: ../../enterprise/include/class/DatabaseHA.class.php:959 -#: ../../enterprise/meta/advanced/metasetup.consoles.php:602 -msgid "DB port" -msgstr "Puerto de la BD" - -#: ../../enterprise/include/class/DatabaseHA.class.php:967 -msgid "SSH user" -msgstr "Usuario SSH" - -#: ../../enterprise/include/class/DatabaseHA.class.php:975 -msgid "SSH port" -msgstr "Puerto SSH" - -#: ../../enterprise/include/class/DatabaseHA.class.php:983 -msgid "SSH key" -msgstr "Clave SSH" - -#: ../../enterprise/include/class/DatabaseHA.class.php:991 -msgid "SSH public key" -msgstr "Clave SSH pĆŗblica" - -#: ../../enterprise/include/class/DatabaseHA.class.php:1043 -msgid "Missed parameters" -msgstr "ParĆ”metros omitidos" - -#: ../../enterprise/include/class/DatabaseHA.class.php:1090 -msgid "You must specify a host" -msgstr "Especifique un host" - -#: ../../enterprise/include/class/DatabaseHA.class.php:1092 -msgid "DB port must be a positive integer" -msgstr "El puerto de la base de datos debe ser un valor positivo" - -#: ../../enterprise/include/class/DatabaseHA.class.php:1094 -msgid "SSH port must be a positive integer" -msgstr "El puerto SSH debe ser un integrante positivo" - -#: ../../enterprise/include/class/DatabaseHA.class.php:1096 -msgid "You must specify a SSH user" -msgstr "Especifique el usuario SSH" - -#: ../../enterprise/include/class/DatabaseHA.class.php:1098 -msgid "You must specify a replication DB user" -msgstr "Especifique un usuario de replicaciĆ³n de base de datos" - -#: ../../enterprise/include/class/DatabaseHA.class.php:1100 -msgid "You must specify a replication DB pass" -msgstr "Especifique una contraseƱa de replicaciĆ³n de base de datos" - -#: ../../enterprise/include/class/DatabaseHA.class.php:1102 -msgid "You must specify a public key path" -msgstr "Especifique una ruta de clave pĆŗblica" - -#: ../../enterprise/include/class/DatabaseHA.class.php:1104 -msgid "You must specify a private path" -msgstr "Especifique una ruta privada" - -#: ../../enterprise/include/class/DatabaseHA.class.php:1154 -msgid "Successfully " -msgstr "Correctamente " - -#: ../../enterprise/include/class/Google.cloud.php:301 -msgid "Compute Engine" -msgstr "Compute Engine" - -#: ../../enterprise/include/class/Google.cloud.php:877 -msgid "This options only applies to zone (region) agents." -msgstr "Esta opciĆ³n solo aplica a los agentes de la zona (regiĆ³n)." - -#: ../../enterprise/include/class/Google.cloud.php:890 -msgid "Scan and general monitoring" -msgstr "Escanear y monitorizaciĆ³n general" - -#: ../../enterprise/include/class/Google.cloud.php:903 -msgid "CPU performance summary" -msgstr "Resumen del funcionamiento de la CPU" - -#: ../../enterprise/include/class/CommandCenter.class.php:146 -msgid "Command center" -msgstr "command center" - -#: ../../enterprise/include/class/CommandCenter.class.php:160 -msgid "Could not be start merge process, no nodes in the metaconsole " -msgstr "" -"No se pudo iniciar el proceso de combinaciĆ³n, no hay nodos en la metaconsola " - -#: ../../enterprise/include/class/CommandCenter.class.php:169 -#: ../../enterprise/include/functions_groups.php:49 -msgid "Metaconsole" -msgstr "Metaconsola" - -#: ../../enterprise/include/class/CommandCenter.class.php:265 -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:903 -msgid "" -"Memory limit is recomended to be unlimited in metaconsole, please set to -1 in " -"php.ini." -msgstr "" -"Se recomienda que el lĆ­mite de memoria sea ilimitado en la metaconsola, " -"establezca en -1 en php.ini." - -#: ../../enterprise/include/class/CommandCenter.class.php:312 -msgid "Nodes priority order" -msgstr "Orden de prioridad de los nodos" - -#: ../../enterprise/include/class/CommandCenter.class.php:317 -#: ../../enterprise/meta/advanced/metasetup.consoles.php:830 -#: ../../enterprise/godmode/setup/setup_metaconsole.php:270 -msgid "DB" -msgstr "BD" - -#: ../../enterprise/include/class/CommandCenter.class.php:318 -#: ../../enterprise/meta/advanced/metasetup.consoles.php:831 -#: ../../enterprise/godmode/setup/setup_metaconsole.php:271 -msgid "API" -msgstr "API" - -#: ../../enterprise/include/class/CommandCenter.class.php:366 -msgid "Unify databases" -msgstr "Unificar bases de datos" - -#: ../../enterprise/include/class/CommandCenter.class.php:383 -msgid "merge process" -msgstr "proceso de combinaciĆ³n" - -#: ../../enterprise/include/class/CommandCenter.class.php:391 -msgid "Process detail of node" -msgstr "Detalle del proceso del nodo" - -#: ../../enterprise/include/class/CommandCenter.class.php:392 -msgid "Errors of node" -msgstr "Errores de nodo" - -#: ../../enterprise/include/class/CommandCenter.class.php:421 -msgid "Unexpected end of process" -msgstr "Fin inesperado del proceso" - -#: ../../enterprise/include/class/CommandCenter.class.php:422 -msgid "Please retry" -msgstr "Por favor reintĆ©ntelo" - -#: ../../enterprise/include/class/CommandCenter.class.php:443 -msgid "Critical issues while merging" -msgstr "Problemas crĆ­ticos durante la fusiĆ³n" - -#: ../../enterprise/include/class/CommandCenter.class.php:444 -msgid "Please restore your backups" -msgstr "Restaure sus copias de seguridad" - -#: ../../enterprise/include/class/CommandCenter.class.php:455 -#: ../../enterprise/include/class/CommandCenter.class.php:1119 -msgid "Error message" -msgstr "Mensaje de error" - -#: ../../enterprise/include/class/CommandCenter.class.php:457 -msgid "Process details" -msgstr "Detalles del proceso" - -#: ../../enterprise/include/class/CommandCenter.class.php:458 -msgid "" -"System is not unified yet, something is wrong, please troubleshoot the errors " -"and retry the merge process. Your data have not been modified." -msgstr "" -"El sistema aĆŗn no estĆ” unificado, algo estĆ” mal, solucione los errores y " -"vuelva a intentar el proceso de fusiĆ³n. Sus datos no han sido modificados." - -#: ../../enterprise/include/class/CommandCenter.class.php:459 -msgid "Errors while merging" -msgstr "Errores al fusionar" - -#: ../../enterprise/include/class/CommandCenter.class.php:460 -msgid "The process has been completed correctly" -msgstr "El proceso se ha completado correctamente" - -#: ../../enterprise/include/class/CommandCenter.class.php:462 -msgid "System is merging your environment, please wait" -msgstr "El sistema estĆ” fusionando su entorno, espere" - -#: ../../enterprise/include/class/CommandCenter.class.php:464 -#: ../../enterprise/include/class/CommandCenter.class.php:884 -msgid "Initialice merge" -msgstr "Inicializar fusiĆ³n" - -#: ../../enterprise/include/class/CommandCenter.class.php:465 -#: ../../enterprise/include/class/CommandCenter.class.php:890 -msgid "Apply merge" -msgstr "Aplicar combinaciĆ³n" - -#: ../../enterprise/include/class/CommandCenter.class.php:466 -msgid "Finished merge" -msgstr "FusiĆ³n finalizada" - -#: ../../enterprise/include/class/CommandCenter.class.php:467 -#: ../../enterprise/include/class/CommandCenter.class.php:896 -msgid "Restore merge" -msgstr "Restaurar combinaciĆ³n" - -#: ../../enterprise/include/class/CommandCenter.class.php:469 -msgid "Succesfully" -msgstr "Ɖxito" - -#: ../../enterprise/include/class/CommandCenter.class.php:470 -msgid "Pending operations" -msgstr "Operaciones pendientes" - -#: ../../enterprise/include/class/CommandCenter.class.php:472 -msgid "Error. Synchronization aborted. Backup restored" -msgstr "Error. SincronizaciĆ³n anulada. Copia de seguridad restaurada" - -#: ../../enterprise/include/class/CommandCenter.class.php:542 -#: ../../enterprise/include/class/CommandCenter.class.php:548 -msgid "Update priority nodes" -msgstr "Actualizar nodos prioritarios" - -#: ../../enterprise/include/class/CommandCenter.class.php:543 -msgid "Successfully updated priority order nodes" -msgstr "Nodos de orden de prioridad actualizados correctamente" - -#: ../../enterprise/include/class/CommandCenter.class.php:549 -msgid "Could not be updated priority order nodes" -msgstr "No se pudieron actualizar los nodos de orden de prioridad" - -#: ../../enterprise/include/class/CommandCenter.class.php:565 -msgid "" -"By unifying databases all information across your infrastructure will be " -"merged to gain integrity" -msgstr "" -"Al unificar las bases de datos, toda la informaciĆ³n de su infraestructura se " -"fusionarĆ” para obtener integridad." - -#: ../../enterprise/include/class/CommandCenter.class.php:578 -#: ../../enterprise/include/class/CommandCenter.class.php:588 -msgid "Blocked" -msgstr "Bloqueado" - -#: ../../enterprise/include/class/CommandCenter.class.php:579 -msgid "This process already running" -msgstr "Este proceso ya se estĆ” ejecutando" - -#: ../../enterprise/include/class/CommandCenter.class.php:589 -msgid "You cannot start a new merge because system is merging events data." -msgstr "" -"No puede iniciar una nueva combinaciĆ³n porque el sistema estĆ” combinando datos " -"de eventos." - -#: ../../enterprise/include/class/CommandCenter.class.php:597 -msgid "Press OK button to start the process" -msgstr "Presione el botĆ³n OK para iniciar el proceso" - -#: ../../enterprise/include/class/CommandCenter.class.php:599 -msgid "" -"There are backups from a previous merging process, are you sure you want to " -"overwrite those backups? Press OK button to ignore this message and start the " -"process." -msgstr "" -"Hay copias de seguridad de un proceso de fusiĆ³n anterior, ĀæestĆ” seguro de que " -"desea sobrescribir esas copias de seguridad? Presione el botĆ³n OK para ignorar " -"este mensaje e iniciar el proceso." - -#: ../../enterprise/include/class/CommandCenter.class.php:647 -msgid "System is merging events..." -msgstr "El sistema estĆ” fusionando eventos..." - -#: ../../enterprise/include/class/CommandCenter.class.php:654 -msgid "Already working..." -msgstr "Ya funcionando..." - -#: ../../enterprise/include/class/CommandCenter.class.php:760 -#: ../../enterprise/include/class/CommandCenter.class.php:761 -msgid "Initilize" -msgstr "Initilizar" - -#: ../../enterprise/include/class/CommandCenter.class.php:866 -#: ../../enterprise/include/class/CommandCenter.class.php:1054 -msgid "Waiting" -msgstr "Esperando" - -#: ../../enterprise/include/class/CommandCenter.class.php:873 -msgid "Process detail" -msgstr "Detalle del proceso" - -#: ../../enterprise/include/class/CommandCenter.class.php:878 -msgid "Display errors" -msgstr "Mostrar errores" - -#: ../../enterprise/include/class/CommandCenter.class.php:909 -msgid "There are no nodes to do the merge process." -msgstr "No hay nodos para realizar el proceso de combinaciĆ³n." - -#: ../../enterprise/include/class/CommandCenter.class.php:1017 -msgid "merge events" -msgstr "eventos de combinaciĆ³n" - -#: ../../enterprise/include/class/CommandCenter.class.php:1060 -msgid "Retry process" -msgstr "Reintentar proceso" - -#: ../../enterprise/include/class/CommandCenter.class.php:1065 -msgid "Display events errors" -msgstr "Mostrar errores de eventos" - -#: ../../enterprise/include/class/CommandCenter.class.php:1078 -msgid "Events History" -msgstr "Historial de eventos" - -#: ../../enterprise/include/class/CommandCenter.class.php:1140 -msgid "merge process events" -msgstr "eventos del proceso de combinaciĆ³n" - -#: ../../enterprise/include/functions_tasklist.php:58 -msgid "" -"Discovery relies on a proper setup of cron, the time-based scheduling service" -msgstr "" -"El Discovery se basa en la correcta configuraciĆ³n de cron, el servicio de " -"programaciĆ³n en funciĆ³n del tiempo" - -#: ../../enterprise/include/functions_tasklist.php:77 -msgid "Please check process is no locked." -msgstr "Compruebe que el proceso no estĆ” bloqueado" - -#: ../../enterprise/include/functions_tasklist.php:143 -#: ../../enterprise/include/functions_tasklist.php:688 -msgid "There are no console task defined yet." -msgstr "AĆŗn no hay tareas de consola definidas." - -#: ../../enterprise/include/functions_tasklist.php:569 -msgid "Task disabled" -msgstr "Tarea deshabilitada" - -#: ../../enterprise/include/functions_tasklist.php:693 -msgid "Console Tasks" -msgstr "Tareas de consola" - -#: ../../enterprise/include/reset_pass.php:98 -#: ../../enterprise/meta/include/reset_pass.php:93 -msgid "User to reset password" -msgstr "Usuario de la contraseƱa a resetear" - -#: ../../enterprise/include/reset_pass.php:123 -#: ../../enterprise/include/process_reset_pass.php:136 -#: ../../enterprise/meta/include/reset_pass.php:122 -#: ../../enterprise/meta/include/process_reset_pass.php:132 -msgid "Back to login" -msgstr "Volver a identificarse" - -#: ../../enterprise/include/reset_pass.php:174 -#: ../../enterprise/include/reset_pass.php:177 -#: ../../enterprise/meta/include/reset_pass.php:165 -#: ../../enterprise/meta/include/reset_pass.php:168 -msgid "Reset password failed" -msgstr "Error al restablecer la contraseƱa" - -#: ../../enterprise/include/lib/RCMDFile.class.php:203 -msgid "You do not have grants to access this feature" -msgstr "No tiene permisos de acceso a esta funcionalidad" - -#: ../../enterprise/include/lib/RCMDFile.class.php:548 -msgid "There was a problem creating RCMD" -msgstr "Ha habido un problema al crear RCMD" - -#: ../../enterprise/include/lib/RCMDFile.class.php:693 -#: ../../enterprise/include/lib/RCMDFile.class.php:717 -msgid "There was a problem deleting RCMD" -msgstr "Ha habido un problema al eliminar RCMD" - -#: ../../enterprise/include/lib/RCMDFile.class.php:865 -msgid "No agent configuration file" -msgstr "No hay archivo de configuraciĆ³n de agente" - -#: ../../enterprise/include/lib/RCMDFile.class.php:873 -msgid "you don't have write permissions in the configuration file" -msgstr "no tiene permisos de escritura en el archivo de configuraciĆ³n" - -#: ../../enterprise/include/lib/RCMDFile.class.php:914 -msgid "This agent is already a target" -msgstr "Este agente ya es un objetivo" - -#: ../../enterprise/include/lib/RCMDFile.class.php:945 -#, php-format -msgid "You do not have grants to access in this agent %s" -msgstr "No tiene permisos para acceder a este agente %s" - -#: ../../enterprise/include/lib/RCMDFile.class.php:1011 -msgid "There was a problem creating RCMD files" -msgstr "Ha habido un problema al crear los archivos RCMD" - -#: ../../enterprise/include/lib/RCMDFile.class.php:1058 -msgid "There was a problem creating target" -msgstr "Ha habido un problema al crear un objetivo" - -#: ../../enterprise/include/lib/RCMDFile.class.php:1092 -msgid "There was a problem adding items in the configuration file" -msgstr "Ha habido un problema al aƱadir elementos al archivo de configuraciĆ³n" - -#: ../../enterprise/include/lib/RCMDFile.class.php:1118 -#: ../../enterprise/include/lib/RCMDFile.class.php:1285 -msgid "No agent has been selected" -msgstr "No se han seleccionado agentes" - -#: ../../enterprise/include/lib/RCMDFile.class.php:1151 -msgid "Target doesn't exist" -msgstr "El objetivo no existe" - -#: ../../enterprise/include/lib/RCMDFile.class.php:1223 -msgid "There was a problem deleting tokens in the configuration file" -msgstr "Ha habido un problema al eliminar los tokes del archivo de configuraciĆ³n" - -#: ../../enterprise/include/lib/RCMDFile.class.php:1259 -msgid "There was a problem deleting target from DB" -msgstr "Ha habido un problema al eliminar el objetivo de la base de datos" - -#: ../../enterprise/include/lib/RCMDFile.class.php:1417 -msgid "Yaml is empty" -msgstr "Yaml estĆ” vacĆ­o" - -#: ../../enterprise/include/lib/RCMDFile.class.php:1426 -msgid "Doesn't have a valid YAML format" -msgstr "No tiene un formato YAML vĆ”lido" - -#: ../../enterprise/include/lib/RCMDFile.class.php:1444 -#, php-format -msgid "%s field is not allowed" -msgstr "El campo %s no estĆ” permitido" - -#: ../../enterprise/include/lib/Service.php:152 -msgid "Service module does not match pointed one" -msgstr "El mĆ³dulo de servicio no coincide con el seƱalado" - -#: ../../enterprise/include/lib/Service.php:158 -#, php-format -msgid "Service module not found %s
" -msgstr "MĆ³dulo de servicio no encontrado %s
" - -#: ../../enterprise/include/lib/Service.php:177 -msgid "Service module SLA not found" -msgstr "No se encontrĆ³ el SLA del mĆ³dulo de servicio" - -#: ../../enterprise/include/lib/Service.php:183 -#, php-format -msgid "SLA service module not found %s
" -msgstr "MĆ³dulo de servicio SLA no encontrado %s
" - -#: ../../enterprise/include/lib/Service.php:202 -msgid "Service module SLA does not match pointed one" -msgstr "El SLA del mĆ³dulo de servicio no corresponde con el seƱalado" - -#: ../../enterprise/include/lib/Service.php:208 -#, php-format -msgid "SLA service value module not found %s
" -msgstr "MĆ³dulo del valor del servicio SLA no encontrado %s
" - -#: ../../enterprise/include/lib/Service.php:221 -#, php-format -msgid "Service agent not found %s
" -msgstr "Agente de servicio no encontrado %s
" - -#: ../../enterprise/include/lib/Service.php:232 -#, php-format -msgid "Service children could not be fully retrieved: %s
" -msgstr "Los hijos de servicios no se han podido extraer completamente: %s
" - -#: ../../enterprise/include/lib/Service.php:313 -msgid "" -" Cannot switch from SMART to MANUAL if there are dynamic elements attached to " -"the service. Please erase dynamic elements before change to MANUAL" -msgstr "" -" No se puede cambiar de INTELIGENTE a MANUAL si hay elementos dinĆ”micos " -"adjuntos al servicio. Elimine los elementos dinĆ”micos antes de cambiar a MANUAL" - -#: ../../enterprise/include/lib/Service.php:773 -#, php-format -msgid "Failed to update CPS for moduleValue for service %s: " -msgstr "Error al actualizar CPS para moduleValue para el %s de servicio: " - -#: ../../enterprise/include/lib/Service.php:1441 -msgid "Error: id agent must be defined." -msgstr "Error: defina el id de agente" - -#: ../../enterprise/include/lib/Service.php:1517 -msgid " error: Target agent does not exist." -msgstr " error: el agente objetivo no existe." - -#: ../../enterprise/include/lib/Policy.php:281 -#, php-format -msgid "Invalid operation %s" -msgstr "OperaciĆ³n no vĆ”lida %s" - -#: ../../enterprise/include/lib/Policy.php:1171 -#, php-format -msgid "Policy already defined: \"%s\"" -msgstr "La polĆ­tica ya se ha definido: \"%s\"" - -#: ../../enterprise/include/lib/ClusterViewer/ClusterWizard.php:182 -msgid "Cluster already defined, please use another name." -msgstr "Este clĆŗster ya ha sido definido, use otro nombre." - -#: ../../enterprise/include/lib/ClusterViewer/ClusterWizard.php:779 -msgid "Cluster name" -msgstr "Nombre del clĆŗster" - -#: ../../enterprise/include/lib/ClusterViewer/ClusterWizard.php:780 -msgid "" -"An agent with the same name of the cluster will be created, as well a special " -"service with the same name" -msgstr "" -"Se crearĆ” un agente con el mismo nombre que el clĆŗster y un servicio especial " -"con el mismo nombre." - -#: ../../enterprise/include/lib/ClusterViewer/ClusterWizard.php:794 -msgid "Cluster type" -msgstr "Tipo de clĆŗster" - -#: ../../enterprise/include/lib/ClusterViewer/ClusterWizard.php:795 -msgid "" -"AA is a cluster where all members are working. In AP cluster only master " -"member is working" -msgstr "" -"AA es un clĆŗster donde funcionan todos los miembros. En un clĆŗster AP solo " -"trabaja el miembro maestro." - -#: ../../enterprise/include/lib/ClusterViewer/ClusterWizard.php:803 -msgid "Active - Active" -msgstr "Activo - Activo" - -#: ../../enterprise/include/lib/ClusterViewer/ClusterWizard.php:804 -msgid "Active - Pasive" -msgstr "Activo - Pasivo" - -#: ../../enterprise/include/lib/ClusterViewer/ClusterWizard.php:824 -msgid "Target cluster agent will be stored under this group" -msgstr "El agente del clĆŗster objetivo se guardarĆ” bajo este grupo" - -#: ../../enterprise/include/lib/ClusterViewer/ClusterWizard.php:841 -msgid "" -"You must select a Prediction Server to perform all cluster status calculations" -msgstr "" -"Debe seleccionar un Servidor de PredicciĆ³n para llevar a cabo todos los " -"cĆ”lculos de estado de clĆŗster" - -#: ../../enterprise/include/lib/ClusterViewer/ClusterWizard.php:1016 -msgid "critical if" -msgstr "crĆ­tico si" - -#: ../../enterprise/include/lib/ClusterViewer/ClusterWizard.php:1025 -#: ../../enterprise/include/lib/ClusterViewer/ClusterWizard.php:1048 -#, php-format -msgid "% of balanced modules are down (equal or greater)." -msgstr "% de los mĆ³dulos equilibrados estĆ”n caĆ­dos (igual o mayor)." - -#: ../../enterprise/include/lib/ClusterViewer/ClusterWizard.php:1063 -msgid "Please, set threholds for all active-active modules" -msgstr "Ponga umbrales para todos los mĆ³dulos activo-activo" - -#: ../../enterprise/include/lib/ClusterViewer/ClusterWizard.php:1167 -msgid "Please, check all active-passive modules critical for this cluster" -msgstr "Compruebe todos los mĆ³dulos activo-pasivo crĆ­ticos para este clĆŗster" - -#: ../../enterprise/include/lib/ClusterViewer/ClusterWizard.php:1169 -msgid "" -"If a critical balanced module is going to critical status, then cluster will " -"be critical." -msgstr "" -"Si un mĆ³dulo equilibrado crĆ­tico pasa a estado crĆ­tico, el clĆŗster entrarĆ” en " -"estado crĆ­tico." - -#: ../../enterprise/include/lib/ClusterViewer/ClusterManager.php:224 -msgid "Cluster not found: " -msgstr "ClĆŗster no encontrado: " - -#: ../../enterprise/include/lib/ClusterViewer/ClusterManager.php:233 -msgid "Cluster agent not found: " -msgstr "Agente del clĆŗster no encontrado: " - -#: ../../enterprise/include/lib/ClusterViewer/ClusterManager.php:270 -#, php-format -msgid "Error while deleting, reason: %s" -msgstr "Error al eliminar, motivo: %s" - -#: ../../enterprise/include/lib/ClusterViewer/ClusterManager.php:278 -msgid "Cluster successfully deleted." -msgstr "ClĆŗster eliminado con Ć©xito." - -#: ../../enterprise/include/lib/ClusterViewer/ClusterManager.php:304 -#, php-format -msgid "Error while forcing, reason: %s" -msgstr "Error al forzar, motivo: %s" - -#: ../../enterprise/include/lib/ClusterViewer/ClusterManager.php:312 -msgid "Cluster successfully forced." -msgstr "ClĆŗster forzado con Ć©xito." - -#: ../../enterprise/include/lib/ClusterViewer/ClusterManager.php:568 -msgid "Not set" -msgstr "No configurado" - -#: ../../enterprise/include/lib/ClusterViewer/ClusterManager.php:578 -msgid "Active-Active" -msgstr "Activo-Activo" - -#: ../../enterprise/include/lib/ClusterViewer/ClusterManager.php:580 -msgid "Active-Passive" -msgstr "Activo-Pasivo" - -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:171 -msgid "Activating node" -msgstr "ActivaciĆ³n del nodo" - -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:205 -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:361 -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:673 -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:800 -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:1071 -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:1165 -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:1517 -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:1814 -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2183 -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:3107 -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:3388 -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:3542 -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:3617 -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:3922 -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:4147 -msgid "Connect node" -msgstr "Conectar nodo" - -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:580 -msgid "Create table tmerge_error" -msgstr "Creando tabla tmerge_error" - -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:606 -msgid "Create table tmerge_steps" -msgstr "Creando tabla tmerge_steps" - -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:631 -msgid "Create table tmerge_queries" -msgstr "Creando tabla tmerge_queries" - -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:772 -#, php-format -msgid "%s console" -msgstr "%s consola" - -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:777 -msgid "Check cron task" -msgstr "Comprobar tarea cron" - -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:778 -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:860 -msgid "memory_limit current value" -msgstr "valor actual de memory_limit " - -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:867 -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:879 -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:891 -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:916 -#, php-format -msgid "" -"Post max size, nodes cannot be smaller than the size of the metaconsole %s" -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:931 -#, php-format -msgid "" -"Upload max file size, nodes cannot be smaller than the size of the metaconsole " -"%s" -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:993 -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:1009 -msgid "Problems with the backup directory" -msgstr "Problemas con el directorio de copia de seguridad" - -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:994 -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:1010 -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:1020 -msgid "Extension ZIP" -msgstr "ExtensiĆ³n ZIP" - -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:1021 -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:1122 -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:1148 -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:1195 -msgid "Enable exceptions in tmerge_queries" -msgstr "Habilitar excepciones en tmerge_queries" - -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:1219 -msgid "Enable foreing keys in tmerge_queries" -msgstr "Habilitar claves de anteo en tmerge_queries" - -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:1498 -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:1783 -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:1574 -msgid "This table does not have the id" -msgstr "Esta tabla no tiene el identificador" - -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:1575 -msgid "Prepare merge request" -msgstr "Preparar la solicitud de combinaciĆ³n" - -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:1901 -msgid "Inserts truncate, autoincrement and inserts in tmerge_queries" -msgstr "Inserta truncado, autoincremento e inserto en tmerge_queries" - -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2071 -msgid "Inserts updates in tmerge_queries" -msgstr "Inserta actualizaciones en tmerge_queries" - -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2108 -msgid "Merging collections files" -msgstr "FusiĆ³n de archivos de colecciones" - -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2164 -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2310 -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2481 -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:3094 -#, php-format -msgid "Api call: %s" -msgstr "Llamada api: %s" - -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2222 -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2223 -msgid "Problems while backing up collections from: " -msgstr "Problemas al realizar copias de seguridad de colecciones de: " - -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2240 -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2244 -#, php-format -msgid "Problems downloading collections from %s" -msgstr "Problemas para descargar colecciones de %s" - -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2256 -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2260 -#, 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:2539 -msgid "Start phase merge" -msgstr "CombinaciĆ³n de fases de inicio" - -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2551 -msgid "Create backups" -msgstr "Crear copia de seguridad" - -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2619 -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2620 -msgid "Problems creating the backup conf agents" -msgstr "Problemas al crear los agentes conf de copia de seguridad" - -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2630 -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2868 -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:3238 -msgid "Class agent" -msgstr "Clase de agente " - -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2654 -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2666 -msgid "Disable_foreing" -msgstr "Disable_foreing" - -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2678 -msgid "Truncate table" -msgstr "Tabla truncada" - -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2696 -msgid "Autoincrement" -msgstr "Autoincremento" - -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2708 -msgid "Inserts" -msgstr "Postizos" - -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2726 -msgid "Disabling constraints" -msgstr "DesactivaciĆ³n de restricciones" - -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2744 -msgid "Updates" -msgstr "Actualizaciones" - -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2767 -msgid "Restoring constraints" -msgstr "RestauraciĆ³n de restricciones" - -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2785 -msgid "Enable exceptions" -msgstr "Habilitar excepciones" - -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2803 -msgid "Enable foreings keys" -msgstr "Habilitar claves foreign" - -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2820 -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2821 -msgid "Update conf agent policies" -msgstr "Actualizar directivas de agente conf" - -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2857 -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2858 -msgid "Error updating agent conf" -msgstr "Error al actualizar el agente conf" - -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2879 -msgid "Synchronizing collections" -msgstr "SincronizaciĆ³n de colecciones" - -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2891 -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2892 -msgid "Error synchronizing collections" -msgstr "Error al sincronizar las colecciones al nodo %s" - -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2929 -#: ../../enterprise/include/lib/Metaconsole/Node.php:1765 -msgid "Final step" -msgstr "Paso final" - -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2930 -#: ../../enterprise/include/lib/Metaconsole/Node.php:1766 -msgid "Database merged" -msgstr "Base de datos combinada" - -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2988 -msgid "Problems unzipping collections at: " -msgstr "Problemas para descomprimir colecciones en: " - -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2989 -#, 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:3147 -msgid "Restoring database backup" -msgstr "Restaurar una copia de seguridad" - -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:3173 -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:4419 -msgid "Problems creating the backup" -msgstr "Problemas al crear la copia de seguridad" - -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:3186 -msgid "Restore backups conf agents" -msgstr "Restore backups conf agents" - -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:3223 -msgid "Problems restoring the backup conf agents" -msgstr "Problemas para restaurar los agentes conf de copia de seguridad" - -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:3225 -#, php-format -msgid "Agent \"%s\" with md5 file \"%s\"" -msgstr "Agente \"%s\" con el archivo md5 \"%s\"" - -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:3251 -msgid "Restore collections" -msgstr "Restaurar colecciones" - -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:3266 -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:3267 -msgid "Error Synch collections" -msgstr "Colecciones de sincronizaciĆ³n de errores" - -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:3484 -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:3724 -msgid "Insert info steps" -msgstr "Insertar pasos de informaciĆ³n" - -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:3649 -msgid "Node not ready" -msgstr "Nodo no listo" - -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:3650 -msgid "Pending to be unified" -msgstr "Pendiente de ser unificado" - -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:3889 -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:3894 -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:3946 -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:3951 -msgid "Initialize" -msgstr "Iniciar" - -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:4093 -msgid "Backup" -msgstr "Copia de seguridad" - -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:4124 -msgid "Applying" -msgstr "Trabajo" - -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:4350 -msgid "Error updating events" -msgstr "Error al actualizar eventos" - -#: ../../enterprise/include/lib/Metaconsole/Node.php:145 -msgid "auth error." -msgstr "Error de autenticaciĆ³n." - -#: ../../enterprise/include/lib/Metaconsole/Node.php:149 -msgid "connection error." -msgstr "error de conexiĆ³n." - -#: ../../enterprise/include/lib/Metaconsole/Node.php:153 -msgid "could not resolve the host." -msgstr "no se ha podido resolver el host." - -#: ../../enterprise/include/lib/Metaconsole/Node.php:157 -#: ../../enterprise/include/lib/Metaconsole/Node.php:206 -#: ../../enterprise/include/lib/Metaconsole/Node.php:253 -#: ../../enterprise/include/lib/Metaconsole/Node.php:509 -msgid "unknown error." -msgstr "error desconocido." - -#: ../../enterprise/include/lib/Metaconsole/Node.php:194 -msgid "missing credentials." -msgstr "faltan credenciales." - -#: ../../enterprise/include/lib/Metaconsole/Node.php:198 -msgid "cannot connect to host." -msgstr "no se puede conectar con el host." - -#: ../../enterprise/include/lib/Metaconsole/Node.php:202 -msgid "database does not exist." -msgstr "la base de datos no existe." - -#: ../../enterprise/include/lib/Metaconsole/Node.php:245 -msgid "failed to connect to node database." -msgstr "no se ha podido conectar con la base de datos del nodo." - -#: ../../enterprise/include/lib/Metaconsole/Node.php:249 -msgid "MR version mistmatch." -msgstr "No coincide con la versiĆ³n MR." - -#: ../../enterprise/include/lib/Metaconsole/Node.php:288 -#, php-format -msgid "last event replication: %s" -msgstr "Ćŗltima replicaciĆ³n de evento: %s" - -#: ../../enterprise/include/lib/Metaconsole/Node.php:294 -msgid "server connection failed" -msgstr "Error en la conexiĆ³n con el servidor" - -#: ../../enterprise/include/lib/Metaconsole/Node.php:298 -#: ../../enterprise/include/lib/Metaconsole/Node.php:344 -#: ../../enterprise/include/lib/Metaconsole/Node.php:405 -msgid "unknown error" -msgstr "error desconocido" - -#: ../../enterprise/include/lib/Metaconsole/Node.php:310 -msgid "Last event replication" -msgstr "ReplicaciĆ³n del Ćŗltimo evento" - -#: ../../enterprise/include/lib/Metaconsole/Node.php:340 -msgid "agent cache failed" -msgstr "error en el cachĆ© de agente" - -#: ../../enterprise/include/lib/Metaconsole/Node.php:393 -msgid "node is not recognized as metaconsole node." -msgstr "el nodo no se reconoce como nodo de Metaconsola." - -#: ../../enterprise/include/lib/Metaconsole/Node.php:397 -msgid "node license missmatch." -msgstr "el nodo de la licencia no coincide." - -#: ../../enterprise/include/lib/Metaconsole/Node.php:401 -msgid "cannot connect to node" -msgstr "no se puede conectar con el nodo" - -#: ../../enterprise/include/lib/Metaconsole/Node.php:433 -msgid "Database is up to date with this Metaconsole" -msgstr "La base de datos estĆ” actualizada con esta metaconsola" - -#: ../../enterprise/include/lib/Metaconsole/Node.php:443 -msgid "Node not found" -msgstr "Nodo no encontrado" - -#: ../../enterprise/include/lib/Metaconsole/Node.php:448 -#, php-format -msgid "" -"There are %d queries pending to be applied, click in the eye to see results" -msgstr "" -"Hay %d consultas pendientes de aplicar, haga clic en el ojo para ver los " -"resultados" - -#: ../../enterprise/include/lib/Metaconsole/Node.php:457 -msgid "Database synchronization state and pending tasks" -msgstr "Estado de sincronizaciĆ³n de la base de datos y tareas pendientes" - -#: ../../enterprise/include/lib/Metaconsole/Node.php:592 -msgid "Operation and table" -msgstr "Funcionamiento y tabla" - -#: ../../enterprise/include/lib/Metaconsole/Node.php:707 -#, php-format -msgid "" -"Failed synchronizing %s, please check node PHP configuration issues and " -"collection max sizes" -msgstr "" -"Error al sincronizar %s, verifique los problemas de configuraciĆ³n de PHP del " -"nodo y los tamaƱos mĆ”ximos de colecciĆ³n" - -#: ../../enterprise/include/lib/Metaconsole/Node.php:1232 -msgid "" -"The elimination of this node will lead to the suppression of its agents from " -"metaconsole and all the configuration assigned to them. " -msgstr "" -"La eliminaciĆ³n de este nodo conllevarĆ” la supresiĆ³n de sus agentes de la " -"metaconsola y de toda la configuraciĆ³n que se les asigne. " - -#: ../../enterprise/include/lib/Metaconsole/Node.php:1236 -msgid "The rules for this node may stop working. " -msgstr "Y las reglas para este nodo podrĆ­an dejar de funcionar. " - -#: ../../enterprise/include/lib/Metaconsole/Node.php:1240 -msgid "" -"The deleted node will lose its license, and you must license it manually " -"again. " -msgstr "" -"El nodo eliminado perderĆ” su licencia y debe volver a licenciarlo manualmente. " - -#: ../../enterprise/include/lib/Metaconsole/Node.php:1747 -#, php-format -msgid "Failed to overwrite node data: %s" -msgstr "Error al sobrescribir los datos del nodo: %s" - -#: ../../enterprise/include/lib/AlertCorrelation.class.php:798 -#: ../../enterprise/include/lib/AlertCorrelation.class.php:812 -msgid "There was a problem creating Action" -msgstr "Ha habido un problema al crear la acciĆ³n" - -#: ../../enterprise/include/lib/AlertCorrelation.class.php:849 -#: ../../enterprise/include/lib/AlertCorrelation.class.php:862 -msgid "There was a problem updating Action" -msgstr "Ha habido un problema al actualizar la acciĆ³n" - -#: ../../enterprise/include/lib/AlertCorrelation.class.php:898 -#: ../../enterprise/include/lib/AlertCorrelation.class.php:912 -msgid "There was a problem deleting Action" -msgstr "Ha habido un problema al eliminar la acciĆ³n" - -#: ../../enterprise/include/lib/AlertCorrelation.class.php:953 -msgid "There was a problem standby alert" -msgstr "Ha habido un problema en la alerta en suspensiĆ³n" - -#: ../../enterprise/include/lib/AlertCorrelation.class.php:962 -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:1005 -msgid "There was a problem enabled alert" -msgstr "Ha habido un problema en la alerta habilitada" - -#: ../../enterprise/include/lib/AlertCorrelation.class.php:1015 -msgid "There was a problem disabled alert" -msgstr "Ha habido un problema en la alerta deshabilitada" - -#: ../../enterprise/include/lib/AlertCorrelation.class.php:1071 -msgid "Event group Recursive" -msgstr "Recursividad del grupo de eventos" - -#: ../../enterprise/include/lib/AlertCorrelation.class.php:1089 -msgid "Time window" -msgstr "Ventana de tiempo" - -#: ../../enterprise/include/lib/AlertCorrelation.class.php:1623 -msgid "Failed to cleanup old rules." -msgstr "No se han podido limpiar las reglas antiguas." - -#: ../../enterprise/include/lib/AlertCorrelation.class.php:1631 -#, php-format -msgid "Failed SQL: %s" -msgstr "SQL errĆ³neo: %s" - -#: ../../enterprise/include/lib/AlertCorrelation.class.php:1636 -#, php-format -msgid "Failed to apply rule: %s." -msgstr "Error al aplicar la regla: %s" - -#: ../../enterprise/include/lib/AlertCorrelation.class.php:1784 -msgid "any" -msgstr "cualquier" - -#: ../../enterprise/include/lib/NetworkManager/Template.php:192 -msgid "Error linking script: " -msgstr "Error al vincular el script: " - -#: ../../enterprise/include/lib/NetworkManager/NetworkAgent.php:197 -msgid "No template assigned" -msgstr "Sin plantilla asignada" - -#: ../../enterprise/include/lib/NetworkManager/NetworkAgent.php:227 -msgid "NCM Agent without template assigned." -msgstr "Agente de NCM sin plantilla asignada." - -#: ../../enterprise/include/lib/NetworkManager/NetworkAgent.php:233 -msgid "Current selected template does not match vendor configured." -msgstr "" -"La plantilla seleccionada actual no coincide con la configuraciĆ³n del " -"fabricante." - -#: ../../enterprise/include/lib/NetworkManager/NetworkAgent.php:240 -msgid "Current selected template does not match model configured." -msgstr "La plantilla seleccionada actual no coincide con el modelo configurado." - -#: ../../enterprise/include/lib/NetworkManager/NetworkAgent.php:549 -#: ../../enterprise/include/lib/NetworkManager/NetworkAgent.php:579 -#, php-format -msgid "No %s script available for this agent, check template %s" -msgstr "No hay %s script disponible para este agente, compruebe la plantilla %s" - -#: ../../enterprise/include/lib/Policy/Inventory.php:156 -#, php-format -msgid "inventory module already registered: \"%d\"" -msgstr "mĆ³dulo de inventario ya registrado: \"%d\"" - -#: ../../enterprise/include/lib/Policy/Inventory.php:181 -#, php-format -msgid "Failed to update, already exists: \"%d\"" -msgstr "No se ha podido actualizar, ya existe: \"%d\"" - -#: ../../enterprise/include/lib/Policy/Queue.php:378 -#, php-format -msgid "Already queued in %s" -msgstr "Ya estĆ” en cola en %s" - -#: ../../enterprise/include/lib/Policy/Module.php:227 -#, php-format -msgid "Failed to update: \"%s\"" -msgstr "No se ha podido actualizar: \"%s\"" - -#: ../../enterprise/include/lib/ServiceElement.php:611 -#, php-format -msgid "This filters will cause slowdown on server (%s ms)" -msgstr "Estos filtros provocarĆ”n enlentecimiento del servidor (%s ms)" - -#: ../../enterprise/include/lib/ServiceElement.php:625 -#, php-format -msgid "Regular expression is not valid: %s." -msgstr "La expresiĆ³n regular no es vĆ”lida: %s." - -#: ../../enterprise/include/lib/ServiceElement.php:864 -#, php-format -msgid " error while decoding rules: %s" -msgstr " error al decodificar las normas: %s" - -#: ../../enterprise/include/lib/ServiceElement.php:1271 -#, php-format -msgid " error: Failed to delete element: %s" -msgstr " error: No se ha podido eliminar el elemento: %s" - -#: ../../enterprise/include/lib/Core/SSH.php:163 -msgid "php-ssh2 not available" -msgstr "php-ssh2 no disponible" - -#: ../../enterprise/include/lib/Core/SSH.php:184 -msgid "Failed to connect" -msgstr "No se ha podido conectar" - -#: ../../enterprise/include/lib/Core/SSH.php:239 -#, php-format -msgid "Unable to open public key file %s" -msgstr "No se ha podido abrir el archivo de clave pĆŗblica %s" - -#: ../../enterprise/include/lib/Core/SSH.php:257 -msgid "Failed to login to target" -msgstr "No se ha podido iniciar sesiĆ³n en el objetivo" - -#: ../../enterprise/include/lib/Agent.php:99 -msgid " error, invalid agent." -msgstr " error, agente no vĆ”lido." - -#: ../../enterprise/include/lib/Agent.php:672 -#, php-format -msgid "Log module \"%s\" does not exist" -msgstr "El mĆ³dulo de log \"%s\" no existe" - -#: ../../enterprise/include/lib/Agent.php:694 -#, php-format -msgid "Plugin \"%s\" does not exist" -msgstr "el plugin \"%s\" no existe" - -#: ../../enterprise/include/lib/Agent.php:826 -#, php-format -msgid "Log module \"%s\" does not exist, %s skipped" -msgstr "El mĆ³dulo de log \"%s\" no existe, se ha omitido %s" - -#: ../../enterprise/include/lib/Agent.php:861 -#, php-format -msgid "Plugin \"%s\" does not exist, %s skipped" -msgstr "El plugin \"%s\" no existe, se ha omitido %s" - -#: ../../enterprise/include/lib/Agent.php:932 -#, php-format -msgid "Log module %s already defined" -msgstr "El mĆ³dulo de log %s ya estĆ” definido" - -#: ../../enterprise/include/lib/Agent.php:949 -#, php-format -msgid "Invalid module type %s" -msgstr "Typo de mĆ³dulo %s no vĆ”lido" - -#: ../../enterprise/include/lib/Agent.php:979 -#, php-format -msgid "Plugin %s already defined" -msgstr "El plugin %s ya estĆ” definido" - -#: ../../enterprise/include/lib/Agent.php:993 -msgid "Invalid plugin definition" -msgstr "DefiniciĆ³n de plugin no vĆ”lida" - -#: ../../enterprise/include/lib/NetworkManager.php:83 -msgid "Retrieve config" -msgstr "Recuperar configuraciĆ³n" - -#: ../../enterprise/include/lib/NetworkManager.php:84 -msgid "Restore backed up config" -msgstr "Restaurar configuraciĆ³n de copia de seguridad" - -#: ../../enterprise/include/lib/NetworkManager.php:86 -msgid "Send firmware" -msgstr "Enviar firmware" - -#: ../../enterprise/include/lib/NetworkManager.php:88 -#: ../../godmode/setup/setup_general.php:408 -msgid "On demand" -msgstr "Por demanda" - -#: ../../enterprise/include/lib/NetworkManager.php:93 -msgid "Executing test" -msgstr "Ejecutando prueba" - -#: ../../enterprise/include/lib/NetworkManager.php:94 -msgid "Retrieving config" -msgstr "Recuperando configuraciĆ³n" - -#: ../../enterprise/include/lib/NetworkManager.php:95 -msgid "Restoring backup" -msgstr "Restaurando copia de seguridad" - -#: ../../enterprise/include/lib/NetworkManager.php:96 -msgid "Retrieving firmware version" -msgstr "Recuperando la versiĆ³n del firmware" - -#: ../../enterprise/include/lib/NetworkManager.php:97 -msgid "Sending firmware update" -msgstr "Enviando actualizaciĆ³n de firmware" - -#: ../../enterprise/include/lib/NetworkManager.php:98 -msgid "Executing custom script" -msgstr "Ejecutando scripts personalizados" - -#: ../../enterprise/include/lib/NetworkManager.php:99 -msgid "Executing on demand script" -msgstr "Ejecutando scripts bajo demanda" - -#: ../../enterprise/include/lib/NetworkManager.php:186 -msgid "Montly" -msgstr "Mensualmente" - -#: ../../enterprise/include/functions_services.php:108 -msgid "There is no information about" -msgstr "No hay informaciĆ³n sobre" - -#: ../../enterprise/include/functions_services.php:113 -msgid "Service does not exist." -msgstr "El servicio no existe." - -#: ../../enterprise/include/functions_services.php:125 -msgid "module that stores the service" -msgstr "mĆ³dulo que almacena el servicio" - -#: ../../enterprise/include/functions_services.php:137 -msgid "module that stores SLA service" -msgstr "mĆ³dulo que almacena el servicio SLA" - -#: ../../enterprise/include/functions_services.php:150 -msgid "agent that stores the service" -msgstr "agente que almacena el servicio" - -#: ../../enterprise/include/functions_services.php:163 -msgid "agent that stores SLA service" -msgstr "agente que almacena el servicio SLA" - -#: ../../enterprise/include/functions_services.php:184 -msgid "alert critical SLA service" -msgstr "alerta crĆ­tica de servicio SLA" - -#: ../../enterprise/include/functions_services.php:205 -msgid "alert warning service" -msgstr "servicio en estado de advertencia" - -#: ../../enterprise/include/functions_services.php:226 -msgid "alert critical service" -msgstr "servicio en alerta crĆ­tica" - -#: ../../enterprise/include/functions_services.php:247 -msgid "alert unknown service" -msgstr "servicio en estado desconocido" - -#: ../../enterprise/include/functions_services.php:528 -#, php-format -msgid "Module automatic create for the service %s" -msgstr "MĆ³dulo automĆ”tico creado para el servicio %s" - -#: ../../enterprise/include/functions_services.php:728 -#: ../../enterprise/godmode/services/services.service.php:285 -msgid "Error updating service: " -msgstr "Error al actualizar el servicio: " - -#: ../../enterprise/include/functions_services.php:1368 -#: ../../enterprise/include/functions_services.php:1370 -#: ../../enterprise/include/functions_services.php:1404 -#: ../../enterprise/include/functions_services.php:1405 -#: ../../enterprise/include/functions_services.php:1407 -#: ../../enterprise/include/functions_services.php:1458 -#: ../../enterprise/include/functions_services.php:1460 -#: ../../enterprise/include/functions_reporting.php:5797 -msgid "Nonexistent" -msgstr "No existe" - -#: ../../enterprise/include/functions_services.php:1432 -msgid "Normal (Alert)" -msgstr "Normal (Alerta)" - -#: ../../enterprise/include/functions_services.php:1436 -msgid "Critical (Alert)" -msgstr "CrĆ­tico (Alerta)" - -#: ../../enterprise/include/functions_services.php:1444 -msgid "Warning (Alert)" -msgstr "Advertencia (Alerta)" - -#: ../../enterprise/include/functions_services.php:1582 -msgid "There are no service elements defined" -msgstr "No hay servicios de elementos definidos" - -#: ../../enterprise/include/functions_services.php:1606 -msgid "Weight Critical" -msgstr "Peso crĆ­tico" - -#: ../../enterprise/include/functions_services.php:1607 -msgid "Weight Warning" -msgstr "Peso de advertencia" - -#: ../../enterprise/include/functions_services.php:1608 -msgid "Weight Unknown" -msgstr "Peso desconocido" - -#: ../../enterprise/include/functions_services.php:1609 -msgid "Weight Ok" -msgstr "Peso OK" - -#: ../../enterprise/include/functions_services.php:1672 -#: ../../enterprise/include/functions_services.php:1717 -#: ../../enterprise/include/functions_services.php:1785 -msgid "Nonexistent. This element should be deleted" -msgstr "Inexistente. Este elemento deberĆ­a eliminarse." - -#: ../../enterprise/include/functions_services.php:1700 -#: ../../enterprise/include/functions_services.php:1767 -#: ../../enterprise/include/functions_services.php:1813 -msgid "This element does not affect service weigth because is disabled." -msgstr "El elemento no afecta al peso del servicio porque estĆ” deshabilitado." - -#: ../../enterprise/include/functions_services.php:1828 -#, php-format -msgid "Dynamic element (%d) '%s' does not match any target" -msgstr "El elemento dinĆ”mico (%d) '%s' no coincide con ningĆŗn objetivo" - -#: ../../enterprise/include/functions_services.php:1837 -#, php-format -msgid "Dynamic element (%d) '%s' causes an error: %s" -msgstr "El elemento dinĆ”mico (%d) '%s' provoca un error: %s" - -#: ../../enterprise/include/functions_services.php:1849 -msgid "Dynamic element" -msgstr "Elemento dinĆ”mico" - -#: ../../enterprise/include/functions_services.php:1855 -#, php-format -msgid "agents like \"%s\"" -msgstr "agentes como \"%s\"" - -#: ../../enterprise/include/functions_services.php:1860 -#, php-format -msgid "modules like \"%s\"" -msgstr "mĆ³dulos como \"%s\"" - -#: ../../enterprise/include/functions_services.php:1989 -msgid "NOT INITIALIZED" -msgstr "NO INICIADO" - -#: ../../enterprise/include/functions_services.php:2015 -#: ../../enterprise/godmode/services/services.elements.php:806 -msgid "Edit service elements" -msgstr "Editar elementos del servicio" - -#: ../../enterprise/include/functions_services.php:2023 -msgid "Delete service element" -msgstr "Eliminar elemento de servicio" - -#: ../../enterprise/include/functions_services.php:2082 -msgid "FAIL" -msgstr "FALLO" - -#: ../../enterprise/include/auth/saml.php:119 -#, php-format -msgid "Pandora FMS SAML authentication error: %s" -msgstr "Error de autenticaciĆ³n Pandora FMS SAML: %s" - -#: ../../enterprise/include/auth/saml.php:184 -msgid "Force log out" -msgstr "Forzar desconexiĆ³n" - -#: ../../enterprise/include/functions_events.php:219 -msgid "Id source events" -msgstr "Eventos fuente de ID" - -#: ../../enterprise/include/functions_events.php:245 -#: ../../enterprise/include/functions_events.php:267 -msgid "More than 5 tags" -msgstr "MĆ”s de 5 etiquetas" - -#: ../../enterprise/include/functions_metaconsole.php:1408 -#: ../../enterprise/include/functions_metaconsole.php:1441 -#: ../../enterprise/include/functions_metaconsole.php:1474 -#: ../../enterprise/include/functions_metaconsole.php:1507 -#: ../../enterprise/include/functions_metaconsole.php:1540 -#: ../../enterprise/include/functions_metaconsole.php:1573 -#: ../../enterprise/include/functions_metaconsole.php:1604 -#: ../../enterprise/include/functions_metaconsole.php:1637 -#: ../../enterprise/meta/include/functions_wizard_meta.php:239 -#: ../../enterprise/meta/include/functions_wizard_meta.php:685 -#: ../../enterprise/godmode/setup/setup_log_collector.php:49 -#: ../../enterprise/godmode/modules/configure_local_component.php:503 -#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:183 -#: ../../godmode/agentes/module_manager_editor_web.php:172 -msgid "Check" -msgstr "Comprobar" - -#: ../../enterprise/include/functions_metaconsole.php:2943 -#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:163 -msgid "Target server ip address is set" -msgstr "DirecciĆ³n IP del servidor de destino configurada" - -#: ../../enterprise/include/functions_metaconsole.php:2950 -#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:159 -msgid "There are differences between MR versions" -msgstr "Hay diferencias entre las versiones de las actualizaciones menores" - -#: ../../enterprise/include/functions_metaconsole.php:2957 -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:2964 -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:2971 -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:2978 -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:2985 -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:2992 -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:2999 -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:3006 -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:3013 -msgid "Agent already exists in target node" -msgstr "El agente ya existe en el nodo objetivo" - -#: ../../enterprise/include/functions_metaconsole.php:3037 -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:3042 -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" - -#: ../../enterprise/include/functions_login.php:22 -msgid "You must change password:" -msgstr "Tienes que cambiar la contraseƱa:" - -#: ../../enterprise/include/functions_login.php:38 -msgid "Password must be different from the 3 previous changes." -msgstr "La contraseƱa debe ser diferente a los 3 cambios anteriores." - -#: ../../enterprise/include/functions_login.php:50 -msgid "Old pass: " -msgstr "ContraseƱa antigua: " - -#: ../../enterprise/include/functions_login.php:53 -msgid "New pass: " -msgstr "ContraseƱa nueva: " - -#: ../../enterprise/include/functions_login.php:57 -msgid "Confirm: " -msgstr "Confirmar: " - -#: ../../enterprise/include/functions_login.php:63 -msgid "Change" -msgstr "Cambiar" - -#: ../../enterprise/include/functions_login.php:97 -msgid "Login blocked" -msgstr "Inicio de sesiĆ³n bloqueado" - -#: ../../enterprise/include/functions_login.php:105 -msgid "User has been blocked. Try again in " -msgstr "Tu usuario ha sido bloqueado. Vuelve a intentarlo en " - -#: ../../enterprise/include/functions_login.php:105 -msgid " minutes" -msgstr " minutos" - -#: ../../enterprise/include/functions_login.php:138 -msgid "Login successfully" -msgstr "Inicio de sesiĆ³n correcto" - -#: ../../enterprise/include/functions_login.php:146 -msgid "User pass successfully updated" -msgstr "La contraseƱa se ha actualizado correctamente." - -#: ../../enterprise/include/functions_login.php:252 -msgid "Password must be different from the " -msgstr "La contraseƱa debe ser diferente de " - -#: ../../enterprise/include/functions_login.php:252 -msgid " previous changes." -msgstr " los cambios anteriores." - -#: ../../enterprise/include/functions_login.php:265 -msgid "Password must be different" -msgstr "La contraseƱa no puede ser la misma." - -#: ../../enterprise/include/functions_login.php:276 -msgid "Password too short" -msgstr "La contraseƱa es demasiado corta" - -#: ../../enterprise/include/functions_login.php:288 -msgid "Password must contain numbers" -msgstr "La contraseƱa tiene que contener nĆŗmeros." - -#: ../../enterprise/include/functions_login.php:301 -msgid "Password must contain symbols" -msgstr "La contraseƱa tiene que contener sĆ­mbolos." - -#: ../../enterprise/include/functions_login.php:324 -msgid "Invalid old password" -msgstr "ContraseƱa antigua no vĆ”lida" - -#: ../../enterprise/include/functions_login.php:361 -msgid "Password confirm does not match" -msgstr "Las contraseƱas no coinciden." - -#: ../../enterprise/include/functions_login.php:368 -msgid "Password empty" -msgstr "La contraseƱa estĆ” vacĆ­a." - -#: ../../enterprise/include/functions_snmp.php:65 -msgid "Trap status agent recovered" -msgstr "Estado del trap de agente recuperado" - -#: ../../enterprise/include/functions_aws.php:381 -msgid "$" -msgstr "$" - -#: ../../enterprise/include/functions_aws.php:491 -msgid "Current deployments" -msgstr "Despliegues actuales" - -#: ../../enterprise/include/functions_aws.php:525 -msgid "Cost analysis" -msgstr "AnĆ”lisis de costes" - -#: ../../enterprise/include/functions_aws.php:528 -msgid "Current cost estimation" -msgstr "EstimaciĆ³n actual de costes" - -#: ../../enterprise/include/functions_aws.php:530 -msgid "Previous period cost" -msgstr "Coste del periodo anterior" - -#: ../../enterprise/include/functions_aws.php:589 -msgid "Reservation status" -msgstr "Estado de reserva" - -#: ../../enterprise/include/functions_enterprise.php:460 -#: ../../enterprise/meta/include/functions_wizard_meta.php:613 -#: ../../enterprise/meta/include/functions_wizard_meta.php:670 -#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:1066 -#: ../../godmode/massive/massive_edit_modules.php:1141 -#: ../../godmode/agentes/module_manager_editor_web.php:93 -msgid "Web checks" -msgstr "Comprobaciones web" - -#: ../../enterprise/include/functions_enterprise.php:464 -msgid "Tree view by tags" -msgstr "Vista de Ć”rbol por etiquetas" - -#: ../../enterprise/include/functions_enterprise.php:494 -msgid "" -"If the interval of days until events data purge is shorter than the events " -"data history storage interval, data will be lost. It is recommended that the " -"storage frequency is higher than the purge frequency." -msgstr "" -"Si el intervalo de dĆ­as hasta la purga de datos de eventos es inferior que el " -"intervalo de almacenamiento de histĆ³rico de datos de eventos, se perderĆ”n los " -"datos. Se recomienda configurar una frecuencia de almacenamiento inferior a la " -"frecuencia de purga." - -#: ../../enterprise/include/functions_enterprise.php:496 -msgid "" -"Problems with event days purge and event days that pass data to history DB." -msgstr "" -"Problemas con la fecha de purga de eventos y la fecha de traspaso de " -"informaciĆ³n a histĆ³rico." - -#: ../../enterprise/include/functions_enterprise.php:507 -msgid "" -"If days purge is less than history days pass to history db, you will have a " -"problems and you lost data. Recommended that days purge will more taller than " -"days to history DB" -msgstr "" -"Si la fecha de purga es menor a la fecha de traspaso a histĆ³rico, los datos se " -"perderĆ”n. Recomendamos poner una fecha de purga mayor a la del traspaso de " -"datos a histĆ³rico." - -#: ../../enterprise/include/functions_enterprise.php:509 -msgid "Problems with days purge and days that pass data to history DB" -msgstr "" -"Problemas con la fecha de purga y la fecha de traspaso de informaciĆ³n al " -"histĆ³rico" - -#: ../../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_local_components.php:174 -#: ../../enterprise/meta/advanced/collections.data.php:117 -#: ../../enterprise/godmode/agentes/collections.data.php:217 -msgid "Empty name" -msgstr "Nombre vacĆ­o" - -#: ../../enterprise/include/functions_local_components.php:179 -msgid "Empty configuration" -msgstr "ConfiguraciĆ³n vacĆ­a" - -#: ../../enterprise/include/functions_local_components.php:184 -msgid "Empty OS" -msgstr "SO vacĆ­o" - -#: ../../enterprise/include/functions_log.php:279 -#: ../../enterprise/include/functions_log.php:282 -msgid "Lines" -msgstr "LĆ­neas" - -#: ../../enterprise/include/functions_HA_cluster.php:49 -msgid "Recover" -msgstr "Recuperar" - -#: ../../enterprise/include/functions_HA_cluster.php:52 -msgid "Promote" -msgstr "Promover" - -#: ../../enterprise/include/functions_HA_cluster.php:55 -msgid "Demote" -msgstr "Degradar" - -#: ../../enterprise/include/functions_HA_cluster.php:67 -msgid "Resync" -msgstr "Volver a sincronizar" - -#: ../../enterprise/include/functions_HA_cluster.php:261 -msgid "Public Key Authentication Failed" -msgstr "Error en la autenticaciĆ³n de clave pĆŗblica" - -#: ../../enterprise/include/functions_HA_cluster.php:268 -msgid "Connection failed" -msgstr "Conexion fallida" - -#: ../../enterprise/include/functions_HA_cluster.php:491 -msgid "Register" -msgstr "Registrar" - -#: ../../enterprise/include/functions_HA_cluster.php:493 -msgid "Register new node" -msgstr "Registrar nuevo nodo" - -#: ../../enterprise/include/functions_reporting.php:71 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:198 -msgid "Wizard SLA" -msgstr "Wizard SLA" - -#: ../../enterprise/include/functions_reporting.php:82 -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:74 -msgid "Global" -msgstr "Global" - -#: ../../enterprise/include/functions_reporting.php:93 -msgid "Advance options" -msgstr "Opciones avanzadas" - -#: ../../enterprise/include/functions_reporting.php:117 -msgid "Templates list" -msgstr "Lista de plantillas" - -#: ../../enterprise/include/functions_reporting.php:152 -msgid "Templates Wizard" -msgstr "Asistente de plantillas" - -#: ../../enterprise/include/functions_reporting.php:1232 -msgid "Availability item created from wizard." -msgstr "Elemento disponible creado desde el asistente" - -#: ../../enterprise/include/functions_reporting.php:1903 -#: ../../enterprise/include/functions_reporting.php:2959 -#: ../../enterprise/include/functions_reporting.php:3947 -msgid "Planned Downtimes" -msgstr "Paradas planificadas" - -#: ../../enterprise/include/functions_reporting.php:1910 -msgid "Ignore time" -msgstr "Tiempo ignorado" - -#: ../../enterprise/include/functions_reporting.php:1930 -msgid "SLA Compliance per days" -msgstr "Cumplimiento de SLA por dĆ­as" - -#: ../../enterprise/include/functions_reporting.php:2021 -msgid "Summary of SLA Failures" -msgstr "Resumen de los fallos de SLA" - -#: ../../enterprise/include/functions_reporting.php:2041 -#: ../../enterprise/include/functions_reporting.php:2042 -msgid "Out of SLA limits" -msgstr "Sin lĆ­mites SLS" - -#: ../../enterprise/include/functions_reporting.php:2047 -#: ../../enterprise/include/functions_reporting.php:2048 -msgid "IN of SLA limits" -msgstr "LĆ­mite del IN de SLA" - -#: ../../enterprise/include/functions_reporting.php:2969 -#: ../../enterprise/include/functions_reporting.php:3210 -#: ../../enterprise/include/functions_reporting.php:3957 -msgid "Planned Downtime" -msgstr "Tiempo de inactividad planificado" - -#: ../../enterprise/include/functions_reporting.php:2999 -msgid "T. Total" -msgstr "Tiempo total" - -#: ../../enterprise/include/functions_reporting.php:3000 -#: ../../enterprise/include/functions_reporting.php:3984 -msgid "T. OK" -msgstr "Tiempo OK" - -#: ../../enterprise/include/functions_reporting.php:3001 -#: ../../enterprise/include/functions_reporting.php:3985 -msgid "T. Error" -msgstr "Tiempo error" - -#: ../../enterprise/include/functions_reporting.php:3002 -#: ../../enterprise/include/functions_reporting.php:3986 -msgid "T. Unknown" -msgstr "Tiempo desconocido" - -#: ../../enterprise/include/functions_reporting.php:3003 -#: ../../enterprise/include/functions_reporting.php:3987 -msgid "T. Not_init" -msgstr "Tiempo no iniciado" - -#: ../../enterprise/include/functions_reporting.php:3004 -#: ../../enterprise/include/functions_reporting.php:3988 -msgid "T. Downtime" -msgstr "Tiempo en parada planificada" - -#: ../../enterprise/include/functions_reporting.php:3005 -#: ../../enterprise/include/functions_reporting.php:3989 -msgid "SLA %" -msgstr "SLA %" - -#: ../../enterprise/include/functions_reporting.php:4211 -msgid "Ignore Planned Downtime" -msgstr "Ignorar parada planeada" - -#: ../../enterprise/include/functions_reporting.php:4904 -msgid "Max/Min Critical" -msgstr "MĆ”x./MĆ­n. CrĆ­tico" - -#: ../../enterprise/include/functions_reporting.php:4905 -msgid "Max/Min Warning" -msgstr "MĆ”x./MĆ­n. Advertencia" - -#: ../../enterprise/include/functions_reporting.php:4906 -msgid "Total checks ok/total" -msgstr "Comprobaciones totales ok/total" - -#: ../../enterprise/include/functions_reporting.php:4907 -msgid "% time ok" -msgstr "% tiempo ok" - -#: ../../enterprise/include/functions_reporting.php:4967 -msgid "Time Critical" -msgstr "Tiempo CrĆ­tico" - -#: ../../enterprise/include/functions_reporting.php:5062 -msgid "Checks Critical" -msgstr "Comprobaciones CrĆ­tico" - -#: ../../enterprise/include/functions_reporting.php:5582 -msgid "There are no SLAs defined." -msgstr "No hay SLAs definidos" - -#: ../../enterprise/include/functions_reporting.php:6218 -msgid "Scheduled shutdow" -msgstr "Parada planeada" - -#: ../../enterprise/include/functions_reporting.php:6584 -#: ../../enterprise/include/functions_reporting.php:7474 -#, php-format -msgid "Graph agents(%s) - %s" -msgstr "GrĆ”ficos de agentes (%s) - %s" - -#: ../../enterprise/include/functions_reporting.php:7382 -#, php-format -msgid "Graph agent(%s) - %s" -msgstr "GrĆ”fico de agente(%s) - %s" - -#: ../../enterprise/include/functions_reporting.php:7829 -msgid "There is not data for the selected conditions" -msgstr "No hay datos para las condiciones seleccionadas" - -#: ../../enterprise/include/functions_reporting.php:8021 -#: ../../enterprise/include/functions_reporting.php:8087 -msgid "Template editor" -msgstr "Editor de plantillas" - -#: ../../enterprise/include/functions_reporting.php:8517 -msgid "Configuration changes" -msgstr "Cambios en la configuraciĆ³n" - -#: ../../enterprise/include/functions_reporting.php:8534 -msgid "No NCM capabilities detected" -msgstr "No se han detectado capacidades de NCM" - -#: ../../enterprise/include/process_reset_pass.php:118 -#: ../../enterprise/meta/include/process_reset_pass.php:114 -msgid "Repeat password" -msgstr "Repetir contraseƱa" - -#: ../../enterprise/include/process_reset_pass.php:124 -#: ../../enterprise/meta/include/process_reset_pass.php:120 -msgid "Change password" -msgstr "Cambiar contraseƱa" - -#: ../../enterprise/include/functions_visual_map.php:203 -#: ../../enterprise/include/functions_visual_map.php:268 -msgid "Crit:" -msgstr "CrĆ­tico" - -#: ../../enterprise/include/functions_visual_map.php:207 -#: ../../enterprise/include/functions_visual_map.php:272 -msgid "Warn:" -msgstr "Advertencia" - -#: ../../enterprise/include/functions_visual_map.php:211 -#: ../../enterprise/include/functions_visual_map.php:276 -msgid "Ok:" -msgstr "OK" - -#: ../../enterprise/include/functions_visual_map.php:215 -#: ../../enterprise/include/functions_visual_map.php:280 -#: ../../enterprise/meta/include/functions_autoprovision.php:765 -msgid "Value:" -msgstr "Valor:" - -#: ../../enterprise/include/functions_visual_map.php:672 -msgid "None of the services was added" -msgstr "No se aƱadiĆ³ ningĆŗn servicio" - -#: ../../enterprise/include/functions_visual_map.php:674 -#, php-format -msgid "%d services couldn't be added" -msgstr "%d servicios no se han podido aƱadir" - -#: ../../enterprise/include/functions_visual_map.php:680 -msgid "There was an error retrieving the visual map information" -msgstr "Error al recuperar la informaciĆ³n del mapa visual" - -#: ../../enterprise/include/functions_transactional.php:631 -msgid "Error in dependencies field" -msgstr "Error en el campo de las dependencias" - -#: ../../enterprise/include/functions_transactional.php:640 -msgid "Error in enables field" -msgstr "Error al activar el campo" - -#: ../../enterprise/include/functions_setup.php:44 -#: ../../enterprise/include/functions_setup.php:108 -#: ../../enterprise/godmode/menu.php:295 ../../godmode/setup/setup.php:317 -#: ../../godmode/extensions.php:140 -msgid "Enterprise" -msgstr "Enterprise" - -#: ../../enterprise/include/functions_setup.php:79 -#: ../../enterprise/include/functions_setup.php:125 -msgid "Log collector" -msgstr "Colector de logs" - -#: ../../enterprise/include/functions_setup.php:151 -msgid "Metaconsole link status" -msgstr "Estado del link de la metaconsola" - -#: ../../enterprise/include/functions_setup.php:183 -msgid "DB connection" -msgstr "ConexiĆ³n a la base de datos" - -#: ../../enterprise/include/functions_setup.php:192 -#: ../../enterprise/meta/advanced/metasetup.consoles.php:834 -msgid "Agent cache" -msgstr "CachĆ© de agente" - -#: ../../enterprise/include/functions_setup.php:201 -#: ../../enterprise/meta/advanced/policymanager.sync.php:328 -#: ../../enterprise/meta/advanced/metasetup.consoles.php:835 -#: ../../enterprise/godmode/servers/HA_cluster.php:166 -msgid "Sync" -msgstr "Sincronizar" - -#: ../../enterprise/include/functions_setup.php:205 -msgid "This console is joining a metaconsole." -msgstr "Esta consola se unirĆ” a una Metaconsola" - -#: ../../enterprise/include/functions_setup.php:213 -msgid "This console is not joining any metaconsole." -msgstr "Esta consola no se unirĆ” a ninguna Metaconsola" - -#: ../../enterprise/include/functions_backup.php:162 -msgid "Command mysqldump not found." -msgstr "Comando Mysqldump no encontrado" - -#: ../../enterprise/include/functions_backup.php:177 -msgid "The mysqldump execution goes wrong." -msgstr "La ejecuciĆ³n de mysqldump ha salido mal." - -#: ../../enterprise/include/functions_backup.php:190 -msgid "" -"In order to make backups it is necessary to check if the configuration is " -"correct." -msgstr "" -"Para poder realizar copias de seguridad es necesario comprobar si la " -"configuraciĆ³n es correcta." - -#: ../../enterprise/include/functions_backup.php:256 -msgid "No description" -msgstr "Sin descripciĆ³n" - -#: ../../enterprise/include/functions_backup.php:408 -msgid "Restoring a backup" -msgstr "Restaurar una copia de seguridad" - -#: ../../enterprise/include/functions_backup.php:410 -#, php-format -msgid "Restoring a %s database backup must be done manually." -msgstr "" -"La restauraciĆ³n de la copia de seguridad de la base de datos de %s debe " -"llevarse a cabo manualmente." - -#: ../../enterprise/include/functions_backup.php:412 -msgid "" -"It's a complex operation that needs human intervation to avoid system failures " -"and data loosing" -msgstr "" -"Esta operaciĆ³n es compleja y necesita intervenciĆ³n humana para evitar fallos " -"en el sistema y pĆ©rdida de datos." - -#: ../../enterprise/include/functions_backup.php:414 -msgid "To restore the selected backup, please follow these steps" -msgstr "" -"Para restaurar la copia de seguridad seleccionada sigue los siguientes pasos." - -#: ../../enterprise/include/functions_backup.php:420 -msgid "Open a root shell in your system located at " -msgstr "Abre un root shell en tu sistema localizado en " - -#: ../../enterprise/include/functions_backup.php:424 -msgid "Connect to MySQL database using the following command" -msgstr "Usa el siguiente comando para conectar con la base de datos de MySQL" - -#: ../../enterprise/include/functions_backup.php:430 -msgid "Create a new database" -msgstr "Crear una nueva base de datos" - -#: ../../enterprise/include/functions_backup.php:454 -msgid "Restore the backup" -msgstr "Restaurar la copia de seguridad" - -#: ../../enterprise/include/functions_backup.php:469 -msgid "Modify console configuration to use this new database" -msgstr "" -"Modifica la configuraciĆ³n de la consola para usar esta nueva base de datos" - -#: ../../enterprise/include/functions_backup.php:470 -msgid "Open configuration file" -msgstr "Abrir el archivo de configuraciĆ³n" - -#: ../../enterprise/include/functions_backup.php:473 -#: ../../enterprise/include/functions_backup.php:483 -msgid "Find" -msgstr "Encontrar" - -#: ../../enterprise/include/functions_backup.php:475 -#: ../../enterprise/include/functions_backup.php:485 -msgid "and replace with" -msgstr "y reemplazar con" - -#: ../../enterprise/include/functions_backup.php:480 -msgid "Modify servers configuration to use this new database" -msgstr "" -"Modifica la configuraciĆ³n de los servidores para usar esta nueva base de datos" - -#: ../../enterprise/include/functions_backup.php:481 -msgid "Find servers configuration file and replace the following lines" -msgstr "" -"Accede al archivo de configuraciĆ³n de los servidores y reemplĆ”zalo por las " -"siguientes lĆ­neas" - -#: ../../enterprise/include/functions_backup.php:490 -msgid "Restart the servers and login again into the console" -msgstr "Reinicia los servidores y vuelve a identificarte en la consola" - -#: ../../enterprise/include/functions_ipam.php:288 -msgid "Export to Excel" -msgstr "Exportar a Excel" - -#: ../../enterprise/include/functions_ipam.php:395 -msgid "Assign next free IP" -msgstr "Asignar la siguiente IP libre" - -#: ../../enterprise/include/functions_ipam.php:413 -msgid "Next available IP" -msgstr "Siguiente IP disponible" - -#: ../../enterprise/include/functions_ipam.php:1565 -msgid "Occupied" -msgstr "Ocupado" - -#: ../../enterprise/include/functions_ipam.php:1567 -#: ../../enterprise/godmode/reporting/visual_console_builder.wizard_services.php:139 -msgid "Available" -msgstr "Disponible" - -#: ../../enterprise/include/functions_ipam.php:1573 -msgid "Not managed" -msgstr "No gestionado" - -#: ../../enterprise/include/functions_ipam.php:1579 -msgid "Not Reserved" -msgstr "No reservado" - -#: ../../enterprise/include/functions_ipam.php:1589 -msgid "Occupancy statistics" -msgstr "EstadĆ­sticas de ocupaciĆ³n" - -#: ../../enterprise/include/functions_ipam.php:1646 -msgid "DESC" -msgstr "Descendiente" - -#: ../../enterprise/include/functions_ipam.php:1647 -msgid "ASC" -msgstr "Ascendente" - -#: ../../enterprise/include/functions_ipam.php:1648 -msgid "A -> Z" -msgstr "A -> Z" - -#: ../../enterprise/include/functions_ipam.php:1649 -msgid "Z -> A" -msgstr "Z -> A" - -#: ../../enterprise/include/functions_ipam.php:1650 -#: ../../enterprise/include/functions_ipam.php:1651 -msgid "Last check" -msgstr "Ultima comprobaciĆ³n" - -#: ../../enterprise/include/functions_ipam.php:1650 -msgid "Newer -> Older" -msgstr "MĆ”s reciente -> MĆ”s antiguo" - -#: ../../enterprise/include/functions_ipam.php:1651 -msgid "Older -> Newer" -msgstr "MĆ”s antiguo -> MĆ”s reciente" - -#: ../../enterprise/include/functions_ipam.php:1678 -msgid "Exact address match" -msgstr "Coincide la direcciĆ³n exacta" - -#: ../../enterprise/include/functions_ipam.php:1682 -msgid "S.O" -msgstr "S.O" - -#: ../../enterprise/include/functions_ipam.php:1695 -msgid "Big" -msgstr "Grande" - -#: ../../enterprise/include/functions_ipam.php:1696 -msgid "Tiny" -msgstr "PequeƱo" - -#: ../../enterprise/include/functions_ipam.php:1697 -msgid "Icons style" -msgstr "Estilo de iconos" - -#: ../../enterprise/include/functions_ipam.php:1714 -msgid "Show not alive hosts" -msgstr "Mostrar mĆ”quinas inactivas" - -#: ../../enterprise/include/functions_ipam.php:1722 -msgid "Show only managed addresses" -msgstr "Mostrar solo direcciones administradas" - -#: ../../enterprise/include/functions_ipam.php:1730 -msgid "Reserved addresses" -msgstr "Direcciones reservadas" - -#: ../../enterprise/include/functions_ipam.php:1735 -msgid "Unreserved" -msgstr "No reservado" - -#: ../../enterprise/include/functions_ipam.php:1745 -msgid "Last Contact" -msgstr "ƚltimo contacto" - -#: ../../enterprise/include/functions_ipam.php:1788 -msgid "Filter options" -msgstr "Opciones de filtro" - -#: ../../enterprise/include/functions_ipam.php:1979 -msgid "id Network" -msgstr "ID de red" - -#: ../../enterprise/include/functions_ipam.php:1984 -msgid "ID recon task" -msgstr "Tarea de reconocimiento de ID" - -#: ../../enterprise/include/functions_ipam.php:1985 -msgid "Scan Interval" -msgstr "Intervalo de escaneo" - -#: ../../enterprise/include/functions_ipam.php:1986 -msgid "Users Operator" -msgstr "Operador de usuarios" - -#: ../../enterprise/include/functions_ipam.php:1987 -msgid "Total Ips" -msgstr "IPs totales" - -#: ../../enterprise/include/functions_ipam.php:1988 -msgid "Last Update" -msgstr "ƚltima actualizaciĆ³n" - -#: ../../enterprise/include/functions_ipam.php:2041 -msgid "OS Name" -msgstr "Nombre del OS" - -#: ../../enterprise/include/functions_ipam.php:2045 -msgid "Last updated" -msgstr "ƚltima actualizaciĆ³n" - -#: ../../enterprise/include/functions_ipam.php:2046 -msgid "Last modified" -msgstr "ƚltima modificaciĆ³n" - -#: ../../enterprise/include/functions_ipam.php:2047 -msgid "Dhcp Leased" -msgstr "Dhcp prestado" - -#: ../../enterprise/include/functions_ipam.php:2048 -msgid "Dhcp Leased Mode" -msgstr "Modo Dhcp prestado" - -#: ../../enterprise/include/functions_ipam.php:2049 -msgid "Dhcp Leased Expiration" -msgstr "Caducidad de Dhcp prestado" - -#: ../../enterprise/include/functions_ipam.php:2050 -msgid "Mac address" -msgstr "DirecciĆ³n Mac" - -#: ../../enterprise/include/functions_reporting_pdf.php:1838 -msgid "Contents" -msgstr "Contenido" - -#: ../../enterprise/include/functions_collection.php:39 -#, php-format -msgid "Collection %d does not exist" -msgstr "La colecciĆ³n %d no existe" - -#: ../../enterprise/include/functions_collection.php:48 -msgid "Collection dir does not exist." -msgstr "El directorio donde se guardan las colecciones no existe." - -#: ../../enterprise/include/functions_collection.php:57 -#, php-format -msgid "Failed to create collection path: %s" -msgstr "Error al crear la colecciĆ³n en la ruta: %s" - -#: ../../enterprise/include/functions_collection.php:66 -msgid "Target collection path is not writable" -msgstr "No se ha podido escribir en en el directorio de colecciones remotas" - -#: ../../enterprise/include/functions_collection.php:80 -msgid "Failed to create zip file for collection" -msgstr "Error al crear el archivo zip para la colecciĆ³n" - -#: ../../enterprise/include/functions_collection.php:87 -#, php-format -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_servicemap.php:80 -#: ../../enterprise/include/functions_servicemap.php:1203 -msgid "Failed to retrieve service elements: " -msgstr "Error al recuperar elementos de servicio: " - -#: ../../enterprise/include/functions_hostdevices.php:45 -msgid "Remote commands enabled" -msgstr "Comandos remotos habilitados" - -#: ../../enterprise/include/functions_ui.php:79 -msgid "Select inventory module" -msgstr "Seleccionar mĆ³dulo de inventario" - -#: ../../enterprise/include/functions_ui.php:92 -#: ../../enterprise/godmode/agentes/inventory_manager.php:222 -msgid "Target" -msgstr "Destino" - -#: ../../enterprise/include/functions_ui.php:96 -msgid "Use custom fields" -msgstr "Usar campos personalizados" - -#: ../../enterprise/include/functions_ui.php:179 -msgid "Field name" -msgstr "Nombre del campo" - -#: ../../enterprise/include/functions_ui.php:179 -msgid "It's a password" -msgstr "Es una contraseƱa" - -#: ../../enterprise/include/functions_ui.php:179 -msgid "Add field" -msgstr "AƱadir campo" - -#: ../../enterprise/include/functions_license.php:119 -msgid "Perpetual" -msgstr "Perpetuo" - -#: ../../enterprise/include/functions_license.php:119 -msgid "Subscription" -msgstr "SuscripciĆ³n" - -#: ../../enterprise/include/functions_license.php:120 -msgid "Expires" -msgstr "Caduca" - -#: ../../enterprise/include/functions_policies.php:675 -#, php-format -msgid "%s success" -msgstr "%s Ć©xito" - -#: ../../enterprise/include/functions_policies.php:675 -#, php-format -msgid "%s failed" -msgstr "%s fallĆ³" - -#: ../../enterprise/include/functions_policies.php:680 -msgid "Policy cleaned from nodes: " -msgstr "Directiva limpiada de nodos: " - -#: ../../enterprise/include/functions_policies.php:934 -#, php-format -msgid "Failed to connect to node %s" -msgstr "Error al conectarse al %s de nodo" - -#: ../../enterprise/include/functions_policies.php:3506 -msgid "Policy linkation" -msgstr "VinculaciĆ³n de polĆ­ticas" - -#: ../../enterprise/include/functions_policies.php:3511 -msgid "Module linked" -msgstr "MĆ³dulo enlazado" - -#: ../../enterprise/include/functions_policies.php:3516 -#: ../../enterprise/include/functions_policies.php:3536 -msgid "Unlink from policy" -msgstr "MĆ³dulo desenlazado de la polĆ­tica" - -#: ../../enterprise/include/functions_policies.php:3521 -msgid "Module unlinked" -msgstr "MĆ³dulo desenlazado" - -#: ../../enterprise/include/functions_policies.php:3526 -#: ../../enterprise/include/functions_policies.php:3546 -msgid "Relink to policy" -msgstr "Volver a enlazar a la polĆ­tica" - -#: ../../enterprise/include/functions_policies.php:3531 -msgid "Module pending to link" -msgstr "MĆ³dulo pendiente de enlazar" - -#: ../../enterprise/include/functions_policies.php:3531 -#: ../../godmode/agentes/module_manager_editor.php:548 -msgid "Module will be linked in the next application" -msgstr "El mĆ³dulo serĆ” enlazado en la prĆ³xima aplicaciĆ³n." - -#: ../../enterprise/include/functions_policies.php:3541 -msgid "Module pending to unlink" -msgstr "MĆ³dulo pendiente de desenlazar" - -#: ../../enterprise/include/functions_policies.php:3541 -#: ../../godmode/agentes/module_manager_editor.php:562 -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:3711 -#: ../../enterprise/godmode/menu.php:108 -msgid "Manage policies" -msgstr "Gestionar polĆ­ticas" - -#: ../../enterprise/include/functions_policies.php:3732 -#: ../../enterprise/godmode/policies/policy.php:102 -#: ../../godmode/agentes/configurar_agente.php:527 -msgid "Agent wizard" -msgstr "Asistente de agente" - -#: ../../enterprise/include/functions_policies.php:3737 -#: ../../godmode/setup/snmp_wizard.php:31 -#: ../../godmode/agentes/configurar_agente.php:539 -#: ../../godmode/agentes/configurar_agente.php:760 -msgid "SNMP Wizard" -msgstr "Asistente SNMP" - -#: ../../enterprise/include/functions_policies.php:3740 -#: ../../godmode/agentes/configurar_agente.php:549 -#: ../../godmode/agentes/configurar_agente.php:766 -msgid "SNMP Interfaces wizard" -msgstr "Asistente de interfaces SNMP" - -#: ../../enterprise/include/functions_policies.php:3743 -#: ../../godmode/agentes/configurar_agente.php:559 -#: ../../godmode/agentes/configurar_agente.php:772 -msgid "WMI Wizard" -msgstr "Asistente WMI" - -#: ../../enterprise/include/functions_policies.php:3755 -#: ../../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/menu.php:90 -#: ../../enterprise/godmode/alerts/alert_inventory_builder.php:198 -#: ../../enterprise/godmode/policies/policy_inventory_modules.php:70 -#: ../../enterprise/godmode/policies/policy_inventory_modules.php:282 -msgid "Inventory modules" -msgstr "MĆ³dulos de inventario" - -#: ../../enterprise/include/functions_policies.php:3771 -#: ../../enterprise/godmode/policies/policies.php:523 -#: ../../enterprise/godmode/policies/policy_external_alerts.php:52 -msgid "External alerts" -msgstr "Alertas externas" - -#: ../../enterprise/include/functions_policies.php:3783 -#: ../../enterprise/godmode/policies/policy_linking.php:157 -#: ../../enterprise/godmode/policies/policies.php:501 -msgid "Linking" -msgstr "Enlazando" - -#: ../../enterprise/include/functions_policies.php:3813 -#: ../../enterprise/godmode/policies/policy.php:60 -#: ../../enterprise/godmode/policies/policies.php:527 -msgid "Queue" -msgstr "Cola" - -#: ../../enterprise/include/functions_policies.php:3832 -#: ../../enterprise/godmode/agentes/configurar_agente.php:112 -#: ../../enterprise/godmode/policies/policy.php:82 -#: ../../godmode/agentes/configurar_agente.php:718 -msgid "Agent plugins" -msgstr "Plugins del agente" - -#: ../../enterprise/include/functions_policies.php:4060 -msgid "Create a new policy map" -msgstr "Crear un nuevo mapa de polĆ­ticas" - -#: ../../enterprise/include/functions_policies.php:4448 -#: ../../extensions/resource_registration.php:1098 -msgid "Error, please install the PHP libXML in the system." -msgstr "Error: por favor, instale la librerĆ­a PHP LibXML en el sistema." - -#: ../../enterprise/include/functions_policies.php:4460 -#, php-format -msgid "" -"This extension makes registration of policies enterprise.
You can get more " -"policies in our Public Resource Library" -msgstr "" -"Esta extensiĆ³n permite registrar las polĆ­ticas Enterprise.
Puedes " -"conseguir mĆ”s polĆ­ticas en nuestra LibrerĆ­a de recursos pĆŗblica." - -#: ../../enterprise/include/functions_policies.php:4467 -#: ../../extensions/resource_registration.php:1133 -msgid "Group filter: " -msgstr "Filtro de grupo: " - -#: ../../enterprise/include/functions_policies.php:4492 -#: ../../extensions/resource_registration.php:1150 -msgid "" -"Error uploading resource. Check if the selected file is a valid resource " -"template in .ptr format" -msgstr "" -"Error al cargar el recurso. Compruebe si el archivo seleccionado es una " -"plantilla de recursos vĆ”lida en formato .ptr" - -#: ../../enterprise/include/functions_policies.php:4518 -msgid "Policy does not exist" -msgstr "La polĆ­tica no existe" - -#: ../../enterprise/include/functions_policies.php:4908 -msgid "This will not produce any action." -msgstr "Esto no generarĆ” ninguna acciĆ³n." - -#: ../../enterprise/include/functions_policies.php:4937 -#, php-format -msgid "Error connecting with node %s." -msgstr "Error al conectar con el nodo %s." - -#: ../../enterprise/include/functions_policies.php:4944 -#, php-format -msgid "This policy is being applied on node %s." -msgstr "Esta polĆ­tica se estĆ” aplicando en el nodo %s." - -#: ../../enterprise/include/functions_policies.php:4982 -msgid "Error syncronizing ." -msgstr "Error de sincronizaciĆ³n." - -#: ../../enterprise/meta/screens/screens.php:37 -#: ../../enterprise/meta/general/main_menu.php:338 -#: ../../enterprise/meta/general/logon_ok.php:84 -#: ../../enterprise/meta/general/main_header.php:232 -msgid "Screens" -msgstr "Pantallas" - -#: ../../enterprise/meta/screens/screens.visualmap.php:71 -msgid "Create visualmap" -msgstr "Crear mapa visual" - -#: ../../enterprise/meta/screens/screens.visualmap.php:297 -#: ../../godmode/reporting/visual_console_builder.php:844 -msgid "New visual console" -msgstr "Nueva consola visual" - -#: ../../enterprise/meta/event/custom_events.php:50 ../../godmode/menu.php:264 -#: ../../godmode/events/events.php:68 -msgid "Event responses" -msgstr "Respuestas de evento" - -#: ../../enterprise/meta/event/custom_events.php:98 -msgid "The user is not in neither group with EW profile" -msgstr "El usuario no se encuentra en ninguno de los grupos con el perfil EW." - -#: ../../enterprise/meta/event/custom_events.php:175 -#: ../../godmode/events/custom_events.php:129 -#: ../../godmode/agentes/status_monitor_custom_fields.php:164 -msgid "Fields available" -msgstr "Campos disponibles" - -#: ../../enterprise/meta/event/custom_events.php:177 -#: ../../godmode/events/custom_events.php:149 -#: ../../godmode/agentes/status_monitor_custom_fields.php:186 -msgid "Fields selected" -msgstr "Campos seleccionados" - -#: ../../enterprise/meta/event/custom_events.php:187 -#: ../../godmode/events/custom_events.php:136 -#: ../../godmode/agentes/status_monitor_custom_fields.php:171 -msgid "Add fields to select" -msgstr "AƱadir campos para seleccionar" - -#: ../../enterprise/meta/event/custom_events.php:197 -#: ../../godmode/events/custom_events.php:144 -#: ../../godmode/agentes/status_monitor_custom_fields.php:180 -msgid "Delete fields to select" -msgstr "Eliminar campos para seleccionar" - -#: ../../enterprise/meta/event/custom_events.php:207 -#: ../../godmode/events/custom_events.php:74 -msgid "Show event fields" -msgstr "Mostrar campos de eventos" - -#: ../../enterprise/meta/event/custom_events.php:248 -#: ../../godmode/events/custom_events.php:203 -#: ../../godmode/agentes/status_monitor_custom_fields.php:240 -msgid "There must be at least one custom field. Timestamp will be set by default" -msgstr "" -"Debe haber al menos un campo personalizado. La marca horaria estĆ” establecida " -"por defecto." - -#: ../../enterprise/meta/general/metaconsole_no_activated.php:24 -msgid "" -"Metaconsole needs previous activation from regular console, please contact " -"system administrator if you need assistance.
" -msgstr "" -"La Metaconsola necesita una activaciĆ³n previa desde una consola regular. " -"Contacta con el administrador del sistema si necesitas asistencia.
" - -#: ../../enterprise/meta/general/main_menu.php:200 -#: ../../enterprise/meta/general/main_header.php:109 -msgid "Groups view" -msgstr "Visor de grupos" - -#: ../../enterprise/meta/general/main_menu.php:212 -#: ../../enterprise/meta/general/main_header.php:121 -msgid "Monitors view" -msgstr "Visor de monitores" - -#: ../../enterprise/meta/general/main_menu.php:218 -#: ../../enterprise/meta/general/main_header.php:127 -msgid "Custom fields view" -msgstr "Vista de campos personalizados" - -#: ../../enterprise/meta/general/main_menu.php:276 -#: ../../enterprise/meta/general/main_header.php:174 -msgid "Create new report" -msgstr "Crear un nuevo informe" - -#: ../../enterprise/meta/general/main_menu.php:286 -#: ../../enterprise/meta/general/main_header.php:190 -msgid "Report templates" -msgstr "Plantillas de informes" - -#: ../../enterprise/meta/general/main_menu.php:353 -#: ../../enterprise/meta/general/main_header.php:247 -#: ../../godmode/reporting/visual_console_favorite.php:118 -msgid "Favourite Visual Console" -msgstr "Consola visual favorita" - -#: ../../enterprise/meta/general/main_menu.php:361 -#: ../../enterprise/meta/general/main_header.php:255 -msgid "Template Visual Console" -msgstr "Consola visual de plantillas" - -#: ../../enterprise/meta/general/main_menu.php:368 -#: ../../enterprise/meta/general/main_header.php:262 -msgid "Wizard Visual Console" -msgstr "Consola visual de asistente" - -#: ../../enterprise/meta/general/main_menu.php:389 -#: ../../enterprise/meta/general/main_header.php:281 -msgid "Live view" -msgstr "Vista en vivo" - -#: ../../enterprise/meta/general/main_menu.php:407 -#: ../../enterprise/godmode/menu.php:257 -msgid "Alert correlation" -msgstr "CorrelaciĆ³n de alertas" - -#: ../../enterprise/meta/general/main_menu.php:427 -#: ../../enterprise/meta/general/main_menu.php:508 -msgid "Centralised management" -msgstr "GestiĆ³n centralizada" - -#: ../../enterprise/meta/general/main_menu.php:434 -#: ../../enterprise/meta/general/main_menu.php:534 -#: ../../enterprise/meta/general/main_header.php:315 -#: ../../enterprise/meta/general/main_header.php:417 -msgid "Agent management" -msgstr "GestiĆ³n de agentes" - -#: ../../enterprise/meta/general/main_menu.php:440 -#: ../../enterprise/meta/general/main_menu.php:540 -#: ../../enterprise/meta/general/main_header.php:327 -#: ../../enterprise/meta/general/main_header.php:423 -#: ../../enterprise/godmode/modules/local_components.php:157 -#: ../../enterprise/godmode/modules/manage_inventory_modules.php:45 -#: ../../enterprise/godmode/modules/manage_inventory_modules_form.php:37 -#: ../../godmode/modules/module_list.php:29 -#: ../../godmode/modules/manage_network_components.php:290 -#: ../../godmode/modules/manage_network_templates.php:39 -#: ../../godmode/modules/manage_network_templates_form.php:32 -#: ../../godmode/modules/manage_nc_groups.php:40 -msgid "Module management" -msgstr "GestiĆ³n de mĆ³dulos" - -#: ../../enterprise/meta/general/main_menu.php:446 -#: ../../enterprise/meta/general/main_menu.php:563 -#: ../../enterprise/meta/general/main_header.php:333 -#: ../../enterprise/meta/general/main_header.php:439 -msgid "Alert management" -msgstr "GestiĆ³n de alertas" - -#: ../../enterprise/meta/general/main_menu.php:452 -#: ../../enterprise/meta/general/main_header.php:339 -msgid "Component management" -msgstr "GestiĆ³n de componentes" - -#: ../../enterprise/meta/general/main_menu.php:464 -#: ../../enterprise/meta/general/main_menu.php:554 -#: ../../enterprise/meta/general/main_header.php:345 -msgid "Policy management" -msgstr "GestiĆ³n de polĆ­ticas" - -#: ../../enterprise/meta/general/main_menu.php:470 -#: ../../enterprise/meta/general/main_header.php:351 -msgid "Category management" -msgstr "GestiĆ³n de categorĆ­as" - -#: ../../enterprise/meta/general/main_menu.php:476 -#: ../../enterprise/meta/general/main_menu.php:547 -#: ../../enterprise/meta/general/main_header.php:357 -#: ../../enterprise/meta/general/main_header.php:430 -msgid "Server management" -msgstr "GestiĆ³n de servidores" - -#: ../../enterprise/meta/general/main_menu.php:482 ../../godmode/menu.php:183 -#: ../../godmode/massive/massive_operations.php:329 -msgid "Bulk operations" -msgstr "Operaciones masivas" - -#: ../../enterprise/meta/general/main_menu.php:488 -msgid "Agent operations" -msgstr "Operaciones del agente" - -#: ../../enterprise/meta/general/main_menu.php:496 -#: ../../enterprise/meta/general/main_header.php:363 -msgid "Command Center" -msgstr "command center" - -#: ../../enterprise/meta/general/main_menu.php:584 -#: ../../enterprise/meta/general/main_header.php:369 ../../godmode/menu.php:371 -msgid "License" -msgstr "Licencia" - -#: ../../enterprise/meta/general/main_menu.php:590 -#: ../../enterprise/meta/general/main_header.php:375 -msgid "Metasetup" -msgstr "Metasetup" - -#: ../../enterprise/meta/general/main_menu.php:626 -#: ../../enterprise/meta/general/main_header.php:458 -#: ../../godmode/extensions.php:28 -msgid "Extensions" -msgstr "Extensiones" - -#: ../../enterprise/meta/general/main_menu.php:667 ../../godmode/menu.php:388 -msgid "System audit log" -msgstr "Logs de auditorĆ­a del sistema" - -#: ../../enterprise/meta/general/main_header.php:492 -msgid "Audit Logs" -msgstr "Registros de auditorĆ­a" - -#: ../../enterprise/meta/general/footer.php:46 -msgid "Page generated at" -msgstr "PĆ”gina generada en" - -#: ../../enterprise/meta/general/login_page.php:58 -#: ../../enterprise/meta/include/reset_pass.php:41 -#: ../../enterprise/meta/include/process_reset_pass.php:41 -msgid "Go to Pandora FMS Support" -msgstr "Ir a soporte de Pandora FMS" - -#: ../../enterprise/meta/general/login_page.php:60 -#: ../../enterprise/meta/general/login_page.php:71 -#: ../../enterprise/meta/include/reset_pass.php:43 -#: ../../enterprise/meta/include/reset_pass.php:54 -#: ../../enterprise/meta/include/process_reset_pass.php:43 -#: ../../enterprise/meta/include/process_reset_pass.php:54 -msgid "Go to " -msgstr "Ir a " - -#: ../../enterprise/meta/general/login_page.php:69 -#: ../../enterprise/meta/include/reset_pass.php:52 -#: ../../enterprise/meta/include/process_reset_pass.php:52 -msgid "Go to Pandora FMS Wiki" -msgstr "Ir a la Wiki de Pandora FMS" - -#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:92 -#: ../../godmode/alerts/alert_templates.php:61 -msgid "Everyday" -msgstr "Cada dĆ­a" - -#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:104 -#: ../../godmode/alerts/alert_templates.php:73 -msgid "Every" -msgstr "Cada" - -#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:115 -#: ../../godmode/alerts/alert_templates.php:84 -msgid "and" -msgstr "y" - -#: ../../enterprise/meta/include/ajax/wizard.ajax.php:56 -msgid "Agent succesfully deleted" -msgstr "Agente eliminado correctamente" - -#: ../../enterprise/meta/include/ajax/wizard.ajax.php:58 -msgid "Could not delete agent" -msgstr "No se pudo borrar el agente" - -#: ../../enterprise/meta/include/reset_pass.php:139 -#: ../../enterprise/meta/include/process_reset_pass.php:142 -#, php-format -msgid "%s NEXT GENERATION" -msgstr "%s SIGUIENTE GENERACIƓN" - -#: ../../enterprise/meta/include/functions_autoprovision.php:378 -msgid "Round Robin" -msgstr "Round Robin" - -#: ../../enterprise/meta/include/functions_autoprovision.php:383 -msgid "Less loaded" -msgstr "Menos cargado" - -#: ../../enterprise/meta/include/functions_autoprovision.php:422 -msgid "" -"It uses the Round-robin planning method to distribute, \n" -" in an equitable way and in a rational order, all the new " -"Pandora software agents that reach the Metaconsole.\n" -" The distribution of the agents will be done in a circular way, " -"assigning the corresponding server to each new agent.\n" -" " -msgstr "" -"Utiliza el mĆ©todo de planificaciĆ³n Round-robin para distribuir, \n" -" de forma equitativa y en un orden racional, todos los nuevos " -"agentes de software de Pandora que llegan a la Metaconsola.\n" -" La distribuciĆ³n de los agentes se realizarĆ” de forma circular, " -"asignando el servidor correspondiente a cada nuevo agente.\n" -" " - -#: ../../enterprise/meta/include/functions_autoprovision.php:430 -msgid "" -"The new agents will be dynamically assigned to those servers with less load." -msgstr "" -"Los nuevos agentes se asignarĆ”n dinĆ”micamente a aquellos servidores con menos " -"carga." - -#: ../../enterprise/meta/include/functions_autoprovision.php:435 -msgid "" -"In the customized classification, we will be able to define our own " -"classification rules, \n" -" based on certain parameters retrieved from the information " -"reported by the agent (name of the agent and its IP address).\n" -" " -msgstr "" -"En la clasificaciĆ³n personalizada, podremos definir nuestras propias reglas de " -"clasificaciĆ³n, \n" -" basado en ciertos parĆ”metros recuperados de la informaciĆ³n " -"reportada por el agente (nombre del agente y su direcciĆ³n IP).\n" -" " - -#: ../../enterprise/meta/include/functions_autoprovision.php:529 -msgid "" -"There is no custom entries defined. Click on \"Create custom entry\" to add " -"the first." -msgstr "" -"Ninguna entrada personalizada definida. Haz clic en \"Crear entrada " -"personalizada\" para aƱadir la primera." - -#: ../../enterprise/meta/include/functions_autoprovision.php:534 -msgid "Create custom entry" -msgstr "Crear entrada personalizada" - -#: ../../enterprise/meta/include/functions_autoprovision.php:561 -msgid "Provisioning configuration" -msgstr "ConfiguraciĆ³n de aprovisionamiento" - -#: ../../enterprise/meta/include/functions_autoprovision.php:566 -#: ../../enterprise/meta/advanced/collections.data.php:332 -#: ../../enterprise/godmode/agentes/collections.data.php:425 -#: ../../godmode/setup/os.builder.php:35 -#: ../../godmode/reporting/visual_console_builder.data.php:106 -msgid "Name:" -msgstr "Nombre:" - -#: ../../enterprise/meta/include/functions_autoprovision.php:572 -msgid "Configuration:" -msgstr "ConfiguraciĆ³n:" - -#: ../../enterprise/meta/include/functions_autoprovision.php:610 -msgid "" -"There is no rules configured for this custom entry. Click on Add button to " -"create the first." -msgstr "" -"No hay reglas configuradas en esta entrada personalizada. Haz clic en el botĆ³n " -"AƱadir para crear la primera." - -#: ../../enterprise/meta/include/functions_autoprovision.php:723 -msgid "There was an error when editing the rule." -msgstr "Error al editar la regla" - -#: ../../enterprise/meta/include/functions_autoprovision.php:737 -msgid "Operation:" -msgstr "OperaciĆ³n:" - -#: ../../enterprise/meta/include/functions_autoprovision.php:751 -msgid "Method:" -msgstr "MĆ©todo:" - -#: ../../enterprise/meta/include/functions_autoprovision.php:816 -msgid "Move up" -msgstr "Subir" - -#: ../../enterprise/meta/include/functions_autoprovision.php:824 -msgid "Move down" -msgstr "Bajar" - -#: ../../enterprise/meta/include/functions_relations.php:49 -msgid "Invalid file content" -msgstr "Contenido del archivo no vĆ”lido" - -#: ../../enterprise/meta/include/functions_relations.php:54 -msgid "No relations found" -msgstr "No se han encontrado relaciones" - -#: ../../enterprise/meta/include/functions_relations.php:80 -#: ../../enterprise/meta/include/functions_relations.php:91 -#: ../../enterprise/meta/include/functions_relations.php:102 -#, php-format -msgid "The relation type: %s to %s -> %s was not saved" -msgstr "El tipo de relaciĆ³n: %s a %s -> %s no se ha guardado" - -#: ../../enterprise/meta/include/functions_relations.php:123 -#, php-format -msgid "The relation %s -> %s was not saved" -msgstr "La relaciĆ³n %s -> %s no se ha guardado" - -#: ../../enterprise/meta/include/functions_relations.php:133 -msgid "File imported successfully" -msgstr "El archivo se ha importado con Ć©xito" - -#: ../../enterprise/meta/include/functions_relations.php:136 -msgid "Error inserting relations" -msgstr "Error al insertar relaciones" - -#: ../../enterprise/meta/include/functions_relations.php:165 -msgid "Empty string" -msgstr "Cadena vacĆ­a" - -#: ../../enterprise/meta/include/functions_relations.php:170 -msgid "Empty custom node address" -msgstr "DirecciĆ³n del nodo personalizada vacĆ­a" - -#: ../../enterprise/meta/include/functions_relations.php:208 -#, php-format -msgid "" -"The relation type: %s to %s -> %s was not saved. This relationship already " -"exists in the database" -msgstr "" -"El tipo de relaciĆ³n: %s a %s -> %s no se ha guardado. Esta relaciĆ³n ya existe " -"en la base de datos" - -#: ../../enterprise/meta/include/functions_relations.php:230 -#, php-format -msgid "Error inserting the relation %s -> %s" -msgstr "Error al insertar la relaciĆ³n %s -> %s" - -#: ../../enterprise/meta/include/functions_relations.php:238 -msgid "Relation created successfully" -msgstr "RelaciĆ³n creada con Ć©xito" - -#: ../../enterprise/meta/include/functions_relations.php:263 -msgid "Error deleting the relation" -msgstr "Error al eliminar la relaciĆ³n" - -#: ../../enterprise/meta/include/functions_relations.php:269 -msgid "Relation deleted successfully" -msgstr "RelaciĆ³n eliminada con Ć©xito" - -#: ../../enterprise/meta/include/functions_users_meta.php:186 -#: ../../enterprise/meta/include/functions_users_meta.php:212 -#: ../../godmode/menu.php:130 ../../godmode/users/user_list.php:225 -#: ../../godmode/users/configure_user.php:234 -#: ../../godmode/users/configure_profile.php:66 -#: ../../godmode/users/profile_list.php:74 -msgid "Profile management" -msgstr "Gestionar perfiles" - -#: ../../enterprise/meta/include/functions_users_meta.php:200 -msgid "User synchronization" -msgstr "SincronizaciĆ³n de usuarios" - -#: ../../enterprise/meta/include/functions_users_meta.php:216 -msgid "Group synchronization" -msgstr "SincronizaciĆ³n de grupos" - -#: ../../enterprise/meta/include/functions_ui_meta.php:53 -#, php-format -msgid "%s - the Flexible Monitoring System" -msgstr "%s - Flexible Monitoring System" - -#: ../../enterprise/meta/include/functions_meta.php:49 -msgid "No admin user" -msgstr "No hay usuario administrador" - -#: ../../enterprise/meta/include/functions_meta.php:112 -msgid "Centralized management" -msgstr "GestiĆ³n centralizada" - -#: ../../enterprise/meta/include/functions_meta.php:148 -#: ../../enterprise/meta/advanced/metasetup.setup.php:158 -#: ../../godmode/setup/setup_general.php:98 -msgid "Phantomjs bin directory" -msgstr "Directorio Phantomjs bin" - -#: ../../enterprise/meta/include/functions_meta.php:198 -msgid "Netflow disable custom live view filters" -msgstr "Desactivar filtros personalizados en la vista en vivo de Netflow" - -#: ../../enterprise/meta/include/functions_meta.php:248 -#: ../../enterprise/meta/advanced/metasetup.setup.php:283 -#: ../../enterprise/godmode/setup/setup.php:378 -msgid "Enable update manager" -msgstr "Habilitar gestor de actualizaciones" - -#: ../../enterprise/meta/include/functions_meta.php:262 -msgid "Customizable section" -msgstr "SecciĆ³n personalizable" - -#: ../../enterprise/meta/include/functions_meta.php:283 -msgid "Agent API" -msgstr "API del agente" - -#: ../../enterprise/meta/include/functions_meta.php:303 -#: ../../enterprise/meta/advanced/metasetup.setup.php:324 -#: ../../godmode/setup/setup_general.php:467 -msgid "Enable console log" -msgstr "Habilitar log de consola" - -#: ../../enterprise/meta/include/functions_meta.php:313 -#: ../../enterprise/meta/advanced/metasetup.setup.php:345 -#: ../../godmode/setup/setup_general.php:478 -msgid "Enable audit log" -msgstr "Habilitar auditorĆ­a de logs" - -#: ../../enterprise/meta/include/functions_meta.php:323 -msgid "Policy add max. agents" -msgstr "MĆ”x. de agentes a aƱadir en la polĆ­tica" - -#: ../../enterprise/meta/include/functions_meta.php:332 -msgid "Sync items warn detection" -msgstr "SincronizaciĆ³n de elementos de advertencia de detecciĆ³n" - -#: ../../enterprise/meta/include/functions_meta.php:470 -msgid "IP ElasticSearch" -msgstr "IP ElasticSearch" - -#: ../../enterprise/meta/include/functions_meta.php:480 -msgid "Port ElasticSearch" -msgstr "Puerto ElasticSearch" - -#: ../../enterprise/meta/include/functions_meta.php:592 -msgid "2FA_all_users" -msgstr "2FA_all_users" - -#: ../../enterprise/meta/include/functions_meta.php:715 -#: ../../enterprise/meta/include/functions_meta.php:727 -#: ../../enterprise/godmode/setup/setup_auth.php:337 -#: ../../enterprise/godmode/setup/setup_auth.php:385 -#: ../../enterprise/godmode/setup/setup_auth.php:1180 -msgid "Auto enable node access" -msgstr "Auto-habilitar acceso al nodo" - -#: ../../enterprise/meta/include/functions_meta.php:858 -msgid "SAML profile parameters" -msgstr "ParĆ”metros de perfil SAML" - -#: ../../enterprise/meta/include/functions_meta.php:1029 -#: ../../godmode/setup/setup_auth.php:267 -msgid "Secondary start TLS" -msgstr "TLS de inicio secundario" - -#: ../../enterprise/meta/include/functions_meta.php:1135 -#, php-format -msgid "%s host" -msgstr "Host %s" - -#: ../../enterprise/meta/include/functions_meta.php:1189 -msgid "Babel Enterprise host" -msgstr "Servidor de Babel Enterprise" - -#: ../../enterprise/meta/include/functions_meta.php:1318 -msgid "Graph color (min)" -msgstr "Color del grĆ”fico (mĆ­n.)" - -#: ../../enterprise/meta/include/functions_meta.php:1328 -msgid "Graph color (avg)" -msgstr "Color del grĆ”fico (med.)" - -#: ../../enterprise/meta/include/functions_meta.php:1338 -msgid "Graph color (max)" -msgstr "Color del grĆ”fico (mĆ”x.)" - -#: ../../enterprise/meta/include/functions_meta.php:1362 -#: ../../enterprise/meta/advanced/metasetup.visual.php:252 -#: ../../godmode/setup/setup_visuals.php:869 -msgid "Number of elements in Custom Graph" -msgstr "NĆŗmero de elementos en grĆ”fica personalizada" - -#: ../../enterprise/meta/include/functions_meta.php:1403 -#: ../../enterprise/meta/advanced/metasetup.visual.php:1036 -#: ../../godmode/setup/setup_visuals.php:1135 -msgid "Interval description" -msgstr "DescripciĆ³n del intervalo" - -#: ../../enterprise/meta/include/functions_meta.php:1488 -msgid "full scale charts" -msgstr "GrĆ”ficas a escala completa" - -#: ../../enterprise/meta/include/functions_meta.php:1498 -msgid "type mode type charts" -msgstr "tipo de grĆ”fica" - -#: ../../enterprise/meta/include/functions_meta.php:1508 -#: ../../enterprise/meta/advanced/metasetup.visual.php:969 -#: ../../godmode/setup/setup_visuals.php:1126 -msgid "Graph image height for HTML reports" -msgstr "Altura de la imagen de la grĆ”fica en informes HTML" - -#: ../../enterprise/meta/include/functions_meta.php:1518 -msgid "type mode zoom charts" -msgstr "zoom de grĆ”fica" - -#: ../../enterprise/meta/include/functions_meta.php:1528 -#: ../../enterprise/meta/advanced/metasetup.visual.php:826 -#: ../../godmode/setup/setup_visuals.php:563 -msgid "Visual effects and animation" -msgstr "Efectos visuales y animaciĆ³n" - -#: ../../enterprise/meta/include/functions_meta.php:1538 -msgid "Type of charts" -msgstr "Tipo de grĆ”ficos" - -#: ../../enterprise/meta/include/functions_meta.php:1548 -#: ../../enterprise/meta/advanced/metasetup.visual.php:367 -msgid "Metaconsole elements" -msgstr "Elementos de la Metaconsola" - -#: ../../enterprise/meta/include/functions_meta.php:1558 -#: ../../enterprise/meta/advanced/metasetup.visual.php:454 -#: ../../godmode/setup/setup_visuals.php:1247 -msgid "Show only the group name" -msgstr "Mostrar solo el nombre del grupo" - -#: ../../enterprise/meta/include/functions_meta.php:1588 -msgid "Custom logo (white background)" -msgstr "Logo personalizado (fondo blanco)" - -#: ../../enterprise/meta/include/functions_meta.php:1688 -#: ../../enterprise/meta/advanced/metasetup.visual.php:775 -#: ../../godmode/setup/setup_visuals.php:495 -msgid "Docs URL (login)" -msgstr "URL de documentos (inicio de sesiĆ³n)" - -#: ../../enterprise/meta/include/functions_meta.php:1698 -#: ../../enterprise/meta/advanced/metasetup.visual.php:785 -#: ../../godmode/setup/setup_visuals.php:501 -msgid "Support URL (login)" -msgstr "URL soporte (inicio de sesiĆ³n)" - -#: ../../enterprise/meta/include/functions_meta.php:1708 -msgid "Custom background login" -msgstr "Fondo personalizado del inicio de sesiĆ³n" - -#: ../../enterprise/meta/include/functions_meta.php:1718 -msgid "Custom product name" -msgstr "Nombre de producto personalizado" - -#: ../../enterprise/meta/include/functions_meta.php:1728 -msgid "Custom copyright notice" -msgstr "Aviso de copyright personalizado" - -#: ../../enterprise/meta/include/functions_meta.php:1929 -#: ../../enterprise/meta/advanced/metasetup.performance.php:83 -msgid "Active events history" -msgstr "HistĆ³rico de eventos activos" - -#: ../../enterprise/meta/include/functions_meta.php:1934 -msgid "Realtime stats" -msgstr "EstadĆ­sticas en tiempo real" - -#: ../../enterprise/meta/include/functions_meta.php:1974 -msgid "Default block size migration agents" -msgstr "TamaƱo del bloque de migraciĆ³n de agentes por defecto" - -#: ../../enterprise/meta/include/functions_meta.php:1986 -msgid "Default block size execution event" -msgstr "Evento de ejecuciĆ³n en bloque por defecto" - -#: ../../enterprise/meta/include/functions_meta.php:1997 -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:2043 -msgid "Node address default" -msgstr "DirecciĆ³n del nodo por defecto" - -#: ../../enterprise/meta/include/functions_wizard_meta.php:364 -msgid "Add selected modules to agent" -msgstr "AƱadir los mĆ³dulos seleccionados al agente" - -#: ../../enterprise/meta/include/functions_wizard_meta.php:402 -msgid "Undo changes" -msgstr "Deshacer los cambios" - -#: ../../enterprise/meta/include/functions_wizard_meta.php:496 -#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:754 -#: ../../godmode/massive/massive_edit_modules.php:818 -#: ../../godmode/agentes/module_manager_editor_wmi.php:60 -#: ../../godmode/agentes/module_manager_editor_network.php:95 -msgid "Force primary key" -msgstr "Forzar clave primaria" - -#: ../../enterprise/meta/include/functions_wizard_meta.php:593 -msgid "Latency" -msgstr "Latencia" - -#: ../../enterprise/meta/include/functions_wizard_meta.php:594 -msgid "Response" -msgstr "Respuesta" - -#: ../../enterprise/meta/include/functions_wizard_meta.php:596 -#: ../../godmode/agentes/module_manager_editor_web.php:199 -msgid "Check type" -msgstr "Comprueba el tipo" - -#: ../../enterprise/meta/include/functions_wizard_meta.php:649 -msgid "String to check" -msgstr "Cadena para comprobar" - -#: ../../enterprise/meta/include/functions_wizard_meta.php:655 -msgid "Add check" -msgstr "AƱadir comprobaciĆ³n" - -#: ../../enterprise/meta/include/functions_wizard_meta.php:664 -msgid "Delete check" -msgstr "Eliminar comprobaciĆ³n" - -#: ../../enterprise/meta/include/functions_wizard_meta.php:677 -#: ../../enterprise/godmode/modules/configure_local_component.php:494 -#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:180 -#: ../../godmode/agentes/module_manager_editor_web.php:164 -msgid "Load basic" -msgstr "cargar bĆ”sicos" - -#: ../../enterprise/meta/include/functions_wizard_meta.php:683 -#: ../../godmode/agentes/module_manager_editor_web.php:170 -msgid "Load a basic structure on Web Checks" -msgstr "Cargar una estructura bĆ”sica en las comprobaciones web" - -#: ../../enterprise/meta/include/functions_wizard_meta.php:691 -#: ../../godmode/agentes/module_manager_editor_web.php:178 -msgid "Check the correct structure of the WebCheck" -msgstr "Cargar la estructura correcta de las comprobaciones web" - -#: ../../enterprise/meta/include/functions_wizard_meta.php:698 -#: ../../godmode/agentes/module_manager_editor_web.php:253 -msgid "First line must be \"task_begin\"" -msgstr "La primera lĆ­nea tiene que ser \"task_begin\"." - -#: ../../enterprise/meta/include/functions_wizard_meta.php:699 -#: ../../godmode/agentes/module_manager_editor_web.php:254 -msgid "Webchecks configuration is empty" -msgstr "La configuraciĆ³n de comprobaciones web estĆ” vacĆ­a." - -#: ../../enterprise/meta/include/functions_wizard_meta.php:700 -#: ../../enterprise/meta/include/functions_wizard_meta.php:701 -#: ../../godmode/agentes/module_manager_editor_web.php:255 -#: ../../godmode/agentes/module_manager_editor_web.php:256 -msgid "Last line must be \"task_end\"" -msgstr "La Ćŗltima lĆ­nea tiene que ser \"task_end\"." - -#: ../../enterprise/meta/include/functions_wizard_meta.php:702 -#: ../../enterprise/godmode/modules/configure_local_component.php:513 -#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:203 -#: ../../godmode/agentes/module_manager_editor_web.php:257 -msgid "There is a line with a unknown token 'token_fail'." -msgstr "Hay una lĆ­nea con un token desconocido \"token_fail\"." - -#: ../../enterprise/meta/include/functions_wizard_meta.php:703 -#: ../../godmode/agentes/module_manager_editor_web.php:259 -msgid "Web checks are built correctly" -msgstr "Las comprobaciones web se han efectuado correctamente." - -#: ../../enterprise/meta/include/functions_wizard_meta.php:959 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1050 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1262 -msgid "Various" -msgstr "Varios" - -#: ../../enterprise/meta/include/functions_wizard_meta.php:985 -#: ../../enterprise/meta/include/functions_wizard_meta.php:994 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1070 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1079 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1273 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1282 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1510 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1519 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1595 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1604 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1715 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1724 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1740 -#: ../../enterprise/godmode/modules/configure_local_component.php:338 -#: ../../enterprise/godmode/modules/configure_local_component.php:381 -#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:547 -#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:638 -#: ../../godmode/modules/manage_network_components_form_wizard.php:396 -#: ../../godmode/modules/manage_network_components_form_wizard.php:438 -#: ../../godmode/modules/manage_network_components_form_common.php:192 -#: ../../godmode/modules/manage_network_components_form_common.php:233 -#: ../../godmode/massive/massive_edit_modules.php:610 -#: ../../godmode/massive/massive_edit_modules.php:701 -#: ../../godmode/agentes/module_manager_editor_common.php:459 -#: ../../godmode/agentes/module_manager_editor_common.php:520 -msgid "Inverse interval" -msgstr "Intervalo inverso" - -#: ../../enterprise/meta/include/functions_wizard_meta.php:1090 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1622 -#: ../../godmode/agentes/module_manager_editor_web.php:224 -msgid "Proxy URL" -msgstr "Proxy URL" - -#: ../../enterprise/meta/include/functions_wizard_meta.php:1095 -msgid "Web configuration" -msgstr "ConfiguraciĆ³n web" - -#: ../../enterprise/meta/include/functions_wizard_meta.php:1289 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1302 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1731 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1738 -msgid "Str: " -msgstr "Cadena: " - -#: ../../enterprise/meta/include/functions_wizard_meta.php:1298 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1311 -msgid " Inverse interval " -msgstr " Intervalo inverso " - -#: ../../enterprise/meta/include/functions_wizard_meta.php:1371 -msgid "Alerts in module" -msgstr "Alertas en el mĆ³dulo" - -#: ../../enterprise/meta/include/functions_wizard_meta.php:1618 -msgid "Checks" -msgstr "Comprobaciones" - -#: ../../enterprise/meta/include/functions_wizard_meta.php:1829 -msgid "Deleted modules" -msgstr "MĆ³dulos eliminados" - -#: ../../enterprise/meta/include/functions_wizard_meta.php:2017 -#: ../../enterprise/meta/include/functions_wizard_meta.php:2117 -#: ../../enterprise/meta/include/functions_wizard_meta.php:2672 -#: ../../enterprise/meta/include/functions_wizard_meta.php:2791 -#: ../../enterprise/meta/include/functions_wizard_meta.php:2882 -#: ../../enterprise/meta/include/functions_wizard_meta.php:3077 -msgid "Another module already exists with the same name" -msgstr "Ya existe otro mĆ³dulo con el mismo nombre." - -#: ../../enterprise/meta/include/functions_wizard_meta.php:2029 -#: ../../enterprise/meta/include/functions_wizard_meta.php:2124 -#: ../../enterprise/meta/include/functions_wizard_meta.php:2684 -#, php-format -msgid "Error adding module %s" -msgstr "Error al aƱadir el mĆ³dulo %s" - -#: ../../enterprise/meta/include/functions_wizard_meta.php:2038 -#: ../../enterprise/meta/include/functions_wizard_meta.php:2133 -msgid "There was an error creating the alerts, the operation has been cancelled" -msgstr "Error al crear las alertas; operaciĆ³n cancelada" - -#: ../../enterprise/meta/include/functions_wizard_meta.php:2067 -#: ../../enterprise/meta/include/functions_wizard_meta.php:2162 -#: ../../enterprise/godmode/policies/policy_modules.php:919 -msgid "Successfully added module." -msgstr "MĆ³dulo aƱadido correctamente" - -#: ../../enterprise/meta/include/functions_wizard_meta.php:2222 -#, php-format -msgid "Could not create agent %s" -msgstr "No se pudieron crear agentes %s" - -#: ../../enterprise/meta/include/functions_wizard_meta.php:2235 -msgid "Agent successfully added" -msgstr "Agentes aƱadidos correctamente" - -#: ../../enterprise/meta/include/functions_wizard_meta.php:2256 -#: ../../enterprise/meta/include/functions_wizard_meta.php:2374 -#, php-format -msgid "%s Modules created" -msgstr "%s mĆ³dulos creados" - -#: ../../enterprise/meta/include/functions_wizard_meta.php:2332 -#, php-format -msgid "Could not update agent %s" -msgstr "No se pudo actualizar el agente %s" - -#: ../../enterprise/meta/include/functions_wizard_meta.php:2380 -#, php-format -msgid "%s Modules deleted" -msgstr "%s mĆ³dulos eliminados" - -#: ../../enterprise/meta/include/functions_wizard_meta.php:2696 -msgid "" -"There was an error creating the alerts, the operation has been cancelled ." -msgstr "Error al crear las alertas; operaciĆ³n cancelada" - -#: ../../enterprise/meta/include/functions_wizard_meta.php:2726 -msgid "Module successfully added." -msgstr "MĆ³dulo aƱadido correctamente" - -#: ../../enterprise/meta/include/functions_wizard_meta.php:2798 -#: ../../enterprise/meta/include/functions_wizard_meta.php:2889 -#: ../../enterprise/meta/include/functions_wizard_meta.php:3084 -#, php-format -msgid "Error updating module %s" -msgstr "Error al actualizar el mĆ³dulo %s" - -#: ../../enterprise/meta/include/functions_wizard_meta.php:2820 -#: ../../enterprise/meta/include/functions_wizard_meta.php:2911 -#: ../../enterprise/meta/include/functions_wizard_meta.php:3106 -msgid "There was an error updating the alerts, the operation has been cancelled" -msgstr "Error al actualizar las alertas, operaciĆ³n cancelada" - -#: ../../enterprise/meta/include/functions_wizard_meta.php:2841 -#: ../../enterprise/meta/include/functions_wizard_meta.php:2932 -#: ../../enterprise/meta/include/functions_wizard_meta.php:3127 -msgid "Successfully updated module." -msgstr "MĆ³dulo actualizado correctamente" - -#: ../../enterprise/meta/include/functions_wizard_meta.php:3507 -msgid "Manage agent modules" -msgstr "Gestionar mĆ³dulos de agentes" - -#: ../../enterprise/meta/include/functions_alerts_meta.php:137 -#: ../../enterprise/meta/include/functions_alerts_meta.php:168 -#: ../../godmode/menu.php:237 -msgid "Commands" -msgstr "Comandos" - -#: ../../enterprise/meta/include/functions_alerts_meta.php:141 -msgid "Calendar" -msgstr "Calendario" - -#: ../../enterprise/meta/include/functions_agents_meta.php:478 -#: ../../enterprise/meta/include/functions_agents_meta.php:542 -#: ../../enterprise/meta/include/functions_agents_meta.php:577 -msgid "Agents movement" -msgstr "Movimiento de agentes" - -#: ../../enterprise/meta/include/functions_agents_meta.php:489 -#: ../../enterprise/meta/include/functions_agents_meta.php:557 -msgid "Provisioning management" -msgstr "GestiĆ³n de aprovisionamiento" - -#: ../../enterprise/meta/include/functions_agents_meta.php:500 -#: ../../enterprise/meta/include/functions_agents_meta.php:567 -#: ../../enterprise/godmode/agentes/agent_autoconfiguration.php:99 -#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:266 -#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:387 -#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:645 -msgid "Agent autoconfiguration" -msgstr "AutoconfiguraciĆ³n de agente" - -#: ../../enterprise/meta/include/functions_agents_meta.php:511 -#: ../../enterprise/meta/include/functions_agents_meta.php:547 -#: ../../enterprise/meta/include/functions_agents_meta.php:552 -msgid "Group management" -msgstr "Gestionar grupos" - -#: ../../enterprise/meta/include/functions_agents_meta.php:522 -msgid "Tree group" -msgstr "Ɓrbol de grupos" - -#: ../../enterprise/meta/include/functions_agents_meta.php:562 -msgid "Provisioning rules management" -msgstr "GestiĆ³n de reglas de aprovisionamiento" - -#: ../../enterprise/meta/include/functions_agents_meta.php:572 -msgid "Colecctions" -msgstr "Colecciones" - -#: ../../enterprise/meta/include/functions_agents_meta.php:605 -msgid "Agents Management" -msgstr "GestiĆ³n de agentes" - -#: ../../enterprise/meta/include/functions_groups_meta.php:114 -#, php-format -msgid "Error Duplicate name (%s) " -msgstr "Error al duplicar nombre (%s) " - -#: ../../enterprise/meta/include/functions_groups_meta.php:132 -#, php-format -msgid "(Error Duplicate ID (%d) ) " -msgstr "(Error ID Duplicado (%d) ) " - -#: ../../enterprise/meta/include/functions_groups_meta.php:153 -msgid "Error Duplicate name" -msgstr "Error al duplicar nombre" - -#: ../../enterprise/meta/include/functions_groups_meta.php:174 -#: ../../enterprise/meta/advanced/policymanager.sync.php:247 -#: ../../godmode/groups/group_list.php:667 -#, php-format -msgid "Error connecting to %s" -msgstr "Error al conectar con %s" - -#: ../../enterprise/meta/include/functions_components_meta.php:80 -#: ../../enterprise/meta/include/functions_components_meta.php:135 -#: ../../godmode/menu.php:80 -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:99 ../../godmode/menu.php:153 -msgid "Local components" -msgstr "Componentes locales" - -#: ../../enterprise/meta/include/functions_components_meta.php:96 -#: ../../enterprise/meta/include/functions_components_meta.php:143 -msgid "Network components" -msgstr "Componentes de red" - -#: ../../enterprise/meta/include/functions_components_meta.php:104 -#: ../../enterprise/meta/include/functions_components_meta.php:147 -msgid "Plugin management" -msgstr "GestiĆ³n de plugins" - -#: ../../enterprise/meta/include/functions_components_meta.php:124 -#: ../../enterprise/meta/include/functions_components_meta.php:164 -#: ../../godmode/servers/plugin.php:295 -#: ../../godmode/servers/plugin_registration.php:99 -msgid "Plugin registration" -msgstr "Registro de plugins" - -#: ../../enterprise/meta/include/functions_components_meta.php:153 -msgid "Create plugin" -msgstr "Crear plugin" - -#: ../../enterprise/meta/include/functions_components_meta.php:155 -msgid "Edit plugin" -msgstr "Editar plugin" - -#: ../../enterprise/meta/monitoring/custom_fields_csv.php:102 -#: ../../godmode/massive/massive_edit_modules.php:468 -msgid "Agent Status" -msgstr "Estado de agente" - -#: ../../enterprise/meta/monitoring/custom_fields_csv.php:136 -msgid "No init" -msgstr "No iniciados" - -#: ../../enterprise/meta/monitoring/group_view.php:55 -msgid "Group View" -msgstr "Vista de grupo" - -#: ../../enterprise/meta/monitoring/group_view.php:151 -msgid "Summary by status" -msgstr "Resumen por estados" - -#: ../../enterprise/meta/monitoring/group_view.php:160 -#: ../../enterprise/meta/monitoring/group_view.php:172 -msgid "% Agents not init" -msgstr "% agentes no iniciados" - -#: ../../enterprise/meta/monitoring/group_view.php:163 -msgid "% Agents Warning" -msgstr "% Agentes en advertencia" - -#: ../../enterprise/meta/monitoring/group_view.php:166 -msgid "% Agents OK" -msgstr "% Agentes OK" - -#: ../../enterprise/meta/monitoring/group_view.php:169 -msgid "% Agents Unknown" -msgstr "% monitores en estado desconocido" - -#: ../../enterprise/meta/monitoring/group_view.php:177 -msgid "% Monitors Critical" -msgstr "% monitores en estado crĆ­tico" - -#: ../../enterprise/meta/monitoring/group_view.php:180 -msgid "% Monitors Warning" -msgstr "% monitores en estado de advertencia" - -#: ../../enterprise/meta/monitoring/group_view.php:183 -msgid "% Monitors OK" -msgstr "% monitores en estado OK" - -#: ../../enterprise/meta/monitoring/group_view.php:186 -msgid "% Monitors Unknown" -msgstr "% mĆ³dulos en estado desconocido" - -#: ../../enterprise/meta/monitoring/group_view.php:189 -msgid "% Monitors Not init" -msgstr "% mĆ³dulos no iniciados" - -#: ../../enterprise/meta/monitoring/group_view.php:217 -#: ../../enterprise/meta/monitoring/group_view.php:223 -msgid "This data doesn't show in realtime" -msgstr "Estos datos no se muestran en tiempo real" - -#: ../../enterprise/meta/monitoring/group_view.php:234 -msgid "Group or Tag" -msgstr "Grupo o etiqueta" - -#: ../../enterprise/meta/monitoring/custom_fields_view.php:54 -msgid "Custom fields View" -msgstr "Vista de campos personalizados" - -#: ../../enterprise/meta/monitoring/custom_fields_view.php:66 -msgid "Custom Fields View" -msgstr "Vista de campos personalizados" - -#: ../../enterprise/meta/monitoring/custom_fields_view.php:187 -msgid "Status agents" -msgstr "Agentes de estado" - -#: ../../enterprise/meta/monitoring/custom_fields_view.php:203 -msgid "Status module" -msgstr "MĆ³dulo de estado" - -#: ../../enterprise/meta/monitoring/custom_fields_view.php:266 -msgid "Custom Fields Data" -msgstr "Datos de campos personalizados" - -#: ../../enterprise/meta/monitoring/custom_fields_view.php:672 -msgid "Total counters" -msgstr "Contadores totales" - -#: ../../enterprise/meta/monitoring/custom_fields_view.php:675 -msgid "Total Agents" -msgstr "Agentes totales" - -#: ../../enterprise/meta/monitoring/custom_fields_view.php:684 -msgid "Total Modules" -msgstr "MĆ³dulos totales" - -#: ../../enterprise/meta/monitoring/custom_fields_view.php:705 -msgid "I.P" -msgstr "IP" - -#: ../../enterprise/meta/monitoring/custom_fields_view.php:727 -msgid "There are no custom search defined." -msgstr "No hay bĆŗsquedas personalizadas definidas." - -#: ../../enterprise/meta/monitoring/tactical.php:251 -msgid "Report of state" -msgstr "Informe de estado" - -#: ../../enterprise/meta/monitoring/tactical.php:279 -msgid "Report of events" -msgstr "Informe de eventos" - -#: ../../enterprise/meta/monitoring/tactical.php:284 -msgid "Info of state in events" -msgstr "InformaciĆ³n de estado en eventos" - -#: ../../enterprise/meta/monitoring/tactical.php:302 -msgid "More events" -msgstr "MĆ”s eventos" - -#: ../../enterprise/meta/monitoring/wizard/wizard.php:50 -#: ../../enterprise/meta/advanced/massive_operations.php:54 -#, php-format -msgid "" -"You should centralise management in order to use Wizard section. Please go to " -"%s" -msgstr "" -"Debe centralizar la administraciĆ³n para utilizar la secciĆ³n Asistente. Por " -"favor, vaya a %s" - -#: ../../enterprise/meta/monitoring/wizard/wizard.php:134 -msgid "The alert you are trying to add is already in the list of alerts" -msgstr "" -"La alerta que estĆ”s intentando aƱadir ya se encuentra en la lista de alertas." - -#: ../../enterprise/meta/monitoring/wizard/wizard.php:144 -msgid "" -"Are you sure? If the agent is on a policy, it will be removed from the policy." -msgstr "" -"ĀæEstĆ” seguro? Si el agente esta incluido en una polĆ­tica, se eliminarĆ” de " -"dicha polĆ­tica." - -#: ../../enterprise/meta/monitoring/wizard/wizard.php:145 -#: ../../enterprise/meta/monitoring/wizard/wizard.create_module.php:384 -#: ../../godmode/reporting/graph_builder.graph_editor.php:367 -msgid "Please, select a module" -msgstr "Por favor, selecciona un mĆ³dulo." - -#: ../../enterprise/meta/monitoring/wizard/wizard.php:146 -msgid "Please, select an alert" -msgstr "Por favor, selecciona una alerta." - -#: ../../enterprise/meta/monitoring/wizard/wizard.php:147 -msgid "Please, select an agent" -msgstr "Por favor, selecciona un agente." - -#: ../../enterprise/meta/monitoring/wizard/wizard.php:153 -msgid "No agent name specified" -msgstr "No se especificĆ³ el nombre del agente." - -#: ../../enterprise/meta/monitoring/wizard/wizard.php:154 -msgid "Another agent already exists with the same name" -msgstr "Ya hay otro agente con ese nombre." - -#: ../../enterprise/meta/monitoring/wizard/wizard.php:155 -#: ../../enterprise/meta/monitoring/wizard/wizard.php:213 -#: ../../enterprise/meta/monitoring/wizard/wizard.module.web.php:147 -#: ../../enterprise/meta/monitoring/wizard/wizard.module.local.php:156 -#: ../../enterprise/meta/monitoring/wizard/wizard.update_agent.php:46 -#: ../../enterprise/meta/monitoring/wizard/wizard.create_module.php:131 -#: ../../enterprise/meta/monitoring/wizard/wizard.update_module.php:92 -#: ../../enterprise/meta/monitoring/wizard/wizard.module.network.php:195 -#, php-format -msgid "Cannot connect to %s instance." -msgstr "No se ha podido conectar con la instancia de %s." - -#: ../../enterprise/meta/monitoring/wizard/wizard.php:156 -#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:430 -#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:433 -#: ../../godmode/agentes/module_manager_editor_common.php:627 -#: ../../godmode/agentes/module_manager_editor_common.php:629 -#, php-format -msgid "Agent interval x %s" -msgstr "Intervalo del agente x %s" - -#: ../../enterprise/meta/monitoring/wizard/wizard.module.web.php:101 -#: ../../enterprise/meta/monitoring/wizard/wizard.module.local.php:108 -#: ../../enterprise/meta/monitoring/wizard/wizard.module.network.php:120 -msgid "Advanced configuration" -msgstr "ConfiguraciĆ³n avanzada" - -#: ../../enterprise/meta/monitoring/wizard/wizard.module.web.php:117 -#: ../../enterprise/meta/monitoring/wizard/wizard.module.local.php:126 -#: ../../enterprise/meta/monitoring/wizard/wizard.update_module.php:39 -#: ../../enterprise/meta/monitoring/wizard/wizard.module.network.php:142 -#: ../../enterprise/godmode/policies/policy_modules.php:380 -msgid "Edit module" -msgstr "Editar mĆ³dulo" - -#: ../../enterprise/meta/monitoring/wizard/wizard.module.web.php:231 -msgid "Please, set a name" -msgstr "Por favor, introduce un nombre." - -#: ../../enterprise/meta/monitoring/wizard/wizard.module.web.php:238 -#: ../../enterprise/meta/monitoring/wizard/wizard.module.local.php:229 -#: ../../enterprise/meta/monitoring/wizard/wizard.module.network.php:281 -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.module.web.php:252 -msgid "Please, set an interval" -msgstr "Por favor, introduce un intervalo." - -#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:237 -#: ../../godmode/menu.php:71 ../../godmode/agentes/configurar_agente.php:819 -#: ../../godmode/agentes/configurar_agente.php:841 -#: ../../godmode/agentes/modificar_agente.php:108 -msgid "Manage agents" -msgstr "Gestionar agentes" - -#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:286 -msgid "Select the agent to be edited or deleted" -msgstr "Selecciona el agente que quieras editar o eliminar" - -#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:295 -#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:391 -#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:461 -#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:730 -#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:812 -#: ../../mobile/operation/agent.php:148 ../../mobile/operation/modules.php:241 -#: ../../mobile/operation/visualmaps.php:189 -#: ../../mobile/operation/visualmap.php:255 -#: ../../mobile/operation/tactical.php:102 ../../mobile/operation/alerts.php:199 -#: ../../mobile/operation/events.php:614 -#: ../../mobile/operation/module_graph.php:364 -#: ../../mobile/operation/module_graph.php:377 -#: ../../mobile/operation/agents.php:209 ../../mobile/operation/groups.php:82 -#: ../../godmode/snmpconsole/snmp_alert.php:1138 -#: ../../godmode/alerts/configure_alert_action.php:395 -#: ../../godmode/groups/configure_group.php:272 -msgid "Back" -msgstr "AtrĆ”s" - -#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:335 -msgid "Manage modules" -msgstr "Gestionar mĆ³dulos" - -#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:381 -msgid "Select the agent where the module will be created" -msgstr "Selecciona el agente donde quieres crear el mĆ³dulo" - -#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:394 -msgid "Create Module" -msgstr "Crear mĆ³dulo" - -#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:451 -msgid "Select the module to be edited or deleted" -msgstr "Selecciona el mĆ³dulo para editarlo o borrarlo" - -#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:506 -#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:546 -msgid "Error creating alert" -msgstr "Error al crear una alerta" - -#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:510 -msgid "Alert could not be created" -msgstr "No se pudo crear la alerta" - -#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:530 -msgid "Perform create alert" -msgstr "Realizar crear alerta" - -#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:534 -msgid "Alert created correctly" -msgstr "Alerta creada correctamente" - -#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:550 -msgid "Alert template must be setted" -msgstr "La plantilla de alerta debe estar configurada" - -#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:589 -#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:622 -msgid "Error updating alert" -msgstr "Alerta de actualizaciĆ³n de error" - -#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:593 -msgid "Something gone wrong with alert update" -msgstr "Algo saliĆ³ mal con la actualizaciĆ³n de alertas" - -#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:604 -msgid "Perform update alert" -msgstr "Realizar alerta de actualizaciĆ³n" - -#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:608 -msgid "Alert updated correctly" -msgstr "Alerta actualizada correctamente" - -#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:626 -msgid "Template must be set." -msgstr "Se debe establecer la plantilla." - -#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:651 -#: ../../enterprise/meta/monitoring/wizard/wizard.manage_alert.php:104 -#: ../../godmode/snmpconsole/snmp_alert.php:97 -msgid "Create alert" -msgstr "Crear alerta" - -#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:656 -#: ../../godmode/alerts/alert_list.php:494 -#: ../../godmode/alerts/alert_list.php:496 -#: ../../godmode/users/configure_profile.php:291 -msgid "Manage alerts" -msgstr "Gestionar alertas" - -#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:719 -msgid "Select the module where the alert will be created" -msgstr "Selecciona el mĆ³dulo donde se crearĆ” la alerta" - -#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:801 -msgid "Select the alert to be edited or deleted" -msgstr "Selecciona la alerta que quieres editar o eliminar" - -#: ../../enterprise/meta/monitoring/wizard/wizard.create_module.php:148 -#: ../../godmode/modules/manage_network_components_form_wizard.php:336 -#: ../../godmode/massive/massive_delete_modules.php:323 -#: ../../godmode/massive/massive_edit_modules.php:309 -msgid "Module type" -msgstr "Tipo mĆ³dulo" - -#: ../../enterprise/meta/monitoring/wizard/wizard.create_module.php:148 -msgid "Web check" -msgstr "ComprobaciĆ³n web" - -#: ../../enterprise/meta/monitoring/wizard/wizard.create_module.php:245 -msgid "Module description" -msgstr "DescripciĆ³n del mĆ³dulo" - -#: ../../enterprise/meta/monitoring/wizard/wizard.create_module.php:267 -msgid "Step by step wizard" -msgstr "Wizard paso a paso" - -#: ../../enterprise/meta/monitoring/wizard/wizard.create_module.php:275 -#: ../../enterprise/meta/monitoring/wizard/wizard.create_module.php:280 -msgid "Click Create to continue" -msgstr "Haz clic en Crear para continuar" - -#: ../../enterprise/meta/monitoring/wizard/wizard.manage_alert.php:73 -#: ../../enterprise/godmode/alerts/alert_inventory_list.php:337 -msgid "Edit alert" -msgstr "Editar alerta" - -#: ../../enterprise/meta/monitoring/wizard/wizard.manage_alert.php:248 -msgid "Create new template" -msgstr "Crear nueva plantilla" - -#: ../../enterprise/meta/monitoring/wizard/wizard.manage_alert.php:280 -msgid "Create new action" -msgstr "Crear nueva acciĆ³n" - -#: ../../enterprise/meta/monitoring/wizard/wizard.agent.php:80 -msgid "Edit agent" -msgstr "Editar agente" - -#: ../../enterprise/meta/monitoring/wizard/wizard.agent.php:198 -#: ../../enterprise/meta/monitoring/wizard/wizard.module.network.php:280 -msgid "Please, set a valid IP/Name address" -msgstr "Por favor, introduce una IP/Nombre de direcciĆ³n vĆ”lido." - -#: ../../enterprise/meta/monitoring/wizard/wizard.agent.php:209 -msgid "Please, select a group first" -msgstr "Por favor, seleccione primero un grupo" - -#: ../../enterprise/meta/advanced/agents_setup.autoprovision.php:72 -#, php-format -msgid "Provisioning custom data %s successfully deleted." -msgstr "" -"Datos personalizados de aprovisionamiento %s borrados correctamente." - -#: ../../enterprise/meta/advanced/agents_setup.autoprovision.php:79 -#, php-format -msgid "Cannot delete custom data %s." -msgstr "Error al borrar los datos personalizados %s" - -#: ../../enterprise/meta/advanced/agents_setup.autoprovision.php:92 -msgid "There was an error when moving the custom provisioning data." -msgstr "Error al mover los datos de aprovisionamiento personalizado" - -#: ../../enterprise/meta/advanced/metasetup.auth.php:27 -msgid "" -"Be aware that group synchronization can change the group configuration of the " -"node" -msgstr "" -"Tenga en cuenta que la sincronizaciĆ³n de grupos puede cambiar la configuraciĆ³n " -"de grupo del nodo" - -#: ../../enterprise/meta/advanced/metasetup.auth.php:47 -#: ../../enterprise/meta/advanced/metasetup.relations.php:96 -#: ../../enterprise/meta/advanced/metasetup.performance.php:47 -#: ../../enterprise/meta/advanced/metasetup.setup.php:79 -#: ../../enterprise/meta/advanced/metasetup.password.php:46 -#: ../../enterprise/meta/advanced/metasetup.log.php:41 -#: ../../enterprise/meta/advanced/metasetup.visual.php:51 -#, php-format -msgid "Could not be update: Error in %s" -msgstr "No se puede actualizar: error en %s" - -#: ../../enterprise/meta/advanced/metasetup.auth.php:54 -#: ../../enterprise/meta/advanced/metasetup.relations.php:103 -#: ../../enterprise/meta/advanced/metasetup.performance.php:54 -#: ../../enterprise/meta/advanced/metasetup.setup.php:86 -#: ../../enterprise/meta/advanced/metasetup.consoles.php:219 -#: ../../enterprise/meta/advanced/metasetup.password.php:53 -#: ../../enterprise/meta/advanced/metasetup.log.php:48 -#: ../../enterprise/meta/advanced/metasetup.visual.php:58 -#: ../../enterprise/godmode/setup/setup_metaconsole.php:85 -msgid "Successfully update" -msgstr "Actualizado correctamente" - -#: ../../enterprise/meta/advanced/policymanager.sync.php:255 -#, php-format -msgid "Error creating %s policies" -msgstr "Error al crear las polĆ­ticas %s" - -#: ../../enterprise/meta/advanced/policymanager.sync.php:259 -#, php-format -msgid "Created %s policies" -msgstr "%s polĆ­ticas creadas" - -#: ../../enterprise/meta/advanced/policymanager.sync.php:264 -#, php-format -msgid "Error creating/updating %s/%s policy modules" -msgstr "Error al crear/actualizar %s/%s mĆ³dulos de polĆ­ticas" - -#: ../../enterprise/meta/advanced/policymanager.sync.php:268 -#, php-format -msgid "Created/Updated %s/%s policy modules" -msgstr "Creados/actualizados %s/%s mĆ³dulos de polĆ­ticas" - -#: ../../enterprise/meta/advanced/policymanager.sync.php:273 -#, php-format -msgid "Error deleting %s policy modules" -msgstr "Error al eliminar %s mĆ³dulos de polĆ­ticas" - -#: ../../enterprise/meta/advanced/policymanager.sync.php:277 -#, php-format -msgid "Deleted %s policy modules" -msgstr "Eliminados %s mĆ³dulos de polĆ­ticas" - -#: ../../enterprise/meta/advanced/policymanager.sync.php:282 -#, php-format -msgid "Error creating %s policy alerts" -msgstr "Error al crear %s alertas de polĆ­ticas" - -#: ../../enterprise/meta/advanced/policymanager.sync.php:286 -#, php-format -msgid "Created %s policy alerts" -msgstr "Alertas de polĆ­ticas %s creadas correctamente" - -#: ../../enterprise/meta/advanced/policymanager.sync.php:291 -#, php-format -msgid "Error deleting %s policy alerts" -msgstr "Error al eliminar %s alertas de polĆ­ticas" - -#: ../../enterprise/meta/advanced/policymanager.sync.php:295 -#, php-format -msgid "Deleted %s policy alerts" -msgstr "%s alertas de polĆ­ticas eliminadas correctamente" - -#: ../../enterprise/meta/advanced/policymanager.sync.php:321 -#: ../../enterprise/godmode/massive/massive_add_modules_policy.php:199 -#: ../../godmode/massive/massive_copy_modules.php:239 -msgid "Targets" -msgstr "Destinos" - -#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:124 -#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:127 -#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:131 -#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:135 -#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:139 -#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:143 -#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:147 -#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:151 -msgid "Agent: " -msgstr "Agente: " - -#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:124 -msgid " already exists in target node" -msgstr " ya existe en el nodo de destino" - -#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:127 -msgid " group does not exist in target node" -msgstr " grupo no existe en el nodo de destino" - -#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:131 -msgid " policies definitions does not match with defined ones in target node" -msgstr "" -" definiciones de polĆ­ticas no concuerdan con aquellas definidas en el nodo de " -"destino." - -#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:135 -msgid " plugins does not exist in target node" -msgstr " plugins no existen en el nodo de destino." - -#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:139 -msgid " collections does not exist in target node" -msgstr " colecciones no existen en el nodo de destino" - -#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:143 -msgid " inventory does not exist in target node" -msgstr " inventario no existe en el nodo de destino" - -#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:147 -msgid " alerts template does not exist in target node" -msgstr " modelo de alertas no existe en el nodo de destino" - -#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:151 -msgid " alerts action does not exist in target node" -msgstr " acciĆ³n de alertas no existe en el nodo de destino" - -#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:155 -msgid "Exists agent conf for agent: " -msgstr "Existe una configuraciĆ³n para el agente: " - -#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:155 -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:267 -#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:269 -msgid "The agent: " -msgstr "El agente: " - -#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:267 -msgid " has been successfully added to the migration queue " -msgstr " se aƱadiĆ³ correctamente a la cola de migraciĆ³n " - -#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:269 -msgid " has not been added due to problems in the insertion" -msgstr " no se aƱadiĆ³ por problemas de inserciĆ³n" - -#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:272 -#, php-format -msgid "The agent: %d has already been added to the migration queue" -msgstr "El agente: %d ya se ha aƱadido a la cola de migraciĆ³n" - -#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:292 -msgid "Problems delete queue" -msgstr "Error al borrar la cola" - -#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:312 -msgid "Move Agents" -msgstr "Mover agentes" - -#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:328 -msgid "Source Server" -msgstr "Servidor de origen" - -#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:330 -msgid "Destination Server" -msgstr "Servidor de destino" - -#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:364 -msgid "Agents to move" -msgstr "Agentes para desplazar" - -#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:385 -msgid "Add agents to destination server" -msgstr "AƱadir agentes al servidor de destino" - -#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:394 -msgid "Remove agents to doesn't move to destination server" -msgstr "Si eliminas los agentes, no se desplazarĆ”n al servidor de destino" - -#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:413 -msgid "Discard history data" -msgstr "Descartar datos de histĆ³rico" - -#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:426 -msgid "Agents do not exist in target server." -msgstr "Los agentes no existen en el servidor de destino." - -#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:427 -msgid "Check group is synchronized with target server." -msgstr "Comprueba que el grupo estĆ” sincronizado con el servidor de destino." - -#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:428 -msgid "All policies needed are synchronized with target server." -msgstr "" -"Todas las polĆ­ticas necesarias se sincronizaron con el servidor de destino." - -#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:429 -msgid "All remote plugins needed are synchronized with target server." -msgstr "" -"Todos los plugins necesarios se sincronizaron con el servidor de destino." - -#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:430 -msgid "All collections needed are syncronized with target server." -msgstr "" -"Todas las colecciones necesarias se sincronizaron con el servidor de destino." - -#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:431 -msgid "" -"All remote inventory definitions needed are syncronized with target server." -msgstr "" -"Todos los inventarios necesarios se sincronizaron con el servidor de destino." - -#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:432 -msgid "" -"All alert templates definitions needed are syncronized with target server." -msgstr "" -"Todas las definiciones de modelos de alertas necesarias se sincronizaron con " -"el servidor de destino." - -#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:433 -msgid "All alert actions needed are syncronized with target server." -msgstr "" -"Todas las acciones de alertas necesarias se sincronizaron con el servidor de " -"destino." - -#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:434 -msgid "Agents conf does not exists in target server." -msgstr "La configuraciĆ³n del agente no existe en el servidor de destino." - -#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:435 -#, php-format -msgid "Both %s servers must be in the same version" -msgstr "Ambos servidores %s deben estar en la misma versiĆ³n" - -#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:436 -msgid "Check target server ip address is set" -msgstr "Comprueba que la IP del servidor de destino estĆ” configurada." - -#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:446 -msgid "Move" -msgstr "Mover" - -#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:462 -msgid "Source node" -msgstr "Nodo de origen" - -#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:463 -msgid "Target node" -msgstr "Nodo de destino" - -#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:467 -msgid "Active db only" -msgstr "BD activa solamente" - -#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:520 -msgid "Creating modules in target node" -msgstr "Creando mĆ³dulos en el nodo de destino" - -#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:524 -msgid "Disabling agent in source node and enabling in target one" -msgstr "" -"Deshabilitando el agente en el nodo de origen y habilitĆ”ndolo en el nodo de " -"destino" - -#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:528 -msgid "Transferring data" -msgstr "Transfiriendo datos" - -#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:533 -msgid "Creating agent in target node" -msgstr "Creando agente en el nodo de destino" - -#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:549 -msgid "Queued" -msgstr "En espera" - -#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:679 -msgid "checking migration requirements" -msgstr "Comprobando requisitos de migraciĆ³n" - -#: ../../enterprise/meta/advanced/policymanager.apply.php:129 -#: ../../enterprise/godmode/policies/policy.php:198 -#: ../../enterprise/godmode/policies/policy.php:246 -msgid "Duplicated or incompatible operation in the queue" -msgstr "OperaciĆ³n duplicada o incompatible en la cola" - -#: ../../enterprise/meta/advanced/policymanager.apply.php:137 -#: ../../enterprise/meta/advanced/policymanager.apply.php:141 -#: ../../enterprise/godmode/policies/policy.php:186 -#: ../../enterprise/godmode/policies/policy.php:241 -msgid "Operation successfully added to the queue" -msgstr "OperaciĆ³n aƱadida correctamente a la cola" - -#: ../../enterprise/meta/advanced/policymanager.apply.php:141 -#: ../../enterprise/meta/advanced/policymanager.apply.php:149 -msgid "Only database" -msgstr "Bases de datos solamente" - -#: ../../enterprise/meta/advanced/policymanager.apply.php:145 -#: ../../enterprise/meta/advanced/policymanager.apply.php:149 -#: ../../enterprise/meta/advanced/policymanager.apply.php:153 -#: ../../enterprise/godmode/policies/policy.php:192 -#: ../../enterprise/godmode/policies/policy.php:242 -msgid "Operation cannot be added to the queue" -msgstr "La operaciĆ³n no se puede aƱadir a la cola." - -#: ../../enterprise/meta/advanced/policymanager.apply.php:186 -msgid "Apply Policies" -msgstr "Aplicar polĆ­ticas" - -#: ../../enterprise/meta/advanced/policymanager.apply.php:200 -#: ../../enterprise/godmode/servers/HA_cluster.php:97 -#: ../../mobile/include/functions_web.php:28 ../../godmode/setup/os.php:225 -#: ../../godmode/reporting/visual_console_builder.wizard.php:333 -#: ../../godmode/menu.php:278 -msgid "Servers" -msgstr "Servidores" - -#: ../../enterprise/meta/advanced/agents_setup.php:64 -msgid "Propagation" -msgstr "PropagaciĆ³n" - -#: ../../enterprise/meta/advanced/policymanager.php:58 -msgid "Policy Manager" -msgstr "Gestor de polĆ­ticas" - -#: ../../enterprise/meta/advanced/policymanager.php:75 -msgid "Apply policies" -msgstr "Aplicar polĆ­ticas" - -#: ../../enterprise/meta/advanced/policymanager.php:79 -#: ../../enterprise/meta/advanced/policymanager.php:97 -msgid "Policies queue" -msgstr "Cola de polĆ­ticas" - -#: ../../enterprise/meta/advanced/policymanager.php:93 -msgid "Policies apply" -msgstr "Aplicar polĆ­ticas" - -#: ../../enterprise/meta/advanced/policymanager.queue.php:58 -#: ../../enterprise/godmode/policies/policy_queue.php:96 -msgid "Operation successfully deleted from the queue" -msgstr "OperaciĆ³n eliminada correctamente de la cola" - -#: ../../enterprise/meta/advanced/policymanager.queue.php:59 -#: ../../enterprise/godmode/policies/policy_queue.php:97 -msgid "Operation cannot be deleted from the queue" -msgstr "La operaciĆ³n no puede ser eliminada de la cola." - -#: ../../enterprise/meta/advanced/policymanager.queue.php:218 -#: ../../enterprise/godmode/policies/policy_queue.php:609 -msgid "Apply (database and files)" -msgstr "Aplicar (base de datos y archivos)" - -#: ../../enterprise/meta/advanced/policymanager.queue.php:219 -#: ../../enterprise/meta/advanced/policymanager.queue.php:315 -#: ../../enterprise/godmode/policies/policy_queue.php:610 -#: ../../enterprise/godmode/policies/policy_queue.php:718 -msgid "Apply (only database)" -msgstr "Aplicar (solo en la base de datos)" - -#: ../../enterprise/meta/advanced/policymanager.queue.php:229 -#: ../../enterprise/godmode/policies/policy_queue.php:620 -msgid "Complete" -msgstr "Completo" - -#: ../../enterprise/meta/advanced/policymanager.queue.php:230 -#: ../../enterprise/godmode/policies/policy_queue.php:621 -msgid "Incomplete" -msgstr "Incompleto" - -#: ../../enterprise/meta/advanced/policymanager.queue.php:298 -#: ../../enterprise/godmode/policies/policy_queue.php:688 -msgid "Policy " -msgstr "PolĆ­tica " - -#: ../../enterprise/meta/advanced/policymanager.queue.php:339 -#: ../../enterprise/godmode/policies/policy_queue.php:748 -#: ../../enterprise/godmode/policies/policy_queue.php:757 -msgid "Policy applying timeout" -msgstr "Tiempo de espera de la aplicaciĆ³n de la polĆ­tica" - -#: ../../enterprise/meta/advanced/policymanager.queue.php:353 -#: ../../enterprise/godmode/policies/policy_queue.php:776 -msgid "Delete from queue" -msgstr "Eliminar de la cola" - -#: ../../enterprise/meta/advanced/policymanager.queue.php:371 -msgid "Empty queue." -msgstr "Cola vacĆ­a" - -#: ../../enterprise/meta/advanced/metasetup.mail.php:79 -#: ../../godmode/update_manager/update_manager.setup.php:168 -#: ../../godmode/update_manager/update_manager.setup.php:243 -msgid "Succesful Update the url config vars." -msgstr "Variables de configuraciĆ³n de la URL actualizadas correctamente." - -#: ../../enterprise/meta/advanced/metasetup.mail.php:80 -#: ../../godmode/update_manager/update_manager.setup.php:169 -#: ../../godmode/update_manager/update_manager.setup.php:244 -msgid "Unsuccesful Update the url config vars." -msgstr "Error al actualizar las variables de configuraciĆ³n de la URL." - -#: ../../enterprise/meta/advanced/metasetup.mail.php:98 -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 " -"587.\n" -"\n" -"If you have manual settings in your pandora_server.conf, please note these " -"settings will ignore this console setup." -msgstr "" -"Tenga en cuenta que algunos proveedores como Gmail o Office 365 necesitan " -"ajustar/habilitar conexiones externas manualmente utilizando SMTP y necesita " -"usar STARTTLS en el puerto 587.\n" -"\n" -"Si tiene configuraciones manuales en su pandora_server.conf, tenga presente " -"que dichos ajustes ignorarĆ”n los ajustes de la consola." - -#: ../../enterprise/meta/advanced/metasetup.mail.php:104 -#: ../../godmode/setup/setup_general.php:518 -msgid "Mail configuration" -msgstr "ConfiguraciĆ³n de email" - -#: ../../enterprise/meta/advanced/servers.php:39 -#: ../../godmode/servers/modificar_server.php:180 -msgid "Server deleted successfully" -msgstr "Servidor eliminado correctamente" - -#: ../../enterprise/meta/advanced/servers.php:41 -#: ../../godmode/servers/modificar_server.php:182 -msgid "There was a problem deleting the server" -msgstr "Hubo un problema al eliminar el servidor" - -#: ../../enterprise/meta/advanced/agents_setup.autoprovision_rules.php:64 -msgid "Cannot create an unnamed rule." -msgstr "No se pudo crear una regla sin nombre." - -#: ../../enterprise/meta/advanced/agents_setup.autoprovision_rules.php:75 -#: ../../enterprise/meta/advanced/agents_setup.autoprovision_rules.php:105 -msgid "Error creating provisioning rule." -msgstr "Error al crear la regla de aprovisionamiento" - -#: ../../enterprise/meta/advanced/agents_setup.autoprovision_rules.php:91 -#: ../../enterprise/meta/advanced/agents_setup.autoprovision_rules.php:119 -msgid "Error updating provisioning rule." -msgstr "Error al actualizar la regla de aprovisionamiento" - -#: ../../enterprise/meta/advanced/agents_setup.autoprovision_rules.php:125 -msgid "Error deleting provisioning rule." -msgstr "Error al borrar la regla de aprovisionamiento." - -#: ../../enterprise/meta/advanced/agents_setup.autoprovision_rules.php:135 -msgid "There was an error rule when moving the provisioning." -msgstr "Error al mover la regla de aprovisionamiento." - -#: ../../enterprise/meta/advanced/agents_setup.autoprovision_rules.php:202 -msgid "Edit rule" -msgstr "Editar regla" - -#: ../../enterprise/meta/advanced/metasetup.relations.php:239 -msgid "Node Address Default" -msgstr "DirecciĆ³n del nodo por defecto" - -#: ../../enterprise/meta/advanced/metasetup.relations.php:271 -#: ../../enterprise/meta/advanced/metasetup.relations.php:388 -msgid "This value will be the one returned by the API" -msgstr "Este serĆ” el valor devuelto por la API" - -#: ../../enterprise/meta/advanced/metasetup.relations.php:305 -msgid "Import file" -msgstr "Importar archivo" - -#: ../../enterprise/meta/advanced/metasetup.relations.php:319 -msgid "Ip Gateway" -msgstr "Puerta de enlace de la IP" - -#: ../../enterprise/meta/advanced/metasetup.relations.php:320 -#: ../../enterprise/meta/advanced/metasetup.relations.php:564 -msgid "Imei" -msgstr "IMEI" - -#: ../../enterprise/meta/advanced/metasetup.relations.php:351 -msgid "Relation" -msgstr "RelaciĆ³n" - -#: ../../enterprise/meta/advanced/metasetup.relations.php:361 -#: ../../enterprise/meta/advanced/metasetup.relations.php:440 -msgid "Node Address" -msgstr "DirecciĆ³n del nodo" - -#: ../../enterprise/meta/advanced/metasetup.relations.php:398 -msgid "Insert relation" -msgstr "Insertar relaciĆ³n" - -#: ../../enterprise/meta/advanced/metasetup.relations.php:406 -msgid "Show list relations" -msgstr "Mostrar lista de relaciones" - -#: ../../enterprise/meta/advanced/metasetup.relations.php:462 -msgid "Show Filters" -msgstr "Mostrar filtros" - -#: ../../enterprise/meta/advanced/metasetup.relations.php:549 -msgid "Node address" -msgstr "DirecciĆ³n del nodo" - -#: ../../enterprise/meta/advanced/metasetup.relations.php:562 -msgid "Gateway" -msgstr "Puerta de enlace" - -#: ../../enterprise/meta/advanced/metasetup.relations.php:642 -msgid "There are no relations yet" -msgstr "AĆŗn no hay relaciones" - -#: ../../enterprise/meta/advanced/servers.build_table.php:34 -#: ../../godmode/servers/servers.build_table.php:52 -msgid "There are no servers configured into the database" -msgstr "No hay ningĆŗn servidor configurado en la base de datos" - -#: ../../enterprise/meta/advanced/servers.build_table.php:65 -#: ../../godmode/servers/servers.build_table.php:84 -msgid "Lag" -msgstr "Retraso" - -#: ../../enterprise/meta/advanced/servers.build_table.php:65 -#: ../../godmode/servers/servers.build_table.php:84 -msgid "Avg. Delay(sec)/Modules delayed" -msgstr "Media de retraso (seg.)/MĆ³dulos retrasados" - -#: ../../enterprise/meta/advanced/servers.build_table.php:66 -#: ../../godmode/servers/servers.build_table.php:85 -msgid "T/Q" -msgstr "H/C" - -#: ../../enterprise/meta/advanced/servers.build_table.php:66 -#: ../../godmode/servers/servers.build_table.php:85 -msgid "Threads / Queued modules currently" -msgstr "Hilos/Cola actual de mĆ³dulos" - -#: ../../enterprise/meta/advanced/servers.build_table.php:91 -#: ../../godmode/servers/servers.build_table.php:134 -msgid "This is a master server" -msgstr "Este es un servidor maestro" - -#: ../../enterprise/meta/advanced/servers.build_table.php:106 -#: ../../enterprise/meta/advanced/servers.build_table.php:112 -#: ../../godmode/servers/servers.build_table.php:153 -#: ../../godmode/servers/servers.build_table.php:159 -msgid "of" -msgstr "de" - -#: ../../enterprise/meta/advanced/servers.build_table.php:134 -#: ../../godmode/servers/servers.build_table.php:260 -msgid "Modules run by this server will stop working. Do you want to continue?" -msgstr "" -"Los mĆ³dulos ejecutados por este servidor podrĆ­an dejar de funcionar. ĀæQuieres " -"continuar?" - -#: ../../enterprise/meta/advanced/servers.build_table.php:160 -#: ../../godmode/servers/servers.build_table.php:287 -msgid "Tactical server information" -msgstr "Vista tĆ”ctica del servidor" - -#: ../../enterprise/meta/advanced/component_management.php:56 -msgid "Module groups Management" -msgstr "Gestor de grupos de mĆ³dulo" - -#: ../../enterprise/meta/advanced/component_management.php:60 -msgid "OS Management" -msgstr "AdministraciĆ³n de SO" - -#: ../../enterprise/meta/advanced/metasetup.translate_string.php:129 -#: ../../enterprise/extensions/translate_string.php:253 -msgid "Translation added successfully" -msgstr "TraducciĆ³n aƱadida correctamente" - -#: ../../enterprise/meta/advanced/metasetup.translate_string.php:131 -#: ../../enterprise/extensions/translate_string.php:255 -msgid "Translation string could not be created" -msgstr "No se ha podido crear la cadena de traducciĆ³n" - -#: ../../enterprise/meta/advanced/metasetup.translate_string.php:144 -#: ../../enterprise/extensions/translate_string.php:268 -msgid "Translation updated successfully" -msgstr "TraducciĆ³n actualizada correctamente" - -#: ../../enterprise/meta/advanced/metasetup.translate_string.php:146 -#: ../../enterprise/extensions/translate_string.php:270 -msgid "Translation string could not be updated" -msgstr "No se ha podido actualizar la cadena de traducciĆ³n" - -#: ../../enterprise/meta/advanced/metasetup.translate_string.php:187 -#: ../../enterprise/meta/advanced/metasetup.translate_string.php:188 -#: ../../enterprise/extensions/translate_string.php:313 -#: ../../enterprise/extensions/translate_string.php:314 -#: ../../enterprise/godmode/agentes/collection_manager.php:42 -#: ../../enterprise/godmode/agentes/collections.php:361 -#: ../../enterprise/godmode/policies/policies.php:326 -#: ../../enterprise/godmode/policies/policy_collections.php:248 -msgid "Free text for search (*)" -msgstr "Texto libre para buscar (*)" - -#: ../../enterprise/meta/advanced/metasetup.translate_string.php:206 -#: ../../enterprise/extensions/translate_string.php:334 -msgid "Original string" -msgstr "Cadena original" - -#: ../../enterprise/meta/advanced/metasetup.translate_string.php:207 -#: ../../enterprise/extensions/translate_string.php:335 -msgid "Translation in selected language" -msgstr "TraducciĆ³n en el idioma seleccionado" - -#: ../../enterprise/meta/advanced/metasetup.translate_string.php:208 -#: ../../enterprise/extensions/translate_string.php:336 -msgid "Customize translation" -msgstr "Personalizar traducciĆ³n" - -#: ../../enterprise/meta/advanced/collections.editor.php:79 -#: ../../enterprise/meta/advanced/collections.data.php:320 -msgid "This console is not manager of this environment." -msgstr "Esta consola no es el administrador de este entorno." - -#: ../../enterprise/meta/advanced/collections.editor.php:128 -#: ../../enterprise/meta/advanced/collections.editor.php:195 -#: ../../enterprise/godmode/agentes/collections.editor.php:161 -#: ../../enterprise/godmode/agentes/collections.editor.php:226 -msgid "Back to file explorer" -msgstr "Volver al explorador de archivos" - -#: ../../enterprise/meta/advanced/collections.editor.php:217 -#: ../../enterprise/godmode/agentes/collections.editor.php:248 -#: ../../godmode/servers/plugin.php:192 -msgid "Compatibility mode" -msgstr "Modo de compatibilidad" - -#: ../../enterprise/meta/advanced/collections.editor.php:269 -#: ../../enterprise/godmode/agentes/collections.editor.php:299 -msgid "Correct update file." -msgstr "ActualizaciĆ³n correcta del archivo" - -#: ../../enterprise/meta/advanced/collections.editor.php:270 -#: ../../enterprise/godmode/agentes/collections.editor.php:300 -msgid "Incorrect update file." -msgstr "Error al actualizar el archivo" - -#: ../../enterprise/meta/advanced/collections.editor.php:403 -#: ../../enterprise/godmode/agentes/collections.editor.php:447 -msgid "Please, first save a new collection before to upload files." -msgstr "Por favor, antes de subir archivos, guarda una nueva colecciĆ³n." - -#: ../../enterprise/meta/advanced/metasetup.performance.php:74 -#: ../../godmode/setup/setup.php:125 ../../godmode/setup/setup.php:260 -#: ../../godmode/menu.php:334 -msgid "Performance" -msgstr "Rendimiento" - -#: ../../enterprise/meta/advanced/metasetup.performance.php:88 -msgid "Use real-time statistics" -msgstr "Usar estadĆ­sticas en tiempo real" - -#: ../../enterprise/meta/advanced/metasetup.performance.php:98 -msgid "Migration block size" -msgstr "TamaƱo del bloque de migraciĆ³n" - -#: ../../enterprise/meta/advanced/metasetup.performance.php:108 -#: ../../godmode/setup/performance.php:614 -msgid "Events response max. execution" -msgstr "MĆ”x. tiempo de ejecuciĆ³n de respuesta de eventos" - -#: ../../enterprise/meta/advanced/metasetup.performance.php:110 -msgid "Number of events that will perform the desired action at the same time" -msgstr "NĆŗmero de eventos que llevarĆ”n a cabo la acciĆ³n deseada a la vez." - -#: ../../enterprise/meta/advanced/metasetup.performance.php:146 -#: ../../godmode/setup/performance.php:660 -#, 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:151 -#: ../../godmode/setup/performance.php:667 -msgid "PhantomJS cache cleanup " -msgstr "Limpieza de cachĆ© de PhantomJS " - -#: ../../enterprise/meta/advanced/metasetup.performance.php:158 -#: ../../godmode/setup/performance.php:674 -msgid "No scheduled" -msgstr "No programado" - -#: ../../enterprise/meta/advanced/metasetup.performance.php:159 -#: ../../godmode/setup/performance.php:675 -msgid "Each week" -msgstr "Cada semana" - -#: ../../enterprise/meta/advanced/metasetup.performance.php:160 -#: ../../godmode/setup/performance.php:676 -msgid "Each day" -msgstr "Cada dĆ­a" - -#: ../../enterprise/meta/advanced/cron_main.php:75 -#: ../../enterprise/extensions/cron.php:156 -msgid "Cron jobs" -msgstr "Tareas cron" - -#: ../../enterprise/meta/advanced/cron_main.php:87 -#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:551 -msgid "Add new job" -msgstr "AƱadir nueva tarea" - -#: ../../enterprise/meta/advanced/cron_main.php:173 -#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:244 -msgid "Only administrator users can create this type of functions" -msgstr "Solo los usuarios administradores pueden crear este tipo de funciones." - -#: ../../enterprise/meta/advanced/cron_main.php:244 -#: ../../enterprise/meta/advanced/cron_main.php:278 -#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:356 -msgid "Edit job" -msgstr "Editar tarea" - -#: ../../enterprise/meta/advanced/cron_main.php:333 -msgid "" -"In order to make backups it is necessary to have mysqldump on your console." -msgstr "Para hacer una copia de seguridad, debe tener mysquldump en la consola." - -#: ../../enterprise/meta/advanced/cron_main.php:407 -msgid "Date format in Pandora is year/month/day" -msgstr "El formato de fecha de Pandora FMS es aƱo/mes/dĆ­a" - -#: ../../enterprise/meta/advanced/cron_main.php:418 -msgid "Time format in Pandora is hours(24h):minutes:seconds" -msgstr "El formato de hora en Pandora FMS es horas(24h):minutos:segundos" - -#: ../../enterprise/meta/advanced/collections.data.php:76 -#: ../../enterprise/godmode/agentes/collections.data.php:174 -msgid "" -"Unable to create the collection. Another collection with the same short name." -msgstr "" -"No se ha podido crear la colecciĆ³n. Hay otra colecciĆ³n con el mismo nombre " -"corto." - -#: ../../enterprise/meta/advanced/collections.data.php:97 -#: ../../enterprise/meta/advanced/collections.data.php:117 -#: ../../enterprise/godmode/agentes/collections.data.php:197 -#: ../../enterprise/godmode/agentes/collections.data.php:217 -msgid "Unable to create the collection" -msgstr "Error al crear la colecciĆ³n" - -#: ../../enterprise/meta/advanced/collections.data.php:97 -#: ../../enterprise/godmode/agentes/collections.data.php:197 -msgid "Invalid characters in short name" -msgstr "Caracteres no vĆ”lidos en el nombre" - -#: ../../enterprise/meta/advanced/collections.data.php:111 -#: ../../enterprise/godmode/agentes/collections.data.php:59 -#: ../../enterprise/godmode/agentes/collections.data.php:167 -#: ../../enterprise/godmode/agentes/collections.data.php:191 -#: ../../enterprise/godmode/agentes/collections.data.php:211 -#: ../../enterprise/godmode/agentes/collections.data.php:238 -#: ../../enterprise/godmode/agentes/collections.data.php:294 -msgid "Manager configuration > New" -msgstr "Gestionar la configuraciĆ³n > Nuevo" - -#: ../../enterprise/meta/advanced/collections.data.php:142 -#: ../../enterprise/meta/advanced/collections.data.php:190 -#: ../../enterprise/godmode/agentes/collections.data.php:244 -#: ../../enterprise/godmode/agentes/collections.data.php:302 -msgid "Unable to create the collection." -msgstr "Error al crear la colecciĆ³n" - -#: ../../enterprise/meta/advanced/collections.data.php:163 -#: ../../enterprise/meta/advanced/collections.data.php:309 -#: ../../enterprise/godmode/agentes/collections.data.php:270 -msgid "Correct create collection" -msgstr "ColecciĆ³n de ficheros creada correctamente" - -#: ../../enterprise/meta/advanced/collections.data.php:231 -#: ../../enterprise/godmode/agentes/collections.editor.php:84 -#: ../../enterprise/godmode/agentes/collections.data.php:106 -#: ../../enterprise/godmode/agentes/collections.data.php:262 -#: ../../enterprise/godmode/agentes/collections.data.php:351 -#: ../../enterprise/godmode/agentes/collections.data.php:367 -#: ../../enterprise/godmode/agentes/collections.data.php:375 -msgid "Manager configuration > Edit " -msgstr "Gestionar la configuraciĆ³n > Editar " - -#: ../../enterprise/meta/advanced/collections.data.php:287 -#: ../../enterprise/godmode/agentes/collections.data.php:358 -msgid "Unable to edit the collection, empty name." -msgstr "Error al crear colecciĆ³n: nombre vacĆ­o" - -#: ../../enterprise/meta/advanced/collections.data.php:300 -#: ../../enterprise/godmode/agentes/collections.data.php:373 -msgid "Unable to edit the collection." -msgstr "Error al editar la colecciĆ³n" - -#: ../../enterprise/meta/advanced/collections.data.php:345 -#: ../../enterprise/godmode/agentes/collections.data.php:438 -msgid "Recreate file" -msgstr "Volver a crear el archivo" - -#: ../../enterprise/meta/advanced/collections.data.php:373 -#: ../../enterprise/meta/advanced/collections.data.php:374 -#: ../../enterprise/godmode/agentes/collection_manager.php:166 -#: ../../enterprise/godmode/agentes/collection_manager.php:167 -#: ../../enterprise/godmode/agentes/collection_manager.php:281 -#: ../../enterprise/godmode/agentes/collection_manager.php:282 -#: ../../enterprise/godmode/agentes/collections.data.php:467 -#: ../../enterprise/godmode/agentes/collections.data.php:468 -msgid "Need to regenerate" -msgstr "Necesita volver a regenerarse" - -#: ../../enterprise/meta/advanced/collections.data.php:397 -#: ../../enterprise/godmode/agentes/collections.data.php:492 -msgid "Group:" -msgstr "Grupo:" - -#: ../../enterprise/meta/advanced/collections.data.php:420 -#: ../../enterprise/godmode/agentes/collections.data.php:514 -msgid "Short name:" -msgstr "Nombre corto:" - -#: ../../enterprise/meta/advanced/collections.data.php:426 -#: ../../enterprise/godmode/agentes/collections.data.php:519 -msgid "" -"The collection's short name is the name of dir in attachment dir and the " -"package collection." -msgstr "" -"El nombre corto de la colecciĆ³n es el nombre del directorio en el directorio " -"de adjuntos y la colecciĆ³n de paquetes." - -#: ../../enterprise/meta/advanced/collections.data.php:426 -#: ../../enterprise/godmode/agentes/collections.data.php:519 -msgid "Short name must contain only alphanumeric characters, - or _ ." -msgstr "Los nombres cortos deben contener solo caracteres alfanumĆ©ricos, - o _." - -#: ../../enterprise/meta/advanced/collections.data.php:426 -#: ../../enterprise/godmode/agentes/collections.data.php:519 -msgid "Empty for default short name fc_X where X is the collection id." -msgstr "" -"DĆ©jalo vacĆ­o para el nombre corto por defecto (fc_X) donde X es el ID de la " -"colecciĆ³n." - -#: ../../enterprise/meta/advanced/license_meta.php:52 -#: ../../godmode/setup/license.php:80 -msgid "Failed to Update license file" -msgstr "Error al actualizar el archivo de licencia" - -#: ../../enterprise/meta/advanced/license_meta.php:59 -msgid "Metaconsole and all nodes license updated" -msgstr "Licencia de la Metaconsola y todos sus mĆ³dulos actualizada correctamente" - -#: ../../enterprise/meta/advanced/license_meta.php:61 -#, php-format -msgid "Metaconsole license updated but %d of %d node synchronization failed" -msgstr "" -"Licencia de la Metaconsola actualizada pero %d de %d de los nodos no se " -"sincronizaron correctamente" - -#: ../../enterprise/meta/advanced/metasetup.php:55 -msgid "Consoles Setup" -msgstr "ConfiguraciĆ³n de consolas" - -#: ../../enterprise/meta/advanced/metasetup.php:63 -#: ../../enterprise/meta/advanced/metasetup.php:216 -msgid "General setup" -msgstr "ConfiguraciĆ³n general" - -#: ../../enterprise/meta/advanced/metasetup.php:71 -#: ../../enterprise/meta/advanced/metasetup.php:219 -msgid "Passwords setup" -msgstr "ConfiguraciĆ³n de contraseƱas" - -#: ../../enterprise/meta/advanced/metasetup.php:91 -#: ../../enterprise/meta/advanced/metasetup.php:227 -#: ../../godmode/setup/setup.php:113 ../../godmode/setup/setup.php:255 -#: ../../godmode/menu.php:331 -msgid "Authentication" -msgstr "AutentificaciĆ³n" - -#: ../../enterprise/meta/advanced/metasetup.php:101 -#: ../../enterprise/meta/advanced/metasetup.php:231 -msgid "Visual setup" -msgstr "ConfiguraciĆ³n visual" - -#: ../../enterprise/meta/advanced/metasetup.php:109 -#: ../../enterprise/meta/advanced/metasetup.php:235 -msgid "Performance setup" -msgstr "ConfiguraciĆ³n del rendimiento" - -#: ../../enterprise/meta/advanced/metasetup.php:117 -#: ../../enterprise/meta/advanced/metasetup.php:239 -#: ../../godmode/setup/file_manager.php:46 ../../godmode/menu.php:399 -msgid "File manager" -msgstr "Gestor de archivos" - -#: ../../enterprise/meta/advanced/metasetup.php:125 -#: ../../enterprise/meta/advanced/metasetup.php:243 -msgid "Strings translation" -msgstr "TraducciĆ³n de cadenas" - -#: ../../enterprise/meta/advanced/metasetup.php:133 -#: ../../enterprise/meta/advanced/metasetup.php:247 -msgid "Mail" -msgstr "Correo electrĆ³nico" - -#: ../../enterprise/meta/advanced/metasetup.php:141 -#: ../../enterprise/meta/advanced/metasetup.php:251 -#: ../../godmode/setup/setup.php:204 ../../godmode/setup/setup.php:300 -#: ../../godmode/menu.php:355 -msgid "Notifications" -msgstr "Notificaciones" - -#: ../../enterprise/meta/advanced/metasetup.php:153 -msgid "Relations rules" -msgstr "Normas de relaciĆ³n" - -#: ../../enterprise/meta/advanced/metasetup.php:166 -msgid "Warp Update Setup" -msgstr "ConfiguraciĆ³n de Warp Update" - -#: ../../enterprise/meta/advanced/metasetup.php:174 -msgid "Warp Update Journal" -msgstr "Diario de Warp update" - -#: ../../enterprise/meta/advanced/metasetup.php:182 -msgid "Warp Update Offline" -msgstr "Warp update Sin conexiĆ³n" - -#: ../../enterprise/meta/advanced/metasetup.php:190 -msgid "Warp Update Online" -msgstr "Warp Update En lĆ­nea" - -#: ../../enterprise/meta/advanced/metasetup.php:211 -msgid "Consoles setup" -msgstr "ConfiguraciĆ³n de las consolas" - -#: ../../enterprise/meta/advanced/metasetup.php:255 -msgid "Relations Rules" -msgstr "Normas de relaciĆ³n" - -#: ../../enterprise/meta/advanced/metasetup.php:259 -msgid "Online Update Options" -msgstr "Opciones de actualizaciĆ³n online" - -#: ../../enterprise/meta/advanced/metasetup.php:263 -msgid "Online Update Journal" -msgstr "Update Journal en lĆ­nea" - -#: ../../enterprise/meta/advanced/metasetup.php:268 -msgid "Online Update Offline" -msgstr "ActualizaciĆ³n sin conexiĆ³n" - -#: ../../enterprise/meta/advanced/metasetup.php:275 -msgid "Online Update Online" -msgstr "ActualizaciĆ³n en lĆ­nea" - -#: ../../enterprise/meta/advanced/metasetup.setup.php:108 -#: ../../enterprise/godmode/modules/configure_local_component.php:164 -#: ../../godmode/modules/manage_network_components_form_common.php:52 -#: ../../godmode/alerts/configure_alert_template.php:933 -#: ../../godmode/alerts/configure_alert_template.php:974 -#: ../../godmode/alerts/configure_alert_template.php:1137 -#: ../../godmode/alerts/alert_commands.php:141 -#: ../../godmode/alerts/alert_commands.php:182 -#: ../../godmode/users/configure_user.php:1210 -msgid "Basic" -msgstr "BĆ”sico" - -#: ../../enterprise/meta/advanced/metasetup.setup.php:145 -#: ../../godmode/setup/setup_general.php:126 -msgid "Database" -msgstr "Base de datos" - -#: ../../enterprise/meta/advanced/metasetup.setup.php:149 -#, php-format -msgid "" -"If SSL is not properly configured, you will lose access to the %s Console. Do " -"you want to continue?" -msgstr "" -"Si el SSL no esta correctamente configurado, perderĆ” el acceso a la consola " -"%s. ĀæDesea continuar?" - -#: ../../enterprise/meta/advanced/metasetup.setup.php:152 -msgid "Directory where temporary data is stored." -msgstr "Directorio donde se almacenan los datos temporales" - -#: ../../enterprise/meta/advanced/metasetup.setup.php:158 -msgid "Directory where phantomjs binary file exists and has execution grants." -msgstr "" -"Directorio que contiene en archivo binario phantomjs con permisos de ejecuciĆ³n." - -#: ../../enterprise/meta/advanced/metasetup.setup.php:193 -#: ../../godmode/setup/setup_general.php:296 -msgid "Change timezone" -msgstr "Cambiar zona horaria" - -#: ../../enterprise/meta/advanced/metasetup.setup.php:198 -#, php-format -msgid "" -"Set this value when you need your %s to be accessible via a public URL (for " -"example using Apache mod_proxy settings)." -msgstr "" -"Ajuste este valor cuando necesite que %s estĆ© accesible a travĆ©s de una URL " -"pĆŗblica (por ejemplo usando los ajustes mod_proxy de Apache)." - -#: ../../enterprise/meta/advanced/metasetup.setup.php:202 -msgid "Force using defined public URL)." -msgstr "Forzar usando la URL pĆŗblica definida." - -#: ../../enterprise/meta/advanced/metasetup.setup.php:209 -#, php-format -msgid "" -"If public URL is not properly configured, you will lose access to the %s " -"Console. Do you want to continue?" -msgstr "" -"Si la URL no estĆ” correctamente configurada, no tendrĆ” acceso a la consola %s. " -"ĀæDesea continuar?" - -#: ../../enterprise/meta/advanced/metasetup.setup.php:218 -msgid "" -"Disable the definition of custom filters in the live view. Only existing " -"filters can be used." -msgstr "" -"Desactiva la definiciĆ³n de filtros personalizados en la vista activa. Solo " -"pueden usarse los filtros existentes." - -#: ../../enterprise/meta/advanced/metasetup.setup.php:222 -msgid "The string modules with several lines show as command output" -msgstr "" -"Los mĆ³dulos de tipo cadena de texto con varias lĆ­neas se mostrarĆ”n como una " -"salida de comando." - -#: ../../enterprise/meta/advanced/metasetup.setup.php:227 -msgid "Customize sections" -msgstr "Personalizar secciones" - -#: ../../enterprise/meta/advanced/metasetup.setup.php:248 -msgid "Disabled sections" -msgstr "Secciones desactivadas" - -#: ../../enterprise/meta/advanced/metasetup.setup.php:250 -msgid "Enabled sections" -msgstr "Activar secciones" - -#: ../../enterprise/meta/advanced/metasetup.setup.php:255 -msgid "Push selected sections to enable it" -msgstr "Selecciona las secciones elegidas para activarlo" - -#: ../../enterprise/meta/advanced/metasetup.setup.php:257 -msgid "Pop selected sections to disable it" -msgstr "Deshacer selecciĆ³n de las secciones para desactivarlo" - -#: ../../enterprise/meta/advanced/metasetup.setup.php:267 -msgid "Please be careful if you put a password put https access." -msgstr "" -"Por favor, ten cuidado. Si tienes que introducir una contraseƱa pon acceso " -"https." - -#: ../../enterprise/meta/advanced/metasetup.setup.php:289 -#: ../../enterprise/godmode/setup/setup.php:98 -msgid " Bytes" -msgstr " Bytes" - -#: ../../enterprise/meta/advanced/metasetup.setup.php:291 -msgid "Max. agents to add in policy concurrently" -msgstr "MĆ”x. de agentes a aƱadir a una polĆ­tica simultĆ”neamente" - -#: ../../enterprise/meta/advanced/metasetup.setup.php:291 -msgid "" -"Maximum allowed number of agents to be added in policy concurrently (adding a " -"high number of agents at a time can lead to performance issues)" -msgstr "" -"NĆŗmero mĆ”ximo de agentes permitido a aƱadir a una polĆ­tica simultĆ”neamente " -"(aƱadir un gran nĆŗmero de agentes de una vex puede causar problemas de " -"funcionamiento)" - -#: ../../enterprise/meta/advanced/metasetup.setup.php:294 -msgid "Synchronization queue items warn detection" -msgstr "Los elementos de la cola de sincronizaciĆ³n advierten a la detecciĆ³n" - -#: ../../enterprise/meta/advanced/metasetup.setup.php:294 -msgid "Number of items in synchronization queue before be notified, per node" -msgstr "" -"NĆŗmero de elementos en la cola de sincronizaciĆ³n antes de ser notificados, por " -"nodo" - -#: ../../enterprise/meta/advanced/metasetup.setup.php:298 -msgid "Enable Agent API" -msgstr "Habilitar API del agente" - -#: ../../enterprise/meta/advanced/metasetup.setup.php:320 -msgid "Enable log viewer" -msgstr "Habilitar el visor de logs" - -#: ../../enterprise/meta/advanced/metasetup.setup.php:324 -msgid "Log location: pandora_console/log/console.log" -msgstr "LocalizaciĆ³n de logs: pandora_console/log/console.log" - -#: ../../enterprise/meta/advanced/metasetup.setup.php:345 -msgid "Log location: pandora_console/log/audit.log" -msgstr "LocalizaciĆ³n de logs: pandora_console/log/audit.log" - -#: ../../enterprise/meta/advanced/metasetup.consoles.php:105 -#, php-format -msgid "Node %s is not recognized as metaconsole node." -msgstr "El nodo %s no ha sido reconocido como nodo de la Metaconsola." - -#: ../../enterprise/meta/advanced/metasetup.consoles.php:112 -#, php-format -msgid "Node %s license missmatch." -msgstr "El nodo %s no coincide en la licencia." - -#: ../../enterprise/meta/advanced/metasetup.consoles.php:119 -#, php-format -msgid "Cannot connect to node %s" -msgstr "No puede conectarse al nodo %s" - -#: ../../enterprise/meta/advanced/metasetup.consoles.php:126 -#, php-format -msgid "Unknown error synchronizing %s" -msgstr "Error desconocido al sincronizar %s" - -#: ../../enterprise/meta/advanced/metasetup.consoles.php:136 -#, php-format -msgid "Synchronized %d nodes, but some failed to synchronize %s" -msgstr "Nodos %d sincronizados, pero algunos no han podido sincronizarse %s" - -#: ../../enterprise/meta/advanced/metasetup.consoles.php:143 -#, php-format -msgid "Successfully synchronized all nodes (%d)" -msgstr "Todos los nodos se han sincronizado correctamente (%d)" - -#: ../../enterprise/meta/advanced/metasetup.consoles.php:210 -msgid "Node synchronization process failed" -msgstr "Error al sincronizar con el nodo" - -#: ../../enterprise/meta/advanced/metasetup.consoles.php:210 -#: ../../enterprise/meta/advanced/metasetup.consoles.php:324 -msgid "" -"If you are trying to migrate this node to a new metaconsole, please use the " -"form available at Settings > Enterprise at node console." -msgstr "" -"Si intenta migrar este nodo a una Metaconsola nueva, use el formulario " -"disponible en ConfiguraciĆ³n > Enterprise en la consola de nodos." - -#: ../../enterprise/meta/advanced/metasetup.consoles.php:220 -#: ../../enterprise/godmode/setup/setup_metaconsole.php:86 -msgid "Could not be update" -msgstr "No se pudo actualizar" - -#: ../../enterprise/meta/advanced/metasetup.consoles.php:260 -msgid "Could not be created, duplicated register found." -msgstr "No se pudo crear, se encontrĆ³ un registro duplicado." - -#: ../../enterprise/meta/advanced/metasetup.consoles.php:322 -msgid "Node synchronization process failed: " -msgstr "Error al sincronizar con el nodo" - -#: ../../enterprise/meta/advanced/metasetup.consoles.php:322 -#: ../../godmode/setup/license.php:101 -msgid "Unknown error" -msgstr "Error desconocido" - -#: ../../enterprise/meta/advanced/metasetup.consoles.php:343 -msgid "Successfully registered" -msgstr "Registrado con Ć©xito" - -#: ../../enterprise/meta/advanced/metasetup.consoles.php:344 -#, php-format -msgid "Could not be registered %s" -msgstr "No se pudo registrar %s" - -#: ../../enterprise/meta/advanced/metasetup.consoles.php:370 -msgid "Successfully delete" -msgstr "Borrado correctamente" - -#: ../../enterprise/meta/advanced/metasetup.consoles.php:371 -msgid "Could not be delete" -msgstr "No se puede eliminar" - -#: ../../enterprise/meta/advanced/metasetup.consoles.php:413 -#, php-format -msgid "Could not be disabled: %s" -msgstr "No se pudo deshabilitar: %s" - -#: ../../enterprise/meta/advanced/metasetup.consoles.php:429 -#, php-format -msgid "" -"System is centralised, but you just modify nodes registered, please go to %s " -"to perform a database merge process." -msgstr "" -"El sistema estĆ” centralizado, pero solo modifica los nodos registrados, vaya a " -"%s para realizar un proceso de combinaciĆ³n de bases de datos." - -#: ../../enterprise/meta/advanced/metasetup.consoles.php:432 -msgid "This node will not be usable until unifying the environment" -msgstr "Este nodo no serĆ” utilizable hasta unificar el entorno" - -#: ../../enterprise/meta/advanced/metasetup.consoles.php:507 -#, php-format -msgid "%s Metaconsole item edition" -msgstr "EdiciĆ³n de elemento de Metaconsola %s" - -#: ../../enterprise/meta/advanced/metasetup.consoles.php:513 -msgid "Custom label to identify this setup." -msgstr "Etiqueta personalizada para identificar esta configuraciĆ³n." - -#: ../../enterprise/meta/advanced/metasetup.consoles.php:516 -#: ../../enterprise/meta/advanced/metasetup.consoles.php:839 -#: ../../enterprise/godmode/setup/setup_metaconsole.php:206 -msgid "Console URL" -msgstr "URL de la consola" - -#: ../../enterprise/meta/advanced/metasetup.consoles.php:516 -#, php-format -msgid "Full path to %s console (without index.php). Example %s" -msgstr "Ruta completa de la consola %s (sin index.php). Ejemplo %s" - -#: ../../enterprise/meta/advanced/metasetup.consoles.php:519 -#: ../../enterprise/godmode/setup/setup_metaconsole.php:202 -msgid "Auth token" -msgstr "Hash de autentificaciĆ³n" - -#: ../../enterprise/meta/advanced/metasetup.consoles.php:520 -#, php-format -msgid "" -"Token previously configured on the destination %s console in order to use " -"delegated authentification." -msgstr "" -"Token previamente configurado en la consola %s de destino para usar la " -"autenticaciĆ³n delegada." - -#: ../../enterprise/meta/advanced/metasetup.consoles.php:544 -#: ../../enterprise/godmode/setup/setup_metaconsole.php:233 -msgid "Console User" -msgstr "Usuario de la consola" - -#: ../../enterprise/meta/advanced/metasetup.consoles.php:553 -#: ../../enterprise/godmode/setup/setup_metaconsole.php:237 -msgid "Console Password" -msgstr "ContraseƱa de la consola" - -#: ../../enterprise/meta/advanced/metasetup.consoles.php:564 -#: ../../enterprise/meta/advanced/metasetup.consoles.php:840 -#: ../../enterprise/godmode/setup/setup_metaconsole.php:215 -#: ../../enterprise/godmode/setup/setup_metaconsole.php:275 -msgid "DB Host" -msgstr "Host de la BD" - -#: ../../enterprise/meta/advanced/metasetup.consoles.php:573 -#: ../../enterprise/godmode/setup/setup_metaconsole.php:219 -msgid "DB Name" -msgstr "Nombre de la BD" - -#: ../../enterprise/meta/advanced/metasetup.consoles.php:582 -#: ../../enterprise/godmode/setup/setup_metaconsole.php:224 -msgid "DB User" -msgstr "Usuario de la BD" - -#: ../../enterprise/meta/advanced/metasetup.consoles.php:591 -#: ../../enterprise/godmode/setup/setup_metaconsole.php:228 -msgid "DB Password" -msgstr "ContraseƱa de la BD" - -#: ../../enterprise/meta/advanced/metasetup.consoles.php:613 -msgid "Define database connection from Pandora FMS node to this Metaconsole" -msgstr "" -"Definir conexiĆ³n con la base de datos desde el nodo de Pandora FMs a esta " -"Metaconsola." - -#: ../../enterprise/meta/advanced/metasetup.consoles.php:635 -msgid "Metaconsole DB Host" -msgstr "Host de la base de datos de la Metaconsola" - -#: ../../enterprise/meta/advanced/metasetup.consoles.php:644 -msgid "Metaconsole DB Name" -msgstr "Nombre de base de datos de la Metaconsola" - -#: ../../enterprise/meta/advanced/metasetup.consoles.php:653 -msgid "Metaconsole DB User" -msgstr "Usuario de la base de datos de la Metaconsola" - -#: ../../enterprise/meta/advanced/metasetup.consoles.php:662 -msgid "Metaconsole DB Password" -msgstr "ContraseƱa de la base de datos de la Metaconsola" - -#: ../../enterprise/meta/advanced/metasetup.consoles.php:673 -#: ../../enterprise/godmode/setup/setup.php:250 -msgid "Metaconsole DB port" -msgstr "Puerto BD Metaconsola" - -#: ../../enterprise/meta/advanced/metasetup.consoles.php:726 -msgid "Register empty node" -msgstr "Registrar nodo vacĆ­o" - -#: ../../enterprise/meta/advanced/metasetup.consoles.php:732 -msgid "Register node with data to merge" -msgstr "Nodo de registro con datos para combinar" - -#: ../../enterprise/meta/advanced/metasetup.consoles.php:769 -msgid "Node data will be wiped out" -msgstr "Los datos del nodo se borrarĆ”n" - -#: ../../enterprise/meta/advanced/metasetup.consoles.php:770 -msgid "" -"Information contained in this node is not needed. Node information will be " -"erased, and replaced with new data from this metaconsole automatically after " -"register the node. Are you sure?" -msgstr "" -"La informaciĆ³n contenida en este nodo no es necesaria. La informaciĆ³n del nodo " -"se borrarĆ” y se reemplazarĆ” con nuevos datos de esta metaconsola " -"automĆ”ticamente despuĆ©s de registrar el nodo. ĀæEstĆ”s seguro?" - -#: ../../enterprise/meta/advanced/metasetup.consoles.php:786 -msgid "Node data will be merged" -msgstr "Los datos del nodo se fusionarĆ”n" - -#: ../../enterprise/meta/advanced/metasetup.consoles.php:787 -msgid "" -"Information contained in this node is useful. After register the node, you " -"must launch a merge process from command center, which will combine " -"information in current environment with information contained in this new " -"node. Are you sure?" -msgstr "" -"La informaciĆ³n contenida en este nodo es Ćŗtil. DespuĆ©s de registrar el nodo, " -"debe iniciar un proceso de combinaciĆ³n desde el centro de comandos, que " -"combinarĆ” la informaciĆ³n del entorno actual con la informaciĆ³n contenida en " -"este nuevo nodo. ĀæEstĆ”s seguro?" - -#: ../../enterprise/meta/advanced/metasetup.consoles.php:832 -#: ../../enterprise/godmode/setup/setup_metaconsole.php:272 -msgid "Compatibility" -msgstr "Compatibilidad" - -#: ../../enterprise/meta/advanced/metasetup.consoles.php:833 -msgid "Event replication" -msgstr "ReplicaciĆ³n de eventos" - -#: ../../enterprise/meta/advanced/metasetup.consoles.php:836 -msgid "Database sync" -msgstr "SincronizaciĆ³n de bases de datos" - -#: ../../enterprise/meta/advanced/metasetup.consoles.php:903 -msgid "New node" -msgstr "Nuevo nodo" - -#: ../../enterprise/meta/advanced/metasetup.consoles.php:935 -msgid "Synchronize all" -msgstr "Sincronizar todo" - -#: ../../enterprise/meta/advanced/metasetup.password.php:73 -msgid "Passwords" -msgstr "ContraseƱas" - -#: ../../enterprise/meta/advanced/metasetup.password.php:102 -#: ../../enterprise/godmode/setup/setup.php:484 -msgid " Caracters" -msgstr " Caracteres" - -#: ../../enterprise/meta/advanced/metasetup.password.php:105 -msgid "Set 0 if never expire." -msgstr "Introduce 0 para que nunca expire." - -#: ../../enterprise/meta/advanced/metasetup.password.php:106 -#: ../../enterprise/godmode/setup/setup.php:513 -msgid " Days" -msgstr " DĆ­as" - -#: ../../enterprise/meta/advanced/metasetup.password.php:110 -#: ../../enterprise/godmode/setup/setup.php:533 -msgid " Minutes" -msgstr " Minutos" - -#: ../../enterprise/meta/advanced/metasetup.password.php:113 -msgid "Two attempts minimum" -msgstr "2 intentos mĆ­nimo" - -#: ../../enterprise/meta/advanced/metasetup.password.php:114 -#: ../../enterprise/godmode/setup/setup.php:544 -msgid " Attempts" -msgstr " Intentos" - -#: ../../enterprise/meta/advanced/collections.php:111 -msgid "Collection has been deleted" -msgstr "Se ha eliminado la colecciĆ³n" - -#: ../../enterprise/meta/advanced/collections.php:122 -#: ../../enterprise/meta/advanced/collections.php:138 -#: ../../enterprise/godmode/agentes/collection_manager.php:94 -#: ../../enterprise/godmode/agentes/collections.php:188 -#: ../../enterprise/godmode/agentes/collections.php:210 -msgid "Successful create collection package." -msgstr "Paquete de la colecciĆ³n creado correctamente" - -#: ../../enterprise/meta/advanced/collections.php:139 -#: ../../enterprise/godmode/agentes/collection_manager.php:95 -#: ../../enterprise/godmode/agentes/collections.php:211 -msgid "Can not create collection package." -msgstr "No se puede crear el paquete de la colecciĆ³n" - -#: ../../enterprise/meta/advanced/collections.php:149 -#: ../../enterprise/godmode/agentes/collections.php:246 -msgid "Error: Id must not be empty" -msgstr "Error: El ID no puede estar vacĆ­o" - -#: ../../enterprise/meta/advanced/collections.php:163 -#: ../../enterprise/godmode/agentes/collections.php:260 -msgid "Successful re-create collection directory." -msgstr "Directorio de la colecciĆ³n creado nuevamente correctamente." - -#: ../../enterprise/meta/advanced/collections.php:164 -#: ../../enterprise/godmode/agentes/collections.php:261 -msgid "Can not re-create collection directory." -msgstr "No se puede volver a crear crear el directorio de la colecciĆ³n." - -#: ../../enterprise/meta/advanced/collections.php:190 -#: ../../enterprise/godmode/agentes/collections.php:287 -msgid "Successful re-create collections directories." -msgstr "Directorios de la colecciĆ³n creados correctamente." - -#: ../../enterprise/meta/advanced/collections.php:191 -#: ../../enterprise/godmode/agentes/collections.php:288 -msgid "Can not re-create collections directories." -msgstr "No se puede volver a crear los directorios de la colecciĆ³n." - -#: ../../enterprise/meta/advanced/collections.php:205 -msgid "To manage collections you must activate centralized management" -msgstr "Para administrar colecciones, active la gestiĆ³n centralizada" - -#: ../../enterprise/meta/advanced/collections.php:218 -#: ../../enterprise/meta/advanced/collections.php:224 -#: ../../godmode/users/user_list.php:402 ../../godmode/users/user_list.php:406 -msgid "Search by username, fullname or email" -msgstr "Buscar por nombre de usuario, nombre completo o email" - -#: ../../enterprise/meta/advanced/collections.php:250 -#: ../../godmode/users/user_list.php:451 -msgid "Users control filter" -msgstr "Filtro de control de usuarios" - -#: ../../enterprise/meta/advanced/collections.php:259 -#: ../../enterprise/godmode/agentes/collections.php:296 -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:364 -#: ../../enterprise/godmode/agentes/collection_manager.php:110 -#: ../../enterprise/godmode/agentes/collections.php:380 -#: ../../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:412 -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:413 -msgid "Delete collection" -msgstr "Eliminar colecciĆ³n" - -#: ../../enterprise/meta/advanced/collections.php:440 -#: ../../enterprise/godmode/agentes/collections.php:420 -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:421 -msgid "Re-Apply changes" -msgstr "Volver a aplicar los cambios" - -#: ../../enterprise/meta/advanced/collections.php:448 -#: ../../enterprise/godmode/agentes/collections.php:428 -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:429 -msgid "Apply changes" -msgstr "Aplicar cambios" - -#: ../../enterprise/meta/advanced/collections.php:454 -#: ../../enterprise/godmode/agentes/collections.php:434 -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:439 -#: ../../enterprise/godmode/agentes/collections.php:440 -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:460 -msgid "Re-create directories" -msgstr "Volver a crear directorios" - -#: ../../enterprise/meta/advanced/metasetup.visual.php:98 -#: ../../godmode/setup/setup.php:137 ../../godmode/setup/setup.php:266 -#: ../../godmode/menu.php:337 -msgid "Visual styles" -msgstr "Estilos visuales" - -#: ../../enterprise/meta/advanced/metasetup.visual.php:109 -#: ../../godmode/setup/setup_visuals.php:1257 -msgid "Example" -msgstr "Ejemplo" - -#: ../../enterprise/meta/advanced/metasetup.visual.php:136 -#: ../../godmode/setup/setup_visuals.php:1275 -msgid "Timestamp, time comparison, or compact mode" -msgstr "Marca horaria, comparaciĆ³n horaria o modo compacto" - -#: ../../enterprise/meta/advanced/metasetup.visual.php:139 -#: ../../godmode/setup/setup_visuals.php:1277 -msgid "Comparation in rollover" -msgstr "Fecha en comparaciĆ³n" - -#: ../../enterprise/meta/advanced/metasetup.visual.php:148 -#: ../../godmode/setup/setup_visuals.php:1278 -msgid "Timestamp in rollover" -msgstr "Fecha literal" - -#: ../../enterprise/meta/advanced/metasetup.visual.php:157 -#: ../../godmode/setup/setup_visuals.php:1279 -msgid "Compact mode" -msgstr "Modo compacto" - -#: ../../enterprise/meta/advanced/metasetup.visual.php:197 -msgid "Data precision for reports and visual consoles" -msgstr "PrecisiĆ³n de datos para informes y consolas visuales" - -#: ../../enterprise/meta/advanced/metasetup.visual.php:200 -msgid "Precision must be a integer number between 0 and 5" -msgstr "La precisiĆ³n debe ser un nĆŗmero entero entre 0 y 5" - -#: ../../enterprise/meta/advanced/metasetup.visual.php:219 -msgid "Show percentile 95 in graphs" -msgstr "Mostrar el percentil 95 en los grĆ”ficos" - -#: ../../enterprise/meta/advanced/metasetup.visual.php:291 -#: ../../godmode/setup/setup_visuals.php:951 -msgid "On Boolean graphs" -msgstr "En grĆ”ficos booleanos" - -#: ../../enterprise/meta/advanced/metasetup.visual.php:294 -msgid "Graph TIP view" -msgstr "Visor de grĆ”fico TIP" - -#: ../../enterprise/meta/advanced/metasetup.visual.php:295 -msgid "This option may cause performance issues" -msgstr "Esta opciĆ³n puede generar problemas de rendimiento" - -#: ../../enterprise/meta/advanced/metasetup.visual.php:309 -#: ../../godmode/setup/setup_visuals.php:970 -msgid "Show only average by default" -msgstr "Mostrar solo la media por defecto" - -#: ../../enterprise/meta/advanced/metasetup.visual.php:310 -#: ../../godmode/setup/setup_visuals.php:971 -msgid "Show MAX/AVG/MIN by default" -msgstr "Mostrar MƁX/MEDIA/MƍN por defecto" - -#: ../../enterprise/meta/advanced/metasetup.visual.php:312 -#: ../../godmode/setup/setup_visuals.php:967 -msgid "Graph mode" -msgstr "Modo de grĆ”fico" - -#: ../../enterprise/meta/advanced/metasetup.visual.php:332 -#: ../../godmode/setup/setup_visuals.php:986 -msgid "Zoom graphs:" -msgstr "GrĆ”ficas ampliadas:" - -#: ../../enterprise/meta/advanced/metasetup.visual.php:346 -#: ../../godmode/setup/setup_visuals.php:901 -msgid "Type of module charts" -msgstr "Tipo de grĆ”ficos de mĆ³dulos" - -#: ../../enterprise/meta/advanced/metasetup.visual.php:369 -msgid "The number of elements retrieved for each instance in some views." -msgstr "NĆŗmero de elementos recuperados para cada instancia en algunas vistas" - -#: ../../enterprise/meta/advanced/metasetup.visual.php:390 -msgid "Add new custom value to intervals" -msgstr "AƱadir nuevo valor personalizado para intervalos" - -#: ../../enterprise/meta/advanced/metasetup.visual.php:505 -msgid "" -"You can place your favicon into the folder images/custom_favicon/. This file " -"should be in .ico format with a size of 16x16." -msgstr "" -"Puede poner su favicon en la carpeta images/custom_favicon/. Este archivo debe " -"estar en formato .ico y tener un tamaƱo de 16x16." - -#: ../../enterprise/meta/advanced/metasetup.visual.php:531 -#: ../../godmode/setup/setup_visuals.php:212 -msgid "Custom background logo" -msgstr "Fondo del logo personalizado" - -#: ../../enterprise/meta/advanced/metasetup.visual.php:533 -msgid "You can place your custom images into the folder images/backgrounds/" -msgstr "Puedes poner tus propias imĆ”genes en el directorio images/backgrounds/" - -#: ../../enterprise/meta/advanced/metasetup.visual.php:576 -#: ../../godmode/setup/setup_visuals.php:279 -msgid "Custom logo (menu)" -msgstr "Logo personalizado (menu)" - -#: ../../enterprise/meta/advanced/metasetup.visual.php:607 -#: ../../godmode/setup/setup_visuals.php:284 -msgid "Custom logo collapsed (menu)" -msgstr "Icono menĆŗ reducido" - -#: ../../enterprise/meta/advanced/metasetup.visual.php:638 -#: ../../godmode/setup/setup_visuals.php:289 -msgid "Custom logo (header white background)" -msgstr "Logo personalizado (fondo blanco de cabecera)" - -#: ../../enterprise/meta/advanced/metasetup.visual.php:667 -#: ../../godmode/setup/setup_visuals.php:328 -msgid "Custom logo (login)" -msgstr "Logo personalizado (inicio de sesiĆ³n)" - -#: ../../enterprise/meta/advanced/metasetup.visual.php:696 -#: ../../godmode/setup/setup_visuals.php:367 -msgid "Custom Splash (login)" -msgstr "Splash personalizado (inicio de sesiĆ³n)" - -#: ../../enterprise/meta/advanced/metasetup.visual.php:746 -#: ../../godmode/setup/setup_visuals.php:471 -msgid "Title (header)" -msgstr "TĆ­tulo (encabezado)" - -#: ../../enterprise/meta/advanced/metasetup.visual.php:750 -#: ../../godmode/setup/setup_visuals.php:476 -msgid "Subtitle (header)" -msgstr "SubtĆ­tulo (encabezado)" - -#: ../../enterprise/meta/advanced/metasetup.visual.php:754 -#: ../../godmode/setup/setup_visuals.php:482 -msgid "Title 1 (login)" -msgstr "TĆ­tulo 1 (inicio de sesiĆ³n)" - -#: ../../enterprise/meta/advanced/metasetup.visual.php:765 -#: ../../godmode/setup/setup_visuals.php:489 -msgid "Title 2 (login)" -msgstr "TĆ­tulo 2 (inicio de sesiĆ³n)" - -#: ../../enterprise/meta/advanced/metasetup.visual.php:815 -msgid "Graphs font family" -msgstr "Familia tipogrĆ”fica de las grĆ”ficas" - -#: ../../enterprise/meta/advanced/metasetup.visual.php:836 -#: ../../godmode/setup/setup_visuals.php:1020 -msgid "Legacy Visual Console View" -msgstr "Vista de la consola visual heredada" - -#: ../../enterprise/meta/advanced/metasetup.visual.php:838 -msgid "To use the old view when using the Visual Console visor" -msgstr "Para usar la vista antigua al utilizar el visor de la Consola visual" - -#: ../../enterprise/meta/advanced/metasetup.visual.php:857 -#: ../../godmode/setup/setup_visuals.php:1038 -msgid "Default cache expiration" -msgstr "Caducidad del cachĆ© por defecto" - -#: ../../enterprise/meta/advanced/metasetup.visual.php:877 -msgid "This interval will affect to Visual Console pages" -msgstr "Este intervalo afectarĆ” todas las pĆ”ginas de la consola visual." - -#: ../../enterprise/meta/advanced/metasetup.visual.php:903 -#: ../../godmode/setup/setup_visuals.php:1451 -msgid "Data multiplier to use in graphs/data" -msgstr "Multiplicador de datos para usar en grĆ”ficas/datos" - -#: ../../enterprise/meta/advanced/metasetup.visual.php:907 -#: ../../godmode/setup/setup_visuals.php:1453 -msgid "Use 1024 when module unit are bytes" -msgstr "Utilizar 1024 cuando la unidad del mĆ³dulo sea bytes" - -#: ../../enterprise/meta/advanced/metasetup.visual.php:908 -#: ../../godmode/setup/setup_visuals.php:1454 -msgid "Use always 1000" -msgstr "Utilizar siempre 1000" - -#: ../../enterprise/meta/advanced/metasetup.visual.php:909 -#: ../../godmode/setup/setup_visuals.php:1455 -msgid "Use always 1024" -msgstr "Utilizar siempre 1024" - -#: ../../enterprise/meta/advanced/metasetup.visual.php:933 -msgid "Reports configuration" -msgstr "ConfiguraciĆ³n de informes" - -#: ../../enterprise/meta/advanced/metasetup.visual.php:939 -#: ../../godmode/setup/setup_visuals.php:1097 -msgid "Show report info with description" -msgstr "Mostrar la informaciĆ³n del informe con la descripciĆ³n" - -#: ../../enterprise/meta/advanced/metasetup.visual.php:940 -msgid "" -"Custom report description info. It will be applied to all reports and " -"templates by default." -msgstr "" -"DescripciĆ³n del informe personalizado. SerĆ” aplicado a todas las plantillas e " -"informes por defecto." - -#: ../../enterprise/meta/advanced/metasetup.visual.php:951 -#: ../../godmode/setup/setup_visuals.php:1106 -msgid "Custom report front page" -msgstr "Portada de informe personalizado" - -#: ../../enterprise/meta/advanced/metasetup.visual.php:952 -msgid "" -"Custom report front page. It will be applied to all reports and templates by " -"default." -msgstr "" -"Portada de informe personalizado. Se aplicarĆ” por defecto a todos los informes " -"y plantillas." - -#: ../../enterprise/meta/advanced/metasetup.visual.php:971 -msgid "" -"This is the height in pixels of the module graph or custom graph in the " -"reports (only: HTML)" -msgstr "" -"Esta es la altura en pixeles de la grĆ”fica de mĆ³dulos o la grĆ”fica " -"personalizada en los informes (solo HTML)" - -#: ../../enterprise/meta/advanced/metasetup.visual.php:1038 -msgid "" -"A long interval description is for example 10 hours, 20 minutes 33 secondsĆ¢Ā€Ā, a " -"short one is 10h 20m 33s" -msgstr "" -"Una descripciĆ³n larga del intervalo dura por ejemplo 10 horas, 20 minutos 33 " -"segundosĆ¢Ā€Ā, una corta es 10h 20m 33s" - -#: ../../enterprise/meta/advanced/metasetup.visual.php:1054 -#: ../../enterprise/godmode/reporting/reporting_builder.advanced.php:128 -#: ../../enterprise/godmode/reporting/reporting_builder.template_advanced.php:131 -msgid "" -"The path of custom logos is 'images/custom_logo' in the console installation. " -"You can upload more files (ONLY JPEG AND PNG) with the upload tool." -msgstr "" -"La ruta de los logos personalizados es \"images/custom_logo\" en la " -"instalaciĆ³n de la consola. Puede aƱadir mĆ”s archivos (SOLO JPEG Y PNG) con la " -"herramienta de aƱadir." - -#: ../../enterprise/meta/advanced/metasetup.visual.php:1318 -#: ../../godmode/setup/setup_visuals.php:1752 -msgid "Logo preview" -msgstr "Logo de vista previa" - -#: ../../enterprise/meta/advanced/metasetup.visual.php:1340 -#: ../../godmode/setup/setup_visuals.php:1782 -msgid "Splash Preview" -msgstr "Vista previa de Splash" - -#: ../../enterprise/meta/advanced/metasetup.visual.php:1345 -#: ../../godmode/setup/setup_visuals.php:1806 -msgid "Background preview" -msgstr "Vista previa del fondo" - -#: ../../enterprise/meta/advanced/links.php:47 ../../godmode/setup/links.php:42 -msgid "There was a problem creating link" -msgstr "Error al crear el enlace" - -#: ../../enterprise/meta/advanced/links.php:60 -msgid "The link was not updated, the data is identical" -msgstr "No se ha actualizado el link, los datos son idĆ©nticos" - -#: ../../enterprise/meta/advanced/links.php:68 ../../godmode/setup/links.php:61 -msgid "There was a problem modifying link" -msgstr "Error al modificar el enlace" - -#: ../../enterprise/meta/advanced/links.php:82 ../../godmode/setup/links.php:74 -msgid "There was a problem deleting link" -msgstr "Error al borrar el enlace" - -#: ../../enterprise/meta/advanced/links.php:100 -msgid "Link Name error" -msgstr "Error en el nombre de link" - -#: ../../enterprise/meta/advanced/links.php:127 -#: ../../enterprise/meta/advanced/links.php:156 ../../godmode/setup/links.php:116 -#: ../../godmode/setup/links.php:145 -msgid "Link name" -msgstr "Nombre del enlace" - -#: ../../enterprise/meta/advanced/links.php:130 -#: ../../enterprise/godmode/policies/policy_linking.php:204 -#: ../../godmode/setup/links.php:119 -msgid "Link" -msgstr "Enlace" - -#: ../../enterprise/meta/advanced/links.php:152 ../../godmode/setup/links.php:141 -msgid "There isn't links" -msgstr "No hay enlaces" - -#: ../../enterprise/meta/index.php:848 -#, php-format -msgid "" -"System is not centralised, please go to %s to perform a database merge process." -msgstr "" -"El sistema no estĆ” centralizado, vaya a %s para realizar un proceso de fusiĆ³n " -"de bases de datos." - -#: ../../enterprise/meta/index.php:916 -#, php-format -msgid "There are nodes with different MR than this (%d):" -msgstr "Hay nodos con RM diferente a esta (%d):" - -#: ../../enterprise/meta/agentsearch.php:121 -msgid "Search results for" -msgstr "Buscar resultados para" - -#: ../../enterprise/meta/agentsearch.php:301 -msgid "There are no agents included in this group" -msgstr "No hay ningĆŗn agente en este grupo" - -#: ../../enterprise/meta/agentsearch.php:450 -msgid "There are no policies included in this group" -msgstr "No hay polĆ­ticas incluidas en este grupo" - -#: ../../enterprise/extensions/disabled/check_acls.php:16 -msgid "ACL users for this agent" -msgstr "Usuarios ACL para este agente" - -#: ../../enterprise/extensions/disabled/check_acls.php:49 -#: ../../enterprise/extensions/disabled/check_acls.php:136 -msgid "Agents reading" -msgstr "Lectura de agentes" - -#: ../../enterprise/extensions/disabled/check_acls.php:51 -#: ../../enterprise/extensions/disabled/check_acls.php:138 -msgid "Agents disable" -msgstr "Deshabilitar agentes" - -#: ../../enterprise/extensions/disabled/check_acls.php:52 -#: ../../enterprise/extensions/disabled/check_acls.php:139 -msgid "Alerts editing" -msgstr "EdiciĆ³n de alertas" - -#: ../../enterprise/extensions/disabled/check_acls.php:53 -#: ../../enterprise/extensions/disabled/check_acls.php:140 -#: ../../godmode/menu.php:125 -msgid "Users management" -msgstr "GestiĆ³n de usuarios" - -#: ../../enterprise/extensions/disabled/check_acls.php:54 -#: ../../enterprise/extensions/disabled/check_acls.php:141 -msgid "Database management" -msgstr "GestiĆ³n de la BD" - -#: ../../enterprise/extensions/disabled/check_acls.php:55 -#: ../../enterprise/extensions/disabled/check_acls.php:142 -msgid "Alerts management" -msgstr "GestiĆ³n de alertas" - -#: ../../enterprise/extensions/disabled/check_acls.php:56 -#: ../../enterprise/extensions/disabled/check_acls.php:143 -msgid "Reports reading" -msgstr "Lectura de informes" - -#: ../../enterprise/extensions/disabled/check_acls.php:57 -#: ../../enterprise/extensions/disabled/check_acls.php:144 -msgid "Reports writing" -msgstr "Escritura de informes" - -#: ../../enterprise/extensions/disabled/check_acls.php:58 -#: ../../enterprise/extensions/disabled/check_acls.php:145 -msgid "Reports management" -msgstr "GestiĆ³n de informes" - -#: ../../enterprise/extensions/disabled/check_acls.php:59 -#: ../../enterprise/extensions/disabled/check_acls.php:146 -msgid "Events reading" -msgstr "Lectura de eventos" - -#: ../../enterprise/extensions/disabled/check_acls.php:60 -#: ../../enterprise/extensions/disabled/check_acls.php:147 -msgid "Events writing" -msgstr "Escritura de eventos" - -#: ../../enterprise/extensions/disabled/check_acls.php:61 -#: ../../enterprise/extensions/disabled/check_acls.php:148 -msgid "Events management" -msgstr "GestiĆ³n de eventos" - -#: ../../enterprise/extensions/disabled/check_acls.php:62 -#: ../../enterprise/extensions/disabled/check_acls.php:149 -msgid "Systems management" -msgstr "GestiĆ³n de sistemas" - -#: ../../enterprise/extensions/disabled/check_acls.php:112 -msgid "There are no defined users" -msgstr "No hay usuarios definidos" - -#: ../../enterprise/extensions/disabled/check_acls.php:134 -#: ../../godmode/menu.php:117 -msgid "Module tags" -msgstr "Etiquetas de mĆ³dulos" - -#: ../../enterprise/extensions/disabled/check_acls.php:197 -msgid "ACL module tags for the modules in this agent" -msgstr "Etiquetas del mĆ³dulo de ACL para los mĆ³dulos de este agente" - -#: ../../enterprise/extensions/disabled/check_acls.php:208 -msgid "Only admin users can see this section." -msgstr "Solo los usuarios administradores pueden ver esta secciĆ³n." - -#: ../../enterprise/extensions/disabled/check_acls.php:215 -msgid "Check ACL" -msgstr "Comprobar ACL" - -#: ../../enterprise/extensions/csv_import_group/main.php:23 -#: ../../enterprise/extensions/csv_import_group.php:69 -msgid "CSV import group" -msgstr "Importar grupos de CSV" - -#: ../../enterprise/extensions/csv_import_group/main.php:48 -#, php-format -msgid "Created group %s" -msgstr "Grupo creado %s" - -#: ../../enterprise/extensions/csv_import_group/main.php:49 -#, php-format -msgid "Could not create group %s" -msgstr "No se pudo crear el grupo %s" - -#: ../../enterprise/extensions/csv_import_group/main.php:56 -msgid "File processed" -msgstr "Archivo procesado" - -#: ../../enterprise/extensions/csv_import_group/main.php:59 -msgid "Please syncronize groups to nodes" -msgstr "Sincronice los grupos con los nodos" - -#: ../../enterprise/extensions/resource_registration/functions.php:61 -#, php-format -msgid "Error create '%s' policy, the name exist and there aren't free name." -msgstr "" -"Error al crear la polĆ­tica '%s', el nombre ya existe. Ese nombre no estĆ” " -"disponible." - -#: ../../enterprise/extensions/resource_registration/functions.php:69 -#, php-format -msgid "Warning create '%s' policy, the name exist, the policy have a name %s." -msgstr "" -"PolĆ­tica de advertencia '%s' creada, el nombre existe, la polĆ­tica tiene el " -"nombre %s." - -#: ../../enterprise/extensions/resource_registration/functions.php:78 -msgid "Error the policy haven't name." -msgstr "Error: la polĆ­tica no tiene nombre." - -#: ../../enterprise/extensions/resource_registration/functions.php:99 -#, php-format -msgid "Success create '%s' policy." -msgstr "PolĆ­tica '%s' creada correctamente" - -#: ../../enterprise/extensions/resource_registration/functions.php:100 -#, php-format -msgid "Error create '%s' policy." -msgstr "Error al crear la polĆ­tica '%s'" - -#: ../../enterprise/extensions/resource_registration/functions.php:142 -#, php-format -msgid "Error add '%s' agent. The agent does not exist" -msgstr "Error al aƱadir el agente '%s'. El agente no existe" - -#: ../../enterprise/extensions/resource_registration/functions.php:147 -#, php-format -msgid "Success add '%s' agent." -msgstr "Agente '%s' aƱadido correctamente" - -#: ../../enterprise/extensions/resource_registration/functions.php:148 -#, php-format -msgid "Error add '%s' agent." -msgstr "Error al aƱadir el agente '%s'" - -#: ../../enterprise/extensions/resource_registration/functions.php:167 -msgid "The collection does not exist" -msgstr "La colecciĆ³n no existe" - -#: ../../enterprise/extensions/resource_registration/functions.php:172 -#, php-format -msgid "Success add '%s' collection." -msgstr "ColecciĆ³n '%s' aƱadida correctamente" - -#: ../../enterprise/extensions/resource_registration/functions.php:173 -#, php-format -msgid "Error add '%s' collection." -msgstr "Error al aƱadir colecciĆ³n '%s'" - -#: ../../enterprise/extensions/resource_registration/functions.php:191 -#, php-format -msgid "Success add '%s' agent plugin." -msgstr "Plugin de agente '%s' aƱadido correctamente" - -#: ../../enterprise/extensions/resource_registration/functions.php:192 -#, php-format -msgid "Error add '%s' agent plugin." -msgstr "Error al aƱadir el plugin de agente '%s'" - -#: ../../enterprise/extensions/resource_registration/functions.php:205 -msgid "Error add the module, haven't type." -msgstr "Error al aƱadir el mĆ³dulo. No tiene tipo." - -#: ../../enterprise/extensions/resource_registration/functions.php:411 -#: ../../enterprise/extensions/resource_registration/functions.php:480 -#: ../../enterprise/extensions/resource_registration/functions.php:581 -#: ../../enterprise/extensions/resource_registration/functions.php:637 -msgid "Error add the module, error in tag component." -msgstr "Error al aƱadir el mĆ³dulo, error en el componente etiqueta." - -#: ../../enterprise/extensions/resource_registration/functions.php:693 -msgid "Error add the module plugin importation, plugin is not registered" -msgstr "Error al importar el plugin del mĆ³dulo; el plugin no estĆ” registrado." - -#: ../../enterprise/extensions/resource_registration/functions.php:703 -#, php-format -msgid "Success add '%s' module." -msgstr "MĆ³dulo '%s' aƱadido correctamente" - -#: ../../enterprise/extensions/resource_registration/functions.php:704 -#, php-format -msgid "Error add '%s' module." -msgstr "Error al aƱadir el mĆ³dulo '%s'" - -#: ../../enterprise/extensions/resource_registration/functions.php:718 -#, php-format -msgid "Error add the alert, the template '%s' don't exist." -msgstr "Error al aƱadir la alerta, la plantilla '%s' no existe." - -#: ../../enterprise/extensions/resource_registration/functions.php:731 -#: ../../enterprise/extensions/resource_registration/functions.php:749 -#, php-format -msgid "Error add the alert, the module '%s' don't exist." -msgstr "Error al aƱadir la alerta, el mĆ³dulo '%s' no existe." - -#: ../../enterprise/extensions/resource_registration/functions.php:771 -#, php-format -msgid "Success add '%s' alert." -msgstr "Alerta '%s' aƱadida correctamente" - -#: ../../enterprise/extensions/resource_registration/functions.php:772 -#, php-format -msgid "Error add '%s' alert." -msgstr "Error al aƱadir alerta '%s'" - -#: ../../enterprise/extensions/resource_registration/functions.php:798 -#, php-format -msgid "Error add the alert, the action '%s' don't exist." -msgstr "Error al aƱadir alerta; la acciĆ³n '%s' no existe." - -#: ../../enterprise/extensions/resource_registration/functions.php:817 -#, php-format -msgid "Success add '%s' action." -msgstr "AcciĆ³n '%s' aƱadida correctamente" - -#: ../../enterprise/extensions/resource_registration/functions.php:818 -#: ../../extensions/resource_registration.php:436 -#: ../../extensions/resource_registration.php:458 -#: ../../extensions/resource_registration.php:469 -#, php-format -msgid "Error add '%s' action." -msgstr "Error al aƱadir la acciĆ³n '%s'" - -#: ../../enterprise/extensions/resource_registration/functions.php:854 -msgid "The inventory module does not exist" -msgstr "El mĆ³dulo de inventario no existe" - -#: ../../enterprise/extensions/resource_registration/functions.php:859 -#, php-format -msgid "Success add '%s' inventory module." -msgstr "Ɖxito agregar el mĆ³dulo de inventario '%s'." - -#: ../../enterprise/extensions/resource_registration/functions.php:860 -#, php-format -msgid "Error add '%s' inventory module." -msgstr "Error al agregar el mĆ³dulo de inventario '%s'." - -#: ../../enterprise/extensions/translate_string.php:168 -#: ../../enterprise/extensions/translate_string.php:380 -msgid "Translate string" -msgstr "Traducir cadena" - -#: ../../enterprise/extensions/vmware.php:46 -msgid "Failed to initialize VMware extension." -msgstr "Error al inicializar la extensiĆ³n VMware" - -#: ../../enterprise/extensions/vmware.php:89 -msgid "VMware View" -msgstr "Vista VMware" - -#: ../../enterprise/extensions/csv_import_group.php:50 -#, php-format -msgid "" -"This node is configured with centralized mode. All group information is read " -"only. Go to %s to import the CSV." -msgstr "" -"Este nodo se configura con el modo centralizado. Toda la informaciĆ³n del grupo " -"es de solo lectura. Vaya a %s para importar el CSV." - -#: ../../enterprise/extensions/csv_import_group.php:83 -msgid "CSV group import" -msgstr "ImportaciĆ³n de grupo CSV" - -#: ../../enterprise/extensions/resource_exportation/functions.php:20 -msgid "Export agents" -msgstr "Exportar agentes" - -#: ../../enterprise/extensions/vmware/vmware_view.php:61 -msgid "Top 5 VMs CPU Usage" -msgstr "Top 5 VMs del uso de CPU" - -#: ../../enterprise/extensions/vmware/vmware_view.php:70 -msgid "Top 5 VMs Memory Usage" -msgstr "Top 5 VMs del uso de memoria" - -#: ../../enterprise/extensions/vmware/vmware_view.php:82 -msgid "Top 5 VMs Provisioning Usage" -msgstr "Top 5 VMs en uso de aprovisionamiento" - -#: ../../enterprise/extensions/vmware/vmware_view.php:91 -msgid "Top 5 VMs Network Usage" -msgstr "Top 5 VMs del uso de la red" - -#: ../../enterprise/extensions/vmware/vmware_view.php:684 -msgid "Host ESX" -msgstr "Host ESX" - -#: ../../enterprise/extensions/vmware/vmware_view.php:1036 -msgid "CPU Usage" -msgstr "Uso de CPU" - -#: ../../enterprise/extensions/vmware/vmware_view.php:1046 -msgid "Memory Usage" -msgstr "Uso de memoria" - -#: ../../enterprise/extensions/vmware/vmware_view.php:1056 -msgid "Disk I/O Rate" -msgstr "Ratio lectura/escritura de disco" - -#: ../../enterprise/extensions/vmware/vmware_view.php:1066 -msgid "Network Usage" -msgstr "Uso de red" - -#: ../../enterprise/extensions/vmware/vmware_view.php:1169 -msgid "Settings updated " -msgstr "Ajustes actualizados " - -#: ../../enterprise/extensions/vmware/vmware_view.php:1171 -msgid "No changes in settings " -msgstr "No hay cambios en los ajustes " - -#: ../../enterprise/extensions/vmware/vmware_view.php:1179 -msgid "CPU usage graphs" -msgstr "GrĆ”ficas de uso de CPU" - -#: ../../enterprise/extensions/vmware/vmware_view.php:1180 -#: ../../enterprise/extensions/vmware/vmware_view.php:1186 -#: ../../enterprise/extensions/vmware/vmware_view.php:1192 -#: ../../enterprise/extensions/vmware/vmware_view.php:1198 -msgid "Force minimum value" -msgstr "Forzar valor mĆ­nimo" - -#: ../../enterprise/extensions/vmware/vmware_view.php:1182 -#: ../../enterprise/extensions/vmware/vmware_view.php:1188 -#: ../../enterprise/extensions/vmware/vmware_view.php:1194 -#: ../../enterprise/extensions/vmware/vmware_view.php:1200 -msgid "Force maximum value" -msgstr "Forzar valor mĆ”ximo" - -#: ../../enterprise/extensions/vmware/vmware_view.php:1185 -msgid "Memory usage graphs" -msgstr "GrĆ”ficos de uso de memoria" - -#: ../../enterprise/extensions/vmware/vmware_view.php:1191 -msgid "Provisioning Usage graphs" -msgstr "GrĆ”ficos de uso de aprovisionamiento" - -#: ../../enterprise/extensions/vmware/vmware_view.php:1197 -msgid "Network usage graphs" -msgstr "GrĆ”ficos de uso de red" - -#: ../../enterprise/extensions/vmware/vmware_view.php:1208 -msgid "Map items" -msgstr "Elementos del mapa" - -#: ../../enterprise/extensions/vmware/vmware_view.php:1209 -msgid "Show datastores" -msgstr "Mostrar datastores" - -#: ../../enterprise/extensions/vmware/vmware_view.php:1216 -msgid "Show ESXis" -msgstr "Mostrar ESXis" - -#: ../../enterprise/extensions/vmware/vmware_view.php:1223 -msgid "Show VMs" -msgstr "Mostrar VMs" - -#: ../../enterprise/extensions/vmware/vmware_view.php:1230 -msgid "Font size (px)" -msgstr "TamaƱo de fuente (px)" - -#: ../../enterprise/extensions/vmware/vmware_view.php:1232 -msgid "Node radius (px)" -msgstr "Radio del nodo (px)" - -#: ../../enterprise/extensions/vmware/vmware_view.php:1234 -msgid "Node separation (rate)" -msgstr "SeparaciĆ³n de nodos (tasa)" - -#: ../../enterprise/extensions/vmware/vmware_view.php:1239 -msgid "" -"Looking for VMware configuration? You can configure several tasks using " -"Discovery Applications." -msgstr "" -"ĀæEstĆ” buscando la configuraciĆ³n VMware? Puede configurar varias tareas usando " -"las aplicaciones de Discovery." - -#: ../../enterprise/extensions/vmware/vmware_view.php:1247 -msgid "Graph settings" -msgstr "Ajustes de grĆ”fico" - -#: ../../enterprise/extensions/vmware/vmware_view.php:1252 -msgid "Map settings" -msgstr "Ajustes del mapa" - -#: ../../enterprise/extensions/vmware/vmware_view.php:1296 -#: ../../enterprise/extensions/vmware/vmware_view.php:1368 -msgid "Welcome" -msgstr "Bienvenid@" - -#: ../../enterprise/extensions/vmware/vmware_view.php:1327 -msgid "ESX Detail" -msgstr "Detalle de ESX" - -#: ../../enterprise/extensions/vmware/vmware_view.php:1358 -msgid "ESX details" -msgstr "Detalles de ESX" - -#: ../../enterprise/extensions/vmware/vmware_view.php:1363 -msgid "VMware view options" -msgstr "Opciones de la vista de VMware" - -#: ../../enterprise/extensions/vmware/vmware_view.php:1399 -msgid "VMWare" -msgstr "VMware" - -#: ../../enterprise/extensions/vmware/vmware_view.php:1504 -msgid "" -"Some ESX Hosts are not up to date, please check VMware plugin configuration." -msgstr "" -"Algunos hosts ESX no estĆ”n actualizados. Compruebe la configuraciĆ³n del plugin " -"VMware." - -#: ../../enterprise/extensions/vmware/vmware_view.php:1506 -msgid "VMware plugin is working." -msgstr "El plugin de VMware estĆ” en funcionamiento." - -#: ../../enterprise/extensions/vmware/vmware_view.php:1515 -msgid "View VMware map" -msgstr "Vista del mapa VMware" - -#: ../../enterprise/extensions/vmware/vmware_view.php:1516 -msgid "View VMware dashboard" -msgstr "Vista del panel VMware" - -#: ../../enterprise/extensions/vmware/vmware_view.php:1517 -msgid "View ESX Host statistics from" -msgstr "Ver estadĆ­sticas del host ESX desde" - -#: ../../enterprise/extensions/vmware/vmware_view.php:1524 -msgid "There are no VMware information detected in this environment." -msgstr "No se ha detectado informaciĆ³n VMware en este entorno." - -#: ../../enterprise/extensions/vmware/vmware_view.php:1525 -msgid "You can configure several tasks using Discovery Applications at " -msgstr "Puede configurar diversas tareas usando las aplicaciones Discovery en " - -#: ../../enterprise/extensions/vmware/vmware_view.php:1734 -#, php-format -msgid "" -"This map is a quick representation of all your VMware entities detected. You " -"can create a custom VMware map by defining a network map based on your VMware " -"discovery task %s" -msgstr "" -"Este mapa es una representaciĆ³n rĆ”pida de todas las entidades VMWare " -"detectadas. Puede crear un mapa VMWare personalizado definiendo un mapa de red " -"basado en sus tareas de descubrimiento VMWare %s" - -#: ../../enterprise/extensions/vmware/vmware_view.php:1744 -msgid "Show Datastores" -msgstr "Mostrar datastores" - -#: ../../enterprise/extensions/vmware/vmware_view.php:1747 -msgid "Show ESX" -msgstr "Mostrar ESX" - -#: ../../enterprise/extensions/vmware/vmware_view.php:1750 -msgid "Show VM" -msgstr "Mostrar VM" - -#: ../../enterprise/extensions/vmware/vmware_view.php:1754 -#: ../../godmode/reporting/visual_console_builder.wizard.php:215 -msgid "Font" -msgstr "Fuente" - -#: ../../enterprise/extensions/vmware/vmware_view.php:1772 -msgid "View options" -msgstr "Ver opciones" - -#: ../../enterprise/extensions/vmware/vmware_manager.php:227 -msgid "Power Status: " -msgstr "Estado: " - -#: ../../enterprise/extensions/vmware/vmware_manager.php:273 -msgid "Change Status" -msgstr "Cambiar estado:" - -#: ../../enterprise/load_html_extra.php:202 -msgid "Activate license" -msgstr "Activar la licencia" - -#: ../../enterprise/load_html_extra.php:203 -msgid "Your request key is:" -msgstr "Tu clave es:" - -#: ../../enterprise/load_html_extra.php:206 -#, php-format -msgid "" -"You can activate it manually
here or " -"automatically filling the form below:" -msgstr "" -"Lo puedes activar manualmente aquĆ­ o " -"automĆ”ticamente rellenando el siguiente formulario:" - -#: ../../enterprise/load_html_extra.php:213 -msgid "Auth Key:" -msgstr "Clave de autentificaciĆ³n:" - -#: ../../enterprise/load_html_extra.php:221 -#: ../../enterprise/load_html_extra.php:240 -msgid "Online validation" -msgstr "ValidaciĆ³n en lĆ­nea" - -#: ../../enterprise/load_html_extra.php:233 -msgid "ERROR:" -msgstr "ERROR:" - -#: ../../enterprise/load_html_extra.php:233 -msgid "When connecting to licence server." -msgstr "Al conectar con el servidor de licencias." - -#: ../../enterprise/load_enterprise.php:559 ../../godmode/setup/license.php:83 -msgid "License updated" -msgstr "Licencia actualizada" - -#: ../../enterprise/load_enterprise.php:560 -msgid "Failed while updating license." -msgstr "Error al actualizar la licencia." - -#: ../../enterprise/load_enterprise.php:585 -#: ../../enterprise/load_enterprise.php:650 -msgid "Invalid licence." -msgstr "Licencia no vĆ”lida" - -#: ../../enterprise/load_enterprise.php:585 -msgid "Please contact your system administrator." -msgstr "Por favor, contacta con el administrador del sistema." - -#: ../../enterprise/load_enterprise.php:650 -#, php-format -msgid "Please contact %s for a valid licence." -msgstr "PĆ³ngase en contacto con %s para obtener una licencia vĆ”lida." - -#: ../../enterprise/load_enterprise.php:651 -#, php-format -msgid "Or disable %s enterprise" -msgstr "O desabilite %s enterprise" - -#: ../../enterprise/load_enterprise.php:753 -#: ../../enterprise/load_enterprise.php:1048 -msgid "Request new licence" -msgstr "Solicitar una nueva licencia" - -#: ../../enterprise/load_enterprise.php:832 -msgid "" -"Metaconsole unreached

This " -"node has a metaconsole license and cannot contact with the metaconsole." -msgstr "" -"No se pudo conectar con la Metaconsola

Este nodo tiene una licencia de Metaconsola pero no pudo " -"establecer contacto." - -#: ../../enterprise/load_enterprise.php:849 -#: ../../enterprise/load_enterprise.php:855 -#: ../../enterprise/load_enterprise.php:871 -#, php-format -msgid "" -"License exceeded

This " -"license allows %d agents and you have %d agents configured." -msgstr "" -"Ha excedido los tƩrminos de la licencia

Esta licencia permite %d agentes y tiene %d agentes " -"configurados." - -#: ../../enterprise/load_enterprise.php:850 -#: ../../enterprise/load_enterprise.php:857 -#: ../../enterprise/load_enterprise.php:866 -#: ../../enterprise/load_enterprise.php:873 -#: ../../enterprise/load_enterprise.php:885 -#, php-format -msgid "Please contact %s to extend the license." -msgstr "PĆ³ngase en contacto con %s para ampliar la licencia." - -#: ../../enterprise/load_enterprise.php:856 -#: ../../enterprise/load_enterprise.php:858 -#: ../../enterprise/load_enterprise.php:872 -#: ../../enterprise/load_enterprise.php:874 -#: ../../enterprise/load_enterprise.php:901 -#: ../../enterprise/load_enterprise.php:907 -msgid "" -"This console will work in limited mode. Enterprise features will not function." -msgstr "" -"Esta consola funcionarĆ” en modo limitado. Las funcionalidades Enterprise no " -"funcionarĆ”n." - -#: ../../enterprise/load_enterprise.php:865 -#, php-format -msgid "" -"License exceeded

This " -"license allows %d agents and you have %d agents configured." -msgstr "" -"Licencia superada

Esta " -"licencia permite %d agentes y tiene %d agentes configurados." - -#: ../../enterprise/load_enterprise.php:884 -#, php-format -msgid "" -"License exceeded

This " -"license allows %d modules and you have %d modules configured." -msgstr "" -"Ha excedido los tƩrminos de la licencia

Esta licencia permite %d mĆ³dulos y tiene %d mĆ³dulos " -"configurados." - -#: ../../enterprise/load_enterprise.php:894 -#: ../../enterprise/load_enterprise.php:900 -msgid "" -"This license has expired. " -"

You can not get updates until you renew the license." -msgstr "" -"Licencia caducada.

No " -"podrĆ”s actualizar Pandora FMS hasta que no renueves la licencia." - -#: ../../enterprise/load_enterprise.php:895 -#: ../../enterprise/load_enterprise.php:902 -#, php-format -msgid "Please contact %s to renew the license." -msgstr "PĆ³ngase en contacto con %s para renovar la licencia." - -#: ../../enterprise/load_enterprise.php:905 -#: ../../enterprise/load_enterprise.php:1044 -msgid "Renew" -msgstr "Renovar" - -#: ../../enterprise/load_enterprise.php:914 -#, php-format -msgid "" -"This license is outside of support. " -"

This %s installation will continue working normally and without " -"limitations, but without support or updates." -msgstr "" -"Esta licencia no incluye soporte. " -"

La instalaciĆ³n de %s continuarĆ” funcionando con normalidad y sin " -"lĆ­mites, pero sin soporte ni actualizaciones." - -#: ../../enterprise/godmode/setup/setup.php:48 -msgid "Yes and change status" -msgstr "SĆ­ y cambiar estado" - -#: ../../enterprise/godmode/setup/setup.php:56 -msgid "Yes without changing status" -msgstr "SĆ­, sin cambiar estado" - -#: ../../enterprise/godmode/setup/setup.php:124 -msgid "Seconds" -msgstr "Segundos" - -#: ../../enterprise/godmode/setup/setup.php:144 -msgid "Last replication at" -msgstr "ƚltima replicaciĆ³n a" - -#: ../../enterprise/godmode/setup/setup.php:146 -msgid "No replication yet" -msgstr "Sin replicaciĆ³n todavĆ­a" - -#: ../../enterprise/godmode/setup/setup.php:160 -msgid "Only validated events" -msgstr "Solo eventos validados" - -#: ../../enterprise/godmode/setup/setup.php:175 -msgid "Metaconsole DB engine" -msgstr "Motor BD de la Metaconsola" - -#: ../../enterprise/godmode/setup/setup.php:193 -msgid "Metaconsole DB host" -msgstr "Host BD Metaconsola" - -#: ../../enterprise/godmode/setup/setup.php:207 -msgid "Metaconsole DB name" -msgstr "Nombre BD Metaconsola" - -#: ../../enterprise/godmode/setup/setup.php:221 -msgid "Metaconsole DB user" -msgstr "Usuario BD Metaconsola" - -#: ../../enterprise/godmode/setup/setup.php:235 -msgid "Metaconsole DB password" -msgstr "ContraseƱa BD Metaconsola" - -#: ../../enterprise/godmode/setup/setup.php:275 -msgid "Events Configuration Information" -msgstr "InformaciĆ³n de configuraciĆ³n de evntos" - -#: ../../enterprise/godmode/setup/setup.php:277 -msgid "" -" If you are replicating events, events validated or deleted on the metaconsole " -"WILL NOT be deleted or validated here. This option is just to allow local " -"pandora users to see events, but not to operate with them. Operation, when " -"event replication is enabled, should be done only in metaconsole" -msgstr "" -" Si estĆ” replicando eventos, los eventos validados o eliminados en la " -"Metaconsola NO se eliminarĆ”n o validarĆ”n aquĆ­. Esta opciĆ³n solo permite a los " -"usuarios locales de Pandora FMS ver los eventos, pero gestionarlos.\r\n" -"Su gestiĆ³n solo puede llevarse a cabo en la Metaconsola cuando la replicaciĆ³n " -"de eventos estĆ” activa." - -#: ../../enterprise/godmode/setup/setup.php:345 -msgid "Out of black list" -msgstr "Fuera de la lista negra" - -#: ../../enterprise/godmode/setup/setup.php:347 -msgid "In black list" -msgstr "En la lista negra" - -#: ../../enterprise/godmode/setup/setup.php:352 -msgid "Push selected modules into blacklist" -msgstr "Mover los mĆ³dulos seleccionados a la lista negra" - -#: ../../enterprise/godmode/setup/setup.php:354 -msgid "Pop selected modules out of blacklist" -msgstr "Sacar los mĆ³dulos seleccionados de la lista negra" - -#: ../../enterprise/godmode/setup/setup.php:389 -msgid "Critical threshold for occupied addresses" -msgstr "Umbral crĆ­tico para las direcciones ocupadas" - -#: ../../enterprise/godmode/setup/setup.php:401 -msgid "Warning threshold for occupied addresses" -msgstr "Umbral de advertencia para las direcciones ocupadas" - -#: ../../enterprise/godmode/setup/setup.php:429 -msgid "Enterprise options" -msgstr "Opciones Enterprise" - -#: ../../enterprise/godmode/setup/setup.php:589 -#, php-format -msgid "" -"Password related configuration only applies when local %s authentication is " -"selected." -msgstr "" -"La configuraciĆ³n relacionada con la contraseƱa solo aplica cuando la " -"autenticaciĆ³n local %s estĆ” seleccionada." - -#: ../../enterprise/godmode/setup/setup.php:598 -msgid "Enterprise password policy" -msgstr "PolĆ­tica de contraseƱa Enterprise" - -#: ../../enterprise/godmode/setup/setup_history.php:84 -msgid "Method does not exist" -msgstr "El mĆ©todo no existe" - -#: ../../enterprise/godmode/setup/setup_history.php:223 -msgid "Configure connection target" -msgstr "Configurar objetivo de la conexiĆ³n" - -#: ../../enterprise/godmode/setup/setup_history.php:237 -msgid "Active to historical settings" -msgstr "Ajustes de activa a histĆ³rica" - -#: ../../enterprise/godmode/setup/setup_history.php:241 -#, php-format -msgid "" -"Data will be available in active database as time as days you specify here. " -"Older information will be sent to historical database. Note data will be " -"purged from active database after %d days." -msgstr "" -"Los datos estarĆ”n activos en la base de datos activa tanto tiempo como " -"especifique aquĆ­. La informaciĆ³n mĆ”s antigua se enviarĆ” a la base de datos " -"histĆ³rica. Los datos se purgarĆ”n de la base de datos activa despuĆ©s de %d dĆ­as." - -#: ../../enterprise/godmode/setup/setup_history.php:247 -msgid "Data days old to keep in active database" -msgstr "AntigĆ¼edad de los datos a mantener en la base de datos activa" - -#: ../../enterprise/godmode/setup/setup_history.php:262 -msgid "" -"Number of rows to be sent to historical database each 'delay' seconds. If you " -"experience issues running pandora_db, try decreasing this value." -msgstr "" -"NĆŗmero de filas a enviar a la base de datos histĆ³rica cada 'retraso' en " -"segundos. Si tiene problemas al ejecutar pandora_db, pruebe a reducir este " -"valor." - -#: ../../enterprise/godmode/setup/setup_history.php:266 -msgid "Transference block size (Step)" -msgstr "TamaƱo del bloque de transferencia (Step)" - -#: ../../enterprise/godmode/setup/setup_history.php:271 -msgid "Delay between transferences (seconds)" -msgstr "Retraso entre transferencias (segundos)" - -#: ../../enterprise/godmode/setup/setup_history.php:276 -msgid "Historical data settings" -msgstr "Ajustes de datos de histĆ³rico" - -#: ../../enterprise/godmode/setup/setup_history.php:278 -msgid "Maximum historical data age (days)" -msgstr "AntigĆ¼edad mĆ”xima de los datos de histĆ³rico (dĆ­as)" - -#: ../../enterprise/godmode/setup/setup_history.php:283 -msgid "Maximum historical string data age (days)" -msgstr "AntigĆ¼edad mĆ”xima de los datos de cadenas de histĆ³rico (dĆ­as)" - -#: ../../enterprise/godmode/setup/setup_history.php:288 -msgid "Data older than 'days' is compacted in order to improve disk utilization." -msgstr "" -"Los datos de mĆ”s antigĆ¼edad de 'dĆ­as' se compactan para mejorar la utilizaciĆ³n " -"del disco." - -#: ../../enterprise/godmode/setup/setup_history.php:293 -msgid "" -"Automatically create partitions on specific database IDB files (tagente_datos, " -"tagente_datos_string, tevento). Monthly partitions." -msgstr "" -"Crear automĆ”ticamente particiones en archivos especĆ­ficos de la base de datos " -"IDB (tagent_data, tagent_data_string, tevent). Particiones mensuales." - -#: ../../enterprise/godmode/setup/setup_history.php:297 -msgid "Automatic partition of big tables." -msgstr "ParticiĆ³n automĆ”tica de grandes tablas." - -#: ../../enterprise/godmode/setup/setup_history.php:308 -msgid "Historical events settings" -msgstr "Ajustes de eventos de histĆ³rico" - -#: ../../enterprise/godmode/setup/setup_history.php:319 -#, php-format -msgid "" -"Events will remain in active database a maximum of specified days, then they " -"will be transferred to historical database. Note events will be purged from " -"active database after %d days." -msgstr "" -"Los eventos permanecerĆ”n en la base de datos activa un mĆ”ximo de dĆ­as " -"especificados, despuĆ©s se transferirĆ”n a la base de datos histĆ³rica. Los " -"eventos se purgarĆ”n de la base de datos activa despuĆ©s de %d dĆ­as." - -#: ../../enterprise/godmode/setup/setup_history.php:325 -msgid "Events days old to keep in active database" -msgstr "AntigĆ¼edad de eventos para permanecer en la base de datos activa" - -#: ../../enterprise/godmode/setup/setup_history.php:340 -msgid "Events will be purged from historical database after specified days." -msgstr "" -"Los eventos se purgarĆ”n de la base de datos histĆ³rica despuĆ©s del nĆŗmero de " -"dĆ­as especificado." - -#: ../../enterprise/godmode/setup/setup_history.php:344 -msgid "Maximum historical events age (days)" -msgstr "AntigĆ¼edad mĆ”xima de los eventos de histĆ³rico (dĆ­as)" - -#: ../../enterprise/godmode/setup/setup_history.php:361 -msgid "Enable historical events" -msgstr "Habilitar eventos de histĆ³rico" - -#: ../../enterprise/godmode/setup/setup_history.php:373 -msgid "Customize settings" -msgstr "Personalizar configuraciĆ³n" - -#: ../../enterprise/godmode/setup/setup_history.php:385 -msgid "Enable historical database" -msgstr "Habilitar base de datos histĆ³rica" - -#: ../../enterprise/godmode/setup/setup_history.php:407 -msgid "History database connection is available." -msgstr "La conexiĆ³n con la base de datos histĆ³rica estĆ” disponible." - -#: ../../enterprise/godmode/setup/setup_history.php:414 -#, php-format -msgid "History database connection failed: %s" -msgstr "No se ha podido conectar con la base de datos histĆ³rica: %s" - -#: ../../enterprise/godmode/setup/setup_history.php:430 -msgid "History database schema is installed." -msgstr "Es esquema de la base de datos histĆ³rica estĆ” instalado." - -#: ../../enterprise/godmode/setup/setup_history.php:439 -#, php-format -msgid "Database is not installed: %s" -msgstr "Base de datos no instalada: %s" - -#: ../../enterprise/godmode/setup/setup_history.php:444 -msgid "Install database schema" -msgstr "Instalar esquema de base de datos" - -#: ../../enterprise/godmode/setup/setup_history.php:445 -msgid "This action will install the schema into the target, are you sure?" -msgstr "Esta acciĆ³n instalarĆ” el esquema en el objetivo, ĀæestĆ” seguro?" - -#: ../../enterprise/godmode/setup/setup_history.php:467 -msgid "History database schema is up to date with active database." -msgstr "" -"El esquema de la base de datos histĆ³rica estĆ” actualizado con la base de datos " -"activa." - -#: ../../enterprise/godmode/setup/setup_history.php:476 -#, php-format -msgid "Database is not updated: %s" -msgstr "La base de datos no estĆ” actualizada: %s" - -#: ../../enterprise/godmode/setup/setup_history.php:491 -msgid "Current schema: " -msgstr "Esquema actual: " - -#: ../../enterprise/godmode/setup/setup_history.php:498 -msgid "Upgrade database schema" -msgstr "Actualizar el esquema de la base de datos" - -#: ../../enterprise/godmode/setup/setup_history.php:499 -msgid "" -"This action will schedule the installation or upgrade of database schema into " -"the target, are you sure?" -msgstr "" -"Esta acciĆ³n programarĆ” la instalaciĆ³n o la actualizaciĆ³n del esquema de la " -"base de datos en el objetivo, ĀæestĆ” seguro?" - -#: ../../enterprise/godmode/setup/setup_history.php:513 -#: ../../godmode/setup/performance.php:686 -msgid "Database maintenance status" -msgstr "Estado de mantenimiento de la base de datos" - -#: ../../enterprise/godmode/setup/setup_history.php:532 -msgid "" -"By enabling historical database, target connection will be tested. If needed, " -"database schema will be applied on your selected target, do you want to " -"proceed?" -msgstr "" -"Al habilitar la base de datos histĆ³rica, se probarĆ” la conexiĆ³n con el " -"objetivo. Si lo necesita, el esquema de la base de datos se aplicarĆ” al " -"objetivo seleccionado, Āædesea proceder?" - -#: ../../enterprise/godmode/setup/setup_history.php:533 -msgid "" -"Changing historical database target, schema will be recreated in new one, but " -"old data will remain in previous node, unlinked from this console and not " -"maintained, do you want to proceed?" -msgstr "" -"Al cambiar el objetivo de la base de datos histĆ³rica, el esquema se recrearĆ” " -"en uno nuevo, pero los datos antiguos permanecerĆ”n en el nodo anterior, sin " -"estar enlazados con la consola y sin estar mantenidos, Āædesea proceder?" - -#: ../../enterprise/godmode/setup/setup_history.php:535 -#, php-format -msgid "" -"Disabling historical database, you will not keep any data older than %d days. " -"Are you sure?" -msgstr "" -"Al deshabilitar la base de datos histĆ³rica, no tendrĆ” datos de mayor " -"antigĆ¼edad que %d dĆ­as. ĀæEstĆ” seguro?" - -#: ../../enterprise/godmode/setup/setup_history.php:539 -#, php-format -msgid "" -"Historical database allows you to keep data older than %d days. This action " -"will produce no changes. Historical database will remain disabled." -msgstr "" -"La base de datos histĆ³rica le permite mantener datos de mĆ”s antigĆ¼edad que %d " -"dĆ­as. EstĆ” acciĆ³n no producirĆ” cambios. La base de datos histĆ³rica permanecerĆ” " -"deshabilitada." - -#: ../../enterprise/godmode/setup/setup_history.php:544 -msgid "" -"By changing historical database target, the new connection will be tested. If " -"needed, database schema will be applied on your selected target. Information " -"stored in previous configuration will be IGNORED, do you want to proceed?" -msgstr "" -"Al cambiar el objetivo de la base de datos histĆ³rica, se probarĆ” la nueva " -"conexiĆ³n. Si lo necesita, el esquema de la base de datos se aplicarĆ” en el " -"objetivo seleccionado. La informaciĆ³n almacenada en configuraciones previas " -"serĆ” IGNORADA, Āædesea proceder?" - -#: ../../enterprise/godmode/setup/setup_history.php:547 -msgid "Please ensure all fields matches your needs." -msgstr "AsegĆŗrese de que todos los campos coinciden con sus necesidades." - -#: ../../enterprise/godmode/setup/setup_history.php:681 -msgid "Update scheduled." -msgstr "Actualizar programados." - -#: ../../enterprise/godmode/setup/setup_metaconsole.php:31 -msgid "Metaconsole setup" -msgstr "ConfiguraciĆ³n de la Metaconsola" - -#: ../../enterprise/godmode/setup/setup_metaconsole.php:195 -msgid "Pandora FMS Metaconsole item edition" -msgstr "EdiciĆ³n de elementos de la Metaconsola de Pandora FMS" - -#: ../../enterprise/godmode/setup/setup_metaconsole.php:202 -msgid "" -"Token previously configured on the destination Pandora console in order to use " -"delegated authentification." -msgstr "" -"Token configurado anteriormente en la consola de destino de Pandora FMS con el " -"fin de utilizar la autentificaciĆ³n delegada." - -#: ../../enterprise/godmode/setup/setup_metaconsole.php:274 -msgid "Console URLxxxxxx" -msgstr "Consola URLxxxxxx" - -#: ../../enterprise/godmode/setup/setup_auth.php:34 -msgid "Active directory" -msgstr "Directorio activo" - -#: ../../enterprise/godmode/setup/setup_auth.php:35 -msgid "SAML" -msgstr "SAML" - -#: ../../enterprise/godmode/setup/setup_auth.php:87 -msgid "Force automatically create profile user" -msgstr "Forzar creaciĆ³n automĆ”tica de perfil de usuario" - -#: ../../enterprise/godmode/setup/setup_auth.php:92 -msgid "Local command" -msgstr "Comando local" - -#: ../../enterprise/godmode/setup/setup_auth.php:95 -msgid "PHP function" -msgstr "FunciĆ³n PHP" - -#: ../../enterprise/godmode/setup/setup_auth.php:172 -#: ../../enterprise/godmode/setup/setup_auth.php:456 -#: ../../enterprise/godmode/setup/setup_auth.php:1251 -msgid "Profiles selected" -msgstr "Perfiles seleccionados" - -#: ../../enterprise/godmode/setup/setup_auth.php:173 -#: ../../enterprise/godmode/setup/setup_auth.php:457 -#: ../../enterprise/godmode/setup/setup_auth.php:1252 -msgid "Groups selected" -msgstr "Grupos seleccionados" - -#: ../../enterprise/godmode/setup/setup_auth.php:174 -#: ../../enterprise/godmode/setup/setup_auth.php:458 -#: ../../enterprise/godmode/setup/setup_auth.php:1253 -#: ../../enterprise/godmode/modules/configure_local_component.php:581 -#: ../../godmode/modules/manage_network_components_form_common.php:382 -#: ../../godmode/agentes/module_manager_editor_common.php:1014 -msgid "Tags selected" -msgstr "Etiquetas seleccionadas" - -#: ../../enterprise/godmode/setup/setup_auth.php:176 -#: ../../enterprise/godmode/setup/setup_auth.php:233 -msgid "LDAP Attributes" -msgstr "Atributos LDAP" - -#: ../../enterprise/godmode/setup/setup_auth.php:177 -#: ../../enterprise/godmode/setup/setup_auth.php:234 -#: ../../enterprise/godmode/setup/setup_auth.php:460 -#: ../../enterprise/godmode/setup/setup_auth.php:512 -#: ../../enterprise/godmode/setup/setup_auth.php:1255 -#: ../../enterprise/godmode/setup/setup_auth.php:1309 -#: ../../godmode/setup/snmp_wizard.php:44 -msgid "OP" -msgstr "OP" - -#: ../../enterprise/godmode/setup/setup_auth.php:229 -#: ../../enterprise/godmode/setup/setup_auth.php:508 -#: ../../enterprise/godmode/setup/setup_auth.php:1305 ../../godmode/menu.php:136 -#: ../../godmode/users/profile_list.php:323 -#: ../../godmode/groups/configure_group.php:122 -#: ../../godmode/groups/group_list.php:380 -msgid "Profiles" -msgstr "Perfiles" - -#: ../../enterprise/godmode/setup/setup_auth.php:242 -#: ../../enterprise/godmode/setup/setup_auth.php:519 -#: ../../enterprise/godmode/setup/setup_auth.php:1316 -msgid "Select profile" -msgstr "Seleccionar perfil" - -#: ../../enterprise/godmode/setup/setup_auth.php:287 -#: ../../enterprise/godmode/setup/setup_auth.php:557 -#: ../../enterprise/godmode/setup/setup_auth.php:1359 -msgid "Add new permissions" -msgstr "Agregar nuevos permisos" - -#: ../../enterprise/godmode/setup/setup_auth.php:385 -#: ../../enterprise/godmode/setup/setup_auth.php:1180 -msgid "New users will be able to log in to the nodes." -msgstr "Los usuarios nuevos podrĆ”n conectarse en los nodos." - -#: ../../enterprise/godmode/setup/setup_auth.php:459 -#: ../../enterprise/godmode/setup/setup_auth.php:511 -#: ../../enterprise/godmode/setup/setup_auth.php:1254 -#: ../../enterprise/godmode/setup/setup_auth.php:1308 -msgid "AD Groups" -msgstr "Grupos AD" - -#: ../../enterprise/godmode/setup/setup_auth.php:738 -#: ../../enterprise/godmode/setup/setup_auth.php:854 -msgid "You must select a profile from the list of profiles." -msgstr "Selecciona un perfil de la lista de perfiles" - -#: ../../enterprise/godmode/setup/setup_auth.php:743 -#: ../../enterprise/godmode/setup/setup_auth.php:859 -msgid "You must select a group from the list of groups." -msgstr "Seleccione un grupo de la lista de grupos" - -#: ../../enterprise/godmode/setup/setup_auth.php:1084 -msgid "SimpleSAML path" -msgstr "Ruta de SimpleSAML" - -#: ../../enterprise/godmode/setup/setup_auth.php:1085 -msgid "Directory where your 'simplesamlphp' folder is located." -msgstr "Directorio donde se encuentra la carpeta 'simplesamlphp'." - -#: ../../enterprise/godmode/setup/setup_auth.php:1091 -msgid "SAML source" -msgstr "SAML de origen" - -#: ../../enterprise/godmode/setup/setup_auth.php:1092 -msgid "Authsource name, e.g. 'example-userpass'" -msgstr "Nombre authsource, por ejemplo: 'example-userpass'" - -#: ../../enterprise/godmode/setup/setup_auth.php:1099 -msgid "SAML user id attribute" -msgstr "Atribito de ID de usuario SAML" - -#: ../../enterprise/godmode/setup/setup_auth.php:1104 -msgid "SAML mail attribute" -msgstr "Atributo de correo SAML" - -#: ../../enterprise/godmode/setup/setup_auth.php:1105 -msgid "" -"SAML field where search for the user email (while autocreate remote users is " -"enabled)" -msgstr "" -"Campo SAML donde buscar el correo electrĆ³nico del usuario (mientras auto crear " -"usuarios remotos estĆ© activado)" - -#: ../../enterprise/godmode/setup/setup_auth.php:1112 -msgid "SAML group name attribute" -msgstr "Atributo de nombre de grupo SAML" - -#: ../../enterprise/godmode/setup/setup_auth.php:1113 -msgid "" -"SAML field where search for the group name (while autocreate remote users is " -"enabled)" -msgstr "" -"Campo SAML donde buscar el nombre del grupo (mientras auto crear usuarios " -"remotos estĆ© activado)" - -#: ../../enterprise/godmode/setup/setup_auth.php:1120 -msgid "Simple attribute / Multivalue attribute" -msgstr "Atributo simple/atributo con valores mĆŗltiples" - -#: ../../enterprise/godmode/setup/setup_auth.php:1125 -msgid "SAML profiles and tag attribute" -msgstr "Atributo de perfiles y etiquetas SAML" - -#: ../../enterprise/godmode/setup/setup_auth.php:1130 -msgid "Profile attribute" -msgstr "Atributo de perfil" - -#: ../../enterprise/godmode/setup/setup_auth.php:1135 -msgid "Tag attribute" -msgstr "Atributo de etiqueta" - -#: ../../enterprise/godmode/setup/setup_auth.php:1140 -msgid "SAML profile and tags prefix" -msgstr "Prefijo de perfiles y etiquetas SAML" - -#: ../../enterprise/godmode/setup/setup_log_collector.php:37 -msgid "ElasticSearch IP" -msgstr "IP de ElasticSearch" - -#: ../../enterprise/godmode/setup/setup_log_collector.php:37 -msgid "IP of ElasticSearch server" -msgstr "IP del servidor ElasticSearch" - -#: ../../enterprise/godmode/setup/setup_log_collector.php:39 -msgid "ElasticSearch Port" -msgstr "Puerto ElasticSearch" - -#: ../../enterprise/godmode/setup/setup_log_collector.php:39 -msgid "Port of ElasticSearch server" -msgstr "Puerto del servidor ElasticSearch" - -#: ../../enterprise/godmode/setup/setup_log_collector.php:48 -msgid "ElasticSearch Status" -msgstr "Estado de ElasticSearch" - -#: ../../enterprise/godmode/setup/edit_skin.php:44 -#: ../../enterprise/godmode/setup/setup_skins.php:38 -msgid "Skins configuration" -msgstr "ConfiguraciĆ³n de apariencia" - -#: ../../enterprise/godmode/setup/edit_skin.php:47 -msgid "Successfully updated skin" -msgstr "Apariencia actualizada correctamente" - -#: ../../enterprise/godmode/setup/edit_skin.php:49 -#: ../../enterprise/godmode/setup/edit_skin.php:67 -msgid "Error updating skin" -msgstr "Error al actualizar la apariencia" - -#: ../../enterprise/godmode/setup/edit_skin.php:197 -msgid "Error creating skin" -msgstr "Error al crear la apariencia" - -#: ../../enterprise/godmode/setup/edit_skin.php:201 -msgid "Successfully created skin" -msgstr "Apariencia creada correctamente" - -#: ../../enterprise/godmode/setup/edit_skin.php:241 -#: ../../enterprise/godmode/setup/setup_skins.php:126 -msgid "Relative path" -msgstr "Ruta relativa" - -#: ../../enterprise/godmode/setup/edit_skin.php:242 -msgid "" -"Zip file with skin subdirectory. The name of the zip file only can have " -"alphanumeric characters." -msgstr "" -"Archivo zip con subdirectorio apariencia. El nombre del archivo zip solo puede " -"tener caracteres alfanumĆ©ricos." - -#: ../../enterprise/godmode/setup/edit_skin.php:267 -msgid "Group/s" -msgstr "Grupo(s)" - -#: ../../enterprise/godmode/setup/setup_module_library.php:68 -#: ../../enterprise/godmode/wizards/Cloud.class.php:381 -#: ../../godmode/module_library/module_library_view.php:163 -msgid "Invalid username or password" -msgstr "Usuario o contraseƱa no vĆ”lidos" - -#: ../../enterprise/godmode/setup/setup_module_library.php:69 -#: ../../godmode/module_library/module_library_view.php:162 -msgid "Problem with authentication. Check your internet connection" -msgstr "Problema de autenticaciĆ³n. Compruebe su conexiĆ³n a Internet." - -#: ../../enterprise/godmode/setup/setup_skins.php:77 -msgid "Error deleting skin" -msgstr "Error al borrar la apariencia" - -#: ../../enterprise/godmode/setup/setup_skins.php:79 -msgid "Successfully deleted skin" -msgstr "Apariencia eliminada correctamente" - -#: ../../enterprise/godmode/setup/setup_skins.php:125 -msgid "Skin name" -msgstr "Nombre de la apariencia" - -#: ../../enterprise/godmode/setup/setup_skins.php:153 -msgid "There are no defined skins" -msgstr "No hay apariencia definida" - -#: ../../enterprise/godmode/setup/setup_skins.php:159 -msgid "Create skin" -msgstr "Crear apariencia" - -#: ../../enterprise/godmode/setup/setup_acl.php:46 -msgid "Enterprise ACL setup" -msgstr "ConfiguraciĆ³n ACL Enterprise" - -#: ../../enterprise/godmode/setup/setup_acl.php:69 -msgid "ACL element was deleted successfully" -msgstr "El elemento ACL se eliminĆ³ correctamente" - -#: ../../enterprise/godmode/setup/setup_acl.php:71 -msgid "There was a problem delete ACL element" -msgstr "Hubo un problema al eliminar el elemento ACL" - -#: ../../enterprise/godmode/setup/setup_acl.php:417 -msgid "This record already exists in the database" -msgstr "Este registro ya existe en la base de datos." - -#: ../../enterprise/godmode/setup/setup_acl.php:422 -msgid "ACL element is added successfully" -msgstr "El elemento ACL se agrega correctamente" - -#: ../../enterprise/godmode/setup/setup_acl.php:424 -msgid "There was a problem adding ACL element" -msgstr "Hubo un problema al agregar el elemento ACL" - -#: ../../enterprise/godmode/setup/setup_acl.php:464 -#: ../../enterprise/godmode/setup/setup_acl.php:539 -msgid "Add new ACL element to profile" -msgstr "AƱadir nuevo elemento ACL al perfil" - -#: ../../enterprise/godmode/setup/setup_acl.php:469 -#: ../../enterprise/godmode/setup/setup_acl.php:544 -#: ../../enterprise/godmode/setup/setup_acl.php:592 -msgid "Section" -msgstr "SecciĆ³n" - -#: ../../enterprise/godmode/setup/setup_acl.php:476 -#: ../../enterprise/godmode/setup/setup_acl.php:694 -msgid "Mobile" -msgstr "MĆ³vil" - -#: ../../enterprise/godmode/setup/setup_acl.php:480 -#: ../../enterprise/godmode/setup/setup_acl.php:690 -msgid "Head search" -msgstr "BĆŗsqueda de encabezado" - -#: ../../enterprise/godmode/setup/setup_acl.php:497 -#: ../../enterprise/godmode/setup/setup_acl.php:548 -#: ../../enterprise/godmode/setup/setup_acl.php:593 -msgid "Section 2" -msgstr "SecciĆ³n 2" - -#: ../../enterprise/godmode/setup/setup_acl.php:514 -#: ../../enterprise/godmode/setup/setup_acl.php:552 -#: ../../enterprise/godmode/setup/setup_acl.php:594 -msgid "Section 3" -msgstr "SecciĆ³n 3" - -#: ../../enterprise/godmode/setup/setup_acl.php:538 -msgid "Hidden" -msgstr "Oculto" - -#: ../../enterprise/godmode/setup/setup_acl.php:570 -msgid "Filter by profile" -msgstr "Filtrar por perfil" - -#: ../../enterprise/godmode/setup/setup_acl.php:749 -#: ../../enterprise/godmode/setup/setup_acl.php:759 -msgid "Invalid" -msgstr "No vĆ”lido" - -#: ../../enterprise/godmode/servers/manage_export_form.php:59 -#: ../../enterprise/godmode/servers/manage_export.php:43 -#: ../../enterprise/godmode/menu.php:247 -msgid "Export targets" -msgstr "Servidores de exportaciĆ³n" - -#: ../../enterprise/godmode/servers/manage_export_form.php:91 -#: ../../enterprise/godmode/servers/manage_export.php:138 -msgid "Preffix" -msgstr "Prefijo" - -#: ../../enterprise/godmode/servers/manage_export_form.php:103 -#: ../../enterprise/godmode/servers/manage_export.php:141 -msgid "Transfer mode" -msgstr "Modo de transferencia" - -#: ../../enterprise/godmode/servers/manage_export_form.php:125 -msgid "Target directory" -msgstr "Directorio objetivo" - -#: ../../enterprise/godmode/servers/credential_boxes_satellite.php:35 -msgid "Credential Boxes List" -msgstr "Lista de casillas de credenciales" - -#: ../../enterprise/godmode/servers/credential_boxes_satellite.php:42 -msgid "Credential Boxes" -msgstr "Casillas de credenciales" - -#: ../../enterprise/godmode/servers/manage_export.php:69 -msgid "Error updating export target" -msgstr "Error al actualizar el servidor de exportaciĆ³n" - -#: ../../enterprise/godmode/servers/manage_export.php:71 -msgid "Successfully updated export target" -msgstr "Servidor de exportaciĆ³n actualizado correctamente" - -#: ../../enterprise/godmode/servers/manage_export.php:82 -msgid "Error deleting export target" -msgstr "Error al borrar el servidor de exportaciĆ³n" - -#: ../../enterprise/godmode/servers/manage_export.php:84 -msgid "" -"Successfully deleted export target. All the linked modules will be " -"automatically unattached" -msgstr "" -"Objetivo de exportaciĆ³n eliminado correctamente. Todos los mĆ³dulos enlazados " -"se desvincularĆ”n automĆ”ticamente" - -#: ../../enterprise/godmode/servers/manage_export.php:107 -msgid "" -"Can't be created export target: User and password must be filled with FTP mode" -msgstr "" -"No pudo crearse un servidor de exportaciĆ³n: el usuario y la contraseƱa deben " -"ser completados con el modo de FTP." - -#: ../../enterprise/godmode/servers/manage_export.php:126 -msgid "There are no defined export targets" -msgstr "No hay servidores de exportaciĆ³n definidos" - -#: ../../enterprise/godmode/servers/list_satellite.php:27 -msgid "Satellite Server" -msgstr "Servidor SatĆ©lite" - -#: ../../enterprise/godmode/servers/HA_cluster.php:59 -#: ../../enterprise/godmode/servers/HA_cluster.php:83 -msgid "View nodes" -msgstr "Ver nodos" - -#: ../../enterprise/godmode/servers/HA_cluster.php:80 -msgid "Manage Pandora DB HA" -msgstr "Gestionar la alta disponibilidad de la base de datos de Pandora FMS" - -#: ../../enterprise/godmode/servers/HA_cluster.php:101 -msgid "Manage Database HA" -msgstr "Gestionar la base de datos de alta disponibilidad" - -#: ../../enterprise/godmode/servers/HA_cluster.php:136 -msgid "" -"Make the cluster forget failed operations from history of\n" -" the resource and re-detect its current state. This can be\n" -" useful to purge knowledge of past failures that have since\n" -" been resolved. If a resource id is not specified then all\n" -" resources / stonith devices will be cleaned up. If a node\n" -" is not specified then resources / stonith devices on all\n" -" nodes will be cleaned up" -msgstr "" -"Hacer que el cluster olvide las operaciones fallidas del historial de\n" -" recurso y redetectar su estado actual. Esto puede ser\n" -" Ćŗtil para purgar los datos de fallos anteriores que se han\n" -" resuelto dede entonces. Si no se especifica ID de recurso, entonces todos " -"los\n" -" recursos / dispositivos stonith se limpiarĆ”n. Si no\n" -" se especifica, entonces los recursos / dispositivos stonith de todos los\n" -" nodos se limparĆ”n" - -#: ../../enterprise/godmode/servers/HA_cluster.php:162 -msgid "Node label" -msgstr "Etiqueta de nodo" - -#: ../../enterprise/godmode/servers/HA_cluster.php:164 -msgid "DB Repl." -msgstr "ReplicaciĆ³n de la base de datos." - -#: ../../enterprise/godmode/servers/HA_cluster.php:165 -msgid "DB Status" -msgstr "Estado BD" - -#: ../../enterprise/godmode/servers/HA_cluster.php:167 -#: ../../extensions/quick_shell.php:195 -#: ../../godmode/agentes/module_manager_editor_network.php:478 -msgid "SSH" -msgstr "SSH" - -#: ../../enterprise/godmode/servers/HA_cluster.php:168 -msgid "DB Role" -msgstr "FunciĆ³n de la base de datos" - -#: ../../enterprise/godmode/servers/HA_cluster.php:169 -msgid "Cluster Role" -msgstr "FunciĆ³n del clĆŗster" - -#: ../../enterprise/godmode/servers/HA_cluster.php:171 -msgid "Seconds behind master" -msgstr "Segundos despuĆ©s del maestro" - -#: ../../enterprise/godmode/servers/HA_cluster.php:172 -msgid "Virtual IP" -msgstr "IP virtual" - -#: ../../enterprise/godmode/servers/HA_cluster.php:173 -msgid "SQL version" -msgstr "VersiĆ³n SQL" - -#: ../../enterprise/godmode/servers/HA_cluster.php:174 -msgid "DB version" -msgstr "VersiĆ³n de la base de datos" - -#: ../../enterprise/godmode/servers/HA_cluster.php:176 -msgid "Pending action" -msgstr "AcciĆ³n pendiente" - -#: ../../enterprise/godmode/servers/HA_cluster.php:301 -msgid "Show/ edit node" -msgstr "Mostrar/editar nodo" - -#: ../../enterprise/godmode/servers/HA_cluster.php:317 -msgid "Put node into standby status" -msgstr "Poner nodo en suspensiĆ³n" - -#: ../../enterprise/godmode/servers/HA_cluster.php:332 -msgid "Force node resync" -msgstr "Forzar re-sincronizaciĆ³n de nodos" - -#: ../../enterprise/godmode/servers/HA_cluster.php:359 -msgid "Put node into online status" -msgstr "Poner nodo en estado online" - -#: ../../enterprise/godmode/servers/HA_cluster.php:374 -msgid "Show cluster details" -msgstr "Mostrar detalles del cluster" - -#: ../../enterprise/godmode/servers/HA_cluster.php:392 -msgid "Remove node from this list" -msgstr "Eliminar nodo de la lista" - -#: ../../enterprise/godmode/servers/HA_cluster.php:428 -msgid "Register node" -msgstr "Registrar nodo" - -#: ../../enterprise/godmode/servers/HA_cluster.php:466 -msgid "" -"Target node will be erased from this list but not removed from cluster. Do you " -"want to continue?" -msgstr "" -"El nodo objetivo se eliminarĆ” de la lista pero no del cluster. ĀæDesea " -"continuar?" - -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:148 -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:152 -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:348 -msgid "Delete remote conf server files" -msgstr "Eliminar archivos de servidor de configuraciĆ³n remotos" - -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:349 -#: ../../enterprise/godmode/agentes/agent_disk_conf_editor.php:249 -#: ../../godmode/agentes/agent_manager.php:534 -msgid "Delete remote configuration file" -msgstr "Borrar el archivo de configuraciĆ³n remota" - -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:349 -msgid "" -"Delete this conf file implies that server will send back local config to " -"console" -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:567 -msgid "ICMP server" -msgstr "Servidor ICPM" - -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:642 -msgid "Network timeout" -msgstr "Tiempo de espera de red" - -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:650 -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:666 -msgid " Seconds" -msgstr " Segundos" - -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:658 -msgid "Plugin timeout" -msgstr "Tiempo de espera del plugin" - -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:674 -msgid "SNMP console threads" -msgstr "Hilos de la consola SNMP" - -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:690 -msgid "Network threads" -msgstr "Hilos de red" - -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:706 -msgid "Plugin threads" -msgstr "Hilos de plugin" - -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:722 -msgid "Recon threads" -msgstr "Hilos de recon" - -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:738 -msgid "Dataserver threads" -msgstr "Hilos del servidor de datos" - -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:754 -msgid "Web threads" -msgstr "Hilos web" - -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:770 -msgid "SNMP threads" -msgstr "Hilos SNMP" - -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:786 -msgid "ICMP threads" -msgstr "Hilos ICMP" - -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:816 -msgid "Autocreate group" -msgstr "Autocrear grupo" - -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:832 -msgid "Autocreate group force" -msgstr "Forzar auto-creaciĆ³n de grupo" - -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:847 -msgid "Autocreate" -msgstr "Autocrear" - -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:865 -msgid "Server features" -msgstr "funcionalidades del servidor" - -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:872 -msgid "Optimization settings" -msgstr "Ajustes de optimizaciĆ³n" - -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:879 -msgid "Other server settings" -msgstr "Otros ajustes de servidor" - -#: ../../enterprise/godmode/servers/manage_credential_boxes.php:20 -msgid "Add Credential Box" -msgstr "AƱadir casilla de credenciales" - -#: ../../enterprise/godmode/modules/configure_local_component.php:141 -msgid "Update Local Component" -msgstr "Actualizar el componente local" - -#: ../../enterprise/godmode/modules/configure_local_component.php:143 -msgid "Create Local Component" -msgstr "Crear componente local" - -#: ../../enterprise/godmode/modules/configure_local_component.php:162 -#: ../../godmode/modules/manage_network_components_form_common.php:50 -#: ../../godmode/alerts/configure_alert_template.php:1134 -msgid "Wizard level" -msgstr "Nivel del asistente" - -#: ../../enterprise/godmode/modules/configure_local_component.php:192 -msgid "Throw unknown events" -msgstr "Generar eventos desconocidos" - -#: ../../enterprise/godmode/modules/configure_local_component.php:292 -#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:489 -#: ../../godmode/modules/manage_network_components_form_common.php:146 -#: ../../godmode/massive/massive_edit_modules.php:552 -msgid "Dynamic Interval" -msgstr "Intervalo dinĆ”mico" - -#: ../../enterprise/godmode/modules/configure_local_component.php:298 -#: ../../godmode/modules/manage_network_components_form_common.php:152 -#: ../../godmode/agentes/module_manager_editor_common.php:691 -msgid "Advanced options Dynamic Threshold" -msgstr "Opciones avanzadas rango dinĆ”mico" - -#: ../../enterprise/godmode/modules/configure_local_component.php:303 -#: ../../godmode/modules/manage_network_components_form_common.php:157 -msgid "Dynamic Min. " -msgstr "DinĆ”mico mĆ­nimo " - -#: ../../enterprise/godmode/modules/configure_local_component.php:305 -#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:493 -#: ../../godmode/modules/manage_network_components_form_common.php:159 -#: ../../godmode/massive/massive_edit_modules.php:556 -msgid "Dynamic Max." -msgstr "DinĆ”mico mĆ”ximo" - -#: ../../enterprise/godmode/modules/configure_local_component.php:307 -#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:495 -#: ../../godmode/modules/manage_network_components_form_common.php:161 -#: ../../godmode/massive/massive_edit_modules.php:558 -msgid "Dynamic Two Tailed: " -msgstr "El segundo rango dĆ­nĆ”mico falla: " - -#: ../../enterprise/godmode/modules/configure_local_component.php:343 -#: ../../enterprise/godmode/modules/configure_local_component.php:386 -#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:567 -#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:658 -#: ../../godmode/modules/manage_network_components_form_wizard.php:400 -#: ../../godmode/modules/manage_network_components_form_wizard.php:442 -#: ../../godmode/modules/manage_network_components_form_common.php:196 -#: ../../godmode/modules/manage_network_components_form_common.php:237 -#: ../../godmode/massive/massive_edit_modules.php:630 -#: ../../godmode/massive/massive_edit_modules.php:722 -#: ../../godmode/agentes/module_manager_editor_common.php:464 -#: ../../godmode/agentes/module_manager_editor_common.php:526 -msgid "Percentage" -msgstr "Porcentaje" - -#: ../../enterprise/godmode/modules/configure_local_component.php:391 -#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:873 -#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:232 -#: ../../godmode/modules/manage_network_components_form_common.php:243 -#: ../../godmode/massive/massive_edit_modules.php:930 -#: ../../godmode/agentes/module_manager_editor_common.php:780 -msgid "FF threshold" -msgstr "Umbral FF" - -#: ../../enterprise/godmode/modules/configure_local_component.php:394 -#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:941 -#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:235 -#: ../../godmode/modules/manage_network_components_form_common.php:246 -#: ../../godmode/massive/massive_edit_modules.php:994 -#: ../../godmode/agentes/module_manager_editor_common.php:782 -msgid "Keep counters" -msgstr "Mantener los contadores" - -#: ../../enterprise/godmode/modules/configure_local_component.php:402 -#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:885 -#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:900 -#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:252 -#: ../../godmode/modules/manage_network_components_form_common.php:260 -#: ../../godmode/massive/massive_edit_modules.php:938 -#: ../../godmode/massive/massive_edit_modules.php:953 -#: ../../godmode/agentes/module_manager_editor_common.php:799 -msgid "All state changing" -msgstr "Todos los cambios de estado" - -#: ../../enterprise/godmode/modules/configure_local_component.php:417 -#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:884 -#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:910 -#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:274 -#: ../../godmode/modules/manage_network_components_form_common.php:276 -#: ../../godmode/massive/massive_edit_modules.php:937 -#: ../../godmode/massive/massive_edit_modules.php:963 -#: ../../godmode/agentes/module_manager_editor_common.php:821 -msgid "Each state changing" -msgstr "Cada cambio de estado" - -#: ../../enterprise/godmode/modules/configure_local_component.php:418 -#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:911 -#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:275 -#: ../../godmode/modules/manage_network_components_form_common.php:277 -#: ../../godmode/massive/massive_edit_modules.php:964 -#: ../../godmode/agentes/module_manager_editor_common.php:822 -msgid "To normal" -msgstr "A normal" - -#: ../../enterprise/godmode/modules/configure_local_component.php:427 -#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:921 -#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:289 -#: ../../godmode/modules/manage_network_components_form_common.php:286 -#: ../../godmode/massive/massive_edit_modules.php:974 -#: ../../godmode/agentes/module_manager_editor_common.php:836 -msgid "To warning" -msgstr "A advertencia" - -#: ../../enterprise/godmode/modules/configure_local_component.php:436 -#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:931 -#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:303 -#: ../../godmode/modules/manage_network_components_form_common.php:295 -#: ../../godmode/massive/massive_edit_modules.php:984 -#: ../../godmode/agentes/module_manager_editor_common.php:850 -msgid "To critical" -msgstr "A crĆ­tico" - -#: ../../enterprise/godmode/modules/configure_local_component.php:450 -#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:963 -#: ../../godmode/massive/massive_edit_modules.php:1028 -#: ../../godmode/agentes/module_manager_editor_common.php:880 -msgid "FF timeout" -msgstr "FF tiempo de espera" - -#: ../../enterprise/godmode/modules/configure_local_component.php:458 -#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:964 -#: ../../godmode/massive/massive_edit_modules.php:1038 -msgid "" -"Timeout in secs from start of flip flop counting. If this value is exceeded, " -"FF counter is reset. Set to 0 for no timeout." -msgstr "" -"Tiempo de espera en segundos desde el comiendo del contador flip flop. Si se " -"excede este valor, el contador FF serĆ” reiniciado. Poner 0 para no tener " -"tiempo de espera" - -#: ../../enterprise/godmode/modules/configure_local_component.php:459 -msgid "This value can be set only in the async modules." -msgstr "Solo debe establecerse este valor en los mĆ³dulos asĆ­ncronos." - -#: ../../enterprise/godmode/modules/configure_local_component.php:461 -#: ../../godmode/modules/manage_network_components_form_common.php:309 -msgid "Any value below this number is discarted" -msgstr "Cualquier valor por debajo de este nĆŗmero serĆ” descartado." - -#: ../../enterprise/godmode/modules/configure_local_component.php:466 -#: ../../godmode/modules/manage_network_components_form_common.php:311 -msgid "Any value over this number is discarted" -msgstr "Cualquier valor por encima de este nĆŗmero serĆ” descartado." - -#: ../../enterprise/godmode/modules/configure_local_component.php:473 -#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:716 -#: ../../godmode/setup/snmp_wizard.php:43 -#: ../../godmode/modules/manage_network_components_form_plugin.php:49 -#: ../../godmode/modules/manage_network_components_form_wmi.php:55 -#: ../../godmode/modules/manage_network_components_form_network.php:178 -#: ../../godmode/massive/massive_edit_modules.php:780 -#: ../../godmode/agentes/module_manager_editor_common.php:649 -msgid "Post process" -msgstr "Posprocesado" - -#: ../../enterprise/godmode/modules/configure_local_component.php:500 -#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:180 -msgid "Load a basic structure on data configuration" -msgstr "Cargar una estructura bĆ”sica en la configuraciĆ³n de datos" - -#: ../../enterprise/godmode/modules/configure_local_component.php:503 -#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:183 -msgid "Check the correct structure of the data configuration" -msgstr "Comprobar la estructura correcta de la configuraciĆ³n de datos" - -#: ../../enterprise/godmode/modules/configure_local_component.php:506 -#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:196 -msgid "First line must be \"module_begin\"" -msgstr "La primera lĆ­nea tiene que ser \"module_begin\"." - -#: ../../enterprise/godmode/modules/configure_local_component.php:507 -#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:197 -msgid "Data configuration is empty" -msgstr "La configuraciĆ³n de datos estĆ” vacĆ­a." - -#: ../../enterprise/godmode/modules/configure_local_component.php:508 -#: ../../enterprise/godmode/modules/configure_local_component.php:512 -#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:198 -#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:202 -msgid "Last line must be \"module_end\"" -msgstr "La Ćŗltima lĆ­nea tiene que ser \"module_end\"." - -#: ../../enterprise/godmode/modules/configure_local_component.php:509 -#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:199 -msgid "" -"Name is missed. Please add a line with \"module_name yourmodulename\" to data " -"configuration" -msgstr "" -"Falta el nombre. Por favor, introduce una lĆ­nea con \"module_name " -"yourmodulename\" a la configuraciĆ³n de datos." - -#: ../../enterprise/godmode/modules/configure_local_component.php:510 -#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:200 -msgid "" -"Type is missed. Please add a line with \"module_type yourmoduletype\" to data " -"configuration" -msgstr "" -"Falta el tipo. Por favor, introduce una lĆ­nea con \"module_type yourmoduletype" -"\" a la configuraciĆ³n de datos." - -#: ../../enterprise/godmode/modules/configure_local_component.php:511 -#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:201 -msgid "Type is wrong. Please set a correct type" -msgstr "El tipo es incorrecto. Por favor, introduce un tipo correcto." - -#: ../../enterprise/godmode/modules/configure_local_component.php:514 -#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:204 -msgid "Error in the syntax, please check the data configuration." -msgstr "Error en la sintaxis; comprueba la configuraciĆ³n de datos." - -#: ../../enterprise/godmode/modules/configure_local_component.php:515 -#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:205 -msgid "Data configuration are built correctly" -msgstr "La configuraciĆ³n de datos se ha efectuado correctamente." - -#: ../../enterprise/godmode/modules/configure_local_component.php:523 -#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:1016 -#: ../../godmode/modules/manage_network_components_form_common.php:323 -#: ../../godmode/massive/massive_edit_modules.php:1092 -#: ../../godmode/agentes/module_manager_editor_common.php:1093 -msgid "Critical instructions" -msgstr "Instrucciones de crĆ­tico" - -#: ../../enterprise/godmode/modules/configure_local_component.php:523 -#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:1016 -#: ../../godmode/modules/manage_network_components_form_common.php:323 -#: ../../godmode/massive/massive_edit_modules.php:1092 -msgid "Instructions when the status is critical" -msgstr "Instrucciones en caso de que se encuentre en estado crĆ­tico" - -#: ../../enterprise/godmode/modules/configure_local_component.php:528 -#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:1020 -#: ../../godmode/modules/manage_network_components_form_common.php:327 -#: ../../godmode/massive/massive_edit_modules.php:1096 -#: ../../godmode/agentes/module_manager_editor_common.php:1098 -msgid "Warning instructions" -msgstr "Instrucciones de advertencia" - -#: ../../enterprise/godmode/modules/configure_local_component.php:528 -#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:1020 -#: ../../godmode/modules/manage_network_components_form_common.php:327 -#: ../../godmode/massive/massive_edit_modules.php:1096 -msgid "Instructions when the status is warning" -msgstr "Instrucciones en caso de que se encuentre en estado de advertencia" - -#: ../../enterprise/godmode/modules/configure_local_component.php:533 -#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:1024 -#: ../../godmode/modules/manage_network_components_form_common.php:331 -#: ../../godmode/massive/massive_edit_modules.php:1100 -#: ../../godmode/agentes/module_manager_editor_common.php:1102 -msgid "Unknown instructions" -msgstr "Instrucciones de desconocido" - -#: ../../enterprise/godmode/modules/configure_local_component.php:533 -#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:1024 -#: ../../godmode/modules/manage_network_components_form_common.php:331 -#: ../../godmode/massive/massive_edit_modules.php:1100 -msgid "Instructions when the status is unknown" -msgstr "Instrucciones en caso de que se encuentre en estado desconocido" - -#: ../../enterprise/godmode/modules/configure_local_component.php:542 -#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:984 -#: ../../godmode/modules/manage_network_components_form_common.php:342 -#: ../../godmode/massive/massive_edit_modules.php:1060 -#: ../../godmode/agentes/module_manager_editor_common.php:1143 -#: ../../godmode/module_library/module_library_view.php:123 -msgid "Category" -msgstr "CategorĆ­a" - -#: ../../enterprise/godmode/modules/configure_local_component.php:561 -#: ../../godmode/modules/manage_network_components_form_common.php:362 -#: ../../godmode/agentes/module_manager_editor_common.php:906 -msgid "Tags available" -msgstr "Etiquetas disponibles" - -#: ../../enterprise/godmode/modules/configure_local_component.php:579 -#: ../../godmode/modules/manage_network_components_form_common.php:380 -#: ../../godmode/agentes/module_manager_editor_common.php:1001 -msgid "Add tags to module" -msgstr "AƱadir etiquetas al mĆ³dulo" - -#: ../../enterprise/godmode/modules/configure_local_component.php:580 -#: ../../godmode/modules/manage_network_components_form_common.php:381 -#: ../../godmode/agentes/module_manager_editor_common.php:1010 -msgid "Delete tags to module" -msgstr "Eliminar etiquetas del mĆ³dulo" - -#: ../../enterprise/godmode/modules/configure_local_component.php:603 -msgid "Macros" -msgstr "Macros" - -#: ../../enterprise/godmode/modules/configure_local_component.php:978 -#: ../../godmode/modules/manage_network_components_form_common.php:706 -#: ../../godmode/agentes/module_manager_editor_common.php:1994 -msgid "Normal Status" -msgstr "Estado normal" - -#: ../../enterprise/godmode/modules/configure_local_component.php:979 -#: ../../godmode/modules/manage_network_components_form_common.php:707 -#: ../../godmode/agentes/module_manager_editor_common.php:1995 -msgid "Warning Status" -msgstr "Estado de advertencia" - -#: ../../enterprise/godmode/modules/configure_local_component.php:980 -#: ../../godmode/modules/manage_network_components_form_common.php:708 -#: ../../godmode/agentes/module_manager_editor_common.php:1996 -msgid "Critical Status" -msgstr "Estado crĆ­tico" - -#: ../../enterprise/godmode/modules/configure_local_component.php:983 -#: ../../godmode/modules/manage_network_components_form_common.php:710 -#: ../../godmode/agentes/module_manager_editor_common.php:1998 -msgid "Please introduce a maximum warning higher than the minimun warning" -msgstr "" -"Por favor, introduce un mĆ”ximo de advertencia mayor que el mĆ­nimo de " -"advertencia." - -#: ../../enterprise/godmode/modules/configure_local_component.php:985 -#: ../../godmode/modules/manage_network_components_form_common.php:711 -#: ../../godmode/agentes/module_manager_editor_common.php:1999 -msgid "Please introduce a maximum critical higher than the minimun critical" -msgstr "Por favor introduce un mĆ”ximo de crĆ­tico mayor que el mĆ­nimo de crĆ­tico." - -#: ../../enterprise/godmode/modules/configure_local_component.php:987 -msgid "Please introduce a positicve percentage value" -msgstr "Introduzca un valor porcentual positivo" - -#: ../../enterprise/godmode/modules/local_components.php:141 -#: ../../godmode/modules/manage_network_components.php:196 -#: ../../godmode/alerts/configure_alert_template.php:191 -#, php-format -msgid "Successfully created from %s" -msgstr "Creado correctamente desde %s" - -#: ../../enterprise/godmode/modules/local_components.php:157 -msgid "Local component management" -msgstr "GestiĆ³n de componentes locales" - -#: ../../enterprise/godmode/modules/local_components.php:263 -#, php-format -msgid "" -"This node is configured with centralized mode. All local components are read " -"only. Go to %s to manage them." -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." - -#: ../../enterprise/godmode/modules/local_components.php:443 -#: ../../enterprise/godmode/modules/manage_inventory_modules.php:217 -#: ../../enterprise/godmode/modules/manage_inventory_modules.php:250 -#: ../../godmode/modules/manage_network_components.php:578 -#: ../../godmode/modules/manage_network_templates.php:114 -#: ../../godmode/modules/manage_nc_groups.php:194 -msgid "Successfully multiple deleted" -msgstr "SupresiĆ³n mĆŗltiple correcta" - -#: ../../enterprise/godmode/modules/local_components.php:444 -#: ../../enterprise/godmode/modules/manage_inventory_modules.php:218 -#: ../../enterprise/godmode/modules/manage_inventory_modules.php:251 -#: ../../godmode/modules/manage_network_components.php:579 -#: ../../godmode/modules/manage_network_templates.php:115 -#: ../../godmode/modules/manage_nc_groups.php:195 -msgid "Not deleted. Error deleting multiple data" -msgstr "No borrado. Error al borrar datos mĆŗltiples." - -#: ../../enterprise/godmode/modules/local_components.php:548 -msgid "Search by name, description or data, list matches." -msgstr "BĆŗsqueda de lista de concidencias por nombre, descripciĆ³n o datos." - -#: ../../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:117 -msgid "Successfully created inventory module" -msgstr "Inventario de mĆ³dulo creado correctamente" - -#: ../../enterprise/godmode/modules/manage_inventory_modules.php:118 -msgid "Error creating inventory module" -msgstr "Error al crear mĆ³dulo del inventario" - -#: ../../enterprise/godmode/modules/manage_inventory_modules.php:143 -#: ../../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:144 -#: ../../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:162 -#: ../../enterprise/godmode/modules/manage_inventory_modules.php:183 -#: ../../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:163 -#: ../../enterprise/godmode/modules/manage_inventory_modules.php:184 -#: ../../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:275 -#: ../../enterprise/godmode/modules/manage_inventory_modules_form.php:114 -msgid "Interpreter" -msgstr "IntĆ©rprete" - -#: ../../enterprise/godmode/modules/manage_inventory_modules.php:284 -msgid "No inventory modules defined" -msgstr "No hay mĆ³dulos de inventario definidos" - -#: ../../enterprise/godmode/modules/manage_inventory_modules.php:305 -msgid "Local module" -msgstr "MĆ³dulo local" - -#: ../../enterprise/godmode/modules/manage_inventory_modules.php:307 -msgid "Remote/Local" -msgstr "Remoto/Local" - -#: ../../enterprise/godmode/modules/manage_inventory_modules.php:353 -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:355 -msgid "You can find more information at:" -msgstr "EncontrarĆ” mĆ”s informaciĆ³n en:" - -#: ../../enterprise/godmode/modules/manage_inventory_modules_form.php:71 -#: ../../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:116 -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:118 -msgid "Block Mode" -msgstr "Modo bloqueo" - -#: ../../enterprise/godmode/modules/manage_inventory_modules_form.php:122 -msgid "separate fields with " -msgstr "Separar campos con " - -#: ../../enterprise/godmode/modules/manage_inventory_modules_form.php:126 -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/services/services.elements.php:72 -msgid "Invalid service" -msgstr "Servicio no vĆ”lido" - -#: ../../enterprise/godmode/services/services.elements.php:250 -msgid "Add custom field match" -msgstr "AƱadir coincidencia de campo personalizado" - -#: ../../enterprise/godmode/services/services.elements.php:256 -msgid "Both 'name' and 'value' must be defined to filter. Ignored otherwise." -msgstr "" -"Tanto el 'nombre' como el 'valor' deben estar definidos para filtrar. Si no, " -"serĆ”n ignorados." - -#: ../../enterprise/godmode/services/services.elements.php:261 -msgid "MySQL Regular expressions case sensitive." -msgstr "" -"Las expresiones regulares de MySQL diferencian entre mayĆŗsculas y minĆŗsculas" - -#: ../../enterprise/godmode/services/services.elements.php:267 -msgid "Matching objects type" -msgstr "Tipo de elementos que coinciden" - -#: ../../enterprise/godmode/services/services.elements.php:282 -msgid "Filter by group" -msgstr "Filtrar por grupo" - -#: ../../enterprise/godmode/services/services.elements.php:294 -msgid "Use regular expresions selectors" -msgstr "Use selectores de expresiones regulares" - -#: ../../enterprise/godmode/services/services.elements.php:302 -msgid "Having agent name" -msgstr "Con nombre de agente" - -#: ../../enterprise/godmode/services/services.elements.php:310 -msgid "Having module name" -msgstr "Con nombre de mĆ³dulo" - -#: ../../enterprise/godmode/services/services.elements.php:320 -msgid "Having custom fields" -msgstr "Tener campos personalizados" - -#: ../../enterprise/godmode/services/services.elements.php:331 -msgid "Apply rules on this server" -msgstr "Aplicar reglas a este servidor" - -#: ../../enterprise/godmode/services/services.elements.php:350 -msgid "Weights" -msgstr "Pesos" - -#: ../../enterprise/godmode/services/services.elements.php:355 -msgid "In smart mode weights are automatically calculated." -msgstr "En el modo inteligente, los pesos se calculan automĆ”ticamente." - -#: ../../enterprise/godmode/services/services.elements.php:453 -#: ../../enterprise/godmode/services/services.elements.php:461 -#: ../../enterprise/godmode/services/services.elements.php:468 -msgid "Selected agent not found." -msgstr "Agente seleccionado no encontrado." - -#: ../../enterprise/godmode/services/services.elements.php:474 -#: ../../enterprise/godmode/services/services.elements.php:485 -#, php-format -msgid "Selected module not found in %s." -msgstr "El mĆ³dulo seleccionado no se ha encontrado en %s." - -#: ../../enterprise/godmode/services/services.elements.php:494 -msgid "Selected service not found." -msgstr "Servicio seleccionado no encontrado." - -#: ../../enterprise/godmode/services/services.elements.php:511 -msgid "Selected service could generate a loop" -msgstr "El servicio seleccionado podrĆ­a generar un bucle" - -#: ../../enterprise/godmode/services/services.elements.php:521 -#, php-format -msgid "Failed adding service child: %s" -msgstr "No se ha podido aƱadir el servicio hijo: %s" - -#: ../../enterprise/godmode/services/services.elements.php:560 -#, php-format -msgid "Selected rules are not valid: %s." -msgstr "Las reglas seleccionadas no son vĆ”lidas: %s." - -#: ../../enterprise/godmode/services/services.elements.php:568 -msgid "Invalid element type." -msgstr "Tipo de elemento no vĆ”lido." - -#: ../../enterprise/godmode/services/services.elements.php:594 -msgid "Element registered successfully" -msgstr "Elemento registrado correctamente." - -#: ../../enterprise/godmode/services/services.elements.php:640 -#, php-format -msgid "Error deleting element: %s" -msgstr "Error al eliminar el elemento: %s" - -#: ../../enterprise/godmode/services/services.elements.php:842 -msgid "Add element" -msgstr "AƱadir elemento" - -#: ../../enterprise/godmode/services/services.elements.php:853 -msgid "Edit element" -msgstr "Editar elemento" - -#: ../../enterprise/godmode/services/services.service.php:109 -msgid "Service already exists." -msgstr "El servicio ya existe." - -#: ../../enterprise/godmode/services/services.service.php:120 -#: ../../enterprise/godmode/massive/massive_create_services.php:110 -msgid "No name specified for the service" -msgstr "NingĆŗn nombre especificado para el servicio" - -#: ../../enterprise/godmode/services/services.service.php:131 -#: ../../enterprise/godmode/massive/massive_create_services.php:116 -msgid "No description specified for the service" -msgstr "Ninguna descripciĆ³n especificada para el servicio" - -#: ../../enterprise/godmode/services/services.service.php:142 -#: ../../enterprise/godmode/massive/massive_create_services.php:122 -msgid "You must specify an agent to store the service" -msgstr "Especifique un agente para guardar el servicio" - -#: ../../enterprise/godmode/services/services.service.php:201 -msgid "Error creating service: " -msgstr "Error al crear el servicio: " - -#: ../../enterprise/godmode/services/services.service.php:210 -#: ../../enterprise/godmode/services/services.service.php:316 -msgid "New Service" -msgstr "Nuevo servicio" - -#: ../../enterprise/godmode/services/services.service.php:216 -msgid "Service created successfully" -msgstr "Servicio creado correctamente" - -#: ../../enterprise/godmode/services/services.service.php:296 -msgid "Service updated successfully" -msgstr "Servicio actualizado correctamente" - -#: ../../enterprise/godmode/services/services.service.php:369 -msgid "Dynamic elements are not affected by cascade protection" -msgstr "La protecciĆ³n en cascada no se aplica a los elementos dinĆ”micos" - -#: ../../enterprise/godmode/services/services.service.php:519 -msgid "No Services or concrete action" -msgstr "Sin servicios o acciĆ³n concreta" - -#: ../../enterprise/godmode/services/services.service.php:538 -msgid "Random name" -msgstr "Nombre aleatorio" - -#: ../../enterprise/godmode/services/services.service.php:570 -#: ../../enterprise/godmode/massive/massive_create_services.php:659 -msgid "" -"This group will be used also to control access to this service and its " -"elements." -msgstr "" -"Este grupo se usarĆ” tambiĆ©n para controlar el acceso a este servicio y a sus " -"elementos." - -#: ../../enterprise/godmode/services/services.service.php:586 -msgid "Server assigned" -msgstr "Servidor asignado" - -#: ../../enterprise/godmode/services/services.service.php:587 -msgid "Selected Prediction server will be assigned to evaluate the service." -msgstr "" -"Se asignarĆ” el servidor de predicciĆ³n seleccionado para evaluar el servicio" - -#: ../../enterprise/godmode/services/services.service.php:608 -msgid "Evaluation interval" -msgstr "Intervalo de evaluaciĆ³n" - -#: ../../enterprise/godmode/services/services.service.php:634 -#: ../../enterprise/godmode/massive/massive_create_services.php:674 -msgid "Agent to store data" -msgstr "Agentes para almacenar datos" - -#: ../../enterprise/godmode/services/services.service.php:676 -#: ../../enterprise/godmode/massive/massive_create_services.php:716 -msgid "In smart mode, thresholds are percentual." -msgstr "En modo inteligente, los umbrales son porcentuales" - -#: ../../enterprise/godmode/services/services.service.php:726 -#: ../../enterprise/godmode/massive/massive_create_services.php:799 -msgid "Unknown elements as critical" -msgstr "Elementos desconocidos como crĆ­ticos" - -#: ../../enterprise/godmode/services/services.service.php:756 -msgid "Asynchronous" -msgstr "AsincrĆ³no" - -#: ../../enterprise/godmode/services/services.service.php:766 -#: ../../enterprise/godmode/massive/massive_create_services.php:829 -msgid "Cascade protection enabled" -msgstr "ProtecciĆ³n en cascada habilitada" - -#: ../../enterprise/godmode/services/services.service.php:776 -msgid "Enable Sunburst" -msgstr "Habilitar Sunburst" - -#: ../../enterprise/godmode/services/services.service.php:786 -msgid "General Data" -msgstr "Datos generales" - -#: ../../enterprise/godmode/services/services.service.php:796 -#: ../../enterprise/godmode/massive/massive_create_services.php:842 -msgid "Calculate continuous SLA" -msgstr "Calcular SLA continuo" - -#: ../../enterprise/godmode/services/services.service.php:806 -#: ../../enterprise/godmode/massive/massive_create_services.php:852 -msgid "S.L.A. interval" -msgstr "Intervalo SLA" - -#: ../../enterprise/godmode/services/services.service.php:820 -#: ../../enterprise/godmode/massive/massive_create_services.php:866 -msgid "S.L.A. limit" -msgstr "LĆ­mite SLA" - -#: ../../enterprise/godmode/services/services.service.php:841 -msgid "" -"Here are described the alert templates, which will use their default actions.\n" -"\t\tYou can modify the default behaviour editing alerts in the agent who " -"stores data and alert definitions about the service and the SLA status." -msgstr "" -"AquĆ­ se describen las plantillas de alertas, que utilizarĆ”n sus acciones por " -"defecto.\n" -"\t\tPuedes modificar el comportambiento de las alertas de ediciĆ³n de " -"comportamiento por defecto en el agente que almacena definiciones de datos y " -"alerta sobre el servicio y el estado de SLA." - -#: ../../enterprise/godmode/services/services.service.php:867 -#: ../../enterprise/godmode/massive/massive_create_services.php:896 -msgid "Warning service alert" -msgstr "Alerta de servicio en advertencia" - -#: ../../enterprise/godmode/services/services.service.php:879 -#: ../../enterprise/godmode/massive/massive_create_services.php:908 -msgid "Critical service alert" -msgstr "Alerta de servicio en crĆ­tico" - -#: ../../enterprise/godmode/services/services.service.php:891 -#: ../../enterprise/godmode/massive/massive_create_services.php:920 -msgid "Unknown service alert" -msgstr "Alerta de servicio en desconocido" - -#: ../../enterprise/godmode/services/services.service.php:903 -#: ../../enterprise/godmode/massive/massive_create_services.php:932 -msgid "S.L.A. critical service alert" -msgstr "Alerta de servicio en crĆ­tico de S.L.A" - -#: ../../enterprise/godmode/services/services.service.php:998 -msgid "" -"This change in the service configuration will delete the history of the " -"service modules. Do you wish to continue?" -msgstr "" -"Este cambio en la configuraciĆ³n del servicio borrarĆ” el historial de mĆ³dulos " -"de servicio. ĀæDesea contiinuar?" - -#: ../../enterprise/godmode/services/services.service.php:1000 -msgid "" -"This change in the service configuration will prevent the SLA modules from " -"being created. Do you wish to continue?" -msgstr "" -"Este cambio en la configuraciĆ³n del servicio impedirĆ” que se creen mĆ³dulos " -"SLA. ĀæDesea continuar?" - -#: ../../enterprise/godmode/services/services.massive.meta.php:56 -#: ../../enterprise/godmode/services/services.massive.elements.php:93 -#: ../../godmode/massive/massive_edit_agents.php:952 -#: ../../godmode/agentes/agent_manager.php:541 -msgid "Not available" -msgstr "No disponible" - -#: ../../enterprise/godmode/services/services.massive.elements.php:56 -#: ../../enterprise/godmode/massive/massive_operations.php:157 -msgid "Bulk service elements adition" -msgstr "AdiciĆ³n de elementos de servicio masivos" - -#: ../../enterprise/godmode/services/services.massive.elements.php:57 -#: ../../enterprise/godmode/massive/massive_operations.php:159 -msgid "Bulk service elements deletion" -msgstr "EliminaciĆ³n masiva de elementos de servicio" - -#: ../../enterprise/godmode/services/services.massive.elements.php:61 -#: ../../enterprise/godmode/massive/massive_operations.php:158 -msgid "Bulk service elements edition" -msgstr "EdiciĆ³n de elementos de servicio masivos" - -#: ../../enterprise/godmode/reporting/visual_console_template.php:63 -#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:62 -#: ../../godmode/reporting/map_builder.php:75 -#: ../../godmode/reporting/map_builder.php:121 -#: ../../godmode/reporting/visual_console_favorite.php:72 -msgid "Visual Console List" -msgstr "Lista de la consola visual" - -#: ../../enterprise/godmode/reporting/visual_console_template.php:75 -#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:74 -#: ../../godmode/reporting/map_builder.php:87 -#: ../../godmode/reporting/visual_console_favorite.php:84 -msgid "Visual Favourite Console" -msgstr "Consola visual favorita" - -#: ../../enterprise/godmode/reporting/visual_console_template.php:88 -#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:87 -#: ../../godmode/reporting/map_builder.php:100 -#: ../../godmode/reporting/visual_console_favorite.php:97 -msgid "Visual Console Template" -msgstr "Plantilla de la consola visual" - -#: ../../enterprise/godmode/reporting/visual_console_template.php:100 -#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:99 -#: ../../godmode/reporting/map_builder.php:112 -#: ../../godmode/reporting/visual_console_favorite.php:109 -msgid "Visual Console Template Wizard" -msgstr "Asistente de plantilla de consola visual" - -#: ../../enterprise/godmode/reporting/visual_console_template.php:141 -#: ../../enterprise/godmode/reporting/visual_console_template.php:157 -msgid "visual console has not been selected" -msgstr "no se ha seleccionado consola visual" - -#: ../../enterprise/godmode/reporting/visual_console_template.php:147 -msgid "Error. Error created template" -msgstr "Error. Error al crear la plantilla" - -#: ../../enterprise/godmode/reporting/visual_console_template.php:149 -msgid "Error. Template name cannot be repeated" -msgstr "Error. El nombre de la plantilla no se puede repetir" - -#: ../../enterprise/godmode/reporting/visual_console_template.php:151 -msgid "Successfully created template" -msgstr "Plantilla creada correctamente" - -#: ../../enterprise/godmode/reporting/visual_console_template.php:163 -msgid "Error. Error delete template" -msgstr "Error. Error al borrar plantilla" - -#: ../../enterprise/godmode/reporting/visual_console_template.php:165 -msgid "Successfully delete template" -msgstr "Plantilla borrada correctamente" - -#: ../../enterprise/godmode/reporting/visual_console_template.php:187 -msgid "Create From" -msgstr "Crear desde" - -#: ../../enterprise/godmode/reporting/visual_console_template.php:198 -msgid "There is not any visual console created. Please, create one firstly." -msgstr "No hay consolas visuales creadas. Cree una primero." - -#: ../../enterprise/godmode/reporting/visual_console_template.php:254 -#: ../../enterprise/godmode/reporting/graph_template_list.php:257 -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:166 -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:667 -msgid "Create template" -msgstr "Crear plantilla" - -#: ../../enterprise/godmode/reporting/visual_console_template.php:260 -msgid "Create New Template" -msgstr "Crear nueva plantilla" - -#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:108 -msgid "Template Wizard" -msgstr "Asistente de plantillas" - -#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:156 -#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:198 -msgid "Sucessfully applied" -msgstr "Aplicado correctamente" - -#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:158 -#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:200 -msgid "Could not be applied" -msgstr "No se pudo aplicar." - -#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:200 -msgid "Visual console name" -msgstr "Nombre de la consola visual" - -#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:200 -msgid "" -"You can use macro _agentalias_ here. Left in blank if you want to use default " -"name: Template name - agent alias" -msgstr "" -"Puede usar macro _agentalias_ aquĆ­. En caso de estar vacĆ­o, use el nombre por " -"defecto: Nombre de plantilla - alias de agente" - -#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:236 -#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:288 -msgid "Target group" -msgstr "Grupo objetivo" - -#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:281 -#: ../../enterprise/godmode/reporting/graph_template_wizard.php:228 -#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:415 -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:832 -msgid "Agents available" -msgstr "Agentes disponibles" - -#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:287 -#: ../../enterprise/godmode/reporting/graph_template_wizard.php:234 -#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:425 -#: ../../enterprise/godmode/reporting/reporting_builder.template_editor.php:208 -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:834 -msgid "Agents to apply" -msgstr "Agentes para aplicar" - -#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:304 -#: ../../enterprise/godmode/reporting/graph_template_wizard.php:259 -#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:466 -msgid "Add agents to template" -msgstr "AƱadir agentes a la plantilla" - -#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:306 -#: ../../enterprise/godmode/reporting/graph_template_wizard.php:263 -#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:478 -msgid "Undo agents to template" -msgstr "Deshacer aƱadir agentes a la plantilla" - -#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:324 -#: ../../enterprise/godmode/reporting/graph_template_wizard.php:281 -#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:499 -msgid "Apply template" -msgstr "Aplicar plantilla" - -#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:631 -#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:661 -#: ../../enterprise/godmode/reporting/graph_template_wizard.php:443 -#: ../../enterprise/godmode/reporting/graph_template_wizard.php:475 -#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:830 -#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:861 -msgid "Please set template distinct than " -msgstr "Por favor, introduce una plantilla distinta a " - -#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:635 -#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:834 -msgid "Please set agent distinct than " -msgstr "Por favor, escoge un agente distinto a " - -#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:656 -#: ../../enterprise/godmode/reporting/graph_template_wizard.php:470 -#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:856 -msgid "" -"This will be delete all reports created in previous template applications. Do " -"you want to continue?" -msgstr "" -"Esta acciĆ³n eliminarĆ” todos los informes creados en aplicaciones anteriores de " -"plantillas. ĀæQuieres continuar?" - -#: ../../enterprise/godmode/reporting/reporting_builder.template_list_item.php:207 -#: ../../enterprise/godmode/reporting/reporting_builder.template_list_item.php:226 -#: ../../enterprise/godmode/reporting/reporting_builder.template_list_item.php:245 -#: ../../godmode/reporting/reporting_builder.list_items.php:378 -#: ../../godmode/reporting/reporting_builder.list_items.php:397 -#: ../../godmode/reporting/reporting_builder.list_items.php:416 -msgid "Ascendent" -msgstr "Ascencente" - -#: ../../enterprise/godmode/reporting/reporting_builder.template_list_item.php:214 -#: ../../enterprise/godmode/reporting/reporting_builder.template_list_item.php:233 -#: ../../enterprise/godmode/reporting/reporting_builder.template_list_item.php:252 -#: ../../godmode/reporting/reporting_builder.list_items.php:385 -#: ../../godmode/reporting/reporting_builder.list_items.php:404 -#: ../../godmode/reporting/reporting_builder.list_items.php:420 -msgid "Descent" -msgstr "Descendente" - -#: ../../enterprise/godmode/reporting/reporting_builder.template_list_item.php:258 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:215 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1722 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:111 -#: ../../godmode/reporting/reporting_builder.list_items.php:424 -#: ../../godmode/reporting/create_container.php:364 -#: ../../godmode/reporting/create_container.php:473 -#: ../../godmode/reporting/create_container.php:527 -#: ../../godmode/reporting/reporting_builder.item_editor.php:1215 -msgid "Time lapse" -msgstr "Intervalo de tiempo" - -#: ../../enterprise/godmode/reporting/reporting_builder.template_list_item.php:259 -#: ../../godmode/reporting/reporting_builder.list_items.php:425 -msgid "Name or Description" -msgstr "Nombre o descripciĆ³n" - -#: ../../enterprise/godmode/reporting/reporting_builder.template_list_item.php:312 -#: ../../godmode/netflow/nf_item_list.php:228 -#: ../../godmode/netflow/nf_item_list.php:230 -msgid "Move to up" -msgstr "Subir" - -#: ../../enterprise/godmode/reporting/reporting_builder.template_list_item.php:325 -#: ../../godmode/netflow/nf_item_list.php:226 -#: ../../godmode/netflow/nf_item_list.php:231 -msgid "Move to down" -msgstr "Bajar" - -#: ../../enterprise/godmode/reporting/aws_view.php:53 -msgid "Instance" -msgstr "Instancia" - -#: ../../enterprise/godmode/reporting/aws_view.php:55 -msgid "IO read" -msgstr "Lectura IO" - -#: ../../enterprise/godmode/reporting/aws_view.php:56 -msgid "IO write" -msgstr "Escritura IO" - -#: ../../enterprise/godmode/reporting/aws_view.php:57 -msgid "Disk read" -msgstr "Lectura de disco" - -#: ../../enterprise/godmode/reporting/aws_view.php:58 -msgid "Disk write" -msgstr "Escritura en disco" - -#: ../../enterprise/godmode/reporting/aws_view.php:59 -msgid "Network in" -msgstr "Entrada de red" - -#: ../../enterprise/godmode/reporting/aws_view.php:60 -msgid "Network out" -msgstr "Salida de red" - -#: ../../enterprise/godmode/reporting/aws_view.php:134 -msgid "Failed to retrieve AWS information using selected account." -msgstr "" -"No se ha podido obtener informaciĆ³n de AWS a travĆ©s de la cuenta seleccionada." - -#: ../../enterprise/godmode/reporting/aws_view.php:153 -msgid "AWS credentials not validated." -msgstr "No se han validado los credenciales de AWS." - -#: ../../enterprise/godmode/reporting/aws_view.php:168 -msgid "Discovery Cloud: AWS" -msgstr "Discovery Cloud: AWS" - -#: ../../enterprise/godmode/reporting/aws_view.php:177 -msgid "Please, select an account: " -msgstr "Seleccione una cuenta: " - -#: ../../enterprise/godmode/reporting/aws_view.php:186 -msgid "CREATE CLOUD MONITORING DISCOVERY TASK" -msgstr "CREAR TAREA DE DISCOVERY DE MONITORIZACIƓN EN LA NUBE" - -#: ../../enterprise/godmode/reporting/aws_view.php:189 -msgid "" -"Within this view you will find information collected using Discovery Cloud AWS " -"task. You will be able to see the most relevant information about your " -"infrastructure, such as the current cost of your contracted services, the " -"number of instances per region or resource usage metrics. In order to collect " -"this information you must create a Cloud Monitoring Discovery task." -msgstr "" -"En esta vista encontrarĆ” la informaciĆ³n recogida mediante la tarea de " -"Discovery Cloud AWS. PodrĆ” ver la informaciĆ³n mĆ”s relevante sobre su " -"infraestructura, como el coste actual de los servicios contratados, el nĆŗmero " -"de instancias por regiĆ³n o las mĆ©tricas de uso de los recursos. Para recoger " -"esta informaciĆ³n, cree una tarea de Cloud Monitoring Discovery." - -#: ../../enterprise/godmode/reporting/aws_view.php:192 -msgid "Press the create button to begin." -msgstr "Pinche en el botĆ³n \"crear\" para comenzar." - -#: ../../enterprise/godmode/reporting/aws_view.php:221 -msgid "Instance table" -msgstr "Tabla de instancias" - -#: ../../enterprise/godmode/reporting/graph_template_wizard.php:80 -#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:147 -msgid "Cleanup sucessfully" -msgstr "Limpieza correcta" - -#: ../../enterprise/godmode/reporting/graph_template_wizard.php:83 -#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:150 -msgid "Cleanup error" -msgstr "Error al borrar contenido" - -#: ../../enterprise/godmode/reporting/graph_template_wizard.php:127 -#: ../../enterprise/godmode/reporting/graph_template_list.php:111 -#: ../../godmode/reporting/graph_container.php:101 -#: ../../godmode/reporting/graph_container.php:109 -#: ../../godmode/reporting/create_container.php:188 -msgid "Graph container" -msgstr "Contenedor de grĆ”fica" - -#: ../../enterprise/godmode/reporting/graph_template_wizard.php:135 -msgid "Wizard template" -msgstr "Plantilla de Wizard" - -#: ../../enterprise/godmode/reporting/graph_template_wizard.php:197 -#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:266 -msgid "Clean up template" -msgstr "Vaciar la plantilla" - -#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:195 -msgid "No item could be applied to report." -msgstr "No se ha podido aplicar ningĆŗn elemento al informe." - -#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:198 -msgid "reports" -msgstr "Informes" - -#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:198 -msgid "items" -msgstr "elementos" - -#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:207 -#: ../../godmode/massive/massive_operations.php:347 -msgid "" -"In order to perform massive operations, PHP needs a correct configuration in " -"timeout parameters. Please, open your PHP configuration file (php.ini) for " -"example: sudo vi /etc/php5/apache2/php.ini;
And set your timeout " -"parameters to a correct value:
max_execution_time = 0 and " -"max_input_time = -1" -msgstr "" -"Para poder realizar operaciones masivas, PHP necesitas una configuraciĆ³n " -"correcta de los parĆ”metros de tiempo de espera. Por favor, abre el archivo de " -"configuraciĆ³n PHP (php.ini), por ejemplo: sudo vi /etc/php5/apache2/php.ini;" -"
y fija los parƔmetros del tiempo de espera en un valor correcto: " -"
max_execution_time = 0 y max_input_time = -1" - -#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:221 -msgid "Create template report wizard" -msgstr "Asistente de creaciĆ³n de plantillas de informes" - -#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:273 -msgid "Create report per agent" -msgstr "Crear informe por agente" - -#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:282 -msgid "" -"Left in blank if you want to use default name: Template name - agents (num " -"agents) - Date" -msgstr "" -"DĆ©jalo en blanco si quieres usar el nombre por defecto: Nombre plantilla - " -"agentes (num agentes) - Fecha" - -#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:327 -msgid "Filter by" -msgstr "Filtrar por" - -#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:398 -msgid "Filter tag" -msgstr "Filtro por etiqueta" - -#: ../../enterprise/godmode/reporting/mysql_builder.php:66 -msgid "Custom MySQL template builder" -msgstr "Creador de plantillas MySQL personalizado" - -#: ../../enterprise/godmode/reporting/mysql_builder.php:117 -msgid "Create custom SQL" -msgstr "Crear SQL personalizado" - -#: ../../enterprise/godmode/reporting/mysql_builder.php:128 -#: ../../enterprise/godmode/reporting/mysql_builder.php:146 -msgid "Create new custom" -msgstr "Crear nueva consulta personalizada" - -#: ../../enterprise/godmode/reporting/mysql_builder.php:187 -msgid "List of custom MySQL templates" -msgstr "Listas de plantillas MySQL personalizadas" - -#: ../../enterprise/godmode/reporting/mysql_builder.php:193 -msgid "Template builder" -msgstr "Creador de plantillas" - -#: ../../enterprise/godmode/reporting/mysql_builder.php:212 -msgid "Successfully operation" -msgstr "OperaciĆ³n realizada correctamente" - -#: ../../enterprise/godmode/reporting/mysql_builder.php:212 -msgid "Could not be operation" -msgstr "La operaciĆ³n no pudo completarse." - -#: ../../enterprise/godmode/reporting/mysql_builder.php:214 -msgid "Without changes" -msgstr "Sin cambios" - -#: ../../enterprise/godmode/reporting/reporting_builder.advanced.php:81 -msgid "Advance Reporting" -msgstr "Informes avanzados" - -#: ../../enterprise/godmode/reporting/reporting_builder.advanced.php:97 -msgid "Page orientation" -msgstr "OrientaciĆ³n de pĆ”gina" - -#: ../../enterprise/godmode/reporting/graph_template_item_editor.php:65 -msgid "Graph template item editor" -msgstr "Editor de elementos de plantilla de grĆ”fico" - -#: ../../enterprise/godmode/reporting/graph_template_item_editor.php:206 -msgid "Decrease Weight" -msgstr "Reducir el peso" - -#: ../../enterprise/godmode/reporting/graph_template_item_editor.php:206 -msgid "Increase Weight" -msgstr "Incrementar el peso" - -#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:57 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:196 -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:51 -#: ../../godmode/reporting/reporting_builder.item_editor.php:58 -msgid "Only table" -msgstr "Solo tabla" - -#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:58 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:197 -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:52 -#: ../../godmode/reporting/reporting_builder.item_editor.php:59 -msgid "Table & Graph" -msgstr "Tabla y grĆ”fico" - -#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:59 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:198 -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:53 -#: ../../godmode/reporting/reporting_builder.item_editor.php:60 -msgid "Only graph" -msgstr "Solo grĆ”fico" - -#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:224 -msgid "hourly S.L.A." -msgstr "SLA por horas" - -#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:225 -msgid "Availability Graph S.L.A." -msgstr "GrĆ”fico de disponibilidad SLA" - -#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:291 -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:190 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:203 -msgid "Filter agents selector" -msgstr "Selector de filtro de agentes" - -#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:305 -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:228 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:221 -#: ../../godmode/reporting/visual_console_builder.wizard.php:408 -msgid "If you select several agents, only the common modules will be displayed" -msgstr "Si selecciona varios agentes, solo se mostrarĆ”n los mĆ³dulos comunes" - -#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:319 -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:106 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:289 -msgid "Elements to apply" -msgstr "Elementos para aplicar" - -#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:368 -msgid "SLA min value" -msgstr "Valor mĆ­nimo de SLA" - -#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:368 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:374 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:380 -msgid "Enter possible range of values in SLA." -msgstr "AƱada el rango de valores posibles de SLA" - -#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:369 -msgid "SLA min Value" -msgstr "Valor mĆ­nimo de SLA" - -#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:374 -msgid "SLA max value" -msgstr "Valor mĆ”ximo SLA" - -#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:375 -msgid "SLA max Value" -msgstr "Valor mĆ”ximo SLA" - -#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:380 -msgid "SLA Limit %" -msgstr "LĆ­mite % SLA" - -#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:381 -msgid "SLA Limit Value" -msgstr "Valor lĆ­mite de SLA" - -#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:386 -msgid "Dynamic SLA" -msgstr "SLA dinĆ”mico" - -#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:393 -msgid "Inverse SLA" -msgstr "SLA inverso" - -#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:402 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3030 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:462 -#: ../../godmode/reporting/reporting_builder.item_editor.php:3097 -msgid "Failover mode" -msgstr "Modo conmutaciĆ³n" - -#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:403 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3031 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:463 -#: ../../godmode/reporting/reporting_builder.item_editor.php:3098 -msgid "" -"SLA calculation must be performed taking into account the failover modules " -"assigned to the primary module" -msgstr "" -"El SLA debe calcularse teniendo en cuenta los mĆ³dulos de conmutaciĆ³n asignados " -"al mĆ³dulo primario" - -#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:420 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3050 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:480 -#: ../../godmode/reporting/reporting_builder.item_editor.php:3117 -msgid "Failover type" -msgstr "Tipo de conmutaciĆ³n" - -#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:425 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3055 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:485 -#: ../../godmode/reporting/reporting_builder.item_editor.php:3122 -msgid "Failover normal" -msgstr "ConmutaciĆ³n normal" - -#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:437 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3067 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:497 -#: ../../godmode/reporting/reporting_builder.item_editor.php:3134 -msgid "Failover simple" -msgstr "ConmutaciĆ³n simple" - -#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:450 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2965 -#: ../../godmode/reporting/reporting_builder.item_editor.php:3042 -msgid "SLA items sorted by fulfillment value" -msgstr "Elementos de SLA ordenados por valor rellenado" - -#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:455 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1816 -#: ../../godmode/reporting/reporting_builder.item_editor.php:1312 -msgid "Only display wrong SLAs" -msgstr "Mostrar solo los SLA incorrectos" - -#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:461 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2576 -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:446 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2569 -msgid "Show graph" -msgstr "Mostrar grĆ”fico" - -#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:481 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3366 -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:473 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:797 -#: ../../godmode/reporting/reporting_builder.item_editor.php:3447 -msgid "Show item in landscape format (only PDF)" -msgstr "Mostrar elemento en formato apaisado (solo PDF)" - -#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:495 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3375 -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:489 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:813 -#: ../../godmode/reporting/reporting_builder.item_editor.php:3456 -msgid "Page break at the end of the item (only PDF)" -msgstr "Salto de pĆ”gina despuĆ©s del elemento (solo PDF)" - -#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:534 -msgid "Please introduce a SLA max value higher than the SLA min value" -msgstr "AƱada un valor mĆ”x. de SLA mayor que el valor mĆ­n. del SLA" - -#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:659 -msgid "Dynamic SLA can not be Inverse" -msgstr "El SLA dinĆ”mico no puede ser inverso" - -#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:664 -msgid "Check Dynamic SLA or introduce a max and min SLA value" -msgstr "Compruebe el SLA dinĆ”mico o aƱada un nuevo valor SLA mĆ­n. y mĆ”x." - -#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:668 -msgid "SLA Limit value is needed" -msgstr "Se necesita un valor lĆ­mite de SLA." - -#: ../../enterprise/godmode/reporting/graph_template_editor.php:58 -msgid "Not created. Blank name" -msgstr "No creado. Nombre vacĆ­o." - -#: ../../enterprise/godmode/reporting/graph_template_editor.php:94 -msgid "Graph template editor" -msgstr "Editor de plantillas grĆ”ficas" - -#: ../../enterprise/godmode/reporting/graph_template_editor.php:173 -msgid "Template updated successfully" -msgstr "Plantilla actualizada correctamente" - -#: ../../enterprise/godmode/reporting/graph_template_editor.php:219 -msgid "3 hours" -msgstr "3 horas" - -#: ../../enterprise/godmode/reporting/graph_template_editor.php:223 -#: ../../godmode/setup/performance.php:534 -msgid "2 days" -msgstr "2 dĆ­as" - -#: ../../enterprise/godmode/reporting/graph_template_editor.php:224 -msgid "4 days" -msgstr "4 dĆ­as" - -#: ../../enterprise/godmode/reporting/graph_template_editor.php:225 -#: ../../godmode/setup/performance.php:536 -msgid "Last week" -msgstr "ƚltima semana" - -#: ../../enterprise/godmode/reporting/graph_template_editor.php:227 -#: ../../godmode/setup/performance.php:538 -msgid "Last month" -msgstr "ƚltimo mes" - -#: ../../enterprise/godmode/reporting/graph_template_editor.php:228 -msgid "2 months" -msgstr "2 meses" - -#: ../../enterprise/godmode/reporting/graph_template_editor.php:239 -msgid "Stacked" -msgstr "Apilado" - -#: ../../enterprise/godmode/reporting/reporting_builder.template_advanced.php:115 -msgid "Advance Options" -msgstr "Opciones avanzadas" - -#: ../../enterprise/godmode/reporting/graph_template_list.php:119 -msgid "Graph template management" -msgstr "GestiĆ³n de plantillas grĆ”ficas" - -#: ../../enterprise/godmode/reporting/graph_template_list.php:203 -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:497 -#: ../../godmode/alerts/alert_list.list.php:56 -msgid "Template name" -msgstr "Nombre de la plantilla" - -#: ../../enterprise/godmode/reporting/graph_template_list.php:252 -msgid "There are no defined graph templates" -msgstr "No hay plantillas grĆ”ficas definidas" - -#: ../../enterprise/godmode/reporting/reporting_builder.template_editor.php:170 -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:107 -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:131 -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:193 -msgid "Edit template" -msgstr "Editar plantilla" - -#: ../../enterprise/godmode/reporting/reporting_builder.template_editor.php:209 -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:903 -msgid "" -"Case insensitive regular expression for agent alias. For example: Network.* " -"will match with the following agent alias: network_agent1, NetworK CHECKS" -msgstr "" -"ExpresiĆ³n regular que no distingue mayĆŗsculas ni minĆŗsculas para el alias de " -"agente. Por ejemplo: Network.* coincidirĆ” con los siguientes alias de agente: " -"network_agent1, NetworK CHECKS" - -#: ../../enterprise/godmode/reporting/reporting_builder.template_editor.php:222 -#: ../../godmode/reporting/reporting_builder.main.php:226 -msgid "Generate cover page in PDF render" -msgstr "Generar portada en formato PDF" - -#: ../../enterprise/godmode/reporting/reporting_builder.template_editor.php:230 -#: ../../godmode/reporting/reporting_builder.main.php:234 -msgid "Generate index in PDF render" -msgstr "Generar Ć­ndice en formato PDF" - -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1624 -#: ../../godmode/reporting/reporting_builder.php:3672 -msgid "Successfull action" -msgstr "AcciĆ³n completada" - -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1625 -#: ../../godmode/servers/modificar_server.php:157 -#: ../../godmode/servers/modificar_server.php:168 -msgid "Unsuccessfull action" -msgstr "No se pudo completar la acciĆ³n" - -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1642 -#: ../../godmode/reporting/reporting_builder.item_editor.php:975 -msgid "Item Editor" -msgstr "Editor de elemento" - -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1744 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:4993 -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:198 -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:818 -#: ../../godmode/reporting/reporting_builder.item_editor.php:1240 -#: ../../godmode/reporting/reporting_builder.item_editor.php:6969 -msgid "" -"Warning: period 0 reports cannot be used to show information back in time. " -"Information contained in this kind of reports will be always reporting the " -"most recent information" -msgstr "" -"Advertencia: los informes en perĆ­odo 0 no pueden mostrar la informaciĆ³n " -"pasada. La informaciĆ³n contenida en este tipo de informes mostrarĆ” siempre la " -"informaciĆ³n mĆ”s reciente." - -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1784 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:773 -#: ../../godmode/reporting/reporting_builder.item_editor.php:1280 -msgid "Projection period" -msgstr "PerĆ­odo de proyecciĆ³n" - -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1803 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:748 -#: ../../godmode/reporting/reporting_builder.item_editor.php:1299 -msgid "Data range" -msgstr "Rango de datos" - -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1830 -#: ../../godmode/reporting/reporting_builder.item_editor.php:1326 -msgid "Current month" -msgstr "Mes actual" - -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1840 -#: ../../godmode/reporting/reporting_builder.item_editor.php:1342 -msgid "Working time" -msgstr "Tiempo de trabajo" - -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1905 -#: ../../godmode/reporting/reporting_builder.item_editor.php:1408 -msgid "Time from" -msgstr "Hora desde" - -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1923 -#: ../../godmode/reporting/reporting_builder.item_editor.php:1426 -msgid "Time to" -msgstr "Hora hasta" - -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1941 -#: ../../godmode/reporting/reporting_builder.item_editor.php:1444 -msgid "Show 24x7 item" -msgstr "Mostrar elementos 24/7" - -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1971 -msgid "Select server" -msgstr "Seleccionar servidor" - -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1985 -#: ../../godmode/reporting/reporting_builder.item_editor.php:189 -msgid "Local metaconsole" -msgstr "Metaconsola local" - -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2056 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3632 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3864 -msgid "" -"Case insensitive regular expression or string for module name. For example: if " -"you use this field with \"Module exact match\" enabled then this field has to " -"be fulfilled with the literally string of the module name, if not you can use " -"a regular expression. Example: .*usage.* will match: cpu_usage, vram usage in " -"matchine 1." -msgstr "" -"ExpresiĆ³n regular, no sensible a mayĆŗsculas/minĆŗsculas, para buscar el mĆ³dulo. " -"Por ejemplo: si usas este campo con \"Coincidencia exacta de mĆ³dulo\" " -"activado, entonces este campo tiene que rellenarse con la cadena literal del " -"nombre del mĆ³dulo. Si no, usarĆ” una expresiĆ³n regular, por ejemplo: .*usage.* " -"coincidirĆ­a con : cpu_usage, vram usage in machine 1." - -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2078 -msgid "Module exact match" -msgstr "Coincidencia exacta de mĆ³dulo" - -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2079 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3564 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3640 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3788 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3871 -msgid "Check it if you want to match module name literally" -msgstr "" -"ActĆ­vala si quieres que haya una coincidencia exacta y literal en el nombre " -"del mĆ³dulo." - -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2095 -msgid "Case insensitive regular expression or string for templates name." -msgstr "" -"ExpresiĆ³n regular o cadena sin sensibilidad de mayĆŗsculas y minĆŗsculas para el " -"nombre de las plantillas." - -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2118 -msgid "Case insensitive regular expression or string for actions name." -msgstr "" -"ExpresiĆ³n regular o cadena sin sensibilidad de mayĆŗsculas y minĆŗsculas para el " -"nombre de las acciones." - -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2140 -msgid "Hide items without data" -msgstr "Ocultar elementos sin datos" - -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2141 -msgid "Check it if you want not show items without data" -msgstr "Marcar si no quieres que muestre elementos sin datos" - -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2198 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2240 -msgid "Max items" -msgstr "NĆŗmero mĆ”ximo de elementos" - -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2215 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:784 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2252 -msgid "Serialized header" -msgstr "Cabecera serializada" - -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2216 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:784 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2253 -msgid "The separator character is |" -msgstr "El carĆ”cter separador es |" - -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2231 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2205 -msgid "Custom SQL template" -msgstr "Plantilla SQL personalizada" - -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2252 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2226 -msgid "The entities of the fields that contain them must be included." -msgstr "Las entidades de los campos que los contienen deben estar incluidas." - -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2277 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2283 -msgid "Protocol must be specified in URL (e.g.: \"https://\")" -msgstr "" -"El protocolo debe estar especificado en la URL (por ejemplo: \"https://\")" - -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2283 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:788 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2289 -msgid "Field separator" -msgstr "Separador de campo" - -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2284 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:788 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2290 -msgid "Separator for different fields in the serialized text chain" -msgstr "Separador para diferentes campos en la cadena de texto serializada" - -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2304 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:792 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2310 -msgid "Line separator" -msgstr "Separador de lĆ­nea" - -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2305 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:792 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2311 -msgid "" -"Separator in different lines (composed by fields) of the serialized text chain" -msgstr "" -"Separador en diferentes lĆ­neas (compuestas por campos) de la cadena de texto " -"serializada" - -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2325 -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:321 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2331 -msgid "Group by agent" -msgstr "Agrupar por agente" - -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2341 -#: ../../godmode/reporting/reporting_builder.item_editor.php:3412 -msgid "Group by" -msgstr "Agrupar por" - -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2375 -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:333 -#: ../../godmode/reporting/reporting_builder.item_editor.php:3018 -msgid "Show in the same row" -msgstr "Mostrar en la misma fila" - -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2377 -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:334 -#: ../../godmode/reporting/reporting_builder.item_editor.php:3020 -msgid "Show one module per row with all its operations" -msgstr "Mostrar un mĆ³dulo por fila con todas sus operaciones" - -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2469 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:537 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2435 -msgid "Graph render" -msgstr "Representar en grĆ”fica" - -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2475 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:543 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2441 -msgid "Avg, max & min" -msgstr "Media, mĆ”x. y mĆ­n." - -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2476 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:544 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2442 -msgid "Max only" -msgstr "Solo mĆ”x." - -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2477 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:545 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2443 -msgid "Min only" -msgstr "Solo mĆ­n." - -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2478 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:546 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2444 -msgid "Avg only" -msgstr "Solo media" - -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2491 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:573 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2490 -msgid "Full resolution graph (TIP)" -msgstr "GrĆ”fica a resoluciĆ³n completa (TIP)" - -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2503 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:591 -msgid "" -"If this option was checked, only adding in elements that type of modules " -"support this option." -msgstr "" -"Si se marca esta casilla, la opciĆ³n solo es posible si se aƱaden este tipo de " -"mĆ³dulos." - -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2533 -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:425 -#: ../../enterprise/godmode/alerts/alert_inventory_builder.php:215 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2545 -msgid "Condition" -msgstr "CondiciĆ³n" - -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2543 -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:432 -msgid ">=" -msgstr ">=" - -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2550 -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:434 -msgid "<" -msgstr "<" - -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2590 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2583 -msgid "Select fields to show" -msgstr "Seleccionar campos a mostrar" - -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2669 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:368 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2659 -msgid "Show address instead module name" -msgstr "Mostrar la direcciĆ³n en lugar del nombre del mĆ³dulo" - -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2670 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:369 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2660 -msgid "Show the main address of agent." -msgstr "Mostrar la direcciĆ³n principal del agente" - -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2689 -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:458 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:346 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2679 -msgid "Show resume" -msgstr "Mostrar resumen" - -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2690 -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:458 -msgid "" -"Show a resume table with max, min, average of total modules on the report " -"bottom" -msgstr "" -"Mostrar una tabla resumen con el mĆ”ximo, el mĆ­nimo y la media de los mĆ³dulos " -"totales al final del informe" - -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2708 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2699 -msgid "

Select fields to show

" -msgstr "

Seleccione campos a mostrar

" - -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2756 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2759 -msgid "

Select fields to show

" -msgstr "

Seleccione campos a mostrar

" - -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2772 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2775 -msgid "Agent min values" -msgstr "Valores mĆ­nimos de agente" - -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2784 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:605 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2788 -msgid "Show Summary group" -msgstr "Mostrar el resumen del grupo" - -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2801 -#: ../../godmode/reporting/reporting_builder.item_editor.php:3395 -msgid "Show Summary" -msgstr "Mostrar resumen" - -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2870 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:669 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2874 -msgid "Event Status" -msgstr "Estado del evento" - -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2901 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:699 -msgid "By agent" -msgstr "Por agente" - -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2911 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:709 -msgid "By user validator" -msgstr "Por usuario que validĆ³" - -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2921 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:719 -msgid "By criticity" -msgstr "Por gravedad" - -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2931 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:729 -msgid "Validated vs unvalidated" -msgstr "Validados vs sin validar" - -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2945 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2999 -msgid "Height (dynamic graphs)" -msgstr "Altura (grĆ”ficos dinĆ”micos)" - -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2985 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2983 -msgid "Query History Database" -msgstr "Base de datos histĆ³rica de consultas" - -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2997 -#: ../../godmode/reporting/reporting_builder.item_editor.php:3064 -msgid "Priority mode" -msgstr "Modo de prioridad" - -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3002 -#: ../../godmode/reporting/reporting_builder.item_editor.php:3069 -msgid "Priority ok mode" -msgstr "Modo de prioridad ok" - -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3014 -#: ../../godmode/reporting/reporting_builder.item_editor.php:3081 -msgid "Priority unknown mode" -msgstr "Modo de prioridad desconocido" - -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3104 -msgid "Modules to match" -msgstr "MĆ³dulos a comparar" - -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3106 -msgid "Select the modules to match when create a report for agents" -msgstr "Selecciona los mĆ³dulos a comparar al crear el informe para cada agente." - -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3206 -msgid "Modules to match (Free text)" -msgstr "MĆ³dulos a comparar (texto libre)" - -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3208 -msgid "Free text to filter the modules of agents when apply this template." -msgstr "" -"Texto libre para filtrar los mĆ³dulos de los agentes cuando se usa esta " -"plantilla." - -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3225 -msgid "Create a graph for each agent" -msgstr "Crear un grĆ”fico por cada agente" - -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3227 -msgid "" -"If it is checked, the regexp or name of modules match only each to each to " -"agent, instead create a big graph with all modules from all agents." -msgstr "" -"Si se activa, la expresiĆ³n regular o el nombre de mĆ³dulo harĆ” coincidencia en " -"cada mĆ³dulo de cada agente, y crearĆ” un grĆ”fico que contenga mĆ³dulos de todos " -"los agentes." - -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3254 -#: ../../godmode/reporting/reporting_builder.item_editor.php:3189 -msgid "Calculate for custom intervals" -msgstr "Calcular intervalos personalizados" - -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3266 -#: ../../godmode/reporting/reporting_builder.item_editor.php:3201 -msgid "Time lapse intervals" -msgstr "Intervalos de tiempo transcurrido" - -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3268 -#: ../../godmode/reporting/reporting_builder.item_editor.php:3204 -msgid "" -"Lapses of time in which the period is divided to make more precise calculations" -msgstr "" -"Lapsos de tiempo en los que el intervalo se divide para obtener cĆ”lculos mĆ”s " -"precisos" - -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3313 -#: ../../godmode/reporting/reporting_builder.item_editor.php:3245 -msgid "Table only" -msgstr "Solo tabla" - -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3323 -#: ../../godmode/reporting/reporting_builder.item_editor.php:3256 -msgid "Graph only" -msgstr "Solo grĆ”fico" - -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3333 -#: ../../godmode/reporting/reporting_builder.item_editor.php:3267 -msgid "Graph and table" -msgstr "GrĆ”fico y tabla" - -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3350 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:830 -#: ../../godmode/reporting/reporting_builder.item_editor.php:3284 -msgid "Uncompress module" -msgstr "Descomprimir mĆ³dulo" - -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3351 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:831 -#: ../../godmode/reporting/reporting_builder.item_editor.php:3285 -msgid "Use uncompressed module data." -msgstr "Utilizar datos de mĆ³dulos descomprimidos" - -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3382 -#: ../../godmode/reporting/reporting_builder.item_editor.php:1168 -msgid "Filter by network" -msgstr "Filtrar por red" - -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3412 -#: ../../godmode/reporting/reporting_builder.item_editor.php:1187 -msgid "Show alive IPs only" -msgstr "Mostrar solo IPs vivas" - -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3425 -#: ../../godmode/reporting/reporting_builder.item_editor.php:1200 -msgid "Show IPs not assigned to an agent" -msgstr "Mostrar IP no asignadas a un agente" - -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3451 -#: ../../godmode/reporting/reporting_builder.item_editor.php:3719 -#: ../../godmode/netflow/nf_item_list.php:282 -msgid "Create item" -msgstr "Crear elemento" - -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3509 -#: ../../godmode/reporting/reporting_builder.item_editor.php:3813 -msgid "SLA Min. (value)" -msgstr "Valor mĆ­nimo para el SLA" - -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3514 -#: ../../godmode/reporting/reporting_builder.item_editor.php:3818 -msgid "SLA Max. (value)" -msgstr "Valor mĆ”ximo para el SLA" - -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3519 -#: ../../godmode/reporting/reporting_builder.item_editor.php:3823 -msgid "SLA Limit (%)" -msgstr "LĆ­mite (%) para el SLA" - -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3536 -msgid "Please save the SLA template for start to add items in this list." -msgstr "" -"Por favor, guarda la plantilla SLA para empezar a aƱadir elementos a la lista." - -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3577 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3804 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:4249 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:4394 -msgid "Not literally" -msgstr "No literal" - -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3623 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3855 -msgid "" -"Case insensitive regular expression for agent name. For example: Network* will " -"match with the following agent names: network_agent1, NetworK CHECKS" -msgstr "" -"ExpresiĆ³n regular no sensible a mayĆŗsculas. Por ejemplo: Network* harĆ” " -"coincidencia con los siguientes nombres de mĆ³dulos: network_agent1, NetworK " -"CHECKS" - -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3639 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3870 -msgid "Literal module name forced" -msgstr "Nombre de mĆ³dulo literal forzado" - -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3760 -msgid "Please save the template to start adding items into the list." -msgstr "" -"Por favor, guarda la plantilla para empezar a aƱadir elementos a la lista." - -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:4275 -msgid "Name and SLA limit should not be empty" -msgstr "El nombre y el lĆ­mite SLA no deberĆ­an estar vacĆ­os." - -#: ../../enterprise/godmode/reporting/visual_console_builder.wizard_services.php:150 -#: ../../enterprise/godmode/reporting/visual_console_builder.wizard_services.php:151 -msgid "Push the selected services into the list" -msgstr "AƱade los servicios seleccionados a la lista" - -#: ../../enterprise/godmode/reporting/visual_console_builder.wizard_services.php:161 -#: ../../enterprise/godmode/reporting/visual_console_builder.wizard_services.php:162 -msgid "Remove the services from the list" -msgstr "Elimina los servicios de la lista" - -#: ../../enterprise/godmode/reporting/visual_console_builder.wizard_services.php:229 -msgid "Icon preview" -msgstr "Vista previa del icono" - -#: ../../enterprise/godmode/reporting/visual_console_builder.wizard_services.php:295 -msgid "The services list is empty" -msgstr "La lista de servicios esta vacĆ­a." - -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:181 -msgid "List templates" -msgstr "Lista de plantillas" - -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:565 -#: ../../godmode/reporting/reporting_builder.php:1055 -msgid "HTML view" -msgstr "Vista HTML" - -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:573 -#: ../../godmode/reporting/reporting_builder.php:1065 -msgid "Export to XML" -msgstr "Exportar a XML" - -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:661 -msgid "You haven't created templates yet." -msgstr "Aun no has creado ninguna plantilla." - -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:681 -msgid "Generate a dynamic report" -msgstr "Generar un informe dinĆ”mico" - -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:765 -msgid "Set start and end date" -msgstr "Fije la fecha de inicio y conclusiĆ³n" - -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:815 -msgid "Monthly SLA period" -msgstr "Periodo SLA mensual" - -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:815 -msgid "This field only applies in case of Monthly SLA item." -msgstr "Este campo solo aplica en el caso de un elemento de SLA mensual." - -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:865 -msgid "Undo agents" -msgstr "Anular agentes" - -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:902 -msgid "RegEx agent filter" -msgstr "Filtro de agente RegEx" - -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:918 -msgid "Generate" -msgstr "Generar" - -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:1312 -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:1334 -msgid "Please set agent or agent regex distinct than " -msgstr "Establezca agente o agente regex diferente a " - -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:1342 -msgid "It is not a regular expression " -msgstr "No es una expresiĆ³n regular " - -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:1344 -msgid "No agent matches regular expression " -msgstr "NingĆŗn agente coincide con la expresiĆ³n regular " - -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:312 -msgid "Order:" -msgstr "Orden:" - -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:348 -msgid "" -"Show a resume table with max, min, average of total modules on the report " -"bottom:" -msgstr "" -"Muestra una tabla de resumen con el mĆ”ximo, mĆ­nimo y media del total de " -"mĆ³dulos en la parte inferior del informe:" - -#: ../../enterprise/godmode/menu.php:16 -msgid "Manage Satellite Server" -msgstr "Gestionar servidor SatĆ©lite" - -#: ../../enterprise/godmode/menu.php:25 -#: ../../enterprise/godmode/massive/massive_operations.php:99 -msgid "Policies operations" -msgstr "Operaciones de las polĆ­ticas" - -#: ../../enterprise/godmode/menu.php:36 -#: ../../enterprise/godmode/massive/massive_operations.php:75 -msgid "SNMP operations" -msgstr "Operaciones SNMP" - -#: ../../enterprise/godmode/menu.php:48 -#: ../../enterprise/godmode/massive/massive_operations.php:28 -msgid "Satellite operations" -msgstr "Operaciones SatĆ©lite" - -#: ../../enterprise/godmode/menu.php:60 -#: ../../enterprise/godmode/massive/massive_operations.php:53 -msgid "Services operations" -msgstr "Operaciones de servicios" - -#: ../../enterprise/godmode/menu.php:72 ../../enterprise/godmode/menu.php:278 -msgid "Duplicate config" -msgstr "Duplicar configuraciĆ³n" - -#: ../../enterprise/godmode/menu.php:81 -#: ../../godmode/agentes/configurar_agente.php:707 -msgid "Network config manager" -msgstr "Administrador de configuraciĆ³n de red" - -#: ../../enterprise/godmode/menu.php:117 -msgid "Manage agent autoconfiguration" -msgstr "Administrar autoconfiguraciĆ³n" - -#: ../../enterprise/godmode/menu.php:174 -msgid "Mysql" -msgstr "Mysql" - -#: ../../enterprise/godmode/menu.php:179 -#: ../../enterprise/godmode/wizards/Applications.class.php:163 -#: ../../enterprise/godmode/wizards/Applications.class.php:171 -msgid "Applications" -msgstr "Aplicaciones" - -#: ../../enterprise/godmode/menu.php:190 -msgid "Amazon Web Services" -msgstr "Amazon Web Services" - -#: ../../enterprise/godmode/menu.php:191 -msgid "Microsoft Azure" -msgstr "Microsoft Azure" - -#: ../../enterprise/godmode/menu.php:192 -msgid "Google Compute Platform" -msgstr "Google Compute Platform" - -#: ../../enterprise/godmode/menu.php:208 -msgid "New console task" -msgstr "Nueva tarea de consola" - -#: ../../enterprise/godmode/menu.php:218 -msgid "Enterprise ACL Setup" -msgstr "ConfiguraciĆ³n ACL Enterprise" - -#: ../../enterprise/godmode/menu.php:227 -msgid "Skins" -msgstr "Apariencia" - -#: ../../enterprise/godmode/menu.php:237 -msgid "Manage database HA" -msgstr "Gestionar la base de datos de alta disponibilidad" - -#: ../../enterprise/godmode/menu.php:269 -msgid "Log Collector" -msgstr "Colector de logs" - -#: ../../enterprise/godmode/menu.php:287 -msgid "Password policy" -msgstr "PolĆ­tica de contraseƱas" - -#: ../../enterprise/godmode/menu.php:331 ../../godmode/setup/setup.php:190 -#: ../../godmode/setup/setup.php:289 -msgid "Module Library" -msgstr "Biblioteca de mĆ³dulos" - -#: ../../enterprise/godmode/menu.php:339 -#: ../../enterprise/godmode/alerts/alert_inventory.php:78 -#: ../../enterprise/godmode/alerts/alert_inventory.php:80 -msgid "Inventory alerts" -msgstr "Alertas de inventario" - -#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor_form.php:64 -#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:383 -msgid "Custom OID" -msgstr "OID personalizado" - -#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:225 -#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:237 -msgid "Successfully added trap custom values" -msgstr "AƱadidos correctamente a los valores personalizados del trap" - -#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:227 -#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:239 -msgid "Error adding trap custom values" -msgstr "Error al aƱadir los valores personalizados del trap" - -#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:242 -#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:317 -msgid "This custom OID is preexistent." -msgstr "El OID personalizado ya existe" - -#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:283 -msgid "No change in data" -msgstr "No hay cambios en los datos" - -#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:285 -#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:312 -msgid "Successfully updated trap custom values" -msgstr "Los valores personalizados del trap se han aƱadido correctamente." - -#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:287 -#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:314 -msgid "Error updating trap custom values" -msgstr "Error al actualizar los valores personalizados del trap" - -#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:330 -msgid "Successfully deleted trap custom values" -msgstr "Valores personalizados del trap eliminados correctamente" - -#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:336 -msgid "Error deleting trap custom values" -msgstr "Error al eliminar valores personalizados del trap" - -#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:342 -#, php-format -msgid "Uploaded %s/%s traps" -msgstr "Actualizados %s/%s traps" - -#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:346 -msgid "Fail uploaded file" -msgstr "Error al subir el archivo" - -#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:351 -msgid "" -"MIB files will be loaded and searched for SNMP trap definitions. They will not " -"be installed on the system! You can use the MIB uploader for that purpose." -msgstr "" -"Los archivos MIB se cargarĆ”n; se buscaron las definiciones de trap SNMP. Ā”No " -"serĆ”n instalados en el sistema! Puedes usar el cargador de MIB para " -"instalarlos." - -#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:360 -msgid "Load MIB" -msgstr "Cargar MIB" - -#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:362 -msgid "Upload MIB" -msgstr "Actualizar MIB" - -#: ../../enterprise/godmode/admin_access_logs.php:78 -msgid "Show extended info" -msgstr "Mostrar mĆ”s info" - -#: ../../enterprise/godmode/admin_access_logs.php:99 -msgid "" -"The security check cannot be performed. There are no data in tsession_extended " -"to check the hash." -msgstr "" -"La comprobaciĆ³n de seguridad no se puede realizar. No hay datos en " -"tsession_extended para verificar el hash." - -#: ../../enterprise/godmode/admin_access_logs.php:108 -msgid "Security check is ok." -msgstr "La comprobaciĆ³n de seguridad estĆ” OK." - -#: ../../enterprise/godmode/admin_access_logs.php:113 -msgid "Security check is fail." -msgstr "La comprobaciĆ³n de seguridad ha fallado." - -#: ../../enterprise/godmode/admin_access_logs.php:208 -msgid "Extended info:" -msgstr "InformaciĆ³n extendida:" - -#: ../../enterprise/godmode/admin_access_logs.php:216 -msgid "Changes:" -msgstr "Cambios:" - -#: ../../enterprise/godmode/massive/massive_edit_service_elements.php:65 -#: ../../enterprise/godmode/massive/massive_delete_service_elements.php:67 -#: ../../enterprise/godmode/massive/massive_add_service_elements.php:71 -msgid "You must select a service" -msgstr "Debe seleccionar un servicio" - -#: ../../enterprise/godmode/massive/massive_edit_service_elements.php:131 -msgid "Failed to process updating elements in services: " -msgstr "Error al procesar la actualizaciĆ³n de elementos de los servicios: " - -#: ../../enterprise/godmode/massive/massive_edit_service_elements.php:153 -#: ../../enterprise/godmode/massive/massive_delete_service_elements.php:112 -#: ../../enterprise/godmode/massive/massive_add_service_elements.php:251 -#, php-format -msgid "%d modules" -msgstr "%d mĆ³dulos" - -#: ../../enterprise/godmode/massive/massive_edit_service_elements.php:161 -#: ../../enterprise/godmode/massive/massive_delete_service_elements.php:120 -#: ../../enterprise/godmode/massive/massive_add_service_elements.php:259 -#, php-format -msgid "%d agents" -msgstr "%d agentes" - -#: ../../enterprise/godmode/massive/massive_edit_service_elements.php:169 -#: ../../enterprise/godmode/massive/massive_delete_service_elements.php:128 -#: ../../enterprise/godmode/massive/massive_add_service_elements.php:267 -#, php-format -msgid "%d services" -msgstr "%d servicios" - -#: ../../enterprise/godmode/massive/massive_edit_service_elements.php:176 -#: ../../enterprise/godmode/massive/massive_delete_service_elements.php:135 -#: ../../enterprise/godmode/massive/massive_add_service_elements.php:274 -msgid "No changes made" -msgstr "No se realizaron cambios" - -#: ../../enterprise/godmode/massive/massive_edit_service_elements.php:252 -#: ../../enterprise/godmode/massive/massive_add_service_elements.php:496 -msgid "In smart services weights are automatically calculated." -msgstr "En el modo inteligente, los pesos se calculan automĆ”ticamente." - -#: ../../enterprise/godmode/massive/massive_edit_service_elements.php:257 -#: ../../enterprise/godmode/massive/massive_add_service_elements.php:501 -msgid "" -"Weights configured are common for every item added to the service, if you want " -"to customize them, please edit each element at service element editor." -msgstr "" -"Los pesos configurados son comunes a todos los elementos aƱadidos al servicio. " -"Si desea personalizarlos, edite el servicio." - -#: ../../enterprise/godmode/massive/massive_edit_service_elements.php:262 -#: ../../enterprise/godmode/massive/massive_add_service_elements.php:506 -#: ../../enterprise/godmode/massive/massive_create_services.php:1148 -msgid "Service items summary" -msgstr "Resumen de elementos de servicio" - -#: ../../enterprise/godmode/massive/massive_edit_service_elements.php:291 -#: ../../enterprise/godmode/massive/massive_add_service_elements.php:535 -#: ../../enterprise/godmode/massive/massive_create_services.php:1177 -msgid "Unknown weight" -msgstr "Peso desconocido" - -#: ../../enterprise/godmode/massive/massive_edit_service_elements.php:304 -#: ../../enterprise/godmode/massive/massive_add_service_elements.php:548 -#: ../../enterprise/godmode/massive/massive_create_services.php:1190 -msgid "Normal weight" -msgstr "Peso normal" - -#: ../../enterprise/godmode/massive/massive_edit_service_elements.php:320 -#: ../../enterprise/godmode/massive/massive_delete_service_elements.php:211 -#: ../../enterprise/godmode/massive/massive_add_service_elements.php:564 -#: ../../enterprise/godmode/massive/massive_create_services.php:1205 -msgid "Selected services" -msgstr "Servicios seleccionados" - -#: ../../enterprise/godmode/massive/massive_edit_service_elements.php:373 -msgid "Update selected service elements" -msgstr "Actualizar los elementos de servicio seleccionados" - -#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:491 -#: ../../godmode/massive/massive_edit_modules.php:554 -msgid "Dynamic Min." -msgstr "MĆ­nimo dinĆ”mico" - -#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:732 -#: ../../godmode/massive/massive_edit_modules.php:796 -msgid "SMNP community" -msgstr "Comunidad SMNP" - -#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:742 -#: ../../godmode/massive/massive_edit_modules.php:806 -#: ../../godmode/agentes/module_manager_editor_network.php:227 -msgid "SNMP OID" -msgstr "SNMP OID" - -#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:804 -#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:808 -#: ../../godmode/massive/massive_edit_modules.php:861 -#: ../../godmode/massive/massive_edit_modules.php:865 -#: ../../godmode/wizards/HostDevices.class.php:1272 -#: ../../godmode/wizards/HostDevices.class.php:1303 -#: ../../godmode/agentes/module_manager_editor_network.php:349 -#: ../../godmode/agentes/module_manager_editor_network.php:371 -msgid "The pass length must be eight character minimum." -msgstr "La longitud de la contraseƱa debe ser mĆ­nimo de ocho caracteres." - -#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:855 -#: ../../godmode/massive/massive_edit_modules.php:912 -#: ../../godmode/agentes/module_manager_editor_common.php:731 -msgid "Export target" -msgstr "Servidor de exportaciĆ³n" - -#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:945 -#: ../../godmode/massive/massive_edit_modules.php:998 -msgid "Active Counters" -msgstr "Contadores activos" - -#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:946 -#: ../../godmode/massive/massive_edit_modules.php:999 -msgid "Inactive Counters" -msgstr "Contadores inactivos" - -#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:961 -#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:480 -#: ../../godmode/massive/massive_edit_modules.php:1014 -#: ../../godmode/agentes/module_manager_editor_common.php:865 -msgid "FF interval" -msgstr "Intervalo FF" - -#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:962 -#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:496 -#: ../../godmode/massive/massive_edit_modules.php:1024 -msgid "Module execution flip flop time interval (in secs)." -msgstr "Tiempo del intervalo de flip flop de ejecuciĆ³n del mĆ³dulo (en segundos)." - -#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:990 -#: ../../godmode/massive/massive_edit_modules.php:1066 -msgid "Policy linking status" -msgstr "Estado de enlaces de la polĆ­tica" - -#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:990 -#: ../../godmode/massive/massive_edit_modules.php:1066 -msgid "This field only has sense in modules adopted by a policy." -msgstr "Este campo solo tiene sentido en los mĆ³dulos aprobados por una polĆ­tica." - -#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:991 -#: ../../godmode/massive/massive_edit_modules.php:1067 -msgid "Linked" -msgstr "Enlazado" - -#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:1000 -#: ../../godmode/modules/manage_network_components_form_common.php:315 -#: ../../godmode/massive/massive_edit_modules.php:1076 -#: ../../godmode/agentes/module_manager_editor_common.php:764 -msgid "Discard unknown events" -msgstr "Descartar eventos desconocidos" - -#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:1029 -#: ../../godmode/massive/massive_edit_modules.php:1105 -msgid "The module still store data but the alerts and events will be stop" -msgstr "" -"El mĆ³dulo todavĆ­a almacena datos pero las alertas y los eventos se detendrĆ”n." - -#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:1053 -#: ../../godmode/massive/massive_edit_modules.php:1131 -msgid "Seconds that agent will wait for the execution of the module." -msgstr "Segundos que el agente tendrĆ” que esperar para la ejecuciĆ³n del mĆ³dulo" - -#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:1059 -#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:515 -#: ../../godmode/massive/massive_edit_modules.php:1137 -msgid "Number of retries that the module will attempt to run." -msgstr "NĆŗmero de intentos que el mĆ³dulo intentarĆ” activar" - -#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:1070 -#: ../../godmode/modules/manage_network_components_form_network.php:209 -#: ../../godmode/massive/massive_edit_modules.php:1148 -#: ../../godmode/agentes/module_manager_editor_network.php:281 -msgid "TCP send" -msgstr "Enviar TCP" - -#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:1073 -#: ../../godmode/modules/manage_network_components_form_network.php:216 -#: ../../godmode/massive/massive_edit_modules.php:1151 -#: ../../godmode/agentes/module_manager_editor_network.php:295 -msgid "TCP receive" -msgstr "Recibir TCP" - -#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:1076 -#: ../../godmode/modules/manage_network_components_form_wmi.php:31 -#: ../../godmode/massive/massive_edit_modules.php:1154 -#: ../../godmode/agentes/module_manager_editor_wmi.php:133 -msgid "WMI query" -msgstr "Consulta WMI" - -#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:1079 -#: ../../godmode/modules/manage_network_components_form_wizard.php:685 -#: ../../godmode/modules/manage_network_components_form_wmi.php:33 -#: ../../godmode/massive/massive_edit_modules.php:1157 -#: ../../godmode/agentes/module_manager_editor_wmi.php:151 -msgid "Key string" -msgstr "Cadena clave" - -#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:1082 -#: ../../godmode/modules/manage_network_components_form_wmi.php:39 -#: ../../godmode/massive/massive_edit_modules.php:1160 -#: ../../godmode/agentes/module_manager_editor_wmi.php:164 -msgid "Field number" -msgstr "Campo nĆŗmero" - -#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:1085 -#: ../../godmode/servers/plugin_registration.php:503 -#: ../../godmode/modules/manage_network_components_form_plugin.php:35 -#: ../../godmode/massive/massive_edit_plugins.php:346 -#: ../../godmode/massive/massive_edit_modules.php:1163 -#: ../../godmode/agentes/module_manager_editor_plugin.php:49 -msgid "Plugin" -msgstr "Plugin" - -#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:1135 -#: ../../godmode/modules/manage_network_components_form_network.php:258 -#: ../../godmode/massive/massive_edit_modules.php:1213 -#: ../../godmode/agentes/module_manager_editor_network.php:477 -msgid "Inherited" -msgstr "Heredado" - -#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:1136 -#: ../../godmode/modules/manage_network_components_form_network.php:259 -#: ../../godmode/massive/massive_edit_modules.php:1214 -msgid "Linux" -msgstr "Linux" - -#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:1137 -#: ../../godmode/modules/manage_network_components_form_network.php:260 -#: ../../godmode/massive/massive_edit_modules.php:1215 -msgid "Windows" -msgstr "Windows" - -#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:1140 -#: ../../godmode/modules/manage_network_components_form_network.php:263 -#: ../../godmode/massive/massive_edit_modules.php:1218 -msgid "Target OS" -msgstr "SO objetivo" - -#: ../../enterprise/godmode/massive/massive_operations.php:115 -msgid "Bulk alerts policy add" -msgstr "AƱadir alertas de polĆ­ticas de forma masiva" - -#: ../../enterprise/godmode/massive/massive_operations.php:116 -msgid "Bulk alerts policy delete" -msgstr "Eliminar alertas de polĆ­ticas de forma masiva" - -#: ../../enterprise/godmode/massive/massive_operations.php:117 -msgid "Bulk tags module policy edit" -msgstr "Editar las etiquetas de mĆ³dulos en polĆ­ticas de forma masiva" - -#: ../../enterprise/godmode/massive/massive_operations.php:118 -msgid "Bulk modules policy tags edit" -msgstr "Editar las etiquetas de mĆ³dulos en polĆ­ticas de forma masiva" - -#: ../../enterprise/godmode/massive/massive_operations.php:119 -msgid "Bulk modules policy add from agent" -msgstr "AƱadir mĆ³dulos de forma masiva a la polĆ­tica del agente" - -#: ../../enterprise/godmode/massive/massive_operations.php:120 -msgid "Bulk modules policy edit" -msgstr "Editas polĆ­tica masiva de mĆ³dulos" - -#: ../../enterprise/godmode/massive/massive_operations.php:131 -msgid "Bulk alert SNMP delete" -msgstr "Eliminar alertas SNMP de forma masiva" - -#: ../../enterprise/godmode/massive/massive_operations.php:132 -msgid "Bulk alert SNMP edit" -msgstr "Editar alertas SNMP de forma masiva" - -#: ../../enterprise/godmode/massive/massive_operations.php:143 -msgid "Bulk Satellite modules edit" -msgstr "Editar mĆ³dulos SatĆ©lite de forma masiva" - -#: ../../enterprise/godmode/massive/massive_operations.php:156 -msgid "Bulk services creation" -msgstr "CreaciĆ³n de servicios masivos" - -#: ../../enterprise/godmode/massive/massive_operations.php:160 -msgid "Bulk services deletion" -msgstr "Borrado de servicios en masa" - -#: ../../enterprise/godmode/massive/massive_delete_service_elements.php:90 -msgid "Failed to process deleting services elements: " -msgstr "Error al procesar la eliminaciĆ³n de elementos de servicios: " - -#: ../../enterprise/godmode/massive/massive_delete_service_elements.php:131 -msgid "removed" -msgstr "borrado" - -#: ../../enterprise/godmode/massive/massive_delete_service_elements.php:264 -msgid "Remove selected" -msgstr "Eliminar lo seleccionado" - -#: ../../enterprise/godmode/massive/massive_delete_alerts_policy.php:88 -msgid "Success: remove the alerts." -msgstr "Alertas borradas correctamente" - -#: ../../enterprise/godmode/massive/massive_delete_alerts_policy.php:88 -msgid "Failed: remove the alerts for this modules, please check." -msgstr "Error al borrar las alertas en estos mĆ³dulos" - -#: ../../enterprise/godmode/massive/massive_delete_alerts_policy.php:125 -#: ../../enterprise/godmode/massive/massive_add_alerts_policy.php:115 -#: ../../enterprise/godmode/policies/policy_alerts.php:642 -#: ../../godmode/massive/massive_add_alerts.php:280 -#: ../../godmode/massive/massive_standby_alerts.php:217 -#: ../../godmode/massive/massive_delete_alerts.php:271 -#: ../../godmode/massive/massive_enable_disable_alerts.php:189 -msgid "Alert template" -msgstr "Plantilla de alerta" - -#: ../../enterprise/godmode/massive/massive_delete_alerts_policy.php:141 -msgid "Modules agents in policy" -msgstr "MĆ³dulos de agentes en la polĆ­tica" - -#: ../../enterprise/godmode/massive/massive_edit_tags_policy.php:92 -#: ../../enterprise/godmode/massive/massive_tags_edit_policy.php:87 -msgid "Successful update the tags" -msgstr "Etiquetas actualizadas correctamente" - -#: ../../enterprise/godmode/massive/massive_edit_tags_policy.php:93 -#: ../../enterprise/godmode/massive/massive_tags_edit_policy.php:88 -msgid "Unsuccessful update the tags" -msgstr "Error al actualizar las etiquetas" - -#: ../../enterprise/godmode/massive/massive_edit_tags_policy.php:143 -msgid "Tags unused" -msgstr "Etiquetas sin usar" - -#: ../../enterprise/godmode/massive/massive_edit_tags_policy.php:183 -msgid "Tags used" -msgstr "Etiquetas usadas" - -#: ../../enterprise/godmode/massive/massive_add_alerts_policy.php:87 -msgid "Success: create the alerts." -msgstr "Alertas creadas correctamente" - -#: ../../enterprise/godmode/massive/massive_add_alerts_policy.php:87 -msgid "Failed: create the alerts for this modules, please check." -msgstr "Error al crear las alertas para estos mĆ³dulos. Resuelve el problema." - -#: ../../enterprise/godmode/massive/massive_add_alerts_policy.php:131 -msgid "Modules in policy" -msgstr "MĆ³dulos en la polĆ­tica" - -#: ../../enterprise/godmode/massive/massive_delete_services.php:50 -#, php-format -msgid "Failed to delete: %s" -msgstr "No se ha podido eliminar: %s" - -#: ../../enterprise/godmode/massive/massive_add_service_elements.php:112 -#, php-format -msgid "Problems while adding module element: %d, %s" -msgstr "Problemas al agregar el elemento del mĆ³dulo: %d, %s" - -#: ../../enterprise/godmode/massive/massive_add_service_elements.php:157 -#, php-format -msgid "Problems while adding agent element: %d, %s" -msgstr "Problemas al agregar el elemento agente: %d, %s" - -#: ../../enterprise/godmode/massive/massive_add_service_elements.php:205 -#, php-format -msgid "%s: %d, %s" -msgstr "%s: %d, %s" - -#: ../../enterprise/godmode/massive/massive_add_service_elements.php:228 -msgid "Failed to process adding elements in services: " -msgstr "Error al procesar la adiciĆ³n de elementos en los servicios: " - -#: ../../enterprise/godmode/massive/massive_add_service_elements.php:270 -msgid "added" -msgstr "aƱadido" - -#: ../../enterprise/godmode/massive/massive_add_service_elements.php:354 -msgid "Item type to be added" -msgstr "Tipo de artĆ­culo que se agregarĆ”" - -#: ../../enterprise/godmode/massive/massive_add_service_elements.php:371 -#: ../../enterprise/godmode/massive/massive_create_services.php:974 -msgid "Add selected" -msgstr "AƱadir seleccionado" - -#: ../../enterprise/godmode/massive/massive_add_modules_policy.php:75 -msgid "Successfully copied " -msgstr "Copiado correctamente " - -#: ../../enterprise/godmode/massive/massive_add_modules_policy.php:82 -msgid " cannot be copied to " -msgstr " no se puede copiar a " - -#: ../../enterprise/godmode/massive/massive_add_modules_policy.php:82 -msgid " policy" -msgstr " polĆ­tica de" - -#: ../../enterprise/godmode/massive/massive_add_modules_policy.php:190 -#: ../../godmode/massive/massive_copy_modules.php:213 -msgid "No modules for this agent" -msgstr "No existen mĆ³dulos para este agente" - -#: ../../enterprise/godmode/massive/massive_add_modules_policy.php:223 -msgid "To policies" -msgstr "a polĆ­ticas" - -#: ../../enterprise/godmode/massive/massive_add_modules_policy.php:359 -#: ../../godmode/massive/massive_add_alerts.php:324 -#: ../../godmode/massive/massive_edit_agents.php:1199 -#: ../../godmode/massive/massive_delete_alerts.php:388 -msgid "" -"Unsucessful sending the data, please contact with your administrator or make " -"with less elements." -msgstr "" -"Error al enviar los datos. Por favor, contacta con el administrador o " -"intĆ©ntalo con menos elementos." - -#: ../../enterprise/godmode/massive/massive_add_modules_policy.php:376 -msgid "No destiny policies to copy" -msgstr "No hay polĆ­ticas de destino que copiar" - -#: ../../enterprise/godmode/massive/massive_delete_alerts_snmp.php:159 -#: ../../godmode/snmpconsole/snmp_alert.php:724 -#, php-format -msgid "Successfully deleted alerts (%s / %s)" -msgstr "Alertas eliminadas correctamente (%s / %s)" - -#: ../../enterprise/godmode/massive/massive_delete_alerts_snmp.php:167 -#: ../../godmode/snmpconsole/snmp_alert.php:728 -#, php-format -msgid "Unsuccessfully deleted alerts (%s / %s)" -msgstr "Error al eliminar las alertas (%s / %s)" - -#: ../../enterprise/godmode/massive/massive_delete_alerts_snmp.php:175 -#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:233 -msgid "You must select a SNMP alert" -msgstr "Seleccione una alerta SNMP" - -#: ../../enterprise/godmode/massive/massive_delete_alerts_snmp.php:198 -#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:258 -msgid "" -"Search by these fields description, OID, Custom Value, SNMP Agent (IP), Single " -"value, each Custom OIDs/Datas." -msgstr "" -"BĆŗsqueda por descripciĆ³n de los campos, OIS, Valores personalizados, Agentes " -"(IP) SNMP, Valor Ćŗnico, cada OIDs/Datos personalizado." - -#: ../../enterprise/godmode/massive/massive_delete_alerts_snmp.php:217 -msgid "SNMP Alerts to be deleted" -msgstr "Alertas SNMP para aƱadir" - -#: ../../enterprise/godmode/massive/massive_delete_alerts_snmp.php:289 -#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:403 -msgid "No snmp alert found." -msgstr "No se ha encontrado la alerta SNMP." - -#: ../../enterprise/godmode/massive/massive_create_services.php:210 -#, php-format -msgid "Failed to create service for agent %s, %s" -msgstr "No se ha podido crear el servicio para el agente %s, %s" - -#: ../../enterprise/godmode/massive/massive_create_services.php:294 -#, php-format -msgid "Failed to create service for module %s, %s" -msgstr "No se ha podido crear el servicio para el mĆ³dulo %s, %s" - -#: ../../enterprise/godmode/massive/massive_create_services.php:380 -#, php-format -msgid "Failed to create service for service %s, %s" -msgstr "No se ha podido crear el servicio para el servicio %s, %s" - -#: ../../enterprise/godmode/massive/massive_create_services.php:435 -#, php-format -msgid "Agent selected %d not found" -msgstr "Agente seleccionado %d no encontrado" - -#: ../../enterprise/godmode/massive/massive_create_services.php:481 -#, php-format -msgid "Module selected %d not found" -msgstr "MĆ³dulo seleccionado %d no encontrado" - -#: ../../enterprise/godmode/massive/massive_create_services.php:528 -#, php-format -msgid "Service selected %d not found" -msgstr "Servicio seleccionado %d no encontrado" - -#: ../../enterprise/godmode/massive/massive_create_services.php:562 -#, php-format -msgid "Failed to create service for agent %s" -msgstr "No se ha podido crear el servicio para el agente %s" - -#: ../../enterprise/godmode/massive/massive_create_services.php:573 -#, php-format -msgid "Failed to create services: %s" -msgstr "No se han podido crear los servicios: %s" - -#: ../../enterprise/godmode/massive/massive_create_services.php:593 -#, php-format -msgid "%d services created with %d items" -msgstr "%d servicios creados con %d elementos" - -#: ../../enterprise/godmode/massive/massive_create_services.php:599 -msgid "No services created" -msgstr "No hay servicios creados" - -#: ../../enterprise/godmode/massive/massive_create_services.php:632 -msgid "Service(s) definition" -msgstr "DefiniciĆ³n de servicio(s)" - -#: ../../enterprise/godmode/massive/massive_create_services.php:765 -msgid "Create a service per item" -msgstr "Crear un servicio por elemento" - -#: ../../enterprise/godmode/massive/massive_create_services.php:766 -msgid "If enabled multiple services will be created." -msgstr "Si se habilita, se crearĆ”n mĆŗltiples servicios." - -#: ../../enterprise/godmode/massive/massive_create_services.php:784 -msgid "Services header" -msgstr "Encabezado de servicios" - -#: ../../enterprise/godmode/massive/massive_create_services.php:785 -msgid "All services names created will start with selected name." -msgstr "" -"Todos los nombres de servicios creados deben empezar con el nombre " -"seleccionado." - -#: ../../enterprise/godmode/massive/massive_create_services.php:839 -msgid "SLA calculation" -msgstr "CĆ”lculo de SLA" - -#: ../../enterprise/godmode/massive/massive_create_services.php:946 -msgid "Items selected here will be added to the lists at Service items summary." -msgstr "" -"Los elementos aquĆ­ seleccionados se aƱadirĆ”n a las listas de resumen de " -"elementos de servicio" - -#: ../../enterprise/godmode/massive/massive_create_services.php:949 -msgid "Item(s) definition" -msgstr "DefiniciĆ³n de elemento(s)" - -#: ../../enterprise/godmode/massive/massive_create_services.php:957 -msgid "Item type" -msgstr "Tipo de elemento" - -#: ../../enterprise/godmode/massive/massive_create_services.php:1144 -msgid "" -"Weights configured are common for every item added to the service, if you want " -"to customize them, please edit the service." -msgstr "" -"Los pesos configurados son comunes a todos los elementos aƱadidos al servicio. " -"Si desea personalizarlos, edite el servicio." - -#: ../../enterprise/godmode/massive/massive_create_services.php:1260 -msgid "Create services" -msgstr "Crear servicios" - -#: ../../enterprise/godmode/massive/massive_tags_edit_policy.php:127 -msgid "Modules unused" -msgstr "MĆ³dulos sin usar" - -#: ../../enterprise/godmode/massive/massive_tags_edit_policy.php:167 -msgid "Modules used" -msgstr "MĆ³dulos usados" - -#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:217 -#, php-format -msgid "Successfully updated alerts (%s / %s)" -msgstr "Alertas actualizadas correctamente (%s / %s)" - -#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:225 -#, php-format -msgid "Unsuccessfully updated alerts (%s / %s)" -msgstr "No se han podido actualizar las alertas (%s / %s)" - -#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:277 -msgid "SNMP Alerts to be edit" -msgstr "Alertas SNMP para editar" - -#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:301 -#: ../../godmode/snmpconsole/snmp_alert.php:781 -msgid "Custom Value/OID" -msgstr "Valor/OID personalizado" - -#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:307 -#: ../../godmode/snmpconsole/snmp_alert.php:835 -msgid "Single value" -msgstr "Valor Ćŗnico" - -#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:309 -#: ../../godmode/snmpconsole/snmp_alert.php:1075 -#: ../../godmode/alerts/configure_alert_template.php:691 -msgid "Min. number of alerts" -msgstr "NĆŗmero mĆ­nimo de alertas" - -#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:311 -#: ../../godmode/snmpconsole/snmp_alert.php:1078 -#: ../../godmode/alerts/configure_alert_template.php:728 -msgid "Max. number of alerts" -msgstr "NĆŗmero mĆ”ximo de alertas" - -#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:326 -#: ../../godmode/snmpconsole/snmp_alert.php:1097 -msgid "Other value" -msgstr "Otros valores" - -#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:211 -#: ../../godmode/massive/massive_delete_modules.php:372 -#: ../../godmode/massive/massive_edit_modules.php:356 -msgid "Agent group" -msgstr "Grupo de agentes" - -#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:242 -msgid "Filter module" -msgstr "Filtro de mĆ³dulo" - -#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:261 -#: ../../godmode/massive/massive_add_alerts.php:260 -#: ../../godmode/massive/massive_delete_modules.php:551 -#: ../../godmode/massive/massive_add_action_alerts.php:220 -#: ../../godmode/massive/massive_delete_action_alerts.php:241 -#: ../../godmode/massive/massive_delete_alerts.php:341 -#: ../../godmode/massive/massive_edit_modules.php:524 -msgid "When select agents" -msgstr "Al seleccionar agentes" - -#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:423 -msgid "Updated modules on database" -msgstr "MĆ³dulos actualizados en la base de datos" - -#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:425 -msgid "Agent configuration files updated" -msgstr "Archivo de configuraciĆ³n del agente actualizado correctamente" - -#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:691 -msgid "No changes have been made." -msgstr "No ha habido cambios." - -#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:179 -msgid "Command Mysqldump is failed." -msgstr "Error en el comando Mysqldump." - -#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:225 -#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:238 -#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:287 -#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:306 -#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:386 -#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:403 -msgid "Failed to create task" -msgstr "No se ha podido crear la tarea" - -#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:293 -msgid "No template selected" -msgstr "No se ha seleccionado ninguna plantilla" - -#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:412 -msgid "I do not know what you want to do" -msgstr "No sĆ© lo que desea hacer" - -#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:429 -#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:611 -msgid "You have no access to manage console tasks." -msgstr "No puede acceder a la gestiĆ³n de tareas de la consola." - -#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:446 -#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:517 -msgid "Create new console task" -msgstr "Crear nueva tarea de la consola" - -#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:489 -msgid "Updating console task" -msgstr "Actualizar tarea de la consola" - -#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:514 -#: ../../godmode/menu.php:33 -#: ../../godmode/wizards/DiscoveryTaskList.class.php:105 -msgid "Task list" -msgstr "Lista de tareas" - -#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:519 -msgid "Update console task" -msgstr "Actualizar tarea de la consola" - -#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:650 -msgid "Next Execution" -msgstr "Siguiente ejecuciĆ³n" - -#: ../../enterprise/godmode/wizards/Applications.class.php:186 -#: ../../enterprise/godmode/wizards/Cloud.class.php:210 -msgid "" -"All company names used here are for identification purposes only. Use of these " -"names, logos, and brands does not imply endorsement." -msgstr "" -"Todos los nombres de compaƱƭas aquĆ­ utilizados tienen fines identificatorios. " -"El uso de estos nombres, logos y marcas no implica patrocinio alguno." - -#: ../../enterprise/godmode/wizards/Cloud.class.php:240 -#: ../../enterprise/godmode/wizards/Cloud.class.php:248 -#, php-format -msgid "%s credentials" -msgstr "Credenciales de %s" - -#: ../../enterprise/godmode/wizards/Cloud.class.php:264 -msgid "" -"If a task with the selected credentials is already running, it will be edited. " -"To create a new one, another account from the credential store must be " -"selected." -msgstr "" -"Si una tarea con las credenciales seleccionadas ya se estĆ” ejecutando, se " -"editarĆ”. Para crear una nueva, se debe seleccionar otra cuenta del almacĆ©n de " -"credenciales." - -#: ../../enterprise/godmode/wizards/Cloud.class.php:284 -msgid "Manage accounts" -msgstr "Administrar cuentas" - -#: ../../enterprise/godmode/wizards/Cloud.class.php:296 -msgid "Cloud tool full path" -msgstr "Ruta completa de la herramienta en la nube" - -#: ../../enterprise/godmode/wizards/Cloud.class.php:304 -msgid "Account" -msgstr "Cuenta" - -#: ../../enterprise/godmode/wizards/Cloud.class.php:365 -msgid "Select a set of credentials from the list" -msgstr "Seleccione un conjunto de credenciales de la lista" - -#: ../../enterprise/godmode/wizards/Cloud.class.php:378 -#, php-format -msgid "Path %s is not executable." -msgstr "La ruta %s no se puede ejecutar." - -#: ../../enterprise/godmode/wizards/Cloud.class.php:423 -msgid "Account disconnected" -msgstr "Cuenta desconectada" - -#: ../../enterprise/godmode/wizards/Cloud.class.php:425 -msgid "Failed disconnecting account" -msgstr "Error al desconectar la cuenta" - -#: ../../enterprise/godmode/wizards/Cloud.class.php:503 -msgid "Credentials successfully updated" -msgstr "Credenciales actualizados correctamente" - -#: ../../enterprise/godmode/wizards/Cloud.class.php:505 -msgid "Failed updating credentials process" -msgstr "Error en el proceso de actualizaciĆ³n de credenciales" - -#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:58 -#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:61 -msgid "The changes on this field are linked with the configuration data." -msgstr "Los cambios en este campo estĆ”n unidos con la configuraciĆ³n de datos." - -#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:67 -msgid "Using local component" -msgstr "Usando componente local" - -#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:76 -#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:96 -#: ../../godmode/agentes/module_manager_editor_common.php:118 -#: ../../godmode/agentes/module_manager_editor_common.php:135 -msgid "Manual setup" -msgstr "ConfiguraciĆ³n manual" - -#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:88 -#: ../../godmode/agentes/module_manager_editor_common.php:127 -msgid "No component was found" -msgstr "No se encontrĆ³ ningĆŗn componente" - -#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:155 -msgid "Show configuration data" -msgstr "Mostrar datos de configuraciĆ³n" - -#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:166 -msgid "Hide configuration data" -msgstr "Ocultar datos de configuraciĆ³n" - -#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:174 -msgid "Data configuration" -msgstr "ConfiguraciĆ³n de datos" - -#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:24 -msgid "Capacity planning" -msgstr "PlanificaciĆ³n de la capacidad" - -#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:26 -msgid "Synthetic arithmetic" -msgstr "AritmĆ©tica sintĆ©tica" - -#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:27 -msgid "Synthetic average" -msgstr "Media sintĆ©tica" - -#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:28 -msgid "Trending module" -msgstr "MĆ³dulo de tendencias" - -#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:114 -msgid "Fixed value" -msgstr "Valor fijo" - -#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:119 -msgid "Add module to operation as add" -msgstr "AƱadir mĆ³dulo a la operaciĆ³n como suma" - -#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:120 -msgid "Add module to operations as deduct" -msgstr "AƱadir mĆ³dulo a la operaciĆ³n como resta" - -#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:121 -msgid "Add module to operations as multiplicate " -msgstr "AƱadir mĆ³dulo a la operaciĆ³n como multiplicador " - -#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:122 -msgid "Add module to operations as divide" -msgstr "AƱadir mĆ³dulo a la operaciĆ³n como divisor" - -#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:123 -msgid "Remove selected modules" -msgstr "Eliminar los mĆ³dulos seleccionados" - -#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:128 -msgid "Add module to average operation" -msgstr "AƱadir mĆ³dulo al promedio de la operaciĆ³n" - -#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:129 -msgid "Remove selected modules from operations stack" -msgstr "Eliminar los mĆ³dulos de las operaciones de apilado" - -#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:144 -msgid "Move down selected modules" -msgstr "Mover hacia abajo los mĆ³dulos seleccionados" - -#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:145 -msgid "Move up selected modules" -msgstr "Mover hacia arriba los mĆ³dulos seleccionados" - -#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:175 -msgid "Select Service" -msgstr "Seleccionar servicio" - -#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:188 -msgid "Netflow filter" -msgstr "Filtro de Netflow" - -#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:197 -msgid "Select filter" -msgstr "Seleccionar filtro" - -#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:207 -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/agent_disk_conf_editor.php:121 -msgid "Error: The conf file of agent is not readble." -msgstr "Error: el archivo de configuraciĆ³n no se puede leer." - -#: ../../enterprise/godmode/agentes/agent_disk_conf_editor.php:125 -msgid "Error: The conf file of agent is not writable." -msgstr "Error: en el archivo de configuraciĆ³n no se puede escribir." - -#: ../../enterprise/godmode/agentes/agent_disk_conf_editor.php:178 -#: ../../enterprise/godmode/policies/policy_modules.php:387 -msgid "Add module" -msgstr "AƱadir mĆ³dulo" - -#: ../../enterprise/godmode/agentes/agent_disk_conf_editor.php:213 -msgid "No module was found" -msgstr "No se encontraron mĆ³dulos." - -#: ../../enterprise/godmode/agentes/agent_disk_conf_editor.php:248 -msgid "Delete remote conf agent files" -msgstr "Eliminar archivos de agente de configuraciĆ³n remota" - -#: ../../enterprise/godmode/agentes/agent_disk_conf_editor.php:249 -msgid "" -"Delete this conf file implies that for restore you must reactive remote config " -"in the local agent." -msgstr "" -"Borrar el archivo .conf implica que para restaurarlo, se debe reactivar la " -"configuraciĆ³n remota en el agente local." - -#: ../../enterprise/godmode/agentes/module_manager.php:48 -msgid "Create a new web analysis module" -msgstr "Crear un mĆ³dulo de anĆ”lisis web nuevo" - -#: ../../enterprise/godmode/agentes/agent_autoconfiguration.php:47 -msgid "Cannot delete autoconfiguration" -msgstr "No se ha podido borrar la autoconfiguraciĆ³n" - -#: ../../enterprise/godmode/agentes/agent_autoconfiguration.php:62 -#: ../../godmode/setup/license.php:151 ../../godmode/setup/license.php:154 -msgid "enabled" -msgstr "activado" - -#: ../../enterprise/godmode/agentes/agent_autoconfiguration.php:63 -msgid "enabling" -msgstr "Habilitando" - -#: ../../enterprise/godmode/agentes/agent_autoconfiguration.php:65 -#: ../../godmode/setup/license.php:151 ../../godmode/setup/license.php:154 -msgid "disabled" -msgstr "desactivado" - -#: ../../enterprise/godmode/agentes/agent_autoconfiguration.php:66 -msgid "disabling" -msgstr "deshabilitando" - -#: ../../enterprise/godmode/agentes/agent_autoconfiguration.php:71 -#, php-format -msgid "Successfully %s" -msgstr "%s con Ć©xito" - -#: ../../enterprise/godmode/agentes/agent_autoconfiguration.php:72 -#, php-format -msgid "Error %s" -msgstr "Error %s" - -#: ../../enterprise/godmode/agentes/agent_autoconfiguration.php:92 -#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:257 -msgid "Agent autoconfiguration list" -msgstr "Lista de autoconfiguraciĆ³n de agentes" - -#: ../../enterprise/godmode/agentes/agent_autoconfiguration.php:154 -msgid "There are no defined autoconfigurations" -msgstr "No hay autoconfiguraciones definidas" - -#: ../../enterprise/godmode/agentes/agent_autoconfiguration.php:191 -msgid "Add new configuration definition" -msgstr "AƱadir definiciĆ³n de nueva configuraciĆ³n" - -#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:69 -msgid "Cannot delete rule from autoconfiguration" -msgstr "No se ha podido borrar la regla de autoconfiguraciĆ³n" - -#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:75 -msgid "Agent Autoconfiguration Information" -msgstr "InformaciĆ³n de la autoconfiguraciĆ³n de agente" - -#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:76 -msgid "You must click the Create or Update buttom for a correct configuration!!!" -msgstr "Pinche en el botĆ³n de crear o actualizar para una correcta configuraciĆ³n" - -#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:84 -msgid "" -"Cannot create autoconfiguration from read only console, please create from " -"metaconsole (centralized management)" -msgstr "" -"No se ha podido crear la autoconfiguraciĆ³n desde la consola exclusiva de " -"lectura, crĆ©ela desde la Metaconsola (gestiĆ³n centralizada)" - -#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:101 -msgid "Cannot create autoconfiguration in metaconsole" -msgstr "No se ha podido crear la autoconfiguraciĆ³n en la metaconsola" - -#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:109 -msgid "Cannot create unnamed autoconfiguration" -msgstr "No se ha podido crear una autoconfiguraciĆ³n sin nombre" - -#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:119 -msgid "" -"Cannot udpate autoconfiguration from read only console, please create from " -"metaconsole (centralized management)" -msgstr "" -"No se ha podido actualizar la autoconfiguraciĆ³n desde la consola exclusiva de " -"lectura, crĆ©ela desde la Metaconsola (gestiĆ³n centralizada)" - -#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:132 -msgid "Cannot update autoconfiguration" -msgstr "No se ha podido actualizar la autoconfiguraciĆ³n" - -#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:142 -#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:181 -msgid "" -"Cannot modify autoconfiguration from read only console, please create from " -"metaconsole (centralized management)" -msgstr "" -"No se ha podido crear la autoconfiguraciĆ³n desde la consola exclusiva de " -"lectura, crĆ©ela desde la Metaconsola (gestiĆ³n centralizada)" - -#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:300 -msgid "Autoconfiguration" -msgstr "AutoconfiguraciĆ³n" - -#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:370 -msgid "Add rule" -msgstr "AƱadir regla" - -#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:375 -msgid "Rules" -msgstr "Reglas" - -#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:397 -msgid "New group" -msgstr "Nuevo grupo" - -#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:584 -#: ../../enterprise/godmode/policies/configure_policy.php:47 -msgid "Add policy" -msgstr "AƱadir polĆ­tica" - -#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:616 -msgid "Extra configuration block" -msgstr "Bloque de configuraciĆ³n extra" - -#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:618 -msgid "" -"Put here any extra configuration you want to be applied to any new agent " -"matching previously defined rules" -msgstr "" -"AƱada cualquier configuraciĆ³n extra que desee que se aplique a cualquier " -"agente nuevo que coincida con las reglas definidas" - -#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:651 -#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:682 -msgid "Extra actions" -msgstr "Acciones extra" - -#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:672 -#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:975 -msgid "Add extra action" -msgstr "AƱadir acciĆ³n extra" - -#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:840 -msgid "Add new rule" -msgstr "AƱadir regla nueva" - -#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:1062 -msgid "Update extra action" -msgstr "Actualizar acciĆ³n extra" - -#: ../../enterprise/godmode/agentes/collection_manager.php:77 -msgid "Succesful add the collection" -msgstr "AƱadido a la colecciĆ³n correctamente" - -#: ../../enterprise/godmode/agentes/collection_manager.php:78 -msgid "Unsuccesful add the collection" -msgstr "No se ha podido aƱadir a la colecciĆ³n." - -#: ../../enterprise/godmode/agentes/collections.editor.php:98 -msgid "Files in " -msgstr "Archivos en " - -#: ../../enterprise/godmode/agentes/collections.editor.php:109 -#: ../../enterprise/godmode/agentes/collections.data.php:395 -#: ../../enterprise/godmode/agentes/collections.php:92 -#, php-format -msgid "" -"This console is not manager of this environment, please manage this feature " -"from %s." -msgstr "" -"La consola no administra este entorno, gestione esta funcionalidad desde el " -"administrador centralizado de %s." - -#: ../../enterprise/godmode/agentes/manage_config_remote.php:42 -msgid "Data Copy" -msgstr "Copia de datos" - -#: ../../enterprise/godmode/agentes/manage_config_remote.php:49 -msgid "No selected agents to copy" -msgstr "No se han seleccionado agentes de destino para la copia" - -#: ../../enterprise/godmode/agentes/manage_config_remote.php:62 -msgid "No source agent selected" -msgstr "No ha seleccionado ningĆŗn agente de origen" - -#: ../../enterprise/godmode/agentes/manage_config_remote.php:108 -msgid "Making copy of configuration file for" -msgstr "Creando una copia del archivo de configuraciĆ³n de" - -#: ../../enterprise/godmode/agentes/manage_config_remote.php:117 -msgid "Error copying md5 file " -msgstr "Error al copiar archivo MD5 " - -#: ../../enterprise/godmode/agentes/manage_config_remote.php:117 -#: ../../enterprise/godmode/agentes/manage_config_remote.php:119 -msgid " md5 file" -msgstr " archivo MD5" - -#: ../../enterprise/godmode/agentes/manage_config_remote.php:119 -#: ../../enterprise/godmode/agentes/manage_config_remote.php:125 -msgid "Copied " -msgstr "Copiado " - -#: ../../enterprise/godmode/agentes/manage_config_remote.php:123 -msgid "Error copying " -msgstr "Error al copiar " - -#: ../../enterprise/godmode/agentes/manage_config_remote.php:123 -#: ../../enterprise/godmode/agentes/manage_config_remote.php:125 -msgid " config file" -msgstr " archivo de configuraciĆ³n" - -#: ../../enterprise/godmode/agentes/manage_config_remote.php:135 -msgid "Remote configuration management" -msgstr "GestiĆ³n de configuraciĆ³n remota" - -#: ../../enterprise/godmode/agentes/manage_config_remote.php:186 -msgid "To agent(s):" -msgstr "Agente(s) de destino:" - -#: ../../enterprise/godmode/agentes/manage_config_remote.php:203 -msgid "Replicate configuration" -msgstr "Replicar configuraciĆ³n" - -#: ../../enterprise/godmode/agentes/collections.agents.php:36 -msgid "Show Agent >" -msgstr "Mostrar agente" - -#: ../../enterprise/godmode/agentes/collections.agents.php:120 -#: ../../enterprise/godmode/agentes/collections.agents.php:124 -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/collections.data.php:384 -msgid "Collection updated successfully" -msgstr "CollecciĆ³n actualizada con Ć©xito" - -#: ../../enterprise/godmode/agentes/collections.data.php:410 -msgid "Please go to the metaconsole and apply this collection" -msgstr "Por favor, vaya a la metaconsola y aplique esta colecciĆ³n" - -#: ../../enterprise/godmode/agentes/collections.data.php:414 -msgid "Error: The collection directory does not exist." -msgstr "Error: el directorio donde se almacenan las colecciones no existe." - -#: ../../enterprise/godmode/agentes/pandora_networkmap_empty.editor.php:93 -#: ../../godmode/agentes/pandora_networkmap_empty.editor.php:95 -msgid "Empty Network maps editor" -msgstr "Editor de mapas de red vacĆ­o" - -#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:98 -#: ../../godmode/agentes/module_manager_editor_common.php:238 -msgid "Delete module" -msgstr "Eliminar mĆ³dulo" - -#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:127 -msgid "Run performance tests" -msgstr "Realizar pruebas de rendimiento" - -#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:138 -msgid "Target web site" -msgstr "Sitio web de destino" - -#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:140 -msgid "" -"The url specified in this field is mandatory to retrieve performance stats." -msgstr "" -"La URL especificada en este campo es obligatoria para recuperar las " -"estadĆ­sticas de rendimiento." - -#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:154 -msgid "target web site (http://...)" -msgstr "sitio web objetivo (http://...)" - -#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:161 -msgid "Execute tests from" -msgstr "Ejecutar pruebas desde" - -#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:177 -msgid "Browser" -msgstr "Explorador" - -#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:179 -msgid "" -"Support for IE and Edge browsers is experimental. Tests might not work as " -"expected." -msgstr "" -"El soporte para IE y navegadores Edge es experimental. Las pruebas podrĆ­an no " -"funcionar segĆŗn lo esperado." - -#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:221 -msgid "Accept insecure certificates" -msgstr "Aceptar certificados no seguros" - -#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:223 -msgid "Only Selenium 3." -msgstr "Solo Selenium 3." - -#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:349 -msgid "Paste your selenium test, exported as HTML, here" -msgstr "Pega el test de selenium, exportado como HTML, aquĆ­" - -#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:362 -msgid "Add file" -msgstr "AƱadir archivo" - -#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:370 -msgid "Upload your selenium test in html or side (only Selenium 3) format" -msgstr "" -"Actualizar la prueba de selenium en formato html o side (solo Selenium 3)" - -#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:454 -#: ../../godmode/agentes/module_manager.php:1105 -msgid "" -"The policy modules of data type will only update their intervals when policy " -"is applied." -msgstr "" -"Los mĆ³dulos de polĆ­tica de tipo dato solo actualizarĆ”n sus intervalos cuando " -"la polĆ­tica sea aplicada." - -#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:574 -#: ../../enterprise/godmode/policies/policy_modules.php:417 -#: ../../godmode/agentes/module_manager_editor_common.php:1226 -#: ../../godmode/agentes/module_manager_editor.php:750 -msgid "Custom macros" -msgstr "Macros personalizadas" - -#: ../../enterprise/godmode/agentes/plugins_manager.php:66 -msgid "Plug-in updated succesfully" -msgstr "Plugin actualizado correctamente" - -#: ../../enterprise/godmode/agentes/plugins_manager.php:66 -msgid "Plug-in cannot be updated" -msgstr "El plugin no se pudo actualizar." - -#: ../../enterprise/godmode/agentes/plugins_manager.php:74 -msgid "Plug-in deleted succesfully" -msgstr "Plugin eliminado correctamente" - -#: ../../enterprise/godmode/agentes/plugins_manager.php:74 -msgid "Plug-in cannot be deleted" -msgstr "El plugin no se pudo eliminar." - -#: ../../enterprise/godmode/agentes/plugins_manager.php:87 -#: ../../enterprise/godmode/policies/policy_plugins.php:90 -msgid "Plug-in added succesfully" -msgstr "Plugin aƱadido correctamente" - -#: ../../enterprise/godmode/agentes/plugins_manager.php:87 -#: ../../enterprise/godmode/policies/policy_plugins.php:91 -msgid "Plug-in cannot be added" -msgstr "El plugin no se puede aƱadir." - -#: ../../enterprise/godmode/agentes/plugins_manager.php:97 -msgid "Plug-in enabled succesfully" -msgstr "Plugin habilitado correctamente" - -#: ../../enterprise/godmode/agentes/plugins_manager.php:98 -msgid "Plug-in cannot be enabled" -msgstr "El plugin no puede ser habilitado." - -#: ../../enterprise/godmode/agentes/plugins_manager.php:109 -msgid "Plug-in disabled succesfully" -msgstr "Plugin inhabilitado correctamente" - -#: ../../enterprise/godmode/agentes/plugins_manager.php:110 -msgid "Plug-in cannot be disabled" -msgstr "El plugin no puede ser inhabilitado." - -#: ../../enterprise/godmode/agentes/plugins_manager.php:127 -#: ../../enterprise/godmode/policies/policy_plugins.php:109 -msgid "If enabled, allows to define a complex module plugin or log." -msgstr "" -"Si estĆ” habilitado, permite definir un log o complemento de mĆ³dulo complejo." - -#: ../../enterprise/godmode/agentes/plugins_manager.php:142 -#: ../../enterprise/godmode/policies/policy_plugins.php:123 -msgid "New plug-in" -msgstr "Nuevo plugin" - -#: ../../enterprise/godmode/agentes/plugins_manager.php:192 -#: ../../enterprise/godmode/policies/policies.php:535 -#: ../../enterprise/godmode/policies/policy_plugins.php:167 -#: ../../godmode/menu.php:293 -msgid "Plugins" -msgstr "Plugins" - -#: ../../enterprise/godmode/agentes/collections.php:65 -msgid "Success: recreate file" -msgstr "Archivo creado de nuevo" - -#: ../../enterprise/godmode/agentes/collections.php:67 -msgid "Error: recreate file " -msgstr "El archivo no se pudo volver a crear " - -#: ../../enterprise/godmode/agentes/collections.php:82 -#: ../../enterprise/godmode/agentes/collections.php:123 -#: ../../enterprise/godmode/agentes/collections.php:232 -msgid "Collections Management" -msgstr "GestiĆ³n de colecciones" - -#: ../../enterprise/godmode/agentes/collections.php:175 -msgid "Manager collection" -msgstr "Gestor de colecciones" - -#: ../../enterprise/godmode/alerts/alert_inventory_list.php:91 -#: ../../godmode/massive/massive_add_alerts.php:168 -#: ../../godmode/massive/massive_add_action_alerts.php:160 -#: ../../godmode/alerts/alert_list.php:271 -msgid "Successfully added" -msgstr "AƱadido correctamente" - -#: ../../enterprise/godmode/alerts/alert_inventory_list.php:92 -#: ../../enterprise/godmode/policies/policy_agents.php:251 -#: ../../enterprise/godmode/policies/policy_external_alerts.php:201 -#: ../../enterprise/godmode/policies/policy_alerts.php:280 -#: ../../godmode/massive/massive_add_alerts.php:169 -#: ../../godmode/massive/massive_add_action_alerts.php:75 -#: ../../godmode/massive/massive_add_action_alerts.php:134 -#: ../../godmode/massive/massive_add_action_alerts.php:160 -#: ../../godmode/massive/massive_add_action_alerts.php:163 -#: ../../godmode/massive/massive_add_action_alerts.php:166 -#: ../../godmode/massive/massive_delete_action_alerts.php:175 -#: ../../godmode/alerts/alert_list.php:272 -msgid "Could not be added" -msgstr "No se pudo aƱadir" - -#: ../../enterprise/godmode/alerts/alert_inventory_list.php:174 -msgid "Inventory alert filters" -msgstr "Filtros de alerta de inventario" - -#: ../../enterprise/godmode/alerts/alert_inventory_list.php:220 -msgid "Alert name" -msgstr "Nombre de la alerta" - -#: ../../enterprise/godmode/alerts/alert_inventory_list.php:319 -#: ../../godmode/snmpconsole/snmp_alert.php:1394 -#: ../../godmode/alerts/alert_list.list.php:673 -msgid "Delete action" -msgstr "Eliminar acciĆ³n" - -#: ../../enterprise/godmode/alerts/alert_inventory_list.php:404 -msgid "Disable alert" -msgstr "Deshabilitar alerta" - -#: ../../enterprise/godmode/alerts/alert_inventory_list.php:407 -msgid "Enable alert" -msgstr "Habilitar alerta" - -#: ../../enterprise/godmode/alerts/alert_inventory_list.php:415 -msgid "Delete alert" -msgstr "Eliminar alerta" - -#: ../../enterprise/godmode/alerts/alert_inventory_list.php:427 -msgid "There are no defined inventory alerts" -msgstr "No hay alertas de inventario definidas" - -#: ../../enterprise/godmode/alerts/alert_inventory_builder.php:176 -msgid "Group acl" -msgstr "ACL de grupo" - -#: ../../enterprise/godmode/alerts/alert_inventory_builder.php:256 -msgid "Alert groups" -msgstr "Grupos de alertas" - -#: ../../enterprise/godmode/alerts/alert_inventory_builder.php:278 -#: ../../godmode/snmpconsole/snmp_alert.php:94 -msgid "Update alert" -msgstr "Actualizar alerta" - -#: ../../enterprise/godmode/alerts/alert_inventory.php:67 -msgid "Inventory alert list" -msgstr "Lista de alertas de inventario" - -#: ../../enterprise/godmode/alerts/alert_inventory.php:71 -msgid "Inventory alert builder" -msgstr "Montador de alertas de inventario" - -#: ../../enterprise/godmode/policies/policy_agents.php:62 -#: ../../enterprise/godmode/policies/policy_queue.php:78 -msgid "" -"Starting with Pandora FMS version 760, assigning an entire group to a policy " -"will apply it automatically to all the new agents added to that group." -msgstr "" -"A partir de Pandora FMS versiĆ³n 760, la asignaciĆ³n de un grupo completo a una " -"polĆ­tica la aplicarĆ” automĆ”ticamente a todos los nuevos agentes aƱadidos a ese " -"grupo." - -#: ../../enterprise/godmode/policies/policy_agents.php:85 -#: ../../enterprise/godmode/policies/policy_linking.php:41 -#: ../../enterprise/godmode/policies/policy_modules.php:599 -#: ../../enterprise/godmode/policies/policies.php:249 -#: ../../enterprise/godmode/policies/policy_external_alerts.php:77 -#: ../../enterprise/godmode/policies/policy_inventory_modules.php:98 -#: ../../enterprise/godmode/policies/policy_alerts.php:94 -#: ../../enterprise/godmode/policies/policy_collections.php:63 -#: ../../godmode/agentes/module_manager_editor.php:542 -msgid "This policy is applying and cannot be modified" -msgstr "Esta polĆ­tica se estĆ” aplicando y no puede ser modificada" - -#: ../../enterprise/godmode/policies/policy_agents.php:102 -msgid "" -"Successfully added to delete pending agents. Will be deleted in the next " -"policy application." -msgstr "" -"AƱadido correctamente a los agentes pendientes de eliminaciĆ³n. SerĆ” eliminado " -"en la prĆ³xima aplicaciĆ³n de polĆ­ticas." - -#: ../../enterprise/godmode/policies/policy_agents.php:113 -#: ../../enterprise/godmode/policies/policy_agents.php:129 -#: ../../enterprise/godmode/policies/policy_modules.php:1316 -#: ../../enterprise/godmode/policies/policy_external_alerts.php:150 -#: ../../enterprise/godmode/policies/policy_inventory_modules.php:169 -#: ../../enterprise/godmode/policies/policy_alerts.php:259 -#: ../../enterprise/godmode/policies/policy_collections.php:103 -#: ../../enterprise/godmode/policies/policy_plugins.php:70 -msgid "Successfully reverted deletion" -msgstr "EliminaciĆ³n revertida correctamente" - -#: ../../enterprise/godmode/policies/policy_agents.php:114 -#: ../../enterprise/godmode/policies/policy_agents.php:130 -#: ../../enterprise/godmode/policies/policy_modules.php:1317 -#: ../../enterprise/godmode/policies/policy_external_alerts.php:151 -#: ../../enterprise/godmode/policies/policy_inventory_modules.php:172 -#: ../../enterprise/godmode/policies/policy_alerts.php:260 -#: ../../enterprise/godmode/policies/policy_collections.php:104 -#: ../../enterprise/godmode/policies/policy_plugins.php:71 -msgid "Could not be reverted" -msgstr "No pudo ser revertido" - -#: ../../enterprise/godmode/policies/policy_agents.php:124 -msgid "" -"Successfully added to delete pending groups. Will be deleted in the next " -"policy application." -msgstr "" -"AƱadido correctamente para eliminar grupos pendientes. Se eliminarĆ” en la " -"siguiente aplicaciĆ³n de polĆ­tica." - -#: ../../enterprise/godmode/policies/policy_agents.php:148 -#: ../../enterprise/godmode/policies/policy_agents.php:193 -#: ../../enterprise/godmode/policies/policy_agents.php:261 -msgid "Policy with this id does not exist. " -msgstr "La polĆ­tica con este id no existe. " - -#: ../../enterprise/godmode/policies/policy_agents.php:177 -#: ../../enterprise/godmode/policies/policy_agents.php:310 -msgid "Successfully added to delete queue" -msgstr "Correctamente aƱadido a la lista de eliminaciĆ³n" - -#: ../../enterprise/godmode/policies/policy_agents.php:178 -#: ../../enterprise/godmode/policies/policy_agents.php:311 -msgid "Could not be added to delete queue" -msgstr "No se pudo aƱadir a la lista de eliminaciĆ³n." - -#: ../../enterprise/godmode/policies/policy_agents.php:250 -#, php-format -msgid "Successfully added %d" -msgstr "Se ha agregado correctamente %d" - -#: ../../enterprise/godmode/policies/policy_agents.php:281 -msgid "" -"Number of agents added to the policy concurrently is too large. This might " -"cause the operation to fail or lead to performance issues." -msgstr "" -"El nĆŗmero de agentes aƱadidos a la polĆ­tica simultĆ”neamente es demasiado alto. " -"Esto podrĆ­a causar fallos o problemas en el funcionamiento." - -#: ../../enterprise/godmode/policies/policy_agents.php:288 -msgid "Successfully added to policy" -msgstr "Agregado correctamente a la directiva" - -#: ../../enterprise/godmode/policies/policy_agents.php:289 -msgid "Could not be added to policy" -msgstr "No se pudo agregar a la directiva" - -#: ../../enterprise/godmode/policies/policy_agents.php:407 -msgid "Apply to" -msgstr "Aplicar a" - -#: ../../enterprise/godmode/policies/policy_agents.php:538 -#: ../../enterprise/godmode/policies/policy_agents.php:670 -msgid "Agents in Policy" -msgstr "Agentes en la polĆ­tica" - -#: ../../enterprise/godmode/policies/policy_agents.php:572 -#: ../../enterprise/godmode/policies/policy_agents.php:1217 -msgid "Groups in Policy" -msgstr "Grupos en la polĆ­tica" - -#: ../../enterprise/godmode/policies/policy_agents.php:707 -msgid "Add agents to policy" -msgstr "AƱadir agentes a la polĆ­tica" - -#: ../../enterprise/godmode/policies/policy_agents.php:734 -msgid "Delete agents from policy" -msgstr "Eliminar agentes de la polĆ­tica" - -#: ../../enterprise/godmode/policies/policy_agents.php:831 -msgid "Applied" -msgstr "Aplicado" - -#: ../../enterprise/godmode/policies/policy_agents.php:832 -msgid "Not applied" -msgstr "No aplicado" - -#: ../../enterprise/godmode/policies/policy_agents.php:849 -#: ../../godmode/servers/servers.build_table.php:246 -#: ../../godmode/reporting/reporting_builder.item_editor.php:79 -#: ../../godmode/massive/massive_edit_agents.php:945 -#: ../../godmode/agentes/configurar_agente.php:604 -#: ../../godmode/agentes/configurar_agente.php:754 -#: ../../godmode/agentes/agent_manager.php:524 -msgid "Remote configuration" -msgstr "ConfiguraciĆ³n remota" - -#: ../../enterprise/godmode/policies/policy_agents.php:853 -msgid "Unlinked modules" -msgstr "MĆ³dulos sin enlazar" - -#: ../../enterprise/godmode/policies/policy_agents.php:853 -msgid "U." -msgstr "U." - -#: ../../enterprise/godmode/policies/policy_agents.php:857 -#: ../../enterprise/godmode/policies/policy_agents.php:1373 -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 -msgid "D." -msgstr "D." - -#: ../../enterprise/godmode/policies/policy_agents.php:946 -#: ../../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 -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 -msgid "Process deletion" -msgstr "Borrado del proceso" - -#: ../../enterprise/godmode/policies/policy_agents.php:1012 -#: ../../enterprise/godmode/policies/policy_agents.php:1493 -#: ../../enterprise/godmode/policies/policy_queue.php:337 -msgid "Add to apply queue" -msgstr "AƱadir a la cola para aplicarlo" - -#: ../../enterprise/godmode/policies/policy_agents.php:1066 -#: ../../enterprise/godmode/policies/policy_agents.php:1535 -#: ../../enterprise/godmode/policies/policy_modules.php:1573 -#: ../../enterprise/godmode/policies/policy_external_alerts.php:533 -#: ../../enterprise/godmode/policies/policy_inventory_modules.php:329 -#: ../../enterprise/godmode/policies/policy_alerts.php:529 -msgid "Undo deletion" -msgstr "Deshacer eliminaciĆ³n" - -#: ../../enterprise/godmode/policies/policy_agents.php:1110 -#: ../../enterprise/godmode/policies/policy_agents.php:1435 -msgid "Need apply" -msgstr "Necesita aplicarse" - -#: ../../enterprise/godmode/policies/policy_agents.php:1122 -#: ../../enterprise/godmode/policies/policy_agents.php:1447 -msgid "Applying policy" -msgstr "Aplicando polĆ­tica" - -#: ../../enterprise/godmode/policies/policy_agents.php:1135 -#: ../../enterprise/godmode/policies/policy_agents.php:1458 -msgid "Deleting from policy" -msgstr "Eliminando de la polĆ­tica" - -#: ../../enterprise/godmode/policies/policy_agents.php:1295 -msgid "Add groups to policy" -msgstr "AƱadir grupos a polĆ­tica" - -#: ../../enterprise/godmode/policies/policy_agents.php:1317 -msgid "Delete groups from policy" -msgstr "Eliminar grupos de polĆ­tica" - -#: ../../enterprise/godmode/policies/policy_agents.php:1370 -msgid "Total agents in policy group" -msgstr "Total de agentes en el grupo de polĆ­tica" - -#: ../../enterprise/godmode/policies/policy_agents.php:1370 -msgid "T." -msgstr "T." - -#: ../../enterprise/godmode/policies/policy_queue.php:63 -msgid "No policies with this id" -msgstr "No hay polĆ­ticas con este identificador" - -#: ../../enterprise/godmode/policies/policy_queue.php:146 -#, php-format -msgid "%s: Operations successfully deleted from the queue" -msgstr "%s: Operaciones eliminadas correctamente de la cola" - -#: ../../enterprise/godmode/policies/policy_queue.php:153 -msgid "Operations successfully deleted from the queue" -msgstr "Operaciones eliminadas correctamente de la cola" - -#: ../../enterprise/godmode/policies/policy_queue.php:154 -msgid "Operations cannot be deleted from the queue" -msgstr "Las operaciones no pueden ser eliminadas de la cola." - -#: ../../enterprise/godmode/policies/policy_queue.php:261 -#, php-format -msgid "Some nodes (%s) are unreachebles. Some information may be missing." -msgstr "Algunos nĆ³dulos (%s) estĆ”n inaccesible. PodrĆ­a faltar informaciĆ³n." - -#: ../../enterprise/godmode/policies/policy_queue.php:308 -msgid "Update pending" -msgstr "ActualizaciĆ³n pendiente" - -#: ../../enterprise/godmode/policies/policy_queue.php:314 -msgid "Update pending agents" -msgstr "Actualizar agentes pendientes" - -#: ../../enterprise/godmode/policies/policy_queue.php:343 -msgid "Add to apply queue only for database" -msgstr "AƱadir a la cola de aplicaciĆ³n solo de cambios de base de datos" - -#: ../../enterprise/godmode/policies/policy_queue.php:354 -msgid "Update pending groups" -msgstr "Actualizar grupos pendientes" - -#: ../../enterprise/godmode/policies/policy_queue.php:368 -msgid "Link pending modules" -msgstr "Enlazar mĆ³dulos pendientes" - -#: ../../enterprise/godmode/policies/policy_queue.php:376 -msgid "Will be linked in the next policy application" -msgstr "Se enlazarĆ” en la siguiente aplicaciĆ³n de polĆ­ticas" - -#: ../../enterprise/godmode/policies/policy_queue.php:382 -msgid "Unlink pending modules" -msgstr "Desenlazar mĆ³dulos pendientes" - -#: ../../enterprise/godmode/policies/policy_queue.php:388 -msgid "Will be unlinked in the next policy application" -msgstr "SerĆ” desenlazado en la siguiente aplicaciĆ³n de polĆ­ticas" - -#: ../../enterprise/godmode/policies/policy_queue.php:393 -msgid "Delete pending" -msgstr "EliminaciĆ³n pendiente" - -#: ../../enterprise/godmode/policies/policy_queue.php:399 -msgid "Delete pending agents" -msgstr "Eliminar agentes pendientes" - -#: ../../enterprise/godmode/policies/policy_queue.php:407 -#: ../../enterprise/godmode/policies/policy_queue.php:422 -#: ../../enterprise/godmode/policies/policy_queue.php:437 -#: ../../enterprise/godmode/policies/policy_queue.php:452 -#: ../../enterprise/godmode/policies/policy_queue.php:467 -#: ../../enterprise/godmode/policies/policy_queue.php:482 -#: ../../enterprise/godmode/policies/policy_queue.php:497 -#: ../../enterprise/godmode/policies/policy_queue.php:512 -msgid "Will be deleted in the next policy application" -msgstr "Se eliminarĆ” en la siguiente aplicaciĆ³n de polĆ­ticas" - -#: ../../enterprise/godmode/policies/policy_queue.php:414 -msgid "Delete pending groups" -msgstr "Eliminar grupos pendientes" - -#: ../../enterprise/godmode/policies/policy_queue.php:429 -msgid "Delete pending modules" -msgstr "Eliminar mĆ³dulos pendientes" - -#: ../../enterprise/godmode/policies/policy_queue.php:444 -msgid "Delete pending inventory modules" -msgstr "Eliminar mĆ³dulos de inventario pendientes" - -#: ../../enterprise/godmode/policies/policy_queue.php:459 -msgid "Delete pending alerts" -msgstr "Eliminar alertas pendientes" - -#: ../../enterprise/godmode/policies/policy_queue.php:474 -msgid "Delete pending external alerts" -msgstr "Eliminar alertas externas pendientes" - -#: ../../enterprise/godmode/policies/policy_queue.php:489 -msgid "Delete pending file collections" -msgstr "Eliminar colecciones de archivos pendientes" - -#: ../../enterprise/godmode/policies/policy_queue.php:504 -msgid "Delete pending plugins" -msgstr "Eliminar plugins pendientes" - -#: ../../enterprise/godmode/policies/policy_queue.php:518 -msgid "Advices" -msgstr "Consejos" - -#: ../../enterprise/godmode/policies/policy_queue.php:523 -msgid "Queue summary" -msgstr "Resumen de cola" - -#: ../../enterprise/godmode/policies/policy_queue.php:636 -msgid "Queue filter" -msgstr "Filtros de cola" - -#: ../../enterprise/godmode/policies/policy_queue.php:790 -msgid "Empty queue" -msgstr "Vaciar cola" - -#: ../../enterprise/godmode/policies/policy_queue.php:804 -msgid "This operation could take a long time" -msgstr "Esta operaciĆ³n podrĆ­a tardar bastante tiempo." - -#: ../../enterprise/godmode/policies/policy_queue.php:815 -msgid "Apply all queues" -msgstr "Aplicar todas las colas" - -#: ../../enterprise/godmode/policies/policy_queue.php:821 -msgid "Clear all items" -msgstr "Borrar todos los elementos" - -#: ../../enterprise/godmode/policies/policy_linking.php:28 -msgid "Linking modules" -msgstr "MĆ³dulos enlazados" - -#: ../../enterprise/godmode/policies/policy_linking.php:99 -msgid "Error: Update linking modules to policy" -msgstr "Error al actualizar los mĆ³dulos enlazados a la polĆ­tica" - -#: ../../enterprise/godmode/policies/policy_linking.php:101 -msgid "Success: Update linking modules to policy" -msgstr "MĆ³dulos enlazados a la polĆ­tica correctamente" - -#: ../../enterprise/godmode/policies/policy_linking.php:127 -msgid "Free text for filter (*)" -msgstr "Texto libre para filtro (*)" - -#: ../../enterprise/godmode/policies/policy_linking.php:128 -msgid "Free text for filter" -msgstr "Texto libre para filtro" - -#: ../../enterprise/godmode/policies/policy_linking.php:138 -msgid "Cannot retrieve unlinked modules" -msgstr "No se han podido obtener mĆ³dulos no enlazados" - -#: ../../enterprise/godmode/policies/policy_linking.php:140 -msgid "There are no defined modules unlinked" -msgstr "No hay mĆ³dulos definidos desvinculados" - -#: ../../enterprise/godmode/policies/policy_linking.php:142 -msgid "List of modules unlinked" -msgstr "Lista de mĆ³dulos sin enlazar" - -#: ../../enterprise/godmode/policies/policy_modules.php:299 -msgid "" -"If you change this description, you must change into the text of Data " -"configuration." -msgstr "" -"Si cambias esta descripciĆ³n, tienes que cambiarla en el texto de la " -"configuraciĆ³n de datos." - -#: ../../enterprise/godmode/policies/policy_modules.php:372 -msgid "Invalid module type." -msgstr "Tipo de mĆ³dulo invĆ”lido" - -#: ../../enterprise/godmode/policies/policy_modules.php:403 -#: ../../godmode/agentes/module_manager_editor.php:738 -msgid "Base options" -msgstr "Opciones de base" - -#: ../../enterprise/godmode/policies/policy_modules.php:548 -msgid "Could not be added module(s). You must select a policy" -msgstr "El mĆ³dulo no se pudo aƱadir. Tienes que seleccionar una polĆ­tica." - -#: ../../enterprise/godmode/policies/policy_modules.php:581 -#, php-format -msgid "Successfully added module(s) (%s/%s) to policy %s" -msgstr "MĆ³dulo(s) (%s/%s) aƱadido(s) correctamente a la polĆ­tica %s" - -#: ../../enterprise/godmode/policies/policy_modules.php:587 -#, php-format -msgid "Could not be added module(s) (%s/%s) to policy %s" -msgstr "El mĆ³dulo (%s/%s) no se pudo aƱadir a la polĆ­tica %s" - -#: ../../enterprise/godmode/policies/policy_modules.php:623 -msgid "To define plugins please use plugin configuration tab." -msgstr "Para definir plugins, use la pestaƱa de configuraciĆ³n de plugins." - -#: ../../enterprise/godmode/policies/policy_modules.php:920 -msgid "Could not be added module." -msgstr "El mĆ³dulo no se pudo aƱadir." - -#: ../../enterprise/godmode/policies/policy_modules.php:1265 -msgid "" -"The module type in Data configuration is empty, take from combo box of form." -msgstr "" -"El tipo de datos en la configuraciĆ³n estĆ” vacĆ­o, elige uno del combo del " -"formulario." - -#: ../../enterprise/godmode/policies/policy_modules.php:1269 -msgid "" -"The module name in Data configuration is empty, take from text field of form." -msgstr "" -"El nombre del mĆ³dulo en la configuraciĆ³n estĆ” vacĆ­o, elige uno del combo del " -"formulario." - -#: ../../enterprise/godmode/policies/policy_modules.php:1299 -#: ../../enterprise/godmode/policies/policy_modules.php:1312 -#: ../../enterprise/godmode/policies/policy_inventory_modules.php:163 -msgid "" -"Successfully added to delete pending modules. Will be deleted in the next " -"policy application." -msgstr "" -"AƱadido correctamente a la cola de mĆ³dulos pendientes de eliminaciĆ³n. SerĆ” " -"eliminado en la prĆ³xima aplicaciĆ³n de polĆ­ticas." - -#: ../../enterprise/godmode/policies/policy_modules.php:1303 -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:1381 -#: ../../godmode/agentes/configurar_agente.php:2128 -#, php-format -msgid "copy of %s (%d)" -msgstr "copia de %s (%d)" - -#: ../../enterprise/godmode/policies/policy_modules.php:1411 -msgid "Successfully duplicate the module." -msgstr "MĆ³dulo duplicado correctamente" - -#: ../../enterprise/godmode/policies/policy_modules.php:1492 -msgid "Local component" -msgstr "Componente local" - -#: ../../enterprise/godmode/policies/policy_modules.php:1509 -#: ../../enterprise/godmode/policies/policy_modules.php:1510 -msgid "Disabled module" -msgstr "MĆ³dulo deshabilitado" - -#: ../../enterprise/godmode/policies/policy_modules.php:1517 -#: ../../enterprise/godmode/policies/policy_modules.php:1518 -msgid "Enabled module" -msgstr "MĆ³dulo habilitado" - -#: ../../enterprise/godmode/policies/policy_modules.php:1528 -#: ../../enterprise/godmode/policies/policy_modules.php:1529 -#: ../../godmode/agentes/module_manager.php:1143 -#: ../../godmode/agentes/module_manager.php:1144 -msgid "Enable module" -msgstr "Habilitar el mĆ³dulo" - -#: ../../enterprise/godmode/policies/policy_modules.php:1538 -#: ../../enterprise/godmode/policies/policy_modules.php:1539 -#: ../../godmode/agentes/module_manager.php:1153 -#: ../../godmode/agentes/module_manager.php:1154 -msgid "Disable module" -msgstr "Deshabilitar el mĆ³dulo" - -#: ../../enterprise/godmode/policies/policy_modules.php:1624 -msgid "There are no defined modules" -msgstr "No hay mĆ³dulos definidos" - -#: ../../enterprise/godmode/policies/policy_modules.php:1643 -#: ../../godmode/massive/massive_copy_modules.php:188 -msgid "Copy modules" -msgstr "Copiar mĆ³dulos" - -#: ../../enterprise/godmode/policies/policy_modules.php:1644 -msgid "Copy selected modules to policy: " -msgstr "Copiar mĆ³dulos seleccionados a la polĆ­tica: " - -#: ../../enterprise/godmode/policies/policy_modules.php:1706 -#: ../../godmode/agentes/module_manager_editor.php:822 -msgid "No module name provided" -msgstr "No se proporcionĆ³ ningĆŗn nombre de mĆ³dulo." - -#: ../../enterprise/godmode/policies/policy_modules.php:1707 -#: ../../godmode/agentes/module_manager_editor.php:832 -msgid "No target IP provided" -msgstr "No se proporcionĆ³ ninguna IP de destino." - -#: ../../enterprise/godmode/policies/policy_modules.php:1708 -#: ../../godmode/agentes/module_manager_editor.php:842 -msgid "No SNMP OID provided" -msgstr "No se proporcionĆ³ ningĆŗn OID de SMTP." - -#: ../../enterprise/godmode/policies/policy_modules.php:1849 -msgid "Are you sure to copy modules into policy?\\n" -msgstr "ĀæEstĆ”s seguro de que quieres copiar los mĆ³dulos en la polĆ­tica?\\n" - -#: ../../enterprise/godmode/policies/policy_modules.php:1869 -msgid "Please select any module to copy" -msgstr "Por favor, selecciona algĆŗn mĆ³dulo para copiar." - -#: ../../enterprise/godmode/policies/policies.php:85 -msgid "Policy not found." -msgstr "No se ha encontrado la polĆ­tica." - -#: ../../enterprise/godmode/policies/policies.php:153 -msgid "Policy name already exists" -msgstr "El nombre de la polĆ­tica ya existe." - -#: ../../enterprise/godmode/policies/policies.php:224 -msgid "Policies Management" -msgstr "GestiĆ³n de polĆ­ticas" - -#: ../../enterprise/godmode/policies/policies.php:243 -msgid "All policy agents added to delete queue" -msgstr "Todos los agentes de las polĆ­ticas aƱadidos a la cola de eliminaciĆ³n" - -#: ../../enterprise/godmode/policies/policies.php:244 -msgid "Policy agents cannot be added to the delete queue" -msgstr "" -"Los agentes de las polĆ­ticas no se pudieron aƱadir a la cola de eliminaciĆ³n" - -#: ../../enterprise/godmode/policies/policies.php:330 -msgid "a" -msgstr "a" - -#: ../../enterprise/godmode/policies/policies.php:514 -msgid "Agent Wizard" -msgstr "Asistente de agente" - -#: ../../enterprise/godmode/policies/policies.php:595 -msgid "There must be no agents to delete the policy." -msgstr "No debe haber agentes para borrar la polĆ­tica." - -#: ../../enterprise/godmode/policies/policies.php:601 -msgid "A policy with agents cannot be deleted. Purge it first" -msgstr "Una polĆ­tica con agentes no se puede eliminar. PĆŗrgala primero." - -#: ../../enterprise/godmode/policies/policies.php:611 -msgid "Deleting all policy agents" -msgstr "Eliminando todos los agentes de las polĆ­ticas" - -#: ../../enterprise/godmode/policies/policies.php:616 -msgid "All the policy agents will be deleted" -msgstr "Todos los agentes de las polĆ­ticas serĆ”n eliminados." - -#: ../../enterprise/godmode/policies/policies.php:625 -msgid "Delete all agents" -msgstr "Eliminar todos los agentes" - -#: ../../enterprise/godmode/policies/policy_external_alerts.php:87 -#: ../../godmode/alerts/alert_list.php:173 -msgid "No module specified" -msgstr "NingĆŗn mĆ³dulo especificado" - -#: ../../enterprise/godmode/policies/policy_external_alerts.php:123 -msgid "Created successfuly" -msgstr "Creado correctamente" - -#: ../../enterprise/godmode/policies/policy_external_alerts.php:127 -msgid "Duplicated alert" -msgstr "Alerta duplicada" - -#: ../../enterprise/godmode/policies/policy_external_alerts.php:145 -#: ../../enterprise/godmode/policies/policy_alerts.php:255 -msgid "" -"Successfully added to delete pending alerts. Will be deleted in the next " -"policy application." -msgstr "" -"Correctamente aƱadido a las alertas pendientes de eliminaciĆ³n. SerĆ” eliminado " -"en la prĆ³xima aplicaciĆ³n de polĆ­ticas." - -#: ../../enterprise/godmode/policies/policy_external_alerts.php:173 -#: ../../enterprise/godmode/policies/policy_alerts.php:302 -msgid "Deleted action successfuly" -msgstr "AcciĆ³n eliminada correctamente" - -#: ../../enterprise/godmode/policies/policy_external_alerts.php:200 -#: ../../enterprise/godmode/policies/policy_alerts.php:280 -msgid "Added action successfuly" -msgstr "AcciĆ³n aƱadida correctamente" - -#: ../../enterprise/godmode/policies/policy_external_alerts.php:383 -msgid "Modules in policy per agents" -msgstr "MĆ³dulos en polĆ­tica por agentes" - -#: ../../enterprise/godmode/policies/policy_external_alerts.php:566 -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:620 -msgid "Modules in policy agents" -msgstr "MĆ³dulos en agentes de polĆ­tica" - -#: ../../enterprise/godmode/policies/policy_external_alerts.php:648 -msgid "Alert Template" -msgstr "Plantilla de alerta" - -#: ../../enterprise/godmode/policies/configure_policy.php:122 -msgid "Force Apply" -msgstr "Forzar aplicaciĆ³n" - -#: ../../enterprise/godmode/policies/configure_policy.php:122 -msgid "" -"Force the creation of modules even if the software agent does not have remote " -"configuration" -msgstr "" -"Forzar la creaciĆ³n de mĆ³dulos incluso si el agente software no tiene " -"configuraciĆ³n remota" - -#: ../../enterprise/godmode/policies/policy_inventory_modules.php:110 -msgid "Module is not selected" -msgstr "No se ha seleccionado ningĆŗn mĆ³dulo" - -#: ../../enterprise/godmode/policies/policy_inventory_modules.php:296 -msgid "There are no defined inventory modules" -msgstr "No hay mĆ³dulos de inventario definidos" - -#: ../../enterprise/godmode/policies/policy_alerts.php:178 -#: ../../godmode/massive/massive_standby_alerts.php:132 -#: ../../godmode/alerts/alert_list.php:420 -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:421 -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:447 -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:448 -msgid "Could not be set off standby" -msgstr "No se pudo desactivar el modo standby" - -#: ../../enterprise/godmode/policies/policy_alerts.php:249 -msgid " created successfuly" -msgstr " creado correctamente" - -#: ../../enterprise/godmode/policies/policy_alerts.php:249 -msgid " could not be created" -msgstr " no se ha podido crear" - -#: ../../enterprise/godmode/policies/policy_alerts.php:613 -msgid "There is not alerts configured in this policy." -msgstr "No hay alertas configuradas en esta polĆ­tica." - -#: ../../enterprise/godmode/policies/policy_alerts.php:653 -msgid "Policy module" -msgstr "MĆ³dulo de la polĆ­tica" - -#: ../../enterprise/godmode/policies/policy_alerts.php:731 -#: ../../godmode/alerts/alert_list.list.php:1057 -msgid "Set off standby" -msgstr "Desactivar modo standby" - -#: ../../enterprise/godmode/policies/policy_alerts.php:740 -#: ../../godmode/alerts/alert_list.list.php:1084 -msgid "Set standby" -msgstr "Activar modo standby" - -#: ../../enterprise/godmode/policies/policy_collections.php:99 -msgid "" -"Successfully added to delete the collection. Will be deleted in the next " -"policy application." -msgstr "" -"AƱadido correctamente a la colecciĆ³n. Se eliminarĆ” en la prĆ³xima aplicaciĆ³n de " -"polĆ­tica." - -#: ../../enterprise/godmode/policies/policy_collections.php:241 -msgid "Collections in policy" -msgstr "Colecciones en la polĆ­tica" - -#: ../../enterprise/godmode/policies/policy_collections.php:245 -msgid "Collections to add" -msgstr "Colecciones a aƱadir" - -#: ../../enterprise/godmode/policies/policy_collections.php:315 -msgid "No available collection to add" -msgstr "No hay colecciones a aƱadir disponibles" - -#: ../../enterprise/godmode/policies/policy_plugins.php:56 -msgid "" -"Successfully added to delete pending plugins. Will be deleted in the next " -"policy application." -msgstr "" -"Correctamente aƱadido a los plugins pendientes de eliminar. SerĆ” eliminado en " -"la prĆ³xima aplicaciĆ³n de polĆ­ticas." - -#: ../../enterprise/godmode/policies/policy_plugins.php:57 -msgid "Cannot be added to delete pending plugins." -msgstr "No se puede aƱadir a los plugins pendientes de eliminar." - -#: ../../enterprise/godmode/policies/policy_plugins.php:210 -msgid "There are no defined plugins" -msgstr "No hay plugins definidos" - -#: ../../extensions/quick_shell.php:140 ../../extensions/quick_shell.php:244 -msgid "WebService engine has not been started, please check documentation." -msgstr "El motor WebService aĆŗn no se ha iniciado, consulte la documentaciĆ³n." - -#: ../../extensions/quick_shell.php:152 -msgid "Retry" -msgstr "Reintentar" - -#: ../../extensions/quick_shell.php:196 -msgid "Telnet" -msgstr "Telnet" - -#: ../../extensions/quick_shell.php:204 -msgid "Connect" -msgstr "Conectar" - -#: ../../extensions/quick_shell.php:232 -msgid "Please use SSH or Telnet." -msgstr "Use SSH o Telnet." - -#: ../../extensions/quick_shell.php:266 -msgid "WebService engine is not working properly, please check documentation." -msgstr "" -"El motor WebService no funciona correctamente, consulte la documentaciĆ³n." - -#: ../../extensions/quick_shell.php:425 -#, php-format -msgid "%d Updated" -msgstr "%d Actualizado" - -#: ../../extensions/quick_shell.php:428 -#, php-format -msgid "%d Updated, please restart WebSocket engine service" -msgstr "%d Actualizado, reinicie el servicio del motor WebSocket" - -#: ../../extensions/quick_shell.php:438 -msgid "Quickshell" -msgstr "Quickshell" - -#: ../../extensions/quick_shell.php:448 -msgid "Gotty path" -msgstr "Ruta Gotty" - -#: ../../extensions/quick_shell.php:458 -msgid "Gotty host" -msgstr "Host Gotty" - -#: ../../extensions/quick_shell.php:468 -msgid "Gotty ssh port" -msgstr "Puerto SSH Gotty" - -#: ../../extensions/quick_shell.php:478 -msgid "Gotty telnet port" -msgstr "Puerto telnet Gotty" - -#: ../../extensions/quick_shell.php:495 -msgid "Gotty user" -msgstr "Usuario Gotty" - -#: ../../extensions/quick_shell.php:505 -msgid "Gotty password" -msgstr "ContraseƱa Gotty" - -#: ../../extensions/quick_shell.php:545 -msgid "QuickShell" -msgstr "QuickShell" - -#: ../../extensions/disabled/matrix_events.php:30 -msgid "Matrix events" -msgstr "Eventos matriz" - -#: ../../extensions/pandora_logs.php:29 -msgid "Cannot find file" -msgstr "Archivo no encontrado" - -#: ../../extensions/pandora_logs.php:34 -msgid "File is too large than PHP memory allocated in the system." -msgstr "El archivo supera la capacidad de la memoria PHP alojada en el sistema" - -#: ../../extensions/pandora_logs.php:35 -msgid "The preview file is imposible." -msgstr "No es posible generar una vista previa del archivo" - -#: ../../extensions/pandora_logs.php:38 ../../extensions/pandora_logs.php:45 -msgid "The folder /var/log/pandora must have pandora:apache and its content too." -msgstr "" -"La carpeta /var/log/pandora debe contener pandora:apache y tambiĆ©n su " -"contenido." - -#: ../../extensions/pandora_logs.php:67 -msgid "System logfile viewer" -msgstr "Visor de archivos de log del sistema" - -#: ../../extensions/pandora_logs.php:69 -#, php-format -msgid "Use this tool to view your %s logfiles directly on the console" -msgstr "" -"Utilice esta herramienta para ver los %s ficheros log directamente desde la " -"consola" - -#: ../../extensions/pandora_logs.php:71 -msgid "" -"You can choose the amount of information shown in general setup (Log size " -"limit in system logs viewer extension), " -msgstr "" -"Puedes elegir la cantidad de informaciĆ³n que se muestra en la configuraciĆ³n " -"general (lĆ­mite de tamaƱo de logs en la extensiĆ³n del visor de logs del " -"sistema) " - -#: ../../extensions/pandora_logs.php:85 -msgid "System logfiles" -msgstr "Logs del sistema" - -#: ../../extensions/users_connected.php:37 -#: ../../extensions/users_connected.php:209 -msgid "Users connected" -msgstr "Usuarios conectados" - -#: ../../extensions/users_connected.php:42 -msgid "This user does not have any associated profile" -msgstr "Este usuario no tiene ningĆŗn perfil/grupo asignado" - -#: ../../extensions/users_connected.php:132 -msgid "No other users connected" -msgstr "No hay otros usuarios conectados" - -#: ../../extensions/users_connected.php:145 -msgid "Last login" -msgstr "ƚltimo acceso" - -#: ../../extensions/realtime_graphs.php:58 -#: ../../extensions/realtime_graphs.php:268 -msgid "Realtime graphs" -msgstr "GrĆ”ficas en tiempo real" - -#: ../../extensions/realtime_graphs.php:134 -#, php-format -msgid "%s Server CPU" -msgstr "%s CPU del servidor" - -#: ../../extensions/realtime_graphs.php:136 -#, php-format -msgid "Pending packages from %s Server" -msgstr "Paquetes del %s servidor pendientes" - -#: ../../extensions/realtime_graphs.php:140 -#, php-format -msgid "%s Server Disk IO Wait" -msgstr "%s Server Disk IO Wait" - -#: ../../extensions/realtime_graphs.php:144 -#, php-format -msgid "%s Server Apache load" -msgstr "%s Carga del servidor apache" - -#: ../../extensions/realtime_graphs.php:148 -#, php-format -msgid "%s Server MySQL load" -msgstr "%s Carga del servidor MySQL" - -#: ../../extensions/realtime_graphs.php:152 -#, php-format -msgid "%s Server load" -msgstr "%s Carga del servidor" - -#: ../../extensions/realtime_graphs.php:155 -msgid "SNMP Interface throughput" -msgstr "Rendimiento de interfaz SNMP" - -#: ../../extensions/realtime_graphs.php:206 -msgid "Refresh interval" -msgstr "Intervalo de actualizaciĆ³n" - -#: ../../extensions/realtime_graphs.php:217 -#: ../../godmode/modules/manage_network_components_form_wizard.php:135 -msgid "Incremental" -msgstr "Incremental" - -#: ../../extensions/realtime_graphs.php:222 -msgid "Clear graph" -msgstr "Limpiar grĆ”fica" - -#: ../../extensions/realtime_graphs.php:249 -#: ../../godmode/agentes/module_manager_editor_network.php:43 -msgid "Use this OID" -msgstr "Usar esta OID" - -#: ../../extensions/dbmanager.php:110 -msgid "Database interface" -msgstr "Interfaz de base de datos" - -#: ../../extensions/dbmanager.php:123 -msgid "" -"Warning, you are accessing the database directly. You can leave the system " -"inoperative if you run an inappropriate SQL statement" -msgstr "" -"Advertencia, estĆ” accediendo a la base de datos directamente. Puede dejar el " -"sistema inoperativo si ejecuta una instrucciĆ³n SQL inapropiada" - -#: ../../extensions/dbmanager.php:161 -#, php-format -msgid "" -"This is an advanced extension to interface with %s database directly from WEB " -"console\n" -"\t\tusing native SQL sentences. Please note that you can damage your %s " -"installation\n" -"\t\tif you don't know
exactly what are you are doing,\n" -"\t\tthis means that you can severily damage your setup using this extension.\n" -"\t\tThis extension is intended to be used only by experienced users\n" -"\t\twith a depth knowledge of %s internals." -msgstr "" -"Esta es una extensiĆ³n avanzada de la interfaz con la %s base de datos " -"directamente desde la consola WEB\n" -"\t\tusando comandos SQL nativos. Tenga en cuenta que puede perjudicar a " -"la %s instalaciĆ³n\n" -"\t\tsi no sabe exactamente lo que hace,\n" -"\t\testo significa que puede daƱar seriamente la configuraciĆ³n al usar esta " -"extensiĆ³n.\n" -"\t\tEsta extensiĆ³n estĆ” destinada solamente a usuarios expertos\n" -"\t\tcon amplios conocimientos sobre el funcionamiento %s interno." - -#: ../../extensions/dbmanager.php:207 -msgid "Select query target" -msgstr "Seleccionar destino de consulta" - -#: ../../extensions/dbmanager.php:214 -msgid "Execute SQL" -msgstr "Ejecutar SQL" - -#: ../../extensions/dbmanager.php:255 -msgid "Error querying database node" -msgstr "Error al consultar el nodo de la base de datos" - -#: ../../extensions/dbmanager.php:322 ../../godmode/menu.php:433 -msgid "DB interface" -msgstr "Interfaz de la BD" - -#: ../../extensions/files_repo/files_repo_get_file.php:66 -msgid "Unreliable petition" -msgstr "PeticiĆ³n no fiable" - -#: ../../extensions/files_repo/files_repo_get_file.php:66 -msgid "Please contact the administrator" -msgstr "Por favor, contacta con el administrador" - -#: ../../extensions/files_repo/functions_files_repo.php:28 -#: ../../extensions/files_repo/functions_files_repo.php:46 -msgid "Attachment directory is not writable by HTTP Server" -msgstr "El servidor HTTP no puede escribir en el directorio de adjuntos" - -#: ../../extensions/files_repo/functions_files_repo.php:28 -#: ../../extensions/files_repo/functions_files_repo.php:46 -#, php-format -msgid "Please check that the web server has write rights on the %s directory" -msgstr "" -"Por favor, comprueba que el directorio %s del servidor web tiene permisos de " -"escritura" - -#: ../../extensions/files_repo/functions_files_repo.php:248 -msgid "The file could not be copied" -msgstr "El archivo no ha sido copiado" - -#: ../../extensions/files_repo/functions_files_repo.php:251 -msgid "There was an error creating the file" -msgstr "Se ha producido un error creando el archivo" - -#: ../../extensions/files_repo/functions_files_repo.php:295 -msgid "There was an error updating the file" -msgstr "Se ha producido un error actualizando el archivo" - -#: ../../extensions/files_repo/files_repo_form.php:84 -msgid "Only 200 characters are permitted" -msgstr "MĆ”ximo 200 caracteres" - -#: ../../extensions/files_repo/files_repo_form.php:95 -#: ../../godmode/extensions.php:138 -msgid "File" -msgstr "Archivo" - -#: ../../extensions/files_repo/files_repo_form.php:98 -#: ../../extensions/files_repo/files_repo_form.php:104 -#: ../../extensions/files_repo/files_repo_list.php:112 -msgid "Public link" -msgstr "Enlace pĆŗblico" - -#: ../../extensions/files_repo/files_repo_list.php:106 -msgid "Copy to clipboard" -msgstr "Copiar al portapapeles" - -#: ../../extensions/db_status.php:25 ../../extensions/db_status.php:455 -#: ../../godmode/menu.php:433 -msgid "DB Schema check" -msgstr "ComprobaciĆ³n del esquema de la BD" - -#: ../../extensions/db_status.php:43 -msgid "" -"This extension checks the DB is correct. Because sometimes the old DB from a " -"migration has not some fields in the tables or the data is changed." -msgstr "" -"Esta extensiĆ³n comprueba que la DB es correcta, ya que, en ocasiones, la " -"antigua DB de una migraciĆ³n no tiene algunos campos en las tablas o los datos " -"son diferentes." - -#: ../../extensions/db_status.php:46 -msgid "At the moment the checks is for MySQL/MariaDB." -msgstr "Por el momento, las comprobaciones son para MySQL/MariaDB" - -#: ../../extensions/db_status.php:52 -msgid "DB settings" -msgstr "ConfiguraciĆ³n de la BD" - -#: ../../extensions/db_status.php:56 -msgid "DB User with privileges" -msgstr "Usuario de la BD con privilegios" - -#: ../../extensions/db_status.php:58 -msgid "DB Password for this user" -msgstr "ContraseƱa de la BD para este usuario" - -#: ../../extensions/db_status.php:62 -msgid "DB Hostname" -msgstr "Nombre del host de la base de datos" - -#: ../../extensions/db_status.php:64 -msgid "DB Name (temporal for testing)" -msgstr "Nombre de la BD (temporal, para pruebas)" - -#: ../../extensions/db_status.php:72 -msgid "Execute Test" -msgstr "Ejecutar la prueba" - -#: ../../extensions/db_status.php:108 -msgid "Unsuccessful connected to the DB" -msgstr "Error al conectarse a la BD" - -#: ../../extensions/db_status.php:119 -msgid "Unsuccessful created the testing DB" -msgstr "Error al crear la BD de prueba" - -#: ../../extensions/db_status.php:135 -msgid "Unsuccessful installed tables into the testing DB" -msgstr "Error al instalar las tablas en la BD de prueba" - -#: ../../extensions/db_status.php:219 -#, php-format -msgid "Success! %s DB contains all tables" -msgstr "Hecho! %s La base de datos contiene todas las tablas" - -#: ../../extensions/db_status.php:221 -#, php-format -msgid "%s DB could not retrieve all tables. The missing tables are (%s)" -msgstr "" -"%s La base de datos no ha podido obtener todas las tablas. Faltan las tablas " -"(%s)" - -#: ../../extensions/db_status.php:235 ../../extensions/db_status.php:246 -#: ../../extensions/db_status.php:349 -msgid "You can execute this SQL query for to fix." -msgstr "Puede ejecutar esta consulta SQL para arreglarlo" - -#: ../../extensions/db_status.php:343 -#, php-format -msgid "Unsuccessful the table %s has not the field %s" -msgstr "Error, la tabla %s no contiene todos los campos %s" - -#: ../../extensions/db_status.php:410 -msgid "Successful all the tables have the correct fields" -msgstr "Todas las tablas tienen los campos correctos" - -#: ../../extensions/agents_alerts.php:37 -msgid "Agents/Alerts view" -msgstr "Vista de Agentes/Alertas" - -#: ../../extensions/extension_uploader.php:29 -msgid "Uploader extension" -msgstr "ExtensiĆ³n de subidas" - -#: ../../extensions/extension_uploader.php:72 -msgid "Success to upload extension" -msgstr "ExtensiĆ³n subida correctamente" - -#: ../../extensions/extension_uploader.php:73 -msgid "Fail to upload extension" -msgstr "Fallo al subir extensiĆ³n" - -#: ../../extensions/extension_uploader.php:82 -msgid "Upload extension" -msgstr "Subir extensiĆ³n" - -#: ../../extensions/extension_uploader.php:83 -msgid "Upload the extension as a zip file." -msgstr "Subir la extensiĆ³n como un archivo zip" - -#: ../../extensions/extension_uploader.php:85 -msgid "Upload enterprise extension" -msgstr "Subir extensiĆ³n Enterprise" - -#: ../../extensions/extension_uploader.php:98 -msgid "Extension uploader" -msgstr "Cargador de extensiones" - -#: ../../extensions/module_groups.php:48 -msgid "Counters Module" -msgstr "MĆ³dulo de contadores" - -#: ../../extensions/module_groups.php:49 -msgid "Alerts_Fired" -msgstr "Alertas_disparadas" - -#: ../../extensions/module_groups.php:51 -msgid "warning" -msgstr "Advertencia" - -#: ../../extensions/module_groups.php:54 -msgid "Not_init" -msgstr "No_iniciado" - -#: ../../extensions/module_groups.php:251 -msgid "Combined table of agent group and module group" -msgstr "Tabla combinada de grupos de agentes y grupos de mĆ³dulos" - -#: ../../extensions/module_groups.php:275 -msgid "Search by agent group" -msgstr "Buscar por grupo de agente" - -#: ../../extensions/module_groups.php:279 -msgid "Search by module group" -msgstr "Buscar por grupo de mĆ³dulos" - -#: ../../extensions/module_groups.php:392 -msgid "" -"Orange cell when the module group and agent have at least one alarm fired." -msgstr "" -"Celda naranja cuando el grupo de mĆ³dulos y el agente del mĆ³dulo tengan al " -"menos una alerta disparada." - -#: ../../extensions/module_groups.php:393 -msgid "" -"Red cell when the module group and agent have at least one module in critical " -"status and the others in any status" -msgstr "" -"Celda roja cuando el grupo de mĆ³dulos y el agente tengan al menos un mĆ³dulo en " -"estado crĆ­tico y los demĆ”s en cualquier otro estado." - -#: ../../extensions/module_groups.php:394 -msgid "" -"Yellow cell when the module group and agent have at least one in warning " -"status and the others in grey or green status" -msgstr "" -"Celda amarilla cuando el grupo de mĆ³dulos y el agente tengan al menos un " -"mĆ³dulo en estado crĆ­tico y los demĆ”s en cualquier otro estado" - -#: ../../extensions/module_groups.php:395 -msgid "" -"Grey cell when the module group and agent have at least one in unknown status " -"and the others in green status" -msgstr "" -"Celda gris cuando el grupo de mĆ³dulos y el agente tengan al menos un mĆ³dulo en " -"estado desconocido y todos los demĆ”s estĆ”n en OK" - -#: ../../extensions/module_groups.php:396 -msgid "Green cell when the module group and agent have all modules in OK status" -msgstr "" -"Celda verde cuando el grupo de mĆ³dulos y el agente tengan todos los mĆ³dulos en " -"estado OK" - -#: ../../extensions/module_groups.php:397 -msgid "" -"Blue cell when the module group and agent have all modules in not init status." -msgstr "" -"Celda azul cuando el grupo de mĆ³dulos y el agente tengan todos los mĆ³dulos en " -"estado no iniciado." - -#: ../../extensions/module_groups.php:401 -msgid "" -"This table shows in columns the modules group and in rows agents group. The " -"cell shows all modules" -msgstr "" -"La tabla muestra los grupos de mĆ³dulos en columnas y los grupos de agente en " -"filas. La celda muestra todos los mĆ³dulos." - -#: ../../extensions/module_groups.php:402 -msgid "There are no defined groups or module groups" -msgstr "No hay grupos o grupos de mĆ³dulos definidos" - -#: ../../extensions/agents_modules.php:564 -msgid "Agent/module view" -msgstr "Vista de agente/mĆ³dulo" - -#: ../../extensions/agents_modules.php:605 -msgid "Filters " -msgstr "Filtros " - -#: ../../extensions/agents_modules.php:605 -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:765 -msgid "Previous modules" -msgstr "MĆ³dulos anteriores" - -#: ../../extensions/agents_modules.php:791 -msgid "More modules" -msgstr "MĆ”s mĆ³dulos" - -#: ../../extensions/agents_modules.php:945 -msgid "Cell turns blue when the module is in 'not initialize' status" -msgstr "Celda azul cuando el mĆ³dulo estĆ” en estado \"no iniciado\"" - -#: ../../extensions/agents_modules.php:959 -msgid "Agents/Modules view" -msgstr "Vista de Agentes/MĆ³dulos" - -#: ../../extensions/files_repo.php:103 -msgid "Extension not installed" -msgstr "ExtensiĆ³n no instalada" - -#: ../../extensions/files_repo.php:118 ../../extensions/files_repo.php:207 -msgid "Administration view" -msgstr "Vista de administraciĆ³n" - -#: ../../extensions/files_repo.php:130 ../../extensions/files_repo.php:240 -msgid "Files repository manager" -msgstr "Gestor del repositorio de archivos" - -#: ../../extensions/files_repo.php:148 -msgid "" -"Problem uploading. Please check this PHP runtime variable values:
  "
-"post_max_size (currently "
-msgstr ""
-"Problema de carga. Compruebe los valores de esta variable de tiempo de "
-"ejecuciĆ³n de PHP: 
  post_max_size (actualmente "
-
-#: ../../extensions/files_repo.php:221 ../../extensions/files_repo.php:238
-msgid "Files repository"
-msgstr "Repositorio de archivos"
-
-#: ../../extensions/resource_registration.php:55
-#, php-format
-msgid "Success add '%s' item in report '%s'."
-msgstr "Elemento '%s' aƱadido correctamente al informe '%s'"
-
-#: ../../extensions/resource_registration.php:60
-#, php-format
-msgid "Error create '%s' item in report '%s'."
-msgstr "Error al aƱadir el elemento '%s' al informe '%s'"
-
-#: ../../extensions/resource_registration.php:96
-#, php-format
-msgid "Error create '%s' report, the name exist and there aren't free name."
-msgstr ""
-"Error al crear el informe '%s'. El nombre ya existe y no hay nombres "
-"disponibles."
-
-#: ../../extensions/resource_registration.php:104
-#, php-format
-msgid "Warning create '%s' report, the name exist, the report have a name %s."
-msgstr ""
-"Advertencia al crear el informe '%s'. El nombre ya existe y el informe tiene "
-"el nombre %s."
-
-#: ../../extensions/resource_registration.php:113
-msgid "Error the report haven't name."
-msgstr "Error, el informe no tiene nombre"
-
-#: ../../extensions/resource_registration.php:127
-msgid "Error the report haven't group."
-msgstr "Error, el informe no tiene un grupo asignado"
-
-#: ../../extensions/resource_registration.php:140
-#, php-format
-msgid "Success create '%s' report."
-msgstr "Informe '%s' creado correctamente"
-
-#: ../../extensions/resource_registration.php:141
-#, php-format
-msgid "Error create '%s' report."
-msgstr "Error al crear el informe '%s'"
-
-#: ../../extensions/resource_registration.php:435
-#: ../../extensions/resource_registration.php:457
-#: ../../extensions/resource_registration.php:468
-#, php-format
-msgid "Success add '%s' content."
-msgstr "Contenido '%s' aƱadido correctamente"
-
-#: ../../extensions/resource_registration.php:445
-#, php-format
-msgid "Success add '%s' SLA."
-msgstr "SLA '%s' aƱadido correctamente"
-
-#: ../../extensions/resource_registration.php:446
-#, php-format
-msgid "Error add '%s' SLA."
-msgstr "Error al aƱadir el SLA '%s'"
-
-#: ../../extensions/resource_registration.php:489
-#, php-format
-msgid "Error create '%s' visual map, lost tag name."
-msgstr "Error al crear el mapa visual '%s'. Falta el nombre de la etiqueta."
-
-#: ../../extensions/resource_registration.php:532
-#, php-format
-msgid "Error create '%s' visual map, the name exist and there aren't free name."
-msgstr ""
-"Error al crear el mapa visual '%s'. El nombre ya existe y no hay nombres "
-"disponibles."
-
-#: ../../extensions/resource_registration.php:540
-#, php-format
-msgid ""
-"Warning create '%s' visual map, the name exist, the report have a name %s."
-msgstr ""
-"Advertencia al crear el mapa visual '%s'. El nombre ya existe y el informe "
-"tiene el nombre %s."
-
-#: ../../extensions/resource_registration.php:552
-#, php-format
-msgid "Success create '%s' visual map."
-msgstr "Ɖxito al crear el mapa visual '%s'"
-
-#: ../../extensions/resource_registration.php:553
-#, php-format
-msgid "Error create '%s' visual map."
-msgstr "Error al crear el mapa visual '%s'"
-
-#: ../../extensions/resource_registration.php:718
-#, php-format
-msgid "Success create item type '%d' visual map."
-msgstr "Elemento de tipo \"%d\" del mapa visual creado correctamente"
-
-#: ../../extensions/resource_registration.php:719
-#, php-format
-msgid "Error create item type '%d' visual map."
-msgstr "Error al crear el tipo de elemento \"%d\" del mapa visual"
-
-#: ../../extensions/resource_registration.php:742
-#: ../../extensions/resource_registration.php:763
-#, php-format
-msgid "Success create item for agent '%s' visual map."
-msgstr "Elemento de agente '%s' del mapa visual creado correctamente"
-
-#: ../../extensions/resource_registration.php:743
-#: ../../extensions/resource_registration.php:764
-#, php-format
-msgid "Error create item for agent '%s' visual map."
-msgstr "Error al crear el elemento de agente '%s' del mapa visual"
-
-#: ../../extensions/resource_registration.php:1028
-#, php-format
-msgid "Success create '%s' component."
-msgstr "Componente '%s' creado correctamente"
-
-#: ../../extensions/resource_registration.php:1029
-#, php-format
-msgid "Error create '%s' component."
-msgstr "Error al crear el componente '%s'"
-
-#: ../../extensions/resource_registration.php:1095
-#: ../../extensions/resource_registration.php:1158
-msgid "Resource registration"
-msgstr "Registro de recursos"
-
-#: ../../extensions/resource_registration.php:1114
-#, php-format
-msgid ""
-"This node is configured with centralized mode. Go to %s to create a policy."
-msgstr ""
-"Este nodo estĆ” configurado en modo centralizado. Vaya a %s para crear una "
-"polĆ­tica."
-
-#: ../../extensions/resource_registration.php:1123
-msgid "This extension makes registering resource templates easier."
-msgstr "Esta extensiĆ³n facilita el registro de plantillas de recursos."
-
-#: ../../extensions/resource_registration.php:1123
-msgid "Here you can upload a resource template in .ptr format."
-msgstr "Aquƭ puede aƱadir una plantilla de recurso en formato .ptr."
-
-#: ../../extensions/resource_registration.php:1123
-#, php-format
-msgid ""
-"Please refer to our documentation for more information on how to obtain and "
-"use %s resources."
-msgstr ""
-"DirĆ­jase a nuestra documentaciĆ³n para encontrar mĆ”s informaciĆ³n sobre como "
-"obtener y usar los recursos de %s."
-
-#: ../../extensions/resource_registration.php:1123
-msgid ""
-"You can get more resurces in our Public Resource Library"
-msgstr ""
-"Puede obtener mĆ”s recursos en nuestra LibrerĆ­a de recursos pĆŗblica"
-
-#: ../../extensions/resource_exportation.php:50
-#: ../../extensions/resource_exportation.php:420
-msgid "Resource exportation"
-msgstr "ExportaciĆ³n de recursos"
-
-#: ../../extensions/resource_exportation.php:423
-msgid "This extension makes exportation of resource template more easy."
-msgstr "Esta extensiĆ³n facilita la exportaciĆ³n de la plantilla de recursos."
-
-#: ../../extensions/resource_exportation.php:423
-msgid "You can export resource templates in .ptr format."
-msgstr "Puede exportar plantillas de recursos en formato .prt."
-
-#: ../../extensions/api_checker.php:111 ../../extensions/api_checker.php:248
-msgid "API checker"
-msgstr "ComprobaciĆ³n API"
-
-#: ../../extensions/api_checker.php:128
-#, php-format
-msgid "%s Console URL"
-msgstr "%s URL de la consola"
-
-#: ../../extensions/api_checker.php:133
-msgid "API Pass"
-msgstr "ContraseƱa de la API"
-
-#: ../../extensions/api_checker.php:151
-msgid "Action (get or set)"
-msgstr "AcciĆ³n (obtener o establecer)"
-
-#: ../../extensions/api_checker.php:166
-msgid "ID 2"
-msgstr "ID 2"
-
-#: ../../extensions/api_checker.php:171
-msgid "Return Type"
-msgstr "Tipo de retorno"
-
-#: ../../extensions/api_checker.php:181
-msgid "Other Mode"
-msgstr "Otro modo"
-
-#: ../../extensions/api_checker.php:189
-msgid "Raw URL"
-msgstr "URL en crudo"
-
-#: ../../extensions/api_checker.php:200
-msgid "Call parameters"
-msgstr "ParƔmetros de llamada"
-
-#: ../../extensions/api_checker.php:200
-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
-msgid "Custom URL"
-msgstr "URL personalizada:"
-
-#: ../../extensions/api_checker.php:213
-msgid "Call"
-msgstr "Llamada"
-
-#: ../../extensions/api_checker.php:222 ../../extensions/api_checker.php:239
-msgid "Show URL"
-msgstr "Mostrar URL"
-
-#: ../../extensions/api_checker.php:235
-msgid "Hide URL"
-msgstr "Ocultar URL"
-
-#: ../../extensions/insert_data.php:58
-msgid "Insert data"
-msgstr "Insertar datos"
-
-#: ../../extensions/insert_data.php:89
-msgid "You haven't privileges for insert data in the agent."
-msgstr "No tienes privilegios para insertar datos en el agente"
-
-#: ../../extensions/insert_data.php:125
-#, php-format
-msgid "Can't save agent (%s), module (%s) data xml."
-msgstr "No se pudo guardar el agente (%s), mĆ³dulo (%s) datos XML"
-
-#: ../../extensions/insert_data.php:134
-#, php-format
-msgid "Save agent (%s), module (%s) data xml."
-msgstr "Guardar agente (%s), mĆ³dulo (%s) datos XML"
-
-#: ../../extensions/insert_data.php:145
-#, php-format
-msgid ""
-"Please check that the directory \"%s\" is writeable by the apache user. 

The CSV file format is date;value<newline>date;value<" -"newline>... The date in CSV is in format Y/m/d H:i:s." -msgstr "" -"Por favor, comprueba que el usuario de Apache puede escribir en el directorio " -"'%s'.

El formato del archivo CSV es date;value<newline>date;" -"value<newline>... La fecha en CVS estĆ” en formato a/m/d H:i:s." - -#: ../../extensions/insert_data.php:273 -msgid "Insert Data" -msgstr "Insertar datos" - -#: ../../mobile/operation/agent.php:162 -msgid "No agent found" -msgstr "No se han encontrado agentes" - -#: ../../mobile/operation/agent.php:238 -msgid "Modules by status" -msgstr "MĆ³dulos por estado" - -#: ../../mobile/operation/agent.php:375 -#, php-format -msgid "Last %s Events" -msgstr "ƚltimos %s eventos" - -#: ../../mobile/operation/modules.php:250 -#, php-format -msgid "Filter Modules by %s" -msgstr "Filtrar mĆ³dulos por %s" - -#: ../../mobile/operation/modules.php:325 ../../mobile/operation/alerts.php:266 -#: ../../mobile/operation/events.php:718 ../../mobile/operation/agents.php:260 -msgid "Apply Filter" -msgstr "Aplicar el filtro" - -#: ../../mobile/operation/modules.php:659 -msgid "Interval." -msgstr "Intervalo" - -#: ../../mobile/operation/modules.php:661 -msgid "Last update." -msgstr "ƚltima actualizaciĆ³n" - -#: ../../mobile/operation/modules.php:772 -#: ../../godmode/agentes/agent_template.php:269 -msgid "No modules" -msgstr "Sin mĆ³dulos" - -#: ../../mobile/operation/modules.php:885 ../../mobile/operation/alerts.php:379 -#: ../../mobile/operation/events.php:1155 ../../mobile/operation/agents.php:550 -msgid "(Default)" -msgstr "(Por defecto)" - -#: ../../mobile/operation/modules.php:891 ../../mobile/operation/alerts.php:392 -#: ../../mobile/operation/events.php:1188 ../../mobile/operation/agents.php:556 -#, php-format -msgid "Group: %s" -msgstr "Grupo: %s" - -#: ../../mobile/operation/modules.php:906 -#, php-format -msgid "Module group: %s" -msgstr "Grupos de mĆ³dulos: %s" - -#: ../../mobile/operation/modules.php:913 ../../mobile/operation/alerts.php:399 -#: ../../mobile/operation/events.php:1208 ../../mobile/operation/agents.php:563 -#, php-format -msgid "Status: %s" -msgstr "Estado: %s" - -#: ../../mobile/operation/modules.php:920 ../../mobile/operation/alerts.php:406 -#: ../../mobile/operation/agents.php:570 -#, php-format -msgid "Free Search: %s" -msgstr "BĆŗsqueda libre: %s" - -#: ../../mobile/operation/modules.php:928 -#, php-format -msgid "Tag: %s" -msgstr "Etiqueta: %s" - -#: ../../mobile/operation/visualmaps.php:242 -msgid "All visual consoles" -msgstr "Todas las consolas visuales" - -#: ../../mobile/operation/visualmaps.php:254 -msgid "Favourite visual consoles" -msgstr "Consolas visuales favoritas" - -#: ../../mobile/operation/visualmaps.php:263 -msgid "No maps defined" -msgstr "No hay mapas definidos" - -#: ../../mobile/operation/home.php:161 ../../mobile/include/ui.class.php:239 -msgid "Home" -msgstr "Inicio" - -#: ../../mobile/operation/tactical.php:216 -msgid "Last activity" -msgstr "ƚltima actividad" - -#: ../../mobile/operation/alerts.php:125 ../../mobile/operation/alerts.php:126 -#: ../../mobile/operation/alerts.php:256 ../../mobile/operation/alerts.php:257 -#: ../../godmode/alerts/alert_view.php:128 -msgid "Stand by" -msgstr "En espera" - -#: ../../mobile/operation/alerts.php:208 -#, php-format -msgid "Filter Alerts by %s" -msgstr "Filtros de alertas por %s" - -#: ../../mobile/operation/alerts.php:346 -msgid "Last Fired" -msgstr "ƚltima vez que se disparĆ³" - -#: ../../mobile/operation/alerts.php:357 -msgid "No alerts" -msgstr "Sin alertas" - -#: ../../mobile/operation/alerts.php:385 -#, php-format -msgid "Standby: %s" -msgstr "Standby: %s" - -#: ../../mobile/operation/events.php:405 ../../mobile/operation/events.php:414 -#: ../../mobile/operation/events.php:643 ../../mobile/operation/events.php:644 -msgid "Preset Filters" -msgstr "Fijar los filtros" - -#: ../../mobile/operation/events.php:485 -msgid "ERROR: Event detail" -msgstr "ERROR: detalles del evento" - -#: ../../mobile/operation/events.php:486 -msgid "Error connecting to DB." -msgstr "Error al conectar con la base de datos" - -#: ../../mobile/operation/events.php:501 -msgid "Event detail" -msgstr "Detalles del evento" - -#: ../../mobile/operation/events.php:584 -msgid "Sucessful validate" -msgstr "ValidaciĆ³n correcta" - -#: ../../mobile/operation/events.php:586 -msgid "Fail validate" -msgstr "ValidaciĆ³n fallida" - -#: ../../mobile/operation/events.php:625 -#, php-format -msgid "Filter Events by %s" -msgstr "Filtrar eventos por %s" - -#: ../../mobile/operation/events.php:1160 -#, php-format -msgid "Filter: %s" -msgstr "Filtro: %s" - -#: ../../mobile/operation/events.php:1172 -#, php-format -msgid "Severity: %s" -msgstr "Gravedad: %s" - -#: ../../mobile/operation/events.php:1201 -#, php-format -msgid "Type: %s" -msgstr "Tipo: %s" - -#: ../../mobile/operation/events.php:1215 -#, php-format -msgid "Free search: %s" -msgstr "BĆŗsqueda libre: %s" - -#: ../../mobile/operation/events.php:1222 -#, php-format -msgid "Hours: %s" -msgstr "Horas: %s" - -#: ../../mobile/operation/module_graph.php:359 -#: ../../mobile/operation/module_graph.php:372 -#, php-format -msgid "%s: %s" -msgstr "%s: %s" - -#: ../../mobile/operation/module_graph.php:405 -#, php-format -msgid "Options for %s : %s" -msgstr "Opciones para %s: %s" - -#: ../../mobile/operation/module_graph.php:412 -msgid "Show Alerts" -msgstr "Mostrar alertas" - -#: ../../mobile/operation/module_graph.php:420 -msgid "Show Events" -msgstr "Mostrar eventos" - -#: ../../mobile/operation/module_graph.php:449 -msgid "Time range (hours)" -msgstr "Rango de tiempo (horas)" - -#: ../../mobile/operation/module_graph.php:468 -msgid "Update graph" -msgstr "Actualizar grĆ”fico" - -#: ../../mobile/operation/module_graph.php:478 -msgid "Error get the graph" -msgstr "Error al obtener el grĆ”fico" - -#: ../../mobile/operation/agents.php:218 -#, php-format -msgid "Filter Agents by %s" -msgstr "Filtros de agentes por %s" - -#: ../../mobile/operation/agents.php:454 -msgid "No agents" -msgstr "Sin agentes" - -#: ../../mobile/include/user.class.php:171 -msgid "User cannot log in into this console, please contact administrator" -msgstr "" -"El usuario no puede identificarse en esta consola, pĆ³ngase en contacto con el " -"administrador" - -#: ../../mobile/include/user.class.php:264 -#: ../../mobile/include/user.class.php:279 -#: ../../mobile/include/user.class.php:286 -msgid "Double authentication failed" -msgstr "Fallo en la doble autentificaciĆ³n" - -#: ../../mobile/include/user.class.php:265 -msgid "Secret code not found" -msgstr "CĆ³digo secreto no encontrado" - -#: ../../mobile/include/user.class.php:265 -msgid "Please contact the administrator to reset your double authentication" -msgstr "" -"Por favor, contacta con el administrador para restablecer la doble " -"autentificaciĆ³n." - -#: ../../mobile/include/user.class.php:287 -msgid "There was an error checking the code" -msgstr "Error al comprobar el cĆ³digo" - -#: ../../mobile/include/user.class.php:328 -msgid "Login Failed" -msgstr "Error de identificaciĆ³n" - -#: ../../mobile/include/user.class.php:332 -msgid "User not found in database or incorrect password." -msgstr "Usuario no encontrado en la base de datos o contraseƱa incorrecta" - -#: ../../mobile/include/user.class.php:341 -msgid "Login out" -msgstr "Cerrar sesiĆ³n" - -#: ../../mobile/include/user.class.php:372 -msgid "user" -msgstr "Usuario" - -#: ../../mobile/include/user.class.php:379 -msgid "password" -msgstr "contraseƱa" - -#: ../../mobile/include/user.class.php:468 -#: ../../mobile/include/user.class.php:469 -msgid "Authenticator code" -msgstr "CĆ³digo de autentificaciĆ³n" - -#: ../../mobile/include/system.class.php:156 -msgid "" -"Access to this page is restricted to authorized users only, please contact " -"your system administrator if you should need help." -msgstr "" -"El acceso a esta pĆ”gina estĆ” restringido Ćŗnicamente a los usuarios " -"autorizados. PĆ³ngase en contacto con el administrador de sistemas si necesita " -"ayuda." - -#: ../../mobile/include/system.class.php:156 -#, php-format -msgid "" -"Please remember that any attempts to access this page will be recorded on the " -"%s System Database." -msgstr "" -"Recuerde que cualquier intento de acceso a esta pĆ”gina quedara grabado en la " -"base de datos del sistema de %s." - -#: ../../mobile/include/ui.class.php:120 -#, php-format -msgid "%s mobile" -msgstr "%s mĆ³vil" - -#: ../../mobile/include/ui.class.php:217 -#, php-format -msgid "%s : Mobile" -msgstr "%s : MĆ³vil" - -#: ../../mobile/include/ui.class.php:327 -#, php-format -msgid "%s %s - Build %s" -msgstr "%s %s - Desarrollo %s" - -#: ../../mobile/include/ui.class.php:773 -msgid "Not found header." -msgstr "Encabezado no encontrado" - -#: ../../mobile/include/ui.class.php:775 -msgid "Not found content." -msgstr "Contenido no encontrado." - -#: ../../mobile/include/ui.class.php:777 -msgid "Not found footer." -msgstr "Pie de pĆ”gina no encontrado" - -#: ../../mobile/include/ui.class.php:779 -msgid "Incorrect form." -msgstr "Forma incorrecta" - -#: ../../mobile/include/ui.class.php:781 -msgid "Incorrect grid." -msgstr "Matriz incorrecta" - -#: ../../mobile/include/ui.class.php:783 -msgid "Incorrect collapsible." -msgstr "Plegable incorrecto" - -#: ../../mobile/include/functions_web.php:83 -#, php-format -msgid "Pandora FMS %s - Build %s" -msgstr "Pandora FMS %s - RevisiĆ³n %s" - -#: ../../godmode/setup/setup.php:165 ../../godmode/setup/setup.php:283 -#: ../../godmode/setup/setup_integria.php:585 ../../godmode/menu.php:350 -msgid "Integria IMS" -msgstr "Integria IMS" - -#: ../../godmode/setup/setup.php:216 -msgid "Websocket engine" -msgstr "Motor websocket" - -#: ../../godmode/setup/setup.php:234 -msgid "GIS Map connection" -msgstr "ConexiĆ³n mapa GIS" - -#: ../../godmode/setup/setup.php:295 ../../godmode/menu.php:365 -msgid "Map conections GIS" -msgstr "ConexiĆ³n de mapa GIS" - -#: ../../godmode/setup/setup.php:305 -msgid "Pandora Websocket Engine" -msgstr "Motor Websocket Pandora" - -#: ../../godmode/setup/setup.php:349 -msgid "Correct update the setup options" -msgstr "ActualizaciĆ³n correcta de las opciones de configuraciĆ³n" - -#: ../../godmode/setup/snmp_wizard.php:155 -msgid "Unsucessful update the snmp translation" -msgstr "No se pudo actualizar la traducciĆ³n SNMP" - -#: ../../godmode/setup/snmp_wizard.php:162 -msgid "Unsucessful update the snmp translation." -msgstr "No se pudo actualizar la traducciĆ³n SNMP" - -#: ../../godmode/setup/snmp_wizard.php:210 -msgid "Unsucessful delete the snmp translation" -msgstr "No se pudo borrar la traducciĆ³n de SNMP" - -#: ../../godmode/setup/snmp_wizard.php:217 -msgid "Unsucessful delete the snmp translation." -msgstr "No se pudo borrar la traducciĆ³n de SNMP" - -#: ../../godmode/setup/snmp_wizard.php:278 -msgid "Unsucessful save the snmp translation" -msgstr "No se pudo guardar la traducciĆ³n de SNMP" - -#: ../../godmode/setup/snmp_wizard.php:287 -msgid "Unsucessful save the snmp translation." -msgstr "No se pudo guardar la traducciĆ³n de SNMP" - -#: ../../godmode/setup/os.list.php:56 -#, php-format -msgid "" -"This node is configured with centralized mode. All OS definitions are read " -"only. Go to %s to manage them." -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/setup/os.list.php:141 -msgid "There are no defined operating systems" -msgstr "No hay sistemas operativos definidos" - -#: ../../godmode/setup/os.list.php:147 -msgid "Create OS" -msgstr "Crear SO" - -#: ../../godmode/setup/setup_integria.php:296 -msgid "URL to Integria IMS setup" -msgstr "URL a la configuraciĆ³n de Integria IMS" - -#: ../../godmode/setup/setup_integria.php:296 -msgid "" -"Full URL to your Integria IMS setup (e.g., http://192.168.1.20/integria, " -"https://support.mycompany.com)." -msgstr "" -"URL completa a su configuraciĆ³n de Integria IMS (por ejemplo, " -"http://192.168.1.20/integria, https://support.mycompany.com)." - -#: ../../godmode/setup/setup_integria.php:302 -msgid "API Password" -msgstr "ContraseƱa de la API" - -#: ../../godmode/setup/setup_integria.php:309 -#: ../../godmode/setup/setup_ehorus.php:105 -msgid "Request timeout" -msgstr "Tiempo de espera excedido para la peticiĆ³n" - -#: ../../godmode/setup/setup_integria.php:315 -msgid "Sync inventory" -msgstr "Inventario Sync" - -#: ../../godmode/setup/setup_integria.php:348 -#: ../../godmode/setup/setup_integria.php:469 -msgid "Ticket body" -msgstr "Cuerpo del ticket" - -#: ../../godmode/setup/setup_integria.php:603 -msgid "Integria API settings" -msgstr "Ajustes de la API de Integria" - -#: ../../godmode/setup/setup_integria.php:614 -msgid "Alert default values" -msgstr "Valores por defecto de la API" - -#: ../../godmode/setup/setup_integria.php:624 -msgid "Event custom response default values" -msgstr "Valores por defecto de respuesta de evento personalizados" - -#: ../../godmode/setup/setup_integria.php:719 -#: ../../godmode/setup/setup_ehorus.php:254 -msgid "Connection timeout" -msgstr "La sesiĆ³n ha caducado." - -#: ../../godmode/setup/gis_step_2.php:37 -msgid "GIS Maps connections" -msgstr "Conexiones mapas GIS" - -#: ../../godmode/setup/gis_step_2.php:54 -msgid "Create new map connection" -msgstr "Crear nueva conexiĆ³n de mapas" - -#: ../../godmode/setup/gis_step_2.php:81 -msgid "Edit map connection" -msgstr "Editar la conexiĆ³n de mapas" - -#: ../../godmode/setup/gis_step_2.php:213 -msgid "Connection Name" -msgstr "Nombre de conexiĆ³n" - -#: ../../godmode/setup/gis_step_2.php:219 -msgid "Number of zoom levels" -msgstr "NĆŗmero de niveles de zoom" - -#: ../../godmode/setup/gis_step_2.php:223 -msgid "Default zoom level" -msgstr "Nivel de zoom por defecto" - -#: ../../godmode/setup/gis_step_2.php:226 -msgid "Basic configuration" -msgstr "ConfiguraciĆ³n bĆ”sica" - -#: ../../godmode/setup/gis_step_2.php:231 -msgid "Open Street Maps" -msgstr "OpenStreetMaps" - -#: ../../godmode/setup/gis_step_2.php:232 -msgid "Google Maps" -msgstr "Google Maps" - -#: ../../godmode/setup/gis_step_2.php:234 -msgid "WMS Server" -msgstr "Servidor WMS" - -#: ../../godmode/setup/gis_step_2.php:236 -msgid "Please select the connection type" -msgstr "Tipo de conexiĆ³n" - -#: ../../godmode/setup/gis_step_2.php:238 -msgid "Map connection type" -msgstr "Tipo de conexiĆ³n de mapa" - -#: ../../godmode/setup/gis_step_2.php:286 -msgid "Tile Server URL" -msgstr "URL del servidor tile" - -#: ../../godmode/setup/gis_step_2.php:299 -msgid "Google Physical" -msgstr "Google Physical" - -#: ../../godmode/setup/gis_step_2.php:300 -msgid "Google Hybrid" -msgstr "Google Hybrid" - -#: ../../godmode/setup/gis_step_2.php:301 -msgid "Google Satelite" -msgstr "Google SatĆ©lite" - -#: ../../godmode/setup/gis_step_2.php:303 -msgid "Google Map Type" -msgstr "Tipo de mapa de Google" - -#: ../../godmode/setup/gis_step_2.php:327 -msgid "Google Maps Key" -msgstr "Clave de Google Maps" - -#: ../../godmode/setup/gis_step_2.php:336 -msgid "Image URL" -msgstr "URL de la imagen" - -#: ../../godmode/setup/gis_step_2.php:343 -msgid "Corners of the area of the image" -msgstr "Esquinas del Ć”rea de la imagen" - -#: ../../godmode/setup/gis_step_2.php:371 -msgid "Image Size" -msgstr "TamaƱo de imagen" - -#: ../../godmode/setup/gis_step_2.php:388 -msgid "WMS Server URL" -msgstr "URL del servidor WMS" - -#: ../../godmode/setup/gis_step_2.php:395 -#: ../../godmode/gis_maps/configure_gis_map.php:552 -msgid "Layers" -msgstr "Capas" - -#: ../../godmode/setup/gis_step_2.php:430 -msgid "" -"Preview to select the center of the map and the default position of an agent " -"without gis data" -msgstr "" -"Vista previa para elegir el centro del mapa y la posiciĆ³n por defecto de un " -"agente sin informaciĆ³n GIS" - -#: ../../godmode/setup/gis_step_2.php:431 -msgid "Load preview map" -msgstr "Vista previa del mapa" - -#: ../../godmode/setup/gis_step_2.php:440 -msgid "Map Center" -msgstr "Centro del mapa" - -#: ../../godmode/setup/gis_step_2.php:441 -msgid "Default position for agents without GIS data" -msgstr "PosiciĆ³n por defecto para agentes sin informaciĆ³n GIS" - -#: ../../godmode/setup/gis_step_2.php:443 -msgid "Change in the map" -msgstr "Cambiar en el mapa" - -#: ../../godmode/setup/gis_step_2.php:564 ../../godmode/setup/gis_step_2.php:659 -msgid "Center" -msgstr "Centro" - -#: ../../godmode/setup/gis_step_2.php:624 -msgid "Refresh preview map" -msgstr "Actualizar vista previa" - -#: ../../godmode/setup/setup_visuals.php:79 -msgid "Paginated module view" -msgstr "Vista del mĆ³dulo paginada" - -#: ../../godmode/setup/setup_visuals.php:106 -msgid "Click to display lateral menus" -msgstr "Haz clic para mostrar el menĆŗ lateral" - -#: ../../godmode/setup/setup_visuals.php:120 -msgid "Space between items in Service maps" -msgstr "Espacio entre nodos para el mapa de servicios" - -#: ../../godmode/setup/setup_visuals.php:151 -msgid "Colors" -msgstr "Colores" - -#: ../../godmode/setup/setup_visuals.php:152 -msgid "Faces" -msgstr "Caras" - -#: ../../godmode/setup/setup_visuals.php:153 -msgid "Colors and text" -msgstr "Colores y texto" - -#: ../../godmode/setup/setup_visuals.php:451 -msgid "Custom mobile console icon" -msgstr "Icono de la consola mĆ³vil personalizada" - -#: ../../godmode/setup/setup_visuals.php:519 -msgid "Disable logo in graphs" -msgstr "Deshabilitar el logo en los grĆ”ficos" - -#: ../../godmode/setup/setup_visuals.php:535 -msgid "Disable helps" -msgstr "Deshabilitar ayudas" - -#: ../../godmode/setup/setup_visuals.php:555 -msgid "Automatically hide submenu" -msgstr "Ocultar submenĆŗ automĆ”ticamente" - -#: ../../godmode/setup/setup_visuals.php:604 -msgid "Agent icon group" -msgstr "Grupo de iconos de agente" - -#: ../../godmode/setup/setup_visuals.php:622 -msgid "Graphs font size" -msgstr "TamaƱo de fuente de las grĆ”ficas" - -#: ../../godmode/setup/setup_visuals.php:654 -#: ../../godmode/setup/setup_visuals.php:659 -msgid "Small:" -msgstr "PequeƱo:" - -#: ../../godmode/setup/setup_visuals.php:655 -#: ../../godmode/setup/setup_visuals.php:660 -msgid "Normal:" -msgstr "Normal:" - -#: ../../godmode/setup/setup_visuals.php:678 -msgid "Show unit along with value in reports" -msgstr "Mostrar la unidad junto con el valor en los informes" - -#: ../../godmode/setup/setup_visuals.php:824 -msgid "Data precision" -msgstr "PrecisiĆ³n de datos" - -#: ../../godmode/setup/setup_visuals.php:842 -msgid "Data precision in graphs" -msgstr "PrecisiĆ³n de datos en los grĆ”ficos" - -#: ../../godmode/setup/setup_visuals.php:918 -msgid "Type of interface charts" -msgstr "Tipo de las grĆ”ficos de interfaces" - -#: ../../godmode/setup/setup_visuals.php:946 -msgid "Graph TIP view:" -msgstr "Vista TIP de la grĆ”fica:" - -#: ../../godmode/setup/setup_visuals.php:1059 -msgid "Classic view" -msgstr "Vista clĆ”sica" - -#: ../../godmode/setup/setup_visuals.php:1060 -msgid "View of favorites" -msgstr "Vista de favoritos" - -#: ../../godmode/setup/setup_visuals.php:1061 -msgid "Type of view of visual consoles" -msgstr "Tipo de vista de las consolas visuales" - -#: ../../godmode/setup/setup_visuals.php:1065 -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:1083 -msgid "Number of favorite services to show in the menu" -msgstr "NĆŗmero de servicios favoritos a mostrar en el menĆŗ" - -#: ../../godmode/setup/setup_visuals.php:1150 -msgid "" -"The dir of custom logos is in your www Console in 'images/custom_logo'. You " -"can upload more files (ONLY JPEG AND PNG) in upload tool in console." -msgstr "" -"El dir de los logos personalizados estĆ” en su www Consola en 'images/" -"custom_logo'. Puede aƱadir mĆ”s archivos (SOLO JPEG AND PNG) en la herramienta " -"de actualizaciĆ³n de la consola." - -#: ../../godmode/setup/setup_visuals.php:1287 -msgid "Custom values post process" -msgstr "Valores personalizados para postprocesado" - -#: ../../godmode/setup/setup_visuals.php:1308 -#: ../../godmode/setup/setup_visuals.php:1376 -msgid "Delete custom values" -msgstr "Eliminar valores personalizados" - -#: ../../godmode/setup/setup_visuals.php:1340 -msgid "Interval values" -msgstr "Valores del intervalo" - -#: ../../godmode/setup/setup_visuals.php:1368 -msgid "Module units" -msgstr "Unidades de mĆ³dulo" - -#: ../../godmode/setup/setup_visuals.php:1484 -msgid "Behaviour configuration" -msgstr "ConfiguraciĆ³n del comportamiento" - -#: ../../godmode/setup/setup_visuals.php:1489 -msgid "GIS configuration" -msgstr "ConfiguraciĆ³n GIS" - -#: ../../godmode/setup/setup_visuals.php:1494 -msgid "Style configuration" -msgstr "ConfiguraciĆ³n de estilo" - -#: ../../godmode/setup/setup_visuals.php:1499 -msgid "Charts configuration" -msgstr "ConfiguraciĆ³n de grĆ”ficos" - -#: ../../godmode/setup/setup_visuals.php:1504 -msgid "Font and Text configuration" -msgstr "ConfiguraciĆ³n de fuente y texto" - -#: ../../godmode/setup/setup_visuals.php:1509 -msgid "Visual consoles configuration" -msgstr "ConfiguraciĆ³n de las consolas visuales" - -#: ../../godmode/setup/setup_visuals.php:1514 -msgid "Reports configuration " -msgstr "ConfiguraciĆ³n de informes " - -#: ../../godmode/setup/setup_visuals.php:1519 -msgid "Services configuration" -msgstr "ConfiguraciĆ³n de servicios" - -#: ../../godmode/setup/setup_visuals.php:1524 -msgid "Other configuration" -msgstr "Otra configuraciĆ³n" - -#: ../../godmode/setup/setup_visuals.php:1801 -msgid "Mobile console logo preview" -msgstr "Vista previa del logo de la consola mĆ³vil" - -#: ../../godmode/setup/setup_visuals.php:1836 -msgid "Gis icons preview" -msgstr "Vista previa de los iconos GIS" - -#: ../../godmode/setup/setup_visuals.php:1902 -msgid "Status set preview" -msgstr "Vista previa del estado" - -#: ../../godmode/setup/os.php:190 -msgid "List OS" -msgstr "Lista de sistemas operativos" - -#: ../../godmode/setup/os.php:202 -msgid "Builder OS" -msgstr "Creador de SO" - -#: ../../godmode/setup/os.php:211 ../../godmode/setup/os.php:229 -#: ../../godmode/menu.php:369 -msgid "Edit OS" -msgstr "Editar SO" - -#: ../../godmode/setup/os.php:211 -msgid "List of OS" -msgstr "Lista de sistemas operativos" - -#: ../../godmode/setup/os.php:242 -msgid "Fail creating OS" -msgstr "Error al crear SO" - -#: ../../godmode/setup/os.php:250 -msgid "Error updating OS" -msgstr "Error al actualizar SO" - -#: ../../godmode/setup/os.php:254 -msgid "There are agents with this OS." -msgstr "Existen agentes con este SO" - -#: ../../godmode/setup/os.php:258 -msgid "Success deleting" -msgstr "Borrado correctamente" - -#: ../../godmode/setup/os.php:262 -msgid "Error deleting" -msgstr "Error al borrar" - -#: ../../godmode/setup/news.php:29 -msgid "Site news management" -msgstr "Gestionar noticias del sitio" - -#: ../../godmode/setup/news.php:152 ../../godmode/setup/links.php:92 -msgid "Name error" -msgstr "Error de nombre" - -#: ../../godmode/setup/news.php:191 -msgid "Modal screen" -msgstr "Pantalla modal" - -#: ../../godmode/setup/news.php:194 -msgid "Expire" -msgstr "Caduca" - -#: ../../godmode/setup/news.php:197 ../../godmode/setup/news.php:250 -msgid "Expiration" -msgstr "Vencimiento" - -#: ../../godmode/setup/news.php:241 -msgid "There are no defined news" -msgstr "No hay noticias definidas" - -#: ../../godmode/setup/news.php:268 -msgid "Modal" -msgstr "Modal" - -#: ../../godmode/setup/news.php:270 -msgid "Board" -msgstr "Tablero" - -#: ../../godmode/setup/news.php:281 -msgid "Expired" -msgstr "Caducado" - -#: ../../godmode/setup/setup_auth.php:207 -msgid "Enable secondary LDAP" -msgstr "Habilitar LDAP secundario" - -#: ../../godmode/setup/setup_auth.php:278 -msgid "Secondary Base DN" -msgstr "DN base secundaria" - -#: ../../godmode/setup/setup_auth.php:291 -msgid "Secondary Login attribute" -msgstr "Atributo de inicio de sesiĆ³n secundario" - -#: ../../godmode/setup/setup_auth.php:368 -msgid "Force 2FA for all users is enabled" -msgstr "Forzar 2FA para todos los usuarios estĆ” habilitado" - -#: ../../godmode/setup/setup_auth.php:389 -msgid "Session timeout (mins)" -msgstr "Fin de la sesiĆ³n (minutos)" - -#: ../../godmode/setup/setup_auth.php:432 -#, php-format -msgid "Local %s" -msgstr "%s local" - -#: ../../godmode/setup/setup_auth.php:433 -msgid "ldap" -msgstr "LDAP" - -#: ../../godmode/setup/license.php:51 -msgid "License management" -msgstr "GestiĆ³n de licencias" - -#: ../../godmode/setup/license.php:99 -msgid "Error while connecting to licence server." -msgstr "Error al conectar con el servidor de licencias." - -#: ../../godmode/setup/license.php:100 -msgid "Invalid response while validating license." -msgstr "Respuesta no vĆ”lida al validar la licencia." - -#: ../../godmode/setup/license.php:121 -msgid "Licence" -msgstr "Licencia" - -#: ../../godmode/setup/license.php:136 ../../godmode/setup/license.php:139 -#: ../../godmode/setup/license.php:142 ../../godmode/setup/license.php:145 -msgid "agents" -msgstr "agentes" - -#: ../../godmode/setup/license.php:150 -msgid "NMS" -msgstr "NMS" - -#: ../../godmode/setup/license.php:167 ../../godmode/setup/license.php:182 -msgid "Request new license" -msgstr "Solicitar nueva licencia" - -#: ../../godmode/setup/license.php:186 -#, php-format -msgid "To get your %s Enterprise License:" -msgstr "Para conseguir la %s licencia Enterprise:" - -#: ../../godmode/setup/license.php:189 -#, php-format -msgid "Go to %s" -msgstr "Ir a %s" - -#: ../../godmode/setup/license.php:192 -msgid "Enter the auth key and the following request key:" -msgstr "" -"Introduce la clave de autentificaciĆ³n y la siguiente clave de " -"peticiĆ³n:" - -#: ../../godmode/setup/license.php:198 -msgid "Enter your name (or a company name) and a contact email address." -msgstr "Introduce tu nombre (o el de tu empresa) y un email de contacto." - -#: ../../godmode/setup/license.php:201 -msgid "Click on Generate." -msgstr "Haz clic en Generar" - -#: ../../godmode/setup/license.php:204 -msgid "" -"Click here, enter the " -"generated license key and click on Validate." -msgstr "" -"Haz clic aquĆ­, " -"introduce la clave de licencia generada y pulsa en Validar." - -#: ../../godmode/setup/setup_general.php:145 -msgid "Enforce https Information" -msgstr "Aplicar la informaciĆ³n http" - -#: ../../godmode/setup/setup_general.php:146 -msgid "If SSL is not properly configured you will lose access to " -msgstr "Si SSL no estĆ” configurado adecuadamente, perderĆ” acceso a " - -#: ../../godmode/setup/setup_general.php:146 -#: ../../godmode/setup/setup_general.php:340 -msgid " Console" -msgstr " Consola" - -#: ../../godmode/setup/setup_general.php:160 -msgid "Use cert of SSL" -msgstr "Usar el certificado SSL" - -#: ../../godmode/setup/setup_general.php:173 -msgid "Path of SSL Cert." -msgstr "Ruta del certificado SSL" - -#: ../../godmode/setup/setup_general.php:338 -msgid "Enforce public URL usage information" -msgstr "Aplicar la informaciĆ³n de uso de la URL pĆŗblica" - -#: ../../godmode/setup/setup_general.php:340 -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:378 -msgid "Change remote config encoding" -msgstr "Cambiar codificaciĆ³n de configuraciĆ³n remota" - -#: ../../godmode/setup/setup_general.php:407 -msgid "Full mode" -msgstr "Modo total" - -#: ../../godmode/setup/setup_general.php:409 -msgid "Expert" -msgstr "Experta/o" - -#: ../../godmode/setup/setup_general.php:433 -msgid "Limit for bulk operations" -msgstr "LĆ­mite de operaciones en bloque" - -#: ../../godmode/setup/setup_general.php:443 -msgid "Include agents manually disabled" -msgstr "Incluir agentes deshabilitados manualmente" - -#: ../../godmode/setup/setup_general.php:451 -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 -msgid "Log location" -msgstr "LocalizaciĆ³n de logs" - -#: ../../godmode/setup/setup_general.php:489 -msgid "Module custom ID readonly" -msgstr "Solo lectura del ID personalizado de mĆ³dulo" - -#: ../../godmode/setup/setup_general.php:490 -msgid "Useful for integrations" -msgstr "ƚtil para integraciones" - -#: ../../godmode/setup/setup_general.php:503 -msgid "General options" -msgstr "Opciones generales" - -#: ../../godmode/setup/setup_general.php:522 -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 " -"587.\n" -"\n" -" If you have manual settings in your pandora_server.conf, please note these " -"settings will ignore this console setup." -msgstr "" -"Algunos de los proveedores como Gmail u Office365 necesitan ajustar/habilitar " -"las conexiones externas manualmente utilizando SNMP y necesita usar STARTTLS " -"en el puerto 587." - -#: ../../godmode/setup/setup_general.php:528 -msgid "From address" -msgstr "De" - -#: ../../godmode/setup/setup_general.php:548 -msgid "SMTP Server" -msgstr "Servidor SMTP" - -#: ../../godmode/setup/setup_general.php:558 -msgid "SMTP Port" -msgstr "Puerto SMTP" - -#: ../../godmode/setup/setup_general.php:608 -msgid "Email test" -msgstr "Prueba de email" - -#: ../../godmode/setup/setup_general.php:670 -msgid "Check mail configuration" -msgstr "Revisar configuraciĆ³n de correo" - -#: ../../godmode/setup/gis.php:68 -msgid "Map connection name" -msgstr "Nombre de la conexiĆ³n" - -#: ../../godmode/setup/gis.php:86 -msgid "Do you wan delete this connection?" -msgstr "ĀæDeseas borrar esta conexiĆ³n?" - -#: ../../godmode/setup/performance.php:181 -msgid "Pandora_db running in active database." -msgstr "Pandora_db en ejecuciĆ³n en la base de datos activa." - -#: ../../godmode/setup/performance.php:182 -#: ../../godmode/setup/performance.php:238 -msgid "Executed:" -msgstr "Ejectuado:" - -#: ../../godmode/setup/performance.php:237 -msgid "Pandora_db running in historical database." -msgstr "Pandora_db en ejecuciĆ³n en la base de datos histĆ³rica." - -#: ../../godmode/setup/performance.php:245 -msgid "not executed" -msgstr "No ejecutado" - -#: ../../godmode/setup/performance.php:343 -msgid "Max. days before delete autodisabled agents" -msgstr "NĀŗ mĆ”ximo de dĆ­as antes de la eliminaciĆ³n de los agentes deshabilitados" - -#: ../../godmode/setup/performance.php:510 -msgid "Item limit for realtime reports" -msgstr "LĆ­mite del elemento para informes en tiempo real" - -#: ../../godmode/setup/performance.php:533 -msgid "Last day" -msgstr "ƚltimo dĆ­a" - -#: ../../godmode/setup/performance.php:535 -msgid "10 days" -msgstr "10 dĆ­as" - -#: ../../godmode/setup/performance.php:537 -msgid "2 weeks" -msgstr "2 semanas" - -#: ../../godmode/setup/performance.php:584 -msgid "Big Operation Step to purge old data" -msgstr "Gran operaciĆ³n para la purga de datos antiguos" - -#: ../../godmode/setup/performance.php:634 -msgid "SNMP walk binary" -msgstr "Binario walk SNMP" - -#: ../../godmode/setup/performance.php:645 -msgid "" -"SNMP bulk walk is not able to request V1 SNMP, this option will be used " -"instead (by default snmpwalk, slower)." -msgstr "" -"El walk en bloque SNMP no puede solicitar V1 SNMP, esta opciĆ³n se utilizarĆ” en " -"su lugar (por defecto snmpwalk, mĆ”s lento)." - -#: ../../godmode/setup/performance.php:648 -msgid "SNMP walk binary (fallback)" -msgstr "Binario walk SNMP (alternativa)" - -#: ../../godmode/setup/performance.php:691 -msgid "Database maintenance options" -msgstr "Opciones de mantenimiento de la base de datos" - -#: ../../godmode/setup/performance.php:697 -msgid "Historical database maintenance options" -msgstr "Opciones de mantenimiento de la base de datos histĆ³rica" - -#: ../../godmode/setup/setup_ehorus.php:93 -msgid "API Hostname" -msgstr "Nombre del propietario de la API" - -#: ../../godmode/setup/setup_ehorus.php:99 -msgid "API Port" -msgstr "Puerto de la API" - -#: ../../godmode/setup/setup_ehorus.php:139 -msgid "Remote Management System" -msgstr "Sistema de gestiĆ³n remota" - -#: ../../godmode/setup/setup_ehorus.php:147 -msgid "Custom field eHorusID created" -msgstr "Campo personalizado eHorusID creado" - -#: ../../godmode/setup/setup_ehorus.php:147 -msgid "Error creating custom field" -msgstr "Error al crear campo personalizado" - -#: ../../godmode/setup/setup_ehorus.php:151 -msgid "eHorus has his own agent identifiers" -msgstr "eHorus tiene sus propios identificadores de agente" - -#: ../../godmode/setup/setup_ehorus.php:152 -msgid "To store them, it will be necessary to use an agent custom field" -msgstr "Para guardarlo, serĆ” necesario usar un campo personalizado del agente." - -#: ../../godmode/setup/setup_ehorus.php:153 -msgid "Possibly the eHorus id will have to be filled in by hand for every agent" -msgstr "" -"Es posible que el ID de eHorus tenga que ser introducido a mano por cada agente" - -#: ../../godmode/setup/setup_ehorus.php:158 -msgid "The custom field does not exists already" -msgstr "El campo personalizado no existe aĆŗn" - -#: ../../godmode/setup/setup_ehorus.php:172 -msgid "eHorus API" -msgstr "API eHorus" - -#: ../../godmode/setup/setup_websocket_engine.php:38 -msgid "WebSocket settings" -msgstr "Ajustes de WebSocket" - -#: ../../godmode/setup/setup_websocket_engine.php:47 -msgid "Bind address" -msgstr "DirecciĆ³n de enlace" - -#: ../../godmode/setup/setup_websocket_engine.php:57 -msgid "Bind port" -msgstr "Puerto de enlace" - -#: ../../godmode/setup/links.php:28 -msgid "Link management" -msgstr "Gestionar enlaces" - -#: ../../godmode/servers/plugin.php:73 -msgid "Network Components" -msgstr "Componentes de red" - -#: ../../godmode/servers/plugin.php:290 ../../godmode/servers/plugin.php:617 -#: ../../godmode/servers/plugin_registration.php:59 -msgid "To manage plugin you must activate centralized management" -msgstr "Active la gestiĆ³n centralizada para gestionar el plugin" - -#: ../../godmode/servers/plugin.php:303 -msgid "Plugin update" -msgstr "ActualizaciĆ³n de plugin" - -#: ../../godmode/servers/plugin.php:314 ../../godmode/servers/plugin.php:636 -msgid "" -"This console is not manager of this environment,\n" -" \t\tplease manage this feature from centralized manager console " -"(Metaconsole)." -msgstr "" -"Esta consola no administra este entorno,\n" -" \t\tadministre esta funcionalidad desde el administrador centralizado " -"de la consola (Metaconsola)." - -#: ../../godmode/servers/plugin.php:345 -msgid "Plugin type" -msgstr "Tipo de plugin" - -#: ../../godmode/servers/plugin.php:346 ../../godmode/servers/plugin.php:845 -#: ../../godmode/servers/modificar_server.php:40 -msgid "Standard" -msgstr "EstĆ”ndar" - -#: ../../godmode/servers/plugin.php:347 ../../godmode/servers/plugin.php:847 -msgid "Nagios" -msgstr "Nagios" - -#: ../../godmode/servers/plugin.php:352 -msgid "Max. timeout" -msgstr "MĆ”x. tiempo de espera" - -#: ../../godmode/servers/plugin.php:352 -msgid "" -"This value only will be applied if is minor than the server general " -"configuration plugin timeout" -msgstr "" -"Este valor solo se aplicarĆ” si es menor que el tiempo de espera del plugin de " -"la configuraciĆ³n general del servidor." - -#: ../../godmode/servers/plugin.php:352 -msgid "If you set a 0 seconds timeout, the server plugin timeout will be used" -msgstr "" -"Si configuras en 0 segundos el tiempo de espera, se utilizarĆ” el tiempo de " -"espera del plugin del servidor." - -#: ../../godmode/servers/plugin.php:401 -msgid "Plugin command" -msgstr "Comando del plugin" - -#: ../../godmode/servers/plugin.php:401 -msgid "" -"Specify interpreter and plugin path. The server needs permissions to run it." -msgstr "" -"Especifique el intĆ©rprete y la ruta del plugin. El servidor necesita permisos " -"para ejecutarlo." - -#: ../../godmode/servers/plugin.php:413 -msgid "Plug-in parameters" -msgstr "ParĆ”metros del plugin" - -#: ../../godmode/servers/plugin.php:422 ../../godmode/alerts/alert_view.php:527 -#: ../../godmode/alerts/alert_view.php:654 -#: ../../godmode/alerts/configure_alert_action.php:310 -msgid "Command preview" -msgstr "Vista previa del comando" - -#: ../../godmode/servers/plugin.php:581 ../../godmode/servers/plugin.php:586 -msgid "Parameters macros" -msgstr "Macros de los parĆ”metros" - -#: ../../godmode/servers/plugin.php:623 -#, php-format -msgid "Plug-ins registered on %s" -msgstr "Plugins registrados en %s" - -#: ../../godmode/servers/plugin.php:645 -msgid "You need to create your own plugins with Windows compatibility" -msgstr "Necesitas crear tus propios plugins compatibles con Windows." - -#: ../../godmode/servers/plugin.php:711 -msgid "Problem updating plugin" -msgstr "Problema al actualizar el plugin" - -#: ../../godmode/servers/plugin.php:713 -msgid "Plugin updated successfully" -msgstr "Plugin actualizado correctamente" - -#: ../../godmode/servers/plugin.php:771 -msgid "Problem creating plugin" -msgstr "Error al crear plugin" - -#: ../../godmode/servers/plugin.php:773 -msgid "Plugin created successfully" -msgstr "Plugin creado correctamente" - -#: ../../godmode/servers/plugin.php:785 -msgid "Problem deleting plugin" -msgstr "Error al borrar plugin" - -#: ../../godmode/servers/plugin.php:787 ../../godmode/servers/plugin.php:799 -msgid "Plugin deleted successfully" -msgstr "Plugin borrado correctamente" - -#: ../../godmode/servers/plugin.php:884 -msgid "All the modules that are using this plugin will be deleted" -msgstr "Todos los mĆ³dulos que estĆ©n utilizando este plugin se borrarĆ”n." - -#: ../../godmode/servers/plugin.php:901 -msgid "There are no plugins in the system" -msgstr "No hay plugins en el sistema" - -#: ../../godmode/servers/plugin.php:915 -#, php-format -msgid "List of modules and components created by \"%s\" " -msgstr "Lista de los mĆ³dulos y componentes creados por '%s' " - -#: ../../godmode/servers/plugin.php:1021 ../../godmode/servers/plugin.php:1037 -msgid "Some modules or components are using the plugin" -msgstr "Algunos mĆ³dulos o componentes estĆ”n usando el plugin." - -#: ../../godmode/servers/plugin.php:1022 -msgid "" -"The modules or components should be updated manually or using the bulk " -"operations for plugins after this change" -msgstr "" -"Los mĆ³dulos o componentes deberĆ­an ser actualizados manualmente o usando las " -"operaciones masivas para los plugins despuĆ©s de este cambio." - -#: ../../godmode/servers/plugin.php:1024 -msgid "Are you sure you want to perform this action?" -msgstr "ĀæEstĆ”s seguro de que quieres realizar esta acciĆ³n?" - -#: ../../godmode/servers/plugin.php:1038 -msgid "Are you sure you want to unlock this item?" -msgstr "ĀæEstĆ”s seguro de que quieres desbloquear este elemento?" - -#: ../../godmode/servers/plugin.php:1058 -msgid "" -"The plugin command cannot be updated because some modules or components are " -"using the plugin." -msgstr "" -"No se puede actualizar el comando. Este plugin estĆ” siendo utilizado por " -"mĆ³dulos o componentes." - -#: ../../godmode/servers/plugin.php:1064 -msgid "" -"The plugin macros cannot be updated because some modules or components are " -"using the plugin" -msgstr "" -"Las macros del plugin no pueden ser actualizadas porque algunos mĆ³dulos o " -"componentes estĆ”n usando el plugin." - -#: ../../godmode/servers/modificar_server.php:34 -msgid "Update Server" -msgstr "Actualizar el servidor" - -#: ../../godmode/servers/modificar_server.php:77 -msgid "Exec Server" -msgstr "Ejecutar el servidor" - -#: ../../godmode/servers/modificar_server.php:85 -msgid "Leave blank to use SSH default port (22)" -msgstr "Dejar en blanco para usar el puerto SSH por defecto (22)" - -#: ../../godmode/servers/modificar_server.php:90 -msgid "Check Exec Server" -msgstr "Comprobar ejecuciĆ³n del servidor" - -#: ../../godmode/servers/modificar_server.php:106 -msgid "Credential boxes" -msgstr "Recuadro de credenciales" - -#: ../../godmode/servers/modificar_server.php:130 -msgid "Standard editor" -msgstr "Editor estĆ”ndar" - -#: ../../godmode/servers/modificar_server.php:134 -msgid "Advanced editor" -msgstr "Editor avanzado" - -#: ../../godmode/servers/modificar_server.php:141 -msgid "Remote Configuration" -msgstr "ConfiguraciĆ³n remota" - -#: ../../godmode/servers/modificar_server.php:150 -#, php-format -msgid "%s servers" -msgstr "Servidores de %s" - -#: ../../godmode/servers/modificar_server.php:159 -#: ../../godmode/servers/modificar_server.php:170 -msgid "Successfully action" -msgstr "AcciĆ³n procesada satisfactoriamente" - -#: ../../godmode/servers/modificar_server.php:201 -msgid "Server updated successfully" -msgstr "Servidor actualizado correctamente" - -#: ../../godmode/servers/modificar_server.php:203 -msgid "There was a problem updating the server" -msgstr "Hubo un problema al actualizar el servidor" - -#: ../../godmode/servers/modificar_server.php:222 -#: ../../godmode/agentes/configurar_agente.php:868 -msgid "Conf file deleted successfully" -msgstr "Archivo de configuraciĆ³n borrado correctamente" - -#: ../../godmode/servers/modificar_server.php:223 -#: ../../godmode/agentes/configurar_agente.php:869 -msgid "Could not delete conf file" -msgstr "No se puede borrar el archivo de configuraciĆ³n" - -#: ../../godmode/servers/plugin_registration.php:65 -msgid "PLUGIN REGISTRATION" -msgstr "REGISTRO DE PLUGINS" - -#: ../../godmode/servers/plugin_registration.php:76 -#, php-format -msgid "" -"This console is not manager of this environment, please manage this feature " -"from feature from %s." -msgstr "" -"La consola no administra este entorno, gestione esta funcionalidad desde la " -"funcionalidad desde %s." - -#: ../../godmode/servers/plugin_registration.php:95 -msgid "Plugin Registration" -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" - -#: ../../godmode/servers/plugin_registration.php:105 -msgid "Public Resource Library" -msgstr "Biblioteca de Recursos PĆŗblicos" - -#: ../../godmode/servers/plugin_registration.php:133 -msgid "Failed to create temporary directory" -msgstr "Error al crear un directorio temporal" - -#: ../../godmode/servers/plugin_registration.php:152 -msgid "Cannot load INI file" -msgstr "No se puede abrir el archivo .INI" - -#: ../../godmode/servers/plugin_registration.php:177 -msgid "Plugin exec not found. Aborting!" -msgstr "Plugin de ejecuciĆ³n no encontrado. Ā”Deteniendo el proceso!" - -#: ../../godmode/servers/plugin_registration.php:188 -msgid "Plugin already registered. Aborting!" -msgstr "El plugin ya estĆ” registrado. Ā”Deteniendo el proceso!" - -#: ../../godmode/servers/plugin_registration.php:355 -msgid "Plug-in Remote Registered unsuccessfull" -msgstr "Error al registrar el plugin remoto" - -#: ../../godmode/servers/plugin_registration.php:358 -msgid "Please check the syntax of file \"plugin_definition.ini\"" -msgstr "Por favor, comprueba la sintaxis del archivo \"plugin_definition.ini\"." - -#: ../../godmode/servers/plugin_registration.php:498 -msgid "Module plugin registered" -msgstr "Plugin de mĆ³dulo registrado" - -#: ../../godmode/servers/plugin_registration.php:503 -msgid "Registered successfully" -msgstr "Registrado correctamente" - -#: ../../godmode/servers/plugin_registration.php:516 -msgid "Unable to uncompress uploaded file" -msgstr "No se puede descomprimir el archivo cargado" - -#: ../../godmode/servers/plugin_registration.php:534 -#, php-format -msgid "Cannot move uploaded file to %s." -msgstr "No se puede mover el archivo cargado a %s." - -#: ../../godmode/servers/servers.build_table.php:118 -msgid "Server has crashed." -msgstr "El servidor se ha caĆ­do." - -#: ../../godmode/servers/servers.build_table.php:126 -msgid "Server is stopped." -msgstr "El servidor se ha parado." - -#: ../../godmode/servers/servers.build_table.php:138 -msgid "Exec server enabled" -msgstr "Servidor de ejecuciĆ³n habilitado" - -#: ../../godmode/servers/servers.build_table.php:196 -msgid "Manage Discovery tasks" -msgstr "Gestionar las tareas de Discovery" - -#: ../../godmode/servers/servers.build_table.php:211 -msgid "Reset module status and fired alert counts" -msgstr "Reiniciar el estado de los mĆ³dulos y el conteo de las alertas disparadas" - -#: ../../godmode/servers/servers.build_table.php:222 -msgid "Claim back SNMP modules" -msgstr "Recuperar mĆ³dulos SNMP" - -#: ../../godmode/servers/discovery.php:182 -msgid "You must create a task first" -msgstr "Primero debe crear una tarea" - -#: ../../godmode/um_client/index.php:96 -#, php-format -msgid "" -"You cannot use update manager %s. You are exceding monitoring limits by %s " -"elements. Please update your license or disable enterprise section by moving " -"enterprise directory to another location and try again." -msgstr "" -"No puede utilizar el administrador de actualizaciones %s. EstĆ”s exiendo los " -"lĆ­mites de supervisiĆ³n al %s elementos. Actualice su licencia." - -#: ../../godmode/um_client/index.php:107 -#, php-format -msgid "" -"You cannot use update manager %s. This license has expired %d days ago. Please " -"update your license or disable enterprise section by moving enterprise " -"directory to another location and try again." -msgstr "" -"No puede utilizar el administrador de actualizaciones %s. Esta licencia ha " -"caducado hace %d dĆ­as. Actualice su licencia." - -#: ../../godmode/um_client/index.php:120 -#, php-format -msgid "" -"You cannot use update manager %s. This license is a trial license to test all " -"%s features. Please update your license to unlock all %s features." -msgstr "" -"No puede utilizar el administrador de actualizaciones %s. Esta licencia es una " -"licencia de prueba para probar todas las caracterĆ­sticas %s. Actualice su " -"licencia para desbloquear todas %s funciones." - -#: ../../godmode/um_client/index.php:216 -#, php-format -msgid "Master server version %s does not match console version %s." -msgstr "" -"La versiĆ³n maestra del servidor %s no coincide con la versiĆ³n de consola %s." - -#: ../../godmode/um_client/index.php:229 -#, php-format -msgid "" -"'%s' recommended value is %s or greater. Please, change it on your PHP " -"configuration file (php.ini) or contact with administrator" -msgstr "" -"El valor recomendado \"%s\" es %s o mayor. Por favor, cĆ”mbielo en su archivo " -"de configuraciĆ³n PHP (php.ini) o pĆ³ngase en contacto con el administrador" - -#: ../../godmode/um_client/index.php:318 -msgid "Update online requires registration." -msgstr "Para actualizar online debe estar registrado." - -#: ../../godmode/um_client/index.php:323 -msgid "" -"Applying offline patches may make your console unusable, we recommend to " -"completely backup your files before applying any patch." -msgstr "" -"La aplicaciĆ³n de parches sin conexiĆ³n puede hacer que su consola sea " -"inutilizable, le recomendamos que haga una copia de seguridad completa de sus " -"archivos antes de aplicar cualquier parche." - -#: ../../godmode/update_manager/update_manager.php:64 -#: ../../godmode/update_manager/update_manager.php:83 -msgid "Journal" -msgstr "Diario" - -#: ../../godmode/update_manager/update_manager.php:71 -msgid "Offline update" -msgstr "ActualizaciĆ³n sin conexiĆ³n" - -#: ../../godmode/update_manager/update_manager.php:78 -msgid "Online update" -msgstr "ActualizaciĆ³n en lĆ­nea" - -#: ../../godmode/update_manager/update_manager.php:91 -msgid "Offline" -msgstr "Sin conexiĆ³n" - -#: ../../godmode/update_manager/update_manager.php:96 -msgid "Online" -msgstr "En lĆ­nea" - -#: ../../godmode/update_manager/update_manager.php:159 -msgid "Please register on metaconsole first." -msgstr "Por favor, inicie sesiĆ³n en la Metaconsola primero." - -#: ../../godmode/update_manager/update_manager.setup.php:271 -msgid "Warp Update URL" -msgstr "URL de Warp Update" - -#: ../../godmode/update_manager/update_manager.setup.php:275 -msgid "URL update manager" -msgstr "URL Administrador de actualizaciones" - -#: ../../godmode/update_manager/update_manager.setup.php:282 -msgid "Use secured Warp Update" -msgstr "Usar Warp update seguro" - -#: ../../godmode/update_manager/update_manager.setup.php:291 -#: ../../godmode/update_manager/update_manager.setup.php:295 -msgid "Proxy server" -msgstr "Servidor proxy" - -#: ../../godmode/update_manager/update_manager.setup.php:301 -#: ../../godmode/update_manager/update_manager.setup.php:305 -msgid "Proxy port" -msgstr "Puerto del Proxy" - -#: ../../godmode/update_manager/update_manager.setup.php:311 -#: ../../godmode/update_manager/update_manager.setup.php:315 -msgid "Proxy user" -msgstr "Usuario del Proxy" - -#: ../../godmode/update_manager/update_manager.setup.php:321 -#: ../../godmode/update_manager/update_manager.setup.php:325 -msgid "Proxy password" -msgstr "ContraseƱa del Proxy" - -#: ../../godmode/update_manager/update_manager.setup.php:331 -msgid "Allow no-consecutive patches" -msgstr "Permitir parches no consecutivos" - -#: ../../godmode/update_manager/update_manager.setup.php:340 -msgid "Limit to LTS updates" -msgstr "LĆ­mite a las actualizaciones de LTS" - -#: ../../godmode/update_manager/update_manager.setup.php:350 -msgid "Registration ID" -msgstr "ID de registro" - -#: ../../godmode/update_manager/update_manager.setup.php:351 -msgid "Not registred yet" -msgstr "AĆŗn no registrado" - -#: ../../godmode/update_manager/update_manager.setup.php:354 -msgid "Cancel registration" -msgstr "Cancelar registro" - -#: ../../godmode/update_manager/update_manager.setup.php:366 -msgid "Unregister" -msgstr "Cerrar cuenta" - -#: ../../godmode/update_manager/update_manager.setup.php:371 -#, php-format -msgid "%s community reminder" -msgstr "%s recordatorio de la comunidad" - -#: ../../godmode/update_manager/update_manager.setup.php:371 -#, php-format -msgid "" -"Every 8 days, a message is displayed to admin users to remember to register " -"this %s instance" -msgstr "" -"Cada 8 dĆ­as, se mostrarĆ” un mensaje a los usuarios administradores para que " -"recuerden registrar esta instancia %s." - -#: ../../godmode/update_manager/update_manager.history.php:42 -msgid "Origin" -msgstr "Origen" - -#: ../../godmode/modules/module_list.php:29 -msgid "Defined modules" -msgstr "MĆ³dulos definidos" - -#: ../../godmode/modules/module_list.php:51 -msgid "Problem modifying module" -msgstr "Problema al modificar los mĆ³dulos" - -#: ../../godmode/modules/module_list.php:53 -msgid "Module updated successfully" -msgstr "ActualizaciĆ³n de mĆ³dulos correcta" - -#: ../../godmode/modules/manage_network_components_form.php:355 -msgid "Update Network Component" -msgstr "ActualizaciĆ³n de componente de red" - -#: ../../godmode/modules/manage_network_components_form.php:357 -msgid "Create Network Component" -msgstr "Crear componente de red" - -#: ../../godmode/modules/manage_network_components.php:290 -msgid "Remote component management" -msgstr "GestiĆ³n remota de componentes" - -#: ../../godmode/modules/manage_network_components.php:313 -#, php-format -msgid "" -"This node is configured with centralized mode. All remote components are read " -"only. Go to %s to manage them." -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/modules/manage_network_components.php:424 -msgid "Could not be created because the component exists" -msgstr "No se ha podido crear porque el componente existe" - -#: ../../godmode/modules/manage_network_components.php:660 -msgid "Search by name, description, tcp send or tcp rcv, list matches." -msgstr "" -"BĆŗsqueda por nombre, descripciĆ³n, envĆ­o TCP o TCP RCV, lista las coincidencias." - -#: ../../godmode/modules/manage_network_components.php:753 -msgid "Max/Min" -msgstr "MĆ”x/MĆ­n" - -#: ../../godmode/modules/manage_network_components.php:837 -msgid "Wizard module" -msgstr "MĆ³dulo de wizard" - -#: ../../godmode/modules/manage_network_components.php:910 -msgid "There are no defined network components" -msgstr "No hay componentes de red definidos" - -#: ../../godmode/modules/manage_network_components.php:921 -msgid "Create a new network component" -msgstr "Crear un componente de red nuevo" - -#: ../../godmode/modules/manage_network_components.php:922 -msgid "Create a new plugin component" -msgstr "Crear un componente de plugin nuevo" - -#: ../../godmode/modules/manage_network_components.php:923 -msgid "Create a new WMI component" -msgstr "Crear un componente WMI nuevo" - -#: ../../godmode/modules/manage_network_components.php:924 -msgid "Create a new wizard component" -msgstr "Crear un nuevo componente de wizard" - -#: ../../godmode/modules/manage_network_templates.php:84 -msgid "Error deleting template" -msgstr "Error al borrar la plantilla" - -#: ../../godmode/modules/manage_network_templates.php:124 -msgid "This template does not exist" -msgstr "Esta plantilla no existe." - -#: ../../godmode/modules/manage_network_templates.php:304 -msgid "There are no defined network profiles" -msgstr "No hay ningĆŗn perfil de red definido" - -#: ../../godmode/modules/manage_network_templates_form.php:59 -msgid "Successfully deleted module from profile" -msgstr "MĆ³dulo borrado del perfil correctamente" - -#: ../../godmode/modules/manage_network_templates_form.php:60 -msgid "Error deleting module from profile" -msgstr "Error al borrar el mĆ³dulo del perfil" - -#: ../../godmode/modules/manage_network_templates_form.php:79 -msgid "Successfully added module to profile" -msgstr "MĆ³dulo aƱadido correctamente al perfil" - -#: ../../godmode/modules/manage_network_templates_form.php:80 -msgid "Error adding module to profile" -msgstr "Error al aƱadir el mĆ³dulo al perfil" - -#: ../../godmode/modules/manage_network_templates_form.php:113 -msgid "Successfully updated network profile" -msgstr "Perfil de red actualizado correctamente" - -#: ../../godmode/modules/manage_network_templates_form.php:114 -msgid "Error updating network profile" -msgstr "Error al actualizar el perfil de red" - -#: ../../godmode/modules/manage_network_templates_form.php:138 -msgid "Successfully added network profile" -msgstr "Perfil de red aƱadido correctamente" - -#: ../../godmode/modules/manage_network_templates_form.php:139 -msgid "Error adding network profile" -msgstr "Error al aƱadir el perfil de red" - -#: ../../godmode/modules/manage_network_templates_form.php:145 -msgid "Cannot create a template without name" -msgstr "No se puede crear una plantilla sin nombre" - -#: ../../godmode/modules/manage_network_templates_form.php:219 -msgid "No modules for this profile" -msgstr "No existen mĆ³dulos para este perfil" - -#: ../../godmode/modules/manage_network_components_form_wizard.php:92 -msgid "Add a macro oid" -msgstr "AƱadir una oid de macro" - -#: ../../godmode/modules/manage_network_components_form_wizard.php:110 -msgid "Remove last macro oid" -msgstr "Eliminar Ćŗltimo macro de oid" - -#: ../../godmode/modules/manage_network_components_form_wizard.php:134 -msgid "Numeric" -msgstr "NumĆ©rico" - -#: ../../godmode/modules/manage_network_components_form_wizard.php:136 -msgid "Boolean" -msgstr "Boleano" - -#: ../../godmode/modules/manage_network_components_form_wizard.php:137 -msgid "Alphanumeric" -msgstr "AlfanumĆ©rico" - -#: ../../godmode/modules/manage_network_components_form_wizard.php:258 -msgid "Add by default" -msgstr "AƱadir por defecto" - -#: ../../godmode/modules/manage_network_components_form_wizard.php:286 -msgid "Module protocol" -msgstr "Protocolo de mĆ³dulo" - -#: ../../godmode/modules/manage_network_components_form_wizard.php:302 -msgid "Protocol" -msgstr "Protocolo" - -#: ../../godmode/modules/manage_network_components_form_wizard.php:315 -#: ../../godmode/modules/manage_network_components_form_network.php:191 -msgid "Name OID" -msgstr "Nombre del OID" - -#: ../../godmode/modules/manage_network_components_form_wizard.php:318 -msgid "Manufacturer ID" -msgstr "ID del fabricante" - -#: ../../godmode/modules/manage_network_components_form_wizard.php:350 -msgid "Component Group" -msgstr "Grupo de componente" - -#: ../../godmode/modules/manage_network_components_form_wizard.php:368 -msgid "Module unit" -msgstr "Unidad de mĆ³dulo" - -#: ../../godmode/modules/manage_network_components_form_wizard.php:458 -msgid "Scan Type" -msgstr "Tipo de escaneo" - -#: ../../godmode/modules/manage_network_components_form_wizard.php:472 -#: ../../godmode/agentes/planned_downtime.list.php:321 -msgid "Execution type" -msgstr "Tipo de ejecuciĆ³n" - -#: ../../godmode/modules/manage_network_components_form_wizard.php:492 -msgid "Value OID" -msgstr "OID del valor" - -#: ../../godmode/modules/manage_network_components_form_wizard.php:509 -msgid "Macros OID" -msgstr "OID de macros" - -#: ../../godmode/modules/manage_network_components_form_wizard.php:517 -#: ../../godmode/modules/manage_network_components_form_wizard.php:702 -msgid "Value operation" -msgstr "OperaciĆ³n de valores" - -#: ../../godmode/modules/manage_network_components_form_wizard.php:534 -#: ../../godmode/modules/manage_network_components_form_wizard.php:719 -msgid "Satellite execution" -msgstr "EjecuciĆ³n de satĆ©lite" - -#: ../../godmode/modules/manage_network_components_form_wizard.php:551 -#: ../../godmode/modules/manage_network_components_form_wizard.php:736 -msgid "Server plugin" -msgstr "Plugin de servidor" - -#: ../../godmode/modules/manage_network_components_form_wizard.php:589 -msgid "WMI class" -msgstr "Clase WMI" - -#: ../../godmode/modules/manage_network_components_form_wizard.php:606 -msgid "Query key field" -msgstr "Campo de clave de consulta" - -#: ../../godmode/modules/manage_network_components_form_wizard.php:623 -msgid "Query extra fields" -msgstr "Campos extra de consulta" - -#: ../../godmode/modules/manage_network_components_form_wizard.php:631 -msgid "Query filters" -msgstr "Filtros de consulta" - -#: ../../godmode/modules/manage_network_components_form_wizard.php:674 -msgid "Field value" -msgstr "Calor de campo" - -#: ../../godmode/modules/manage_nc_groups.php:40 -msgid "Component group management" -msgstr "GestiĆ³n de grupos de componentes de red" - -#: ../../godmode/modules/manage_nc_groups.php:293 -#, php-format -msgid "" -"This node is configured with centralized mode. Component groups are read only. " -"Go to %s to manage it." -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/modules/manage_nc_groups.php:311 -msgid "There are no defined component groups" -msgstr "No hay grupos de componentes definidos" - -#: ../../godmode/modules/manage_network_components_form_common.php:712 -#: ../../godmode/agentes/module_manager_editor_common.php:2000 -msgid "Please introduce a positive percentage value" -msgstr "Introduzca un valor porcentual positivo" - -#: ../../godmode/modules/manage_network_components_form_wmi.php:41 -#: ../../godmode/agentes/module_manager_editor_wmi.php:87 -msgid "Namespace" -msgstr "Espacio de nombres" - -#: ../../godmode/modules/manage_network_components_form_network.php:72 -msgid "SNMP Enterprise String" -msgstr "Cadena SNMP Enterprise" - -#: ../../godmode/modules/manage_nc_groups_form.php:54 -msgid "Update Group Component" -msgstr "ActualizaciĆ³n de los componentes del grupo" - -#: ../../godmode/modules/manage_nc_groups_form.php:56 -msgid "Create Group Component" -msgstr "Crear componentes de grupo" - -#: ../../godmode/category/category.php:63 ../../godmode/category/category.php:77 -#: ../../godmode/category/edit_category.php:47 -#: ../../godmode/category/edit_category.php:61 -msgid "List categories" -msgstr "Lista de categorĆ­as" - -#: ../../godmode/category/category.php:89 ../../godmode/category/category.php:91 -#: ../../godmode/category/edit_category.php:73 -#: ../../godmode/category/edit_category.php:75 -msgid "Categories configuration" -msgstr "ConfiguraciĆ³n de categorĆ­as" - -#: ../../godmode/category/category.php:108 +#: ../../operation/tree.php:139 #, php-format -msgid "" -"This node is configured with centralized mode. All categories information is " -"read only. Go to %s to manage it." -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/category/category.php:123 -msgid "Error deleting category" -msgstr "Error al eliminar la categorĆ­a" - -#: ../../godmode/category/category.php:129 -msgid "Successfully deleted category" -msgstr "CategorĆ­a eliminada correctamente" - -#: ../../godmode/category/category.php:168 -msgid "Category name" -msgstr "Nombre de la categorĆ­a" - -#: ../../godmode/category/category.php:226 -msgid "No categories found" -msgstr "Ninguna categorĆ­a encontrada" - -#: ../../godmode/category/category.php:239 -#: ../../godmode/category/edit_category.php:171 -msgid "Create category" -msgstr "Crear categorĆ­a" - -#: ../../godmode/category/edit_category.php:73 -msgid "Editor" -msgstr "Editor" - -#: ../../godmode/category/edit_category.php:95 -msgid "Error updating category" -msgstr "Error al actualizar categorĆ­a" - -#: ../../godmode/category/edit_category.php:101 -msgid "Successfully updated category" -msgstr "CategorĆ­a actualizada correctamente" - -#: ../../godmode/category/edit_category.php:123 -msgid "Error creating category" -msgstr "Error al crear categorĆ­a" - -#: ../../godmode/category/edit_category.php:131 -msgid "Successfully created category" -msgstr "CategorĆ­a creada correctamente" - -#: ../../godmode/category/edit_category.php:163 -msgid "Update category" -msgstr "Actualizar categorĆ­a" - -#: ../../godmode/gis_maps/configure_gis_map.php:98 -msgid "View GIS" -msgstr "Ver GIS" - -#: ../../godmode/gis_maps/configure_gis_map.php:106 -msgid "GIS Maps builder" -msgstr "Creador de mapas GIS" - -#: ../../godmode/gis_maps/configure_gis_map.php:196 -msgid "Map successfully created" -msgstr "Mapa creado correctamente" - -#: ../../godmode/gis_maps/configure_gis_map.php:197 -msgid "Map could not be created" -msgstr "No se pudo crear el mapa" - -#: ../../godmode/gis_maps/configure_gis_map.php:299 -msgid "Map successfully update" -msgstr "Mapa actualizado correctamente" - -#: ../../godmode/gis_maps/configure_gis_map.php:300 -msgid "Map could not be updated" -msgstr "No se pudo actualizar el mapa" - -#: ../../godmode/gis_maps/configure_gis_map.php:353 -msgid "Do you want to use the default data from the connection?" -msgstr "ĀæQuieres usar los datos que vienen por defecto de la conexiĆ³n?" - -#: ../../godmode/gis_maps/configure_gis_map.php:387 -msgid "The connection" -msgstr "La conexiĆ³n" - -#: ../../godmode/gis_maps/configure_gis_map.php:387 -msgid "just added previously." -msgstr "ya ha sido aƱadido." - -#: ../../godmode/gis_maps/configure_gis_map.php:455 -msgid "Map Name" -msgstr "Nombre del mapa" - -#: ../../godmode/gis_maps/configure_gis_map.php:474 -msgid "Add Map connection" -msgstr "AƱadir conexiĆ³n al mapa" - -#: ../../godmode/gis_maps/configure_gis_map.php:523 -msgid "Default zoom" -msgstr "Zoom por defecto" - -#: ../../godmode/gis_maps/configure_gis_map.php:530 -msgid "Center Latitude" -msgstr "Latitud central" - -#: ../../godmode/gis_maps/configure_gis_map.php:533 -msgid "Center Longitude" -msgstr "Longitud central" - -#: ../../godmode/gis_maps/configure_gis_map.php:536 -msgid "Center Altitude" -msgstr "Altitud central" - -#: ../../godmode/gis_maps/configure_gis_map.php:539 -msgid "Default Latitude" -msgstr "Latitud por defecto" - -#: ../../godmode/gis_maps/configure_gis_map.php:542 -msgid "Default Longitude" -msgstr "Longitud por defecto" - -#: ../../godmode/gis_maps/configure_gis_map.php:545 -msgid "Default Altitude" -msgstr "Altitud por defecto" - -#: ../../godmode/gis_maps/configure_gis_map.php:561 -msgid "List of layers" -msgstr "Lista de capas" - -#: ../../godmode/gis_maps/configure_gis_map.php:562 -msgid "New layer" -msgstr "Nueva capa" - -#: ../../godmode/gis_maps/configure_gis_map.php:568 -msgid "Layer name" -msgstr "Nombre de la capa" - -#: ../../godmode/gis_maps/configure_gis_map.php:570 -msgid "Visible" -msgstr "Visible" - -#: ../../godmode/gis_maps/configure_gis_map.php:574 -msgid "Show agents from group" -msgstr "Mostrar agentes del grupo" - -#: ../../godmode/gis_maps/configure_gis_map.php:586 -msgid "Add agent" -msgstr "AƱadir agente" - -#: ../../godmode/gis_maps/configure_gis_map.php:608 -msgid "List of Agents to be shown in the layer" -msgstr "Lista de los agentes que se mostrarĆ”n en la capa" - -#: ../../godmode/gis_maps/configure_gis_map.php:639 -msgid "Use the data of this agent" -msgstr "Utilice los datos de este agente" - -#: ../../godmode/gis_maps/configure_gis_map.php:647 -msgid "List of groups to be shown in the layer" -msgstr "Lista de grupos a mostrar en la capa" - -#: ../../godmode/gis_maps/configure_gis_map.php:654 -msgid "Save Layer" -msgstr "Guardar capa" - -#: ../../godmode/gis_maps/configure_gis_map.php:670 -#: ../../godmode/gis_maps/configure_gis_map.php:677 -msgid "Save map" -msgstr "Guardar mapa" - -#: ../../godmode/gis_maps/configure_gis_map.php:672 -msgid "Update map" -msgstr "Actualizar mapa" - -#: ../../godmode/gis_maps/configure_gis_map.php:1060 -msgid "Using data from" -msgstr "Utilizando los datos de" - -#: ../../godmode/gis_maps/configure_gis_map.php:1218 -msgid "Empty layer names are not supported" -msgstr "No se admiten nombres de capa vacĆ­os" - -#: ../../godmode/extensions.php:28 -msgid "Defined extensions" -msgstr "Extensiones definidas" - -#: ../../godmode/extensions.php:33 -msgid "There are no extensions defined" -msgstr "No hay extensiones definidas" - -#: ../../godmode/extensions.php:141 -msgid "Godmode Function" -msgstr "FunciĆ³n Administrador" - -#: ../../godmode/extensions.php:142 -msgid "Godmode Menu" -msgstr "MenĆŗ Administrador" - -#: ../../godmode/extensions.php:143 -msgid "Operation Menu" -msgstr "MenĆŗ OperaciĆ³n" - -#: ../../godmode/extensions.php:144 -msgid "Operation Function" -msgstr "FunciĆ³n OperaciĆ³n" - -#: ../../godmode/extensions.php:145 -msgid "Login Function" -msgstr "FunciĆ³n ConexiĆ³n" - -#: ../../godmode/extensions.php:146 -msgid "Agent operation tab" -msgstr "PestaƱa Operaciones de agente" - -#: ../../godmode/extensions.php:147 -msgid "Agent godmode tab" -msgstr "PestaƱa AdministraciĆ³n de agente" - -#: ../../godmode/reporting/reporting_builder.main.php:146 -msgid "Only the group can view the report" -msgstr "Solo el grupo puede ver el informe." - -#: ../../godmode/reporting/reporting_builder.main.php:147 -msgid "The next group can edit the report" -msgstr "El siguiente grupo puede editar el informe." - -#: ../../godmode/reporting/reporting_builder.main.php:148 -msgid "Only the user and admin user can edit the report" -msgstr "Solo el usuario y el usuario administrador pueden editar el informe." - -#: ../../godmode/reporting/reporting_builder.main.php:150 -msgid "Write Access" -msgstr "Permisos de escritura" - -#: ../../godmode/reporting/reporting_builder.main.php:152 -msgid "" -"For example, you want a report that the people of \"All\" groups can see but " -"you want to edit only for you or your group." -msgstr "" -"Por ejemplo, quieres un informe que las personas de \"Todos\" los grupos " -"pueden ver, pero quieres que solo tĆŗ o tu grupo podĆ”is editarlo." - -#: ../../godmode/reporting/reporting_builder.main.php:193 -msgid "Non interactive report" -msgstr "Informe no interactivo" - -#: ../../godmode/reporting/map_builder.php:318 -#: ../../godmode/reporting/map_builder.php:326 -msgid "Not copied. Error copying data" -msgstr "Se ha producido un error al copiar los datos." - -#: ../../godmode/reporting/map_builder.php:368 -#: ../../godmode/reporting/visual_console_favorite.php:185 -msgid "Group Recursion" -msgstr "Recursividad de grupo" - -#: ../../godmode/reporting/map_builder.php:384 -msgid "Map name" -msgstr "Nombre del mapa" - -#: ../../godmode/reporting/map_builder.php:386 -msgid "Items" -msgstr "Elementos" - -#: ../../godmode/reporting/visual_console_builder.php:211 -msgid "This file isn't image" -msgstr "El archivo no es una imagen." - -#: ../../godmode/reporting/visual_console_builder.php:214 -msgid "This file isn't image." -msgstr "El archivo no es una imagen." - -#: ../../godmode/reporting/visual_console_builder.php:220 -#: ../../godmode/reporting/visual_console_builder.php:223 -msgid "File already are exists." -msgstr "El archivo ya existe." - -#: ../../godmode/reporting/visual_console_builder.php:231 -#: ../../godmode/reporting/visual_console_builder.php:234 -msgid "The file have not image extension." -msgstr "El archivo no tiene una extensiĆ³n vĆ”lida." - -#: ../../godmode/reporting/visual_console_builder.php:246 -#: ../../godmode/reporting/visual_console_builder.php:249 -#: ../../godmode/reporting/visual_console_builder.php:259 -#: ../../godmode/reporting/visual_console_builder.php:265 -msgid "Problems with move file to target." -msgstr "Error al mover el archivo al objetivo" - -#: ../../godmode/reporting/visual_console_builder.php:302 -msgid "Successfully update." -msgstr "Actualizado correctamente" - -#: ../../godmode/reporting/visual_console_builder.php:321 -msgid "Could not be update." -msgstr "No se puede actualizar" - -#: ../../godmode/reporting/visual_console_builder.php:341 -msgid "Successfully created." -msgstr "Creado correctamente" - -#: ../../godmode/reporting/visual_console_builder.php:360 -msgid "Could not be created." -msgstr "No se pudo crear" - -#: ../../godmode/reporting/visual_console_builder.php:408 -msgid "Successfully multiple delete." -msgstr "SupresiĆ³n mĆŗltiple realizada correctamente" - -#: ../../godmode/reporting/visual_console_builder.php:409 -msgid "Unsuccessful multiple delete." -msgstr "Error de supresiĆ³n mĆŗltiple" - -#: ../../godmode/reporting/visual_console_builder.php:529 -msgid "Successfully delete." -msgstr "Borrado satisfactoriamente" - -#: ../../godmode/reporting/graphs.php:106 -msgid "Graphs containers" -msgstr "Contenedores de grĆ”ficos" - -#: ../../godmode/reporting/graphs.php:120 -msgid "List of custom graphs" -msgstr "Lista de grĆ”ficos personalizados" - -#: ../../godmode/reporting/graphs.php:235 -#: ../../godmode/reporting/reporting_builder.php:779 -msgid "Free text for search: " -msgstr "Texto libre de bĆŗsqueda " - -#: ../../godmode/reporting/graphs.php:236 -#: ../../godmode/reporting/reporting_builder.php:781 -msgid "Search by report name or description, list matches." -msgstr "BĆŗsqueda por nombre del informe o descripciĆ³n, lista de coincidencias" - -#: ../../godmode/reporting/graphs.php:248 -#: ../../godmode/reporting/reporting_builder.php:807 -msgid "Show Option" -msgstr "Mostrar opciones" - -#: ../../godmode/reporting/graphs.php:402 -msgid "Create graph" -msgstr "Crear grĆ”fico" - -#: ../../godmode/reporting/graph_container.php:134 -#: ../../godmode/reporting/create_container.php:196 -msgid "Create container" -msgstr "Crear contenedor" - -#: ../../godmode/reporting/reporting_builder.list_items.php:706 -#: ../../godmode/reporting/reporting_builder.list_items.php:710 -#: ../../godmode/reporting/graph_builder.graph_editor.php:284 -#: ../../godmode/reporting/graph_builder.graph_editor.php:288 -msgid "Sort items" -msgstr "Ordenar elementos" - -#: ../../godmode/reporting/reporting_builder.list_items.php:713 -msgid "Sort selected items from position: " -msgstr "Ordenar elementos desde posiciĆ³n: " - -#: ../../godmode/reporting/reporting_builder.list_items.php:716 -msgid "Move before to" -msgstr "Mover antes de" - -#: ../../godmode/reporting/reporting_builder.list_items.php:717 -msgid "Move after to" -msgstr "Mover despuĆ©s de" - -#: ../../godmode/reporting/reporting_builder.list_items.php:757 -#: ../../godmode/reporting/reporting_builder.list_items.php:761 -msgid "Delete items" -msgstr "Borrar elementos" - -#: ../../godmode/reporting/reporting_builder.list_items.php:764 -msgid "Delete selected items from position: " -msgstr "Borrar los elementos seleccionados desde la posiciĆ³n: " - -#: ../../godmode/reporting/reporting_builder.list_items.php:767 -msgid "Delete above to" -msgstr "Borrar lo que estĆ” encima de" - -#: ../../godmode/reporting/reporting_builder.list_items.php:768 -msgid "Delete below to" -msgstr "Borrar lo que estĆ” debajo de" - -#: ../../godmode/reporting/reporting_builder.list_items.php:824 -msgid "" -"Are you sure to sort the items into the report?\\n. This action change the " -"sorting of items into data base." -msgstr "" -"ĀæEstĆ” seguro de que quiere clasificar los elementos en el informe?\\n. Esta " -"acciĆ³n podrĆ­a cambiar la clasificaciĆ³n de los elementos en la base de datos." - -#: ../../godmode/reporting/reporting_builder.list_items.php:844 -#: ../../godmode/reporting/graph_builder.graph_editor.php:407 -msgid "Please select any item to order" -msgstr "Por favor, selecciona cualquier elemento para ordenar." - -#: ../../godmode/reporting/reporting_builder.list_items.php:874 -msgid "Are you sure to delete the items into the report?\\n" -msgstr "ĀæEstĆ”s seguro de que quieres borrar los elementos en el informe?\\n" - -#: ../../godmode/reporting/reporting_builder.list_items.php:901 -msgid "Please select any item to delete" -msgstr "Por favor, selecciona cualquier elemento para borrarlo." - -#: ../../godmode/reporting/graph_builder.php:336 -msgid "Graph builder" -msgstr "Creador de grĆ”ficos" +msgid "Sort the agents by %s" +msgstr "Ordenar los agentes por %s" -#: ../../godmode/reporting/graph_builder.php:378 -msgid "Graph stored successfully" -msgstr "GrĆ”fica almacenada correctamente" +#: ../../operation/tree.php:142 +msgid "tags" +msgstr "Etiquetas" -#: ../../godmode/reporting/graph_builder.php:379 -msgid "There was a problem storing Graph" -msgstr "Error al almacenar el grĆ”fico" +#: ../../operation/tree.php:150 +msgid "groups" +msgstr "Grupos" -#: ../../godmode/reporting/graph_builder.php:386 -#: ../../godmode/agentes/configurar_agente.php:1942 -msgid "Module added successfully" -msgstr "MĆ³dulo aƱadido correctamente" +#: ../../operation/tree.php:154 +msgid "module groups" +msgstr "Grupos de mĆ³dulos" -#: ../../godmode/reporting/graph_builder.php:387 -msgid "There was a problem adding Module" -msgstr "Ha surgido un problema al aƱadir el mĆ³dulo." +#: ../../operation/tree.php:163 +msgid "policies" +msgstr "PolĆ­ticas" -#: ../../godmode/reporting/graph_builder.php:394 -msgid "Update the graph" -msgstr "Actualizar el grĆ”fico" +#: ../../operation/tree.php:219 +msgid "Search group" +msgstr "Buscar grupo" -#: ../../godmode/reporting/graph_builder.php:395 -msgid "Bad update the graph" -msgstr "No se pudo actualizar el grĆ”fico." +#: ../../operation/tree.php:223 ../../operation/tree.php:279 +msgid "Show not init modules" +msgstr "Mostrar mĆ³dulos no iniciados" -#: ../../godmode/reporting/graph_builder.php:402 -msgid "Graph deleted successfully" -msgstr "GrĆ”fico borrado correctamente" +#: ../../operation/tree.php:232 +msgid "Search agent" +msgstr "Buscar agente" -#: ../../godmode/reporting/graph_builder.php:403 -msgid "There was a problem deleting Graph" -msgstr "Ha surgido un problema al borrar el grĆ”fico." +#: ../../operation/tree.php:235 +msgid "Show not init agents" +msgstr "Mostrar agentes no iniciados" -#: ../../godmode/reporting/visual_console_builder.data.php:94 -msgid "Create visual console" -msgstr "Crear consola visual" +#: ../../operation/tree.php:243 +msgid "Show full hirearchy" +msgstr "Mostrar jerarquĆ­a completa" -#: ../../godmode/reporting/visual_console_builder.data.php:106 -msgid "" -"Use [ or ( as first character, for example '[*] Map name', to render this map " -"name in main menu" -msgstr "" -"Usa [ o ( como primer carĆ”cter. Por ejemplo \"[*] Nombre de mapa\", para " -"renderizar este nombre de mapa en el menĆŗ principal." - -#: ../../godmode/reporting/visual_console_builder.data.php:179 -msgid "Background image" -msgstr "Imagen de fondo" - -#: ../../godmode/reporting/visual_console_builder.data.php:211 -msgid "Layout size" -msgstr "TamaƱo del diseƱo" - -#: ../../godmode/reporting/visual_console_builder.data.php:214 -msgid "Set custom size" -msgstr "Especificar tamaƱo personalizado" - -#: ../../godmode/reporting/visual_console_builder.data.php:220 -msgid "Get default image size" -msgstr "Establecer el tamaƱo de imagen por defecto" - -#: ../../godmode/reporting/visual_console_builder.data.php:222 -msgid "Favourite visual console" -msgstr "Consola visual favorita" - -#: ../../godmode/reporting/visual_console_builder.data.php:225 -msgid "Auto adjust to screen in fullscreen" -msgstr "Ajuste automĆ”tico a la pantalla en pantalla completa" - -#: ../../godmode/reporting/create_container.php:155 -msgid "Container name is missing." -msgstr "Falta el nombre del contenedor." - -#: ../../godmode/reporting/create_container.php:205 -msgid "Container stored successfully" -msgstr "Contenedor guardado correctamente" - -#: ../../godmode/reporting/create_container.php:205 -msgid "There was a problem storing container" -msgstr "Hubo un problema al guardar el contenedor" - -#: ../../godmode/reporting/create_container.php:212 -msgid "Update the container" -msgstr "Actualizar contenedor" - -#: ../../godmode/reporting/create_container.php:212 -msgid "Bad update the container" -msgstr "Mala actualizaciĆ³n del contenedor" - -#: ../../godmode/reporting/create_container.php:287 -msgid "Parent container" -msgstr "Contenedor padre" - -#: ../../godmode/reporting/create_container.php:365 -#: ../../godmode/reporting/create_container.php:474 -#: ../../godmode/reporting/create_container.php:528 -msgid "" -"This is the interval or period of time with which the graph data will be " -"obtained. For example, a week means data from a week ago from now. " -msgstr "" -"Este es el intervalo o perĆ­odo de tiempo en el que se obtendrĆ”n los datos de " -"la grĆ”fica. Por ejemplo, una semana significa que habrĆ” datos desde hace una " -"semana hasta ahora. " - -#: ../../godmode/reporting/create_container.php:448 -#: ../../godmode/reporting/create_container.php:501 -#: ../../godmode/reporting/create_container.php:596 -msgid "Add item" -msgstr "AƱadir elemento" - -#: ../../godmode/reporting/create_container.php:614 -msgid "There are no items in this container." -msgstr "No hay elementos en este contenedor." - -#: ../../godmode/reporting/create_container.php:623 -msgid "Agent/Module" -msgstr "Agente/mĆ³dulo" - -#: ../../godmode/reporting/create_container.php:626 -msgid "M.Group" -msgstr "M.Grupo" - -#: ../../godmode/reporting/visual_console_favorite.php:223 -msgid "No favourite consoles defined" -msgstr "No hay consolas favoritas" - -#: ../../godmode/reporting/visual_console_builder.elements.php:106 -msgid "Width x Height
Max value" -msgstr "Ancho x Alto
Valor mĆ”ximo" - -#: ../../godmode/reporting/visual_console_builder.elements.php:108 -msgid "Map linked" -msgstr "Mapa enlazado" - -#: ../../godmode/reporting/visual_console_builder.elements.php:193 -msgid "Percentile Bar" -msgstr "Barra de percentil" - -#: ../../godmode/reporting/visual_console_builder.elements.php:203 -msgid "Percentile Bubble" -msgstr "Burbuja percentil" - -#: ../../godmode/reporting/visual_console_builder.elements.php:251 -msgid "Simple Value (Process Max)" -msgstr "Valor simple (mĆ”ximo)" - -#: ../../godmode/reporting/visual_console_builder.elements.php:262 -msgid "Simple Value (Process Min)" -msgstr "Valor simple (mĆ­nimo)" - -#: ../../godmode/reporting/visual_console_builder.elements.php:273 -msgid "Simple Value (Process Avg)" -msgstr "Valor simple (media)" - -#: ../../godmode/reporting/visual_console_builder.elements.php:394 -#: ../../godmode/reporting/visual_console_builder.elements.php:832 -msgid "Edit label" -msgstr "Editar etiqueta" - -#: ../../godmode/reporting/reporting_builder.item_editor.php:996 -msgid "Not valid" -msgstr "No vĆ”lido" - -#: ../../godmode/reporting/reporting_builder.item_editor.php:1004 -msgid "" -"This type of report brings a lot of data loading, it is recommended to use it " -"for scheduled reports and not for real-time view." -msgstr "" -"Este tipo de informes tienen muchos datos que cargar. Recomendamos su uso para " -"informes programados y no para informes de tiempo real." - -#: ../../godmode/reporting/reporting_builder.item_editor.php:1154 -msgid "Log number" -msgstr "NĆŗmero de logs" - -#: ../../godmode/reporting/reporting_builder.item_editor.php:1156 -msgid "" -"Warning: this parameter limits the contents of the logs and affects the " -"performance." -msgstr "" -"Advertencia: este parĆ”metro limita los contenidos de los logs y afecta al " -"rendimiento." - -#: ../../godmode/reporting/reporting_builder.item_editor.php:1217 -msgid "" -"This is the range, or period of time over which the report renders the " -"information for this report type. For example, a week means data from a week " -"ago from now. " -msgstr "" -"Este es el lapso de tiempo que refleja el informe. Si es una semana, por " -"ejemplo, el informe mostrarĆ” los datos desde hace una semana hasta ahora. " - -#: ../../godmode/reporting/reporting_builder.item_editor.php:1776 -msgid "Show modules" -msgstr "Mostrar mĆ³dulos" - -#: ../../godmode/reporting/reporting_builder.item_editor.php:2157 -msgid "Target server" -msgstr "Servidor Target" - -#: ../../godmode/reporting/reporting_builder.item_editor.php:2458 -msgid "Macros definition" -msgstr "DefiniciĆ³n de macros" - -#: ../../godmode/reporting/reporting_builder.item_editor.php:2469 -msgid "Render definition" -msgstr "DefiniciĆ³n de renderizado" - -#: ../../godmode/reporting/reporting_builder.item_editor.php:2470 -msgid "Please note that not all CSS styles are supported by PDF reports." -msgstr "" -"Tenga en cuenta que no todos los estilos CSS son compatibles con los informes " -"PDF." - -#: ../../godmode/reporting/reporting_builder.item_editor.php:2550 -msgid "Greater or equal (>=)" -msgstr "Mayor o igual (>=)" - -#: ../../godmode/reporting/reporting_builder.item_editor.php:2551 -msgid "Less or equal (<=)" -msgstr "Menor o igual (<=)" - -#: ../../godmode/reporting/reporting_builder.item_editor.php:2552 -msgid "Less (<)" -msgstr "Menor a (<)" - -#: ../../godmode/reporting/reporting_builder.item_editor.php:2553 -msgid "Greater (>)" -msgstr "Mayor a (>)" - -#: ../../godmode/reporting/reporting_builder.item_editor.php:2554 -msgid "Equal (=)" -msgstr "Igual a (=)" - -#: ../../godmode/reporting/reporting_builder.item_editor.php:2555 -msgid "Not equal (!=)" -msgstr "No igual a (!=)" - -#: ../../godmode/reporting/reporting_builder.item_editor.php:2680 -msgid "" -"Show a summary chart with max, min and average number of total modules at the " -"end of the report and Checks." -msgstr "" -"Mostrar una grĆ”fica de sumario con el mĆ”ximo, mĆ­nimo y la media del total de " -"mĆ³dulos al final del informe y las comprobaciones." - -#: ../../godmode/reporting/reporting_builder.item_editor.php:2735 -msgid "Checks in Warning status" -msgstr "Chequeos en estado Warning" - -#: ../../godmode/reporting/reporting_builder.item_editor.php:2805 -msgid "Only data" -msgstr "SĆ³lo datos" - -#: ../../godmode/reporting/reporting_builder.item_editor.php:2903 -msgid "Include extended events" -msgstr "Incluir eventos ampliados" - -#: ../../godmode/reporting/reporting_builder.item_editor.php:2920 -msgid "Show custom data" -msgstr "Mostrar datos personalizados" - -#: ../../godmode/reporting/reporting_builder.item_editor.php:2939 -msgid "By agent " -msgstr "Por agente " - -#: ../../godmode/reporting/reporting_builder.item_editor.php:2949 -msgid "By user validator " -msgstr "Por validador de usuario " - -#: ../../godmode/reporting/reporting_builder.item_editor.php:2959 -msgid "By criticity " -msgstr "Por prioridad " - -#: ../../godmode/reporting/reporting_builder.item_editor.php:2969 -msgid "Validated vs unvalidated " -msgstr "Validado vs invalidado " - -#: ../../godmode/reporting/reporting_builder.item_editor.php:2984 -msgid "" -"With the token enabled the query will affect the Historical Database, which " -"may mean a small drop in performance." -msgstr "" -"Con el token habilitado, la consulta afectarĆ” a la base de datos histĆ³rica, " -"que puede acarrear una bajada del rendimiento." - -#: ../../godmode/reporting/reporting_builder.item_editor.php:3169 -msgid "Include filter" -msgstr "Incluir filtro" - -#: ../../godmode/reporting/reporting_builder.item_editor.php:3173 -#: ../../godmode/reporting/reporting_builder.item_editor.php:3182 -msgid "Free text string search on event description" -msgstr "BĆŗsqueda de cadena de texto libre en descripciĆ³n del evento" - -#: ../../godmode/reporting/reporting_builder.item_editor.php:3178 -msgid "Exclude filter" -msgstr "Excluir filtro" - -#: ../../godmode/reporting/reporting_builder.item_editor.php:3377 -msgid "Select by group" -msgstr "Seleccionar por grupo" +#: ../../operation/tree.php:254 +msgid "Show only disabled" +msgstr "Mostrar solo deshabilitados" -#: ../../godmode/reporting/reporting_builder.item_editor.php:3465 -msgid "Display options" -msgstr "Mostrar opciones" +#: ../../operation/tree.php:276 +msgid "Search module" +msgstr "Buscar mĆ³dulo" -#: ../../godmode/reporting/reporting_builder.item_editor.php:3523 -msgid "Agent group filter" -msgstr "Filtro de grupo de agentes" +#: ../../operation/tree.php:308 +msgid "Tree search" +msgstr "BĆŗsqueda de Ć”rbol" -#: ../../godmode/reporting/reporting_builder.item_editor.php:3543 -msgid "Agent OS filter" -msgstr "Filtro del so del agente" +#: ../../operation/users/user_edit.php:153 +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" -#: ../../godmode/reporting/reporting_builder.item_editor.php:3569 -msgid "Agent custom field" -msgstr "Campo personalizado de agente" +#: ../../operation/users/user_edit.php:155 +msgid "Current password of user is not correct" +msgstr "La contraseƱa actual del usuario no es correcta" -#: ../../godmode/reporting/reporting_builder.item_editor.php:3591 -msgid "Agent custom field filter" -msgstr "Filtro de campo personalizado de agente" - -#: ../../godmode/reporting/reporting_builder.item_editor.php:3615 -msgid "Agent status filter" -msgstr "Filtro de estado del agente" - -#: ../../godmode/reporting/reporting_builder.item_editor.php:3653 -msgid "Agent version filter" -msgstr "Filtro de versiĆ³n del agente" - -#: ../../godmode/reporting/reporting_builder.item_editor.php:3677 -msgid "Agent has remote configuration" -msgstr "El agente tiene configuraciĆ³n remota" - -#: ../../godmode/reporting/reporting_builder.item_editor.php:3678 -msgid "Filter agents by remote configuration enabled." -msgstr "Filtrar agentes por configuraciĆ³n remota habilitada." - -#: ../../godmode/reporting/reporting_builder.item_editor.php:3689 -msgid "Agent module filter" -msgstr "Filtro del mĆ³dulo del agente" - -#: ../../godmode/reporting/reporting_builder.item_editor.php:3795 -#: ../../godmode/reporting/reporting_builder.item_editor.php:4310 -msgid "Agent Failover" -msgstr "ConmutaciĆ³n de agente" - -#: ../../godmode/reporting/reporting_builder.item_editor.php:3800 -#: ../../godmode/reporting/reporting_builder.item_editor.php:4313 -msgid "Module Failover" -msgstr "ConmutaciĆ³n de mĆ³dulo" - -#: ../../godmode/reporting/reporting_builder.item_editor.php:3840 -msgid "Please save the item before adding entries to this list." -msgstr "Guarde el elemento antes de agregar entradas a esta lista." - -#: ../../godmode/reporting/reporting_builder.item_editor.php:4286 -msgid "rate" -msgstr "tasa" - -#: ../../godmode/reporting/reporting_builder.item_editor.php:4334 -msgid "" -"Please be careful, when the module have diferent intervals in their life, the " -"summatory maybe get bad result." -msgstr "" -"Por favor, ten en cuenta que cuando el mĆ³dulo tiene diferentes intervalos a lo " -"largo de su historia, el sumatorio puede obtener resultados incorrectos." - -#: ../../godmode/reporting/reporting_builder.item_editor.php:4354 -msgid "Please save the report to start adding items into the list." -msgstr "Por favor, guarda el informe para empezar a aƱadir elementos a la lista." - -#: ../../godmode/reporting/reporting_builder.item_editor.php:4620 -#: ../../godmode/reporting/reporting_builder.item_editor.php:4624 -#: ../../godmode/reporting/reporting_builder.item_editor.php:4628 -#: ../../godmode/reporting/reporting_builder.item_editor.php:4632 -#: ../../godmode/reporting/reporting_builder.item_editor.php:4636 -#: ../../godmode/reporting/reporting_builder.item_editor.php:4640 -#: ../../godmode/reporting/reporting_builder.item_editor.php:4644 -#: ../../godmode/reporting/reporting_builder.item_editor.php:4648 -msgid "Item Editor Information" -msgstr "InformaciĆ³n de editor de elemento" - -#: ../../godmode/reporting/reporting_builder.item_editor.php:4621 -msgid "Please select a name." -msgstr "Seleccione un nombre." - -#: ../../godmode/reporting/reporting_builder.item_editor.php:4625 -msgid "Please select an agent." -msgstr "Seleccione un agente." - -#: ../../godmode/reporting/reporting_builder.item_editor.php:4629 -#: ../../godmode/agentes/planned_downtime.editor.php:1394 -msgid "Please select a module." -msgstr "Por favor, seleccione un mĆ³dulo." - -#: ../../godmode/reporting/reporting_builder.item_editor.php:4633 -msgid "Please insert a SQL query." -msgstr "Inserte una consulta SQL." - -#: ../../godmode/reporting/reporting_builder.item_editor.php:4637 -msgid "Please insert a URL." -msgstr "Inserte una URL." - -#: ../../godmode/reporting/reporting_builder.item_editor.php:4641 -msgid "Please checked a custom interval option." -msgstr "Compruebe la opciĆ³n de intervalo personalizado" - -#: ../../godmode/reporting/reporting_builder.item_editor.php:4645 -msgid "Please select a user." -msgstr "Seleccione un usuario." - -#: ../../godmode/reporting/reporting_builder.item_editor.php:4649 -msgid "Please select a group." -msgstr "Seleccione un grupo" - -#: ../../godmode/reporting/reporting_builder.php:535 -#: ../../godmode/reporting/reporting_builder.php:3451 -#: ../../godmode/reporting/reporting_builder.php:3534 -#: ../../godmode/reporting/reporting_builder.php:3582 -msgid "Reports list" -msgstr "Lista de informes" - -#: ../../godmode/reporting/reporting_builder.php:583 -msgid "List of reports" -msgstr "Lista de informes" - -#: ../../godmode/reporting/reporting_builder.php:1046 -msgid "This report exceeds the item limit for realtime operations" -msgstr "" -"Este informe excede el tiempo lĆ­mite para las operaciones de tiempo real." - -#: ../../godmode/reporting/reporting_builder.php:1278 -msgid "Create report" -msgstr "Crear informe" - -#: ../../godmode/reporting/reporting_builder.php:3585 -msgid "Create Custom Report" -msgstr "Crear informa personalizado" - -#: ../../godmode/reporting/reporting_builder.php:3673 -msgid "Unsuccessful action

" -msgstr "AcciĆ³n fallida

" - -#: ../../godmode/reporting/visual_console_builder.editor.php:163 -msgid "Min allowed size is 1024x768" -msgstr "El tamaƱo mĆ­nimo permitido es 1024x768" - -#: ../../godmode/reporting/visual_console_builder.editor.php:167 -msgid "Loading in progress" -msgstr "Cargando" - -#: ../../godmode/reporting/visual_console_builder.editor.php:169 -msgid "Saving in progress" -msgstr "Guardando" - -#: ../../godmode/reporting/visual_console_builder.editor.php:171 -msgid "Deletion in progress" -msgstr "Eliminando" - -#: ../../godmode/reporting/graph_builder.graph_editor.php:199 -#, php-format -msgid "" -"The maximum number of items in a chart is %d. You have %d elements, only first " -"%d will be displayed." +#: ../../operation/users/user_edit.php:159 +msgid "Passwords didn't match or other problem encountered while updating passwords" msgstr "" -"El nĆŗmero mĆ”ximo de elementos en una tabla es %d. Tiene %d elementos, solo se " -"mostrarĆ”n los primeros %d." - -#: ../../godmode/reporting/graph_builder.graph_editor.php:291 -msgid "Sort selected items" -msgstr "Ordenar elementos seleccionados" - -#: ../../godmode/reporting/graph_builder.graph_editor.php:294 -msgid "before to" -msgstr "antes de" - -#: ../../godmode/reporting/graph_builder.graph_editor.php:295 -msgid "after to" -msgstr "despuĆ©s de" - -#: ../../godmode/reporting/graph_builder.main.php:230 -msgid "Equalize maximum thresholds" -msgstr "Igualar umbrales mĆ”ximos" - -#: ../../godmode/reporting/graph_builder.main.php:258 -msgid "Add summatory series" -msgstr "AƱadir series sumatorias" - -#: ../../godmode/reporting/graph_builder.main.php:268 -msgid "Add average series" -msgstr "AƱadir series de promedios" +"Las contraseƱas no coincidĆ­an o se encontrĆ³ otro problema al actualizar las " +"contraseƱas." -#: ../../godmode/reporting/graph_builder.main.php:279 -msgid "Modules and series" -msgstr "MĆ³dulos y series" +#: ../../operation/users/user_edit.php:172 ../../operation/users/user_edit.php:187 +msgid "Password successfully updated" +msgstr "ContraseƱa actualizada correctamente" -#: ../../godmode/reporting/visual_console_builder.wizard.php:165 -msgid "Range between elements (px)" -msgstr "Rango entre elementos (px)" +#: ../../operation/users/user_edit.php:182 ../../operation/users/user_edit.php:230 +msgid "Error updating user info" +msgstr "Error al actualizar la informaciĆ³n del usuario" -#: ../../godmode/reporting/visual_console_builder.wizard.php:178 -msgid "Size (px)" -msgstr "TamaƱo (px)" +#: ../../operation/users/user_edit.php:189 +msgid "Skin successfully updated" +msgstr "Skin actualizado correctamente" -#: ../../godmode/reporting/visual_console_builder.wizard.php:273 -msgid "Width (px)" -msgstr "Ancho (px)" +#: ../../operation/users/user_edit.php:203 +msgid "Please enter a valid email" +msgstr "AƱada una direcciĆ³n de correo electrĆ³nico vĆ”lida" -#: ../../godmode/reporting/visual_console_builder.wizard.php:378 -msgid "One item per agent" -msgstr "Un elemento por agente" +#: ../../operation/users/user_edit.php:205 +msgid "Please enter a valid phone number" +msgstr "AƱada un nĆŗmero de telĆ©fono valido" -#: ../../godmode/reporting/visual_console_builder.wizard.php:448 -#: ../../godmode/reporting/visual_console_builder.wizard.php:765 -msgid "Agent - Module" -msgstr "Agente-MĆ³dulo" +#: ../../operation/users/user_edit.php:211 +msgid "Error updating passwords: " +msgstr "Error al actualizar contraseƱas: " -#: ../../godmode/reporting/visual_console_builder.wizard.php:465 -msgid "Enable link agent" -msgstr "Habilitar el enlace del agente" +#: ../../operation/users/user_edit.php:235 +msgid "Edit my User" +msgstr "Editar mi usuario" -#: ../../godmode/reporting/visual_console_builder.wizard.php:476 -msgid "Set Parent" -msgstr "Establecer padre" +#: ../../operation/users/user_edit.php:300 +msgid "Current password" +msgstr "ContraseƱa actual" -#: ../../godmode/reporting/visual_console_builder.wizard.php:479 -msgid "Item created in the visualmap" -msgstr "Elemento creado en el mapa visual" +#: ../../operation/users/user_edit.php:302 +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" -#: ../../godmode/reporting/visual_console_builder.wizard.php:480 -msgid "Use the agents relationship (from selected agents)" -msgstr "Usar la relaciĆ³n entre agentes (de los agentes seleccionados)" - -#: ../../godmode/reporting/visual_console_builder.wizard.php:489 -msgid "Item in the map" -msgstr "Elemento en el mapa" - -#: ../../godmode/reporting/visual_console_builder.wizard.php:490 -#, php-format -msgid "The parenting relationships in %s will be drawn on the map." -msgstr "Las relaciones de jerarquĆ­a de %s se muestran en el mapa." - -#: ../../godmode/reporting/visual_console_builder.wizard.php:510 -#: ../../godmode/reporting/visual_console_builder.wizard.php:514 -msgid "Are you sure to add many elements\\nin visual map?" +#: ../../operation/users/user_edit.php:317 +msgid "If checkbox is clicked then block size global configuration is used" msgstr "" -"ĀæEstĆ”s seguro de que quieres aƱadir tantos elementos en la consola visual?" - -#: ../../godmode/reporting/visual_console_builder.wizard.php:686 -msgid "Please select any module or modules." -msgstr "Por favor, selecciona cualquier mĆ³dulo o mĆ³dulos." - -#: ../../godmode/menu.php:41 -msgid "Network scan" -msgstr "Escaneado de red" - -#: ../../godmode/menu.php:43 -msgid "Custom network scan" -msgstr "Escaneo de red personalizado" - -#: ../../godmode/menu.php:47 -msgid "Manage scan scripts" -msgstr "Gestionar guiones de escaneo" - -#: ../../godmode/menu.php:50 ../../godmode/wizards/HostDevices.class.php:204 -msgid "Host & devices" -msgstr "Host & devices" - -#: ../../godmode/menu.php:83 -msgid "Module categories" -msgstr "CategorĆ­as de mĆ³dulos" - -#: ../../godmode/menu.php:87 -msgid "Module types" -msgstr "Tipos de mĆ³dulos" - -#: ../../godmode/menu.php:97 ../../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 -msgid "Netflow filters" -msgstr "Filtros Netflow" - -#: ../../godmode/menu.php:103 ../../godmode/agentes/configurar_agente.php:818 -#: ../../godmode/agentes/configurar_agente.php:840 -#: ../../godmode/agentes/modificar_agente.php:104 -msgid "Resources" -msgstr "Recursos" - -#: ../../godmode/menu.php:111 -msgid "Manage agents groups" -msgstr "ConfiguraciĆ³n de grupos de agentes" - -#: ../../godmode/menu.php:149 ../../godmode/wizards/HostDevices.class.php:1077 -#: ../../godmode/agentes/configurar_agente.php:438 -msgid "Module templates" -msgstr "Plantillas de mĆ³dulos" - -#: ../../godmode/menu.php:155 -msgid "Remote components" -msgstr "Componentes remotos" - -#: ../../godmode/menu.php:188 ../../godmode/massive/massive_operations.php:257 -msgid "Agents operations" -msgstr "Operaciones sobre agentes" - -#: ../../godmode/menu.php:189 ../../godmode/massive/massive_operations.php:269 -msgid "Modules operations" -msgstr "Operaciones sobre mĆ³dulos" - -#: ../../godmode/menu.php:190 ../../godmode/massive/massive_operations.php:281 -msgid "Plugins operations" -msgstr "Operaciones de plugins" - -#: ../../godmode/menu.php:192 ../../godmode/massive/massive_operations.php:245 -msgid "Users operations" -msgstr "Operaciones sobre usuarios" - -#: ../../godmode/menu.php:195 ../../godmode/massive/massive_operations.php:233 -msgid "Alerts operations" -msgstr "Operaciones sobre alertas" - -#: ../../godmode/menu.php:205 ../../godmode/groups/group_list.php:349 -msgid "Credential store" -msgstr "AlmacĆ©n de credenciales" - -#: ../../godmode/menu.php:225 -msgid "List of Alerts" -msgstr "Lista de alertas" - -#: ../../godmode/menu.php:240 ../../godmode/menu.php:241 -msgid "Special days list" -msgstr "Lista de dĆ­as especiales" +"Si se marca la casilla, se usarĆ” el tamaƱo de bloque de la configuraciĆ³n global." -#: ../../godmode/menu.php:245 -msgid "SNMP alerts" -msgstr "Alertas SNMP" +#: ../../operation/users/user_edit.php:411 +msgid "This change will only apply to nodes" +msgstr "Este cambio solo se aplicarĆ” a los nodos" -#: ../../godmode/menu.php:257 -msgid "Event filters" +#: ../../operation/users/user_edit.php:448 +msgid "Event filter" msgstr "Filtro de eventos" -#: ../../godmode/menu.php:262 -msgid "Custom events" -msgstr "Eventos personalizados" +#: ../../operation/users/user_edit.php:519 +msgid "Autorefresh" +msgstr "ActualizaciĆ³n automĆ”tica" -#: ../../godmode/menu.php:285 -msgid "Manage servers" -msgstr "Gestionar servidores" +#: ../../operation/users/user_edit.php:520 +msgid "This will activate autorefresh in selected pages" +msgstr "Esto activarĆ” la actualizaciĆ³n automĆ”tica en las pĆ”ginas seleccionadas." -#: ../../godmode/menu.php:296 -msgid "Register Plugin" -msgstr "Registrar Plugin" +#: ../../operation/users/user_edit.php:555 +msgid "Full list of pages" +msgstr "Lista completa de pĆ”ginas" -#: ../../godmode/menu.php:358 -msgid "Websocket Engine" -msgstr "Websocket Engine" +#: ../../operation/users/user_edit.php:564 ../../operation/users/user_edit.php:565 +msgid "Push selected pages into autorefresh list" +msgstr "AƱadir las pĆ”ginas seleccionadas a la lista de actualizaciĆ³n automĆ”tica" -#: ../../godmode/menu.php:392 -msgid "Diagnostic info" -msgstr "InformaciĆ³n de diagnĆ³stico" +#: ../../operation/users/user_edit.php:573 ../../operation/users/user_edit.php:574 +msgid "Pop selected pages out of autorefresh list" +msgstr "Quitar las pĆ”ginas seleccionadas de la lista de actualizaciĆ³n automĆ”tica" -#: ../../godmode/menu.php:397 -msgid "Site news" -msgstr "Noticias del sistema" +#: ../../operation/users/user_edit.php:579 +msgid "List of pages with autorefresh" +msgstr "Lista de pĆ”ginas con actualizaciĆ³n automĆ”tica" -#: ../../godmode/menu.php:403 -msgid "DB Schema Check" -msgstr "ComprobaciĆ³n del esquema de la BD" +#: ../../operation/users/user_edit.php:588 +msgid "Time autorefresh" +msgstr "Tiempo de actualizaciĆ³n automĆ”tica" -#: ../../godmode/menu.php:406 -msgid "DB Interface" -msgstr "Interfaz de la BBDD" - -#: ../../godmode/menu.php:493 -msgid "Extension manager view" -msgstr "Vista del gestor de extensiones" - -#: ../../godmode/menu.php:497 -msgid "Extension manager" -msgstr "Gestor de extensiĆ³n" - -#: ../../godmode/menu.php:533 -msgid "Update offline" -msgstr "Actualizar sin conexiĆ³n" - -#: ../../godmode/menu.php:536 -msgid "Update online" -msgstr "Actualizar en lĆ­nea" - -#: ../../godmode/menu.php:542 -msgid "Warp journal" -msgstr "Diario Warp" - -#: ../../godmode/menu.php:550 -#: ../../godmode/module_library/module_library_view.php:81 -msgid "Module library" -msgstr "LibrerĆ­a de mĆ³dulos" - -#: ../../godmode/menu.php:557 -#: ../../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/snmpconsole/snmp_alert.php:100 -msgid "Alert overview" -msgstr "Vista general de alertas" - -#: ../../godmode/snmpconsole/snmp_alert.php:293 -msgid "There was a problem creating the alert" -msgstr "Hubo un problema al crear la alerta" - -#: ../../godmode/snmpconsole/snmp_alert.php:435 -msgid "There was a problem updating the alert" -msgstr "Hubo un problema al actualizar la alerta" - -#: ../../godmode/snmpconsole/snmp_alert.php:637 -#: ../../godmode/snmpconsole/snmp_alert.php:656 -msgid "There was a problem duplicating the alert" -msgstr "Hubo un problema al duplicar la alerta" - -#: ../../godmode/snmpconsole/snmp_alert.php:646 -msgid "Successfully Duplicate" -msgstr "Duplicada correctamente" - -#: ../../godmode/snmpconsole/snmp_alert.php:677 -msgid "There was a problem deleting the alert" -msgstr "Error al borrar la alerta" - -#: ../../godmode/snmpconsole/snmp_alert.php:774 -msgid "Matches substrings. End the string with $ for exact matches." -msgstr "" -"Coincide con las subcadenas. Escriba $ al final de la cadena para encontrar " -"coincidencias exactas." - -#: ../../godmode/snmpconsole/snmp_alert.php:842 -#: ../../godmode/snmpconsole/snmp_alert.php:852 -#: ../../godmode/snmpconsole/snmp_alert.php:862 -#: ../../godmode/snmpconsole/snmp_alert.php:872 -#: ../../godmode/snmpconsole/snmp_alert.php:882 -#: ../../godmode/snmpconsole/snmp_alert.php:892 -#: ../../godmode/snmpconsole/snmp_alert.php:902 -#: ../../godmode/snmpconsole/snmp_alert.php:912 -#: ../../godmode/snmpconsole/snmp_alert.php:922 -#: ../../godmode/snmpconsole/snmp_alert.php:932 -#: ../../godmode/snmpconsole/snmp_alert.php:942 -#: ../../godmode/snmpconsole/snmp_alert.php:952 -#: ../../godmode/snmpconsole/snmp_alert.php:962 -#: ../../godmode/snmpconsole/snmp_alert.php:972 -#: ../../godmode/snmpconsole/snmp_alert.php:982 -#: ../../godmode/snmpconsole/snmp_alert.php:992 -#: ../../godmode/snmpconsole/snmp_alert.php:1002 -#: ../../godmode/snmpconsole/snmp_alert.php:1012 -#: ../../godmode/snmpconsole/snmp_alert.php:1022 -#: ../../godmode/snmpconsole/snmp_alert.php:1032 -msgid "Variable bindings/Data" -msgstr "Enlaces variables/Datos" - -#: ../../godmode/snmpconsole/snmp_alert.php:1162 +#: ../../operation/users/user_edit.php:590 msgid "" -"Search by these fields description, OID, Custom Value, SNMP Agent (IP), Single " -"value, each Variable bindings/Datas." +"Interval of autorefresh of the elements, by default they are 30 seconds, needing to " +"enable the autorefresh first" msgstr "" -"BĆŗsqueda por estos campos de descripciĆ³n: OID, Valor personalizado, Agente " -"SNMP (IP), Valor individual, cada Enlace Variable/Datos." +"Intervalo de auto refresco de los elementos, 30 segundos por defecto, pero debe " +"habilitar primero el auto refresco." -#: ../../godmode/snmpconsole/snmp_alert.php:1180 -msgid "Alert SNMP control filter" -msgstr "Filtro de control de alerta SNMP" +#: ../../operation/users/user_edit.php:685 +msgid "eHorus user configuration" +msgstr "ConfiguraciĆ³n de usuario eHorus" -#: ../../godmode/snmpconsole/snmp_alert.php:1232 -msgid "There are no SNMP alerts" -msgstr "Ninguna alerta SNMP definida" - -#: ../../godmode/snmpconsole/snmp_alert.php:1266 -msgid "Custom Value/Enterprise String" -msgstr "Valor personalizado/Cadena Enterprise" - -#: ../../godmode/snmpconsole/snmp_alert.php:1271 -msgid "TF." -msgstr "TF." - -#: ../../godmode/snmpconsole/snmp_alert.php:1427 -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?" - -#: ../../godmode/snmpconsole/snmp_alert.php:1561 -msgid "Do you want delete the selected alerts?" -msgstr "ĀæDesea eliminar las alertas seleccionadas?" - -#: ../../godmode/snmpconsole/snmp_alert.php:1671 -msgid "Add action " -msgstr "AƱadir acciĆ³n " - -#: ../../godmode/snmpconsole/snmp_filters.php:41 -msgid "Filter overview" -msgstr "RevisiĆ³n del filtro" - -#: ../../godmode/snmpconsole/snmp_filters.php:108 -msgid "There was a problem updating the filter" -msgstr "Error al actualizar el filtro" - -#: ../../godmode/snmpconsole/snmp_filters.php:126 -#: ../../godmode/snmpconsole/snmp_filters.php:152 -msgid "Description is empty" -msgstr "La descripciĆ³n estĆ” vacĆ­a" - -#: ../../godmode/snmpconsole/snmp_filters.php:129 -msgid "Filter is empty" -msgstr "El filtro estĆ” vacĆ­o" - -#: ../../godmode/snmpconsole/snmp_filters.php:149 -msgid "Filters are empty" -msgstr "Los filtros estĆ”n vacĆ­os" - -#: ../../godmode/snmpconsole/snmp_filters.php:159 -msgid "There was a problem creating the filter" -msgstr "Error al crear el filtro" - -#: ../../godmode/snmpconsole/snmp_filters.php:178 -msgid "There was a problem deleting the filter" -msgstr "Error al borrar el filtro" - -#: ../../godmode/snmpconsole/snmp_filters.php:221 -#: ../../godmode/snmpconsole/snmp_filters.php:231 -msgid "" -"This field contains a substring, could be part of a IP address, a numeric OID, " -"or a plain substring" -msgstr "" -"Este campo contiene una subcadena que podrĆ­a ser parte de una direcciĆ³n IP, un " -"OID numĆ©rico o una subcadena simple." - -#: ../../godmode/snmpconsole/snmp_filters.php:223 -msgid "Click to remove the filter" -msgstr "Haz clic para quitar el filtro" - -#: ../../godmode/snmpconsole/snmp_filters.php:254 -#: ../../godmode/snmpconsole/snmp_filters.php:255 -msgid "Click to add new filter" -msgstr "Haz clic para aƱadir filtro nuevo" - -#: ../../godmode/snmpconsole/snmp_trap_generator.php:38 -msgid "SNMP Trap generator" -msgstr "Generador de traps SNMP" - -#: ../../godmode/snmpconsole/snmp_trap_generator.php:68 -msgid "Empty parameters" -msgstr "ParĆ”metros vacĆ­os" - -#: ../../godmode/snmpconsole/snmp_trap_generator.php:74 -msgid "Successfully generated" -msgstr "Generado correctamente" - -#: ../../godmode/snmpconsole/snmp_trap_generator.php:75 -#, php-format -msgid "Could not be generated: %s" -msgstr "No se pudo generar: %s" - -#: ../../godmode/snmpconsole/snmp_trap_generator.php:85 -msgid "Host address" -msgstr "DirecciĆ³n del host" - -#: ../../godmode/snmpconsole/snmp_trap_generator.php:135 -msgid "SNMP Type" -msgstr "Tipo de SNMP" - -#: ../../godmode/snmpconsole/snmp_trap_generator.php:168 -msgid "Generate trap" -msgstr "Generar trap" - -#: ../../godmode/tag/edit_tag.php:57 ../../godmode/tag/edit_tag.php:75 -#: ../../godmode/tag/tag.php:140 -msgid "List tags" -msgstr "Listar etiquetas" - -#: ../../godmode/tag/edit_tag.php:85 ../../godmode/tag/tag.php:152 -msgid "Tags configuration" -msgstr "ConfiguraciĆ³n de etiquetas" - -#: ../../godmode/tag/edit_tag.php:128 -msgid "Successfully updated tag" -msgstr "Etiqueta actualizada correctamente" - -#: ../../godmode/tag/edit_tag.php:129 -msgid "Error updating tag" -msgstr "Error al actualizar la etiqueta" - -#: ../../godmode/tag/edit_tag.php:169 -msgid "Successfully created tag" -msgstr "Etiqueta creada correctamente" - -#: ../../godmode/tag/edit_tag.php:170 -msgid "Error creating tag" -msgstr "Error al crear etiqueta" - -#: ../../godmode/tag/edit_tag.php:201 -msgid "Update Tag" -msgstr "Actualizar etiqueta" - -#: ../../godmode/tag/edit_tag.php:205 -msgid "Create Tag" -msgstr "Crear etiqueta" - -#: ../../godmode/tag/edit_tag.php:229 -msgid "Hyperlink to help information that has to exist previously." -msgstr "HipervĆ­nculo a la informaciĆ³n de ayuda que debe existir previamente" - -#: ../../godmode/tag/edit_tag.php:241 -msgid "Associated Email direction to use later in alerts associated to Tags." -msgstr "" -"Direccion de email asociada para utilizarla despuĆ©s en alertas asociadas a " -"etiquetas" - -#: ../../godmode/tag/edit_tag.php:251 ../../godmode/tag/tag.php:282 -msgid "Phone" -msgstr "TelĆ©fono" - -#: ../../godmode/tag/edit_tag.php:253 -msgid "Associated phone number to use later in alerts associated to Tags." -msgstr "" -"NĆŗmero de telĆ©fono asociado para usar posteriormente en alertas asociadas a " -"etiquetas" - -#: ../../godmode/tag/tag.php:117 -msgid "Number of modules" -msgstr "NĆŗmero de mĆ³dulos" - -#: ../../godmode/tag/tag.php:119 -msgid "Number of policy modules" -msgstr "NĆŗmero de mĆ³dulos de polĆ­tica" - -#: ../../godmode/tag/tag.php:178 -msgid "Successfully deleted tag" -msgstr "Etiqueta eliminada correctamente" - -#: ../../godmode/tag/tag.php:179 -msgid "Error deleting tag" -msgstr "Error al eliminar la etiqueta" - -#: ../../godmode/tag/tag.php:195 -#, php-format -msgid "" -"This node is configured with centralized mode. All tags information is read " -"only. Go to %s to manage it." -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/tag/tag.php:277 -msgid "Tag name" -msgstr "Nombre de etiqueta" - -#: ../../godmode/tag/tag.php:279 -msgid "Detail information" -msgstr "InformaciĆ³n de los detalles" - -#: ../../godmode/tag/tag.php:280 -msgid "Number of modules affected" -msgstr "NĆŗmero de mĆ³dulos afectados" - -#: ../../godmode/tag/tag.php:311 -msgid "Tag details" -msgstr "Detalles de la etiqueta" - -#: ../../godmode/tag/tag.php:344 -#, php-format -msgid "Emails for the tag: %s" -msgstr "Correos para la etiqueta: %s" - -#: ../../godmode/tag/tag.php:367 -#, php-format -msgid "Phones for the tag: %s" -msgstr "TelĆ©fonos par la etiqueta: %s" - -#: ../../godmode/tag/tag.php:413 -msgid "No tags defined" -msgstr "Etiquetas no definidas" - -#: ../../godmode/tag/tag.php:428 -msgid "Create tag" -msgstr "Crear etiqueta" - -#: ../../godmode/events/event_edit_filter.php:249 -msgid "Update Filter" -msgstr "Actualizar el filtro" - -#: ../../godmode/events/event_edit_filter.php:251 -msgid "Create Filter" -msgstr "Crear filtro" - -#: ../../godmode/events/event_edit_filter.php:264 -msgid "Save in group" -msgstr "Guardar en grupo" - -#: ../../godmode/events/event_edit_filter.php:264 -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:414 -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:636 -msgid "Custom data filter type" -msgstr "Tipo de filtro de datos personalizado" - -#: ../../godmode/events/event_edit_filter.php:639 -msgid "Filter custom data by name field" -msgstr "Filtrar datos personalizados por campo de nombre" - -#: ../../godmode/events/event_edit_filter.php:640 -msgid "Filter custom data by value field" -msgstr "Filtrar datos personalizados por campo de valor" - -#: ../../godmode/events/event_edit_filter.php:654 -msgid "Id souce event" -msgstr "Evento de origen de ID" - -#: ../../godmode/events/event_responses.editor.php:73 -msgid "Edit event responses" -msgstr "Editar respuestas de eventos" - -#: ../../godmode/events/event_responses.editor.php:123 -msgid "For Command type Modal Window mode is enforced" -msgstr "Para tipo comando, se aplica el modo ventana modal" - -#: ../../godmode/events/event_responses.editor.php:125 -msgid "Modal window" -msgstr "Ventana modal" - -#: ../../godmode/events/event_responses.editor.php:126 -msgid "New window" -msgstr "Nueva ventana" - -#: ../../godmode/events/event_responses.editor.php:198 -msgid "Command timeout (s)" -msgstr "LĆ­mite(s) de tiempo del comando" - -#: ../../godmode/events/event_responses.editor.php:204 -msgid "Display command" -msgstr "Mostrar comando" - -#: ../../godmode/events/event_responses.editor.php:204 -msgid "" -"If enabled the command will be displayed to any user that can execute this " -"event response" -msgstr "" -"Si estĆ” habilitado, el comando se mostrarĆ” a cualquier usuario que pueda " -"ejecutar esta respuesta de evento" - -#: ../../godmode/events/custom_events.php:76 -msgid "Load the fields from previous events" -msgstr "Cargar los archivos de eventos previos" - -#: ../../godmode/events/custom_events.php:76 -msgid "Event fields will be loaded. Do you want to continue?" -msgstr "Se cargarĆ”n los archivos de eventos. ĀæDeseas continuar?" - -#: ../../godmode/events/custom_events.php:97 -msgid "Agent Name" -msgstr "Nombre de agente" - -#: ../../godmode/events/event_responses.php:51 -msgid "Response added succesfully" -msgstr "Respuesta aƱadida correctamente" - -#: ../../godmode/events/event_responses.php:53 -msgid "Response cannot be added" -msgstr "La respuesta no se puede aƱadir." - -#: ../../godmode/events/event_responses.php:77 -msgid "Response updated succesfully" -msgstr "Repuesta actualizada correctamente" - -#: ../../godmode/events/event_responses.php:79 -msgid "Response cannot be updated" -msgstr "La respuesta no se puede actualizar." - -#: ../../godmode/events/event_responses.php:89 -msgid "Response deleted succesfully" -msgstr "Respuesta eliminada correctamente" - -#: ../../godmode/events/event_responses.php:91 -msgid "Response cannot be deleted" -msgstr "La respuesta no se puede eliminar." - -#: ../../godmode/events/event_responses.list.php:32 -msgid "No responses found" -msgstr "No se encontraron respuestas" - -#: ../../godmode/events/event_responses.list.php:92 -msgid "Create response" -msgstr "Crear respuesta" - -#: ../../godmode/events/events.php:54 ../../godmode/netflow/nf_edit_form.php:53 -msgid "Filter list" -msgstr "Lista de filtros" - -#: ../../godmode/events/event_filter.php:215 -#: ../../godmode/netflow/nf_edit.php:212 -msgid "There are no defined filters" -msgstr "No hay filtros definidos" - -#: ../../godmode/db/db_main.php:74 -msgid "Current database maintenance setup" -msgstr "ConfiguraciĆ³n actual del mantenimiento de la BD" - -#: ../../godmode/db/db_main.php:80 -msgid "Database setup" -msgstr "ConfiguraciĆ³n de la base de datos" - -#: ../../godmode/db/db_main.php:84 -msgid "Max. time before compact data" -msgstr "MĆ”x. dĆ­as antes de comprimir datos" - -#: ../../godmode/db/db_main.php:90 -msgid "Max. time before purge" -msgstr "MĆ”x. dĆ­as antes de purga de datos" - -#: ../../godmode/db/db_main.php:114 -msgid "Total data items (tagente_datos)" -msgstr "Total de elementos de datos (tagente_datos)" - -#: ../../godmode/db/db_main.php:127 -msgid "Total log4x items (tagente_datos_log4x)" -msgstr "Total elementos Log4x (tagente_datos_log4x)" - -#: ../../godmode/db/db_main.php:140 -msgid "Total data string items (tagente_datos_string)" -msgstr "Total de elementos de cadenas de datos (tagente_datos_string)" - -#: ../../godmode/db/db_main.php:146 -msgid "Total modules configured" -msgstr "MĆ³dulos totales configurados" - -#: ../../godmode/db/db_main.php:154 -msgid "Total agent access records" -msgstr "Total de registros de acceso del agente" - -#: ../../godmode/db/db_main.php:166 -msgid "Database sanity" -msgstr "Estado de la BD" - -#: ../../godmode/db/db_main.php:170 -msgid "Total uknown agents" -msgstr "Total de agentes desconocidos" - -#: ../../godmode/db/db_main.php:176 -msgid "Total non-init modules" -msgstr "Total de mĆ³dulos no iniciados" - -#: ../../godmode/db/db_main.php:185 -msgid "Last time on DB maintance" -msgstr "ƚltima vez en mantenimiento de base de datos" - -#: ../../godmode/db/db_main.php:208 -#, php-format -msgid "" -"Please make sure your %s Server settings are correct and that the database " -"maintenance daemon is running. It's very important to keep your database up to " -"date in order to get the best performance and results from %s." -msgstr "" -"AsegĆŗrese de que la configuraciĆ³n del servidor de %s es correcta y que el " -"demonio de mantenimiento de la base de datos estĆ” en ejecuciĆ³n. Es muy " -"importante tener la base de datos actualizada para que el funcionamiento y los " -"resultados de %s sean Ć³ptimos." - -#: ../../godmode/netflow/nf_edit.php:38 -msgid "Manage Netflow Filter" -msgstr "Filtro de gestiĆ³n Netflow" - -#: ../../godmode/netflow/nf_edit_form.php:55 -#: ../../godmode/netflow/nf_edit_form.php:77 -msgid "Add filter" -msgstr "AƱadir filtro" - -#: ../../godmode/netflow/nf_edit_form.php:58 -msgid "Netflow Filter" -msgstr "Filtro Netflow" - -#: ../../godmode/netflow/nf_edit_form.php:235 -msgid "Filter:" -msgstr "Filtrar:" - -#: ../../godmode/netflow/nf_item_list.php:30 -#: ../../godmode/netflow/nf_item_list.php:38 -msgid "Report items" -msgstr "Elementos de informe" - -#: ../../godmode/netflow/nf_item_list.php:33 -msgid "Edit report" -msgstr "Editar informe" - -#: ../../godmode/netflow/nf_item_list.php:53 -msgid "Netflow reports" -msgstr "Informes Netflow" - -#: ../../godmode/netflow/nf_item_list.php:57 -msgid "Item list" -msgstr "Lista de elementos" - -#: ../../godmode/netflow/nf_item_list.php:277 -msgid "There are no defined items" -msgstr "No hay elementos definidos" - -#: ../../godmode/massive/massive_add_alerts.php:105 -#: ../../godmode/massive/massive_delete_alerts.php:108 -msgid "No alert selected" -msgstr "No se seleccionĆ³ ninguna alerta" - -#: ../../godmode/massive/massive_delete_modules.php:82 -msgid "No module selected" -msgstr "No se seleccionĆ³ ningĆŗn mĆ³dulo" - -#: ../../godmode/massive/massive_delete_modules.php:156 -msgid "There was an error deleting the modules, the operation has been cancelled" -msgstr "Hubo un error al borrar los mĆ³dulos, se cancelĆ³ la operaciĆ³n" - -#: ../../godmode/massive/massive_delete_modules.php:318 -#: ../../godmode/massive/massive_edit_modules.php:304 -msgid "Selection mode" -msgstr "Modo de selecciĆ³n" - -#: ../../godmode/massive/massive_delete_modules.php:319 -#: ../../godmode/massive/massive_edit_modules.php:305 -msgid "Select modules first " -msgstr "Seleccionar primero los mĆ³dulos " - -#: ../../godmode/massive/massive_delete_modules.php:320 -#: ../../godmode/massive/massive_edit_modules.php:306 -msgid "Select agents first " -msgstr "Seleccionar primero los agentes " - -#: ../../godmode/massive/massive_delete_modules.php:343 -#: ../../godmode/massive/massive_edit_modules.php:325 -msgid "Select all modules of this type" -msgstr "Seleccionar todos los mĆ³dulos de este tipo" - -#: ../../godmode/massive/massive_delete_modules.php:387 -#: ../../godmode/massive/massive_edit_modules.php:371 -msgid "Select all modules of this group" -msgstr "Seleccionar todos los mĆ³dulos de este grupo" - -#: ../../godmode/massive/massive_delete_modules.php:458 -#: ../../godmode/massive/massive_copy_modules.php:196 -#: ../../godmode/massive/massive_edit_modules.php:420 -msgid "Filter Modules" -msgstr "Filtrar mĆ³dulos" - -#: ../../godmode/massive/massive_delete_modules.php:477 -#: ../../godmode/massive/massive_edit_modules.php:436 -msgid "Select all modules" -msgstr "Seleccionar todos los mĆ³dulos" - -#: ../../godmode/massive/massive_delete_modules.php:479 -#: ../../godmode/massive/massive_edit_modules.php:438 -msgid "When select modules" -msgstr "Cuando se seleccionan mĆ³dulos" - -#: ../../godmode/massive/massive_delete_modules.php:483 -#: ../../godmode/massive/massive_edit_modules.php:442 -msgid "Show common agents" -msgstr "Mostrar agentes comunes" - -#: ../../godmode/massive/massive_delete_modules.php:484 -#: ../../godmode/massive/massive_edit_modules.php:443 -msgid "Show all agents" -msgstr "Mostrar todos los agentes" - -#: ../../godmode/massive/massive_delete_modules.php:530 -#: ../../godmode/massive/massive_copy_modules.php:292 -msgid "Filter Agents" -msgstr "Filtrar agentes" - -#: ../../godmode/massive/massive_delete_modules.php:549 -#: ../../godmode/massive/massive_edit_modules.php:522 -msgid "Select all agents" -msgstr "Seleccionar todos los agentes" - -#: ../../godmode/massive/massive_delete_modules.php:557 -#: ../../godmode/massive/massive_add_action_alerts.php:226 -#: ../../godmode/massive/massive_delete_action_alerts.php:247 -#: ../../godmode/massive/massive_edit_modules.php:530 -msgid "Show unknown and not init modules" -msgstr "Mostrar mĆ³dulos desconocidos y no iniciados" - -#: ../../godmode/massive/massive_delete_modules.php:595 -#: ../../godmode/massive/massive_edit_modules.php:1260 -msgid "Please, select an agent first" -msgstr "Primero seleccione un agente" - -#: ../../godmode/massive/massive_copy_modules.php:193 -msgid "Copy alerts" -msgstr "Copiar alertas" - -#: ../../godmode/massive/massive_copy_modules.php:230 -msgid "No alerts for this agent" -msgstr "Ninguna alerta para este agente" - -#: ../../godmode/massive/massive_copy_modules.php:309 -msgid "To agent(s)" -msgstr "A los agentes" - -#: ../../godmode/massive/massive_copy_modules.php:559 -msgid "No operation selected" -msgstr "No se seleccionĆ³ ninguna operaciĆ³n" - -#: ../../godmode/massive/massive_operations.php:59 -msgid "Bulk alert add" -msgstr "AƱadir alerta masiva" - -#: ../../godmode/massive/massive_operations.php:60 -msgid "Bulk alert delete" -msgstr "Eliminar alerta masiva" - -#: ../../godmode/massive/massive_operations.php:61 -msgid "Bulk alert actions add" -msgstr "AƱadir acciones de alerta masiva" - -#: ../../godmode/massive/massive_operations.php:62 -msgid "Bulk alert actions delete" -msgstr "Eliminar acciones de alerta masiva" - -#: ../../godmode/massive/massive_operations.php:63 -msgid "Bulk alert enable/disable" -msgstr "Habilitar/Deshabilitar alerta masiva" - -#: ../../godmode/massive/massive_operations.php:64 -msgid "Bulk alert setting standby" -msgstr "ConfiguraciĆ³n standby de alertas masivas" - -#: ../../godmode/massive/massive_operations.php:68 -msgid "Bulk agent edit" -msgstr "EdiciĆ³n agentes masiva" - -#: ../../godmode/massive/massive_operations.php:69 -#: ../../godmode/massive/massive_operations.php:73 -msgid "Bulk agent delete" -msgstr "Eliminar agentes de forma masiva" - -#: ../../godmode/massive/massive_operations.php:79 -msgid "Bulk profile add" -msgstr "AƱadir perfiles de forma masiva" - -#: ../../godmode/massive/massive_operations.php:80 -msgid "Bulk profile delete" -msgstr "Eliminar perfiles de forma masiva" - -#: ../../godmode/massive/massive_operations.php:87 -msgid "Bulk module edit" -msgstr "Editar mĆ³dulos de forma masiva" - -#: ../../godmode/massive/massive_operations.php:88 -msgid "Bulk module copy" -msgstr "Copiar mĆ³dulos de forma masiva" - -#: ../../godmode/massive/massive_operations.php:89 -msgid "Bulk module delete" -msgstr "Eliminar mĆ³dulos de forma masiva" - -#: ../../godmode/massive/massive_operations.php:93 -msgid "Bulk plugin edit" -msgstr "Editar plugins de forma masiva" - -#: ../../godmode/massive/massive_operations.php:389 -#, php-format -msgid "" -"No changes have been made because they exceed the maximum allowed (%d). Make " -"fewer changes or contact the administrator." -msgstr "" -"No se han hecho cambios porque exceden el mĆ”ximo permitido (%d). Haga menos " -"cambios o pĆ³ngase en contacto con el administrador." - -#: ../../godmode/massive/massive_operations.php:417 -#, php-format -msgid "This node is configured with centralized mode. To delete agents go to %s" -msgstr "" -"Este nodo estĆ” configurado en modo centralizado. Para eliminar un agente, vaya " -"a %s" - -#: ../../godmode/massive/massive_operations.php:440 -msgid "The blank fields will not be updated" -msgstr "Los campos en blanco no se actualizarĆ”n." - -#: ../../godmode/massive/massive_add_profiles.php:52 -#: ../../godmode/massive/massive_delete_profiles.php:52 -#, php-format -msgid "" -"This node is configured with centralized mode. All profiles user information " -"is read only. Go to %s to manage it." -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/massive/massive_add_profiles.php:184 -msgid "Profiles added successfully" -msgstr "Perfiles agregados correctamente" - -#: ../../godmode/massive/massive_add_profiles.php:185 -msgid "Profiles cannot be added" -msgstr "Los perfiles no se han podido agregar" - -#: ../../godmode/massive/massive_standby_alerts.php:223 -msgid "Not standby alerts" -msgstr "Alertas sin standby" - -#: ../../godmode/massive/massive_standby_alerts.php:252 -#: ../../godmode/massive/massive_standby_alerts.php:256 -msgid "Set standby selected alerts" -msgstr "Poner en standby las alertas seleccionadas" - -#: ../../godmode/massive/massive_standby_alerts.php:258 -msgid "Standby alerts" -msgstr "Alertas en standby" - -#: ../../godmode/massive/massive_add_action_alerts.php:134 -msgid "No alerts selected" -msgstr "No se seleccionĆ³ ninguna alerta" - -#: ../../godmode/massive/massive_add_action_alerts.php:166 -msgid "No actions selected" -msgstr "No hay acciones seleccionadas" - -#: ../../godmode/massive/massive_add_action_alerts.php:212 -#: ../../godmode/massive/massive_delete_action_alerts.php:230 -msgid "Agents with templates" -msgstr "Agentes con plantillas" - -#: ../../godmode/massive/massive_add_action_alerts.php:218 -#: ../../godmode/massive/massive_delete_action_alerts.php:239 -#: ../../godmode/alerts/alert_templates.php:131 -#: ../../godmode/alerts/alert_templates.php:183 -#: ../../godmode/alerts/alert_templates.php:206 -#: ../../godmode/alerts/alert_templates.php:227 -msgid "Alert templates" -msgstr "Plantillas de alertas" - -#: ../../godmode/massive/massive_edit_agents.php:176 -msgid "No values changed" -msgstr "No se han cambiado los valores." - -#: ../../godmode/massive/massive_edit_agents.php:227 -msgid "Configuration files deleted successfully" -msgstr "Los archivos de configuraciĆ³n se borraron correctamente." - -#: ../../godmode/massive/massive_edit_agents.php:228 -msgid "Configuration files cannot be deleted" -msgstr "Los archivos de configuraciĆ³n no se pudieron borrar." - -#: ../../godmode/massive/massive_edit_agents.php:420 -#, php-format -msgid "Agents updated successfully (%d)" -msgstr "Agentes actualizados correctamente (%d)" - -#: ../../godmode/massive/massive_edit_agents.php:435 -#, php-format -msgid "Agents cannot be updated (%d), ids (%s)" -msgstr "Los agentes no se pueden actualizar (%d), identificadores (%s)" - -#: ../../godmode/massive/massive_edit_agents.php:450 -#, php-format -msgid "Agent ID: %s cannot be updated custom fields (%s)" -msgstr "ID del agente: %s no se pueden actualizar los campos personalizados (%s)" - -#: ../../godmode/massive/massive_edit_agents.php:470 -#, php-format -msgid "Agent ID: %s cannot be updated %s secondary groups (%s)" -msgstr "ID de agente: %s no se puede actualizar %s grupos secundarios (%s)" - -#: ../../godmode/massive/massive_edit_agents.php:547 -#: ../../godmode/massive/massive_delete_agents.php:226 -msgid "Show agents" -msgstr "Mostrar agentes" - -#: ../../godmode/massive/massive_edit_agents.php:661 -#: ../../godmode/agentes/agent_manager.php:590 -msgid "Cascade protection" -msgstr "ProtecciĆ³n en cascada" - -#: ../../godmode/massive/massive_edit_agents.php:858 -#: ../../godmode/agentes/agent_manager.php:606 -msgid "Module definition" -msgstr "DefiniciĆ³n de mĆ³dulos" - -#: ../../godmode/massive/massive_edit_agents.php:870 -#: ../../godmode/agentes/agent_manager.php:611 -msgid "Learning mode" -msgstr "Modo de aprendizaje" - -#: ../../godmode/massive/massive_edit_agents.php:881 -#: ../../godmode/agentes/agent_manager.php:621 -msgid "Normal mode" -msgstr "Modo normal" - -#: ../../godmode/massive/massive_edit_agents.php:892 -#: ../../godmode/agentes/agent_manager.php:631 -msgid "Autodisable mode" -msgstr "Modo autodeshabilitado" - -#: ../../godmode/massive/massive_edit_agents.php:919 -msgid "" -"If the remote configuration is enabled, it will also go into standby mode when " -"disabling it." -msgstr "" -"Si la configuraciĆ³n remota estĆ” habilitada, tambiĆ©n entrarĆ” en modo de espera " -"cuando se deshabilite." - -#: ../../godmode/massive/massive_edit_agents.php:932 -msgid "Active" -msgstr "Activo" - -#: ../../godmode/massive/massive_edit_agents.php:948 -msgid "Delete available remote configurations" -msgstr "Borrar las configuraciones remotas disponibles" - -#: ../../godmode/massive/massive_edit_agents.php:980 -#: ../../godmode/agentes/agent_manager.php:695 -msgid "Agent icon" -msgstr "Icono de agente" - -#: ../../godmode/massive/massive_edit_agents.php:981 -msgid "Without status" -msgstr "Sin estado" - -#: ../../godmode/massive/massive_edit_agents.php:984 -#: ../../godmode/agentes/agent_conf_gis.php:124 -msgid "Ignore new GIS data:" -msgstr "Ignorar nuevos datos GIS:" - -#: ../../godmode/massive/massive_edit_agents.php:991 -msgid "The agent still runs but the alerts and events will be stop" -msgstr "El agente seguirĆ” ejecutĆ”ndose, pero las alertas y eventos se detendrĆ”n." - -#: ../../godmode/massive/massive_edit_agents.php:1006 -#: ../../godmode/agentes/agent_manager.php:518 -msgid "Safe operation mode" -msgstr "Modo seguro de operaciĆ³n" - -#: ../../godmode/massive/massive_edit_agents.php:1008 -#, php-format -msgid "" -"This mode allow %s to disable all modules \n" -"of this agent while the selected module is on CRITICAL status" -msgstr "" -"Este modo permite que %s deshabilite todos los mĆ³dulos \n" -"de este agente mientras el mĆ³dulo seleccionado estĆ© en estado CRƍTICO" - -#: ../../godmode/massive/massive_delete_profiles.php:133 -msgid "Profiles deleted successfully" -msgstr "Perfiles borrados correctamente" - -#: ../../godmode/massive/massive_delete_profiles.php:134 -msgid "Profiles cannot be deleted" -msgstr "No se pudieron borrar los perfiles." - -#: ../../godmode/massive/massive_delete_action_alerts.php:75 -msgid "Could not be deleted. No agents selected" -msgstr "No se puede borrar. NingĆŗn agente seleccionado" - -#: ../../godmode/massive/massive_delete_action_alerts.php:122 -msgid "Could not be deleted. No alerts selected" -msgstr "No se puede borrar. No hay alertas seleccionadas" - -#: ../../godmode/massive/massive_delete_action_alerts.php:181 -msgid "Could not be deleted. No action selected" -msgstr "No se puede eliminar. No hay acciones seleccionadas" - -#: ../../godmode/massive/massive_delete_alerts.php:307 -msgid "Show alerts on disabled modules" -msgstr "Mostrar alertas de mĆ³dulos deshabilitados" - -#: ../../godmode/massive/massive_delete_agents.php:122 -#, php-format -msgid "" -"There was an error deleting the agent, the operation has been cancelled Could " -"not delete agent %s" -msgstr "" -"Se produjo un error al eliminar el agente. La operaciĆ³n ha sido cancelada. No " -"se pudo eliminar el agente %s." - -#: ../../godmode/massive/massive_delete_agents.php:132 -#, php-format -msgid "Successfully deleted (%s)" -msgstr "Borrado correctamente (%s)" - -#: ../../godmode/massive/massive_edit_plugins.php:177 -msgid "Error retrieving the plugin macros" -msgstr "Error al recuperar las macros de plugin" - -#: ../../godmode/massive/massive_edit_plugins.php:185 -msgid "Error retrieving the modified macros" -msgstr "Error al recuperar las macros modificadas" - -#: ../../godmode/massive/massive_edit_plugins.php:208 -msgid "Error retrieving the module plugin macros" -msgstr "Error al recuperar las macros del mĆ³dulo de plugin" - -#: ../../godmode/massive/massive_edit_plugins.php:226 -msgid "Error retrieving the module plugin macros data" -msgstr "Error al recuperar los datos de las macros del mĆ³dulo de plugin" - -#: ../../godmode/massive/massive_edit_plugins.php:264 -msgid "Error building the new macros" -msgstr "Error al crear las nuevas macros" - -#: ../../godmode/massive/massive_edit_plugins.php:290 -#, php-format -msgid "%d modules updated" -msgstr "%d mĆ³dulos actualizados" - -#: ../../godmode/massive/massive_edit_plugins.php:321 -msgid "There are not registered plugins" -msgstr "No hay plugins registrados" - -#: ../../godmode/massive/massive_edit_plugins.php:464 -msgid "Invalid plugin data" -msgstr "Dato de plugin no vĆ”lido" - -#: ../../godmode/massive/massive_edit_plugins.php:571 -msgid "Clear" -msgstr "Vaciar" - -#: ../../godmode/massive/massive_edit_plugins.php:599 -msgid "Invalid macros array" -msgstr "Matriz de macros no vĆ”lida" - -#: ../../godmode/massive/massive_edit_plugins.php:624 -msgid "Multiple values" -msgstr "Valores mĆŗltiples" - -#: ../../godmode/massive/massive_edit_plugins.php:656 -#: ../../godmode/massive/massive_edit_plugins.php:792 -#: ../../godmode/massive/massive_edit_plugins.php:808 -msgid "Invalid agents array" -msgstr "Matriz de agentes no vĆ”lida" - -#: ../../godmode/massive/massive_edit_plugins.php:672 -msgid "Invalid agent element" -msgstr "Elemento de agente no vĆ”lido" - -#: ../../godmode/massive/massive_edit_plugins.php:683 -msgid "Invalid modules array" -msgstr "Matriz de mĆ³dulos no vĆ”lida" - -#: ../../godmode/massive/massive_edit_plugins.php:711 -msgid "Invalid module element" -msgstr "Elemento de mĆ³dulo no vĆ”lido" - -#: ../../godmode/massive/massive_edit_plugins.php:920 -msgid "There are no modules using this plugin" -msgstr "NingĆŗn mĆ³dulo estĆ” usando este plugin" - -#: ../../godmode/massive/massive_edit_plugins.php:1005 -msgid "There was a problem loading the module plugin macros data" -msgstr "" -"SurgiĆ³ un problema al cargar los datos de las macros del mĆ³dulo de plugin." - -#: ../../godmode/massive/massive_enable_disable_alerts.php:195 -msgid "Enabled alerts" -msgstr "Alertas activadas" - -#: ../../godmode/massive/massive_enable_disable_alerts.php:224 -msgid "Disable selected alerts" -msgstr "Desactivar alertas seleccionadas" - -#: ../../godmode/massive/massive_enable_disable_alerts.php:228 -msgid "Enable selected alerts" -msgstr "Activar alertas seleccionadas" - -#: ../../godmode/massive/massive_enable_disable_alerts.php:230 -msgid "Disabled alerts" -msgstr "Deshabilitar alertas" - -#: ../../godmode/massive/massive_edit_modules.php:137 -msgid "Error updating the modules from a module type" -msgstr "Error al actualizar los mĆ³dulos desde un tipo de mĆ³dulos" - -#: ../../godmode/massive/massive_edit_modules.php:160 -msgid "Error updating the modules from an agent group" -msgstr "Error al actualizar los mĆ³dulos desde un grupo de agentes" - -#: ../../godmode/massive/massive_edit_modules.php:178 -msgid "Error updating the modules (maybe there was no field to update)" -msgstr "" -"Error al actualizar los mĆ³dulos (puede que no hubiera ningĆŗn campo para " -"actualizar)" - -#: ../../godmode/wizards/HostDevices.class.php:152 -msgid "Net Scan" -msgstr "Net Scan" - -#: ../../godmode/wizards/HostDevices.class.php:172 -msgid "Custom NetScan" -msgstr "NetScan personalizado" - -#: ../../godmode/wizards/HostDevices.class.php:180 -msgid "Manage NetScan scripts" -msgstr "Administrar guiones de NetScan" - -#: ../../godmode/wizards/HostDevices.class.php:325 -#, php-format -msgid "Invalid mimetype for csv file: %s" -msgstr "Mimetype no vĆ”lido para el archivo CSV: %s" - -#: ../../godmode/wizards/HostDevices.class.php:348 -#, php-format -msgid "Invalid content readed from csv file: %s" -msgstr "Lector de contenido del archivo CSV no vĆ”lido: %s" - -#: ../../godmode/wizards/HostDevices.class.php:391 -msgid "" -"This network scan task has been already defined. Please edit it or create a " -"new one." -msgstr "" -"Esta tarea de escaneo de red ya ha sido definida, EdĆ­tela o cree una nueva." - -#: ../../godmode/wizards/HostDevices.class.php:433 -msgid "You must provide a valid network." -msgstr "AƱada una red vĆ”lida." - -#: ../../godmode/wizards/HostDevices.class.php:700 -#, php-format -msgid "\"%s\" features" -msgstr "Funcionalidades \"%s\"" - -#: ../../godmode/wizards/HostDevices.class.php:868 -msgid "Use CSV file definition" -msgstr "Usar definiciĆ³n del archivo CSV" - -#: ../../godmode/wizards/HostDevices.class.php:869 -msgid "Define targets using csv o network definition." -msgstr "Definir objetivos utilizando la definiciĆ³n de CSV o red." - -#: ../../godmode/wizards/HostDevices.class.php:887 -msgid "Networks (csv)" -msgstr "Redes (CSV)" - -#: ../../godmode/wizards/HostDevices.class.php:888 -msgid "" -"You can upload a CSV file. Each line must contain a network in IP/MASK format. " -"For instance: 192.168.1.1/32" -msgstr "" -"Puede subir un archivo CSV. Cada lĆ­nea debe contener una red en formato IP/" -"MASK. Por ejemplo: 192.168.1.1/32" - -#: ../../godmode/wizards/HostDevices.class.php:900 -msgid "Networks (current)" -msgstr "Redes (actual)" - -#: ../../godmode/wizards/HostDevices.class.php:901 -msgid "Please upload a new file to overwrite this content." -msgstr "Sube un nuevo archivo para sobrescribir este contenido." - -#: ../../godmode/wizards/HostDevices.class.php:917 -msgid "" -"You can specify several networks, separated by commas, for example: " -"192.168.50.0/24,192.168.60.0/24" -msgstr "" -"Puedes especificar varias redes, separadas por comas, por ejemplo: " -"192.168.50.0/24,192.168.60.0/24" - -#: ../../godmode/wizards/HostDevices.class.php:1047 -msgid "Filter by opened ports" -msgstr "Filtrar por puertos abiertos" - -#: ../../godmode/wizards/HostDevices.class.php:1049 -msgid "" -"Targets will be scanned if at least one of defined ports (comma separated) is " -"open." -msgstr "" -"Los objetivos se escanearĆ”n si al menos uno de los puertos definidos " -"(separados por comas) estĆ” abierto." - -#: ../../godmode/wizards/HostDevices.class.php:1062 -msgid "Auto discover known hardware" -msgstr "Auto descubrir el hardware conocido" - -#: ../../godmode/wizards/HostDevices.class.php:1064 -msgid "" -"Targets will be monitorized based on its Private Enterprise Number. " -"Requires SNMP." -msgstr "" -"Los objetivos se monitorizarĆ”n en base a su NĆŗmero de empresa privado. " -"Precisa de SNMP." - -#: ../../godmode/wizards/HostDevices.class.php:1079 -msgid "Module Host Alive will be added to discovered agents by default." -msgstr "" -"El mĆ³dulo Host Alive se aƱadirĆ” a los agentes descubiertos por defecto." - -#: ../../godmode/wizards/HostDevices.class.php:1127 -#, php-format -msgid "" -"Configured networks could generate %d agents, your license only allows %d, " -"'review results' is mandatory." -msgstr "" -"Las redes configuradas pueden generar %d agentes, su licencia solo permite %d, " -"'revisar resultados' es obligatorio." - -#: ../../godmode/wizards/HostDevices.class.php:1135 -#: ../../godmode/wizards/DiscoveryTaskList.class.php:908 -msgid "Review results" -msgstr "Revisar resultados" - -#: ../../godmode/wizards/HostDevices.class.php:1137 -msgid "Targets must be validated by user before create agents." -msgstr "El usuario debe validar los objetivos antes de crear agentes" - -#: ../../godmode/wizards/HostDevices.class.php:1163 -msgid "Apply autoconfiguration rules" -msgstr "Aplicar normas de autoconfiguraciĆ³n" - -#: ../../godmode/wizards/HostDevices.class.php:1165 -msgid "" -"System is able to auto configure detected host & devices by applying your " -"defined configuration rules." -msgstr "" -"El sistema puede auto configurar el host y los dispositivos detectados " -"aplicando las normas de configuraciĆ³n." - -#: ../../godmode/wizards/HostDevices.class.php:1181 -msgid "SNMP enabled" -msgstr "SNMP activado" - -#: ../../godmode/wizards/HostDevices.class.php:1223 -msgid "SNMP communities to try with" -msgstr "Comunidades SNMP con las que probar" - -#: ../../godmode/wizards/HostDevices.class.php:1225 -msgid "" -"You can specify several values, separated by commas, for example: public," -"mysecret,1234" -msgstr "" -"Puede especificar varios valores, separados por coma, por ejemplo: public," -"mysecret,1234" - -#: ../../godmode/wizards/HostDevices.class.php:1353 -msgid "OS detection" -msgstr "DetecciĆ³n de SO" - -#: ../../godmode/wizards/HostDevices.class.php:1365 -msgid "Name resolution" -msgstr "ResoluciĆ³n de nombres" - -#: ../../godmode/wizards/HostDevices.class.php:1376 -msgid "Parent detection" -msgstr "DetecciĆ³n de padres" - -#: ../../godmode/wizards/HostDevices.class.php:1387 -msgid "Parent recursion" -msgstr "RecursiĆ³n del padre" - -#: ../../godmode/wizards/HostDevices.class.php:1398 -msgid "VLAN enabled" -msgstr "VLAN habilitada" - -#: ../../godmode/wizards/HostDevices.class.php:1409 -msgid "WMI enabled" -msgstr "WMI habilitado" - -#: ../../godmode/wizards/DiscoveryTaskList.class.php:254 -msgid "Task successfully deleted" -msgstr "Tarea eliminada" - -#: ../../godmode/wizards/DiscoveryTaskList.class.php:361 -#: ../../godmode/wizards/DiscoveryTaskList.class.php:488 -msgid "Task successfully enabled" -msgstr "Tarea habilitada correctamente" - -#: ../../godmode/wizards/DiscoveryTaskList.class.php:361 -msgid "Task succesfully disabled" -msgstr "Tarea deshabilitada con Ć©xito" - -#: ../../godmode/wizards/DiscoveryTaskList.class.php:401 -msgid "Console Task successfully deleted" -msgstr "Tarea de la consola eliminada" - -#: ../../godmode/wizards/DiscoveryTaskList.class.php:443 -msgid "Task successfully disabled" -msgstr "Tarea deshabilitada correctamente" - -#: ../../godmode/wizards/DiscoveryTaskList.class.php:520 -msgid "Discovery Server is disabled" -msgstr "El servidor discovery estĆ” deshabilitado" - -#: ../../godmode/wizards/DiscoveryTaskList.class.php:603 -msgid "Task type" -msgstr "Tipo de tarea" - -#: ../../godmode/wizards/DiscoveryTaskList.class.php:682 -msgid "This task has not been completely defined, please edit it" -msgstr "La tarea no se ha definido por completo, edĆ­tela." - -#: ../../godmode/wizards/DiscoveryTaskList.class.php:732 -msgid "Discovery Cloud Azure Compute" -msgstr "Discovery Cloud Azure Compute" - -#: ../../godmode/wizards/DiscoveryTaskList.class.php:736 -msgid "Cloud.Azure.Compute" -msgstr "Cloud.Azure.Compute" - -#: ../../godmode/wizards/DiscoveryTaskList.class.php:745 -msgid "Discovery Cloud AWS EC2" -msgstr "Discovery Cloud AWS EC2" - -#: ../../godmode/wizards/DiscoveryTaskList.class.php:749 -msgid "Cloud.AWS.EC2" -msgstr "Cloud.AWS.EC2" - -#: ../../godmode/wizards/DiscoveryTaskList.class.php:758 -msgid "Discovery Cloud RDS" -msgstr "Discovery Cloud RDS" - -#: ../../godmode/wizards/DiscoveryTaskList.class.php:762 -msgid "Discovery.Cloud.Aws.RDS" -msgstr "Discovery.Cloud.Aws.RDS" - -#: ../../godmode/wizards/DiscoveryTaskList.class.php:771 -msgid "Discovery Cloud S3" -msgstr "Discovery Cloud S3" - -#: ../../godmode/wizards/DiscoveryTaskList.class.php:775 -msgid "Discovery.Cloud.Aws.S3" -msgstr "Discovery.Cloud.Aws.S3" - -#: ../../godmode/wizards/DiscoveryTaskList.class.php:784 -msgid "Discovery Applications MySQL" -msgstr "Aplicaciones MySQL de Discovery" - -#: ../../godmode/wizards/DiscoveryTaskList.class.php:788 -msgid "Discovery.App.MySQL" -msgstr "Discovery.App.MySQL" - -#: ../../godmode/wizards/DiscoveryTaskList.class.php:797 -msgid "Discovery Applications Oracle" -msgstr "Aplicaciones de Discovery de Oracle" - -#: ../../godmode/wizards/DiscoveryTaskList.class.php:801 -msgid "Discovery.App.Oracle" -msgstr "Discovery.App.Oracle" - -#: ../../godmode/wizards/DiscoveryTaskList.class.php:810 -msgid "Discovery Applications DB2" -msgstr "Aplicaciones DB2 de discovery" - -#: ../../godmode/wizards/DiscoveryTaskList.class.php:814 -msgid "Discovery.App.DB2" -msgstr "Discovery.App.DB2" - -#: ../../godmode/wizards/DiscoveryTaskList.class.php:825 -msgid "Discovery.Agent.Deployment" -msgstr "Discovery.Agent.Deployment" - -#: ../../godmode/wizards/DiscoveryTaskList.class.php:833 -msgid "Discovery Applications Microsoft SQL Server" -msgstr "Servidor Microsoft SQL de aplicaciones Discovery" - -#: ../../godmode/wizards/DiscoveryTaskList.class.php:835 -msgid "Discovery.App.Microsoft SQL Server" -msgstr "Discovery.App.Microsoft SQL Server" - -#: ../../godmode/wizards/DiscoveryTaskList.class.php:846 -msgid "Discovery NetScan" -msgstr "Discovery NetScan" - -#: ../../godmode/wizards/DiscoveryTaskList.class.php:850 -msgid "Discovery.NetScan" -msgstr "Discovery.NetScan" - -#: ../../godmode/wizards/DiscoveryTaskList.class.php:896 -msgid "Not executed yet" -msgstr "AĆŗn no ejecutado" - -#: ../../godmode/wizards/DiscoveryTaskList.class.php:920 -msgid "View summary" -msgstr "Ver el resumen" - -#: ../../godmode/wizards/DiscoveryTaskList.class.php:941 -msgid "View map" -msgstr "Ver el mapa" - -#: ../../godmode/wizards/DiscoveryTaskList.class.php:965 -#: ../../godmode/wizards/DiscoveryTaskList.class.php:991 -msgid "Edit task" -msgstr "Editar tarea" - -#: ../../godmode/wizards/DiscoveryTaskList.class.php:975 -#: ../../godmode/wizards/DiscoveryTaskList.class.php:1001 -msgid "Delete task" -msgstr "Eliminar tarea" - -#: ../../godmode/wizards/DiscoveryTaskList.class.php:1014 -msgid "enable task" -msgstr "habilitar tarea" - -#: ../../godmode/wizards/DiscoveryTaskList.class.php:1043 -msgid "has no discovery tasks assigned" -msgstr "No tiene tareas de discovery asignadas" - -#: ../../godmode/wizards/DiscoveryTaskList.class.php:1050 -msgid "Server Tasks" -msgstr "Tareas de servidor" - -#: ../../godmode/wizards/DiscoveryTaskList.class.php:1197 -msgid "Overall Progress" -msgstr "Progreso total" - -#: ../../godmode/wizards/DiscoveryTaskList.class.php:1216 -msgid "Scanning network" -msgstr "Escaneando red" - -#: ../../godmode/wizards/DiscoveryTaskList.class.php:1220 -msgid "Checking" -msgstr "Comprobando" - -#: ../../godmode/wizards/DiscoveryTaskList.class.php:1224 -msgid "Finding AFT connectivity" -msgstr "Buscando conexiĆ³n AFT" - -#: ../../godmode/wizards/DiscoveryTaskList.class.php:1228 -msgid "Finding traceroute connectivity" -msgstr "Buscando conexiĆ³n traceroute" - -#: ../../godmode/wizards/DiscoveryTaskList.class.php:1232 -msgid "Finding gateway connectivity" -msgstr "Buscando conexiĆ³n de entrada" - -#: ../../godmode/wizards/DiscoveryTaskList.class.php:1236 -msgid "Searching for devices..." -msgstr "Buscando dispositivos..." - -#: ../../godmode/wizards/DiscoveryTaskList.class.php:1240 -msgid "Analyzing application..." -msgstr "Analizando aplicaciĆ³n..." - -#: ../../godmode/wizards/DiscoveryTaskList.class.php:1244 -msgid "Executing custom queries..." -msgstr "Ejecutando consultas personalizadas..." - -#: ../../godmode/wizards/DiscoveryTaskList.class.php:1248 -msgid "Testing modules..." -msgstr "Probando mĆ³dulos..." - -#: ../../godmode/wizards/DiscoveryTaskList.class.php:1252 -msgid "Processing results..." -msgstr "Procesando resultados..." - -#: ../../godmode/wizards/DiscoveryTaskList.class.php:1256 -msgid "Processing..." -msgstr "Procesandoā€¦" - -#: ../../godmode/wizards/DiscoveryTaskList.class.php:1369 -msgid "Host&devices total" -msgstr "Total Host&devices" - -#: ../../godmode/wizards/DiscoveryTaskList.class.php:1374 -msgid "Agents monitored" -msgstr "Agentes monitorizados" - -#: ../../godmode/wizards/DiscoveryTaskList.class.php:1379 -msgid "Agents pending" -msgstr "Agentes pendientes" - -#: ../../godmode/wizards/DiscoveryTaskList.class.php:1386 -msgid "Hosts discovered" -msgstr "Hosts encontrados" - -#: ../../godmode/wizards/DiscoveryTaskList.class.php:1402 -msgid "Responding SNMP" -msgstr "SNMP disponible" - -#: ../../godmode/wizards/DiscoveryTaskList.class.php:1407 -msgid "Responding WMI" -msgstr "WMI disponible" - -#: ../../godmode/wizards/DiscoveryTaskList.class.php:1452 -msgid "Task completed." -msgstr "Tarea finalizada." - -#: ../../godmode/wizards/DiscoveryTaskList.class.php:1454 -msgid "This task has never executed" -msgstr "Esta tarea nunca se ha ejecutado" - -#: ../../godmode/wizards/DiscoveryTaskList.class.php:1466 -msgid "Task queued, please wait." -msgstr "Tarea encolada, espere." - -#: ../../godmode/wizards/DiscoveryTaskList.class.php:1510 -msgid "" -"Please ensure instances or regions are being monitorized and 'scan and general " -"monitoring' is enabled." -msgstr "" -"AsegĆŗrese de que las instancias o las regiones estĆ”n siendo monitorizadas y " -"'escaneo y monitorizaciĆ³n general' estĆ” habilitado." - -#: ../../godmode/wizards/DiscoveryTaskList.class.php:1528 -#: ../../godmode/wizards/DiscoveryTaskList.class.php:1670 -msgid "Invalid task" -msgstr "Tarea no vĆ”lida" - -#: ../../godmode/wizards/DiscoveryTaskList.class.php:1627 -msgid "Please select devices to be monitored" -msgstr "Seleccione los dispositivos que desee monitorizar" - -#: ../../godmode/wizards/DiscoveryTaskList.class.php:1630 -msgid "select all" -msgstr "seleccionar todo" - -#: ../../godmode/wizards/DiscoveryTaskList.class.php:1633 -msgid "deselect all" -msgstr "deseleccionar todo" - -#: ../../godmode/wizards/DiscoveryTaskList.class.php:1636 -msgid "expand all" -msgstr "expandir todo" - -#: ../../godmode/wizards/DiscoveryTaskList.class.php:1639 -msgid "collapse all" -msgstr "plegar todo" - -#: ../../godmode/wizards/DiscoveryTaskList.class.php:1653 -msgid "No devices found in temporary resources, please re-launch." -msgstr "" -"No se han encontrado dispositivos en los recursos temporales, por favor vuelva " -"a lanzarlo." - -#: ../../godmode/wizards/DiscoveryTaskList.class.php:1720 -#, php-format -msgid "Your selection exceeds the agents available on your license. Limit %d" -msgstr "" -"La selecciĆ³n excede el nĆŗmero de agentes disponibles en la licencia. LĆ­mite %d" - -#: ../../godmode/wizards/DiscoveryTaskList.class.php:1744 -#: ../../godmode/wizards/DiscoveryTaskList.class.php:1763 -msgid "Removed" -msgstr "Eliminado" - -#: ../../godmode/wizards/DiscoveryTaskList.class.php:1800 -msgid "No changes. Re-Scheduled" -msgstr "No hay cambios. Reprogramado" - -#: ../../godmode/wizards/DiscoveryTaskList.class.php:1802 -msgid "Scheduled for creation" -msgstr "Programa de creaciĆ³n" - -#: ../../godmode/wizards/DiscoveryTaskList.class.php:1829 -msgid "Cancelled" -msgstr "Cancelado" - -#: ../../godmode/wizards/DiscoveryTaskList.class.php:1830 -msgid "Server has been restarted while executing this task, please retry." -msgstr "" -"El servidor se ha reiniciado mientras ejecutaba esta tarea, vuelva a " -"intentarlo." - -#: ../../godmode/wizards/DiscoveryTaskList.class.php:1841 -#: ../../godmode/wizards/DiscoveryTaskList.class.php:1858 -msgid "Not started" -msgstr "No iniciado" - -#: ../../godmode/wizards/DiscoveryTaskList.class.php:1863 -msgid "Searching" -msgstr "Buscando" - -#: ../../godmode/agentes/module_manager_editor_web.php:155 -msgid "Debug remotely this module" -msgstr "Depurar este mĆ³dulo en remoto" - -#: ../../godmode/agentes/module_manager_editor_web.php:158 -msgid "Debug this module once it has been initialized" -msgstr "Depurar este mĆ³dulo una vez iniciado" - -#: ../../godmode/agentes/module_manager_editor_web.php:205 -msgid "Requests" -msgstr "Peticiones" - -#: ../../godmode/agentes/module_manager_editor_web.php:208 -msgid "Agent browser id" -msgstr "ID del navegador (Agent Browser)" - -#: ../../godmode/agentes/module_manager_editor_web.php:214 -msgid "HTTP auth (login)" -msgstr "AutentificaciĆ³n HTTP (inicio de sesiĆ³n)" - -#: ../../godmode/agentes/module_manager_editor_web.php:217 -msgid "HTTP auth (password)" -msgstr "AutentificaciĆ³n HTTP (contraseƱa)" - -#: ../../godmode/agentes/module_manager_editor_web.php:231 -msgid "Proxy auth (login)" -msgstr "AutentificaciĆ³n Proxy (inicio de sesiĆ³n)" - -#: ../../godmode/agentes/module_manager_editor_web.php:235 -msgid "Proxy auth (pass)" -msgstr "AutentificaciĆ³n proxy (contraseƱa)" - -#: ../../godmode/agentes/module_manager_editor_web.php:242 -msgid "Proxy auth (server)" -msgstr "AutentificaciĆ³n proxy (servidor)" - -#: ../../godmode/agentes/module_manager_editor_web.php:246 -msgid "Proxy auth (realm)" -msgstr "AutentificaciĆ³n proxy (Ć”rea)" - -#: ../../godmode/agentes/module_manager_editor_web.php:258 -msgid "There isn't get or post" -msgstr "No se puede obtener o publicar." - -#: ../../godmode/agentes/module_manager_editor_wmi.php:87 -msgid "Optional. WMI namespace. If unsure leave blank." -msgstr "Opcional. Campo de nombre WMI. Ante la duda, dejar en blanco." - -#: ../../godmode/agentes/module_manager_editor_wmi.php:151 -msgid "" -"Optional. Substring to look for in the WQL query result. The module returns 1 " -"if found, 0 if not." -msgstr "" -"Opcional. Subcadena para buscar en los resultados de la consulta WQL. El " -"mĆ³dulo devuelve 1 si se ha encontrado algĆŗn resultado, 0 en caso contrario." - -#: ../../godmode/agentes/module_manager_editor_wmi.php:164 -msgid "Column number to retrieve from the WQL query result (starting from zero)." -msgstr "" -"NĆŗmero de columna a obtener del resultado de la consulta WQL (a partir de 0)." - -#: ../../godmode/agentes/module_manager_editor_prediction.php:110 -msgid "Source module" -msgstr "MĆ³dulo origen" - -#: ../../godmode/agentes/module_manager_editor_prediction.php:148 -#: ../../godmode/agentes/module_manager_editor_prediction.php:169 -msgid "Select Module" -msgstr "Seleccionar mĆ³dulo" - -#: ../../godmode/agentes/module_manager_editor_prediction.php:195 -msgid "Calculation type" -msgstr "Tipo de cĆ”lculo" - -#: ../../godmode/agentes/module_manager_editor_prediction.php:203 -msgid "Estimated absolute value" -msgstr "Valor absoluto estimado" - -#: ../../godmode/agentes/module_manager_editor_prediction.php:204 -msgid "Calculation of days to reach limit" -msgstr "CĆ”lculo de dĆ­as para alcanzar el lĆ­mite" - -#: ../../godmode/agentes/module_manager_editor_prediction.php:213 -msgid "Future estimation" -msgstr "EstimaciĆ³n futura" - -#: ../../godmode/agentes/module_manager_editor_prediction.php:228 -msgid "Limit value" -msgstr "Valor lĆ­mite" - -#: ../../godmode/agentes/module_manager.php:130 -msgid "Create a new data server module" -msgstr "Crear un nuevo mĆ³dulo de servidor de datos" - -#: ../../godmode/agentes/module_manager.php:132 -msgid "Create a new network server module" -msgstr "Crear un nuevo mĆ³dulo de servidor de red" - -#: ../../godmode/agentes/module_manager.php:136 -msgid "Create a new plugin server module" -msgstr "Crear un nuevo mĆ³dulo de servidor de complementos" - -#: ../../godmode/agentes/module_manager.php:140 -msgid "Create a new WMI server module" -msgstr "Crear un nuevo mĆ³dulo de servidor WMI" - -#: ../../godmode/agentes/module_manager.php:144 -msgid "Create a new prediction server module" -msgstr "Crear un nuevo mĆ³dulo de servidor de predicciĆ³n" - -#: ../../godmode/agentes/module_manager.php:148 -msgid "Create a new web Server module" -msgstr "Crear un nuevo mĆ³dulo de servidor web" - -#: ../../godmode/agentes/module_manager.php:211 -msgid "

Type

" -msgstr "

Tipo

" - -#: ../../godmode/agentes/module_manager.php:241 -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:280 -msgid "There was a problem completing the operation" -msgstr "Hubo un problema al completar la operaciĆ³n" - -#: ../../godmode/agentes/module_manager.php:437 -#: ../../godmode/agentes/module_manager.php:478 -#, 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:443 -#: ../../godmode/agentes/module_manager.php:484 -msgid "Operation finished successfully." -msgstr "OperaciĆ³n concluida correctamente." - -#: ../../godmode/agentes/module_manager.php:447 -#: ../../godmode/agentes/module_manager.php:488 -#, 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:868 -msgid "Del." -msgstr "Del." - -#: ../../godmode/agentes/module_manager.php:1180 -msgid "Normalize" -msgstr "Normalizar" - -#: ../../godmode/agentes/module_manager.php:1190 -msgid "Normalize (Disabled)" -msgstr "Normalizar (deshabilitado)" - -#: ../../godmode/agentes/module_manager.php:1214 -msgid "Create network component (Disabled)" -msgstr "Crear componentes de red (desactivado)" - -#: ../../godmode/agentes/module_manager.php:1274 -msgid "Execute action" -msgstr "Ejecutar acciĆ³n" - -#: ../../godmode/agentes/configure_field.php:41 -msgid "Update agent custom field" -msgstr "Actualizar campo personalizado del agente" - -#: ../../godmode/agentes/configure_field.php:43 -msgid "Create agent custom field" -msgstr "Crear campo personalizado" - -#: ../../godmode/agentes/configure_field.php:55 -#: ../../godmode/agentes/configure_field.php:59 -#: ../../godmode/agentes/configure_field.php:63 -#: ../../godmode/agentes/configure_field.php:67 -msgid "Agent Custom Fields Information" -msgstr "InformaciĆ³n de los campos de personalizaciĆ³n de agentes" - -#: ../../godmode/agentes/configure_field.php:56 -msgid "" -"You cannot set the Password type until you clear the combo values and click on " -"update button." -msgstr "" -"No puede establecer el tipo de contraseƱa hasta que elimine los valores del " -"combo y pinche en el botĆ³n actualizar." - -#: ../../godmode/agentes/configure_field.php:60 -msgid "" -"You cannot unset the enable combo until you clear the combo values and click " -"on update." -msgstr "" -"No puede desactivar el combo habilitado hasta que elimine los valores del " -"combo y pinche en actualizar." - -#: ../../godmode/agentes/configure_field.php:64 -msgid "If you select Enabled combo the Password type will be disabled." -msgstr "" -"Si selecciona el combo Habilitado, se deshabilitarĆ” el tipo de contraseƱa." - -#: ../../godmode/agentes/configure_field.php:68 -msgid "If you select Passord type the Enabled combo will be disabled." -msgstr "" -"Si selecciona el tipo de ContraseƱa el combo Habliitado se deshabilitarĆ”." - -#: ../../godmode/agentes/configure_field.php:84 -msgid "Pass type" -msgstr "Tipo de contraseƱa" - -#: ../../godmode/agentes/configure_field.php:85 -msgid "" -"The fields with pass type enabled will be displayed like html input type pass " -"in html" -msgstr "" -"Los campos con el tipo de contraseƱa habilitado se mostrarĆ”n con asteriscos en " -"HTML." - -#: ../../godmode/agentes/configure_field.php:106 -msgid "Enabled combo" -msgstr "Combo habilitado" - -#: ../../godmode/agentes/configure_field.php:118 -msgid "Combo values" -msgstr "Valores de combo" - -#: ../../godmode/agentes/configure_field.php:119 -msgid "Set values separated by comma" -msgstr "Establecer valores separados por coma" - -#: ../../godmode/agentes/module_manager_editor_common.php:108 -msgid "Using module component" -msgstr "Utilizar mĆ³dulo de librerĆ­a" - -#: ../../godmode/agentes/module_manager_editor_common.php:413 -msgid "Warning threshold" -msgstr "Umbral de advertencia" - -#: ../../godmode/agentes/module_manager_editor_common.php:415 -#: ../../godmode/agentes/module_manager_editor_common.php:476 -msgid "Min. " -msgstr "Min. " - -#: ../../godmode/agentes/module_manager_editor_common.php:474 -msgid "Critical threshold" -msgstr "Umbral crĆ­tico" - -#: ../../godmode/agentes/module_manager_editor_common.php:673 -msgid "Dynamic Threshold Interval" -msgstr "Intervalo de rango dinĆ”mico" - -#: ../../godmode/agentes/module_manager_editor_common.php:700 -msgid "Dynamic Threshold Min. " -msgstr "Rango dinĆ”mico mĆ­nimo " - -#: ../../godmode/agentes/module_manager_editor_common.php:713 -msgid "Dynamic Threshold Max. " -msgstr "Rango dinĆ”mico mĆ”ximo " - -#: ../../godmode/agentes/module_manager_editor_common.php:726 -msgid "Dynamic Threshold Two Tailed: " -msgstr "Rango dinĆ”mico dos fallido: " - -#: ../../godmode/agentes/module_manager_editor_common.php:737 -msgid "Not needed" -msgstr "No necesario" - -#: ../../godmode/agentes/module_manager_editor_common.php:1035 -msgid "Tags from policy" -msgstr "Etiquetas desde polĆ­tica" - -#: ../../godmode/agentes/module_manager_editor_common.php:1075 -msgid "Cascade Protection Services" -msgstr "Servicios de protecciĆ³n en cascada" - -#: ../../godmode/agentes/module_manager_editor_common.php:1109 -#: ../../godmode/agentes/module_manager_editor_common.php:1117 -#: ../../godmode/agentes/module_manager_editor_common.php:1126 -msgid "Cron from" -msgstr "Cron desde" - -#: ../../godmode/agentes/module_manager_editor_common.php:1113 -#: ../../godmode/agentes/module_manager_editor_common.php:1121 -#: ../../godmode/agentes/module_manager_editor_common.php:1130 -msgid "Cron to" -msgstr "Cron hasta" - -#: ../../godmode/agentes/module_manager_editor_common.php:1166 -msgid "Module parent" -msgstr "Padre del mĆ³dulo" - -#: ../../godmode/agentes/module_manager_editor_common.php:1264 -#: ../../godmode/agentes/module_manager_editor_common.php:1375 -msgid "Direct" -msgstr "Directo" - -#: ../../godmode/agentes/module_manager_editor_common.php:1266 -msgid "Rel. type" -msgstr "Rel. tipo" - -#: ../../godmode/agentes/module_manager_editor_common.php:1281 -msgid "Add relationship" -msgstr "AƱadir relaciĆ³n" - -#: ../../godmode/agentes/module_manager_editor_common.php:1306 -msgid "Changes" -msgstr "Cambios" - -#: ../../godmode/agentes/status_monitor_custom_fields.php:125 -msgid "Show monitor detail fields" -msgstr "Mostrar campo de detalle de monitor" - -#: ../../godmode/agentes/configurar_agente.php:244 -#: ../../godmode/agentes/configurar_agente.php:1042 -msgid "No agent alias specified" -msgstr "No se ha especificado el alias del agente" - -#: ../../godmode/agentes/configurar_agente.php:247 -msgid "Agent cannot be created due to the maximum agent limit for this group" -msgstr "" -"El agente no puede crearse por el lĆ­mite de mĆ”ximo nĆŗmero de agentes de este " -"grupo" - -#: ../../godmode/agentes/configurar_agente.php:353 -msgid "Could not be created, because name already exists" -msgstr "No se pudo crear, el nombre ya existe." - -#: ../../godmode/agentes/configurar_agente.php:355 -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:745 -msgid "Gis" -msgstr "GIS" - -#: ../../godmode/agentes/configurar_agente.php:787 -msgid "SNMP explorer" -msgstr "Explorador SNMP" - -#: ../../godmode/agentes/configurar_agente.php:828 -msgid "Agent manager" -msgstr "Administrador de agente" - -#: ../../godmode/agentes/configurar_agente.php:913 -#: ../../godmode/agentes/configurar_agente.php:917 -msgid "No data to normalize" -msgstr "No hay datos para normalizar" - -#: ../../godmode/agentes/configurar_agente.php:922 -#, php-format -msgid "Deleted data above %f" -msgstr "Eliminar datos por encima de %f" - -#: ../../godmode/agentes/configurar_agente.php:923 -#, php-format -msgid "Error normalizing module %s" -msgstr "Error al normalizar el mĆ³dulo %s" - -#: ../../godmode/agentes/configurar_agente.php:1052 -#, php-format -msgid "The group id %d is incorrect." -msgstr "El grupo id %d es incorrecto." - -#: ../../godmode/agentes/configurar_agente.php:1054 -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:1056 -msgid "Duplicate main IP address" -msgstr "Duplicar la direcciĆ³n IP principal" - -#: ../../godmode/agentes/configurar_agente.php:1109 -msgid "There was a problem updating the agent" -msgstr "Hubo un problema al actualizar el agente" - -#: ../../godmode/agentes/configurar_agente.php:1202 -msgid "There was a problem loading the agent" -msgstr "Hubo un problema al cargar el agente" - -#: ../../godmode/agentes/configurar_agente.php:1713 -msgid "" -"There was a problem updating module. Another module already exists with the " -"same name." -msgstr "" -"Hubo un problema al actualizar el mĆ³dulo. Ya existe otro mĆ³dulo con el mismo " -"nombre." - -#: ../../godmode/agentes/configurar_agente.php:1717 -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:1721 -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:1727 -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:1756 -msgid "Module successfully updated" -msgstr "MĆ³dulo actualizado correctamente" - -#: ../../godmode/agentes/configurar_agente.php:1903 -msgid "" -"There was a problem adding module. Another module already exists with the same " -"name." -msgstr "" -"Hubo un problema al aƱadir el mĆ³dulo. Ya existe otro mĆ³dulo con el mismo " -"nombre." - -#: ../../godmode/agentes/configurar_agente.php:1907 -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:1913 -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:2093 -msgid "There was a problem deleting the module" -msgstr "Hubo un problema al borrar el mĆ³dulo" - -#: ../../godmode/agentes/configurar_agente.php:2097 -msgid "Module deleted succesfully" -msgstr "MĆ³dulo borrado correctamente" - -#: ../../godmode/agentes/configurar_agente.php:2343 -#: ../../godmode/agentes/configurar_agente.php:2355 -msgid "Invalid tab specified" -msgstr "La pestaƱa no es vĆ”lida" - -#: ../../godmode/agentes/agent_manager.php:241 -msgid "Delete agent" -msgstr "Borrar agente" - -#: ../../godmode/agentes/agent_manager.php:275 -msgid "QR Code Agent view" -msgstr "CĆ³digo QR de la vista de agente" - -#: ../../godmode/agentes/agent_manager.php:296 -msgid "Use alias as name" -msgstr "Usar el alias como nombre" - -#: ../../godmode/agentes/agent_manager.php:338 -msgid "Primary group" -msgstr "Grupo primario" - -#: ../../godmode/agentes/agent_manager.php:559 -msgid "Cascade protection services" -msgstr "Servicios de protecciĆ³n en cascada" - -#: ../../godmode/agentes/agent_manager.php:648 -msgid "Disabled mode" -msgstr "Modo deshabilitado" - -#: ../../godmode/agentes/agent_manager.php:745 -msgid "Update new GIS data:" -msgstr "Actualizar nuevos datos GIS:" - -#: ../../godmode/agentes/agent_manager.php:803 -msgid "Click to display" -msgstr "Pinche para visualizar" - -#: ../../godmode/agentes/agent_manager.php:1055 -msgid "Secondary group cannot be primary too." -msgstr "Un grupo secundario no puede ser tambiĆ©n primario." - -#: ../../godmode/agentes/planned_downtime.export_csv.php:202 -#: ../../godmode/agentes/planned_downtime.list.php:574 -msgid "No scheduled downtime" -msgstr "No hay paradas planificadas" - -#: ../../godmode/agentes/module_manager_editor.php:718 -msgid "Invalid module type" -msgstr "Tipo de mĆ³dulo no vĆ”lido" - -#: ../../godmode/agentes/module_manager_editor.php:762 -msgid "Module relations" -msgstr "Relaciones entre mĆ³dulos" - -#: ../../godmode/agentes/module_manager_editor.php:852 -msgid "No module to predict" -msgstr "No existe ningĆŗn mĆ³dulo para predecir." - -#: ../../godmode/agentes/module_manager_editor.php:862 -msgid "No plug-in provided" -msgstr "Plugin no proporcionado" - -#: ../../godmode/agentes/module_manager_editor.php:872 -msgid "No server provided" -msgstr "NingĆŗn servidor especificado" - -#: ../../godmode/agentes/module_manager_editor.php:903 -msgid "" -"Error, The field name and name in module_name in data configuration are " -"different." -msgstr "" -"Error, el nombre del campo y el nombre de module_name en los datos de " -"configuraciĆ³n son diferentes." - -#: ../../godmode/agentes/module_manager_editor.php:941 -msgid "The File APIs are not fully supported in this browser." -msgstr "Las API de archivos no son totalmente compatibles con este navegador." - -#: ../../godmode/agentes/module_manager_editor.php:942 -msgid "Couldn`t find the fileinput element." -msgstr "Elemento de archivo de entrada no encontrado" - -#: ../../godmode/agentes/module_manager_editor.php:943 -msgid "This browser doesn`t seem to support the files property of file inputs." -msgstr "" -"Este navegador parece no ser compatible con los archivos pertenecientes al " -"archivo de entrada." - -#: ../../godmode/agentes/module_manager_editor.php:944 -msgid "Please select a file before clicking Load" -msgstr "Seleccione un archivo antes de hacer clic en Cargar" - -#: ../../godmode/agentes/planned_downtime.editor.php:208 -#: ../../godmode/agentes/planned_downtime.editor.php:1129 -#: ../../godmode/agentes/planned_downtime.editor.php:1264 -msgid "This elements cannot be modified while the downtime is being executed" -msgstr "" -"Estos elementos no se pueden modificar mientras se estĆ” ejecutando el tiempo " -"de inactividad." - -#: ../../godmode/agentes/planned_downtime.editor.php:589 -msgid "Quiet: Modules will not generate events or fire alerts." -msgstr "Modo silencioso: los mĆ³dulos no generarĆ”n eventos ni dispararĆ”n alertas." - -#: ../../godmode/agentes/planned_downtime.editor.php:589 -msgid "Disable Agents: Disables the selected agents." -msgstr "Deshabilitar agentes: deshabilita los agentes seleccionados" - -#: ../../godmode/agentes/planned_downtime.editor.php:589 -msgid "Disable Alerts: Disable alerts for the selected agents." -msgstr "" -"Deshabilitar alertas: deshabilita las alertas de los agentes seleccionados" - -#: ../../godmode/agentes/planned_downtime.editor.php:595 -#: ../../godmode/agentes/planned_downtime.list.php:656 -msgid "Disabled Agents" -msgstr "Agentes desactivados" - -#: ../../godmode/agentes/planned_downtime.editor.php:596 -#: ../../godmode/agentes/planned_downtime.list.php:657 -msgid "Disabled only Alerts" -msgstr "Deshabilitar solo las alertas" - -#: ../../godmode/agentes/planned_downtime.editor.php:612 -#: ../../godmode/agentes/planned_downtime.list.php:318 -msgid "Once" -msgstr "Una vez" - -#: ../../godmode/agentes/planned_downtime.editor.php:613 -#: ../../godmode/agentes/planned_downtime.list.php:319 -#: ../../godmode/agentes/planned_downtime.list.php:664 -msgid "Periodically" -msgstr "PeriĆ³dicamente" - -#: ../../godmode/agentes/planned_downtime.editor.php:628 -msgid "Configure the time" -msgstr "Configurar el tiempo" - -#: ../../godmode/agentes/planned_downtime.editor.php:647 -msgid "Type Periodicity:" -msgstr "Periodicidad del tipo:" - -#: ../../godmode/agentes/planned_downtime.editor.php:679 -msgid "From day:" -msgstr "Desde el dĆ­a:" - -#: ../../godmode/agentes/planned_downtime.editor.php:693 -msgid "To day:" -msgstr "Hasta el dĆ­a:" - -#: ../../godmode/agentes/planned_downtime.editor.php:712 -msgid "From hour:" -msgstr "Desde la hora:" - -#: ../../godmode/agentes/planned_downtime.editor.php:725 -msgid "To hour:" -msgstr "Hasta la hora:" - -#: ../../godmode/agentes/planned_downtime.editor.php:801 -msgid "Group filter" -msgstr "Filtro de grupo" - -#: ../../godmode/agentes/planned_downtime.editor.php:835 -msgid "Available modules:" -msgstr "MĆ³dulos disponibles:" - -#: ../../godmode/agentes/planned_downtime.editor.php:836 -msgid "Only for type Quiet for downtimes." -msgstr "Solo para tipo Modo silencioso para paradas" - -#: ../../godmode/agentes/planned_downtime.editor.php:894 -msgid "Agents planned for this downtime" -msgstr "Agentes planificados para esta parada" - -#: ../../godmode/agentes/planned_downtime.editor.php:912 -msgid "There are no agents" -msgstr "No hay agentes" - -#: ../../godmode/agentes/planned_downtime.editor.php:954 -msgid "All alerts" -msgstr "Todas las alertas" - -#: ../../godmode/agentes/planned_downtime.editor.php:956 -msgid "Entire agent" -msgstr "Agente completo" - -#: ../../godmode/agentes/planned_downtime.editor.php:959 -#: ../../godmode/agentes/planned_downtime.editor.php:1081 -msgid "All modules" -msgstr "Todos los mĆ³dulos" - -#: ../../godmode/agentes/planned_downtime.editor.php:961 -#: ../../godmode/agentes/planned_downtime.editor.php:1073 -#: ../../godmode/agentes/planned_downtime.editor.php:1077 -msgid "Some modules" -msgstr "Algunos mĆ³dulos" - -#: ../../godmode/agentes/planned_downtime.editor.php:1027 -msgid "Add Module:" -msgstr "AƱadir mĆ³dulo:" - -#: ../../godmode/agentes/planned_downtime.editor.php:1529 -msgid "" -"WARNING: If you edit this scheduled downtime, the data of future SLA reports " -"may be altered" -msgstr "" -"ADVERTENCIA: si se modifica esta parada planificada, los datos de los futuros " -"informes SLA pueden ser alterados" - -#: ../../godmode/agentes/planned_downtime.list.php:206 -msgid "An error occurred stopping the scheduled downtime" -msgstr "Se produjo un error al detener la parada planificada" - -#: ../../godmode/agentes/planned_downtime.list.php:233 -msgid "This scheduled downtime is running" -msgstr "Esta parada planificada se estĆ” ejecutando" - -#: ../../godmode/agentes/planned_downtime.list.php:333 -msgid "Show past downtimes" -msgstr "Mostrar paradas antiguas" - -#: ../../godmode/agentes/planned_downtime.list.php:610 -msgid "Name #Ag." -msgstr "Nombre (nĆŗm. ag.)" - -#: ../../godmode/agentes/planned_downtime.list.php:617 -msgid "Affected" -msgstr "Afectado" - -#: ../../godmode/agentes/planned_downtime.list.php:622 -#: ../../godmode/agentes/planned_downtime.list.php:725 -#: ../../godmode/agentes/planned_downtime.list.php:731 -msgid "Stop downtime" -msgstr "Detener parada planificada" - -#: ../../godmode/agentes/planned_downtime.list.php:663 -msgid "once" -msgstr "una vez" - -#: ../../godmode/agentes/planned_downtime.list.php:678 -msgid "Not running" -msgstr "No estĆ” en ejecuciĆ³n" - -#: ../../godmode/agentes/planned_downtime.list.php:696 -msgid "Agents / Modules affected" -msgstr "Agentes / MĆ³dulos afectados" - -#: ../../godmode/agentes/planned_downtime.list.php:705 -msgid "Agents and modules affected" -msgstr "Agentes y mĆ³dulos afectados" - -#: ../../godmode/agentes/planned_downtime.list.php:903 -msgid "" -"WARNING: If you delete this scheduled downtime, it will not be taken into " -"account in future SLA reports" -msgstr "" -"ADVERTENCIA: si se borra esta parada planificada, no se tendrĆ” en cuenta en " -"futuros informes SLA" - -#: ../../godmode/agentes/planned_downtime.list.php:909 -msgid "WARNING: There are malformed scheduled downtimes" -msgstr "ADVERTENCIA: hay paradas planificadas mal formadas" - -#: ../../godmode/agentes/planned_downtime.list.php:909 -msgid "Do you want to migrate automatically the malformed items?" -msgstr "ĀæQuiere migrar automĆ”ticamente los elementos mal formados?" - -#: ../../godmode/agentes/agent_conf_gis.php:50 -msgid "" -"There is no GIS data for this agent, so it's positioned in default position of " -"map." -msgstr "" -"No hay datos de GIS para este agente, por lo que es colocado en posiciĆ³n por " -"defecto del mapa." - -#: ../../godmode/agentes/agent_conf_gis.php:58 -msgid "" -"When you change the Agent position, the agent automatically activates the " -"'Ignore new GIS data' option" -msgstr "" -"Cuando se cambia la posiciĆ³n de agente, el agente activa automĆ”ticamente la " -"opciĆ³n \"Ignorar nuevos datos GIS\"." - -#: ../../godmode/agentes/agent_conf_gis.php:67 -msgid "Agent position" -msgstr "PosiciĆ³n del agente" - -#: ../../godmode/agentes/agent_conf_gis.php:73 -msgid "Latitude: " -msgstr "Latitud: " - -#: ../../godmode/agentes/agent_conf_gis.php:90 -msgid "Longitude: " -msgstr "Longitud: " - -#: ../../godmode/agentes/agent_conf_gis.php:107 -msgid "Altitude: " -msgstr "Altitud: " - -#: ../../godmode/agentes/fields_manager.php:30 -msgid "Agents custom fields manager" -msgstr "Gestor de campos personalizados del agente" - -#: ../../godmode/agentes/fields_manager.php:48 -msgid "The name must be unique" -msgstr "El nombre debe ser Ćŗnico." - -#: ../../godmode/agentes/fields_manager.php:59 -msgid "Field successfully created" -msgstr "Se ha creado el campo." - -#: ../../godmode/agentes/fields_manager.php:80 -msgid "Field successfully updated" -msgstr "Se ha actualizado el campo." - -#: ../../godmode/agentes/fields_manager.php:82 -msgid "There was a problem modifying field" -msgstr "Ha habido un problema al modificar el campo." - -#: ../../godmode/agentes/fields_manager.php:94 -msgid "There was a problem deleting field" -msgstr "Ha surgido un problema al borrar el campo." - -#: ../../godmode/agentes/fields_manager.php:96 -msgid "Field successfully deleted" -msgstr "El campo se ha borrado correctamente." - -#: ../../godmode/agentes/fields_manager.php:168 -msgid "Create field" -msgstr "Crear campo" - -#: ../../godmode/agentes/agent_incidents.php:69 -msgid "No incidents associated to this agent" -msgstr "No hay incidentes asociados a este agente" - -#: ../../godmode/agentes/agent_incidents.php:90 -msgid "Incident" -msgstr "Incidente" - -#: ../../godmode/agentes/agent_template.php:156 -msgid "Error adding modules" -msgstr "Error al aƱadir mĆ³dulos" - -#: ../../godmode/agentes/agent_template.php:158 -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:188 -msgid "Assign" -msgstr "Asignar" - -#: ../../godmode/agentes/module_manager_editor_network.php:266 -msgid "SNMP walk" -msgstr "SNMP walk" - -#: ../../godmode/agentes/module_manager_editor_network.php:448 -msgid "" -"Please use single quotation marks when necessary. \n" -"\n" -"If double quotation marks are needed, please escape them with a backslash " -"(\\")" -msgstr "" -"Utilice comillas simples cuando sea necesario. \n" -"\n" -"Si se necesitan comillas dobles, escĆ”pase de ellas con una barra diagonal " -"inversa (\\")" - -#: ../../godmode/agentes/module_manager_editor_network.php:479 -msgid "Windows remote" -msgstr "Windows remoto" - -#: ../../godmode/agentes/modificar_agente.php:95 -#, php-format -msgid "Agents defined in %s" -msgstr "Agentes definidos en %s" - -#: ../../godmode/agentes/modificar_agente.php:124 -#, php-format -msgid "" -"This node is configured with centralized mode. Go to %s to delete an agent" -msgstr "" -"Este nodo estĆ” configurado en modo centralizado. Para eliminar un agente, vaya " -"%s" - -#: ../../godmode/agentes/modificar_agente.php:170 -msgid "Success deleted agent." -msgstr "Agente eliminado correctamente" - -#: ../../godmode/agentes/modificar_agente.php:171 -msgid "Could not be deleted." -msgstr "No pudo ser borrado." - -#: ../../godmode/agentes/modificar_agente.php:186 -msgid "Maybe the files conf or md5 could not be deleted" -msgstr "Los archivos conf o md5 no han podido ser borrados." - -#: ../../godmode/agentes/modificar_agente.php:333 -msgid "Show Agents" -msgstr "Mostrar agentes" - -#: ../../godmode/agentes/modificar_agente.php:335 -msgid "Everyone" -msgstr "Todos" - -#: ../../godmode/agentes/modificar_agente.php:349 -msgid "Operative System" -msgstr "Sistema operativo" - -#: ../../godmode/agentes/modificar_agente.php:367 -msgid "" -"Search filter by alias, name, description, IP address or custom fields content" -msgstr "" -"Buscar filtro por alias, nombre, descripciĆ³n, direcciĆ³n IP o contenido de " -"campos personalizados." - -#: ../../godmode/agentes/modificar_agente.php:648 -msgid "Remote agent configuration" -msgstr "ConfiguraciĆ³n remota del agente" - -#: ../../godmode/agentes/modificar_agente.php:648 -msgid "R" -msgstr "R" - -#: ../../godmode/agentes/modificar_agente.php:858 -msgid "Edit remote config" -msgstr "Editar configuraciĆ³n remota" - -#: ../../godmode/agentes/modificar_agente.php:908 -msgid "You are going to enable a cluster agent. Are you sure?" -msgstr "ĀæEsta seguro de que desea habilitar el cluster de agentes?" - -#: ../../godmode/agentes/modificar_agente.php:911 -msgid "Enable agent" -msgstr "Habilitar agente" - -#: ../../godmode/agentes/modificar_agente.php:918 -msgid "You are going to disable a cluster agent. Are you sure?" -msgstr "ĀæEsta seguro de que desea deshabilitar el cluster de agentes?" - -#: ../../godmode/agentes/modificar_agente.php:921 -msgid "Disable agent" -msgstr "Deshabilitar agente" - -#: ../../godmode/agentes/modificar_agente.php:931 -msgid "WARNING! - You are going to delete a cluster agent. Are you sure?" -msgstr "" -"Ā”ADVERTENCIA! - ĀæEsta seguro de que desea eliminar el cluster de agentes?" - -#: ../../godmode/alerts/configure_alert_template.php:250 -#: ../../godmode/alerts/configure_alert_template.php:254 -msgid "Conditions" -msgstr "Condiciones" - -#: ../../godmode/alerts/configure_alert_template.php:271 -#: ../../godmode/alerts/configure_alert_template.php:275 -msgid "Advanced fields" -msgstr "Campos avanzados" - -#: ../../godmode/alerts/configure_alert_template.php:419 -#, php-format -msgid "" -"This node is configured with centralized mode. All alerts templates " -"information is read only. Go to Go to %s to manage it." -msgstr "" -"Este nodo se configura en modo centralizado. Toda la informaciĆ³n de plantillas " -"de alertas es solo de lectura. Vaya a %s para gestionarlo." - -#: ../../godmode/alerts/configure_alert_template.php:531 -msgid "No template name specified" -msgstr "NingĆŗn nombre de plantilla especificado" - -#: ../../godmode/alerts/configure_alert_template.php:712 -msgid "Reset counter for non-sustained alerts" -msgstr "Reiniciar el contador para las alertas no sostenidas" - -#: ../../godmode/alerts/configure_alert_template.php:714 -msgid "" -"Enable this option if you want the counter to be reset when the alert is not " -"being fired consecutively, even if it's within the time threshold" -msgstr "" -"Activa esta opciĆ³n si quieres que el contador se reinicie cuando la alerta no " -"se dispare de forma consecutiva, incluso si estĆ” dentro del umbral." - -#: ../../godmode/alerts/configure_alert_template.php:788 -msgid "" -"Unless they're left blank, the fields from the action will override those set " -"on the template." -msgstr "" -"A menos que estĆ©n en blanco, los campos de la acciĆ³n sobrescribirĆ”n los de la " -"plantilla." - -#: ../../godmode/alerts/configure_alert_template.php:792 -msgid "Condition type" -msgstr "Tipo de condiciĆ³n" - -#: ../../godmode/alerts/configure_alert_template.php:809 -msgid "Trigger when matches the value" -msgstr "Disparar cuando coincida con el valor" - -#: ../../godmode/alerts/configure_alert_template.php:832 -msgid "The regular expression is valid" -msgstr "La expresiĆ³n regular es vĆ”lida." - -#: ../../godmode/alerts/configure_alert_template.php:842 -msgid "The regular expression is not valid" -msgstr "La expresiĆ³n regular no es vĆ”lida." - -#: ../../godmode/alerts/configure_alert_template.php:897 -msgid "Alert recovery" -msgstr "RecuperaciĆ³n de alerta" - -#: ../../godmode/alerts/configure_alert_template.php:919 -msgid "Recovery fields" -msgstr "Campos de recuperaciĆ³n" - -#: ../../godmode/alerts/configure_alert_template.php:1136 -msgid "No wizard" -msgstr "No hay asistente" - -#: ../../godmode/alerts/configure_alert_template.php:1217 -#, php-format -msgid "The alert would fire when the value doesn\\'t match %s" -msgstr "La alerta se dispararĆ” cuando el valor no coincida con %s" - -#: ../../godmode/alerts/configure_alert_template.php:1221 -msgid "" -"The alert would fire when the value is not between and " -"" -msgstr "" -"La alerta se dispararĆ­a cuando el valor no estĆ© entre y " -"" - -#: ../../godmode/alerts/configure_alert_template.php:1222 -#: ../../godmode/alerts/alert_view.php:200 -msgid "The alert would fire when the value is below " -msgstr "" -"La alerta se dispararĆ” cuando el valor sea inferior a ." - -#: ../../godmode/alerts/configure_alert_template.php:1223 -#: ../../godmode/alerts/alert_view.php:205 -msgid "The alert would fire when the value is above " -msgstr "" -"La alerta se dispararĆ” cuando el valor sea superior a ." - -#: ../../godmode/alerts/configure_alert_template.php:1226 -#: ../../godmode/alerts/alert_view.php:211 -msgid "The alert would fire when the module value changes" -msgstr "La alerta se dispararĆ” cuando los valores de los mĆ³dulos cambien." - -#: ../../godmode/alerts/configure_alert_template.php:1227 -#: ../../godmode/alerts/alert_view.php:213 -msgid "The alert would fire when the module value does not change" -msgstr "La alerta se dispararĆ” cuando los valores de los mĆ³dulos no cambien." - -#: ../../godmode/alerts/configure_alert_template.php:1228 -#: ../../godmode/alerts/alert_view.php:230 -msgid "The alert would fire when the module is in unknown status" -msgstr "La alerta se dispararĆ” cuando el mĆ³dulo estĆ© en estado desconocido." - -#: ../../godmode/alerts/configure_alert_template.php:1229 -msgid "The alert template cannot have the same value for min and max thresholds." -msgstr "" -"La plantilla de alerta no puede tener el mismo valor para los umbrales max y " -"min." - -#: ../../godmode/alerts/configure_alert_template.php:1230 -#: ../../godmode/alerts/alert_view.php:226 -msgid "The alert would fire when the module is in not normal status" -msgstr "La alerta se dispararĆ” cuando el mĆ³dulo no estĆ© en estado normal" - -#: ../../godmode/alerts/configure_alert_template.php:1407 -msgid "" -"The alert would fire when the module is in unknown status. Warning: " -"unknown_updates of pandora_server.conf must be equal to 1" -msgstr "" -"La alerta se dispararĆ” cuando el mĆ³dulo estĆ© en estado desconocido. " -"Advertencia: unknown_updates de pandora_server.conf debe ser igual a 1" - -#: ../../godmode/alerts/alert_list.list.php:123 -msgid "Field content" -msgstr "Contenido del campo" - -#: ../../godmode/alerts/alert_list.list.php:662 -#: ../../godmode/alerts/alert_view.php:317 -msgid "" -"The default actions will be executed every time that the alert is fired and no " -"other action is executed" -msgstr "" -"Las acciones por defecto se ejecutarĆ”n cada vez que la alerta se dispare y " -"ninguna otra acciĆ³n sea ejecutada." - -#: ../../godmode/alerts/alert_list.list.php:930 -msgid "View alert advanced details" -msgstr "Ver detalles avanzados de la alerta" - -#: ../../godmode/alerts/alert_actions.php:222 -#: ../../godmode/alerts/configure_alert_action.php:120 -#, php-format -msgid "" -"This node is configured with centralized mode. All alert actions information " -"is read only. Go to %s to manage it." -msgstr "" -"Este nodo se configura en modo centralizado. Toda la informaciĆ³n de plantillas " -"de alertas es solo de lectura. Vaya a %s para gestionarlo." - -#: ../../godmode/alerts/alert_actions.php:396 -msgid "" -"You cannot edit this action, You don't have the permission to edit All group." -msgstr "" -"No puede editar esta acciĆ³n, no tiene permisos para editar el grupo All " -"(todos)." - -#: ../../godmode/alerts/alert_actions.php:407 -msgid "" -"The action and the command associated with it do not have the same group. " -"Please contact an administrator to fix it." -msgstr "" -"La acciĆ³n y el comando asociado no pertenecen al mismo grupo. PĆ³ngase en " -"contacto con el administrador para solucionarlo." - -#: ../../godmode/alerts/alert_actions.php:465 -msgid "No alert actions configured" -msgstr "Sin acciones de alertas configuradas" - -#: ../../godmode/alerts/alert_list.builder.php:91 -msgid "Latest value" -msgstr "ƚltimo valor" - -#: ../../godmode/alerts/alert_list.builder.php:201 -msgid "Finish and view cluster" -msgstr "Finalizar y ver cluster" - -#: ../../godmode/alerts/alert_templates.php:268 -#, php-format -msgid "" -"This node is configured with centralized mode. All alert templates information " -"is read only. Go to %s to manage it." -msgstr "" -"Este nodo se configura en modo centralizado. Toda la informaciĆ³n de plantillas " -"de alertas es solo de lectura. Vaya a %s para gestionarlo." - -#: ../../godmode/alerts/alert_templates.php:412 -msgid "" -"You cannot edit this alert template, You don't have the permission to edit All " -"group." -msgstr "" -"No puede edit esta plantilla de alerta. No tiene los permisos para editar el " -"grupo All (todos)." - -#: ../../godmode/alerts/alert_templates.php:473 -msgid "No alert templates defined" -msgstr "No hay plantillas de alerta definidas" - -#: ../../godmode/alerts/alert_commands.php:143 -msgid "" -"For sending emails, text must be HTML format, if you want to use plain text, " -"type it between the following labels:
"
-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:219
-#: ../../godmode/alerts/alert_commands.php:250
-msgid "Text/plain"
-msgstr "Texto/plano"
-
-#: ../../godmode/alerts/alert_commands.php:221
-#: ../../godmode/alerts/alert_commands.php:252
-msgid "For sending emails only text plain"
-msgstr "Para mandar emails solo en texto plano"
-
-#: ../../godmode/alerts/alert_commands.php:235
-#: ../../godmode/alerts/alert_commands.php:266
-msgid "Text/html"
-msgstr "Texto/HTML"
-
-#: ../../godmode/alerts/alert_commands.php:474
-msgid "Permissions warning"
-msgstr "Alerta de permisos"
-
-#: ../../godmode/alerts/alert_commands.php:477
-msgid ""
-"Command management is limited to administrator users or user profiles with "
-"permissions PM"
-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:494
-msgid "Alert commands"
-msgstr "Comandos de alerta"
-
-#: ../../godmode/alerts/alert_commands.php:619
-msgid " (copy)"
-msgstr " (copia)"
-
-#: ../../godmode/alerts/alert_commands.php:643
-#: ../../godmode/alerts/configure_alert_command.php:196
-#, php-format
-msgid ""
-"This node is configured with centralized mode. All alert commands information "
-"is read only. Go to %s to manage it."
-msgstr ""
-"Este nodo se configura en modo centralizado. Toda la informaciĆ³n de plantillas "
-"de alertas es solo de lectura. Vaya a %s para gestionarlo."
-
-#: ../../godmode/alerts/alert_commands.php:740
-msgid "No alert commands configured"
-msgstr "Comandos de alertas no configurados"
-
-#: ../../godmode/alerts/alert_list.php:115
-msgid "Already added"
-msgstr "Ya aƱadido"
-
-#: ../../godmode/alerts/alert_list.php:169
-msgid "No template specified"
-msgstr "Ninguna plantilla especificada"
-
-#: ../../godmode/alerts/alert_list.php:480 ../../godmode/alerts/alert_view.php:83
-#: ../../godmode/alerts/alert_view.php:84
-msgid "List alerts"
-msgstr "Lista de alertas"
-
-#: ../../godmode/alerts/alert_list.php:484
-msgid "Builder alert"
-msgstr "Creador de alerta"
-
-#: ../../godmode/alerts/configure_alert_command.php:60
-msgid "Configure alert command"
-msgstr "Configurar comando de alerta"
-
-#: ../../godmode/alerts/configure_alert_command.php:207
-msgid "Update Command"
-msgstr "Actualizar comando"
-
-#: ../../godmode/alerts/configure_alert_command.php:207
-#: ../../godmode/alerts/configure_alert_action.php:275
-msgid "Create Command"
-msgstr "Crear comando"
-
-#: ../../godmode/alerts/configure_alert_command.php:297
-#, php-format
-msgid "Field %s description"
-msgstr "Campo de descripciĆ³n %s"
-
-#: ../../godmode/alerts/configure_alert_command.php:325
-#, php-format
-msgid "Field %s values"
-msgstr "Campos %s valores"
-
-#: ../../godmode/alerts/configure_alert_command.php:327
-msgid "value1,tag1;value2,tag2;value3,tag3"
-msgstr "valor1,etiqueta1;valor2,etiqueta2;valor3,etiqueta3"
-
-#: ../../godmode/alerts/configure_alert_command.php:363
-msgid "Hide"
-msgstr "Ocultar"
-
-#: ../../godmode/alerts/alert_view.php:281
-msgid "Firing conditions"
-msgstr "Condiciones de disparo"
-
-#: ../../godmode/alerts/alert_view.php:305
-#: ../../godmode/alerts/alert_view.php:339
-msgid "Every time that the alert is fired"
-msgstr "Cada vez que la alerta es disparada"
-
-#: ../../godmode/alerts/alert_view.php:385
-msgid ""
-"Select the desired action and mode to see the Firing/Recovery fields for this "
-"action"
-msgstr ""
-"Selecciona la acciĆ³n deseada y el modo para ver los campos de Disparado/"
-"RecuperaciĆ³n para dicha acciĆ³n."
-
-#: ../../godmode/alerts/alert_view.php:446
-msgid "Template fields"
-msgstr "Campos de la plantilla"
-
-#: ../../godmode/alerts/alert_view.php:448
-msgid "Triggering fields configured in template"
-msgstr "Campos de disparado configurados en la plantilla"
-
-#: ../../godmode/alerts/alert_view.php:542
-msgid "The alert recovering is disabled on this template."
-msgstr "La recuperaciĆ³n de la alerta estĆ” desactivada en esta plantilla"
-
-#: ../../godmode/alerts/alert_view.php:558
-msgid "Recovering fields"
-msgstr "Campos de recuperaciĆ³n"
-
-#: ../../godmode/alerts/alert_view.php:560
-msgid ""
-"Fields passed to the command executed by this action when the alert is "
-"recovered"
-msgstr ""
-"Campos pasados al comando ejecutado por esta acciĆ³n cuando la alerta es "
-"recuperada"
-
-#: ../../godmode/alerts/alert_view.php:574
-msgid "Template recovery fields"
-msgstr "Campos de recuperaciĆ³n de la plantilla"
-
-#: ../../godmode/alerts/alert_view.php:576
-msgid "Recovery fields configured in alert template"
-msgstr "Campos de recuperaciĆ³n configurados en la plantilla de la alerta"
-
-#: ../../godmode/alerts/alert_view.php:579
-msgid "Action recovery fields"
-msgstr "AcciĆ³n en campos de recuperaciĆ³n"
-
-#: ../../godmode/alerts/alert_view.php:581
-msgid "Recovery fields configured in alert action"
-msgstr "Campos de recuperaciĆ³n configurados en una acciĆ³n de alerta"
-
-#: ../../godmode/alerts/alert_view.php:584
-msgid "Executed on recovery"
-msgstr "Ejecutado en recuperaciĆ³n"
-
-#: ../../godmode/alerts/alert_view.php:586
-msgid "Fields used on execution when the alert is recovered"
-msgstr "Campos usados en la ejecuciĆ³n cuando la alerta es recuperada"
-
-#: ../../godmode/alerts/configure_alert_action.php:74
-#: ../../godmode/alerts/configure_alert_action.php:87
-msgid "Configure alert action"
-msgstr "Configurar acciĆ³n de alerta"
-
-#: ../../godmode/alerts/configure_alert_action.php:167
-msgid "Update Action"
-msgstr "Actualizar acciĆ³n"
-
-#: ../../godmode/alerts/configure_alert_action.php:204
-msgid "This action may stop working, if you change its name."
-msgstr "Esta acciĆ³n podrĆ­a dejar de funcionar si cambia el nombre."
-
-#: ../../godmode/alerts/configure_alert_action.php:306
-msgid "Recovery"
-msgstr "RecuperaciĆ³n"
-
-#: ../../godmode/alerts/configure_alert_action.php:330
-msgid "Create workunit on recovery"
-msgstr "Crear unidad de trabajo en recuperaciĆ³n"
-
-#: ../../godmode/alerts/configure_alert_action.php:331
-msgid ""
-"If closed status is set on recovery, a workunit will be added to the ticket in "
-"Integria IMS rather that closing the ticket."
-msgstr ""
-"Si el estado cerrado estĆ” en recuperaciĆ³n, se aƱadirĆ” una unidad de trabajo al "
-"ticket en Integria IMS en vez de cerrar el ticket."
-
-#: ../../godmode/users/user_list.php:250
-#, php-format
-msgid "Users defined on %s"
-msgstr "Usuarios definidos en %s"
-
-#: ../../godmode/users/user_list.php:287
-#: ../../godmode/users/configure_user.php:151
-#, php-format
-msgid "Deleted user %s"
-msgstr "Usuario eliminado %s"
-
-#: ../../godmode/users/user_list.php:294 ../../godmode/users/user_list.php:332
-#: ../../godmode/users/configure_user.php:158
-msgid "There was a problem deleting the user"
-msgstr "Error al borrar el usuario"
-
-#: ../../godmode/users/user_list.php:308
-#: ../../godmode/users/configure_user.php:173
-#, php-format
-msgid "Deleted user %s from metaconsole"
-msgstr "Usuario %s eliminado de la Metaconsola"
-
-#: ../../godmode/users/user_list.php:320
-#: ../../godmode/users/configure_user.php:184
-#, php-format
-msgid "Deleted user %s from %s"
-msgstr "Usuario %s eliminado de %s"
-
-#: ../../godmode/users/user_list.php:326
-#: ../../godmode/users/configure_user.php:190
-#, php-format
-msgid "Successfully deleted from %s"
-msgstr "Eliminado correctamente de %s"
-
-#: ../../godmode/users/user_list.php:327
-#: ../../godmode/users/configure_user.php:191
-#, php-format
-msgid "There was a problem deleting the user from %s"
-msgstr "Error al eliminar al usuario de %s"
-
-#: ../../godmode/users/user_list.php:341 ../../godmode/users/profile_list.php:127
-msgid "There was a problem deleting the profile"
-msgstr "Error al borrar el perfil"
-
-#: ../../godmode/users/user_list.php:367
-msgid "There was a problem disabling user"
-msgstr "Error al deshabilitar el usuario"
-
-#: ../../godmode/users/user_list.php:373
-msgid "There was a problem enabling user"
-msgstr "Error al habilitar el usuario"
-
-#: ../../godmode/users/user_list.php:484
-msgid "Profile / Group"
-msgstr "Perfil/Grupo"
-
-#: ../../godmode/users/user_list.php:714
-msgid "Other profiles are also assigned."
-msgstr "Otros perfiles tambiƩn han sido asignados"
-
-#: ../../godmode/users/user_list.php:716
-msgid ""
-"Other profiles you cannot manage are also assigned. These profiles are not "
-"shown. You cannot enable/disable or delete this user."
-msgstr ""
-"Otros perfiles que no puede gestionar tambiƩn han sido asignados. Estos "
-"perfiles no se muestran. No puede habilitar/deshabilitar o borrar este usuario."
-
-#: ../../godmode/users/user_list.php:873
-#: ../../godmode/users/configure_user.php:208
-msgid "Create user"
-msgstr "Crear usuario"
-
-#: ../../godmode/users/user_list.php:876
-#: ../../godmode/users/configure_user.php:317
-#, 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:206
-msgid "Update user"
-msgstr "Actualizar usuario"
-
-#: ../../godmode/users/configure_user.php:403
-msgid "User ID cannot be empty"
-msgstr "El ID de usuario no puede estar vacĆ­o."
-
-#: ../../godmode/users/configure_user.php:410
-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:418
-msgid "Passwords cannot be empty"
-msgstr "Las contraseƱas no pueden estar vacƭas."
-
-#: ../../godmode/users/configure_user.php:425
-msgid "Passwords didn't match"
-msgstr "Las contraseƱas no coinciden."
-
-#: ../../godmode/users/configure_user.php:484
-msgid ""
-"Strict ACL is not recommended for admin users because performance could be "
-"affected."
-msgstr ""
-"ACL estricto no estĆ” recomendado para usuarios administradores porque el "
-"rendimiento podrĆ­a verse afectado."
-
-#: ../../godmode/users/configure_user.php:519
-#: ../../godmode/users/configure_user.php:806
-msgid "Profile added successfully"
-msgstr "Perfil aƱadido correctamente"
-
-#: ../../godmode/users/configure_user.php:520
-#: ../../godmode/users/configure_user.php:807
-msgid "Profile cannot be added"
-msgstr "El perfil no se puede aƱadir."
-
-#: ../../godmode/users/configure_user.php:644
-#: ../../godmode/users/configure_user.php:668
-#: ../../godmode/users/configure_user.php:738
-#: ../../godmode/users/configure_user.php:745
-#: ../../godmode/users/configure_user.php:777
-msgid "Error updating user info (no change?)"
-msgstr "Error al actualizar la informaciĆ³n del usuario (Āæno hubo cambios?)"
-
-#: ../../godmode/users/configure_user.php:673
-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:675
-msgid "Password of active user is not correct"
-msgstr "La contraseƱa del usuario activo no es correcta"
-
-#: ../../godmode/users/configure_user.php:691
-msgid "Passwords does not match"
-msgstr "Las contraseƱas no coinciden."
-
-#: ../../godmode/users/configure_user.php:766
-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:845
-msgid "Update User"
-msgstr "Actualizar usuario"
-
-#: ../../godmode/users/configure_user.php:847
-msgid "Create User"
-msgstr "Crear usuario"
-
-#: ../../godmode/users/configure_user.php:968
-msgid "Own password confirmation"
-msgstr "ConfirmaciĆ³n de contraseƱa propia"
-
-#: ../../godmode/users/configure_user.php:977
-msgid "Global Profile"
-msgstr "Perfil global"
-
-#: ../../godmode/users/configure_user.php:985
-msgid ""
-"This user has permissions to manage all. An admin user should not requiere "
-"additional group permissions, except for using Enterprise ACL."
-msgstr ""
-"Este usuario tiene permisos para configurar todo. Un usuario administrador no "
-"deberĆ­a requerir permisos adicionales de grupo, excepto para usar ACL "
-"Enterprise."
-
-#: ../../godmode/users/configure_user.php:1000
-msgid ""
-"This user has separated permissions to view data in his group agents, create "
-"incidents belong to his groups, add notes in another incidents, create "
-"personal assignments or reviews and other tasks, on different profiles"
-msgstr ""
-"Este usuario tiene permisos diferentes para ver los datos en el grupo de "
-"agentes, crear incidentes en el grupo, aƱadir notas en otros incidentes, crear "
-"asignaciones personales o revisarlas y otras tareas en perfiles diferentes."
-
-#: ../../godmode/users/configure_user.php:1081
-msgid "Search custom field view"
-msgstr "Buscar vista de campo personalizado"
-
-#: ../../godmode/users/configure_user.php:1081
-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:1098
-msgid "Use global conf"
-msgstr "Usar configuraciĆ³n global"
-
-#: ../../godmode/users/configure_user.php:1115
-msgid "External link"
-msgstr "Enlace externo"
-
-#: ../../godmode/users/configure_user.php:1208
-msgid "Metaconsole access"
-msgstr "Acceso a la Metaconsola"
-
-#: ../../godmode/users/configure_user.php:1226
-msgid "Not Login"
-msgstr "No se inicia la sesiĆ³n"
-
-#: ../../godmode/users/configure_user.php:1228
-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:1238
-msgid "Local user"
-msgstr "Usuario local"
-
-#: ../../godmode/users/configure_user.php:1240
-msgid ""
-"The user with local authentication enabled will always use local "
-"authentication."
-msgstr ""
-"El usuario con la autenticaciĆ³n local habilitada siempre utilizarĆ” la "
-"autenticaciĆ³n local."
-
-#: ../../godmode/users/configure_user.php:1250
-msgid "Session Time"
-msgstr "TIempo de sesiĆ³n"
-
-#: ../../godmode/users/configure_user.php:1252
-msgid ""
-"This is defined in minutes, If you wish a permanent session should putting -1 "
-"in this field."
-msgstr ""
-"Esto estĆ” definido en minutos; si quieres una sesiĆ³n permanente, pon -1 en "
-"este campo."
-
-#: ../../godmode/users/configure_user.php:1286
-msgid "Default event filter"
-msgstr "Filtro de evento por defecto"
-
-#: ../../godmode/users/configure_user.php:1300
-msgid "eHorus user access enabled"
+#: ../../operation/users/user_edit.php:690
+msgid "eHorus user acces enabled"
 msgstr "Acceso de usuario eHorus habilitado"
 
-#: ../../godmode/users/configure_user.php:1340
-msgid "User must be created before activating double authentication."
-msgstr "El usuario debe estar creado antes de activar la doble autenticaciĆ³n."
+#: ../../operation/users/user_edit.php:737
+msgid "Integria user configuration"
+msgstr "ConfiguraciĆ³n de usuario de Integria"
 
-#: ../../godmode/users/configure_user.php:1368
-msgid "Enable agents managment"
-msgstr "Habilitar gestiĆ³n de agentes"
-
-#: ../../godmode/users/configure_user.php:1376
-msgid "Assigned node"
-msgstr "Nodo asignado"
-
-#: ../../godmode/users/configure_user.php:1376
-msgid "Server where the agents created of this user will be placed"
-msgstr "Servidor donde se ubicarƔn los agentes creados por este usuario"
-
-#: ../../godmode/users/configure_user.php:1385
-msgid "Enable node access"
-msgstr "Habilitar el acceso al nodo"
-
-#: ../../godmode/users/configure_user.php:1385
-msgid "With this option enabled, the user will can access to nodes console"
+#: ../../operation/users/user_edit.php:774
+msgid "You can not change your user info under the current authentication scheme"
 msgstr ""
-"Con esta opciĆ³n habilitada, el usuario podrĆ” tener acceso a los nodos de la "
-"consola."
+"No puede cambiar la informaciĆ³n de usuario con la configuraciĆ³n actual de "
+"autenticaciĆ³n"
 
-#: ../../godmode/users/configure_user.php:1602
-msgid "yes"
-msgstr "sĆ­"
+#: ../../operation/users/user_edit.php:851
+msgid "This user doesn't have any assigned profile/group."
+msgstr "Este usuario no tiene asignado ningĆŗn perfil/grupo"
 
-#: ../../godmode/users/configure_user.php:1605
-msgid "no"
-msgstr "no"
+#: ../../operation/users/user_edit_header.php:102
+#: ../../operation/users/user_edit_notifications.php:36
+msgid "User notifications"
+msgstr "Notificaciones de usuario"
 
-#: ../../godmode/users/configure_user.php:1609
-msgid "please select profile and group"
-msgstr "Seleccione un perfil y grupo"
+#: ../../operation/users/user_edit_header.php:127
+#: ../../operation/messages/message_list.php:86
+#: ../../operation/messages/message_edit.php:99 ../../operation/menu.php:474
+msgid "Workspace"
+msgstr "Ɓrea de trabajo"
 
-#: ../../godmode/users/configure_user.php:1635
-msgid "Deleting last profile will delete this user"
-msgstr "Eliminar el Ćŗltimo perfil eliminarĆ” este usuario"
+#: ../../operation/users/user_edit_header.php:131
+msgid "Edit user"
+msgstr "Editar usuario"
 
-#: ../../godmode/users/configure_user.php:1675
+#: ../../operation/users/user_edit_notifications.php:65
+msgid "Also receive an email"
+msgstr "Recibir tambiĆ©n un correo electrĆ³nico"
+
+#: ../../operation/users/user_edit_notifications.php:94
+msgid "Controls have been disabled by the system administrator"
+msgstr "Los controles han sido deshabilitados por el administrador del sistema"
+
+#: ../../operation/search_helps.php:17
+msgid "Zero results found."
+msgstr "Cero resultados"
+
+#: ../../operation/search_helps.php:18
+#, php-format
+msgid "You can find more help in the wiki"
+msgstr "Puede encontrar mƔs ayuda en wiki"
+
+#: ../../operation/search_helps.php:32
+msgid "Matches"
+msgstr "Coincidencias"
+
+#: ../../operation/visual_console/view.php:387
+msgid "Delete Item"
+msgstr "Eliminar elemento"
+
+#: ../../operation/visual_console/view.php:393
+msgid "Copy Item"
+msgstr "Copiar elemento"
+
+#: ../../operation/visual_console/view.php:406
+#: ../../operation/agentes/estado_generalagente.php:345
+msgid "Force remote checks"
+msgstr "Forzar comprobaciĆ³n remota"
+
+#: ../../operation/visual_console/view.php:734
+msgid "Are you sure"
+msgstr "ĀæEstĆ” seguro?"
+
+#: ../../operation/visual_console/legacy_public_view.php:168
+#: ../../operation/visual_console/public_view.php:150
+msgid "QR code of the page"
+msgstr "CĆ³digo QR de la pĆ”gina"
+
+#: ../../operation/visual_console/legacy_public_view.php:198
+#: ../../operation/visual_console/legacy_view.php:339
+msgid "Until refresh"
+msgstr "Hasta la actualizaciĆ³n"
+
+#: ../../operation/search_results.php:67
+msgid "Global search"
+msgstr "BĆŗsqueda global"
+
+#: ../../operation/agentes/stat_win.php:116
+#, php-format
+msgid "%s Graph"
+msgstr "GrƔfica %s"
+
+#: ../../operation/agentes/stat_win.php:149
+msgid "There was a problem locating the source of the graph"
+msgstr "Error al localizar la fuente del grƔfico"
+
+#: ../../operation/agentes/stat_win.php:267
+#: ../../operation/agentes/interface_traffic_graph_win.php:167
+msgid "Refresh time"
+msgstr "Tiempo de actualizaciĆ³n"
+
+#: ../../operation/agentes/stat_win.php:278 ../../operation/agentes/graphs.php:222
+msgid "Show events"
+msgstr "Mostrar eventos"
+
+#: ../../operation/agentes/stat_win.php:299 ../../operation/agentes/graphs.php:224
+msgid "Show alerts"
+msgstr "Mostrar alertas"
+
+#: ../../operation/agentes/stat_win.php:307 ../../operation/agentes/stat_win.php:418
+#: ../../operation/agentes/interface_traffic_graph_win.php:207
+msgid "Begin time"
+msgstr "Tiempo de inicio"
+
+#: ../../operation/agentes/stat_win.php:325 ../../operation/agentes/stat_win.php:428
+#: ../../operation/agentes/interface_traffic_graph_win.php:213
+#: ../../operation/agentes/graphs.php:218 ../../operation/reporting/graph_viewer.php:360
+msgid "Time range"
+msgstr "Rango de tiempo"
+
+#: ../../operation/agentes/stat_win.php:340
+msgid "Zoom"
+msgstr "AmpliaciĆ³n"
+
+#: ../../operation/agentes/stat_win.php:360
+#: ../../operation/agentes/interface_traffic_graph_win.php:227
+msgid "Show percentil"
+msgstr "Mostrar el percentil"
+
+#: ../../operation/agentes/stat_win.php:386
+msgid "Show AVG/MAX/MIN data series in graph"
+msgstr "Mostar series de datos MEDIA/MƄX./MƍN. en la grĆ”fica"
+
+#: ../../operation/agentes/stat_win.php:489
+#: ../../operation/agentes/interface_traffic_graph_win.php:306
+msgid "Graph configuration menu"
+msgstr "Menu de configuraciĆ³n de grĆ”fica"
+
+#: ../../operation/agentes/alerts_status.php:338
+msgid "No actions"
+msgstr "Sin acciones"
+
+#: ../../operation/agentes/alerts_status.php:371
+#: ../../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:372
+#: ../../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:441
+msgid "Full list of alerts"
+msgstr "Lista completa de alertas"
+
+#: ../../operation/agentes/alerts_status.php:532
+msgid "You must select at least one alert."
+msgstr "Debe seleccionar al menos una alerta."
+
+#: ../../operation/agentes/gis_view.php:96
+msgid "Period to show data as path"
+msgstr "PerĆ­odo para mostrar datos como ruta"
+
+#: ../../operation/agentes/gis_view.php:100
+msgid "Refresh path"
+msgstr "Actualizar ruta"
+
+#: ../../operation/agentes/gis_view.php:158
+msgid "This agent doesn't have any GIS data."
+msgstr "Este agente no tiene ningĆŗn dato GIS."
+
+#: ../../operation/agentes/gis_view.php:170
+msgid "Positional data from the last"
+msgstr "Datos de posiciĆ³n desde el Ćŗltimo"
+
+#: ../../operation/agentes/gis_view.php:209
+#, php-format
+msgid "%s Km"
+msgstr "%s Km"
+
+#: ../../operation/agentes/gis_view.php:223
+msgid "Distance"
+msgstr "Distancia"
+
+#: ../../operation/agentes/gis_view.php:224
+msgid "# of Packages"
+msgstr "# de paquetes"
+
+#: ../../operation/agentes/gis_view.php:225 ../../operation/gis_maps/ajax.php:242
+msgid "Manual placement"
+msgstr "ColocaciĆ³n manual"
+
+#: ../../operation/agentes/exportdata.csv.php:66
+#: ../../operation/agentes/exportdata.php:71
+#: ../../operation/agentes/exportdata.excel.php:66
+msgid "Invalid time specified"
+msgstr "Hora especificada no vƔlida"
+
+#: ../../operation/agentes/exportdata.csv.php:178
+#: ../../operation/agentes/exportdata.php:209
+#: ../../operation/agentes/exportdata.excel.php:161
+msgid "No modules specified"
+msgstr "No se especificĆ³ ningĆŗn mĆ³dulo"
+
+#: ../../operation/agentes/log_sources_status.php:75
+msgid "Review in log viewer"
+msgstr "Revisar en visor de logs"
+
+#: ../../operation/agentes/log_sources_status.php:98
+msgid "No log sources found"
+msgstr "No se han encontrado fuentes de logs"
+
+#: ../../operation/agentes/log_sources_status.php:117
+msgid "Log sources status"
+msgstr "Estado de las fuentes de logs"
+
+#: ../../operation/agentes/estado_agente.php:242
+msgid "Sucessfully deleted agent"
+msgstr "Agente borrado correctamente"
+
+#: ../../operation/agentes/estado_agente.php:244
+msgid "There was an error message deleting the agent"
+msgstr "Error al intentar borrar el agente"
+
+#: ../../operation/agentes/estado_agente.php:285
+msgid "Search in custom fields"
+msgstr "Buscar en campos personalizados"
+
+#: ../../operation/agentes/ehorus.php:30
+msgid "Missing agent id"
+msgstr "Falta ID de agente"
+
+#: ../../operation/agentes/ehorus.php:51
+msgid "Missing ehorus agent id"
+msgstr "Falta ID de agente de eHorus"
+
+#: ../../operation/agentes/ehorus.php:100 ../../operation/agentes/ehorus.php:137
+msgid "There was an error retrieving an authorization token"
+msgstr "Error al recibir el token de autorizaciĆ³n"
+
+#: ../../operation/agentes/ehorus.php:112 ../../operation/agentes/ehorus.php:149
+#: ../../operation/agentes/ehorus.php:185
+msgid "There was an error processing the response"
+msgstr "Error al procesar la respuesta"
+
+#: ../../operation/agentes/ehorus.php:173
+msgid "There was an error retrieving the agent data"
+msgstr "Error al obtener los datos del agente"
+
+#: ../../operation/agentes/ehorus.php:190
+msgid "Remote management of this agent with eHorus"
+msgstr "Control remoto de este agente con eHorus"
+
+#: ../../operation/agentes/ehorus.php:192
+msgid "Launch"
+msgstr "Iniciar"
+
+#: ../../operation/agentes/ehorus.php:198
+msgid "The connection was lost and the authorization token was expired"
+msgstr "La conexiĆ³n se perdiĆ³ y el token de autorizaciĆ³n ha expirado."
+
+#: ../../operation/agentes/ehorus.php:198
+msgid "Reload the page to request a new authorization token"
+msgstr "Refresca la pĆ”gina para obtener otro token de autorizaciĆ³n"
+
+#: ../../operation/agentes/status_events.php:26
+#: ../../operation/agentes/status_events.php:27
+msgid "Latest events for this agent"
+msgstr "ƚltimos eventos para este agente"
+
+#: ../../operation/agentes/networkmap.dinamic.php:102
+#: ../../operation/agentes/pandora_networkmap.view.php:2266
+#: ../../operation/snmpconsole/snmp_statistics.php:45
+#: ../../operation/snmpconsole/snmp_browser.php:56
+#: ../../operation/snmpconsole/snmp_view.php:118
+msgid "Normal screen"
+msgstr "Pantalla normal"
+
+#: ../../operation/agentes/networkmap.dinamic.php:126
+#: ../../operation/agentes/pandora_networkmap.view.php:2290
+msgid "List of networkmap"
+msgstr "Lista de mapas de red"
+
+#: ../../operation/agentes/agent_fields.php:47
+#: ../../operation/agentes/custom_fields.php:90
+msgid "empty"
+msgstr "vacĆ­o"
+
+#: ../../operation/agentes/realtime_win.php:85
+#, php-format
+msgid "%s Realtime Module Graph"
+msgstr "GrĆ”fica de mĆ³dulos %s en tiempo real"
+
+#: ../../operation/agentes/realtime_win.php:112
+msgid "Realtime extension is not enabled."
+msgstr "La extensiĆ³n tiempo real no estĆ” habilitada"
+
+#: ../../operation/agentes/pandora_networkmap.editor.php:205
+msgid "Network maps editor"
+msgstr "Editor de mapas de red"
+
+#: ../../operation/agentes/pandora_networkmap.editor.php:324
+#: ../../operation/agentes/pandora_networkmap.view.php:127
+msgid "Position X"
+msgstr "PosiciĆ³n X"
+
+#: ../../operation/agentes/pandora_networkmap.editor.php:326
+#: ../../operation/agentes/pandora_networkmap.view.php:129
+msgid "Position Y"
+msgstr "PosiciĆ³n Y"
+
+#: ../../operation/agentes/pandora_networkmap.editor.php:329
+#: ../../operation/agentes/pandora_networkmap.view.php:132
+msgid "Zoom scale"
+msgstr "Escala de zoom"
+
+#: ../../operation/agentes/pandora_networkmap.editor.php:334
+#: ../../operation/agentes/pandora_networkmap.view.php:134
+msgid "Introduce zoom level. 1 = Highest resolution. Figures may include decimals"
+msgstr ""
+"Introducir nivel de zoom. 1 = ResoluciĆ³n mĆ”xima. Las cifras pueden incluir decimales."
+
+#: ../../operation/agentes/pandora_networkmap.editor.php:337
+#: ../../operation/agentes/pandora_networkmap.view.php:137
+msgid "CIDR IP mask"
+msgstr "MƔscara CIDR"
+
+#: ../../operation/agentes/pandora_networkmap.editor.php:339
+#: ../../operation/agentes/pandora_networkmap.view.php:164
+msgid "Source from recon task"
+msgstr "Origen de tarea recon"
+
+#: ../../operation/agentes/pandora_networkmap.editor.php:341
+#: ../../operation/agentes/pandora_networkmap.view.php:166
 msgid ""
-"User will be created without profiles assigned and won't be able to log in, "
-"are you sure?"
+"It is setted any recon task, the nodes get from the recontask IP mask instead from "
+"the group."
 msgstr ""
-"El usuario se crearĆ” sin perfiles asignados y no podrĆ” identificarse, ĀæestĆ” "
-"seguro?"
+"Si estƔ seleccionada alguna tarea recon, los nodos se obtendrƔn de la mƔscara IP de "
+"la recontask en lugar del grupo."
 
-#: ../../godmode/users/configure_profile.php:76
-#: ../../godmode/users/profile_list.php:84
+#: ../../operation/agentes/pandora_networkmap.editor.php:358
+#: ../../operation/agentes/pandora_networkmap.view.php:182
+msgid "Show only the task with the recon script \"SNMP L2 Recon\"."
+msgstr "Mostrar solo las tareas recon con el script \"SNMP L2 Reconā€."
+
+#: ../../operation/agentes/pandora_networkmap.editor.php:362
+#: ../../operation/agentes/pandora_networkmap.view.php:186
+msgid "Source from CIDR IP mask"
+msgstr "Origen de mƔscara CIDR"
+
+#: ../../operation/agentes/pandora_networkmap.editor.php:365
+msgid "Source group"
+msgstr "Grupo de origen"
+
+#: ../../operation/agentes/pandora_networkmap.editor.php:382
+msgid "Source id group changed. All elements in networkmap will be lost."
+msgstr ""
+"Grupo de ID de origen cambiado. Se perderƔn todos los elementos del mapa de red."
+
+#: ../../operation/agentes/pandora_networkmap.editor.php:387
+#: ../../operation/agentes/pandora_networkmap.view.php:198
+msgid "Don't show subgroups:"
+msgstr "No mostrar subgrupos:"
+
+#: ../../operation/agentes/pandora_networkmap.editor.php:405
+#: ../../operation/agentes/pandora_networkmap.view.php:232
+msgid "Method generation networkmap"
+msgstr "MĆ©todo de generaciĆ³n de mapas de red"
+
+#: ../../operation/agentes/pandora_networkmap.editor.php:426
+#: ../../operation/agentes/pandora_networkmap.view.php:248
+msgid "Separation between nodes. By default 0.25"
+msgstr "SeparaciĆ³n entre nodos.  Por defecto 0,25"
+
+#: ../../operation/agentes/pandora_networkmap.editor.php:428
+#: ../../operation/agentes/pandora_networkmap.view.php:250
+msgid "Rank separation"
+msgstr "SeparaciĆ³n de rango"
+
+#: ../../operation/agentes/pandora_networkmap.editor.php:429
+#: ../../operation/agentes/pandora_networkmap.view.php:251
+msgid ""
+"Only flat and radial. Separation between arrows. By default 0.5 in flat and 1.0 in "
+"radial"
+msgstr ""
+"Solo plano y radial. SeparaciĆ³n entre flechas. Por defecto 0,5 en el plano y 1,0 en "
+"el radial."
+
+#: ../../operation/agentes/pandora_networkmap.editor.php:431
+#: ../../operation/agentes/pandora_networkmap.view.php:253
+msgid "Min nodes dist"
+msgstr "Distancia mĆ­nima entre nodos"
+
+#: ../../operation/agentes/pandora_networkmap.editor.php:432
+#: ../../operation/agentes/pandora_networkmap.view.php:254
+msgid "Only circular. Minimum separation between all nodes. By default 1.0"
+msgstr "Solo circular. SeparaciĆ³n mĆ­nima entre todos los nodos. Por defecto 1,0."
+
+#: ../../operation/agentes/pandora_networkmap.editor.php:434
+#: ../../operation/agentes/pandora_networkmap.view.php:256
+msgid "Default ideal node separation"
+msgstr "SeparaciĆ³n ideal de nodos por defecto"
+
+#: ../../operation/agentes/pandora_networkmap.editor.php:435
+#: ../../operation/agentes/pandora_networkmap.view.php:257
+msgid "Only fdp. Default ideal node separation in the layout. By default 0.3"
+msgstr "Solo FDP. SeparaciĆ³n ideal de nodos por defecto en el diseƱo. Por defecto 0,3."
+
+#: ../../operation/agentes/pandora_networkmap.editor.php:601
+msgid "Source id group changed. All elements in Networkmap will be lost"
+msgstr ""
+"Grupo de ID de origen cambiado. Se perderƔn todos los elementos del mapa de red."
+
+#: ../../operation/agentes/pandora_networkmap.php:139
+#: ../../operation/agentes/pandora_networkmap.php:374
+msgid "Succesfully created"
+msgstr "Creado correctamente"
+
+#: ../../operation/agentes/pandora_networkmap.php:215
+#: ../../operation/agentes/pandora_networkmap.php:507
+msgid "Succesfully updated"
+msgstr "Actualizado correctamente"
+
+#: ../../operation/agentes/pandora_networkmap.php:532
+msgid "Succesfully duplicate"
+msgstr "Duplicado correctamente"
+
+#: ../../operation/agentes/pandora_networkmap.php:546
+msgid "Succesfully deleted"
+msgstr "Eliminado correctamente"
+
+#: ../../operation/agentes/pandora_networkmap.php:656
+msgid "List of network maps"
+msgstr "Lista de mapas de red"
+
+#: ../../operation/agentes/pandora_networkmap.php:776
+msgid "Empty map"
+msgstr "Mapa vacĆ­o"
+
+#: ../../operation/agentes/pandora_networkmap.php:780
+msgid "Pending to generate"
+msgstr "Pendiente de generar"
+
+#: ../../operation/agentes/pandora_networkmap.php:811
+msgid "There are no maps defined."
+msgstr "No hay mapas definidos."
+
+#: ../../operation/agentes/pandora_networkmap.php:818
+msgid "Create network map"
+msgstr "Crear mapa de red"
+
+#: ../../operation/agentes/pandora_networkmap.php:825
+msgid "Create empty network map"
+msgstr "Crear mapa de red vacĆ­o"
+
+#: ../../operation/agentes/interface_traffic_graph_win.php:95
 #, php-format
-msgid "Profiles defined on %s"
-msgstr "Perfiles definidos en %s."
+msgid "%s Interface Graph"
+msgstr "GrƔfica de interfaz de %s"
 
-#: ../../godmode/users/configure_profile.php:142
-msgid "Create profile"
-msgstr "Crear perfil"
+#: ../../operation/agentes/interface_traffic_graph_win.php:250
+msgid "Zoom factor"
+msgstr "Nivel de zoom"
 
-#: ../../godmode/users/configure_profile.php:147
-msgid "There was a problem loading profile"
-msgstr "Error al cargar el perfil"
+#: ../../operation/agentes/interface_traffic_graph_win.php:257
+msgid "Full"
+msgstr "Completa"
 
-#: ../../godmode/users/configure_profile.php:239
-msgid "Update profile"
-msgstr "Actualizar perfil"
+#: ../../operation/agentes/graphs.php:143
+msgid "Other modules"
+msgstr "Otros mĆ³dulos"
 
-#: ../../godmode/users/configure_profile.php:249
-msgid "Update Profile"
-msgstr "Actualizar perfil"
+#: ../../operation/agentes/graphs.php:150
+msgid "Modules network no proc"
+msgstr "MĆ³dulos de red sin proc"
 
-#: ../../godmode/users/configure_profile.php:251
-msgid "Create Profile"
-msgstr "Crear perfil"
+#: ../../operation/agentes/graphs.php:157
+msgid "Modules boolean"
+msgstr "MĆ³dulos booleanos"
 
-#: ../../godmode/users/configure_profile.php:272
-msgid "View agents"
-msgstr "Ver agentes"
+#: ../../operation/agentes/graphs.php:224
+msgid "the combined graph does not show the alerts into this graph"
+msgstr "Los grƔficos combinados no muestran las alertas"
 
-#: ../../godmode/users/configure_profile.php:276
-msgid "Disable agents"
-msgstr "Desactivar agentes"
+#: ../../operation/agentes/graphs.php:226
+msgid "Show as one combined graph"
+msgstr "Mostrar como un grƔfico combinado"
 
-#: ../../godmode/users/configure_profile.php:280
-msgid "Edit agents"
-msgstr "Editar agentes"
+#: ../../operation/agentes/graphs.php:228
+msgid "several graphs for each module"
+msgstr "Varios grĆ”ficos por cada mĆ³dulo"
 
-#: ../../godmode/users/configure_profile.php:287
-msgid "Edit alerts"
-msgstr "Editar alertas"
+#: ../../operation/agentes/graphs.php:229
+msgid "One combined graph"
+msgstr "GrƔfico combinado"
 
-#: ../../godmode/users/configure_profile.php:302
-msgid "Edit events"
-msgstr "Editar eventos"
+#: ../../operation/agentes/graphs.php:237 ../../operation/agentes/graphs.php:412
+msgid "Area stack"
+msgstr "GrƔfico de Ɣrea apilada"
 
-#: ../../godmode/users/configure_profile.php:313
-msgid "View reports"
-msgstr "Ver informes"
+#: ../../operation/agentes/graphs.php:239 ../../operation/agentes/graphs.php:420
+msgid "Line stack"
+msgstr "GrƔfico de lƭnea apilada"
 
-#: ../../godmode/users/configure_profile.php:317
-msgid "Edit reports"
-msgstr "Editar informes"
+#: ../../operation/agentes/graphs.php:256
+msgid "Save as custom graph"
+msgstr "Guardar como grƔfico personalizado"
 
-#: ../../godmode/users/configure_profile.php:321
-msgid "Manage reports"
-msgstr "Gestionar informes"
+#: ../../operation/agentes/graphs.php:269
+msgid "Filter graphs"
+msgstr "Filtrar grƔficos"
 
-#: ../../godmode/users/configure_profile.php:328
-msgid "View network maps"
-msgstr "Ver mapas de red"
+#: ../../operation/agentes/graphs.php:296
+msgid "There was an error loading the graph"
+msgstr "Error al cargar el grƔfico"
 
-#: ../../godmode/users/configure_profile.php:332
-msgid "Edit network maps"
-msgstr "Editar mapas de red"
+#: ../../operation/agentes/graphs.php:304 ../../operation/agentes/graphs.php:308
+msgid "Name custom graph"
+msgstr "Nombre de grƔfico personalizado"
 
-#: ../../godmode/users/configure_profile.php:336
-msgid "Manage network maps"
-msgstr "Gestionar mapas de red"
+#: ../../operation/agentes/graphs.php:354
+msgid "Save custom graph"
+msgstr "Guardar grƔfico personalizado"
 
-#: ../../godmode/users/configure_profile.php:347
-msgid "Edit visual console"
-msgstr "Editar consola visual"
+#: ../../operation/agentes/graphs.php:375
+msgid "Custom graph create from the tab graphs in the agent."
+msgstr "GrĆ”fico personalizado creado desde la secciĆ³n de grĆ”ficos del agente"
 
-#: ../../godmode/users/configure_profile.php:351
-msgid "Manage visual console"
-msgstr "Gestionar consolas visuales"
+#: ../../operation/agentes/datos_agente.php:173
+msgid "Received data from"
+msgstr "Datos recibidos de"
 
-#: ../../godmode/users/configure_profile.php:363
-msgid "View NCM data"
-msgstr "Ver datos de NCM"
+#: ../../operation/agentes/datos_agente.php:180
+msgid "Main database"
+msgstr "Base de datos principal"
 
-#: ../../godmode/users/configure_profile.php:367
-msgid "Operate NCM"
-msgstr "Operar NCM"
+#: ../../operation/agentes/datos_agente.php:181
+msgid ""
+"Switch between the main database and the history database to retrieve module data"
+msgstr ""
+"Cambiar entre base de datos principal e histĆ³rica para recoger los datos de los "
+"mĆ³dulos"
 
-#: ../../godmode/users/configure_profile.php:371
-msgid "Manage NCM"
-msgstr "Administrar NCM"
+#: ../../operation/agentes/datos_agente.php:211
+#: ../../operation/agentes/alerts_status.functions.php:118
+msgid "Free text for search"
+msgstr "BĆŗsqueda de texto libre"
 
-#: ../../godmode/users/configure_profile.php:378
-msgid "Manage users"
-msgstr "Gestionar usuarios"
+#: ../../operation/agentes/interface_view.functions.php:170
+#: ../../operation/agentes/interface_view.functions.php:171
+msgid "Interface filter"
+msgstr "Filtro de interfaz"
 
-#: ../../godmode/users/configure_profile.php:385
-msgid "Manage database"
-msgstr "Gestionar la base de datos"
+#: ../../operation/agentes/interface_view.functions.php:489
+msgid "IfName"
+msgstr "IfName"
 
-#: ../../godmode/users/configure_profile.php:392
+#: ../../operation/agentes/interface_view.functions.php:499
+msgid "IfSpeed"
+msgstr "IfSpeed"
+
+#: ../../operation/agentes/interface_view.functions.php:507
+msgid "IfInOctets"
+msgstr "IfInOctets"
+
+#: ../../operation/agentes/interface_view.functions.php:515
+msgid "IfOutOctets"
+msgstr "IfOutOctets"
+
+#: ../../operation/agentes/interface_view.functions.php:523
+msgid "% Bandwidth usage (in)"
+msgstr "% Uso de ancho de banda (entrada)"
+
+#: ../../operation/agentes/interface_view.functions.php:531
+msgid "% Bandwidth usage (out)"
+msgstr "% Uso de ancho de banda (salida)"
+
+#: ../../operation/agentes/interface_view.functions.php:736
+msgid "No search parameters"
+msgstr "No hay parĆ”metros de bĆŗsqueda"
+
+#: ../../operation/agentes/snapshot_view.php:42
+msgid "Cannot connect with node to display the module data."
+msgstr "No se ha podido conectar con el nodo para mostrar datos de mĆ³dulos."
+
+#: ../../operation/agentes/snapshot_view.php:90
 #, php-format
-msgid "%s management"
-msgstr "GestiĆ³n %s."
+msgid "%s Snapshot data view for module (%s)"
+msgstr "Vista de datos de captura de %s del mĆ³dulo (%s)"
 
-#: ../../godmode/users/profile_list.php:115
+#: ../../operation/agentes/snapshot_view.php:96
+#, php-format
+msgid "Current data at %s"
+msgstr "Datos actuales en %s"
+
+#: ../../operation/agentes/exportdata.php:34 ../../operation/menu.php:536
+msgid "Export data"
+msgstr "Exportar datos"
+
+#: ../../operation/agentes/exportdata.php:248
+msgid "Source agent"
+msgstr "Agente de origen"
+
+#: ../../operation/agentes/exportdata.php:283
+msgid "No modules of type string. You can not calculate their average"
+msgstr "No hay mĆ³dulos de tipo cadena. No puedes calcular la media."
+
+#: ../../operation/agentes/exportdata.php:375
+msgid "Export type"
+msgstr "Tipo de exportaciĆ³n"
+
+#: ../../operation/agentes/exportdata.php:380
+msgid "MS Excel"
+msgstr "MS Excel"
+
+#: ../../operation/agentes/exportdata.php:381
+msgid "Average per hour/day"
+msgstr "Media por hora/dĆ­a"
+
+#: ../../operation/agentes/custom_fields.php:59
+msgid "No fields defined"
+msgstr "No se han definido campos"
+
+#: ../../operation/agentes/interface_view.php:63 ../../operation/menu.php:61
+msgid "Interface view"
+msgstr "Vista de interfaz"
+
+#: ../../operation/agentes/status_monitor.php:95 ../../operation/menu.php:58
+msgid "Monitor detail"
+msgstr "Detalle del monitor"
+
+#: ../../operation/agentes/status_monitor.php:119
+msgid "Monitor view"
+msgstr "Vista del monitor"
+
+#: ../../operation/agentes/status_monitor.php:641
+msgid "Wux server module"
+msgstr "MĆ³dulo del servidor WUX"
+
+#: ../../operation/agentes/status_monitor.php:662
+msgid "Min. hours in current status"
+msgstr "MĆ­n. de horas en el estado actual"
+
+#: ../../operation/agentes/status_monitor.php:765
+msgid "Not condition"
+msgstr "Condition NOT"
+
+#: ../../operation/agentes/status_monitor.php:765
+msgid ""
+"If you check this option, those elements that do NOT meet any of the requirements "
+"will be shown"
+msgstr ""
+"Si marca esta opciĆ³n, se mostrarĆ”n aquellos elementos que NO cumplan alguno de los "
+"requisitos"
+
+#: ../../operation/agentes/status_monitor.php:872
+msgid "Show filters"
+msgstr "Mostrar filtros"
+
+#: ../../operation/agentes/status_monitor.php:1312
+msgid "Data Type"
+msgstr "Tipo de datos"
+
+#: ../../operation/agentes/status_monitor.php:1431
+#: ../../operation/agentes/pandora_networkmap.view.php:1743
+msgid "(Adopt) "
+msgstr "(Adoptar) "
+
+#: ../../operation/agentes/status_monitor.php:1439
+#: ../../operation/agentes/pandora_networkmap.view.php:1751
+msgid "(Unlinked) (Adopt) "
+msgstr "(Sin enlazar) (Adoptar) "
+
+#: ../../operation/agentes/status_monitor.php:1442
+#: ../../operation/agentes/pandora_networkmap.view.php:1754
+msgid "(Unlinked) "
+msgstr "(Sin enlazar) "
+
+#: ../../operation/agentes/status_monitor.php:1980
+msgid "This group doesn't have any monitor"
+msgstr "Este grupo no tiene ningĆŗn monitor definido."
+
+#: ../../operation/agentes/status_monitor.php:1982
+msgid "Sorry no search parameters"
+msgstr "No hay parĆ”metros de bĆŗsqueda"
+
+#: ../../operation/agentes/group_view.php:180
+msgid "Summary of the status groups"
+msgstr "Resumen de los grupos por estado"
+
+#: ../../operation/agentes/estado_monitores.php:51
+msgid "Tag's information"
+msgstr "InformaciĆ³n de etiquetas"
+
+#: ../../operation/agentes/estado_monitores.php:109
+msgid "Relationship information"
+msgstr "InformaciĆ³n de relaciones"
+
+#: ../../operation/agentes/estado_monitores.php:160
+msgid "Non-initialized modules found."
+msgstr "Se han encontrado mĆ³dulos no iniciados."
+
+#: ../../operation/agentes/estado_monitores.php:181
+msgid "List of modules"
+msgstr "Lista de mĆ³dulos"
+
+#: ../../operation/agentes/estado_monitores.php:182
+msgid ""
+"To see the list of modules paginated, enable this option in the Styles Configuration."
+msgstr ""
+"Para ver la lista de mĆ³dulos con paginaciĆ³n, habilita esta opciĆ³n en la configuraciĆ³n "
+"de estilos."
+
+#: ../../operation/agentes/estado_monitores.php:518
+msgid "Status:"
+msgstr "Estado:"
+
+#: ../../operation/agentes/estado_monitores.php:524
+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."
+
+#: ../../operation/agentes/pandora_networkmap.view.php:1611
+msgid "Success be updated."
+msgstr "Actualizado correctamente"
+
+#: ../../operation/agentes/pandora_networkmap.view.php:1708
+msgid "Name: "
+msgstr "Nombre: "
+
+#: ../../operation/agentes/pandora_networkmap.view.php:1758
+msgid "Policy: "
+msgstr "PolĆ­tica: "
+
+#: ../../operation/agentes/pandora_networkmap.view.php:1855
+msgid "Data: "
+msgstr "Datos: "
+
+#: ../../operation/agentes/pandora_networkmap.view.php:1857
+#: ../../operation/agentes/estado_generalagente.php:817
+msgid "Last contact: "
+msgstr "ƚltimo contacto: "
+
+#: ../../operation/agentes/ver_agente.php:1232
+msgid "Sons"
+msgstr "Hijos"
+
+#: ../../operation/agentes/ver_agente.php:1582
+msgid "Log Viewer"
+msgstr "Visor de logs"
+
+#: ../../operation/agentes/ver_agente.php:1621
+msgid "Terminal"
+msgstr "Terminal"
+
+#: ../../operation/agentes/ver_agente.php:1643
+msgid "Processes"
+msgstr "Procesos"
+
+#: ../../operation/agentes/estado_generalagente.php:57
+msgid "The agent has not assigned server. Maybe agent does not run fine."
+msgstr ""
+"El agente no ha sido asignado a ningĆŗn servidor. QuizĆ” el agente no se estĆ© "
+"ejecutando correctamente."
+
+#: ../../operation/agentes/estado_generalagente.php:265
+msgid "Remote configuration enabled"
+msgstr "ConfiguraciĆ³n remota habilitada"
+
+#: ../../operation/agentes/estado_generalagente.php:328
+msgid "Agent contact"
+msgstr "Contacto de agente"
+
+#: ../../operation/agentes/estado_generalagente.php:335
+msgid "Refresh data"
+msgstr "Actualizar datos"
+
+#: ../../operation/agentes/estado_generalagente.php:376
+msgid "Next contact"
+msgstr "Siguiente contacto"
+
+#: ../../operation/agentes/estado_generalagente.php:464
+msgid "Agent info"
+msgstr "InformaciĆ³n del agente"
+
+#: ../../operation/agentes/estado_generalagente.php:477
+msgid "There is no GIS data."
+msgstr "No hay datos GIS"
+
+#: ../../operation/agentes/estado_generalagente.php:598
+msgid "Agent access rate (Last 24h)"
+msgstr "ƍndice de acceso de agente (Ćŗltimas 24h)"
+
+#: ../../operation/agentes/estado_generalagente.php:638
+msgid "Active incident on this agent"
+msgstr "Activar incidencia a este agente"
+
+#: ../../operation/agentes/estado_generalagente.php:797
+msgid "Events info (24hr.)"
+msgstr "InformaciĆ³n de eventos (24h)"
+
+#: ../../operation/agentes/estado_generalagente.php:942
+msgid "Interface information (SNMP)"
+msgstr "InformaciĆ³n de interfaz (SNMP)"
+
+#: ../../operation/agentes/alerts_status.functions.php:48
+msgid "Alert(s) validated"
+msgstr "Alerta(s) validada(s)"
+
+#: ../../operation/agentes/alerts_status.functions.php:49
+msgid "Error processing alert(s)"
+msgstr "Error al procesar la(s) alerta(s)"
+
+#: ../../operation/agentes/alerts_status.functions.php:119
+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
+msgid "Report of State"
+msgstr "Informe de estado"
+
+#: ../../operation/messages/message_list.php:46
+#: ../../operation/messages/message_list.php:55
+#: ../../operation/messages/message_edit.php:66
+msgid "Sent messages"
+msgstr "Mensajes enviados"
+
+#: ../../operation/messages/message_list.php:46
+#: ../../operation/messages/message_list.php:50
+#: ../../operation/messages/message_edit.php:54
+msgid "Received messages"
+msgstr "Mensajes recibidos"
+
+#: ../../operation/messages/message_list.php:64
+#: ../../operation/messages/message_list.php:304
+#: ../../operation/messages/message_edit.php:78
+msgid "Create message"
+msgstr "Crear mensaje"
+
+#: ../../operation/messages/message_list.php:136
+msgid "Not deleted. Error deleting messages"
+msgstr "No borrado. Error al suprimir mensajes."
+
+#: ../../operation/messages/message_list.php:144
+#: ../../operation/messages/message_list.php:153
+msgid "You have"
+msgstr "Tienes"
+
+#: ../../operation/messages/message_list.php:144
+msgid "sent message(s)"
+msgstr "mensaje(s) enviado(s)"
+
+#: ../../operation/messages/message_list.php:153
+msgid "unread message(s)"
+msgstr "mensaje(s) sin leer"
+
+#: ../../operation/messages/message_list.php:164
+msgid "There are no messages."
+msgstr "No hay mensajes."
+
+#: ../../operation/messages/message_list.php:194
+#: ../../operation/messages/message_edit.php:269
+msgid "Destination"
+msgstr "Destino"
+
+#: ../../operation/messages/message_list.php:196
+#: ../../operation/messages/message_edit.php:265
+msgid "Sender"
+msgstr "Remitente"
+
+#: ../../operation/messages/message_list.php:214
+msgid "Click to read"
+msgstr "Haz clic para leer"
+
+#: ../../operation/messages/message_list.php:218
+msgid "Mark as unread"
+msgstr "Marcar como no leĆ­do"
+
+#: ../../operation/messages/message_list.php:224
+#: ../../operation/messages/message_list.php:228
+msgid "Message unread - click to read"
+msgstr "Mensaje sin leer. Haz clic para leerlo."
+
+#: ../../operation/messages/message_list.php:256
+msgid "No Subject"
+msgstr "Sin asunto"
+
+#: ../../operation/messages/message_edit.php:90
+msgid "Compose message"
+msgstr "Componer mensaje"
+
+#: ../../operation/messages/message_edit.php:119
+msgid "This message does not exist in the system"
+msgstr "Este mensaje no existe en el sistema."
+
+#: ../../operation/messages/message_edit.php:188
+msgid "wrote"
+msgstr "escribiĆ³"
+
+#: ../../operation/messages/message_edit.php:203
+msgid "Delete conversation"
+msgstr "Eliminar conversaciĆ³n"
+
+#: ../../operation/messages/message_edit.php:211
+msgid "Reply"
+msgstr "Responder"
+
+#: ../../operation/messages/message_edit.php:226
+msgid "User or group must be selected."
+msgstr "Usuario o grupo no especificados."
+
+#: ../../operation/messages/message_edit.php:244
+#, php-format
+msgid "Message successfully sent to user %s"
+msgstr "Mensaje enviado correctamente al usuario %s"
+
+#: ../../operation/messages/message_edit.php:245
+#, php-format
+msgid "Error sending message to user %s"
+msgstr "Error al enviar el mensaje al usuario %s"
+
+#: ../../operation/messages/message_edit.php:324
+msgid "Select user"
+msgstr "Seleccionar usuario"
+
+#: ../../operation/messages/message_edit.php:330
+msgid "OR"
+msgstr "O"
+
+#: ../../operation/messages/message_edit.php:341
+msgid "Select group"
+msgstr "Seleccionar grupo"
+
+#: ../../operation/messages/message_edit.php:396
+msgid "Send message"
+msgstr "Enviar mensaje"
+
+#: ../../operation/network/network_report.php:67
+#: ../../operation/network/network_usage_map.php:124
+msgid "Data to show"
+msgstr "Datos a mostrar"
+
+#: ../../operation/network/network_report.php:78
+#: ../../operation/network/network_usage_map.php:104
+msgid "Number of result to show"
+msgstr "NĆŗmero de resultados a mostrar"
+
+#: ../../operation/network/network_report.php:109
+#: ../../operation/network/network_usage_map.php:82
+msgid "Time Period"
+msgstr "PerĆ­odo de tiempo"
+
+#: ../../operation/network/network_report.php:121
+#: ../../operation/network/network_usage_map.php:94
+#: ../../operation/netflow/nf_live_view.php:292
+msgid "Select this checkbox to write interval instead a date."
+msgstr "Seleccione esta casilla para escribir un intervalo en vex de una fecha."
+
+#: ../../operation/network/network_report.php:186
+#: ../../operation/network/network_report.php:233
+msgid "Flows"
+msgstr "Flujo"
+
+#: ../../operation/network/network_report.php:197
+#: ../../operation/network/network_report.php:235
+msgid "Packets"
+msgstr "Paquetes"
+
+#: ../../operation/network/network_report.php:256
+#, php-format
+msgid "Filtered by port %s. Click here to remove the filter."
+msgstr "Filtrado por puerto %s. Pinche aquĆ­ para eliminar el filtro."
+
+#: ../../operation/network/network_report.php:256
+#, php-format
+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:106
+msgid "Network usage map"
+msgstr "Mapa de uso de red"
+
+#: ../../operation/network/network_usage_map.php:139
+msgid "Show netflow map"
+msgstr "Mostrar mapa de flujo de red"
+
+#: ../../operation/network/network_usage_map.php:175
+msgid "No data retrieved"
+msgstr "No se han obtenido datos"
+
+#: ../../operation/netflow/nf_live_view.php:131
+#: ../../operation/netflow/nf_live_view.php:153
+#: ../../operation/netflow/nf_live_view.php:159
+msgid "Netflow live view"
+msgstr "Netflow en tiempo real"
+
+#: ../../operation/netflow/nf_live_view.php:170
+msgid "Error creating filter"
+msgstr "Error al crear filtro"
+
+#: ../../operation/netflow/nf_live_view.php:172
+msgid "Filter created successfully"
+msgstr "Filtro creado correctamente"
+
+#: ../../operation/netflow/nf_live_view.php:191
+msgid "Filter updated successfully"
+msgstr "Filtro actualizado correctamente"
+
+#: ../../operation/netflow/nf_live_view.php:192
+msgid "Error updating filter"
+msgstr "Error al actualizar el filtro"
+
+#: ../../operation/netflow/nf_live_view.php:216
+msgid "Draw live filter"
+msgstr "Extraer filtro en directo"
+
+#: ../../operation/netflow/nf_live_view.php:250
+msgid "Connection"
+msgstr "ConexiĆ³n"
+
+#: ../../operation/netflow/nf_live_view.php:303
+#: ../../operation/incidents/integriaims_export_csv.php:84
+#: ../../operation/incidents/configure_integriaims_incident.php:325
+#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:323
+#: ../../operation/incidents/list_integriaims_incidents.php:359
+msgid "Resolution"
+msgstr "ResoluciĆ³n"
+
+#: ../../operation/netflow/nf_live_view.php:303
+msgid "The interval will be divided in chunks the length of the resolution."
+msgstr "El intervalo dividirĆ” en partes la extensiĆ³n del resultado"
+
+#: ../../operation/netflow/nf_live_view.php:404
+msgid "Select a filter"
+msgstr "Selecciona un filtro"
+
+#: ../../operation/netflow/nf_live_view.php:477
+msgid "IP address resolution"
+msgstr "ResoluciĆ³n de direcciĆ³n IP"
+
+#: ../../operation/netflow/nf_live_view.php:477
+msgid "Resolve the IP addresses to get their hostnames."
+msgstr "Resolver direcciones IP para obtener sus hostnames"
+
+#: ../../operation/netflow/nf_live_view.php:480
+msgid "Source ip"
+msgstr "IP de origen"
+
+#: ../../operation/netflow/nf_live_view.php:503
+msgid "Draw"
+msgstr "Dibujar"
+
+#: ../../operation/netflow/nf_live_view.php:507
+msgid "Save as new filter"
+msgstr "Guardar nuevo filtro"
+
+#: ../../operation/netflow/nf_live_view.php:508
+msgid "Update current filter"
+msgstr "Actualizar filtro actual"
+
+#: ../../operation/netflow/nf_live_view.php:522
+msgid "No filter selected"
+msgstr "No se ha seleccionado ningĆŗn filtro"
+
+#: ../../operation/netflow/netflow_explorer.php:37 ../../operation/menu.php:92
+msgid "Netflow explorer"
+msgstr "Explorador Netflow"
+
+#: ../../operation/snmpconsole/snmp_statistics.php:85
+msgid "SNMP Statistics"
+msgstr "EstadĆ­sticas SNMP"
+
+#: ../../operation/snmpconsole/snmp_statistics.php:102
+#: ../../operation/snmpconsole/snmp_view.php:697
+#: ../../operation/snmpconsole/snmp_view.php:806 ../../operation/menu.php:141
+msgid "SNMP"
+msgstr "SNMP"
+
+#: ../../operation/snmpconsole/snmp_statistics.php:156
+#: ../../operation/snmpconsole/snmp_view.php:720
+msgid "There are no SNMP traps in database"
+msgstr "No hay ningĆŗn trap SNMP definido"
+
+#: ../../operation/snmpconsole/snmp_statistics.php:169
+msgid "Traps received by source"
+msgstr "Traps recibidos por el origen"
+
+#: ../../operation/snmpconsole/snmp_statistics.php:183
+#: ../../operation/snmpconsole/snmp_statistics.php:251
+msgid "Number"
+msgstr "NĆŗmero"
+
+#: ../../operation/snmpconsole/snmp_statistics.php:197
+#: ../../operation/snmpconsole/snmp_view.php:962
+msgid "View agent details"
+msgstr "Ver detalles del agente"
+
+#: ../../operation/snmpconsole/snmp_statistics.php:237
+msgid "Traps received by Enterprise String"
+msgstr "Traps recibidos por cadena Enterprise"
+
+#: ../../operation/snmpconsole/snmp_statistics.php:250
+msgid "Trap Enterprise String"
+msgstr "Traps Enterprise de cadena"
+
+#: ../../operation/snmpconsole/snmp_browser.php:77
+msgid "SNMP Browser"
+msgstr "Navegador SNMP"
+
+#: ../../operation/snmpconsole/snmp_browser.php:218
+msgid "Adding modules in progress"
+msgstr "AƱadiendo mĆ³dulos"
+
+#: ../../operation/snmpconsole/snmp_browser.php:552
+msgid "Create policy"
+msgstr "Crear polĆ­tica"
+
+#: ../../operation/snmpconsole/snmp_browser.php:644
+msgid "Are you sure you want add module?"
+msgstr "ĀæEstĆ” seguro de que quiere aƱadir el mĆ³dulo?"
+
+#: ../../operation/snmpconsole/snmp_view.php:602
+msgid ""
+"Search by any alphanumeric field in the trap.\n"
+"\t\tREMEMBER trap sources need to be searched by IP Address"
+msgstr ""
+"BĆŗsqueda segĆŗn campos alfanumĆ©ricos en el trap.\n"
+"\t \tRECUERDA que las fuentes de trap tienen que buscarse segĆŗn una direcciĆ³n IP."
+
+#: ../../operation/snmpconsole/snmp_view.php:628
+msgid "Search by trap type"
+msgstr "BĆŗsqueda por tipo de trap"
+
+#: ../../operation/snmpconsole/snmp_view.php:652
+msgid "Group by Enterprise String/IP"
+msgstr "Agrupado por cadena Enterprise/IP"
+
+#: ../../operation/snmpconsole/snmp_view.php:718
+msgid "There are no SNMP traps in database that contains this filter"
+msgstr "No hay traps SNMP  en la base de datos que contengan este filtro"
+
+#: ../../operation/snmpconsole/snmp_view.php:758
+msgid "Refresh every"
+msgstr "Actualizar cada"
+
+#: ../../operation/snmpconsole/snmp_view.php:770
+msgid "SNMP Traps"
+msgstr "Traps SNMP"
+
+#: ../../operation/snmpconsole/snmp_view.php:871
+msgid "Trap subtype"
+msgstr "Subtipo trap"
+
+#: ../../operation/snmpconsole/snmp_view.php:1076
+msgid "Variable bindings:"
+msgstr "Enlaces variables"
+
+#: ../../operation/snmpconsole/snmp_view.php:1089
+msgid "See more details"
+msgstr "Ver mƔs detalles"
+
+#: ../../operation/snmpconsole/snmp_view.php:1101
+msgid "Enterprise String:"
+msgstr "Cadena Enterprise:"
+
+#: ../../operation/snmpconsole/snmp_view.php:1153
+msgid "Trap type:"
+msgstr "Tipo trap:"
+
+#: ../../operation/snmpconsole/snmp_view.php:1179
+msgid "Count:"
+msgstr "Contar:"
+
+#: ../../operation/snmpconsole/snmp_view.php:1183
+msgid "First trap:"
+msgstr "Primer trap:"
+
+#: ../../operation/snmpconsole/snmp_view.php:1187
+msgid "Last trap:"
+msgstr "ƚltimo trap:"
+
+#: ../../operation/snmpconsole/snmp_view.php:1208
+msgid "No matching traps found"
+msgstr "No se encontraron traps coincidentes."
+
+#: ../../operation/snmpconsole/snmp_mib_uploader.php:47 ../../operation/menu.php:131
+msgid "MIB uploader"
+msgstr "Cargador MIB"
+
+#: ../../operation/snmpconsole/snmp_mib_uploader.php:86
+msgid ""
+"MIB files will be installed on the system. Please note that a MIB may depend on other "
+"MIB. To customize trap definitions use the SNMP trap editor."
+msgstr ""
+"Los archivos MIB se instalarƔn en el sistema. Por favor, ten en cuenta que un MIB "
+"puede depender de otro MIB. Para personalizar las definiciones de trap, se debe usar "
+"el editor de trap SNMP."
+
+#: ../../operation/menu.php:96
+msgid "Netflow Live View"
+msgstr "Netflow en tiempo real"
+
+#: ../../operation/menu.php:126
+msgid "SNMP browser"
+msgstr "Navegador SNMP"
+
+#: ../../operation/menu.php:135
+msgid "SNMP filters"
+msgstr "Filtros SNMP"
+
+#: ../../operation/menu.php:260 ../../operation/gis_maps/gis_map.php:35
+msgid "GIS Maps"
+msgstr "Mapas GIS"
+
+#: ../../operation/menu.php:265
+msgid "List of Gis maps"
+msgstr "Lista de mapas GIS"
+
+#: ../../operation/menu.php:416
+msgid "RSS"
+msgstr "RSS"
+
+#: ../../operation/menu.php:429
+msgid "Sound Console"
+msgstr "Consola sonora"
+
+#: ../../operation/menu.php:432
+msgid "No alert"
+msgstr "Sin alertas"
+
+#: ../../operation/menu.php:433
+msgid "Silence alarm"
+msgstr "Silenciar alarma"
+
+#: ../../operation/menu.php:442 ../../operation/events/sound_events.php:63
+msgid "Sound Events"
+msgstr "Eventos sonoros"
+
+#: ../../operation/menu.php:464 ../../operation/events/events.php:1502
+msgid "Sound Alerts"
+msgstr "Alertas sonoras"
+
+#: ../../operation/menu.php:486
+msgid "Configure user notifications"
+msgstr "Configurar notificaciones de usuario"
+
+#: ../../operation/menu.php:506
+msgid "Integria IMS statistics"
+msgstr "EstadĆ­sticas de Integria IMS"
+
+#: ../../operation/menu.php:507
+msgid "Integria IMS ticket list"
+msgstr "Lista de tickets de Integria IMS"
+
+#: ../../operation/menu.php:520
+msgid "Messages List"
+msgstr "Lista de mensajes"
+
+#: ../../operation/menu.php:521
+msgid "New message"
+msgstr "Mensaje nuevo"
+
+#: ../../operation/menu.php:542
+msgid "Scheduled downtime"
+msgstr "DesconexiĆ³n programada"
+
+#: ../../operation/menu.php:616
+msgid "Tools"
+msgstr "Herramientas"
+
+#: ../../operation/gis_maps/gis_map.php:200
+msgid "No maps found"
+msgstr "No se encontraron mapas"
+
+#: ../../operation/gis_maps/gis_map.php:219
+msgid "Caution: Do you want delete the map?"
+msgstr "Cuidado: ĀæQuieres borrar el mapa?"
+
+#: ../../operation/gis_maps/gis_map.php:226
+msgid "Do you want to set default the map?"
+msgstr "ĀæQuieres configurar por defecto el mapa?"
+
+#: ../../operation/gis_maps/gis_map.php:234
+msgid "There was error on setup the default map."
+msgstr "Error al configurar el mapa por defecto"
+
+#: ../../operation/gis_maps/render_view.php:145
+msgid "Show link to public GIS map"
+msgstr "Mostrar enlace al mapa SIG pĆŗblico"
+
+#: ../../operation/gis_maps/render_view.php:170
+msgid "Filter by status"
+msgstr "Filtro por estado"
+
+#: ../../operation/gis_maps/ajax.php:237 ../../operation/gis_maps/ajax.php:275
+#: ../../operation/gis_maps/ajax.php:444
+msgid "Position (Lat, Long, Alt)"
+msgstr "PosiciĆ³n (Lat, Long, Alt)"
+
+#: ../../operation/gis_maps/ajax.php:238
+msgid "Start contact"
+msgstr "Inicio de contacto"
+
+#: ../../operation/gis_maps/ajax.php:240
+msgid "Num reports"
+msgstr "Informes numƩricos"
+
+#: ../../operation/gis_maps/ajax.php:279 ../../operation/gis_maps/ajax.php:448
+msgid "Default position of map."
+msgstr "PosiciĆ³n por defecto del mapa"
+
+#: ../../operation/gis_maps/ajax.php:339
+msgid "Satellite Version"
+msgstr "VersiĆ³n satĆ©lite"
+
+#: ../../operation/gis_maps/ajax.php:385 ../../operation/gis_maps/ajax.php:502
+msgid "Number of non-validated critical events"
+msgstr "Numero de eventos crĆ­ticos no validados"
+
+#: ../../operation/gis_maps/ajax.php:395 ../../operation/gis_maps/ajax.php:512
+msgid "Alert(s) fired"
+msgstr "Alertas disparadas"
+
+#: ../../operation/incidents/integriaims_export_csv.php:80
+msgid "ID Ticket"
+msgstr "Ticket de ID"
+
+#: ../../operation/incidents/integriaims_export_csv.php:82
+#: ../../operation/incidents/list_integriaims_incidents.php:517
+msgid "Group/Company"
+msgstr "Grupo/CompaƱia"
+
+#: ../../operation/incidents/integriaims_export_csv.php:87
+msgid "Started"
+msgstr "Iniciado hace"
+
+#: ../../operation/incidents/integriaims_export_csv.php:88
+#: ../../operation/incidents/configure_integriaims_incident.php:282
+#: ../../operation/incidents/list_integriaims_incidents.php:345
+#: ../../operation/incidents/list_integriaims_incidents.php:521
+msgid "Creator"
+msgstr "Creador"
+
+#: ../../operation/incidents/incident_statistics.php:29
+msgid "Incidents by status"
+msgstr "Incidentes por estado"
+
+#: ../../operation/incidents/incident_statistics.php:32
+msgid "Incidents by priority"
+msgstr "Incidentes por prioridad"
+
+#: ../../operation/incidents/incident_statistics.php:35
+msgid "Incidents by group"
+msgstr "Incidentes por grupo"
+
+#: ../../operation/incidents/incident_statistics.php:38
+msgid "Incidents by user"
+msgstr "Incidentes por usuario"
+
+#: ../../operation/incidents/configure_integriaims_incident.php:26
+msgid "Update Integria IMS Ticket"
+msgstr "Actualizar el ticket de Integria IMS"
+
+#: ../../operation/incidents/configure_integriaims_incident.php:28
+msgid "Create Integria IMS Ticket"
+msgstr "Crear ticket de Integria IMS"
+
+#: ../../operation/incidents/configure_integriaims_incident.php:123
+msgid "Successfully created in Integria IMS"
+msgstr "Creado correctamente en Integria IMS"
+
+#: ../../operation/incidents/configure_integriaims_incident.php:124
+msgid "Could not be created in Integria IMS"
+msgstr "No se ha podido crear en Integria IMS"
+
+#: ../../operation/incidents/configure_integriaims_incident.php:144
+msgid "Successfully updated in Integria IMS"
+msgstr "Actualizado correctamente en Integria IMS"
+
+#: ../../operation/incidents/configure_integriaims_incident.php:145
+msgid "Could not be updated in Integria IMS"
+msgstr "No se ha podido actualizar en Integria IMS"
+
+#: ../../operation/incidents/configure_integriaims_incident.php:294
+msgid "This field corresponds to the Integria IMS user specified in Integria IMS setup"
+msgstr ""
+"Este campo corresponde al usuario de Integria IMS especificado en la configuraciĆ³n de "
+"Integria IMS"
+
+#: ../../operation/incidents/configure_integriaims_incident.php:352
+#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:206
+msgid "File name"
+msgstr "Nombre de archivo"
+
+#: ../../operation/incidents/configure_integriaims_incident.php:354
+#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:208
+msgid "Attachment description"
+msgstr "DescripciĆ³n de los datos adjuntos"
+
+#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:77
+msgid "Not yet"
+msgstr "TodavĆ­a no"
+
+#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:81
+msgid "Not closed yet"
+msgstr "No cerrado todavĆ­a"
+
+#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:115
+#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:246
+msgid "Filename"
+msgstr "Nombre del archivo"
+
+#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:142
+msgid "File successfully deleted"
+msgstr "Archivo aƱadido correctamente"
+
+#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:143
+msgid "File could not be deleted"
+msgstr "El archivo no se ha podido eliminar"
+
+#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:222
+msgid "Add attachment"
+msgstr "AƱadir adjunto"
+
+#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:224
+#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:397
+msgid "Attached files"
+msgstr "Archivos adjuntos"
+
+#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:282
+msgid "Comment successfully added"
+msgstr "Comentario aƱadido correctamente"
+
+#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:283
+msgid "Comment could not be added"
+msgstr "No se ha podido aƱadir el comentario"
+
+#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:309
+msgid "No comments found"
+msgstr "No se han encontrado comentarios"
+
+#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:349
+msgid "Created by"
+msgstr "Creado por"
+
+#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:350
+msgid "Owned by"
+msgstr "Pertenece a"
+
+#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:351
+msgid "Closed by"
+msgstr "Cerrado por"
+
+#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:368
+msgid "Closed at"
+msgstr "Cerrado el"
+
+#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:379
+msgid "People"
+msgstr "Personas"
+
+#: ../../operation/incidents/list_integriaims_incidents.php:24
+msgid "Integria IMS Tickets"
+msgstr "Tickets de Integria IMS"
+
+#: ../../operation/incidents/list_integriaims_incidents.php:317
+msgid "Text filter"
+msgstr "Filtro de texto"
+
+#: ../../operation/incidents/list_integriaims_incidents.php:381
+msgid "Created from"
+msgstr "Creado desde"
+
+#: ../../operation/incidents/list_integriaims_incidents.php:393
+msgid "Created to"
+msgstr "Creado hasta"
+
+#: ../../operation/incidents/list_integriaims_incidents.php:518
+msgid "Status/Resolution"
+msgstr "Estado/ResoluciĆ³n"
+
+#: ../../operation/incidents/list_integriaims_incidents.php:520
+msgid "Updated/Started"
+msgstr "Actualizado/Iniciado"
+
+#: ../../operation/incidents/list_integriaims_incidents.php:564
+msgid "No tickets to show"
+msgstr "No hay tickets"
+
+#: ../../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
+#: ../../operation/search_main.php:74
+#, php-format
+msgid "%s Found"
+msgstr "%s encontrados"
+
+#: ../../operation/search_main.php:64
+msgid "Users found"
+msgstr "Usuarios encontrados"
+
+#: ../../operation/search_main.php:66
+msgid "Graphs found"
+msgstr "GrƔficos encontrados"
+
+#: ../../operation/search_main.php:68
+msgid "Reports found"
+msgstr "Informes encontrados"
+
+#: ../../operation/search_main.php:83
+#, php-format
+msgid "Show %s of %s. View all matches"
+msgstr "Mostrar %s de %s. Ver todas las coincidencias."
+
+#: ../../operation/reporting/reporting_viewer.php:249
+msgid "View Report"
+msgstr "Ver informe"
+
+#: ../../operation/reporting/reporting_viewer.php:291
+msgid "Set initial date"
+msgstr "Fijar fecha de inicio"
+
+#: ../../operation/reporting/reporting_viewer.php:321
+msgid "Invalid date selected. Initial date must be before end date."
+msgstr ""
+"Fecha seleccionada no vƔlida. La fecha inicial debe ser anterior a la fecha de "
+"finalizaciĆ³n."
+
+#: ../../operation/reporting/reporting_viewer.php:426
+#: ../../operation/reporting/graph_viewer.php:505
+msgid "Invalid date selected"
+msgstr "Fecha seleccionada no vƔlida"
+
+#: ../../operation/reporting/custom_reporting.php:28
+#: ../../operation/reporting/graph_viewer.php:539
+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
+msgid "Graph defined"
+msgstr "GrƔfico definido"
+
+#: ../../operation/reporting/graph_viewer.php:383
+msgid "Equalize maxiddmum thresholds"
+msgstr "Equalizar umbrales maxiddmum"
+
+#: ../../operation/reporting/graph_viewer.php:383
+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 ""
+"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
+msgid "Zoom x1"
+msgstr "Zoom x1"
+
+#: ../../operation/reporting/graph_viewer.php:393
+msgid "Zoom x2"
+msgstr "AmpliaciĆ³n x2"
+
+#: ../../operation/reporting/graph_viewer.php:394
+msgid "Zoom x3"
+msgstr "Zoom x3"
+
+#: ../../operation/reporting/graph_viewer.php:513
+msgid "Custom graph viewer"
+msgstr "Visor de imƔgenes personalizadas"
+
+#: ../../operation/events/sound_events.php:164
+msgid "Sound console"
+msgstr "Consola sonora"
+
+#: ../../operation/events/sound_events.php:256
+msgid "Sounds"
+msgstr "Sonidos"
+
+#: ../../operation/events/sound_events.php:283
+msgid "Events not found"
+msgstr "Eventos no encontrados"
+
+#: ../../operation/events/events_rss.php:195
+msgid "Your IP is not into the IP list with API access."
+msgstr "Tu IP no se encuentra en el listado de IPs con acceso a la API."
+
+#: ../../operation/events/events_rss.php:214
+msgid "The URL of your feed has bad hash."
+msgstr "La URL de tu feed tiene mal el hash."
+
+#: ../../operation/events/events.php:792
+msgid "Validate events"
+msgstr "Validar eventos"
+
+#: ../../operation/events/events.php:809
+msgid "Validate event"
+msgstr "Validar evento"
+
+#: ../../operation/events/events.php:844
+msgid "Change to in progress status"
+msgstr "Cambiar a estado en proceso"
+
+#: ../../operation/events/events.php:869
+msgid "Delete events"
+msgstr "Eliminar eventos"
+
+#: ../../operation/events/events.php:1323
+msgid "Event viewer"
+msgstr "Visor de eventos"
+
+#: ../../operation/events/events.php:1370
+msgid "History event list"
+msgstr "Lista histĆ³rica de eventos"
+
+#: ../../operation/events/events.php:1381
+msgid "RSS Events"
+msgstr "Eventos RSS"
+
+#: ../../operation/events/events.php:1392
+msgid "Export to CSV file"
+msgstr "Exportar a un archivo CSV"
+
+#: ../../operation/events/events.php:1403 ../../operation/events/events.php:1451
+msgid "Sound events"
+msgstr "Eventos sonoros"
+
+#: ../../operation/events/events.php:1456
+msgid "History"
+msgstr "HistĆ³rico"
+
+#: ../../operation/events/events.php:1531
+msgid "Errors"
+msgstr "Errores"
+
+#: ../../operation/events/events.php:1688
+msgid "Search in secondary groups"
+msgstr "Buscar en grupos secundarios"
+
+#: ../../operation/events/events.php:1878
+msgid "Id source event"
+msgstr "Evento de origen de ID"
+
+#: ../../operation/events/events.php:1936
+msgid "From (date:time)"
+msgstr "Desde (fecha:hora)"
+
+#: ../../operation/events/events.php:1994
+msgid "To (date:time)"
+msgstr "Hasta (fecha:hora)"
+
+#: ../../operation/events/events.php:2005
+msgid "Filter custom data by field name"
+msgstr "Filtrar datos personalizados por nombre de campo"
+
+#: ../../operation/events/events.php:2006
+msgid "Filter custom data by field value"
+msgstr "Filtrar datos personalizados por valor de campo"
+
+#: ../../operation/events/events.php:2021
+msgid "Custom data filter"
+msgstr "Filtro de datos personalizado"
+
+#: ../../operation/events/events.php:2043
+msgid "Custom data search"
+msgstr "BĆŗsqueda de datos personalizada"
+
+#: ../../operation/events/events.php:2168
+msgid "Current filter"
+msgstr "Filtro actual"
+
+#: ../../operation/events/events.php:2173
+msgid "Not set."
+msgstr "No establecida"
+
+#: ../../operation/events/events.php:2186
+msgid "Any status."
+msgstr "Cualquier estado"
+
+#: ../../operation/events/events.php:2190
+msgid "New events."
+msgstr "Nuevos eventos"
+
+#: ../../operation/events/events.php:2194
+msgid "Validated."
+msgstr "Validado."
+
+#: ../../operation/events/events.php:2198
+msgid "In proccess."
+msgstr "In proceso."
+
+#: ../../operation/events/events.php:2202
+msgid "Not validated."
+msgstr "No validado."
+
+#: ../../operation/events/events.php:2214
+msgid "Any time."
+msgstr "Cualquier hora."
+
+#: ../../operation/events/events.php:2216 ../../operation/events/events.php:2793
+msgid "Last hour."
+msgstr "ƚltima hora."
+
+#: ../../operation/events/events.php:2218
+#, php-format
+msgid "Last %d hours."
+msgstr "ƚltimas %d horas."
+
+#: ../../operation/events/events.php:2226
+msgid "Duplicated"
+msgstr "Duplicado"
+
+#: ../../operation/events/events.php:2229
+msgid "All events."
+msgstr "Todos los eventos."
+
+#: ../../operation/events/events.php:2233
+msgid "Group agents."
+msgstr "Agentes de grupo."
+
+#: ../../operation/events/events.php:2349
+msgid "Execute event response"
+msgstr "Ejecutar respuesta de eventos"
+
+#: ../../operation/events/events.php:2362
+#, php-format
+msgid "A maximum of %s event custom responses can be selected"
+msgstr "De puede seleccionar un mƔximo se %s respuestas personalizadas de eventos"
+
+#: ../../operation/events/events.php:2367
+msgid "Please, select an event"
+msgstr "Seleccione un evento"
+
+#: ../../operation/events/events.php:2456
+msgid "has at least"
+msgstr "tiene al menos"
+
+#: ../../operation/events/events.php:2458
+msgid "events"
+msgstr "eventos"
+
+#: ../../operation/events/events.php:2795
+msgid "hours."
+msgstr "horas."
+
+#: ../../operation/search_policies.php:37
+msgid "Id_group"
+msgstr "Id_group"
+
+#: ../../general/footer.php:56
+#, php-format
+msgid "Page generated on %s"
+msgstr "PƔgina generada en %s"
+
+#: ../../general/php7_message.php:38
+msgid "Access Help"
+msgstr "Ayuda de acceso"
+
+#: ../../general/php7_message.php:41
+msgid "Warning php version"
+msgstr "Advertencia de la versiĆ³n php"
+
+#: ../../general/first_task/incidents.php:21
+msgid "There are no incidents defined yet."
+msgstr "No hay incidentes definidos todavĆ­a."
+
+#: ../../general/first_task/incidents.php:31 ../../general/first_task/incidents.php:46
+msgid "Create Incidents"
+msgstr "Crear incidentes"
+
+#: ../../general/first_task/incidents.php:34
 #, php-format
 msgid ""
-"This node is configured with centralized mode. All profiles information is "
-"read only. Go to %s to manage it."
+"Besides receiving and processing data to monitor systems or applications,\n"
+"\t\t\tyou're also required to monitor possible incidents which might take place on "
+"these subsystems within the system's monitoring process.\n"
+"\t\t\tFor it, the %s team has designed an incident manager from which any user is "
+"able to open incidents,\n"
+"\t\t\tthat explain what's happened on the network, and update them with comments and "
+"files, at any time, in case there is a need to do so.\n"
+"\t\t\tThis system allows users to work as a team, along with different roles and work-"
+"flow systems which allow an incident to be\n"
+"\t\t\tmoved from one group to another, and members from different groups and "
+"different people could work on the same incident, sharing information and files.\n"
+"\t\t"
 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."
+"A parte recibir y procesar datos para monitorizar sistemas y aplicaciones,\n"
+"\t\t\ttambiƩn tiene que monitorizar las posibles incidencias que puedan ocurrir en "
+"estos subsistemas en el proceso de monitorizaciĆ³n del sistema.\n"
+"\t\t\tPara ello, el equipo de %s ha diseƱado un gestor de incidencias desde el que "
+"cualquier usuario puede crear incidencias\n"
+"\t\t\tque explican quƩ ha sucedido en la red y actualizar su estado a travƩs de "
+"comentarios y archivos en cualquier momento, en caso de que sea necesario hacerlo.\n"
+"\t\t\tEste sistema permite que los usuarios trabajen como un equipo, junto con "
+"diferentes tareas y sistemas de flujo de trabajo que permiten que la incidencia pase\n"
+"\t\t\t de un equipo a otro, y los diferentes miembros de los diferentes equipos "
+"puedan trabajar sobre la misma incidencia, compartiendo informaciĆ³n y archivos.\n"
+"\t\t"
 
-#: ../../godmode/users/profile_list.php:254
-msgid "There was a problem updating this profile"
-msgstr "Error al borrar el perfil"
+#: ../../general/first_task/recon_view.php:18
+msgid "There are no discovery tasks defined yet."
+msgstr "AĆŗn no hay tareas de discovery definidas."
 
-#: ../../godmode/users/profile_list.php:257
-msgid "Profile name cannot be empty"
-msgstr "El nombre de perfil no puede estar vacĆ­o."
+#: ../../general/first_task/recon_view.php:25
+msgid "Create Discovery Task"
+msgstr "Crear tarea de Discovery"
 
-#: ../../godmode/users/profile_list.php:303
-#: ../../godmode/users/profile_list.php:306
-msgid "There was a problem creating this profile"
-msgstr "Error al crear el perfil"
-
-#: ../../godmode/users/profile_list.php:456
-msgid "There are no defined profiles"
-msgstr "No hay perfiles definidos"
-
-#: ../../godmode/module_library/module_library_view.php:68
-msgid "Main view"
-msgstr "Vista principal"
-
-#: ../../godmode/module_library/module_library_view.php:147
-msgid "View all categories"
-msgstr "Ver todas las categorĆ­as"
-
-#: ../../godmode/module_library/module_library_view.php:158
-msgid "More details"
-msgstr "MƔs detalles"
-
-#: ../../godmode/module_library/module_library_view.php:160
-msgid "View in Module Library"
-msgstr "Ver en Biblioteca de mĆ³dulos"
-
-#: ../../godmode/module_library/module_library_view.php:161
-msgid "No module found"
-msgstr "No se ha encontrado el mĆ³dulo"
-
-#: ../../godmode/module_library/module_library_view.php:164
-msgid "Error loading Module Library"
-msgstr "Error al cargar la Biblioteca de mĆ³dulos"
-
-#: ../../godmode/module_library/module_library_view.php:165
-msgid "Error loading category"
-msgstr "Error al cargar la categorĆ­a"
-
-#: ../../godmode/module_library/module_library_view.php:166
-msgid "Error loading categories"
-msgstr "Error al cargar las categorĆ­as"
-
-#: ../../godmode/module_library/module_library_view.php:167
-msgid "There is no such category"
-msgstr "La categorĆ­a no existe"
-
-#: ../../godmode/module_library/module_library_view.php:168
-msgid "Error loading results"
-msgstr "Error al cargar los resultados"
-
-#: ../../godmode/groups/configure_group.php:87
-#: ../../godmode/groups/configure_modu_group.php:49
-msgid "There was a problem loading group"
-msgstr "Hubo un error al cargar la configuraciĆ³n del grupo"
-
-#: ../../godmode/groups/configure_group.php:106
-msgid "Update group"
-msgstr "Actualizar grupo"
-
-#: ../../godmode/groups/configure_group.php:108
-#: ../../godmode/groups/group_list.php:981
-msgid "Create group"
-msgstr "Crear grupo"
-
-#: ../../godmode/groups/configure_group.php:126
-#: ../../godmode/groups/group_list.php:384
-msgid "Manage agents group"
-msgstr "Administrar grupo de agentes"
-
-#: ../../godmode/groups/configure_group.php:138
-msgid "Update Group"
-msgstr "Actualizar grupo"
-
-#: ../../godmode/groups/configure_group.php:140
-msgid "Create Group"
-msgstr "Crear grupo"
-
-#: ../../godmode/groups/configure_group.php:178
-msgid "You have not access to the parent."
-msgstr "No tienes acceso al padre"
-
-#: ../../godmode/groups/configure_group.php:226
-msgid "Group Password"
-msgstr "ContraseƱa del grupo"
-
-#: ../../godmode/groups/configure_group.php:230
-msgid "Enable alert use in this group."
-msgstr "Habilitar el uso de alertas en este grupo."
-
-#: ../../godmode/groups/configure_group.php:234
-msgid "Propagate ACL"
-msgstr "Propagar ACL"
-
-#: ../../godmode/groups/configure_group.php:234
-msgid "Propagate the same ACL security into the child subgroups."
+#: ../../general/first_task/recon_view.php:28
+msgid ""
+"Discovery Task are used to find new elements in the network. \n"
+"\t\tIf it detects any item, it will add that item to the monitoring, and if that item "
+"it is already being monitored, then it will \n"
+"\t\tignore it or will update its information.There are three types of detection: "
+"Based on  ICMP (pings), \n"
+"\t\tSNMP (detecting the topology of networks and their "
+"interfaces), and other  customized \n"
+"\t\ttype. You can define your own customized recon script."
 msgstr ""
-"Propaga la misma seguridad ACL del padre a todos los grupos hijos que dependen "
-"de Ć©l."
+"Las tareas de Discovery sirven para encontrar nuevos elementos en la red. \n"
+"\t\tSi detecta alguno, lo aƱadirĆ” a la monitorizaciĆ³n y si ese elemento ya estĆ” "
+"siendo monitorizado lo\n"
+"\t\tignorarĆ” o actualizarĆ” la informaciĆ³n de este. Hay tres tipos de detecciĆ³n: "
+"Basada en  ICMP (pings), \n"
+"\t\tSNMP (detecta la topologĆ­a de redes y sus "
+"interfaces), y otro  personalizado \n"
+"\t\t. Puede definir su propio guiĆ³n de reconocimiento personalizado."
 
-#: ../../godmode/groups/configure_group.php:246
-msgid "Contact information accessible through the _groupcontact_ macro"
-msgstr "InformaciĆ³n de contacto accesible a travĆ©s de  _groupcontact_ macro"
+#: ../../general/first_task/recon_view.php:37
+msgid "Discover"
+msgstr "Descubrir"
 
-#: ../../godmode/groups/configure_group.php:250
-msgid "Information accessible through the _group_other_ macro"
-msgstr "InformaciĆ³n accesible a travĆ©s de  _group_other_ macro"
+#: ../../general/first_task/HA_cluster_builder.php:37
+msgid "There are no HA clusters defined yet."
+msgstr "AĆŗn no se han definido clusters de alta disponibilidad."
 
-#: ../../godmode/groups/configure_group.php:259
-msgid "Max agents allowed"
-msgstr "MƔximo de agentes permitidos"
+#: ../../general/first_task/HA_cluster_builder.php:45
+msgid "PANDORA FMS DB CLUSTER"
+msgstr "CLUSTER DE LA BASE DE DATOS DE PANDORA FMS"
 
-#: ../../godmode/groups/configure_group.php:259
-msgid "Set the maximum of agents allowed for this group. 0 is unlimited."
+#: ../../general/first_task/HA_cluster_builder.php:48
+msgid ""
+"With Pandora FMS Enterprise you can add high availability to your Pandora FMS "
+"installation by adding redundant MySQL servers"
 msgstr ""
-"Establezca el mƔximo de agentes permitidos en este grupo. 0 es ilimitado."
+"Con Pandora FMS Enterprise puede aƱadir la alta disponibilidad a su instalaciĆ³n de "
+"Pandora FMS aƱadiendo servidores MySQL redundantes"
 
-#: ../../godmode/groups/modu_group_list.php:70
-#, php-format
-msgid "Module groups defined in %s"
-msgstr "Grupos de mĆ³dulos definidos en %s"
+#: ../../general/first_task/HA_cluster_builder.php:50
+msgid ""
+"Click on \"add new node\" to start transforming your Pandora FMS DB Cluster into a "
+"Pandora FMS DB Cluster."
+msgstr ""
+"Pinche en \"aƱadir nuevo mĆ³dulo\" para empezar a convertir su cluster de base de "
+"datos de Pandora FMS en un cluster de base de datos de Pandora FMS."
 
-#: ../../godmode/groups/modu_group_list.php:92
+#: ../../general/first_task/HA_cluster_builder.php:59
+msgid "Add new node"
+msgstr "AƱadir nuevo nodo"
+
+#: ../../general/first_task/map_builder.php:34
+#: ../../general/first_task/map_builder.php:45
+msgid "Create Visual Console"
+msgstr "Crear consola visual"
+
+#: ../../general/first_task/map_builder.php:37
 #, php-format
 msgid ""
-"This node is configured with centralized mode. All module groups information "
-"is read only. Go to %s to manage it."
+"%s allows users to create visual maps on which each user is able to create his or her "
+"own monitoring map. The new visual console editor is much more practical, although "
+"the prior visual console editor had its advantages. On the new visual console, we've "
+"been successful in imitating the sensation and touch of a drawing application like "
+"GIMP. We've also simplified the editor by dividing it into several subject-divided "
+"tabs named 'Data', 'Preview', 'Wizard', 'List of Elements' and 'Editor'. The items "
+"the %s Visual Map was designed to handle are 'static images', 'percentage bars', "
+"'module graphs' and 'simple values'."
 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."
+"%s permite a los usuarios crear mapas visuales en los que cada usuario puede crear su "
+"propio mapa de monitorizaciĆ³n. El nuevo editor de consola visual es mucho mĆ”s "
+"prƔctico, a pesar de que el editor de consola visual anterior tenƭa sus ventajas. "
+"Hemos conseguido imitar la sensaciĆ³n y el toque de una aplicaciĆ³n de dibujo como GIMP "
+"en la nueva consola visual. TambiƩn hemos simplificado el editor dividiƩndolo en "
+"diferentes pestaƱas clasificadas temƔticamente llamadas \"Datos\", \"Vista previa\", "
+"\"Asistente\", \"Lista de elementos\" y \"Editor\". Los elementos para los que el "
+"mapa visual de %s fue diseƱado son las \"imƔgenes estƔticas\", las \"barras de "
+"porcentajes\" y los \"valores simples\"."
 
-#: ../../godmode/groups/modu_group_list.php:119
-#: ../../godmode/groups/group_list.php:468
-msgid "Group successfully created"
-msgstr "Grupo creado correctamente"
+#: ../../general/first_task/cluster_builder.php:46
+msgid "There are no clusters defined yet."
+msgstr "No hay clĆŗsters definidos todavĆ­a."
 
-#: ../../godmode/groups/modu_group_list.php:122
-#: ../../godmode/groups/group_list.php:470
-msgid "There was a problem creating group"
-msgstr "Ha habido un problema al crear el grupo."
+#: ../../general/first_task/cluster_builder.php:54
+#: ../../general/first_task/cluster_builder.php:72
+msgid "Create Cluster"
+msgstr "Crear clĆŗster"
 
-#: ../../godmode/groups/modu_group_list.php:127
-#: ../../godmode/groups/modu_group_list.php:163
-msgid "Each module group must have a different name"
-msgstr "Cada grupo de mĆ³dulos debe tener un nombre diferente"
+#: ../../general/first_task/cluster_builder.php:57
+msgid ""
+"A cluster is a group of devices that provide the same service in high availability."
+msgstr ""
+"Un clĆŗster es un grupo de servicios que proporciona el mismo servicio en alta "
+"disponibilidad."
 
-#: ../../godmode/groups/modu_group_list.php:131
-#: ../../godmode/groups/modu_group_list.php:167
-msgid "Module group must have a name"
-msgstr "El grupo de mĆ³dulos debe tener un nombre"
+#: ../../general/first_task/cluster_builder.php:59
+msgid "Depending on how they provide that service, we can find two types:"
+msgstr "Dependiendo de cĆ³mo proporcionen ese servicio, hay dos tipos:"
 
-#: ../../godmode/groups/modu_group_list.php:155
-#: ../../godmode/groups/group_list.php:540
-msgid "Group successfully updated"
-msgstr "Grupo actualizado correctamente"
+#: ../../general/first_task/cluster_builder.php:61
+msgid ""
+"Clusters to balance the service load: these are  active - active (A/A)  mode "
+"clusters. It means that all the nodes (or machines that compose it) are working. They "
+"must be working because if one stops working, it will overload the others."
+msgstr ""
+"ClĆŗsters para equilibrar la carga del servicio: son clĆŗsters de modo activo-"
+"activo(A/A), por lo tanto todos los nodos (o mƔquinas que lo componen) estƔn "
+"funcionando. Tienen que estar todos en funcionamiento porque si uno se detiene, "
+"sobrecargarƔ a los demƔs."
 
-#: ../../godmode/groups/modu_group_list.php:158
-#: ../../godmode/groups/group_list.php:542
-msgid "There was a problem modifying group"
-msgstr "Ha habido un problema al modificar el grupo"
+#: ../../general/first_task/cluster_builder.php:63
+msgid ""
+"Clusters to guarantee service: these are active - passive (A/P) mode clusters. "
+"It means that one of the nodes (or machines that make up the cluster) will be running "
+"(primary) and another won't (secondary). When the primary goes down, the secondary "
+"must take over and give the service instead. Although many of the elements of this "
+"cluster are active-passive, it will also have active elements in both of them that "
+"indicate that the passive node is \"online\", so that in the case of a service "
+"failure in the master, the active node collects this information."
+msgstr ""
+"ClĆŗsters para garantizar el servicio: son clĆŗsters de modo activo-pasivo (A/"
+"P). Quiere decir que uno de los nodos (o mĆ”quinas que componen el clĆŗster) estarĆ” en "
+"funcionamiento (primario) y el otro no (secundario). Cuando uno primario se detiene, "
+"el secundario lo releva y proporciona el servicio en su lugar. Aunque muchos de los "
+"elementos de este clĆŗster son activo-pasivo, tambiĆ©n tendrĆ” elementos activos en los "
+"dos que indican que el nodo pasivo se encuentra \"en lĆ­nea\", para que en caso de "
+"fallo del sistema en el maestro, sea el nodo activo el que recoja esta informaciĆ³n."
 
-#: ../../godmode/groups/modu_group_list.php:227
-#: ../../godmode/groups/group_list.php:723
-msgid "There was a problem deleting group"
-msgstr "Ha habido un problema al borrar el grupo."
+#: ../../general/first_task/network_map.php:19
+msgid "There are no network map defined yet."
+msgstr "No hay mapas de red definidos todavĆ­a."
 
-#: ../../godmode/groups/modu_group_list.php:229
-#: ../../godmode/groups/group_list.php:720
-msgid "Group successfully deleted"
-msgstr "Grupo eliminado correctamente"
+#: ../../general/first_task/network_map.php:26
+msgid "Network Map"
+msgstr "Mapa de red"
 
-#: ../../godmode/groups/modu_group_list.php:294
-msgid "There are no defined module groups"
-msgstr "No hay grupos de mĆ³dulos definidos"
+#: ../../general/first_task/network_map.php:29
+#: ../../general/first_task/network_map.php:50
+msgid "Create Network Map"
+msgstr "Crear mapa de red"
 
-#: ../../godmode/groups/modu_group_list.php:303
-msgid "Create module group"
-msgstr "Crear grupo de mĆ³dulos"
+#: ../../general/first_task/network_map.php:32
+msgid ""
+"There is also an open-source version of the network map. \n"
+"\t\t\t\t\t\t\t\tThis functionality allows to graphically display the nodes and "
+"relationships, agents, modules and groups available to the user. \n"
+"\t\t\t\t\t\t\t\tThere are three types of network maps:\n"
+"\t\t\t"
+msgstr ""
+"Existe tambiĆ©n una versiĆ³n de cĆ³digo abierto del mapa de red. \n"
+"\t\t\t\t\t\t\t\tEsta funcionalidad permite visualizar grƔficamente los nodos y sus "
+"relaciones, agentes, mĆ³dulos y grupos disponibles para el usuario. \n"
+"\t\t\t\t\t\t\t\tHay tres tipos de mapas de red:\n"
+"\t\t\t"
 
-#: ../../godmode/groups/group_list.php:309
-msgid "Tree Group view"
-msgstr "Vista de Ɣrbol de grupos"
+#: ../../general/first_task/network_map.php:37
+msgid "Topology Map"
+msgstr "Mapa  de topologĆ­a"
 
-#: ../../godmode/groups/group_list.php:333
-msgid "Credential Store"
-msgstr "AlmacƩn de credenciales"
+#: ../../general/first_task/network_map.php:38
+msgid "Group Map"
+msgstr "Mapa de grupo"
 
-#: ../../godmode/groups/group_list.php:339
-#, php-format
-msgid "Groups defined in %s"
-msgstr "Grupos definidos en %s"
+#: ../../general/first_task/network_map.php:39
+msgid "Radial Map (User without strict user)"
+msgstr "Mapa radial (sin usuario estricto)"
 
-#: ../../godmode/groups/group_list.php:365
-msgid "Edit or delete groups can cause problems with synchronization"
-msgstr "Editar o borrar grupos puede causar problemas con la sincronizaciĆ³n."
+#: ../../general/first_task/network_map.php:40
+msgid "Dinamic Map"
+msgstr "Mapa dinƔmico"
 
-#: ../../godmode/groups/group_list.php:403
+#: ../../general/first_task/network_map.php:41
+msgid "Policy Map (Only Enterprise version)"
+msgstr "Mapa de polĆ­ticas (solo versiĆ³n Enterprise)"
+
+#: ../../general/first_task/tags.php:18
+msgid "There are no tags defined yet."
+msgstr "No hay etiquetas definidas todavĆ­a."
+
+#: ../../general/first_task/tags.php:25 ../../general/first_task/tags.php:35
+msgid "Create Tags"
+msgstr "Crear etiquetas"
+
+#: ../../general/first_task/tags.php:28
+msgid ""
+"Access to modules can be configured by a tagging system.\n"
+"\t\t\t\t\t\t\t\tTags are configured on the system and are assigned to the chosen "
+"modules.\n"
+"\t\t\t\t\t\t\t\tA user's access can therefore be restricted to modules with certain "
+"tags."
+msgstr ""
+"El acceso a los mĆ³dulos puede configurarse mediante etiquetas.\n"
+"\t\t\t\t\t\t\t\tLas etiquetas se configuran en el sistema y se asignan a los mĆ³dulos "
+"elegidos.\n"
+"\t\t\t\t\t\t\t\tPor ello, se puede restringir el acceso de un usuario a los mĆ³dulos "
+"mediante ciertas etiquetas."
+
+#: ../../general/first_task/omnishell.php:27
+msgid "There is no command defined yet."
+msgstr "AĆŗn no hay un comando definido."
+
+#: ../../general/first_task/omnishell.php:37
 #, php-format
 msgid ""
-"This node is configured with centralized mode. All groups information is read "
-"only. Go to %s to manage it."
+"Omnishell is an enterprise feature which allows you to execute a structured command "
+"along any agent in your %s. The only requirement is to have remote configuration "
+"enabled in your agent."
 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."
+"Omnishell es una funciĆ³n Enterprise que le permite ejecutar un comando estructurado "
+"junto con cualquier agente en %s. El Ćŗnico requisito es tener la configuraciĆ³n remota "
+"habilitada en el agente."
 
-#: ../../godmode/groups/group_list.php:473
-#: ../../godmode/groups/group_list.php:545
-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
-msgid "Group must have a name"
-msgstr "El grupo debe tener un nombre"
-
-#: ../../godmode/groups/group_list.php:605
-#, 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
+#: ../../general/first_task/omnishell.php:42
 msgid ""
-"The group has not been deleted in the metaconsole due to an error in the node "
-"database"
+"You can execute any command on as many agents you need, and check the execution on "
+"all of them using the Omnishell Command View"
 msgstr ""
-"El grupo no se ha eliminado de la Metaconsola por un error en la base de datos "
-"de los nodos"
+"Puede ejecutar cualquier comando en tantos agentes como desee y comprobar la "
+"ejecuciĆ³n de todos ellos mediante la vista del comando Omnishell"
 
-#: ../../godmode/groups/group_list.php:688
-#, php-format
-msgid "The group %s has been deleted in the nodes"
-msgstr "El grupo %s se ha borrado de los nodos"
+#: ../../general/first_task/omnishell.php:50
+msgid "Define a command"
+msgstr "Definir un comando"
 
-#: ../../godmode/groups/group_list.php:730
-#, 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."
+#: ../../general/first_task/custom_fields.php:19
+#: ../../general/first_task/fields_manager.php:18
+msgid "There are no custom fields defined yet."
+msgstr "No hay campos personalizados definidos todavĆ­a."
 
-#: ../../godmode/groups/group_list.php:775
-#: ../../godmode/groups/group_list.php:969
-msgid "There are no defined groups"
-msgstr "No hay grupos definidos"
+#: ../../general/first_task/custom_fields.php:27
+#: ../../general/first_task/custom_fields.php:36
+msgid "Create Custom Fields"
+msgstr "Crear campos personalizados"
 
-#: ../../godmode/groups/group_list.php:924
-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
+#: ../../general/first_task/custom_fields.php:30
 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"
+"Custom fields are an easy way to personalized agent's information.\n"
+"\t\t You're able to create custom fields by klicking on 'Administration' -> 'Manage "
+"monitoring' -> 'Manage custom fields'. "
+msgstr ""
+"Los campos personalizados son una manera fĆ”cil de personalizar la informaciĆ³n del "
+"agente.\n"
+"\t \t Puedes crear campos personalizados haciendo clic en \"AdministraciĆ³n\" -> "
+"\"Administrar monitorizaciĆ³n\" -> \"Administrar campos personalizados\". "
 
-#: ../../godmode/groups/configure_modu_group.php:31
-msgid "Module group management"
-msgstr "GestiĆ³n del grupo de mĆ³dulos"
+#: ../../general/first_task/fields_manager.php:22
+msgid "Fields Manager"
+msgstr "Gestor de campos"
+
+#: ../../general/first_task/fields_manager.php:25
+msgid "Create Fields Manager"
+msgstr "Gestor de creaciĆ³n de archivos"
+
+#: ../../general/first_task/fields_manager.php:28
+msgid ""
+"Custom fields are an easy way to personalized agent's information.\n"
+"\t\t\t\tYou're able to create custom fields by klicking on 'Administration' -> "
+"'Manage monitoring' -> 'Manage custom fields'. "
+msgstr ""
+"Los campos personalizados son una forma fĆ”cil de personalizar la informaciĆ³n de los "
+"agentes.\n"
+"\t\t\t\tPuedes crear campos personalizados haciendo clic en \"AdministraciĆ³n\" -> "
+"\"Gestionar monitorizaciĆ³n\" -> \"Gestionar campos personalizados\". "
+
+#: ../../general/first_task/fields_manager.php:34
+msgid "Create Fields "
+msgstr "Crear campos "
+
+#: ../../general/first_task/planned_downtime.php:18
+msgid "There are no scheduled downtime defined yet."
+msgstr "No se ha definido aĆŗn un tiempo de parada planificada."
+
+#: ../../general/first_task/planned_downtime.php:22
+msgid "Scehduled Downtime"
+msgstr "Parada planificada"
+
+#: ../../general/first_task/planned_downtime.php:25
+#: ../../general/first_task/planned_downtime.php:37
+msgid "Create Scheduled Downtime"
+msgstr "Parada planificada"
+
+#: ../../general/first_task/planned_downtime.php:28
+#, php-format
+msgid ""
+"%s contains a scheduled downtime management system.\n"
+"\t\t\t\t\t\tThis system was designed to deactivate alerts during specific intervals "
+"whenever there is down time by deactivating the agent.\n"
+"\t\t\t\t\t\tIf an agent is deactivated, it doesn't gather information. During down "
+"time, down-time intervals aren't taken into\n"
+"\t\t\t\t\t\taccount for most metrics or report types, because agents don't contain "
+"any data within those intervals."
+msgstr ""
+"%s contiene un sistema de gestiĆ³n de paradas planificadas.\n"
+"\t\t\t\t\t\tEste sistema fue diseƱado para desactivar las alertas durante intervalos "
+"especĆ­ficos siempre que haya una parada a causa de un agente desactivado.\n"
+"\t\t\t\t\t\tSi un agente estĆ” desactivado, no recoge informaciĆ³n. Durante esta "
+"parada, los intervalos de parada no se tienen en\n"
+"\t\t\t\t\t\tcuenta en la mayorƭa de las mƩtricas e informes, porque los agentes no "
+"contienen datos durante dichos intervalos."
+
+#: ../../general/first_task/snmp_filters.php:18
+msgid "There are no SNMP filter defined yet."
+msgstr "No hay filtro SNMP definido todavĆ­a."
+
+#: ../../general/first_task/snmp_filters.php:22
+msgid "SNMP Filter"
+msgstr "Filtro SNMP"
+
+#: ../../general/first_task/snmp_filters.php:25
+#: ../../general/first_task/snmp_filters.php:37
+msgid "Create SNMP Filter"
+msgstr "Crear un filtro SNMP"
+
+#: ../../general/first_task/snmp_filters.php:28
+msgid ""
+"Some systems receive a high number of traps. \n"
+"\t\t\t\tWe're only interested in monitoring a tiny percentage of them. From Pandora "
+"FMS versions 3.2 and above, \n"
+"\t\t\t\tit's possible to filter the traps that the server obtains in order to avoid "
+"straining the application unnecessarily.\n"
+"\t\t\t\tIn order to define different filters, please go to 'Administration' -> "
+"'Manage SNMP Console' and 'SNMP Filters'. \n"
+"\t\t\t\tOne trap which is going to run in conjunction with any of them - just the "
+"ones for the server are going to get ruled out automatically. "
+msgstr ""
+"Algunos sistemas reciben un alto nĆŗmero de traps.\n"
+"\t \t \t \t Solo es interesante realizar un seguimiento de un pequeƱo porcentaje de "
+"ellos. En las versiones de Pandora FMS 3.2 y superiores,\n"
+"\t \t \t \t es posible filtrar los traps que el servidor obtiene con el fin de evitar "
+"forzar la aplicaciĆ³n innecesariamente.\n"
+"\t \t \t \t Con el fin de definir diferentes filtros, por favor ve a \"AdministraciĆ³n"
+"\" -> \"Administrar consola SNMP\" y \"Filtros SNMP\".\n"
+"\t \t \t \t Un trap que se va a ejecutar en conjunto con cualquiera de ellos - solo "
+"los del servidor van a ser descartado automƔticamente. "
+
+#: ../../general/first_task/service_list.php:19
+msgid "There are no services defined yet."
+msgstr "No hay servicios definidos todavĆ­a."
+
+#: ../../general/first_task/service_list.php:26
+#: ../../general/first_task/service_list.php:40
+msgid "Create Services"
+msgstr "Crear servicios"
+
+#: ../../general/first_task/service_list.php:30
+msgid ""
+"A service is a way to group your IT resources based on their functionalities. \n"
+"\t\t\t\t\t\tA service could be e.g. your official website, your CRM system, your "
+"support application, or even your printers.\n"
+"\t\t\t\t\t\t Services are logical groups which can include hosts, routers, switches, "
+"firewalls, CRMs, ERPs, websites and numerous other services. \n"
+"\t\t\t\t\t\t By the following example, you're able to see more clearly what a service "
+"is:\n"
+"\t\t\t\t\t\t\tA chip manufacturer sells computers by its website all around the "
+"world. \n"
+"\t\t\t\t\t\t\tHis company consists of three big departments: A management, an on-line "
+"shop and support."
+msgstr ""
+"Un servicio es una forma de agrupar recursos de TI basados en tus funcionalidades.\n"
+"\t\t\t\t\t\tUn servicio puede ser por ejemplo tu pƔgina web oficial, tu sistema CRM, "
+"tu aplicaciĆ³n de soporte o incluso tus impresoras.\n"
+"\t\t\t\t\t\t Los servicios son grupos lĆ³gicos que pueden incluir hosts, routers, "
+"switches, firewalls, CRMs, ERPs, sitios web y muchos otros servicios. \n"
+"\t\t\t\t\t\t Mediante el siguiente ejemplo, podrƔ ver mƔs claramente lo que es un "
+"servicio:\n"
+"\t\t\t\t\t\t\tUn fabricante de chips vende computadoras por su pƔgina web en todo el "
+"mundo. \n"
+"\t\t\t\t\t\t\tSu empresa se compone de tres grandes departamentos: gestiĆ³n, tienda "
+"online y apoyo."
+
+#: ../../general/first_task/custom_graphs.php:19
+msgid "There are no custom graphs defined yet."
+msgstr "No hay grƔficos personalizados definidos todavƭa."
+
+#: ../../general/first_task/custom_graphs.php:24
+msgid "Custom Graphs"
+msgstr "GrƔficos personalizados"
+
+#: ../../general/first_task/custom_graphs.php:27
+#: ../../general/first_task/custom_graphs.php:39
+msgid "Create Custom Graph"
+msgstr "Crear grƔfico personalizado"
+
+#: ../../general/first_task/custom_graphs.php:30
+#, php-format
+msgid ""
+"Graphs are designed to show the data collected by %s in a temporary scale defined by "
+"the user.\n"
+"\t\t\t\t%s Graphs display data in real time. They are generated every time the "
+"operator requires any of them and display the up-to-date state.\n"
+"\t\t\t\tThere are two types of graphs: The agent's automated graphs and the graphs "
+"the user customizes by using one or more modules to do so."
+msgstr ""
+"Las grƔficas estƔn diseƱadas para mostrar los datos recogidos por %s en una escala "
+"temporal definida por el usuario.\n"
+"\t\t\t\tLas grƔficas de %s muestran datos en tiempo real. Se generan cada vez que el "
+"operador necesita cualquiera de ellas y muestran su estado actualizado.\n"
+"\t\t\t\tHay dos tipos de grƔficas: Las grƔficas automatizadas del agente y las "
+"grĆ”ficas personalizadas por el usuario mediante uno o mĆ”s mĆ³dulos."
+
+#: ../../general/first_task/transactional_list.php:21
+msgid "There are no transactions defined yet."
+msgstr "No hay transacciones definidas por el momento."
+
+#: ../../general/first_task/transactional_list.php:28
+msgid "Transactions"
+msgstr "Transacciones"
+
+#: ../../general/first_task/transactional_list.php:31
+#: ../../general/first_task/transactional_list.php:41
+msgid "Create Transactions"
+msgstr "Crear transacciones"
+
+#: ../../general/first_task/transactional_list.php:34
+msgid ""
+"The new transactional server allows you to execute tasks dependent on the others "
+"following a user-defined design. This means that it is possible to coordinate several "
+"executions to check a target at a given time.\n"
+"\n"
+"Transaction graphs represent the different processes within our infrastructure that "
+"we use to deliver our service."
+msgstr ""
+"El nuevo servidor transaccional le permite ejecutar tareas dependientes de las demƔs "
+"siguiendo un diseƱo definido por el usuario. Esto significa que es posible coordinar "
+"varias ejecuciones para comprobar un objetivo en un momento dado.\n"
+"\n"
+"Las grĆ”ficas de transacciĆ³n representan los diferentes procesos dentro de nuestra "
+"infraestructura, la cual usamos para llevar a cabo nuestros servicios."
+
+#: ../../general/first_task/collections.php:25
+#: ../../general/first_task/collections.php:39
+msgid "Create Collections"
+msgstr "Crear colecciones"
+
+#: ../../general/first_task/collections.php:28
+msgid ""
+"A file collection is a group of files (e.g. scripts or executables) which are \n"
+"\t\tautomatically copied to a specific directory of the agent (under Windows or "
+"UNIX). The file collections allow to be propagated\n"
+"\t\t along with the policies in order to be used by a group of agents, using a "
+"'package' of scripts and modules which use them.\n"
+"\t\tFirst we learn how to use the file collections in the agent's view, how to "
+"conduct it manually, agent by agent, without using collections,\n"
+"\t\t and how to do the same thing by using policies.Our first task is to arrange a "
+"compilation of files. In order to do this, please go to the agent's \n"
+"\t\t administrator. Subsequently, we're going to see a 'sub option' called "
+"'Collections'. Please click on it in order to create a new collection as we can see "
+"on \n"
+"\t\t the picture below. "
+msgstr ""
+"Una colecciĆ³n de archivos es un grupo de archivos (ej: scripts o ejecutable) los "
+"cuales son \n"
+"\t\t automƔticamente copiados a un directorio especƭfico del agente (bajo Windows o "
+"UNIX). Las colecciones de archivos permiten ser propagadas\n"
+"\t\t junto con las polĆ­ticas con el fin de ser utilizadas por un grupo de agentes, "
+"utilizando un \"paquete\" de scripts y mĆ³dulos que los utilizan.\n"
+"\t\t Primero aprendemos a utilizar las colecciones de archivos en la vista del agente "
+"y llevarla a cabo de forma manual, agente por agente, sin necesidad de utilizar las "
+"colecciones,\n"
+"\t\t y hacer lo mismo usando polĆ­ticas. Nuestra primera tarea es organizar una "
+"compilaciĆ³n de archivos. Para hacer esto, por favor ve al administrador \n"
+"\t\t de agentes. Posteriormente, vamos a ver una \"sub opciĆ³n\" llamada \"Colecciones"
+"\". Por favor, pincha en ella para crear una nueva colecciĆ³n como se puede ver en \n"
+"\t\t la imagen de abajo. "
+
+#: ../../general/header.php:77
+msgid "Sobre actualizaciƃĀ³n de revisiƃĀ³n menor"
+msgstr "Sobre actualizaciĆ³n de revisiĆ³n menor"
+
+#: ../../general/header.php:79
+msgid "About minor release update"
+msgstr "Sobre la actualizaciĆ³n menor"
+
+#: ../../general/header.php:112 ../../general/header.php:114
+msgid "Enter keywords to search"
+msgstr "Introduce palabras clave para buscar"
+
+#: ../../general/header.php:379
+msgid "Go to support"
+msgstr "Ir a soporte"
+
+#: ../../general/header.php:393
+msgid "Go to documentation"
+msgstr "Ir a documentaciĆ³n"
+
+#: ../../general/header.php:815
+msgid "Report an issue"
+msgstr "Notificar un error"
+
+#: ../../general/alert_enterprise.php:107
+#, php-format
+msgid ""
+"This is the online help for %s console. This help is -in best cases- just a brief "
+"contextual help, not intented to teach you how to use %s. Official documentation of "
+"%s is about 900 pages, and you probably don't need to read it entirely, but sure, you "
+"should download it and take a look.

\n" +" Download " +"the official documentation" +msgstr "" +"Esta es la ayuda en lĆ­nea para la consola %s. Esta ayuda (en el mejor de los casos) " +"es solo una breve ayuda contextual, que no pretende enseƱarle como usar %s. La " +"documentaciĆ³n oficial de %s es de unas 900 pĆ”ginas, y probablemente no necesite " +"leerla entera, pero por supuesto deberĆ­a descargarla y echarle un vistazo.

\n" +" Descargar la documentaciĆ³n oficial" + +#: ../../general/alert_enterprise.php:120 +#, php-format +msgid "" +"Access to this page is restricted to authorized users only, please contact system " +"administrator if you need assistance.

\n" +" Please know that all attempts to access this page are recorded in security logs " +"of %s System Database." +msgstr "" +"El acceso a esta pĆ”gina estĆ” restringido exclusivamente a usuarios autorizados, " +"pĆ³ngase en contacto con el administrador del sistema si necesita ayuda.

\n" +" Note que todos los intentos de acceso al la pĆ”gina se guardarĆ”n en los logs de " +"seguridad de la base de datos de %s." + +#: ../../general/alert_enterprise.php:130 +#, php-format +msgid "" +"The Update Manager client is included on %s. It helps system administrators update " +"their %s automatically, since the Update Manager retrieves new modules, new plugins " +"and new features (even full migrations tools for future versions) automatically." +msgstr "" +"Update Manager cliente estĆ” incluido en %s. Ayuda a los administradores de sistemas a " +"actualizar su %s automĆ”ticamente, puesto que Update manager obtiene nuevos mĆ³dulos, " +"plugins y funcionalidades (incluso herramientas de migraciĆ³n completa para futuras " +"versiones) automĆ”ticamente." + +#: ../../general/alert_enterprise.php:130 +msgid "" +"OpenSource version updates are automated packages generated each week. These " +"updates come WITHOUT ANY warranty or support. If your system is corrupted or a " +"feature stops working properly, you will need to recover a backup by yourself." +msgstr "" +"Las actualizaciones de la versiĆ³n OpenSource son paquetes automatizados generados " +"cada semana. Estas actualizaciones vienen sin garantĆ­a o soporte. Si tu sistema estĆ” " +"daƱado o una caracterĆ­stica deja de funcionar correctamente, necesitarĆ”s recuperar " +"una copia de seguridad tĆŗ mismo." + +#: ../../general/alert_enterprise.php:130 +#, php-format +msgid "" +"The Enterprise version comes with a different update system, with fully tested, " +"professionally-supported packages, and our support team is there to help you in case " +"of problems or queries. Update Manager is another feature present in the Enterprise " +"version and not included in the OpenSource version. There are lots of advanced " +"business-oriented features contained in %s Enterprise Edition. For more information " +"visit pandorafms.com" +msgstr "" +"La versiĆ³n Enterprise tiene un sistema de actualizaciĆ³n diferente, con paquetes " +"completamente probador y con asistencia profesional. Nuestro equipo de soporte le " +"asistirĆ” en caso de duda o problema, Update Manager es otra funcionalidad presente en " +"%s versiĆ³n Enterprise no incluida en la versiĆ³n OpenSource. \r\n" +"La versiĆ³n Enterprise contiene cientos de funcionalidades diseƱadas para su negocio. " +"Para mĆ”s informaciĆ³n visite pandorafms.com" + +#: ../../general/alert_enterprise.php:132 +#, php-format +msgid "" +"The new Update Manager client is " +"included on %s. It helps system administrators update their %s automatically, since " +"the Update Manager retrieves new modules, new plugins and new features (even full " +"migrations tools for future versions) automatically." +msgstr "" +"El nuevo Update Manager cliente " +"estĆ” incluido en %s. Ayuda a los administradores de sistemas a actualizar %s " +"automĆ”ticamente, puesto que Update Manager obtiene nuevos mĆ³dulos, plugins y " +"funcionalidades (incluso herramientas de migraciĆ³n completa para futuras versiones) " +"automĆ”ticamente." + +#: ../../general/alert_enterprise.php:132 +#, php-format +msgid "" +"The Update Manager is one of the most advanced features on the %s Enterprise Edition. " +"For more information visit http://pandorafms.com." +msgstr "" +"Update Manager es una de las funcionalidades mĆ”s avanzadas de %s versiĆ³n Enterprise. " +"Para obtener mĆ”s informaciĆ³n visite http://" +"pandorafms.com." + +#: ../../general/alert_enterprise.php:132 +#, php-format +msgid "" +"Update Manager sends anonymous information about %s usage (number of agents and " +"modules running). To disable it, please remove the remote server address from the " +"Update Manager plugin setup." +msgstr "" +"Update Manager envĆ­a informaciĆ³n anĆ³nima sobre el uso de %s (nĆŗmero de agentes en " +"ejecuciĆ³n). Para deshabilitarlo, elimine la direcciĆ³n del servidor remoto de la " +"configuraciĆ³n del plugin Update Manager." + +#: ../../general/alert_enterprise.php:138 +msgid "" +"The community version doesn't have the ability to define your own library of local " +"modules, or distribute it to remote agents. You need to make those changes " +"individually on each agent which is possible by using external tools and time and " +"effort. Nor can it distribute local plugins, or have access to the library of " +"enterprise plugins to monitor applications such as VMWare, RHEV or Informix between " +"others. The Enterprise version will have all this, plus the ability to distribute and " +"manage your own local modules on your systems, individually or through policies.\n" +"

pandorafms.com" +msgstr "" +"ĀæQuiere consolidar toda la monitorizaciĆ³n de sus sistemas? ĀæTiene tantos sistemas que " +"le resulta difĆ­cil gestionarlos completamente? ĀæLe gustarĆ­a desplegar monitorizaciĆ³n, " +"alertas e incluso plugins locales en un solo click? Las polĆ­ticas Enterprise de %s " +"son exactamente lo que usted necesita. Se ahorrarĆ” tiempo, esfuerzos y molestias. MĆ”s " +"informaciĆ³n en pandorafms.com" + +#: ../../general/alert_enterprise.php:148 +#, php-format +msgid "" +"%s Enterprise also features event correlation. Through correlation you can generate " +"realtime alerts and / or new events based on logical rules. This allows you to " +"automate troubleshooting. If you know the value of working with events, event " +"correlation will take you to a new level." +msgstr "" +"%s Enterprise tambiĆ©n incluye correlaciĆ³n de eventos. A travĆ©s de esta correlaciĆ³n " +"puede generar alertas en tiempo real y / o nuevos eventos basados en reglas lĆ³gicas. " +"Esto le permite automatizar la resoluciĆ³n de errores. Si ya conoce la importancia de " +"trabajar con eventos, la correlaciĆ³n de eventos le llevarĆ” a otro nivel." + +#: ../../general/alert_enterprise.php:152 +#, php-format +msgid "" +"Report generating on the Enterprise version is also more powerful: it has wizards, " +"you can schedule emails in PDF to be sent according to the schedule you decide, and " +"it has a template system to create personalized reports quickly for each of your " +"customers. It will even allow your customers to generate their own reports from " +"templates created by you. If reports are key to your business, %s Enterprise version " +"is for you." +msgstr "" +"La generaciĆ³n de informes en la versiĆ³n Enterprise tambiĆ©n es mĆ”s potente: tiene " +"asistentes, puede programar el envĆ­o de emails en PDF cuando usted decida y tiene un " +"sistema de plantillas para crear informes personalizados rĆ”pidamente para todos sus " +"clientes. TambiĆ©n le permitirĆ” a sus clientes crear sus propios informes a partir de " +"las plantillas que usted haya creado. Si los informes son la clave de su negocio, %s " +"versiĆ³n Enterprise es para usted." + +#: ../../general/alert_enterprise.php:156 +msgid "These options are only effective on the Enterprise version." +msgstr "Estas opciones solo funcionan en la versiĆ³n Enterprise." + +#: ../../general/alert_enterprise.php:160 +msgid "" +"WARNING: You are just one click away from an automated update. This may result in a " +"damaged system, including loss of data and operativity. Check you have a recent " +"backup. OpenSource updates are automatically created packages, and there is no " +"WARRANTY or SUPPORT. If you need professional support and warranty, please upgrade to " +"Enterprise Version." +msgstr "" +"ADVERTENCIA: EstĆ”s a un solo clic de una actualizaciĆ³n automĆ”tica. Esto podrĆ­a daƱar " +"el sistema, incluyendo pĆ©rdida de datos y operatividad. Comprueba que tienes una " +"copia de seguridad reciente. Las actualizaciones de la versiĆ³n OpenSource son " +"paquetes creados automĆ”ticamente, y no hay GARANTƍA o SOPORTE. Si necesitas " +"asistencia profesional y una garantĆ­a, actualiza a la versiĆ³n Enterprise." + +#: ../../general/alert_enterprise.php:164 +msgid "" +"This system is heavily loaded. OpenSource version could get a lot more agents but " +"fine tuning requires knowledge and time. Checkout the Enterprise Version for a " +"professional supported system." +msgstr "" +"Este sistema estĆ” muy congestionado. La versiĆ³n OpenSource podrĆ­a obtener muchos mĆ”s " +"agentes, pero la precisiĆ³n requiere de tiempo y conocimiento. Instala la versiĆ³n " +"Enterprise para obtener un sistema profesional compatible." + +#: ../../general/alert_enterprise.php:173 +#, php-format +msgid "" +"This system has too many modules per agent. OpenSource version could manage thousands " +"of modules, but is not recommended to have more than 100 modules per agent. This " +"configuration has %d modules per agent. Checkout the Enterprise Version for a " +"professional supported system." +msgstr "" +"El sistema tiene demasiados mĆ³dulos por agente. La versiĆ³n OpenSource puede manejar " +"miles de mĆ³dulos, pero no es recomendable tener mĆ”s de 100 mĆ³dulos por agente. Esta " +"configuraciĆ³n tiene %d mĆ³dulos por agente. Vea la versiĆ³n Enterprise para tener un " +"sistema profesional con soporte." + +#: ../../general/alert_enterprise.php:177 +msgid "" +"Too much remote modules has been detected on this system. OpenSource version could " +"manage thousands of modules, but performance is limited on high amount of SNMP or " +"ICMP request. Checkout the Enterprise Version for a professional supported system " +"with improved capacity on network monitoring, including distributed servers." +msgstr "" +"Se han detectado muchos mĆ³dulos remotos en este sistema. La versiĆ³n OpenSource puede " +"manejar miles de mĆ³dulos, pero el rendimiento serĆ” limitado con un gran nĆŗmero de " +"peticiones SNMP o ICMP. Instala la versiĆ³n Enterprise para obtener un sistema " +"profesional compatible." + +#: ../../general/alert_enterprise.php:181 +msgid "" +"This system has too much events in the database. Checkout database purge options. " +"Checkout the Enterprise Version for a professional supported system." +msgstr "" +"Este sistema tiene muchos eventos en la base de datos. Consulta las opciones de purga " +"de la base de datos. Instala la versiĆ³n Enterprise para obtener un sistema " +"profesional compatible." + +#: ../../general/alert_enterprise.php:185 +msgid "" +"You have defined a high number of alerts, this may cause you performance problems in " +"the future. In the Enterprise version, you can use event correlation alerts to " +"simplify the alerting system and have easier administration and increased performance." +msgstr "" +"Tiene definido un gran nĆŗmero de agentes que podrĆ­an provocar problemas de " +"rendimiento en un futuro. En la versiĆ³n Enterprise puedes usar la correlaciĆ³n de " +"alertas de eventos para simplificar el sistema de alertas y poder manejarlo de forma " +"sencilla y aumentar el rendimiento." + +#: ../../general/login_help_dialog.php:43 +#, php-format +msgid "" +"If this is your first time using %s, we suggest a few links that'll help you learn " +"more about the software. Monitoring can be overwhelming, but take your time to learn " +"how to harness the power of %s!" +msgstr "" +"Si esta es la primera vez que usa %s, le sugerimos algunos enlaces que le ayudarĆ”n a " +"saber mĆ”s sobre este software. La monitorizaciĆ³n puede ser abrumadora, pero tĆ³mese su " +"tiempo en aprender a aprovechar todo el potencial de %s!" + +#: ../../general/login_help_dialog.php:57 ../../general/login_help_dialog.php:62 +msgid "Online help" +msgstr "Ayuda en lĆ­nea" + +#: ../../general/login_help_dialog.php:70 ../../general/login_help_dialog.php:75 +msgid "Enterprise version" +msgstr "VersiĆ³n Enterprise" + +#: ../../general/login_help_dialog.php:88 +msgid "Forums" +msgstr "Foros" + +#: ../../general/login_help_dialog.php:96 ../../general/login_help_dialog.php:101 +#: ../../general/mysqlerr.php:142 +msgid "Documentation" +msgstr "DocumentaciĆ³n" + +#: ../../general/login_help_dialog.php:110 +msgid "Click here to don't show again this message" +msgstr "Pincha aquĆ­ para no volver a ver este mensaje" + +#: ../../general/maintenance.php:36 +msgid "Maintenance tasks in progress" +msgstr "Tareas de mantenimiento en curso" + +#: ../../general/maintenance.php:53 ../../general/node_deactivated.php:64 +msgid "You will be automatically redirected when all tasks finish" +msgstr "Se le redirigirĆ” automĆ”ticamente cuando finalicen todas las tareas" + +#: ../../general/logon_ok.php:160 +#, php-format +msgid "%s Overview" +msgstr "Esquema %s" + +#: ../../general/logon_ok.php:213 +msgid "News board" +msgstr "TablĆ³n de noticias" + +#: ../../general/logon_ok.php:289 +msgid "Latest activity" +msgstr "Actividad reciente" + +#: ../../general/noaccess.php:147 +msgid "You do not have access to this page" +msgstr "No tiene acceso a esta pĆ”gina" + +#: ../../general/ui/agents_list.php:152 +msgid "No agents found" +msgstr "No se encontrĆ³ ningĆŗn agente" + +#: ../../general/logon_failed.php:30 +msgid "" +"Either, your password or your login are incorrect. Please check your CAPS LOCK key, " +"username and password are case SeNSiTiVe.

All actions, included failed login " +"attempts are logged in Pandora FMS System logs, and these can be reviewed by each " +"user, please report to admin any incident or malfunction." +msgstr "" +"La combinaciĆ³n usuario/contraseƱa es incorrecta. Comprueba que no estĆ” habilitado el " +"bloqueo de mayĆŗsculas, los campos distinguen entre mayĆŗsculas y minĆŗsculas.

" +"Todas las acciones, incluidos los intentos fallidos de acceso son guardados en el " +"sistema de registro de logs de Pandora FMS y pueden ser revisados por cada usuario. " +"Contacta al administrador cualquier incidente o fallo." + +#: ../../general/node_deactivated.php:36 +msgid "You cannot use this node until system is unified" +msgstr "No puede utilizar este nodo hasta que el sistema estƩ unificado" + +#: ../../general/node_deactivated.php:56 +#, php-format +msgid "Please navigate to %s to unify system" +msgstr "Navegue a %s para unificar el sistema" + +#: ../../general/noaccess2.php:23 +msgid "Access to this page is restricted" +msgstr "El acceso a esta pƔgina estƔ restringido" + +#: ../../general/noaccess2.php:35 +msgid "" +"Access to this page is restricted to authorized users only, please contact system " +"administrator if you need assistance.

\n" +"\t\t\tPlease know that all attempts to access this page are recorded in security logs " +"of Pandora System Database" +msgstr "" +"El acceso a esta pƔgina estƔ restringido a usuarios autorizados solamente. Por favor, " +"contacta con el administrador del sistema si necesitas ayuda.

\n" +"\t\t\tTen en cuenta que todos los intentos de acceso a esta pĆ”gina son guardados en " +"los logs de seguridad de la base de datos de Pandora FMS" + +#: ../../general/mysqlerr.php:105 +msgid "Database error" +msgstr "Error en la base de datos" + +#: ../../general/mysqlerr.php:115 +msgid "" +"Failure to connect to historical database, please check the configuration or contact " +"system administrator if you need assistance." +msgstr "" +"Error al conectar con la base de datos histĆ³rica, revise la configuraciĆ³n o pĆ³ngase " +"en contacto con el administrador del sistema si necesita ayuda." + +#: ../../general/mysqlerr.php:117 +msgid "" +"Failure to connect to Database server, please check the configuration file config.php " +"or contact system administrator if you need assistance." +msgstr "" +"Error al conectar con el servidor de la base de datos. Revise el archivo de " +"configuraciĆ³n config.php o pĆ³ngase en contacto con el administrador del sistema si " +"necesita ayuda." + +#: ../../general/login_page.php:54 +#, php-format +msgid "Go to %s Website" +msgstr "Ir a la pĆ”gina web de %s" + +#: ../../general/login_page.php:68 +msgid "Go to Login" +msgstr "Ir a la pantalla de inicio" + +#: ../../general/login_page.php:251 +msgid "Login as admin" +msgstr "Entrar como administrador" + +#: ../../general/login_page.php:319 +msgid "View details" +msgstr "Ver detalles" + +#: ../../general/login_page.php:347 +msgid "" +"This node is configured with centralized mode. Go to metaconsole to reset the password" +msgstr "" +"Este nodo estĆ” configurado en modo centralizado. Vaya a la Metaconsola para respetar " +"la contraseƱa." + +#: ../../general/login_page.php:372 ../../general/login_page.php:375 +#, php-format +msgid "WELCOME TO %s" +msgstr "BIENVENIDO A %s" + +#: ../../general/login_page.php:384 ../../general/login_page.php:387 +msgid "NEXT GENERATION" +msgstr "NEXT GENERATION" + +#: ../../general/login_page.php:536 +msgid "User node access not enabled" +msgstr "Acceso de usuario al nodo no habilitado" + +#: ../../general/login_page.php:539 ../../general/login_page.php:543 +msgid "Centralized user in metaconsole" +msgstr "Usuario centralizado en metaconsola" + +#: ../../general/login_page.php:544 +msgid "" +"This user does not have access on node, please enable node access on this user from " +"metaconsole." +msgstr "" +"Este usuario no tiene acceso en el nodo, habilite el acceso al nodo en este usuario " +"desde la metaconsola." + +#: ../../general/login_page.php:559 ../../general/login_page.php:561 +#, php-format +msgid "Problem with %s database" +msgstr "Problema con la base de datos de %s" + +#: ../../general/login_page.php:565 +msgid "" +"Cannot connect to the database, please check your database setup in the include/" +"config.php file.

\n" +"\t\tProbably your database, hostname, user or password values are incorrect or\n" +"\t\tthe database server is not running." +msgstr "" +"No se pudo conectar con la base de datos, comprueba la configuraciĆ³n de su base de " +"datos en el archivo include/config.php.

\n" +"\t\tProbablemente, los valores de la base de datos, nombre del host, usuario o " +"contraseƱa son incorrectos o\n" +"\t\t el servidor de la base de datos no estƔ activo." + +#: ../../general/login_page.php:570 +msgid "DB ERROR" +msgstr "ERROR de la BD" + +#: ../../general/login_page.php:576 +#, php-format +msgid "" +"If you have modified the auth system, the origin of this problem could be that %s " +"cannot override the authorization variables from the config database. Please remove " +"them from your database by executing:
DELETE FROM tconfig WHERE token = \"auth"
+"\";
" +msgstr "" +"Si ha modificado el sistema de permisos, el origen de este problema podrĆ­a ser que %s " +"no puede saltarse las variables de permisos de la base de datos de configuraciĆ³n. " +"ElimĆ­nelas de la base de datos ejecutando:
DELETE FROM tconfig WHERE token = "
+"\"auth\";
" + +#: ../../general/login_page.php:581 +msgid "Empty configuration table" +msgstr "Tabla de configuraciĆ³n vacĆ­a" + +#: ../../general/login_page.php:583 +#, php-format +msgid "" +"Cannot load configuration variables from database. Please check your database setup " +"in the\n" +"\t\t\tinclude/config.php file.

\n" +"\t\t\tMost likely your database schema has been created but there are is no data in " +"it, you have a problem with the database access credentials or your schema is out of " +"date.\n" +"\t\t\t

%s Console cannot find include/config.php or this file has " +"invalid\n" +"\t\t\tpermissions and HTTP server cannot read it. Please read documentation to fix " +"this problem.
" +msgstr "" +"No se puede aƱadir variables de configuraciĆ³n desde la base de datos. Revise la " +"configuraciĆ³n de la base de datos en el\n" +"\t\t\tinclude/config.php archivo.

\n" +"\t\t\tProbablemente el esquema de su base de datos se ha creado pero no contiene " +"datos, tiene un problema con los credenciales de acceso a la base de datos o su " +"esquema estĆ” desactualizado.\n" +"\t\t\t

%s La consola no ha podido encontrarinclude/config.php o este " +"archivo no tiene\n" +"\t\t\tpermisos vĆ”lidos y el servidor HTTP no puede leerlo. Lea la documentaciĆ³n para " +"solucionar el problema.
" + +#: ../../general/login_page.php:593 +msgid "No configuration file found" +msgstr "No se ha encontrado el archivo de configuraciĆ³n" + +#: ../../general/login_page.php:595 +#, php-format +msgid "" +"%s Console cannot find include/config.php or this file has invalid\n" +"\t\tpermissions and HTTP server cannot read it. Please read documentation to fix this " +"problem." +msgstr "" +"La consola %s no ha podido encontrar include/config.php o este archivo no " +"tiene \n" +"\t\tpermisos vĆ”lidos y el servidor HTTP no puede leerlo. Lea la documentaciĆ³n para " +"solucionar el problema." + +#: ../../general/login_page.php:607 +#, php-format +msgid "You may try to run the %sinstallation wizard%s to create one." +msgstr "" +"Puedes intentar ejecutar el %sasistente de instalaciĆ³n%s para crear uno." + +#: ../../general/login_page.php:611 +msgid "Installer active" +msgstr "Instalador activo" + +#: ../../general/login_page.php:613 +#, php-format +msgid "" +"For security reasons, normal operation is not possible until you delete installer " +"file.\n" +"\t\tPlease delete the ./install.php file before running %s Console." +msgstr "" +"Por motivos de seguridad, el funcionamiento no es posible hasta que elimine el " +"archivo de instalador.\n" +"\t\tBorre el archivo ./install.php antes de ejecutar la consola de %s." + +#: ../../general/login_page.php:620 +msgid "Bad permission for include/config.php" +msgstr "Permiso incorrecto para include/config.php" + +#: ../../general/login_page.php:622 +msgid "" +"For security reasons, config.php must have restrictive permissions, and \"other" +"\" users\n" +"\t\tshould not read it or write to it. It should be written only for owner\n" +"\t\t(usually www-data or http daemon user), normal operation is not possible until " +"you change\n" +"\t\tpermissions for include/config.php file. Please do it, it is for your " +"security." +msgstr "" +"Por motivos de seguridad, config.php ha de tener permisos restrictivos, y " +"\"otros\" usuarios\n" +"\t\t no deberĆ­an leerlo o editarlo. DeberĆ­a escribirlo solo el propietario\n" +"\t\t (normalmente www-data o http daemon user), el funcionamiento normal no serĆ” " +"posible hasta que se cambien\n" +"\t\t los permisos para el archivo include/config.php. Por tu seguridad, " +"procede a cambiarlos." + +#: ../../general/login_page.php:630 +msgid "Bad defined homedir" +msgstr "Homedir mal definida" + +#: ../../general/login_page.php:631 +msgid "" +"In the config.php file in the variable $config[\"homedir\"] = add the correct path" +msgstr "" +"En el archivo config.php en la variable $config[\"homedir\"] = aƱade la ruta correcta" + +#: ../../general/login_page.php:635 +msgid "Bad defined homeurl or homeurl_static" +msgstr "Homeurl o homeurl_static mal definida" + +#: ../../general/login_page.php:636 +msgid "" +"In the config.php file in the variable $config[\"homeurl\"] or " +"$config[\"homeurl_static\"] = add the correct path" +msgstr "" +"En el archivo config.php en la variable $config[\"homeurl\"] o " +"$config[\"homeurl_static\"] = aƱade la ruta correcta" + +#: ../../general/pandora_help.php:23 +#, php-format +msgid "%s help system" +msgstr "Ayuda del sistema de %s" + +#: ../../general/pandora_help.php:72 +msgid "Help system error" +msgstr "Error del sistema de ayuda" + +#: ../../general/pandora_help.php:77 +#, php-format +msgid "" +"%s help system has been called with a help reference that currently don't exist. " +"There is no help content to show." +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 "Event" +#~ msgstr "Evento" + +#~ msgid "More detail" +#~ msgstr "MĆ”s detalles" + +#~ msgid "The Agent: " +#~ msgstr "El agente: " + +#~ msgid " has " +#~ msgstr " tiene " + +#~ msgid " events." +#~ msgstr " eventos." + +#~ msgid "Is not allowed delete events in process" +#~ msgstr "No puede borrar eventos en proceso" + +#~ msgid "" +#~ "Event viewer is disabled due event replication. For more information, please " +#~ "contact with the administrator" +#~ msgstr "" +#~ "El visor de eventos estĆ” desactivado debido a la replicaciĆ³n de eventos. Por " +#~ "favor, contacta con el administrador para obtener mĆ”s informaciĆ³n." + +#~ msgid "In progress selected" +#~ msgstr "Seleccionado en proceso" + +#~ msgid "Validate selected" +#~ msgstr "Validar selecciĆ³n" + +#~ msgid "No filter loaded" +#~ msgstr "No se ha cargado el filtro" + +#~ msgid "Filter loaded" +#~ msgstr "Filtro cargado" + +#~ msgid "Event control filter" +#~ msgstr "Filtro de control de eventos" + +#~ msgid "Error creating filter." +#~ msgstr "Error al crear el filtro" + +#~ msgid "Error creating filter is duplicated." +#~ msgstr "Error al crear el filtro ya que estĆ” duplicado" + +#~ msgid "Filter created." +#~ msgstr "Filtro creado" + +#~ msgid "Filter updated." +#~ msgstr "Filtro actualizado" + +#~ msgid "Error updating filter." +#~ msgstr "Error al actualizar el filtro" + +#, php-format +#~ msgid "'Show events' is disabled because this %s node is set to event replication." +#~ msgstr "" +#~ "\"Mostrar eventos\" estĆ” deshabilitado porque el nodo de %s estĆ” en replicaciĆ³n de " +#~ "eventos." + +#~ msgid "Treshold" +#~ msgstr "Umbral" + +#~ msgid "Alert fired in module " +#~ msgstr "Alerta disparada en el mĆ³dulo " + +#~ msgid " is going to critical" +#~ msgstr " cambiando a CRƍTICO" + +#~ msgid " is going to warning" +#~ msgstr " cambiando a ADVERTENCIA" + +#~ msgid " is going to unknown" +#~ msgstr " cambiando a DESCONOCIDO" + +#~ msgid "There are no events matching selected search filters" +#~ msgstr "No hay eventos que coincidan con los filtros seleccionados" + +#~ msgid "Pandora System" +#~ msgstr "Sistema de Pandora FMS" + +#~ msgid "Validated but not assigned" +#~ msgstr "Validado pero no asignado" + +#~ msgid "Agent Module" +#~ msgstr "MĆ³dulo del agente" + +#~ msgid "Events replication" +#~ msgstr "ReplicaciĆ³n de eventos" + +#~ msgid "Replication interval" +#~ msgstr "Intervalo de replicaciĆ³n" + +#~ msgid "Replication limit" +#~ msgstr "LĆ­mite de replicaciĆ³n" + +#~ msgid "Replication mode" +#~ msgstr "Modo de replicaciĆ³n" + +#~ msgid "Show events list in local console (read only)" +#~ msgstr "Mostrar lista de eventos en la consola local (solo lectura)" + +#~ msgid "Replication DB engine" +#~ msgstr "Motor de BD de replicaciĆ³n" + +#~ msgid "Maximum of events shown" +#~ msgstr "MĆ”ximo nĆŗmero de eventos mostrados" + +#, php-format +#~ msgid "last event replication: %s" +#~ msgstr "Ćŗltima replicaciĆ³n de evento: %s" + +#~ msgid "server connection failed" +#~ msgstr "Error en la conexiĆ³n con el servidor" + +#~ msgid "Last event replication" +#~ msgstr "ReplicaciĆ³n del Ćŗltimo evento" + +#~ msgid "This console is not joining any metaconsole." +#~ msgstr "Esta consola no se unirĆ” a ninguna Metaconsola" + +#~ msgid "Event replication" +#~ msgstr "ReplicaciĆ³n de eventos" + +#~ msgid "Seconds" +#~ msgstr "Segundos" + +#~ msgid "Last replication at" +#~ msgstr "ƚltima replicaciĆ³n a" + +#~ msgid "No replication yet" +#~ msgstr "Sin replicaciĆ³n todavĆ­a" + +#~ msgid "Only validated events" +#~ msgstr "Solo eventos validados" + +#~ msgid "No selected agents to copy" +#~ msgstr "No se han seleccionado agentes de destino para la copia" + +#~ msgid "Making copy of configuration file for" +#~ msgstr "Creando una copia del archivo de configuraciĆ³n de" + +#~ msgid "Error copying md5 file " +#~ msgstr "Error al copiar archivo MD5 " + +#~ msgid "Remote configuration management" +#~ msgstr "GestiĆ³n de configuraciĆ³n remota" + +#~ msgid "To agent(s):" +#~ msgstr "Agente(s) de destino:" + +#~ msgid "Custom events" +#~ msgstr "Eventos personalizados" + +#~ msgid "Global Profile" +#~ msgstr "Perfil global" + +#~ msgid "" +#~ "This user has permissions to manage all. An admin user should not requiere " +#~ "additional group permissions, except for using Enterprise ACL." +#~ msgstr "" +#~ "Este usuario tiene permisos para configurar todo. Un usuario administrador no " +#~ "deberĆ­a requerir permisos adicionales de grupo, excepto para usar ACL Enterprise." + +#~ msgid "" +#~ "This user has separated permissions to view data in his group agents, create " +#~ "incidents belong to his groups, add notes in another incidents, create personal " +#~ "assignments or reviews and other tasks, on different profiles" +#~ msgstr "" +#~ "Este usuario tiene permisos diferentes para ver los datos en el grupo de agentes, " +#~ "crear incidentes en el grupo, aƱadir notas en otros incidentes, crear asignaciones " +#~ "personales o revisarlas y otras tareas en perfiles diferentes." + +#~ msgid "Assigned node" +#~ msgstr "Nodo asignado" + +#~ msgid "Server where the agents created of this user will be placed" +#~ msgstr "Servidor donde se ubicarĆ”n los agentes creados por este usuario" #~ msgid "Advanced Options" #~ msgstr "Opciones avanzadas" @@ -52059,8 +50639,8 @@ msgstr "GestiĆ³n del grupo de mĆ³dulos" #~ msgstr "Gestor de actualizaciones" #~ msgid "" -#~ "Click here to start the registration process" +#~ "Click " +#~ "here to start the registration process" #~ msgstr "" #~ "Haga click en aquĆ­ para comenzar el proceso de registro" @@ -52124,13 +50704,11 @@ msgstr "GestiĆ³n del grupo de mĆ³dulos" #~ msgstr "Diario de Update Manager" #~ msgid "An error occurred while migrating the malformed scheduled downtimes" -#~ msgstr "" -#~ "Ha ocurrido un error mientras se migraban paradas planificadas mal formadas" +#~ msgstr "Ha ocurrido un error mientras se migraban paradas planificadas mal formadas" #~ msgid "Please run the migration again or contact with the administrator" #~ msgstr "" -#~ "Por favor, ejecuta el script de migraciĆ³n de nuevo o contacta con el " -#~ "administrador" +#~ "Por favor, ejecuta el script de migraciĆ³n de nuevo o contacta con el administrador" #~ msgid "Agents cannot be updated (maybe there was no field to update)" #~ msgstr "" @@ -52163,8 +50741,7 @@ msgstr "GestiĆ³n del grupo de mĆ³dulos" #~ msgstr "Obtener running-config" #~ msgid "Latest configuration is up to date with backup." -#~ msgstr "" -#~ "La configuraciĆ³n mĆ”s reciente estĆ” actualizada con la copia de seguridad." +#~ msgstr "La configuraciĆ³n mĆ”s reciente estĆ” actualizada con la copia de seguridad." #~ msgid "Running task" #~ msgstr "EjecuciĆ³n de la tarea" @@ -52185,8 +50762,7 @@ msgstr "GestiĆ³n del grupo de mĆ³dulos" #~ msgstr "Ruta para guardar la copia de seguridad" #~ msgid "It is important that Apache can read and write on the selected path" -#~ msgstr "" -#~ "Es importante que Apache pueda leer y escribir en la ruta seleccionada" +#~ msgstr "Es importante que Apache pueda leer y escribir en la ruta seleccionada" #~ msgid "The complete and exact name of the module must be specified" #~ msgstr "Especifique el nombre completo y exacto del mĆ³dulo." @@ -52208,8 +50784,8 @@ msgstr "GestiĆ³n del grupo de mĆ³dulos" #~ "Add those networks from the top selector that belong to the range specified " #~ "herein. (e.g.: 192.168.30.0/24)" #~ msgstr "" -#~ "Agregue aquellas redes del selector superior que pertenezcan al rango " -#~ "especificado aquĆ­. (por ejemplo: 192.168.30.0/24)" +#~ "Agregue aquellas redes del selector superior que pertenezcan al rango especificado " +#~ "aquĆ­. (por ejemplo: 192.168.30.0/24)" #~ msgid "all networks selected" #~ msgstr "Todas las redes seleccionadas" @@ -52250,11 +50826,11 @@ msgstr "GestiĆ³n del grupo de mĆ³dulos" #~ msgstr "ActualizaciĆ³n menor rechazada. No se aplicarĆ”n los cambios." #~ msgid "" -#~ "Minor release rejected. The database will not be updated and the package " -#~ "will apply." +#~ "Minor release rejected. The database will not be updated and the package will " +#~ "apply." #~ msgstr "" -#~ "ActualizaciĆ³n menor rechazada. La base de datos no se actualizarĆ” y el " -#~ "paquete no se aplicarĆ”." +#~ "ActualizaciĆ³n menor rechazada. La base de datos no se actualizarĆ” y el paquete no " +#~ "se aplicarĆ”." #~ msgid "Database successfully updated" #~ msgstr "Base de datos actualizada correctamente" @@ -52270,18 +50846,18 @@ msgstr "GestiĆ³n del grupo de mĆ³dulos" #~ msgid "Database MR version is inconsistent, do you want to apply the package?" #~ msgstr "" -#~ "La actualizaciĆ³n menor de la base de datos es inconsistente, Āæquieres " -#~ "aplicar el paquete?" +#~ "La actualizaciĆ³n menor de la base de datos es inconsistente, Āæquieres aplicar el " +#~ "paquete?" #~ msgid "There are db changes" #~ msgstr "Hay cambios en la BD" #~ msgid "" -#~ "There are new database changes available to apply. Do you want to start the " -#~ "DB update process?" +#~ "There are new database changes available to apply. Do you want to start the DB " +#~ "update process?" #~ msgstr "" -#~ "Hay nuevos cambios disponibles para aplicar a la base de datos. ĀæQuieres " -#~ "comenzar el proceso de actualizaciĆ³n de la BD?" +#~ "Hay nuevos cambios disponibles para aplicar a la base de datos. ĀæQuieres comenzar " +#~ "el proceso de actualizaciĆ³n de la BD?" #~ msgid "We recommend launching " #~ msgstr "Se recomienda lanzar " @@ -52293,11 +50869,10 @@ msgstr "GestiĆ³n del grupo de mĆ³dulos" #~ msgstr "Hay una nueva actualizaciĆ³n disponible" #~ msgid "" -#~ "There is a new update available to apply. Do you want to start the update " -#~ "process?" +#~ "There is a new update available to apply. Do you want to start the update process?" #~ msgstr "" -#~ "Hay una nueva actualizaciĆ³n disponible para aplicar. ĀæQuieres comenzar el " -#~ "proceso de actualizaciĆ³n?" +#~ "Hay una nueva actualizaciĆ³n disponible para aplicar. ĀæQuieres comenzar el proceso " +#~ "de actualizaciĆ³n?" #~ msgid "Applying DB MR" #~ msgstr "Aplicando actualizaciĆ³n menor a la base de datos" @@ -52327,8 +50902,7 @@ msgstr "GestiĆ³n del grupo de mĆ³dulos" #~ msgstr "Algunos de los archivos antiguos no se han podido recuperar." #~ msgid "Some of your files might not be recovered." -#~ msgstr "" -#~ "Puede que algunos de los archivos no se hayan recuperado correctamente." +#~ msgstr "Puede que algunos de los archivos no se hayan recuperado correctamente." #, php-format #~ msgid "Line '%s' not copied to the progress file." @@ -52349,11 +50923,11 @@ msgstr "GestiĆ³n del grupo de mĆ³dulos" #, php-format #~ msgid "" -#~ "This policy exist in node %s with other name (%s). Change the name to '%s' " -#~ "to apply the policy." +#~ "This policy exist in node %s with other name (%s). Change the name to '%s' to " +#~ "apply the policy." #~ msgstr "" -#~ "Esta polĆ­tica existe en el nodo %s con otro nombre (%s). Cambie el nombre a " -#~ "'%s' para aplicar la polĆ­tica." +#~ "Esta polĆ­tica existe en el nodo %s con otro nombre (%s). Cambie el nombre a '%s' " +#~ "para aplicar la polĆ­tica." #~ msgid "Custom logo (header)" #~ msgstr "Logo personalizado (cabecera)" @@ -52383,15 +50957,12 @@ msgstr "GestiĆ³n del grupo de mĆ³dulos" #~ msgstr "Anterior" #~ msgid "" -#~ "Lapses of time in which the period is divided to make more precise " -#~ "calculations\n" -#~ msgstr "" -#~ "Tiempos en los que el perĆ­odo se divide para hacer cĆ”lculos mĆ”s precisos.\n" +#~ "Lapses of time in which the period is divided to make more precise calculations\n" +#~ msgstr "Tiempos en los que el perĆ­odo se divide para hacer cĆ”lculos mĆ”s precisos.\n" #~ msgid "Please save the SLA for start to add items in this list." #~ msgstr "" -#~ "Por favor, guarda primero el SLA antes de intentar aƱadir elementos al " -#~ "mismo." +#~ "Por favor, guarda primero el SLA antes de intentar aƱadir elementos al mismo." #~ msgid "Could not be created, it already exists" #~ msgstr "No se ha podido crear, ya existe" @@ -52472,20 +51043,19 @@ msgstr "GestiĆ³n del grupo de mĆ³dulos" #, php-format #~ msgid "" -#~ "There are groups that not exist in node. The followings elements groups/" -#~ "profiles/user profiles were created/updated sucessfully (%d/%d/%d)" +#~ "There are groups that not exist in node. The followings elements groups/profiles/" +#~ "user profiles were created/updated sucessfully (%d/%d/%d)" #~ msgstr "" -#~ "Hay grupos que no existen en el nodo. Los siguientes grupos de elementos/" -#~ "perfiles/perfiles de usuario se crearon/actualizaron correctamente (%d/%d/" -#~ "%d)." +#~ "Hay grupos que no existen en el nodo. Los siguientes grupos de elementos/perfiles/" +#~ "perfiles de usuario se crearon/actualizaron correctamente (%d/%d/%d)." #, php-format #~ msgid "" -#~ "Error creating/updating the followings elements groups/profiles/user " -#~ "profiles (%d/%d/%d)" +#~ "Error creating/updating the followings elements groups/profiles/user profiles (%d/" +#~ "%d/%d)" #~ msgstr "" -#~ "Error al crear/actualizar los siguientes elementos grupos/perfiles/usuarios " -#~ "(%d/%d/%d)" +#~ "Error al crear/actualizar los siguientes elementos grupos/perfiles/usuarios (%d/%d/" +#~ "%d)" #, php-format #~ msgid "" @@ -52507,21 +51077,18 @@ msgstr "GestiĆ³n del grupo de mĆ³dulos" #~ msgid "New profile" #~ msgstr "Nuevo perfil" -#~ msgid "" -#~ "The selected user profile will be added to the selected users into the " -#~ "target" +#~ msgid "The selected user profile will be added to the selected users into the target" #~ msgstr "" -#~ "El perfil de usuario seleccionado se aƱadirĆ” a los usuarios seleccionados " -#~ "en el objetivo" +#~ "El perfil de usuario seleccionado se aƱadirĆ” a los usuarios seleccionados en el " +#~ "objetivo" #~ msgid "Copy profile" #~ msgstr "Copiar perfil" -#~ msgid "" -#~ "The target user profiles will be replaced with the source user profiles" +#~ msgid "The target user profiles will be replaced with the source user profiles" #~ msgstr "" -#~ "Los perfiles de usuario de destino se reemplazarĆ”n con los perfiles de " -#~ "usuario de origen." +#~ "Los perfiles de usuario de destino se reemplazarĆ”n con los perfiles de usuario de " +#~ "origen." #~ msgid "Create groups if not exist" #~ msgstr "Crear grupos si no existen" @@ -52618,8 +51185,8 @@ msgstr "GestiĆ³n del grupo de mĆ³dulos" #~ msgstr "Sincronizando SO" #~ msgid "" -#~ "The previous configuration of collections has been imported from the nodes. " -#~ "Please check that the definitions are correct." +#~ "The previous configuration of collections has been imported from the nodes. Please " +#~ "check that the definitions are correct." #~ msgstr "" #~ "La configuraciĆ³n previa de las colecciones se ha importado desde los nodos. " #~ "Compruebe que las definiciones son correctas." @@ -52629,8 +51196,8 @@ msgstr "GestiĆ³n del grupo de mĆ³dulos" #~ msgid "" #~ "These definitions will not be operational until you manually \n" -#~ " copy the files from the nodes to the atachment/collection/ directory of " -#~ "the meta console." +#~ " copy the files from the nodes to the atachment/collection/ directory of the " +#~ "meta console." #~ msgstr "" #~ "Estas definiciones no estarĆ”n operativas hasta que \n" #~ " copie manualmente los archivos desde los nodos al directorio atachment/" @@ -52668,8 +51235,7 @@ msgstr "GestiĆ³n del grupo de mĆ³dulos" #~ msgid "" #~ "This console is not manager of this environment,\n" -#~ " please manage this feature from centralized manager console " -#~ "(Metaconsole)." +#~ " please manage this feature from centralized manager console (Metaconsole)." #~ msgstr "Esta consola no gestiona este entorno." #~ msgid "Successfully created inventory module in the node" @@ -52682,11 +51248,10 @@ msgstr "GestiĆ³n del grupo de mĆ³dulos" #~ msgstr "Desplegar a los nodos" #, php-format -#~ msgid "" -#~ "Exceeded max. number (%d) of agents added to policy concurrently (%d added)" +#~ msgid "Exceeded max. number (%d) of agents added to policy concurrently (%d added)" #~ msgstr "" -#~ "Ha superado el nĆŗmero mĆ”x. (%d) de agentes aƱadidos a una polĆ­tica " -#~ "simultĆ”neamente (%d aƱadidos)" +#~ "Ha superado el nĆŗmero mĆ”x. (%d) de agentes aƱadidos a una polĆ­tica simultĆ”neamente " +#~ "(%d aƱadidos)" #~ msgid "Successfully deleted from delete pending agents" #~ msgstr "Eliminado correctamente de los agentes pendientes de eliminaciĆ³n" @@ -52728,11 +51293,11 @@ msgstr "GestiĆ³n del grupo de mĆ³dulos" #~ msgstr "Por favor, lĆ©elo." #~ msgid "" -#~ "Since the alert can have multiple actions. You can edit them from the alert " -#~ "list of events." +#~ "Since the alert can have multiple actions. You can edit them from the alert list " +#~ "of events." #~ msgstr "" -#~ "Debido a que la alerta puede tener mĆŗltiples acciones, tienes que editarlas " -#~ "desde la lista de alertas de eventos." +#~ "Debido a que la alerta puede tener mĆŗltiples acciones, tienes que editarlas desde " +#~ "la lista de alertas de eventos." #~ msgid "Error processing action" #~ msgstr "Error al procesar la acciĆ³n" @@ -52750,11 +51315,11 @@ msgstr "GestiĆ³n del grupo de mĆ³dulos" #~ msgstr "Reglas de eventos" #~ msgid "" -#~ "This view will be removed in a future version. Please use \"Alert " -#~ "correlation\" instead." +#~ "This view will be removed in a future version. Please use \"Alert correlation\" " +#~ "instead." #~ msgstr "" -#~ "Esta vista se eliminarĆ” en una versiĆ³n futura. Use \"CorrelaciĆ³n de alertas" -#~ "\" en su lugar." +#~ "Esta vista se eliminarĆ” en una versiĆ³n futura. Use \"CorrelaciĆ³n de alertas\" en " +#~ "su lugar." #~ msgid "Error creating rule" #~ msgstr "Error al crear la regla" @@ -52820,20 +51385,19 @@ msgstr "GestiĆ³n del grupo de mĆ³dulos" #, php-format #~ msgid "" -#~ "There are groups that not exist in node. The followings elements groups/" -#~ "profiles/user profiles were created/updated sucessfully (%d/%d/%d) " +#~ "There are groups that not exist in node. The followings elements groups/profiles/" +#~ "user profiles were created/updated sucessfully (%d/%d/%d) " #~ msgstr "" -#~ "Hay grupos que no existen en el nodo. Los siguientes elementos grupos/" -#~ "perfiles/perfiles de usuario se han creado/actualizado correctamente (%d/%d/" -#~ "%d) " +#~ "Hay grupos que no existen en el nodo. Los siguientes elementos grupos/perfiles/" +#~ "perfiles de usuario se han creado/actualizado correctamente (%d/%d/%d) " #, php-format #~ msgid "" -#~ "Error creating/updating the followings elements groups/profiles/user " -#~ "profiles (%d/%d/%d) " +#~ "Error creating/updating the followings elements groups/profiles/user profiles (%d/" +#~ "%d/%d) " #~ msgstr "" -#~ "Error al crear/actualizar los siguientes elementos grupos/perfiles/perfiles " -#~ "de usuario (%d/%d/%d) " +#~ "Error al crear/actualizar los siguientes elementos grupos/perfiles/perfiles de " +#~ "usuario (%d/%d/%d) " #, php-format #~ msgid "" @@ -52887,65 +51451,63 @@ msgstr "GestiĆ³n del grupo de mĆ³dulos" #~ msgid "" #~ "This extension makes registering server plugins an easier task.\n" #~ "\t\t\t\t\t\tHere you can upload a server plugin in .pspz zipped format.\n" -#~ "\t\t\t\t\t\tPlease refer to the official documentation on how to obtain and " -#~ "use Server Plugins.\n" -#~ "\t\t\t\t\t\t

You can get more plugins in our Public Resource Library " +#~ "\t\t\t\t\t\tPlease refer to the official documentation on how to obtain and use " +#~ "Server Plugins.\n" +#~ "\t\t\t\t\t\t

You can get more plugins in our Public Resource Library " #~ msgstr "" #~ "Esta extensiĆ³n facilita registrar los plugins de servidor.\n" -#~ "\t\t\t\t\t\tAquĆ­ puede subir un plugin de servidor en formato .pspz " -#~ "comprimido.\n" -#~ "\t\t\t\t\t\tConsulte la documentaciĆ³n oficial para saber como obtener y " -#~ "utilizar los plugins de servidor.\n" -#~ "\t\t\t\t\t\t

Tiene mĆ”s plugins a su disposiciĆ³n en la Public Resource Library " +#~ "\t\t\t\t\t\tAquĆ­ puede subir un plugin de servidor en formato .pspz comprimido.\n" +#~ "\t\t\t\t\t\tConsulte la documentaciĆ³n oficial para saber como obtener y utilizar " +#~ "los plugins de servidor.\n" +#~ "\t\t\t\t\t\t

Tiene mĆ”s plugins a su disposiciĆ³n en la Public Resource Library " #~ msgid "" -#~ "This node is configured with centralized mode. This page is for read only. " -#~ "Go to metaconsole to manage the component groups." +#~ "This node is configured with centralized mode. This page is for read only. Go to " +#~ "metaconsole to manage the component groups." #~ msgstr "" -#~ "Este nodo se configura en modo centralizado. Esta pĆ”gina es solo de " -#~ "lectura. Vaya a la metaconsola para gestionar los grupos de componentes" +#~ "Este nodo se configura en modo centralizado. Esta pĆ”gina es solo de lectura. Vaya " +#~ "a la metaconsola para gestionar los grupos de componentes" #~ msgid "" -#~ "WARNING: You\\'re trying to create a group in a node member of a " -#~ "metaconsole.\\n\\nThis group and all of this contents will not be visible " -#~ "in the metaconsole.\\n\\nIf you want to create a visible group, you must do " -#~ "it from the metaconsole and propagate to the node. " +#~ "WARNING: You\\'re trying to create a group in a node member of a metaconsole.\\n" +#~ "\\nThis group and all of this contents will not be visible in the metaconsole.\\n" +#~ "\\nIf you want to create a visible group, you must do it from the metaconsole and " +#~ "propagate to the node. " #~ msgstr "" -#~ "ADVERTENCIA: estĆ”s intentando crear un grupo en un nodo que es " -#~ "perteneciente a una Metaconsola.\\n\\nEste grupo y todo su contenido no " -#~ "serĆ” visible en la Metaconsola.\\n\\nSi quieres crear un grupo visible, " -#~ "debes de realizarlo en la Metaconsola y propagarlo al nodo. " +#~ "ADVERTENCIA: estĆ”s intentando crear un grupo en un nodo que es perteneciente a una " +#~ "Metaconsola.\\n\\nEste grupo y todo su contenido no serĆ” visible en la Metaconsola." +#~ "\\n\\nSi quieres crear un grupo visible, debes de realizarlo en la Metaconsola y " +#~ "propagarlo al nodo. " #, php-format #~ msgid "" -#~ "Your PHP has set memory limit in %s. To use Update Manager Online, please " -#~ "set it to %s" +#~ "Your PHP has set memory limit in %s. To use Update Manager Online, please set it " +#~ "to %s" #~ msgstr "" -#~ "PHP ha fijado el lĆ­mite de memoria en %s. Para utilizar Update Manager " -#~ "Online, configĆŗrelo a %s." +#~ "PHP ha fijado el lĆ­mite de memoria en %s. Para utilizar Update Manager Online, " +#~ "configĆŗrelo a %s." #, php-format #~ msgid "" -#~ "Your PHP has post_max_size limited to %s. To use Update Manager Online, " -#~ "please set it to %s" +#~ "Your PHP has post_max_size limited to %s. To use Update Manager Online, please set " +#~ "it to %s" #~ msgstr "" #~ "PHP tiene post_max_size limitado a %s. Para usar Update Manager Online, " #~ "configĆŗrelo a %s." #, php-format #~ msgid "" -#~ "Your PHP has set maximum allowed size for uploaded files limit in %s. To " -#~ "use Update Manager Online, please set it to %s" +#~ "Your PHP has set maximum allowed size for uploaded files limit in %s. To use " +#~ "Update Manager Online, please set it to %s" #~ msgstr "" -#~ "PHP ha establecido un lĆ­mite de tamaƱo mĆ”ximo para los archivos subidos en " -#~ "%s. Para usar Update Manager Online, configĆŗrelo a %s." +#~ "PHP ha establecido un lĆ­mite de tamaƱo mĆ”ximo para los archivos subidos en %s. " +#~ "Para usar Update Manager Online, configĆŗrelo a %s." #~ msgid "The license has expired. Please contact Artica at info@artica.es" #~ msgstr "" -#~ "La licencia ha caducado. PĆ³ngase en contacto con Ɓrtica a travĆ©s de " -#~ "info@artica.es" +#~ "La licencia ha caducado. PĆ³ngase en contacto con Ɓrtica a travĆ©s de info@artica.es" #~ msgid "Checking for the newest package." #~ msgstr "Buscando el paquete mĆ”s reciente" @@ -52985,20 +51547,20 @@ msgstr "GestiĆ³n del grupo de mĆ³dulos" #~ msgstr "No hay ninguna parada planificada" #~ msgid "" -#~ "The previous configuration of plugins has been imported from the nodes. " -#~ "Please check that the definitions are correct." +#~ "The previous configuration of plugins has been imported from the nodes. Please " +#~ "check that the definitions are correct." #~ msgstr "" -#~ "Se ha importado la configuraciĆ³n previa de los plugins de los nodos. " -#~ "Compruebe que las definiciones son correctas." +#~ "Se ha importado la configuraciĆ³n previa de los plugins de los nodos. Compruebe que " +#~ "las definiciones son correctas." #~ msgid "" #~ "These definitions will not be operational until you manually \n" -#~ " \t\t\tcopy the files from the nodes to the atachment/plugin/ directory " -#~ "of the meta console." +#~ " \t\t\tcopy the files from the nodes to the atachment/plugin/ directory of the " +#~ "meta console." #~ msgstr "" #~ "Estas definiciones no estarĆ”n operativas hasta que \n" -#~ " \t\t\tcopie los archivos de los nodos al directorio atachment/plugin/ " -#~ "de la Metaconsola manualmente." +#~ " \t\t\tcopie los archivos de los nodos al directorio atachment/plugin/ de la " +#~ "Metaconsola manualmente." #~ msgid "Problem deploying plugin" #~ msgstr "Problema de despliegue de plugins" @@ -53052,8 +51614,7 @@ msgstr "GestiĆ³n del grupo de mĆ³dulos" #~ msgid "The sql file contains a dangerous query" #~ msgstr "El archivo SQL contiene una consulta peligrosa." -#~ msgid "" -#~ "An error occurred while updating the database schema to the minor release " +#~ msgid "An error occurred while updating the database schema to the minor release " #~ msgstr "" #~ "OcurriĆ³ un error menor al actualizar el esquema de la base de datos a la " #~ "actualizaciĆ³n menor " @@ -53063,8 +51624,7 @@ msgstr "GestiĆ³n del grupo de mĆ³dulos" #~ msgid " should have read permissions in order to update the database schema" #~ msgstr "" -#~ " deberĆ­a tener permisos de lectura para actualizar el esquema de la base de " -#~ "datos" +#~ " deberĆ­a tener permisos de lectura para actualizar el esquema de la base de datos" #~ msgid "Fail the group synchronizing" #~ msgstr "Error al sincronizar los grupos" @@ -53118,24 +51678,22 @@ msgstr "GestiĆ³n del grupo de mĆ³dulos" #, php-format #~ msgid "" -#~ "By subscribing to the newsletter, you accept that your email will be " -#~ "transferred to a database owned by %s. These data will be used only to " -#~ "provide you with information about %s and will not be given to third " -#~ "parties. You can unsubscribe from this database at any time from the " -#~ "newsletter subscription options." +#~ "By subscribing to the newsletter, you accept that your email will be transferred " +#~ "to a database owned by %s. These data will be used only to provide you with " +#~ "information about %s and will not be given to third parties. You can unsubscribe " +#~ "from this database at any time from the newsletter subscription options." #~ msgstr "" -#~ "Al suscribirse a la newsletter, acepta que su correo electrĆ³nico pase a " -#~ "formar parte de una base de datos propiedad de %s. Estos datos se usarĆ”n " -#~ "exclusivamente para proporcionarle informaciĆ³n sobre %s y no se compartirĆ”n " -#~ "con terceros. Puede anular la suscripciĆ³n en cualquier momento desde las " -#~ "opciones de suscripciĆ³n de la newsletter." +#~ "Al suscribirse a la newsletter, acepta que su correo electrĆ³nico pase a formar " +#~ "parte de una base de datos propiedad de %s. Estos datos se usarĆ”n exclusivamente " +#~ "para proporcionarle informaciĆ³n sobre %s y no se compartirĆ”n con terceros. Puede " +#~ "anular la suscripciĆ³n en cualquier momento desde las opciones de suscripciĆ³n de la " +#~ "newsletter." #~ msgid "Are you sure you don't want to subscribe?" #~ msgstr "ĀæEstĆ” seguro de que desea anular la suscripciĆ³n?" #~ msgid "You will miss all news about amazing features and fixes!" -#~ msgstr "" -#~ "Ā”Se perderĆ” todas las novedades sobre increĆ­bles actualizaciones y parches!" +#~ msgstr "Ā”Se perderĆ” todas las novedades sobre increĆ­bles actualizaciones y parches!" #~ msgid "You must specify an email" #~ msgstr "Debe aƱadir una cuenta de correo electrĆ³nico" @@ -53389,9 +51947,6 @@ msgstr "GestiĆ³n del grupo de mĆ³dulos" #~ msgid "Not closed" #~ msgstr "No cerrado" -#~ msgid "Search string" -#~ msgstr "Cadena de bĆŗsqueda" - #~ msgid "Workunits" #~ msgstr "Horas de trabajo" @@ -53471,12 +52026,12 @@ msgstr "GestiĆ³n del grupo de mĆ³dulos" #~ msgstr "No hay filtros SNMP" #~ msgid "" -#~ "In case you fill any Field 1, Field 2 or Field 3 above, those will replace " -#~ "the corresponding fields of this associated \"Default action\"." +#~ "In case you fill any Field 1, Field 2 or Field 3 above, those will replace the " +#~ "corresponding fields of this associated \"Default action\"." #~ msgstr "" -#~ "En caso de que rellene alguno de los campos Field1,Field2 o Field3 de " -#~ "arriba, esos valores reemplazarĆ”n a los campos con el mismo nombre " -#~ "asociados a las Acciones aplicadas a la plantilla." +#~ "En caso de que rellene alguno de los campos Field1,Field2 o Field3 de arriba, esos " +#~ "valores reemplazarĆ”n a los campos con el mismo nombre asociados a las Acciones " +#~ "aplicadas a la plantilla." #~ msgid "Query SQL" #~ msgstr "Consulta SQL" @@ -53605,11 +52160,10 @@ msgstr "GestiĆ³n del grupo de mĆ³dulos" #~ msgstr "Obtener datos de un agente" #~ msgid "" -#~ "Please be patient. This operation can take a long time depending on the " -#~ "amount of modules." +#~ "Please be patient. This operation can take a long time depending on the amount of " +#~ "modules." #~ msgstr "" -#~ "Por favor sea paciente, esta operaciĆ³n puede tardar varios minutos (5-10 " -#~ "minutos)" +#~ "Por favor sea paciente, esta operaciĆ³n puede tardar varios minutos (5-10 minutos)" #~ msgid "Deleting records for all agents" #~ msgstr "Borrando registros para el mĆ³dulo" @@ -53628,8 +52182,7 @@ msgstr "GestiĆ³n del grupo de mĆ³dulos" #~ msgid "Click here to get the data from the agent specified in the select box" #~ msgstr "" -#~ "Pulse aquĆ­ para obtener los datos del agente especificado en la caja de " -#~ "selecciĆ³n" +#~ "Pulse aquĆ­ para obtener los datos del agente especificado en la caja de selecciĆ³n" #, php-format #~ msgid "Information on agent %s in the database" @@ -53780,18 +52333,17 @@ msgstr "GestiĆ³n del grupo de mĆ³dulos" #~ msgstr "Actualizar capa" #~ msgid "" -#~ "This extension can run as PHP script in a shell for extract more " -#~ "information, but it must be run as root or across sudo. For example: " -#~ "sudo php /var/www/pandora_console/extensions/system_info.php -d -s -c" +#~ "This extension can run as PHP script in a shell for extract more information, but " +#~ "it must be run as root or across sudo. For example: sudo php /var/www/" +#~ "pandora_console/extensions/system_info.php -d -s -c" #~ msgstr "" -#~ "Esta extensiĆ³n puede funcionar como un script PHP in una shell para extraer " -#~ "mĆ”s informaciĆ³n, pero debe ser lanzado como root o a travĆ©s de sudo. Por " -#~ "ejemplo: sudo php /var/www/pandora_console/extensions/system_info.php -d " -#~ "-s -c" +#~ "Esta extensiĆ³n puede funcionar como un script PHP in una shell para extraer mĆ”s " +#~ "informaciĆ³n, pero debe ser lanzado como root o a travĆ©s de sudo. Por ejemplo: " +#~ "sudo php /var/www/pandora_console/extensions/system_info.php -d -s -c" #~ msgid "" -#~ "This tool is used just to view your Pandora FMS system logfiles directly " -#~ "from console" +#~ "This tool is used just to view your Pandora FMS system logfiles directly from " +#~ "console" #~ msgstr "" #~ "Esta herramienta se utiliza para ver los logfiles de sistema de Pandora FMS " #~ "directamente desde la consola" @@ -53810,17 +52362,16 @@ msgstr "GestiĆ³n del grupo de mĆ³dulos" #, php-format #~ msgid "" -#~ "This extension makes registration of server plugins more easy. Here you can " -#~ "upload a server plugin in Pandora FMS 3.x zipped format (.pspz). Please " -#~ "refer to documentation on how to obtain and use Pandora FMS Server Plugins." -#~ "

You can get more plugins in our Public Resource " -#~ "Library" +#~ "This extension makes registration of server plugins more easy. Here you can upload " +#~ "a server plugin in Pandora FMS 3.x zipped format (.pspz). Please refer to " +#~ "documentation on how to obtain and use Pandora FMS Server Plugins.

You can " +#~ "get more plugins in our Public Resource Library" #~ msgstr "" -#~ "Esta extensiĆ³n hace el registro de los plugins del servidor mĆ”s fĆ”cil. " -#~ "Puedes descargar aqui un plugin del servidor en el formato zipp (.pspz) de " -#~ "Pandora FMS version 3x. Por favor, consulta la documentaciĆ³n acerca de como " -#~ "obtener y utilizar los plugins de servidor de Pandora FMS.

Puedes " -#~ "obtener mĆ”s plugins en nuestroPublic Resource Library" +#~ "Esta extensiĆ³n hace el registro de los plugins del servidor mĆ”s fĆ”cil. Puedes " +#~ "descargar aqui un plugin del servidor en el formato zipp (.pspz) de Pandora FMS " +#~ "version 3x. Por favor, consulta la documentaciĆ³n acerca de como obtener y utilizar " +#~ "los plugins de servidor de Pandora FMS.

Puedes obtener mĆ”s plugins en " +#~ "nuestroPublic Resource Library" #~ msgid "Traceroute to " #~ msgstr "Trazando ruta a " @@ -53910,8 +52461,7 @@ msgstr "GestiĆ³n del grupo de mĆ³dulos" #~ msgstr "Necesita especificar un usuario y una direcciĆ³n del host" #~ msgid "Error in creation network module. Agent name doesn't exists." -#~ msgstr "" -#~ "Error en la creaciĆ³n del mĆ³dulo de red. El nombre del agente no existe" +#~ msgstr "Error en la creaciĆ³n del mĆ³dulo de red. El nombre del agente no existe" #~ msgid "Error updating plugin module. Id_module doesn't exists." #~ msgstr "Error al actualizar el mĆ³dulo plugin.Id_module no existe" @@ -53932,56 +52482,53 @@ msgstr "GestiĆ³n del grupo de mĆ³dulos" #~ msgstr "Error al actualizar el mĆ³dulo SNMP. Id_module no existe." #~ msgid "Error updating SNMP module. Id_module exists in the new agent." -#~ msgstr "" -#~ "Error al actualizar el mĆ³dulo SNMP. Id_module existe en el nuevo agente" +#~ msgstr "Error al actualizar el mĆ³dulo SNMP. Id_module existe en el nuevo agente" #~ msgid "" -#~ "Error in creation SNMP module. snmp3_priv_method doesn't exists. Set it to " -#~ "'AES' or 'DES'. " +#~ "Error in creation SNMP module. snmp3_priv_method doesn't exists. Set it to 'AES' " +#~ "or 'DES'. " #~ msgstr "" -#~ "Error al crear mĆ³dulo SNMP. El mĆ©todo snmp3_priv_method no existe. Cambie a " -#~ "'AES' o 'DES'. " +#~ "Error al crear mĆ³dulo SNMP. El mĆ©todo snmp3_priv_method no existe. Cambie a 'AES' " +#~ "o 'DES'. " #~ msgid "" -#~ "Error in creation SNMP module. snmp3_auth_method doesn't exists. Set it to " -#~ "'MD5' or 'SHA'. " +#~ "Error in creation SNMP module. snmp3_auth_method doesn't exists. Set it to 'MD5' " +#~ "or 'SHA'. " #~ msgstr "" -#~ "Error al crear mĆ³dulo SNMP. snmp3_auth_method no existe. Cambie a 'MD5' o " -#~ "'SHA'. " +#~ "Error al crear mĆ³dulo SNMP. snmp3_auth_method no existe. Cambie a 'MD5' o 'SHA'. " #~ msgid "" #~ "Error in creation SNMP module. snmp3_sec_level doesn't exists. Set it to " #~ "'authNoPriv' or 'authPriv' or 'noAuthNoPriv'. " #~ msgstr "" -#~ "Error al crear mĆ³dulo SNMP. snmp3_sec_level no existe. Cambie a " -#~ "'authNoPriv' o 'authPriv' o 'noAuthNoPriv'. " +#~ "Error al crear mĆ³dulo SNMP. snmp3_sec_level no existe. Cambie a 'authNoPriv' o " +#~ "'authPriv' o 'noAuthNoPriv'. " #~ msgid "" #~ "Error creating SNMP component. snmp3_sec_level doesn't exists. Set it to " #~ "'authNoPriv' or 'authPriv' or 'noAuthNoPriv'. " #~ msgstr "" -#~ "Error creando componente SNMP. snmp3_sec_level no existe. Cambie a " -#~ "'authNoPriv' o 'authPriv' o 'noAuthNoPriv'. " +#~ "Error creando componente SNMP. snmp3_sec_level no existe. Cambie a 'authNoPriv' o " +#~ "'authPriv' o 'noAuthNoPriv'. " #~ msgid "" -#~ "Error creating SNMP component. snmp3_auth_method doesn't exists. Set it to " -#~ "'MD5' or 'SHA'. " +#~ "Error creating SNMP component. snmp3_auth_method doesn't exists. Set it to 'MD5' " +#~ "or 'SHA'. " #~ msgstr "" -#~ "Error creando componente SNMP. snmp3_auth_method no existe. Cambie a 'MD5' " -#~ "o 'SHA'. " +#~ "Error creando componente SNMP. snmp3_auth_method no existe. Cambie a 'MD5' o " +#~ "'SHA'. " #~ msgid "" -#~ "Error creating SNMP component. snmp3_priv_method doesn't exists. Set it to " -#~ "'AES' or 'DES'. " +#~ "Error creating SNMP component. snmp3_priv_method doesn't exists. Set it to 'AES' " +#~ "or 'DES'. " #~ msgstr "" -#~ "Error creando componente SNMP. snmp3_priv_method no existe. Cambie a 'AES' " -#~ "o 'DES'. " +#~ "Error creando componente SNMP. snmp3_priv_method no existe. Cambie a 'AES' o " +#~ "'DES'. " -#~ msgid "" -#~ "Error getting module value from all agents. Module name doesn't exists." +#~ msgid "Error getting module value from all agents. Module name doesn't exists." #~ msgstr "" -#~ "Error obteniendo valor del mĆ³dulo para todos los agentes. El nombre del " -#~ "mĆ³dulo no existe." +#~ "Error obteniendo valor del mĆ³dulo para todos los agentes. El nombre del mĆ³dulo no " +#~ "existe." #~ msgid "Error updating alert template. Id_template doesn't exists." #~ msgstr "Error actualizando plantilla de alerta. Id_template no existe." @@ -53993,11 +52540,9 @@ msgstr "GestiĆ³n del grupo de mĆ³dulos" #~ msgstr "Error creando mĆ³dulo desde componente de red. El agente no existe." #~ msgid "" -#~ "Error creating module from network component. Network component doesn't " -#~ "exists." +#~ "Error creating module from network component. Network component doesn't exists." #~ msgstr "" -#~ "Error creando mĆ³dulo desde componente de red. El componente de red no " -#~ "existe." +#~ "Error creando mĆ³dulo desde componente de red. El componente de red no existe." #~ msgid "Error assigning module to template. Id_module doesn't exists." #~ msgstr "Error asignando mĆ³dulo a plantilla. Id_module no existe." @@ -54012,22 +52557,20 @@ msgstr "GestiĆ³n del grupo de mĆ³dulos" #~ msgstr "Error aƱadiendo agente a la polĆ­tica. Id_agente no existe." #~ msgid "Error updating data module in policy. Module doesn't exists." -#~ msgstr "" -#~ "Error actualizando mĆ³dulo de datos en la polĆ­tica. El mĆ³dulo no existe." +#~ msgstr "Error actualizando mĆ³dulo de datos en la polĆ­tica. El mĆ³dulo no existe." #~ msgid "Error updating network module in policy. Module doesn't exists." #~ msgstr "Error actualizando mĆ³dulo de red en la polĆ­tica. El mĆ³dulo no existe." #~ msgid "Error updating plugin module in policy. Module doesn't exists." -#~ msgstr "" -#~ "Error actualizando mĆ³dulo de plugin en la polĆ­tica. El mĆ³dulo no existe." +#~ msgstr "Error actualizando mĆ³dulo de plugin en la polĆ­tica. El mĆ³dulo no existe." #~ msgid "" -#~ "Error updating SNMP module. snmp3_priv_method doesn't exists. Set it to " -#~ "'AES' or 'DES'. " +#~ "Error updating SNMP module. snmp3_priv_method doesn't exists. Set it to 'AES' or " +#~ "'DES'. " #~ msgstr "" -#~ "Error actualizando mĆ³dulo SNMP. snmp3_priv_method no existe. Cambie a 'AES' " -#~ "o 'DES'. " +#~ "Error actualizando mĆ³dulo SNMP. snmp3_priv_method no existe. Cambie a 'AES' o " +#~ "'DES'. " #~ msgid "Error updating SNMP module in policy. Module doesn't exists." #~ msgstr "Error actualizando mĆ³dulo SNMP de la polĆ­tica. El mĆ³dulo no existe." @@ -54036,18 +52579,18 @@ msgstr "GestiĆ³n del grupo de mĆ³dulos" #~ msgstr "Error creando grupo. Id_parent_group no existe." #~ msgid "" -#~ "Error updating SNMP module. snmp3_auth_method doesn't exists. Set it to " -#~ "'MD5' or 'SHA'. " +#~ "Error updating SNMP module. snmp3_auth_method doesn't exists. Set it to 'MD5' or " +#~ "'SHA'. " #~ msgstr "" -#~ "Error actualizando mĆ³dulo SNMP. snmp3_auth_method no existe. Cambie a 'MD5' " -#~ "o 'SHA'. " +#~ "Error actualizando mĆ³dulo SNMP. snmp3_auth_method no existe. Cambie a 'MD5' o " +#~ "'SHA'. " #~ msgid "" -#~ "Error updating SNMP module. snmp3_sec_level doesn't exists. Set it to " -#~ "'authNoPriv' or 'authPriv' or 'noAuthNoPriv'. " +#~ "Error updating SNMP module. snmp3_sec_level doesn't exists. Set it to 'authNoPriv' " +#~ "or 'authPriv' or 'noAuthNoPriv'. " #~ msgstr "" -#~ "Error actualizando mĆ³dulo SNMP. snmp3_sec_level no existe. Cambie a " -#~ "'authNoPriv' o 'authPriv' o 'noAuthNoPriv'. " +#~ "Error actualizando mĆ³dulo SNMP. snmp3_sec_level no existe. Cambie a 'authNoPriv' o " +#~ "'authPriv' o 'noAuthNoPriv'. " #~ msgid "Error updating user. Id_user doesn't exists." #~ msgstr "Error actualizando ususario. Id_user no existe." @@ -54127,11 +52670,10 @@ msgstr "GestiĆ³n del grupo de mĆ³dulos" #~ msgstr "Plugins registrados en Pandora FMS" #~ msgid "" -#~ "Maximum number of parent hosts that will be created if parent detection is " -#~ "enabled." +#~ "Maximum number of parent hosts that will be created if parent detection is enabled." #~ msgstr "" -#~ "MĆ”ximo nĆŗmero de agentes padre que se podrĆ”n crear (si la activaciĆ³n del " -#~ "padre estĆ” activada)" +#~ "MĆ”ximo nĆŗmero de agentes padre que se podrĆ”n crear (si la activaciĆ³n del padre " +#~ "estĆ” activada)" #~ msgid "Kilobytes" #~ msgstr "Kilobytes" @@ -54218,11 +52760,11 @@ msgstr "GestiĆ³n del grupo de mĆ³dulos" #~ msgstr "Cron" #~ msgid "" -#~ "If cron is set the module interval is ignored and the module runs on the " -#~ "specified date and time" +#~ "If cron is set the module interval is ignored and the module runs on the specified " +#~ "date and time" #~ msgstr "" -#~ "Si el cron estĆ” instalado el intervalo del mĆ³dulo es ignorado y el mĆ³dulo " -#~ "corre con la fecha indicada" +#~ "Si el cron estĆ” instalado el intervalo del mĆ³dulo es ignorado y el mĆ³dulo corre " +#~ "con la fecha indicada" #~ msgid "Activate this to prevent the relation from being updated or deleted" #~ msgstr "Activar esta opciĆ³n para evitar que sea actualizado o borrado" @@ -54289,8 +52831,8 @@ msgstr "GestiĆ³n del grupo de mĆ³dulos" #~ msgid "Specifies the time interval in seconds to rotate netflow data files." #~ msgstr "" -#~ "Especifica el intervalo de tiempo en segundos para rotar los archivos de " -#~ "datos de Netflow" +#~ "Especifica el intervalo de tiempo en segundos para rotar los archivos de datos de " +#~ "Netflow" #~ msgid "Data will be compacted in intervals of the specified length." #~ msgstr "Los datos se compactarĆ”n en intervalos de la longitud especificada." @@ -54300,20 +52842,18 @@ msgstr "GestiĆ³n del grupo de mĆ³dulos" #~ msgstr "La Ćŗltima versiĆ³n de paquete instalado es: %d" #~ msgid "" -#~ "Update Manager sends anonymous information about Pandora FMS usage (number " -#~ "of agents and modules running). To disable it, remove remote server address " -#~ "from Update Manager plugin setup." +#~ "Update Manager sends anonymous information about Pandora FMS usage (number of " +#~ "agents and modules running). To disable it, remove remote server address from " +#~ "Update Manager plugin setup." #~ msgstr "" -#~ "Update Manager envĆ­a informaciĆ³n anĆ³nima sobre el uso de Pandora FMS " -#~ "(nĆŗmero de agentes y mĆ³dulos que se estĆ”n ejecutando). Para desactivar esta " -#~ "opciĆ³n, elimine la direcciĆ³n del servidor remoto del setup del plugin del " -#~ "Update Manager." +#~ "Update Manager envĆ­a informaciĆ³n anĆ³nima sobre el uso de Pandora FMS (nĆŗmero de " +#~ "agentes y mĆ³dulos que se estĆ”n ejecutando). Para desactivar esta opciĆ³n, elimine " +#~ "la direcciĆ³n del servidor remoto del setup del plugin del Update Manager." -#~ msgid "" -#~ "If there are any database change, it will be applied on the next login." +#~ msgid "If there are any database change, it will be applied on the next login." #~ msgstr "" -#~ "Si hubiera algĆŗn cambio en la base de datos, serĆ” aplicado en prĆ³ximo login " -#~ "del usuario" +#~ "Si hubiera algĆŗn cambio en la base de datos, serĆ” aplicado en prĆ³ximo login del " +#~ "usuario" #~ msgid "Successfully deleted export target" #~ msgstr "Servidor de exportaciĆ³n borrado correctamente" @@ -54322,15 +52862,15 @@ msgstr "GestiĆ³n del grupo de mĆ³dulos" #~ msgstr "Error al crear servicio" #~ msgid "" -#~ "In manual mode you should set the weights manually. In auto mode the " -#~ "weights have default values.\n" -#~ "\t\tIn simple mode only the elements configured as \"critical element\" are " -#~ "used to calculate the service status." +#~ "In manual mode you should set the weights manually. In auto mode the weights have " +#~ "default values.\n" +#~ "\t\tIn simple mode only the elements configured as \"critical element\" are used " +#~ "to calculate the service status." #~ msgstr "" -#~ "En modo manual, se deben establecer los pesos de forma manual. En modo " -#~ "automĆ”tico, los pesos tienen un valor por defecto.\n" -#~ "En modo simple, sĆ³lo se utilizarĆ”n los elementos configurados como " -#~ "'elementos crĆ­ticos' para calcular el estado del servicio." +#~ "En modo manual, se deben establecer los pesos de forma manual. En modo automĆ”tico, " +#~ "los pesos tienen un valor por defecto.\n" +#~ "En modo simple, sĆ³lo se utilizarĆ”n los elementos configurados como 'elementos " +#~ "crĆ­ticos' para calcular el estado del servicio." #~ msgid "Warning Service alert" #~ msgstr "Alerta de advertencia del servicio" @@ -54373,8 +52913,7 @@ msgstr "GestiĆ³n del grupo de mĆ³dulos" #~ msgstr "Actualizar todo" #~ msgid "Delete remote conf agent files in Pandora" -#~ msgstr "" -#~ "Eliminar los archivos de configuraciĆ³n remota de agentes en Pandora FMS" +#~ msgstr "Eliminar los archivos de configuraciĆ³n remota de agentes en Pandora FMS" #~ msgid "HTTP auth (pass)" #~ msgstr "HTTP aut. (contraseƱa)" @@ -54435,11 +52974,11 @@ msgstr "GestiĆ³n del grupo de mĆ³dulos" #~ msgstr "Establece la duraciĆ³n mĆ”xima de los datos de registro en dĆ­as" #~ msgid "" -#~ "The inventory modules included in the changes blacklist will not generate " -#~ "events when change." +#~ "The inventory modules included in the changes blacklist will not generate events " +#~ "when change." #~ msgstr "" -#~ "Los mĆ³dulos de inventario incluidos en la lista negra de cambios no " -#~ "generarĆ”n eventos cuando cambien." +#~ "Los mĆ³dulos de inventario incluidos en la lista negra de cambios no generarĆ”n " +#~ "eventos cuando cambien." #~ msgid "Remote Babel Enterprise" #~ msgstr "Babel Enterprise remoto" @@ -54553,8 +53092,7 @@ msgstr "GestiĆ³n del grupo de mĆ³dulos" #~ msgstr "RĆ©plica del dashboard" #~ msgid "Not copyed. Error copying data. You must select a dashboard" -#~ msgstr "" -#~ "No se ha copiado. Error al copiar datos. Debe seleccionar un dashboard" +#~ msgstr "No se ha copiado. Error al copiar datos. Debe seleccionar un dashboard" #~ msgid "Not copyed. Error copying data" #~ msgstr "No se ha copiado. Error al copiar datos." @@ -54637,11 +53175,9 @@ msgstr "GestiĆ³n del grupo de mĆ³dulos" #~ msgid "Check this to copy user original profiles" #~ msgstr "Comprobar esto para copiar los perfiles originales de los usuarios" -#~ msgid "" -#~ "Complete path to Pandora console without last \"/\" character. Example " +#~ msgid "Complete path to Pandora console without last \"/\" character. Example " #~ msgstr "" -#~ "Completar ruta a la consola de Pandora FMS sin el Ćŗltimo \"/\" carĆ”cter. " -#~ "Ejemplo " +#~ "Completar ruta a la consola de Pandora FMS sin el Ćŗltimo \"/\" carĆ”cter. Ejemplo " #~ msgid "Please search for anything text." #~ msgstr "Por favor haga una bĆŗsqueda de cualquier cadena de texto" @@ -54669,11 +53205,10 @@ msgstr "GestiĆ³n del grupo de mĆ³dulos" #~ msgstr "Agente desactivado en la BD de origen" #~ msgid "" -#~ "Not set metaconsole IP in the \"IP list with API access\" guess Pandora " -#~ "Console." +#~ "Not set metaconsole IP in the \"IP list with API access\" guess Pandora Console." #~ msgstr "" -#~ "Si no establece la IP de la metaconsola en \"Lista de IP's con acceso a la " -#~ "API\", no se podrĆ” conectar" +#~ "Si no establece la IP de la metaconsola en \"Lista de IP's con acceso a la API\", " +#~ "no se podrĆ” conectar" #~ msgid "Successfully moved" #~ msgstr "Movido satisfactoriamente" @@ -54682,14 +53217,13 @@ msgstr "GestiĆ³n del grupo de mĆ³dulos" #~ msgstr "No se puede mover" #~ msgid "" -#~ "Destination group is the same than in the original server, if there is not " -#~ "any group with that name, will be created if check box is selected. " -#~ "Destination group filter is just used to check agents in that group" +#~ "Destination group is the same than in the original server, if there is not any " +#~ "group with that name, will be created if check box is selected. Destination group " +#~ "filter is just used to check agents in that group" #~ msgstr "" -#~ "El grupo de destino es el mismo que en el servidor original. Si no hay otro " -#~ "grupo con el mismo nombre, serĆ” creado si la casilla estĆ” seleccionada. El " -#~ "grupo de destino del filtro es utilizado para comprobrar los agentes de ese " -#~ "grupo." +#~ "El grupo de destino es el mismo que en el servidor original. Si no hay otro grupo " +#~ "con el mismo nombre, serĆ” creado si la casilla estĆ” seleccionada. El grupo de " +#~ "destino del filtro es utilizado para comprobrar los agentes de ese grupo." #~ msgid "Based on name" #~ msgstr "Basado en el nombre" @@ -54698,12 +53232,12 @@ msgstr "GestiĆ³n del grupo de mĆ³dulos" #~ "In order to have the best user experience with Pandora FMS, we strongly " #~ "recommend to use" #~ msgstr "" -#~ "Para conseguir la mejor experiencia de usuario con Pandora FMS, le " -#~ "recomendamos encarecidamente
usar" +#~ "Para conseguir la mejor experiencia de usuario con Pandora FMS, le recomendamos " +#~ "encarecidamente
usar" #~ msgid "" -#~ "Mozilla Firefox or " -#~ "Google Chrome browsers." +#~ "Mozilla Firefox or Google Chrome browsers." #~ msgstr "" #~ "Mozilla Firefox o Google Chrome browsers." @@ -54890,8 +53424,7 @@ msgstr "GestiĆ³n del grupo de mĆ³dulos" #~ msgstr "Error al conectar con el host especificado" #~ msgid "Connected to the host, but cannot found the specified database" -#~ msgstr "" -#~ "Conectado al host, pero no se puede encontrar la base de datos especificada" +#~ msgstr "Conectado al host, pero no se puede encontrar la base de datos especificada" #~ msgid "Module store SLA service does not exist." #~ msgstr "El mĆ³dulo que almacena el servicio SLA no existe" @@ -54943,12 +53476,12 @@ msgstr "GestiĆ³n del grupo de mĆ³dulos" #~ "Pandora FMS frontend is built on advanced, modern technologies and does not " #~ "support old browsers." #~ msgstr "" -#~ "El interfaz Pandora FMS se basa en tecnologĆ­as avanzadas y modernas, y no " -#~ "soporta los navegadores antiguos." +#~ "El interfaz Pandora FMS se basa en tecnologĆ­as avanzadas y modernas, y no soporta " +#~ "los navegadores antiguos." #~ msgid "" -#~ "It is highly recommended that you choose and install a modern browser. It " -#~ "is free of charge and only takes a couple of minutes." +#~ "It is highly recommended that you choose and install a modern browser. It is free " +#~ "of charge and only takes a couple of minutes." #~ msgstr "" #~ "Le recomendamos que elija e instale un navegador moderno. SĆ³lo tardarĆ” unos " #~ "minutos." @@ -54957,14 +53490,13 @@ msgstr "GestiĆ³n del grupo de mĆ³dulos" #~ msgstr "ĀæPor quĆ© le recomendamos que actualice su navegador?" #~ msgid "" -#~ "New browsers usually come with support for new technologies, increasing web " -#~ "page speed, better privacy settings and so on. They also resolve security " -#~ "and functional issues." +#~ "New browsers usually come with support for new technologies, increasing web page " +#~ "speed, better privacy settings and so on. They also resolve security and " +#~ "functional issues." #~ msgstr "" -#~ "Los nuevos navegadores normalmente vienen con soporte para nuevas " -#~ "tecnologĆ­as, aumentando la velocidad de las pĆ”ginas web, mejores " -#~ "herramientas de privacidad, etc. TambiĆ©n resuelven temas de seguridad y " -#~ "funcionalidad." +#~ "Los nuevos navegadores normalmente vienen con soporte para nuevas tecnologĆ­as, " +#~ "aumentando la velocidad de las pĆ”ginas web, mejores herramientas de privacidad, " +#~ "etc. TambiĆ©n resuelven temas de seguridad y funcionalidad." #~ msgid "Continue despite this warning" #~ msgstr "ContinĆŗe a pesar de esta advertencia" @@ -54997,11 +53529,10 @@ msgstr "GestiĆ³n del grupo de mĆ³dulos" #~ msgstr "Bytes por segundo" #~ msgid "" -#~ "Agent statuses are re-calculated by the server, they are not shown in real " -#~ "time." +#~ "Agent statuses are re-calculated by the server, they are not shown in real time." #~ msgstr "" -#~ "Los estados de los agentes se calculan por el servidor, no se muestran en " -#~ "tiempo real." +#~ "Los estados de los agentes se calculan por el servidor, no se muestran en tiempo " +#~ "real." #~ msgid "one combined graph" #~ msgstr "grĆ”fica combinada" @@ -55049,8 +53580,7 @@ msgstr "GestiĆ³n del grupo de mĆ³dulos" #~ msgstr "Barra de acceso directo" #~ msgid "" -#~ "This will activate a shortcut bar with alerts, events, messages... " -#~ "information" +#~ "This will activate a shortcut bar with alerts, events, messages... information" #~ msgstr "" #~ "Esto activarĆ” una barra de acceso directo con alertas, eventos, mensaje..." #~ "informaciĆ³n" @@ -55068,11 +53598,11 @@ msgstr "GestiĆ³n del grupo de mĆ³dulos" #~ msgstr "Borrar archivo" #~ msgid "" -#~ "There was a problem updating the incident, please check if any field was " -#~ "modified and the values are correct." +#~ "There was a problem updating the incident, please check if any field was modified " +#~ "and the values are correct." #~ msgstr "" -#~ "OcurriĆ³ un problema al actualizar el incidente. Compruebe si alguno de los " -#~ "campos fue modificado y si los valores son correctos." +#~ "OcurriĆ³ un problema al actualizar el incidente. Compruebe si alguno de los campos " +#~ "fue modificado y si los valores son correctos." #~ msgid "There was a problem creating incident" #~ msgstr "OcurriĆ³ un problema al crear el incidente" @@ -55099,8 +53629,7 @@ msgstr "GestiĆ³n del grupo de mĆ³dulos" #~ msgstr "OcurriĆ³ un problema al aƱadir la unidad de trabajo." #~ msgid "" -#~ "There is a error in the message from your Integria or there is not " -#~ "connection." +#~ "There is a error in the message from your Integria or there is not connection." #~ msgstr "Existe un error en el mensaje desde su Integria o no hay conexiĆ³n" #~ msgid "Opened tickets" @@ -55144,8 +53673,7 @@ msgstr "GestiĆ³n del grupo de mĆ³dulos" #, php-format #~ msgid "For security reasons the following characters are not allowed: %s" -#~ msgstr "" -#~ "Por razones de seguridad, los siguientes caracteres no se permiten: %s" +#~ msgstr "Por razones de seguridad, los siguientes caracteres no se permiten: %s" #~ msgid "Agent id" #~ msgstr "Identificacion del agente" @@ -55159,12 +53687,10 @@ msgstr "GestiĆ³n del grupo de mĆ³dulos" #~ msgid "The configuration of email for the task email is in the file:" #~ msgstr "" -#~ "La configuraciĆ³n de correo-e para el envĆ­o de la tarea se encuentra en el " -#~ "fichero:" +#~ "La configuraciĆ³n de correo-e para el envĆ­o de la tarea se encuentra en el fichero:" #~ msgid "Ping to a Linux or Windows server with a Pandora FMS agent" -#~ msgstr "" -#~ "Hacer un ping a un servidor Linux o Windows con un agente de Pandora FMS" +#~ msgstr "Hacer un ping a un servidor Linux o Windows con un agente de Pandora FMS" #~ msgid "Error in creation SNMP module. Agent name doesn't exists." #~ msgstr "Error en la creaciĆ³n del mĆ³dulo SNMP. El nombre del agente no existe." @@ -55182,37 +53708,34 @@ msgstr "GestiĆ³n del grupo de mĆ³dulos" #~ msgstr "Problema con la base de datos de Pandora FMS" #~ msgid "" -#~ "Cannot connect to the database, please check your database setup in the " -#~ "include/config.php file.

\n" -#~ "\t\t\tProbably your database, hostname, user or password values are " -#~ "incorrect or \n" +#~ "Cannot connect to the database, please check your database setup in the include/" +#~ "config.php file.

\n" +#~ "\t\t\tProbably your database, hostname, user or password values are incorrect or \n" #~ "\t\t\tthe database server is not running." #~ msgstr "" -#~ "No se puede conectar a la base de datos, por favor, compruebe la " -#~ "confguraciĆ³n de su base de datos en
include/config.php
file.

\n" -#~ "\t\t\tProbablemente los valores de su BD, hostname, usuario o contraseƱa " -#~ "son incorrectos o \n" +#~ "No se puede conectar a la base de datos, por favor, compruebe la confguraciĆ³n de " +#~ "su base de datos en
include/config.php
file.

\n" +#~ "\t\t\tProbablemente los valores de su BD, hostname, usuario o contraseƱa son " +#~ "incorrectos o \n" #~ "\t\t\t la base de datos no se estĆ” ejecutando." #~ msgid "" -#~ "For security reasons, config.php must have restrictive permissions, " -#~ "and \"other\" users \n" -#~ "\t\t\tshould not read it or write to it. It should be written only for " -#~ "owner \n" -#~ "\t\t\t(usually www-data or http daemon user), normal operation is not " -#~ "possible until you change \n" -#~ "\t\t\tpermissions for include/config.php file. Please do it, it is " -#~ "for your security." +#~ "For security reasons, config.php must have restrictive permissions, and " +#~ "\"other\" users \n" +#~ "\t\t\tshould not read it or write to it. It should be written only for owner \n" +#~ "\t\t\t(usually www-data or http daemon user), normal operation is not possible " +#~ "until you change \n" +#~ "\t\t\tpermissions for include/config.php file. Please do it, it is for your " +#~ "security." #~ msgstr "" -#~ "Por razones de reguridad, config.phpdebe tener permisos " -#~ "restrictivos, y \"otros\" usuarios \n" -#~ "\t\t\tno deberĆ­an poder leerlo o escribir sobre Ć©l. Este archivo deberĆ­a " -#~ "ser Ćŗnicamente editado por el propietario \n" -#~ "\t\t\t(usually www-data or http daemon user), las operaciones normales no " -#~ "se podrĆ”n producer hasta que cambie \n" -#~ "\t\t\tlos permisos del include/config.php archivo. Por favor, " -#~ "hĆ”galo. Es por su seguridad." +#~ "Por razones de reguridad, config.phpdebe tener permisos restrictivos, y " +#~ "\"otros\" usuarios \n" +#~ "\t\t\tno deberĆ­an poder leerlo o escribir sobre Ć©l. Este archivo deberĆ­a ser " +#~ "Ćŗnicamente editado por el propietario \n" +#~ "\t\t\t(usually www-data or http daemon user), las operaciones normales no se " +#~ "podrĆ”n producer hasta que cambie \n" +#~ "\t\t\tlos permisos del include/config.php archivo. Por favor, hĆ”galo. Es " +#~ "por su seguridad." #~ msgid "Auto Save" #~ msgstr "Auto-guardar" @@ -55270,17 +53793,16 @@ msgstr "GestiĆ³n del grupo de mĆ³dulos" #~ msgid "PHP safe mode is enabled. Some features may not properly work." #~ msgstr "" -#~ "El modo seguro de PHP estĆ” activado. Algunas funcionalidades pueden no " -#~ "funcionar correctamente" +#~ "El modo seguro de PHP estĆ” activado. Algunas funcionalidades pueden no funcionar " +#~ "correctamente" #~ msgid "The data number of the module graphs will be rounded and shortened" -#~ msgstr "" -#~ "El nĆŗmero de datos de los grĆ”ficos del mĆ³dulo se redondearĆ” y acortarĆ”" +#~ msgstr "El nĆŗmero de datos de los grĆ”ficos del mĆ³dulo se redondearĆ” y acortarĆ”" #~ msgid "For to view the list modules paginated, set in setup visuals." #~ msgstr "" -#~ "Para ver el listado de mĆ³dulos paginado, seleccionar esta opciĆ³n en " -#~ "ConfiguraciĆ³n de estilos." +#~ "Para ver el listado de mĆ³dulos paginado, seleccionar esta opciĆ³n en ConfiguraciĆ³n " +#~ "de estilos." #~ msgid "Last activity in Pandora FMS console" #~ msgstr "ƚltima actividad en la consola de Pandora FMS" @@ -55361,12 +53883,12 @@ msgstr "GestiĆ³n del grupo de mĆ³dulos" #~ msgstr "ACL Estricto" #~ msgid "" -#~ "With this option enabled, the user will can access to accurate information. " -#~ "It is not recommended for admin users because performance could be affected" +#~ "With this option enabled, the user will can access to accurate information. It is " +#~ "not recommended for admin users because performance could be affected" #~ msgstr "" -#~ "Con esta opciĆ³n activada , el usuario puede tener acceso a informaciĆ³n " -#~ "precisa . No se recomienda para los usuarios administradores porque el " -#~ "rendimiento podrĆ­a verse afectado" +#~ "Con esta opciĆ³n activada , el usuario puede tener acceso a informaciĆ³n precisa . " +#~ "No se recomienda para los usuarios administradores porque el rendimiento podrĆ­a " +#~ "verse afectado" #~ msgid "No tag selected" #~ msgstr "Ninguna etiqueta seleccionada" @@ -55406,57 +53928,48 @@ msgstr "GestiĆ³n del grupo de mĆ³dulos" #~ msgid "Unsuccessful installed enterprise tables into the testing DB" #~ msgstr "" -#~ "InstalaciĆ³n de las tablas enterprise en la base de datos de prueba sin " -#~ "Ć©xito" +#~ "InstalaciĆ³n de las tablas enterprise en la base de datos de prueba sin Ć©xito" #, php-format #~ msgid "" -#~ "Unsuccessful the field %s in the table %s must be setted the default value " -#~ "as %s." +#~ "Unsuccessful the field %s in the table %s must be setted the default value as %s." #~ msgstr "" -#~ "Sin Ć©xito, el campo% s en la tabla % s debe establecer el valor por defecto " -#~ "como% s ." +#~ "Sin Ć©xito, el campo% s en la tabla % s debe establecer el valor por defecto como" +#~ "% s ." -#~ msgid "" -#~ "Please check the SQL file for to know the kind of default value needed." +#~ msgid "Please check the SQL file for to know the kind of default value needed." #~ msgstr "" -#~ "Por favor, consulte el archivo de SQL para conocer el tipo de valor " -#~ "predeterminado es necesario." +#~ "Por favor, consulte el archivo de SQL para conocer el tipo de valor predeterminado " +#~ "es necesario." + +#, php-format +#~ msgid "Unsuccessful the DB Pandora has not all tables. The tables lost are (%s)" +#~ msgstr "" +#~ "Sin Ć©xito, la base de datos de Pandora no tiene todas las tablas. Las tablas " +#~ "perdidas son (%s)" + +#, php-format +#~ msgid "Unsuccessful the field %s in the table %s must be setted the type with %s." +#~ msgstr "" +#~ "Sin Ć©xito, los campos %s de la tabla %s debe tener establecidos el tipo con %s" #, php-format #~ msgid "" -#~ "Unsuccessful the DB Pandora has not all tables. The tables lost are (%s)" +#~ "Unsuccessful the field %s in the table %s must be setted the null values with %s." #~ msgstr "" -#~ "Sin Ć©xito, la base de datos de Pandora no tiene todas las tablas. Las " -#~ "tablas perdidas son (%s)" +#~ "Sin Ć©xito, el campo% s en la tabla % s debe establecer los valores nulos con % s ." #, php-format #~ msgid "" -#~ "Unsuccessful the field %s in the table %s must be setted the type with %s." +#~ "Unsuccessful the field %s in the table %s must be setted the key as defined in the " +#~ "SQL file." #~ msgstr "" -#~ "Sin Ć©xito, los campos %s de la tabla %s debe tener establecidos el tipo con " -#~ "%s" - -#, php-format -#~ msgid "" -#~ "Unsuccessful the field %s in the table %s must be setted the null values " -#~ "with %s." -#~ msgstr "" -#~ "Sin Ć©xito, el campo% s en la tabla % s debe establecer los valores nulos " -#~ "con % s ." - -#, php-format -#~ msgid "" -#~ "Unsuccessful the field %s in the table %s must be setted the key as defined " -#~ "in the SQL file." -#~ msgstr "" -#~ "Sin Ć©xito, el campo% s en la tabla % s debe establecer la clave tal como se " -#~ "define en el archivo SQL ." +#~ "Sin Ć©xito, el campo% s en la tabla % s debe establecer la clave tal como se define " +#~ "en el archivo SQL ." #~ msgid "Please check the SQL file for to know the kind of key needed." #~ msgstr "" -#~ "Por favor, consulte el archivo de SQL para conocer el tipo de clave " -#~ "necesaria." +#~ "Por favor, consulte el archivo de SQL para conocer el tipo de clave necesaria." #~ msgid "Please check the SQL file for to know the kind of extra config needed." #~ msgstr "" @@ -55465,28 +53978,28 @@ msgstr "GestiĆ³n del grupo de mĆ³dulos" #, php-format #~ msgid "" -#~ "Unsuccessful the field %s in the table %s must be setted as defined in the " -#~ "SQL file." +#~ "Unsuccessful the field %s in the table %s must be setted as defined in the SQL " +#~ "file." #~ msgstr "" -#~ "Sin Ć©xito, el campo% s en la tabla % s debe establecese como se define en " -#~ "el archivo SQL ." +#~ "Sin Ć©xito, el campo% s en la tabla % s debe establecese como se define en el " +#~ "archivo SQL ." #~ msgid "" -#~ "This item is affected by a malformed planned downtime. Go to the planned " -#~ "downtimes section to solve this." +#~ "This item is affected by a malformed planned downtime. Go to the planned downtimes " +#~ "section to solve this." #~ msgstr "" -#~ "Este item se ve afectado por un tiempo de inactividad planificado con " -#~ "formato incorrecto. Ir a la secciĆ³n de los tiempos de parada planificada " -#~ "para resolver esto." +#~ "Este item se ve afectado por un tiempo de inactividad planificado con formato " +#~ "incorrecto. Ir a la secciĆ³n de los tiempos de parada planificada para resolver " +#~ "esto." #~ msgid "" -#~ "Illegal query: Due security restrictions, there are some tokens or words " -#~ "you cannot use: *, delete, drop, alter, modify, union, password, pass, " -#~ "insert or update." +#~ "Illegal query: Due security restrictions, there are some tokens or words you " +#~ "cannot use: *, delete, drop, alter, modify, union, password, pass, insert or " +#~ "update." #~ msgstr "" -#~ "Consulta ilegal: Debido a restricciones de seguridad, hay algunos sĆ­mbolos " -#~ "o palabras que usted no puede utilizar: * , delete, drop, alter, modify, " -#~ "union, password, pass, insert o update." +#~ "Consulta ilegal: Debido a restricciones de seguridad, hay algunos sĆ­mbolos o " +#~ "palabras que usted no puede utilizar: * , delete, drop, alter, modify, union, " +#~ "password, pass, insert o update." #~ msgid "Index of images" #~ msgstr "ƍndice de imĆ”genes" @@ -55528,48 +54041,45 @@ msgstr "GestiĆ³n del grupo de mĆ³dulos" #~ msgid "" #~ "Pandora FMS contains a scheduled downtime management system. \n" -#~ "\t\t\t\t\t\tThis system was designed to deactivate the alerts in the " -#~ "intervals whenever there is down time by deactivating the agent.\n" -#~ "\t\t\t\t\t\tIf an agent is deactivated, it doesn't collect information. In " -#~ "a down time, the down-time intervals aren't taken into \n" -#~ "\t\t\t\t\t\taccount for most of the metrics or types of reports, because " -#~ "the agents don't contain any data within those intervals. " +#~ "\t\t\t\t\t\tThis system was designed to deactivate the alerts in the intervals " +#~ "whenever there is down time by deactivating the agent.\n" +#~ "\t\t\t\t\t\tIf an agent is deactivated, it doesn't collect information. In a down " +#~ "time, the down-time intervals aren't taken into \n" +#~ "\t\t\t\t\t\taccount for most of the metrics or types of reports, because the " +#~ "agents don't contain any data within those intervals. " #~ msgstr "" #~ "Pandora FMS contiene un sistema de tiempo de inactividad planificado. \n" #~ "\t\t\t\t\t\tEste sistema fue diseƱado para desactivar las alertas en los " #~ "intervalos cada vez que hay tiempo de inactividad desactivando el agente.\n" -#~ "\t\t\t\t\t\tSi un agente estĆ” desactivado, no recoge informaciĆ³n. En el " -#~ "tiempo de inactividad, los intervalos de inactividad no se tienen \n" -#~ "\t\t\t\t\t\t en cuenta para la mayorĆ­a de las mĆ©tricas o tipo de informes, " -#~ "porque el agente no contiene datos en esos intervalos. " +#~ "\t\t\t\t\t\tSi un agente estĆ” desactivado, no recoge informaciĆ³n. En el tiempo de " +#~ "inactividad, los intervalos de inactividad no se tienen \n" +#~ "\t\t\t\t\t\t en cuenta para la mayorĆ­a de las mĆ©tricas o tipo de informes, porque " +#~ "el agente no contiene datos en esos intervalos. " #~ msgid "" -#~ "A service is a way to group your IT resources based on their " -#~ "functionalities. \n" -#~ "\t\t\t\t\tA service could be e.g. your official website, your CRM system, " -#~ "your support application, or even your printers.\n" -#~ "\t\t\t\t\t Services are logical groups which can include hosts, routers, " -#~ "switches, firewalls, CRMs, ERPs, websites and numerous other services. \n" +#~ "A service is a way to group your IT resources based on their functionalities. \n" +#~ "\t\t\t\t\tA service could be e.g. your official website, your CRM system, your " +#~ "support application, or even your printers.\n" +#~ "\t\t\t\t\t Services are logical groups which can include hosts, routers, switches, " +#~ "firewalls, CRMs, ERPs, websites and numerous other services. \n" #~ "\t\t\t\t\t By the following example, you're able to see more clearly what a " #~ "service is:\n" -#~ "\t\t\t\t\t\tA chip manufacturer sells computers by its website all around " -#~ "the world. \n" -#~ "\t\t\t\t\t\tHis company consists of three big departments: A management, an " -#~ "on-line shop and support." +#~ "\t\t\t\t\t\tA chip manufacturer sells computers by its website all around the " +#~ "world. \n" +#~ "\t\t\t\t\t\tHis company consists of three big departments: A management, an on-" +#~ "line shop and support." #~ msgstr "" #~ "Un servicio es una forma de agrupar tus recursos de IT basados en sus " #~ "funcionalidades. \n" -#~ "\t\t\t\t\tUn servicio podrĆ­a ser por ejemplo tu pĆ”gina web, tu sistema CRM, " -#~ "tu aplicaciĆ³n de soporte, o incluso tus impresoras.\n" -#~ "\t\t\t\t\t Los servicios son grupos lĆ³gicos en los que puedes incluir " -#~ "hosts, routers, switches, firewalls, CRMs, ERPs, pĆ”ginas web y muchos otros " -#~ "servicios. \n" -#~ "\t\t\t\t\t Con el siguiente ejemplo, verĆ”s mĆ”s claramente que es un " -#~ "servicio:\n" -#~ "\t\t\t\t\t\tUn fabricante de chips vende ordenadores por su pĆ”gina web por " -#~ "todo el mundo. \n" -#~ "\t\t\t\t\t\tSu empresa consiste en tres grandes departamentos: direcciĆ³n, " -#~ "tienda online y soporte." +#~ "\t\t\t\t\tUn servicio podrĆ­a ser por ejemplo tu pĆ”gina web, tu sistema CRM, tu " +#~ "aplicaciĆ³n de soporte, o incluso tus impresoras.\n" +#~ "\t\t\t\t\t Los servicios son grupos lĆ³gicos en los que puedes incluir hosts, " +#~ "routers, switches, firewalls, CRMs, ERPs, pĆ”ginas web y muchos otros servicios. \n" +#~ "\t\t\t\t\t Con el siguiente ejemplo, verĆ”s mĆ”s claramente que es un servicio:\n" +#~ "\t\t\t\t\t\tUn fabricante de chips vende ordenadores por su pĆ”gina web por todo el " +#~ "mundo. \n" +#~ "\t\t\t\t\t\tSu empresa consiste en tres grandes departamentos: direcciĆ³n, tienda " +#~ "online y soporte." #~ msgid "Display proc modules in binary format (OK/FAIL)." #~ msgstr "Mostrar los mĆ³dulos proc en formato binario (OK/FALLO)" @@ -55605,15 +54115,15 @@ msgstr "GestiĆ³n del grupo de mĆ³dulos" #~ msgstr "Error habilitar/deshabilitar agente. El agente no existe." #~ msgid "" -#~ "There is a new update please go to menu Administration and into extensions " -#~ "go to Update Manager for " -#~ "more details." +#~ "There is a new update please go to menu Administration and into extensions go to Update Manager for more " +#~ "details." #~ msgstr "" #~ "Hay una nueva actualizaciĆ³n, por favor vaya al menĆŗ AdministraciĆ³n y en las " #~ "extensiones Ir al " -#~ "Update Manager para mĆ”s detalles." +#~ "sec=gsetup&sec2=godmode/update_manager/update_manager&tab=online\">Ir al Update " +#~ "Manager para mĆ”s detalles." #~ msgid "Advance Config AD" #~ msgstr "ConfiguraciĆ³n avanzada de AD" @@ -55653,21 +54163,20 @@ msgstr "GestiĆ³n del grupo de mĆ³dulos" #~ msgstr "Generar mapa de red con relaciones entre padres" #~ msgid "" -#~ "This feature is deprecated, be careful because in the next releases it will " -#~ "be disappear." +#~ "This feature is deprecated, be careful because in the next releases it will be " +#~ "disappear." #~ msgstr "" -#~ "Esta funciĆ³n estĆ” obsoleta, tenga cuidado porque en prĆ³ximos parches " -#~ "desaparecerĆ”" +#~ "Esta funciĆ³n estĆ” obsoleta, tenga cuidado porque en prĆ³ximos parches desaparecerĆ”" #~ msgid "Refresh network map state" #~ msgstr "Refrescar el estado del mapa de red" #~ msgid "" -#~ "Enable this option will be synchronice the groups and tags each new user " -#~ "when he/she will login." +#~ "Enable this option will be synchronice the groups and tags each new user when he/" +#~ "she will login." #~ msgstr "" -#~ "Activar esta opciĆ³n sincronizarĆ” grupos y etiquetas cuando el usuario " -#~ "vuelva a iniciar sesiĆ³n" +#~ "Activar esta opciĆ³n sincronizarĆ” grupos y etiquetas cuando el usuario vuelva a " +#~ "iniciar sesiĆ³n" #~ msgid "Generate a dynamic report\"" #~ msgstr "Generar un informe dinĆ”mico" @@ -55685,8 +54194,7 @@ msgstr "GestiĆ³n del grupo de mĆ³dulos" #~ msgstr "ƚnete a la comunidad de Pandora FMS" #~ msgid "This field allows url insertion using the BBCode's url tag" -#~ msgstr "" -#~ "Este campo permite la inserciĆ³n de URL mediante la etiqueta URL de BBCode" +#~ msgstr "Este campo permite la inserciĆ³n de URL mediante la etiqueta URL de BBCode" #~ msgid "The format is: [url='url to navigate']'text to show'[/url]" #~ msgstr "El formato es: [url='url para navegar']'texto para mostrar'[/url]" @@ -55697,11 +54205,10 @@ msgstr "GestiĆ³n del grupo de mĆ³dulos" #~ msgid "Hostname of the eHorus API" #~ msgstr "Nombre del propietario de la API de eHorus" -#~ msgid "" -#~ "Time in seconds to set the maximum time of the requests to the eHorus API" +#~ msgid "Time in seconds to set the maximum time of the requests to the eHorus API" #~ msgstr "" -#~ "Tiempo en segundos para establecer el tiempo mĆ”ximo de respuesta para la " -#~ "API de eHorus" +#~ "Tiempo en segundos para establecer el tiempo mĆ”ximo de respuesta para la API de " +#~ "eHorus" #~ msgid "0 to disable" #~ msgstr "0 para deshabilitar" @@ -55710,12 +54217,12 @@ msgstr "GestiĆ³n del grupo de mĆ³dulos" #~ msgstr "e.g., switch.ehorus.com" #~ msgid "" -#~ "If you check this option, the lateral menus display with left click. " -#~ "Otherwise it will show by placing the mouse over" +#~ "If you check this option, the lateral menus display with left click. Otherwise it " +#~ "will show by placing the mouse over" #~ msgstr "" -#~ "Si activas esta opciĆ³n, los menĆŗs laterales se mostrarĆ”n al hacer click con " -#~ "el botĆ³n izquierdo del ratĆ³n. En otro caso se mostrarĆ”n al pasar el ratĆ³n " -#~ "por encima de ellos" +#~ "Si activas esta opciĆ³n, los menĆŗs laterales se mostrarĆ”n al hacer click con el " +#~ "botĆ³n izquierdo del ratĆ³n. En otro caso se mostrarĆ”n al pasar el ratĆ³n por encima " +#~ "de ellos" #~ msgid "Mark as not read" #~ msgstr "Marcar como no leĆ­do" @@ -55731,8 +54238,7 @@ msgstr "GestiĆ³n del grupo de mĆ³dulos" #~ msgstr "%s" #~ msgid "This instance is not registered in the Update manager" -#~ msgstr "" -#~ "Esta instancia no estĆ” registrada en el Administrador de actualizaciones" +#~ msgstr "Esta instancia no estĆ” registrada en el Administrador de actualizaciones" #~ msgid "Missing id" #~ msgstr "Identificador perdido" @@ -55799,12 +54305,12 @@ msgstr "GestiĆ³n del grupo de mĆ³dulos" #~ msgid "" #~ "If event purge is less than events days pass to history db, you will have a " -#~ "problems and you lost data. Recommended that event days purge will more " -#~ "taller than event days to history DB" +#~ "problems and you lost data. Recommended that event days purge will more taller " +#~ "than event days to history DB" #~ msgstr "" -#~ "Si la fecha de purga de eventos es menor que la fecha para que los eventos " -#~ "pasen a histĆ³rico, los datos se perderĆ”n. Recomendamos que la fecha de " -#~ "purga sean mayor a la de traspaso a histĆ³rico." +#~ "Si la fecha de purga de eventos es menor que la fecha para que los eventos pasen a " +#~ "histĆ³rico, los datos se perderĆ”n. Recomendamos que la fecha de purga sean mayor a " +#~ "la de traspaso a histĆ³rico." #~ msgid "Enable event history" #~ msgstr "Activar histĆ³rico de eventos" @@ -55813,19 +54319,18 @@ msgstr "GestiĆ³n del grupo de mĆ³dulos" #~ msgstr "DĆ­as de eventos" #~ msgid "" -#~ "This is the online help for Pandora FMS console. This help is -in best " -#~ "cases- just a brief contextual help, not intented to teach you how to use " -#~ "Pandora FMS. Official documentation of Pandora FMS is about 900 pages, and " -#~ "you probably don't need to read it entirely, but sure, you should download " -#~ "it and take a look.

\n" +#~ "This is the online help for Pandora FMS console. This help is -in best cases- just " +#~ "a brief contextual help, not intented to teach you how to use Pandora FMS. " +#~ "Official documentation of Pandora FMS is about 900 pages, and you probably don't " +#~ "need to read it entirely, but sure, you should download it and take a look." +#~ "

\n" #~ "\tDownload the official documentation" #~ msgstr "" -#~ "Esta es la ayuda online para la consola de Pandora FMS. Esta ayuda es -en " -#~ "el mejor de los casos- solo una ayuda contextual, no trata de enseƱarle a " -#~ "usar Pandora FMS. La documentaciĆ³n oficial de Pandora FMS contiene 900 " -#~ "pĆ”ginas y es probable que necesite leerlo entero, deberĆ­a descargarlo y " -#~ "echarle un vistazo.

\n" +#~ "Esta es la ayuda online para la consola de Pandora FMS. Esta ayuda es -en el mejor " +#~ "de los casos- solo una ayuda contextual, no trata de enseƱarle a usar Pandora FMS. " +#~ "La documentaciĆ³n oficial de Pandora FMS contiene 900 pĆ”ginas y es probable que " +#~ "necesite leerlo entero, deberĆ­a descargarlo y echarle un vistazo.

\n" #~ "\tDescargar la documentaciĆ³n oficial" @@ -55840,11 +54345,11 @@ msgstr "GestiĆ³n del grupo de mĆ³dulos" #, php-format #~ msgid "" -#~ "Your PHP environment is setted with %d max_input_vars. Maybe you must not " -#~ "set this value with upper values." +#~ "Your PHP environment is setted with %d max_input_vars. Maybe you must not set this " +#~ "value with upper values." #~ msgstr "" -#~ "Su entorno PHP fue establecido con %d max_input_vars. Tal vez no deba " -#~ "establecer valores superiores en este parĆ”metro." +#~ "Su entorno PHP fue establecido con %d max_input_vars. Tal vez no deba establecer " +#~ "valores superiores en este parĆ”metro." #~ msgid "® ƃĀrtica ST" #~ msgstr "Ɓrtica ST" @@ -55883,29 +54388,28 @@ msgstr "GestiĆ³n del grupo de mĆ³dulos" #~ msgstr "Mapa VMware" #~ msgid "" -#~ "To enable the plugin execution, this extension needs the Cron jobs " -#~ "extension installed.\n" -#~ "\tKeep in mind that the Cron jobs execution period will be the less real " -#~ "execution period, so if you want to run the plugin every\n" -#~ "\t5 minutes, for example, the Cron jobs script should be configured in the " -#~ "cron to run every 5 minutes or less" +#~ "To enable the plugin execution, this extension needs the Cron jobs extension " +#~ "installed.\n" +#~ "\tKeep in mind that the Cron jobs execution period will be the less real execution " +#~ "period, so if you want to run the plugin every\n" +#~ "\t5 minutes, for example, the Cron jobs script should be configured in the cron to " +#~ "run every 5 minutes or less" #~ msgstr "" -#~ "Para activar la ejecuciĆ³n del plugin, esta extensiĆ³n necesita que la " -#~ "extensiĆ³n de tareas programadas estĆ© instalada.\n" -#~ "\tKeep in mind that the Cron jobs execution period will be the less real " -#~ "execution period, so if you want to run the plugin every\n" -#~ "\t5 minutes, for example, the Cron jobs script should be configured in the " -#~ "cron to run every 5 minutes or less" +#~ "Para activar la ejecuciĆ³n del plugin, esta extensiĆ³n necesita que la extensiĆ³n de " +#~ "tareas programadas estĆ© instalada.\n" +#~ "\tKeep in mind that the Cron jobs execution period will be the less real execution " +#~ "period, so if you want to run the plugin every\n" +#~ "\t5 minutes, for example, the Cron jobs script should be configured in the cron to " +#~ "run every 5 minutes or less" #~ msgid "Pandora Console URL" #~ msgstr "URL de la consola de Pandora FMS" #~ msgid "" -#~ "Show events is disabled because this Pandora node is set the event " -#~ "replication." +#~ "Show events is disabled because this Pandora node is set the event replication." #~ msgstr "" -#~ "Los eventos no se muestran porque este nodo de Pandora FMS tiene la " -#~ "replicaciĆ³n de eventos activada." +#~ "Los eventos no se muestran porque este nodo de Pandora FMS tiene la replicaciĆ³n de " +#~ "eventos activada." #~ msgid "Error: there are cells not empty." #~ msgstr "Error: las celdas no pueden estar vacĆ­as" @@ -55917,18 +54421,18 @@ msgstr "GestiĆ³n del grupo de mĆ³dulos" #~ msgstr "Carga Apache en el Servidor de Pandora FMS" #~ msgid "" -#~ "When the item title name have a lot of characters, in some places in " -#~ "Pandora Console it is necesary truncate to N characters." +#~ "When the item title name have a lot of characters, in some places in Pandora " +#~ "Console it is necesary truncate to N characters." #~ msgstr "" -#~ "Cuando el texto de un tĆ­tulo tenga muchos caracteres, en algunos lugares de " -#~ "la consola serĆ” necesario truncar su longitud a N caracteres." +#~ "Cuando el texto de un tĆ­tulo tenga muchos caracteres, en algunos lugares de la " +#~ "consola serĆ” necesario truncar su longitud a N caracteres." #~ msgid "" -#~ "Pandora FMS help system has been called with a help reference that " -#~ "currently don't exist. There is no help content to show." +#~ "Pandora FMS help system has been called with a help reference that currently don't " +#~ "exist. There is no help content to show." #~ msgstr "" -#~ "El sistema de ayuda de Pandora FMS ha sido solicitado con una referencia " -#~ "que no existe actualmente. No hay contenido que mostrar." +#~ "El sistema de ayuda de Pandora FMS ha sido solicitado con una referencia que no " +#~ "existe actualmente. No hay contenido que mostrar." #~ msgid "Successful the DB Pandora has all tables" #~ msgstr "La BD de Pandora FMS tiene todas las tablas" @@ -55937,11 +54441,11 @@ msgstr "GestiĆ³n del grupo de mĆ³dulos" #~ msgstr "NĆŗmero de alertas disparadas" #~ msgid "" -#~ "You can set the command path in the menu Administration -> Extensions -" -#~ "> Config Network Tools" +#~ "You can set the command path in the menu Administration -> Extensions -> " +#~ "Config Network Tools" #~ msgstr "" -#~ "Puedes establecer la ruta de comando en el menĆŗ AdministraciĆ³n -> " -#~ "Extensiones -> ConfiguraciĆ³n de herramientas de red" +#~ "Puedes establecer la ruta de comando en el menĆŗ AdministraciĆ³n -> Extensiones -" +#~ "> ConfiguraciĆ³n de herramientas de red" #~ msgid "If it is empty, Pandora searchs the ping system." #~ msgstr "Si estĆ” vacĆ­o, Pandora FMS buscarĆ” el sistema Ping" @@ -55954,18 +54458,18 @@ msgstr "GestiĆ³n del grupo de mĆ³dulos" #~ msgid "" #~ "This extension makes registration of server plugins more easy. \n" -#~ "\t\t\t\t\t\tHere you can upload a server plugin in Pandora FMS 3.x zipped " -#~ "format (.pspz). \n" -#~ "\t\t\t\t\t\tPlease refer to documentation on how to obtain and use Pandora " -#~ "FMS Server Plugins.\n" -#~ "\t\t\t\t\t\t

You can get more plugins in our Public Resource Library " +#~ "\t\t\t\t\t\tHere you can upload a server plugin in Pandora FMS 3.x zipped format (." +#~ "pspz). \n" +#~ "\t\t\t\t\t\tPlease refer to documentation on how to obtain and use Pandora FMS " +#~ "Server Plugins.\n" +#~ "\t\t\t\t\t\t

You can get more plugins in our Public Resource Library " #~ msgstr "" #~ "Esta extensiĆ³n facilita el registro de los plugins de servidor. \n" -#~ "\t\t\t\t\t\tAquĆ­ puedes subir un plugin de servidor en Pandora FMS 3.x en " -#~ "formato comprimido (.pspz). \n" -#~ "\t\t\t\t\t\tPor favor consulta la documentaciĆ³n sobre cĆ³mo obtener y usar " -#~ "los plugins del servidor de Pandora FMS.\n" +#~ "\t\t\t\t\t\tAquĆ­ puedes subir un plugin de servidor en Pandora FMS 3.x en formato " +#~ "comprimido (.pspz). \n" +#~ "\t\t\t\t\t\tPor favor consulta la documentaciĆ³n sobre cĆ³mo obtener y usar los " +#~ "plugins del servidor de Pandora FMS.\n" #~ "\t\t\t\t\t\t

Puedes conseguir mĆ”s plugins en nuestra LibrerĆ­a de Recursos PĆŗblicos " @@ -55982,154 +54486,144 @@ msgstr "GestiĆ³n del grupo de mĆ³dulos" #~ msgstr "CPU del servidor de Pandora FMS" #~ msgid "" -#~ "This extension makes exportation of resource template more easy. Here you " -#~ "can export as a resource template in Pandora FMS 3.x format (.ptr). " +#~ "This extension makes exportation of resource template more easy. Here you can " +#~ "export as a resource template in Pandora FMS 3.x format (.ptr). " #~ msgstr "" -#~ "Esta extensiĆ³n facilita la exportaciĆ³n de plantillas de recursos. Desde " -#~ "aquĆ­ puedes exportar plantillas de recursos en el formato de Pandora FMS 3." -#~ "x (.ptr). " +#~ "Esta extensiĆ³n facilita la exportaciĆ³n de plantillas de recursos. Desde aquĆ­ " +#~ "puedes exportar plantillas de recursos en el formato de Pandora FMS 3.x (.ptr). " #, php-format #~ msgid "" -#~ "This extension makes registration of resource template more easy. Here you " -#~ "can upload a resource template in Pandora FMS 3.x format (.ptr). Please " -#~ "refer to documentation on how to obtain and use Pandora FMS resources. " -#~ "

You can get more resurces in our Public Resource " -#~ "Library" +#~ "This extension makes registration of resource template more easy. Here you can " +#~ "upload a resource template in Pandora FMS 3.x format (.ptr). Please refer to " +#~ "documentation on how to obtain and use Pandora FMS resources.

You can get " +#~ "more resurces in our Public Resource Library" #~ msgstr "" -#~ "Esta extensiĆ³n facilita el registro de una plantilla de recursos. Puedes " -#~ "subir una plantilla de recursos en formato (.ptr), de Pandora FMS. Por " -#~ "favor, consulta la documentaciĆ³n sobre cĆ³mo obtener y usar los recursos de " -#~ "plantilla de Pandora FMS

Puedes obtener mĆ”s recursos en nuestra Libreria PĆŗblica de recursos." +#~ "Esta extensiĆ³n facilita el registro de una plantilla de recursos. Puedes subir una " +#~ "plantilla de recursos en formato (.ptr), de Pandora FMS. Por favor, consulta la " +#~ "documentaciĆ³n sobre cĆ³mo obtener y usar los recursos de plantilla de Pandora " +#~ "FMS

Puedes obtener mĆ”s recursos en nuestra Libreria PĆŗblica de " +#~ "recursos." #~ msgid "System info" #~ msgstr "InformaciĆ³n del sistema" #~ msgid "" -#~ "Report generating on the Enterprise version is also more powerful: it has " -#~ "wizards, you can schedule emails in PDF to be sent according to the " -#~ "schedule you decide, and it has a template system to create personalized " -#~ "reports quickly for each of your customers. It will even allow your " -#~ "customers to generate their own reports from templates created by you. If " -#~ "reports are key to your business, Pandora FMS Enterprise version is for you." +#~ "Report generating on the Enterprise version is also more powerful: it has wizards, " +#~ "you can schedule emails in PDF to be sent according to the schedule you decide, " +#~ "and it has a template system to create personalized reports quickly for each of " +#~ "your customers. It will even allow your customers to generate their own reports " +#~ "from templates created by you. If reports are key to your business, Pandora FMS " +#~ "Enterprise version is for you." #~ msgstr "" -#~ "La generaciĆ³n de informes en la versiĆ³n Enterprise tambiĆ©n es mĆ”s potente: " -#~ "cuenta con asistentes, puede programar los correos electrĆ³nicos en PDF para " -#~ "que se envĆ­en segĆŗn el calendario que decidas y tiene un sistema de " -#~ "plantillas para crear informes personalizados de manera rĆ”pida para cada " -#~ "uno de tus clientes. Incluso permitirĆ” a tus clientes generar sus propios " -#~ "informes a partir de plantillas creadas por ti. Si los informes son clave " -#~ "para tu negocio, la versiĆ³n Enterprise de Pandora FMS es para ti." +#~ "La generaciĆ³n de informes en la versiĆ³n Enterprise tambiĆ©n es mĆ”s potente: cuenta " +#~ "con asistentes, puede programar los correos electrĆ³nicos en PDF para que se envĆ­en " +#~ "segĆŗn el calendario que decidas y tiene un sistema de plantillas para crear " +#~ "informes personalizados de manera rĆ”pida para cada uno de tus clientes. Incluso " +#~ "permitirĆ” a tus clientes generar sus propios informes a partir de plantillas " +#~ "creadas por ti. Si los informes son clave para tu negocio, la versiĆ³n Enterprise " +#~ "de Pandora FMS es para ti." #~ msgid "" -#~ "Pandora FMS Enterprise also features event correlation. Through correlation " -#~ "you can generate realtime alerts and / or new events based on logical " -#~ "rules. This allows you to automate troubleshooting. If you know the value " -#~ "of working with events, event correlation will take you to a new level." +#~ "Pandora FMS Enterprise also features event correlation. Through correlation you " +#~ "can generate realtime alerts and / or new events based on logical rules. This " +#~ "allows you to automate troubleshooting. If you know the value of working with " +#~ "events, event correlation will take you to a new level." #~ msgstr "" -#~ "Pandora FMS Enterprise tambiĆ©n ofrece correlaciĆ³n de eventos. A travĆ©s de " -#~ "la correlaciĆ³n puedes generar alertas en tiempo real y/o nuevos eventos " -#~ "basados en reglas lĆ³gicas. Esto te permite automatizar la soluciĆ³n de " -#~ "problemas. Si sabes lo importante que es trabajar con eventos, la " -#~ "correlaciĆ³n de eventos te llevarĆ” a un nuevo nivel." +#~ "Pandora FMS Enterprise tambiĆ©n ofrece correlaciĆ³n de eventos. A travĆ©s de la " +#~ "correlaciĆ³n puedes generar alertas en tiempo real y/o nuevos eventos basados en " +#~ "reglas lĆ³gicas. Esto te permite automatizar la soluciĆ³n de problemas. Si sabes lo " +#~ "importante que es trabajar con eventos, la correlaciĆ³n de eventos te llevarĆ” a un " +#~ "nuevo nivel." #~ msgid "" #~ "Besides receiving and processing data to monitor systems or applications, \n" -#~ "\t\t\tyou're also required to monitor possible incidents which might take " -#~ "place on these systems within the system monitoring process.\n" -#~ "\t\t\tFor it, the Pandora FMS team has designed an incident manager within " -#~ "which any user is able to open incidents, \n" -#~ "\t\t\texplaining what's happened on the network and to update them with " -#~ "comments and files any time in case there is a need to do so.\n" -#~ "\t\t\tThis system allows the users to work as a team, along with different " -#~ "roles and work-flow systems which allows an incident to be \n" -#~ "\t\t\tmoved from one group to another, and that members from different " -#~ "groups and different people could work on the same incident, sharing " -#~ "information and files.\n" +#~ "\t\t\tyou're also required to monitor possible incidents which might take place on " +#~ "these systems within the system monitoring process.\n" +#~ "\t\t\tFor it, the Pandora FMS team has designed an incident manager within which " +#~ "any user is able to open incidents, \n" +#~ "\t\t\texplaining what's happened on the network and to update them with comments " +#~ "and files any time in case there is a need to do so.\n" +#~ "\t\t\tThis system allows the users to work as a team, along with different roles " +#~ "and work-flow systems which allows an incident to be \n" +#~ "\t\t\tmoved from one group to another, and that members from different groups and " +#~ "different people could work on the same incident, sharing information and files.\n" #~ "\t\t" #~ msgstr "" #~ "AdemĆ”s de los datos recibidos y procesados para monitorizar sistemas o " #~ "aplicaciones, \n" -#~ "\t\t\ttambiĆ©n debes monitorizar posibles incidentes que podrĆ­an aparecer en " -#~ "esos sistemas con el proceso de monitorizaciĆ³n del sistema.\n" -#~ "\t\t\tPara ello, el equipo de Pandora FMS ha diseƱado un gestor de " -#~ "incidentes con el cual cualquier usuario puede abrir incidentes, \n" -#~ "\t\t\texplicando quĆ© ha sucedido en la red y actualizarlos con comentarios " -#~ "y archivos en cualquier momento que sea necesario.\n" -#~ "\t\t\tEste sistema permite a los usuarios trabajar como un equipo, junto " -#~ "con diferentes roles y sistemas de workflow que permiten desplazar un " -#~ "incidente \n" -#~ "\t\t\tde un grupo a otro, y que los miembros de los diferentes grupos y " -#~ "personas puedan trabajar en el mismo incidente, compartiendo informaciĆ³n y " -#~ "archivos.\n" +#~ "\t\t\ttambiĆ©n debes monitorizar posibles incidentes que podrĆ­an aparecer en esos " +#~ "sistemas con el proceso de monitorizaciĆ³n del sistema.\n" +#~ "\t\t\tPara ello, el equipo de Pandora FMS ha diseƱado un gestor de incidentes con " +#~ "el cual cualquier usuario puede abrir incidentes, \n" +#~ "\t\t\texplicando quĆ© ha sucedido en la red y actualizarlos con comentarios y " +#~ "archivos en cualquier momento que sea necesario.\n" +#~ "\t\t\tEste sistema permite a los usuarios trabajar como un equipo, junto con " +#~ "diferentes roles y sistemas de workflow que permiten desplazar un incidente \n" +#~ "\t\t\tde un grupo a otro, y que los miembros de los diferentes grupos y personas " +#~ "puedan trabajar en el mismo incidente, compartiendo informaciĆ³n y archivos.\n" #~ "\t\t" #~ msgid "" -#~ "Graphs are designed to show the data collected by Pandora FMS in a " -#~ "temporary scale defined by the user.\n" -#~ "\t\t\t\tPandora FMS Graphs display data in real time. They are generated " -#~ "every time the operator requires any of them and display the up-to-date " -#~ "state.\n" -#~ "\t\t\t\tThere are two types of graphs: The agent's automated graphs and the " -#~ "graphs the user customizes by using one or more modules to do so." +#~ "Graphs are designed to show the data collected by Pandora FMS in a temporary scale " +#~ "defined by the user.\n" +#~ "\t\t\t\tPandora FMS Graphs display data in real time. They are generated every " +#~ "time the operator requires any of them and display the up-to-date state.\n" +#~ "\t\t\t\tThere are two types of graphs: The agent's automated graphs and the graphs " +#~ "the user customizes by using one or more modules to do so." #~ msgstr "" -#~ "Los grĆ”ficos estĆ”n diseƱados para mostrar los datos recogidos por Pandora " -#~ "FMS en una escala temporal definido por el usuario.\n" -#~ "\t\t\t\tLos grĆ”ficos de Pandora FMS muestran los datos en tiempo real. " -#~ "Ellos se generan cada vez que el operador requiere cualquiera de ellos y " -#~ "muestra el estado actualizado.\n" -#~ "\t \t \t \t Hay dos tipos de grĆ”ficos: grĆ”ficos automatizados del agente y " -#~ "los grĆ”ficos que el usuario personaliza mediante el uso de uno o mĆ”s " -#~ "mĆ³dulos." +#~ "Los grĆ”ficos estĆ”n diseƱados para mostrar los datos recogidos por Pandora FMS en " +#~ "una escala temporal definido por el usuario.\n" +#~ "\t\t\t\tLos grĆ”ficos de Pandora FMS muestran los datos en tiempo real. Ellos se " +#~ "generan cada vez que el operador requiere cualquiera de ellos y muestra el estado " +#~ "actualizado.\n" +#~ "\t \t \t \t Hay dos tipos de grĆ”ficos: grĆ”ficos automatizados del agente y los " +#~ "grĆ”ficos que el usuario personaliza mediante el uso de uno o mĆ”s mĆ³dulos." #~ msgid "" -#~ "Pandora FMS allows you to create visual maps in which each user is able to " -#~ "create his own monitoring map.\n" -#~ "\t\t\tThe new visual console editor is much more practical, although the " -#~ "old visual console editor had its advantages. \n" +#~ "Pandora FMS allows you to create visual maps in which each user is able to create " +#~ "his own monitoring map.\n" +#~ "\t\t\tThe new visual console editor is much more practical, although the old " +#~ "visual console editor had its advantages. \n" #~ "\t\t\tWithin the new visual console, we've been successful in imitating the " #~ "sensation and touch of a drawing application like GIMP. \n" -#~ "\t\t\tWe've also simplified the editor by dividing it into several subject-" -#~ "matter tabs named 'Data', 'Preview', 'Wizard', 'List of Elements' and " -#~ "'Editor'.\n" -#~ "\t\t\tThe elements the Pandora FMS Visual Map was designed to handle are " -#~ "'static image', 'percentage bar', 'module graph' and 'simple value'. " +#~ "\t\t\tWe've also simplified the editor by dividing it into several subject-matter " +#~ "tabs named 'Data', 'Preview', 'Wizard', 'List of Elements' and 'Editor'.\n" +#~ "\t\t\tThe elements the Pandora FMS Visual Map was designed to handle are 'static " +#~ "image', 'percentage bar', 'module graph' and 'simple value'. " #~ msgstr "" -#~ "Pandora FMS permite crear mapas visuales en la que cada usuario es capaz de " -#~ "crear su propio mapa de monitorizaciĆ³n.\n" -#~ "\t\t\t El nuevo editor de consola visual es mucho mĆ”s prĆ”ctico, aunque el " -#~ "antiguo editor de consola visual tenĆ­a sus ventajas.\n" -#~ "\t\t\t Dentro de la nueva consola visual, hemos conseguido imitar la " -#~ "sensaciĆ³n y el tacto de una aplicaciĆ³n de dibujo como GIMP.\n" +#~ "Pandora FMS permite crear mapas visuales en la que cada usuario es capaz de crear " +#~ "su propio mapa de monitorizaciĆ³n.\n" +#~ "\t\t\t El nuevo editor de consola visual es mucho mĆ”s prĆ”ctico, aunque el antiguo " +#~ "editor de consola visual tenĆ­a sus ventajas.\n" +#~ "\t\t\t Dentro de la nueva consola visual, hemos conseguido imitar la sensaciĆ³n y " +#~ "el tacto de una aplicaciĆ³n de dibujo como GIMP.\n" #~ "\t\t\t TambiĆ©n hemos simplificado el editor dividiĆ©ndolo en varias pestaƱas " -#~ "llamadas \"Datos\", \"Vista previa\", \"Asistente\", \"Lista de Elementos\" " -#~ "y \"Editor\".\n" -#~ "\t\t\t El mapa visual de Pandora FMS fue diseƱado para manejar los " -#~ "elementos \"imagen estĆ”tica\", \"barra de porcentaje\", \"grĆ”fico del mĆ³dulo" -#~ "\" y \"valor simple\". " +#~ "llamadas \"Datos\", \"Vista previa\", \"Asistente\", \"Lista de Elementos\" y " +#~ "\"Editor\".\n" +#~ "\t\t\t El mapa visual de Pandora FMS fue diseƱado para manejar los elementos " +#~ "\"imagen estĆ”tica\", \"barra de porcentaje\", \"grĆ”fico del mĆ³dulo\" y \"valor " +#~ "simple\". " #~ msgid "" -#~ "The Recon Task definition of Pandora FMS is used to find new elements in " -#~ "the network. \n" -#~ "\t\tIf it detects any item, it will add that item to the monitoring, and if " -#~ "that item it is already being monitored, then it will \n" -#~ "\t\tignore it or will update its information.There are three types of " -#~ "detection: Based on ICMP (pings), \n" -#~ "\t\tSNMP (detecting the topology of networks " -#~ "and their interfaces), and other customized \n" +#~ "The Recon Task definition of Pandora FMS is used to find new elements in the " +#~ "network. \n" +#~ "\t\tIf it detects any item, it will add that item to the monitoring, and if that " +#~ "item it is already being monitored, then it will \n" +#~ "\t\tignore it or will update its information.There are three types of detection: " +#~ "Based on ICMP (pings), \n" +#~ "\t\tSNMP (detecting the topology of networks and " +#~ "their interfaces), and other customized \n" #~ "\t\ttype. You can define your own customized recon script." #~ msgstr "" -#~ "La definiciĆ³n de la tarea recon de Pandora FMS es utilizada para encontrar " -#~ "nuevos elementos en el mapa de red. \n" -#~ "\t\t Si detecta algĆŗn elemento, lo aƱadirĆ” a la monitorizaciĆ³n, y si el " -#~ "elemento ya estaba siendo monitorizado, entonces lo \n" -#~ "\t\t ignorarĆ” o actualizarĆ” su informaciĆ³n. Hay tres tipos de detecciĆ³n: " -#~ "basado en ICMP (pings), \n" -#~ "\t\t SNMP (detectando la topologĆ­a de las " -#~ "redes y sus interfaces), y otro tipo personalizado. " -#~ "\n" +#~ "La definiciĆ³n de la tarea recon de Pandora FMS es utilizada para encontrar nuevos " +#~ "elementos en el mapa de red. \n" +#~ "\t\t Si detecta algĆŗn elemento, lo aƱadirĆ” a la monitorizaciĆ³n, y si el elemento " +#~ "ya estaba siendo monitorizado, entonces lo \n" +#~ "\t\t ignorarĆ” o actualizarĆ” su informaciĆ³n. Hay tres tipos de detecciĆ³n: basado " +#~ "en ICMP (pings), \n" +#~ "\t\t SNMP (detectando la topologĆ­a de las redes y " +#~ "sus interfaces), y otro tipo personalizado. \n" #~ "\t\t Puede definir su propio script recon personalizado." #~ msgid "Recon server" @@ -56142,32 +54636,31 @@ msgstr "GestiĆ³n del grupo de mĆ³dulos" #~ msgstr "Crear tarea recon" #~ msgid "" -#~ "From Pandora FMS versions 5 and above, the access to modules can be " -#~ "configured by a tags system.\n" -#~ "\t\t\t\t\t\t\t\tTags are configured on the system and be assigned to the " -#~ "chosen modules. \n" -#~ "\t\t\t\t\t\t\t\tThe user's access can be limited to modules with certain " -#~ "tags in this way. " +#~ "From Pandora FMS versions 5 and above, the access to modules can be configured by " +#~ "a tags system.\n" +#~ "\t\t\t\t\t\t\t\tTags are configured on the system and be assigned to the chosen " +#~ "modules. \n" +#~ "\t\t\t\t\t\t\t\tThe user's access can be limited to modules with certain tags in " +#~ "this way. " #~ msgstr "" -#~ "Desde la versiĆ³n 5 y superior de Pandora FMS, el acceso a los mĆ³dulos puede " -#~ "ser configurado por etiquetas del sistema.\n" +#~ "Desde la versiĆ³n 5 y superior de Pandora FMS, el acceso a los mĆ³dulos puede ser " +#~ "configurado por etiquetas del sistema.\n" #~ "\t\t\t\t\t\t\t\tLas etiquetas son configuradas en el sistema y pueden ser " #~ "asignadas a los mĆ³dulos elegidos. \n" -#~ "\t\t\t\t\t\t\t\tDe esta manera, el acceso de los usuarios puede estar " -#~ "limitado a mĆ³dulos con ciertas etiquetas. " +#~ "\t\t\t\t\t\t\t\tDe esta manera, el acceso de los usuarios puede estar limitado a " +#~ "mĆ³dulos con ciertas etiquetas. " #~ msgid "System alerts detected - Please fix as soon as possible" #~ msgstr "Alertas de sistema detectadas. Por favor, corrĆ­gelo lo antes posible." #~ msgid "" -#~ "If this is your first time with Pandora FMS, we propose you a few links to " -#~ "learn more about Pandora FMS. Monitoring could be overwhelm, but take your " -#~ "time to learn how to use the power of Pandora FMS!" +#~ "If this is your first time with Pandora FMS, we propose you a few links to learn " +#~ "more about Pandora FMS. Monitoring could be overwhelm, but take your time to learn " +#~ "how to use the power of Pandora FMS!" #~ msgstr "" -#~ "Si esta es la primera vez que lo usas, te proponemos unos enlaces para " -#~ "aprender mĆ”s sobre Pandora FMS. La monitorizaciĆ³n puede ser abrumadora, " -#~ "Ā”pero tĆ³mate tu tiempo para aprender a usar Pandora FMS en todo su " -#~ "potencial!" +#~ "Si esta es la primera vez que lo usas, te proponemos unos enlaces para aprender " +#~ "mĆ”s sobre Pandora FMS. La monitorizaciĆ³n puede ser abrumadora, Ā”pero tĆ³mate tu " +#~ "tiempo para aprender a usar Pandora FMS en todo su potencial!" #~ msgid "Pandora FMS instance identification wizard" #~ msgstr "Asistente de identificaciĆ³n de Pandora FMS" @@ -56182,18 +54675,18 @@ msgstr "GestiĆ³n del grupo de mĆ³dulos" #~ msgstr "Ir a la web de Pandora FMS" #~ msgid "" -#~ "Your session is over. Please close your browser window to close this " -#~ "Pandora session." +#~ "Your session is over. Please close your browser window to close this Pandora " +#~ "session." #~ msgstr "" -#~ "Su sesiĆ³n ha caducado. Cierra la ventana del navegador web para cerrar esta " -#~ "sesiĆ³n de Pandora FMS." +#~ "Su sesiĆ³n ha caducado. Cierra la ventana del navegador web para cerrar esta sesiĆ³n " +#~ "de Pandora FMS." #~ msgid "" -#~ "Please fill the following information in order to configure your Pandora " -#~ "FMS instance successfully" +#~ "Please fill the following information in order to configure your Pandora FMS " +#~ "instance successfully" #~ msgstr "" -#~ "Por favor, rellena la siguiente informaciĆ³n para configurar tu cuenta de " -#~ "Pandora FMS." +#~ "Por favor, rellena la siguiente informaciĆ³n para configurar tu cuenta de Pandora " +#~ "FMS." #~ msgid "This is your last activity in Pandora FMS console" #~ msgstr "Esta es tu Ćŗltima actividad en la consola de Pandora FMS" @@ -56208,8 +54701,8 @@ msgstr "GestiĆ³n del grupo de mĆ³dulos" #~ msgstr "Icono de agente para mapas GIS" #~ msgid "" -#~ "Please, install the SNMP remote plugin (The name of the plugin must be " -#~ "snmp_remote.pl)" +#~ "Please, install the SNMP remote plugin (The name of the plugin must be snmp_remote." +#~ "pl)" #~ msgstr "" #~ "Por favor, instala el plugin remoto de SNMP (el nombre del plugin debe ser " #~ "snmp_remote.pl)" @@ -56225,8 +54718,8 @@ msgstr "GestiĆ³n del grupo de mĆ³dulos" #~ msgid "If the device is a network device, try with the SNMP Interfaces wizard" #~ msgstr "" -#~ "Si el dispositivo es un dispositivo de red, prueba con el asistente de " -#~ "interfaz SNMP." +#~ "Si el dispositivo es un dispositivo de red, prueba con el asistente de interfaz " +#~ "SNMP." #~ msgid "SNMP remote plugin is necessary for this feature" #~ msgstr "Se necesita el plugin remoto SNMP para esta funcionalidad." @@ -56275,20 +54768,19 @@ msgstr "GestiĆ³n del grupo de mĆ³dulos" #~ msgstr "DEBUG: tipo de mĆ³dulo no vĆ”lido especificado en %s:%s" #~ msgid "" -#~ "Most likely you have recently upgraded from an earlier version of Pandora " -#~ "and either
\n" +#~ "Most likely you have recently upgraded from an earlier version of Pandora and " +#~ "either
\n" #~ "\t\t\t\t1) forgot to use the database converter
\n" -#~ "\t\t\t\t2) used a bad version of the database converter (see Bugreport " -#~ "#2124706 for the solution)
\n" +#~ "\t\t\t\t2) used a bad version of the database converter (see Bugreport #2124706 " +#~ "for the solution)
\n" #~ "\t\t\t\t3) found a new bug - please report a way to duplicate this error" #~ msgstr "" -#~ "Lo mĆ”s probable es que hayas actualizado recientemente una versiĆ³n anterior " -#~ "de Pandora FMS y, o bien
\n" +#~ "Lo mĆ”s probable es que hayas actualizado recientemente una versiĆ³n anterior de " +#~ "Pandora FMS y, o bien
\n" #~ "\n" -#~ "\t \t \t \t 1) olvidaste utilizar el convertidor de la base de datos
\n" -#~ "\t \t \t \t 2) usaste una versiĆ³n incorrecta del convertidor de base de " -#~ "datos (vea el informe de error #2124706 para solucionarlo)
\n" +#~ "\t \t \t \t 1) olvidaste utilizar el convertidor de la base de datos
\n" +#~ "\t \t \t \t 2) usaste una versiĆ³n incorrecta del convertidor de base de datos (vea " +#~ "el informe de error #2124706 para solucionarlo)
\n" #~ "\t \t \t \t 3) encontraste un nuevo error. Por favor, indica una manera de " #~ "duplicar este error" @@ -56299,48 +54791,47 @@ msgstr "GestiĆ³n del grupo de mĆ³dulos" #~ msgstr "Cualquier valor por encima de este nĆŗmero es descartado." #~ msgid "The module still stores data but the alerts and events will be stop" -#~ msgstr "" -#~ "El mĆ³dulo todavĆ­a almacena datos, pero las alertas y eventos se detendrĆ”n." +#~ msgstr "El mĆ³dulo todavĆ­a almacena datos, pero las alertas y eventos se detendrĆ”n." #~ msgid "Enabled / Disabled" #~ msgstr "Habilitado/Deshabilitado" #~ msgid "" -#~ "The alert would fire when the value is not between and " +#~ "The alert would fire when the value is not between and " +#~ "" #~ msgstr "" -#~ "La alerta se dispararĆ” cuando no estĆ© entre y " -#~ "." +#~ "La alerta se dispararĆ” cuando no estĆ© entre y ." #~ msgid "" -#~ "Please check your Pandora Server setup and be sure that database " -#~ "maintenance daemon is running. It's very important to keep up-to-date " -#~ "database to get the best performance and results in Pandora" +#~ "Please check your Pandora Server setup and be sure that database maintenance " +#~ "daemon is running. It's very important to keep up-to-date database to get the best " +#~ "performance and results in Pandora" #~ msgstr "" -#~ "Por favor, asegĆŗrate de que la gestiĆ³n de la base de datos es correcta y de " -#~ "que el sistema automĆ”tico de gestiĆ³n de base de datos de Pandora FMS estĆ” " -#~ "correctamente instalado y funcionando. Es muy importante para el correcto " -#~ "funcionamiento y rendimiento de Pandora FMS." +#~ "Por favor, asegĆŗrate de que la gestiĆ³n de la base de datos es correcta y de que el " +#~ "sistema automĆ”tico de gestiĆ³n de base de datos de Pandora FMS estĆ” correctamente " +#~ "instalado y funcionando. Es muy importante para el correcto funcionamiento y " +#~ "rendimiento de Pandora FMS." #~ msgid "Descriptive name for the map" #~ msgstr "Nombre descriptivo para el mapa" #~ msgid "" -#~ "At least one map connection must be defined, it will be possible to change " -#~ "between the connections in the map" +#~ "At least one map connection must be defined, it will be possible to change between " +#~ "the connections in the map" #~ msgstr "" -#~ "Se tiene que definir por lo menos una conexiĆ³n al mapa. SerĆ” posible " -#~ "intercambiar las conexiones del mapa." +#~ "Se tiene que definir por lo menos una conexiĆ³n al mapa. SerĆ” posible intercambiar " +#~ "las conexiones del mapa." #~ msgid "Group that owns the map" #~ msgstr "Grupo propietario del mapa" #~ msgid "" -#~ "Each layer can show agents from one group or the agents added to that layer " -#~ "or both." +#~ "Each layer can show agents from one group or the agents added to that layer or " +#~ "both." #~ msgstr "" -#~ "Cada capa puede mostrar agentes de un grupo o los agentes aƱadidos a esa " -#~ "capa o ambas cosas." +#~ "Cada capa puede mostrar agentes de un grupo o los agentes aƱadidos a esa capa o " +#~ "ambas cosas." #~ msgid "It is possible to edit, delete and reorder the layers." #~ msgstr "Es posible editar, borrar y reordenar las capas." @@ -56355,11 +54846,11 @@ msgstr "GestiĆ³n del grupo de mĆ³dulos" #~ msgstr "No borrado. Selecciona un usuario existente." #~ msgid "" -#~ "In case you use an Export server you can link this module and export data " -#~ "to one these." +#~ "In case you use an Export server you can link this module and export data to one " +#~ "these." #~ msgstr "" -#~ "Si usas un Export server, puedes enlazar este mĆ³dulo y exportar los datos " -#~ "con el export server." +#~ "Si usas un Export server, puedes enlazar este mĆ³dulo y exportar los datos con el " +#~ "export server." #~ msgid "Output format" #~ msgstr "Formato de salida" @@ -56371,22 +54862,20 @@ msgstr "GestiĆ³n del grupo de mĆ³dulos" #~ msgstr "Por favor, selecciona el agente." #~ msgid "" -#~ "Are you sure to sort the items into the report?\\nThis action change the " -#~ "sorting of items into data base." +#~ "Are you sure to sort the items into the report?\\nThis action change the sorting " +#~ "of items into data base." #~ msgstr "" -#~ "ĀæEstĆ”s seguro de que quieres ordenar los elementos en el informe?\\n Esta " -#~ "acciĆ³n cambiarĆ” el orden de los elementos en la base de datos." +#~ "ĀæEstĆ”s seguro de que quieres ordenar los elementos en el informe?\\n Esta acciĆ³n " +#~ "cambiarĆ” el orden de los elementos en la base de datos." #~ msgid "" -#~ "Your report has been planned, and the system will email you a PDF with the " -#~ "report as soon as its finished" +#~ "Your report has been planned, and the system will email you a PDF with the report " +#~ "as soon as its finished" #~ msgstr "" -#~ "El informe ha sido planificado y el sistema enviarĆ” un email con el informe " -#~ "en PDF." +#~ "El informe ha sido planificado y el sistema enviarĆ” un email con el informe en PDF." #~ msgid "The parent relationships in Pandora will be drawn in the map." -#~ msgstr "" -#~ "Las relaciones de jerarquĆ­a en Pandora FMS serĆ”n dibujadas en el mapa." +#~ msgstr "Las relaciones de jerarquĆ­a en Pandora FMS serĆ”n dibujadas en el mapa." #~ msgid "Error creating recon task" #~ msgstr "Error al crear la tarea recon" @@ -56399,8 +54888,8 @@ msgstr "GestiĆ³n del grupo de mĆ³dulos" #~ msgid "Recon-task name already exists and incorrect format in Subnet field" #~ msgstr "" -#~ "El nombre de tarea recon ya existe y el formato es incorrecto en el campo " -#~ "de Subred." +#~ "El nombre de tarea recon ya existe y el formato es incorrecto en el campo de " +#~ "Subred." #~ msgid "Wrong format in Subnet field" #~ msgstr "Formato incorrecto en el campo Subret" @@ -56415,18 +54904,18 @@ msgstr "GestiĆ³n del grupo de mĆ³dulos" #~ msgstr "No hay ninguna tarea recon configurada" #~ msgid "" -#~ "By default, in Windows, Pandora FMS only support Standard network sweep, " -#~ "not custom scripts" +#~ "By default, in Windows, Pandora FMS only support Standard network sweep, not " +#~ "custom scripts" #~ msgstr "" -#~ "Por defecto, en Windows, solo Standard Network Sweep es compatible en " -#~ "Pandora FMS, y no los scripts personalizados." +#~ "Por defecto, en Windows, solo Standard Network Sweep es compatible en Pandora FMS, " +#~ "y no los scripts personalizados." #~ msgid "" -#~ "You must select a Recon Server for the Task, otherwise the Recon Task will " -#~ "never run" +#~ "You must select a Recon Server for the Task, otherwise the Recon Task will never " +#~ "run" #~ msgstr "" -#~ "Debe seleccionar un Servidor Recon para la tarea, si no la tarea recon " -#~ "nunca se ejecutarĆ”." +#~ "Debe seleccionar un Servidor Recon para la tarea, si no la tarea recon nunca se " +#~ "ejecutarĆ”." #~ msgid "Choose if the discovery of a new system creates an incident or not." #~ msgstr "Elegir si al encontrar un nuevo sistema se crea una incidencia o no." @@ -56435,9 +54924,9 @@ msgstr "GestiĆ³n del grupo de mĆ³dulos" #~ "Ports defined like: 80 or 80,443,512 or even 0-1024 (Like Nmap command line " #~ "format). If dont want to do a sweep using portscan, left it in blank" #~ msgstr "" -#~ "Puertos definidos como: 80 o 80443512 o incluso 0-1024 (igual que en la " -#~ "lĆ­nea de comandos de Nmap). Si no es necesario hacer una detecciĆ³n en " -#~ "funciĆ³n de puertos TCP, conviene dejarlo en blanco." +#~ "Puertos definidos como: 80 o 80443512 o incluso 0-1024 (igual que en la lĆ­nea de " +#~ "comandos de Nmap). Si no es necesario hacer una detecciĆ³n en funciĆ³n de puertos " +#~ "TCP, conviene dejarlo en blanco." #~ msgid "Recon script creation" #~ msgstr "CreaciĆ³n del script recon" @@ -56473,40 +54962,38 @@ msgstr "GestiĆ³n del grupo de mĆ³dulos" #~ msgstr "SO actualizado correctamente" #~ msgid "" -#~ "Set a value too high cause a slowdown on console and a performance penalty " -#~ "in the system." +#~ "Set a value too high cause a slowdown on console and a performance penalty in the " +#~ "system." #~ msgstr "" -#~ "Establecer un valor demasiado alto causa una ralentizaciĆ³n en la consola y " -#~ "un problema de rendimiento en el sistema." +#~ "Establecer un valor demasiado alto causa una ralentizaciĆ³n en la consola y un " +#~ "problema de rendimiento en el sistema." #~ msgid "" -#~ "If realtime statistics are disabled, statistics interval resfresh will be " -#~ "set here." +#~ "If realtime statistics are disabled, statistics interval resfresh will be set here." #~ msgstr "" -#~ "Si se deshabilitan las estadĆ­sticas en tiempo real, el intervalo de " -#~ "refresco de las estadĆ­sticas serĆ” definido aquĆ­." +#~ "Si se deshabilitan las estadĆ­sticas en tiempo real, el intervalo de refresco de " +#~ "las estadĆ­sticas serĆ” definido aquĆ­." #~ msgid "" -#~ "This number is the maximum number of files in attachment directory. If this " -#~ "number is reached then a warning message will appear in the header " -#~ "notification space." +#~ "This number is the maximum number of files in attachment directory. If this number " +#~ "is reached then a warning message will appear in the header notification space." #~ msgstr "" -#~ "NĀŗ mĆ”ximo de archivos en el directorio de adjuntos. Si se alcanza el nĆŗmero " -#~ "se mostrarĆ” un mensaje en el Ć”rea de notificaciones de la cabecera." +#~ "NĀŗ mĆ”ximo de archivos en el directorio de adjuntos. Si se alcanza el nĆŗmero se " +#~ "mostrarĆ” un mensaje en el Ć”rea de notificaciones de la cabecera." #~ msgid "" -#~ "Enable this option if you want to fallback to local authentication when " -#~ "remote (ldap etc...) authentication failed." +#~ "Enable this option if you want to fallback to local authentication when remote " +#~ "(ldap etc...) authentication failed." #~ msgstr "" -#~ "Activa esta opciĆ³n si quieres volver a la autentificaciĆ³n local cuando " -#~ "falla la autentificaciĆ³n remota (LDAP, etc.)." +#~ "Activa esta opciĆ³n si quieres volver a la autentificaciĆ³n local cuando falla la " +#~ "autentificaciĆ³n remota (LDAP, etc.)." #~ msgid "" -#~ "If this option is enabled, the users can use double authentication with " -#~ "their accounts" +#~ "If this option is enabled, the users can use double authentication with their " +#~ "accounts" #~ msgstr "" -#~ "Si esta opciĆ³n estĆ” activada, los usuarios pueden usar la doble " -#~ "autentificaciĆ³n con sus cuentas." +#~ "Si esta opciĆ³n estĆ” activada, los usuarios pueden usar la doble autentificaciĆ³n " +#~ "con sus cuentas." #~ msgid "e.g., 18080" #~ msgstr "ej. 18080" @@ -56515,51 +55002,50 @@ msgstr "GestiĆ³n del grupo de mĆ³dulos" #~ msgstr "Directorio en el que se almacena la configuraciĆ³n remota del agente" #~ msgid "" -#~ "Path where you put your cert and name of this cert. Remember your cert only " -#~ "in .pem extension." +#~ "Path where you put your cert and name of this cert. Remember your cert only in ." +#~ "pem extension." #~ msgstr "" #~ "Ruta donde se ubica el certificado y el nombre del mismo. Recuerda que el " #~ "certificado debe ir Ćŗnicamente con la extensiĆ³n .pem" #~ msgid "" -#~ "If SSL is not properly configured you will lose access to Pandora FMS " -#~ "Console. Do you want to continue?" +#~ "If SSL is not properly configured you will lose access to Pandora FMS Console. Do " +#~ "you want to continue?" #~ msgstr "" #~ "Si no se ha configurado el SSL correctamente, podrĆ­as perder el acceso a la " #~ "consola de Pandora FMS. ĀæQuieres continuar?" #~ msgid "" -#~ "If set to yes no events or alerts will be generated, but agents will " -#~ "continue receiving data." +#~ "If set to yes no events or alerts will be generated, but agents will continue " +#~ "receiving data." #~ msgstr "" -#~ "Si se configura como afirmativo ningĆŗn evento o alerta se generarĆ”, pero " -#~ "los agentes continuarĆ”n recibiendo datos." +#~ "Si se configura como afirmativo ningĆŗn evento o alerta se generarĆ”, pero los " +#~ "agentes continuarĆ”n recibiendo datos." #~ msgid "" -#~ "Set this value when your PandoraFMS across inverse proxy or for example " -#~ "with mod_proxy of Apache." +#~ "Set this value when your PandoraFMS across inverse proxy or for example with " +#~ "mod_proxy of Apache." #~ msgstr "" -#~ "Fija este valor cuando Pandora FMS llegue al proxy inverso o por ejemplo " -#~ "con mod_proxy de Apache." +#~ "Fija este valor cuando Pandora FMS llegue al proxy inverso o por ejemplo con " +#~ "mod_proxy de Apache." #~ msgid "" -#~ "When it is set as \"yes\" in some important sections check if the user have " -#~ "gone from url Pandora." +#~ "When it is set as \"yes\" in some important sections check if the user have gone " +#~ "from url Pandora." #~ msgstr "" -#~ "Al estar activada, se comprobarĆ” si el usuario proviene de la URL de la " -#~ "consola de Pandora FMS." +#~ "Al estar activada, se comprobarĆ” si el usuario proviene de la URL de la consola de " +#~ "Pandora FMS." #~ msgid "" -#~ "Access to this page is restricted to authorized users only, please contact " -#~ "system administrator if you need assistance.

\n" -#~ "\tPlease know that all attempts to access this page are recorded in " -#~ "security logs of Pandora System Database" +#~ "Access to this page is restricted to authorized users only, please contact system " +#~ "administrator if you need assistance.

\n" +#~ "\tPlease know that all attempts to access this page are recorded in security logs " +#~ "of Pandora System Database" #~ msgstr "" -#~ "El acceso a esta pƔgina estƔ restringido solo a usuarios autorizados. Por " -#~ "favor, contacta con el administrador del sistema si necesitas ayuda.
" -#~ "
\n" -#~ "\tRecuerda que todos los accesos a esta pƔgina se registran en los logs de " -#~ "la base de datos de Pandora FMS." +#~ "El acceso a esta pƔgina estƔ restringido solo a usuarios autorizados. Por favor, " +#~ "contacta con el administrador del sistema si necesitas ayuda.

\n" +#~ "\tRecuerda que todos los accesos a esta pĆ”gina se registran en los logs de la base " +#~ "de datos de Pandora FMS." #~ msgid "Directory where audit log is stored." #~ msgstr "Directorio donde se guarda el log" @@ -56585,99 +55071,94 @@ msgstr "GestiĆ³n del grupo de mĆ³dulos" #~ msgstr "Error de inicio de sesiĆ³n" #~ msgid "" -#~ "Access to this page is restricted to authorized users only, please contact " -#~ "system administrator if you need assistance.

Please know that all " -#~ "attempts to access this page are recorded in security logs of Pandora " -#~ "System Database" +#~ "Access to this page is restricted to authorized users only, please contact system " +#~ "administrator if you need assistance.

Please know that all attempts to " +#~ "access this page are recorded in security logs of Pandora System Database" #~ msgstr "" -#~ "El acceso a esta pƔgina estƔ restringido a usuarios autorizados. Contacta " -#~ "con el administrador del sistema si necesitas ayuda.

Todos los " -#~ "intentos de acceso a esta pƔgina son grabados en los logs de seguridad de " -#~ "Pandora FMS." +#~ "El acceso a esta pƔgina estƔ restringido a usuarios autorizados. Contacta con el " +#~ "administrador del sistema si necesitas ayuda.

Todos los intentos de acceso " +#~ "a esta pĆ”gina son grabados en los logs de seguridad de Pandora FMS." #~ msgid "" -#~ "The dir of custom logos is in your www Pandora Console in \"images/" -#~ "custom_logo\". You can upload more files (ONLY JPEG) in upload tool in " -#~ "console." +#~ "The dir of custom logos is in your www Pandora Console in \"images/custom_logo\". " +#~ "You can upload more files (ONLY JPEG) in upload tool in console." #~ msgstr "" -#~ "El directorio de logos personalizados estĆ” en tu www Pandora consola en " -#~ "\"images / custom_logo\". Puedes cargar mĆ”s archivos (solo JPEG) en la " -#~ "herramienta de carga de la consola." +#~ "El directorio de logos personalizados estĆ” en tu www Pandora consola en \"images / " +#~ "custom_logo\". Puedes cargar mĆ”s archivos (solo JPEG) en la herramienta de carga " +#~ "de la consola." #~ msgid "The planned downtimes created in the past will affect the SLA reports" #~ msgstr "" -#~ "Las paradas planificadas creadas con fecha anterior a la actual afectarĆ”n a " -#~ "los informes SLA." +#~ "Las paradas planificadas creadas con fecha anterior a la actual afectarĆ”n a los " +#~ "informes SLA." #~ msgid "" -#~ "Configuration of our clippy, 'full mode' show the icon in the header and " -#~ "the contextual helps and it is noise, 'on demand' it is equal to full but " -#~ "it is not noise and 'expert' the icons in the header and the context is not." +#~ "Configuration of our clippy, 'full mode' show the icon in the header and the " +#~ "contextual helps and it is noise, 'on demand' it is equal to full but it is not " +#~ "noise and 'expert' the icons in the header and the context is not." #~ msgstr "" -#~ "ConfiguraciĆ³n del asistente. El \"modo total\" muestra el icono en la " -#~ "cabecera y en las ayudas contextuales con sonido. \"Bajo demanda\" es igual " -#~ "que el modo total pero sin sonido. En el \"modo experto\" no se mostrarĆ”n " -#~ "los iconos ni en la cabecera ni como ayuda contextual." +#~ "ConfiguraciĆ³n del asistente. El \"modo total\" muestra el icono en la cabecera y " +#~ "en las ayudas contextuales con sonido. \"Bajo demanda\" es igual que el modo total " +#~ "pero sin sonido. En el \"modo experto\" no se mostrarĆ”n los iconos ni en la " +#~ "cabecera ni como ayuda contextual." #~ msgid "" -#~ "If Enterprise ACL System is enabled without rules you will lose access to " -#~ "Pandora FMS Console (even admin). Do you want to continue?" +#~ "If Enterprise ACL System is enabled without rules you will lose access to Pandora " +#~ "FMS Console (even admin). Do you want to continue?" #~ msgstr "" -#~ "Si se activa el sistema ACL Enterprise sin reglas, perderĆ”s el acceso a la " -#~ "consola de Pandora FMS (incluso siendo administrador). ĀæDeseas continuar?" +#~ "Si se activa el sistema ACL Enterprise sin reglas, perderĆ”s el acceso a la consola " +#~ "de Pandora FMS (incluso siendo administrador). ĀæDeseas continuar?" #~ msgid "Directory where netflow data will be stored." #~ msgstr "Directorio donde los datos Netflow se almacenarĆ”n" #~ msgid "" -#~ "Maximum number of points that a netflow area chart will display. The higher " -#~ "the resolution the performance. Values between 50 and 100 are recommended." +#~ "Maximum number of points that a netflow area chart will display. The higher the " +#~ "resolution the performance. Values between 50 and 100 are recommended." #~ msgstr "" -#~ "MĆ”ximo nĆŗmero de puntos que una tabla de Ć”rea Netflow puede mostrar. Cuanto " -#~ "mĆ”s alta sea la resoluciĆ³n, mejor serĆ” la ejecuciĆ³n. Se recomiendan los " -#~ "valores entre 50 y 100." +#~ "MĆ”ximo nĆŗmero de puntos que una tabla de Ć”rea Netflow puede mostrar. Cuanto mĆ”s " +#~ "alta sea la resoluciĆ³n, mejor serĆ” la ejecuciĆ³n. Se recomiendan los valores entre " +#~ "50 y 100." #~ msgid "Sets the maximum lifetime for netflow data in days." #~ msgstr "Fijar el tiempo mĆ”ximo para los datos Netflow en dĆ­as" #~ msgid "" -#~ "This enabling this, you get a label with agent name in GIS maps. If you " -#~ "have lots of agents in the map, will be unreadable. Disabled by default." +#~ "This enabling this, you get a label with agent name in GIS maps. If you have lots " +#~ "of agents in the map, will be unreadable. Disabled by default." #~ msgstr "" -#~ "Al habilitarlo, se obtiene una etiqueta con el nombre del agente en los " -#~ "mapas GIS. Si hay muchos agentes en el mapa, podrĆ­a ser ilegible. " -#~ "Deshabilitado por defecto." +#~ "Al habilitarlo, se obtiene una etiqueta con el nombre del agente en los mapas GIS. " +#~ "Si hay muchos agentes en el mapa, podrĆ­a ser ilegible. Deshabilitado por defecto." #~ msgid "Agent icon for GIS Maps. If set to \"none\", group icon will be used" #~ msgstr "" -#~ "Icono de agente para mapas GIS. Si el valor es \"none\", se usarĆ” el icono " -#~ "del grupo." +#~ "Icono de agente para mapas GIS. Si el valor es \"none\", se usarĆ” el icono del " +#~ "grupo." #~ msgid "" -#~ "When the agent name have a lot of characters, in some places in Pandora " +#~ "When the agent name have a lot of characters, in some places in Pandora Console it " +#~ "is necesary truncate to N characters." +#~ msgstr "" +#~ "Cuando el nombre del agente tenga muchos caracteres, en algunos lugares de la " +#~ "consola serĆ” necesario truncar su longitud a N caracteres." + +#~ msgid "" +#~ "When the module name have a lot of characters, in some places in Pandora Console " +#~ "it is necesary truncate to N characters." +#~ msgstr "" +#~ "Cuando el nombre del mĆ³dulo sea muy largo, en algunos lugares de la consola serĆ” " +#~ "necesario truncar su longitud a N caracteres." + +#~ msgid "" +#~ "When the description name have a lot of characters, in some places in Pandora " #~ "Console it is necesary truncate to N characters." #~ msgstr "" -#~ "Cuando el nombre del agente tenga muchos caracteres, en algunos lugares de " +#~ "Cuando el texto de la descripciĆ³n tiene muchos caracteres, en algunos lugares de " #~ "la consola serĆ” necesario truncar su longitud a N caracteres." -#~ msgid "" -#~ "When the module name have a lot of characters, in some places in Pandora " -#~ "Console it is necesary truncate to N characters." -#~ msgstr "" -#~ "Cuando el nombre del mĆ³dulo sea muy largo, en algunos lugares de la consola " -#~ "serĆ” necesario truncar su longitud a N caracteres." - -#~ msgid "" -#~ "When the description name have a lot of characters, in some places in " -#~ "Pandora Console it is necesary truncate to N characters." -#~ msgstr "" -#~ "Cuando el texto de la descripciĆ³n tiene muchos caracteres, en algunos " -#~ "lugares de la consola serĆ” necesario truncar su longitud a N caracteres." - #~ msgid "This enabling this, max, min and avg values will be shown with units." #~ msgstr "" -#~ "Si activas esta opciĆ³n, el mĆ”ximo, el mĆ­nimo y la media aparecerĆ”n con " -#~ "unidades." +#~ "Si activas esta opciĆ³n, el mĆ”ximo, el mĆ­nimo y la media aparecerĆ”n con unidades." #~ msgid "Graph resolution (1-low, 5-high)" #~ msgstr "ResoluciĆ³n grĆ”fica (1 = baja, 5 = alta)" @@ -56685,52 +55166,49 @@ msgstr "GestiĆ³n del grupo de mĆ³dulos" #~ msgid "Interactive charts" #~ msgstr "GrĆ”ficos interactivos" -#~ msgid "" -#~ "This interval will affect to the lines between elements on the Visual " -#~ "Console" -#~ msgstr "" -#~ "Este intervalo afectarĆ” a las lĆ­neas entre elementos en la consola visual" +#~ msgid "This interval will affect to the lines between elements on the Visual Console" +#~ msgstr "Este intervalo afectarĆ” a las lĆ­neas entre elementos en la consola visual" #~ msgid "Show QR Code icon in the header" #~ msgstr "Mostrar icono del cĆ³digo QR en la cabecera" #, php-format #~ msgid "" -#~ "Your PHP has set maximum allowed size for uploaded files limit in %s. For " -#~ "avoid problems with big updates please set to 100M" +#~ "Your PHP has set maximum allowed size for uploaded files limit in %s. For avoid " +#~ "problems with big updates please set to 100M" #~ msgstr "" -#~ "Tu PHP ha establecido el lĆ­mite del tamaƱo mĆ”ximo permitido para la sĆŗbida " -#~ "de documentos en %s. Para evitar problemas en caso de grandes cambios por " -#~ "favor configĆŗralo en 100M." +#~ "Tu PHP ha establecido el lĆ­mite del tamaƱo mĆ”ximo permitido para la sĆŗbida de " +#~ "documentos en %s. Para evitar problemas en caso de grandes cambios por favor " +#~ "configĆŗralo en 100M." #, php-format #~ msgid "" -#~ "Your PHP has set post parameter max size limit in %s. For avoid problems " -#~ "with big updates please set to 100M" +#~ "Your PHP has set post parameter max size limit in %s. For avoid problems with big " +#~ "updates please set to 100M" #~ msgstr "" -#~ "Tu PHP ha establecido el parĆ”metro lĆ­mite del tamaƱo mĆ”ximo en %s. Para " -#~ "evitar problemas en caso de grandes cambios por favor configĆŗralo en 100M." +#~ "Tu PHP ha establecido el parĆ”metro lĆ­mite del tamaƱo mĆ”ximo en %s. Para evitar " +#~ "problemas en caso de grandes cambios por favor configĆŗralo en 100M." #, php-format #~ msgid "" -#~ "Your PHP has set memory limit in %s. For avoid problems with big updates " -#~ "please set to 500M" +#~ "Your PHP has set memory limit in %s. For avoid problems with big updates please " +#~ "set to 500M" #~ msgstr "" -#~ "Tu PHP tiene configurado el lĆ­mite de memoria en %s. Para evitar problemas " -#~ "con actualizaciones de gran tamaƱo, por favor configĆŗralo en 500M." +#~ "Tu PHP tiene configurado el lĆ­mite de memoria en %s. Para evitar problemas con " +#~ "actualizaciones de gran tamaƱo, por favor configĆŗralo en 500M." #~ msgid "Profiles defined in Pandora" #~ msgstr "Perfiles definidos en Pandora FMS" #~ msgid "" #~ "User can customize the home page. By default, will display 'Agent Detail'. " -#~ "Example: Select 'Other' and type sec=estado&sec2=operation/agentes/" -#~ "estado_agente to show agent detail view" +#~ "Example: Select 'Other' and type sec=estado&sec2=operation/agentes/estado_agente " +#~ "to show agent detail view" #~ msgstr "" #~ "El usuario puede personalizar la pĆ”gina principal. Por defecto, desplegarĆ” " #~ "\"Detalle del Agente\". Ejemplo: selecciona \"Otro\" e introduce " -#~ "sec=estado&sec2=operation/agentes/estado_agente para mostrar la vista " -#~ "detallada del agente." +#~ "sec=estado&sec2=operation/agentes/estado_agente para mostrar la vista detallada " +#~ "del agente." #~ msgid "Users defined in Pandora" #~ msgstr "Usuarios definidos en Pandora FMS" @@ -56761,156 +55239,131 @@ msgstr "GestiĆ³n del grupo de mĆ³dulos" #~ msgid "Error updating network module. Module name cannot be left blank." #~ msgstr "" -#~ "Error al actualizar el mĆ³dulo de red. El nombre del mĆ³dulo no puede dejarse " -#~ "en blanco." +#~ "Error al actualizar el mĆ³dulo de red. El nombre del mĆ³dulo no puede dejarse en " +#~ "blanco." #~ msgid "Error updating network module. Id_module exists in the new agent." #~ msgstr "" -#~ "Error al actualizar el mĆ³dulo de red. El id_module existe en el nuevo " -#~ "agente." +#~ "Error al actualizar el mĆ³dulo de red. El id_module existe en el nuevo agente." #~ msgid "Error in creation plugin module." #~ msgstr "Error al crear el mĆ³dulo plugin" #~ msgid "Error in creation synthetic module. Module_name cannot be left blank." #~ msgstr "" -#~ "Error al crear un mĆ³dulo sintĆ©tico. El nombre del mĆ³dulo no puede estar " -#~ "vacĆ­o." +#~ "Error al crear un mĆ³dulo sintĆ©tico. El nombre del mĆ³dulo no puede estar vacĆ­o." #~ msgid "Error updating plugin module. Id_module cannot be left blank." #~ msgstr "" -#~ "Error al actualizar el mĆ³dulo del plugin. Id_module no se puede dejar en " -#~ "blanco." +#~ "Error al actualizar el mĆ³dulo del plugin. Id_module no se puede dejar en blanco." #~ msgid "Error updating plugin module. Id_module exists in the new agent." -#~ msgstr "" -#~ "Error al actualizar el mĆ³dulo plugin. Id_module existe en el nuevo agente." +#~ msgstr "Error al actualizar el mĆ³dulo plugin. Id_module existe en el nuevo agente." #~ msgid "Error in creation SNMP module. Module_name cannot be left blank." #~ msgstr "Error al crear el mĆ³dulo SNMP. Id_module no se puede dejar en blanco." -#~ msgid "" -#~ "Error in creation SNMP module. Invalid id_module_type for a SNMP module." +#~ msgid "Error in creation SNMP module. Invalid id_module_type for a SNMP module." #~ msgstr "Error al crear el mĆ³dulo SNMP. Id_module_type" #~ msgid "Error updating data module. Id_module exists in the new agent." #~ msgstr "" -#~ "Error al actualizar los datos del mĆ³dulo. Id_module existe en el nuevo " -#~ "agente." +#~ "Error al actualizar los datos del mĆ³dulo. Id_module existe en el nuevo agente." #~ msgid "Error updating data module. Id_module cannot be left blank." #~ msgstr "" -#~ "Error al actualizar los datos del mĆ³dulo. Id_module no se puede dejar en " -#~ "blanco." +#~ "Error al actualizar los datos del mĆ³dulo. Id_module no se puede dejar en blanco." #~ msgid "Error in creation data module." #~ msgstr "Error al crear datos del mĆ³dulo" #~ msgid "Error updating data module in policy. Module type is not network type." #~ msgstr "" -#~ "Error al actualizar datos de mĆ³dulo en polĆ­tica. El tipo de mĆ³dulo no es de " -#~ "red." +#~ "Error al actualizar datos de mĆ³dulo en polĆ­tica. El tipo de mĆ³dulo no es de red." -#~ msgid "" -#~ "Error adding data module to policy. The module is already in the policy." +#~ msgid "Error adding data module to policy. The module is already in the policy." #~ msgstr "" -#~ "Error al aƱadir los datos de mĆ³dulo a la polĆ­tica. El mĆ³dulo ya existe en " -#~ "la polĆ­tica." +#~ "Error al aƱadir los datos de mĆ³dulo a la polĆ­tica. El mĆ³dulo ya existe en la " +#~ "polĆ­tica." #~ msgid "Error adding data module to policy." #~ msgstr "Error al aƱadir los datos de mĆ³dulo a la polĆ­tica" #~ msgid "" -#~ "Error creating network component. Incorrect value for Network component " -#~ "type field." +#~ "Error creating network component. Incorrect value for Network component type field." #~ msgstr "" #~ "Error al crear componente de red. Valor incorrecto para el campo de tipo de " #~ "componente de red." #~ msgid "" -#~ "Error creating network component. Network component name cannot be left " -#~ "blank." +#~ "Error creating network component. Network component name cannot be left blank." #~ msgstr "" -#~ "Error al crear el componente de red. El nombre del componente de red no " -#~ "puede dejarse en blanco." +#~ "Error al crear el componente de red. El nombre del componente de red no puede " +#~ "dejarse en blanco." #~ msgid "Error in creation SNMP module." #~ msgstr "Error al crear mĆ³dulo SNMP" #~ msgid "Error updating SNMP module. Id_module cannot be left blank." -#~ msgstr "" -#~ "Error al actualizar el mĆ³dulo SNMP. Id_module no se puede dejar en blanco." +#~ msgstr "Error al actualizar el mĆ³dulo SNMP. Id_module no se puede dejar en blanco." -#~ msgid "" -#~ "Error creating network component. This network component already exists." +#~ msgid "Error creating network component. This network component already exists." #~ msgstr "Error al crear componente de red. El componente de red ya existe." #~ msgid "" -#~ "Error creating network component. Network component group cannot be left " -#~ "blank." +#~ "Error creating network component. Network component group cannot be left blank." #~ msgstr "" -#~ "Error al crear componente de red. El grupo del componente de red no puede " -#~ "estar vacĆ­o." +#~ "Error al crear componente de red. El grupo del componente de red no puede estar " +#~ "vacĆ­o." -#~ msgid "" -#~ "Error creating plugin component. Plugin component name cannot be left blank." +#~ msgid "Error creating plugin component. Plugin component name cannot be left blank." #~ msgstr "" -#~ "Error al crear componente plugin. El nombre del componente plugin no puede " -#~ "estar en blanco." +#~ "Error al crear componente plugin. El nombre del componente plugin no puede estar " +#~ "en blanco." #~ msgid "Error creating plugin component. This plugin component already exists." #~ msgstr "Error al crear componente plugin. El componente plugin ya existe." -#~ msgid "" -#~ "Error creating plugin component. Plugin component group cannot be left " -#~ "blank." +#~ msgid "Error creating plugin component. Plugin component group cannot be left blank." #~ msgstr "" -#~ "Error al crear componente plugin. El grupo del componente plugin no puede " -#~ "estar en blanco." +#~ "Error al crear componente plugin. El grupo del componente plugin no puede estar en " +#~ "blanco." -#~ msgid "" -#~ "Error creating SNMP component. Incorrect value for Snmp component type " -#~ "field." +#~ msgid "Error creating SNMP component. Incorrect value for Snmp component type field." #~ msgstr "" #~ "Error al crear componente SNMP. Valor incorrecto para el tipo de campo del " #~ "componente SNMP." -#~ msgid "" -#~ "Error creating SNMP component. SNMP component name cannot be left blank." +#~ msgid "Error creating SNMP component. SNMP component name cannot be left blank." #~ msgstr "" -#~ "Error al crear componente SNMP. El nombre del componente SNMP no puede " -#~ "estar en blanco." +#~ "Error al crear componente SNMP. El nombre del componente SNMP no puede estar en " +#~ "blanco." #~ msgid "Error creating plugin component. Incorrect value for Id plugin." -#~ msgstr "" -#~ "Error al crear componente plugin. Valor incorrecto para el ID del plugin." +#~ msgstr "Error al crear componente plugin. Valor incorrecto para el ID del plugin." -#~ msgid "" -#~ "Error creating SNMP component. Snmp component group cannot be left blank." +#~ msgid "Error creating SNMP component. Snmp component group cannot be left blank." #~ msgstr "" -#~ "Error al crear componente SNMP. El grupo del componente SNMP no puede estar " -#~ "en blanco." +#~ "Error al crear componente SNMP. El grupo del componente SNMP no puede estar en " +#~ "blanco." #~ msgid "Error creating local component. This local component already exists." #~ msgstr "Error al crear el componente local. El componente local ya existe." #~ msgid "Error creating alert template. Template name cannot be left blank." #~ msgstr "" -#~ "Error al crear la plantilla de alerta. El nombre de plantilla no puede " -#~ "estar en blanco." +#~ "Error al crear la plantilla de alerta. El nombre de plantilla no puede estar en " +#~ "blanco." -#~ msgid "" -#~ "Error getting module value from all agents. Module name cannot be left " -#~ "blank." +#~ msgid "Error getting module value from all agents. Module name cannot be left blank." #~ msgstr "" -#~ "Error al obtener el valor del mĆ³dulo para todos los agentes. El nombre del " -#~ "mĆ³dulo no puede estar en blanco." +#~ "Error al obtener el valor del mĆ³dulo para todos los agentes. El nombre del mĆ³dulo " +#~ "no puede estar en blanco." -#~ msgid "" -#~ "Error creating local component. Local component group cannot be left blank." +#~ msgid "Error creating local component. Local component group cannot be left blank." #~ msgstr "" -#~ "Error al crear el componente local. El grupo del componente local no puede " -#~ "estar en blanco." +#~ "Error al crear el componente local. El grupo del componente local no puede estar " +#~ "en blanco." #~ msgid "Error creating local component." #~ msgstr "Error al crear el componente local" @@ -56918,15 +55371,13 @@ msgstr "GestiĆ³n del grupo de mĆ³dulos" #~ msgid "Error creating SNMP component. This SNMP component already exists." #~ msgstr "Error al crear componente SNMP. El componente SNMP ya existe." -#~ msgid "" -#~ "Error creating local component. Local component name cannot be left blank." +#~ msgid "Error creating local component. Local component name cannot be left blank." #~ msgstr "" -#~ "Error al crear componente local. El nombre del componente local no puede " -#~ "estar en blanco." +#~ "Error al crear componente local. El nombre del componente local no puede estar en " +#~ "blanco." #~ msgid "Error in creation data module. Module_name cannot be left blank." -#~ msgstr "" -#~ "Error al crear los datos del mĆ³dulo. Module_name no puede dejarse en blanco." +#~ msgstr "Error al crear los datos del mĆ³dulo. Module_name no puede dejarse en blanco." #~ msgid "Correct deleting of alert template." #~ msgstr "Plantilla de alerta borrada correctamente" @@ -56936,15 +55387,13 @@ msgstr "GestiĆ³n del grupo de mĆ³dulos" #~ msgid "Error updating alert template. Id_template cannot be left blank." #~ msgstr "" -#~ "Error al actualizar plantilla de alerta. Id_template no puede estar en " -#~ "blanco." +#~ "Error al actualizar plantilla de alerta. Id_template no puede estar en blanco." #~ msgid "Error creating alert template." #~ msgstr "Error al crear plantilla de alerta" #~ msgid "Error deleting alert template. Id_template cannot be left blank." -#~ msgstr "" -#~ "Error al borrar plantilla de alerta. Id_template no puede dejarse en blanco." +#~ msgstr "Error al borrar plantilla de alerta. Id_template no puede dejarse en blanco." #~ msgid "Correct updating of alert template" #~ msgstr "Plantilla de alerta actualizada correctamente" @@ -56968,16 +55417,13 @@ msgstr "GestiĆ³n del grupo de mĆ³dulos" #~ msgstr "Error al obtener plugins" #~ msgid "Error assigning module to template. Id_template cannot be left blank." -#~ msgstr "" -#~ "Error al asignar mĆ³dulo a plantilla. Id_template no puede estar en blanco." +#~ msgstr "Error al asignar mĆ³dulo a plantilla. Id_template no puede estar en blanco." #~ msgid "Error assigning module to template. Id_module cannot be left blank." -#~ msgstr "" -#~ "Error al asignar mĆ³dulo a plantilla. Id_module no puede estar en blanco." +#~ msgstr "Error al asignar mĆ³dulo a plantilla. Id_module no puede estar en blanco." #~ msgid "Error assigning module to template. Id_agent cannot be left blank." -#~ msgstr "" -#~ "Error al asignar mĆ³dulo a plantilla. Id_agent no puede estar en blanco." +#~ msgstr "Error al asignar mĆ³dulo a plantilla. Id_agent no puede estar en blanco." #~ msgid "Error creating module from network component. Error creating module." #~ msgstr "Error al crear mĆ³dulo desde componente de red" @@ -56994,190 +55440,159 @@ msgstr "GestiĆ³n del grupo de mĆ³dulos" #~ msgid "Error assigning module to template." #~ msgstr "Error al asignar mĆ³dulo a plantilla" -#~ msgid "" -#~ "Error deleting module template. Id_module_template cannot be left blank." +#~ msgid "Error deleting module template. Id_module_template cannot be left blank." #~ msgstr "" -#~ "Error al borrar mĆ³dulo de plantilla. Id_module_template no puede estar en " -#~ "blanco." +#~ "Error al borrar mĆ³dulo de plantilla. Id_module_template no puede estar en blanco." #~ msgid "Error validating all alert policies." #~ msgstr "Error al validar todas las alertas de polĆ­ticas" #~ msgid "Error adding agent to policy. Id_agent cannot be left blank." -#~ msgstr "" -#~ "Error al aƱadir agente a la polĆ­tica. Id_agent no puede estar en blanco." +#~ msgstr "Error al aƱadir agente a la polĆ­tica. Id_agent no puede estar en blanco." #~ msgid "Error validate all policy alerts. Failed " #~ msgstr "Error validar todas las alertas de polĆ­ticas " #~ msgid "Error adding agent to policy. Id_policy cannot be left blank." -#~ msgstr "" -#~ "Error al aƱadir agente a la polĆ­tica. Id_policy no puede estar en blanco." +#~ msgstr "Error al aƱadir agente a la polĆ­tica. Id_policy no puede estar en blanco." #~ msgid "Correct validating of all policy alerts." #~ msgstr "Todas las alertas de polĆ­ticas se validaron correctamente" #~ msgid "Error stopping downtime. Id_downtime cannot be left blank." #~ msgstr "" -#~ "Error al parar el tiempo de inactividad. Id_downtime no puede estar en " -#~ "blanco." +#~ "Error al parar el tiempo de inactividad. Id_downtime no puede estar en blanco." -#~ msgid "" -#~ "Error updating data module in policy. Id_policy_module cannot be left blank." +#~ msgid "Error updating data module in policy. Id_policy_module cannot be left blank." #~ msgstr "" -#~ "Error al actualizar datos del mĆ³dulo en la polĆ­tica. Id_policy_module no " -#~ "puede estar en blanco." +#~ "Error al actualizar datos del mĆ³dulo en la polĆ­tica. Id_policy_module no puede " +#~ "estar en blanco." #~ msgid "Error updating data module in policy. Id_policy cannot be left blank." #~ msgstr "" -#~ "Error al actualizar los datos del mĆ³dulo en la polĆ­tica. Id_policy no puede " -#~ "estar en blanco." +#~ "Error al actualizar los datos del mĆ³dulo en la polĆ­tica. Id_policy no puede estar " +#~ "en blanco." #~ msgid "Error adding agent to policy. The agent is already in the policy." -#~ msgstr "" -#~ "Error al aƱadir agente a la polĆ­tica. El agente ya existe en la polĆ­tica." +#~ msgstr "Error al aƱadir agente a la polĆ­tica. El agente ya existe en la polĆ­tica." #~ msgid "Error adding data module to policy. Id_policy cannot be left blank." #~ msgstr "" -#~ "Error al aƱadir los datos de mĆ³dulo a la polĆ­tica. Id_policy no puede estar " -#~ "en blanco." +#~ "Error al aƱadir los datos de mĆ³dulo a la polĆ­tica. Id_policy no puede estar en " +#~ "blanco." #~ msgid "Error adding data module to policy. Module_name cannot be left blank." #~ msgstr "" -#~ "Error al aƱadir los datos de mĆ³dulo a la polĆ­tica. Module_name no puede " -#~ "estar en blanco." - -#~ msgid "" -#~ "Error adding network module to policy. Id_module_type is not correct for " -#~ "network modules." -#~ msgstr "" -#~ "Error al aƱadir mĆ³dulos de red a la polĆ­tica. Id_module_type no es correcto " -#~ "para mĆ³dulos de red." - -#~ msgid "" -#~ "Error adding network module to policy. Module_name cannot be left blank." -#~ msgstr "" -#~ "Error al aƱadir mĆ³dulos de red a la polĆ­tica. Module_name no puede estar en " +#~ "Error al aƱadir los datos de mĆ³dulo a la polĆ­tica. Module_name no puede estar en " #~ "blanco." +#~ msgid "" +#~ "Error adding network module to policy. Id_module_type is not correct for network " +#~ "modules." +#~ msgstr "" +#~ "Error al aƱadir mĆ³dulos de red a la polĆ­tica. Id_module_type no es correcto para " +#~ "mĆ³dulos de red." + +#~ msgid "Error adding network module to policy. Module_name cannot be left blank." +#~ msgstr "" +#~ "Error al aƱadir mĆ³dulos de red a la polĆ­tica. Module_name no puede estar en blanco." + #~ msgid "Error adding network module to policy. Id_policy cannot be left blank." #~ msgstr "" -#~ "Error al aƱadir mĆ³dulos de red a la polĆ­tica. Id_policy no puede estar en " -#~ "blanco." +#~ "Error al aƱadir mĆ³dulos de red a la polĆ­tica. Id_policy no puede estar en blanco." -#~ msgid "" -#~ "Error updating network module in policy. Module type is not network type." +#~ msgid "Error updating network module in policy. Module type is not network type." #~ msgstr "" -#~ "Error al actualizar mĆ³dulo de red en la polĆ­tica. El tipo de mĆ³dulo no es " -#~ "de red." +#~ "Error al actualizar mĆ³dulo de red en la polĆ­tica. El tipo de mĆ³dulo no es de red." #~ msgid "Error adding network module to policy." #~ msgstr "Error al aƱadir mĆ³dulos de red a la polĆ­tica" -#~ msgid "" -#~ "Error adding network module to policy. The module is already in the policy." +#~ msgid "Error adding network module to policy. The module is already in the policy." #~ msgstr "" -#~ "Error al aƱadir mĆ³dulos de red a la polĆ­tica. El mĆ³dulo ya existe en la " -#~ "polĆ­tica." +#~ "Error al aƱadir mĆ³dulos de red a la polĆ­tica. El mĆ³dulo ya existe en la polĆ­tica." + +#~ msgid "Error updating network module in policy. Id_policy cannot be left blank." +#~ msgstr "" +#~ "Error al actualizar mĆ³dulo de red en la polĆ­tica. Id_policy no puede estar en " +#~ "blanco." #~ msgid "" -#~ "Error updating network module in policy. Id_policy cannot be left blank." +#~ "Error updating network module in policy. Id_policy_module cannot be left blank." #~ msgstr "" -#~ "Error al actualizar mĆ³dulo de red en la polĆ­tica. Id_policy no puede estar " +#~ "Error al actualizar mĆ³dulo de red en la polĆ­tica. Id_policy_module no puede estar " #~ "en blanco." -#~ msgid "" -#~ "Error updating network module in policy. Id_policy_module cannot be left " -#~ "blank." +#~ msgid "Error updating plugin module in policy. Module type is not network type." #~ msgstr "" -#~ "Error al actualizar mĆ³dulo de red en la polĆ­tica. Id_policy_module no puede " +#~ "Error al actualizar mĆ³dulo de plugin en la polĆ­tica. El tipo de mĆ³dulo no es de " +#~ "tipo red." + +#~ msgid "" +#~ "Error updating plugin module in policy. Id_policy_module cannot be left blank." +#~ msgstr "" +#~ "Error al actualizar mĆ³dulo de plugin en la polĆ­tica. Id_policy_module no puede " #~ "estar en blanco." -#~ msgid "" -#~ "Error updating plugin module in policy. Module type is not network type." +#~ msgid "Error adding plugin module to policy. The module is already in the policy." #~ msgstr "" -#~ "Error al actualizar mĆ³dulo de plugin en la polĆ­tica. El tipo de mĆ³dulo no " -#~ "es de tipo red." +#~ "Error al aƱadir el mĆ³dulo de plugin a la polĆ­tica. El mĆ³dulo ya existe en la " +#~ "polĆ­tica." -#~ msgid "" -#~ "Error updating plugin module in policy. Id_policy_module cannot be left " -#~ "blank." +#~ msgid "Error updating plugin module in policy. Id_policy cannot be left blank." #~ msgstr "" -#~ "Error al actualizar mĆ³dulo de plugin en la polĆ­tica. Id_policy_module no " -#~ "puede estar en blanco." - -#~ msgid "" -#~ "Error adding plugin module to policy. The module is already in the policy." -#~ msgstr "" -#~ "Error al aƱadir el mĆ³dulo de plugin a la polĆ­tica. El mĆ³dulo ya existe en " -#~ "la polĆ­tica." - -#~ msgid "" -#~ "Error updating plugin module in policy. Id_policy cannot be left blank." -#~ msgstr "" -#~ "Error al actualizar el mĆ³dulo de plugin en la polĆ­tica. Id_policy no puede " -#~ "estar en blanco." +#~ "Error al actualizar el mĆ³dulo de plugin en la polĆ­tica. Id_policy no puede estar " +#~ "en blanco." #~ msgid "Error adding plugin module to policy. Id_plugin cannot be left blank." #~ msgstr "" -#~ "Error al aƱadir mĆ³dulo de plugin a la polĆ­tica. Id_plugin no puede estar en " -#~ "blanco." +#~ "Error al aƱadir mĆ³dulo de plugin a la polĆ­tica. Id_plugin no puede estar en blanco." #~ msgid "Error adding plugin module to policy." #~ msgstr "Error al aƱadir mĆ³dulo de plugin a la polĆ­tica" #~ msgid "Error adding plugin module to policy. Id_policy cannot be left blank." #~ msgstr "" -#~ "Error al aƱadir mĆ³dulo de plugin a la polĆ­tica. Id_policy no puede estar en " -#~ "blanco." +#~ "Error al aƱadir mĆ³dulo de plugin a la polĆ­tica. Id_policy no puede estar en blanco." -#~ msgid "" -#~ "Error adding plugin module to policy. Module_name cannot be left blank." +#~ msgid "Error adding plugin module to policy. Module_name cannot be left blank." #~ msgstr "" -#~ "Error al aƱadir mĆ³dulo de plugin a la polĆ­tica. Module_name no puede estar " -#~ "en blanco." +#~ "Error al aƱadir mĆ³dulo de plugin a la polĆ­tica. Module_name no puede estar en " +#~ "blanco." #~ msgid "Error adding SNMP module to policy." #~ msgstr "Error al aƱadir mĆ³dulo SNMP a la polĆ­tica" #~ msgid "" -#~ "Error adding SNMP module to policy. Id_module_type is not correct for SNMP " -#~ "modules." +#~ "Error adding SNMP module to policy. Id_module_type is not correct for SNMP modules." #~ msgstr "" -#~ "Error al aƱadir mĆ³dulo SNMP a la polĆ­tica. Id_module_type no es correcto " -#~ "para mĆ³dulos SNMP." +#~ "Error al aƱadir mĆ³dulo SNMP a la polĆ­tica. Id_module_type no es correcto para " +#~ "mĆ³dulos SNMP." #~ msgid "Error adding SNMP module to policy. Id_policy cannot be left blank." #~ msgstr "" -#~ "Error al aƱadir mĆ³dulo SNMP a la polĆ­tica. Id_policy no puede estar en " -#~ "blanco." +#~ "Error al aƱadir mĆ³dulo SNMP a la polĆ­tica. Id_policy no puede estar en blanco." #~ msgid "Error adding SNMP module to policy. Module_name cannot be left blank." #~ msgstr "" -#~ "Error al aƱadir mĆ³dulo SNMP a la polĆ­tica. Module_name no puede estar en " -#~ "blanco." +#~ "Error al aƱadir mĆ³dulo SNMP a la polĆ­tica. Module_name no puede estar en blanco." #~ msgid "Error updating SNMP module in policy. Id_policy cannot be left blank." #~ msgstr "" -#~ "Error al actualizar mĆ³dulo SNMP de la polĆ­tica. Id_policy no puede estar en " +#~ "Error al actualizar mĆ³dulo SNMP de la polĆ­tica. Id_policy no puede estar en blanco." + +#~ msgid "Error adding SNMP module to policy. The module is already in the policy." +#~ msgstr "" +#~ "Error al aƱadir mĆ³dulo SNMP a la polĆ­tica. El mĆ³dulo ya existe en la polĆ­tica." + +#~ msgid "Error updating SNMP module in policy. Id_policy_module cannot be left blank." +#~ msgstr "" +#~ "Error al actualizar mĆ³dulo SNMP de la polĆ­tica. Id_policy_module no puede estar en " #~ "blanco." -#~ msgid "" -#~ "Error adding SNMP module to policy. The module is already in the policy." -#~ msgstr "" -#~ "Error al aƱadir mĆ³dulo SNMP a la polĆ­tica. El mĆ³dulo ya existe en la " -#~ "polĆ­tica." - -#~ msgid "" -#~ "Error updating SNMP module in policy. Id_policy_module cannot be left blank." -#~ msgstr "" -#~ "Error al actualizar mĆ³dulo SNMP de la polĆ­tica. Id_policy_module no puede " -#~ "estar en blanco." - #~ msgid "Error updating SNMP module in policy. Module type is not SNMP type." #~ msgstr "" -#~ "Error al actualizar mĆ³dulo SNMP de la polĆ­tica. El tipo de mĆ³dulo no es " -#~ "SNMP." +#~ "Error al actualizar mĆ³dulo SNMP de la polĆ­tica. El tipo de mĆ³dulo no es SNMP." #~ msgid "Error in group creation. Icon_name cannot be left blank." #~ msgstr "Error al crear el grupo. Icon_name no puede estar en blanco." @@ -57187,8 +55602,7 @@ msgstr "GestiĆ³n del grupo de mĆ³dulos" #~ msgid "Error applying policy. This policy is already pending to apply." #~ msgstr "" -#~ "Error al aplicar la polĆ­tica. Esta polĆ­tica ya estĆ” pendiente de ser " -#~ "aplicada." +#~ "Error al aplicar la polĆ­tica. Esta polĆ­tica ya estĆ” pendiente de ser aplicada." #~ msgid "Error applying all policies." #~ msgstr "Error al aplicar todas las polĆ­ticas" @@ -57203,17 +55617,14 @@ msgstr "GestiĆ³n del grupo de mĆ³dulos" #~ msgstr "Error al crear el filtro Netflow. El filtro no puede estar en blanco." #~ msgid "Error in netflow filter creation. Aggregate_by cannot be left blank." -#~ msgstr "" -#~ "Error al crear el filtro Netflow. Aggregate_by no puede estar en blanco." +#~ msgstr "Error al crear el filtro Netflow. Aggregate_by no puede estar en blanco." #~ msgid "Error in netflow filter creation. Filter name cannot be left blank." #~ msgstr "" -#~ "Error al crear el filtro Netflow. El nombre del filtro no puede estar en " -#~ "blanco." +#~ "Error al crear el filtro Netflow. El nombre del filtro no puede estar en blanco." #~ msgid "Error in netflow filter creation. Group id cannot be left blank." -#~ msgstr "" -#~ "Error al crear filtro Netflow. El ID de grupo no puede estar en blanco." +#~ msgstr "Error al crear filtro Netflow. El ID de grupo no puede estar en blanco." #~ msgid "Error in group creation." #~ msgstr "Error al crear el grupo" @@ -57228,13 +55639,11 @@ msgstr "GestiĆ³n del grupo de mĆ³dulos" #~ msgstr "Error al crear el filtro Netflow" #~ msgid "Error in netflow filter creation. Output_format cannot be left blank." -#~ msgstr "" -#~ "Error al crear el filtro Netflow. Aggregate_by no puede estar en blanco." +#~ msgstr "Error al crear el filtro Netflow. Aggregate_by no puede estar en blanco." #~ msgid "Error enable/disable user. Id_user cannot be left blank." #~ msgstr "" -#~ "Error al habilitar/deshabilitar el usuario. Id_user no puede estar en " -#~ "blanco." +#~ "Error al habilitar/deshabilitar el usuario. Id_user no puede estar en blanco." #~ msgid "Error in user enabling/disabling." #~ msgstr "Error al habilitar/deshabilitar el usuario" @@ -57244,15 +55653,14 @@ msgstr "GestiĆ³n del grupo de mĆ³dulos" #~ msgid "Error enable/disable user. Enable/disable value cannot be left blank." #~ msgstr "" -#~ "Error al habilitar/deshabilitar el usuario. El valor de habilitar/" -#~ "deshabilitar no puede estar en blanco." +#~ "Error al habilitar/deshabilitar el usuario. El valor de habilitar/deshabilitar no " +#~ "puede estar en blanco." #~ msgid "Updated user." #~ msgstr "Usuario actualizado" #~ msgid "Error updating user. Password info incorrect." -#~ msgstr "" -#~ "Error al actualizar el usuario. La informaciĆ³n de contraseƱa es incorrecta." +#~ msgstr "Error al actualizar el usuario. La informaciĆ³n de contraseƱa es incorrecta." #~ msgid "Error adding event comment." #~ msgstr "Error al aƱadir el comentario en el evento" @@ -57268,8 +55676,7 @@ msgstr "GestiĆ³n del grupo de mĆ³dulos" #~ msgid "Error enable/disable agent. Id_agent cannot be left blank." #~ msgstr "" -#~ "Error al habilitar/deshabilitar el agente. Id_agent no puede estar en " -#~ "blanco." +#~ "Error al habilitar/deshabilitar el agente. Id_agent no puede estar en blanco." #~ msgid "Correct module enable" #~ msgstr "MĆ³dulo habilitado correctamente" @@ -57288,8 +55695,8 @@ msgstr "GestiĆ³n del grupo de mĆ³dulos" #~ msgid "Error enable/disable agent. Enable/disable value cannot be left blank." #~ msgstr "" -#~ "Error al habilitar/deshabilitar el agente. El valor de habilitar/" -#~ "deshabilitar no puede estar en blanco." +#~ "Error al habilitar/deshabilitar el agente. El valor de habilitar/deshabilitar no " +#~ "puede estar en blanco." #~ msgid "Error in agent enabling/disabling." #~ msgstr "Error al activar/desactivar el agente" @@ -57301,8 +55708,7 @@ msgstr "GestiĆ³n del grupo de mĆ³dulos" #~ msgstr "Error al actualizar el dĆ­a especial. Formato de fecha no vĆ”lido." #~ msgid "Error updating special day. Id cannot be left blank." -#~ msgstr "" -#~ "Error al actualizar el dĆ­a especial. El campo ID no puede estar vacĆ­o." +#~ msgstr "Error al actualizar el dĆ­a especial. El campo ID no puede estar vacĆ­o." #~ msgid "Error in deletion special day." #~ msgstr "Error al eliminar el dĆ­a especial" @@ -57317,70 +55723,67 @@ msgstr "GestiĆ³n del grupo de mĆ³dulos" #~ msgstr "Por defecto, mostrar solo la media, el mĆ”ximo y el mĆ­nimo" #~ msgid "" -#~ "The new Update Manager " -#~ "client is shipped with Pandora FMS It helps system administrators to update " -#~ "their Pandora FMS automatically, since the Update Manager does the task of " -#~ "getting new modules, new plugins and new features (even full migrations " -#~ "tools for future versions) automatically." +#~ "The new Update Manager client " +#~ "is shipped with Pandora FMS It helps system administrators to update their Pandora " +#~ "FMS automatically, since the Update Manager does the task of getting new modules, " +#~ "new plugins and new features (even full migrations tools for future versions) " +#~ "automatically." #~ msgstr "" -#~ "El nuevo cliente Administrador de actualizaciones viene incorporado con Pandora FMS. " -#~ "Ayuda a los administradores de sistema a actualizar su Pandora FMS de forma " -#~ "automĆ”tica, ya que el Administrador de actualizaciones realiza la tarea de " -#~ "obtener nuevos mĆ³dulos, plugins y funcionalidades (incluso migraciones " -#~ "completas a versiones posteriores) automĆ”ticamente." +#~ "El nuevo cliente Administrador de " +#~ "actualizaciones viene incorporado con Pandora FMS. Ayuda a los administradores " +#~ "de sistema a actualizar su Pandora FMS de forma automĆ”tica, ya que el " +#~ "Administrador de actualizaciones realiza la tarea de obtener nuevos mĆ³dulos, " +#~ "plugins y funcionalidades (incluso migraciones completas a versiones posteriores) " +#~ "automĆ”ticamente." #~ msgid "" -#~ "Update Manager is one of the most advanced features of Pandora FMS " -#~ "Enterprise version, for more information visit http://pandorafms.com." +#~ "Update Manager is one of the most advanced features of Pandora FMS Enterprise " +#~ "version, for more information visit http://" +#~ "pandorafms.com." #~ msgstr "" -#~ "El Administrador de actualizaciones es una de las funcionalidades mĆ”s " -#~ "avanzadas de la versiĆ³n Enterprise de Pandora FMS. Para mĆ”s informaciĆ³n " -#~ "visita http://pandorafms.com." +#~ "El Administrador de actualizaciones es una de las funcionalidades mĆ”s avanzadas de " +#~ "la versiĆ³n Enterprise de Pandora FMS. Para mĆ”s informaciĆ³n visita http://pandorafms.com." #~ msgid "" -#~ "Update Manager sends anonymous information about Pandora FMS usage (number " -#~ "of agents and modules running). To disable it, please remove the remote " -#~ "server address from the Update Manager plugin setup." +#~ "Update Manager sends anonymous information about Pandora FMS usage (number of " +#~ "agents and modules running). To disable it, please remove the remote server " +#~ "address from the Update Manager plugin setup." #~ msgstr "" -#~ "El Administrador de actualizaciones manda informaciĆ³n anĆ³nima acerca del " -#~ "uso de Pandora FMS (nĆŗmero de agentes o mĆ³dulos en ejecuciĆ³n). Para " -#~ "desactivarlo, por favor, elimina la direcciĆ³n del servidor remoto en la " -#~ "configuraciĆ³n del plugin del Administrador de actualizaciones." +#~ "El Administrador de actualizaciones manda informaciĆ³n anĆ³nima acerca del uso de " +#~ "Pandora FMS (nĆŗmero de agentes o mĆ³dulos en ejecuciĆ³n). Para desactivarlo, por " +#~ "favor, elimina la direcciĆ³n del servidor remoto en la configuraciĆ³n del plugin del " +#~ "Administrador de actualizaciones." #~ msgid "" -#~ "When you subscribe to the Pandora FMS Update Manager service, you accept " -#~ "that we register your Pandora instance as an identifier on the database " -#~ "owned by Artica TS. This data will solely be used to provide you with " -#~ "information about Pandora FMS and will not be conceded to third parties. " -#~ "You'll be able to unregister from said database at any time from the Update " -#~ "Manager options" +#~ "When you subscribe to the Pandora FMS Update Manager service, you accept that we " +#~ "register your Pandora instance as an identifier on the database owned by Artica " +#~ "TS. This data will solely be used to provide you with information about Pandora " +#~ "FMS and will not be conceded to third parties. You'll be able to unregister from " +#~ "said database at any time from the Update Manager options" #~ msgstr "" -#~ "Cuando te suscribes al servicio de Administrador de actualizaciones de " -#~ "Pandora FMS, aceptas que registremos tu instancia de Pandora FMS como " -#~ "identificador en la base de datos propiedad de Ɓrtica ST. Estos datos solo " -#~ "se utilizarĆ”n para proporcionarte informaciĆ³n sobre Pandora FMS y no serĆ”n " -#~ "cedidos a terceros. PodrĆ”s cancelar el registro de dicha base de datos en " -#~ "cualquier momento desde las opciones del Administrador de actualizaciones." +#~ "Cuando te suscribes al servicio de Administrador de actualizaciones de Pandora " +#~ "FMS, aceptas que registremos tu instancia de Pandora FMS como identificador en la " +#~ "base de datos propiedad de Ɓrtica ST. Estos datos solo se utilizarĆ”n para " +#~ "proporcionarte informaciĆ³n sobre Pandora FMS y no serĆ”n cedidos a terceros. PodrĆ”s " +#~ "cancelar el registro de dicha base de datos en cualquier momento desde las " +#~ "opciones del Administrador de actualizaciones." #~ msgid "" -#~ "The Enterprise version comes with a different update system, with fully " -#~ "tested, professionally-supported packages, and our support team is there to " -#~ "help you in case of problems or queries. Update Manager is another feature " -#~ "present in the Enterprise version and not included in the OpenSource " -#~ "version. There are lots of advanced business-oriented features contained in " -#~ "Pandora FMS Enterprise Edition. For more information visit pandorafms.com" +#~ "The Enterprise version comes with a different update system, with fully tested, " +#~ "professionally-supported packages, and our support team is there to help you in " +#~ "case of problems or queries. Update Manager is another feature present in the " +#~ "Enterprise version and not included in the OpenSource version. There are lots of " +#~ "advanced business-oriented features contained in Pandora FMS Enterprise Edition. " +#~ "For more information visit pandorafms.com" #~ msgstr "" #~ "La versiĆ³n Enterprise viene con un sistema de actualizaciĆ³n diferente, con " -#~ "paquetes totalmente probados y con un equipo de soporte dispuesto a " -#~ "ayudarte en caso de problemas o consultas. El Administrador de " -#~ "actualizaciones es otra caracterĆ­stica incluida en la versiĆ³n Enterprise y " -#~ "que no aparece en la versiĆ³n OpenSource. Existen muchas funciones avanzadas " -#~ "orientadas a empresas incorporadas en Pandora FMS Enterprise Edition. Para " -#~ "obtener mĆ”s informaciĆ³n, visita " -#~ "pandorafms.com " +#~ "paquetes totalmente probados y con un equipo de soporte dispuesto a ayudarte en " +#~ "caso de problemas o consultas. El Administrador de actualizaciones es otra " +#~ "caracterĆ­stica incluida en la versiĆ³n Enterprise y que no aparece en la versiĆ³n " +#~ "OpenSource. Existen muchas funciones avanzadas orientadas a empresas incorporadas " +#~ "en Pandora FMS Enterprise Edition. Para obtener mĆ”s informaciĆ³n, visita pandorafms.com " #~ msgid "There is not any update manager messages." #~ msgstr "No hay ningĆŗn mensaje del Administrador de actualizaciones" @@ -57389,40 +55792,36 @@ msgstr "GestiĆ³n del grupo de mĆ³dulos" #~ msgstr "Mensajes del Administrador de actualizaciones" #~ msgid "" -#~ "Click here to start the registration " -#~ "process" +#~ "Click here to start the registration process" #~ msgstr "" #~ "Haz clic aquĆ­ para empezar el proceso de " #~ "registro." #~ msgid "Remote configuration directory is not writtable for the console" -#~ msgstr "" -#~ "El directorio de configuraciĆ³n remoto no es modificable por la consola." +#~ msgstr "El directorio de configuraciĆ³n remoto no es modificable por la consola." #~ msgid "" -#~ "There are too much files in attachment directory. This is not fatal, but " -#~ "you should consider cleaning up your attachment directory manually" +#~ "There are too much files in attachment directory. This is not fatal, but you " +#~ "should consider cleaning up your attachment directory manually" #~ msgstr "" -#~ "Hay demasiados archivos en el directorio Ā«adjuntosĀ». No se trata de un " -#~ "error grave, pero deberĆ­as pensar en limpiar el directorio manualmente." +#~ "Hay demasiados archivos en el directorio Ā«adjuntosĀ». No se trata de un error " +#~ "grave, pero deberĆ­as pensar en limpiar el directorio manualmente." #~ msgid "" -#~ "Please change the default password because is a common vulnerability " -#~ "reported." +#~ "Please change the default password because is a common vulnerability reported." #~ msgstr "" #~ "Por favor, cambia la contraseƱa por defecto ya que es una vulnerabilidad " #~ "comĆŗnmente reportada." #~ msgid "Default password for \"Admin\" user has not been changed." #~ msgstr "" -#~ "La contraseƱa por defecto para el usuario \"Administrador\" no ha sido " -#~ "cambiada." +#~ "La contraseƱa por defecto para el usuario \"Administrador\" no ha sido cambiada." #~ msgid "" -#~ "Please check that the web server has write rights on the {HOMEDIR}/" -#~ "attachment directory" +#~ "Please check that the web server has write rights on the {HOMEDIR}/attachment " +#~ "directory" #~ msgstr "" #~ "Comprueba que el servidor web tiene permisos de escritura en el directorio " #~ "{HOMEDIR}/directorio_de_adjuntos" @@ -57437,179 +55836,169 @@ msgstr "GestiĆ³n del grupo de mĆ³dulos" #~ msgstr "Ya estĆ”s suscrito a la newsletter de Pandora FMS" #~ msgid "" -#~ "Click here to start the newsletter " -#~ "subscription process" +#~ "Click here to start the newsletter subscription process" #~ msgstr "" #~ "Haz clic aquĆ­ para empezar el proceso " -#~ "de registro a la newsletter." +#~ "\"javascript: force_run_newsletter();\"> aquĆ­ para empezar el proceso de " +#~ "registro a la newsletter." #~ msgid "Not subscribed to the newsletter" #~ msgstr "No suscrito a la newsletter" #~ msgid "" -#~ "In the same fashion, when subscribed to the newsletter you accept that your " -#~ "email will pass on to a database property of Artica TS. This data will " -#~ "solely be used to provide you with information about Pandora FMS and will " -#~ "not be conceded to third parties. You'll be able to unregister from said " -#~ "database at any time from the newsletter subscription options" +#~ "In the same fashion, when subscribed to the newsletter you accept that your email " +#~ "will pass on to a database property of Artica TS. This data will solely be used to " +#~ "provide you with information about Pandora FMS and will not be conceded to third " +#~ "parties. You'll be able to unregister from said database at any time from the " +#~ "newsletter subscription options" #~ msgstr "" #~ "De la misma manera, al suscribirte a la newsletter aceptas que tu correo " -#~ "electrĆ³nico se transmitirĆ” a una base de datos de Ɓrtica ST. Estos datos " -#~ "solo se utilizarĆ”n para proporcionarte informaciĆ³n sobre Pandora FMS y no " -#~ "serĆ”n cedidos a terceros. PodrĆ”s cancelar el registro de dicha base de " -#~ "datos en cualquier momento desde las opciones de suscripciĆ³n a las " -#~ "newsletter." +#~ "electrĆ³nico se transmitirĆ” a una base de datos de Ɓrtica ST. Estos datos solo se " +#~ "utilizarĆ”n para proporcionarte informaciĆ³n sobre Pandora FMS y no serĆ”n cedidos a " +#~ "terceros. PodrĆ”s cancelar el registro de dicha base de datos en cualquier momento " +#~ "desde las opciones de suscripciĆ³n a las newsletter." #~ msgid "" -#~ "Your Pandora FMS has the \"develop_bypass\" mode enabled. This is a " -#~ "developer mode and should be disabled in a production system. This value is " -#~ "written in the main index.php file" +#~ "Your Pandora FMS has the \"develop_bypass\" mode enabled. This is a developer mode " +#~ "and should be disabled in a production system. This value is written in the main " +#~ "index.php file" #~ msgstr "" #~ "Pandora FMS tiene el modo \"develop_bypass\" habilitado. Esto es un modo de " -#~ "desarrollo y debe ser deshabilitado en un sistema de producciĆ³n. Este valor " -#~ "estĆ” escrito en el archivo principal index.php." +#~ "desarrollo y debe ser deshabilitado en un sistema de producciĆ³n. Este valor estĆ” " +#~ "escrito en el archivo principal index.php." #~ msgid "Too much files in your tempora/attachment directory" #~ msgstr "Demasiados archivos en el directorio temporal de adjuntos" #~ msgid "" -#~ "Your database is not well maintained. Seems that it have more than 48hr " -#~ "without a proper maintance. Please review Pandora FMS documentation about " -#~ "how to execute this maintance process (pandora_db.pl) and enable it as soon " -#~ "as possible" +#~ "Your database is not well maintained. Seems that it have more than 48hr without a " +#~ "proper maintance. Please review Pandora FMS documentation about how to execute " +#~ "this maintance process (pandora_db.pl) and enable it as soon as possible" #~ msgstr "" -#~ "No estĆ”s llevando a cabo un buen mantenimiento de la base de datos desde " -#~ "hace mĆ”s de 48 horas. Por favor, revisa la documentaciĆ³n de Pandora FMS " -#~ "acerca de cĆ³mo ejecutar este proceso de mantenimiento (pandora_db.pl) y " -#~ "habilĆ­talo lo antes posible." +#~ "No estĆ”s llevando a cabo un buen mantenimiento de la base de datos desde hace mĆ”s " +#~ "de 48 horas. Por favor, revisa la documentaciĆ³n de Pandora FMS acerca de cĆ³mo " +#~ "ejecutar este proceso de mantenimiento (pandora_db.pl) y habilĆ­talo lo antes " +#~ "posible." #~ msgid "" -#~ "Your defined font doesnt exist or is not defined. Please check font " -#~ "parameters in your config" +#~ "Your defined font doesnt exist or is not defined. Please check font parameters in " +#~ "your config" #~ msgstr "" -#~ "La fuente no existe o no ha sido definida. Por favor, comprueba los " -#~ "parĆ”metros de la fuente en tu configuraciĆ³n." +#~ "La fuente no existe o no ha sido definida. Por favor, comprueba los parĆ”metros de " +#~ "la fuente en tu configuraciĆ³n." #~ msgid "" -#~ "Event storm protection is activated. No events will be generated during " -#~ "this mode." +#~ "Event storm protection is activated. No events will be generated during this mode." #~ msgstr "" -#~ "La protecciĆ³n contra tormentas de eventos estĆ” activada. No se generarĆ”n " -#~ "eventos durante este modo." +#~ "La protecciĆ³n contra tormentas de eventos estĆ” activada. No se generarĆ”n eventos " +#~ "durante este modo." #~ msgid "You need to restart server after altering this configuration setting." -#~ msgstr "" -#~ "Es necesario reiniciar el servidor despuĆ©s de modificar esta configuraciĆ³n." +#~ msgstr "Es necesario reiniciar el servidor despuĆ©s de modificar esta configuraciĆ³n." #~ msgid "" -#~ "There is a new update available. Please go to Administration:Setup:Update Manager for more details." +#~ "There is a new update available. Please go to " +#~ "Administration:Setup:Update Manager for more details." #~ msgstr "" -#~ "Nueva actualizaciĆ³n disponible. Por favor, ve a AdministraciĆ³n:ConfiguraciĆ³n:" -#~ "Administrador de actualizaciones para mĆ”s detalles." +#~ "Nueva actualizaciĆ³n disponible. Por favor, ve " +#~ "a AdministraciĆ³n:ConfiguraciĆ³n:Administrador de actualizaciones para mĆ”s " +#~ "detalles." #~ msgid "New update of Pandora Console" #~ msgstr "Nueva actualizaciĆ³n de la consola de Pandora FMS" #~ msgid "" -#~ "For security reasons, normal operation is not possible until you delete " -#~ "installer file.\n" -#~ "\t\t\tPlease delete the ./install.php file before running Pandora " -#~ "FMS Console." +#~ "For security reasons, normal operation is not possible until you delete installer " +#~ "file.\n" +#~ "\t\t\tPlease delete the ./install.php file before running Pandora FMS " +#~ "Console." #~ msgstr "" -#~ "Por razones de seguridad no podrĆ”s operar con normalidad hasta que elimines " -#~ "el archivo de instalaciĆ³n.\n" -#~ "\t\t\tPor favor, elimina el archivo ./install.php antes de ejecutar " -#~ "la consola de Pandora FMS." +#~ "Por razones de seguridad no podrĆ”s operar con normalidad hasta que elimines el " +#~ "archivo de instalaciĆ³n.\n" +#~ "\t\t\tPor favor, elimina el archivo ./install.php antes de ejecutar la " +#~ "consola de Pandora FMS." #~ msgid "" -#~ "Cannot load configuration variables from database. Please check your " -#~ "database setup in the\n" +#~ "Cannot load configuration variables from database. Please check your database " +#~ "setup in the\n" #~ "\t\t\tinclude/config.php file.

\n" -#~ "\t\t\tMost likely your database schema has been created but there are is no " -#~ "data in it, you have a problem with the database access credentials or your " -#~ "schema is out of date.\n" -#~ "\t\t\t

Pandora FMS Console cannot find include/config.php or " -#~ "this file has invalid\n" -#~ "\t\t\tpermissions and HTTP server cannot read it. Please read documentation " -#~ "to fix this problem.
" +#~ "\t\t\tMost likely your database schema has been created but there are is no data " +#~ "in it, you have a problem with the database access credentials or your schema is " +#~ "out of date.\n" +#~ "\t\t\t

Pandora FMS Console cannot find include/config.php or this " +#~ "file has invalid\n" +#~ "\t\t\tpermissions and HTTP server cannot read it. Please read documentation to fix " +#~ "this problem.
" #~ msgstr "" -#~ "No se pueden cargar las variables de configuraciĆ³n de la base de datos. Por " -#~ "favor, comprueba la configuraciĆ³n de la base de datos en el archivo\n" +#~ "No se pueden cargar las variables de configuraciĆ³n de la base de datos. Por favor, " +#~ "comprueba la configuraciĆ³n de la base de datos en el archivo\n" #~ "\t\t\tinclude/config.php.

\n" -#~ "\t\t\tLo mƔs probable es que el esquema de la base de datos haya sido " -#~ "creado pero que no haya datos dentro, que haya un problema con las " -#~ "credenciales o que el esquema estƩ caducado.\n" -#~ "\t\t\t

La consola de Pandora FMS no puede encontrar include/" -#~ "config.php o este archivo tiene\n" -#~ "\t\t\tpermisos no vĆ”lidos y el servidor HTTP no puede leerlo. Por favor, " -#~ "lee la documentaciĆ³n para solucionar este problema.
" +#~ "\t\t\tLo mƔs probable es que el esquema de la base de datos haya sido creado pero " +#~ "que no haya datos dentro, que haya un problema con las credenciales o que el " +#~ "esquema estƩ caducado.\n" +#~ "\t\t\t

La consola de Pandora FMS no puede encontrar include/config.php o este archivo tiene\n" +#~ "\t\t\tpermisos no vĆ”lidos y el servidor HTTP no puede leerlo. Por favor, lee la " +#~ "documentaciĆ³n para solucionar este problema." #~ msgid "" #~ "Pandora FMS Console cannot find include/config.php or this file has " #~ "invalid\n" -#~ "\t\t\tpermissions and HTTP server cannot read it. Please read documentation " -#~ "to fix this problem." +#~ "\t\t\tpermissions and HTTP server cannot read it. Please read documentation to fix " +#~ "this problem." #~ msgstr "" -#~ "La consola de Pandora FMS no puede encontrar include/config.php o " -#~ "este archivo tiene permisos\n" +#~ "La consola de Pandora FMS no puede encontrar include/config.php o este " +#~ "archivo tiene permisos\n" #~ "\t\t\tno vĆ”lidos y el servidor HTTP no puede leerlo. Por favor, lee la " #~ "documentaciĆ³n para solucionar este problema." #~ msgid "" -#~ "Remember that this package will override the actual Pandora FMS files and " -#~ "it is recommended to do a backup before continue with the update." +#~ "Remember that this package will override the actual Pandora FMS files and it is " +#~ "recommended to do a backup before continue with the update." #~ msgstr "" -#~ "Recuerda que este paquete sobreescribirĆ” los archivos actuales de Pandora " -#~ "FMS. Se recomienda hacer una copia de seguridad antes de continuar con el " -#~ "proceso." +#~ "Recuerda que este paquete sobreescribirĆ” los archivos actuales de Pandora FMS. Se " +#~ "recomienda hacer una copia de seguridad antes de continuar con el proceso." #~ msgid "Custom directory where the graphviz binaries are stored." #~ msgstr "" -#~ "Directorio personalizado donde se almacenan los archivos binarios de " -#~ "graphviz" +#~ "Directorio personalizado donde se almacenan los archivos binarios de graphviz" #~ msgid "" #~ "Variable disable_functions containts functions system() or exec(), in PHP " #~ "configuration file (php.ini)" #~ msgstr "" -#~ "La variable disable_functions contiene las funciones system() o exec() en " -#~ "el archivo de configuraciĆ³n de php (php.ini)." +#~ "La variable disable_functions contiene las funciones system() o exec() en el " +#~ "archivo de configuraciĆ³n de php (php.ini)." #~ msgid "" -#~ "To disable, change it on your PHP configuration file (php.ini) and put " -#~ "safe_mode = Off (Dont forget restart apache process after changes)" +#~ "To disable, change it on your PHP configuration file (php.ini) and put safe_mode = " +#~ "Off (Dont forget restart apache process after changes)" #~ msgstr "" -#~ "Para deshabilitarlo, hay que poner safe_mode = Off en el archivo de " -#~ "configuraciĆ³n de PHP (php.ini) (despuĆ©s de los cambios, hay que reiniciar " -#~ "Apache)." +#~ "Para deshabilitarlo, hay que poner safe_mode = Off en el archivo de configuraciĆ³n " +#~ "de PHP (php.ini) (despuĆ©s de los cambios, hay que reiniciar Apache)." #~ msgid "File could not be saved due to database error" #~ msgstr "El archivo no se pudo guardar debido a un error en la base de datos." #~ msgid "" -#~ "Cannot connect to the database, please check your database setup in the " -#~ "include/config.php file.

\n" -#~ "\t\t\tProbably your database, hostname, user or password values are " -#~ "incorrect or\n" +#~ "Cannot connect to the database, please check your database setup in the include/" +#~ "config.php file.

\n" +#~ "\t\t\tProbably your database, hostname, user or password values are incorrect or\n" #~ "\t\t\tthe database server is not running." #~ msgstr "" -#~ "No se pudo conectar a la base de datos. Por favor, comprueba la " -#~ "configuraciĆ³n de la base de datos en el archivo include/config.php " -#~ "

\n" +#~ "No se pudo conectar a la base de datos. Por favor, comprueba la configuraciĆ³n de " +#~ "la base de datos en el archivo include/config.php

\n" #~ "\t\t\tProbablemente el valor de administrador, usuario o contraseƱa sean " #~ "incorrectos.\n" #~ "\t\t\tLa base de datos no estĆ” en ejecuciĆ³n." #~ msgid "Please check that the web server has write rights on the file" #~ msgstr "" -#~ "Por favor, comprueba que el servidor web tenga permisos de escritura sobre " -#~ "este archivo." +#~ "Por favor, comprueba que el servidor web tenga permisos de escritura sobre este " +#~ "archivo." #~ msgid "The file is not readable by HTTP Server" #~ msgstr "El servidor HTTP no puede leer el archivo." @@ -57634,11 +56023,11 @@ msgstr "GestiĆ³n del grupo de mĆ³dulos" #~ msgstr "Base de datos del histĆ³rico" #~ msgid "" -#~ "You can not delete the last group in Pandora. A common installation must " -#~ "has almost one group." +#~ "You can not delete the last group in Pandora. A common installation must has " +#~ "almost one group." #~ msgstr "" -#~ "No se puede borrar el Ćŗltimo grupo en Pandora FMS. Una instalaciĆ³n normal " -#~ "debe tener al menos un grupo." +#~ "No se puede borrar el Ćŗltimo grupo en Pandora FMS. Una instalaciĆ³n normal debe " +#~ "tener al menos un grupo." #~ msgid "Pie graph and Summary table" #~ msgstr "GrĆ”fico circular y tabla resumen" @@ -57668,20 +56057,20 @@ msgstr "GestiĆ³n del grupo de mĆ³dulos" #~ msgstr "Tabla de estadĆ­sticas de Netflow" #~ msgid "" -#~ "Let me introduce my self: I am Pandorin, the annoying assistant of Pandora " -#~ "FMS. You can follow my steps to do basic tasks in Pandora FMS or you can " -#~ "close me and never see me again." +#~ "Let me introduce my self: I am Pandorin, the annoying assistant of Pandora FMS. " +#~ "You can follow my steps to do basic tasks in Pandora FMS or you can close me and " +#~ "never see me again." #~ msgstr "" -#~ "PermĆ­teme que me presente: soy Pandorin, el molesto asistente de Pandora " -#~ "FMS. Puedes seguir mis pasos para realizar las tareas bĆ”sicas en Pandora " -#~ "FMS o puedes cerrarme y no verme nunca mĆ”s." +#~ "PermĆ­teme que me presente: soy Pandorin, el molesto asistente de Pandora FMS. " +#~ "Puedes seguir mis pasos para realizar las tareas bĆ”sicas en Pandora FMS o puedes " +#~ "cerrarme y no verme nunca mĆ”s." #~ msgid "" -#~ "The first thing you have to do is to setup the config email in the Pandora " -#~ "FMS Server." +#~ "The first thing you have to do is to setup the config email in the Pandora FMS " +#~ "Server." #~ msgstr "" -#~ "Lo primero que tienes que hacer es configurar el email en el servidor de " -#~ "Pandora FMS." +#~ "Lo primero que tienes que hacer es configurar el email en el servidor de Pandora " +#~ "FMS." #~ msgid "Error connecting to DB pandora." #~ msgstr "Error al conectar a la base de datos de Pandora FMS" @@ -57732,8 +56121,7 @@ msgstr "GestiĆ³n del grupo de mĆ³dulos" #~ msgstr "No se pudo subir el archivo." #~ msgid "Search by incident name or description, list matches." -#~ msgstr "" -#~ "BĆŗsqueda por nombre de incidencia o descripciĆ³n. Lista de coincidencias." +#~ msgstr "BĆŗsqueda por nombre de incidencia o descripciĆ³n. Lista de coincidencias." #~ msgid "WebChat" #~ msgstr "Chat de la web" @@ -57743,15 +56131,15 @@ msgstr "GestiĆ³n del grupo de mĆ³dulos" #, php-format #~ msgid "" -#~ "You can find more help in the Pandora's wiki" +#~ "You can find more help in the Pandora's wiki" #~ msgstr "" -#~ "Puedes encontrar mĆ”s ayuda en la wiki de Pandora FMS" +#~ "Puedes encontrar mĆ”s ayuda en la wiki de Pandora FMS" #~ msgid "" -#~ "You can not change your password from Pandora FMS under the current " -#~ "authentication scheme" +#~ "You can not change your password from Pandora FMS under the current authentication " +#~ "scheme" #~ msgstr "" #~ "No puede cambiar su contraseƱa desde Pandora FMS bajo el actual esquema de " #~ "autentificaciĆ³n." @@ -57760,8 +56148,8 @@ msgstr "GestiĆ³n del grupo de mĆ³dulos" #~ "You can not change your user info from Pandora FMS under the current " #~ "authentication scheme" #~ msgstr "" -#~ "No puedes cambiar su informaciĆ³n de usuario desde Pandora FMS bajo el " -#~ "actual esquema de autentificaciĆ³n." +#~ "No puedes cambiar su informaciĆ³n de usuario desde Pandora FMS bajo el actual " +#~ "esquema de autentificaciĆ³n." #~ msgid "Webchat" #~ msgstr "Chat de la web" @@ -57773,17 +56161,15 @@ msgstr "GestiĆ³n del grupo de mĆ³dulos" #~ msgstr "ConexiĆ³n establecida. Obtener mensajes de las Ćŗltimas 24 horas." #~ msgid "" -#~ "Error, you are trying to add a widget in a empty cell. Please save the " -#~ "layout before to add any widget in this cell." +#~ "Error, you are trying to add a widget in a empty cell. Please save the layout " +#~ "before to add any widget in this cell." #~ msgstr "" -#~ "Error, estĆ”s intentando aƱadir un widget en una celda vacĆ­a. Por favor, " -#~ "guarda el diseƱo antes de aƱadir cualquier control en esta celda." +#~ "Error, estĆ”s intentando aƱadir un widget en una celda vacĆ­a. Por favor, guarda el " +#~ "diseƱo antes de aƱadir cualquier control en esta celda." -#~ msgid "" -#~ "If propagate acl is activated, this group will include its child groups" +#~ msgid "If propagate acl is activated, this group will include its child groups" #~ msgstr "" -#~ "Si la propagaciĆ³n de ACL estĆ” activada, este grupo incluirĆ” los grupos " -#~ "hijos." +#~ "Si la propagaciĆ³n de ACL estĆ” activada, este grupo incluirĆ” los grupos hijos." #~ msgid "Show a defined custom graph" #~ msgstr "Mostrar un grĆ”fico personalizado definido" @@ -57818,34 +56204,32 @@ msgstr "GestiĆ³n del grupo de mĆ³dulos" #~ msgid "Show a list of global monitor health" #~ msgstr "Mostrar una lista global del estado de los monitores" -#~ msgid "" -#~ "Please could you fill the widget data previous to filling the list items." +#~ msgid "Please could you fill the widget data previous to filling the list items." #~ msgstr "Por favor, rellena el widget de datos antes de la lista de elementos." #~ msgid "Selection module one by one" #~ msgstr "SelecciĆ³n de mĆ³dulos uno a uno" #~ msgid "" -#~ "The user doesn't have permission to read agents. Please contact with your " -#~ "pandora administrator." +#~ "The user doesn't have permission to read agents. Please contact with your pandora " +#~ "administrator." #~ msgstr "" -#~ "El usuario no tiene permiso para leer los agentes. Por favor, contacta con " -#~ "el administrador de Pandora FMS." +#~ "El usuario no tiene permiso para leer los agentes. Por favor, contacta con el " +#~ "administrador de Pandora FMS." #~ msgid "This widget only working in desktop version." #~ msgstr "El widget solo funciona en la versiĆ³n de escritorio." #~ msgid "Cron extension has never run or it's not configured well" #~ msgstr "" -#~ "La extensiĆ³n de tareas programadas (cron) no se ha ejecutado nunca o no " -#~ "estĆ” configurada correctamente." +#~ "La extensiĆ³n de tareas programadas (cron) no se ha ejecutado nunca o no estĆ” " +#~ "configurada correctamente." #~ msgid "" -#~ "This extension relies on a proper setup of cron, the time-based scheduling " -#~ "service" +#~ "This extension relies on a proper setup of cron, the time-based scheduling service" #~ msgstr "" -#~ "Esta extensiĆ³n se basa en una correcta configuraciĆ³n de cron, el servicio " -#~ "de planificaciĆ³n basado en el tiempo." +#~ "Esta extensiĆ³n se basa en una correcta configuraciĆ³n de cron, el servicio de " +#~ "planificaciĆ³n basado en el tiempo." #~ msgid "Please, add the following line to your crontab file" #~ msgstr "AƱade la siguiente lĆ­nea a su archivo crontab" @@ -57863,16 +56247,15 @@ msgstr "GestiĆ³n del grupo de mĆ³dulos" #~ msgstr "Borrar los servidores de configuraciĆ³n remota en Pandora FMS" #~ msgid "" -#~ "Delete this conf file implies that Pandora will send back local config to " -#~ "console" +#~ "Delete this conf file implies that Pandora will send back local config to console" #~ msgstr "" -#~ "Si se borra este archivo de configuraciĆ³n, Pandora FMS enviarĆ” la " -#~ "configuraciĆ³n local a la consola." +#~ "Si se borra este archivo de configuraciĆ³n, Pandora FMS enviarĆ” la configuraciĆ³n " +#~ "local a la consola." #~ msgid "This values are by default because the service is auto calculate mode." #~ msgstr "" -#~ "Estos valores son valores por defecto porque el servicio estĆ” en modo " -#~ "cĆ”lculo automĆ”tico." +#~ "Estos valores son valores por defecto porque el servicio estĆ” en modo cĆ”lculo " +#~ "automĆ”tico." #~ msgid "Service element created successfully" #~ msgstr "Elemento de servicio creado correctamente" @@ -57880,11 +56263,9 @@ msgstr "GestiĆ³n del grupo de mĆ³dulos" #~ msgid "Error creating service element" #~ msgstr "Error al crear el elemento de servicio" -#~ msgid "" -#~ "Only the critical elements are relevant to calculate the service status" +#~ msgid "Only the critical elements are relevant to calculate the service status" #~ msgstr "" -#~ "Solo los elementos crĆ­ticos son relevantes para calcular el estado del " -#~ "servicio." +#~ "Solo los elementos crĆ­ticos son relevantes para calcular el estado del servicio." #~ msgid "Ok weight" #~ msgstr "Peso OK" @@ -57902,11 +56283,11 @@ msgstr "GestiĆ³n del grupo de mĆ³dulos" #~ msgstr "Los pesos tienen valores por defecto." #~ msgid "" -#~ "Only the elements configured as 'critical element' are used to calculate " -#~ "the service status" +#~ "Only the elements configured as 'critical element' are used to calculate the " +#~ "service status" #~ msgstr "" -#~ "Solo los elementos configurados como \"elementos crĆ­ticos\" se utilizan " -#~ "para calcular el estado del servicio." +#~ "Solo los elementos configurados como \"elementos crĆ­ticos\" se utilizan para " +#~ "calcular el estado del servicio." #~ msgid "Please set limit between 0 to 100." #~ msgstr "Por favor, introduce un lĆ­mite de 0 a 100." @@ -57915,18 +56296,18 @@ msgstr "GestiĆ³n del grupo de mĆ³dulos" #~ msgstr "Alerta crĆ­tica del servicio SLA" #~ msgid "" -#~ "Before activating this option check your ACL Setup. You may lose access to " -#~ "the console." +#~ "Before activating this option check your ACL Setup. You may lose access to the " +#~ "console." #~ msgstr "" -#~ "Antes de activar esta opciĆ³n comprueba la configuraciĆ³n ACL. Puede que " -#~ "pierdas el acceso a la consola." +#~ "Antes de activar esta opciĆ³n comprueba la configuraciĆ³n ACL. Puede que pierdas el " +#~ "acceso a la consola." #~ msgid "" -#~ "Rules applied to the management of passwords. This policy applies to all " -#~ "users except the administrator." +#~ "Rules applied to the management of passwords. This policy applies to all users " +#~ "except the administrator." #~ msgstr "" -#~ "Reglas aplicadas a la gestiĆ³n de contraseƱas. Esta polĆ­tica se aplica a " -#~ "todos los usuarios excepto al administrador." +#~ "Reglas aplicadas a la gestiĆ³n de contraseƱas. Esta polĆ­tica se aplica a todos los " +#~ "usuarios excepto al administrador." #~ msgid "Remote Integria" #~ msgstr "Integria IMS remoto" @@ -57934,31 +56315,26 @@ msgstr "GestiĆ³n del grupo de mĆ³dulos" #~ msgid "Remote Pandora FMS" #~ msgstr "Pandora FMS remoto" -#~ msgid "" -#~ "Select the path where SimpleSAML has been installed (by default '/opt/')" +#~ msgid "Select the path where SimpleSAML has been installed (by default '/opt/')" #~ msgstr "" -#~ "Selecciona la ruta donde se haya instalado SimpleSAML (por defecto \"/opt/" -#~ "\")" +#~ "Selecciona la ruta donde se haya instalado SimpleSAML (por defecto \"/opt/\")" #~ msgid "" -#~ "Event history is ONLY used for event reports, is not used in graphs or " -#~ "event viewer." +#~ "Event history is ONLY used for event reports, is not used in graphs or event " +#~ "viewer." #~ msgstr "" -#~ "El histĆ³rico de eventos SOLO serĆ” utilizado para los informes de eventos, y " -#~ "no para los grĆ”ficos o el visor de eventos." +#~ "El histĆ³rico de eventos SOLO serĆ” utilizado para los informes de eventos, y no " +#~ "para los grĆ”ficos o el visor de eventos." #~ msgid "Number of days before events is transfered to history database." #~ msgstr "" -#~ "NĆŗmero de dĆ­as antes de transferir los eventos a la base de datos del " -#~ "histĆ³rico" +#~ "NĆŗmero de dĆ­as antes de transferir los eventos a la base de datos del histĆ³rico" #~ msgid "Time interval between data transfer." #~ msgstr "Intervalo de tiempo entre cada transferencia de datos" -#~ msgid "" -#~ "Data size of mechanism used to transfer data (similar to a data buffer.)" -#~ msgstr "" -#~ "TamaƱo del sistema de transferencia de datos (similar a un bĆŗfer de datos)" +#~ msgid "Data size of mechanism used to transfer data (similar to a data buffer.)" +#~ msgstr "TamaƱo del sistema de transferencia de datos (similar a un bĆŗfer de datos)" #~ msgid "Number of days before data is transfered to history database." #~ msgstr "" @@ -57981,16 +56357,16 @@ msgstr "GestiĆ³n del grupo de mĆ³dulos" #~ msgstr "Error al conectar con el servidor" #~ msgid "" -#~ "Server name doesnt match. Check the node server name and configure the same " -#~ "one on metasetup" +#~ "Server name doesnt match. Check the node server name and configure the same one on " +#~ "metasetup" #~ msgstr "" -#~ "El nombre del servidor no coincide. Comprueba el nombre del servidor del " -#~ "nodo y configura el mismo nombre en el metasetup." +#~ "El nombre del servidor no coincide. Comprueba el nombre del servidor del nodo y " +#~ "configura el mismo nombre en el metasetup." #~ msgid "Restoring a Pandora database backup must be done manually" #~ msgstr "" -#~ "Tienes que restaurar la copia de seguridad de la base de datos de Pandora " -#~ "FMS manualmente." +#~ "Tienes que restaurar la copia de seguridad de la base de datos de Pandora FMS " +#~ "manualmente." #~ msgid "Into your destination database." #~ msgstr "En la base de datos de destino" @@ -57999,18 +56375,17 @@ msgstr "GestiĆ³n del grupo de mĆ³dulos" #~ msgstr "Ejecuta el comando de importaciĆ³n mediante el siguiente comando" #~ msgid "" -#~ "Configure a purge period more frequent than a compact data period has no " -#~ "sense" +#~ "Configure a purge period more frequent than a compact data period has no sense" #~ msgstr "" -#~ "No tiene sentido configurar un perĆ­odo de purga mĆ”s frecuente que el " -#~ "perĆ­odo de compactaciĆ³n de datos." +#~ "No tiene sentido configurar un perĆ­odo de purga mĆ”s frecuente que el perĆ­odo de " +#~ "compactaciĆ³n de datos." #~ msgid "" -#~ "If the compaction or purge of the data is more frequent than the events " -#~ "deletion, anomalies in module graphs could appear" +#~ "If the compaction or purge of the data is more frequent than the events deletion, " +#~ "anomalies in module graphs could appear" #~ msgstr "" -#~ "Si la compactaciĆ³n o purga de datos es mĆ”s frecuente que el borrado de " -#~ "eventos, pueden surgir anomalĆ­as en los grĆ”ficos de mĆ³dulo." +#~ "Si la compactaciĆ³n o purga de datos es mĆ”s frecuente que el borrado de eventos, " +#~ "pueden surgir anomalĆ­as en los grĆ”ficos de mĆ³dulo." #~ msgid "Legend Graph" #~ msgstr "Leyenda del grĆ”fico" @@ -58029,38 +56404,36 @@ msgstr "GestiĆ³n del grupo de mĆ³dulos" #~ msgid "Please contact Artica at info@artica.es for a valid licence." #~ msgstr "" -#~ "Por favor, contacta con Ɓrtica ST en info@artica.es para obtener una " -#~ "licencia vĆ”lida." +#~ "Por favor, contacta con Ɓrtica ST en info@artica.es para obtener una licencia " +#~ "vĆ”lida." #~ msgid "" #~ "To continue using Pandora FMS, please disable enterprise by renaming the " -#~ "Enterprise directory in the console.

Or contact Artica at " -#~ "info@artica.es for a valid license:" +#~ "Enterprise directory in the console.

Or contact Artica at info@artica.es " +#~ "for a valid license:" #~ msgstr "" -#~ "Para continuar usando Pandora FMS, por favor, desactiva Pandora FMS " -#~ "Enterprise cambiando el nombre de la Enteprise en el directorio de la " -#~ "consola.

o contacta con Ɓrtica ST para obtener una licencia vƔlida " -#~ "(info@artica.es)." +#~ "Para continuar usando Pandora FMS, por favor, desactiva Pandora FMS Enterprise " +#~ "cambiando el nombre de la Enteprise en el directorio de la consola.

o " +#~ "contacta con Ɓrtica ST para obtener una licencia vƔlida (info@artica.es)." #, php-format #~ msgid "" -#~ "License out of limits

" -#~ "This license allows %d agents and you have %d agents configured." +#~ "License out of limits

This " +#~ "license allows %d agents and you have %d agents configured." #~ msgstr "" -#~ "Licencia caducada

Esta " -#~ "licencia es para %d agentes y tiene %d agentes configurados." +#~ "Licencia caducada

Esta licencia " +#~ "es para %d agentes y tiene %d agentes configurados." #, php-format #~ msgid "" -#~ "License out of limits

" -#~ "This license allows %d modules and you have %d modules configured." +#~ "License out of limits

This " +#~ "license allows %d modules and you have %d modules configured." #~ msgstr "" #~ " Licencia caducada

Esta " #~ "licencia permite %d mĆ³dulos y tiene %d mĆ³dulos configurados." #~ msgid "Please contact Artica at info@artica.es to renew the license." -#~ msgstr "" -#~ "Por favor, contacta con Ɓrtica ST (info@artica.es) para renovar la licencia." +#~ msgstr "Por favor, contacta con Ɓrtica ST (info@artica.es) para renovar la licencia." #~ msgid "Could not be create, duplicated server name." #~ msgstr "No se puede crear, el nombre del servidor estĆ” duplicado." @@ -58073,16 +56446,16 @@ msgstr "GestiĆ³n del grupo de mĆ³dulos" #~ msgstr "Error al crear/actualizar %s/%s los grupos de mĆ³dulo" #~ msgid "" -#~ "Access to this page is restricted to authorized users only, please contact " -#~ "system administrator if you need assistance. \n" -#~ "\t\t\t\t\t
Please know that all attempts to access this page are " -#~ "recorded in security logs of Pandora System Database" +#~ "Access to this page is restricted to authorized users only, please contact system " +#~ "administrator if you need assistance. \n" +#~ "\t\t\t\t\t
Please know that all attempts to access this page are recorded in " +#~ "security logs of Pandora System Database" #~ msgstr "" -#~ "El acceso a esta pƔgina estƔ restringido a usuarios autorizados solamente. " -#~ "Por favor, contacta con el administrador del sistema si necesitas ayuda.\n" -#~ "\t \t \t \t \t
Recuerda que todos los intentos de acceso a esta pƔgina " -#~ "son registrados en los logs de seguridad de la base de datos del sistema de " -#~ "Pandora FMS." +#~ "El acceso a esta pƔgina estƔ restringido a usuarios autorizados solamente. Por " +#~ "favor, contacta con el administrador del sistema si necesitas ayuda.\n" +#~ "\t \t \t \t \t
Recuerda que todos los intentos de acceso a esta pĆ”gina son " +#~ "registrados en los logs de seguridad de la base de datos del sistema de Pandora " +#~ "FMS." #~ msgid "There was a problem loading alert" #~ msgstr "Error al cargar la configuraciĆ³n de la alerta" @@ -58092,14 +56465,11 @@ msgstr "GestiĆ³n del grupo de mĆ³dulos" #~ msgid "Visual console are not shown due screen size limitations" #~ msgstr "" -#~ "No se muestra la consola visual debido a las limitaciones de tamaƱo de la " -#~ "pantalla." +#~ "No se muestra la consola visual debido a las limitaciones de tamaƱo de la pantalla." -#~ msgid "" -#~ "All the items are not available in CSV, only the previous versions ones." +#~ msgid "All the items are not available in CSV, only the previous versions ones." #~ msgstr "" -#~ "Todos los elementos no estĆ”n disponibles en CSV, solo en versiones " -#~ "anteriores." +#~ "Todos los elementos no estĆ”n disponibles en CSV, solo en versiones anteriores." #~ msgid "When connecting to Artica server." #~ msgstr "Cuando se conecta al servidor de Ɓrtica ST." @@ -58109,81 +56479,76 @@ msgstr "GestiĆ³n del grupo de mĆ³dulos" #~ msgstr "Error al borrar %s mĆ³dulo(s) de %s" #~ msgid "" -#~ "The community version doesn't have the ability to define your own library " -#~ "of local modules, or distribute it to remote agents. You need to make those " -#~ "changes individually on each agent which is possible by using external " -#~ "tools and time and effort. Nor can it distribute local plugins, or have " -#~ "access to the library of enterprise plugins to monitor applications such as " -#~ "VMWare, RHEV or Informix between others. The Enterprise version will have " -#~ "all this, plus the ability to distribute and manage your own local modules " -#~ "on your systems, individually or through policies.\n" +#~ "The community version doesn't have the ability to define your own library of local " +#~ "modules, or distribute it to remote agents. You need to make those changes " +#~ "individually on each agent which is possible by using external tools and time and " +#~ "effort. Nor can it distribute local plugins, or have access to the library of " +#~ "enterprise plugins to monitor applications such as VMWare, RHEV or Informix " +#~ "between others. The Enterprise version will have all this, plus the ability to " +#~ "distribute and manage your own local modules on your systems, individually or " +#~ "through policies.\n" #~ "

pandorafms.com" +#~ "Do you want to consolidate all your system monitoring? Do you have many systems, " +#~ "making it difficult to manage them in a comprehensive manner? Would you like to " +#~ "deploy monitoring, alerts and even local plugins with a single click? Pandora FMS " +#~ "Enterprise Policies are exactly what you need; you'll save time, effort and " +#~ "annoyances. More information pandorafms.com" #~ msgstr "" -#~ "ĀæQuieres consolidar toda la supervisiĆ³n de su sistema? ĀæTienes muchos " -#~ "sistemas, y te resulta difĆ­cil administrarlos de una manera integral? ĀæTe " -#~ "gustarĆ­a implementar monitorizaciĆ³n, alertas e incluso plugins locales con " -#~ "un solo clic? Las polĆ­ticas de Pandora FMS Enterprise son exactamente lo " -#~ "que necesitas. AhorrarĆ”s tiempo, esfuerzo y molestias. MĆ”s informaciĆ³n pandorafms.com" +#~ "ĀæQuieres consolidar toda la supervisiĆ³n de su sistema? ĀæTienes muchos sistemas, y " +#~ "te resulta difĆ­cil administrarlos de una manera integral? ĀæTe gustarĆ­a implementar " +#~ "monitorizaciĆ³n, alertas e incluso plugins locales con un solo clic? Las polĆ­ticas " +#~ "de Pandora FMS Enterprise son exactamente lo que necesitas. AhorrarĆ”s tiempo, " +#~ "esfuerzo y molestias. MĆ”s informaciĆ³n pandorafms.com" #~ msgid "" #~ "The Update Manager client is included on Pandora FMS. It helps system " -#~ "administrators update their Pandora FMS automatically, since the Update " -#~ "Manager retrieves new modules, new plugins and new features (even full " -#~ "migrations tools for future versions) automatically." +#~ "administrators update their Pandora FMS automatically, since the Update Manager " +#~ "retrieves new modules, new plugins and new features (even full migrations tools " +#~ "for future versions) automatically." #~ msgstr "" -#~ "El cliente de Administrador de actualizaciones se incluye en Pandora FMS. " -#~ "Esto ayuda a los administradores del sistema a actualizar su Pandora FMS " +#~ "El cliente de Administrador de actualizaciones se incluye en Pandora FMS. Esto " +#~ "ayuda a los administradores del sistema a actualizar su Pandora FMS " #~ "automĆ”ticamente, ya que el Administrador de actualizaciones recupera " -#~ "automĆ”ticamente los nuevos mĆ³dulos, plugins y funciones (incluso las " -#~ "herramientas de migraciĆ³n completas para versiones futuras)." +#~ "automĆ”ticamente los nuevos mĆ³dulos, plugins y funciones (incluso las herramientas " +#~ "de migraciĆ³n completas para versiones futuras)." #~ msgid "Plugin creation" #~ msgstr "CreaciĆ³n de plugins" #~ msgid "" -#~ "For security reasons, config.php must have restrictive permissions, " -#~ "and \"other\" users\n" -#~ "\t\t\tshould not read it or write to it. It should be written only for " -#~ "owner\n" -#~ "\t\t\t(usually www-data or http daemon user), normal operation is not " -#~ "possible until you change\n" -#~ "\t\t\tpermissions for include/config.php file. Please do it, it is " -#~ "for your security." +#~ "For security reasons, config.php must have restrictive permissions, and " +#~ "\"other\" users\n" +#~ "\t\t\tshould not read it or write to it. It should be written only for owner\n" +#~ "\t\t\t(usually www-data or http daemon user), normal operation is not possible " +#~ "until you change\n" +#~ "\t\t\tpermissions for include/config.php file. Please do it, it is for your " +#~ "security." #~ msgstr "" -#~ "Por razones de seguridad, config.php debe tener permisos " -#~ "restringidos, y los usuarios \"otros\"\n" -#~ "\t\t\tno deberĆ­an tener permisos de lectura o escritura sobre Ć©l. Solo " -#~ "deberĆ­a poder escribir el propietario\n" -#~ "\t\t\t(habitualmente www-data o http daemon usuario). La operaciĆ³n normal " -#~ "no es posible hasta que se cambien\n" -#~ "\t\t\tlos permisos para el archivo include/config.php . Por favor " -#~ "hazlo, es por tu seguridad." +#~ "Por razones de seguridad, config.php debe tener permisos restringidos, y " +#~ "los usuarios \"otros\"\n" +#~ "\t\t\tno deberĆ­an tener permisos de lectura o escritura sobre Ć©l. Solo deberĆ­a " +#~ "poder escribir el propietario\n" +#~ "\t\t\t(habitualmente www-data o http daemon usuario). La operaciĆ³n normal no es " +#~ "posible hasta que se cambien\n" +#~ "\t\t\tlos permisos para el archivo include/config.php . Por favor hazlo, es " +#~ "por tu seguridad." #~ msgid "Become owner" #~ msgstr "Convertirse en propietario" -#~ msgid "" -#~ "Unsucessful delete profile. Because the profile is used by some admin users." +#~ msgid "Unsucessful delete profile. Because the profile is used by some admin users." #~ msgstr "" #~ "Error al eliminar el perfil; estĆ” siendo utilizado por algunos usuarios " #~ "administradores." @@ -58192,32 +56557,29 @@ msgstr "GestiĆ³n del grupo de mĆ³dulos" #~ msgstr "El sistema remoto no es compatible la informaciĆ³n del host SNMP" #~ msgid "" -#~ "The current authentication scheme doesn't support creating users from " -#~ "Pandora FMS" +#~ "The current authentication scheme doesn't support creating users from Pandora FMS" #~ msgstr "" -#~ "El esquema actual de autentificaciĆ³n no permite la creaciĆ³n de usuarios " -#~ "desde Pandora FMS." +#~ "El esquema actual de autentificaciĆ³n no permite la creaciĆ³n de usuarios desde " +#~ "Pandora FMS." #~ msgid "Whether to use Javascript or static PNG graphs" #~ msgstr "Usar Javascript o grĆ”ficos estĆ”ticos PNG" #~ msgid "" -#~ "If you have modified auth system, this problem could be because Pandora " -#~ "cannot override authorization variables from the config database. Remove " -#~ "them from your database by executing:
DELETE FROM tconfig WHERE "
-#~ "token = \"auth\";
" +#~ "If you have modified auth system, this problem could be because Pandora cannot " +#~ "override authorization variables from the config database. Remove them from your " +#~ "database by executing:
DELETE FROM tconfig WHERE token = \"auth\";
" #~ msgstr "" -#~ "Si has modificado el sistema de autentificaciĆ³n, este problema puede ser " -#~ "porque Pandora FMS no puede anular las variables de autorizaciĆ³n de la base " -#~ "de datos de configuraciĆ³n. BĆ³rralas de la base de datos " -#~ "ejecutando
DELETE FROM tconfig WHERE token = \"auth\";
" +#~ "Si has modificado el sistema de autentificaciĆ³n, este problema puede ser porque " +#~ "Pandora FMS no puede anular las variables de autorizaciĆ³n de la base de datos de " +#~ "configuraciĆ³n. BĆ³rralas de la base de datos ejecutando
DELETE FROM tconfig "
+#~ "WHERE token = \"auth\";
" #~ msgid "Hide not init agents" #~ msgstr "Ocultar agentes no iniciados" #~ msgid "Cannot be modified while the downtime is being executed" -#~ msgstr "" -#~ "No pueden ser modificado mientras se estĆ” ejecutando la parada de servicio." +#~ msgstr "No pueden ser modificado mientras se estĆ” ejecutando la parada de servicio." #~ msgid "Dashboard name" #~ msgstr "Nombre del dashboard" @@ -58230,14 +56592,14 @@ msgstr "GestiĆ³n del grupo de mĆ³dulos" #~ msgid "" #~ "This system has too many modules per agent. OpenSource version could manage " -#~ "thousands of modules, but is not recommended to have more than 40 modules " -#~ "per agent. This configuration has B/A modules per agent. Checkout the " -#~ "Enterprise Version for a professional supported system." +#~ "thousands of modules, but is not recommended to have more than 40 modules per " +#~ "agent. This configuration has B/A modules per agent. Checkout the Enterprise " +#~ "Version for a professional supported system." #~ msgstr "" -#~ "El sistema tiene muchos mĆ³dulos por agente. La versiĆ³n OpenSource puede " -#~ "manejar miles de mĆ³dulos, pero no se recomienda tener mĆ”s de 40 mĆ³dulos por " -#~ "agente. Esta configuraciĆ³n tiene mĆ³dulos B/A por agente. Instala la versiĆ³n " -#~ "Enterprise para obtener un sistema profesional compatible." +#~ "El sistema tiene muchos mĆ³dulos por agente. La versiĆ³n OpenSource puede manejar " +#~ "miles de mĆ³dulos, pero no se recomienda tener mĆ”s de 40 mĆ³dulos por agente. Esta " +#~ "configuraciĆ³n tiene mĆ³dulos B/A por agente. Instala la versiĆ³n Enterprise para " +#~ "obtener un sistema profesional compatible." #, php-format #~ msgid "Check if the process %s is running or not" @@ -58250,22 +56612,20 @@ msgstr "GestiĆ³n del grupo de mĆ³dulos" #~ msgstr "Error con el cachĆ© de agente" #~ msgid "Error in creation plugin module. Id_plugin cannot be left blank." -#~ msgstr "" -#~ "Error al crear el mĆ³dulo plugin. Id_plugin no puede dejarse en blanco." +#~ msgstr "Error al crear el mĆ³dulo plugin. Id_plugin no puede dejarse en blanco." #~ msgid "" #~ "Error in creation network module. Id_module_type is not correct for network " #~ "modules." #~ msgstr "" -#~ "Error al crear el mĆ³dulo de red. Id_module_type no es correcto para los " -#~ "mĆ³dulos de red." +#~ "Error al crear el mĆ³dulo de red. Id_module_type no es correcto para los mĆ³dulos de " +#~ "red." #~ msgid "" -#~ "Limit the number of events that are replicated metaconsole each specified " -#~ "range." +#~ "Limit the number of events that are replicated metaconsole each specified range." #~ msgstr "" -#~ "Limitar el nĆŗmero de eventos que se replican en la Metaconsola a un " -#~ "intervalo especificado." +#~ "Limitar el nĆŗmero de eventos que se replican en la Metaconsola a un intervalo " +#~ "especificado." #~ msgid "There aren't server added to metaconsole" #~ msgstr "No hay servidores aƱadidos a la Metaconsola" diff --git a/pandora_console/include/languages/fr.mo b/pandora_console/include/languages/fr.mo index f83215a207b150e115325996466b2d80a2ef3646..cd0fdee4e2322ecda7eca30d070efdfce8f51cc9 100644 GIT binary patch delta 191262 zcmXWk3EWOa|M>BX`?e%YAxgz9`@Zk{PO^uTtq_q)DIr}_s3b`#3ZCnR71cd7kr^D!uh*rR1T!=`SYue{F9_B(B5Z zc{3$8R!Aha6whpP;`{xX6WQV{W|eyU<<^ z^HXnvMX(zdz=yCnPR0_6WFql?Z1^^M39EC%4c`a5V`=Ko;N`d+o!PqRS6Geu*H{v> z{g64)5-Xw;c@UlP7&K$gp_!bijGuU$0+~sChz{@(UV)!Qzric1A3fH@20DTAKPNLMic+|d24{LVI`CLD@@eQMd=uSFJJErT zpi7YTNajReER4l4i7w$A=pI>uZpx4FE&Ku-<2}EGah4=06k_q$qYoTB8a#pqatb{@ znU96kWk*w91XCG`wvXP91~442#)zLI*k+>!+d@(Nt#nJuFQjG;=kv3-&+*e;4iNL-dWg z4y$_pH&JlS{>H~J+aKXLK7~HG3eC_)bfE3Aei+>gC($LzaVBJ@AlhFgbVBuz6-ac5 zc0!M77fgD?eH7eePoR-KjSf5&P5sQ+J~#SKY<~}((MQn@=yTgJ4gZHezdv68DS8sw zN{I_+IR6g#PrNbhY?$fgXh&C}9Tbk1MDMSN4p0MKqB_x5XvbaA=WanW*B9+?aBP17 z4Se)j&cB5TG}!S}^nsV7bJ30#p&fjH4zL#-UaR{WVc@jLYs=fex@;9p@W zue=bJq&Ysp^^W*Bev_myom>QwH8a0g8Y{_ zmed=NkD9muTj39}UM5po>IK&q9dH~D!mOFo61UKC@?HuKuqiz)aVu^{Q(7`hc(6M9 zx$K4&a5Va2c?ZqZdUPqapnGTsy7~6R_8+51&`o+A&E)w|XRcX8LoW2e0_cr5pfjz6 z4)Az%BD!Rg(50D`ab#sT8X}Dx1jg^hz@uG{b=RRm6m!#7C{53g$B?n z*4syWW6~S$p->ecMPI#3qifL)x1$4okG^`(#d_}CVXqWNpR0;~R-2&D^}!-|Uu=I4 z-CK*%`&Z>oOQsq&)8HEKMN@bXUDIP|M*fIq$rG+$jn23@I)OUq610ieZ^qQQM+X{= z88{NXZ)U8|%aaTpeNKa^+>bu^2m0VYXaJXA5$c7}>lM&IYoVL9S-jp6?Wa%lA@sh< z=zTNL%)Ev6yCO-!P4N}l@ga0(N6`#iLL<(4Wmuvs(Ry?Az7A+d{n7hJpnGL3I)NwA zeqTbLdmUYpMd)csZlU1jI}y#DH!V?ydKEPC+tA1dqJa)a_rQ~A2d|+sUW4wDJ(z*N z#`awK!l^2b_SX{auQSqLGSP>Eo8p0Z;W0Et&!RJ!gU)O*I)fGQ`uf=ZHJXV7Xve>! zoABS*eqH{Mp(>cl9QxJlkZR}r4WZx*<56^mZ=fk#fj+PfeY0&r&+RVs6?+1Gu~fS% zq`W=48M~nwxfAVY3_6jCXg|}@3BHQ?Jpb=fFg5GY4!5E+I2zlt76={WjTS`%t&C=_ zIl2crqia6^&Dc;hpoh@+#)MdZIbMGolRmhVf+_qAjeIZqQ|ffA=O`FDDjKbV-rocb zv>Q63;pjl)(LMDN8qi8Kp!MjBXfv9LT?IM+cJM6?c6bg=)#Xm$&PCtxj{f>rQ~*nR;GEb}#CDf6KjDU9xwiq~-dO<_G6+`Vn$g+AymzZ?Cj^aPsn z*USE*UAk)vrKSE5TM7+yAo~0y^!Yc?K-Qx7@5B~(Fc}NQt_|<{yU>AVpdX`m z(EzujoAh9;XTC11`4#9=6+@qEfNt7O=zu-ZnGQw!8HFzSld(Pd3I*5fZ8Wl#==uK~ zz40`9&eN_B9p8XjWa0<~BRr3GkX|?p zd^P%DIdn#K(Cf|7j&F(A@4|A_M_^lg1KmTX(A58n_J3`W5O8TUkmi`v@Bhsd?D%#x zl@Frld;;|-XtXgEgKpvR{u+Hq<0dQ)^MZbmb6U-U67Mg4hnNmimWKZ<7NFHAb% zRX2p0l*JO%>!6YLK|8z~4QNcPPeliw8|xpS9dC?&gC5(T(fdxJOOmNr_%>XD)~ghY z-~Yxmcx>9E9o-*q7#E$28MMC^>+8^z??5wm1WobTcs*P3aJ>K;czJX}jnUs3?a%-^ z6;FmYQC}MD=uY$$3`aX08=Z!B^cI@>m1qaM(SUzK2RMWFlPHmv`n#aq=yNsD>uu2I zx}ljLkfdOWMxmSQ8Fcf^k2kD|*LR~G96<*-gLaguWN5zv4g7kv<1(?mVQg=UE@gML z|3T;`PmZPF@tT3ou=#@C|vmqI@()zNX z{p+#59L>-=tc^Rcl;{7la-riY*pT`dbmptD4sJzLmaTl~xDdMgOQM0*N003YG>}>7 z!1H7M6D&`CBYN)tKsRxo3Y>paSB8QqtBG!&=IDSu(1GqoKeOY|j7&mbMAOmxX2tgR zqMx7ve2#wq_n~{>M>LR&=!>aTMb5t|=}x)cnMa-jp&k{#Y)(?a$2G?-iJ=)^~#)oH^m|vOyPUz+U-G8`6HIbU(txK zsuBinfM%{GdVd!*6MbU){pie-=%$>A9`DI$fN!JEf9efpU^BYr`_SWa0$q~Js)hjy zqTl~w=>4tH4!g(t{b)uWi#{FOr=bJR#j*GidMxWy3xOruP%x4X=$iIKPeVU+^Noww zSD_!7FR=>#jQ&X80je9fwfwjb-tx*#0M0pkAa_Xm1yN7|q-p*dCW+BTUpzOQb_%bnRQDDU4nU{gGezObs*3EzMg=-#>;-9yh~XIzOD zJ^#7thPA7Yu5Amffj6VO^=UNKpP;GSg{JyEx@XGO3j@|iXVyN}d!T_1K__^B^pWTU zOuDAeQE<%`p&fjN?&|GmD)-0sV`xWb(Ln!2Gmxu(IIcy}O<5D&be+&sF%S)86ndH- zLo>RdKIh-_y@UqeOkbmcoJKp!-XP4Z7#dg&^u5p+oq1O@Gk2l`jX~c7&!PRi6J3Yi zzZc#8$I*#hY{2<<(`9cMc6W8OgO1U=(BFXL&_L(mIQ$X~@TNu~pn+({9zi>P65T7) z(NpjS8sKUyi966to=;Nn!AyJ8C|`=AluhiixK4Aw%IFnJS&A{1^z9~_OIf~U|3C!;Txmty@j^uYz_8h(sE|0x>i zA+(>9Xu$uV6Up5)EMXD!xw6PO$wVazZjNf`tFkV-c^acPc0*@!TWo&-9pEW+^Sy-b zjfLnyA4b1GGxaUn{|U68KhXYjH1k+;{xT@I`C6hE`k`w!65Siq(2T4>2i$<3=l?}7 zp(!rbJfyZh8c?TbPjra}qI=?AbfS-7>d*h(H3%CM(6>rAQcpUwG(4a+H zq76QR4)l3+CpyCe$Ujs~oJA+Ht96*buUMS=X>iS2PG+E2!fp}izJUd0SOSLZ6_np}aNeb@TSJB=2Zmh3G zUpza}&2<(%-?`d_fXboI)r;PQ?wMZbeZ$bbGbPp+V+QptXdu5ulj-fl?!OjYirVPf zw?I?d9*y)CJdAgu8ED%f+}{_yJ`_#qXq=4`&;UzxOiSF3HPMW|j81d`vLwmGY6=d# z0bS!A=)k+twLFA&bPj!WX6qCJtcc!U3oBtg^!N@zH}zxaL?)vHPDcZL2kq~Jl$`&K zv0)E7@Goe}e@9c8qjN}U8FWcnp&blH2N;c}^a(Weub};WjP8jI=!TN7wpwbf(ME0oP$!+>8c(4&8)Tbq!X+ zU#PdiMp&gA=f66IVHEt6&s$gme?mLBtb1DGUM!6j@nv*3e}Sd&NA%sFEf=ioG~(JL+WPuadiGtj#?=l@{}vwQQ~jR*_&NlP@Lerw;b zSzbl=!hCeC*P^Na65aI&(O2pTY=BqX9&C@kaGpVz?s+ue8PRvp41JuW;O6-%`UAR& z{z5ZQ;EvEiO?1Ep=xJ$-X5^MwAB+w#0)2iWdjGuGz6_nn2J~Zh06i_q3lw}M=IIww zSP)HVS#-uN@e}NTuI1(ZLuNA2dO38ajnPfm5*@fB*2Laupf6%8oR1#EQ%Jzc#6=43 z_8bF3YI|TM>O-*#&ce#L9jjsD&M=ee=<#ZYZrYycw__aEz{TjMK8(e%=)f>=3v^-~ zF{|JI9u!PnUo^G%p)(kRuF)iPbG;htOJaR3I&(S~TI zZpIvppXg1&4(>ub7!m6eWBo;Rrt{GA{s9{3TJ*WC=z#mtK!1((|6=`$yF#GF(EDqk z{WZhXKmY4Y!3Xa^*Yv?ye>&D@p}YQl^uf>3j=qWQKcSoJJi3{$7#!BV6#Aa%jiqq{ z7R4p#M0O75{JR+r(%>;UigtVoP1&Vrz9HfLPzL=b+=zB?2bzg{(4`oSuI*%WQ%^_x zn~hFj5xQB|qM81D2ToG<4h=2T|{d zzTq~a_kD-nm;0WOk$PB<`u*4m7bhv0lEl4XfE&;mwm{dk7y2r`2c5}e^bPk4x`{r- z)Qm7SqgdaAehUtu_hq{;cqQ8Jwdixn@)Yd2D!TTKW4$YyvVLfaM?{~9*QcU0or50J zkI?{5p!feB%|0w-^eVK!is%cfDe@vpCi+tFfidXXJ&k@Yr=gqeWps(=qiehj-7_1} zH`xv}L%*RfuAKLWH)m<|xz^~WycvA~4MF$TGR*7w|B`~KI1v32eeh`N27Y>>n={)3 zVTQS}4fVq48V^Dz@DjGiH=}2;BlV`kgVV4A^~31q%=;h{^!yj1;7rP(YtzyT*d2}h zPV9kW(EI*}9@n$zl4W}+1a=*o;_~S8jnRyDh}UmHCo%{P;9g9+nMP31=cDhU4{ky? z&rWov`_Y-^7!fvUL39sPLibP`G_daI^MldnA3*oU7<8P;=tSQh!TEOvAJgEPZi_eW zjUGd1asllq`@^B07rnnIy7uMKnYBd+>Wn^j2O8Kg%)lgi+FnEV%KC>n{|0b~1~Pohin5_$R;LDiGFq)ygXduaB zvG6y#d2)>j0Tso&saHpT;k=Fp^f{Ws|Dmb9fS#6YkA@EOp#zsdGg=kxw>3J!p3x!5 zgp!F-6dG}19J)Eyqc4bq=qCCboq0M-Wj!a>!mH5scIf+}E4oK+MFZ-ObMU^{e#O`j zSRwSeQkdQIUx|XLsg2I88Jd~_=!{2T20n@I_IJ>XY(V$U(Rlq5mZx6$v9NdAqWug< zmv{o2u^DJ4=3Dpte@MX>&}Zn4UttwIh&3_KxR9Ba=tt;wEQ?Q|du0h4$QCr!Kg9Z< zXg@g~4*}Q5O4M&h+oxi(GKCEkT&uH~fjOQCySE%Vo0f3aTv$J~Y%vzXjdU4sJ)+ zZW!9pl;|sH0Q1q5uSWaXhJIX*qk;c{W+v;j&~K4wS#+suBq_KSH=-SNj~51^9gIN( znu@+aUPS|1hwg>%&;kELpU?I}2<&RKUNPDzws*w#wBH%qlglYMv(GUDccHJ+GwANW z;>D2CYUqG%(T~*-^m9B69cUDqu}RTaq6^VXeS!wQ6TSZwava(J)5C)W(all{eHGV@ z?fuag%<$-==!~C4Gxr?Y;VkrgFGfE)8?h9gjModi6#r0)?vdV@`u+b91!wvcn({^H zrdo?;Vmms(ujnScg#OgJ{N>PI6&Q^L<7Gr*2|(3t$|6`rcJ!i z2YpozMrZsKnyQ)T0Pmw6e~AYCZM=RI-9w32LclrE=ZeI7Ei{uiqQ`C^+RtOJaQ;(k zNQ05jLeKvv=*+jGk$)fSCvi3POs}RTR^b}-zDH(-4yT~~&BhwI5S{4{Xg`0V0i?|i zr|J6HoPQ&4N`vq6_UHq{(T<-)Gx7?Wsg>wVcA$a&h6es0`jhPXIpKP1bie`VN9X}` z;Ahcu|28_#>Ldj_*cls6p{YrGE!>zF?Wh#qhBeR!r=l;GdDs;{MFYC`jL3+-9aK(9ex!DY}uDxu$qI_Uk) z(FwGP*ZW8BLHmCgeSuBF)Ia}!pMtNd5(KXEcRyY*}u?_VG=vQtcy1CxK)S6;N z>RZuG`48I9RrAAr8R(2Fp#juGm$vq<)Bq3`Y0Vedz8Vj*c@1&B!=3^U2pJ_`pJREtjHexdnajZ}i6W zMPUYc(1D7e--uGt+GvK_U^%=Eo#8|@Q!~-s{|)#7|ryRP8TcP*gjAmdE`hpvcW^5`}$GO;?@e}`} zkb&1N4Usm$BGm6jQ~eB@!WYoM-at3oDs+II=;k_%26PsCW9IkM65a52{0u+BPjJk# zuovol!1;IW8&W8N&C%mF7#(mJx(Uak9Y2E(G&8m@i1iQS_0Q1^>_%U`Kg9aq=-$Y_ zJiK@cq5U*j&iVI&PBeH!Z!~rHp&dMd&U7|<-!e3iwdk(j7VAgQ=g-D^)(^w;`O$$Y zq7!L|_H$#j`-hx=JM2$`Grk|)bdRAgl2_4zmc{Fv(Y4$cJ&o>#tSiEjl|Zkzzzn<% z?dOr`H1z%j=n{XKq>w@37#eAgkHS(ELLY35cGw-A!BDh=k?4$H#yfBUcEnsChY9pX z_r^$c#?PP=oq_JD`RHCsE}>wmH=#5C5gqUn8c@EKVF`+11?siYOx=lIe-O>kc+9|A zXg{B#OScz&ADoQ!LZ5^^RtX6#nW#yjDK|8W7bc(`PDW=u4?Q+Z(Kp_Dbmm*o7tI0 zdd8>WO<4_1aeXwP8_~>mM*F=R9cMJU$tPk?#!tLL!3W-sH@t_g{VH_kUq=t4DgQIp zv#bdn6+mZP7JX$mLf`eR(M{G4&D>CQ?~Fk2n~tgf{Qn#ZMm8V)Xe>kD11r!6KSjTe zoA5?Fj4nZ?wY_s0$%{T$2Hh*Q(fc}LFYJY8>JxOPn`3=9`rKhOvuD;P!;R@1g89)@7Dtaq z9W>I;@p|8Q{XR4UL*EN$(9QQRx)-u;4xje|=){^~ z>hJ$LQ*bQ?q38O+Sbqi0$lGWKA4k7LmuxRq#q=#3bUXpAn|%~%u1qQ87rU{TzM zrSKmt>-jIfHJr;1(R}Uc2ItM*km2hpHNR>ZG0C!??=#pPoSCk2Qx6o zj&PjIq36FUx=A}>(gz1paKO7U1D}aEyo;{c2K2t~(cSwqI?zdU#{Z!|!Sd}4*Q=mQ zQWssiF6hz>KsV>TXn*5&a{ldTVr+Oh-Z%^GU_SaHS{wZWUAt{)AP1vI(6v5=4s;&v zH`A`Lm-3>Uu`Iebnxoe{?Be`aq0pBGJ9s``n2GL*h0%}Dlx{@dlwYH%{0==0|Dv1t zny-UZ(Ccl`(=Z6#Lu1g*I~l9tCrJvmD4arPT55MVE)|hunz#}DiPjFi-UUtht>{ed zK?53zW@J3NiJ!&6_yLy3BHx6~dK3D563tX{8U@#4R&1DyW?~VVq7P#GMl>Va(SZ-3 z1OF21XJY+dG*dbDgtfjJeXd-zHky$Z$n(j>trU#pPILzMp#zLW*ZK)G;%VrB^U)5M zMb}2RqML0W+TX9S{Tw!+p7y`+e3NK9O#S^|kJxZG+VR6^2jkIWG9|Xpi|y~DGhBrZ z_!S!1fq4BW8t@qp8uW{JQhRI)QrV?_#(QgcA^6wLyzfs zG*bolg#a?pJyI3TSZy?et)iV{doT2jdN+FiqhW7V5n%Vc!05_sb_BHwj{rLdr-{W%G!I1h&=y`6AzJU6m z13VnBKZnj}9@^2;=mvCvZ_ojMLZ3T_&NTO-5O@i+UJsp6=OhI?yaS)bd(atPLXTm- z??QmrqHEhE+7TVF4?57$*ghVe`3v#-JhY!>=(pk%H1MN<5 z|DbD`=f}7-XnS*XiMq%7{g^?0Jh~^|LO10ybW^WJGyFOFk=lihcN(+!`#3{|{5dF$Mi*C+$(ScUQ>wB>|^~ABTms+6p zKC%AhG0uN^8a}0=HJ(5NsD3=mpfh@XAeO=x&_GsU27ZkOeil=Et0pux55fp&B+7R4#(ZeNP-fv?a_cnIzAcTBxMehYzCLQ~%p zy>A$rnJ3VGr(p&zLj&KPq)>;#DKvFuPKFLzq66H9-uOUle-^#(4Yb3xXyD(YzY))& zfnRefSPwnMz0e7aKm(hE_Men%}>Ykj;{4nG9Fru`XSWChT`N~6y=MK@!2G&Ae*D#lOjqhQ3RZNOaT!obDQ88t%(?upKL zG`dvN2Hts_Ex%?96KZ8QG zOCj|)V^->e(Q`WtUAwVpre2KK7o#a(j(+97jP>2(vqMuowE(8ielp;pk_09D3h;G_@bZ`f>F9pN|&$FVq{L&-X?9y9b@nD72sC zlz8D)bkn?zZo;)_V0+LR9Y-TRg9ez+|7jkyqeAHYrDA(M%%I*9o%z7%DD=L`$S(S3+16+aQ&|_3LJw5d%>xy>p0A}$z_QWUA%>0ZlRrV~wE71%U zLIW#-237~nObbl?{a49rExS%ywzRo3)mDx%Fa7~%gg8=gQTJ%dL2ANoMfZ0V`pd~LK0n&Mh$ zfNjvt+c(x9LU;dUbWgm3F5$xHr`h=X50Ar68l3SFw1d-V%>h$bsiFw*+yTDOfC`k|>Bh7R}ydfyB2`Ww-u z=)h~@_04ET_r>d{(7-RDOO)sGFiuIN|74;e1!vp|9iS&V;1G0%qtV^|6q@oW=q8#G zor~VL5dGYK9NWK+?FZ0)kE0X1fSEC8PG4c1zdRJ2L4I_zWuO67KnJdk>DVyVo1we8 z4Z8NXMjt>2cm@q<4!RWYq5*t>eq}eHU&CWq-1C1~u5fHBq8+xylGq>pQ|hGHz69Nz zo6w~?gl^JvXlnE34tuE#`d(-i>u*NaqZ#@>dJ&U;Ui0S(Yg7fjp&8oVD>@3D@k{9L zejB}SD;mfz=*<4ZGFak@@Mi3Q<*1KBH~CxW1U^Ii*>?r!-xtMyH27fYE7Mco@6PCq z#-bT{3Efohp&e~RzYRa3$1Y3W^wjT%(rCv$(SRO9ug{P5uh8dCqy6N~$N6tep>n>E z@?q%AUPfJY zwWufCQ}DtB^nnHF4Ax<4v!KWABG$pQtAh>D_7UiAAB!H_XQQ)Y`(m6-`zm}4Z@eaa zWw#*DClkL>@LZom*E&%scnumrRdk@6qFpfy_1>}GAI-#2G=OnvK+mJc_%-xcFO1he zLNmK5CFk#_*zhm<9=PV(aBfSW=e9h$`|F_@xCw8<3D^<8Mh7l_U3%)@`KXSr@c{I_ zF%zBG9CXb;LMOHZ3wZvIQ*bwCx;{i!1e;Q?i*CX(=q8(k&SW2&v0rcw{*DGXwQzds z=lWbU@Vz(~kD>#2DG~-Af*I7uW75>VMZuIVK|5ZK?twLE$A{1voI+EYJtG9154~Om zebY5XQ{M*toOh27i6+s&rlCtVH-q!}cLK{L`4ebG!nmueAu?l)o){1IKE%q7BJxC~wTWKjx6S{B^{bgc znE~j751{YzN6?f%k8a|3(53nU&Dc&f)d$f){)_EJN~R`~Oq8SGjWy9gn#Ou3G>~4g zJ{S$~Axz>UXa@d4Q<|w%$jtRnh2%R4dk{l7pV zgNDN8!)9rOrn&=qjCw_fp-VA7`ciCv2c79^ybZrVk5{n@q2Jo*z&+3<8-QkDG^YOh zKgLmTmp&UW%*K+`=b=lmC0^f)c62P(|BUr46~psaq5~I2H(||K?-1+#(Kp{1bkDq0 zk@H`k!eSbl;eJfRB9%gf#n3e_i=N|3Xh4n88Mi|>WA|9^8|#D7Q}RG;e>B#gMEB4% zwBH$(IRB=2HVuRDeRP0pD~I;d=$h9@2ka2-fqp*wp_}g&G&3vEKsTUExEo!vAJKr$ zqW%4c2A(%rB|LB~n!57ngH6x}JD^K*JNm#dbQh0`^{3Fad>(zF%s^-OdaTb!C$t3Z zcNH4oSLk@j{S+MFbi9zL8g9H2-StJ#f$O4c*9<++z0l{9=!<3wI=~_{Q!CMdKa1`} z2RwwX{TXDB@$Y|D3msQMm!d7Y2l}8H=!eemL3HMipedY$rhIm+FNoJyqk(LR?u#D9 z%(S0FGj#z|fBw%@Jq&O)I@2O(ib|sc)In$70*$;6dW;@I1AYdb*=w=BJo;s9KZxG{ z2l{;W8X>?UnELzw3KSghb~I)8qbW|JpW)Zz^|k1d>_m^(uV`kn)C}+RoaoGpqf1j2 zoj}uAZy)U)y$6%-%10@f+NaR^%d!3jx&-gX_RrAGwLM<{23_mJv3?RA_!8Pru38~8 zSECuIfL?Eg2HK?-=ih;Ej~DJk>tmx+qO+s#Mps2QNB2dKp#lFD%~3nluR}9d5e=Xf zx@o)D=KLGUa2ibQICKeSp}&e3pflNqcDy&%Pejk5_hqUR|Kx+#J78&i0R1Yy8rxT* z?~6lN94{s*I6#rQVc@c825O<3t|gkfzG#3Cp_^@Ly#7|az839g4?2M#(7kaIAK+v4 zCpv+<>W9-a8r^frXDRr=9ITCt&`t9*I`Hq<8nZPBKg~L#Yo5fr@hPl?=gxbYn$o>!$LG;wn6**3 zzYsb=g=k&$zE99@d@(Y%dAy#kuC z)@VPy(TUuJzHmmMOOiw|V0I?EH^)B>1a0FeV zU(o>mLkCQ6nx6V!R49N0sh>f=mbWzv&rd_gncs}_?}LkJFo0#~TCYI|+!XyDQ-7RB zGj(nA&{0YB`MPLk8bv#x=e-ZQXCB69@ny`wQZ3R`|A?n`i)8pMHk$^|>*wgJ_Z0f- zy|QIEhLtgc`ifv2$^7HAbR)fvs~0Cb}FCn-3C(P#$7 zq8&dIeF2^EtLO~pM^~WFeSz-oEz$jG$H&ou&Y+tz(K-ZB0KHxY4Ln(uf}5oo+F?6% zZ91cytOvT*1JV12qOZ;o=*(U~GqwXO;veYeyJ(v*p%Q2yRnX6GLv)-bNdL)1OA2;; zbF?=a;h=CsVi=l%BpUJ4Xa}#v>#w01TZ}&UA-eW!&;h?ipWly;a|G?@G#2#yXSy*o zT!Y?N7JVPoKvQ=Umd88LO*sYK1M|`Q*P{b(MFZP|W^RA<7@Cpu@%rDGT9URLOV57+ z3Z|$Wx(8~byS6#j!2amwnu)IUI&?4WKxgtj8rbh>AeY?~>Ul9WA#6x{4Xlg9u^%qM zWDg4Y+J(PJ7>fQ0CRh9LbNm?`O??M0!kapTzn;5*K3A$^dg{Mo=`qZbi9Zpc$LzCC z>8XFAp-boR7Z5Mv0@@Q@(o_GU!a{69^-LGe{~!uAZca~Z#o4$N@9rA@2D5Ot^u!m` zM`JH+);&G(1ip?pW64|66Mejn&Tv1b5lEpP;g4X2Zw&$V#+6)u1sh?v+rs_RZ{z&8 zqTw4FTH^IR(^LOsvOk)-73gVLk1oxZ=w|ySwjV@Oe;9qm{)66kWv}qQxE^OxZ-}0v zy=cGRp_}n|l7ee?7Tr9T;tiR5hmLZg16+d+PzC*ZwM2J!e>{i-(Scj^37fAI-cP*` zcE(-U7EAQyA3%_yVd$Pqet3I`XaiQGVH=jg%y)!$c6lsKy+7K~WGs%~V@J%=FFi37 zyWwg43@738{^_azDz_#B(o_F|{O^BJ@FP+JJr=dmk4$^?fjck* zhsX98(fi*)XRr#*(3j}x_yPUpbQ*n8?pd){zE&?e|M;7p!FK)k~Bdx)df8b{jfO>!3Ovq7R8h3z*h_n&y|kW#UixdG?er2 ztMqOfjC>+`8eWb!zK*7989KxD=$daqH|1U|g_-XOmc@$HJ7YO~4DI(_Of6w_H`>qf zdy*m2^E5c~YwisZS42M|EzukMps(P&qtmbq^_5r&52FL;zc0KYn_+qC!_aBhg(y5nY0rXvd4<^^NEsEWSoh&nYxxY4?YE zE_9rtXunO+%p`lq!o6sU#>N|_$M$9DfS;jDu?O8;KVw-ujqZ(W9|%iV3f&u((WPmO zW_A$XhhyUPlSqKc#J?1L@njz!elpcZ>v!OdI33+&KcE2|Lj(N_?Kt;?VJV8Co30&Z z;JxV5J%{dplSnELnsPgAH*L)M2v$IY-Q^&aQ|ucAw^6iwM0%)lLJhrh@6 zv=QO{{AeI$&^2$1F3BCS{t(*lWK8}0KXYTlN71e5KtG}no^u!Omy^1JM~ijBc){(E;9y?W@s_ zx1;y}iZ0b9bWda%722;vKUO!Od#41t*(;CY{QEWQK*L}hith4nu``}P18X=sJ@vl@ z*A3fJUx4oBbLfkwz$4-J!EM+w6MsfTk7wf1@Yi}}u@BX0Xy(qK0j4E6{|=A`4Wtx$ z!9N#xV<&W=+c5(lLsK{x&D5e;Ux)7Y&FGSxiC#7~OsEL@{jZ8HX>DwcHzg_fad;7p zcqW>{&!St<>${_S(am@WtK+ZesVMqb_)%IJO>tXv0^QL2??eM1jxOP&=tPq*QgHLU zj^4N!jdT^-@%rdaG_dc{U$aNiSM{&xbAO_HC2d@I{wnN1{aSPaL(u;2izbmwBooh4 zFo3yeu10vAz=>=pecoPoSGF+vDN6tI>Xnp#xP$XWR%4v<=#S=V&j??e~8W z1s@y{FFX;Qg6`6p=q~>_w(p7lfX?_=G_ZeTd(J1qtGOT=U}bd8o1lSoMJL!B^D=&7 zFa;wWgP!w=Xr!;BH!ea0{3yB+9dH+V-}kZo1lrGE=u%}KAND{FtVg{N`dl}3Lj5sW zpTc7l9N<$l!p&&MyU|}T-=Q-&61|8esOO##I;@V~-xR&S9UAz}=xOMS4*XDTe*#NW ze{Mqj^Z&;*l%?TQ?19J7-v!Mkh7Nn9yLkW_=!0mW-5@pK3*Pm+SWwIG_pl4!?O(9Ks1eV`i}$ZcpxL(rLwjO`Q9wV#d-{2Ds& zax}noXkeSrwLgUJk>uYL>^N;w7&u?_8g$?yXh+4-2P(&UZS=Y3Xh1ik6SxCQ;ZSs9 zFQOTHGhSbgPHZg_P%`mdyx~vu!K}}ONGqZpG)D*Of|alz`pah;re4A5QmsQf-i_XW z1|2wUa=0%)nxQgiztymi=f7#Z&IKl3s5_kUX`c)WIF4Lpi=TzE1+u&hlayI5*mVUi7}g=tPR6dm>qmf}5r$dfr>3nP?a5ebI;q zpfewe&TK@ikB?44Q$7P7Z~?jpK12uJjqZ(o=qArHJv}ih6X&lU1ta?KrEm&XqXFzh zf2kZsm*Q_U;>%wS?FG;oS3sAn8G7F>=uf&q=-wC`+ozxb&OtZpdzkwB|Lqi<(P8u$ z{*k)Ci)cpZ_*(ROWpsdsXn^g}`)@}BcradnI$ocNKKCvf=qG4kJJE?9^Sa;v#LUof z?r34O!;0t(nxO-AMmx9@{RQ+W8qiGiz6I!gAIJJuG|&U+Za;+v@(;SCd0*lDyQYOG zxMs!C2P$I*HbYa@A6=ryu>n4frg9V7@!seWG@vu+D?07funDh2mo5X{oaNAQs=vzl zH{w<_=xykO_eP&Y1AHCrU?JMUhv*p!d~BGtm-Vk`CxZCdcbD(3!pw>u;m| zzK>;aHI~5SFBFU{*K1+T%VBZqH(@y(hVFq`SQ1yo>px*7>e*ipKc#A;{q)3AI11h6 zbJ5g)9P69V%zcLhoJ^ddU`qZ&2fAu*_y>{I(GG{A9Zf>ldM-MXCFqP-qD%8Rx+%Az z1Ad2Y#*=6!{zdOgdn5b{iI-#Q@Bd~{xPc4rqci^oP0>ZX9gDvi)@lOU!3(keDjL`V zbVlpYrThjf<6d+x<(L-&zY@DsFO1&*5T^e7KcA*x$8VwmEJ8D}6J6ue=w`WqZl-K+ zh235Z%|Ly0*SAJH?i(E*+nBL(srRuK9zah+{3Oc{cm(HT(KZ5Nl|p166k%E(7kojf@Ih%gK03;Bjb(Z&`t9U z`t_QMuJudk=39(*^f8+9J!s&^F?DPghWqlN{S-zgQVd6Z)nQ@MV~LQDD0i<(al*09WObUg2(E<=omEO zr_q#6K{we9^nrP3APdm}*PsLJL+}3qYv74!(Rai3?q~*jV+P(CCA@J+bfXbpv)G*o=eGlA?W@0pY-!ybW^D&pd|CdoP z)$7nq>_=}rn!16{CDx^$VVghQJEp z^?v`$P;fJ~LI>`T-uN(9!%67O)}S-lg9dss`gd&4{(jii8E8Na(aqKY{W|tS-yaWQ z349)t-uMv(XYwVQn*Hd2zo04n7wst5vT)zESdn@K^!}c)eGnS>DD?ixXg{x@0lXjG zj4t8fWt@KlI7@>MWceVN56wtXOwA;=cR*9w3!TZs(HGD_-iy~)q0jvSDzGg*uuqs+_j%KPCy7@+-d*lUlphf5s zu0jLa9NQ0}0VhvVXh|W*M`7Sj=mU440}sRE_zXJGQZ&GAvHo4G{}b!EJ`MwyMf<6X zX1Gmk?}mOQ??m1k$;4m^z8Hp~9gjpGd^$Pp+6G*ho*>firaOu-00M>pNK@rJ|bQv4q4Sw0IH z$%}5nqG*71uoAYx@;DMJ<6Br0|A+RUdt>N71AXO+LH`kHFRYDy z(T--I$LLKo)r-&$*Q1}~ZRnbwi0z55!V4!S`g}Pw;F{>^XpN57FJ4a$rC?+aqq}_) z`lsPJ=#s2Q_reZz*B(PV%(6MmxFFhbN%Ym-1U(&hqW3+D4)`3piD#nYEx=Nq|J4*+ z!=KRsPNFl*u_dIa6xvZMbf6w+hr?t0qi6=6LkF0L2E07hx1j?bLNoU}djBO%{qz64 zTSLl9qc4b7=zzDQfjxj`<`GQIBwnA1z9|>Q`fBv~?f5VrLj%5JTgb>5G{6_pKi<#7 z)PMf}GYY2eAR1Zb?ID1I=o_yLnwiGveLc|`J{Fyc?vZ8afS;gCw+CH{!|3MxCtkmN zN9eyKCM$8FHU$SBghn_9o!MkG1GCW%=A#3Dh^28mx{Lop1H5`?usYVI-Vx2%B=oer zh|YW&n&DkLIsXoPn1&3zfUZ@cUBL?I@oJ1d&<;&;A1r|*F|}FI46H{p_7%EhKcIW* zPb`LczYY_siT2m%YtFwBc8U$Rq4l9?AS2KKpGGq?2Tkn~G!v`QfcBuNK8=37vhNPh zm&Iz-8=%h*L+^VmUZ0VqV5E!Cf!4ypTLMqEfTVq4o??n5VhxYR^ zI>T*fK;OrD<~^aFAI(UzCIw$Cx1uw;51si_Xos)H_V;4_%Xs}@^fVf1+W*4w%8f2r zA++C8Xh03n{yL-m-x;p+{f`%>MBhLkSP|V4{ULe|4fOJFLn@1-YhNEtadULwo6*xS z80~L-tj~<~<(NAEUr{ik@6i;WK~tV*Z%APobobYb^&8PW(i7cWccR~n$FU1Oi52kx z8o=fILcb-^1iEe?_zH4;>ajH)k>Q zO;-gy#tqQSv`0@z?|A(|Ou7jkqu_Cx7cXo^zw`e?138F3_($}z1K}KJpfhh2>&?-D z`(Zh}7yY&S3L5ZSG{B|NH3vBVKCm_3us2>f8a;=uZTi8G@|)(X~B{K6nz{wHISO_o2AEF}1tVH(&#F zfL`cKhs63Q^o{oo=jBx*Pf)xGOq3IvJfnat;Mkxf~tfQ*?lB=#0KYGw~am;tSFAA411@ zuoCS>W4#j^ct7;H`_XMgaN9fY6ir4oZ z`RjfqWcqSQTB1cJvv#X||&?I)tC#QS`YtPlS}tN3VYz-GII!x1#;*LML(% z&D`-M1<&cZ=w-i#&2k-@>SED4=nOl=dVjQoQD~+npy&Jr^ab-4y4g0Nn{+SwlPvLD zxUU{Iqnd0-!8hDgH1c_9hfAWX(POq5jr=EcGo8jBSo37)@HxDJ`doCT8_^}&fv)-Y z=+az5C!Fo%4q22>4 z;N$4?OVJ6gjc&$r)c0UT&wu7WLgZD@2b!XRbVB#QZD{I-;q5pIE8zk3O_%db2rNH( zd`n|iY=S=D8gInjXlC9)Kks`m>3|0)_`r$iA84vBpef9DHl(~D`d}e6LmBAIs-c-_ zh(6aD-GqH{ERI71N&7RT{u*?=5`S|3OH(LMgKOCp-NikkL(mS#pfjC>uJJT9@Hf#+ zEsO1|(VuSH(2N~L1O6S|Gw0E@zlgqRv!3Jp`_t z){W?{{u38rv5R4|?ZC3skD-~!|93bY<vC$^&j|A=P#S4?fb|M>3_^88;< z!E-wp9q@6qYE?z&3IjR4L29%RMZc3}6yS)Yfzk8`I8c-KBkUP-KJcwrI zMNFEKg|T4`7Nhcgx+LAvCF+T$b}~BPyXb)H z&|SY7?Pm{~iJ#Dko=s9PqO9qmp$MAND(Hiau@1Jyp*S9^;TiNCm&%eQu?cU)7ML$< zmehNr2X>`C6$jui=$p1(wk)Yv^Fvsbdh%roWhiV$H`AZ!jn`$*lKM^90yC%&#pd`d zdjHpG0GF^lW?YsfaVNGz1N;C}#|-@zq~*wxD1jxg2ew5{LozXsLQNXh;NAFtmhL-H z=jspO_+#9A6In$lT(b8J$=+m-vN9{9vMM7yh)RS=ijo}-R4S2DBqK>mp;FN{Dy5-c ze((2l&R?(ZInVcd&gXp2_&)b0&Z7?w${7~PWb`}X0yKb+(Cv3+uC&yF)C&#ZL9B(Z z;A;E{9r?V=(o+A)_B^hmTq$>2;xjyqrQQD<@}wnJQt=5sm4z>ldD9XL@yh&ZssBs$ zh0D`Y|D4uYEJA&UD_9FSv_M+wk7!OQn3nq9za1T6u`AP3uj%IK;#`By{X5tM4`5x) zS12t}-~Hc~iw1Z<`nKDNRq-P<)maON#a9Vkq|MO%+dDc6?dXB{`ARg9t(b{lql+_Z zk+jqiUlOfvg-LH5!bJ(36WxgJ&yUd6`aRahztD!NT$PskF}ee~1}32aEJNFQ16>1O zq9U?p_wHlb7X=hf{0oBW_?TH-;RfwM4ov9#2W$BWSiPNUnbTJf+r2Vg16 z51|9tfc5c{Sf4L5+;=T{e)Nk@LcfeIK{L5IGZ`ZPFjkz3H)bypZYUYO4n0u1peN)l zv3@2x(&cENpP+#jDj61K8!Sut9yAk6G1YM_f0*RL)&5hgNV_K7SR74hJv8F(u{;_* zALgI|Jr(OWq8+@C9^K!e?Vd)r^(Cdk=T-4?%5BgLCi`+>gVWFsABnzznUwdSC)H2r z3HUF1|K+7aYD=OGHbxh3H+1a`MDH6Ly&pZA7oztqNBZOa&xL3CK6FHf@DltEZTKwO zP_{C`{AhiNSgwtZxH;NRyI9{99pOMU@CUFuE=4o?A*TNSpVM48C;y@uxT0)GT{U!@ zwL^EofLI=lX5>M1B#Y5huZ{IP(11UQo-EU;^>rAK}X&QeXbiiC4JCUKMZ~TkyyVNeQqt<@9UM=|2BAl z3N!H~+R)GFoSs7;$Xz*D99=8b(12T`FRx*-emRZi(7XtKw@6pKrMn{sRR`?2*2R*^spaFJA8yteJ@=@q^U4yQj z?N}F&p#!_3b_lEznz^=^`v3pBabd@|S%Krx{W=>>{W3J-4QNKT#PWNXN%_-Q55}l&+=vvBCH<*dGSG_L#-xN2e!bQ;qZD=6c@DTL#yU{cLJ~R^#MHiy? zFT*;x2D9LoXy9LAHavj_{(UT8h+eGA{iO#qxh> zCUQ0i^~KPDYoLMFkM-@)Dd>m(?07f2Js(8}x*k)1{&zbUnN)m$rtmBpVMfDn*7C!yPHUM#?E3HAGbmPX;m;%I~AqxH}^YlF^d z4>W}%&WVZD18Ie+fB(B57pCN1w8MwdjuxXM zUW+!k9XsJC(K1cKT#t>eL67QBup<73W~5lt&~7s{;7(}!H#TMe*W}_BDjfL}=(byj z&fP1qejhr5WAXFzXkb~Jh3AT(oZ`8h9VH;UTd+4xQ`ixR#S?1)AY@EyMjcCF8|l^udwn z+)jz*M`C$-^rcw81MTn-y2y^BBmEK0+^^_SoY5+zx)|DVC3NxDL;FkK5HI?mBfdR4 z1>H7}#?N0ySMLtAf%nn-kH`9R=t=r7+EGU9aNiYZrpjU&tc;!`-H-z=nMiVB#B+w3ITK;d@b-B1G!yaPJd17mp#8t|iN##Uf$d?l8D#?-(6 z_a7IIAkPiqger}8&Y-9oYY=5ylVtp%D*9-+oijz~-WnuR|Bpi)aI{p$#5D13!j7|1!J6z$F;-gfyob*DmuLomj^%&i=NUJ$|81xk7tU1$w1LKG1HI5W9fhWL0=hUKLNm4$ z?RWzk*cPh5m@10xw4Ut<|O zi#}MeZ|JyUv?1C-XY}M7gl2Lw`us!D$I%R~L8p2HIt6cG>hJ%4p9>G16X?i(L<9O4 zZ79plVPtvGwNMycw6)Qx=z@-T0Gff(=yMZe{X=NGOVB{pqxZdLz5D;|c*Do&9Dk2? zl(Sz*aapvZhS&<*V+&k}X5bh)_ovah{{tQAzvy$h`iFq8LhI|I0ky`|fB);vg{d2X z&gs3eJRe;oOVN~VM(6TfbV`oI&(Fm2B?CeSMX?>9S4IOGk3K&I-9-=MZMbp(``-?8 z4h%mil*Ag8TVW%dfHiRo-hpRu4E7lm0{IX31L+?9Wk|S!f2A#qxUe zxgBVGA7Od-|2Of5Tth?3N}v%}LK|#|roJy`;z%rxkD!6Rh-TtFwBfJOHSufw{K{b= zkjm)Kg!R!i&=*tx|IaWkY-k!9;p1rPoj6%Axh{QL(rz(3K&m1B6wObxU=7~Q@P zV>eufo$x=LfE{lSulK!J-TnVN7xl5s9pRVB1JOnE1bSes#^$&l9qBoAq?g?pev~ST z6)CsIOuP%7nuX|y*Pv@?HyYSkbO1R=#P9z_x$wriXa;(ri(@FJzJQ>a7#BakAMJ1< z+Th#q^DofU{v6AHp$A&}$goB#plhr;GWUr#Bia9{4yZ_V5I?vd4PYahnJw4>&&T=} zqe7q^(UIPaj%WnB_@<(({4sQKF2#FrHQMggqeF(vjAs9v>KarSc|$a{?a-0+j^(k~ zl=1`U+SrQ*{3W_LPoZn*A{t16F`?bE=;t-j`&*))cSEQ0)+84OFa_;!HX8Zb=tgu6 zY)0>U8x3?nx+ssLDg7I3W4^n>S>Gx;82x-I+Wr%0$FHCPClACMzC}CuA6CX3cZY`R zpmWs?GjTHd&E;uyWZTdYeTcplzrj={(7+4a6Ea#1J>aUuatkCQ$wYT9Oz9xB;j!U^ z#6ol`R-z+*86C;?SpON?;15^|FUE4IvEdx4k5#B|iMDfhte=5S#k^EK`)?^1E~53R z3ceViXZHbgF&#xSa~4hE1+?QU$A$l%Uj^@`JQ5wicW6ekj}PA~3Zj{~8tu3=I-r_< z?*4Dgg&nrUhS(YHa30#>ljttljGlbk&~5q!deWUjN0@&?c&;ScUX@s`hko87+8qt( z7EJy7A9r$LhvU)6W}xT6eDuLhXdpY|=U<`spN{3f(J4&7H#}biT^nW5j;=!&b+cG* zhn|St?q&R)xmZobaQqW9anQuj!E`j$^J4iKGy^ZA9Uh8)j|O@Hoywe(!fX9%bPDUB z0o{N;*AHDwVMef@t`V+HdqBqVq0|4-GO#E3w{3S z=teZax6$qSF&f~nXgkUOxbW+9ktyN9+GvC=W4RL=*nsFgXuz{DH3FI5Y!EG?fdZ zE71ElME6F&McYeE4?jERMW3&Wx#>UAfeRbz8y$u|FgBJSK==Qn=m?%bQ@aw=aC7|p z&G`8abU^#jOq@lhB+rb{Pf5(AToscx+=&Yt?vB13`k@VvN2er-2DBj7uS7Gk4xN&X z=ogGPV*Ls9`Jd3t{eq78KXgj3xIdf=)$eEjJM!zOaPC^g55}OWoQOSe5#E4j(2>=D zAp8QMFZ%rZSQU?;ujw2Qa&Ba0zhha-gB}V2&O*yCp&2>)5Uam37pJN4Ai8Q+cxl{$ zX68vWkmcw$dn48#MHkg^OpOrT|No&G%P~8A^C^msya^iUjp+S@V|jEkR;V{Tj6Sd! z?RX1 z_@FD=&_Xm-PooXJgwFZ)==(UI@@MFGz2S31z;iK^@;Y>2d(o5gQ*>ZIB7yMzZ(jJI zDBi#aRnZP7qWgL-+Q3ru7Y)y$FO>~wCN@Xkita+6+mGJ&dGuTKC3FUD?|e%3U$#fW zjd`Pm(UF!!SA8|~!N#$^HQGTBG!wU=b3ZDUC!(wWK{SJN(Doij?^}ar;zdmT{hvFy zFw%W!WFMo8>uX$qzo8A@KRDH3=QO4bWNSZ)X)Ey zEeH*iKqIS!KF~1Q4$Z_(Xahsg2JS)Ud>(qxY(l5*d$hwY=!p8G4-SdtQRs8y(F{$-Za5v=;Sn?=r5A<)R6^UoKH6y^ z``@`7OobhcK_9p`It~4NCYpiAqifOavl-3Qfmr`J8sI5(#DAdMIpeYL(kY6bfX&da z@BNcpm?E{KS!jfdqwCQI-ihVU&_GYc`rpz0eCeXl;5F!LwrR8%+Tmz)%I2cq8`fcI zOuo;B4g7|7ob&O}P;vANLc?e;bdK*qNB$UA!56SRevUq${zUk^NVGb-m|LUm^^D#f zK2Ihd;lc;kqLICUZkyw1!#|=AUcNXqToo<1#OgQ@9m%6u3b(}aakSmECE=&!!dRJd zb1aLaG4=QVF6P2j`wBXjyU|7W2|DK|&=H?Q8@%+%aDOp$YO15DZH4ZJ0capI&;XxB zPrT330se^&pvY5ci9Vb^iEF*U1<_y7Be?z2@TcJBMo*&+w0k<-e1Kc9r8fnDgFpF{)8cqV*a32nFw z*2WQ72Unx_eSz+ttZPF?Dxp)?63s|IG$Y9exG>_U(1p~#K(QSJ@y5C!(&)tZgsJ+pXaUi~a+xH#VM99~O#Gn%2Z z(d^HLKntURR7Rg`gtpTO4YWTxpdqn-VstikrT$4w?f+l6=uAb<=fcaRFM1RYL^Cl8 zJ)&o!i);~2!gtUP8$TcZoL?vO{+Z~ASE7MGiw61@I;98Elk_a6yZ`gN5JpfC?Wk-l z*Tf!_o8zsx1V>@k_2B@y3#(F|haGV{&c?hO!rVTE2KX{M#XB%79!C2)f~mj%=i69u z2GjW9A9St~8^apNfzIU>=!1pO&r8Mn$~c8`b@b$X32kS4Ebl@`{4w5uzoX|vlNaOr zzt4-IqubEcI~uFuB6PLxMjQSGJv#r3IcKy0y3LBCtG+h6 zCYqwV=f)%#re*}z!ns%mccLBtj6U#hEa%%48Y+n;sIQ6!(i!_>Uo^ls(dXZfeu4IL z23@4NUkRB^mWvn7(e2V79qC+}?tjcxQBObR#;22hkLtL<9R5 z4J_B@U{TED&;M0Y7ktyf^4!n?owIRh|NcByd>8!{Q;QA_DBsq!#E)1On^}G%{E6u9cpc@r_;D6~ z#zT+nr{4@Ot;6V|`x||(@LQq2FaAk+%3JLJ=eQWRJ^c5+Qg5dv?xH*xTjLR|h$Y_% zzcB28nUtT#Cb%8zW7Zv^;fCml2cY$LU|n2?{$}+X%)}BqLtssJvj1yPF_4NjxDXxD zal9UjycF8T)cr<~Xw>IWpb7)*IJ z`oX1p!f!B!qYtjf=J*>n#yWe$=i{(C<*m`vSdDV=ePMfc!fPn6!cw>!&Dd!)(5ml; zsY*`Z!W&;ikJeAH9R7-_4D1i9`9|zR{oS|`KSDda?*jtot+ENtV1a{ai51unUF}&v z3Yo}-@HI`4JbAH9)@Y?Q*oheVo?)V{I?fx(GX*f!oVM#u?1v}t_=!iZ=BQNn;XlMww zqPzfoJs(5&dyOMuWS!6{8;?uy%~ExO46olQ=y%8cm>j{yPh2?S zUdO|>Sck5OJ?Ig78l94~uhJ4HF%zp~q5O4du+}$hSISe-4DLM<7aQ7f)stZxk46Jt zimsibC)xjxaFO%daP&TfE{^xGFaCnPvBP(1ssB&#S@i36w(rAzCDB0Jp$E-~Se}b! z@MRo;C(x9)_#u=>q8a$;hh+GIah3{4c;$~F)iu!7e+zo{uRs^m>*(V73vIB&PvQTZ z7>_k6pF|g7p`XJqAX=gU&PPZ5DjL}L=)kT_o(dg}L2uZIo$zb4!5XL2QvX8gt?24M zfF3xPp9vjwKr^x!SK#Yd9{ZdPQ*%GMcn@JeEb>d3q6z5F8Of)(a2xHwO#A~~%>{oA z4b?*D^kyuDQ_;`Y#LstPCCX>em(o?gg-q5)Upk%8j)tO{n2QbY zv>7^=cVZ^aL66i8XdvIB4PNqlcsW(UGL)NRSsWf+fOfbQGx0e3E=l|m4!TNM*8Sg_ z3mY7XHuMlxR7km|cKF5XdTvhb7-348gOVGFL7WDbk zXaGh24WBppm;LX4?@xsd&qNo;R?Nh|(F3T+|H6K+f$oytSORCG9jwPj_%;54CH@O< z!7DF@H8LElP(Kyjo*U7Det9t&I?BRV%Stb_0=z&JM1f9b@=)2$~PQk0P zr>8RWB<7>M2@QA``dr?$^n|Hyh-T^*ybd2g2lx(pz9g?qPfz`-v>iG}i_o{*PHc&} zGD3YT z4xs`3FIqfTC^ta^92Cp<$MRZCZ97bDJFLfj1ujcZ{Ycjl{d{_KE!xieSi=2(mJ1)u zmpgP+2QBwRA55aFekJ;a<70F&Rm_u~`f+*yn&S1*Ptc6~8!eSL4D1H0{>ogz?>}r{#1$dJNAY^fZ^rTkyoGY<0wDvla2n+|&@U2=3Z|!iUbq)s)xV(k zx41H7>N)fqQ`SOpZAB-cfh;SO3=bZr!ULpY;qbt4^oAWc2>(V;yuL+3!yB-Z=;w*r|^69pes}~?Ekh&E#f@?mU?-LFYcy{?y`t9m;&#uL~AOO;AbeXSpc)?YxU?)uW{{+$r~ z{*Mb&oG6o?`YqOAtVMAXx{ZEBkIZYzhE?4a3sAln{c83IdgQJ}2XYL3duA;c7HM%b z&}L|c=AhrO_Ta%R?7t%A(-TiqajHU?irE#z9PLG4KL28tEWE!fr6<;5!O9`f?Nvfx zd8@{E0k-1)r_gu8x3T^rdW83>mY(|lFcy7xEWp|B|6jOp+f1sSo_LZD)}q^^Ma}fo zce*)PhjR5=>51_;6g}%t;PY6yc33k?PN5Q2hpj`StmX9KQi>k zq>E!O7cP$L>jpRA7|JE_aB-}{mUtXp&1IT}avSVSc^-OBe1lD~ zWb<%N+=9(0FTt1aI6A`lEzNU#3eC(9SPpY`NKgH;sTN*JxglPGZ7>_&jF;d*%!$LJ zV=<5W|2{6V^T7hlfsf;5xFWg{b5nj34QN05^TP31J{QYr9n(|41uKjOQVH#_4*GmE zba!-#vy8}9g3bn`#qQBA}bdc(FU@1Pfz_SCLel3f1HiC$MWCk$kKYGC(`jUw0s3# zi&vxHc)H?4_#EDV*WMW35%-~izkm%f`6?HlTz{Z1iF!AMRE4{fxFgC^_y+VC&oI?3U^rcm!cj#~!I>lqqb73+v#mU4pE?ff(&>yd#MPIwS(09X^ zI1HQjAyAIe4d@h{>l;#B{N~VLX*46{(d}6cZMQkvUT^dy9fMBIJWT!l-;Z(Ojn7AS zpsV$0^b|Vx|Dg}&>K8JTAHA;_n$l|M6xKtxb8Gau?&x!aV*OC`1ic3fxc{Hv!iYCm zfjiLEdL()RZRj*Q@(WlN%k~f3u_O8gV<_73^jQB0I^yThsoWhu{}}D(YfSz5-#@uX zExrNa?9Ydp+)xv%U^lek`_Rbep$)zq>)%3G_xosIpQGnQ_JJYrV(58M3C(niXrF=X ze@8SX-uN^c*$ZeuJ7WDu(XY@&bOvqkZ#0nngF*(2q31^pw7wO3e^)GxH=}`0N6(i> z2PMPYt){{U)}vFg1&#EBc;mNdVCT^}&owxFjV^|!xEWgC9}QqMnz09B{iD$}=u~b- z1K5@1!V~V(c*FVl!6mnZ`ofsW=XKH4_KZ%A_3O~U_o4wGMt9L^G=LnphP6}>%|s?% zgB8&XCOdNBi8TaG%^m3Cn}j~_0NTO)Sick<>00#uE$9IDqTB38Gy_>~3tz_zMjK!` z>Ib7!`!I42Boj|^;R&`3P0d=gfmhMM_Mshqh<>B_2CHF#At56zu_xs_(GGT_9sG*6 zmlzsGnj4+Mvgi*W4Y0W1sm8|-ojK$smeYnWPiP#>W!V35^n%aWH!?vuAZoeDR#WMk2th3NS zo<=kE5}LW4XkdHLsrdw56Q|KY{=uXXUvhhx%aYL==nYNLOmspU?1i3W{m`TK7BnNb zqnWx3P5q?kY;<=lLEGDm4ro{W{M*~v|IYRARJfRO+>xF*jD^vLenIOm#&VuJ!^n%F zb6FL=uLU}?ZqWf~hj*gwPeku~1aHP==)f-C$^JKWIYxxJzZxA$O*F;VqbY13%RSM# z9EPU;?pU6QZqG;25x#+$cnsZ+|Hg8mkzxDQ!|K%cO>*HEjJfDkynt2kJv4Ra(Ggre zDs)gT+9^5?UG>Yb4DLZsx?f_s;OOvuzX2NHQuO{^=u{@pa^Z;nKvR|&6XrHImY`Sw zt*?WrRHK>c7VB?8Q$GgXJyXz^(IT|nmty@ke3SCW=)tq#u2g%;#PeL(!B%um_n>or z9Btq%ItBkk)9()V=SMS>iDs@g8c0WUYWl>_N22Y`Km%JCKi`O{_y5jVaWqxI%LNT6 z`#qt-{L$iQAeGR->Z04NSuA&t<^E`3qtW{xKr^=hZFdEh!j0Cu|3Bfvk)MqI6U{p| zJXi*8s5aVR6U@Y}XoGj59Zo~1W)Zr&*P^L@37wjKXglAa+x845eegUNjwt82uv!bE zi>L$I<7%i=UrI`^z?-{cmb=j}HwL zMYl_Nw4oO0h`Pkj2caV#ft_&@_QV6|Tdn+r@MC#_0dmUB%EQ*kxAD9fPFT^GwY zB)PDG{^(qdjLt*@Sb>?i1%2>XtUryWK5bHXD_(`J?hfdAG8E0=1K1EBjrE7nc7H{W z^kk07p@H1!+%`dPXoD`I0chmI(Wyz|Zd`&*aWEOIhR>i=^I7yeH08geQ;{(xtop0b z6S4_1@MNMt7ybrxBzoelN7uwYwBe&z9dk|%4K~2rDR)9gybYbY&(Hw>LOZx(S_r5n zI)El<#=4^c4ad~~|38HbBVU9rrq$?yauMC9h3^YryBnhKhGFQ@IR*`MJUWFBq76Te zcK8Ciw%$e;@&4$S=>2Cg_5J@M7cQy-)58Om&@UWy(J81O>sz1?c8=u%=p5gHb#Vf^ zx?hfN!Bha~fcB$-eUDD{1x)?DwCjFWr`zQ-DvbC%+ECU9LIXL``od_#rO`~(Ko?Up zbc8+80Sra&pNIzhAe!=3(amUv-$(C1mgK^Q&!7)pKvSCWVCWz}rZRx8kp^gh-Ov&A zMeiRG%M;M{W~1#rfp)k$)^CcwjXt0JfD3Q@3XSv>I+ux=q2Y9NJLN;STQzj?w8P5S z742Xu`sH*U+Rn@9Ir1L*{Bd;3{zLD-@}bmy$wV10OyPCtRJ27$JOn)tCZQu*jLzvZ z=p4R+2EHYJz6)J^htPB53%nL{&k9r4BH9D(?>5Zk_y4h6*wA$Jr7#a2;iK3DpTyhn zOYDs;XQwCb#T95r#U4&iY{8D$CkuasYfcFCwz(njyU{6{7JV2~y99I6e_}=aV7(QT zUynDu8|x3Cb9FS9PoXLN6TLruUg#h{x+sgH1E`5Evij)#9nj46MW=WmrvClkAzYY} zk?4(6qI1!sbt$&QH=}8fgx>|-fZo3dow7A(J6q8;un!IBIC|e7=s>d14_`tH&X4c^ zMpUfegAOEh=odWxSyaTHiO;kHBV>??p557P=kN9}6QZiUw2(4Wuzvg^p+`-ij~bU99fHPlO*d<}412=oQT5^R4K9 z|2)?Jj&}49dJ?8B2|w7Bz{-?6VO8J%lesX$^=Kfk;zWEGM`6<^L+Ur-e9C{}C<2-F zRLIExmWJmpdpczBYP92P(8X5;OJj3%Eeu0PJ{D7d{&zRClzX8k+k703d$1JNUJ?HDT`z1*c|Y2I?v>&933ISI<=3$V{*1{ITvT5b z_IX#llkymBgWq6tth73uc%yI-<N37}Cp7Q(H9gD0Dzsenn zeJLNtW>{+-`~OBR#;pq(_z>TroaNc@AB}h70m|K<3;)fw^z-4j+4tZz)bBt?^gWvT z!Y_o(wL%wjUv!G5;6FGMGjaO*;Oh0susC*6QIQW$VOcD+A>7ayZD@dHCVe{k`Ra|K zem~Zt{0o|?(l3T@M#InyPDfv2AE0l~pV28ye<{4|8Ya158zlN*W1NkSXg}7#i|EK| zyc~WU?~ktLX?Pv3MPEuM(2O+N6dZ&dC_jJ(a2Q=<=g{^_y%GXXcHzSBau1+K;&QBj z+tCJpMjy=cYFK2A(UIJOWpGL?KZ7pTchGa-OZ44wK3ed#kg;pg=XwT{i78x|`e(2T z9zp}ix;gyhQW-l@z8xL;HXMp4&;U2reDuZzBwp8CV8rO=af z5_*!(!~VDmJqOaZ^UiU9Udn|hQ$b9fT+u4%$yhJiB-#d@)6STQcOq*uF&ESD5p>lr zLIYTaezSTxdJqltEGF}Eah{88nDKU)+nngztqgh)HHdb_%P0>;?;ndke=oW#W}}O1 z6PlTC(EG~069TG)zGZ8p^-bPk|9j-Npdu@FL`U2OT|~XmKt`jBX(l?db!f(3Lf;v0 zp_%&t^WhQn3(3#1oY)cS^P{ORh2CF&M>3r0wWx6QHb(>KkDm2I(1^#ODVvU_dKUU^ z_F=TaHE2N3q0etd1Ko}ea1R>jA+()u&;Wi+a^d3m9qsUvonf05LPy>Jt?w4ggVBKQ z#niS%x8w3yegn#Sbq?m!Y||J{~_%p6KT6bgO{RwxSu?xhMYof1C;z$9XJ) z1^0#s>!J*)q8V6(W?)^c--r%mGdfkfV*T#D?0@I%Ln>Sp z$I!*|GkUUR*%vy@kEXmh`gub%wcXH;hoDn866@k!==OX8ZTCGiGoPY?e}^97KPS1c z;Y;2R|5d6in#w`ZJJ1fs#&QzP#7uMw=3^yXh-T&;w1Wd^pdUwnLIX(b51Gh=mXk%f zFlCj{jvAs3v_wmE+j_kcyJ{kQ9&CoA+9sZ82fn=iU z2Vt(;q7M#1Gcp6aGg+(95&v@_be!$Ounn(37iC#Akec{B)<-k(L#+P;T?_xiIkcDk zVAxd)KC)f*|5`5kaKnqK3cfBM3JqR~Mp``D3rkX7h<3agU9>x~Hl9QWP~_vVHtIy% zVR`ENp{sr-`kiqVR;B;M5iUw&j!(ktvnn>F+!veSGOU3o(ZzJ-;gFHC(Q4R;`g-Vr zGah^5bLiqu`!ocW7oF0|=;Ex8so(#1=fZ6<3?13+=$aUZ-uO^-6;`4ACRWDN=s|MT zXQ6|7=%VU@9$dGepHD#7)Z@{o&?#N<8T;Rh=csT5o6v}VN4M8Sw4uw7gx77kXcIKm zz0j17MHlCM^gwzoetrlY$S>&8o%Lwg6$Q}1DjsG3`#~Ej?64179vRE`p(9#^PQ@Cu zgP+g<(vOAhdJSGnxiY%#2BQO+fW9?npn*P#X81L9+wMqmQGttJ(1x%2JOoe&-DYjE z0ro}%d;(o`FJL*`k2CRnEKm6&%<(!jv#+5U+>Y<#CpZ9Cd>H~uW;#)VQT;Xj|;a&`VV1FuR!OpI?lmXXetk*NAq#a#2?Wqx%9^{vSR3(sD@^yeXQ?~ zPQhq2pa-J!G4=ibDK0$0)}ar+h$V0*x(2>Or{>T2dA6TIxgfeYOQPGfI-0R|SQba& z2z&xP0dxEu0?3P&ufn9;t|S+ZWFS6<_n`HcoeB@MkKTl?=0Rx2CZHpJ5DjECI=7q9 zDLR1O|2Z-PiF46E(C7X<#r}7$t~ebcs)1&r9-8tdvA!*u`p)P<(mQ_MA5G~{G(&fx z_f0`xHV>ig%t7y4gxkNWqUdmhzMf;Xld#g{>*K{WrXX7GMd=r*Q%1`Cr&oD{*;N_J584 zLI)o+{@c0XQ*<#k&ytZk8M|UN%9F7kZa`1KAJG)%$eNLwiYw3z6+(AWadfTJh@aO% zw_$yBdw0UrzyEbB7p8bDdO}T!H_XS$l-HtDQZ`#gYKp3(0oIG<*3nLAU^iiP92d*a zqA#btSPsvkYo$>34F3O5F3NCGfH`Z3B`J4H%Sb$hV{suCNY6+#<@4vTD4xm4NGzg0 zSB@~^Rp@qmF1i`r&hMggegw_Tx9GMzg)Z70m-6o)cqCrKMJ23>miwcDjKmta09~BB z(A0f^j`Sotx7l+t5-fwJz9HIP=UASMKK}^X{uAiIwk{`s|CtwCsA!M-(8vqt3Ms3M zPDvLu;=$+$CZho?K}Wt7os!-0^H0%sf5&Su?XrwS87z;cz7u-?&6n}tKWyL*DvWRf z8o)F((#OyPY7Kg_?TnuvN8fhm&_$IicNlpI^!Zw70IkuC^~4G|0?p83G(#^G;=HdKY`yY?Hts}E)9Gm6OJaEwI!pVoBL0WQR3UG;zY#i{J<$5` z=xohFV_btK^EEWKPtm0Rl$Y6YR{o{JLAA{nvUxKaz%;bMC1^t%(J{P@HgGI@8p~6@ zh?TK?{*2U{{zj}uc{bL;ZD>D#ph?SdIkRJ=#V-#X*FhWVjn2vp^o6$)-En)+tX{zD zu-p|Hsjmcs&<2xeCKjTzxjBA*2p!N_^u9|9gaH*xa$!YPbfhiN6!k(=c1QgDVKlIn zn2Gz*jd2FeMBaiSz>;VNx?xY8hECb%XaJX78SXEEF2`g|E?n^Su?OCSrg%fVVGr8D zL3BhX(6j76bV@P`g@s-S%~)B?#1?2fx1t%Ff>rSaG~-_&8zhj_#a_ zXouIKk#|3q6ZYU2#_ zfvxC!=KyxVqu3eCUmebtd(kyA6Prv7!d zv0OBuVnOsE+Hjs?8L2mMCi=i+bdJ}ebGa+lpGRKrnVDfb z)M)lF2Z~?Wu6F^h4+PUUV%iLpyv8oud6{$Jwq4i?txSsH#NUpd%fO zuAND-JQr<$EgIm?=%FMRZohBP2QQ+jFH|a=Smm)BU9bw};phRg7@fkGusZHRxA_G$(>co<2>Y)T7mnmQwBruZ0qDr?LK~bJ>zAVq zZ$jsIAG%n-h@Yod2!R$x2T%cRzg4t18psGN<^E4{VMME<+t867Mmzo8=)C&k2c&bmItHl3`YZ)h)(4^bTK}Qseheq7Z=Xy*XWJeDut0MVm+o>?sQ_%84w1IW8{1&>( z51|2_M@O2YO1Qr;W>T(HN(-4CZX*wMB9HBZU4hE-b# z9eEvej$5MvjKWNuj;3@q+TmO1yWk+&;Su!tGiZkw(e?{e3xQNha^VM!(FS^;4-P@M z(pRJGx$0h`2lpTe20$gl3F2Cg|R*5y4V%(M>{-x`jglce?z~b)vgmh?~P_+Ji2RUVkSP0 z4&ZfkjeLly-_D%o!c?A5Rq!jkx?xUpqOal7(Q4@8sgJ(DJEA9BPppsQ(116g1NsgJ z;NMsad)Et#aUPn%wb;u2zc*Iozbz+>4&^Q)2z|Xl6EJ4cv`MFD`Il#8s{jbJ_%Ls0&(uGrAZ@p(CFheGm<3K9<3) zXokK)ch!0HWs|2t=&%+#pxe*^-q(Qr?_4jT!Uqnc51d7J!4(Zd$K}zvycS(_Ezpj8 z;08>h&sA*{c1t%j;9htM-iH2gG!on55_DkSHA;qWHh)v$s=cOhD33)K*K+iMlUNC> zHVJdt2Q5E>)9_7ff=!x+*YZ7QhIgYKPe(Jd3SGq8@lyN) zb77)$ILa?WJ8X?kA)Bj{9ojduJu+TkT#!iY+tM`<&( z!CTP#CZYqF70WN7?Y$k#d!nCpVgLKU_f#0!`FLZFt|7(w(2>+eUph_ERCYqw$_VuN zDd?h{i`j4?x;CDO^~=yXUlZ%MqvykWNiLkrKhY6f)h%SA2HIh3bWVH3@~!Aec^8`M zhtYH6ar8vogEjFtbZX0V52^2pPT3@^flr|sNq!h__zX)^k+nyNtQ;EHP0@+y*}g2g z32k6E8sLX$z+a(Lc?R9S*>4O7Q*pGuI#$6}*wg)g4;O8z_z(x+RX2r{PC^@=jqZXc z(O(B|K~veePe}Q2bi|{gtI_9#CPLMrp4i>xx5k(!tTJEH;jMpHW?e!dhdP<{j5e&3^OAYcFR4X8RM-6kElaNpmJ z9z=`L2ezS$@_V$y|IjZKR}Tn_t~Gk!c(i^cn!y9;BK;cOE&reyEIcqAOtrBpkJb)zG=W6@6d?rc#8i_LXSF+t7ga$ND4a8aWrs|DgjZ zG&FQr9c{M-n$ZsExo|5w)yV~1IESyIBmN3)@GLqN|DZ=~!C|4}y699jM;BvHbY%Uo zI*vi#1*@?R9>pIp|L}~|Kah6;n^GQqdulf&6R&XL;@O5q_#?Vsv)mCP&yB8;E77^{ zh8|4Q(8aq3J2Qp*@lMLcM}%!Q2isHr49j7ekzt@6aT(?D*vj{Rkx^mW48;0;@CZ7B z{n!|@jt*Z?nxP||fd=pd4$Dg5Xa>vOosn3MUC{mhJ357x?+O30r7zZ_d;yzd?XfIc z_x}VgoZH9IDOii9{5AAIIf8DZv#~z+xQxWJl&j$yJciHVwDIBhgjFVFr2ayzDL8}7 z^hK#@3;WZ$H}3Ka<)2jyxON(2@J=cn=(ZE$1q(7xgvmTWdJ_+Fgon zyA9|f-HYD;9s2x5be9yI629w|M5m}3`VP1Qf5v;K#0PJi8usfHw88o4fw3NaU^99E z?LrsT8FY%SpO%sO!_haRQ?&)nz=t>(zeV?X+xs$7e}rHpHle%?TjRwf7j3v`Jw5D# z`RGXA#Ov_WSf77JSd0zP2b1Wo*^M4FzoUVs-ybr01=`Lv(d*I7bVmcd9nD~JTD*7) zT@;(qqx2K>;5mnxc-aGC#8uD{b&B4DZo?EJSMRYs*j`$KY-T(h_;mC_W z6dt@DO-&DUq@%DLF2csR9bHUWW`z^4BKk7wi!R~^(M&8t-v#Spc_Z5KJJD~jlKVgF z?9gFVbT_m`w^Og^ooGs@p^I{1tbZDv%a_qFCVS9~9YiyE8Xv~&4~MCnk8ZzB(XTP- zm&e?5!Vi;;&_#DYn!>m7X*`Ce^4_^215cp$9mSSdU|u+Q`rz%9*Q4)(s~!oqN2e-@ z2D}u_;HF2||E|(6smR1X(GeD!A4XIX9Z3Z=l}*rqTch`lM_*R=p(&q(X}ApC4QtSp zZ;IuQ(ae5>X8Qbm_J3;IEC>}>ppllsD%cE7{b=;ynStK_7?#9U(f82jenQt$jz_~< zD1%N-ZOo1h(DR`wdO+Qnvr z&c`!Sf0Abm+ThD*#@@gZcmN&XudzPI6JfhvjT7DfwYe~&m(a*RiZ}d-rYh^=uo$mI z%hl1jZ;8%jC$!_i=!oyYOdOAH+r_cG1N~lc620$NY~=p`U;LoKlF(pVH1eC#{X7K? zY%V%QYtRl~L<8D_nRozQ-M^ssr#~6)FNy|Q4$aKU z>OriF%g_dnpsW2nrjFdF!^@{GW>P;G&BP2ez{Ti@UykMX(5d(ey)VbIjMN_yDz=RM z?}%4Zp&QXT+KQKC;q8VMC?8xN=KNnYh3P9YQh%jzVRS9rf_69p9l(9)R4j?*7tt>u zdvGM4#!S3Dr~oE=)0mrbSS#rregz~jU{j| zn!!`?^E|7=8oDycg(JwsW>^7j;7;_!y9XWdr06{Sl=8}0zIRRdd=9!Om!s`Hi>~rb zSPQqKQ~3uv1^J%|QI) z&GA^y@^a{?B)S`#qW5)2JGuvb{()Ftg1!x(M_2paSU!$!y_|%Cfd%m=;!TYxgR>k_n_^}Npj(VvMN?= zM_)RJu?~KVehDr5YB-Xcp$ExCbPAqEGxZ)il|P~>FZ^0qQw^g7(SYwq*TxHIyUEYF z@QBU2IXqAqYf$ct6>&QH;6}8=Pti4TF_z1{9;T)f`ju)V+VB)~H>^Py^IK?ON70O2 zMD9-}@@)wnlt5F~8cj_0yNT9Xn?PxBlsxRe;3Ptq4(!{Gc;Tjy}wQ@ zcSSRG2io3!=o(mvsrUcRc*Do&gFm5>r@s}}LMEnD?ut%PFLVkS=qifCWDPoZTQL`YfR5xCnzF>FVTuZ(BWr>+Z~!*PN72BJ zpn;u711tVn_zHI&I;FRx{Ux90!h_>&^ugotgMYCk<$OoN+}1(^>yD`}tLT9;8=K)` zw81aYIX;KkF#pl88w#T33V112K?ame)Z@YjJEEBwjBdv<=p4_+OK=UEi4Exf{}`Q$ z@6ZwciPbRwv9Nucp(7oJX6{+^9NCTrdVC>DkK?cQZ)2?zrW}F^?J_vKF=AS^Ev1Fc3bGozmD~PqZ3Oz7zTPB=F7zI z3!-no7Kf;(|CBCV*udau0>@K+JeCXm5N1>pU4nk-Q9T-~;S*RJ_n_N1$B*Ij>gcW- zf(~pUnw0C&h<${Kl3e`Eg=?SsQ<(YnXv6KWGEPQM#C6yXzd&>2+QZ=-Xo3!C1lqwP zm=!moyJs_+%zL5-&|UHSVfMcx|C0(sTk7YK1GUk$Z;6I#AZEkc(1!0q8ypwwXQ1uO zMelzH-CiGKG5k7yem2%uIueq%&XGjuxFr=n*c)B5q0#YZ^4yP2a3#9-Kch==5$!n7 zFX5NjtyBg?rG*U2`;?1N9SJxJLc49?n76W;=R99YB*X{nzk$r|2AP z=6!erX8SF??^|Mf%2Uw+>_V6FAZFl|zlWu&hL#h9xiD#_qp!vF=*;%T`rpxQmj92C zM5WOIwu}x!x9cQyAWN|~?nQH_;;|gbf2pG%I?<=mFFKzf?Iu#b;=+*pf`%^b&#(mL z(2g6UOVAl-<1Kg>9>Zfe;CPOdli2=5$c=_4!&dgr$UZghs7yZMRTMZnxwMSI)lvTawPxCU_QK^^5f`|r2i9URvnF4t5_b4uJKs3 z;Y4&L+Tl)g>3%^Ynfh-yn2P+%{`YHjbt>$5G}`bq%)k}sjNisO_&fS;C~-bK*BTA+ z4D>*HB)STFQGNv-SlWdU;k;;4*FgJek>JAD;XrgLMxqVf8(oMVOe@f&T8++V8~XY^ z7(YLT9^wC>+bsXZ@LW?gsXO9#*dOhu?xoOPqB9q7Q866N-je@?8#)bPX4vZ^f6< z5PphA<{R{2If6cyk6~qCWi%q4(ShHDb~FMV$au_-Gh=x^X88VJ#>H)Xun9eYN@Yq- zo?tDoC*{Y`{e2qiVwudL!9m!Z^6lt-FQdtvJxgjb#D$~PuqpLz&`8ZgBlH|5|NP%( zE}Zda@q;sHwr9`E4OkiHVGDFdpP@54gm(Bx^fH=^d9$S^lesLqB=ynl+zst#GMa=> zVe)@x*}#P}e;-YbpV0>|U^~p4JvEtJ18@T6NoYfVqt6w}5kg)MO|}+T2fL#KnvX8w zQ)mvX#R|A1M`|M3@F^->>)ffKfRCi(DI%GIw( zO&&;(q4(`a53*zE^VjA~P3BIGoc!ywCQ(N!9NBR6f$8XxxfC718|X}Sqxb)SuH|`j z+ZD(a8$`<;(Fl%2BRV~nm&fu3w4VjrX7fn2T=1Cu03- zG`TjT1HFJQO`bd&y1&<82EL9ta37k4htLi#qXRFIKipRVjbsOON$$qtI1iJ5{{ICoZ1^>F zP2WRLwnOM^@*gy-ixmhns*L79cXR-wuo{jEqE&=vsdnKR<^qWu}55qIuEhx}g#5kM?sHI-&WP{Q2Lb zTo{41=vr<>MAc)tHyVMF zu{;f3+9jCW{~O{5AD|6=i+1#9tiO!jcy&g|-ZE%tTSPnJTbcN=8rsp-B|;?2q7$fx zhP(qd!<%DyH4@Q8$~G=cj;}Et|BW|fEg3p0iiYlbbV(Yc4R%6vV;E-OSj>tKqiek) z*1v@=-S_DBK7+{>Y2Vrp>i|&?XiFm_$G^Fpu z@)7jLf6$N?t{l$t3g`@Lp)+iZcGNC99F5FO^kkincKi?;p|w~Jcc9NDPH>UIMb0YW zgGy-Vdt*bqCzdy&1Kf*M@L%*GDOWXoD{dW~hV`i5jP3CZw!j;zg|A>Uu?gkZkmvdP ze_WUh`KpJts*gU<3wz=UH0e&EyCh$Y@U^=#nsj$#eS8@2#n16}>|QfG_YOMa!&nz{ z)k;nN#IzL_a{o`@qBb8a!CJTr9Z*W`5c<;SwyJ|hWB?Aq6=+ufhXb)poiL#LunpyP z=zV`-W$axy9ObjI9pzQnl>Spra#02{rn&H!E*IeQx@S2^uD|e z!sm6-cg0Y2iKe4V^h*4E58goe0veG94cY(Ra0?fPat8WdUyXM78Tvjyj~Q66QOJ$H zX!cITs`xh z@^Lh|sx}GtkHlh>m!lnQ#tb|ZO=%jQD~_|NABw~AcXWc?nk7Owg|b>5R*%Ro+s1M_FhH@`W2cx7ZO~!ze}|YYf=k6 zu?AuWPQv2&7&gMK=z|y0+_=6~csKOG7L;eBGuw^kz*)4t(yddI|8{XR^!X3a^B{48 z3rCjTCRhdSut#(pnkA3-{N>49X+XNX$ob zU^5cIM9Kj!Oop`f;R`||bY{~q17AXOWDgqBb2tDCbO;B@*y!un%+Jw%UcX~%@(&t~ z!8w%QMQ7fwQ#jJcV0ZWb2V8j26z&|d_D*y_ThM`=LL-vVB^)Tt(09Wv=z!iv*Zw;+ zxh`N$9NIM;Opl-u{t|8HA9NsvyYbGUfByDb2cw5ke=?CnB*K`k#z*dwu zV;fBA5hBqRJ)q{HOSThD(o>iNuk9If?RxZ`P#Y7zwc2x$9fzVxF*4pT3r(g+(HZVQ z_x%wpfEUmRT-__otQuxe?jFnkL+^VSeG9IS<#*8U8T)#%|6Q|_RCu=6=pELuBihje z=uDnNlWh;WB$v>JE8ZAvj)u4|+D-y}emOeRmoNk0M<;XyefwS6hyCvjmHGsmp(E{$ zMrI_s6w~A9tI)N56P@`9bWL;j4INZPBiI!k;O%HfGh+EEbRuuW^3Mq_ZlK}OfetXSDOP-j zc61E8VZNKf%!Z>8n2SE}0=jnZp$&c?%V*J<jzEftH8H@?3POHlz1{g?9Ka`mHz9(2z@c(NLE~2htK9 zU}to|H)(>4JGn3kXT%R4K|{O_?cjYh$$mvo!t|TN{ngM8TVV#?7@dGV_b7UvY(5j{T{T#Y{SCW>1)vXGI%TYM`!#&tUrt{ zX~E&4-C}4Y%A*mhIh_4(#|^3QE!Y_?4?-UtgU(F z1Xf{Y+=52#9dw{O(FlHphW^LsALxCFzqxQNE@D;8dRs`ITIjy-gU)a=nxs#oOYu6I z3)`?cevV}^|LtKnHAa*0POOAW(JwIDu|B4Ziu=C-7j`r}IuE^JJ(k8_F?q0zPEG!= zEe+9kz-Dw{zoPf$x+7Q<9Y{ZPjc1~fdIarf6Z+hD$_F54=sqR8wE)Sp`ti=pGh#pLr(MS}Z7=D4$8J*EW9Ee|_2UGP)A#%gf z4i}o& zqC?R0;MVADbnRE719&gNg$KgN=z;KU{NNC}&woX?T_y(V0a5_Hzf3IGM7Lo}G-AEc z4(~!Exez^o)?;?uf=2v(bYh9`xG>9);~*?EEjR}~T7SdVcsbho-f&(lLOWcB&S(Rg zq@SY))j#N3=bIi*(7M=xaxZl0R$@Q;Px+h+XIg1SIJ;ZnJCu8(XLf;^VQs6SGZ~9B za27h#v{_-MrO|EI5_97uG{p1JnJz&G`W$*2C{(q1QLy~=V81c2}4NcLI^+6jL zghpfxdjDLs!Kct%c?TWvUUZ-*(C03r2in#5g(U8XCh=%Y{_D&SaN!M)p%3gs_w(;) z!=>hgP}fC2?}o1VEog`Lpfg{LF6D=@oM~<-*Fgt-C;HrdXuHcX`M%x$H*P@ZBi0+2wv3?*r(b4F@ zCMUSa%EcU9hWDdMcm1NUohqXHzdM@MBhUfd6P=IF>`64_uVF*njwA3gPQ?)qgycJl z-k!F#!o3%SQ6I!Jg%W!d1?4*);@HA^&bimXo}8s4BGKLY=S#6 z15+Ok11=YBghsY&Fp+W_7p~r0Np43YFcnR%#pr$O(3x#Q z@86B)&`;=BxudcE1WuuxeMOk@Of(rELfhMb36p9U7l!g%bmT|SC8+dR=&(CFph0NI zcgON9G;+((HC>H<>wOoCX&i0}(*i@^~y?u_~0WMI%rj9oUU%Z?*G*1 z!UGx6y3sDt5$MuPi#`_JgdRM5(GJg{-vjcj4l`_t8I*gYXa0DsjSJD_-GK?${#z~# z$-n5DU9l#7T`r2gw_BoFJ}uU-L1+3on(b%M94PU8ILe!%yJi@=G*i$>+>Z|UIn2P1 zo@f78;o^5H{IXbhZAiw(Xn6oSu<2+6OVOoSj~g;^0>=80FN6kXpc8r)o#Fe~48K9w zzR3E}PI(+exw&79>u~Wb6>gvJaT5NFb#c&(VQrVAN%5t%RdlJE#n1aDxbPd!2=oAX7#;cB=#6{O8U2cOnEG;PxEOk0B{a*MVg>Ah z88{8inWxbKZ9(tfjV9}%XyPv}99i0iaPk#Fv${6gaSwD`{tsJ zc6l8=@xDNJL9Q*~dqD;CJKI3?Z8iiQ&>iUW6VPoo3+;FbI>Tqs``4rGzlpZ{H5#eE z5?r{(m(XO(zcoBq7`@?obmW!Mqq9l;d}wrZbOJiFnP^83q3v#npMQjYvDq6xKY`{@ z;)-n{shXe<-i(fX8oCYVqXS!k&hV+|i|EYXMnm}_+QDaNmj8|}X`Xk&1WKa0QVW}6 zeT$g_?6Zhm?IPWuk()ZE0*3Lq$dAezelhq59Hp-Pbk>$H{;us-}x{#`LAJ3 z`6#?2KF05;Z?h}xhElu3Z{;L#EcM&)DxRR_>feXw8e(J0EzxYBiEVLnEN3~82tP2admx1L5$wke zd(bn!;z6>WhF9TA%C8Ov>|ECbDTIgBd3=Qe9SRRWm!E*Gux6uK7k9K?l-G=|7q0VT(FVUj*Z6xhSAIg1=XfmtjqKx;Oh1R2l}GPufz_}Jp2q1| zhDeS*67GNem(-Ml?*9+C@QcB!qoL!i(T~uz-;0Lu0NU{1(M-RFhH|0L*G6B{ozYwx zjYjHW%)rfPJNu)jv4HRY^xwjR#nG?HP0$GR!d^HSTj3_GfS1u3SNJ`=u6smp!|SP^ z9$kY*^iy;qKVkv=J=SOXg9y9-^Ks$!xDLx<1+;^nSRSWh9ef_m;vdn53LFdDvl6bcQ3*cBaJ7A4ZpWQ~dnXQ|y0l{E-UR{4X@bm(gUac{xo{r@!{|V&^=yPq+B_4(jbQ=2nGR$!Qzs`j- z-G`o7x&I9#D~8Ur8XA$N=s<76J~#&59iN~}_YXRdEayX#702R~+hPXZh7Mo>niDIr zto#3ME`0C^x`tUUga-`C32D`ccuelWd0@6ryMqlF~%=BL>e<_IvabzZb^?Esc8J*1@xR3fbaSk@il$MOl z?&yzbJLk~dQzCQtye%4mfmj{KVe;Sqd!7qtv>)A{f1*o~KTBHj;3 zNUx37Ll>?-!Z*}j(wNA^29lmF0xU2%07*tO_6P!3J1wrEE;qB9wcCg*tcxfN&< zu15#9E4nB8HJa4lU(NpaC2=fP~x${5(3qk_Ezm+oMaKxPuD^FbV79%VFTkta|9j#Ghp{#voX5IYt#Ejaj>KA&AByGO zScURgG{mKggaOuzcEoPf4@M`lG1h;8F4cbYXg`NJ=|3e;(J-^3=uFF@A#a2xSNB-H z2aVAE=ssVA4&ZC_x!Idv-sNU z!ZxaoE=gTSCdx z+cLs~Q!s=2nP}3iLOXa7UGrDa{k;|K=zVm6yU`rjA3r~ZenB~h4(zJpA;Lw9v;Uo8 zH7eY8tS+O!Q>kDCXEEgSx9^o6XA^slg%T!HE{=vrEuo3m!se#$m2+=rfLHS+u z#_ZM8Qkq~3bjGvL5WgJD@1n2WW9Wdcs1b6Z2$rK<6FnaWphx$5G&jCWaAD~FMIS6s zGi;mEXb9_~9W_Be?}{eRU^EHuLGPP_uj4Fq=^EAw9SuMywgBtkHXMWJ(Do9y)ea3z zLMvvVS-b>It{2cF_g(buxC8C*A|{iwPFnJxR4#_j^Z|4LZ=&~oj~+}vqq&v8ZrGj; zknI87tz)Xz2b$2U4b9cr6b=Be)d3e?zSQ1Wnp3^+Wq5 zF@tgkEQ6!4j{E;1F5EVspaVFX{D3uVke2+JO>=au7U0de7KdV z(Z|qa+==d{U(oyhLU&Kr8$#}+VZzYm;ldj#q9JRDHqaj(`J`CC6uoaFntbo01KAbp zzli=6>rbNx*7;bUsY!_BRcL*cCh_}!Z7Mu+JD@Wh8q4F+2rNPewhl|s=r)^$F2yV8 z10SIs{T$0zwhk|+3h1tAj>!WFucmwtX5c(Dx7MLc_hBsmik_(1+9aRn-~Zvl0Srb* zHWQt}Bj^m)q6fzZXl@)sJId5H3?Lu6ZL6aPP%m^q)6j`Lj1FWy+RrX@ssF@0?*HuV zLW2dcF&~seLpcJyaU43ZMQA8jq663%>vy6Zd>70AM02(e6Um5HM+e#hJ#R)}^8G)Z z3un3*4e5($$Ua7Aa18ArONTI!3^Yk=qHo9U=)i_V$Dk3M8Osl&?X8aGo#?yZ8%)&Y z;>wO;P1>T{<34m>KZs`a^5|A{=7-TGIg5T#DcUJ?SQCv@t61)fZok`Oc``cCg=hqx z?8N@Jfz7evb1Xyo4>VMHJBJ(Vpb_YbF3D)L;rr0%m!S>5gg*BXy1o8HBUryn7+_a4 z!b8!1?(M?-5ua72Ido;v@(E*J?Ps9b$#pwC*2)c`& zM(=wY?dK~r62B$l4d>BN=kJ!5{NZtZG$(FF8<>T5{1n>p>u7@?Mt?*bJ|92N-90>) zfp*jYjaY|R-yc086Zdf8n$JWVScrz~8MLF#=+U_wZD0@j;16hy{D~f=f1}T3>Ji#2 zh<;uIP15q{KT?#HT_-ZRuUKnKt@ zIs*MXfz|M3bV5I&?fr$xfB!RUudsIi!wf!{h_!G9IfYg3 z!3EJs6-M7~#V`w&Msun>daiUp+wF_wKfg5M!YsZM4ecB>bPu5&J&rc?DmwBv&<=LS z@~6>*=s=Ih&;LcAOSv&5V^*}?Tv#3RWAg9+x8cGAWf(fbSvUrlp!+>XpS0v(QZ0;@ z`=ZG@3LVH|wBhCGT0f00#mnfyvlE@*QFK>aMwcSBFY|Ys7491vsEN+FVJvq;BhnYm zh2dxiS&%K21?;YswIgAbQGP-mP`-SJbpphKdkNs~$cTnLP%|<&~6WxqP zW*55MenV%Pxqp~JI@)njw8QG?^PSKL4n*7k63gQ6Xaw`#6rL-c;KHM{A^P?j63Ywl z9m=nu2hf-SVJ6Gak?%!2{uv$kc{EZ*2ZoNyp}VLXCL@Q2d^~!d%!}p3s(A4RI@6EP z5&nwx@dDPv+JnL`vF^mClsBRwJ&P_$`rz=@tPs|r+youKcx;UKqwRi-p16mQ0Vh%} za*;tr+K>>5@@TnBEZ>E8uq^rEMY)-OWue-e$v>+$oCu{h+!jV&869~;w4?55GL1qXn1dcft73U8I^*xqCHgIz z>GrUch0u1IqR;n3lXg7XZekV}&fqC@q#Mx=_MuC25ziq7N!I`VU| zeD$5-msSw@<2K4?<23CCgpZ) zhrgmTsd0Bmrk3dQ!_Y|1MDKqD9r#vs0KcM3lx0jf4~k&&-~X)4g(Gc&b~qR-;cRrR zHliVZ7mdK-SiXccDHr=+*seX$f!rL+)6tF>$MSkKLR--GzQu&uet`=|cGcLh1m(~H zv_X&7ap=+c1bU!s#|F4Bmh+Aa9hHqXN81~K=F&KHf{W15zkm+pt#NVx@1w$zoweo#;Roqf4|79niM%?0*~n zo(enqE1G9Q2x)nA#`V!{))~#-o6t~CL7!WJ-uF5>u-)i3J{jwCObi1piY{SwGy)wG zTsV>uXx7h)39R?nG$lNGx}bif^G0^^tGIAYG}9sCU*&1-!j(sLU-2~ zOz!{3xNuG0Lm$`|%fF!yUP9MAH%n#N-?H)k>S!cdp-a&peQ8a^YB&$w9dDyacM7v( z%CvBQ4ov?3|MkfWLWrJ#-O-tki{;7a%jHR|f@{%+_M;vCh;GwUXh;8{?}l9WhR+M3 zxl<0kuMYYJr3EH`{@0NULw_S0fxFO|&hQ3Yigx%U+R$^+jc9}0u`Ygwwv#$NXctcXY?C7uz%2jrOya!Tm;Sfx@f37;wYSs zM)G7d@62$-*GAhLg7$aUO!mJaoJxfaEyUrt67A@USz#tc(U8_b*S4Xx+wDp8WZZ%d=qKcU{{OH0!_4bp4L<0H9dQv> z!2_{A*TV2;!J&P5>-<P2PVX zgzO-?*1usE{0GgEiYUCq7BSIJ6?`{m0FKBun$||32cY89}e5;UhGbJ75div7kxh8 zvQRFI4yZZ06n&Sm|2+_~g?Wo=(;jPydeegl_AX$Tz@Llx26KK-qSRR(F zBpQiESQfjX1D=FNY&*LD_a?Y-+x>&dR7XQw3rk~Dw4)K|zMqLka1M6CRk8joCjb8bc`iKR(pH9! z3!%wV0^Oc1(2x&BvwtGm;SzKvPvUTV0S$4!XTyEhqvuLvbP3vE8|)Ix%b#WbwW)ZT z3TOHan%#e(Ym{YG=r}*R1Qlbs0lGxp(3jOs=xg;6bYNT2{l5!M#v|yG6nidwY3+;$ zDKC635q_V4)ata9pQ(5Si{Y|0VXfal2lO-6#fxZ`*LptG-;H)S4~@{nXp*i+Be4

+eKoJQt1R)7TPUeU1G;my3U?Fk5H59+GJX z{z>@^x^_Rl5w>aLP5zz@_u-R%j-DS&HiwAq!VZ+rV>N93X85u>0o@gAuqJ+o?uskl zV*lU7MT57(+if|Pqx?Cx#tS$Ho4*}i(;s75$|bghY;TWtG#PE@MRa@S+#25Z<#0UZ zJJBWk4Lz80Z3_b}o8Y1c6=Tt(aTnIXyzhjWwMRoW9XH~KI2EV78@`xa!~>KYZl~c) zY_s>m0BgOUma?Au0l1I)oICgvmiY4rY03XLV9keV$-haNNco5Zh!18&kL(Ixp;~{O zmNJb7R$whG`bqfHFWt~D9&e!AZ$G+3$FVE6|1?bGalDc8FX(Q%;j=KYj@X#;EM$8p z_*<`G-ycA;^fLMuyKYY?w?wzk&FDa8q6f{J(Ld1LQuOn1&~!l8dOTXcF4ljCCSi^* zLXsB4)_(u5$Au@gyWkP@!DrCV*Q4KPK16pz<{!hsQx`pQA4c1I3tg%`=u%|+DeR`Q=n>r-&4t8Z zE=-mg=nPgzw_@^rAIlfekX?N^+*cYsDI1|*Scapa{U3J0byy!SqVJSCKZhl0h)%FG zGQmX3s913i`WAc$9pMw`Og5nr_$2xbI`YHlfU_M*Oa9}NMR6qM+tKItp)aRnXuFrt z0cQUtEJ-6w{{MeHxv-&IlNEe(iRGoyb(q2D+tG#&V=Fv{p7k}3h7P-++wvB4h6~UG zZ7rG$AK~rzIhsR_f90*3;G!KDX89m=DX2hYdydpL*k zQ8ZWX{3HA#^<@cl6j)!b- zg*Q<@83*Bhtc(p#gd=w(`a0f^o}@WXhDgJx?P9{P~CQ*@}iskXfm(b8{ zMnm}tnj^oXYnka(*!O8@XbWO4EQT&+CA=EjqB+nXZEq5K-y$r7k0-dW!5!$@e1eAf z4>ZfOoetSr20d7AKnF4qo#8k%M^>V{Z`&;w~ITE84^_#HGCKEbkh2AxRJze5f+Mk7508E_(H zJQs#!271&!h(5RyJ<&c!8$N|L{2zLMsk0#`s-puP5zCvf3gzSYFkW{q4B$2NB;1FY z@jNDf|L;=rf-i&rgf%LOc2EZmZA+|#ozPsEjIQZ&bgeg`OSU(999`?we?xsybi36? z?{AH^GZe3K|4-w>wObs09Nq70a3F5NOjz)I78?58XaIGbYO|DT-f07=rpv$<>-K3K)2I-vHlF2OxZK1CwE7| zXmPZo@|c0G(A*i04(P7vY;;$xKqkbm|G99@x1ukZPtXTXVN<+-hPqLf5P`O6E(}GJ zat5};HJE{C(0!gSYnW*rG;-~ux1i@sB3Wktt>NNkDz@YQuuQh}WG+009Vzce8!VeW zJ$Vwg$A*;0qmg(G9q>+crk`UQ`~{6{l^p5GWNd@QDG!R}>6Ym~ z$?tzU^J!Gr!BX^rwP=#O8GR4kJ|9Pqq77uu70ic5qI9$Y+F=*;{1_gcg&y52(Gzle zu0)vemsHrm0lXehqmd|>J0xETbYPXy`x>K3+Z`L@5NwH0qa7T@49uPW}rPxD8F3Rp{DnMb~yeI^rYfK+d8O%6?VoAP+jz%4p7XKqqn+X5cb3 zcQ&CD`wl%J6Gymc%EcvgO>ek5J^3AN7&?$Au{>_V;&>Q+Fk9Z>wb+AlEp!0$qHECS zKfvmE2wlRf^MwIaLME0-sS_?znxSjf5q&A$jE?v=bYKh7*YIoTeTT6co<}28F@FeY z9rU^8=zxczyJ8Ny3!XujXd9NJ|CEDV)TAP{KzOhbdO!?9zoX4X8`^+&^d%aBgJ?FN zMROtTnlR&n=+aa}le#|IUKjMa3FtxhAoBlTGb1jX@fLK=-$#?<2lRns=mS{`hK9?c z5vYcSybZcthsFBQ=o-&LpId|u=v6d%-$s|>b4+CB;usfM@C5ogJ%i3TrBK*jCD3m~ zHPHbzL!ax5M&u^UiX(6wj=~xEGaBj755>LMXquR{lP z1KL1yw4)*DE*KTdQ_f==KGbO0|UxNr@( zp=)#?`U@KJ6X=bX&rc^v{fKt(2iovIXlS#R4D|)jnU=(9SOeWX8_|J&jXr-AU8=ug zIjt0*yZ;Mt;SFWb(AGrPvVE+-6K!Y;dg3jN_3xkq`~=-4`_PG;MF&*q`p|AUbl|no z^Q9RY(E*sSVmudRaVfg(wx9!e7Y+F@Xv3FdeTmYczBM}VLFiJA!tyvCP0p3*bFZN7 zeuakq+vrcF+5c6k_=5^VTC_|Ud1Xv)Gc@UXqYn;5&+rlG3}>PDJ%rBa#rXM$=+S!w zo%scHf;q~D2vkMO9m*!c4P&XW;d|o;Phj%kKtuc~I>2wDzoW@^5gkCja^dqz=yNxq z9k)UU(hZID2y|D?#B#Vf!9@lahtVv}T0R^+#n9JgE3|;Fc+`Xy3wR|?)C4qoFD;w=wzW|G(tI8J7wb-gkBFFz~XqG+$lz zziU&jZusCfwBu>$>+w-^pRPgo?-yu?$74Bry%4DqXng~0jos0XSD;Dx4my!9(WN_u zMz&a@eputiXh$Q_50+wad==eBUttwIjy8NzPoNPzj3(n{?2+96O~RTFMU!JDHpEBKrP+r@rcl%Hd2_5qxewOHMd(ZB19Yap z#d4-*>B%4MltP!FKf0uMpt&*ylYjqb78iE>C_2)Y(KY%T-4!L9hX!h*S>GC~V?Xqa zUxDI>g<1P6x;CfLnOxB_BxOm=pj;RI z64?jsU?48R;pogRprK7`70&j8=*+K2CsG&9t+tqa8DXLi6*IYT?GK_i{*4YKd+Tr@ z6+;_pj&{%sz5f<;hLh1HSQy=ac_{D24Ez~=eP?SE2A&%&7ih!&x5Hvo*l<-elsBN; z@Md&LrlKQ$51qjwbb$ZG`fJ*T5Z6ElG9;E~p#$8Ab?^hU{r|8gmTZ>@+vLV};e)B@ z%V8xtfUTH;-=N9|T+lLtzL+`JGcGND~A6>%Hn1Qp=iLOR-Z4-JBeVX9H5gm>< zq;?21EQDrvU344XfiA(5=mGNz8iDg@LwP%fhRb4c%8k(p3_=G!5gp(%^dNd3UBbjp zF5FHB(U(TPPT?)p0H30~5UXO9&Y{CWXtGW~vwsFUvqjOT&?Mb}e!+MHJ=)(#m-xyq z;lL|~L^6@mo(ntZfv)i^Y>ZE%A^ZW|cK@I=$k{c__&Rh3HPHLop&brEJGujnz*ICs zk6;a4k4EH2%<%pHU%a7Mw{T<4Xj{zS#sO%@2{id0L_2yJjldSnz>jbg{*HIxjos5z z=HrLx0oJ2On8;Lg2^M2M_y5aWRKp$UnS3smOZ5yP?}g6f4z!`U=-cd7bmm{8Gx`Hv z!qi?NsjHx$_e7I!6q;)@(1@?WgdKm&g(JG6cj%}b+F*0^!9i#U$Dt9Jj}>rj{QPS) zIgg?DT}B6(@5XR{O?0WcV?7*+w*Tyn?0+A4mkJyF8jV2aK4GR+(1!Y822P0ON6`k} z#LBo2Z6|x*ko`r_Ux+k9J05|akO?%B_oL6R?#uo+B=1w<>+&}=oAdMw-%v8phWeoc znH_x&U5XE|44y>4b{Fg)UdIj5?YRK0Uxl{&5!&8c z=)V379ciW^;lRj?KG+%^SZ6fZdZKGQ5*_#q^xg0b`usX{3AV)g6KK-?gTpcZ(D?qJ z!iD?x04~I=H;2$IK~Jn_u@8QOLo)N{eQycBLGjS=khEW-Ir1+W$!a6Q?-#Vh9+YRH zk=u`iJmtz;!&2qPgvn5g3uo9D9pMm6z8s?-zwr@y1NIg|#byF2%Lz8kR>xS{HX=JG8_6w}<;mq3@1r z=s-K7&yB&}crOmdZ_$@mgHd63wH%cQH}<2#Y`qojcp|RD`_RzU7#))6R!q(W9rz1q z4!n&S_!T;kv$6i_JJM5brCb61{2_EAucOa@nBXD{7vG@C^F5lqN6;IOMgNOld1u%S zC8CwlZCD>|uq8T?p6HQ03~hG;x-`?{=gZJtl~}`tH*Q4Nd?%Vj2hjnXj^(U(h0qm5 zJ1l`VSP6Z;8G69Thdf!B}qgm*I_8`89tC8K5Na=NVXrMp3rgy~hRCFmGM7P}& zXk?y68(tTE9i8#JSO&j9x8wQvd7&|3=}Ms!YlgPl3zL8Te<&9=FbOko0s19!Jr>73 z=$f8JXPWzeA!mxC5vqcQxG6gGcIW_mpaUL=K0ge-Z#sG)&9|K3;(0DyyI0~3+tKZ~ z8*S)I9D@gOBz7AcKHq{a!4C8!+>b8dX>>wq<3i*LqwQs&GcSwYR|}JW{-;B%7>bT; zBHHmI=r&pz%Nx)&d>cLMzre#lDdR)vuR|Mdf*E*wtiK=K=P$+bS6GqqIjn)DCWQNMM7QSzbV(PZ2heNr^KU1x z|I1Qwo(fOCk`vRDf6b-|Hl#cQZTKBDss2Ro%Q-28upD|GG(j7_1v79iR>iegAHPE* zT3~W07e^=BKf#4(|3u8dr{fLVu`=aLSPm;r311v~p`pAN?ciaojyuu&&ZF&>ni@ji z9$kul=u(b|_2V#k#LtcukE0E*N4Lp#bf#aU5jum0yeJWCgw4>bo`&V|F*HIuaU%YL zlW_2~^yGireE|DX?t5>je+{`Wky34X_}R`2IE@>QpdlSLBR!=F&PPN0F}lA`qH9`k zW_;U4TSoh!+jbP1q>Iq!UqUDFCECuvSlI9X#b<>Z8=^Dnk49iTnlua0P`!lC@B_4i zBe6cm?C|+@ScUppXcFFn-oG4;&?dCK!#D!7-$#Vq|95cV4GYkby@9Ubp;(`NPDqw& zXak+G3Eqtk>{T=(yJGn;nq246B`r8Nv|9hpt)bg7B-{ zve=FCooIyKLwCh-^uBBF4+Cg~%_t8>2k_Kdd z>(Fx{@jDlW_#AG{iTy_n`w=gob!6*28V+N%=1tq0&pkM5>@O z?GVd1<9N#V;zREL^IWW>;(>?4x7dacrzihR=>M=U^;_|IEVL}l>^*cT{y<+wnI8$i z8C?*KL=kk!D&ZAa2mSug935C&GzYq27We;6To{VM=mVpZA8;h&2Fg>>FD6x&hlXxI zXWkM`%Dy-lXQA8kX#70=(GdD#=zUeNj`w3tT#U(o|9dAFX7gS&3ID=mmaYh)yBf`b z@@SGZkM>5B^)@sY?nAfjGIS!F(a`Tem+$}@u?y&PS3So5_l8PbSkV$)+remvC!?WT zf>+{lbf9ao0`5XPI*Sf4^W&j|BIte9(37w$nj^E&CEA7#H>^Tu{6cgKx-_4nYyTtK@Y(oz`qSb5B3Oy~ikN|Y(Sb~g~q67XFjnD;jAZ1sE`&y&V zC32Hux)M;6-#BUHfeKyfnI|4bcOpQ>-6>(TWJ{s# zRz#D&DVFp9|Lem=3o2%;PEY==w-2LP*O0ZD`EG}e_g89^)bzA~Y+Dyp*2&t5mn6-vhRyyWfgkkc=c=P$-mj~f3D5~I;yPc+MVDugS&QuLvVL@cXxMp zY20D(;4m<_yAK0{ySuv$u7my0?pyu-SzoPnv+t3zU3G4Eye(Ln@g*Cl+UCqp0k!X^ zVa@H%YtE|eoPTBXg9#Zdv%`5~un^3`_$-(kbnSGGX&z9=YZ0hN>S?en_!ZP^Me$wE zw^rwa*%?0o)ztBKJ9@c5W!?f*udUk6`5(;95hiwlrS~|`=77CXU7e|YZm=2iOZP=} z9Rnl%?Yy|01G6%|0X7Ds?RNs|0LtD>Q1kH)MCC_t`K=f*2Uy`Br5e!( zFdnSL*n5SW%-p0t>YRd_U^m9IK@aFY=1>^|R$<%(+zYM;)ia%rJI%Khl*3zKUNHQL zsIG%xAy5yXz?06`jidP`MxclB1#mL>0qg{hJnJy<9@HsGcFuY7l>!s#U^eC^2Isaf*cu#j-uceu z>kE8ao^jcWj)Bvcoa6TeROZDmJIsv(i!$B`>N)WrcofWg#rfJ%z*Xl7n+NR9d_%Ag zcn0jL^Iztg^K!Ze6je__)hyn1C-WkpPD2Y&=Xx603p@iB1WVnB>KXwK15<#JZaQz< z(}EgT1&f1S!HVE!Q11s^w>baGBsn*&z}BFS%}G#Q{0mg`4ZiK1ifv#^#xFp1Z`C_a zV1q$5<2tYzcpucUEP2;?vpEq|DNcf#&wtPPIl_b(UcgV`8= z0C$6F9yku~gS8pQeCTv<8?Zg&t)O22J&zm)3xIk)v<3AlHw{$AYd|&WaZu;~?IW*q z6aBHXAtR^_ScNeD7|HdyFuPxcwJ|0;xVW<5Z^#GUA%vtaV1a;wE;!>WDrHy9$P;T zDzKNJm~p>ynz#_CQzayxCR)Q+!El`X_`eZ+t2;kSssK2Y6$53C9P z1XYq6|2fBX%72{y!c44TVhZ>I6!n9?IW=Ac)@8g6)V>(s9RroYB#bA3di7fYRssWm zIHjx#R%JX4l*0?4UMph#boO@wQ!zgBlk=};d&xu%Fx4-I!oHvs*MMrC=b#+wKS1Wx zK2U+y13lnCQ2XYCvbP)5%lCUwRA&ls`7Yt<7?iy?pq?-B!aL&NYK{1snqT6?hnj4M-)iayG0y_Wy za#M?m^pPCOyr62n6IA4}BRdr40hM_pQ1e4U54a3eCPzRu+Y?a7Gkg>$;3|fbK_z$& z)O*S|U`w62=Fkq4B+`e0*l9#|aw2I{?G;n>dlY_J{U8=$upH>KjZeXswkL1hptuG{xk ztQOdX@i9>Q^2Kxe-YYHy2QfYk76B{9_tnxh0o3#1D5y6YKSA|Mg#-?heLyj|3RLr6 zO5pbTn&>+dqBKQ9XG1wqrRWKk0%w9cUN^z!;D6u%uu&qn?=96eP|a2`v4cZFJqfpg zE5YYr4{&-Cw`&C$IjO_&#-#lJBRx9vC3CwLgS|mHNR-^6bRZ~03qfUc0aUF$DcrvQ z3EvwO135fSpgq6^jCXG14-V+xPN(1XM5F15w(L1CwTVJMaH*ax;R7lsVkK7l{?%9mYRE^~9~5Zr@w3NV(juA&e7) zD#2W^82A=!3+Bk}_Wi!^JaDSUd7K&_1}8JFoY(F9X}LS#bjCgMxm^=={v+pi6lQ{B zSx8^N>F&*-HfAg6_WcFa!{A89H3~V$^%^*Yafiar{7Y~gZ*iylM}Wy0uLt$&b{gbS=}K3^c~G?kmHARokJ=}op6v-s zx_$2tN`rdw*$66t7hq$scq!+}_Xk*$@m0{c76#Q`-fUe4|Nt62lfyIn~bH>=?Gz2_TL(e3-=GBd&I>`zq5?R$UG5!B}!Gr$Dk ztxBB#mE3$};t{y8vfKBCgppO;zHcJE1NFe@RMmNa%mQ^9PJo5MAE1s=!D>zkyr7tf zP~ADMIl%6Whk)w(_h4c$Rt>lBEm%kmuiN*wRbI?wW2_RK~Hu=wMRAjG*-Ld%20jO?kt{hTXw<%#Q-&gY&>> z;AZeQ@NY0Kcp8-B2ZkR(*^5-mSx*AWaaK_Fih#0L3sl11j@+c;X0%PLF+2k5L31Az zb-%#KV6xh7-F-X+Q;#A5?~AZM}|Rd&5DXn3@cVfu*4Ic7wj}{~hBdh>3@wY8LrC^A$i|Qd|u|CC~(H z19kyL{S|N`_^2W0Uj}+Kawr`QYQuC;4iQFEdxD!;l!4=WPBND7{$io#UPw zBmlnu&rN<7N`P6x!JwY`>%r{cbx@K2*1^d*C76?OIZzo42IX)vsAgRb`kp7C99{r3 zgHOO*VEm5GYeq#diC+JI=SCY=gKEC(pqk_sLTd}dR|Ni_1W_d z!+T&3#!)*vr>HQflGOv%6T?B-pC`n>Yc)4=ybIK$_Na{?g9_jSs2axU;$)f$)VVGR zit;L;&UGJKp8%>fOF%KP5>)eT1@(M62a3^GpjQ!v@9G#%2C4)(K{Zb+n;&hs094m+ zwebN^`qw~};vJ|a4d2aqz@!DWUJ+DJwE|V5-k=zp*^Tp`iJN^)sMi02dNO&sJCT*@FwF#&@kUU!KMX4HTcGww@8K|z4OFS}fC``rDC(Qqe3u@ae=Uq=Le$Ix z^~Bl=DzHPKB7P5w!Z6o)GtL9Wz&TLVKQMd-sWNH!oaaC-P|WoP zRk~TAj`dP75cIC+Mh}`zU^s9WD22a3F>@Ex=W1_lK4D*HUw%+cSQr#z)y*GhPdd(U|?5^}=8_o&RRs$iXyF=XDpT+MWj0r4K++_Z3v2vHCkqBmxy^2&mIh z8B{N{1yw39D0_23ovQVq0zCzafm@*O|NlPm-EbU0IrwP!1Jpa72m>6&=%BheIjD1= z$L1S=YQ7Gj9L)pOq`N>dcnORez^f>z0NxIC<^u*X*7=XkjcOVUN--xWDyx9%)<&Re z*U`rPKv6sf)V|eVJ#Z(e%;F4o7)b_t80P_1s=A>3v;bwV7w8p5!?;moGeNyaTV~^( zpqld-s8bMy(;`d{iivWdny)#iW9tRggnxo+&a0qG@)@MouINLYQWpiqOq(H`|BT%9 zWg-Op6V&*e;SaD7u# zses``Cdv~HcQ)n(6>)7)8Fm6wgQE=B*!p=;hM$4AK=%kIvuB|6Vvcl5kRB9cB@A1D zYR=)Hm|N)OMh^FYis%9;DqnzVs+gl3gT+88)(5578&tDR19f^fg3`MR>NNZS^`ett zv{Q;=paN?O%1%EUduMPX2G)TJd`E z^=fwjl!MctPR|oiP5B8d0A?8PthWZ^>Gj{sjgHX_&;u?375PC>$K{#fH!ut1-zGTC zR0vdnQ2=tET<{39?mTr@s z$mW9Tg)N3BK%M9Npd1EFan_T9dJyFRWw17=TK5MP=ps=24}dDwEyIXYop)4OrgHv8 zVJjx&U??c+7l9?fL!cZ)ndUeM0hM`GuqN0H)PrRks2+FV==>lqfq`o^g3l>odIEs9ElTdcFS!>X>z#?Hs2CpcuITDuXYeGRQK= zd9YLhl}RVi1O5)Glp8<=avf{|z6Zr*ow<(v{$MV~-sRk=%Wr{tM7{)&SMjT|qe*W%COS_kd}czXr--zIz6Wv3me=Ijb8@PS~k z&i`y~l<^)=29JTt;035a-h;~IJ1B$E7CD$4l)bcMrR1Xa` zoD3>~gO2=Rg37owsN-7?l-^*&IiPxNo0l6!dL%28!d0X6{@a0eUrw(&3acqDqA`KnyAHu473FG9Owi}ae!?c1MX)$37iO4-R9KzHmH~3 zr=a$S+wL$E6BKhEFa*p6rU9FSN?*APnUN%?*pFhbRtW%%XyNe09EVa zpq>w{K{@IS>IpUg)Nz^%76TvHIQ4F4erho@pVRGiL3MKr(8mnua}4HZelDmcy$p)tcc2`G``Z~O2K6Y;2&!a-K=nj5P$l&? z;zrHX1H`{;IH(OH!EoRdun0H<)cPe*>sLSp^Z?ZHdkc!0FW_h}!hYu~B@;o}IRfg% z=>({fJp>Et{Qq)p_zwooyVQQ*2sUg2GlF^kal4j-Ex?wb`=G;ES5OQjKI8;g3#`I; z2ABbS1ZDp7@qYk$n``{C3t zU@OK|k2_z@-Ube3ocx4azscZQ1darApLD*DxCboFxb!J{3hE|;FBnfdP01L0&+yGD zIhuRc`Qmf*bI$qg3Kn9123QKb0O|pg=)AL@4OCCm27@rv)aHj>aGG^Fn3wevph_41 zqEm{JU|Pn5K@YeL^wz+@5pG0PlFJTt<-xLydx15;zd$_!V_$JH3IX+?=>aORSzsP; z1E|yT6x6F`w5!fHEQ^6E)iAICxED+he!a^1Pt8rrYtGx`a$r@)eZYR;QJXJ*-7(x1 zY|Z?1P_N(L!0ce68_wqe6+t-~46507g6f6ypw9gdFcX;Ort_$-dDH7WAjUAEOtyl# zz*C?H40p?MlnT`GDGutm)wcQWpc0r276Z3|D%}@Qc5>f#nz$pFhVd-0Ft`tF3jXxk zh9-BM?^2HkRr92G9qOBdYOZbI5wPMt$6?(2&N0jn7G=IPcnBN~jsYt@aMmw_XBpoI zw}6`;I)Sx)Rtv>`6$V*VAdJlR) z_cNy?A)waFg7LsAHf{x`VB8VZi`xWHC0q%n)ImSQjh=wdK;G!MzJiMUJE-P~_1s~o zAXuDncTkyZ1-0)ms3+PDP?>!KBY;0aJ^8}Fa9-RZgL*NF1*!=PgK2dBJ8~n%X`mjV zb3wh%uK@LqXE&&f4})@a8{&6d(HV*0EL-Q^V9`JX%kQx3<8zWbWn~KgJNnGD2Ho6^~iQxzYnVB z&p|Qx3KUZxK-mxX#<3F>R7qodxzR!fPzJMs>du0o9Upsd z)UkR3%0Z-ej$;p)mT_KCcAA3H>ja9yZlL`21JU!kCUc|OuLM2d9#FNu1xn#RPzr(X zoeUCzYM$hvnkze~UMLQFz?z^O_5zE7{Xmsy7pRgv0>#`5(D#cu|8b+tBYbeqe;hD1 zy7W=|0E&@~paR$lDzF2fN_E-huY%ft57hDf0IJEOesZ24sX+NF z0(uo$HEvYHexM9a1?6ZNs6f_%mB1~aG7S9elq3X{;S!*lsS&8=Z3hN{Bf(B74k#u= z{&P-8DNxPa3QP$O168VssteLOFX0U#^-_eJ4i6P+^}G~k67%f{wFn#EC<5drscnG2 zFGTn`G$?go9B&Wm+|ZUUv%L<>(NXD#lN_QN`Gfn!m^_1e0o){DJ~Q)o=(Rfp-%&4m z$Pp!iT!GP@;7f29_)Ux>QN=9M9{uXP4lPRVdz;L`A&A2S@gRsV{o)`I&x;3a9H!?3 zlAfO0qlQC9aZ)0|$QaoDh~p>f1Cx>5>+jL#3FZ}mxf2Ai0=;0aW(1p(@jn)XR6P9m z2%n@y@xF(Ls5$xD7;#pekI@M79Rc+-R!VW-m0(+9_$8TlR-YilRd(bhj&5;(+8Mek zkW>x!u7Qozl=vovx)>A38KHYTMu#z(ICOuSzy#j&7Gy&`IFXqYHaAy#0csnhIA*hu&m_i~h;u7sUL@A~%wHy+*QUomBXXs3bn?53 z!<1j%VthSHl?gZ_S0#daN(Uu{fZYW24~jQ%`U^73hfYaLSJj2bs;Fcn=8s&V6eR`4 zDumBC#2^_?+zq)tP;|*n=I`P*7VZ|J--G#qnBLEx$J`&rT^VxUkNYGZkhvOM^L5;i zH0WJMzi%YEsur;nBf0K49LVDDEUaK-2Z+syfsGjLLV)#+tbNS2!9fRtZGc{NinJYP z9WB^Y?9T;>JIOaCb46G`%etEa)Mrhy7aNky`ku@<7NWsyB^(ccG|75e_a~LSMQ}Bk z{~bks0n$|fX7=IurJWP)Ex}k)6&w6EhflJ>%4q_wjqQanBWXl}k3AHG^R$437GeLe zm&N56mE^_fN3PtQiSiiRPl?BnX$;oa5I|hk8Zx(@wS(;MBS}fT8HuJo=Y@Y{PKBbp8eQ zA*-esDaYD!C|!w>jMP=q54soI{eJf3Fvp+RQy80P2w(*F7htQA1&A8;$H_plifjrc zF)oQf4?MQ}Q8>FuY1-St)ho^+Sjhnsk_Q;w?ja!T)MM>0Y>p=}$w+!+mhDRlvsVb_ zD)S$G40tgNtr@9@%fnN`HZpQOA>s=tKjHFHtHF%t62uY$oyy+31ox7CcX8T=M#};_ zlFc3%$%T z7=MJ5x@K%8#`oKL0oErHzZ*ld=nBb3_~>DWQ{!#cK{MD>fhz!K+u&*v9QP!!JP^Om z_Ee;Zzj$Nd3Z#7`+byzC*x16j5YD#}Wep6JS8zeR9>PdCD*2Y86fwQ!6fvt+Jczlm z#-PtAABJ*9{zA71MH)v?9|?Fi_aW%C@{(yivRa1`$uk^EqT@U*N~>`gm53XAI1@xH z8OELiFtC-t9&**cw!8Hfc8C!O&PXOX866SvvR;21`Mg)v)owdM5@!G-oVHK*DzjtYZrN-=JY6yI`U$N>Lbp$5<@t zC3yz5=eS=0JLQ=_0^QAV^n=SUISD=m##iCwcjgab$1h7@D<;l5q5CV$DY*gT6prXI z=okHAg=AcQ*-C~yLa`*9_W{Lv?tjoO!%0I(h^0Uvr8n{Yj*)LDu4GPfhOy)@Jfxr)H^}oPhQ1QO zZUP?*!FxRfPNnx-humPUBb>}(??cwI5_~obC?-0!g1j=xs}ih__V{jnAO5!cUSv>% znICM9PDZuZcMgYsiAzvLn14yYl6Z`x<0OQHMq6RxdH4*9fC?G;qZmIUpyAl5<@*mb zDE=bKV_cueXdM~0VS^+dM!Hz$8n0&kDaO`#cz-}}?YZ7?b>Nc3!syB{`%kO#*85qx zPeR$&lSFjxPs5^jCjGgI+TLT30=cPePSuhTo>XR$$eZ{PmTY-jFfBGh=UtRJ!>u9 zk0joBM$~Cs&*X`BlQZC#I`N%{k}H{&F$zt8*J53R!%Hab#z+gC_Cz_Xw1eEyws#a2 z%mYD@2&x984Z!JKf{#N|y-DsS)sM{lHf&{KpCl_jD~F?39~g5B*v!8pbVbGS8#{?D zxi4qINvSDDx9bLJO8}C;nUl<7+!9815oi(u8DM1p2EHPI4;-8#1YC|l__bx9WK6}) zU0R?V)Se*HYS5Ssg$G=*P?~~Lb?2#)6}@y!2im!ift09pgPcR)YPKhUz&h-aEVRz4 zO}4b@0F|tGFJrM4Y;1d{YG#$^D`hZ8+(#7_tsuMToc&Xgjo9! z#J?;^Mp()3k=y}$5|kjP?T}HEp!4FmI|05z=cMiZ2(jNCb=MDUejtf85Z8qHS2(S1 zZL^R$Ot@+Uh6d&ijO~3$1#4sb8P{F7apUiA@EiIs(5bD>Chv`?fh4oR;_8gOGVGm4 z7hL9QNTGAsV{{g}W}R){BAVwhS> zRuim!zZnj-{%+!tf+LG*g=6Ua0)ufHR<4j`VVl@OAU#MXDgp4#QC9>4y^NoB1eJ#Q zVEuE?0&Hqd$^255Oe4@Uv6-7od6%-V5aq-uNoI0i#KS8!!8QY@P>vDI`$b1UUm|O2 zB`Qs6TU!#@)c&+l9D*!_4{rqqk}NojYz>|W<%?W(iBysus((Y_pvO0K{h~A#aJt+w z-%CKl2zoF&xtuMoG8mTx!Qy20-6oNF1hUW`1moDdK=p4x_K~eIDx=^bYW?QoN9c)3 ztt6j_TGEIt+M<|)K({cr5xtS@&q1Ks2x2YHg3Liq>z8S;kri8#7$kd`z6kffl6g7q z7!0B54iaG$%262O@5neCuV7IyxQYNJ>lr^chK3uRBXHc8YdU&~C{HGuwHR4WCK$i$ zB*2r{Xouq)Tu)S5g4|7#sk~&+8)KVMhykTjG4cqfk|m64odnh+Ms6HH_9DH-jv zlI$V!q&OLEC5VL+NhrZ=$H_MK9U!2;xIaL^4_UiHu<@`H2fDWsTn%h=XZ<+7u5rEe z(BQ1?)8{Y~QEJX)1Zs2z{6bX!pzseHvO;+qi&jsq++0JLldK}3#_Wkpw(|($A#0Iw z65hX`J%2Nv!2Zi5$p4vjz2*J`fhUFSj`*7#--{z_jyE_iP9_gAJQW7?ZTF^(C7Ez= z1`5MU6O7mJJw&Lvhp**hryxOGqq&};*AxBT#$rxz8;<`bkgZ%n{sv5E7Pni?vtgiz zsDp{tI80$({Cnue0=y9}&eURyqbEHlS!6MkvvDR=)3vT ztztU*_3ybx+$8k-QNhxzOI|bn&OTD`x*GAZJqe^|p%pRzO$8J=VdAHxK*218BIxz2iQupI=4m9nhAz>XvZwwkbB%t-$XYuO0?3)M`= z{2?zBM|iQGXOTrD^J6Ghwi3ul12#5e-+F?X#@=ff?F!}Vn9s>UDoUoqFc^WLhk1Az z2ovmASnEgjabbB&kgUNLrL5uc-NHZ83WM2+`Z`f}v6@DM9?3-3B!L#tLX4*%kVFLV z3+EXKLUPf=dsyf`K_Z11x1l_1z$w`KgVvKoMK8qq|9AEU>sRrXL3>Z?dK@aZ64@yn z2BLfhdL?HV&oZS}%>79KC2*Q5$XTBRGkz&SrbQT}B=|l!O9oq#`rsF9V7~F^lc_$I z$p1CNo*3?78E3~~8#Dfc;I5M8HmKd?p&!U_J}l)W;JbFp_o07-JyA`+COWaW($mP9 z*q;l>9s=;#{;C9d8e9KRlJQ;~mB4v=(M2X-ISDn*&<~@0eF`3+lxM#gc!9Hc=&Z!R zXtI1uaFTpv*4zW-I4j3EHjb_kz#2P-wFu-5d)HVw#!*6V23xF-!Za4ou$UA@NlYAm zfQ_@v9dV{yUNZZM<0k}Oo%I%!VgpqELy5}ZY!C?~B=gnSt&6=n=pC`ZCzy>!R?Y$X zQ>+!4%s@txTozdqC|+lE)juo#8wZzgtf|~I&V4f63p;CZ{)+iK1Q{Rad2pPIK8nZw zy9BTq$Gr%m2|=YYHfNJuU#{{bFx~gBSTWig>MB6TD*`A>bl31yoK3aJ^f_~-Q2qeb z=_yU#V2&L|TPtFuxHXhB;(adVij47c?C(Z!ewkz}1Y`3uK`tVwvR<-jM7E8I_7g13 z_wcZ=%%zwTW5ua;2j(S3EsOOy&CJ?+jK)JZ1^qDwhr_sb!a^c!947D?1e_9P{PG*j zr6JM7%r7TMuND@uaSIX6CnCu-jKqQVdoVB-Lo3NvQU|3|?2}X^3&}^;USL$x0-b?4 zmsG{c7u&O%aug!bqwIT5FdNxZ86Sw(<-tJ!42(9znw>#pAMC+$lkEJm5#{Er<>$1N z!RUH)!$ENu9Q);RfOA)!V8co__7*0HR91#Y1o24!isvPc(y{q0hGVmMmW_T{Pf2z_ z^+=qJAfsO_G-GZTjNPOZS=l=UmP(M#B+Ir3a|_MJ2m-5tz6aYb$`zA+(MWbE&PTGp zs{R!36ATPsuz|>jl3`)$oraA~nQLcRJoPvsB_WWd1ld{2)Lb&!%I1tX1uzl-Lz1l? zAGi{-Kc_MLj{Q}+lEa2~CDBzj`tlIjH;hLjfG^xjHshoj(HFA1YVH>67htU>jO6B( ztuiMj19R=LC5g+tUp{(xnv&#wo4AkD7+fa4{&OuNfV0$jF$_rV6Rl(ynG}NRwNQSC zjDEn>1?ETM=&T2(V8buR%z0F>D(uZ7;Bz!*SF(PD-e1N@Rf0Xh{Tr^o^=?fPg>2s9 zw2*ajWXnD-Y`6)kJxY=})G!-tNCGiBlKo}5KLDLqVc<_=@*4Xia&X?IbR2eW2=f+4qSs8jy1e+nT+-{SyF%I@6^9kkxK`jG^glQkG4TSv`7@mUuPY7-eLGPLG%6>^q z4?&ww4txBRB$&3g-WAT55|BT$6@~!DwmmReq{YRiS>Z+u<{*$-&x=0|1#!!DpV5Z@yTSjZ4RY+ zBiJaJ%{7?oI9d879GNu7QBNF3vo=YD4gGR{erW#5-XxaHL~Kb8v%a3W7}kR1PftP1 z9Wp5B;jw|C>&g(hi&8Dd=Lk+RmMbN+|3{Ep(ecYHE8QRT$PO|tYPHU6r}(nz$0ne~ z%+0{=1}6ZYf7e!=m$wLOnbl5EFIfRie)$apaR}}Jtn{`3B3dTevmE1N$xt#pOn^qB zYl9uiUG&8ZSZc2C7lxJZIM`^EMT5eD(7Ttw?lQN@PQX6uo!3KSlBr*Ikw7~fZ)UF> z805L(>`qO<^htnT~`ZJtZU+(Jca_p_H&TKD_t%kddno0W`;$ zBm`qo2x2Ia&$ZeOWlj>^jAtkM&KPd(;Y|?6lVUU+l-?ox`{-_D-Y@x~{R$4xv;Ptd z{2+6FG7Y6!=2*rGFfXYJ8@cS1RD}ADjQvs=ovb+N zj;$)z$ivwqnFwpqNa%r$H-v}(HAK@7=WC(20T>O(lKEUeS?hz5w`5S6bxB(?tc3B` z)c-5N-(tNYOijRPQZkf0u$r&O;Vt&oLH8MnbYQ+&m`#r6^j0e0CO$01xuhbts#}8v@~}#a?rm$_<|OtIeLY++lV}$F zd82wzCd#gqU@?~@BQ@?uCiRFqKL)~i=vpYA#aw!@FadU{-{~D2W+ZyI1<==;OnXidz-a<}#adnVRi`h!1RyD9 zEUkix{4|_j$`M$whf;9-emDVmU4z5a@ht||5^+f!6=PF%a2*Pg%s5&>V_h-A?$5(oB{E8e^TA+E@B=~4gWw?~5zE-fkG;y+;14Oge!$-EFeaISFW=koh$#AH z7-dMnrUFpDmx``6HrkL~77t}$T#L0=l<7LoB#+pik8C27m$t8BJ{JtMKDAsCcMSClvMja`v(TN zLYGtvjOCpKySYfd5@bwr_PQ>rhwVIlwBWvCI466eaHS?dzl>-8r-#QV4x<}k-N>;u zHYKUq-;JK%!MfycxR8WrJS3s@aXU8MwG1bkkxkA%-^TzlPJ|IR!Akf!X;)veYXwW| zsGuYdm5Ias3)(0lHg224?#AR?Dp-oSoG=o?-iyqS^M6@K2KXb-uKx&RC>6~K1MP9J z$LP~~J!^qlWN-)r4cV8TxuU^Z}s`~WV7sd^+a7G|1S zBCEVKcpDT}VT`{b?UPiD8(}CmjwTYsWrEse^=<0mz+q&Tu@xD;Can8qj@5ZJPG{n% zEc(f?7m54%+)MUQ9>0Wcs1X?6+ZxY_jIXv7dBS9qG` z2Wz|aFe_zUr_F=ma5$NUvZ*;r88DIyrAkEZmn%5v>+z3Zz_O`DkiQ7xIBSz&AR+o| z2`(}L|7ZM5OHDZ*`-4dAgub?)1PAZvkc}96%;t75k{TnIcxpytcc>LS2Z1fe$qs^P z#ac@Y9fHo~IE#kPeQ*H*_k=nA0K2O-iOsX*lF)2j(H(-0U+%)Xwj^Ph6kNwsCam1RvE)w+RQG4-14%q=4=1TVNKjGAgk2~$7@8bL#?#F~9a_Kn&6ifR-KGq1H_WOKm7iDb_&oIL|)lG$74 zBlX2S49|#F-wJyjHKDPYgZN}nd)fzd2;|9jWA7=bK znI^*FE0}o9zM5ot585M;)xYSzA`3U=8O~e*)+DD`t3Zu=a?OSvNm~znPtgCs)B)?C zEBdtgD6~8y(mK}gH!)bS=SWWd6A=AWCJtes4U?^Kvd&oG7ruOQk?dYkhR0;En)S^% zziFqqiic0BNMa3kMiQ80G;13fPxknRt`z8WV{IEj?Vw3-kn9F*$M#}4nQgiO{h?&* zf9!0*S-~)micPF1Ac*!D3Lt>Ql%)^*KM?pqN+DT<@)L~rV&6rwEoH2hfWZaWyG~ih z5zImlpJ1ZzZHlrat2v6wraBmvB*dX4E=Inhn9H1GQV`T}J+x*gn8N5rrdgv{K%NGLea!+!tpL|53!1 z9tOHtpRA;O9W9YoR`B&*4M7KWF3h!}-k zQ1ylRf?zuKlqc$=>>tP6AhJ8mK1n8Yx-;&N)ARNa3TAH(b2>ka^ZXpY2P8O^Yl#;{ z$w#g%I4D9UlCwA&P2}l`@+%wbf}hELHO4>CoVV?GzNQp&92M6RV`DiEPLugjSW1mf zd2C7kq27IArza=u2v;}kdyBGpkk#!qN}p}>bd)8b&{~bGBC{_p8E&xvwf2y%|AcN2 zvP;PN5gc5_a5|DYY5H{tUUHK_Ytkc+(JAWTnd7j;|G&iPO*SMXvcI{nhat%ZHZ&&F z-6(|j@WN&WSFyGor>VFe8P!kF`N1`d0H?7Y7pFOB+S}Mn&3qg79VE!il=nQzyhArS zd&!?}hxQyedW*s>=t>;S2D0vn;z1Nct!saBGHQ`oZInx5BqH^V!}vJ3l{rZ)O7Pvo zXL2Oc9GmZ0tB$Sy*x7=;w6If}y}Nz8`G9}d9u!ux(BB-@Lg_dT-V=}{hA&d*J~f6V zjVVJE_SA;fLKr@T(VZN-dX!)Vf&PN(Uj!g|2^;aP0kh$!IQQAuBk?An-ZwB-o`nlg zE%^_Fd!g<*j%(YqAPuZY-oREBdk$2xV78<89}QU^hg}K&p*5oRUm&SBIIDoo^4f!) znp!}zB_;m}L@a4zS!U#@oyS33sBOyJ8pr$Lu~QYunk! z-_&q*GN<2IKZ~u*=#)c08cuq_Y*-n=p8pB{UB^)!A_qd$cD zZluTcD!<5IjT$#F^3ND`S|T#_zG@{%UzKP1Q* zPo=UasoEzMaHz-KThYo7STh{$ntVY%q?a?ic zpJSx(yT`ZF6_fkUaF`v{xcEL`dxuf|yZHRcy5xk}dTp_5E+=#U7)N=qotC+!OOpofu9AIh~jc^6+V=#kZWKET+$eu|wC@+PWfKeMqjhR$;ymciO6tAGsUMX9QX&x@({Th=7E zEZf`QTRTIYsiNeoq3-We(b80V5FMDn&PjcOKFi#C*3xS){(Ul(O}~@DR026-t;pZ4 zaDBz;TB^3z!~13&o+bK{j3qxEa9zUC91o>IZ>c>^&RY`qp;=OpM8_k(C=d-{{fg`u!4QPn39$t~;R zrbOQj3wgstpN0(Y+i@z3v#h2gy}a0|ZR6PXfNn#8(b%^pKs$KdBr*=*>HoR5W>n{DjmBe-M)HJ$8d2mSwDS4ieA0eC-Sa3ejH zlt`~xw7)Tzj}5Od^bZCed3cbLc}(d1MKC8A55m@3+b^>Z2`(e}AG$Tr^~*bw+e-Gi zNMM)k|C8)9k>J$`GU%uDV$P2=jzy3WB0vMf$k z&tYmYS3QC|MgYCYcq-4jiFzm@RgKBP__zWSC(xIqilmTD60oocg9CAr8N7niVD3K< zKtBwRcfRYCK1}&X5Thg?*paOzJbXe65%*A;OdQ)W@c^Gw7>~ugq!*-CHvi5HUm7+$ z8qZ>{BrSS(jhn9|+n?4+63@j+Fe&aKRvgTM*{8%82|UkrCA8YYz&N!IvJ{EDPhe-M zJt&@1@hm*077)XJ=DJ#&Uchz{c)Y8hoen?{}MZ?@Cm5pZuBHY33?W7F*<_RnaGOcq+yz24aTBiO!CH*nu7Ns zJ3*LzTAvJ=B`D=961jz=IOwg!sU)|ZlIWH|Kjv1jr#t>i5qwhpU4x1kZf}%J={KCz zHUk)FcVX>}b?~22mWR8D4_vsjp-US#`y6G7I85eIPkO8qG zocU_(8E)C1F{fJZjh{mvXva<*0*euY`d5VRkJO|&6S29fVk9M4PZ}n5$gVc`-N~pQ zWhl*6ouE2l{Ea;fwDmU4D;dqfZ$WS?z!C&99qN^k z?ch;|SzniNiagM~UqyqYNXtgw0d`48e!4I${>FD8Am$^~w3B{A7t0H7> z73@ENu_V}Qgx#o=+AmY6KohQ*;c3{5rl`eBD33;A3X1JvDJ6#da+R_cL+J>6Br$MM zmEbcnx5bRlHEL#2iUIVBWE9RNlPoda??pEVdJiQmz>5SApx=zk`D7Agr=}~ViU+SJ z$hH_+Uqz`d_ggVEo_&u)_jV0TP%k6X_t|>L$`wfLVP&VDZ^YA)eUgu;UnA#>wm4u){&5h1Kp_#hzCbScEsYoq~kZKk?nEVqvwJT-8jWB27;AVJ`cJTQO>mlF}xVUAyt*GTCYzDBl2lVJCDe4o^ zDt`0apX@o~aKPq$QAo?YC zUa_wW&St~tRg&oj`el~B#^0ZfhpEyzoJ>Zs2ib%`QCbgg&$--` z7+XiC5ilN&z@y{nAUbZdSCT}EQJSsT{TBvKde}ob{F1sU8~%m10o1-8(J!Zw^4Qbn zAO_u(qy|?8oa}&+Ww0?0od9ED3A9(mTA+>huwE30rNO4yD-asgi?@x1iD!UX$fQ4} z1{*=q*!GnxA1ab3#9EwOlTyjoU}ajWx`ziQYpV#Q4flR&&-fnui`qm5avTG>uhC6~ z&lD7NLO6bdv=cE08=3ncD;*pCvM2PMV*G@k0mN|zo9WmR$%>?HxvhA=!sKurAGfGW zEd0bIm-*Il+J6r_S1iAVtY@E_ty}%` ztDsiWn)PIqL9!9O^Wc1Sx;KC%QnT*&?`lkDEoqmNZ1S*>#nEwP!OJ3+R9mG)*QkU;+N@Y$%d zx3u>9WGGq0XHyL`vLD0U*!&SkH91P*F?f(5L+Iup0?BCaLZrMZ^pE~L%Q~Z8RVURX zyd~;|yy?VR7uJI?*B7(1$Y%+z#$b9pMOb1wdF&v?XRb0jl33^@Kvz`0v3-&XFzRgL#>uH!2sGm1(tAeR<5!=kiL#4a9-bM}PuvhYuxyR63iS=Zd z9L2Q*Hyh!pD51ZwhUy%K;w9{j3U6tw=`QL=s4g*hjdBJICuVU8jU<@~xx+Cg*+VXk zFm%?8^&seI-v5m;mN?o$p)3+_u0OkDO$W>Vs>uu~Z}ys1$f&CO?vsACZQNS&Xtu_2Dq z*`uz91#uta3kbM?Ig`Pf1UeGTO(2W8Cgb1*C4EfU8c>2ou+W`SonlWOEALxu*VixD zg`ymrTCQi)HzLkPKg2?*GfwIfSQLWkz}#sR%7UXXehnw7JUFCO(X1rccAez@4(o{s zHXqko?7qVB3$ks@+CA3(!p=yN3Wwj_fn}sd$FngF8zq^+R5&h-fei#S7pFO(@VlLY z@0P&?7@NrclVmzP^zC52hj|)Oc2glqLVWy5l^)_}7pkqfFUrH<95Kh@UUG%;9b6dq zuCusmKyFj1)Gf@8Kv!~>{mW>pHLS;mkM)Gtn=muM(ur{6^_?x^>Q~RmVoReH{I$=h4)n_pU zq{boE#Gyln!1q{eRiI4SvIdqxirY#MSA@duMf3Syi@Od0SM zRz9&d4>v=w*_%C*cIfRQhl)@XOl?B(StW?(-Ns-iNp@jjA`bm>lq42oWF5vXpnQlx z3t?=I^-f8OE_uS-QzKw4`}QzS&y|z83zG3zI%ysIgUKX-%xaLtDcG*Y-f7Io2YZrS6Ni0Q z>M&KSkM0`SPT^%^EGRrcJD$VPP^gvE$3a|5P>)S{8UMk3C>j5Ou@lTKCD>8ma)LQc zXT~Sf?$`u&75$n7>6h1J-khN7Q^thocjx-Ql9WAh zN%WUK@kl|03oy8fEZk5W5$d1fth!Ox%(C|zxlH6`Fc4|bE7_5c!2M{b>`unlQIJd_+Xyh# zkqmEeG9=*%d;rXaBhcbjn#8Jcn9~%4q=K7 z?^cq^I9Wy}`>c6N6a5vd?L!OhHGvnS4uO{TjPI?_TqOc3M6zjNdx!@{NL12{WY-YGQv!c$J=p>ujhHKeja4K$Q)3VBcZ`(U zhQFB0NG03y+>y+}Pb7=wIdP?7ExQg|H~MO}1(v}Yx{$FxiX?h4*A*N>kQqEYG1>dn zXA*<#ON@g{kn}GJJi+-Vv1|6UtvS`{OTc3xaJmJsp2Q@NBl`}!GuTY2{=?84oTWwS zoAq2n3@_vU06jO#`sW$hU%`=IvU$i5|-=LqH!% zN^;l3r*+IpZX0^9lT|!x(3nKpnm}UV;0V`hj&e_rZ@;S_4E%)F#{{_@9Z5JdqWfxg z22B7{V!~Ub4ujo|CWhf7%5293ve7l<^hypkWu_Z9*|*VGYzMQ zU?M3xhp1}=vRh;K9~vT99sl5*7XKlc0}fTTFTND1PT*$)C7iJeK-Xt&tEk3hZ={0`L} z`3=3~`m=*MISvvJPSawb5RpYUy3SC0No@?qgN=V#53r|cFBpjAVGYLv=nqKajnxBbwI`)5FbP1FeDl3!8x=^_FBEGq7YUx6XXh8I~JxH_y&G1>rU<&2%5=sjYtVgSZSY%=q=Jv=oD_&R+gIRUdX zSf3akgRh9TDA6^w`n?LBGJ$VY_CPNk`r{yDv~-AX5Pq{kz&0v%mBg3h{}E(7WX}Z% z493Jgp9e@~ZazNpu|Gb(SL3EOgh^hL&lL0vVJ`=J_Mtn5eOavE)5V6E+g8TPG<7c) zC3OgD7(|T1acb5V5%+VFiH5Nz7?SKDxQXO-h5J4P)RaA$jGWS}Ne&X+L=QG_xR)R# zZ6RH9jq6+>g;{{oCX5y!!(2E$3aftU!&)zlG=LF}lM7 zt4JH!1QNqh{P*IL zbSGKKOyZlv{ZYspVTt{}zTN{os;X=Mo@6GI%!JT;J@g_?nl$OXNKrb7A(@a!l7UG= zhoMUEWu!=vu7C)_p|?mAkRl+8Qlv>!1f_%j-pR2wnVAI`8GmET5p$@2{K%2W5hHSi|Af2u!$sygqV<=G- z!*60a4b5-q`nx#GgMJE`bs^KjT=`gw27EvKiu_8f8Dw1(W^w{#IOX&HOg6=!Riu_G zZbk70fWE-V49(;&${lbvm{N!w*4}#24bV)W}c~JCoN*bbuNKOadQI zVbm1k`~ zGr0~{E0AR`7&yTF3}t&JOw4Efma_C%_mKRqVQ1#vWiK5ER5+PG)wL|NXd+i;ZSzwE zx~VOG2(TpqB(fM5$)EF@%=V#lff9Hr-FnJ)lDSdbSL9ygIQKgMM83I_ z7b^EaR}seQ7=>`HCqQ>HJPM^*LAox`ES4v%{i_+YCc^<-!Jmtrfq}2D*uP!RZv$T&^WTb4;!6WEXBAF5Q{ff3AE(HR1rH7LVx-2VXZqBwk_{csZy`RRHeYt>1l4A*YfN8$601}=wAcD?s5 zCrgpafEdQO9`xzVRZ`?_2@HFd`m6_~hfE;pINwS}H|UeiBr?$8`?i29=3gZ!Yuf?Z zT6f0R%pbyb4`meDkjvlyfrn~PE^>^$`Zlpvkb0HSLCD2de`U3mYFtLR4?89H_Nb0{6l;5bM<~R|#1D%~gc}+oi zSbs!44>P8dVU+g79mbrh6R>0pV)p|8u2FB1dvcGzuIP?Y=B6kkYvuQg?u7&tq1BD1DWg zjrb*hKKq37-*F_e3FTj)Y8y4}fPxEZClP!R!T!YYHO)YDv!T0K0m<{P&^v_QsX)-{ z8Tv)mwg6E6`b1<0Kt+~jA^sI6|5m3vF#eu^e^8^J$@UPVh$+uxJe>9G&^;YiL?*!2 zX68h`L1(j;LgNJH@$(@GCIWU;hEn~?b6NR*Q#I)5qbHqMtfvR^8GHeQu=FiN4cKhY%y$Aq8#^?wMUf8POygP^`+TFsuQdcIwIfU_Z+@HMlUGK zLU_r+hPN6{MXnhB!7@#Q_9xH+GUM{DJjQ zfQvk1emzOOR;KQ-wvp0~*BzFf9%)|8QqD35Ct*;r0(1!qMjV8YK~Wl|r6Er=qVK>$ zK7rfse_*?V?*%=!5FC~8U7T3Gs8lSNrxJUb644m_%MiL!H^p|vjU5Uv|Ty_RuGw?NM{yn%G z4pnXegRBCZ$X|qbm$38Db2IlDwwLg?A6O!JS#LHI6Ws)ou^e4hi1 z4c}Shr}4|lWSO$MSe@1erAP^~56U2__?ha-oC8OTaC8wz*Kz(n36$0S^)W&1%*{pb zl)+bPB(WLY`*M=u+X}!XrGhOC{^Aa=mqz^*E- zc2v*NO02oKUICzwcE(r$isV(DH`r~#XIV<>EkT{W#7Si`e~S!yqCAjbZ9sPtFo$uH zjKKotHdAj~F+N?v`40v?NrD(|&6dS&($p3`Y zPMyd?VX|9Dut<=;jY2K}VQDILXcf@;21BEmtYPe~sQofLEsBssZ3Nj0B|~ z;M$>=q@|t8`fcv>0j7$4&Q*kfMYVeuVR(nHIqy4N({3~HSZz?0NZ zN3s?vsCISrr1^xP-;+>HVq77ipQ}NUNLie{;K~KkGq5m}#V9h9A9#rzhe97r`Cw+N z|1XEU4e^zRuTxZT7V0}l>Je3{ipy)Lb;n$!J_$D`LK z381+KUpY~M69gK-eFcE8Ay5I<%0YNuY*zw$FCcTOt=JFIs!fA|Ur25VYrpA<@LWFE z-^)T!Y#`2r<9XU=yHVUqMuudi5-*Mbo1Jkz&O+6GIe|}MR}+9g0$QXK_Q`;23`?8n zdB5O4N$O|&S;zZ<(_T~}B5I~4brEfNK`4mVK=5lM+=lvRi z4>NVHFgyPnfI8(*0)NsVUqjymt@nP8jAc+cn6l&tc~NTEo_cp;&Ig5y$Yp9Ww)_Dm0fh z{L_{>j0dD22$~ssYxBHCGZ&3+WGC_ho$e&i3Hv4h+lu}@m|lWzCU(GRK=zQI(sm`d zoyFQH1!X9Xk70O~u?n>}VW$SyK|o5SYA{zw0iMtfzrsQq%;Z6@Gv#__a2DcMqycei z;QyqSQRa5QrZ*EGL_!HB@*Q9b8va{Lerj5VD=4u_>GwFj$>c1+IWjm5>JFdO7UF6?l_fcg<>%#jyi9~ZU>oqC6J7E;iI3NcyEGVUkxNT_wPCymZ`HwHmHSehCT9$B z8IVsH?t?FhqDEp@kQ{IE+>da>rF)ov%otC5H^=|ma4zvJrL`z>U%`-%0m)(T3e|R# znfFNWOOj7ga0_rajE))zkWG;GF@6R?ri(7QqdpDk4kb{0j5OpUpEJ-Qh2&j+l59k- z(r(Rg_NVUJMDDu~%!09?tReSEPV|o{%d514yJ6!3fy)3$q#C}?17aJQzeImH*XLv{ z(n9_Jg3W-!rTJ_cgk>ntg+O^MO*Fe?!>?~CzP8~fQ(zAe;ua@ z%KWFSA7Oqa?IcnQAoU3L2S7v~k!@DiS^%;OYa$gSQQ}*^#F1mrt%TnjGm76`aZu#ZV@27&%mh9(-k!U=Q+ zCtFCiAnboeyKKgA6`+m*Mq~m3Tk>2NyF#qxz-A|Vur7rD#(Zb&&nU@diUn*u20yN# zLLbRje=BK$uFSVV@qG+Vz|La;6~@6FSbM~kjDrY*Phzg5Y#4PY?xtYB8+JtQWBW1p zKjB6dZa)bLBTAoC}9D+@QwN&hu%TJQlf-a4Wo1)a4%;di> z5?Ps{zSrnW@L5bn{yRXE2p*JCl;L3r8wzj_m|PD7`7>-7(Yv9n+z`+(Ekgc$_DsMf z1WpA=7lWoF$U_2(9AYgm$}XrK3*x!#vNfQ8OPUJsQxs&BI{a9-xY%xDeK*fefMkZb z*~FMi7G1O)pU7YIiL7DrSCl##C~K4SVg4dnz9HZ%jMH&;0K=M;r7YR@CtwSjO=Kq^ z-{QU;^bgnG$gIF_3T?<`>_kG)YeB5W?6Q0Ei%`Eo+iCwFCM2xIHYTt;E#ENRHN$CN z4*ScRr1*IXriCQ;JF)BI^Ro7!9d?Tn+YLsM{)`Q<9Yy=(!2hR=M}2KK@B*sGQb$x@ zD%4q|cLbGh>5?75ZjZ}I#-%)qjL`zlC)`T-KS-TwL(9KhPqB?-t`t7&v$1OjOe{(G z7!Snn8IRGWaUracVwn6YvB-9==@hgbPAXt5;stLqL4r~QgIF9?WBx2-4(hT@L5of! zx%dC7IofCiY(wc(2x?6#ALvw`)XZ(`l=4d>e&HI1h?J7Na5gv=p8B_i^42 z2Da!Hm`68?oJU8b7TLey{tOKxl84|&09jWHdI#c5>YgkFBmVrIP_hYyLMV4b;Svq8 zgSq^$v4Oxr*#N)_bmlBAK^R~~(s9%ey(a{^r-AFDR~WE^=*C|SznZ15`udGh4u*w4 zNh0A3Xm|>hK^aZPLAiuMWu9NrPB$5I!_qB)wgTuzrSW~{LkO~m%p-C932kkIm9gAk zpp^Zw5jhn2Go$-FUSnx8u_L&aE0Ln&#O-g8bAb>K$VFr|>+1ry7K40WW7~oC>jo{$ znjMJl3}?_hEkt(KdjjJYK8M4p$Pe<%JQu*53#{XCHXW=3A^9U54Ke6>)>;(95Zsl> zX+6&OVQlie8-0TU9L^A|A$D7oyM^d<1N_$%z)q*cLcWdQK?$Lt{&L5{z#>IiNGmBz z9WZ*ya{>1ET|m|0+N^pX0^}Bf=b<-~ptZGyhS4d10dy>k9MOV^ua8)dC;L;_1?3@K zGQ~@^6UbsRH0FllgD@bHjX;CQU=~@925A^UMD7u^9)SBXTA4S=sxkIGU`pgO*y%~& zZ1~EAPmzVJ-+*C}(h8uK>U)n80Kor|3DET!6rRB#1;jfEvYq>RWL6%dRe(B-_TQXx zC0T37{hzROi=gk3(U%%X94>&lFK~X6>^l?ZEc#;rFH)HKZoyyXN+s(J1j|a+U!w34 ziXsu(D2CyGwERo`)mN_Ew5qX0#JHR~y?2W12- zCJ<*R^TSEN;pL$R20My!mVxdz8OLgE=Ay)xl9pYRV=jOO161S+AQQ=WiNP62(9;AL zxrc5ot{bo*vYNGK=w6~1df`7&-@+Z}rAvTXiLQ4plOIUK&?Ie{2ufXo6)nb5qNn&v z0!{^NPzFMAQ=A?J>@#XPm-~1q-iPC=jK%TU6;=mwp9E`p@fSyOw*VDQ6V?f^=(XGh zU0Wu1k$pIs)J8E4gGvCJL9~;AYEF=?+z$gx6^xg$E;0jKk*w&7w1cTDuvu2u`{}x@ zJ;(P609}X4%=kHqpKF=D1Sa4;ZJ0zHO~pYx=xr!=XH6tZN}-aAdA9}(&V2>V6%F=1 zz0-l9ZD8snm=L*5&=@E$Y;d{)Vir2T279E1UxltG&>SfI3&%sqc!~z@kKu+4!7Ea( zI=U-15U8#Kndkd#E8l7;3=WacXn|%_uLPuyBDW3XOc@-O{CuJ3O1)rmg0O6 z1inGqCnpd09dWn^-6*b%GMb7l$Ct?OB$1>$xhZ<(>7E=sza8b}TbwwL zBhbeXw?=nrY34*8;-C&e2a#z;xn}Tg2S8@l@&Os*~0jeg*^D1&#w?nJQRNZ)9f_z4h66n24W_@rf zG8vn(jCHx1XvJ$O8@Grtju;^T_cmg3255d@@=IzJis3+dVw@g=PjxqoQ<0f~68Z9f z^mA(*iabyNa{rumdpCry;qiGA{XUdSWI3#f#1^oGTH<_fZx5~H?Fc)YiNAuNdw5CII%^>fujaK8elV>d<&Ap zkA{EAGJw4E+xU^~DjaWt^{OzsoTN|6q0YUC6~IXt&xPd}`OV!N^Q-fJctk^B8`MO8 zQ=WQ&QKT(7e43?)P)QzLv|0bLV(lan9@;%uVXG|um!BlTAfmh+=EP*!}d{-CrC#cRh z1Qn?#6{cc71=|6zqp-P10Fl1freQ1c3frRpqvNW}-?dKxKxYj80>n)+2})x>LiQ7e zBI5zIQp?blpwD#w)ByDN+z-dTg>GKap98ou04<|}5ronrLKLF#y2LEI&~w)Ev20)L0S$Tovd&*-C6?EV7Ocj%8L z>(V^m#l8f-Zv)^b^lQq$i}#*VIfoiGp{c82Jd!Lfa81MU35=S6wlaogspTio{}X`L zX}#M+cVir02W%enn-C}-AQiN!%Kh*}~{u%7=8VT^@rkkWdh*LRt1e)lZb;2|?;nj#@Yw%=#l7S67>{ z%xwd36EcdU5g!2}lKUHs9)k1%^e3?Nz+flgV+{T-6LU4Xh}ROPU2etkO*&lUHnfSH zW}FR>(Kz~9GUeJsy_@1dWS_EhkNKc%S74P5zE=-3H(_QES3H3iDE-&9cbeyb|Knu& zIrU7YQI3FgD~iJa;)22jAodZweFI>m7)GMylaJc}#@Okv#-^B5QCc9XSjB)0;P zRq2JY+URSUKZL&+V*Mq*X4nV%W{Ea(gzOrEt`CmhR%T@W2Ep>;Xf3sDip@?kuB!mn zK&1`4BKR4~+I51tNn$oxpC;ovLNz|$kmxFWCanrJ1k8Sf79oHS?dzXg}bZ({KyOx&~`aD8~z~ zPV`PqYzH%Uknso!`L*wKY5IEZpxci{)gx(3}Z!$h2z;#=wM2XQ#uty%O^iXT(+RO;HAAhj_54p1%8 z6Zt4Z7Z0Zgg3?mDU1cX37vcGD>?%-6UK90gM>V&gY%6Eiu1R$~(BOvqFl$>ce?*bXyaJ+;nhV$GNP$waA z2!Y13Nlp~ylOOHNbClh|^Fn+j8Jx(FB9bV-_w^K~RwmvMT;x+_w}GN8WpLVZiFC%{ z-vqe~lQnb${DOWOKnIasXU3rX4nr9wfrp~34v|5g-e_@f$Q=WHLY37a)AW{AvuF0_Zh#4%E%j5}HL?lR*r+4GA;_CK@TgZ?uow zDwvh{9!FyGeJ=xDkv__7tknNc6#k&LOQ5kNN*{2)R7>y?L96qe$aPxhuAq~TfD5#? z9Vy>J`k*v*SHG55+?T?pG9c?~&|Hl30kWMkB`Av_^4mjKQO>2cs)(ce8mJ6oX|jlc zjc;LN63m5osHoW1z=#{g5qAF+{^u1uJ6cnJflhQd|c-NG#4-;F0NUI z-0|8l_@tUXi6hH9+IUmA?+AeA%EotqC@7xspgwS2JX{LG@NL+F)lm z0me}dk#jtYw8C~6_Xo7TIg9aSg8~d_@I6aPHN0rx>4ly@mUx1dAk#(E?J*A0aWI^E zZ^K~%0Y~FxF?Fj+iB?ki;4;I$04DkTwdz+!8BMqyt@!92!CJ17@9i_aSP z`b~cF7lNbS&?%Bznhk2+!gxbq%CaBICz9zz^d51)ocV49s0}+&*ayFO`CjX~3CC;D z>#pn-CfkwdXO#8IidQBpDeCb!`&Jbnv-PT|gCjT`%zO+^gK`w0BI|J8L~SO*%yBJ6 z6bWRMJghBXZVx`^@Q(1%3(rF>9sN2T)PX!WK-S;jXv83I1}9D^bK(3nhFO)yraU)B z{}jMVDTB3r*N%pkuCWlZK45A*xosDcRHmZdol1(lLvMyr@t^da^>bw4-@CX*)xw!e zU=+zlj^)6;41$}JcOI^a%-z)WfEM3a1lkkk4s&fpXD9JjYV~(>5I<1;PQ-r(r>*In zAMqPSaX;5?>MQ>;RaO8mApfU$ZotA)9Q8)&i~^N_m(b~tljS&T4Ie)dyf%8BXvOJV z|DwN>aW!k}Nc1@VHnIs*dF~Ckhj810F({+pcL(IWl;4GQfbN`sM}I1rfws8yP+M{N($QEQY9SB69;F>l~=5|zqCyq;b%-iu=o zN_n&cIw(CY7#k4i5!u-YQcw?W3A&BB-t6wV1n$bcm8&_d+=3O654j=~jQj&aLCH!P zPT{LLNqk1qO~d){u0e0mR_&>qQ$dJ9ie{gmOs|9ZF*@Ol8_^SqqMjo6eI4BTeWsFN zxDAPW6^AU_$S){AgXIA^)xq_CLM_*vrl7wc4%(1&>kz8LbqxX!5l-Y15QdSX$N+N4 zM2yMkhzthSd4mH+{=?vVV7jZ-*hQkJV0;b$cH#UTs;yhr0q9qPiEPAgj8=Aq;h*AzmkeMwNuN&_24v zHNol-_%DKe%i3AMJY}vo#Sp1y&{F!ET?`nJoCFlfLLcwIR{;g+#;!DTEkvLAmScJX zRN($Ag7hLtJuSyzrSlgyNj&sb!MGeO?ZeqLbZ4tmO#Si}m0m?Qyp8;G8x@D4k$CQ7eBUrFm1uRF0M0iOZl3i@}^`87lEMgVI7Gs~cV z8USAsd^(`NL@yU5XoBC{*oP~_izH?t^52c(CKe|KKv|Ar5R_O9_Nu{t9CzdX4`u6A zP)Wzh2Jd|`uS-uPLigu@xTz(WLLvv~hb2({4A3pm{Qwqb$WL6ppgTKCBZ0mq2EP(y zF0Aw-&`=x&f{AQnElzjucCr@8za~iMc#K24rq}N5p#_BvpdcQi^XikSu0Lv82}h4~z?=E7A#v zqsja`*2}`&WbUVtNJDJ5<9IrApDVabWLyL$<{Nxt6TNmcWijH2WRqXeA41cKI0z7n zp#uj=+%HfEN1%5kIs>&yF9D(vPDhhbP?q4hI{jc$f;CJQ#y%+fq^|&40)PEUbQ55r zSU-Wyo^a~_gnEqt(L0*?bQ*65LDN7ga*|+uwQe`HG)r)@pXNNQ{qi+F3Ufc5ATCO@ z0Q+nPFC|!cpf-^J*$05R1fS1(O#sxEU(i2^!bF^XrF(K4Z>i4!(Ot_TAQk~Gk!K%S zR|4#7oHrv_B=%3aim={X6p>K`y&7yjd^OcXKEQU8HhLCxHUrrIIF(=@;e4k-1{f~K z;TY!9vIRcnybIb{JWtZs=btzl%$9n^d{8ciurmNOntr)QsroT4#^wxqWAW<&^hoT- zQHmKb;bs@f{|9}WxQ)5CVB^Z*uQO#n!*f>oGAtSTy(o-8QDiUZ=fYZ1ZOHcw|Fr)@ z2;dHr#5RJDBf!5}Rxi6^wA%LotVjg_ZPcAmQ1xWK60yF~l8=<{MSn?YcH&UvD*}Xb zf1ifi1Bi~?A68o1(SRava5{johk((tt|XfcfCx%A%2Gih63MM&TY}8O z=A^+_#*|OQO`PJ~$KzulfXSa`(Z$6Weuu&}dZZv(H`0tn=c3lHDS_&fT@eNTG0*kr z_Whb!44{{?R*>r(4ic}e;)@EaF7|Jj_O1LrcqxHv<)CTk*<0) zFTg=M=ta&ch!?PCQ-Cr*1oqq{^&Jhm9fm|&l32|Q{xA7^g8akDvJ;B4wBceTke-Y= z>Ffez(pIUTNWh;kJc9mnvg^nC6oX!1i~;a9f`~LmZ!byxNv1WJU&P#D1yT|4gSh$$ zU_bwi#i9Em=*pqIn6Uz-_?hu*0u@&JDiF9A^I-(*qJS{9?4Vq8(R~2$oyv&Jw}9C@ zB)5XmO|OVt!GBO%;mbP!6sMr-AkOarV!vbny2jd}s{!D~XdcRWGdLF~4WYS@I-CHg zUYg-cf;C`%1is&;G(EKs#HI{>M=DD^+AZ}7P{P;tBEM6zm`1;h{t3pb*uN(6_et&% zb0T##iT$jLEY09op1%eE&tUJt{4XRPloM3*2d)@MiYUegA&(riRt!0RfNm%7{9c$^ zOxGSNujA){ElSWrfN4$Bd+^wg;5A8Hq>LmhfSQXg5$$dI)bCf{QT%SSS0qi^^ z^Edep10tbHlaNe>0bceF2zTLUL6A^qX$DPZXT@4F>OV zogq7sc4SbGYmq^tkaBSn8?0Spk2E=r@9e zj+E#Ro}UHE*~ssEJGGjRqYp6{!5EYVlwgboG6>QVqv`;SX6{Q3G{RT(5`A1BRU248 zg^&SY=|+rx+`mS(284vOHj?-=slXJ*dj_WkEs#U|d;_`F))tIq&I+Wd=(K>S$E*d# z4WS|@$#pD#GXW`UR{vkpb1D#cDHAiv;VM@F91dk}GviTp-Vev;0A)AmQS-s2(AL(l zN+}kD-&GlF&Eb3RO6XqShlQ*qeD$w}&UGfmRyX1j5?z&2%mUX!Uu8369*2HfJWEnS zazaX~Cpy*bG15|8=F{BPJt5XgMv`xBUh5O{%Y4>?QRd}R)|oa(vTKmx8t6(+HRIp1 zUWxK`s%4!WW+b^|UB1k|-{bC+=t@d4 zT_dddL!x5b$#DsN)38o(Cz}IDS|2)`?&M@wOlobTWQy5+qIFjGu*9^aV4wlo?gBu9IOm`m1McV&%;?n@G7Qp%cb_E`IcJ6*9xbfU|Xn!*pRGe_j` zU2;TZHcx+REf@7a0{(f%x-hqI(j9B0x&C+SCad}Bed{+4-`tzlJm%0R*74!Kus7CS z=J_|)+aX)Ow-pF6JB8Ychu9LK#Mj?y%b%AdjW~B&a;&AP5Se0lT+y*)ZLYN1nicWA zC}!L3`?k1kn>o3J?GtNQj62coF`Z>>(e^N-Npxzo8C%ho*KSU!W-DLOJkiINIiDFi z+%_Y^w|1QEfw^wHtyd1S`~q7aXTIdLq&_Z>;f@QGEXC;0Q!=$OC$6yd2sK}>vTX>j z*oTHN1}0EgK^C2u=pMvlN?LTH0oN&RR^6TikOmlEwZZl(vv0$0+aP;ff-5mL#g}!D zt*zdht@qfrXYsu_VcQT9n~)OY9_aFz3s2gLTC+zFj7~_5rjkZNvh+iu%iMh0Rz4)R z->u=VN2L@a#g#}YU9sl5Gq$J@^U+z`-jFDdE5_}KO$pFut~h72TYbBKv?cf&T(k`h zONvg7i8sHvXxkYP9_+Dh*K8qK%>EB;wIa>!FKuxRBAN+U>5!at!?xJX+l|7qh59l# z4Qpx6Xd1TP$PTI$!X(GiBSv43JFUO3SzOrr5zKl9Cd9bR*>PdZL(DqyVbe01wzRO@ z)(Dgn{9Sl+a9ACC?WF#xYMCNA`hEC`wY*O=8?OJ~^@_fH-msEpqBktb77_1p(ff(9 zzO!S)_D3eVl4D#HCEAl@&KMW=I3m1ppeDXy)4~S5og8Z)Vxjjj2ikRqR=?dmN zYq!)7O=1B)d`vxjp?-Dw@v=+K1T8rA6&4LTxf-wkl!Y zRL1Q6o;})TlT6JW9qqeq=9n(_?#?W_jsDZz=cDb*Lreaz=9jkPVDfJO*>f@RbeTKW zUeRW*j<=^3Hd{=vw|Cn61Wt)Lv+Q*X`I>xX&+GeVqrK3Ys~hbOn;a3ozf8MfUN!Ac zv-%z#wRf)^JvbpLEy?&_@d8w`3;HKU4}r@6;A?fv-ot9{Jz>9Rb=Is7q`3oq!Kz9HP^!O3eR`_A-r z2rrr4m#1a;DSKN^10&kJ-7?&oJ4cJ)v7O{HnC_G4jxq1_4&PHVFOMmPJGpP7i}OnE zgZpgBr{P;8%QZ`1mzWTf5I7+?)Dseola&j2y%P>ez^}t@omEqf*?d3>M zUz_AgF<-09_q4G53&eY7b&=ll_o;pX1W;kJCa6Xlfm zpJ6H7MRTC0ufxH<HnS8aJj?8AR-Vs|vinf7wVLZi1UpFv)U9u}l-V2uIt`z^C)@!g#o@ydKYEnM`Jhd+B7(D z8Hv$Ge>e3pC(n-XMigx8N~ID8W%2KEe`CbLsGrSDa7j`mKtY7>?b|>(44eb)A5cYv(>C$+p*P|?>){H znxC^k;wECG?-O5ApYQ^aMr?F4?HO$hOf&B_ar~9t_n?bouCHHLM`V6KxS06pr2f1a zXfj?6oKiqd@!jj{sOa0-)sb61)b(BI>d5qesGF$o%bB@-GzABM|6T9$txIy;u?LE8 zj!bq$+p;PcIg_9{I?X)facl|keLTXE-%Ln#v*E;VBH|(Y*yC`cy zim(59M=tZ=&yE2leb<^q)z5j?onNwRki-cw8Oi%Dg^}wQU z!!_-lsSaO{9?r-Dy#A!E|65`I!4i18w(sH0UFiQ%a8>kW>+Wpii@p(&!`$56xyT;w z0!UgyqS+|gnLi{)Lysr@i&W4_OZi`sF0)4;XSPV+=p<(e`7k}aEluN&P4G=favJ&l zuSWkdAn!kUPx{}9cr~*oJG0b|ND64X%sgwI-cWPt7tU_>*5W+ya^x6`^B*vf+~1X! zO25;VtS2P<-;JJ%M*3uqkqQIdY0|H|{M#@1dh{6e%_p0j*Xo&N9y$v+%e4IOAt`>? zsD#h(y5#VJTUSN1(F!LaJhVbb~w0~PLkwS+KHewQJRoOXZ!oh%%>~8t)GvH;&oh|FnLz7W~V={s;WvIJ%K?^j>+)yRV8 z>Z_4ga{9jdC(>1&WCU%Jyn)g9-{;YP-#dY$$?f83%JC$!o-L%UuVEw`Z|aN4ezyMy Dk3gZ? delta 192324 zcmXWkdB9FZ8-VeL_m!PcmXO!JZ`rqmtWiWlc4ezRvLuqnT1jN7L}hKEL<>@sM2obj zR0u7Ekg^mi`mXDl`TqHxnKNhRo_l7_c@f_We^x(tv3l}A{`4mj{I7kfM4}ju&z~vr zLDfWJUzyBSC;s?8b0RCA!rXWP^J3P0nG@Nu5MG8QaW+=K9QYPy!)=%aKf^Ma5{a)d zKjriLQ}>gJoCh)|no@BE`alFrU(I?SI4@2WtO2 zGsfG{&37+4-~=?K52Njt;0RoUwk!2V7_buBt`@pvH=ui_4;I0DFu&)2M(TpyiO&4B z=w>vq&(MK)M}I~;Jb}KD5~sp*CD8U&(Shp6a=Yj)XeRrjOEVfvdH&~c(HYmGYn$zK z=qMlhYAuG>U}<#Cy5c14AL|d{4U`L=3C|Be1HKC#@ZMOSfe!oxx-_q0(iFYRg&lv3 z&g^GoB@%x{&!gw{?|8q^*|6CvqXE{$)TTt2pjoVM8|@hDZ$&fICpz>j=idiMQ;~)f zV#CR?!6VTp(9h8lbin24Krf*)eI4y*Q>_0W`Wf2(8?^s@=o0@JJ$aV%Z^!>qVTb>r z9cKMAbeIpVzY2}KRJ1DEaecIX(`Z|?eP=YF+tB`RM>9GI&*BiQ#f{#{zcMFIQ8D*? zcymp?5Y~DFx+KSODxSkBIR5X4;`(2)Yy_kr!4nF@_6g`arxfJvtNJrE}0!E{f$BV|gw5 z+&i&;J37;E(E%!D4OT;!?izGynxOr)#H-ESja(S<-I#%M(HGAf=&t`9Q%ix)^c?QP zEZM@0f5!2Y)3c`~#^5A$NiX0DJf0&h@c{1583O2#_VnyuS+#^Z>f4kH!1v zl3du)W%+`|(T26rhS#B)>40|J8{HH4paV}s19}Y2z;kH8ub@k`A(oG$?fydh$(cX2 zPhQQ1o25KDgX(C<*PHG0|U_x?m|0!1fAhxH1(^oG;TmQ z>%MsZU$noRMbZ-W@CvMn?a}%PML7RP^bi$prl-&~d>)<2tFit)G|}!l>b53 zv~saK|=-rt2z>@b>{%%$S@zW^8IsVIZ23BMN< zWT4FQPNqgk^CD8t5ss!%JvDc}s_KX*BTKvD^yH=&jK~r8)ne-!ZY_By@mz zn1Rb;c`G{euh3)jBid1Vnb7`G%EsOS3A5DFGbV38sfJdYKPec2eo8+P#7fa9w zKZ*^$M;|I;2t!P31}uBi!P1zZ=f^ZhPK~{Sv>#y zxv-;ysS0*8x+%}0dmvNAa6bzgU;*?^R~j2*b8Lr6G&7%IL;MDBz{@M8CE8$5oPy7z z{a36^d(VF@E{yD2bPu$P<=$AI@=)}6E=N1uf!AW8Dq+T5u>s{lXr`8;{jEiJ|9faa z-=fDhU)2ymJxn@avsiHpR-xPnJ@=2IYqb(h*;X`DJJCIJ03GlQI?!d+!e_M@nu)UL zlGQ-l)r;a41t=i~i;)k7e&(D%Y}tcf3? zfnPws^95>z%oam8aSb%!wlz5a)wt+Gg{hr|)p0M@z#KKhOd6qkp%t3Kc4&%+qiZ=H zE8v4@z-!Qfze6+kBijBqG!qwMeXis+Vdh297fea?<53=susPa6H#7rxpu2n&dTOSj zOR^jt;5GF7{|?&zXSBalv7D<`2&`x{S%wQ6Rz(MFj1%!@bhm$v26hk)_$wY-ZVXdx1BkzGjF^P5Y7`h}S>xQ3n zI-wnnM3-(cR>aToPCSp5@b-G4{xPgd`7N~mNHl+aGspRB!o`i;xB;8uLQKcK=q~;t zdJJ9bKheGLUo59J2=%$q=L(^jDu!mNBD%?Ipi6Z2)JBoGi9J*<%HVP^4jb?N-n(~F{-uWDTL;iqCXLu@B{EJ4M zr*W9kmC+K>is;(bLXYW9=<|cn%{Ky_;e=TKD4MbPXrN2cOuUM|KejdI{JT5%P~qk~ ziyn_0O+p~W(PLExO>GDCoZpPTpzcKjnTPiCGCH#l(ZF`2106(XejeS7*{==bWL(Sn z_k~c43Oi~ay&ZjEJbDUdqBDCI-Fz>jnfMNU{!BDi)9|xkSv1f#I2rFk1NUmET&>Vd^hNi?NHmoT(NsT&uJx;!fj^-EXKofhQfMYhqy5y0S> zwg>wDNcQK#04Aatn1#;h1vKK#XvBNbHT)e*;3f3AtDA?@Pz4RJ2D&*L#&Qevxen+O z_C%lWhh#RHn8bx0%|RnxjLzgWbPeA}AN&kGc3+{J^jq}Bv>)9&2hnyH(1~1%^#xmm z{;QyyuOZs+jd;1|zkBL}&n%j%`_Tbrp&dPe4)6+kEVrVY@7Gv=+4W(`ilKX>E*fZm zbije=bK{~*&X$}=b0 zd8T$D&>YdrqXp3k7DM|lkM6Bz?KuC=v?moe;_c{6-$3i%LI>Is{XF_Tn(Cw260f)+ zELjgU_5IMjbVsZog9bVQ?e}4HX=mS%3=giL!Uxu%0c?p4KSCq_0^Ov0(HF>3^!)#a zK3BATICfRh`%Ta#>JrOC(3wv}Ps2j=xs}OyV(bS>{e`hDFLe+Gx)My!UFyM@i%0}XsMmcVDx_sKh05r6K+ z`8P$mx`)kD9FJ$>*Y9XRSKk&ou8$d%S46kR`eSIvJ$i=w1O&j~>Tf(NX9ont^6uCA#+8 z(E)d&r{w^ek>jy^5$!+6fbe|sDlUAWK6;}Sx~sdQ=Y1G@TpmSVoy*V^zJzA(9dyQf za3lVVp8G|&hs?ZzmfuAu`Zc-<_aNgY69>7dOT{TP(h7Hk-!5;69>d9KU^CI({w$i> z6IdM+1H&&gYG4hD{jnC#LnrbPx)**#H|_7}x8uq|{?wf0jmJe}D#l=GT#F988=cuf zG_@ztK+d44O&c6CcR9L5SEHG!9?Q*RxidPkfoP`hL;HCUFK7J3lUz8X7tvI2jDCrx z>IfRpDYS!s(GGG93FWKMas_mz_0jX*8V$5F`dnW$(Ep)R(Q*xRA}!J9x}*IJj`jDVOY#W1nU@dc{JZvVQ{ju^6js0@ zcZOfYH$HDkJ`hx40 z{9kA|0&Tby&B*822(t`JOLW3!SQ6)<1FS=5xEo#5KhRfkrr}{C8R#3X8oGztVroK| znouk!hj3Ae2E)*X3!~4W9j`_o+>B=E19Yvwj^(51%>F`Coa3HgA+&uNbf(u}O>B<_ zFac?wOw0-wiKo$&u0T87g1+ItL0?2?&;c$V5!S9arc*A5Znnzk5;a6OaVvDsbVHvX zfM#eS`r=xQB|QHdx$wd7(Or22TjM2kbF~^7c6m=U6T_mT(dX_*H|0a<%w}O*T!ij{ zqiEoTMuitxndnID==p!&3oI}?{7%K~=%$>D&TJt%gO%u#d>HG$LjyjH-SHyY?$&!l zz@yNmdI$~d88ox2(0<>;)Sv%-5gY7AXL1w`;CFNror~rl6UtT5#-umito?*VdkCC{>H`f?C4w3pQmyDZIJW9 zFhEK4m^4C<$<63ML(!Qh!7W7-N2kr1bbfzU{h36Y! z2IX$(^JCHb^U>75X4&)qE*H*pH@c=Lyn&e>3k{2+DXV}ER3A-ow^%Hd(7=zO?Xx|ZI&G{!7d}`6-7MFkui(zH{sHs_Gc!6Lo$*pMb1Tsf*Q4kA zBlNR-0Lx?6`Qd(btV{VibV6e=_22(L#)ap68JhAB&`q@m&BRf3fGkgiO;`}iQ7(hl z-+&I(6Pw~x^!aV^{@2)$@*!-5B^HE!Zo|uxR1D$53=BtSG%+@qiDu;K=<0ZXOT7O% znwfp*%nzd}zK8};bYa*#mC(~uCze~F6TK0Wu1)`V<39AwHwB&9GBj0hpabkc1N}MH zpGNmij;BMQ1=02uW4Rfc!7k`=y9W(q1{&akr#b)5cm)+kz79SAU!ybs1%2RrEMN9a zTH+nbMQ{^-hqinC+0fyOXn*Um4sJzfdI9Yx_o5I;QS>y`S;YBw20f_oT|N+f;8C>W zC1^(8Kr{6fruGCHXqLqx@IqLLavk)3Uv$6+(2vjzGy^Z7=l(r(oNtm`IP+g)Mb;&8 z?a+pm(2knoZP)>Qa3%U;c?WO7Z_$9OEDcN76iso*Snh-NGaP+>0(zX2bGdMBUynDo zqaE#!McTXdrK)OY|A0e*Qnkg}eH6 zH1l&I(){SxtSWlH6BR*@jNw2&Vq~pEF$e zClr^^)MS1>l&{2e%0_qnr5zI#AlmaJmYj zf!D?=*b&_W53Edvi-oblo9F;vqp3cEuIV{Uo%feQeIYb}@@V_I=&o;vw(o;A@a|Y% zg!Z>8x(N;N(SfuqB$QZs_Lgk8ZMY=-!x&?x}~- z-Tx>$&J*bSW+9sSKcO#}v{%EDltMRE z4RrIiN85Ktm*{Tv#WoSm)RR~nU&QNiA7=RdFZo)Cv^n}tz6VY595jUs(7;xpn`{d@ zz_;j<{EF_K3)ma8zMhuoiUV;QzJnWa@*80fT)Q?bc?(Q>zT0x)F&l;scrUv7rlB3r zK?hnK>(|8c#&~}Rnt?s&EBA0LC)R~MksE#CltBAwg|_dyj`Q!P89;@p8;y1_9i8d& z*l+_H$Oq_d|2meBqt9Q6<(%uo^F`2sYM~Qpfev_6v?to%koBB@XFP@qH{FBi3uGxe z&<6DWPIN7Qi2jN0g`97OC98zqZ-*J!7wunu({{IO}sG! z?QkwSszD8xfiDX{6EQs zGn;{naUq(*hVP^$p1}_2DLIDLU;b`*GnPhETLlfIA)3AUg14 zXkha(=|^HY7oPtY(Fa$fZ?+BC4tJrcFY#V@bJfIFl<&og_zu>?Bj^AnwuC)X9<9Fx z&D2aZGf&6zOItYq8B}bD6?@PW9f{?$Xl63MA08}%?vV;;yX&wQc0e=rGCI?ZvAhi( za2J}{gR%Z>G<|C_r1FZb;aF5eBW;d$*b&`SebEezMmu~68{m`Zso9CQ;bF9W^KBvU zThW02hXyLn%D4;t_#{3EU$^4uj2p#rXLJwTgKoxY=zve50ltDh zzZvsp<|Bh0D4+N!d}A7Z95OKk%TS*j$AvRmjCQ;_`aT-iw`j+w(C>KK_Ry{zI&edD z*WZNhnIUKZ(_;OySl)zAWDmNer$U*(|NTj*$Uq0GhZV3bR>cwMk}N^rT&vO4eT2RT zzC<_OK6J?rVHG@!PORjPutYV`C1`~n=gz4z=Wi?*ZjJ}h4(3N+MAzy~yasi@nhdJ%PSpHeh+&i}sWGvv3@%M%!Zv&;OlVOvuEG0qr2i7h!W%MSo-( zg!OR-dd|0@0dGe$vllb)D0+;u?+gQ7j&9EC=yNU6_d`3(z@eD>_5TbmT(hNU!*|h{ zZbb+B6x|#9(I2@^#rt``3`(9^*zCkj}(9T(2HJ38RqXoq8?4@T#qn`{Z%;p?$}6E>l|9eqCQcfkT^fF)x28noYQ(dTc# z)bIb_5^vlYZ`_B@a56gJY_#KL@&0Nw;0@@KeH#55YjKSC#`}5pgcO%T1F3~(rWH2A z+c5R_|K@YyfNRk6`3{<@{b&G(F$@{fBmV<-Tz2N}=V3Xogy&9S%ZMdmkF$3^Zd4&vH@&cEmSS}JVN6`j$YXh&nB)6oH*Mh9GpKDP;-=`J+zeewbqWwOy4c|F>}rM>E@sSYlEVTcXvHTIHe*f=hE*$U@y4kKg8V0V44%h|V zoFmculhFYeq5-~%*W&?nQun(_iC!jjfQH+_c_$uQ6eD(rYV zmc*6lDcFH_a0uOu=g|Rj{uYjHX>?|7(SYtn+s!~Twg~O_70kfT(21PH2ADm0GNiHv z+Cg7*fYE5fnX!Han(}wh4)>y)^KbMxUjBOsyjJuUH1%W93CuwQdmin71Dc`aPA;7B z3A_pO{E_-~d7?L(fu-mkcpL3#4;sjCXa_k?g`a}Up-Xl%I=~P#&`Ib_m!biEkG}B! zMA|14MNfwguR#aA3GHYwI>RLT#(DxBa5v(dW*hf#p6EHdiHdjoV;Fyc<2n z^U;ibh#8*$U%4>#InIVZN-2RxJ{qlm0?oinv3`3j{~GUS`!l4rIQoXGfd* zDK*AYO4^N_NS?)q8_eE3t6x!kYn1P4T zK(qWEeoHq4olsY_{$9Kp=lq?PO#Ra65EZqk$oo%d&;ory^hVcoJXXgA==)(i`VBaR z?umcm{X+kSnYKn}Iy(9s`ux{eAJZ;|ei~oo{AW;cI~A_UH1sEyr_uAf3|+(5&`f<8 z@Be_N{4n~F`5XP*CN72goajfVM6?2Wzb1MN8%J+Sa^d&9Kic6)^egue`oQDp*KIL+ z3SLG7dJEm%pQG*1U>!{S7s_?fUEU%(FghLWXBFCS@@+2c@I$nt@8gZ5=q5UgW+oTE zj4;4b=*;S(fj311?HIic?PnmSCKT%*!VK!?qNn5yBooQR2jL>I8-3t7`m^AFXh(T7 zrKgsn7+S83Znpa9ChdXF^d59iJdOsmD7q3&`C7E!kI;U;!#h3yhq!RfJ7x|yZbc)! z9Ub6aw1b(LflJW6u_e~;L_0nh%V*HNa#>n>YIB!BpKpgwuov3@J(&9M|E9zSbJ27D zJlerF^w{i2Kd%?@O>CZ?o;pTfS=yBbR9^*vT^we+d z6i4s3%98_g@i{cW?Ag*& zn>Yh4*G1cR$d(LicN-P1(Vfu==&6{4&iDoN6ugQ?{vn!ypV2qk-)JCLW)JPlpi5W{ zU4qtVW`?5e9z*xcq9hlt;c9e^KaDr?o@&3zb;K{dQgI)2)kI|E8r2nEb&6zWFTpG<(O?1HP(RN+p{Q=Q?F!h3o z_h+CPT^R4LK>|-E-r>SE`2rp2Fgm~`bjJB|g#n7816D?7*a+S2ZP6vV3Ee~8qy5o# zccP!;v9W$$tbYbm|NhTQTsYucm>ECCbo>IH!7g;O{fGwi8#?fLwB4mxPRkwMh}qG# zzbaY_?Y})5P#<(D?#9&lAH_vkDyE?4eI>eCwxh@9B-&xlJn5+)x67bE&EA044?{QS z!)OK8am2ZJ3YqZvX?Sa0XM+juv7C+>AbW6suzX{9#7d zp)pIcHmr$f(9D&+GClR*d^Jax;sNy4z5pF~13K>aNiK{mQ^EAq9}bs8 zQ+Hc*B)Wz(&`q=qJ-6$kJJBULj&<-~G$Yp(3hi5?6X=01?ZeUK(Rb1Jz#jD6{(`>oPN1p(2hBjPV(E$Y*a|!1JaphgSOd>uZ7f?nyf=Da zVSfHd^x?uazYm?+Y&7LBp__3F8rTom9REf)VUw%FChLQ~pcbMTdl47oYiNL-N~EWL zjPH*Iz5s{f3QYa|{{k6d;L4c6jh1L?2cjt*hITv}-2+Lq<3;GwtU*)yF&gmK@%||^ zW0^~a)MrOO=Y^t`OLG3LXi9~Vbw<~$KRTl^=$cJMkJ(%_Gh5K-cB6rvz^3>Yn)14( z!ntpS?)q`)bC1UIa&!XgN+sj>oC+WO88h%Sn&JYbL%9xG?urI<9~$6;=yUVXJ+eIB zUlV-?o!E|ee=m9*4`T-APL>G`s-YbQS{9=A3gUw;{8lz z!_s9(XPzJJuMDPRbu?48(HBs16c?`HLiC032A05`=-T~(Zq9S)p2%A+1Y8*18|BeV zR7Kl2LcAxEW3L4m6P8VtwxNVJ1b;c4g4i z)`;b%XdpMlayK-<+cAkl(F`0zGy6NH{`@~@g%CiYXi2o=%9xrFy7`)67aWdb@B_@i zCKbb`?TsGOk?5;>7WT-*?|k4A%KughZ`fxmrza**eh-@(S<@;Z(j@u{o`%kF1^VOj zTJ#&S4>K@R)v#Aep((xwJq_1IyP!)jI65xYKZ<603EqY;VbbGvS+&q{QFP$O=vuWw zGte8|oOi_XXe>v0Jeu<5@&2pm^Y6v-r?I>*mXD(2ok#av?&_R>E6P<56^+n0U>9_g z{12<(G;D#dV;cU22KG0)rkQGl^L!Z^P$6`tWzfx6Etc!Wax?T)w5!4Sx8W_Zq7S-h zhN2x0M^if*2jg^ffYY)5KXk1N)C~QUi`GEDq7Bi_HUiDeEcC^*5M8>LlU%q~Z=n(G zKs)>vjr>>ifzxQF(yj>)7Dk^dhb~Qhw0#?N^LC2mzG$X~pzn|2=mhVJ<>Uk|oY8}5 zMDx%Am!bo{jt=lqtp5&ecNE?2f1v~Cs}+{+D)ji)MxX17zE=jK&rLxyJ_i{$nRq%} zBvzmUu0z-U6LgdPgzkxKwZl@BLia#jGy@IM8Ma4f-Wknc|5zT4rhaOypB?L$W9r}k zdOdZ)u8n?8TG-X-phIf4dbZJ_nOV$ld^&RME`Js6K1$1fNM3325XyC`uSNUnQ z-yHQg|E^JCE}TIHv|KxSeY6X@Id4Z(JS>(c#PW1>DV~b;FQJ=kUA(^$UGq<3c^5j) z!Frs3J3d2&skww^pg{f5pduP+19aflvA%084~&kEPL0lsE{nbveJ}b28t{SooPRI= zh!vR|gp^%@MpzZyy-mK zNPfhHn`0M_-(PMZ5ZJ)T#{yBdIQWyLu7ihz(=!_eq9dtlbc_(@-C!zt(N82q!1APMx{JmJ- zi7v(d==o@YW+7wMF!kU6U(bazxe0yY^g@^94s^zM#rk{EfhWZK)6u|YqX9gR2J|`_ z$X2x9uhFIY3H_-3hVHG?m~?h?KN`ym&=<@S zG}Rl>_rRy<^IxF>{DSVWW6e4L`?&a*ib1%iMfhwsyFPR<79D6N`rzYe01MEyejXig zb@W5@C#VBxrZTk*{p3QQ&p*5SDt=-PKem-H@7ogyqpc^X#4RY@+&a`7!T!hg|J)o&A0djmSt zZs-j9p&1y6c03|F4xRC2bcQpd&!W%0f^P2Dqg&8^lRLR^4fmku_%Is4zp+8ywjuJu z=w7Lac32Btn)>J_Yl^OQ2ee&h^v&4|o!B@uW9zXR?nXZ2{QGb1!i;jFffPbNzh%&Y z%A*5RK|5|3y&j#xjq(1iXa?>;Q#~Agep0;uAeynq(dVAQ!k+)PhRXuHdA2=9ZUXy&fLD%b{XKN{TwGtu@d(1G7T1KWhT8J~Y_F3j)?^e3DB zvB6K6S`zeF{)=WPU;B`;tI52PsJ+8uQI)>k_`vH9}cc=8! zzpyk2v+#|14n1Wr-OTxK#zlk9;ddnN$CoG{#@0BeOM2@59vn=$=q>4q&u}WfhBtQ& zzoVIcYkJ}%%KfkxR_vCZn2HZ!7tGZ?J<-Secr9+hGy+NV;QTkm^xHy&*W=riC!zI? zdxi(bqXBKiR+!c+J@qG;?a<6Ui=KuR=#Ptc|O8Etni$wdYiX}!}E z3$YA(j5ebke}Hbro#>kFMK{mEc>gHc(HV4r|Ih&n^$8!ZD(L2Jhx@Su+P-q%u;-HX zxEMi2OS~C3;0>6wAAcZ0if%yx1JhG~LwObYk@yFldG0|W69v&1R0euFYM~#S zwrKlan1RD${cN=TbLd3gL^HJwQ@{Vej|<=3$I&-dmcb!KrO;zk4PA;R=#SHF(4PbP zp~ve!%)p0Zc_kXyTWGs4V*O!sDgQ#3ATflcPGT-DtjLdUqN~w0E{jH52@Rw<+O8AU z#a_4pAIB5eVQ5Hw!#l&D6AnP1FM3y4>ssjZ&CozPVCvuhx|IuOI5^%Ii9YxMI+G{R zuiVRM20lS&b`aeQf1@4ey*rePqU9Rsk~Bs$bt8HzdgJvt@NUk36E0q+q9p!`4xICU z;la|;I#`1G*61sB5c)=&jP8wj=s?e)nOcp`@Evr`Kf(&Q3(MohXxU-O@HOf%Ec}VY zc(mgcm|DZ=7idSnpn;x7XMV--5O75_GtJO;J5$yFo5Id6b&-doYHDZWJa){j^TkE45|;HcEn z@&EtAg`1-?x;Bl_)DFPmcwfB#D;nSh^u?1lI{f5R4=wk?b~p#!Wc$zn4xxdbLHo^q zZ&-?}v83PsHe6(IV<@_IGtkZQ6grbF=%)M{?dUi*#!O>E`C4pFxeGeLd~^v`p&5G{ zGjIpm--%d%2~+?6Z{GXDrYeK3c`I~Ddd2cRXvYtu0X!SaZ$v*v2ilK5cM{zzna75d z7eh1L8h!p&bfR}-(gDYD;Q({cO2*0ip2flMlSTLRUF+s8R%}WjK#4X4#mOfp7|Qx?f>A- zm}h(lv>$e+JQi=j&(PCT( z82XLafCl^yn#m*4-{bvr(SOlRnQ3zPL#Vvy=}2DBg|F1kXsZ8*&R{J1z;rb7`IuTu zbg4F=n`j%_?n^Y#AJC3}iJnCROPdmYxXp>#DCb3<~(C6U!VizdME@~1nsvJ`h!hXbRxB*Z64zMm!+a76?QloePA~F zz|&~t%h1!Y8f~{N)_;W+C?7!gO4f(N8!s1jr(6%++;hq(H*|@5p_}mzG=rniev{}XoQAf44h>`_+E4N= zE}Y3n@y0H6?GK@Es*~uzX^(~g^J3~ng|2-SG=R2f$DPoD`$Y$#1K*AIGXiZtA(WGe z2f6UUxoAYo&>6gn<#8iAvx8{LPRILcGsDdCpaE4y@3%mo>k{k7qtDMp$61Qi@ik2S z`u`^`oax`_TIHP;IxdAi&to*nC7MpM2H{Wk21_fMmHE%#&L zS40J|is!!(7tVMv*2R%%CSF2QwgC-n8yd)W=#m}9GWaK&(yL~N%~uNRP_B#idlx$J z7_{Gs=)`7W(#RKaVaIR92A`m>d`=m1mD=O067{0uta3+P^X z3+?A~wA}&pm>);mpH6aNNB?3U%=UN~U@&@Y?v3U9(Ns@IeojfuMA!VWSU(@_=V^3i zFUI;;uqox&;{8)Nm-0nifXUfUgvcsA86K>M9;YVgrs<3h+!Gz3FFL?o=uAeSOEMPS zGgHyPpF}h9bS$q%1AYUY`9>s@{P(}H;_K*sH04Lo0nekyD1CkyxD>iKDxkZ(GmaxA z)3L1W7KFemp|9eaXdo@o&vrL-NrqwS`=5+A9zkcm6kWSF(T1O*KkMy7&->X}pSCar zS^(XgWzgqZpnIen8o!;BN^E?w8UX3=a8q3YlKs%zl zc>o&7aCB`SMAvo}x^z#W?VrO8d=t&oZglUQdnW$+{}L6hdE;k8#~q?Q(0~S^KM{>V zH{)z{(>;!E(#7aNE6{*9M!!IxI~e^J4e-iE;rSAa;`hH26{e;ZIldN}FGgqn1{%<2bf#Zn72JdV1a;Zskg?{;c+n2+;AV8K2BJSw-H-k} zumRomU!hBN5j_<}mV_m!hiXW9qN)DSeFQD}e?&n4`P$-s*p&ggQidYjpez&24O~MRZjAigWtc<^)dm!Jk)bEfa6E(Q7!L3*w z$75++g?6+P%i~FOmls?fQePDX9u5oR26ShDz&>3yl4QFCsbg!JmQkeDmFri9lW^TfMI2PSY-=j-)2DAG8 z&-6m5$c{!>2%S+ibS;}>4Qz#OrZMOYCg80&18sj0-7DwN0Q0>V0x5!~{91I0d!Ydg z#MIya8^wh)n2n}zB^v2EwBygBKgIe#V>$PVkm{0XyLy;`H^lN?Xg?EU`KjnCtVR8M zD>(n|%CoUy)|DY;C9od#ZPC*(3Eh-W;`O)-?YPKG>8bzg^_u9%XEnN+-$OI?3Az`) zM0fiUG&AWh2Xnog3~PG@6?RYt9k4F?zzwlH7~K;Opi43f9cV7v?iqBGy@l?X@6c2q zM%(?4?wt$h`{NS2)al7p;TRP~J1U2!vIQFXt!ResMvvP>w4)j5OlG5N`Be0USicq> zXj80zAKe=}(aan}$4Q>z!Wn0IC1l_#bigX;&xTFWnfE|beka<&6!b;(2s+RU=%!p1 zeG3irLo@?B(7p8y+WsdbfMntb7Y_6f+Ht|v;ep~kJ}@v6P*(sTaWa$)4%(Uc5C*JfOF4!Wi*&y^L>n_dN111@mS9CdbnQ@jl2T7L@m(3 zx}ux!4s;JqK?7WZwp)v}@FR3$|DY4e{|4vZNGoxn_0SvFqaF4{0~&|UU^IW+S1=mXo)j=sax zt2UZ-T{ylOXaF_P_RXR%~*&G4dVitg$*=z|^6ncjtFVj7z2 zr(*rP=s@40sXP+B5bJYp2!R(xGg1YeaYMA&11Q9w14!T zczSdNi=l-{t(<(LO31@JF=#2Rfs( z=m7tsDNfrQ+T}t!E{5JOk7lqMI#4aNeG@E)t0f(Uj-HUcK5#0+j(18}A0lXgFh;Hg_=)}H3mo~XSR-8cB^lUWK zme3#%8gX$nL)FoNnnrJq-hmaUzYiT~DLTOG=yO}pe!fJ1-Z&WQ`S*WggKY1IpLhzR zo1+>UX&dyxj_APsw*T?!T z(H-&rHy#3IuorS+Y7?Oy-WctU&iwXR9*MpOCZH3T67N5TKEDW^ zz-#Cx+?wRV8UKWKbP^rlVyw^hN$BWGw1bl964b^L*cP4f5cE$>M`C@v7wu;adWzmg zGyOgq*lzSQoIJ#Z9cJ1QZWKf}RVlQCW@yCi(bLfz9dK;CKLrhJ7P{M)qQ44Whc3x( zbT1r6H|>9De?>n{O*omT%7q;_M&I4HqQ_%A+VF97z!%V6{3<%&dsrU7Mmzoool&9B zLS|~C&v!xlABgrdDb~-x)X)FVa$$t8q$)Tz=m6iMsrnVo(4S}ub9^2$l!3kvnxX@B zM>px6XeLIX13nz@&qX)ubFsV*Q~&=TA8~OXH-17R?eRs(z-V;FGtnh^77cV0nyGKl z!2U)9$h$MV;Yy+zsgJhnf<8AkIv3p&FJtP@|K8xjly5;d;T|-QqiDxzUxpXdmFR#i z(ZG73Ga8D{{C@QLspx?7umY|^1NtU<3L8?+{T1im6t(#(9EY3HnGQz>eheLODQ4h$ zbinV>B{~}Y2R%i3z7Ee7MVF>3mc`cSro0=S`E2xC@YL6wf7faa6>grbSQ>vsXOzAx zbeJ0rv_vddjO9jXAT7~AyP=u68{Pd6pqZF~X81Yu>tp$2 zG!w_rU7zQ>Fq1N9U`^1#I>!3jWBGx2e@^td=$mN3pP;Ae8)V6niJ!P|fRkus>AS<` zD}oMC8y&C>+U~Yke@}E8`rLx(>gZN9^}Es3pF-C@`<{^Le3<(8|4MSvGZoRjRSW$#bi~eh3s&>z|CL-Az;3kT zGw8X^`+fWxqJcGw<*v~Iv3@u@(`o4Qi_lcRjRy2VbQgL`4x*d$4@|lim$>j)<=7We zQxrWOmC^gn(Y`8OrS zsc?Ww=)iTc8eWffG!jkm!{{+xiVpM|`rJlzvwjrI-=qB=LHEvC^mCo#htPi|bfWc> zv7$Aas$0&*DwE8V&eTtk3pS zC?|_>;jS)??&7-9HfZEM&=d|wJ06R6JRQx{LNo&_&`q~Cx*6^76ReK=Vma5(A>gZ# z=lK3}VMh(nHEfLzcoP~}H*|nIF$2e-?Vmz3^+K$F7oFh`=yCfs-oNZ%Xn!@DsVe9= zjWC18>;Dq|`t6gL`uD$2bK!2hgr+vj;qVSGh|?(7M(f{3kJk?Lod1kf@e-EDDo4V5 zqzfA8Fl>c$(apC9U5X26z!i^j{@rwaxoC+=bj?3N*Y11t#q=9GK(=4QDX0-`i+0o> zXW;_$`3lEEimyeNt`(ZWo6!t+#mqSHSp5DEi48`gYd0n~csx2kx)A-EJ&W#vedt;q zLwEn_SpE+kDC_ZXzYuziOQ3tJHo94x98ZP@ZQ_lNXr$fIj(eed;SMz7QSttm=>2F% zNwnP~=q6l%8*w@MT%Qvmqy5qQqoNa%T=;5y80}~#I+Lf+)IE=$g4d$k(7o~wL}!xwRG48|G=;U$ z2b!YyJEEBwj0QRa4PaXIar9fT9L?;TSP2hc24+7UUfq?jD&r@*aA60N(V5PPK7*Ah zzlhcFYc!C|XF~e|XdtD~nO8wG*c|)e4OkstK{xY$G_YULkJ$xGx|#By4ILE0c9g4Q z6�t-(N%ndNIEDEi!SG()G*iKYJ;0?3O#SNc!Rzq_#}6%(;D zI+I;!>W`rV{)H9rBD$94{tBC_QnWGJ;f?4_d!m`T9SwXmnyIO=eir(p+v2}C|EBCM zDvbDjbOs-z0qj6ux!<9$+>>YkInITd0K?J#C!zg3f@WlCyuUWd zg=_KwI^Z63m;Qo&WKN@z*Ek>AHAH84W3(&Qque`|pG22#5qj))pznqKXeLghfn~Z7 z0!`-U!jzXn*Qh=kPz&_9-HHY_4o%sE=ntn$up)kdmGO6c35)(6K1v_rD#~ZkftUUh zHr=aOiSl+NBgw>BE<7eV{|z^;K_l*k1~dYl$ph$KcnqDvlhGHW8=~9MH|kz&g+HJf zEO#+1MGf>AH^Aba|4v-^c^rmj;xRPh=g~~8MZba{qccB*J~|(r z*z4FF_n>>D*ni>glvcsizyCFv3xCZv2i+WN(1_nhQ~oKsc@ATHyojFPc5GP(9DsH_ z0c+qaGy|LC{cY%;`T-5-1e(zTnX)93?)tJ^xTz|mGp~gP(j3jqEof#&qZyeI%Zsrz z<#p)N>_Pka5nZ~Y=tR!M@CH0E#iq}xS4=du!=w|u`ZTByh$FkY8q`q<;@OsMsL)*WB2CyHiU?N8r z{*6%1UsW!Q@NrBXGxVEq5X=6brTY%tsrmyr{t#c3m8?*{w(Pz4$ev}EvUf(L5i1@k z;wzN1=gQ1KPRdZA0X?2Ob7CoOzy%rj;J7+-;u-usPv+ELR(&jQ=G1?~^#K;5zEVEs z0=CJYIrT>|`xeNY`Z-`Rmg4z|e>v!fB@2exISn2ACD;_#U>&@Ge%X|}HgoFTFc^L7 zEyK#V4o&qbbn;~{6eej2bothgc0pIc5KR5~zlS)mXD?tn?nGzjDJ+Q@3y1nL=yk2J z7>0n;B?G>T^PGL zScCF0>}mb=nG-W`5YED%u`5n28m>QtF0+DZ?~mngqW__RU0X5)ToWyKMfZnMXh4%={S#>W$=5h=i`;`Y zd2^uiv|!RXd}7dp$QpbvZ;eaWmud$b<2;vT#PKS100I{Hhj&rl}R=R-SO5>x;G zXZd)dI@-f#Xyik%D&CLIfwgGEhtMJU9~#g_G;_JjhGkYBT?I{JxhtBHp=d`YqSw!` z-u1tf0~_8D-Hirv8130*bk=6LA#>`}sSG-)x?(1rfM()8bWCSsHe7)Qz7B2YgLwWp zn(<#S>B}Zdx$yGHgO1U4Xe#StYwUz=@mX|Z`Wk(0pGO1dZIgO8`(c#c)n5Puw(T=$Mk6|i)+!qK8@vb zSdntUD&bvlBbK8)2Awl6V0qk*?l;LF<3YiyVT@a%ug@pY8$ZBy_$Rt|-&id;4DI=& z(K%=b=A#)}g|4Ev(4jbtPRg&*Id>KboZtWFz*Og~9vUoyrnY1(S4A7Bi>9~@I;jSt zDV%^#s@dp$FQOS*jSl4jbeVpFX8JtZPPQ5b$oebEfwR6o+Hfy)xs5;@coL2Hd9;Tw zMK_|???p55DcX^*ur8iMH?SLOh5&1#?X^ZHc^6Fm{@*kXjA${|!L4Y|E~0^DuN6{P z4((|T^ueuSxfi-zN1~~J01fzYG$YT)@^Vb4ybf*uFs9c3j~p1lB{brzYlr1_9r{7h z44ph9(Mk6N4#&-CYD?A$DQ|)qDfdAG?TZFBE|#ZbDj>{E{qj1je<#T*D(um2bc~Lo zsXiA?)C~<@ji$IHIwz{34K+g>ZXM5eL-+UrXeNe7??SJC0Bhs4x~%^U9BiY)$amls zxC@PZZ!CWn{Q_<9YjlqMjHWzqy^y&QXhtfd0klH{?TT*I{m}r1pmXMqBnS5NE_5AF zi{<&zRp?&54ZZO&8rY}kay*MZAb0%`NIE*nDx*VC2hD7|c)kzX-bi!~B&TqY+JMjp ztV18L2~FuiH07V75r2nf;2hfUpXdX#Hwb~`!*Y~MVFm1r-ai>#|Fdu`K7*B9|5+M_ z4Aep&&|)^$$0)zG;`0#`jwapJeCil8Td5T|AYpbXcPj?hN(aQcP$5| zz9RZVV{`O1+8^!VBs8Gen2z(&)V+-ccm%!f2Q+}cz z{^ueNyzvcmA2@`L-5Io}`I?4VT@meR8+1r+K_4^}y>0@Uk=fW8mqsrlW1VQ(EI1zB zqL(&f{rdyL4k~;reTk+fd-L#ss%Yem&Ua~Hf$8XmH4h!arLlf9+L8C-`O|2C z=i~XTEke0qi)46RR-q#GL4gjz187fYpsV6}^nr`fp;?PIxHAH9QZHRU(+&_ z%SRid8M+B=e`t~e$7mw@pjl{-pG151Ec)POvHS))CwAZpcCM4?P)u(XuAdWKjNbPe z+WuRyd?=Pbk0yVPC;mepn5%V|WQEa8l)}{NK)34V=uq@VA3PLYW_O_voDqE%&BTi6 zTj=WgFrGh$WHOofj{_UX+9upk7)^0ybfc+*KBzf*U1u~?1F$p>LpPi!(5-kY8t{HJ zfG@EPUc?8mQQOe&c1->IpZhte!inSP*ko%L8n_-^ZZ*)JH9{ZI5e={pI>`p3t7l3q zKOfzI&hihVXVLbqY#%b67i+lw(>bt#Zs^Nn6dL&>=vXg|<+sq(e~4z{B-X?Wv0SD@ z80&gy2HK$;SwFP>`_Q>H2OZiMFzLZk4xEiE;{|V{57-^+kD(d(9?j4nSPFA?3=P#l zGtvOfNK5p=ebM_S#_}Wa{IXcy-jVh1r1+Ey1GtQ4;L1)R;?ih+V|2{Bpc&|a&W%Cn zq#c7U$4Qv#VXS`v4R|>^bZ?=79Y8z&O()jB4WFgL27W~wysC4Eya3uj8T9?#Al5gH z^CZ2x-Q~&vfHJXM3sdg~w4L7QPz^@!pA^r}MTc}1nt_cyS^tjt9x8lGoj@P_ zBbus9=p;+@3gsN=0}4b-pyw;&C~Sbv@|9?S`{May=rTSX%YUGmOzX}1w}HI9L&U|< z3u~kG?a@ekp&QdMG=PWW`6to97or_mgI>QYobYq%=ZXD0W`gLf-JJ3M)qx;4&G{E1`A<1xSXty9b8H=DpP!gRR$%-79 zsxI+FU-ZGl&>QYX*Krc<;WTuJo<}qF5*pYRH1Nadb!X84GxQ1X{j1Q9l*4pvh6I{S z4B)_xV>BA^gJ>q6LmOCtrfxa5?_n-|QLj(B%z3$go|4%e`-!R4{&`H+{ z4R8SZoQarh#lcJtTH;4&1`70xI~O|kRneZ-L2qo02HYdok4FQViVn>@G;=G_2fi80 z@1t|%1e&pn{o?x1&_9exKJAG8|F;%=;oXVE}P3=Xrq z3Z^oIW}pW;bOU1jSTs`)phNa_k^>*KAi6R70XlonpbhHaI_?Uybe$yV0H; zj2=bT`Il%rm(h&m92SQ1I;={$B2u4B+|GfKjY4~vM865AVQPaxQ@ACT_n{4bj?Rsr z@CN)lo-aK-WUf9M@QrADJ<-(Pjp_IZ7Ipov-;MToD%#F`G{ALe=60g@9YF*6I-busk^o)*S99Q`DuJe^eJtOPuG{5!Gw#C9 zSn!U_iHSH2?fGf+zMP}NuMs!FT9hZDb7wuePi)5)xDV}Uj?t`tds>Era#$P7V}DG? z+33)$L3_LdolK|Dz_N`ADK3TXn6=UCx}q5vkIs#U&>iqGG!sw7^NYu@{(ayYDs1qx zc){;zYBP@wH{?OzR_W**X@RD^9h!jwn0f%F9uVsnqXF#4`uGWU#N2m=`rGeh{Tt~p zD(vY!=%ks6PQDk=S-uv1@Ftvq+tG$=jSDGm5^awL-V@F2Ahct5#qyKbjPi@<+&G=& zz=$uSvomdcm_*m2fmBAvuqk@J1A2YmczzT*mJguUJ&!){WwgidpdI)(ns!&13pvs2 zlLa_P?O^Eatb(St6V}8b=w81dx+R`JhCb*V8o*T(Lg1y)`|G0*xCtxb?PxoXp+oj6 zrn~+>;lMAK-_Rajb9d-@Y4nCV=(6gD&f*bhYR98H-qcur0nN-xG_{-2b`Qn+AJO~% zKs%i69s_0l<>$Z?mCyzoVM**3%M;P9_(`mU^U>=M#QM)-`CD`jU5e!__lEllpmV7> znvvRQ=9*)E*Z=JtG{p&c7j8l$uQV}aqCNT(%x!1}2BJN^1MSIu@%#)l(An4spF?GE|H`I(3P0_LI7|Z?9IWZc2(1Yk~o)ybaqdVe!?1E=;1U8-= zHn5dw`v=jXJs!*FuqfrfCbRy1VB!0NmC;C>qhom!y0Z;L$1sToGzYzJIXc_7qSqfr z?>~)Z;3E2Z&%kqB&V|r`Dxj;PPLcx~9E_&$Ui8MP=mVZaQ}$9kzZ2bf4x$YmMOViu zG{DPfAUPfg@09D&fLfu~_dwelfWPU6l!MAtoI)Rv=fUv6%IJ;F&5Zvh{~OMMH{65eaXLCV)?;c+(H@;fSIN(4 zKzXNzhO3|%>WVfz2+hb{=sV*Hw8!(%p0PM zFxt>v(Ff7%ACKil=sJH54g7U9lUvb!d9jljso4LjzhF>$jqr*oh9oJ}ix&Ok@3f;;(pN#_3@!v!XrDkIsn- z==yJi2GkWDs@r4zEHs02usg27_Lw#!bnGS^MfooD{?k|)FU(-M_&zQ+lMNyx>m18a zzHe5Da4A~ekB;##=(^4PXxMP7VPJzo2vJcXYC5eJm{Z{7DW> zSuykrrzYC-UTCDFqm$4ZXU6h8^txr}1Gk_H|Kq?&zKkdS!1k1{dNMq)Cpzm#pbbpKD{wkGCuX5No)di`x&*!N74*7I(Vgf! zWIv|<|DTUj2mJ6DFZe0?8`{%<(b=5+sc>Tvw7w+zfNE$anxb2Hhgj~3u8M)^Pz*=! z8;@T1Af~?mALGD?7NLXZWBn^= zyKkU@?8Ky#<^v9#gx{kL{DY2B);ZyZLeVm4CTgG!v_S9gijMh6bpLn)ohxgjyU+|B zMcX}v26k}{>)#&#O@$B6{7hIzxzT{~#qtg411q67HbC!d5z8IW<<||(P;a~$`(iuX zfMz7a+|YrnX!`}{vi?1&K!s!31bsj!^oAbM+v52_Xa>edr=qK84w~APv3?U8;6Aj+ zAEC?jYb=F-pc`A!%H=*~R zisvsyb37j=b4j$ln!#kE3kNoI2YTaFG_q&WWwRA+_+9kIbLjO~y%5U9u`1<8Xh+6i zNt_$YThVsE!gBZbuAZtc8(J96L_Isu)vPoiVF44rhZqhr1ueeefpgWsap|A`Jw zjs+pLCD7H-5Dlas8sIeaIh)W99>&zK|6StXRx0u=433T-M7Q7@7KK0EHX`~S+CZ7b z;rh1d*e*viup86y2lTqDUJQX(LIZD!eh>7*)bIa~;vk)hhtRjyGPJ>W&>nn&Hk@fm z=wUf@uCzd}?}KLGzIgsg^g%1p9&bn6JApp<_h|N|tbfO%*wT=qPU!5MfaS-wVr9PGV_XfsXM9XghzRf#!WFyv8e{fp&|I@Uz-6okB%w(qZaT3GMlZ z==tB!K(fCaEQi*&Mwi*`=xVt;Iv1TA8_?_ap@Dya2J|-?c)sNFkg7)LgS$qDpc$Bi zK6nWl;0`pfujBcwD?-DSuqO5Gur^LXuiK2So|9-svc3`mD2`<)C+l-yN(P`2-;0jj zqv#Eb(XDw4`r3UL-FV)^)Xs)x;A^ypf1%5^;HzQ17f0`_j_#byXoe0%zeEH54ZT0x%5Yy{w4DlQpbgOLTEzOE(V=*g>;E1O zoTUe`3x0>0uVJcj@Wrk_?jJwohZ-8NAV|gXzyJc z0(=}D;zgJd*J0}K|8L;HG1-Yect2*wqp|*f=p6V49n16Rbr<9L#Ot9x8$LjN4s_?7 zjkYsCmY1OKj%;l1 zXn^_AjunrVM~9#WIyY`y&-yojj#N12!_e37C^S`*(Vjnn4$TYbSign_@)o8thR*t< z=$L;Q%il#WphNK&`fj=UjW8#!PjcY$sg9wP`rvChI*LY$i4&lUP^ugc6`oGYgX5Si8oe#}e zAvCZWXiuBP^WD%C_eLk@Ks4Yn(V6I^UV^Eg|5wF|H>2;MlkE^1$SM3DFJp7dZ-s_S zza4%FrW)3xek6X9fe#UM%bv77ytLM%lkO;b|D{-8ZwKrDcPjeq$edV--FAlGr_1n8 z=EQi)O|d*~#LjpM)3N%l@MUx})~7rdeLH@P_V~A0pJ8{{k{hDGB02%naRa6T+MNu) zL3oLZHk`QO-O!V9*nskCtcyRQdwr=rp}Z8UQT`n5dG5X8PtUi*nv~~aV?2oVIQza} zXY5OPPAvbH9mo7Gg8X|DiWF+aG?8wZZ<+xP_L{3NXVMQAFwU`0HS zX5{)KnG+9Vf2@jUurd}p8m?=LmhVBwdVz5#9MZ)}BSJ`Jzs(P)PDpglW{EilK4%!wDUD_Z^;9g^ywg?4&i>hJ$Q z$iXsBtc@qS{V(+30d$PkqLb}A?16DboL*^3V6-Q(2*vXPPspJz=zN|^AWbk zykCS*wSJf!O~w5j*yEqkWzq1<5NRKD>zsma#n0hsd;=?Gp!`*6aNjBZo)G1HUxy6d zb~;Wr^ufE(Wt{d+2)G(LcSe1~`hSvxMO55?Rlf}>yaoGEo{G2NDeQ@jz6+n(^Uzdp zL{s_&8u%4wLb(Jw2U=l2yc-?5Ph&aL_aOs=zfXn_i-)MNhbz%k??Gq(ALyQ6>xVFz zI$$@-kD?8p!r_?X$M6RW?m;K(YuFA?paGWtDfGB48rXek$5tje@IhJ5h6`GttKlxJ zj(cz@{)x{10Y8TgXF2+SQ|J#KmCl7_*8$Dsd33A`oez_D2;NS4H9E<2UI;&5B&%}Z zGU|cpI1`=Cuc8g@LvQ#6OJcrX!ufjW`JU+Hdk}potwA&S9{SQbjs76>51NS*zlJ|o z&?=ZrJj{U~9J|nz9z(}6?~m}!*ciQTJlcUd z=z}+*_nky1^B?GQa{tNtHzl<>@WKITc_!L}4QNk~qYY&KE0ojGInx2VViLXoWAwhu z*cuD}9VX{MbX7fswzm-t;OoCx|IXek{|W2)2DIU>*bt{;I=+K$L|>!p{x5U`Dfw^M z@w%Z8xEmYetN0uKfW8gC{4dOv8hklcqTCi;ruX{qpBV9SD$;R(^hdmza`p^qskd4` zG|-jkknG1>@eDfaTV_m4{nf48(LkP!9zd`E7oEgKu1HI*|E_2t4<_Tm>*$4FVhe9T zBW#{2EtUGQ=)2%id;oW$8EKI@E%niPE4HCL3cYU=n&NM<80JVzOMR$RMmshf-CvU1 zIdCKS6&;(#S<+H(w~=@wx|wv9*gn(#5@kXakCZpMJ#8?6>cbl&h~cL9Vela=`gm(Y`H@wx<@CY8Ce!R zh<5BEx{+OfbtpH-WG5=_;K23zHnzpIJmJDFScmci?1yX6Np|%$A+TG}29s!Nm!Vtu z$7s+0LFZ1jym57)fj^5r@BO@K$y5Uc@`Z>RU;|DJj^(8|i1Hyc1J(1VB_70qSRcQ` z@mQijnAOjs*Plf*byLB#)ECpMXv#BQ8!Uwe()wD~zsuo%D%>~@qn}vU6bcuNzyXwB zM0dK(g+s$Vu^HtxcpLr_>$?<5OMPUnz#-KCi3Z;Py0p~B_B6Wg-$f_k#UuxgeYNXD z270392hr56KvR4Kog06~a*?8Gsn=^$tVexsbc1>ZTj3ix7XQXOaa4L}=PNXzv|?e- zBx`fvgKoozaTc19tBa>4rs809?0-aW>`)?&e`tn`q2G-EU{P#eGNg7SHlh4Dw!{zd z3Cv$A)GtSe?hH<6>Lf~*4k>;Oos7B5gvrwvT}IEKpG+U1v-&^Ghh@s9rQT)@(Jl98 zbU&DmzCBl?%kls^sn4OAs&_+L_`<@EGO+&kaIlCI&z28kQl~-~s|n~9y8<(0NF;XP zEBH>u5a`ItA+Wd5cfn6+>f2Na?}R7O`jzP0Gi%kf)b~RPw7xMu%JUQRIdIwBP%SMn zp9kEGE{_Y<(^5Z5)vJ+~`lXl8@m}il)eOtZ=b&%tx!KL_0{_Vj^KP+ zgD~0d#F3OwN4qo(_1n<;Dvd&53(x@48ngZfaWJNFcnKXv$EtXfu*~j2GqD?;G&!1v zw^kc;l}tuw{Zed!?_gQX(k#r0D(G?>fYv{S&W)|u9*;LmhSZm89wtX;^sP4w-7r3m z<=?Oiz4$<-~>QlICoa2@4YXb&6Rn8rV|#2mu8l;3KV#y`u%#?(5j znro76(o%oVzdAa3=AsdvL}&kBv0Sq)V@0_uzKkDZAH26+TB0u=Lwj1MeOS&z&{Z)9 z-J18}O#BT`V6sD4&dJ^#Lj$wW27W@Vwl-J_b_%UY3)0hP>pqcsuO>vRV zX{ld)YKd1;?u2=%swvv@HfXzDF^6M%TdWvq1?79t6i18#gx6Bu zi2jWCA)1Nr(E$IAUU_ra%JZW`*$!>58@icPBoI$ylGgXXs%;Ort(Mmdju*%9YU%n!)%8Zo~H2rdN1pBVd~farg7jHEk(!r74*XG(WB_BJsbTGodZ|*3-=X8GgAt^t}2?*=IC5#j}F}} z=zT-c=S{HQ^*@ONx6qkr0I#7Dzk{a!X!J|8fgjKwU&b<6vVT~P?a>d7!RQ00#QNFj zJ7onL=)3X!N0{`1Cplm&5*N{k|3mluoCCs7#Z|Bpph0*=u1~kLX2FCT@D_$@L4d{L}kU6n_Y4mk8(CuhL`_TZtMl*H}-8Zfn z6zU72*O$anSQ!nl8#>np4PyN}RuibOp(NVSEHuJJ@xqO0V0+Oq{v1ot~@Ed;#sq zGIV+ELNoChmd5kZ0>i?0LL+2|lZhc5xLzlqd-X&#MGvA4Jb`YdFQE^96|3P}SOw3a zlP!ICTIx3@TVq+uOVBxV0B!FC+T%0mP-Yn6Hzn(@00%{>xCuQm4o&4uG!u)_9=?hh zaXlL7Ml|qk=u7AwG*d^=S^rh6{|mh?=g5%JJZM1IS$6%G=fD7JVLEol4tO_~!*|it zo=2But~d$r;}Z^y_!K&(e@C;A z3Xv8;Gf@t0um-w=)kU}1#%M-vL^IV9O?{8(V04w-h4%a@v_p$WvHrbqI~9)g`)B}P z<5Bz-J->f+sQ(l#e~!S~Bjkez%y?+GWh7-rI{_WYPRG7N2 z(XqdT_9VyH@Syx?3d_WDb#!&KKvUl-mIt7daTMCaxtNX{&}DfvmVZH);Wf!S!w;La z(GQGa=uk|@O86q0x)0GFoJAjyaa`OFqFvEhKM`GSOVJ%~e=MKJzLX1$5BJ@JUY}gd zfn)g|+M^H9l$}7w_6$1d&c*tx?~18LhoBOAePcBB9ncK+Mqfr_(RLq=_49BW<<-b? zOeXG_5E`6@HuMZSrc2Seuo-ROJ#+{@iGGP*{}Y;-KhezPx;q4N13EOd(DQB4_HIW5 z8=X4O`g?=}AGk18!7rV}@;>wdC()k$6#WAYB<-FMSRQn_T^GxhW4Rvs;P&YC{m{vG z2ioo=Eb01xB%WA<2C^;sN%V(!K5=hoC>Q#`!kCT~(FQxB54;r}nz88Qeh}UH9z}=d zB{ZP7F!k?$?Bl>2KSWdg4LV!TqmwB6#BjbEn!;A-dhda*n%mL9??fA(fo5zDy5YQt z&ZW)h{X63M4=1wzecKWv1fV*M(#-Q)od+|$2C8#sfGZQ%#P1trkP>!X3TM2Dsq?!&vV z88(^{UdL0=p;;H*fu{U@bSS>Ul6VQ(A(M&155}HjLr%0scf1+soOlVV;2T&Kzd;); z@KE?grE+MG=b=Nl4h`^QbPN6&4JgOd(1F5e#wuf8-~TN+NbOkYg=5jlltjn;Q#9gV zu{;)hIJ_HLpgU&=G|-#SA?%O#^iDKm)6vQI0y>G8M>k>W|NncB10(tr4dfhpL)x_P z!I1|Yf_!LwQS?FOW4S&$#;vdp-i*%f$D(sE6#&|yt%P{uc3kUo?=Ru{;Is*i1A-Pod9Q6kRog+3tz0RJaQE zq08$Kx_rJsBmM_%DBH}?KpwO{9lgH-nu)sTP_{*T*ca`<81(vw(10IDhhSwg9&ATb zei*&s6x#4_=#3d42`SBqKHyqRWdO}o3pBu6&<+elhhRc1PeI#z8f|Ye`n=?8@x<2X zKD2=&=!M^*k^YK~WtLf?;T-7lDu~X7+UUN~6)R$I^Z_%_pB3k!?QB6ep7$}e{=enG zG0XgDxZ!&A!is1Lo1#O}1?}-@bbpwN_UJ`)Ojn~r_!b)Y&UpS1I{8kZ`^agmh4~(H z$XNgFQwRK-4*I}RXv6oT4b4K|5%bUJFWz_u4 zY6;rTo9K}4MFaW_z3#%(tbcowm=nH6^Pnf{;}UF(58zo`g`=Jczk^X^Zg{|0w8zuX z2Rs#h8SUv7wEaV9AYY(Edk)R`-*Z|2raEn2n9WzCH&j6zZib%k80&k*`VrWi`n%Cg zY(z-~Y>j6Dco6>#u)43`Mdu2llW5`k+>5L*3AII}q)`bhJm$ z<6vBkhP=CccLBHj;WNR87sObOyZj8(DcMVu^*=6t!r8T9!y>vCdEQ5 zPkA?%!Sm?(g0F{$>SB5ZZbZ*dUKi?L!WxwKp&9xI{Ss=nK4k7z^riJO`nKGK4&BKl z2fp3%zY%7C4QxVrAljpsuo@midv@i9Fhq6GS=<}z;REPPXe*Y$0vm(%u_NW%(EwJX znLU8Em;9RpBQN)6i1>E&y?!s2!)MVOcA=B%BHDv%H-&Xy11;ZzPRKAMFZ-&J^Y^UbaY7eqJjN^ zu9`YK!f&(Rk1penuqPfzch0Ii!_L_P`%>;$@u zE=05J3OmH&#YhLlbmT4Mj6E7rpL(Xh2`0Z`JQ({cpQi|8B8=P>~U@*d2PD zhEAfKXdtE0$Ss1KU4!I%@rp_zLSug1sF50FK%{6=&Sn)>7D^`GxfhCTcY70%wv zXv*`x8|sUo5m!J{RtHUWWAvl7DcWFfG@#qj`$wXIjz>E<84Ywg+Rj`wfCWhoe66lP zUnXy%%j_W9^9!*)>z+_9hz3*{-C*jYL)I;p$DkQ_1f2`>(d(C>fvrXZ+lU5|+|EH+ z4)&lCor@>_#1fP<>4j!sG}`baG*b`7`iIdWd@7z_hqRMS zYz_yBZJ2`#cA=4fgf?^x9m|vGgMUQ>y^PN8EB1v9TLj!Dp&i+yZ zGuj{B4@P3rW%mdNR<>UFWPW1wBgcd#wws0sDWnS z##rA0?MOFthz7*^K?hm?j@2DhI4SNyC(jIYeJ@0JxHr+B??Y361ikJen&K-Dg#fNc zhp;r(!E)#_9e}n!8O_jRXb0veIdCt35p8%I*2mA$F}wEtU5zR>Q-B@uLP2DNbq^H`?R1AB6{RM%Vv- zbaH-<2J$_=h8NIGEc`gsuSDm>dYnyrTQK$Oe{DVq4c~^ha>0;T-iyUdK6n&5c_(5`d>$S157D{tL-b#CL&|eBbhrVg{{8PB98~7SqgV>xLVI=!E8=fx z%1RuIzp9PRDG$eLxEdY%uh3$6QLvZ&>R4x#(rI2N^yK0XIcc-5zbHFS>m1iq1wKxE!5pyU|Jf#b>O4cd$(V z3m2rLJ!yyzK__(i^hYDVC)UqJANWcvza7gTq8&Po4$-e@`?Wt0?canh>oHghCnh=Y z0k5N}-;3^uAES|ekES@&$uOq5u^i=wXv0I%K&PV1aUM3r6=;CpqLcGaEQ^J{2!9T+ zIa*F0;=nP!gr+#tmm!5Y@F3;l*bmR4fpz(cKex-^4@Cnze=1C}ztNOu`#S6c#nI(k z7M;Yc&_M4(J3IrqKABj^fjxf{OXEA?MB;mNC^DW7naGR23o4`at*{36LIatNuAb-7 z_IBVRw#EbKDj4xy=-@rrp7Ind?Dzls95}W=pf_ecla{zh53fP@?5sb8@BV^lhT5VT zy9u3C{m>rWkF#+OdR>Vh!&q0qbjr2RA?bm3U<4N7`H9IKn40I~iB;$<-i`+JN%RY} zr$3+@(J z7m$%itc$*Z-nbDRvcqU#7toAcMpK_SAL_HA%Plv$pAJinhN79fI{q4ot}*wBgUt z22Y|5eut?Zq77X}8~zt(KLM&~~b!_t!_;Z-!>HC6?tN*@}akI5XxK zq+<8Q@T=PeF9my}51NnDa7DE8?`f(3f^j3xr@ry!w8TREAMVEc{s<3j@@EL3IrgEx zEzTtcEAVdDf8&3{@8Q0Qt+^oEf8k}+6^l`R4WGvM(dE^j#J@R^IVy; zq_)~pXo_p0>$x#{z6;)uL(n1l7M&~S(Eu;Ua+WmeUH`c_FtP$z6>G=xF!U`o6U*Xi zbgmpjcfxNlA4B#J7N>ko)+~tySPP%QPp}#1hiA)@xDHocnI$og`U6*m4iCuA|9|Lm z8_t2=jjrpd=$Jo?W@Z_>>{g<)b|1Pkp27QXW#9aLTr(-fbUN9GZz zMgzMxPiU_qy0bP%14;Id730t`dj!kl+h~N}$MgT9lPupgp}r0}bRE!u2cfB*fCf4j z9fDWTA=-)tk}Yq@>~)xW|2O5p2lYl98jbeo0knbVqp#r&l(%6;JcBhbf4;EJ+hJ|W zlh6mfflj)8XrL$2A-#mQQz*Yfl;kzZfp5Y7=<=I^rg#h1!|%{ft>OhjgN@Kk+>DOx z-RSwJ(3Gx5AG{as(C4xIGuqKi1w)3e#niw5Q-K3-XpctLAJg$sbeXI|Gw}f$;8$n{ zuDLc#>a)EmI%F@P0qjMu{}P>?zo2vBPwb8b3WW@h!qo5o&)~oto)#0fpuz`cC=vp>5}nOO zVz~l(T_bdE+=!;UFWTctXyDJFvwJNX_+GS~rc?e8?Qr^a^xuPO*M*Iv1sce( z=$+_;??Yd|520J}Omvd1LwmRf-RqB_bLI=IiG{8Y*L6l;Is>sIj>ayyEy;l!OYWj! zQe2M)R2A((b2PO#$MO_(c|C<@;w5xaZAX{iC+Hlyh-T>e^em~L2kJ%dLEGJkzK)Z7 zIq-&3#lqNjLdWn9w0;5lF4&7b@i2O0h2mLKe^v7lOienhLj9L$fLE6Y4=#z>DfdS= ztkGx&XCrfozyHgDsXT(Ng747={)_c_N`^5jji$O4+Vk$QJO-;#PR9CmScdXJG?N$6 zOr(_xLtGr4Bdsu>>;EPH2E5q7%_& zHxs??Wi<8M(T(auyqV`GvX%)M=!4!c7QJvby3s5`19>Obe~xD0XY~54WyASW=-aOe zx*rTeQ~o46H`byZ{1CnGYfSz7pNShn1BK8HrzSciJL|Di_+n3Jst%8bIB0tbZ%IQ(?oy(B(4`o8tyFb$?(b%u_xLO;dCX zdtp@^gRb)>==JN+Kn|cC`3il`Z_%t3LdObMNQMThP~iow(S~n9C(oVeY@Hg7e|1}3@AY-*K*4Ll`G{AK1 zgr;^3nz~2Ocfx%1fy>bQH=_^Sk3Qf_G?3q8{Z-Y&{l(Dxs$=T!|Fq`7mrFOafm>pE zEV}jHjhXNvG$S+6>z+k-y4BbXkK$mgP$P8UY3xY(WgL#b;V|r5GfQGA?#I;M{~1*) zG&mKF{CRZJypHzlFm}MxcoSBu9Ue3dJ5xT3PPRsMvZQ{5>xB-{5;T+BWBFrrd7nd< zZMnLve|vIk-SG0c6P@)>U^85Zewuw1&u6I@GEfR#H8n9ETcCjtLLWQ{-GH7$Gq@y{ zSEEDuCi*)5s2=Ozga1+CSbc}t@Go>{%UnN8>X+k7q7nB+d-N3c!mY_S_R`h{i zqCL8%N$6o^bgWyU*FT6}{{lMucOdVSWa0=1j^!yd!VBnwGd9hVScB!!8$Ux=NupT@ zI1L@+Yp@&^!M4~6Q$vJ)z`TS`+7Dv6MDsAWI$&GZ{}UYeiS-#emRVbbazlKO@^Ea5 zXR$U`ZW)GT2v(syFS-v6R+eK#zR<<-$mn2Gv#(8;zp)_;Lc>hIBvXKlm!AIL!g4u;_* zbe4XLru;%Qf7`G{*T;#}-;VY11bTh`c46`rLo-x0It+bByohFSC)&X)+J_F`+Me}q zkH%8rm_3R{ya*lZH_@KHjqVeB(e?W|`k>#j5mxRH>PMlIa0aI1GIa92i!RHP=p0LQ z49~f`V=~-$0~P*c(;RJ}U%X&4n&M~Bdwhl?_T)$O<#QQ*a9Z~;SxTXS)j}s_OS}Txp>v~C ztnZGF`K_^j0=jiiMu&10+JTSIOq{{g-~a!Y1IILbj}Sl+bk>$bQ{5chKsus3V-l<5 z3UqA$ho(MT&oE@w(aCue+S6(1`Po=h!chK^PD=y0@w`_TZWp&6Qs z_Fx&he7B$*)R9>K9lBcnL0@JSdWWrf8up|75t`BJx3Kbd}6Um+Mw+h{v!p<{K1#eV`?#GJsw;4_)r-k^7U0 z100m0;s-+QT=o0UkrwbKW5#Q)Qx6(IKjjMKiEW(SSz`4RdNL zI%gK*Rj&V49K1utW;E54hGj|2!Y9z7DKb3tv^KilyQ7)tgYE;P(fh`ssh*BbuGg?8 zevFQN))C?Qt1*=!O#S=6Ejcja+tHWHXiwmM=p=b2mKUQv*@8asFxv2UXiCqc`$5)` zVXSMSL)a7T@q=i4PohIHACqpan>g^nC(yC_7M+ZLp%2P%NBCmNhrR<^p|9Ubcn06V z3AkWX__WG9I;^H1=$yJ84R98^OqZg8uN}?$cPuwk;aFcnH>8qd!t8C0T^PgBIEwn6 zW5Y75a%cE~WFnTOejnP?3%D2yj|-pQZ=tIu)A;bgQXTEUXl#PZ#j zFLXb-FUf(+=*f6uExth$Xl5>>4P>7ZEEcVW4p}>N z@{LB@nU7BDm(ZSXKsTJ-=p_Cum`q&cz_(S72gB>O3A*gMptE!&dczE~ffv!9Zo+ij zjSkT_=-!{}p)83X@jCRrY*WK>EsnNV1G8agO#S~~y*Y3L8j2n833QB3;w_kXIE>Y; zXa?@YfjAvq=RaY4%rh;_rQ5MJ@-_c2xb7sh3$!KGAPV`16<=yE1@(d=^IatGiJ^m2w z(J#@0kA!8|2n}QqIw$T%ANWZ0#pot9un*7&oIxjF##!O|LTI@vIuvbYvHm?66f35n z5iUSi#a6Vz6VYGMhO<8!t}7jF5$%t@BObtXT#WX7CwkvWbZ%WnJ9^DyEQ7Kf)O{=r zL4R~IEyb#M2+QGrXzI(&4w zqO-C#dO=fkEW4qfU?b2>jYCuaI6j6iqeEBYiSWSg(TC92_*%RXzd|Qn*(XCL2H+yf z$;lj;^6Q=o8K{q5I0?P+P3(gI;z;cLbjZxx(R1if6`Ks^Fq zYz5woTd)S^dM;eo0*6rUhRFdOyv@M~EcSdj@fbFy{2SU}%@@KXZG=v?E@*(`V*M<1 ztQX=Wd=nj-8uLTIH>2lApc$HqF30EQv;M7EPlaQ?4;{mg(FcEv_VgU4<6r1K%g{*&HlVz#!fz{D~8elqhL6_m3=(3xE zUcU%!_*HaA+=dRpM`%Y*p+oQ!di}rXs>-$~%&`{ea_*Ysz|@S2C#Iu4dtcp*d4ZefU{*$r%GdfgPz8F4SildYG7Icy)@8Q7N{Q{Q9Etrnq zqM69DBm`Il?QzXmZi5EeAH8lCPQ%4$kIO6#RzruVA!g0M7Z94Eo0g?A$KU_rpdA%s z&=YT=588u9egYkWU(gSYtS@CrjKK<+jtkH&b{pP+pQ5S1;^knzXc=_U)kRm+O<2h9 z|FNk9);GGGmSaO)gT?SHnyOsO!})6HT&af!+#H)@hj{);bVGX%og0gz>+u-nJ+ZuS z1?PEw;&l#ea5viEA#^q$!y5QCI%Wl538}7$4pm!pnN2{4VlJlRcC3kCM)SWK=2Ck! zps8qP=V9va|E%G_lGl-8cXAj*I55nd`E?2mv>c|&5h6-#-L+970tj3^tyM^IdLwUd36}F!q}Sn zUg(@!f@b1p^!k!(!m6ow2Qkxfi)VnRp~tEJWAk8gxTB6w9a3b(`22 zZY+cjQF(O7Yl{Xn7}Iew`hbPeHRw?8K!@Te+M$0i_4j{ry%{bjfi_eZy`Xa}_eaO} zUbLYn(FZS&MhBr0 z&qU|MTD0LWupDOI60Wa;)hOSL?hDh=`_`imJb})Mj9WvwJURz%!lW;YaU9t2L+I>& z1)at3pn-jkW+dZV;pLJSeLzVxW9`t)^pEH7LFdK{G*k1@9&bXgJAn@M`L|gA29WdZ zFlN`IV_!LzTc8bfLjxEV>+eGweiWTtE6^d>iq4Jw=)UqjrepqX;riNW$8JJ9JZc;3 z-_*>Z!XCYiPPWr%g#X5Jk?oqn@ec%F2$2ZWFABpwn(adJq zmHKsuWTF%YUXVmT6rM-NW;r@EhtMtd61t2E?GCfQA=-nXm=(vNnVN*oh1qCF7NB!t zHJYhI=<4|%ul4<(_uUXcCG^HN(VpmqLt^56}mmMCZggtdF_& zgngkMx{o}BZpkm;bv!?Dgab41E7rlBd&AhbLVqCXgO1$@G=Rrq{UY>TunG<6b2MWY z@OCV;F9b9Zy>AwF!Ufm^&thu*w|p-=s2dvj0JOn}&`CHCP5ml#>^?;IiJ#F)mt}vj z7`oxqM_*0@(EFc616Yo>yE&E*?PvY_UjKrMbo?7#&(|FYJ*k2|pcneyABP6AAlC0d zC*KJ)pbQ5?JB83p)JG@jK&*~4(Yf?CIw!t5m<$mn4u#0_V`EN~Lx*HIdf~%pPnMw> z*n&Uc@#wDi!w1Uh55nv}fL?zJJL6?E@HQWY4vj?1(~=xC;@}mu=V#EJ>o4@dWj_ix zv_glbAG$iGpw}%&C+R0>JO7~_X!LQo{(f{hE<}fBL-cb@r<}}uI83h6=$N%ehhzep z`lr!AR-rvQh(qxd`m$;FN$_qQO?fGr@@tNS*Yof_y%HVc4B4cRU%g~!mfFYrT{c~!LI9#|FcL{G+z*Z~iq2Ts`^!#QvjI-t}z z3O?X*%!!-P?Xv~V=6%th&|Ps79rjMqnZ}v;P4qJL1 zn%t+cKGyw}U!?N<#25+=;0<&QcVH5;9Sv)AC0g%}=E?;0ZTJ{Ev+c3{0J^;{I2LlJ zFgn1x(QfEA9gPm;PE7el;5`Z^O|jo{r~lrLtI?T0h zBpyOT_$rpfy=W-^MrVHEzv1h2DfGbu(WMxNNt}ny_&KbH2hevy!L#AM`e=kFq6g93 zwCuly6nfFH5*^t;Xm;oPFJyIT^g(sdw_sOvK-Z!jjgO|#18E+bD~r$xy@0-Ucf`-X zMvv~FG5!007n}<>)%%ZfeJqZ`2hgSY4|`*= z92x09`FsnyuRlVM)3LRXcA{j&4tW^^rgV+TBnCRM$RjP$<|bq(6jr|5lupdr6FGb5d2#jqarRAmaT z-7s`*Z^lYE7wzyRbd7hR4?G_08ChXwWzhjPL?hJ+o!L-y``v=qX6KjnIFkD53p3IO z(4f5O>-hiwDR^?dfOha5nlxvk1uhB$tAuvk7Cj;RprO4D4e5R8eXGzVd=s6({@8vd z)(hkd6RC=q`u=Yl8wR8s7%}>wd1xda!@Bq(`oL`YGtwtzA@sUN=m0vQ+iys0AB8Qb z{|~+IEp$mfM|0#1rhopIyFgg$dgz7i(GL5g4;Y88)lBs4egl2b-|_S87iXl;@=LH0 z?Oo91yay}d2CRkOU~Rm(U|5=Vm`c(xnt~ynkK41c6zEH5N}-JOFDh4{N9#dshIuay zInxOpXm9j{8;wbvin;MoH2GGd{clAF{u3tg_eIiShG=McDuD)5mBqS=OK(ydV88 z`Y*aPg)R$LK(A|p?w;Q0?iq}(@wC{!0$sv2*c3O#_J7gHK6-1dJ`I%h1>C#@PNjdjDZGxBfu~k}MJKYlwc{8H>38 z2U9R9rbd^>3*Jm$!0+ise~IlmlHq}uqH9|RUCVaZ8~dXJ+=xDCJGw*%Vm(nZM4%w1 zfB&xn1=qGQ+EG70z%gh?GtdVujO|aO*S&!z?M^hb$D*h4jcoiJ0S)yVr9vb>L;F31 zM*L4qwWN@@bZF>`hI9m`lLND;KM_BF4t>yj=r;TmU6RA`^E2pL=PMKTcX7-~y%~BA zw2tk=(C6G)hW+opUP^=8=2h&9U!fgWDI1ck2|ADw=&qQ64&)9rGIyghS{gs!h$ib6 zOyUmoKst^_?625fs9Y+9vTnKXz>a9rU5h5o=-7T2I?#n^2-jl`d=K6CXV5jixO|8} zJ#>a`(SvFLx?5(U*RPB1AEqdH;|cU-b7_T;j4ja!3`0Xb5nYn`=!{=L2e>7+e}(pQ z9*soliXozn(FqMg?;D3t<4i1%smhf?XnLaCWdIuDnP~Do5bIB(Yq$Yj|l73)+DxiJh~+cD93Xe6GAz7yN`p#wjS>A(Lgvswswadf*hM=$7whIC}C-;16T zkE0>oik_6a(HVY&&hRigkdx8;)k9>epx4(%C)gB=a{eTGP^f@6qc<+XB)$~ezd%Eu zsF9KW)3QmlJ^&ry|F9Z9f$6Vm=(phG(F!#)(m${mf*omJimmYorm9n@QY$0T9Irz= zSdQkxW^}E-M{hWfJ+XD|kc>;vB;1Uxa4))zFRv4pvKih%eJYN|vuF~JtQ#gguP*!F zk-khrP5d40@XC7OD_3KzLwy1|pl8s~??5B)ExNrD^+ROJ;Sj3B(CmI62jX#bU|kzz zB--Od^t#Or*#9O`vSB#WyI=?EH)9KY4IS9OXauS@3L&3>-nR(d*Y9Ir`~&a9s~d;w zzCu6G)+F>_8C|N5XrymTQLv-Mv0*!U!%x@@3p5R(>W1kX(3vbo-}jr*>wiSw^ZA>F z-06ZwXe^r4_oGX_I=UC_Cza7Wd@-nu&U6YI>b2+vyRa6XMnhe(MHp~5tW146I*{jL z`yMoMIa`LLYl}{BIy#_rX#YDf>HhyS6cU%V3OClnySQKq-hheLVTL2n2Q5H5dIO!& z0dyB!*d`o2HLxW0DbYvKlXWw?_CKTd*KF&AQv5`Mf?pt}pa;z&w8L%aNPk6>sX)7s zd=1g<+7aCyw_p+yIThLrMj)wA*P9Z0nV@v82(KUVrllT*wE4e#|$X3PcsCUBVxHfvMGyC5Ts&)w{ z);R1$eGSgRzt9NW(KVd;Yp@6P|ImY|TepzBPoYVA3LQxK?jbV0@k;7b(09jDbg56G zIdE~0R7kR#J;JxwCFo0N2bu#}*MyF$p#$lL^>8X0+V$v}e*}HdDXfcydxkGEoukXK zE$zp#J=W_LA~8Khp)n2bplf#y4RQJ2;kA4XdgAp*Um7=|Z?zeC0WLvv<8gE#o6zgF zqvyic=u9*Egma)g`o*Lv8i`a-3MSD+Oya^=e+9j8A6|^dV?9UT@P(u(I^$aC681um z?!~db0X=w5qZ7NZUr55b=n@S@`se5Wp^$h64f)$>M?az+oJVI==-M#Ais;NbqHoJv z(a#q|pGF6~8I9CVbf8D#=Xv^vrA}h{@BisZ!B9*?6aU&YqJ!mA3qYunIAk<5v zCt#ykAA!xNr_giZEp#9U(EENvw_Tp=!Z)T`nEwBN+EG}{2ZPaXt^cAoW(*8x{^jUE z8lW?}25aJIG*Zja2fT(3^ov+OhCVQBP}n^+(Fxv(M&v0>`Q`FM3i>@d^0Vm7iVO}N zv_a2_n{Xg5z|(jVP1awA1TP&L2HFx$&H*?VhoL#}8(xG(hJ{}jlpDtW&q+gN8qCrf z=*+ueUL1zGaXeNy{{!u)_=sQ|bU>pq3sdL=??#t&E!M_;=<`w+ zjSRogNTMH9$B{T3o$-#?eiU8Pk~fBq%cGH~g+{Ci`rtO`QuK-Sk?4KX&1>LUOF&FNMpC3SX(XZ%( zbKewCOf>mwp`Z7)o#!WRpy?7D3}b}u@&ye@>qOK*iP-xj;3H0T!wzb`3M_g=Gc&o zt&?0;VdTWD}(C(sKo9Up9h4rCa*#`DogJ&r!; z9rV5*;^&zY!uNn;Xx4W_`K>u4muOHuHLh7^`E|$>Bi*(fg*MOSTqU<8izS>r4p`PGJw~kE5ag6YJuYQ^WnKz7*=wFc%&1 zJJ`hw(V4WlEo{#*XviNyx7X`vPJD(g(Vwxs__Q#PI_N<)6@5u9M*H7@Nj!`!Q7Vz~ zzYvOw*pv_Ypfh>|2jT(rU}|)G2;ErpfsdeT|2AgekLb*Q!;V;=rFFN=!h(1|x*b7U!o)5mk4LE;#m}!eU!nPU~9fhv(_~?D;+OI_i@G*KG>_N|iL$Un`dcK@M zw_VnZaDJ4)^xyweJvKB!w_#^AWP{KLPDMlc2zmg$j2GZGbSXYTXZ8b{81E7%qJ{cnE7L%|2GKxgzinx*^ElPcStVXcdyM`#PY8V90TycVy;{pd{V z-W87SF8DU}>(C>+#O$!N4bh3*KAZhNlfu0;IMa*ggqc=Dw_Rtv2xp-oUVzSYDLT+~ z=!v-leTN)IBa&}!7;sti^A2dlhM@P4L?be7E^F=$57J^8B=ufM7W02ZhGbhDKYtRv{#$fApG5nua!-hK3-t4AQxshDo6!eON6-34(Fi<) zuIa&8FETIGJEH@ijo$wl`hXYEm(#mwAARtu*uEaSyZ_&yU=m$)Ur4UT z==b}6=>EPF?Pv|U3pT|1E_A>L(0zUkUDLnOHP3f{$f84%mA$Mm27ok_tN zF2hXRjE3@ktbqrx8s>c3sRbG7zi4vNT5-Tqb1MUd%tY%~pkG8vp;$b;-EF%cW&fL0zsH7)mWKUY0e#zb#3bH~9-a3gS)164CR4>_ z!CIJ|dSmp#&Cn(5f=-}6x)c-8ncs;f<>C|tFI1}aH@enuq7m4K_In;P{r-RH6Jf+j^Z`|{9JWAj z7>QN!KJ+E^X8imB=AfQqWk|Z*=m1Kf2UvyZHE43C(8%16NnD2M-~W4)f@|>^8v5^} zC(#abtO_}h7oAxlw7oXE#!b-(bwHPL7<%0#^k7?v=E%$F67Iqzp2GCs|55145XyS! z1zpki{CKpZ`_YcqVK>}@&ghcWVMb-pBfKWo#6jo-7ev>g1N;cxwm+iV^yq5#zei=x zr^4D_jLxVW`hZ$!L|VuCHSzP|=zzw>&u5{@_YfM%mC={bNWG6f@G~?Se~zD@dMXvx z^n#~j7Ncui2aP~?G%3fTk+~D?=qWTw--`7wqsOBe&xGre(fZM@(Gk(V?#_0pkTHy ziXXg<&h%$A>+`G)InWS2%lo3+=XP{y9!4YaBs$)|Hkph=v< z+wd&b$H_0cv?>0y8U?d*8#<#;&>4Q6zJMFi5N56q@Ab>070@KDhko83U8;WZ^YQ4e zn2w$!&!Yq1jb3*I(|`YWVncXf65S2;&6{b;b=_aA~a`SL$BY1UjIFstY@MZ zZVUq}iJpM9(4_8+MshT!|Nh^36zpI%8iCi*v-(4H`+SaW%dauLePaC-8rsB5A@mt& zL`tIjy(SvTtI>%JMf<-MeYxHB68qn?`yLux!}VzLy@Mv(_h<(hFNYDAKk z9f^i?JUXDe(HTA%+t*_*>K~%_?L-Ig{mblsPq-sCkaW3U$w>b>{tI6XKd-+N4cW(N zj{Fimfez#^G$Q$43j;11ZH9h*ABIL`33~mr=m58%1O6}-3x}{24gX+mEdF{%;vMXP zb+OPJA*-)Ov-de{gg;?LymC{p6PBYs86Ch1biaRr4)i=GF>7=9=9H>L!EH1W{f@U5 z`{B>%(zJdvEX^o1)Kk$J%#7{##QKux6X=81pgHwY^aFGWzDAee`(P?@nu1A|`BwO# zAi8#C(a^U=lW$o3d@PzPGtmwoM7Q4}G}LR*rFsLsZwtCxK1ENwU(kNbyzTb`_J1o1 z*=d-BzMrR}1DcI?@Bq5amZ1-R7Mov{2Lmn3*QNATnJ6JD(HPR(a)P; z0iK^|OTnYFPrTr^=v~nV(3veoAM_lWJRii*zeD%;(fE1pEg^?Wp*htDy>A*ifJNvw zT#4y_|9b-kXZUJ#8#?pdXehr$A8;7mmf5$4wJnE+z7d)$ov;N?M3e4ibf5>(0i1~z zd^aR@wRhS7hT?h}yl@N};@Q{%7oy4e9o~ec-wVI*_aL66egv1`SKGoLy_)oX_$Ag3 z%*}SbVSD%m%a{)`(toYr3)qwE%YMiYEckqyKl|B4!DexNSvWQ0|(>OT^Wf-@hcpTlRwW0 zf29jL!8WPg{9KQY?#C81yt5~~wQ_usk@%c?BkY6u_J-d=9f94czmKC51?y% z23@l3`@#}tqT97lv>2A5UItytR7VOX*H|z2g3E0u?-Whf%KC~O!_J$({!A{g%6>jD*Sbr`TuYNH++F^ z%MJ&_0Iorg)B)HOC!#0k2D}Q7#Cpwd!_N_Kz-(_wm;VqBrd!dO&qW9FAo{vpiYD)i=!y3M`u6)8E8`jTKr8)Yur(U7VOYxj zKaPT-eb@$Eg)YT*^u}M&BQwuW;lahx?N}ZSd8_C(Se5#4bXz`zUbh-uigz%5^rE?P z8dJ_B+u^X*dC+}d08OG|v0fU>Q?HKBtZ!_efHkP6@DF?u%Mr;{N5b_V|D2KdhW0!{1lFQSxEo!X zpV67-I35OYB{rm92V3JqEsdrY0C;LMwy2;PM)segioHvbOIi*spt%r z#rAEneheMhr6!5Ol_~ z&=4<1b7O7%{5^Dy5692{i{}3`ta&Lk!c{T-_kRwJAB;iQdMY}z2hg|H>$n)dKp#Bz zbW9$+iu(QNw%d<}H1kYG`tJwqjwabF=yu$K{@QXk+V2Uh>;BLCSN!cW^uQR4zMq$& zBYh4X*da6$f1{Bq^>;X+TB7x3*aA19xpEGD@D=}rh*U-IZ;dX=&6qNTb0|2nN70$Q zigtJyJwPt_H*{DMtv8GHe&~IZ(GDL*2f7Zue;X$8N34q%oDBz76Lesm&$9oW=^z>m z$yjvl=3!ra0^J>F(NLEAFASt6nq*zkoS2MBT!IeZ4Kycqp-cHI8j(xRg(a+sN$Ty+ zvHxAu5j5n+|DgxaooHkp!0fmR{f6`u+R;mBq&~-cG5h&2!w1kvY{y&i5PGEdC8fLL z|8NxUL?_lbl`S(dh{6r{DsIOcv$4;!XQqF8bu>q2Vm9r`oSBI^_%s@!8o7e)(2fS6 zyJ${qUx!BGJ*XqH|4bdbXh_3Y*H1rG5$gV;Ae*>N9C+JdrhlSk#8F|8tilZIXMU$^B zdP84yrZ=G-PL1vNpf984=*-_kBeowM$j|8Yc`wXNAGyV`3iZxtztb@N=YQ^};E11z zzKsrKFM8G=MrWFpH#5CWtD!m25q0e0fMh7&uU~n=z;OXev&PONm2D(JQ zqf3x^Nr-4Q^m(n&q)hdr;0#8iBcF^uAccl>Hag?A=$ZZ@I>4W!XD}D_T!q5S@}QBq z1U=F#p#8Q%kK(H_C*FcAT`Dn^f@^(0I+IoC$X-MTwiP`WcAydZ9Sz|*bSAkk4M|!Y zy{`qDggwxKjg8(KorWg&3@qvQ{|95kMs(!wqT6p@^eFn;JdfU3p>P;*19Y2p!g4q+ z))%AwY{tsC3!T7uG$~6IiMfU8fB(A$1uwW24cS8UHM`ym@Dp@E*)IzgLT6qcooO?4 z=Kawnx*5HGJ{s~B=m0-J2YdpJY@wp;e;-hif?pDQp&dPdZm*T-_Bs*Ub6*|?dKsD% z4bXx1#_Bj8UCNcwSFkDdkI(^UT@jY9BpS(zSFryrG^D|fI-mm>j;{42w8Oj5+*lIZ zpF*#D8J)>?G--FE5Be&45)FA)vCw`wwxV7WjnJ*d*#F)zmxj8y0_)>m^tGD5c-Y5{ z(E2#6hD*^7K1K(4FnSWZQ_o!@46q;i`Dk>hrlb3Q89JetQn9cFy>JH_^6$~L`a9N( zB}0U2q5HfuI)G{DefLFIqLFze)<3|K)W44P^Jv5imJ9<(m7?HlwR&u5h__L1hi36s zbQ^t%F3C6Oem;hLPf46YA9xybV8)f9zYEdpE=Ajm;k8&2o%#Q8i~Ij>3R`LDR4Q~- zpmeyg6eek}i0=1}Xh+weYu*PP*f8`#H=+X^hc4;#`1vE~Nw^H1=qqT1-@)|H|MyaG z+Z{zilTjvgR0OS;LvO5yhOz~kY(udHj>69P9DYnl&Z0T;LAfxnztP>2C?712_R|>C zKmWUqf=B9DbQj!?j&L!$1nXk`U38%P(KSDf=0H}3P%nmV!y4#yL(rwU9gV>Kv3*T+ z8>YPA5CtD}3eC>UieVrn(RV=OSRaheWEy(i67>7Qdh`I>gU;+vbYO)mg#lDV2izFF zzbpFr&6U{yZi_o;aKw+H9lVZ4;4AdTKhWzgs2u90&=A$|D5SlB? z(EgvnGWZ@kv0p2v!VUSWgtaV;j;t@5M5EEQpNS4+KKj7N(d2s#z5XpUS9YPV?L+8* z|3zn9q-uyzU3B2R&lN5WD`2UchTqUMkDYoX1V`!)C}9@B6N+KqPw9V_Q4V8zJ3SoXeasw;#+h^ zKgRaou@&|6(N?v>Q9c_R)BZO4`G430Thz|v&yJ+{RV#%yG<=RV@v=H0L|0>L>W^R( z{0f_6(Yj&A*PfqsYP!U^kI56M>wy{-bjj5W|DJA%F=vKoX5)yI0&N8toqiRG|xL-xN9Zbre5 zx}f#m=*VwClWRJ9^gfKfB^RUD??l)7OB{uZj6b5oHdff|X&b*4|*3ann%-5Lx z?~IEy4&PKNVkzo9(3iv{G$&?ZWn6*I>=Se#|6(1i*(4<22=w|p(e}sDq}_{t6FP%Q zOg0S>Xwj7YZ)ir+;I?@j9l#rC`$24vg`0&n8-&BC-;P7^drV@x=9%e#tZoEaFVZ3; zX9IMmtGjZR=VlKqJVsaSXn4gE7{L|#Kf{}DQ)Z=+{pdy$qQv{lgi>Y&@OO>``p zjE|zb>2>tF?db0L5zax5n+<l4wF^Z`uY-;w?A0FKe%$nswuW>6ZPL0$B~ z=#J*ZWb{Gv(GFIi+x1QK;5md2=)z86B3GgVX@EYb7aGASXl^{%DHS?=f`+Cvyo9d# zsd!=b&S7AeqoJ&Z4xo8#?}0wxhFG5!U4$;h+UT3;KzE|&%qesL7p1y{nHEQ9)DR6> zA9OcNMjvn=8lkmllD>_;6%V2V`z?ANeQ^G+q5Vpg9pKk!gnvh$llL0?W&hWq z;K;jUNxUBIa1Pqx6KIIHp~16GIC_4RMt4ya^t$%wa|WaR-Qwpw zKXDfYL;W~b#cgQz|LFx-pjUWsW%R)<(GIVP-h_61SNwbldf!^~LGPmx`!cp4K~KmW zz1jb+d439ZP!tVWRrEn^Femm#JLr$zI2t|kr=Uma9q4`Y(f(G&&!0z=^ksA)??t~r zpLe)-{Pq98G#J`EeL@E%(fwWty|FnufNtn@gRweJiuI?_0lXRAgEgohMJH0cZ@9lY zj-lQhU9uPYGXErnmuaYjd(j!??HA7W%g~XQMju=sy|FW9!)wq8^+MkX*J2JFg6UjB z&yzW5zYEa_J%R3?wJ8dQ^j$QhpP>)hhj#QkI`fn019Ds&>RHjE=og8K=;w9N`x>K3 z*c|QmDy)g!&|NSKJx5YcP;i9r-~`-(?(V!YcI6E5KYo&&W$E)n~dH+4~^ubXg|+l`saUJDEOcsqJN^HxnN+}W@XTsHbrO97JYCZ zberCc-hVe5!AH>td!R+7R16LT@;LM&gh7dB%+)8I$M<*AhK|I-|MM9i7O+=#%J@Z4C8PVkZUH{29Gs!(JtZ`*@pLa&jjk~Y{K8Zef2bzpW(RaW(w4dVR z!>=RSp!bbK+wULG{x>;Zp}`q!Lr45=tpAHus27?LlBN|J>VfD3m!Q|b5&2@ODVYsN(Oe+LRr)8NQYViI%R5^gMuhORYwLmza;x1-zXX>?btz=g{q5Y;rgmQ*9_Xlac5Fb9=16jy_;V^cS?FTvI~w z6hoJwE*kP4=m3U9Z%6N6g6@KsupJ(X?G>k{`{VmR1w%Ff4bfP1S#%hDqwD z(HR!LEexaqxEZo- z6}G272Yvm1hIV`iox%CoUf_<m?T`y5@G6VZ&B;p8iU&b(!;x1Y(3eTj^s zp&H(bcC;FO;B)9c-HblyL-b{|FMj?bnmd1@*X5WMzKG;U`@IYeeQ7iTP0*QliJuQj zQSgDI(2mAOr=uO-i}mqQw4>c&JQ*w4VWJZrq49aRxe} z)Jqf`*}Le-zChRbFq-W-?+T&53~!>|8GVUtiXOyD)U(eH9acpj*aVGW2ehAlcms|> zpR*U4NGfrJf+5W@CnQTgbf%@y8ylk!?1pwY5uM2_^tz>J4!wkid^>vG=a?J6M<4hr z*2S}Eglf%oz$r#Z!7q<}(GU(n2Q(JFaT*$t`SJ5L=u!GA`k=k&wmOWS7kTdv1F3-? zRE^OAUx)U4D;l90n8ouG_fc>FOV9zVM3>}6bfjD3=ljtaevei0H@pUm-4h&-9jU*M zO|am+@Po^4*pT{DI1&%xOuTwN`+p*ZofHgpn|nht_CxD~(U--oxEdcrBhu!+u+4g* zC*eeNK#S4qx1%#ZjBu>Z4D*h+)Rv<-9O zK}_Ng=;yf}3TB{dnFq&VDKt4B#w5Oq=E6QSN6w=&F8*+cNN03lW6|WiJ4L}C2s{`Y zmd5%jbfnLtYrY7!|M&LGdfb-G&o?m;(o*5gdwLae8e33_bDopeNlA=z~w8x$_^oO;aUShmbc#cR^2dEpJ9= zG8J#Y*=UG=N3Tmf6=rxDx&)=LJyweKiI_f;(V1>Qmt-5dMBgAwok|?1;7D^n9R_kK zx<*ydw^n`hNS%NVY%zKcJc%ab+vt+~gH5sGGnwiC>0~6frrv%{X5t5&k1oOZXT!T= zHdc23KSjZj?Z*0e6wUTBYeV}G^ubfnbg=J_&R-xPPC3L1A#riksb*FGJ{)-M^ zz;hw8!sI)_Acne zrs8$D0X@(zeu4czg+gTtCc|p<0q>y^`4vsd9505Gu>e-5-VATSv1s!Cgg!WHeF$w` zbiemPBk&M<-J|G4-@-=t-Fo)F$y97Z*r#>TwQr2hydAnv`(hGrLPLEoI>1#}4mV+c z`~lr|EjETF>lp2gCh5@VD0E^IHnRU+!#im3fe&JOO`|WN58Q^X?N?}oen*$8&`aS# z4Y36Ew&?xWqXV3T?t=T!?Y9jb;0`ot_oXPfKQmtr9bJYdSs65BjnRkiq4Hb zg|6j$=n@`8ll2_hPu45pt651j`MP3G9F8tQ>P8Al3ainXzK?Fluh9n|MQ3ydU8;;% z!vjmA5omKeL)(NkLTzUzQx&ObX;M#rmdf2a3-w3})GXa;= z{yiGPnVUk$UdOAc|AIBJ-sUjFk?5{igthS_bXO$a%uEb`N>~r)Vg-B$+qwULr7(wv zT5pB-^(HJ&{o=Pnwl_i_G#c&bF?4&L#kP3aJDKVKXM7O4Wc$zq>OXX#MYe>m=flwx z@^y3|Ikqw}_kSY_hH5-+#8>flyy@NWP30(lO}+AabexSf-4+H|=KajXbF_EHy|kaj zt+@Mx%=AA*u;`=A^#4(L90$`r;p5<*Pr^5^-=6S8rwZr+H4baxGOU81?P34B ztZfrTUjJog;!VuCFT5?cqF+8M?GF!} ziVpaBtc>5G1Gp%4AT#~H+c!opcm$i^hiHg0z6uvsL$i4RCUFj$Y|o$v&nM_fcnl47 zp|8V1RS!+Z0q6rKqt~y-W|-PWp(lk4zR65nh5ga(vl_kO0Q!X^^I%xZGH3@)(HyxB zjo=-a#O1O6HhSGR=>6x=bEN3EA+nW_&r^w36ue+4`m#uc4-$8wGhQ9*pP|Wg0?m!A z@4}JX2%TYPbRZ+q^I|rdyl=+OccBN{vH1B}O#k~IwGM?7>uU4?*P%z~BuwH=^u|@_ zk-7n$*@x&$34!E4my0 z!vR?9hj8RRfOhyYx>O&bOOg07Y_C#i_P0cHp+A}{x1$qyBKjJp|NiftvEeitvb;Zq z3rnI$WqtI!;1D#lW3Vf(#)fzXeW}zu9G0XWI>Qc_i6dftJo*;AA06Q0!_42AY@opi zY>$49j{F;R#EB!B>A#e+Fy2V@2K2sNXi^-YVf z3LmVdA;|@s(T=`B&-TOUSzq;+@W77fwj6}ca5j2?J&ESRyEqy@Msujaui>rQ22Jv7 z(Sc7w@1K{V-~-p7-vc(FA>E3G?i@P9jHBVk%h1qOMF-X%o#AkF_e?=Mo{rx47&`NH zn8a=9wmyvQFjeSSNS*;`l1xV*uqxKy#5vRtq2GK){T6<)`T$m^z8gI^a{V6aU9dj& z>F8VTHT3fn=mQ%a4_`cHVsrQZTcN-eA=_Kv04|(_gK!U4#kzllBX>A@RPRBL(%dIQ zq-sZ-qT8-L8tTDlL~g}G_z)V|HJJYWzl{_O<#sewKcZ`S7TxzbPleDH#JtptqH9?m zFUHnr4)jKs;#Ty!yRjTDLi>9g9msYx!arg9`+wrkkgZpu2TMbAApOu8jze?gF?5$a zg&sKTqaUKzABvy<*_VX5cRPV-InA%6d zWH^W}#n0$WFFF^Jr98T}&CwYR!Ss!2Hs6VE&z0zXyU+(8MX$>^A0l-TI^!$R0oFv4 zHkD{W!H)W%*?%i~<3jYoOVQkT6V39E&}=@0X7g|8e!qYK+i?lBUKKrn+F=t+p%d7Q zF2#QSdl#*VA1O4TVRW`|<7)H)Z=uQa5hn2)bj{DB4=9*DE1l()(OuFq)(4;ipAg$0 zMhE^v^nG*y-(dRh|NEJOp*xFqd})rX^joYNCaGVKem)yr!^g1}zKn+Y7xV!auGYXb!YOlW{0^z&V)2&(ZyT3SElAxx;;x zqHWNFWniq&!C};&z=@bUBjmy~>_q+bj8y0_BQq;~R#!q#!XDTdr=tbX&<8F-AGiul zn%B_Kz8gRP2F-yZXm;nkFjx|8Z;JNU4^7hlp#xkL>#5f%m<)T+2OUKpoGouw`mL1* z-M0nNq$(Bb4bXSORrpsneijrzADJ&iEQPN91L*xLFue=VBzzx7T^_CS~B=IC^E0uM%?LLayZJzqYLoenp3Z$6ZsmGn4?h0h0^GR+hNKh zv>SyMI1*jcXR$u+LI;xP(yT;9ER7|x3wqzU=v=&p`s3&TPDd{(9PY1)HEHjNF5&Iy z02UW!|2wmlH0bl_n!Sd;wRWP}yB8hUKj>?^WRY-P7py`3di4H9=u)jj?^}lsco({B zPNBQxqRT?WDqY6@uRucw8fxQ2^u}k zx-`qsq+X5ow+X%PNAyJeFGayGhb1o$Gp>N{+v?~{u10U@gWfO}?f4-yQp?bgZ$$gq z72EftAwGfL_b+;1i7P_#mPeN&)r3NJ3VkpKUW>kN2ck0`jc&7h(XUJ^&;dP<-nR`6 z{Rfy6cjK+N4`*W6Vj$N;H>hp#yJ-MyfmJbN~0F;7jL5bYI_%hGsdMbg!c~e1~u2 z&*&PjNoFN(#H~08tCq}4|4zw$=)liJ|3xEn9{pmI^U5&5EX?Qrznp?=SP5ODtD@b} zkY9_=a3mUmDd-Z-!t@b~4txc=?_WX(ydPbg=&Hi^SKcT^F{RW-c zk$AzM=s^BK_iwH;A@n8C`|3xpLhtK`uJH|ME~L==?m?IINi@=LqY?O~Oe%!vFb(ee zzvBg0lnwj3Av&;5=mUDA9S=i8J2tk@KxcX%PRHfw?n#yl18s@k-veE$L9u>IDqb)n zHY`9xxB^|vS7Q5D=!}0xPrQF(d*$+BfDO=H(h8l(5OhFyq7Qx;9rzRIHhdn9OzOkf z@B@~oAyFY@Zv}J!RnTnjj&?jMw%;4uH=qyr7+tD;SP_3flQUn%a9?qBSF}Jw-zJz! zbf!?9hTdpM=b$5Bg6VCBCf!!_#*ff5d^dXC3G}*bmBNgQqMz4BkKS(R%x^#^I022o z(sZ5u_iDW0JM_k5=@0lhUgdajpgGVG9boHdFErUkpaYm5+ZUq;&a>!)*P{b@6MgV* zbXOh63hw_hRlKo79C=ylg)DV&B5UB(l{H$(|}g!L_S{hOil$3w_Z2KMC!4 zDY{h8quX%{8mSM_$bE}G@Xu)81|g}-px3oU2ihO)=Mn7a_y1=pBxyK z8p5^XX_ZE<%^+Nc{XC^m~7aX5qRv=+Qj@?Qc3(#>JTa z`@gnPFr){u2A;-hSiX6%4|=B0!Ev|&2V0&nlGY(Iz0l96V;x+Gb@5|#W;xn~nU+QCO|c#h zMwehQx}{$})`n~DSRy%YtrwoLo5Hr3FzZI6y{5GL^!^vmNy^Z`q80j@%4 zR{yFH+P3JC-V+`85cJ@>1x>oU(4}}1`(o-H3a$y6Gf!0QIqAlA0?O5CWzmkI6<;(cNIrKGLs&g1X zQ%q9tgML4lg3e?iI@9Io_3O}xd>H)-UCQ4ui5GMU6D@}(bA7yo=O;Q-a707n1#{4~ zT8w7-tLS$89bJkNUBf|B6OF)BG*=d2NqicO+=u9Ze?SM8ty?&V3ZhF`1Ji&0uRR67 zaNLgF@kv~Pf1&$&arf|`4>5hjqS<^5UAn)cSv^9MUXCVVN#u-AR7IC|Dpta|XaryC z!T$FFZ_?lz{*FyC&ov=*9nftz1f9XH=uGFJGgyX(cq972kI@J1LnCkmy*_)-@CBqW z8j+5e#1TE&|6VYc27N5LAzrW@eelodlKhK4sA#VcfpVCnUJGx+Yj6y1!F#Y~?{I*< ziB9AQ`Yt$&KCfu1PdGBGVPzTy$NIhK+P;m>WFPvDIEf{&Sl=-7Cg_ZMqDwd)P3Fb% z^S97s+l%JdF?0YI_Y3`|s#9={I-ngbL~q!Dj_?C?=HH-e_h0G{r2EG20{^|Zwi3${)c~5kPGtiFKViG@&^o6FPil? zqc5rZ(FebQo{YQD2!4y+{|_38!q*uo_FrQPX7Ld88_EQO>3f83F2Oao5nEv;FS5Pp?UPnX!F?v!RLSHIH2Zyz8 zh3@}r(Oq*h8oA|I13yOB_8fX3T`?rgv>y8Hxj#Cgq3FP7V*1zr55*6jKs(qH{T8#R zpF4&^U}zpM zn23&S8oEX^&^3Jo9r+9B$+ZLR;7c_0zr^+{t`A9825+FfB@Vl_oJsP>(qeIA>pljU{ z&GsQ^WM-qg;68Mhq}Im5R`lT5k1a59QwU*8G=%-ph>S*$*gInVe)IuPqPyWkOyY0o z66L!&MCwxfka~Ia{*%a3q!QW3gtI>%I)F;(ns&q9I1mTpE9lGTvaw;8ltQm-fQGUi zy0(4rSsac=q`Usm&k_nr8aALWq21{Z`1*|_sb`K4pHD#7{2{c1 z)tCccMswnIbjDlJ>pqNr75xoO^2CJTg-HJMD;^4VSPGps zUFdZWqHFminj4$Y0ql(RLulkqquVwyG4z)Q(|`YWl7a_DE%d_9=!JdI2Mt9JrZM^z#mtqX2cM}?!8EC(AqYvG}{GIV~8p`1d=r;Q@UT_B8*V%6k zGfSc!*GAv_EztY>ViIpezx&;TCGmN5Nq3@=I*R7Zc{D~Z}^CC{bO?V?#pBz4a6kXDlDGJWyRdfw^qBA;- zhVC!4!*l4&FPIXpD;TX9ZGjG~5BlI+(V5;6>-V8cxCA{HUcjc9+DV}jg?v*(=o_IA z>W9wk26Uv8(1Fg2u0oI4P3Qo>KnL&*8v3(nzr}A0OVa^uABAr7`JtXlY@kq?hCS#> zn0;Efp)Pv#_D0uqEPB8!h@ZcL<*9#(o@m+r7k;5p92-*~jQ0B&no}R4*ZqPmThDEHRue6#rkb%$M>N7e+4?zjc9~ELqq-# zHo@eKkkr>3>RZtx zw)I_EiRL&GjqDn9dw+^9>1lMJ`DU~KEtHxa8tS1*(h<$lo6rvCqceCB?PxC+#q;QO zMdySWHAMUCh33qSXr$(&6I_M%zcsf1IEOXzg0nPK!-8`|61GBbn1n`XA==?PI0An_ zL)_`^@cE7Cz#c}IaC2<`0nL?s_k{baU~}qS(dRypqF_j#jt%diH++e%>1nj%JoCa0 zwb0KypxbK%8li{K>t97@_zAl9zoY#ZnIE=q4RndFLhno6Ou=k?5WR3~^sDHf=r+3O z-f&|h^!h>Qz#c$9e+^xVpRgTXa9{YfWM?#jkE6TdWAwUzkpb}c|KA_>Z8LNLGtikl ziXJ#GprPK5Zo?nZlkqra;A!-1KaU>O7e5e|t}6O6>x727H+uce(Mg!s{Xd<8NpmlH zqCJ7G{ifJ{Ao@G@pgqTfVPL({>&BoT}U^VLNumJ@_V;e>l9=4r3?kf1?9yw=f*h!_k4= zghqG{rW#OKM!_}Qi-suYBVi_a(Iu!D>n(9I^?~>>eu>ZG&5Od9)1r&B(tp;oJNBb} zDL#W|(1|_1BrL@T=*#HaCG7v~6i(CN`}l8k&GI}NzIYTu*SaJ+uySZ9t78sqghrwn z=E19Ddmns}dVlnb$wf;;KgH0QmqL@W{!;e;UKhLu~)Jvgj+YHV2erV*zVSb#14s;HBZaj@XC$*b`Bm5S9z~AVF`BsFJuo{{p zL(wH#hF-T04dr`iB=)0gd>HLG-{T>&m!mJQ|Dn6=p6GHU=Xn29aOB^j+vi_&TNQaC z+)xi)!;W|X_QS3?7)RiGya6v?89twh&iL-=qv+DCMF;#AI*{Gz&)NS+(gkLYRrnxl zRd}D*M+ee3)+eI_T#OFrWpqIAVQ%~wjofZ@DNms%-lb252ev_%t}i-}Td)YvPuxwx z4p*WhTaS)-8xo?#K6D@#tPaEx&ZpS_ zu4z#Uo_v+j8{6V^?2nH4Yc!;Pqa9>D9e$Bn5RFI?bVhZe9nj<(h~76GP4Zi@4BmzA zwzW^Q|4o)1G`MXJp!J{7kp6*o{13Vt@;$>hrEHu7*qVB`HDN#tu@Uv<(F53kgQf7Z z;Tuo4=fcw7hdy{S*28a~ONFmqMV@D0({W3DnGYtd3xB?^>I;O(I=Yr;a0r%tF+^rA znv73kH$08L|J$z*yJ8GpMSU8!#BJCdGdG0Y(ji5`_waah1`Dw-?!tChd1LtT+(c|k z{cW6wxnKG}SLXmF*A{K<>W)*fo$A=OZQC|(Y*cI~HyzuyZQJ$@Zmb*s->kFhz5d@C z<7A$VrMcGLRk5=^4J^R;4pR*a@^H*og6TFrA9~nU{e~c#b#=^TBJ3e}mby-m4OA(jpK$Ee1XbeEU_CY0V_uShg-$xn(-ch0 zcoZlHo51p5>{HI?dQ(u%xE|CgxCeFtlb?3Z`QKnR#@oQk;0tgsnD>m+Ghe~fj0>No zxz(+$dC3D#0FQvjL0vrK&N;spwA1hhs8SR>AJO;EbPNN#F@6QArj0K+6t4i))Hgwu z@)!6QnCN0e-~RzI7VN?JpNpJ-4=)WbMRZL92Z9~JsFxiE27romIj9@&JgAH6IT)4W z8hC|3z!+DZ-*D`6jo(FQdLWChp~dsrN&n(Zj4?_?i9)jIKWC*xe8nzRO} z^WV>KhOKY4^~<1#_3xlQ)DpgMFe4a)abZv;s|M=A8VHus`CreAj?ouTA3phCI-lRA zK{;*<%JC$yD7Y3>sosLhFy1T2Q7JGh<2s=3jWM83)jpg53d&yEf1ULzU`(C=VZ7)D zn*r(`I14Jmcc7Xn=(Y1HSQ6BFJsS@I)pS!pIotyVf$zY$V2n4;@kRDz8}=Hac5A+aX6@^n-5k2uiJc@cMem4pf$HXX@10{=9@Mwr(V*s+gNpnXSOok9O0Uod=ceooYW*^( zd*chJQYVNa)f+!RF;nET^G&8MsHSZT zYTtBFj9mtGe|!UV$7lZHTvVe$b^Xk*PBVu7&pC#1y}ZakX;2Xj169)z0qDp~UH&fQ-eRPDEdYP#!SF)-Q>C!p$}?2ZQYp|lyy3wq!1qGOllr}G;M z)j@UpRImoP0n`l{=9lv|y*Q}*p%FM4oC}Kb%)g!5Rs-uWZUbuHK~VaxKh8I%LZFzb z2XY^HU0Zlj4FfrRYMvaR6o!NK!NZ^wk_Nba-*)?eYPNY`b?_P}=F$Z^dW}H!%p5Qw zxC_+jx&|sxcPO{-p2!3y*7>i@iwt%IMafc76yFC`%P^tcz9!8Nit>7(2kZ;#Mw<<$ z0AGM|5G9O*SwZcu0qPic2X+2ufa;z7U|syX{^dmslnU$i)u=ZpgNs02Fvo5D8I-{U z;hX^SfjT|)4f`6-1Qo~*un2e?R4*k8@64A0J&fCfUNy})UUUzv14Y$+P{$`$1P2R% zYMK_HKF#KXHNo4U7|R;b?W=ivP=Ox-#o!B2nMZXy^VvZU<2s-c>Eq__Kd9MeGNE(1 z4J-l%L~^hgs0@dK`ck!)m0+qnJ zC|P`s%a>)W_vduq~J&n%j3DOb6Bdx51KN$LMa~f77`ctj9Qi z47cwa&vdXc<1jHDYzZo`qo7Lk!pn;sMvCS3eJia57Gt~?l%aQ^*2~9s0vHdrWc<~z zVH_uc!(cb&!^L&`{s2NhQ2Sni1Hh{B+`iv0JP)dbQR6$!?JduXzF-Un)gj8FQ|7Nfmm@#{h4yFOU1DPnp%VO|2 zsBUkc&Fy-QquHSD@?kmLuKnO$uoO5qr`z}K^$DoYh_<=hzJFwHAE@4#m)q_8%5?%9 z#P~L-5;Vx;B(w=^!}wDk&i`~?8s>Gorf33GjYsBl`+hzUHNV^Ur`#5R)0odu!0j3j zo&>eOc0spmH24x!mv=AZ?E3(YV?463+xMqxV-<0Z>nv~(^BIad^J|N8{>Lzpy_i$` zeW1S0<}2=$U^3X2@e@$Q z#qIkEM=dZe<9Xmpa2xm(Y*N+j`-Oy3)!e?{6WR=lkxbQ{d!#O?(=ZOyso4i^2Y-R3 z12}(MYdFX1S52oTMQSpGa! zFgqBV`O;t<&f-2ZO#p|2L5rIbLG84V1wX+5p}G<@h})gRXjx!8o9p$OxtY z%hnDRc1se^wgDTNpP=R~T*~=qa_yY3T z;tJQ)$si)wnsEY9)DHob!6a}zxCoS?EX^EhOMu!}6_lgKU`?P@Bj4$Wv6ay zx9=A&7J}2Y-o^=JJs3%!|B>1{j^l%&*^tr3*+AU`rNCrhV^F0T0(J-If%?7>vz^;D zl&f?is0%A*2j{|R0_tLFZR1X$?DPcFf-}LC_;(%Vr8xKkRIM_0bh5)Qpd8l(RkH4&5}W|)Gh`_! zhBtsZ&NsZa;WemIgzoMz5D`>{aX?)x*+5ZQ8B{02@G2f6(SH*!*))%zOiN)yC=V z=%)e|Uj7_YC}_p94gz&wnPfib{8peT>g&*_mApzr_xEY3@I7Mg%+j%lC=+yjcj zyP#_L2h@3v)Ze+HTs9$iXWAk26`xb(}W(0lz|K|o?l<5Ib zr8sB!9&E-q)&PgnUZB>Of?2^6pd5S$bzFl6IyKG-s#(i{Vy+3OKzoB?Vi2f6rw-)& z>zHh1Lfw2GRIQ$YG8oA5)bWY~s>V4$F;D{3ce+Z3H93LmqoEO(gP&NAk%E2E{O%iRSlW{gs7f@kP zP1Obz<%2-&n++=9y`VC@0_sEOwPDOr&U#)@`>TL=_4(hG7iCsuw4>MyR0$@5qHdMp zDNxP%5)^e|$2bO)g9<1gC?>0c>Zx9!0$Bk{?;t3>yP$gQJD3Xpu6Sb|#loN*w*d9w zGZ55=$qG=0j)OAvz{Wp8F%Wy46G#?N-CY_~K&BxbwCB$*>D`FW?cb_={=xI`FH~7Uz9|e z=zMsj1?3W%~u2!U~ABKlYz>3D%c-f4eGmLnkmkQ%v`W0 z;|rjgF4a`WPZ>~t>w0;Sf$pI0=5e4tMkj%acn+8cJOhflFw>lXGJqo)R{_;4H$Vjz z__xyw2@SJ>>Y=ir9JaCfp`d!hJBt_9b}y(}KLizNxap2UT2QqrVb~GO$#^;_3eSLY z@ElangbQ}Q%w_=Ppff1@Q$aDj9jpPK0J&GZuEaB(V^JAY<{dy?9KCIR8<>mnWl+Z^ z;!G#NG@y=IIWR&1KZOHD_3&BFFSXnT)pUtxJB(xnl}H&-OmqQr>->-7r6?0eKv5WW zj`M3fNkQFQ?Ln1jCRh&KXzM>g^+cJu&gXqIP{-^Bm;($m&tW7Vs012=N?sF-0qP#O0?P3XFgN%f6ccHe zIt~hha$Esam$wCFaDa^`f(mFcC_BeM?Z0p9KSA9u-e}95b6f<}h6aXxKpB`0%J5E5 z&2<_SLr+0v_#dclPO#i*-h800dbpxr)4)Hz!KmJQ1)JfI+njd*~z|A`#FDAc+ths z0o20ZpcFQNYOceeGQJ1uIK2nuD9$Pevw>>1N}x_bOHcuJ2c_2sRMU+ERpMYUKe!mI zs`G!J7b#|4?NCz$)cLImDv*w#)(3*>jq#wGb23;OoDKE_AA1ht+H)Q3twurb&O ztOV`@8-kHHI}X}|D%BWJ&AZI-04V)in>qgq;5QSZJn|Oj3r9*&^L4=|U>k5YSaGY{ zbrgI7RtMK_bGkd!c88(3paM>Am=9F9R|VButw1q06jUP9y}amnEi>E!s>x2-_$?^v z19mtV8Pq9>59&h643+`&fXaL@C`b1}CGZneK<=H6UNTV4o(I&i^ftAZ9-s`4Hk<+~ z(%GPDz7AB6>;`4{3>XHyZR3Za^xuIx|KC9Ah1=!qiv=EJoB$jT-T^7G*VS&fbIiJf zQkV#enmM4TTLWeQ4}z({H=r_zy~p_theF`404^vn3-jIgIS!YCy1-V0s`WWg_reEI ze!hcAb^gQccaBkNuqX?iY`hVa!Z%P91{`pHGb$c9g7F$qJ&^sN^E)CV!G#2p^^n8V z<-<<5KLORuZ$Te3U{c26j_|8zI{&G8QI|FYMe#sT4ky}p8K@rF4ytA+LG{F4P`&U1 z6k~rt{JWwab=ISUx-Sxgg~1?D>rHLFIq3WK|4zK<_zeI>%`k8zI2p_f#y{p5st)SI zq&BFVu`^fz9BX(2%)>a$ap(633xVkw9|o6$Z^0H|@Ck>ppC>r~`IuOC(uwdPSebFq zDd!gwyMUP(&jH7Qr$HI0bDFCY+zYA{QO~%2e=%V?*h=HGWCr#G)ofqD+TgHr&hLcY z0b4UJcHZlD4d!LldAILxG-SBo{3g^Pa5VE}E;_&Cc?k>yckwT|U9Xr=dYO_jc3*LR zb1L;!=NF%6fdyIr36=!&U32c0L7x%pa+b6ljg%fCQu9wx#cjn5iG;_4yfi#dE2@9`hcYvPX!goEl?Mp_YW_*d5L?+ z37|5lkI8Oe5pV^l61@QPgDLJhpYu&X{d{2zm=W9nRsrvUeZb83ocWcYj^A}qrTGCS z2AkdY{S3+L8pKOhCN_g|^b}N+c^)_!wK#z#Qa zy5w|f1C|bpSxWb7$*d`fd7KZ zaN!Hb(REPc#4nxSaHtMeWV`@u3cdluf>mBQztmD2)TiG`!^dDZ#=k&sXkNPf>s%l` zL0!2cK;7}PL0w3zz;NJh!^4KB!64=@gQD~^NKd*FzIOH}1{Fw3P^HQMdcYE(O49N* z=U*EJGZ7mc1!_DGObRXq^=Wn#l)@uW&GZ}8jhF0=^AnS7paRbcrUT1?VyFjL3|tK= zkvE|B{Q-4>#d_;?BF+5P`OwG>>dGt#h6js+YPNEqy1W;d3S0_`ku#uf%qyTiEgypV zhVuzj#(zLLiu=xSoDEcSmIjq*OD`|F%R7LIus7%dN85%~HopK-TMOz#Y!fKvj({-5pa17Y6kZ2)%%0dd`9~*%ETBGA z@`5td6;uGdKxHr)6s0pjC9n-tLT5oax($k{$Dm5{6jYDA^R09K5`J=Oo*Wc~sX|cA%QG2dJxcvW>TaD$ONO7u+XMc2j+JJ_B+Jb^Z(UBEw}t z8Egvb2J8Te`r)85Uk|EBwt%YXQBWCQ1eNh~P)vRSm2s#qj=eCTnmQV&Qxyx8{T!h0 z-~X-1OKK)sf-*23l)@}fna=~|Xc;KQy`XA;4fKF7K-D_pS7(1}Q2R533cM7k-YE~N zw;F@$g-%~N{~lfjGa-kIz#`x>P&N7oR7qm|=TH|96ho;&WtkNjs$fYR)Dg%5mchv|Kt3N;v-C`1aH8MVAyXCBRN3Tv;nB~!Jq<|2`YmnpfcPB z%J6Pb0UQLy&}mQ%-UAiDGf;uO1$`y*es>nafKrG8>Lv^V)#bUtz9nYhr2-qWfTD5$ zsADo6R99~URf5Z)Y8FZLLD~{se<&!&CrTPTRD;)|)MhgC?TEA_``#)7u^=1j#3R!wvWHtBG26$g6OgQ^ zd_i?Jzn;+xKgD#zBi${&e(E5k9A-0<&qT)AiE}4p-XzxM%-<%SFQ&);z~oBd=;U*i zhbh0j#`tEGY7lT%o{9wZhHgp>0lNt30E)M98iruX2M-F#*$i8hriL`lYFppo`4%*dp68ST9M#$56p3%7Lm{b>>u{B zxW*1;5sZG}$<3Llg0X{?cr=;DVtow(BxbDvb6Z(Eg~2`;Bk;Y@ zD;a=8{>K=fd`JHn^LrR~6SE{G@n#^JW}FxPcOF-74D`1QHn8agMu*W44WV-%IEbto zVx&52YoT&K)lB2P7gl^!A@P)_G5FLJ_(UA^vFEhml$Sm z5zIa2|M-IU@*9=VnuU4Lepj<+q3$+aG;k}4Er59&vp zq3br|Bve&DA?r(avOb0QqhTnRu8^#SkDlg0c% z31V)HG3du{7wY zobgyM!n|Y!*?+@$O)@OT^Og6UtcAf&Z|uc~@k{KP1PhH4lfN71ZJDe{b9^%+eeFP9 zAd}7*SZ*0CAfuSkFpZZR7A)Z_O2t_b@WwR0`gDVe9G z1eI`-T6+nwG2<`Tm~6~VBarIY_zruLC8Rw8IT_6JE-6VX3=HCWA(w`juVJQ^U?wSM_Ofq=L;qVSw2E=sdds_xt>S<%bDbT~T~GLQn5o{)1C+{pI0 z5Lll*lKJE#sZCsWJrKkE65^^(ykD4)L*A=ci^yC_bhqI;nD_1AEavA!Vs7@NV(zPb ze7L5tu??~ICx{O$NCsKS?~>eMy9vsY(+HP~qI25zeuvmVY)Jx1;2Y02 zh-=CGXPnlzwpqy>CR}v_gFoa9jNyGr1?yw`BhO2?iG;sXpbNc^=+x0>lmCpU0VK20 z;_8jP3iz5!7hL0ML80^7H97;`N$76FUPVY6Y5Do>rHD?u2GDAfe?9!%i^MX(cpZ{! zZH_l!>;pjt@<@L23`VDe-Eg-dslHXeD(``;o#Z)Y!R890V=Q^;Pa@c)*h)s=z9K{* zvVz=XNy&H}SxvF_4WufPA!H?K=JA2=hefo)N!@+~>A`78xlNYEZDKQlbSIgZ1aJ&L zp$YUhe%caLYUY!9F_NE6ZLD6v)U1ykNt%q>DWAxe^&ychG(qXgRmoI*K9 zYr#ZEAPgBcwGvgJw5=?Oe3YUVZIqB8i{ZmtnSmrH&ca)RCqelpPa`6g-hRt zc{%PF%t+H6B*F-kqaen=l5u`M!J=YtB>_ryGXB>b4>LN);CLXx`R_Nm%wgGv|3Q z@D`&>2{IbNUty2r8qK(pxrKE0DzHn4u1|pDQuIX-!SSy;_~aZmyc3}KG0|jWp&G$7 z2VaxX5i7}VA`imJBr8D-JC?x&vl}P7*>{3~4)J~x2479EyPCV$|N^sS&(UbM_ z_`1jQ#zTX%mLZ7xPawZI zY#2*&;@}DthLq+QZ|J*3_%QeInTVZ21bCI^dW&9P^!po&1;A}M&XmltkksFRY0Tn2 zt9dpI^cHn6(H@5>sC^{@`a5`Ge!d8oW@@>`(OvfsvdUs8YvZh_tbs3v6a$p*=Alqyp0k;G)Iv z)8L2ZkZ}`(?U40)P8A8V^1X60q#-{9BPcU=Xdk>?1pnM(kc{xZ$$#fJ3 zBNFs54~HN`u-{-!e`-GwEN=;tHQ1$;wLHF8_($4fFdI=nA?mJH(>Ty0naY|Zk_EIB z<4Fl5IRS*>Jv~84u6g(#2i?a>q!{DYlxHJ24SUOJJxN6LvReO-V_$OpiOMz5-jli> zhstf%WPvDOhF-~K0+?q?ZJAqz(~>w%Y1xd28NZYz(-I6a5_~V5rGhOwk^ez%k=A!P#m6& zG;%KX=fZJX0tmAGwFvS8wvJPhvHBNP%HTXL8LuXj@0^5&W+`qopq*M!^tcZ&i^6s>a4e<6x*QkBqgeXv!NuAh|Jevw;}c#pm*E?pKLao zTR8{ochssfnVF0v`7E*)P`uXaI*6!`4tx zNj;qWvOOCqM}88$$i5E*vxz;G@PT+;9vp;&fuUwtvwsuWXKH(aEbo(@Uv{G0jJ3R+ zmWmi%hi-T%?u=u<+zN2s>Jw~8$;#dW1d-Cp(3Buv>0eZMjiYR~IVOwe+31%olw>zS zjK$dmGSZ*wYsK7t7<)!3vamN8mWq?jG|RRdbMwr`a007^eh@(iP_Ag~i$StOa6Xp( z_4FqyUSnV|gKZceLx#nvcPcivVXmtM_R`~o6ht6P39<)kRjBy@_Kml)`GYP9BLOfZ z+3xXy%ftRG#_&h>*WpP78{RcUSJ~(*NMvtu9*HN=8f`O9ni73ctE=PHG+|R ze6m&N#AIf!1GXednD@(94V!IEf;jV`bznnGak-;jkGLwL>(VQK~`V|cCGe&9>>=E8S@SM`OHAzIW z`GV6@*2z(DB#8~x(Fv-v-B`1!VK&&1gvaOv_E&UWQ_%rSkBL!t*$fJ`b5?1vhN3BG$7|>wm%<* zC}PDq8HLl^AA{?0xW^`CV=U}TW)aLKf?5m?Ca*NkwC~6Mu-^j1!RUt~&(09^jg`(u zQcMr6WnAR3>!%FCw6XOr=+@W2hxn5yr;zCaob)24n4a)+X_>F^Usk7@EU_9!q8_wj{?`-@;sUYeDko z+JKhlWKh^coiKEZ3?)xds>=8h!AU0YB!~7t1i1?xzs$ALEuu%Zl5ugXwOUhh-SiU? z{2JzFV|RlSfY)_{#eF!hY!TLTbXQR$7J(GQYh;4hX${v9y{g#xhD}LtmD%qYC`>A zjQvsqot!x7iLENu$m7@}nTq4cB=oP1w}yuQEl@fH=bNFoB^U|El0`gWQRt14A7oIA zbxBt;tcvkh)c-$%zsq_Bn3{}JzdW*@oVf zTpy5VPW*Wzd-w$!qU=Elmh(u`Q{yhwswq(yz(80JpKVY)gSoU|F#_yCBT4>(4WHOC z&5N_k%$+6h=jd-Gdr3Beo{e5L=2H=5e-B5{WBp&(vK_#t#)S78s%EmGErA_EDK2vh z$Z#Q1OG+>o&)zlefB&Cd{)i9BZhVx4$0!!)Pm~;GoIstfHBSX~j3kEk4aakOdV^eK#0}7H1 zI9fqtCT5Q$y`5pb7q;4trUZ-0ZaHk6gMr*QJYe0w01U=PQET$)1a>TXdCsyK>d84y zM%}Kn;RhY;vB1XQaHloXBx=5jCk=sw=J|oapXPj0aMQMYq2g~}xH9sT#Qt9Tu>$!F zCXUi1{GJLN;;DkmEv&tS2&xwE>BzqW zPYtTO-H3`vo|5b&5e>bfIQ~TdcZ`#Y?C(o}Q{b$S{s2x^6mGHk6-M9F3a#1L820}# zCuu;WNqJ9=(kiec0fgcGI;>S9qvSaEg7v`IFf|8)2arT`W1|@Ms$qkFRM{1X^GPr! znTapo*YQXw`emRlJSZ-Kq2p9^m9f!*?6P_I%3$MR~%i-z~V`7}o!N5rro`0s3V!^DZj; z42N-zurB1d)i$JKe@}XRC+m^})@BhHkM{jXiA?^*rYDx+bThKUx83<6BE%)ZNJN75 z32o7b>{`Ln4k{=qN@WuB{u*|IuyM~Eb~7dyP{Fdy6@Zak?7hnTX#X$k$Up!U`a>WC zsb~%u=zxQxMxWLjSqs!8gYy`u$G%L=6-}m9N{0S<0xg72d=A+bN^%W5p<(hPxB{jc zk;FvUZf1$B*KaI$MqxR|0x@ulCllkA7>a?T2?TMQpbl7ln|o*>jLb2%!lBoKb-&EA zIEqbFgPMdk+xtVWR9r)M+?n9nl*`R3=_mYm`s0 z`HrQz&BG@FUA6=oB)f1@h4E~7AL*e3E#(E)P0Qi;B5T!cTnk6#(A$n<$wbzUnC-Kq z&p+VqibAu5BAKJQ%qm&eY4boh94!{u)CQ%@7|DrJ^$_>XZ5;IVXtyI-Et`4-`G+9R zc(`rhJPG=12re=K|1kcg!Ln;2_6L#JDgD}hLL7XhLv~^46`NbZNE&us|>CA7EpJ1*)~{^noNc^P@>>xh@N& zA`D$3$al;y)W6m`*bZqDm?%V)etFIORh(BPsQGpyRfeH*_C5jn!my_`b$m!Bi5crJ zvb43n>C9YdI}#IMZa;eCLIju^U&r)w8p(FcdICZ04&GRcE4qz`FY~Y*Qer0K2InwD zu;i*hOnaU!u>1#qu@nRH1aof4T0-o(DE$D|e)FD$3bcgqsKod;uC5W&PvWo1{`BM; zjlE$!d{@+;bsxdYNDO;0Bx!A>oJ0lAU@R_1Q-T9X@*C`y#h_$3Y-dG>zq9F@3Dc4i z5FmNNT1A48{A0P-C&?DwxXe%=e)T@nPeIb%7MT zjaa;mQOS86H#WLfoAGO8njD93VB%l))ga3!(C#Ly7wCQ>i`bNB1atXWlU!%5A~o*8 zGoMmO+I#paLeQsS>ZtY4b^WyY1hl*$(mK}gk1$x;fT2sw=SV{RgNS}A6Q?lHp2>DN*<>v6 zSF3z-o$OvyhPPy}f%VNee`u$;nuofow%8d?i6rA#+s$~2$2WAPK&K09;R$3f!QUa- z&Df6a#jwXV-G=_TWb40n_TsDvhB6SfWE1Og38Ec_0tg@lWf{Q!?*x93Qb^{Y{2b#w z)HCRnGFHpL;BxFep{x@LW}%0ph`zTa%90$GO$;_Q#Hb`b4kfWM5{k{)%}GX#ccYG5 z$tEko6hk*U%^Joczh^8oW_=NJxpfzKST{D45m*pUKK&nIW1uMy8zeUzaPFoV6 zz3~r5#uLmP-b*vje=6ci3j^J)PgYUBE|y43tNUSW{)Lf&CMi8$xy`*eA(|PA|rTaC*%yq2%n% zZB7@3a9)Jt_nZW0@GSA7DEYyY7Y9YiL~;WsV~9KxQT}FQL+~rvZ@~CBn)A6G&o`7} zzN6w=X>6>;!8tNNEtb%!jxEVqO4u8A`f|d~@^r_(w-lTEK#$}tN`Gu~Fv^lS&{~_U zqOdOk8E&-zwf2Or|BP-gvP;7HMI7A2a2k?2Z~6@hUUHj28_*;9c#3Yg=&Y;dy0Lzd*R~Ml@h#V3^KK$O6@0J>f5`fgRU$H_O3V9Ume-Qtc49cdxF<~Sr)qCtz7O%t zg#<}b(@RX!#YkS#!u)3pa>f&>>{+TNNlv~G$S*DXH?zMTm^-mLH-v;?(>qfrAKbAi zUs(@Xv6@;}bVj!{eom3XWRIg8o%il=mL`254VFROwhNO+sRsH?Zv-OMzZN| zGMGvr$E+1U(p~{Xyn(8%_i#1g@G8-lU@Qp@os!!an&aV+qqoRzlgpOGV`!G-A(4?h zlko8tUzK<+W81q7hlSX*mWU+bEXy8jF3p->yePKDaVwkXhqB}q0mY;r*1}MH=#K~O zVc5G5W^S4O3bL-n{>)a||5#hivshQw4XDXOG_{Gofo=E#RzxYJ46y)T;ot>^1IW4v z!RCXdW;mCO!)R-4RWlZLWBWd}4`XBPsY1UHpKFWH9{jh$$O|&~;L$Q4FBrH1eUm)g z^i~SZcVOI)#tO|Nxkkfo!tqns3vD#t55ZU@_NfYseY^Q3FW3u1qf7FGO*orRy*Mro zg_Ve^xlw=Ly0|UT_rgN15YeY1!+-2JmBCqF(~;4F*lBFzn0D~n5MU(sZL(h3N7k(w zf52{0m?M88F{Nw-k%Wys>Ch9Mmc9Y3+vhPVLx-r=u{j_9Tmt?Ai zU~HuYUJCv1uqwGrIl9qX#j#O2Hh*EIm4|Z-eZ?^#sX|og2;w{${IpEN2M4tZOz52r zA&Zz=!g6%{oMIf^>);w`flVNufAbZ>Av9^G$V0v5Rm)I}aYv_!eAImT|$JohFaES?OCfUyn`rlo5N#;HQ zc>lxTI(jN4kv_C&qcB&P4PP;I7z6)!IJsmV2RcI&Oclj_y!*i6*;)VhT1^#&IX#y~4%lG>xk} z>pBOk$+8$(y@aVnJWXNh6an-g<6!Q(sk)Sqs>b9neB6PF6X;7)giG(d=*L7XEXLq) zoMZ(b;xq&Ap9w&JP=B)XyH1%ylz%iaN(zEK*jmcN7aE9ogvw;%IEaZC_?*Ic0_G(H zA+?(L&1Q(qj z7_;U%mcoz3fYcWo#Y=gYWF+)-_Pzph9Vx|nqi!eB#>34p(%z&xB5O%6DLTE( z=5|8q;w=5okN2T)d02YpKK!*pLGluXF{J$rzB|*Pi7;}3wLBP*%UK|I7Xoj^Ii-Ix9 zJDf?HfUh7sk?qTCj7*2j{RH-!ME+qe9(pS+p~7}bVp;+Nv9pmq{qR?c;1hY-SOLTB zjdD4Pi<4SrK;s2eEICHkV{8P0HRdGcVqBglHO?iO$abdDojsW|S2Ki7%?u;JF0hsx zy%FpU2UFe%IIBY4a`F@<%BC2Sbis+_ZvwdpT@whxFXI_YTG(7s+V6uo--%N<)JoRj ztR-zapZ2|h?Y}`uO_Gqz)Bo%=c;P8{SrvlhqSEce2d4(zpp^iR^olOdd3!64e3l7i>xX^6;6&+!*%E z!IPvX5zc3B8SFoXu^{XtZzGq=l(FEwfwVz0kAK*r)+GR+dx`z~}-LGSr^`MD3cfFc=}3&|w4 zotkcxDmJ`cCEK!OeI2D{yzj!$ME1Q1UfVe^Zr#*OKVs`CD_1CD4=MXGAD(#Huut+G z^?T%e)AncnKix2Zy#>%Y5uCUSUqZW4mkQLPD5++%vv~pU8|ajdbcWmNC)1;NKj48n z)b%H_OF&iOWN^(|Q<^e2S?;9^BnPo8sX-X&c<;dek39Vdb0~Y_JM{5;JXUOHJ3mK- z>l+?tv<9jw8RuJ!Z>^+ay*#xmZNZH(XQAO{Xpp0Og7vJt4u^|-rrVNQ-WUC>9RpLv z@p7RM5&z}2YXC;~673=aTFkf*+56=b48_7wY>HhNZ9cq7m31unsnxv#%~e<)B32DUYN+0gPuZKK{A}P{wK2 zzFPdmrXY)M6@mR?^H4f-E*aOQQyQ2zbQpD#ur)Zj?HN#BI$}= ze8vH^a5Ms&L^6KiU%~Ubelb}Eit2&^P?wX9rFf6UTu}meM*wN;OiD441-K9f!t(qg z=zgH&6~WcOL3GAV30jhX;L`A3(Du}49Kn(vtp6(N9d#XGU7LYulN(i0n9pMG!335l zL=cW?J~A=3j!fMck51r`adZToSZ1#XiIk=^Td?~9+Ru5oYbl3cf|{`54Yc*6_VtK< zIgM1%ZkwYRj84t#@}$Gb4j5Sl8zazh8w-n}y(ZQo+4vyqrEpjYY>K_S!O?s0wXrnu z42Mj=^u<&^BPcT4zVj4CMe>YT%aLoc0Js6G(^54(RGYO8gwl?8zjR{!fc+(Hq6#^V zhulx-X2fS2+HguJ{<3ykVoqjc9)qlmZ1l^);Dd_s2Y&h!$4zWzVoM||lC~9KJegP` zSelx{e-lFMA{IITUx&SlH5CF}Xgy#OwwsuOv-;VU(9OU^?1F#Q#)$7Z}g z0d(Z)Yw>oY9(<^-nv(VPprjq^NhpJ4JM&w~G$lt$vXY>>p}R=;H%X*t-S6Mkh|F{>F0&~W3pso$ zTnsoGLJi-OoumTg>Vi?pZ}!e19@hYpdW7zDOLl|b ze;#(6!NCQni9$mSVq*auEaW{KYxgNfcfS?poA7ias7Elg$V16kF9S+e^8PO@NNSN( zIcUERN|s^&k|mOl;Qanw&&i?;*{sB9Olp&tdPnkT13#IEm01K*mcICkvC-_2tj38a z#L3WHBIasg>m&}FG0qOn#cjXVr{m);B{y|I+wC5f@W&Fn8AcwhZLG8st5-EcON z=MPUrvL1%Bf}mt2C0S39l7s=AXZA>n@Scb)|Kpiz4mF?J%GDL-TEj{!vlEIyj(Ye> zyR)~H_WEQnS;SydeKT?l!(G|@gGOq|Q3`{>lTew3Zca}iJ1qbyZwQ{;m%FST>NUv2 zFA*%!A&@thWb43sYRvV)>sB|;eyQsl@qwF&Y-Vj%Pb=w!l*fLVramPH;(d)V&pQL;y_e96n=5G4r8pghjYr>2eQp<0c|0WCcNimtp`scY(%1K_F#A( zy2S~q3JmqPWA%bPli4!|r~j~)+^*9*zOzfFhcMm)<&d%ngM-=J5=BWF_Kd_p4)8H- z{YB6-333L(l}ko|#?Ej8>xP4elta=48zl%P0sAFWC~+Xn)rJjkDikO2^3x*f5XAQ) z>im|C&2W?v2a@g<1poNHYaRg?G-q0?L!e{8LIkpmXB-aRQPNkGttll~01N$ac$qx~ zth`^a-9&%EZU)M6spWb$eJA29^g~>f{=!L90*gX0?U}oTLK$!f#_!@JwTFv?Qbo0r zVB2+(_j{}-AlQ67o3Q%@$DinhrmQ_+?J#!6l2my79tbQgHNK>=F*6$_xxtJ$E{uWo z1T-6`S)uTkoq|AXs>v`mh5Z-FbXf4if&3okc}O`xg(Qjbv5G1^!Ow0~+w)$A%iuOK z$K_q}knufS827GAxN1&rGpN)f%nnCaa*O@TX{$A?$Aym_gy$v9>^=I4}o=!vbLDKh|Uvgu$}pkQpj?g%i36a;3#>YqxQixN?vk( z;Di~)RiDKakQ$v>J;7ZD!S@7gRiI3HwFiDAg|YVsPFJzL6LpvLCH71n8kdG#N&IQZ zBOx(PBc^ot`u_x~7U5M(omZj_^hmdiDeIiT_o9sg$X$H%UP0G zfsrjZx`Fa30?muD`PTg<2vG8jx#vc}X7=r5oRTLGb7=_vkR`AIy_MJtDd+WTYEi6d zf5BctHa8BU(};Wl0lXogmS~jr@RK|OXh*mFq@V@Jcr=}~gZ;_LBpjL5Ac>2xU4y-I znU4?lCAroP`>r{>`=uVbYhXLAmyHRa@HFjs2}5I`R#FcKF{n~qHWg$%kN4?hycA=n znOi}yBf&KUa|5~)l6eWnzZgs2v+pX|UctU!2I3<-j$0U8*-4Q6`E3dUh>DR&WKq}* z%r;hrvFSLq5AES6Hz;rA@yit)u4Z2f^mY=^XHg7GyX+Wf-*P+ZdT&E=nLYgK0|Dgb zeOg@nN5zPw4b+t(!jRI2z`9U^w>TYd=dT+~JmJ{~-7yL52Ksdg(l4LLygfnHql`i5 z_vZP(l7c<)Ni?*6O+6(ME`h!cWZ{P5uu%U2XAO+H<~Ru{4~V=B#>=2{g=`mLs1!~* zu&E^av#iP9v0fhALYDC`;3~MaZz{wgiIbh9GiRkZHZJ%0j?+C60eIU6|*=~!*jp@>w~K3 zJhXeF54v;W20vU97{}X~xyl4ojAYZm_7D#jF^NiAp}UC~-V^wHe^270IdjFZv5F*T zGj8JH!m~bYY#6{=b}HF|dq*-CKam5R_m9MtiM8B1Z2jn~c@|g>Yv|&}`b3f#z+4}2 zFhOSYaAUIfjbq0ZnSF6^a8>53Is*xK90bm?0Jaz@kHY&7yJKw& zrTUJc|8SNbrJvSwO)$Ki_x<$T2LgA zpd*Q3M)Y3O4nZATYfeDL2yT$g2OFEQSwDe|@J@-G{J%5N7b69TdIgR%kau|S!jRoUb8^m_Gy(NJLwPQsHyy@Cv1cug+i_ZVlVl~5oWuI> z7{-4cCM6?zauLLA90e1=RG$AUW67!&*-0u<$3P7IB7j6Vze@=cDl-@zhMj5FX!qEE zgh0ZO+*Z{ciG%GV`ez3VaU3M6)I1m{iNUBw*9B@XsZGXlVB-txVeK{@2m=v4d_lu; zKl($G1Kr461(N56djEp+vF2xrosRpu?1nNq&K3%iMIkn~#Bf}mQBYPA<5h7U(;BTm z8E+zxV8-dmWCcBPi(or4Ul^=Mz#lB=t;|X0VC$QevJtFY!{0@0HcLSNpQDB+q07zW zT{cy<%>OWd$RaJv`vx4gAiE3HzdBAQ5^NUey=Gl6NAEG7i@Dg8bD;&SdB1dIJ{&6GMa>@Iv^$uU%&HJ%dK4CsL2iQnWSK=b7IVYe zAsl1_%afR7G&Td1Iqww+;xmafC(wglJ3{B#5EnyZXcWm%54C|d$ziK^O%y^(CW2gN zYZpT_>J;mR>?F3#?2Q2Xg;eG}91M~_-!Y-2X9xr9DZxV`EQr!-XxdAV_i5B`JQsPt zj^RLX1Q{+R@K`v!$=YSgH6Kj{ z8cx?k`bcsWW@ocLMSq0m4K$P_x^`B-kHLe-@f($W&`SX^V*(um|KjG!t76k?=`roK|GSr~^bOR_*9jTD;5QbYwQ zBEnDwq()E#gaHIpLY0mb0SiTnbQ_=)-_O}Si+P^s{o{A8YjV%r_bK1=J?Ea84N2Ik zz&g+d4G2~PCMUpbW%ai`n_saxSCZF*{7@8-?@<={)~r5*Z!Qfs_}s0_b}$?y{zxTj zB*}^_0^btO_e0*>n%FDEZ%LbmK+0X#I%wQRjFYI$J;E4t(k*-~2V(~at^<+3GhY)w zry(8j`u>xuDI_uk<@F?&1_`B57WtDPA`e+#%K8Zm=R-ybjwU#Is>Fy+4nXuH*lUJACg#sUZEmXW)q7SVfsUDiwK-1Cbeg>KKBGZx_(X0&ud^&zbt`KWBSvP{2 zA^;gn`Mej&CK_5rnyKO!C_V+bCv)Br-xpyz7=Ygxd|1G4SCsw{a-Sw&_5!8`40v&t2)zO6EWa|D&pTJK$n+m1 zdjj?E@mU&1tC7$`=FYR02j9<_7wMt7P1Tm#36?s{Pb0*8kXjpj7s=%i_}tiwe2Z-) zFrEu~&*ZQAzJt-Hl=L1G;hc+oxqF#CC~Z_q_(m@C$*8m_hIJ&6Sx7cm%C!p*xD@{`kxy zslDpgt79?RuMJ6^1#cSui_v8wFOpAglK&clwh$)+Y>(K~#UW0lJBZTvl;9mo_X%Y? z&fFBvYj7^|E$6!c6-t&}I5rbhq>efs3(#cj+X22hz*+)&Ac5MceP#TK)KHc_;QB1! zy_pyd#pqYim?(TsCJS-u!Z==UJ#ny-PkW#qn{yHR3s_I!IOKE74IfG~DNA>BhY@r# z{yrc;IAzE{Pvj4RhchP+ZVETWIjzFd^UY9}km;mS;Ua8d1U+f^Jt^ zv7aY@dMTBF?;5gNEQq~+WJP?0r}#J|GiGj*DU z@ks*SqeefG?LJ14t#S<;6IlNRx@W?Q$TV2k%ACk%bT(@#G>&h68-9k6UH1{s zuW=nC-*2i79Ru}FCl>2KTg;&AaeSEUa$?*GCfYLBO%#wXlr1?gL*S(fqA`&VP=c0Z zdj>YLusf$o)TW6=zGv=FjtTgl?**MmK_(yzPV;m20whFeY zP>u)6+HaIAf?%!COQhLE>JY3cIwFVg`z^kPqW6wczbc4NTd?76pq+Th5LF&J8gw{; z=8?&(IGGJqB1_1w3FoWGHj7^94~+u|m`V~K!s1!h!vHSwjQMpW^-P(%!`dcFJ6U&F zA$p`uw5_7;1Dxc7ishh7Rxsiqhzv?8TDeX#H!R==1=3in>k@2IfyUGv>`_# zDq~Qeh|4yZR3ne4s4m6iJzVwyUkmWHX1+7rO(f@Zae%A^o5({#v?lEP=w&cBAKM?Z zQCF1pmw@{*{x=1)=TgA!hLkrUqdtlY*jo*?g$si$lk2h=h%{!5!lB4Y9Ej9ptPP-& z!S8JR3mR+p*MMxYd_K=uK7gDNgk zJ(-Kd(NY}!grloC??D0;b$=xjG?cmd=$$ZNfFvw*Zj2ruOXea4Xd97p zDE8C#@XxTHD9LO}Bhrqw;~FFsFgLJkM5`Ut`)D=R25|)8Cr)XfBK1Y0ROcynJMdY7 zl6s>-vK}Y3$-FWd3`BVp!P`og5pdUomYJb;+k)e9` z8bxA93GxGTt;jfzQgr7CNKSm!lm7{+hdPmk7_ysBupA(*heAOB!N$5%~C=#iP zvwt{Bg7h5d-(WE>nN6l?M2Vwf^v<_q6%4td+-YdF3RQNcN=?;@$+sM3qLyo_3Z z%te}za4Yh-u0&tJW;g^kFt~XTDjm$#u#3_*5u5c83N^O2^#3aSzf3+N)v3OU*Y=qP zIFIwUaIk{Fn+ftW*O#+76N9D@QA~;5MbP7r^)(>;ygHBpndi=id(5#X^wz+(7y!O{y6&t zXF+PemcXa5YXHErfEIZb`;mZa4oe$!$A{oQNzc76QvZ4ceP4UbZ$=NofT>Pot{YB7 zPHS%-W();{$b0n7W{wXONL%I#Y1S8f8vZY{bgncze;Ys}O{&j8<+2q7QFPzRGkjPs)<^xPEXs&GdrfqW=_oFwTp!uM;5!at(D`9`K^9f)F zl0YBqTLNqc`nO|&JiG8K(v&!L@qbp!D05!|(3_VpB4Gp*IR==LhVRrC zMNP|d1SC!={Z2AraxUQVWpfzNiviGbgLPv3bam3PDJiO}-cXez5#|c_A+oE(q)f{^RJ5B(J0R_>1$$ zI4uvx28?a-)sgWgywwGNEzZkvH~H2OmwtJdp%gi%Nrz!qiX87#yy1kKO!tH`|ClkJ z_HK#)x^OP>ZPm3Xa$e1luYM_L&_dd7GSig=*OL5DjIS`i1cwvos1X3!1ZnB`c^xv7 z=#t;mXLvAqq0R3;2 z`kFpGiVPRs|S707dN2BO_u4{OY)pxtVi3>bADWZ|_>#mv zWxbI)aOqy3L68>%`w^SlfGWn=3m`8OG>V}62@;T4=0vJe)d$LnTqnstZg+*zAOiH@ z_(4l7iwg`Mhd8N8wQ>-!u~uR?8F!}=zu?rP%+F!{0Q0M9Cy^!qX-u$301^3(Z1b_! z6_EW{6R9eR65sYY&P1XWrJT2=1PA2=`3l9!x`ErMLzyq241~eThkiP3Zv#T)0VSFP z@Cqc=n!xkO`U`?TA$W`gMowYxt;FJd`b=atK_;;)KV_F4Q<}=)d;s%hptve`lNA_O z2Iww;bZ4y)^H<2U62}(U;?i~-$2nlK0ZFuHZaY4I;W*B9K+5?~%; zGIJ@g4D>a4JPEHNm2o=~u5*K+65X|$xh|l1gY@RnJOSCuwTK-$ju2VoJu>`-`S&>< zb7UF5Y2TNlWVr@pTjifw&l7AI>Ag#!`^wQ&l;0rG8Juh*-DuKYPQz@$a4nz?0!HL* z0(R!Q5q8n66~^XEcHxUqcb)lHu|K0USBUo8q#MK{Q4e%~QrJspFy9%)S1~w6vF-t= z1P&I%+Y^pd9ONYUbmq!R)&vR22Q<-M*b(^y+ceI9#JR{g03C*n%i68}S@yd&-f@yR zCl7Lwl>jJ0fRSW!fa@dz4yS8Y>ZU)5@~f9B26n4C_pSh4Dj9b~DV9vfaxStmTYaxV75HplDe_wYO(%Fj##4qr zgZQ+Juiu&600Tz0EwdlHUzC+!u&WN!DqdS60hbdv1>@cZ&kdCSB%sJ{){3K?1hvya zJcoU@0ra&bBLYlQka^W%if(eT-9mO*T<1nF66Q=|%p{BMT8=4_k=zMB=Hxm`y$n8= z3tz}!jtgY@4*{QId=O{5FlXrEb7{tWc+u-eFYs&?P&7{VFbVF)q;!{k9fx zA>lrT|HIU&DYS%;&I4?(;V*`xF&n#yKe}xMJ|;rXS;ixDX+jXGlVX_sFtNxkj(HTc zCyuIOEHW9qX#@#Kc?=S9P@nk=jCrZcG6gLLA$;Zg78S}kxo&p0qbPFt@8%55bBhm~;{^9(jJ_(8u zd_N#tYC(U2_!o3f7KIUC{*h3!6@_S&d!ulkuGq<(0UPDBReKWvMdoS=A^bVM#w%GY7x5lO^<3=MxnWk4p7aX`*v@B-ICfVs|C z6qfD+v=cx#D2?5j4<*QMGLOLVyYxXWSeeB68A_RfjmRPYFB<*Iv8KB1IXkm6WC4(sl$jsQ7(AHRIT%dc6U1o4^ZDnNQFb z+CpRKlwYx#1|x^GAmVE%>#1aa6uW@jrc0)Isdh41OohgRP<$8$MDh}7BpH}wIT@sp z1Q9t6Bh3MvN^mFhJIJaH_I;QaSqwV^2%HCBIq)g6l=Z7HEK*tl)Kh)$5dr}Cxx52i zOQG;224g|I%SRL63?Q@07_9`xhkT_fdb8B&amhAfy z=M4Jq0A3`T`F?>P=Ne7c7Qyn6^=Bx=X;2s0h?F*bgUvy<8=zL?8v<@8@KI`7LN**e zzNSR=x$c<_L@i}>B5d4JzkiZQT|>Nhx!Dr<6%bkk_mKVD1i1#i?`7)+Q589k^X_^F zI0?}99B+_WOM0b&>i1NDqW?B!8_jw^#=_!I;*7`6O9J6uF5)oQ2Ccn7cb$ymv^EP+ z;=`nE7v-1_pa}pKxd_O3GG1!%;3MccX;kDUy7f73!h*@-`fnMl`|5QpQ(i>10 z0ks@m?*b-Y0ZBocq$3jnX+^N;X!bJ=D)Nwk(*YZhu~6I+r{4hf5w-k)^C3{Y2gfxT z%i(h%td8J(IIKnEZ!pQ-0#rYmu$iAluk9x2x-t1B*+-H|3lv9VPzyjG5bZFaS`*|8 z&c_0#D#j~W7kLj`kpk$7bcU(xuvtadhv~Yk+3|Y@KsR7A5IU6S?{p<-N0=G}6C%G7Gy%#>8Qfh-a4tGm z13l74G?2{%nhk{yaXgxg=V;*37;elKycXqpQFp~B1Zt*0=9<$t^Ua2m;1F3(3$&(s z6(IF3a{G*Y29b0WqsT1WKZB%CIbK574yI9%m%`XhtGt$tGmy342;UyPeAs*v!0mTq z3)j|@%TW1YiRRk7FDT}pDZdE;uQA`AHd%`EHz4pCxjqBfDx7v9$PIFOo%238+=*^Z z^`miY69K;rUm|x&Vz}<)mgrTddkS-1Cnwchi1VQYN`tshbf><+oXC9~G$-g7GR-bm z3?8KbD8yPc0FtrI0(2b?kzYC10C=1xC36Y*{8bCFh&at@r?0$JXEn}efJh{c>u+&3 zo9p)h)ez)6xfb~i;|T53cXi`=39_6ZG3dQWX8mz0GK1{iVQj|HRx4g#*|G*U3 z-1`!fb3k*R$xYNM48xK1#1y>=K7z*VG7C^58~&@Gdnm};3P5!JqTQMY@ks)o-=d#D zxkOgOnuw>UE!Z~9EVVWG1#fTI*-rdSN-HvrWamLlNf_-8mR|VX2hM$rCrH%!Uww6k zxfWn}3;XvVDU}>55L;w2I9|j@JL1nEUxOUZ8NMakNb)Y};2#i{;dm>o*MiYyBz=;` zzRbBu4ginD*o5W5^0T}7{2#f8!eCeQM6M`NZf&7%B)y&UBP2Fh=UULqSu&@7?~veP z5*c9dN(JCwmGntE{!LO>@V!U%$AhDfwp0Q6`w;bmY~C)o~WZVGd0 zI9r5T4b^Q+GV=)@MB+bcWmafaF9Xs8i#M5{P9h>J{DbWY3BAI--S;S50MhTEP~;fd zeS~2OS&gQASp@zVC#ML!(crTL=uc9f9a_33=q#aR^Av1Xz)r^Idjg0I!!`q3k;1H% z`>&R(C(pz80MH+UM}YX5Oaju(hmd=i_SzIceGE7eH$flj2C56_Bb-mfzMJk|(fI&y z)d5;aeFozvn7N|(@d9`;IzIl(M{`et-oQ?u1)%W+mo$iE8)zmaV}N)eDpoIl{$h*S0BTk6YoW#(G}rW9ilfQ-ZGIvTQ-mg6`X zi?o87T=>m2=o#M(cX6%1p(S1GUfJ7?@g(&o=>SF?yHt<*?SSh`~1(P!MTI zS$09ydCKvCAZ;i~ZJdl_{UMGUtBw4qoCV+xWHgvYd<2O6oZnBjdBpAn^7DGkfBhx9K8#hE4?> zikJi$&b7#gfGMpzVj<%k7zxNGlKTjdHR**KB+??92Q-V{;4hX~_l3S#=$oq+hozfA zHv~s7C^LCLeV1T`ar7y*Y=+G?GJZ(`tbs}wb_RY%uy%!D!%1Q`S)al7Mb^Xd`HVzY z;G?7_AtAlrVw4FokwQ4F2ttt@G)sTh^5I|(OgsZjTe5Cv_?B(=0g}l2G1j*;zXHbk z61)JT6P=a#iY4e}vV4v63-}Xpv)%_gkqSBe_aFZiUxR6u9@^z6pj{-M62#!767vlh zTM+PX&HOwW?FC$C8g2nuH)O3X<@krAKfUu3w&R#P%y{46SplF~oPWjoe&6n({v)Wx zXE+jB1ZByJt{n{-3-TXuJ{lvD#yIN*h=5%2IpL!d^Dm$$VmEl(Bfv`hcGd=chTk_} zN2CWfNw9a8k}Z|LBp^};v=u?OU28s#>oPd`mSF2R4^=j9;?(Uo@qO(F@KXd?qVzTg z{C!s5;;2VieqpT~l;<_L8PO9__`0dd&fwhJl*K1B+kFCmMV8-cCyykfdNfW^K%B+d zH-P&c)ZNiL!u%!1Cj{7yO-De!4S=;|c$VzW(qMG~8j!c8{#=hoU&L$p2HP$9)9;O0 z%)&t|4!_ha`YFYasChbd?MaZAFg^~b*64{0%GSjb=z)N=16)A1ld-||-`Ew0na?Q0 zZ5S^?<_8VYGPk_Uzn!ix#kXcDUnV*eSzFAQMcl{4yp}DIt;_|a1nsdFeB+5d0h`X0 z^E~H!$tQ=FdKB}6!G0aPviN!h0=*Dg8tmiH6L~R8H^EK7inPE{9*lb9ES>TlW}F0w zywN1U{1wQ#!Q5P&_Y~4_yo@U5;rcZ|orFYrCx3@ca+t(sYG0nF>=9fq#aFUHH6cYL zO@8$25l)><*tIu4RCb#x$_fVGXy6d(kHfzSat$UMQf`sU=#K%^>txr5F(7wzHwUhh zI4Q^aIFhUhn6jJ)%kRqkisB4PRe~dmOxqKrlx~hmuy6wkKhW!*8elizn$WK&IHFkZ zLyrbtV(J)BOBp@P$H7t-iM4{Efc%XAuhG9FY+WTlZhGS?G+t)1499v9{>A)iF$7Q; z)Q{E8(G{9S+LJ*dx-SuE7EH8PfR^@gcc>Owf$w%OJf0GlLRVy!AfpMxJ1A3< zvKT5qKy)3$B3i4u82+Y#sxnp~iy^R)1sgND&W&y~fCF+LiXU;^N_*#B5_pSV+JwK_ zfE>blD$E8XoW^XAujwFNjNbypx19!QUeG;}1|r}%gRP745}bX++EHp3gu_KR>csj7 zk{v-V;H)AUWtVFN6uC=joKk1}?!!lW=5uRlzS2^?33J|R>fn(Kp2+$CA@?jsM*`Lw6evacc==D+dN|NoH=x3MB%8D=l+KT#JoE=ofM{K>C z>fjI#$1xv^(|{ZSs7NNx+o{bIm^rRsa*;rGDXgsR!skq$5gGKtvta%C^;gt^7~}z2 zs=+@rU=WqfNq#6Biu2PL=2jZpaoqv^V*sn93^p-O90-o7vk1z889kou` zaA!+oCi7+SIfF{&Bwj!HfW8aINhlT84(O)zv}J4x^?$*JgCM0SUqE&;7t8KmK;ZtI zyExjx%57K?iRB1WFz>)jKnhcaqxkAd5-Ul%Wp3R_A+%K|>K36O#9*XmUz$wsfcSTG zax$((Pb3%h6uE0QOAdUasl0%I#XSl{)Xw#cJDHw>^4S2`iu1aZaU%gM zV$c)EbE$vFfr^**EjYfv4 zdVP$5BIU_s6d?Yg6howc2-c9m4+wUUweJD*khvjRjb;YS=yP^4U__z_D3YH>-iEId z3NQt`%FJ~Ted61W=`ElJ=Nk#)CP;HF#~VuLHFil7^wq?;A}sC3*(`MDs8dXRQh`!0 zq9oryeUDPS9B6OKq8;5Z!2O1Qkr-llSCHLw02Bn#KPc2;3)V*|i0j%~zeLVO$`bG? zAg-c+3!N+3f;R_POPI-o{%HVwOmGv>>(DDe30mOyCiY><@G^YlDNg=7Q2dO=>HZkD zgBS#45C%Kd;2@4)<@^t2>vTX#$7u$yN@UxNo=Af3Wq`P;C74Abd+3EFQ2q?i?a}Q8 z3v=Y(T-LM2Ucu-w=o@4313^B7l~@A3j-!Cw!l(*>HjrsRJ^}m`^ac@3#3De7Zr`uT zUL=%e45CkFD40SdH~~Ld#C_mJ>1~271zj?M_p$gT*CLOgdKQj{YP~{m@~eRkOpK=_ zlc?V}1k8cXMkscXgc~NyvUU#JP%_O6z?U`fo7uMGd}WdRaiRe$1L8E<4aVUug3Tjv zTa4F%w5&E#F|s>~^M$Nc!FC}D>>2>zR>z}j{CNu;3m%N`i)sJ)SdpHG=j@}juVuV;G(GAF?bX<(Ty6YXC-rB0ed ztw=X?_o5q+1kN`wHvv$^Ii47Nvl2h=V3)|4#oA$#n8WoWKo(V2y!&O(E45W9#U2eL zj*FmJPV0Ub5s#=$owel6=7~B=d(%VC2V)$cqVge6kI_vE&~(u48DtkUN_>! z5J#k-{E)tvrW0{#-E!d|k@F?$U=Q@ZiOzU!(w_j)0jCqlC?G3v+=zbIN(t66Swelu z`X1`+6rlJ^C(+G-$;tW|Y<7fE|0mRI5{T+)<}+x#Ed(6}QjxO+8?JS`qorAnlf5+O z0qqwHA0;^dfFSXdXfF2o4IV8UvaSW#e+*b4SOoSDISkf2h$8Y9L9c4_<-u1QO{535Q?=3aqq7mf zzRPI@i^KU217sL}gu{u1fNQPf3&Rcuq)nDdpBT3Dgfwn-3i52Pv+|rYnPUMqI@%Y z1EtxHLy`3aaB==84YwB%-8kQ;w05BZMI7jlVC;kLVJ+)2ve^QNfb^v-m9$K+0AvE7 zZnKyWXan8qaq^51*#&LWL0b!Czv1j0frE9eAelWR_yEo3D79URqs9O{ORY;1U?|l0 z0+2{S#;?%nN)Qv9V+J=d$|sUeoC=%|VciR0^5+dk7Z+i8424VdNO7`mt{IEYDXm{e z0=-0b6%^cXu3OOU`!use=v~8FImV~Tz@u!;)aE=dz}C=12jw$I9~?}>L1Bz~sS^qK zI`tg|ZHZ(j(o1j6AK_px=tX{15O$cbD?pha4SN|Rb%X}p1w$g8NUU)-{}+5cLHO?#+HkQ13er1c6rEj`Ou8xcvj}(&!*9_4hwM^V7kQ0w7=W)4M5H}>2T1B3nKovA zDRYMuNO8c8B!M9U*vCI(8R-5IbTv`_h_MQ#xXAc9fnt=tss!%Gd^o}SDj-a4+bGup zbZ-MZOBs>*E--tOS;vvZy&HIeO8+;J= zMRI->-QM8&r3AHjS9_?Uj>`dCk)Y)O(}|`ZiN|Du*C%n2>de2Pz4)mT)_~-%a(;xi zISFAyITl0SKI~FS<{|mM4w$)|Z_)&Q@g+nr+@;jN(C`mHHUqRjM*p=L6;@XsQ2XZUpwlVD3Yb zYY3ogy5VLjIIjaVJuo^=b|PKLpee^ZwcMiQGaY70`zC*%c39n z;rhDJJWzYHD*jT?Zw3o}DbYQyANkAqlFzqAt+s+F4ueTJ3`k2#@RkNDN07D{H3F!I zxwXp3Bs0$i`nUzEVPO3bLWYB-4>4XsC74ay5JJLP8%O*FRN!64I|dt<7AUTLzKPuG zX$vMXX9v;@bh-lTDQf{qfl!g7Kz^VYuSwW zG-Ggbe9~YeJ=w@e8kUqiGU-1jN4is!ShpF8akY&>@d+O5tBb);^0bfXJ|uah;ddJ& zZsOw8+yfIlamGMTtUDvkW26sZwrrY_lpN;~g)~pPMDdvzsh*UC_*i#(d~#A%>x

    OU)w{mET5fAWTl;_tR*p1#cbECrSo`}{+BnITk$*X{llztd+g0~TD4BvXBLc1P8luyJWqf74f`H@Wtd3! zr26vC@Mq$Qt7>bRnwp$y#HM;k3>&{vRV(SXeUB?Fa25T)zAnr>@YMcw&g7)@)Z_%! zvnD*V-wSdEXxTi-Q8uWoF(TeGQUe7Dj?3`;CyQqLT_HuvRW?!*JZ^}O#jQIw-5434 zK7=ZG40l{&d{TT`da64;*?Kd`Q8B1;qC3ew*po<8*joBpgNnH0q|nbVpBKpbIoQ#v zWSC?{l4hxB$KKF{WOtk=&ipajvCCy-q{R7_tU09})9qH37)PH_>w_weJfUG-Qj>j6 zv$&?CR@FQysmX&=J!#Sl37%NISx4NCyitZbAt8Ar)r@00U6V^QC_DzS=v!yUI80}5 z0h+yY%)yf!f8_YLlMJ`j{Y{4_UyfnIek_$Uk_VZWE(R9}PENHpn+{L7RsSPL&)~@9 zLE5@T8f~0pO*B=f-+j`~*X9gbCz=7U3y71sL0j{J7($77Dt zK~|{~4ttO?U`3sD91OCaeCzltIOlW5jM1KS^WGUpaxO?_-$~yK9JA|L$J^GOvyP9Q zR^~;=gIxKO5=I*%+zIhM0u__B_@1L-L}>TXY3ZIs>)79pH5EA%QJV@3~{C=jybOyLM~& z$dKBhX4JTl5;6YfN}&6so(ajZ?gVMjwB!VjQC@n^NQQ$7R<&^<=?-(##E@;)m`Ne` zo#v=%Au0CMSdSGoJ)}YvtK;^N9Km7D1W5zKoUtRMfyI|DAy&-pkoW79^M^@vr^gPF z+6VfJ6L)It5Zz&E*2j-RCOEAQL7|0;TJIGL9qfo0%H2;a+)1OY(?;mtVCSHWq*%Ex zSs#`T{j9v#m*o(5nvvp3O^i=VW5ribe;K58s~XLc{CmvsDbrFJ336+aW*wdpFEqO2 z;^M_A*$+-l&Pd7bt+L@673)b!HwJO@$Vd}3Ev0@bsqtwZuhFb|hpM(7ax;AnCC!uK zW;0WZ{{kg<3xi&A3)y1g59TjmW&fRtn{iTXe4MW@2YM2c2}gTAS5B)eUpb*yfE}@$pE+5kJX%!k+!+M7H54V0A5V|1PS~)N@#u4g)*n~Li;Gob^B`QBJ zvF+u+_WAeB7?_dnMSx zc8EJ^FidAHH4{|99%1kQ~AlWts$J8yy~H671`;@LEWD{ zaL;cwI1`$$pkw#i-Am1JUBjbl?OwY33t#-Wtjsi?Eb$~`#JYLXd5omJvoqr4F)#R7 zAH;St(lS!bz6YEog43#69d3u-t!(v-3cDO+wJI9+a!?-s(_Ioyi1F3iT39TsTOOC^ z`E&kcm9Tc9R>N9hrSj(L!rBK})mDVX<}i;BcZONpKMM*kgZW&2u^{MOr@=a>kX&pPUl!G2$|^lV_L{ z8afMGo$5H}hD0^QtM9hM=J!z}uL;95$RJNcXCZ5UL+6jV%=g+jL#?UpoR7mJvZg%m z5bMpJ&V(TIQl+qhIkGiQnsx7GXOKO2R_4FYnYhd2=bN2!gcmd$yzGp$!g@Q;1l8@} z;jKaLQ%RnTR3nZ~dhYspnVy%CUh}`M#hHB$I7>#QRW-UKV@6-5xkn_&r*db{VC#-B z^L*i|;HYZLnqr>lN16}&I5!8`TYJ*X_xd>tIBXp}v1a4foCSlrneGG5C@W`w=erfd zXyB~OtW0axJIs04Lhc#rT^9`pJJkL488R~y^ zFpn>Vt~ZxD_cY8Giz4q1S()ET*wZtv+TZPxAS>Sl5F zd4BVap{^U2cbKcA!+MbHnjd6s9qwur6c(WDda7%1ur)Tr^`Sj7@Qz4ovB{|(GuLR> z>`32M5{N{wYuAUCp(!>aB`Y%(=kD{a0@nVsuHj|P zgr}~2)}W`ZJ5KX-LRdaC=TT=4t6gaLv0&cg(`iAonJc`I8RZHeTc@qQm*9=Gv|8bDR#5HmkYMX+o$$y!4UOciZ9E53dEfQDe{gs5?PdSt zPFs%$x8RTE(?>>nJR6?pCKYtF36BY}nsp3MahdsF39r{a!EMM}3JCsl!^F9H-m@5Z zY4N?n@a`f#m_gmsJbYA?&j{*nK1vQRZS@=$e!ITab!GU-U}rOVwJ{nP*8bJuy+f^}Ps4v|+@)=TkrXr9 z;31q5n~{|LCIy~UUZqo#lK_~``Y65I@JS42J+VBpIsS9Eq*)#Agcl39W<3lqTEelYtgwkJBZ*SMVIB)^L~ZNy?~d^wbw6|A!H|JtaxWNALusgn;nhat3-sEr4IyN?I4GH<3#JIUVN>F_xlT2+3*X85$AhusS3~j1CFu?#YNxu=b=yd|t7-l*XN{GyN}a zS($;6dnr$bBwn`M>FKHQ12e2qA4XiyX$@N!QJ}1O@2`m5=CyAl@>>T_MDz\n" "Language-Team: French \n" "Language: fr\n" @@ -18,599 +18,584 @@ msgstr "" "X-Launchpad-Export-Date: 2021-11-02 10:57+0000\n" "X-Generator: Poedit 3.0\n" -#: ../../views/calendar/edit.php:40 -msgid "Calendars Edit" -msgstr "Modifier calendriers" +#: ../../views/calendar/list.php:39 +msgid "Calendars" +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 -#: ../../views/calendar/special_days_edit.php:58 ../../views/calendar/list.php:57 -#: ../../operation/users/user_edit.php:244 -#: ../../enterprise/operation/agentes/policy_view.php:51 -#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:206 -#: ../../enterprise/include/lib/Policy/Queue.php:162 -#: ../../enterprise/include/lib/Policy/Queue.php:163 -#: ../../enterprise/include/lib/Policy/Queue.php:406 #: ../../enterprise/extensions/csv_import_group.php:43 -#: ../../enterprise/godmode/modules/local_components.php:256 #: ../../enterprise/godmode/modules/manage_inventory_modules.php:56 -#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:31 -#: ../../enterprise/godmode/massive/massive_delete_alerts_policy.php:31 +#: ../../enterprise/godmode/modules/local_components.php:256 +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:343 +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.php:118 +#: ../../enterprise/godmode/agentes/collections.data.php:398 +#: ../../enterprise/godmode/agentes/collections.editor.php:112 +#: ../../enterprise/godmode/agentes/collections.php:95 +#: ../../enterprise/godmode/policies/policy_plugins.php:31 +#: ../../enterprise/godmode/policies/policy_alerts.php:57 +#: ../../enterprise/godmode/policies/configure_policy.php:74 +#: ../../enterprise/godmode/policies/policy_modules.php:469 +#: ../../enterprise/godmode/policies/policy_queue.php:211 +#: ../../enterprise/godmode/policies/policies.php:261 +#: ../../enterprise/godmode/policies/policy_linking.php:110 +#: ../../enterprise/godmode/policies/policy_external_alerts.php:302 +#: ../../enterprise/godmode/policies/policy_inventory_modules.php:84 +#: ../../enterprise/godmode/policies/policy_collections.php:43 +#: ../../enterprise/godmode/policies/policy_agents.php:319 #: ../../enterprise/godmode/massive/massive_edit_tags_policy.php:33 #: ../../enterprise/godmode/massive/massive_add_alerts_policy.php:31 #: ../../enterprise/godmode/massive/massive_add_modules_policy.php:33 #: ../../enterprise/godmode/massive/massive_tags_edit_policy.php:33 -#: ../../enterprise/godmode/agentes/agent_autoconfiguration.php:118 -#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:281 -#: ../../enterprise/godmode/agentes/collections.editor.php:112 -#: ../../enterprise/godmode/agentes/collections.data.php:398 -#: ../../enterprise/godmode/agentes/collections.php:95 -#: ../../enterprise/godmode/policies/policy_agents.php:319 -#: ../../enterprise/godmode/policies/policy_queue.php:211 -#: ../../enterprise/godmode/policies/policy_linking.php:110 -#: ../../enterprise/godmode/policies/policy_modules.php:469 -#: ../../enterprise/godmode/policies/policies.php:261 -#: ../../enterprise/godmode/policies/policy_external_alerts.php:302 -#: ../../enterprise/godmode/policies/configure_policy.php:74 -#: ../../enterprise/godmode/policies/policy_inventory_modules.php:84 -#: ../../enterprise/godmode/policies/policy_alerts.php:57 -#: ../../enterprise/godmode/policies/policy_collections.php:43 -#: ../../enterprise/godmode/policies/policy_plugins.php:31 +#: ../../enterprise/godmode/massive/massive_delete_alerts_policy.php:31 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:31 +#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:206 +#: ../../enterprise/include/lib/Policy/Queue.php:162 +#: ../../enterprise/include/lib/Policy/Queue.php:163 +#: ../../enterprise/include/lib/Policy/Queue.php:406 +#: ../../enterprise/operation/agentes/policy_view.php:51 #: ../../extensions/resource_registration.php:1107 -#: ../../godmode/setup/os.list.php:49 -#: ../../godmode/servers/plugin_registration.php:79 -#: ../../godmode/modules/manage_network_components.php:306 #: ../../godmode/modules/manage_nc_groups.php:286 -#: ../../godmode/category/category.php:101 ../../godmode/tag/tag.php:188 -#: ../../godmode/massive/massive_operations.php:410 -#: ../../godmode/massive/massive_add_profiles.php:45 -#: ../../godmode/massive/massive_delete_profiles.php:45 -#: ../../godmode/agentes/modificar_agente.php:117 -#: ../../godmode/alerts/configure_alert_template.php:412 -#: ../../godmode/alerts/alert_actions.php:215 -#: ../../godmode/alerts/alert_templates.php:261 -#: ../../godmode/alerts/alert_commands.php:636 -#: ../../godmode/alerts/configure_alert_command.php:189 -#: ../../godmode/alerts/configure_alert_action.php:113 -#: ../../godmode/users/user_list.php:425 ../../godmode/users/profile_list.php:108 -#: ../../godmode/groups/modu_group_list.php:85 +#: ../../godmode/modules/manage_network_components.php:306 #: ../../godmode/groups/group_list.php:396 +#: ../../godmode/groups/modu_group_list.php:85 +#: ../../godmode/users/profile_list.php:108 ../../godmode/users/user_list.php:425 +#: ../../godmode/agentes/modificar_agente.php:117 +#: ../../godmode/massive/massive_operations.php:410 +#: ../../godmode/massive/massive_delete_profiles.php:45 +#: ../../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:636 +#: ../../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:244 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 -#: ../../views/calendar/special_days_edit.php:61 ../../views/calendar/list.php:60 -#: ../../operation/users/user_edit.php:246 -#: ../../enterprise/operation/agentes/policy_view.php:53 -#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:208 #: ../../enterprise/extensions/csv_import_group.php:45 -#: ../../enterprise/godmode/modules/local_components.php:258 #: ../../enterprise/godmode/modules/manage_inventory_modules.php:58 -#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:33 -#: ../../enterprise/godmode/massive/massive_delete_alerts_policy.php:33 +#: ../../enterprise/godmode/modules/local_components.php:258 +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:345 +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.php:120 +#: ../../enterprise/godmode/policies/policy_plugins.php:33 +#: ../../enterprise/godmode/policies/policy_alerts.php:59 +#: ../../enterprise/godmode/policies/configure_policy.php:76 +#: ../../enterprise/godmode/policies/policy_modules.php:471 +#: ../../enterprise/godmode/policies/policy_queue.php:213 +#: ../../enterprise/godmode/policies/policies.php:263 +#: ../../enterprise/godmode/policies/policy_linking.php:112 +#: ../../enterprise/godmode/policies/policy_external_alerts.php:304 +#: ../../enterprise/godmode/policies/policy_inventory_modules.php:86 +#: ../../enterprise/godmode/policies/policy_collections.php:45 +#: ../../enterprise/godmode/policies/policy_agents.php:321 #: ../../enterprise/godmode/massive/massive_edit_tags_policy.php:35 #: ../../enterprise/godmode/massive/massive_add_alerts_policy.php:33 #: ../../enterprise/godmode/massive/massive_add_modules_policy.php:35 #: ../../enterprise/godmode/massive/massive_tags_edit_policy.php:35 -#: ../../enterprise/godmode/agentes/agent_autoconfiguration.php:120 -#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:283 -#: ../../enterprise/godmode/policies/policy_agents.php:321 -#: ../../enterprise/godmode/policies/policy_queue.php:213 -#: ../../enterprise/godmode/policies/policy_linking.php:112 -#: ../../enterprise/godmode/policies/policy_modules.php:471 -#: ../../enterprise/godmode/policies/policies.php:263 -#: ../../enterprise/godmode/policies/policy_external_alerts.php:304 -#: ../../enterprise/godmode/policies/configure_policy.php:76 -#: ../../enterprise/godmode/policies/policy_inventory_modules.php:86 -#: ../../enterprise/godmode/policies/policy_alerts.php:59 -#: ../../enterprise/godmode/policies/policy_collections.php:45 -#: ../../enterprise/godmode/policies/policy_plugins.php:33 +#: ../../enterprise/godmode/massive/massive_delete_alerts_policy.php:33 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:33 +#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:208 +#: ../../enterprise/operation/agentes/policy_view.php:53 #: ../../extensions/resource_registration.php:1109 -#: ../../godmode/setup/os.list.php:51 -#: ../../godmode/modules/manage_network_components.php:308 #: ../../godmode/modules/manage_nc_groups.php:288 -#: ../../godmode/category/category.php:103 ../../godmode/tag/tag.php:190 -#: ../../godmode/massive/massive_operations.php:412 -#: ../../godmode/massive/massive_add_profiles.php:47 -#: ../../godmode/massive/massive_delete_profiles.php:47 -#: ../../godmode/agentes/modificar_agente.php:119 -#: ../../godmode/alerts/configure_alert_template.php:414 -#: ../../godmode/alerts/alert_actions.php:217 -#: ../../godmode/alerts/alert_templates.php:263 -#: ../../godmode/alerts/alert_commands.php:638 -#: ../../godmode/alerts/configure_alert_command.php:191 -#: ../../godmode/alerts/configure_alert_action.php:115 -#: ../../godmode/users/user_list.php:427 ../../godmode/users/profile_list.php:110 -#: ../../godmode/groups/modu_group_list.php:87 +#: ../../godmode/modules/manage_network_components.php:308 #: ../../godmode/groups/group_list.php:398 +#: ../../godmode/groups/modu_group_list.php:87 +#: ../../godmode/users/profile_list.php:110 ../../godmode/users/user_list.php:427 +#: ../../godmode/agentes/modificar_agente.php:119 +#: ../../godmode/massive/massive_operations.php:412 +#: ../../godmode/massive/massive_delete_profiles.php:47 +#: ../../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:638 +#: ../../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:246 msgid "any node" msgstr "n'importe quel noeud" +#: ../../views/calendar/list.php:65 ../../views/calendar/special_days_edit.php:66 #: ../../views/calendar/edit.php:66 ../../views/calendar/special_days.php:67 -#: ../../views/calendar/special_days_edit.php:66 ../../views/calendar/list.php:65 #, php-format msgid "" -"This node is configured with centralized mode. All alert calendar information " -"is read only. Go to %s to manage it." +"This node is configured with centralized mode. All alert calendar information is " +"read only. Go to %s to manage it." msgstr "" -"Ce nœud est configurĆ© en mode centralisĆ©. Toutes les informations du " -"calendrier sont en lecture seule. Allez vers %s pour le gĆ©rer." +"Ce nœud est configurĆ© en mode centralisĆ©. Toutes les informations du calendrier " +"sont en lecture seule. Allez vers %s pour le gĆ©rer." -#: ../../views/calendar/edit.php:80 ../../views/calendar/list.php:93 -#: ../../views/dashboard/formDashboard.php:77 ../../views/dashboard/list.php:95 -#: ../../operation/search_policies.php:35 -#: ../../operation/gis_maps/gis_map.php:102 ../../operation/search_users.php:44 -#: ../../operation/search_maps.php:28 -#: ../../operation/netflow/nf_live_view.php:370 -#: ../../operation/agentes/pandora_networkmap.php:707 -#: ../../operation/agentes/pandora_networkmap.editor.php:273 -#: ../../operation/agentes/pandora_networkmap.view.php:100 -#: ../../operation/search_helps.php:31 -#: ../../operation/incidents/configure_integriaims_incident.php:217 -#: ../../include/class/ModuleTemplates.class.php:892 -#: ../../include/class/ModuleTemplates.class.php:1050 -#: ../../include/class/ManageNetScanScripts.class.php:403 -#: ../../include/class/ManageNetScanScripts.class.php:545 -#: ../../include/class/CalendarManager.class.php:975 -#: ../../include/class/NetworkMap.class.php:2906 -#: ../../include/class/NetworkMap.class.php:2947 -#: ../../include/class/NetworkMap.class.php:2965 -#: ../../include/class/NetworkMap.class.php:3268 -#: ../../include/functions_events.php:4452 -#: ../../include/functions_events.php:4541 -#: ../../include/functions_filemanager.php:604 -#: ../../include/functions_treeview.php:78 -#: ../../include/functions_snmp_browser.php:1662 -#: ../../include/functions_reporting_html.php:1048 -#: ../../include/functions_reporting_html.php:1056 -#: ../../include/functions_reporting_html.php:2389 -#: ../../include/functions_reporting_html.php:2739 -#: ../../include/functions_reporting_html.php:3436 -#: ../../include/functions_reporting_html.php:6150 -#: ../../enterprise/tools/ipam/ipam_excel.php:131 -#: ../../enterprise/tools/ipam/ipam_excel.php:200 -#: ../../enterprise/tools/ipam/ipam_vlan_config.php:667 -#: ../../enterprise/tools/ipam/ipam_network_location_config.php:135 -#: ../../enterprise/tools/ipam/ipam_network_location_config.php:257 -#: ../../enterprise/tools/ipam/ipam_supernet_config.php:1053 -#: ../../enterprise/tools/ipam/ipam_list.php:576 -#: ../../enterprise/tools/ipam/ipam_editor.php:140 -#: ../../enterprise/views/ncm/snippets/edit.php:81 +#: ../../views/calendar/list.php:92 +#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:91 +#: ../../enterprise/tools/ipam/ipam_excel.php:130 +#: ../../enterprise/tools/ipam/ipam_excel.php:199 +#: ../../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 +#: ../../godmode/groups/modu_group_list.php:251 +#: ../../godmode/agentes/fields_manager.php:118 +#: ../../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:656 ../../godmode/setup/os.list.php:68 +#: ../../operation/incidents/list_integriaims_incidents.php:515 +msgid "ID" +msgstr "Identifiant" + +#: ../../views/calendar/list.php:93 ../../views/calendar/edit.php:86 +#: ../../views/dashboard/list.php:95 ../../views/dashboard/formDashboard.php:77 #: ../../enterprise/views/ncm/snippets/list.php:70 -#: ../../enterprise/views/ncm/firmwares/edit.php:80 -#: ../../enterprise/views/ncm/firmwares/list.php:73 -#: ../../enterprise/views/ncm/vendors/edit.php:67 -#: ../../enterprise/views/ncm/vendors/list.php:70 -#: ../../enterprise/views/ncm/devices/list.php:114 -#: ../../enterprise/views/ncm/templates/edit.php:81 +#: ../../enterprise/views/ncm/snippets/edit.php:81 #: ../../enterprise/views/ncm/templates/list.php:73 -#: ../../enterprise/views/ncm/models/edit.php:68 +#: ../../enterprise/views/ncm/templates/edit.php:81 +#: ../../enterprise/views/ncm/devices/list.php:114 +#: ../../enterprise/views/ncm/firmwares/list.php:73 +#: ../../enterprise/views/ncm/firmwares/edit.php:80 #: ../../enterprise/views/ncm/models/list.php:71 -#: ../../enterprise/views/ipam/sites/edit.php:40 -#: ../../enterprise/views/ipam/sites/list.php:46 +#: ../../enterprise/views/ncm/models/edit.php:68 +#: ../../enterprise/views/ncm/vendors/list.php:70 +#: ../../enterprise/views/ncm/vendors/edit.php:67 #: ../../enterprise/views/cluster/list.php:58 -#: ../../enterprise/operation/services/services.service.php:118 -#: ../../enterprise/operation/services/services.list.php:497 -#: ../../enterprise/operation/agentes/tag_view.php:677 -#: ../../enterprise/operation/agentes/policy_view.php:163 -#: ../../enterprise/operation/agentes/policy_view.php:395 -#: ../../enterprise/operation/agentes/collection_view.php:75 -#: ../../enterprise/operation/agentes/manage_transmap_creation.php:186 -#: ../../enterprise/operation/agentes/manage_transmap_creation.php:363 -#: ../../enterprise/operation/agentes/manage_transmap_creation.php:489 -#: ../../enterprise/include/ajax/servers.ajax.php:100 -#: ../../enterprise/include/ajax/servers.ajax.php:158 -#: ../../enterprise/include/ajax/servers.ajax.php:284 -#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:379 -#: ../../enterprise/include/class/Omnishell.class.php:668 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:765 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2903 -#: ../../enterprise/include/functions_services.php:1603 -#: ../../enterprise/include/functions_ipam.php:1348 -#: ../../enterprise/include/functions_ipam.php:1981 -#: ../../enterprise/meta/include/functions_autoprovision.php:474 -#: ../../enterprise/meta/include/functions_wizard_meta.php:466 -#: ../../enterprise/meta/include/functions_wizard_meta.php:584 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1134 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1460 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1582 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1685 +#: ../../enterprise/views/ipam/sites/list.php:46 +#: ../../enterprise/views/ipam/sites/edit.php:40 #: ../../enterprise/meta/advanced/servers.build_table.php:60 +#: ../../enterprise/meta/include/functions_autoprovision.php:474 +#: ../../enterprise/meta/include/functions_wizard_meta.php:463 +#: ../../enterprise/meta/include/functions_wizard_meta.php:581 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1131 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1457 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1579 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1682 #: ../../enterprise/meta/agentsearch.php:327 -#: ../../enterprise/mobile/include/enterprise.class.php:87 +#: ../../enterprise/godmode/modules/configure_local_component.php:156 +#: ../../enterprise/godmode/modules/manage_inventory_modules.php:272 +#: ../../enterprise/godmode/modules/local_components.php:621 +#: ../../enterprise/godmode/modules/manage_inventory_modules_form.php:99 +#: ../../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:220 +#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:76 +#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:535 +#: ../../enterprise/godmode/agentes/pandora_networkmap_empty.editor.php:130 +#: ../../enterprise/godmode/policies/configure_policy.php:100 +#: ../../enterprise/godmode/policies/policy_modules.php:1464 +#: ../../enterprise/godmode/policies/policies.php:406 +#: ../../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/massive/massive_create_services.php:636 +#: ../../enterprise/godmode/alerts/alert_inventory_builder.php:163 +#: ../../enterprise/godmode/services/services.service.php:546 +#: ../../enterprise/godmode/setup/setup_skins.php:87 #: ../../enterprise/godmode/setup/setup_auth.php:102 #: ../../enterprise/godmode/setup/edit_skin.php:233 -#: ../../enterprise/godmode/setup/setup_skins.php:87 -#: ../../enterprise/godmode/servers/manage_export_form.php:75 -#: ../../enterprise/godmode/servers/credential_boxes_satellite.php:249 -#: ../../enterprise/godmode/servers/manage_export.php:137 -#: ../../enterprise/godmode/servers/list_satellite.php:37 -#: ../../enterprise/godmode/servers/manage_credential_boxes.php:58 -#: ../../enterprise/godmode/modules/configure_local_component.php:156 -#: ../../enterprise/godmode/modules/local_components.php:621 -#: ../../enterprise/godmode/modules/manage_inventory_modules.php:272 -#: ../../enterprise/godmode/modules/manage_inventory_modules_form.php:99 -#: ../../enterprise/godmode/services/services.service.php:546 +#: ../../enterprise/godmode/reporting/reporting_builder.template_editor.php:182 +#: ../../enterprise/godmode/reporting/reporting_builder.template_editor.php:186 +#: ../../enterprise/godmode/reporting/graph_template_editor.php:191 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:108 #: ../../enterprise/godmode/reporting/visual_console_template.php:203 #: ../../enterprise/godmode/reporting/visual_console_template.php:270 #: ../../enterprise/godmode/reporting/mysql_builder.php:96 #: ../../enterprise/godmode/reporting/mysql_builder.php:227 #: ../../enterprise/godmode/reporting/mysql_builder.php:228 -#: ../../enterprise/godmode/reporting/graph_template_editor.php:191 -#: ../../enterprise/godmode/reporting/reporting_builder.template_editor.php:182 -#: ../../enterprise/godmode/reporting/reporting_builder.template_editor.php:186 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1674 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:107 -#: ../../enterprise/godmode/massive/massive_create_services.php:636 -#: ../../enterprise/godmode/agentes/inventory_manager.php:220 -#: ../../enterprise/godmode/agentes/agent_autoconfiguration.php:136 -#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:309 -#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:596 -#: ../../enterprise/godmode/agentes/collection_manager.php:109 -#: ../../enterprise/godmode/agentes/collection_manager.php:206 -#: ../../enterprise/godmode/agentes/pandora_networkmap_empty.editor.php:130 -#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:76 -#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:535 -#: ../../enterprise/godmode/alerts/alert_inventory_builder.php:163 -#: ../../enterprise/godmode/policies/policy_agents.php:847 -#: ../../enterprise/godmode/policies/policy_agents.php:1367 -#: ../../enterprise/godmode/policies/policy_modules.php:1464 -#: ../../enterprise/godmode/policies/policies.php:406 -#: ../../enterprise/godmode/policies/configure_policy.php:100 -#: ../../enterprise/godmode/policies/policy_inventory_modules.php:302 -#: ../../enterprise/godmode/policies/policy_collections.php:169 -#: ../../enterprise/godmode/policies/policy_collections.php:263 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1677 +#: ../../enterprise/godmode/servers/manage_export.php:137 +#: ../../enterprise/godmode/servers/credential_boxes_satellite.php:249 +#: ../../enterprise/godmode/servers/manage_credential_boxes.php:58 +#: ../../enterprise/godmode/servers/manage_export_form.php:75 +#: ../../enterprise/godmode/servers/list_satellite.php:37 +#: ../../enterprise/mobile/include/enterprise.class.php:86 +#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:379 +#: ../../enterprise/include/ajax/servers.ajax.php:100 +#: ../../enterprise/include/ajax/servers.ajax.php:158 +#: ../../enterprise/include/ajax/servers.ajax.php:284 +#: ../../enterprise/include/class/Omnishell.class.php:668 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:764 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2945 +#: ../../enterprise/include/functions_services.php:1603 +#: ../../enterprise/include/functions_ipam.php:1348 +#: ../../enterprise/include/functions_ipam.php:1981 +#: ../../enterprise/operation/agentes/policy_view.php:163 +#: ../../enterprise/operation/agentes/policy_view.php:395 +#: ../../enterprise/operation/agentes/tag_view.php:677 +#: ../../enterprise/operation/agentes/collection_view.php:75 +#: ../../enterprise/operation/agentes/manage_transmap_creation.php:186 +#: ../../enterprise/operation/agentes/manage_transmap_creation.php:363 +#: ../../enterprise/operation/agentes/manage_transmap_creation.php:489 +#: ../../enterprise/operation/services/services.service.php:118 +#: ../../enterprise/operation/services/services.list.php:497 +#: ../../enterprise/tools/ipam/ipam_supernet_config.php:1053 +#: ../../enterprise/tools/ipam/ipam_list.php:576 +#: ../../enterprise/tools/ipam/ipam_network_location_config.php:135 +#: ../../enterprise/tools/ipam/ipam_network_location_config.php:257 +#: ../../enterprise/tools/ipam/ipam_excel.php:131 +#: ../../enterprise/tools/ipam/ipam_excel.php:200 +#: ../../enterprise/tools/ipam/ipam_vlan_config.php:667 +#: ../../enterprise/tools/ipam/ipam_editor.php:140 #: ../../extensions/files_repo/files_repo_list.php:55 -#: ../../godmode/setup/os.list.php:69 ../../godmode/setup/setup_integria.php:337 -#: ../../godmode/setup/setup_integria.php:458 -#: ../../godmode/setup/os.builder.php:36 ../../godmode/servers/plugin.php:339 -#: ../../godmode/servers/plugin.php:815 -#: ../../godmode/servers/modificar_server.php:58 -#: ../../godmode/servers/servers.build_table.php:79 -#: ../../godmode/modules/module_list.php:62 -#: ../../godmode/modules/manage_network_templates.php:246 +#: ../../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_network_components_form_common.php:46 -#: ../../godmode/modules/manage_nc_groups_form.php:68 -#: ../../godmode/category/edit_category.php:180 -#: ../../godmode/reporting/reporting_builder.main.php:89 -#: ../../godmode/reporting/reporting_builder.main.php:93 -#: ../../godmode/reporting/create_container.php:223 -#: ../../godmode/reporting/reporting_builder.item_editor.php:1014 -#: ../../godmode/reporting/graph_builder.main.php:125 -#: ../../godmode/tag/edit_tag.php:211 ../../godmode/tag/tag.php:228 -#: ../../godmode/events/event_responses.editor.php:86 -#: ../../godmode/events/event_responses.list.php:50 -#: ../../godmode/events/event_filter.php:136 -#: ../../godmode/netflow/nf_edit.php:159 -#: ../../godmode/netflow/nf_edit_form.php:199 -#: ../../godmode/agentes/module_manager.php:827 -#: ../../godmode/agentes/configure_field.php:74 -#: ../../godmode/agentes/module_manager_editor_common.php:215 -#: ../../godmode/agentes/module_manager_editor_common.php:1212 +#: ../../godmode/modules/module_list.php:62 +#: ../../godmode/modules/manage_network_templates.php:246 +#: ../../godmode/groups/configure_group.php:150 +#: ../../godmode/groups/group_list.php:842 +#: ../../godmode/groups/configure_modu_group.php:67 +#: ../../godmode/groups/modu_group_list.php:252 +#: ../../godmode/users/user_list.php:480 #: ../../godmode/agentes/planned_downtime.editor.php:552 #: ../../godmode/agentes/planned_downtime.editor.php:920 #: ../../godmode/agentes/pandora_networkmap_empty.editor.php:132 -#: ../../godmode/alerts/configure_alert_template.php:1052 -#: ../../godmode/alerts/alert_actions.php:326 -#: ../../godmode/alerts/alert_templates.php:383 -#: ../../godmode/alerts/alert_commands.php:655 +#: ../../godmode/agentes/configure_field.php:74 +#: ../../godmode/agentes/module_manager_editor_common.php:215 +#: ../../godmode/agentes/module_manager_editor_common.php:1212 +#: ../../godmode/agentes/module_manager.php:827 +#: ../../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:655 +#: ../../godmode/alerts/alert_templates.php:384 #: ../../godmode/alerts/configure_alert_action.php:181 -#: ../../godmode/users/user_list.php:480 -#: ../../godmode/groups/configure_group.php:150 -#: ../../godmode/groups/modu_group_list.php:252 -#: ../../godmode/groups/group_list.php:842 -#: ../../godmode/groups/configure_modu_group.php:67 +#: ../../godmode/alerts/configure_alert_template.php:1052 +#: ../../godmode/setup/os.builder.php:36 ../../godmode/setup/os.list.php:69 +#: ../../godmode/setup/setup_integria.php:337 +#: ../../godmode/setup/setup_integria.php:458 +#: ../../godmode/reporting/create_container.php:223 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1064 +#: ../../godmode/reporting/reporting_builder.main.php:89 +#: ../../godmode/reporting/reporting_builder.main.php:93 +#: ../../godmode/reporting/graph_builder.main.php:125 +#: ../../godmode/events/event_filter.php:136 +#: ../../godmode/events/event_responses.editor.php:86 +#: ../../godmode/events/event_responses.list.php:50 +#: ../../godmode/servers/servers.build_table.php:79 +#: ../../godmode/servers/modificar_server.php:58 +#: ../../godmode/servers/plugin.php:339 ../../godmode/servers/plugin.php:815 +#: ../../godmode/tag/tag.php:228 ../../godmode/tag/edit_tag.php:211 +#: ../../godmode/category/edit_category.php:180 +#: ../../include/functions_reporting_html.php:1048 +#: ../../include/functions_reporting_html.php:1056 +#: ../../include/functions_reporting_html.php:2425 +#: ../../include/functions_reporting_html.php:2784 +#: ../../include/functions_reporting_html.php:3481 +#: ../../include/functions_reporting_html.php:6170 +#: ../../include/functions_treeview.php:78 +#: ../../include/class/NetworkMap.class.php:2906 +#: ../../include/class/NetworkMap.class.php:2947 +#: ../../include/class/NetworkMap.class.php:2965 +#: ../../include/class/NetworkMap.class.php:3268 +#: ../../include/class/ManageNetScanScripts.class.php:403 +#: ../../include/class/ManageNetScanScripts.class.php:545 +#: ../../include/class/ModuleTemplates.class.php:892 +#: ../../include/class/ModuleTemplates.class.php:1050 +#: ../../include/class/CalendarManager.class.php:1026 +#: ../../include/functions_filemanager.php:604 +#: ../../include/functions_snmp_browser.php:1670 +#: ../../include/functions_events.php:4001 ../../include/functions_events.php:4090 +#: ../../operation/search_users.php:44 ../../operation/search_helps.php:31 +#: ../../operation/agentes/pandora_networkmap.editor.php:273 +#: ../../operation/agentes/pandora_networkmap.php:707 +#: ../../operation/agentes/pandora_networkmap.view.php:100 +#: ../../operation/netflow/nf_live_view.php:370 +#: ../../operation/gis_maps/gis_map.php:102 +#: ../../operation/incidents/configure_integriaims_incident.php:217 +#: ../../operation/search_policies.php:35 ../../operation/search_maps.php:28 msgid "Name" msgstr "Nom" -#: ../../views/calendar/edit.php:91 ../../views/calendar/special_days.php:112 -#: ../../views/calendar/special_days_edit.php:106 -#: ../../views/calendar/list.php:94 ../../views/dashboard/formDashboard.php:108 -#: ../../views/dashboard/list.php:97 ../../general/ui/agents_list.php:76 -#: ../../operation/visual_console/view.php:351 -#: ../../operation/gis_maps/ajax.php:332 ../../operation/gis_maps/ajax.php:438 -#: ../../operation/gis_maps/gis_map.php:103 ../../operation/search_maps.php:29 -#: ../../operation/heatmap.php:115 ../../operation/heatmap.php:117 -#: ../../operation/search_agents.php:46 ../../operation/search_agents.php:52 -#: ../../operation/events/sound_events.php:109 -#: ../../operation/events/events.build_table.php:222 -#: ../../operation/events/events.php:1061 -#: ../../operation/events/events_list.php:917 -#: ../../operation/netflow/nf_live_view.php:380 -#: ../../operation/agentes/status_monitor.php:450 -#: ../../operation/agentes/group_view.php:222 -#: ../../operation/agentes/interface_view.functions.php:37 -#: ../../operation/agentes/exportdata.php:227 -#: ../../operation/agentes/alerts_status.functions.php:89 -#: ../../operation/agentes/estado_agente.php:254 -#: ../../operation/agentes/estado_agente.php:754 -#: ../../operation/agentes/pandora_networkmap.editor.php:289 -#: ../../operation/agentes/pandora_networkmap.editor.php:337 -#: ../../operation/agentes/estado_generalagente.php:405 -#: ../../operation/agentes/pandora_networkmap.view.php:103 -#: ../../operation/agentes/pandora_networkmap.view.php:137 -#: ../../operation/agentes/ver_agente.php:1018 -#: ../../operation/users/user_edit.php:814 -#: ../../operation/incidents/configure_integriaims_incident.php:266 -#: ../../operation/incidents/list_integriaims_incidents.php:331 -#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:324 -#: ../../include/functions_cron.php:468 ../../include/functions_gis.php:228 -#: ../../include/functions_visual_map_editor.php:70 -#: ../../include/functions_visual_map_editor.php:594 -#: ../../include/functions_visual_map_editor.php:1397 -#: ../../include/ajax/heatmap.ajax.php:110 -#: ../../include/ajax/heatmap.ajax.php:344 -#: ../../include/ajax/custom_fields.php:628 -#: ../../include/ajax/custom_fields.php:677 -#: ../../include/class/ModuleTemplates.class.php:780 -#: ../../include/class/AgentsAlerts.class.php:761 -#: ../../include/class/CredentialStore.class.php:802 -#: ../../include/class/CredentialStore.class.php:833 -#: ../../include/class/CredentialStore.class.php:923 -#: ../../include/class/CustomNetScan.class.php:500 -#: ../../include/class/CalendarManager.class.php:976 -#: ../../include/class/NetworkMap.class.php:2841 -#: ../../include/class/NetworkMap.class.php:2890 -#: ../../include/class/NetworkMap.class.php:3206 -#: ../../include/lib/Dashboard/Widgets/alerts_fired.php:226 -#: ../../include/functions_events.php:195 ../../include/functions_events.php:248 -#: ../../include/functions_events.php:5109 -#: ../../include/functions_events.php:6710 -#: ../../include/functions_container.php:149 -#: ../../include/functions_graph.php:5218 -#: ../../include/functions_snmp_browser.php:1665 -#: ../../include/functions_visual_map.php:4229 -#: ../../include/functions_profile.php:214 -#: ../../include/rest-api/models/VisualConsole/Item.php:2139 -#: ../../include/rest-api/models/VisualConsole/Items/Group.php:549 -#: ../../include/functions_html.php:1521 -#: ../../include/functions_reporting_html.php:1529 -#: ../../include/functions_reporting_html.php:2106 -#: ../../include/functions_reporting_html.php:3387 -#: ../../include/functions_reporting_html.php:3440 -#: ../../include/functions_reporting_html.php:6238 -#: ../../enterprise/tools/ipam/ipam_editor.php:293 +#: ../../views/calendar/list.php:94 ../../views/calendar/special_days_edit.php:106 +#: ../../views/calendar/edit.php:97 ../../views/calendar/special_days.php:112 +#: ../../views/dashboard/list.php:97 ../../views/dashboard/formDashboard.php:108 #: ../../enterprise/views/ncm/devices/list.php:116 #: ../../enterprise/views/cluster/list.php:60 -#: ../../enterprise/operation/log/log_viewer.php:533 -#: ../../enterprise/operation/services/services.service.php:121 -#: ../../enterprise/operation/services/services.list.php:260 -#: ../../enterprise/operation/services/services.list.php:502 -#: ../../enterprise/operation/services/services.table_services.php:182 -#: ../../enterprise/operation/agentes/tag_view.php:108 -#: ../../enterprise/operation/agentes/tag_view.php:604 -#: ../../enterprise/operation/agentes/transactional_map.php:208 -#: ../../enterprise/operation/agentes/manage_transmap_creation.php:366 -#: ../../enterprise/operation/agentes/manage_transmap_creation.php:492 -#: ../../enterprise/operation/agentes/ver_agente.php:52 -#: ../../enterprise/operation/agentes/ver_agente.php:73 -#: ../../enterprise/operation/inventory/inventory.php:336 -#: ../../enterprise/include/functions_reporting_csv.php:718 -#: ../../enterprise/include/functions_reporting_csv.php:2559 -#: ../../enterprise/include/functions_reporting_csv.php:2738 -#: ../../enterprise/include/ajax/ipam.ajax.php:487 -#: ../../enterprise/include/class/MicrosoftSQLServer.app.php:471 -#: ../../enterprise/include/class/Aws.cloud.php:578 -#: ../../enterprise/include/class/Aws.cloud.php:1233 -#: ../../enterprise/include/class/Aws.S3.php:434 -#: ../../enterprise/include/class/MySQL.app.php:474 -#: ../../enterprise/include/class/Oracle.app.php:476 -#: ../../enterprise/include/class/DB2.app.php:469 -#: ../../enterprise/include/class/SAP.app.php:644 -#: ../../enterprise/include/class/Omnishell.class.php:399 -#: ../../enterprise/include/class/Omnishell.class.php:428 -#: ../../enterprise/include/class/Omnishell.class.php:678 -#: ../../enterprise/include/class/VMware.app.php:763 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:777 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:927 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2799 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2904 -#: ../../enterprise/include/class/Azure.cloud.php:835 -#: ../../enterprise/include/class/Google.cloud.php:785 -#: ../../enterprise/include/functions_tasklist.php:157 -#: ../../enterprise/include/lib/ClusterViewer/ClusterWizard.php:823 -#: ../../enterprise/include/functions_events.php:97 -#: ../../enterprise/meta/include/functions_events_meta.php:74 -#: ../../enterprise/meta/include/functions_wizard_meta.php:194 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1808 -#: ../../enterprise/meta/monitoring/custom_fields_view.php:146 -#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:276 -#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:373 -#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:438 -#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:706 -#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:785 #: ../../enterprise/meta/advanced/cron_main.php:422 #: ../../enterprise/meta/advanced/collections.php:366 +#: ../../enterprise/meta/monitoring/custom_fields_view.php:146 +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:273 +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:370 +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:435 +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:703 +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:782 +#: ../../enterprise/meta/include/functions_wizard_meta.php:191 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1805 +#: ../../enterprise/meta/include/functions_events_meta.php:74 #: ../../enterprise/meta/agentsearch.php:138 #: ../../enterprise/meta/agentsearch.php:329 #: ../../enterprise/godmode/modules/configure_local_component.php:274 #: ../../enterprise/godmode/modules/local_components.php:498 #: ../../enterprise/godmode/modules/local_components.php:623 -#: ../../enterprise/godmode/services/services.service.php:569 -#: ../../enterprise/godmode/reporting/visual_console_template.php:218 -#: ../../enterprise/godmode/reporting/visual_console_template.php:271 -#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:329 -#: ../../enterprise/godmode/reporting/graph_template_editor.php:196 -#: ../../enterprise/godmode/reporting/graph_template_list.php:205 -#: ../../enterprise/godmode/reporting/reporting_builder.template_editor.php:194 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:318 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1395 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1997 -#: ../../enterprise/godmode/reporting/visual_console_builder.wizard_services.php:110 -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:500 -#: ../../enterprise/godmode/massive/massive_add_modules_policy.php:102 -#: ../../enterprise/godmode/massive/massive_create_services.php:658 -#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:669 #: ../../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:381 -#: ../../enterprise/godmode/alerts/alert_inventory_list.php:139 -#: ../../enterprise/godmode/policies/policy_agents.php:798 -#: ../../enterprise/godmode/policies/policy_agents.php:855 +#: ../../enterprise/godmode/policies/configure_policy.php:103 #: ../../enterprise/godmode/policies/policies.php:308 #: ../../enterprise/godmode/policies/policies.php:408 -#: ../../enterprise/godmode/policies/configure_policy.php:103 -#: ../../extensions/agents_modules.php:404 ../../mobile/operation/modules.php:171 -#: ../../mobile/operation/modules.php:176 ../../mobile/operation/modules.php:266 -#: ../../mobile/operation/modules.php:267 -#: ../../mobile/operation/visualmaps.php:113 -#: ../../mobile/operation/visualmaps.php:118 -#: ../../mobile/operation/alerts.php:113 ../../mobile/operation/alerts.php:118 -#: ../../mobile/operation/alerts.php:231 ../../mobile/operation/alerts.php:232 -#: ../../mobile/operation/events.php:385 ../../mobile/operation/events.php:390 -#: ../../mobile/operation/events.php:544 ../../mobile/operation/events.php:663 -#: ../../mobile/operation/events.php:664 ../../mobile/operation/agents.php:95 -#: ../../mobile/operation/agents.php:157 ../../mobile/operation/agents.php:234 -#: ../../mobile/operation/agents.php:235 ../../mobile/operation/agents.php:405 -#: ../../godmode/setup/setup_integria.php:361 -#: ../../godmode/setup/setup_integria.php:483 -#: ../../godmode/setup/gis_step_2.php:216 ../../godmode/setup/news.php:186 -#: ../../godmode/setup/gis.php:69 -#: ../../godmode/modules/manage_network_components.php:618 -#: ../../godmode/modules/manage_network_components.php:752 +#: ../../enterprise/godmode/policies/policy_agents.php:798 +#: ../../enterprise/godmode/policies/policy_agents.php:855 +#: ../../enterprise/godmode/massive/massive_add_modules_policy.php:102 +#: ../../enterprise/godmode/massive/massive_create_services.php:658 +#: ../../enterprise/godmode/alerts/alert_inventory_list.php:139 +#: ../../enterprise/godmode/services/services.service.php:569 +#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:329 +#: ../../enterprise/godmode/reporting/reporting_builder.template_editor.php:194 +#: ../../enterprise/godmode/reporting/graph_template_list.php:205 +#: ../../enterprise/godmode/reporting/graph_template_editor.php:196 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:500 +#: ../../enterprise/godmode/reporting/visual_console_template.php:218 +#: ../../enterprise/godmode/reporting/visual_console_template.php:271 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:318 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1398 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2000 +#: ../../enterprise/godmode/reporting/visual_console_builder.wizard_services.php:110 +#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:669 +#: ../../enterprise/include/functions_tasklist.php:157 +#: ../../enterprise/include/ajax/ipam.ajax.php:487 +#: ../../enterprise/include/functions_reporting_csv.php:718 +#: ../../enterprise/include/functions_reporting_csv.php:2559 +#: ../../enterprise/include/functions_reporting_csv.php:2738 +#: ../../enterprise/include/class/Azure.cloud.php:835 +#: ../../enterprise/include/class/VMware.app.php:763 +#: ../../enterprise/include/class/Omnishell.class.php:399 +#: ../../enterprise/include/class/Omnishell.class.php:428 +#: ../../enterprise/include/class/Omnishell.class.php:678 +#: ../../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: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 +#: ../../enterprise/include/class/MicrosoftSQLServer.app.php:471 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:776 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:926 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2841 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2946 +#: ../../enterprise/include/lib/ClusterViewer/ClusterWizard.php:823 +#: ../../enterprise/include/functions_events.php:30 +#: ../../enterprise/operation/agentes/transactional_map.php:208 +#: ../../enterprise/operation/agentes/tag_view.php:108 +#: ../../enterprise/operation/agentes/tag_view.php:604 +#: ../../enterprise/operation/agentes/ver_agente.php:52 +#: ../../enterprise/operation/agentes/ver_agente.php:73 +#: ../../enterprise/operation/agentes/manage_transmap_creation.php:366 +#: ../../enterprise/operation/agentes/manage_transmap_creation.php:492 +#: ../../enterprise/operation/log/log_viewer.php:533 +#: ../../enterprise/operation/inventory/inventory.php:336 +#: ../../enterprise/operation/services/services.service.php:121 +#: ../../enterprise/operation/services/services.list.php:260 +#: ../../enterprise/operation/services/services.list.php:502 +#: ../../enterprise/operation/services/services.table_services.php:182 +#: ../../enterprise/tools/ipam/ipam_editor.php:293 +#: ../../extensions/agents_modules.php:404 #: ../../godmode/modules/manage_network_templates_form.php:235 #: ../../godmode/modules/manage_network_templates_form.php:303 #: ../../godmode/modules/manage_network_templates_form.php:339 #: ../../godmode/modules/manage_network_components_form_common.php:131 +#: ../../godmode/modules/manage_network_components.php:618 +#: ../../godmode/modules/manage_network_components.php:752 +#: ../../godmode/users/user_list.php:390 +#: ../../godmode/agentes/configurar_agente.php:495 +#: ../../godmode/agentes/modificar_agente.php:289 +#: ../../godmode/agentes/modificar_agente.php:651 +#: ../../godmode/agentes/planned_downtime.list.php:612 +#: ../../godmode/agentes/planned_downtime.editor.php:562 +#: ../../godmode/agentes/planned_downtime.editor.php:921 +#: ../../godmode/agentes/pandora_networkmap_empty.editor.php:141 +#: ../../godmode/agentes/agent_incidents.php:92 +#: ../../godmode/netflow/nf_edit.php:160 ../../godmode/netflow/nf_edit_form.php:203 +#: ../../godmode/snmpconsole/snmp_alert.php:802 #: ../../godmode/gis_maps/configure_gis_map.php:498 #: ../../godmode/gis_maps/configure_gis_map.php:635 -#: ../../godmode/reporting/reporting_builder.main.php:101 -#: ../../godmode/reporting/map_builder.php:356 -#: ../../godmode/reporting/map_builder.php:385 -#: ../../godmode/reporting/graphs.php:231 ../../godmode/reporting/graphs.php:313 +#: ../../godmode/massive/massive_copy_modules.php:100 +#: ../../godmode/massive/massive_copy_modules.php:253 +#: ../../godmode/massive/massive_standby_alerts.php:185 +#: ../../godmode/massive/massive_delete_action_alerts.php:209 +#: ../../godmode/massive/massive_add_alerts.php:211 +#: ../../godmode/massive/massive_delete_agents.php:187 +#: ../../godmode/massive/massive_enable_disable_alerts.php:169 +#: ../../godmode/massive/massive_edit_agents.php:508 +#: ../../godmode/massive/massive_edit_agents.php:685 +#: ../../godmode/massive/massive_delete_profiles.php:152 +#: ../../godmode/massive/massive_delete_alerts.php:289 +#: ../../godmode/massive/massive_add_action_alerts.php:197 +#: ../../godmode/massive/massive_add_profiles.php:203 +#: ../../godmode/alerts/configure_alert_command.php:265 +#: ../../godmode/alerts/alert_actions.php:260 +#: ../../godmode/alerts/alert_actions.php:328 +#: ../../godmode/alerts/alert_list.list.php:157 +#: ../../godmode/alerts/alert_commands.php:657 +#: ../../godmode/alerts/alert_templates.php:385 +#: ../../godmode/alerts/configure_alert_action.php:212 +#: ../../godmode/alerts/configure_alert_template.php:1074 +#: ../../godmode/setup/news.php:186 ../../godmode/setup/gis.php:69 +#: ../../godmode/setup/gis_step_2.php:216 ../../godmode/setup/setup_integria.php:361 +#: ../../godmode/setup/setup_integria.php:483 #: ../../godmode/reporting/visual_console_builder.data.php:136 #: ../../godmode/reporting/create_container.php:244 #: ../../godmode/reporting/create_container.php:534 #: ../../godmode/reporting/create_container.php:625 +#: ../../godmode/reporting/map_builder.php:356 +#: ../../godmode/reporting/map_builder.php:385 +#: ../../godmode/reporting/graphs.php:231 ../../godmode/reporting/graphs.php:313 #: ../../godmode/reporting/visual_console_favorite.php:161 -#: ../../godmode/reporting/visual_console_builder.elements.php:104 -#: ../../godmode/reporting/visual_console_builder.elements.php:313 #: ../../godmode/reporting/reporting_builder.item_editor.php:72 -#: ../../godmode/reporting/reporting_builder.item_editor.php:198 -#: ../../godmode/reporting/reporting_builder.item_editor.php:824 -#: ../../godmode/reporting/reporting_builder.item_editor.php:1462 -#: ../../godmode/reporting/reporting_builder.item_editor.php:3300 -#: ../../godmode/reporting/reporting_builder.php:757 -#: ../../godmode/reporting/reporting_builder.php:948 +#: ../../godmode/reporting/reporting_builder.item_editor.php:202 +#: ../../godmode/reporting/reporting_builder.item_editor.php:874 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1558 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3413 +#: ../../godmode/reporting/visual_console_builder.elements.php:104 +#: ../../godmode/reporting/visual_console_builder.elements.php:314 +#: ../../godmode/reporting/reporting_builder.main.php:101 +#: ../../godmode/reporting/reporting_builder.php:758 +#: ../../godmode/reporting/reporting_builder.php:946 #: ../../godmode/reporting/graph_builder.main.php:143 -#: ../../godmode/snmpconsole/snmp_alert.php:802 -#: ../../godmode/events/event_edit_filter.php:299 -#: ../../godmode/events/event_responses.editor.php:105 -#: ../../godmode/events/custom_events.php:100 -#: ../../godmode/events/event_responses.list.php:52 #: ../../godmode/events/event_filter.php:137 -#: ../../godmode/netflow/nf_edit.php:160 -#: ../../godmode/netflow/nf_edit_form.php:203 -#: ../../godmode/massive/massive_add_alerts.php:211 -#: ../../godmode/massive/massive_copy_modules.php:100 -#: ../../godmode/massive/massive_copy_modules.php:253 -#: ../../godmode/massive/massive_add_profiles.php:203 -#: ../../godmode/massive/massive_standby_alerts.php:185 -#: ../../godmode/massive/massive_add_action_alerts.php:197 -#: ../../godmode/massive/massive_edit_agents.php:508 -#: ../../godmode/massive/massive_edit_agents.php:685 -#: ../../godmode/massive/massive_delete_profiles.php:152 -#: ../../godmode/massive/massive_delete_action_alerts.php:209 -#: ../../godmode/massive/massive_delete_alerts.php:289 -#: ../../godmode/massive/massive_delete_agents.php:187 -#: ../../godmode/massive/massive_enable_disable_alerts.php:169 +#: ../../godmode/events/event_responses.editor.php:105 +#: ../../godmode/events/event_edit_filter.php:304 +#: ../../godmode/events/event_responses.list.php:52 +#: ../../godmode/events/custom_events.php:100 #: ../../godmode/wizards/HostDevices.class.php:932 -#: ../../godmode/agentes/configurar_agente.php:495 -#: ../../godmode/agentes/planned_downtime.editor.php:562 -#: ../../godmode/agentes/planned_downtime.editor.php:921 -#: ../../godmode/agentes/planned_downtime.list.php:612 -#: ../../godmode/agentes/agent_incidents.php:92 -#: ../../godmode/agentes/pandora_networkmap_empty.editor.php:141 -#: ../../godmode/agentes/modificar_agente.php:289 -#: ../../godmode/agentes/modificar_agente.php:651 -#: ../../godmode/alerts/configure_alert_template.php:1074 -#: ../../godmode/alerts/alert_list.list.php:147 -#: ../../godmode/alerts/alert_actions.php:260 -#: ../../godmode/alerts/alert_actions.php:328 -#: ../../godmode/alerts/alert_templates.php:384 -#: ../../godmode/alerts/alert_commands.php:657 -#: ../../godmode/alerts/configure_alert_command.php:265 -#: ../../godmode/alerts/configure_alert_action.php:212 -#: ../../godmode/users/user_list.php:390 +#: ../../mobile/operation/agents.php:95 ../../mobile/operation/agents.php:157 +#: ../../mobile/operation/agents.php:234 ../../mobile/operation/agents.php:235 +#: ../../mobile/operation/agents.php:405 ../../mobile/operation/modules.php:171 +#: ../../mobile/operation/modules.php:176 ../../mobile/operation/modules.php:266 +#: ../../mobile/operation/modules.php:267 ../../mobile/operation/alerts.php:113 +#: ../../mobile/operation/alerts.php:118 ../../mobile/operation/alerts.php:231 +#: ../../mobile/operation/alerts.php:232 ../../mobile/operation/visualmaps.php:113 +#: ../../mobile/operation/visualmaps.php:118 ../../mobile/operation/events.php:666 +#: ../../mobile/operation/events.php:671 ../../mobile/operation/events.php:832 +#: ../../mobile/operation/events.php:954 ../../mobile/operation/events.php:955 +#: ../../include/functions_visual_map_editor.php:70 +#: ../../include/functions_visual_map_editor.php:594 +#: ../../include/functions_visual_map_editor.php:1397 +#: ../../include/functions_reporting_html.php:1565 +#: ../../include/functions_reporting_html.php:2142 +#: ../../include/functions_reporting_html.php:3432 +#: ../../include/functions_reporting_html.php:3485 +#: ../../include/functions_reporting_html.php:6258 +#: ../../include/functions_cron.php:468 ../../include/ajax/heatmap.ajax.php:110 +#: ../../include/ajax/heatmap.ajax.php:344 ../../include/ajax/custom_fields.php:628 +#: ../../include/ajax/custom_fields.php:677 ../../include/functions_graph.php:5159 +#: ../../include/functions_gis.php:228 ../../include/functions_profile.php:214 +#: ../../include/functions_visual_map.php:4259 +#: ../../include/rest-api/models/VisualConsole/Items/Group.php:549 +#: ../../include/rest-api/models/VisualConsole/Item.php:2139 +#: ../../include/functions_html.php:1531 +#: ../../include/class/NetworkMap.class.php:2841 +#: ../../include/class/NetworkMap.class.php:2890 +#: ../../include/class/NetworkMap.class.php:3206 +#: ../../include/class/AgentsAlerts.class.php:761 +#: ../../include/class/CredentialStore.class.php:802 +#: ../../include/class/CredentialStore.class.php:833 +#: ../../include/class/CredentialStore.class.php:923 +#: ../../include/class/CustomNetScan.class.php:500 +#: ../../include/class/ModuleTemplates.class.php:780 +#: ../../include/class/CalendarManager.class.php:1027 +#: ../../include/functions_container.php:149 +#: ../../include/lib/Dashboard/Widgets/alerts_fired.php:226 +#: ../../include/functions_snmp_browser.php:1673 +#: ../../include/functions_events.php:203 ../../include/functions_events.php:256 +#: ../../include/functions_events.php:4645 ../../operation/heatmap.php:115 +#: ../../operation/heatmap.php:117 ../../operation/search_agents.php:46 +#: ../../operation/search_agents.php:52 ../../operation/users/user_edit.php:814 +#: ../../operation/visual_console/view.php:351 +#: ../../operation/agentes/estado_agente.php:254 +#: ../../operation/agentes/estado_agente.php:754 +#: ../../operation/agentes/pandora_networkmap.editor.php:289 +#: ../../operation/agentes/pandora_networkmap.editor.php:337 +#: ../../operation/agentes/interface_view.functions.php:37 +#: ../../operation/agentes/exportdata.php:227 +#: ../../operation/agentes/status_monitor.php:450 +#: ../../operation/agentes/group_view.php:222 +#: ../../operation/agentes/pandora_networkmap.view.php:103 +#: ../../operation/agentes/pandora_networkmap.view.php:137 +#: ../../operation/agentes/ver_agente.php:1018 +#: ../../operation/agentes/estado_generalagente.php:403 +#: ../../operation/agentes/alerts_status.functions.php:91 +#: ../../operation/netflow/nf_live_view.php:380 +#: ../../operation/gis_maps/gis_map.php:103 ../../operation/gis_maps/ajax.php:332 +#: ../../operation/gis_maps/ajax.php:438 +#: ../../operation/incidents/configure_integriaims_incident.php:266 +#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:324 +#: ../../operation/incidents/list_integriaims_incidents.php:331 +#: ../../operation/events/events.php:1577 ../../operation/search_maps.php:29 +#: ../../general/ui/agents_list.php:76 msgid "Group" msgstr "Groupe" -#: ../../views/calendar/edit.php:103 -#: ../../views/calendar/special_days_edit.php:138 -#: ../../views/calendar/list.php:95 ../../operation/search_reports.php:43 -#: ../../operation/search_reports.php:59 ../../operation/search_policies.php:36 -#: ../../operation/gis_maps/ajax.php:325 ../../operation/gis_maps/ajax.php:459 -#: ../../operation/search_users.php:48 -#: ../../operation/reporting/graph_viewer.php:525 -#: ../../operation/reporting/custom_reporting.php:35 -#: ../../operation/search_graphs.php:31 ../../operation/search_agents.php:43 -#: ../../operation/search_agents.php:49 -#: ../../operation/agentes/custom_fields.php:69 -#: ../../operation/agentes/estado_agente.php:742 -#: ../../operation/agentes/pandora_networkmap.editor.php:321 -#: ../../operation/agentes/estado_generalagente.php:239 -#: ../../operation/agentes/pandora_networkmap.view.php:109 -#: ../../operation/agentes/gis_view.php:222 -#: ../../operation/incidents/configure_integriaims_incident.php:342 -#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:117 -#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:248 -#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:261 -#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:392 -#: ../../include/ajax/module.php:979 ../../include/ajax/events_extended.php:91 -#: ../../include/ajax/heatmap.ajax.php:232 -#: ../../include/ajax/heatmap.ajax.php:271 -#: ../../include/ajax/heatmap.ajax.php:331 -#: ../../include/class/ModuleTemplates.class.php:893 -#: ../../include/class/ModuleTemplates.class.php:1062 -#: ../../include/class/ModuleTemplates.class.php:1210 -#: ../../include/class/ManageNetScanScripts.class.php:404 -#: ../../include/class/ManageNetScanScripts.class.php:558 -#: ../../include/class/ManageNetScanScripts.class.php:607 -#: ../../include/class/AgentWizard.class.php:1183 -#: ../../include/class/AgentWizard.class.php:4035 -#: ../../include/class/ConfigPEN.class.php:448 -#: ../../include/class/ConfigPEN.class.php:599 -#: ../../include/functions_events.php:3855 -#: ../../include/functions_treeview.php:127 -#: ../../include/functions_treeview.php:652 -#: ../../include/functions_container.php:147 -#: ../../include/functions_snmp_browser.php:570 -#: ../../include/functions_snmp_browser.php:1682 -#: ../../include/functions_reporting_html.php:155 -#: ../../include/functions_reporting_html.php:1533 -#: ../../include/functions_reporting_html.php:3390 -#: ../../include/functions_reporting_html.php:3441 -#: ../../include/functions_reporting_html.php:5204 -#: ../../include/functions_reporting_html.php:6151 -#: ../../enterprise/tools/ipam/ipam_excel.php:132 -#: ../../enterprise/tools/ipam/ipam_excel.php:201 -#: ../../enterprise/tools/ipam/ipam_vlan_config.php:345 -#: ../../enterprise/tools/ipam/ipam_vlan_config.php:681 -#: ../../enterprise/tools/ipam/ipam_supernet_network.php:84 -#: ../../enterprise/tools/ipam/ipam_vlan_network.php:40 -#: ../../enterprise/tools/ipam/ipam_vlan_wizard.php:411 -#: ../../enterprise/tools/ipam/ipam_supernet_config.php:619 -#: ../../enterprise/tools/ipam/ipam_supernet_config.php:1061 -#: ../../enterprise/tools/ipam/ipam_list.php:582 -#: ../../enterprise/tools/ipam/ipam_editor.php:177 -#: ../../enterprise/views/ncm/devices/list.php:115 -#: ../../enterprise/views/ipam/sites/edit.php:51 -#: ../../enterprise/views/ipam/sites/list.php:47 -#: ../../enterprise/views/cluster/view.php:286 +#: ../../views/calendar/list.php:95 ../../views/calendar/special_days_edit.php:138 +#: ../../views/calendar/edit.php:109 ../../enterprise/views/ncm/devices/list.php:115 #: ../../enterprise/views/cluster/list.php:59 -#: ../../enterprise/operation/services/services.service.php:119 -#: ../../enterprise/operation/services/services.list.php:500 -#: ../../enterprise/operation/agentes/tag_view.php:600 -#: ../../enterprise/operation/agentes/policy_view.php:68 -#: ../../enterprise/operation/agentes/collection_view.php:77 -#: ../../enterprise/operation/agentes/transactional_map.php:207 -#: ../../enterprise/operation/agentes/manage_transmap_creation.php:364 -#: ../../enterprise/operation/agentes/manage_transmap_creation.php:490 -#: ../../enterprise/operation/agentes/ver_agente.php:60 +#: ../../enterprise/views/cluster/view.php:286 +#: ../../enterprise/views/ipam/sites/list.php:47 +#: ../../enterprise/views/ipam/sites/edit.php:51 +#: ../../enterprise/meta/advanced/collections.php:389 +#: ../../enterprise/meta/include/functions_autoprovision.php:475 +#: ../../enterprise/meta/include/functions_wizard_meta.php:196 +#: ../../enterprise/meta/include/functions_wizard_meta.php:473 +#: ../../enterprise/meta/include/functions_wizard_meta.php:586 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1141 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1461 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1583 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1686 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1809 +#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:77 +#: ../../enterprise/meta/agentsearch.php:135 +#: ../../enterprise/meta/agentsearch.php:328 +#: ../../enterprise/godmode/modules/configure_local_component.php:477 +#: ../../enterprise/godmode/modules/configure_local_component.php:636 +#: ../../enterprise/godmode/modules/manage_inventory_modules.php:273 +#: ../../enterprise/godmode/modules/manage_inventory_modules_form.php:101 +#: ../../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:221 +#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:386 +#: ../../enterprise/godmode/agentes/pandora_networkmap_empty.editor.php:162 +#: ../../enterprise/godmode/agentes/collections.php:382 +#: ../../enterprise/godmode/policies/configure_policy.php:119 +#: ../../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:76 +#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:386 +#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:297 +#: ../../enterprise/godmode/massive/massive_create_services.php:647 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:679 +#: ../../enterprise/godmode/alerts/alert_inventory_builder.php:166 +#: ../../enterprise/godmode/alerts/alert_inventory_list.php:222 +#: ../../enterprise/godmode/services/services.service.php:558 +#: ../../enterprise/godmode/services/services.elements.php:103 +#: ../../enterprise/godmode/setup/setup_skins.php:127 +#: ../../enterprise/godmode/setup/edit_skin.php:259 +#: ../../enterprise/godmode/reporting/reporting_builder.template_editor.php:205 +#: ../../enterprise/godmode/reporting/graph_template_list.php:204 +#: ../../enterprise/godmode/reporting/graph_template_editor.php:199 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:448 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:498 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1694 +#: ../../enterprise/mobile/include/enterprise.class.php:87 #: ../../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:1817 #: ../../enterprise/include/functions_reporting_csv.php:482 #: ../../enterprise/include/functions_reporting_csv.php:485 #: ../../enterprise/include/functions_reporting_csv.php:705 @@ -690,178 +675,219 @@ msgstr "Groupe" #: ../../enterprise/include/functions_reporting_csv.php:2723 #: ../../enterprise/include/functions_reporting_csv.php:2795 #: ../../enterprise/include/functions_reporting_csv.php:2797 -#: ../../enterprise/include/ajax/ipam.ajax.php:371 -#: ../../enterprise/include/ajax/ipam.ajax.php:615 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:796 #: ../../enterprise/include/class/ManageBackups.class.php:162 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:797 -#: ../../enterprise/include/lib/ClusterViewer/ClusterWizard.php:812 #: ../../enterprise/include/functions_services.php:1604 +#: ../../enterprise/include/lib/ClusterViewer/ClusterWizard.php:812 #: ../../enterprise/include/functions_ipam.php:1374 #: ../../enterprise/include/functions_ipam.php:1982 -#: ../../enterprise/include/functions_reporting_pdf.php:1817 -#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:77 -#: ../../enterprise/meta/include/functions_autoprovision.php:475 -#: ../../enterprise/meta/include/functions_wizard_meta.php:199 -#: ../../enterprise/meta/include/functions_wizard_meta.php:476 -#: ../../enterprise/meta/include/functions_wizard_meta.php:589 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1144 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1464 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1586 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1689 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1812 -#: ../../enterprise/meta/advanced/collections.php:389 -#: ../../enterprise/meta/agentsearch.php:135 -#: ../../enterprise/meta/agentsearch.php:328 -#: ../../enterprise/mobile/include/enterprise.class.php:88 -#: ../../enterprise/godmode/setup/edit_skin.php:259 -#: ../../enterprise/godmode/setup/setup_skins.php:127 -#: ../../enterprise/godmode/modules/configure_local_component.php:477 -#: ../../enterprise/godmode/modules/configure_local_component.php:636 -#: ../../enterprise/godmode/modules/manage_inventory_modules.php:273 -#: ../../enterprise/godmode/modules/manage_inventory_modules_form.php:101 -#: ../../enterprise/godmode/services/services.elements.php:103 -#: ../../enterprise/godmode/services/services.service.php:558 -#: ../../enterprise/godmode/reporting/graph_template_editor.php:199 -#: ../../enterprise/godmode/reporting/graph_template_list.php:204 -#: ../../enterprise/godmode/reporting/reporting_builder.template_editor.php:205 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1691 -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:498 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:447 -#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor_form.php:76 -#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:386 -#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:679 -#: ../../enterprise/godmode/massive/massive_create_services.php:647 -#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:297 -#: ../../enterprise/godmode/agentes/inventory_manager.php:221 -#: ../../enterprise/godmode/agentes/agent_autoconfiguration.php:137 -#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:312 -#: ../../enterprise/godmode/agentes/collection_manager.php:111 -#: ../../enterprise/godmode/agentes/collection_manager.php:208 -#: ../../enterprise/godmode/agentes/pandora_networkmap_empty.editor.php:162 -#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:386 -#: ../../enterprise/godmode/agentes/collections.php:382 -#: ../../enterprise/godmode/alerts/alert_inventory_list.php:222 -#: ../../enterprise/godmode/alerts/alert_inventory_builder.php:166 -#: ../../enterprise/godmode/policies/configure_policy.php:119 -#: ../../enterprise/godmode/policies/policy_inventory_modules.php:303 -#: ../../enterprise/godmode/policies/policy_collections.php:171 -#: ../../enterprise/godmode/policies/policy_collections.php:265 +#: ../../enterprise/operation/agentes/policy_view.php:68 +#: ../../enterprise/operation/agentes/transactional_map.php:207 +#: ../../enterprise/operation/agentes/tag_view.php:600 +#: ../../enterprise/operation/agentes/ver_agente.php:60 +#: ../../enterprise/operation/agentes/collection_view.php:77 +#: ../../enterprise/operation/agentes/manage_transmap_creation.php:364 +#: ../../enterprise/operation/agentes/manage_transmap_creation.php:490 +#: ../../enterprise/operation/services/services.service.php:119 +#: ../../enterprise/operation/services/services.list.php:500 +#: ../../enterprise/tools/ipam/ipam_supernet_config.php:619 +#: ../../enterprise/tools/ipam/ipam_supernet_config.php:1061 +#: ../../enterprise/tools/ipam/ipam_list.php:582 +#: ../../enterprise/tools/ipam/ipam_vlan_wizard.php:411 +#: ../../enterprise/tools/ipam/ipam_vlan_network.php:40 +#: ../../enterprise/tools/ipam/ipam_excel.php:132 +#: ../../enterprise/tools/ipam/ipam_excel.php:201 +#: ../../enterprise/tools/ipam/ipam_vlan_config.php:345 +#: ../../enterprise/tools/ipam/ipam_vlan_config.php:681 +#: ../../enterprise/tools/ipam/ipam_supernet_network.php:84 +#: ../../enterprise/tools/ipam/ipam_editor.php:177 #: ../../extensions/files_repo/files_repo_form.php:83 #: ../../extensions/files_repo/files_repo_list.php:56 -#: ../../mobile/operation/tactical.php:352 ../../godmode/setup/snmp_wizard.php:41 -#: ../../godmode/setup/os.list.php:70 ../../godmode/setup/os.builder.php:37 -#: ../../godmode/servers/plugin.php:358 ../../godmode/servers/plugin.php:485 -#: ../../godmode/servers/modificar_server.php:66 -#: ../../godmode/modules/module_list.php:63 -#: ../../godmode/modules/manage_network_components.php:751 -#: ../../godmode/modules/manage_network_templates.php:247 #: ../../godmode/modules/manage_network_templates_form.php:172 #: ../../godmode/modules/manage_network_templates_form.php:234 -#: ../../godmode/modules/manage_network_components_form_wizard.php:451 #: ../../godmode/modules/manage_network_components_form_common.php:335 -#: ../../godmode/reporting/reporting_builder.main.php:215 -#: ../../godmode/reporting/graphs.php:311 -#: ../../godmode/reporting/create_container.php:266 -#: ../../godmode/reporting/reporting_builder.item_editor.php:74 -#: ../../godmode/reporting/reporting_builder.item_editor.php:1086 -#: ../../godmode/reporting/reporting_builder.php:911 -#: ../../godmode/reporting/graph_builder.main.php:180 +#: ../../godmode/modules/manage_network_components.php:751 +#: ../../godmode/modules/manage_network_components_form_wizard.php:451 +#: ../../godmode/modules/module_list.php:63 +#: ../../godmode/modules/manage_network_templates.php:247 +#: ../../godmode/groups/configure_group.php:242 +#: ../../godmode/groups/group_list.php:850 ../../godmode/users/user_list.php:485 +#: ../../godmode/agentes/agent_template.php:237 +#: ../../godmode/agentes/modificar_agente.php:652 +#: ../../godmode/agentes/planned_downtime.list.php:611 +#: ../../godmode/agentes/planned_downtime.editor.php:578 +#: ../../godmode/agentes/pandora_networkmap_empty.editor.php:164 +#: ../../godmode/agentes/agent_manager.php:470 +#: ../../godmode/agentes/module_manager_editor_common.php:1081 +#: ../../godmode/agentes/module_manager.php:862 +#: ../../godmode/netflow/nf_item_list.php:175 #: ../../godmode/snmpconsole/snmp_alert.php:766 #: ../../godmode/snmpconsole/snmp_alert.php:1269 #: ../../godmode/snmpconsole/snmp_filters.php:201 #: ../../godmode/snmpconsole/snmp_filters.php:289 -#: ../../godmode/tag/edit_tag.php:219 ../../godmode/tag/tag.php:228 -#: ../../godmode/tag/tag.php:278 +#: ../../godmode/massive/massive_edit_plugins.php:494 +#: ../../godmode/massive/massive_edit_agents.php:760 +#: ../../godmode/massive/massive_edit_modules.php:743 +#: ../../godmode/alerts/configure_alert_command.php:283 +#: ../../godmode/alerts/alert_commands.php:658 +#: ../../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 +#: ../../godmode/setup/snmp_wizard.php:41 +#: ../../godmode/reporting/create_container.php:266 +#: ../../godmode/reporting/graphs.php:311 +#: ../../godmode/reporting/reporting_builder.item_editor.php:74 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1136 +#: ../../godmode/reporting/reporting_builder.main.php:215 +#: ../../godmode/reporting/reporting_builder.php:909 +#: ../../godmode/reporting/graph_builder.main.php:180 #: ../../godmode/events/event_responses.editor.php:111 #: ../../godmode/events/event_responses.list.php:51 -#: ../../godmode/netflow/nf_item_list.php:175 -#: ../../godmode/massive/massive_edit_agents.php:760 -#: ../../godmode/massive/massive_edit_plugins.php:494 -#: ../../godmode/massive/massive_edit_modules.php:743 -#: ../../godmode/agentes/module_manager.php:862 -#: ../../godmode/agentes/module_manager_editor_common.php:1081 -#: ../../godmode/agentes/agent_manager.php:470 -#: ../../godmode/agentes/planned_downtime.editor.php:578 -#: ../../godmode/agentes/planned_downtime.list.php:611 -#: ../../godmode/agentes/agent_template.php:237 -#: ../../godmode/agentes/pandora_networkmap_empty.editor.php:164 -#: ../../godmode/agentes/modificar_agente.php:652 -#: ../../godmode/alerts/configure_alert_template.php:1106 -#: ../../godmode/alerts/alert_templates.php:46 -#: ../../godmode/alerts/alert_commands.php:658 -#: ../../godmode/alerts/configure_alert_command.php:283 -#: ../../godmode/users/user_list.php:485 -#: ../../godmode/groups/configure_group.php:242 -#: ../../godmode/groups/group_list.php:850 +#: ../../godmode/servers/modificar_server.php:66 +#: ../../godmode/servers/plugin.php:358 ../../godmode/servers/plugin.php:485 +#: ../../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:1569 +#: ../../include/functions_reporting_html.php:3435 +#: ../../include/functions_reporting_html.php:3486 +#: ../../include/functions_reporting_html.php:5250 +#: ../../include/functions_reporting_html.php:6171 +#: ../../include/ajax/events_extended.php:91 ../../include/ajax/heatmap.ajax.php:232 +#: ../../include/ajax/heatmap.ajax.php:271 ../../include/ajax/heatmap.ajax.php:331 +#: ../../include/ajax/module.php:979 ../../include/functions_treeview.php:127 +#: ../../include/functions_treeview.php:652 +#: ../../include/class/ConfigPEN.class.php:448 +#: ../../include/class/ConfigPEN.class.php:599 +#: ../../include/class/ManageNetScanScripts.class.php:404 +#: ../../include/class/ManageNetScanScripts.class.php:558 +#: ../../include/class/ManageNetScanScripts.class.php:607 +#: ../../include/class/ModuleTemplates.class.php:893 +#: ../../include/class/ModuleTemplates.class.php:1062 +#: ../../include/class/ModuleTemplates.class.php:1210 +#: ../../include/class/AgentWizard.class.php:1198 +#: ../../include/class/AgentWizard.class.php:4061 +#: ../../include/functions_container.php:147 +#: ../../include/functions_snmp_browser.php:570 +#: ../../include/functions_snmp_browser.php:1690 +#: ../../include/functions_events.php:3440 ../../operation/search_users.php:48 +#: ../../operation/search_agents.php:43 ../../operation/search_agents.php:49 +#: ../../operation/agentes/gis_view.php:222 +#: ../../operation/agentes/estado_agente.php:742 +#: ../../operation/agentes/pandora_networkmap.editor.php:321 +#: ../../operation/agentes/custom_fields.php:69 +#: ../../operation/agentes/pandora_networkmap.view.php:109 +#: ../../operation/agentes/estado_generalagente.php:237 +#: ../../operation/gis_maps/ajax.php:325 ../../operation/gis_maps/ajax.php:459 +#: ../../operation/incidents/configure_integriaims_incident.php:342 +#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:117 +#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:248 +#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:261 +#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:392 +#: ../../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/search_policies.php:36 msgid "Description" msgstr "Description" -#: ../../views/calendar/edit.php:120 ../../views/calendar/special_days.php:323 +#: ../../views/calendar/list.php:96 ../../views/dashboard/header.php:80 +#: ../../enterprise/views/ncm/snippets/list.php:71 +#: ../../enterprise/views/ncm/agent/details.php:92 +#: ../../enterprise/views/ncm/templates/list.php:77 +#: ../../enterprise/views/ncm/firmwares/list.php:77 +#: ../../enterprise/views/ncm/models/list.php:73 +#: ../../enterprise/views/ncm/vendors/list.php:71 +#: ../../enterprise/views/cluster/list.php:64 +#: ../../enterprise/views/ipam/sites/list.php:49 +#: ../../enterprise/meta/monitoring/wizard/wizard.create_module.php:266 +#: ../../enterprise/extensions/vmware/vmware_view.php:1338 +#: ../../enterprise/godmode/reporting/reporting_builder.template_list_item.php:261 +#: ../../enterprise/include/class/DeploymentCenter.class.php:764 +#: ../../enterprise/include/class/AgentRepository.class.php:645 +#: ../../enterprise/include/class/Omnishell.class.php:402 +#: ../../enterprise/include/class/LogSource.class.php:630 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2341 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2950 +#: ../../godmode/menu.php:541 +#: ../../godmode/reporting/reporting_builder.list_items.php:427 +#: ../../include/ajax/events.php:2251 ../../include/class/ConfigPEN.class.php:601 +#: ../../include/class/CredentialStore.class.php:807 +#: ../../include/class/ExternalTools.class.php:383 +#: ../../include/functions_events.php:310 +msgid "Options" +msgstr "Options" + +#: ../../views/calendar/list.php:119 +#: ../../enterprise/views/ncm/snippets/list.php:102 +#: ../../enterprise/views/ncm/templates/list.php:108 +#: ../../enterprise/views/ncm/devices/list.php:155 +#: ../../enterprise/views/ncm/firmwares/list.php:108 +#: ../../enterprise/views/ncm/models/list.php:96 +#: ../../enterprise/views/ncm/vendors/list.php:94 +#: ../../enterprise/views/cluster/list.php:96 +#: ../../enterprise/views/ipam/sites/list.php:73 +#: ../../enterprise/meta/advanced/metasetup.consoles.php:872 +#: ../../enterprise/godmode/massive/massive_delete_alerts_snmp.php:197 +#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:257 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:755 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3255 +#: ../../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 +#: ../../godmode/update_manager/update_manager.history.php:67 +#: ../../godmode/snmpconsole/snmp_alert.php:1161 +#: ../../godmode/events/event_edit_filter.php:366 +#: ../../mobile/operation/agents.php:253 ../../mobile/operation/modules.php:318 +#: ../../mobile/operation/alerts.php:241 ../../mobile/operation/events.php:992 +#: ../../include/ajax/module.php:292 ../../include/class/ConfigPEN.class.php:627 +#: ../../include/class/CredentialStore.class.php:845 +#: ../../operation/snmpconsole/snmp_view.php:600 +#: ../../operation/events/events.php:1644 +msgid "Free search" +msgstr "Recherche libre" + +#: ../../views/calendar/list.php:144 ../../views/calendar/special_days_edit.php:163 +#: ../../views/calendar/special_days_edit.php:206 ../../views/calendar/edit.php:126 +#: ../../views/calendar/special_days.php:323 #: ../../views/calendar/special_days.php:406 #: ../../views/calendar/special_days.php:481 #: ../../views/calendar/special_days.php:505 -#: ../../views/calendar/special_days_edit.php:163 -#: ../../views/calendar/special_days_edit.php:206 -#: ../../views/calendar/list.php:144 ../../operation/gis_maps/gis_map.php:207 -#: ../../operation/incidents/configure_integriaims_incident.php:380 -#: ../../operation/incidents/list_integriaims_incidents.php:573 -#: ../../include/functions_visual_map_editor.php:884 -#: ../../include/class/ModuleTemplates.class.php:960 -#: ../../include/class/ModuleTemplates.class.php:1007 -#: ../../include/class/ManageNetScanScripts.class.php:763 -#: ../../include/functions_filemanager.php:813 -#: ../../include/functions_filemanager.php:874 -#: ../../enterprise/tools/ipam/ipam_network_location_config.php:148 -#: ../../enterprise/tools/ipam/ipam_network_location_config.php:315 -#: ../../enterprise/tools/ipam/ipam_vlan_wizard.php:454 -#: ../../enterprise/tools/ipam/ipam_list.php:746 -#: ../../enterprise/tools/ipam/ipam_editor.php:361 -#: ../../enterprise/views/ncm/snippets/edit.php:106 #: ../../enterprise/views/ncm/snippets/list.php:127 -#: ../../enterprise/views/ncm/firmwares/edit.php:169 -#: ../../enterprise/views/ncm/firmwares/list.php:133 -#: ../../enterprise/views/ncm/vendors/edit.php:104 -#: ../../enterprise/views/ncm/vendors/list.php:119 -#: ../../enterprise/views/ncm/templates/edit.php:315 +#: ../../enterprise/views/ncm/snippets/edit.php:106 #: ../../enterprise/views/ncm/templates/list.php:133 -#: ../../enterprise/views/ncm/models/edit.php:103 +#: ../../enterprise/views/ncm/templates/edit.php:315 +#: ../../enterprise/views/ncm/firmwares/list.php:133 +#: ../../enterprise/views/ncm/firmwares/edit.php:169 #: ../../enterprise/views/ncm/models/list.php:121 -#: ../../enterprise/views/ipam/sites/edit.php:80 +#: ../../enterprise/views/ncm/models/edit.php:103 +#: ../../enterprise/views/ncm/vendors/list.php:119 +#: ../../enterprise/views/ncm/vendors/edit.php:104 #: ../../enterprise/views/ipam/sites/list.php:98 -#: ../../enterprise/operation/agentes/manage_transmap_creation.php:405 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3097 -#: ../../enterprise/meta/include/functions_autoprovision.php:588 -#: ../../enterprise/meta/include/functions_autoprovision.php:789 -#: ../../enterprise/meta/monitoring/wizard/wizard.create_module.php:300 -#: ../../enterprise/meta/monitoring/wizard/wizard.manage_alert.php:105 -#: ../../enterprise/meta/advanced/collections.editor.php:136 -#: ../../enterprise/meta/advanced/cron_main.php:471 +#: ../../enterprise/views/ipam/sites/edit.php:80 +#: ../../enterprise/meta/advanced/links.php:137 #: ../../enterprise/meta/advanced/collections.data.php:42 #: ../../enterprise/meta/advanced/collections.data.php:71 #: ../../enterprise/meta/advanced/collections.data.php:93 #: ../../enterprise/meta/advanced/collections.data.php:113 #: ../../enterprise/meta/advanced/collections.data.php:138 #: ../../enterprise/meta/advanced/collections.data.php:184 +#: ../../enterprise/meta/advanced/collections.editor.php:136 +#: ../../enterprise/meta/advanced/cron_main.php:471 #: ../../enterprise/meta/advanced/collections.php:498 #: ../../enterprise/meta/advanced/collections.php:509 -#: ../../enterprise/meta/advanced/links.php:137 -#: ../../enterprise/godmode/setup/edit_skin.php:299 -#: ../../enterprise/godmode/servers/manage_export.php:130 -#: ../../enterprise/godmode/servers/manage_export.php:169 +#: ../../enterprise/meta/monitoring/wizard/wizard.manage_alert.php:105 +#: ../../enterprise/meta/monitoring/wizard/wizard.create_module.php:300 +#: ../../enterprise/meta/include/functions_autoprovision.php:588 +#: ../../enterprise/meta/include/functions_autoprovision.php:789 #: ../../enterprise/godmode/modules/configure_local_component.php:680 -#: ../../enterprise/godmode/modules/local_components.php:716 #: ../../enterprise/godmode/modules/manage_inventory_modules.php:343 +#: ../../enterprise/godmode/modules/local_components.php:716 #: ../../enterprise/godmode/modules/manage_inventory_modules_form.php:145 -#: ../../enterprise/godmode/services/services.service.php:940 -#: ../../enterprise/godmode/reporting/aws_view.php:194 -#: ../../enterprise/godmode/reporting/graph_template_editor.php:269 -#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor_form.php:24 -#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor_form.php:87 -#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:428 -#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:599 -#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:636 -#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:685 -#: ../../enterprise/godmode/agentes/collections.editor.php:169 +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:791 +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:840 #: ../../enterprise/godmode/agentes/collections.agents.php:38 #: ../../enterprise/godmode/agentes/collections.data.php:68 #: ../../enterprise/godmode/agentes/collections.data.php:169 @@ -869,238 +895,540 @@ msgstr "Description" #: ../../enterprise/godmode/agentes/collections.data.php:213 #: ../../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:466 -#: ../../enterprise/godmode/alerts/alert_inventory_list.php:433 +#: ../../enterprise/godmode/policies/configure_policy.php:139 #: ../../enterprise/godmode/policies/policy_modules.php:432 #: ../../enterprise/godmode/policies/policies.php:645 -#: ../../enterprise/godmode/policies/configure_policy.php:139 -#: ../../godmode/setup/os.php:95 ../../godmode/setup/os.php:177 -#: ../../godmode/setup/news.php:231 ../../godmode/setup/gis.php:97 -#: ../../godmode/setup/links.php:127 ../../godmode/servers/plugin.php:596 +#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor_form.php:24 +#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor_form.php:87 +#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:428 +#: ../../enterprise/godmode/alerts/alert_inventory_list.php:433 +#: ../../enterprise/godmode/services/services.service.php:940 +#: ../../enterprise/godmode/setup/edit_skin.php:299 +#: ../../enterprise/godmode/reporting/aws_view.php:194 +#: ../../enterprise/godmode/reporting/graph_template_editor.php:269 +#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:599 +#: ../../enterprise/godmode/servers/manage_export.php:130 +#: ../../enterprise/godmode/servers/manage_export.php:169 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3139 +#: ../../enterprise/operation/agentes/manage_transmap_creation.php:405 +#: ../../enterprise/tools/ipam/ipam_list.php:746 +#: ../../enterprise/tools/ipam/ipam_vlan_wizard.php:454 +#: ../../enterprise/tools/ipam/ipam_network_location_config.php:148 +#: ../../enterprise/tools/ipam/ipam_network_location_config.php:315 +#: ../../enterprise/tools/ipam/ipam_editor.php:361 +#: ../../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_network_components_form.php:376 #: ../../godmode/modules/manage_network_components.php:934 #: ../../godmode/modules/manage_network_templates.php:309 -#: ../../godmode/modules/manage_network_templates_form.php:180 -#: ../../godmode/modules/manage_nc_groups.php:318 -#: ../../godmode/modules/manage_nc_groups_form.php:93 -#: ../../godmode/category/edit_category.php:205 -#: ../../godmode/reporting/map_builder.php:559 -#: ../../godmode/reporting/create_container.php:333 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2170 -#: ../../godmode/reporting/graph_builder.main.php:294 +#: ../../godmode/groups/configure_group.php:279 +#: ../../godmode/groups/configure_modu_group.php:86 +#: ../../godmode/users/profile_list.php:463 +#: ../../godmode/users/configure_user.php:1447 +#: ../../godmode/agentes/module_manager_editor.php:788 +#: ../../godmode/agentes/planned_downtime.list.php:582 +#: ../../godmode/agentes/planned_downtime.list.php:873 +#: ../../godmode/agentes/agent_manager.php:972 +#: ../../godmode/agentes/configure_field.php:141 +#: ../../godmode/agentes/module_manager.php:229 +#: ../../godmode/netflow/nf_edit_form.php:272 #: ../../godmode/snmpconsole/snmp_alert.php:1142 #: ../../godmode/snmpconsole/snmp_alert.php:1514 #: ../../godmode/snmpconsole/snmp_filters.php:263 #: ../../godmode/snmpconsole/snmp_filters.php:336 -#: ../../godmode/tag/edit_tag.php:281 -#: ../../godmode/events/event_edit_filter.php:676 -#: ../../godmode/events/event_responses.editor.php:219 -#: ../../godmode/netflow/nf_edit_form.php:272 -#: ../../godmode/agentes/module_manager.php:229 -#: ../../godmode/agentes/configure_field.php:141 -#: ../../godmode/agentes/agent_manager.php:972 -#: ../../godmode/agentes/module_manager_editor.php:788 -#: ../../godmode/agentes/planned_downtime.list.php:582 -#: ../../godmode/agentes/planned_downtime.list.php:873 -#: ../../godmode/alerts/alert_list.list.php:961 -#: ../../godmode/alerts/alert_actions.php:471 -#: ../../godmode/alerts/alert_templates.php:481 -#: ../../godmode/alerts/alert_commands.php:748 -#: ../../godmode/alerts/alert_list.php:496 #: ../../godmode/alerts/configure_alert_command.php:387 +#: ../../godmode/alerts/alert_actions.php:471 +#: ../../godmode/alerts/alert_list.list.php:976 +#: ../../godmode/alerts/alert_commands.php:748 +#: ../../godmode/alerts/alert_templates.php:482 #: ../../godmode/alerts/configure_alert_action.php:402 -#: ../../godmode/users/configure_user.php:1475 -#: ../../godmode/users/profile_list.php:463 -#: ../../godmode/groups/configure_group.php:279 -#: ../../godmode/groups/configure_modu_group.php:86 +#: ../../godmode/alerts/alert_list.php:496 ../../godmode/setup/news.php:231 +#: ../../godmode/setup/gis.php:97 ../../godmode/setup/os.php:95 +#: ../../godmode/setup/os.php:177 ../../godmode/setup/links.php:127 +#: ../../godmode/reporting/create_container.php:333 +#: ../../godmode/reporting/map_builder.php:559 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2266 +#: ../../godmode/reporting/graph_builder.main.php:294 +#: ../../godmode/events/event_responses.editor.php:219 +#: ../../godmode/events/event_edit_filter.php:681 +#: ../../godmode/servers/plugin.php:596 ../../godmode/tag/edit_tag.php:281 +#: ../../godmode/category/edit_category.php:205 +#: ../../include/functions_visual_map_editor.php:884 +#: ../../include/class/ManageNetScanScripts.class.php:763 +#: ../../include/class/ModuleTemplates.class.php:960 +#: ../../include/class/ModuleTemplates.class.php:1007 +#: ../../include/functions_filemanager.php:813 +#: ../../include/functions_filemanager.php:874 +#: ../../operation/gis_maps/gis_map.php:207 +#: ../../operation/incidents/configure_integriaims_incident.php:380 +#: ../../operation/incidents/list_integriaims_incidents.php:573 msgid "Create" msgstr "CrĆ©er" -#: ../../views/calendar/edit.php:120 -#: ../../views/calendar/special_days_edit.php:163 -#: ../../operation/reporting/reporting_viewer.php:311 -#: ../../operation/network/network_report.php:132 -#: ../../operation/snmpconsole/snmp_view.php:660 -#: ../../operation/events/events_list.php:1073 -#: ../../operation/agentes/datos_agente.php:218 -#: ../../operation/users/user_edit.php:777 -#: ../../operation/incidents/configure_integriaims_incident.php:378 -#: ../../include/functions_visual_map_editor.php:880 -#: ../../include/ajax/alert_list.ajax.php:551 -#: ../../include/class/ModuleTemplates.class.php:1012 -#: ../../include/class/ManageNetScanScripts.class.php:765 -#: ../../include/class/ExternalTools.class.php:392 -#: ../../include/class/ConfigPEN.class.php:697 -#: ../../include/class/ConfigPEN.class.php:698 -#: ../../include/class/CredentialStore.class.php:1246 -#: ../../include/class/NetworkMap.class.php:3069 -#: ../../include/functions_events.php:3646 -#: ../../include/functions_events.php:3726 -#: ../../enterprise/tools/ipam/ipam_network_location_config.php:145 -#: ../../enterprise/tools/ipam/ipam_massive.php:112 -#: ../../enterprise/tools/ipam/ipam_network.php:695 -#: ../../enterprise/tools/ipam/ipam_editor.php:359 +#: ../../views/calendar/special_days_edit.php:40 +#: ../../enterprise/meta/monitoring/wizard/wizard.module.local.php:109 +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:794 +#: ../../enterprise/meta/monitoring/wizard/wizard.module.network.php:121 +#: ../../enterprise/meta/monitoring/wizard/wizard.module.web.php:102 +#: ../../enterprise/meta/monitoring/wizard/wizard.php:291 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1534 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1627 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1752 +#: ../../enterprise/meta/agentsearch.php:141 +#: ../../enterprise/godmode/policies/policy_alerts.php:46 +#: ../../enterprise/godmode/policies/policies.php:519 +#: ../../enterprise/godmode/massive/massive_create_services.php:877 +#: ../../enterprise/godmode/alerts/alert_inventory.php:78 +#: ../../enterprise/godmode/alerts/alert_inventory.php:80 +#: ../../enterprise/godmode/services/services.service.php:931 +#: ../../enterprise/include/functions_policies.php:3763 +#: ../../enterprise/operation/agentes/tag_view.php:608 +#: ../../godmode/groups/configure_group.php:230 +#: ../../godmode/groups/group_list.php:846 +#: ../../godmode/agentes/configurar_agente.php:422 +#: ../../godmode/agentes/modificar_agente.php:823 +#: ../../godmode/snmpconsole/snmp_alert.php:114 ../../godmode/menu.php:251 +#: ../../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:494 +#: ../../godmode/alerts/alert_templates.php:131 +#: ../../godmode/alerts/alert_templates.php:183 +#: ../../godmode/alerts/alert_templates.php:206 +#: ../../godmode/alerts/alert_templates.php:227 +#: ../../godmode/alerts/configure_alert_action.php:74 +#: ../../godmode/alerts/configure_alert_action.php:87 +#: ../../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:494 ../../godmode/alerts/alert_list.php:496 +#: ../../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:2378 +#: ../../include/functions_reporting_html.php:5430 +#: ../../include/functions_treeview.php:405 ../../include/functions_reports.php:843 +#: ../../include/functions_reports.php:847 ../../include/functions_reports.php:853 +#: ../../include/functions_reports.php:859 +#: ../../include/class/AgentsAlerts.class.php:542 +#: ../../operation/search_agents.php:57 ../../operation/search_results.php:106 +#: ../../operation/agentes/estado_agente.php:766 +#: ../../operation/agentes/ver_agente.php:1427 +msgid "Alerts" +msgstr "Alertes" + +#: ../../views/calendar/special_days_edit.php:40 +msgid "Configure special day" +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:712 +#: ../../enterprise/include/functions_reporting_csv.php:776 +#: ../../enterprise/include/functions_reporting_csv.php:832 +#: ../../enterprise/include/functions_reporting_csv.php:877 +#: ../../enterprise/include/functions_reporting_csv.php:2518 +#: ../../enterprise/include/class/ManageBackups.class.php:163 +#: ../../enterprise/include/functions_reporting.php:2144 +#: ../../enterprise/include/functions_reporting.php:2181 +#: ../../enterprise/include/functions_reporting.php:2216 +#: ../../enterprise/include/functions_reporting.php:2234 +#: ../../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:2153 +#: ../../mobile/operation/tactical.php:350 +#: ../../include/functions_reporting_html.php:1814 +#: ../../include/functions_reporting_html.php:2628 +#: ../../include/functions_reporting_html.php:2637 +#: ../../include/functions_reporting_html.php:2642 +#: ../../include/functions_reporting_html.php:2651 +#: ../../include/functions_reporting_html.php:2656 +#: ../../include/functions_reporting_html.php:2663 +#: ../../include/functions_reporting_html.php:2712 +#: ../../include/functions_reporting_html.php:2785 +#: ../../include/functions_reporting_html.php:5772 ../../include/functions.php:3053 +#: ../../include/class/AuditLog.class.php:110 +#: ../../include/functions_reporting.php:4193 +#: ../../include/functions_reporting.php:4234 +#: ../../operation/incidents/list_integriaims_incidents.php:371 +#: ../../operation/reporting/graph_viewer.php:348 ../../general/logon_ok.php:242 +msgid "Date" +msgstr "Date" + +#: ../../views/calendar/special_days_edit.php:116 +#: ../../views/calendar/special_days.php:92 +#: ../../views/calendar/special_days.php:358 +#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:95 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1851 +#: ../../enterprise/include/functions_reporting.php:1732 +#: ../../enterprise/include/functions_reporting.php:2463 +#: ../../enterprise/include/functions_reporting.php:2781 +#: ../../enterprise/include/functions_reporting.php:3406 +#: ../../enterprise/include/functions_reporting.php:4382 +#: ../../godmode/alerts/alert_templates.php:64 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1447 +#: ../../include/functions_html.php:2270 +msgid "Monday" +msgstr "Lundi" + +#: ../../views/calendar/special_days_edit.php:117 +#: ../../views/calendar/special_days.php:93 +#: ../../views/calendar/special_days.php:362 +#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:96 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1859 +#: ../../enterprise/include/functions_reporting.php:1733 +#: ../../enterprise/include/functions_reporting.php:2464 +#: ../../enterprise/include/functions_reporting.php:2782 +#: ../../enterprise/include/functions_reporting.php:3407 +#: ../../enterprise/include/functions_reporting.php:4383 +#: ../../godmode/alerts/alert_templates.php:65 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1455 +#: ../../include/functions_html.php:2271 +msgid "Tuesday" +msgstr "Mardi" + +#: ../../views/calendar/special_days_edit.php:118 +#: ../../views/calendar/special_days.php:94 +#: ../../views/calendar/special_days.php:366 +#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:97 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1867 +#: ../../enterprise/include/functions_reporting.php:1734 +#: ../../enterprise/include/functions_reporting.php:2465 +#: ../../enterprise/include/functions_reporting.php:2783 +#: ../../enterprise/include/functions_reporting.php:3408 +#: ../../enterprise/include/functions_reporting.php:4384 +#: ../../godmode/alerts/alert_templates.php:66 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1463 +#: ../../include/functions_html.php:2272 +msgid "Wednesday" +msgstr "Mercredi" + +#: ../../views/calendar/special_days_edit.php:119 +#: ../../views/calendar/special_days.php:95 +#: ../../views/calendar/special_days.php:370 +#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:98 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1875 +#: ../../enterprise/include/functions_reporting.php:1735 +#: ../../enterprise/include/functions_reporting.php:2466 +#: ../../enterprise/include/functions_reporting.php:2784 +#: ../../enterprise/include/functions_reporting.php:3409 +#: ../../enterprise/include/functions_reporting.php:4385 +#: ../../godmode/alerts/alert_templates.php:67 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1471 +#: ../../include/functions_html.php:2273 +msgid "Thursday" +msgstr "Jeudi" + +#: ../../views/calendar/special_days_edit.php:120 +#: ../../views/calendar/special_days.php:96 +#: ../../views/calendar/special_days.php:374 +#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:99 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1883 +#: ../../enterprise/include/functions_reporting.php:1736 +#: ../../enterprise/include/functions_reporting.php:2467 +#: ../../enterprise/include/functions_reporting.php:2785 +#: ../../enterprise/include/functions_reporting.php:3410 +#: ../../enterprise/include/functions_reporting.php:4386 +#: ../../godmode/alerts/alert_templates.php:68 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1479 +#: ../../include/functions_html.php:2274 +msgid "Friday" +msgstr "Vendredi" + +#: ../../views/calendar/special_days_edit.php:121 +#: ../../views/calendar/special_days.php:97 +#: ../../views/calendar/special_days.php:378 +#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:100 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1891 +#: ../../enterprise/include/functions_reporting.php:1737 +#: ../../enterprise/include/functions_reporting.php:2468 +#: ../../enterprise/include/functions_reporting.php:2786 +#: ../../enterprise/include/functions_reporting.php:3411 +#: ../../enterprise/include/functions_reporting.php:4387 +#: ../../godmode/alerts/alert_templates.php:69 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1487 +#: ../../include/functions_html.php:2275 +msgid "Saturday" +msgstr "Samedi" + +#: ../../views/calendar/special_days_edit.php:122 +#: ../../views/calendar/special_days.php:98 +#: ../../views/calendar/special_days.php:382 +#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:101 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1899 +#: ../../enterprise/include/functions_reporting.php:1738 +#: ../../enterprise/include/functions_reporting.php:2469 +#: ../../enterprise/include/functions_reporting.php:2787 +#: ../../enterprise/include/functions_reporting.php:3412 +#: ../../enterprise/include/functions_reporting.php:4388 +#: ../../godmode/alerts/alert_templates.php:70 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1495 +#: ../../include/functions_html.php:2269 +msgid "Sunday" +msgstr "Dimanche" + +#: ../../views/calendar/special_days_edit.php:123 +#: ../../views/calendar/special_days.php:386 +msgid "Holidays" +msgstr "Vacances" + +#: ../../views/calendar/special_days_edit.php:127 +#: ../../views/calendar/special_days.php:102 +msgid "Same day of the week" +msgstr "MĆŖme jour de la semaine" + +#: ../../views/calendar/special_days_edit.php:163 ../../views/calendar/edit.php:126 #: ../../enterprise/views/ncm/snippets/edit.php:106 -#: ../../enterprise/views/ncm/firmwares/edit.php:169 -#: ../../enterprise/views/ncm/vendors/edit.php:104 #: ../../enterprise/views/ncm/templates/edit.php:315 +#: ../../enterprise/views/ncm/firmwares/edit.php:169 #: ../../enterprise/views/ncm/models/edit.php:103 +#: ../../enterprise/views/ncm/vendors/edit.php:104 #: ../../enterprise/views/ipam/sites/edit.php:80 -#: ../../enterprise/operation/agentes/policy_view.php:208 -#: ../../enterprise/operation/agentes/policy_view.php:209 -#: ../../enterprise/operation/agentes/manage_transmap_creation_phases_data.php:87 -#: ../../enterprise/operation/agentes/collection_view.php:117 -#: ../../enterprise/operation/agentes/collection_view.php:118 -#: ../../enterprise/operation/agentes/manage_transmap_creation.php:264 -#: ../../enterprise/operation/agentes/manage_transmap_creation.php:532 -#: ../../enterprise/include/ajax/log_viewer.ajax.php:99 -#: ../../enterprise/include/ajax/servers.ajax.php:102 -#: ../../enterprise/include/ajax/servers.ajax.php:303 -#: ../../enterprise/include/class/SAPView.class.php:325 -#: ../../enterprise/include/class/AgentRepository.class.php:902 -#: ../../enterprise/include/class/LogSource.class.php:849 -#: ../../enterprise/include/class/Omnishell.class.php:646 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2242 -#: ../../enterprise/include/class/DeploymentCenter.class.php:1672 -#: ../../enterprise/include/class/DatabaseHA.class.php:891 -#: ../../enterprise/include/functions_HA_cluster.php:495 -#: ../../enterprise/meta/event/custom_events.php:213 -#: ../../enterprise/meta/include/functions_autoprovision.php:590 -#: ../../enterprise/meta/include/functions_autoprovision.php:791 -#: ../../enterprise/meta/advanced/metasetup.mail.php:133 -#: ../../enterprise/meta/advanced/metasetup.relations.php:278 +#: ../../enterprise/meta/advanced/metasetup.visual.php:1158 #: ../../enterprise/meta/advanced/metasetup.translate_string.php:231 -#: ../../enterprise/meta/advanced/collections.editor.php:149 -#: ../../enterprise/meta/advanced/collections.editor.php:223 -#: ../../enterprise/meta/advanced/metasetup.performance.php:174 -#: ../../enterprise/meta/advanced/cron_main.php:463 +#: ../../enterprise/meta/advanced/metasetup.relations.php:278 +#: ../../enterprise/meta/advanced/metasetup.password.php:157 +#: ../../enterprise/meta/advanced/metasetup.mail.php:133 +#: ../../enterprise/meta/advanced/metasetup.consoles.php:718 +#: ../../enterprise/meta/advanced/links.php:139 #: ../../enterprise/meta/advanced/collections.data.php:157 #: ../../enterprise/meta/advanced/collections.data.php:232 #: ../../enterprise/meta/advanced/collections.data.php:273 #: ../../enterprise/meta/advanced/collections.data.php:360 #: ../../enterprise/meta/advanced/collections.data.php:361 +#: ../../enterprise/meta/advanced/collections.editor.php:149 +#: ../../enterprise/meta/advanced/collections.editor.php:223 +#: ../../enterprise/meta/advanced/cron_main.php:463 #: ../../enterprise/meta/advanced/metasetup.setup.php:375 -#: ../../enterprise/meta/advanced/metasetup.consoles.php:718 -#: ../../enterprise/meta/advanced/metasetup.password.php:157 -#: ../../enterprise/meta/advanced/metasetup.visual.php:1150 -#: ../../enterprise/meta/advanced/links.php:139 +#: ../../enterprise/meta/advanced/metasetup.performance.php:188 +#: ../../enterprise/meta/event/custom_events.php:213 +#: ../../enterprise/meta/include/functions_autoprovision.php:590 +#: ../../enterprise/meta/include/functions_autoprovision.php:791 #: ../../enterprise/extensions/translate_string.php:364 #: ../../enterprise/extensions/vmware/vmware_view.php:1257 #: ../../enterprise/extensions/vmware/vmware_view.php:1768 -#: ../../enterprise/godmode/setup/setup.php:438 -#: ../../enterprise/godmode/setup/setup.php:627 -#: ../../enterprise/godmode/setup/setup_history.php:524 -#: ../../enterprise/godmode/setup/setup_metaconsole.php:245 -#: ../../enterprise/godmode/setup/setup_log_collector.php:74 -#: ../../enterprise/godmode/setup/edit_skin.php:290 -#: ../../enterprise/godmode/setup/setup_module_library.php:62 -#: ../../enterprise/godmode/servers/manage_export_form.php:136 -#: ../../enterprise/godmode/servers/credential_boxes_satellite.php:251 -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:357 -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:889 -#: ../../enterprise/godmode/servers/manage_credential_boxes.php:90 #: ../../enterprise/godmode/modules/configure_local_component.php:677 #: ../../enterprise/godmode/modules/manage_inventory_modules.php:313 #: ../../enterprise/godmode/modules/manage_inventory_modules_form.php:143 -#: ../../enterprise/godmode/services/services.service.php:947 -#: ../../enterprise/godmode/reporting/mysql_builder.php:143 -#: ../../enterprise/godmode/reporting/mysql_builder.php:155 -#: ../../enterprise/godmode/reporting/mysql_builder.php:164 -#: ../../enterprise/godmode/reporting/mysql_builder.php:242 -#: ../../enterprise/godmode/reporting/reporting_builder.advanced.php:187 -#: ../../enterprise/godmode/reporting/graph_template_editor.php:267 -#: ../../enterprise/godmode/reporting/reporting_builder.template_advanced.php:176 -#: ../../enterprise/godmode/reporting/reporting_builder.template_editor.php:129 -#: ../../enterprise/godmode/reporting/reporting_builder.template_editor.php:149 -#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor_form.php:84 -#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:408 -#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:1169 -#: ../../enterprise/godmode/massive/massive_tags_edit_policy.php:190 -#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:343 -#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:590 -#: ../../enterprise/godmode/agentes/inventory_manager.php:183 -#: ../../enterprise/godmode/agentes/inventory_manager.php:253 -#: ../../enterprise/godmode/agentes/agent_disk_conf_editor.php:257 -#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:320 -#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:638 +#: ../../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/collections.editor.php:182 -#: ../../enterprise/godmode/agentes/collections.editor.php:254 +#: ../../enterprise/godmode/agentes/inventory_manager.php:183 +#: ../../enterprise/godmode/agentes/inventory_manager.php:253 #: ../../enterprise/godmode/agentes/collections.data.php:107 #: ../../enterprise/godmode/agentes/collections.data.php:264 #: ../../enterprise/godmode/agentes/collections.data.php:342 #: ../../enterprise/godmode/agentes/collections.data.php:454 #: ../../enterprise/godmode/agentes/collections.data.php:455 +#: ../../enterprise/godmode/agentes/collections.editor.php:182 +#: ../../enterprise/godmode/agentes/collections.editor.php:254 #: ../../enterprise/godmode/agentes/plugins_manager.php:194 #: ../../enterprise/godmode/agentes/plugins_manager.php:251 -#: ../../enterprise/godmode/alerts/alert_inventory_list.php:337 +#: ../../enterprise/godmode/agentes/agent_disk_conf_editor.php:257 +#: ../../enterprise/godmode/policies/configure_policy.php:136 #: ../../enterprise/godmode/policies/policy_modules.php:428 #: ../../enterprise/godmode/policies/policy_external_alerts.php:364 -#: ../../enterprise/godmode/policies/configure_policy.php:136 #: ../../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:84 +#: ../../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 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:1169 +#: ../../enterprise/godmode/alerts/alert_inventory_list.php:337 +#: ../../enterprise/godmode/services/services.service.php:947 +#: ../../enterprise/godmode/setup/setup_history.php:528 +#: ../../enterprise/godmode/setup/setup.php:354 +#: ../../enterprise/godmode/setup/setup.php:543 +#: ../../enterprise/godmode/setup/setup_module_library.php:62 +#: ../../enterprise/godmode/setup/setup_metaconsole.php:245 +#: ../../enterprise/godmode/setup/setup_log_collector.php:74 +#: ../../enterprise/godmode/setup/edit_skin.php:290 +#: ../../enterprise/godmode/reporting/reporting_builder.template_editor.php:129 +#: ../../enterprise/godmode/reporting/reporting_builder.template_editor.php:149 +#: ../../enterprise/godmode/reporting/graph_template_editor.php:267 +#: ../../enterprise/godmode/reporting/reporting_builder.advanced.php:187 +#: ../../enterprise/godmode/reporting/mysql_builder.php:143 +#: ../../enterprise/godmode/reporting/mysql_builder.php:155 +#: ../../enterprise/godmode/reporting/mysql_builder.php:164 +#: ../../enterprise/godmode/reporting/mysql_builder.php:242 +#: ../../enterprise/godmode/reporting/reporting_builder.template_advanced.php:176 +#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:590 +#: ../../enterprise/godmode/servers/credential_boxes_satellite.php:251 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:357 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:889 +#: ../../enterprise/godmode/servers/manage_credential_boxes.php:90 +#: ../../enterprise/godmode/servers/manage_export_form.php:136 +#: ../../enterprise/include/ajax/log_viewer.ajax.php:99 +#: ../../enterprise/include/ajax/servers.ajax.php:102 +#: ../../enterprise/include/ajax/servers.ajax.php:303 +#: ../../enterprise/include/functions_HA_cluster.php:495 +#: ../../enterprise/include/class/DeploymentCenter.class.php:1672 +#: ../../enterprise/include/class/DatabaseHA.class.php:891 +#: ../../enterprise/include/class/AgentRepository.class.php:915 +#: ../../enterprise/include/class/Omnishell.class.php:646 +#: ../../enterprise/include/class/LogSource.class.php:849 +#: ../../enterprise/include/class/SAPView.class.php:325 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2284 +#: ../../enterprise/operation/agentes/manage_transmap_creation_phases_data.php:87 +#: ../../enterprise/operation/agentes/policy_view.php:208 +#: ../../enterprise/operation/agentes/policy_view.php:209 +#: ../../enterprise/operation/agentes/collection_view.php:117 +#: ../../enterprise/operation/agentes/collection_view.php:118 +#: ../../enterprise/operation/agentes/manage_transmap_creation.php:264 +#: ../../enterprise/operation/agentes/manage_transmap_creation.php:532 +#: ../../enterprise/tools/ipam/ipam_network.php:695 +#: ../../enterprise/tools/ipam/ipam_network_location_config.php:145 +#: ../../enterprise/tools/ipam/ipam_massive.php:112 +#: ../../enterprise/tools/ipam/ipam_editor.php:359 #: ../../extensions/files_repo/files_repo_form.php:99 -#: ../../godmode/setup/snmp_wizard.php:100 -#: ../../godmode/setup/setup_integria.php:632 -#: ../../godmode/setup/setup_visuals.php:1529 ../../godmode/setup/os.php:73 -#: ../../godmode/setup/os.php:142 ../../godmode/setup/news.php:233 -#: ../../godmode/setup/setup_auth.php:467 -#: ../../godmode/setup/setup_general.php:627 -#: ../../godmode/setup/performance.php:710 -#: ../../godmode/setup/setup_ehorus.php:179 -#: ../../godmode/setup/setup_netflow.php:81 -#: ../../godmode/setup/setup_websocket_engine.php:89 -#: ../../godmode/setup/links.php:129 ../../godmode/servers/plugin.php:198 -#: ../../godmode/servers/plugin.php:598 -#: ../../godmode/servers/modificar_server.php:100 -#: ../../godmode/update_manager/update_manager.setup.php:382 -#: ../../godmode/modules/manage_network_components_form.php:372 -#: ../../godmode/modules/manage_network_templates_form.php:178 #: ../../godmode/modules/manage_nc_groups_form.php:90 -#: ../../godmode/category/edit_category.php:195 -#: ../../godmode/reporting/reporting_builder.main.php:56 -#: ../../godmode/reporting/visual_console_builder.data.php:232 -#: ../../godmode/reporting/create_container.php:330 -#: ../../godmode/reporting/visual_console_builder.elements.php:761 -#: ../../godmode/reporting/graph_builder.main.php:294 +#: ../../godmode/modules/manage_network_templates_form.php:178 +#: ../../godmode/modules/manage_network_components_form.php:372 +#: ../../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:1454 +#: ../../godmode/agentes/agent_template.php:260 +#: ../../godmode/agentes/status_monitor_custom_fields.php:206 +#: ../../godmode/agentes/module_manager_editor.php:770 +#: ../../godmode/agentes/agent_conf_gis.php:134 +#: ../../godmode/agentes/planned_downtime.list.php:761 +#: ../../godmode/agentes/planned_downtime.list.php:806 +#: ../../godmode/agentes/planned_downtime.editor.php:873 +#: ../../godmode/agentes/agent_manager.php:963 +#: ../../godmode/agentes/configure_field.php:138 +#: ../../godmode/netflow/nf_edit_form.php:269 #: ../../godmode/snmpconsole/snmp_alert.php:1140 #: ../../godmode/snmpconsole/snmp_alert.php:1364 #: ../../godmode/snmpconsole/snmp_filters.php:261 #: ../../godmode/snmpconsole/snmp_filters.php:301 #: ../../godmode/snmpconsole/snmp_filters.php:312 -#: ../../godmode/tag/edit_tag.php:272 -#: ../../godmode/events/event_edit_filter.php:673 -#: ../../godmode/events/event_responses.editor.php:227 -#: ../../godmode/events/custom_events.php:169 -#: ../../godmode/netflow/nf_edit_form.php:269 -#: ../../godmode/agentes/configure_field.php:138 -#: ../../godmode/agentes/status_monitor_custom_fields.php:206 -#: ../../godmode/agentes/agent_manager.php:963 -#: ../../godmode/agentes/module_manager_editor.php:770 -#: ../../godmode/agentes/planned_downtime.editor.php:873 -#: ../../godmode/agentes/planned_downtime.list.php:761 -#: ../../godmode/agentes/planned_downtime.list.php:806 -#: ../../godmode/agentes/agent_conf_gis.php:134 -#: ../../godmode/agentes/agent_template.php:260 -#: ../../godmode/alerts/alert_list.list.php:161 -#: ../../godmode/alerts/alert_list.list.php:168 -#: ../../godmode/alerts/alert_list.list.php:920 #: ../../godmode/alerts/configure_alert_command.php:384 +#: ../../godmode/alerts/alert_list.list.php:171 +#: ../../godmode/alerts/alert_list.list.php:178 +#: ../../godmode/alerts/alert_list.list.php:935 #: ../../godmode/alerts/configure_alert_action.php:387 -#: ../../godmode/users/configure_user.php:1482 -#: ../../godmode/users/configure_profile.php:408 -#: ../../godmode/groups/configure_group.php:276 -#: ../../godmode/groups/configure_modu_group.php:83 +#: ../../godmode/setup/news.php:233 ../../godmode/setup/setup_ehorus.php:179 +#: ../../godmode/setup/setup_websocket_engine.php:89 ../../godmode/setup/os.php:73 +#: ../../godmode/setup/os.php:142 ../../godmode/setup/setup_auth.php:467 +#: ../../godmode/setup/setup_integria.php:632 ../../godmode/setup/links.php:129 +#: ../../godmode/setup/snmp_wizard.php:100 ../../godmode/setup/setup_netflow.php:81 +#: ../../godmode/setup/setup_visuals.php:1583 +#: ../../godmode/setup/setup_general.php:627 ../../godmode/setup/performance.php:720 +#: ../../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:678 +#: ../../godmode/events/custom_events.php:188 +#: ../../godmode/servers/modificar_server.php:100 +#: ../../godmode/servers/plugin.php:198 ../../godmode/servers/plugin.php:598 +#: ../../godmode/tag/edit_tag.php:272 ../../godmode/category/edit_category.php:195 +#: ../../include/functions_visual_map_editor.php:880 +#: ../../include/ajax/alert_list.ajax.php:564 +#: ../../include/class/ConfigPEN.class.php:697 +#: ../../include/class/ConfigPEN.class.php:698 +#: ../../include/class/NetworkMap.class.php:3069 +#: ../../include/class/ManageNetScanScripts.class.php:765 +#: ../../include/class/CredentialStore.class.php:1246 +#: ../../include/class/ModuleTemplates.class.php:1012 +#: ../../include/class/ExternalTools.class.php:392 +#: ../../include/functions_events.php:3236 ../../include/functions_events.php:3315 +#: ../../operation/users/user_edit.php:777 +#: ../../operation/agentes/datos_agente.php:218 +#: ../../operation/network/network_report.php:132 +#: ../../operation/snmpconsole/snmp_view.php:660 +#: ../../operation/incidents/configure_integriaims_incident.php:378 +#: ../../operation/reporting/reporting_viewer.php:311 msgid "Update" msgstr "Mise Ć  jour" +#: ../../views/calendar/special_days_edit.php:207 +#: ../../views/calendar/special_days.php:407 +#: ../../views/calendar/special_days.php:506 ../../views/dashboard/header.php:69 +#: ../../views/dashboard/header.php:103 ../../views/dashboard/list.php:225 +#: ../../enterprise/views/ncm/agent/details.php:690 +#: ../../enterprise/meta/monitoring/custom_fields_view.php:1152 +#: ../../enterprise/meta/event/custom_events.php:250 +#: ../../enterprise/godmode/services/services.service.php:994 +#: ../../enterprise/godmode/services/services.elements.php:849 +#: ../../enterprise/godmode/services/services.elements.php:860 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:281 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:355 +#: ../../enterprise/include/functions_HA_cluster.php:492 +#: ../../enterprise/include/class/DeploymentCenter.class.php:1567 +#: ../../enterprise/include/class/DeploymentCenter.class.php:1669 +#: ../../enterprise/include/class/DeploymentCenter.class.php:1721 +#: ../../enterprise/include/class/DeploymentCenter.class.php:1753 +#: ../../enterprise/include/class/DeploymentCenter.class.php:1788 +#: ../../enterprise/include/class/AgentRepository.class.php:814 +#: ../../enterprise/include/class/AgentRepository.class.php:912 +#: ../../enterprise/include/class/LogSource.class.php:845 +#: ../../enterprise/include/class/LogSource.class.php:898 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3051 +#: ../../enterprise/include/class/ManageBackups.class.php:446 +#: ../../enterprise/tools/ipam/ipam_supernet_config.php:1298 +#: ../../enterprise/tools/ipam/ipam_supernet_config.php:1322 +#: ../../enterprise/tools/ipam/ipam_vlan_config.php:808 +#: ../../enterprise/tools/ipam/ipam_vlan_config.php:831 +#: ../../update_manager_client/views/register.php:85 +#: ../../godmode/agentes/status_monitor_custom_fields.php:242 +#: ../../godmode/snmpconsole/snmp_alert.php:1547 +#: ../../godmode/snmpconsole/snmp_alert.php:1562 +#: ../../godmode/massive/massive_operations.php:393 +#: ../../godmode/setup/snmp_wizard.php:100 +#: ../../godmode/events/custom_events.php:224 +#: ../../include/functions_visual_map_editor.php:880 +#: ../../include/functions_visual_map_editor.php:884 +#: ../../include/functions_register.php:179 +#: ../../include/class/ConfigPEN.class.php:669 +#: ../../include/class/ConfigPEN.class.php:693 +#: ../../include/class/TreeGroupEdition.class.php:165 +#: ../../include/class/NetworkMap.class.php:2807 +#: ../../include/class/CredentialStore.class.php:1242 +#: ../../include/class/CredentialStore.class.php:1294 +#: ../../include/class/ModuleTemplates.class.php:1382 +#: ../../include/class/WelcomeWindow.class.php:174 +#: ../../include/class/AgentWizard.class.php:6041 +#: ../../operation/agentes/pandora_networkmap.editor.php:603 +#: ../../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:814 +msgid "Cancel" +msgstr "Annuler" + +#: ../../views/calendar/special_days_edit.php:211 +#: ../../views/calendar/special_days.php:411 +#: ../../views/calendar/special_days.php:510 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:4349 +#: ../../godmode/agentes/planned_downtime.list.php:695 +#: ../../godmode/alerts/configure_alert_template.php:1550 +#: ../../include/class/AgentWizard.class.php:5993 +msgid "Loading, this operation might take several minutes..." +msgstr "Chargement, cette opĆ©ration peut prendre plusieurs minutes..." + +#: ../../views/calendar/edit.php:40 +msgid "Calendars Edit" +msgstr "Modifier calendriers" + #: ../../views/calendar/special_days.php:41 -#: ../../include/class/CalendarManager.class.php:669 +#: ../../include/class/CalendarManager.class.php:720 msgid "Special days" msgstr "Jours SpĆ©ciaux" @@ -1108,123 +1436,6 @@ msgstr "Jours SpĆ©ciaux" msgid "iCalendar(.ics) file" msgstr "Fichier iCalendar(.ics)" -#: ../../views/calendar/special_days.php:92 -#: ../../views/calendar/special_days.php:358 -#: ../../views/calendar/special_days_edit.php:116 -#: ../../include/functions_html.php:2258 -#: ../../enterprise/include/functions_reporting.php:1731 -#: ../../enterprise/include/functions_reporting.php:2462 -#: ../../enterprise/include/functions_reporting.php:2780 -#: ../../enterprise/include/functions_reporting.php:3405 -#: ../../enterprise/include/functions_reporting.php:4381 -#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:95 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1848 -#: ../../godmode/reporting/reporting_builder.item_editor.php:1351 -#: ../../godmode/alerts/alert_templates.php:64 -msgid "Monday" -msgstr "Lundi" - -#: ../../views/calendar/special_days.php:93 -#: ../../views/calendar/special_days.php:362 -#: ../../views/calendar/special_days_edit.php:117 -#: ../../include/functions_html.php:2259 -#: ../../enterprise/include/functions_reporting.php:1732 -#: ../../enterprise/include/functions_reporting.php:2463 -#: ../../enterprise/include/functions_reporting.php:2781 -#: ../../enterprise/include/functions_reporting.php:3406 -#: ../../enterprise/include/functions_reporting.php:4382 -#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:96 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1856 -#: ../../godmode/reporting/reporting_builder.item_editor.php:1359 -#: ../../godmode/alerts/alert_templates.php:65 -msgid "Tuesday" -msgstr "Mardi" - -#: ../../views/calendar/special_days.php:94 -#: ../../views/calendar/special_days.php:366 -#: ../../views/calendar/special_days_edit.php:118 -#: ../../include/functions_html.php:2260 -#: ../../enterprise/include/functions_reporting.php:1733 -#: ../../enterprise/include/functions_reporting.php:2464 -#: ../../enterprise/include/functions_reporting.php:2782 -#: ../../enterprise/include/functions_reporting.php:3407 -#: ../../enterprise/include/functions_reporting.php:4383 -#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:97 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1864 -#: ../../godmode/reporting/reporting_builder.item_editor.php:1367 -#: ../../godmode/alerts/alert_templates.php:66 -msgid "Wednesday" -msgstr "Mercredi" - -#: ../../views/calendar/special_days.php:95 -#: ../../views/calendar/special_days.php:370 -#: ../../views/calendar/special_days_edit.php:119 -#: ../../include/functions_html.php:2261 -#: ../../enterprise/include/functions_reporting.php:1734 -#: ../../enterprise/include/functions_reporting.php:2465 -#: ../../enterprise/include/functions_reporting.php:2783 -#: ../../enterprise/include/functions_reporting.php:3408 -#: ../../enterprise/include/functions_reporting.php:4384 -#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:98 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1872 -#: ../../godmode/reporting/reporting_builder.item_editor.php:1375 -#: ../../godmode/alerts/alert_templates.php:67 -msgid "Thursday" -msgstr "Jeudi" - -#: ../../views/calendar/special_days.php:96 -#: ../../views/calendar/special_days.php:374 -#: ../../views/calendar/special_days_edit.php:120 -#: ../../include/functions_html.php:2262 -#: ../../enterprise/include/functions_reporting.php:1735 -#: ../../enterprise/include/functions_reporting.php:2466 -#: ../../enterprise/include/functions_reporting.php:2784 -#: ../../enterprise/include/functions_reporting.php:3409 -#: ../../enterprise/include/functions_reporting.php:4385 -#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:99 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1880 -#: ../../godmode/reporting/reporting_builder.item_editor.php:1383 -#: ../../godmode/alerts/alert_templates.php:68 -msgid "Friday" -msgstr "Vendredi" - -#: ../../views/calendar/special_days.php:97 -#: ../../views/calendar/special_days.php:378 -#: ../../views/calendar/special_days_edit.php:121 -#: ../../include/functions_html.php:2263 -#: ../../enterprise/include/functions_reporting.php:1736 -#: ../../enterprise/include/functions_reporting.php:2467 -#: ../../enterprise/include/functions_reporting.php:2785 -#: ../../enterprise/include/functions_reporting.php:3410 -#: ../../enterprise/include/functions_reporting.php:4386 -#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:100 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1888 -#: ../../godmode/reporting/reporting_builder.item_editor.php:1391 -#: ../../godmode/alerts/alert_templates.php:69 -msgid "Saturday" -msgstr "Samedi" - -#: ../../views/calendar/special_days.php:98 -#: ../../views/calendar/special_days.php:382 -#: ../../views/calendar/special_days_edit.php:122 -#: ../../include/functions_html.php:2257 -#: ../../enterprise/include/functions_reporting.php:1737 -#: ../../enterprise/include/functions_reporting.php:2468 -#: ../../enterprise/include/functions_reporting.php:2786 -#: ../../enterprise/include/functions_reporting.php:3411 -#: ../../enterprise/include/functions_reporting.php:4387 -#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:101 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1896 -#: ../../godmode/reporting/reporting_builder.item_editor.php:1399 -#: ../../godmode/alerts/alert_templates.php:70 -msgid "Sunday" -msgstr "Dimanche" - -#: ../../views/calendar/special_days.php:102 -#: ../../views/calendar/special_days_edit.php:127 -msgid "Same day of the week" -msgstr "MĆŖme jour de la semaine" - #: ../../views/calendar/special_days.php:122 msgid "Overwrite" msgstr "Ɖcraser" @@ -1234,15 +1445,15 @@ msgid "Check this box, if you want to overwrite existing same days." msgstr "Cochez cette case si vous voulez Ć©craser les jours qui existent dĆ©jĆ ." #: ../../views/calendar/special_days.php:138 -#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:218 -#: ../../enterprise/tools/ipam/ipam_vlan_config.php:420 +#: ../../enterprise/include/functions_policies.php:4479 #: ../../enterprise/tools/ipam/ipam_network.php:142 #: ../../enterprise/tools/ipam/ipam_supernet_config.php:746 #: ../../enterprise/tools/ipam/ipam_list.php:77 -#: ../../enterprise/include/functions_policies.php:4479 +#: ../../enterprise/tools/ipam/ipam_vlan_config.php:420 #: ../../extensions/extension_uploader.php:92 #: ../../extensions/resource_registration.php:1137 #: ../../godmode/servers/plugin_registration.php:113 +#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:218 msgid "Upload" msgstr "TĆ©lĆ©verser" @@ -1252,174 +1463,184 @@ msgstr "Afficher plage : " #: ../../views/calendar/special_days.php:174 #: ../../views/calendar/special_days.php:186 -#: ../../operation/gis_maps/gis_map.php:106 -#: ../../operation/snmpconsole/snmp_view.php:566 -#: ../../operation/events/events_list.php:863 -#: ../../operation/users/user_edit.php:317 -#: ../../operation/users/user_edit.php:320 -#: ../../operation/users/user_edit.php:331 -#: ../../operation/users/user_edit.php:356 -#: ../../include/class/AgentsAlerts.class.php:928 -#: ../../include/functions_ui.php:1234 -#: ../../enterprise/operation/agentes/policy_view.php:332 -#: ../../enterprise/meta/monitoring/wizard/wizard.php:141 #: ../../enterprise/meta/advanced/metasetup.visual.php:513 #: ../../enterprise/meta/advanced/metasetup.visual.php:547 -#: ../../enterprise/meta/advanced/metasetup.visual.php:1062 +#: ../../enterprise/meta/advanced/metasetup.visual.php:1070 +#: ../../enterprise/meta/monitoring/wizard/wizard.php:141 +#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:443 +#: ../../enterprise/godmode/policies/policy_alerts.php:406 +#: ../../enterprise/godmode/policies/policy_external_alerts.php:436 #: ../../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:128 #: ../../enterprise/godmode/reporting/reporting_builder.template_advanced.php:134 -#: ../../enterprise/godmode/reporting/visual_console_builder.wizard_services.php:105 -#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:443 -#: ../../enterprise/godmode/policies/policy_external_alerts.php:436 -#: ../../enterprise/godmode/policies/policy_alerts.php:406 -#: ../../godmode/setup/gis_step_2.php:578 ../../godmode/setup/gis_step_2.php:664 -#: ../../godmode/setup/setup_visuals.php:196 -#: ../../godmode/setup/setup_visuals.php:218 -#: ../../godmode/setup/setup_visuals.php:438 -#: ../../godmode/setup/setup_visuals.php:457 -#: ../../godmode/setup/setup_visuals.php:1159 -#: ../../godmode/events/event_edit_filter.php:399 -#: ../../godmode/massive/massive_edit_agents.php:981 +#: ../../enterprise/operation/agentes/policy_view.php:332 +#: ../../godmode/users/configure_user.php:907 +#: ../../godmode/users/configure_user.php:1090 #: ../../godmode/agentes/module_manager_editor_common.php:635 -#: ../../godmode/alerts/alert_list.list.php:616 -#: ../../godmode/alerts/alert_view.php:58 -#: ../../godmode/users/configure_user.php:910 -#: ../../godmode/users/configure_user.php:1109 +#: ../../godmode/massive/massive_edit_agents.php:981 +#: ../../godmode/alerts/alert_list.list.php:631 +#: ../../godmode/alerts/alert_view.php:58 ../../godmode/setup/gis_step_2.php:578 +#: ../../godmode/setup/gis_step_2.php:664 ../../godmode/setup/setup_visuals.php:197 +#: ../../godmode/setup/setup_visuals.php:219 +#: ../../godmode/setup/setup_visuals.php:439 +#: ../../godmode/setup/setup_visuals.php:458 +#: ../../godmode/setup/setup_visuals.php:1204 +#: ../../godmode/events/event_edit_filter.php:404 +#: ../../include/functions_ui.php:1240 +#: ../../include/class/AgentsAlerts.class.php:928 +#: ../../operation/users/user_edit.php:317 ../../operation/users/user_edit.php:320 +#: ../../operation/users/user_edit.php:331 ../../operation/users/user_edit.php:356 +#: ../../operation/snmpconsole/snmp_view.php:566 +#: ../../operation/gis_maps/gis_map.php:106 msgid "Default" msgstr "Par dĆ©faut" #: ../../views/calendar/special_days.php:224 -#: ../../include/class/CalendarManager.class.php:984 -#: ../../include/functions_reporting.php:14101 ../../include/functions.php:1101 +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:431 #: ../../godmode/agentes/planned_downtime.editor.php:674 +#: ../../include/functions.php:1101 +#: ../../include/class/CalendarManager.class.php:1035 +#: ../../include/functions_reporting.php:14254 msgid "Sun" msgstr "Dimanche" #: ../../views/calendar/special_days.php:225 -#: ../../include/class/CalendarManager.class.php:978 -#: ../../include/functions_reporting.php:14071 ../../include/functions.php:1077 +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:425 #: ../../godmode/agentes/planned_downtime.editor.php:668 +#: ../../include/functions.php:1077 +#: ../../include/class/CalendarManager.class.php:1029 +#: ../../include/functions_reporting.php:14224 msgid "Mon" msgstr "Lundi" #: ../../views/calendar/special_days.php:226 -#: ../../include/class/CalendarManager.class.php:979 -#: ../../include/functions_reporting.php:14076 ../../include/functions.php:1081 +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:426 #: ../../godmode/agentes/planned_downtime.editor.php:669 +#: ../../include/functions.php:1081 +#: ../../include/class/CalendarManager.class.php:1030 +#: ../../include/functions_reporting.php:14229 msgid "Tue" msgstr "Mardi" #: ../../views/calendar/special_days.php:227 -#: ../../include/class/CalendarManager.class.php:980 -#: ../../include/functions_reporting.php:14081 ../../include/functions.php:1085 +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:427 #: ../../godmode/agentes/planned_downtime.editor.php:670 +#: ../../include/functions.php:1085 +#: ../../include/class/CalendarManager.class.php:1031 +#: ../../include/functions_reporting.php:14234 msgid "Wed" msgstr "Mercredi" #: ../../views/calendar/special_days.php:228 -#: ../../include/class/CalendarManager.class.php:981 -#: ../../include/functions_reporting.php:14086 ../../include/functions.php:1089 +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:428 #: ../../godmode/agentes/planned_downtime.editor.php:671 +#: ../../include/functions.php:1089 +#: ../../include/class/CalendarManager.class.php:1032 +#: ../../include/functions_reporting.php:14239 msgid "Thu" msgstr "Jeudi" #: ../../views/calendar/special_days.php:229 -#: ../../include/class/CalendarManager.class.php:982 -#: ../../include/functions_reporting.php:14091 ../../include/functions.php:1093 +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:429 #: ../../godmode/agentes/planned_downtime.editor.php:672 +#: ../../include/functions.php:1093 +#: ../../include/class/CalendarManager.class.php:1033 +#: ../../include/functions_reporting.php:14244 msgid "Fri" msgstr "Vendredi" #: ../../views/calendar/special_days.php:230 -#: ../../include/class/CalendarManager.class.php:983 -#: ../../include/functions_reporting.php:14096 ../../include/functions.php:1097 +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:430 #: ../../godmode/agentes/planned_downtime.editor.php:673 +#: ../../include/functions.php:1097 +#: ../../include/class/CalendarManager.class.php:1034 +#: ../../include/functions_reporting.php:14249 msgid "Sat" msgstr "Samedi" #: ../../views/calendar/special_days.php:245 -#: ../../enterprise/include/functions_reporting.php:1774 -#: ../../enterprise/include/functions_reporting.php:2821 -#: ../../enterprise/include/functions_reporting.php:3823 +#: ../../enterprise/include/functions_reporting.php:1775 +#: ../../enterprise/include/functions_reporting.php:2822 +#: ../../enterprise/include/functions_reporting.php:3824 msgid "January" msgstr "Janvier" #: ../../views/calendar/special_days.php:249 -#: ../../enterprise/include/functions_reporting.php:1778 -#: ../../enterprise/include/functions_reporting.php:2825 -#: ../../enterprise/include/functions_reporting.php:3827 +#: ../../enterprise/include/functions_reporting.php:1779 +#: ../../enterprise/include/functions_reporting.php:2826 +#: ../../enterprise/include/functions_reporting.php:3828 msgid "February" msgstr "FĆ©vrier" #: ../../views/calendar/special_days.php:253 -#: ../../enterprise/include/functions_reporting.php:1782 -#: ../../enterprise/include/functions_reporting.php:2829 -#: ../../enterprise/include/functions_reporting.php:3831 +#: ../../enterprise/include/functions_reporting.php:1783 +#: ../../enterprise/include/functions_reporting.php:2830 +#: ../../enterprise/include/functions_reporting.php:3832 msgid "March" msgstr "Mars" #: ../../views/calendar/special_days.php:257 -#: ../../enterprise/include/functions_reporting.php:1786 -#: ../../enterprise/include/functions_reporting.php:2833 -#: ../../enterprise/include/functions_reporting.php:3835 +#: ../../enterprise/include/functions_reporting.php:1787 +#: ../../enterprise/include/functions_reporting.php:2834 +#: ../../enterprise/include/functions_reporting.php:3836 msgid "April" msgstr "Avril" #: ../../views/calendar/special_days.php:261 -#: ../../enterprise/include/functions_reporting.php:1790 -#: ../../enterprise/include/functions_reporting.php:2837 -#: ../../enterprise/include/functions_reporting.php:3839 +#: ../../enterprise/include/functions_reporting.php:1791 +#: ../../enterprise/include/functions_reporting.php:2838 +#: ../../enterprise/include/functions_reporting.php:3840 msgid "May" msgstr "Mai" #: ../../views/calendar/special_days.php:265 -#: ../../enterprise/include/functions_reporting.php:1794 -#: ../../enterprise/include/functions_reporting.php:2841 -#: ../../enterprise/include/functions_reporting.php:3843 +#: ../../enterprise/include/functions_reporting.php:1795 +#: ../../enterprise/include/functions_reporting.php:2842 +#: ../../enterprise/include/functions_reporting.php:3844 msgid "June" msgstr "Juin" #: ../../views/calendar/special_days.php:269 -#: ../../enterprise/include/functions_reporting.php:1798 -#: ../../enterprise/include/functions_reporting.php:2845 -#: ../../enterprise/include/functions_reporting.php:3847 +#: ../../enterprise/include/functions_reporting.php:1799 +#: ../../enterprise/include/functions_reporting.php:2846 +#: ../../enterprise/include/functions_reporting.php:3848 msgid "July" msgstr "Juillet" #: ../../views/calendar/special_days.php:273 -#: ../../enterprise/include/functions_reporting.php:1802 -#: ../../enterprise/include/functions_reporting.php:2849 -#: ../../enterprise/include/functions_reporting.php:3851 +#: ../../enterprise/include/functions_reporting.php:1803 +#: ../../enterprise/include/functions_reporting.php:2850 +#: ../../enterprise/include/functions_reporting.php:3852 msgid "August" msgstr "AoĆ»t" #: ../../views/calendar/special_days.php:277 -#: ../../enterprise/include/functions_reporting.php:1806 -#: ../../enterprise/include/functions_reporting.php:2853 -#: ../../enterprise/include/functions_reporting.php:3855 +#: ../../enterprise/include/functions_reporting.php:1807 +#: ../../enterprise/include/functions_reporting.php:2854 +#: ../../enterprise/include/functions_reporting.php:3856 msgid "September" msgstr "Septembre" #: ../../views/calendar/special_days.php:281 -#: ../../enterprise/include/functions_reporting.php:1810 -#: ../../enterprise/include/functions_reporting.php:2857 -#: ../../enterprise/include/functions_reporting.php:3859 +#: ../../enterprise/include/functions_reporting.php:1811 +#: ../../enterprise/include/functions_reporting.php:2858 +#: ../../enterprise/include/functions_reporting.php:3860 msgid "October" msgstr "Octobre" #: ../../views/calendar/special_days.php:285 -#: ../../enterprise/include/functions_reporting.php:1814 -#: ../../enterprise/include/functions_reporting.php:2861 -#: ../../enterprise/include/functions_reporting.php:3863 +#: ../../enterprise/include/functions_reporting.php:1815 +#: ../../enterprise/include/functions_reporting.php:2862 +#: ../../enterprise/include/functions_reporting.php:3864 msgid "November" msgstr "Novembre" #: ../../views/calendar/special_days.php:289 -#: ../../enterprise/include/functions_reporting.php:1819 -#: ../../enterprise/include/functions_reporting.php:2866 -#: ../../enterprise/include/functions_reporting.php:3868 +#: ../../enterprise/include/functions_reporting.php:1820 +#: ../../enterprise/include/functions_reporting.php:2867 +#: ../../enterprise/include/functions_reporting.php:3869 msgid "December" msgstr "DĆ©cembre" @@ -1427,315 +1648,236 @@ msgstr "DĆ©cembre" msgid "As " msgstr "Comme " -#: ../../views/calendar/special_days.php:386 -#: ../../views/calendar/special_days_edit.php:123 -msgid "Holidays" -msgstr "Vacances" - -#: ../../views/calendar/special_days.php:407 -#: ../../views/calendar/special_days.php:506 -#: ../../views/calendar/special_days_edit.php:207 -#: ../../views/dashboard/header.php:69 ../../views/dashboard/header.php:103 -#: ../../views/dashboard/list.php:225 ../../general/header.php:814 -#: ../../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/agentes/pandora_networkmap.editor.php:603 -#: ../../include/functions_visual_map_editor.php:880 -#: ../../include/functions_visual_map_editor.php:884 -#: ../../include/class/ModuleTemplates.class.php:1382 -#: ../../include/class/AgentWizard.class.php:6015 -#: ../../include/class/WelcomeWindow.class.php:174 -#: ../../include/class/ConfigPEN.class.php:669 -#: ../../include/class/ConfigPEN.class.php:693 -#: ../../include/class/CredentialStore.class.php:1242 -#: ../../include/class/CredentialStore.class.php:1294 -#: ../../include/class/NetworkMap.class.php:2807 -#: ../../include/class/TreeGroupEdition.class.php:165 -#: ../../include/functions_register.php:179 -#: ../../update_manager_client/views/register.php:85 -#: ../../enterprise/tools/ipam/ipam_vlan_config.php:808 -#: ../../enterprise/tools/ipam/ipam_vlan_config.php:831 -#: ../../enterprise/tools/ipam/ipam_supernet_config.php:1298 -#: ../../enterprise/tools/ipam/ipam_supernet_config.php:1322 -#: ../../enterprise/views/ncm/agent/details.php:690 -#: ../../enterprise/include/class/AgentRepository.class.php:801 -#: ../../enterprise/include/class/AgentRepository.class.php:899 -#: ../../enterprise/include/class/LogSource.class.php:845 -#: ../../enterprise/include/class/LogSource.class.php:898 -#: ../../enterprise/include/class/ManageBackups.class.php:446 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3009 -#: ../../enterprise/include/class/DeploymentCenter.class.php:1567 -#: ../../enterprise/include/class/DeploymentCenter.class.php:1669 -#: ../../enterprise/include/class/DeploymentCenter.class.php:1721 -#: ../../enterprise/include/class/DeploymentCenter.class.php:1753 -#: ../../enterprise/include/class/DeploymentCenter.class.php:1788 -#: ../../enterprise/include/functions_HA_cluster.php:492 -#: ../../enterprise/meta/event/custom_events.php:250 -#: ../../enterprise/meta/monitoring/custom_fields_view.php:1152 -#: ../../enterprise/godmode/services/services.elements.php:844 -#: ../../enterprise/godmode/services/services.elements.php:855 -#: ../../enterprise/godmode/services/services.service.php:994 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:355 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:280 -#: ../../godmode/setup/snmp_wizard.php:100 -#: ../../godmode/snmpconsole/snmp_alert.php:1547 -#: ../../godmode/snmpconsole/snmp_alert.php:1562 -#: ../../godmode/events/custom_events.php:205 -#: ../../godmode/massive/massive_operations.php:393 -#: ../../godmode/agentes/status_monitor_custom_fields.php:242 -msgid "Cancel" -msgstr "Annuler" - -#: ../../views/calendar/special_days.php:411 -#: ../../views/calendar/special_days.php:510 -#: ../../views/calendar/special_days_edit.php:211 -#: ../../include/class/AgentWizard.class.php:5967 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:4323 -#: ../../godmode/agentes/planned_downtime.list.php:695 -#: ../../godmode/alerts/configure_alert_template.php:1550 -msgid "Loading, this operation might take several minutes..." -msgstr "Chargement, cette opĆ©ration peut prendre plusieurs minutes..." - #: ../../views/calendar/special_days.php:421 msgid "Show templates" msgstr "Afficher les modĆØles" #: ../../views/calendar/special_days.php:431 -#: ../../operation/search_reports.php:68 ../../operation/gis_maps/gis_map.php:190 -#: ../../operation/agentes/status_monitor.php:1509 -#: ../../operation/agentes/pandora_networkmap.php:713 -#: ../../operation/agentes/estado_agente.php:877 -#: ../../operation/agentes/estado_agente.php:880 -#: ../../operation/incidents/list_integriaims_incidents.php:550 -#: ../../include/functions_cron.php:881 ../../include/functions_cron.php:909 -#: ../../include/ajax/module.php:1110 -#: ../../include/class/CalendarManager.class.php:652 -#: ../../include/class/NetworkMap.class.php:3013 -#: ../../enterprise/tools/ipam/ipam_ajax.php:122 -#: ../../enterprise/tools/ipam/ipam_ajax.php:527 -#: ../../enterprise/tools/ipam/ipam.php:417 -#: ../../enterprise/operation/agentes/tag_view.php:742 +#: ../../enterprise/meta/screens/screens.visualmap.php:73 +#: ../../enterprise/meta/advanced/collections.editor.php:203 +#: ../../enterprise/meta/monitoring/wizard/wizard.manage_alert.php:74 +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:295 +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:461 +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:812 +#: ../../enterprise/meta/include/functions_autoprovision.php:506 +#: ../../enterprise/meta/include/functions_autoprovision.php:507 +#: ../../enterprise/meta/include/functions_autoprovision.php:672 +#: ../../enterprise/meta/include/functions_autoprovision.php:673 +#: ../../enterprise/meta/include/functions_wizard_meta.php:2064 +#: ../../enterprise/meta/include/functions_wizard_meta.php:2159 +#: ../../enterprise/meta/include/functions_wizard_meta.php:2723 +#: ../../enterprise/godmode/agentes/collections.editor.php:234 +#: ../../enterprise/godmode/massive/massive_edit_tags_policy.php:204 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:612 +#: ../../enterprise/godmode/reporting/reporting_builder.template_list_item.php:382 +#: ../../enterprise/include/functions_tasklist.php:595 +#: ../../enterprise/include/functions_tasklist.php:637 #: ../../enterprise/include/ajax/transactional.ajax.php:117 #: ../../enterprise/include/ajax/transactional.ajax.php:205 -#: ../../enterprise/include/class/Omnishell.class.php:1137 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2384 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3038 #: ../../enterprise/include/class/NetworkConfigManager.class.php:612 #: ../../enterprise/include/class/NetworkConfigManager.class.php:784 #: ../../enterprise/include/class/NetworkConfigManager.class.php:960 #: ../../enterprise/include/class/NetworkConfigManager.class.php:1107 #: ../../enterprise/include/class/NetworkConfigManager.class.php:1315 -#: ../../enterprise/include/functions_tasklist.php:595 -#: ../../enterprise/include/functions_tasklist.php:637 +#: ../../enterprise/include/class/Omnishell.class.php:1137 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2426 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3080 #: ../../enterprise/include/lib/ClusterViewer/ClusterManager.php:618 -#: ../../enterprise/include/lib/Metaconsole/Node.php:1149 -#: ../../enterprise/include/lib/Metaconsole/Node.php:1150 -#: ../../enterprise/meta/screens/screens.visualmap.php:73 -#: ../../enterprise/meta/include/functions_autoprovision.php:506 -#: ../../enterprise/meta/include/functions_autoprovision.php:507 -#: ../../enterprise/meta/include/functions_autoprovision.php:672 -#: ../../enterprise/meta/include/functions_autoprovision.php:673 -#: ../../enterprise/meta/include/functions_wizard_meta.php:2067 -#: ../../enterprise/meta/include/functions_wizard_meta.php:2162 -#: ../../enterprise/meta/include/functions_wizard_meta.php:2726 -#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:298 -#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:464 -#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:815 -#: ../../enterprise/meta/monitoring/wizard/wizard.manage_alert.php:74 -#: ../../enterprise/meta/advanced/collections.editor.php:203 -#: ../../enterprise/godmode/reporting/reporting_builder.template_list_item.php:382 -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:612 -#: ../../enterprise/godmode/massive/massive_edit_tags_policy.php:204 -#: ../../enterprise/godmode/agentes/collections.editor.php:234 +#: ../../enterprise/include/lib/Metaconsole/Node.php:1097 +#: ../../enterprise/include/lib/Metaconsole/Node.php:1098 +#: ../../enterprise/operation/agentes/tag_view.php:742 +#: ../../enterprise/tools/ipam/ipam.php:417 +#: ../../enterprise/tools/ipam/ipam_ajax.php:122 +#: ../../enterprise/tools/ipam/ipam_ajax.php:527 #: ../../extensions/files_repo/files_repo_list.php:138 -#: ../../godmode/setup/snmp_wizard.php:110 ../../godmode/servers/plugin.php:179 -#: ../../godmode/servers/plugin.php:880 -#: ../../godmode/servers/servers.build_table.php:234 -#: ../../godmode/reporting/reporting_builder.list_items.php:624 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2178 -#: ../../godmode/reporting/reporting_builder.php:1169 -#: ../../godmode/events/event_responses.list.php:79 -#: ../../godmode/agentes/planned_downtime.list.php:624 -#: ../../godmode/agentes/fields_manager.php:154 +#: ../../godmode/groups/group_list.php:917 ../../godmode/groups/group_list.php:918 +#: ../../godmode/users/profile_list.php:434 ../../godmode/users/user_list.php:796 #: ../../godmode/agentes/modificar_agente.php:803 #: ../../godmode/agentes/modificar_agente.php:809 -#: ../../godmode/users/user_list.php:796 ../../godmode/users/profile_list.php:434 -#: ../../godmode/groups/group_list.php:917 -#: ../../godmode/groups/group_list.php:918 +#: ../../godmode/agentes/planned_downtime.list.php:624 +#: ../../godmode/agentes/fields_manager.php:154 +#: ../../godmode/setup/snmp_wizard.php:110 +#: ../../godmode/reporting/reporting_builder.list_items.php:624 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2274 +#: ../../godmode/reporting/reporting_builder.php:1167 +#: ../../godmode/events/event_responses.list.php:79 +#: ../../godmode/servers/servers.build_table.php:234 +#: ../../godmode/servers/plugin.php:179 ../../godmode/servers/plugin.php:880 +#: ../../include/functions_cron.php:881 ../../include/functions_cron.php:909 +#: ../../include/ajax/module.php:1110 ../../include/class/NetworkMap.class.php:3013 +#: ../../include/class/CalendarManager.class.php:703 +#: ../../operation/agentes/estado_agente.php:877 +#: ../../operation/agentes/estado_agente.php:880 +#: ../../operation/agentes/pandora_networkmap.php:713 +#: ../../operation/agentes/status_monitor.php:1509 +#: ../../operation/gis_maps/gis_map.php:190 +#: ../../operation/incidents/list_integriaims_incidents.php:550 +#: ../../operation/search_reports.php:68 msgid "Edit" msgstr "Modifier" #: ../../views/calendar/special_days.php:438 ../../views/dashboard/list.php:185 -#: ../../operation/messages/message_list.php:272 -#: ../../operation/messages/message_list.php:275 -#: ../../operation/snmpconsole/snmp_browser.php:643 -#: ../../operation/snmpconsole/snmp_view.php:1033 -#: ../../operation/snmpconsole/snmp_view.php:1046 -#: ../../operation/snmpconsole/snmp_view.php:1220 -#: ../../operation/events/events.build_table.php:983 -#: ../../operation/agentes/pandora_networkmap.php:801 -#: ../../operation/agentes/pandora_networkmap.editor.php:600 -#: ../../operation/users/user_edit.php:1168 -#: ../../operation/incidents/list_integriaims_incidents.php:554 -#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:197 -#: ../../include/class/ModuleTemplates.class.php:918 -#: ../../include/class/ModuleTemplates.class.php:933 -#: ../../include/class/WelcomeWindow.class.php:171 -#: ../../include/class/ConfigPEN.class.php:666 -#: ../../include/class/CredentialStore.class.php:1288 -#: ../../include/class/TreeGroupEdition.class.php:166 -#: ../../include/lib/Dashboard/Widgets/events_list.php:680 -#: ../../include/functions_events.php:3784 -#: ../../include/functions_filemanager.php:715 -#: ../../include/functions_container.php:190 -#: ../../include/functions_container.php:324 -#: ../../include/functions_profile.php:278 -#: ../../update_manager_client/views/online.php:122 -#: ../../update_manager_client/views/online.php:163 -#: ../../update_manager_client/views/offline.php:72 -#: ../../enterprise/tools/ipam/ipam_vlan_config.php:726 -#: ../../enterprise/tools/ipam/ipam_vlan_config.php:856 -#: ../../enterprise/tools/ipam/ipam_network_location_config.php:287 -#: ../../enterprise/tools/ipam/ipam_supernet_config.php:1209 -#: ../../enterprise/tools/ipam/ipam_supernet_config.php:1347 -#: ../../enterprise/operation/services/services.list.php:649 -#: ../../enterprise/operation/services/services.list.php:743 -#: ../../enterprise/operation/agentes/transactional_map.php:414 -#: ../../enterprise/operation/agentes/transactional_map.php:478 -#: ../../enterprise/operation/agentes/manage_transmap_creation.php:268 -#: ../../enterprise/include/ajax/transactional.ajax.php:118 -#: ../../enterprise/include/ajax/transactional.ajax.php:207 -#: ../../enterprise/include/ajax/ipam.ajax.php:755 -#: ../../enterprise/include/ajax/ipam.ajax.php:833 -#: ../../enterprise/include/class/AgentRepository.class.php:792 -#: ../../enterprise/include/class/LogSource.class.php:892 -#: ../../enterprise/include/class/ManageBackups.class.php:443 -#: ../../enterprise/include/class/Omnishell.class.php:504 -#: ../../enterprise/include/class/Omnishell.class.php:1155 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3046 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3358 -#: ../../enterprise/include/class/DeploymentCenter.class.php:1558 -#: ../../enterprise/include/functions_tasklist.php:610 -#: ../../enterprise/include/functions_tasklist.php:645 -#: ../../enterprise/include/lib/Metaconsole/Node.php:1242 -#: ../../enterprise/include/functions_services.php:2022 -#: ../../enterprise/meta/monitoring/custom_fields_view.php:1150 -#: ../../enterprise/meta/monitoring/wizard/wizard.php:143 #: ../../enterprise/meta/advanced/agents_setup.move_agents.php:566 -#: ../../enterprise/meta/advanced/policymanager.queue.php:349 #: ../../enterprise/meta/advanced/metasetup.relations.php:584 #: ../../enterprise/meta/advanced/links.php:173 -#: ../../enterprise/godmode/setup/setup_skins.php:147 -#: ../../enterprise/godmode/servers/credential_boxes_satellite.php:287 -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:349 -#: ../../enterprise/godmode/modules/local_components.php:694 +#: ../../enterprise/meta/advanced/policymanager.queue.php:349 +#: ../../enterprise/meta/monitoring/custom_fields_view.php:1150 +#: ../../enterprise/meta/monitoring/wizard/wizard.php:143 #: ../../enterprise/godmode/modules/manage_inventory_modules.php:316 -#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:638 -#: ../../enterprise/godmode/reporting/graph_template_wizard.php:447 -#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:837 -#: ../../enterprise/godmode/reporting/mysql_builder.php:104 -#: ../../enterprise/godmode/reporting/graph_template_item_editor.php:214 -#: ../../enterprise/godmode/reporting/graph_template_list.php:234 -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:619 -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:638 -#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:412 +#: ../../enterprise/godmode/modules/local_components.php:694 #: ../../enterprise/godmode/agentes/inventory_manager.php:248 #: ../../enterprise/godmode/agentes/agent_disk_conf_editor.php:249 -#: ../../enterprise/godmode/agentes/manage_config_remote.php:203 #: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:93 -#: ../../enterprise/godmode/alerts/alert_inventory_list.php:415 -#: ../../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_queue.php:770 -#: ../../enterprise/godmode/policies/policy_queue.php:804 -#: ../../enterprise/godmode/policies/policy_queue.php:820 +#: ../../enterprise/godmode/policies/policy_alerts.php:518 #: ../../enterprise/godmode/policies/policy_modules.php:1545 #: ../../enterprise/godmode/policies/policy_modules.php:1561 #: ../../enterprise/godmode/policies/policy_modules.php:1612 +#: ../../enterprise/godmode/policies/policy_queue.php:770 +#: ../../enterprise/godmode/policies/policy_queue.php:804 +#: ../../enterprise/godmode/policies/policy_queue.php:820 #: ../../enterprise/godmode/policies/policies.php:560 #: ../../enterprise/godmode/policies/policies.php:581 #: ../../enterprise/godmode/policies/policies.php:616 #: ../../enterprise/godmode/policies/policy_external_alerts.php:513 #: ../../enterprise/godmode/policies/policy_inventory_modules.php:328 #: ../../enterprise/godmode/policies/policy_inventory_modules.php:333 -#: ../../enterprise/godmode/policies/policy_alerts.php:518 +#: ../../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/snmpconsole/snmp_trap_editor.php:412 +#: ../../enterprise/godmode/alerts/alert_inventory_list.php:415 +#: ../../enterprise/godmode/setup/setup_skins.php:147 +#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:837 +#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:638 +#: ../../enterprise/godmode/reporting/graph_template_list.php:234 +#: ../../enterprise/godmode/reporting/graph_template_wizard.php:447 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:619 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:638 +#: ../../enterprise/godmode/reporting/graph_template_item_editor.php:214 +#: ../../enterprise/godmode/reporting/mysql_builder.php:104 +#: ../../enterprise/godmode/servers/credential_boxes_satellite.php:287 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:349 +#: ../../enterprise/include/functions_tasklist.php:610 +#: ../../enterprise/include/functions_tasklist.php:645 +#: ../../enterprise/include/ajax/transactional.ajax.php:118 +#: ../../enterprise/include/ajax/transactional.ajax.php:207 +#: ../../enterprise/include/ajax/ipam.ajax.php:755 +#: ../../enterprise/include/ajax/ipam.ajax.php:833 +#: ../../enterprise/include/class/DeploymentCenter.class.php:1558 +#: ../../enterprise/include/class/AgentRepository.class.php:805 +#: ../../enterprise/include/class/Omnishell.class.php:504 +#: ../../enterprise/include/class/Omnishell.class.php:1155 +#: ../../enterprise/include/class/LogSource.class.php:892 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3088 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3400 +#: ../../enterprise/include/class/ManageBackups.class.php:443 +#: ../../enterprise/include/functions_services.php:2026 +#: ../../enterprise/include/lib/Metaconsole/Node.php:1183 +#: ../../enterprise/operation/agentes/transactional_map.php:414 +#: ../../enterprise/operation/agentes/transactional_map.php:478 +#: ../../enterprise/operation/agentes/manage_transmap_creation.php:268 +#: ../../enterprise/operation/services/services.list.php:649 +#: ../../enterprise/operation/services/services.list.php:743 +#: ../../enterprise/tools/ipam/ipam_supernet_config.php:1209 +#: ../../enterprise/tools/ipam/ipam_supernet_config.php:1347 +#: ../../enterprise/tools/ipam/ipam_network_location_config.php:287 +#: ../../enterprise/tools/ipam/ipam_vlan_config.php:726 +#: ../../enterprise/tools/ipam/ipam_vlan_config.php:856 +#: ../../update_manager_client/views/offline.php:72 +#: ../../update_manager_client/views/online.php:123 +#: ../../update_manager_client/views/online.php:164 #: ../../extensions/files_repo/files_repo_list.php:146 -#: ../../godmode/setup/news.php:290 ../../godmode/setup/links.php:160 -#: ../../godmode/servers/plugin.php:884 +#: ../../godmode/modules/manage_nc_groups.php:275 #: ../../godmode/modules/manage_network_components.php:864 #: ../../godmode/modules/manage_network_templates.php:272 #: ../../godmode/modules/manage_network_templates.php:287 -#: ../../godmode/modules/manage_nc_groups.php:275 -#: ../../godmode/category/category.php:192 -#: ../../godmode/category/category.php:211 -#: ../../godmode/reporting/map_builder.php:512 -#: ../../godmode/reporting/map_builder.php:523 -#: ../../godmode/reporting/graphs.php:362 -#: ../../godmode/reporting/create_container.php:682 -#: ../../godmode/reporting/visual_console_builder.elements.php:497 -#: ../../godmode/reporting/reporting_builder.php:1179 -#: ../../godmode/reporting/reporting_builder.php:1201 -#: ../../godmode/snmpconsole/snmp_alert.php:1308 -#: ../../godmode/snmpconsole/snmp_alert.php:1641 -#: ../../godmode/snmpconsole/snmp_filters.php:301 -#: ../../godmode/snmpconsole/snmp_filters.php:312 ../../godmode/tag/tag.php:395 -#: ../../godmode/events/event_filter.php:188 -#: ../../godmode/netflow/nf_edit.php:195 -#: ../../godmode/netflow/nf_item_list.php:262 -#: ../../godmode/massive/massive_operations.php:391 -#: ../../godmode/massive/massive_standby_alerts.php:254 -#: ../../godmode/massive/massive_edit_plugins.php:576 -#: ../../godmode/massive/massive_enable_disable_alerts.php:226 -#: ../../godmode/wizards/DiscoveryTaskList.class.php:664 -#: ../../godmode/wizards/DiscoveryTaskList.class.php:971 -#: ../../godmode/wizards/DiscoveryTaskList.class.php:997 -#: ../../godmode/wizards/DiscoveryTaskList.class.php:1010 -#: ../../godmode/wizards/DiscoveryTaskList.class.php:1021 +#: ../../godmode/groups/group_list.php:926 +#: ../../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:1605 +#: ../../godmode/users/configure_user.php:1900 +#: ../../godmode/agentes/agent_template.php:259 +#: ../../godmode/agentes/modificar_agente.php:929 +#: ../../godmode/agentes/planned_downtime.editor.php:1015 +#: ../../godmode/agentes/fields_manager.php:155 +#: ../../godmode/agentes/agent_manager.php:237 +#: ../../godmode/agentes/module_manager_editor_common.php:233 #: ../../godmode/agentes/module_manager.php:1161 #: ../../godmode/agentes/module_manager.php:1175 #: ../../godmode/agentes/module_manager.php:1200 #: ../../godmode/agentes/module_manager.php:1223 #: ../../godmode/agentes/module_manager.php:1248 -#: ../../godmode/agentes/module_manager_editor_common.php:233 -#: ../../godmode/agentes/agent_manager.php:237 -#: ../../godmode/agentes/planned_downtime.editor.php:1015 -#: ../../godmode/agentes/fields_manager.php:155 -#: ../../godmode/agentes/agent_template.php:259 -#: ../../godmode/agentes/modificar_agente.php:929 -#: ../../godmode/alerts/alert_list.list.php:1116 +#: ../../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_filters.php:301 +#: ../../godmode/snmpconsole/snmp_filters.php:312 +#: ../../godmode/massive/massive_operations.php:391 +#: ../../godmode/massive/massive_standby_alerts.php:254 +#: ../../godmode/massive/massive_edit_plugins.php:576 +#: ../../godmode/massive/massive_enable_disable_alerts.php:226 #: ../../godmode/alerts/alert_actions.php:424 -#: ../../godmode/alerts/alert_templates.php:436 +#: ../../godmode/alerts/alert_list.list.php:1131 #: ../../godmode/alerts/alert_commands.php:721 #: ../../godmode/alerts/alert_commands.php:724 -#: ../../godmode/users/configure_user.php:1635 -#: ../../godmode/users/configure_user.php:1930 -#: ../../godmode/users/profile_list.php:439 -#: ../../godmode/groups/modu_group_list.php:273 -#: ../../godmode/groups/modu_group_list.php:276 -#: ../../godmode/groups/group_list.php:926 +#: ../../godmode/alerts/alert_templates.php:437 ../../godmode/setup/news.php:290 +#: ../../godmode/setup/links.php:160 +#: ../../godmode/reporting/create_container.php:682 +#: ../../godmode/reporting/map_builder.php:512 +#: ../../godmode/reporting/map_builder.php:523 +#: ../../godmode/reporting/graphs.php:362 +#: ../../godmode/reporting/visual_console_builder.elements.php:497 +#: ../../godmode/reporting/reporting_builder.php:1177 +#: ../../godmode/reporting/reporting_builder.php:1199 +#: ../../godmode/events/event_filter.php:188 +#: ../../godmode/wizards/DiscoveryTaskList.class.php:664 +#: ../../godmode/wizards/DiscoveryTaskList.class.php:971 +#: ../../godmode/wizards/DiscoveryTaskList.class.php:997 +#: ../../godmode/wizards/DiscoveryTaskList.class.php:1010 +#: ../../godmode/wizards/DiscoveryTaskList.class.php:1021 +#: ../../godmode/servers/plugin.php:884 ../../godmode/tag/tag.php:395 +#: ../../godmode/category/category.php:192 ../../godmode/category/category.php:211 +#: ../../include/functions_profile.php:278 +#: ../../include/class/ConfigPEN.class.php:666 +#: ../../include/class/TreeGroupEdition.class.php:166 +#: ../../include/class/CredentialStore.class.php:1288 +#: ../../include/class/ModuleTemplates.class.php:918 +#: ../../include/class/ModuleTemplates.class.php:933 +#: ../../include/class/WelcomeWindow.class.php:171 +#: ../../include/functions_filemanager.php:715 +#: ../../include/functions_container.php:190 +#: ../../include/functions_container.php:324 +#: ../../include/lib/Dashboard/Widgets/events_list.php:643 +#: ../../include/functions_events.php:3370 ../../operation/users/user_edit.php:1168 +#: ../../operation/agentes/pandora_networkmap.editor.php:600 +#: ../../operation/agentes/pandora_networkmap.php:801 +#: ../../operation/messages/message_list.php:272 +#: ../../operation/messages/message_list.php:275 +#: ../../operation/snmpconsole/snmp_browser.php:643 +#: ../../operation/snmpconsole/snmp_view.php:1033 +#: ../../operation/snmpconsole/snmp_view.php:1046 +#: ../../operation/snmpconsole/snmp_view.php:1220 +#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:197 +#: ../../operation/incidents/list_integriaims_incidents.php:554 msgid "Are you sure?" msgstr "Ɗtes-vous sĆ»r(e) ?" #: ../../views/calendar/special_days.php:442 -#: ../../operation/events/events.php:638 ../../operation/events/events.php:710 -#: ../../operation/events/events_list.php:630 -#: ../../operation/events/events_list.php:703 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:4321 -#: ../../enterprise/include/functions_ui.php:120 -#: ../../enterprise/include/functions_ui.php:168 -#: ../../enterprise/godmode/massive/massive_edit_tags_policy.php:177 -#: ../../enterprise/godmode/massive/massive_tags_edit_policy.php:161 #: ../../enterprise/godmode/agentes/collection_manager.php:210 #: ../../enterprise/godmode/policies/policy_collections.php:173 -#: ../../godmode/events/event_edit_filter.php:537 -#: ../../godmode/events/event_edit_filter.php:590 +#: ../../enterprise/godmode/massive/massive_edit_tags_policy.php:177 +#: ../../enterprise/godmode/massive/massive_tags_edit_policy.php:161 +#: ../../enterprise/include/functions_ui.php:120 +#: ../../enterprise/include/functions_ui.php:168 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:4347 #: ../../godmode/alerts/configure_alert_template.php:1548 +#: ../../godmode/events/event_edit_filter.php:542 +#: ../../godmode/events/event_edit_filter.php:595 +#: ../../operation/events/events.php:1167 ../../operation/events/events.php:1239 msgid "Remove" msgstr "Supprimer" @@ -1743,285 +1885,29 @@ msgstr "Supprimer" msgid "Load calendar" msgstr "Charger le calendrier" -#: ../../views/calendar/special_days_edit.php:40 -#: ../../operation/search_agents.php:57 -#: ../../operation/agentes/estado_agente.php:766 -#: ../../operation/agentes/ver_agente.php:1427 -#: ../../operation/search_results.php:106 ../../include/functions_reports.php:843 -#: ../../include/functions_reports.php:847 -#: ../../include/functions_reports.php:853 -#: ../../include/functions_reports.php:859 -#: ../../include/class/AgentsAlerts.class.php:542 -#: ../../include/functions_treeview.php:405 -#: ../../include/functions_reporting_html.php:2342 -#: ../../include/functions_reporting_html.php:5384 -#: ../../enterprise/operation/agentes/tag_view.php:608 -#: ../../enterprise/include/functions_policies.php:3763 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1537 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1630 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1755 -#: ../../enterprise/meta/monitoring/wizard/wizard.php:297 -#: ../../enterprise/meta/monitoring/wizard/wizard.module.web.php:102 -#: ../../enterprise/meta/monitoring/wizard/wizard.module.local.php:109 -#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:797 -#: ../../enterprise/meta/monitoring/wizard/wizard.module.network.php:121 -#: ../../enterprise/meta/agentsearch.php:141 -#: ../../enterprise/godmode/services/services.service.php:931 -#: ../../enterprise/godmode/massive/massive_create_services.php:877 -#: ../../enterprise/godmode/alerts/alert_inventory.php:78 -#: ../../enterprise/godmode/alerts/alert_inventory.php:80 -#: ../../enterprise/godmode/policies/policies.php:519 -#: ../../enterprise/godmode/policies/policy_alerts.php:46 -#: ../../mobile/operation/agent.php:355 ../../mobile/operation/home.php:74 -#: ../../mobile/operation/alerts.php:194 ../../mobile/operation/agents.php:98 -#: ../../mobile/operation/agents.php:407 -#: ../../mobile/include/functions_web.php:26 ../../godmode/menu.php:220 -#: ../../godmode/snmpconsole/snmp_alert.php:114 -#: ../../godmode/massive/massive_copy_modules.php:216 -#: ../../godmode/agentes/configurar_agente.php:422 -#: ../../godmode/agentes/modificar_agente.php:823 -#: ../../godmode/alerts/configure_alert_template.php:99 -#: ../../godmode/alerts/configure_alert_template.php:123 -#: ../../godmode/alerts/configure_alert_template.php:155 -#: ../../godmode/alerts/alert_actions.php:74 -#: ../../godmode/alerts/alert_templates.php:131 -#: ../../godmode/alerts/alert_templates.php:183 -#: ../../godmode/alerts/alert_templates.php:206 -#: ../../godmode/alerts/alert_templates.php:227 -#: ../../godmode/alerts/alert_commands.php:494 -#: ../../godmode/alerts/alert_list.php:494 -#: ../../godmode/alerts/alert_list.php:496 -#: ../../godmode/alerts/configure_alert_command.php:60 -#: ../../godmode/alerts/configure_alert_action.php:74 -#: ../../godmode/alerts/configure_alert_action.php:87 -#: ../../godmode/groups/configure_group.php:230 -#: ../../godmode/groups/group_list.php:846 -msgid "Alerts" -msgstr "Alertes" - -#: ../../views/calendar/special_days_edit.php:40 -msgid "Configure special day" -msgstr "Configurer jour spĆ©cial" - -#: ../../views/calendar/special_days_edit.php:80 ../../general/logon_ok.php:249 -#: ../../operation/reporting/graph_viewer.php:348 -#: ../../operation/events/events.build_table.php:705 -#: ../../operation/incidents/list_integriaims_incidents.php:371 -#: ../../include/class/AuditLog.class.php:110 -#: ../../include/functions_events.php:7123 -#: ../../include/functions_reporting.php:4016 -#: ../../include/functions_reporting.php:4057 ../../include/functions.php:3046 -#: ../../include/functions_reporting_html.php:1778 -#: ../../include/functions_reporting_html.php:2583 -#: ../../include/functions_reporting_html.php:2592 -#: ../../include/functions_reporting_html.php:2597 -#: ../../include/functions_reporting_html.php:2606 -#: ../../include/functions_reporting_html.php:2611 -#: ../../include/functions_reporting_html.php:2618 -#: ../../include/functions_reporting_html.php:2667 -#: ../../include/functions_reporting_html.php:2740 -#: ../../include/functions_reporting_html.php:5726 -#: ../../enterprise/operation/agentes/agent_inventory.php:127 -#: ../../enterprise/operation/inventory/inventory.php:432 -#: ../../enterprise/include/functions_reporting_csv.php:776 -#: ../../enterprise/include/functions_reporting_csv.php:832 -#: ../../enterprise/include/functions_reporting_csv.php:877 -#: ../../enterprise/include/functions_reporting_csv.php:2518 -#: ../../enterprise/include/class/ManageBackups.class.php:163 -#: ../../enterprise/include/functions_inventory.php:882 -#: ../../enterprise/include/functions_log.php:279 -#: ../../enterprise/include/functions_log.php:282 -#: ../../enterprise/include/functions_reporting.php:2143 -#: ../../enterprise/include/functions_reporting.php:2180 -#: ../../enterprise/include/functions_reporting.php:2215 -#: ../../enterprise/include/functions_reporting.php:2233 -#: ../../enterprise/include/functions_reporting_pdf.php:712 -#: ../../extensions/insert_data.php:196 ../../mobile/operation/tactical.php:350 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2057 -msgid "Date" -msgstr "Date" - -#: ../../views/calendar/list.php:39 -msgid "Calendars" -msgstr "Calendriers" - -#: ../../views/calendar/list.php:92 -#: ../../operation/events/events.build_table.php:146 -#: ../../operation/incidents/list_integriaims_incidents.php:515 -#: ../../include/functions_events.php:6656 -#: ../../enterprise/tools/ipam/ipam_excel.php:130 -#: ../../enterprise/tools/ipam/ipam_excel.php:199 -#: ../../enterprise/tools/ipam/ipam_vlan_config.php:660 -#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:91 -#: ../../extensions/api_checker.php:161 ../../godmode/setup/os.list.php:68 -#: ../../godmode/modules/module_list.php:61 -#: ../../godmode/agentes/module_manager_editor_common.php:230 -#: ../../godmode/agentes/agent_manager.php:219 -#: ../../godmode/agentes/fields_manager.php:118 -#: ../../godmode/agentes/agent_incidents.php:88 -#: ../../godmode/alerts/alert_commands.php:656 -#: ../../godmode/groups/modu_group_list.php:251 -#: ../../godmode/groups/group_list.php:840 -msgid "ID" -msgstr "Identifiant" - -#: ../../views/calendar/list.php:96 ../../views/dashboard/header.php:80 -#: ../../include/class/ExternalTools.class.php:383 -#: ../../include/class/ConfigPEN.class.php:601 -#: ../../include/class/CredentialStore.class.php:807 -#: ../../include/functions_events.php:302 -#: ../../enterprise/views/ncm/agent/details.php:92 -#: ../../enterprise/views/ncm/snippets/list.php:71 -#: ../../enterprise/views/ncm/firmwares/list.php:77 -#: ../../enterprise/views/ncm/vendors/list.php:71 -#: ../../enterprise/views/ncm/templates/list.php:77 -#: ../../enterprise/views/ncm/models/list.php:73 -#: ../../enterprise/views/ipam/sites/list.php:49 -#: ../../enterprise/views/cluster/list.php:64 -#: ../../enterprise/include/class/AgentRepository.class.php:635 -#: ../../enterprise/include/class/LogSource.class.php:630 -#: ../../enterprise/include/class/Omnishell.class.php:402 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2299 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2908 -#: ../../enterprise/include/class/DeploymentCenter.class.php:764 -#: ../../enterprise/meta/monitoring/wizard/wizard.create_module.php:266 -#: ../../enterprise/extensions/vmware/vmware_view.php:1338 -#: ../../enterprise/godmode/reporting/reporting_builder.template_list_item.php:261 -#: ../../godmode/reporting/reporting_builder.list_items.php:427 -#: ../../godmode/menu.php:539 -msgid "Options" -msgstr "Options" - -#: ../../views/calendar/list.php:119 -#: ../../operation/snmpconsole/snmp_view.php:600 -#: ../../operation/events/events.php:1128 -#: ../../operation/events/events_list.php:767 ../../include/ajax/module.php:292 -#: ../../include/class/ConfigPEN.class.php:627 -#: ../../include/class/CredentialStore.class.php:845 -#: ../../enterprise/views/ncm/snippets/list.php:102 -#: ../../enterprise/views/ncm/firmwares/list.php:108 -#: ../../enterprise/views/ncm/vendors/list.php:94 -#: ../../enterprise/views/ncm/devices/list.php:155 -#: ../../enterprise/views/ncm/templates/list.php:108 -#: ../../enterprise/views/ncm/models/list.php:96 -#: ../../enterprise/views/ipam/sites/list.php:73 -#: ../../enterprise/views/cluster/list.php:96 -#: ../../enterprise/include/class/LogSource.class.php:656 -#: ../../enterprise/include/lib/Metaconsole/Node.php:623 -#: ../../enterprise/include/functions_events.php:117 -#: ../../enterprise/include/functions_ipam.php:1663 -#: ../../enterprise/meta/advanced/metasetup.consoles.php:874 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3244 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:740 -#: ../../enterprise/godmode/massive/massive_delete_alerts_snmp.php:197 -#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:257 -#: ../../mobile/operation/modules.php:318 ../../mobile/operation/alerts.php:241 -#: ../../mobile/operation/events.php:701 ../../mobile/operation/agents.php:253 -#: ../../godmode/update_manager/update_manager.history.php:67 -#: ../../godmode/snmpconsole/snmp_alert.php:1161 -#: ../../godmode/events/event_edit_filter.php:361 -msgid "Free search" -msgstr "Recherche libre" - -#: ../../views/dashboard/slides.php:41 -#: ../../operation/snmpconsole/snmp_view.php:741 -msgid "Exit fullscreen" -msgstr "Quitter le mode plein Ć©cran" - -#: ../../views/dashboard/slides.php:181 -msgid "Change every" -msgstr "Changer chaque" - -#: ../../views/dashboard/slides.php:203 ../../include/functions.php:3868 -#: ../../enterprise/meta/monitoring/wizard/wizard.module.web.php:212 -#: ../../enterprise/meta/monitoring/wizard/wizard.module.local.php:211 -#: ../../enterprise/meta/monitoring/wizard/wizard.agent.php:146 -#: ../../enterprise/meta/monitoring/wizard/wizard.module.network.php:252 -msgid "Previous" -msgstr "PrĆ©cĆ©dent" - -#: ../../views/dashboard/slides.php:218 -#: ../../enterprise/operation/agentes/transactional_map.php:402 -msgid "Stop" -msgstr "ArrĆŖter" - -#: ../../views/dashboard/slides.php:229 -msgid "Pause" -msgstr "Pause" - -#: ../../views/dashboard/slides.php:240 -#: ../../include/class/CustomNetScan.class.php:550 -#: ../../enterprise/include/class/MicrosoftSQLServer.app.php:568 -#: ../../enterprise/include/class/Aws.cloud.php:1423 -#: ../../enterprise/include/class/MySQL.app.php:589 -#: ../../enterprise/include/class/Oracle.app.php:574 -#: ../../enterprise/include/class/DB2.app.php:567 -#: ../../enterprise/include/class/SAP.app.php:442 -#: ../../enterprise/include/class/Omnishell.class.php:643 -#: ../../enterprise/include/class/VMware.app.php:534 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:833 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1095 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1967 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2064 -#: ../../enterprise/include/lib/ClusterViewer/ClusterWizard.php:1200 -#: ../../enterprise/meta/monitoring/wizard/wizard.php:132 -#: ../../enterprise/meta/monitoring/wizard/wizard.module.web.php:215 -#: ../../enterprise/meta/monitoring/wizard/wizard.module.local.php:214 -#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:733 -#: ../../enterprise/meta/monitoring/wizard/wizard.agent.php:149 -#: ../../enterprise/meta/monitoring/wizard/wizard.module.network.php:262 -#: ../../enterprise/godmode/wizards/Cloud.class.php:579 -#: ../../godmode/wizards/HostDevices.class.php:769 -#: ../../godmode/alerts/configure_alert_template.php:1181 -#: ../../godmode/alerts/configure_alert_template.php:1188 -msgid "Next" -msgstr "Suivant" - -#: ../../views/dashboard/slides.php:252 -msgid "Mode Cell" -msgstr "Mode Cell" - -#: ../../views/dashboard/slides.php:258 -msgid "Mode Layout" -msgstr "Mode Layout" - -#: ../../views/dashboard/cell.php:42 -msgid "New widget" -msgstr "Nouveau widget" - -#: ../../views/dashboard/cell.php:56 -msgid "Configure widget" -msgstr "Configurer le widget" - -#: ../../views/dashboard/cell.php:68 -msgid "Delete widget" -msgstr "Supprimer le widget" - #: ../../views/dashboard/header.php:43 -#: ../../operation/visual_console/legacy_view.php:205 -#: ../../operation/visual_console/view.php:210 -#: ../../operation/gis_maps/render_view.php:136 -#: ../../operation/reporting/graph_viewer.php:234 -#: ../../operation/reporting/reporting_viewer.php:186 -#: ../../include/class/AgentsAlerts.class.php:792 -#: ../../enterprise/operation/agentes/manage_transmap.php:141 #: ../../enterprise/meta/screens/screens.visualmap.php:274 +#: ../../enterprise/operation/agentes/manage_transmap.php:141 #: ../../extensions/disabled/matrix_events.php:35 -#: ../../extensions/agents_modules.php:380 -#: ../../extensions/agents_modules.php:387 +#: ../../extensions/agents_modules.php:380 ../../extensions/agents_modules.php:387 #: ../../extensions/agents_modules.php:390 +#: ../../include/class/AgentsAlerts.class.php:792 +#: ../../operation/visual_console/view.php:210 +#: ../../operation/visual_console/legacy_view.php:205 +#: ../../operation/gis_maps/render_view.php:136 +#: ../../operation/reporting/reporting_viewer.php:186 +#: ../../operation/reporting/graph_viewer.php:234 msgid "Full screen mode" msgstr "Mode plein Ć©cran" -#: ../../views/dashboard/header.php:57 -#: ../../operation/visual_console/legacy_view.php:253 +#: ../../views/dashboard/header.php:57 ../../extensions/agents_modules.php:531 +#: ../../include/class/AgentsAlerts.class.php:797 ../../operation/heatmap.php:210 #: ../../operation/visual_console/view.php:444 +#: ../../operation/visual_console/legacy_view.php:253 #: ../../operation/gis_maps/render_view.php:138 -#: ../../operation/reporting/graph_viewer.php:243 #: ../../operation/reporting/reporting_viewer.php:195 -#: ../../operation/heatmap.php:210 ../../operation/events/events.php:764 -#: ../../include/class/AgentsAlerts.class.php:797 -#: ../../extensions/agents_modules.php:531 +#: ../../operation/reporting/graph_viewer.php:243 +#: ../../operation/events/events.php:1293 msgid "Back to normal mode" msgstr "Retour au mode normal" @@ -2030,29 +1916,27 @@ msgid "Update Dashboard" msgstr "Mettre Ć  jour le tableau de bord" #: ../../views/dashboard/header.php:68 ../../views/dashboard/header.php:102 -#: ../../views/dashboard/list.php:224 -#: ../../operation/gis_maps/render_view.php:166 -#: ../../include/lib/Dashboard/Widgets/wux_transaction.php:377 -#: ../../include/functions_config.php:1286 -#: ../../include/functions_config.php:3181 -#: ../../enterprise/operation/services/services.service.php:161 -#: ../../enterprise/operation/services/services.list.php:237 -#: ../../enterprise/operation/services/services.list.php:552 -#: ../../enterprise/operation/services/services.service_map.php:151 -#: ../../enterprise/operation/services/services.table_services.php:159 +#: ../../views/dashboard/list.php:224 ../../enterprise/load_enterprise.php:643 +#: ../../enterprise/load_enterprise.php:1139 +#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:444 +#: ../../enterprise/godmode/services/services.elements.php:848 +#: ../../enterprise/godmode/services/services.elements.php:859 +#: ../../enterprise/include/class/Omnishell.class.php:1499 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3050 +#: ../../enterprise/include/lib/Metaconsole/Node.php:406 #: ../../enterprise/operation/agentes/transactional_map.php:321 #: ../../enterprise/operation/agentes/manage_transmap_creation.php:64 -#: ../../enterprise/include/class/Omnishell.class.php:1499 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3008 -#: ../../enterprise/include/lib/Metaconsole/Node.php:458 -#: ../../enterprise/load_enterprise.php:638 -#: ../../enterprise/load_enterprise.php:1134 -#: ../../enterprise/godmode/services/services.elements.php:843 -#: ../../enterprise/godmode/services/services.elements.php:854 -#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:444 +#: ../../enterprise/operation/services/services.service.php:161 +#: ../../enterprise/operation/services/services.service_map.php:151 +#: ../../enterprise/operation/services/services.list.php:237 +#: ../../enterprise/operation/services/services.list.php:552 +#: ../../enterprise/operation/services/services.table_services.php:159 #: ../../godmode/snmpconsole/snmp_alert.php:1548 #: ../../godmode/snmpconsole/snmp_alert.php:1563 #: ../../godmode/massive/massive_edit_agents.php:981 +#: ../../include/functions_config.php:1272 ../../include/functions_config.php:3159 +#: ../../include/lib/Dashboard/Widgets/wux_transaction.php:377 +#: ../../operation/gis_maps/render_view.php:166 msgid "Ok" msgstr "Valider" @@ -2072,27 +1956,27 @@ msgstr "Mode diapositives" msgid "Show link to public dashboard" msgstr "Afficher lien au panneau de configuration" -#: ../../views/dashboard/header.php:158 ../../general/login_page.php:75 -#: ../../general/login_page.php:318 -#: ../../operation/visual_console/legacy_public_view.php:141 -#: ../../operation/visual_console/legacy_view.php:267 -#: ../../operation/visual_console/view.php:457 -#: ../../operation/visual_console/public_view.php:123 -#: ../../operation/gis_maps/render_view.php:160 -#: ../../operation/reporting/graph_viewer.php:399 ../../operation/heatmap.php:168 -#: ../../operation/events/events.php:776 ../../include/ajax/module.php:1054 -#: ../../include/ajax/heatmap.ajax.php:47 -#: ../../include/class/AgentsAlerts.class.php:836 -#: ../../include/class/NetworkMap.class.php:2801 +#: ../../views/dashboard/header.php:158 #: ../../enterprise/views/ncm/devices/list.php:171 +#: ../../enterprise/meta/advanced/policymanager.queue.php:238 +#: ../../enterprise/godmode/policies/policy_queue.php:801 +#: ../../enterprise/godmode/servers/HA_cluster.php:416 #: ../../enterprise/include/class/Omnishell.class.php:544 #: ../../enterprise/include/class/Omnishell.class.php:1329 #: ../../enterprise/include/functions_ipam.php:1396 -#: ../../enterprise/meta/advanced/policymanager.queue.php:238 -#: ../../enterprise/godmode/servers/HA_cluster.php:416 -#: ../../enterprise/godmode/policies/policy_queue.php:801 #: ../../extensions/agents_modules.php:543 #: ../../godmode/wizards/DiscoveryTaskList.class.php:191 +#: ../../include/ajax/heatmap.ajax.php:47 ../../include/ajax/module.php:1054 +#: ../../include/class/NetworkMap.class.php:2801 +#: ../../include/class/AgentsAlerts.class.php:836 ../../operation/heatmap.php:168 +#: ../../operation/visual_console/view.php:457 +#: ../../operation/visual_console/legacy_public_view.php:141 +#: ../../operation/visual_console/legacy_view.php:267 +#: ../../operation/visual_console/public_view.php:123 +#: ../../operation/gis_maps/render_view.php:160 +#: ../../operation/reporting/graph_viewer.php:399 +#: ../../operation/events/events.php:1305 ../../general/login_page.php:75 +#: ../../general/login_page.php:318 msgid "Refresh" msgstr "RafraĆ®chir" @@ -2101,152 +1985,120 @@ msgid "Add Cell" msgstr "Ajouter cellule" #: ../../views/dashboard/header.php:278 ../../views/dashboard/list.php:42 -#: ../../enterprise/meta/general/main_menu.php:309 #: ../../enterprise/meta/general/main_header.php:222 +#: ../../enterprise/meta/general/main_menu.php:311 msgid "Dashboards" msgstr "Panneaux de configuration" #: ../../views/dashboard/header.php:278 +#: ../../enterprise/godmode/alerts/alert_inventory.php:78 +#: ../../godmode/agentes/planned_downtime.editor.php:59 +#: ../../godmode/alerts/alert_list.php:494 ../../godmode/category/category.php:89 +#: ../../include/functions_html.php:1906 ../../include/functions_html.php:1907 +#: ../../include/functions_html.php:2017 ../../include/functions_html.php:2018 +#: ../../include/functions_html.php:2197 ../../include/functions_html.php:2198 #: ../../operation/snmpconsole/snmp_statistics.php:66 #: ../../operation/snmpconsole/snmp_view.php:107 -#: ../../operation/events/events.php:932 ../../include/functions_html.php:1894 -#: ../../include/functions_html.php:1895 ../../include/functions_html.php:2005 -#: ../../include/functions_html.php:2006 ../../include/functions_html.php:2185 -#: ../../include/functions_html.php:2186 -#: ../../enterprise/godmode/alerts/alert_inventory.php:78 -#: ../../godmode/category/category.php:89 -#: ../../godmode/agentes/planned_downtime.editor.php:59 -#: ../../godmode/alerts/alert_list.php:494 +#: ../../operation/events/events.php:1461 msgid "List" msgstr "Liste" -#: ../../views/dashboard/widget.php:35 ../../views/dashboard/listWidgets.php:85 -msgid "Add widget" -msgstr "Ajouter un widget" - -#: ../../views/dashboard/widget.php:45 -msgid "Please select widget" -msgstr "SĆ©lectionnez un widget" - -#: ../../views/dashboard/jsLayout.php:42 -#: ../../operation/snmpconsole/snmp_view.php:1298 -#: ../../operation/events/events.php:2763 ../../extensions/agents_modules.php:76 -msgid "Until next" -msgstr "Jusqu'au suivant" - -#: ../../views/dashboard/formDashboard.php:91 -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:499 -#: ../../godmode/reporting/reporting_builder.php:938 -msgid "Private" -msgstr "PrivĆ©" - -#: ../../views/dashboard/formDashboard.php:122 -#: ../../enterprise/godmode/services/services.service.php:736 -#: ../../enterprise/godmode/reporting/visual_console_template.php:272 -#: ../../enterprise/godmode/massive/massive_create_services.php:809 -msgid "Favourite" -msgstr "Favori" - #: ../../views/dashboard/list.php:53 -#: ../../operation/messages/message_list.php:113 -#: ../../operation/messages/message_list.php:135 -#: ../../operation/gis_maps/gis_map.php:86 -#: ../../operation/reporting/graph_viewer.php:57 -#: ../../operation/reporting/graph_viewer.php:65 -#: ../../operation/snmpconsole/snmp_view.php:155 -#: ../../operation/incidents/list_integriaims_incidents.php:295 -#: ../../include/class/ConfigPEN.class.php:486 -#: ../../enterprise/tools/ipam/ipam_vlan_config.php:132 -#: ../../enterprise/tools/ipam/ipam_network_location_config.php:87 -#: ../../enterprise/tools/ipam/ipam_action.php:102 -#: ../../enterprise/tools/ipam/ipam_supernet_config.php:152 -#: ../../enterprise/operation/agentes/transactional_map.php:182 -#: ../../enterprise/operation/agentes/manage_transmap_creation.php:82 -#: ../../enterprise/include/class/DatabaseHA.class.php:1057 #: ../../enterprise/meta/advanced/agents_setup.move_agents.php:288 #: ../../enterprise/meta/advanced/metasetup.relations.php:86 #: ../../enterprise/meta/advanced/links.php:84 -#: ../../enterprise/godmode/setup/setup_metaconsole.php:138 #: ../../enterprise/godmode/modules/local_components.php:417 -#: ../../enterprise/godmode/reporting/reporting_builder.template_list_item.php:165 -#: ../../enterprise/godmode/reporting/graph_template_item_editor.php:129 -#: ../../enterprise/godmode/reporting/graph_template_item_editor.php:157 +#: ../../enterprise/godmode/alerts/alert_inventory_list.php:68 +#: ../../enterprise/godmode/alerts/alert_inventory_list.php:118 +#: ../../enterprise/godmode/setup/setup_metaconsole.php:138 #: ../../enterprise/godmode/reporting/graph_template_list.php:155 #: ../../enterprise/godmode/reporting/graph_template_list.php:182 #: ../../enterprise/godmode/reporting/reporting_builder.template.php:424 #: ../../enterprise/godmode/reporting/reporting_builder.template.php:442 -#: ../../enterprise/godmode/alerts/alert_inventory_list.php:68 -#: ../../enterprise/godmode/alerts/alert_inventory_list.php:118 -#: ../../extensions/files_repo.php:184 ../../godmode/setup/news.php:120 -#: ../../godmode/setup/gis.php:61 ../../godmode/setup/links.php:76 -#: ../../godmode/modules/manage_network_components.php:552 +#: ../../enterprise/godmode/reporting/graph_template_item_editor.php:129 +#: ../../enterprise/godmode/reporting/graph_template_item_editor.php:157 +#: ../../enterprise/godmode/reporting/reporting_builder.template_list_item.php:165 +#: ../../enterprise/include/class/DatabaseHA.class.php:1057 +#: ../../enterprise/operation/agentes/transactional_map.php:182 +#: ../../enterprise/operation/agentes/manage_transmap_creation.php:82 +#: ../../enterprise/tools/ipam/ipam_supernet_config.php:152 +#: ../../enterprise/tools/ipam/ipam_action.php:102 +#: ../../enterprise/tools/ipam/ipam_network_location_config.php:87 +#: ../../enterprise/tools/ipam/ipam_vlan_config.php:132 +#: ../../extensions/files_repo.php:184 #: ../../godmode/modules/manage_nc_groups.php:152 -#: ../../godmode/reporting/map_builder.php:209 +#: ../../godmode/modules/manage_network_components.php:552 +#: ../../godmode/users/profile_list.php:133 ../../godmode/users/user_list.php:293 +#: ../../godmode/users/user_list.php:340 ../../godmode/users/configure_user.php:137 +#: ../../godmode/users/configure_user.php:157 +#: ../../godmode/agentes/planned_downtime.list.php:242 +#: ../../godmode/netflow/nf_item_list.php:120 +#: ../../godmode/netflow/nf_item_list.php:148 ../../godmode/netflow/nf_edit.php:104 +#: ../../godmode/netflow/nf_edit.php:137 +#: ../../godmode/snmpconsole/snmp_alert.php:686 +#: ../../godmode/snmpconsole/snmp_filters.php:180 +#: ../../godmode/massive/massive_delete_action_alerts.php:170 +#: ../../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:604 +#: ../../godmode/alerts/alert_templates.php:252 +#: ../../godmode/alerts/alert_list.php:232 ../../godmode/alerts/alert_list.php:339 +#: ../../godmode/setup/news.php:120 ../../godmode/setup/gis.php:61 +#: ../../godmode/setup/links.php:76 ../../godmode/reporting/map_builder.php:209 #: ../../godmode/reporting/graphs.php:150 ../../godmode/reporting/graphs.php:162 #: ../../godmode/reporting/graphs.php:213 #: ../../godmode/reporting/reporting_builder.php:668 -#: ../../godmode/snmpconsole/snmp_alert.php:686 -#: ../../godmode/snmpconsole/snmp_filters.php:180 -#: ../../godmode/events/event_filter.php:69 -#: ../../godmode/events/event_filter.php:96 ../../godmode/netflow/nf_edit.php:104 -#: ../../godmode/netflow/nf_edit.php:137 -#: ../../godmode/netflow/nf_item_list.php:120 -#: ../../godmode/netflow/nf_item_list.php:148 -#: ../../godmode/massive/massive_delete_modules.php:162 -#: ../../godmode/massive/massive_delete_action_alerts.php:170 -#: ../../godmode/massive/massive_delete_alerts.php:201 -#: ../../godmode/agentes/planned_downtime.list.php:242 -#: ../../godmode/alerts/alert_actions.php:205 -#: ../../godmode/alerts/alert_templates.php:252 -#: ../../godmode/alerts/alert_commands.php:604 -#: ../../godmode/alerts/alert_list.php:232 -#: ../../godmode/alerts/alert_list.php:339 ../../godmode/users/user_list.php:293 -#: ../../godmode/users/user_list.php:340 -#: ../../godmode/users/configure_user.php:137 -#: ../../godmode/users/configure_user.php:157 -#: ../../godmode/users/profile_list.php:133 +#: ../../godmode/events/event_filter.php:69 ../../godmode/events/event_filter.php:96 +#: ../../include/class/ConfigPEN.class.php:486 +#: ../../operation/messages/message_list.php:113 +#: ../../operation/messages/message_list.php:135 +#: ../../operation/snmpconsole/snmp_view.php:155 +#: ../../operation/gis_maps/gis_map.php:86 +#: ../../operation/incidents/list_integriaims_incidents.php:295 +#: ../../operation/reporting/graph_viewer.php:57 +#: ../../operation/reporting/graph_viewer.php:65 msgid "Successfully deleted" msgstr "SupprimĆ© correctement" #: ../../views/dashboard/list.php:54 -#: ../../operation/messages/message_list.php:114 -#: ../../operation/gis_maps/gis_map.php:87 -#: ../../operation/snmpconsole/snmp_view.php:156 -#: ../../operation/agentes/pandora_networkmap.php:547 -#: ../../operation/incidents/list_integriaims_incidents.php:296 -#: ../../enterprise/tools/ipam/ipam_vlan_config.php:130 -#: ../../enterprise/tools/ipam/ipam_action.php:100 -#: ../../enterprise/tools/ipam/ipam_supernet_config.php:150 -#: ../../enterprise/operation/agentes/transactional_map.php:183 -#: ../../enterprise/operation/agentes/manage_transmap_creation.php:83 -#: ../../enterprise/godmode/setup/setup_metaconsole.php:139 #: ../../enterprise/godmode/modules/local_components.php:418 -#: ../../enterprise/godmode/reporting/reporting_builder.template_list_item.php:166 -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:425 -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:443 -#: ../../enterprise/godmode/alerts/alert_inventory_list.php:69 -#: ../../enterprise/godmode/alerts/alert_inventory_list.php:119 -#: ../../enterprise/godmode/policies/policy_agents.php:104 -#: ../../enterprise/godmode/policies/policy_agents.php:126 +#: ../../enterprise/godmode/policies/policy_alerts.php:256 +#: ../../enterprise/godmode/policies/policy_alerts.php:302 #: ../../enterprise/godmode/policies/policy_modules.php:1313 #: ../../enterprise/godmode/policies/policy_external_alerts.php:147 #: ../../enterprise/godmode/policies/policy_external_alerts.php:174 #: ../../enterprise/godmode/policies/policy_inventory_modules.php:166 -#: ../../enterprise/godmode/policies/policy_alerts.php:256 -#: ../../enterprise/godmode/policies/policy_alerts.php:302 #: ../../enterprise/godmode/policies/policy_collections.php:100 -#: ../../extensions/files_repo.php:184 ../../godmode/setup/news.php:121 -#: ../../godmode/setup/gis.php:59 +#: ../../enterprise/godmode/policies/policy_agents.php:104 +#: ../../enterprise/godmode/policies/policy_agents.php:126 +#: ../../enterprise/godmode/alerts/alert_inventory_list.php:69 +#: ../../enterprise/godmode/alerts/alert_inventory_list.php:119 +#: ../../enterprise/godmode/setup/setup_metaconsole.php:139 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:425 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:443 +#: ../../enterprise/godmode/reporting/reporting_builder.template_list_item.php:166 +#: ../../enterprise/operation/agentes/transactional_map.php:183 +#: ../../enterprise/operation/agentes/manage_transmap_creation.php:83 +#: ../../enterprise/tools/ipam/ipam_supernet_config.php:150 +#: ../../enterprise/tools/ipam/ipam_action.php:100 +#: ../../enterprise/tools/ipam/ipam_vlan_config.php:130 +#: ../../extensions/files_repo.php:184 #: ../../godmode/modules/manage_network_components.php:553 -#: ../../godmode/reporting/reporting_builder.php:669 +#: ../../godmode/users/configure_user.php:138 #: ../../godmode/massive/massive_delete_action_alerts.php:171 #: ../../godmode/massive/massive_delete_alerts.php:202 #: ../../godmode/alerts/alert_actions.php:206 -#: ../../godmode/alerts/alert_templates.php:253 #: ../../godmode/alerts/alert_commands.php:605 -#: ../../godmode/alerts/alert_list.php:233 -#: ../../godmode/alerts/alert_list.php:340 -#: ../../godmode/users/configure_user.php:138 +#: ../../godmode/alerts/alert_templates.php:253 +#: ../../godmode/alerts/alert_list.php:233 ../../godmode/alerts/alert_list.php:340 +#: ../../godmode/setup/news.php:121 ../../godmode/setup/gis.php:59 +#: ../../godmode/reporting/reporting_builder.php:669 +#: ../../operation/agentes/pandora_networkmap.php:547 +#: ../../operation/messages/message_list.php:114 +#: ../../operation/snmpconsole/snmp_view.php:156 +#: ../../operation/gis_maps/gis_map.php:87 +#: ../../operation/incidents/list_integriaims_incidents.php:296 msgid "Could not be deleted" msgstr "Erreur de suppression" @@ -2270,206 +2122,204 @@ msgstr "Cellules" msgid "Favorite" msgstr "Favori" -#: ../../views/dashboard/list.php:99 -#: ../../operation/snmpconsole/snmp_browser.php:68 -#: ../../operation/snmpconsole/snmp_statistics.php:54 -#: ../../operation/snmpconsole/snmp_view.php:128 ../../operation/heatmap.php:87 -#: ../../operation/events/events.php:819 -#: ../../operation/agentes/networkmap.dinamic.php:115 +#: ../../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:2279 -#: ../../include/class/AgentsAlerts.class.php:822 +#: ../../operation/snmpconsole/snmp_statistics.php:54 +#: ../../operation/snmpconsole/snmp_browser.php:68 +#: ../../operation/snmpconsole/snmp_view.php:128 +#: ../../operation/events/events.php:1348 msgid "Full screen" msgstr "Plein Ć©cran" #: ../../views/dashboard/list.php:102 -#: ../../operation/agentes/pandora_networkmap.php:712 -#: ../../operation/agentes/pandora_networkmap.php:799 -#: ../../enterprise/godmode/massive/massive_add_modules_policy.php:230 #: ../../enterprise/godmode/policies/policy_modules.php:1673 #: ../../enterprise/godmode/policies/policies.php:570 -#: ../../godmode/reporting/map_builder.php:387 +#: ../../enterprise/godmode/massive/massive_add_modules_policy.php:230 #: ../../godmode/agentes/planned_downtime.list.php:623 #: ../../godmode/agentes/planned_downtime.list.php:749 #: ../../godmode/agentes/planned_downtime.list.php:795 #: ../../godmode/alerts/alert_actions.php:330 +#: ../../godmode/reporting/map_builder.php:387 +#: ../../operation/agentes/pandora_networkmap.php:712 +#: ../../operation/agentes/pandora_networkmap.php:799 msgid "Copy" msgstr "Copier" #: ../../views/dashboard/list.php:103 -#: ../../operation/messages/message_list.php:201 -#: ../../operation/messages/message_list.php:272 -#: ../../operation/messages/message_list.php:275 -#: ../../operation/messages/message_list.php:293 -#: ../../operation/visual_console/view.php:733 -#: ../../operation/gis_maps/gis_map.php:190 -#: ../../operation/snmpconsole/snmp_view.php:1038 -#: ../../operation/snmpconsole/snmp_view.php:1051 -#: ../../operation/snmpconsole/snmp_view.php:1220 -#: ../../operation/snmpconsole/snmp_view.php:1269 -#: ../../operation/agentes/pandora_networkmap.php:714 -#: ../../operation/agentes/pandora_networkmap.php:801 -#: ../../operation/incidents/list_integriaims_incidents.php:555 -#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:120 -#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:198 -#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:251 -#: ../../include/functions_cron.php:895 ../../include/functions_cron.php:923 -#: ../../include/class/ModuleTemplates.class.php:933 -#: ../../include/class/ModuleTemplates.class.php:1211 -#: ../../include/class/ManageNetScanScripts.class.php:405 -#: ../../include/class/ConfigPEN.class.php:264 -#: ../../include/class/CredentialStore.class.php:1102 -#: ../../include/class/CredentialStore.class.php:1290 -#: ../../include/class/CalendarManager.class.php:686 -#: ../../include/class/NetworkMap.class.php:2798 -#: ../../include/functions_container.php:191 -#: ../../include/functions_container.php:325 -#: ../../enterprise/tools/ipam/ipam_vlan_config.php:807 -#: ../../enterprise/tools/ipam/ipam_network_location_config.php:288 -#: ../../enterprise/tools/ipam/ipam_network_location_config.php:304 -#: ../../enterprise/tools/ipam/ipam_ajax.php:136 -#: ../../enterprise/tools/ipam/ipam_supernet_config.php:1297 -#: ../../enterprise/operation/services/services.list.php:655 -#: ../../enterprise/operation/agentes/transactional_map.php:483 -#: ../../enterprise/operation/agentes/manage_transmap_creation.php:269 -#: ../../enterprise/include/ajax/log_viewer.ajax.php:96 -#: ../../enterprise/include/ajax/servers.ajax.php:103 +#: ../../enterprise/meta/advanced/servers.build_table.php:133 +#: ../../enterprise/meta/advanced/metasetup.visual.php:434 +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:570 +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:598 +#: ../../enterprise/meta/advanced/metasetup.relations.php:589 +#: ../../enterprise/meta/advanced/metasetup.relations.php:590 +#: ../../enterprise/meta/advanced/metasetup.relations.php:634 +#: ../../enterprise/meta/advanced/links.php:157 +#: ../../enterprise/meta/advanced/policymanager.queue.php:220 +#: ../../enterprise/meta/advanced/policymanager.queue.php:262 +#: ../../enterprise/meta/advanced/policymanager.queue.php:319 +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:298 +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:464 +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:815 +#: ../../enterprise/meta/include/functions_autoprovision.php:517 +#: ../../enterprise/meta/include/functions_autoprovision.php:518 +#: ../../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:317 +#: ../../enterprise/godmode/modules/manage_inventory_modules.php:332 +#: ../../enterprise/godmode/modules/local_components.php:698 +#: ../../enterprise/godmode/modules/local_components.php:715 +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:807 +#: ../../enterprise/godmode/agentes/inventory_manager.php:249 +#: ../../enterprise/godmode/agentes/plugins_manager.php:196 +#: ../../enterprise/godmode/agentes/plugins_manager.php:281 +#: ../../enterprise/godmode/policies/policy_plugins.php:169 +#: ../../enterprise/godmode/policies/policy_alerts.php:539 +#: ../../enterprise/godmode/policies/policy_modules.php:1586 +#: ../../enterprise/godmode/policies/policy_modules.php:1618 +#: ../../enterprise/godmode/policies/policy_queue.php:611 +#: ../../enterprise/godmode/policies/policy_queue.php:675 +#: ../../enterprise/godmode/policies/policy_queue.php:722 +#: ../../enterprise/godmode/policies/policies.php:591 +#: ../../enterprise/godmode/policies/policy_external_alerts.php:550 +#: ../../enterprise/godmode/policies/policy_inventory_modules.php:334 +#: ../../enterprise/godmode/policies/policy_agents.php:1083 +#: ../../enterprise/godmode/policies/policy_agents.php:1545 +#: ../../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 +#: ../../enterprise/godmode/massive/massive_delete_services.php:92 +#: ../../enterprise/godmode/setup/setup_acl.php:595 +#: ../../enterprise/godmode/reporting/graph_template_list.php:246 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:646 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:674 +#: ../../enterprise/godmode/reporting/graph_template_item_editor.php:215 +#: ../../enterprise/godmode/reporting/graph_template_item_editor.php:225 +#: ../../enterprise/godmode/reporting/visual_console_template.php:273 +#: ../../enterprise/godmode/reporting/mysql_builder.php:97 +#: ../../enterprise/godmode/reporting/mysql_builder.php:104 +#: ../../enterprise/godmode/reporting/reporting_builder.template_list_item.php:389 +#: ../../enterprise/godmode/servers/credential_boxes_satellite.php:252 +#: ../../enterprise/godmode/servers/credential_boxes_satellite.php:287 +#: ../../enterprise/include/functions_tasklist.php:615 +#: ../../enterprise/include/functions_tasklist.php:650 #: ../../enterprise/include/ajax/transactional.ajax.php:119 #: ../../enterprise/include/ajax/transactional.ajax.php:208 -#: ../../enterprise/include/class/AgentRepository.class.php:775 -#: ../../enterprise/include/class/AgentRepository.class.php:810 -#: ../../enterprise/include/class/LogSource.class.php:772 -#: ../../enterprise/include/class/LogSource.class.php:894 -#: ../../enterprise/include/class/ManageBackups.class.php:275 -#: ../../enterprise/include/class/Omnishell.class.php:1163 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2399 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3054 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3374 +#: ../../enterprise/include/ajax/log_viewer.ajax.php:96 +#: ../../enterprise/include/ajax/servers.ajax.php:103 +#: ../../enterprise/include/class/DeploymentCenter.class.php:1537 +#: ../../enterprise/include/class/DeploymentCenter.class.php:1576 #: ../../enterprise/include/class/NetworkConfigManager.class.php:644 #: ../../enterprise/include/class/NetworkConfigManager.class.php:800 #: ../../enterprise/include/class/NetworkConfigManager.class.php:976 #: ../../enterprise/include/class/NetworkConfigManager.class.php:1123 #: ../../enterprise/include/class/NetworkConfigManager.class.php:1331 -#: ../../enterprise/include/class/DeploymentCenter.class.php:1537 -#: ../../enterprise/include/class/DeploymentCenter.class.php:1576 -#: ../../enterprise/include/functions_tasklist.php:615 -#: ../../enterprise/include/functions_tasklist.php:650 +#: ../../enterprise/include/class/AgentRepository.class.php:788 +#: ../../enterprise/include/class/AgentRepository.class.php:823 +#: ../../enterprise/include/class/Omnishell.class.php:1163 +#: ../../enterprise/include/class/LogSource.class.php:772 +#: ../../enterprise/include/class/LogSource.class.php:894 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2441 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3096 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3416 +#: ../../enterprise/include/class/ManageBackups.class.php:275 #: ../../enterprise/include/lib/ClusterViewer/ClusterManager.php:634 -#: ../../enterprise/include/lib/Metaconsole/Node.php:1252 -#: ../../enterprise/include/lib/Metaconsole/Node.php:1253 -#: ../../enterprise/meta/include/functions_autoprovision.php:517 -#: ../../enterprise/meta/include/functions_autoprovision.php:518 -#: ../../enterprise/meta/include/functions_autoprovision.php:685 -#: ../../enterprise/meta/include/functions_autoprovision.php:686 -#: ../../enterprise/meta/include/functions_wizard_meta.php:398 -#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:301 -#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:467 -#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:818 -#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:570 -#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:598 -#: ../../enterprise/meta/advanced/policymanager.queue.php:220 -#: ../../enterprise/meta/advanced/policymanager.queue.php:262 -#: ../../enterprise/meta/advanced/policymanager.queue.php:319 -#: ../../enterprise/meta/advanced/metasetup.relations.php:589 -#: ../../enterprise/meta/advanced/metasetup.relations.php:590 -#: ../../enterprise/meta/advanced/metasetup.relations.php:634 -#: ../../enterprise/meta/advanced/servers.build_table.php:133 -#: ../../enterprise/meta/advanced/metasetup.visual.php:434 -#: ../../enterprise/meta/advanced/links.php:157 -#: ../../enterprise/godmode/setup/setup_acl.php:595 -#: ../../enterprise/godmode/servers/credential_boxes_satellite.php:252 -#: ../../enterprise/godmode/servers/credential_boxes_satellite.php:287 -#: ../../enterprise/godmode/modules/local_components.php:698 -#: ../../enterprise/godmode/modules/local_components.php:715 -#: ../../enterprise/godmode/modules/manage_inventory_modules.php:317 -#: ../../enterprise/godmode/modules/manage_inventory_modules.php:332 -#: ../../enterprise/godmode/reporting/visual_console_template.php:273 -#: ../../enterprise/godmode/reporting/reporting_builder.template_list_item.php:389 -#: ../../enterprise/godmode/reporting/mysql_builder.php:97 -#: ../../enterprise/godmode/reporting/mysql_builder.php:104 -#: ../../enterprise/godmode/reporting/graph_template_item_editor.php:215 -#: ../../enterprise/godmode/reporting/graph_template_item_editor.php:225 -#: ../../enterprise/godmode/reporting/graph_template_list.php:246 -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:646 -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:674 -#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:413 -#: ../../enterprise/godmode/massive/massive_delete_alerts_policy.php:148 -#: ../../enterprise/godmode/massive/massive_delete_services.php:92 -#: ../../enterprise/godmode/massive/massive_delete_alerts_snmp.php:238 -#: ../../enterprise/godmode/agentes/inventory_manager.php:249 -#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:652 -#: ../../enterprise/godmode/agentes/plugins_manager.php:196 -#: ../../enterprise/godmode/agentes/plugins_manager.php:281 -#: ../../enterprise/godmode/policies/policy_agents.php:1083 -#: ../../enterprise/godmode/policies/policy_agents.php:1545 -#: ../../enterprise/godmode/policies/policy_queue.php:611 -#: ../../enterprise/godmode/policies/policy_queue.php:675 -#: ../../enterprise/godmode/policies/policy_queue.php:722 -#: ../../enterprise/godmode/policies/policy_modules.php:1586 -#: ../../enterprise/godmode/policies/policy_modules.php:1618 -#: ../../enterprise/godmode/policies/policies.php:591 -#: ../../enterprise/godmode/policies/policy_external_alerts.php:550 -#: ../../enterprise/godmode/policies/policy_inventory_modules.php:334 -#: ../../enterprise/godmode/policies/policy_alerts.php:539 -#: ../../enterprise/godmode/policies/policy_plugins.php:169 +#: ../../enterprise/include/lib/Metaconsole/Node.php:1193 +#: ../../enterprise/include/lib/Metaconsole/Node.php:1194 +#: ../../enterprise/operation/agentes/transactional_map.php:483 +#: ../../enterprise/operation/agentes/manage_transmap_creation.php:269 +#: ../../enterprise/operation/services/services.list.php:655 +#: ../../enterprise/tools/ipam/ipam_supernet_config.php:1297 +#: ../../enterprise/tools/ipam/ipam_network_location_config.php:288 +#: ../../enterprise/tools/ipam/ipam_network_location_config.php:304 +#: ../../enterprise/tools/ipam/ipam_ajax.php:136 +#: ../../enterprise/tools/ipam/ipam_vlan_config.php:807 #: ../../extensions/files_repo/files_repo_list.php:151 -#: ../../godmode/setup/snmp_wizard.php:110 -#: ../../godmode/setup/setup_visuals.php:1320 -#: ../../godmode/setup/setup_visuals.php:1359 -#: ../../godmode/setup/setup_visuals.php:1379 ../../godmode/setup/news.php:251 -#: ../../godmode/setup/gis.php:70 ../../godmode/setup/links.php:146 -#: ../../godmode/servers/servers.build_table.php:259 +#: ../../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_network_components.php:868 #: ../../godmode/modules/manage_network_components.php:869 #: ../../godmode/modules/manage_network_components.php:898 #: ../../godmode/modules/manage_network_templates.php:287 #: ../../godmode/modules/manage_network_templates.php:300 -#: ../../godmode/modules/manage_network_templates_form.php:254 -#: ../../godmode/modules/manage_nc_groups.php:276 -#: ../../godmode/modules/manage_nc_groups.php:305 -#: ../../godmode/extensions.php:257 ../../godmode/extensions.php:259 -#: ../../godmode/reporting/map_builder.php:388 -#: ../../godmode/reporting/map_builder.php:512 -#: ../../godmode/reporting/map_builder.php:523 -#: ../../godmode/reporting/graphs.php:367 ../../godmode/reporting/graphs.php:368 -#: ../../godmode/reporting/graphs.php:394 +#: ../../godmode/groups/group_list.php:937 ../../godmode/groups/group_list.php:938 +#: ../../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:825 +#: ../../godmode/agentes/agent_template.php:259 +#: ../../godmode/agentes/planned_downtime.list.php:625 +#: ../../godmode/agentes/planned_downtime.list.php:774 +#: ../../godmode/agentes/planned_downtime.editor.php:968 +#: ../../godmode/agentes/planned_downtime.editor.php:971 +#: ../../godmode/agentes/planned_downtime.editor.php:1021 +#: ../../godmode/agentes/fields_manager.php:155 +#: ../../godmode/agentes/module_manager_editor_common.php:1307 +#: ../../godmode/agentes/module_manager.php:868 +#: ../../godmode/agentes/module_manager.php:1228 +#: ../../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 +#: ../../godmode/snmpconsole/snmp_alert.php:1313 +#: ../../godmode/snmpconsole/snmp_filters.php:301 +#: ../../godmode/snmpconsole/snmp_filters.php:312 +#: ../../godmode/alerts/alert_actions.php:331 +#: ../../godmode/alerts/alert_actions.php:449 +#: ../../godmode/alerts/alert_list.list.php:927 +#: ../../godmode/alerts/alert_templates.php:446 ../../godmode/setup/news.php:251 +#: ../../godmode/setup/gis.php:70 ../../godmode/setup/links.php:146 +#: ../../godmode/setup/snmp_wizard.php:110 +#: ../../godmode/setup/setup_visuals.php:1374 +#: ../../godmode/setup/setup_visuals.php:1413 +#: ../../godmode/setup/setup_visuals.php:1433 #: ../../godmode/reporting/reporting_builder.list_items.php:629 #: ../../godmode/reporting/reporting_builder.list_items.php:667 #: ../../godmode/reporting/reporting_builder.list_items.php:690 #: ../../godmode/reporting/reporting_builder.list_items.php:791 #: ../../godmode/reporting/create_container.php:630 #: ../../godmode/reporting/create_container.php:683 -#: ../../godmode/reporting/visual_console_builder.elements.php:763 -#: ../../godmode/reporting/reporting_builder.php:1209 -#: ../../godmode/reporting/reporting_builder.php:1293 +#: ../../godmode/reporting/map_builder.php:388 +#: ../../godmode/reporting/map_builder.php:512 +#: ../../godmode/reporting/map_builder.php:523 +#: ../../godmode/reporting/graphs.php:367 ../../godmode/reporting/graphs.php:368 +#: ../../godmode/reporting/graphs.php:394 #: ../../godmode/reporting/graph_builder.graph_editor.php:216 #: ../../godmode/reporting/graph_builder.graph_editor.php:256 -#: ../../godmode/snmpconsole/snmp_alert.php:1313 -#: ../../godmode/snmpconsole/snmp_filters.php:301 -#: ../../godmode/snmpconsole/snmp_filters.php:312 -#: ../../godmode/events/event_responses.list.php:71 +#: ../../godmode/reporting/visual_console_builder.elements.php:763 +#: ../../godmode/reporting/reporting_builder.php:1207 +#: ../../godmode/reporting/reporting_builder.php:1291 #: ../../godmode/events/event_filter.php:192 #: ../../godmode/events/event_filter.php:211 -#: ../../godmode/netflow/nf_edit.php:196 ../../godmode/netflow/nf_edit.php:208 -#: ../../godmode/netflow/nf_item_list.php:263 -#: ../../godmode/netflow/nf_item_list.php:273 -#: ../../godmode/agentes/module_manager.php:868 -#: ../../godmode/agentes/module_manager.php:1228 -#: ../../godmode/agentes/module_manager_editor_common.php:1307 -#: ../../godmode/agentes/planned_downtime.editor.php:968 -#: ../../godmode/agentes/planned_downtime.editor.php:971 -#: ../../godmode/agentes/planned_downtime.editor.php:1021 -#: ../../godmode/agentes/planned_downtime.list.php:625 -#: ../../godmode/agentes/planned_downtime.list.php:774 -#: ../../godmode/agentes/fields_manager.php:155 -#: ../../godmode/agentes/agent_template.php:259 -#: ../../godmode/alerts/alert_list.list.php:912 -#: ../../godmode/alerts/alert_actions.php:331 -#: ../../godmode/alerts/alert_actions.php:449 -#: ../../godmode/alerts/alert_templates.php:445 -#: ../../godmode/users/user_list.php:825 ../../godmode/users/profile_list.php:443 -#: ../../godmode/groups/modu_group_list.php:254 -#: ../../godmode/groups/group_list.php:937 -#: ../../godmode/groups/group_list.php:938 +#: ../../godmode/events/event_responses.list.php:71 +#: ../../godmode/servers/servers.build_table.php:259 +#: ../../include/functions_cron.php:895 ../../include/functions_cron.php:923 +#: ../../include/class/ConfigPEN.class.php:264 +#: ../../include/class/NetworkMap.class.php:2798 +#: ../../include/class/ManageNetScanScripts.class.php:405 +#: ../../include/class/CredentialStore.class.php:1102 +#: ../../include/class/CredentialStore.class.php:1290 +#: ../../include/class/ModuleTemplates.class.php:933 +#: ../../include/class/ModuleTemplates.class.php:1211 +#: ../../include/class/CalendarManager.class.php:737 +#: ../../include/functions_container.php:191 +#: ../../include/functions_container.php:325 +#: ../../operation/visual_console/view.php:733 +#: ../../operation/agentes/pandora_networkmap.php:714 +#: ../../operation/agentes/pandora_networkmap.php:801 +#: ../../operation/messages/message_list.php:201 +#: ../../operation/messages/message_list.php:272 +#: ../../operation/messages/message_list.php:275 +#: ../../operation/messages/message_list.php:293 +#: ../../operation/snmpconsole/snmp_view.php:1038 +#: ../../operation/snmpconsole/snmp_view.php:1051 +#: ../../operation/snmpconsole/snmp_view.php:1220 +#: ../../operation/snmpconsole/snmp_view.php:1269 +#: ../../operation/gis_maps/gis_map.php:190 +#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:120 +#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:198 +#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:251 +#: ../../operation/incidents/list_integriaims_incidents.php:555 msgid "Delete" msgstr "Supprimer" @@ -2482,1735 +2332,2355 @@ msgstr "PrivĆ© pour (%s)" msgid "Create a new dashboard" msgstr "CrĆ©er un nouveau tableau de bord" -#: ../../views/dashboard/list.php:233 +#: ../../views/dashboard/list.php:232 msgid "New dashboard" msgstr "Nouveau panneau de configuration" -#: ../../general/maintenance.php:36 -msgid "Maintenance tasks in progress" -msgstr "Taches de maintenance en progrĆØs" +#: ../../views/dashboard/widget.php:35 ../../views/dashboard/listWidgets.php:84 +msgid "Add widget" +msgstr "Ajouter un widget" -#: ../../general/maintenance.php:53 ../../general/node_deactivated.php:64 -msgid "You will be automatically redirected when all tasks finish" -msgstr "Vous serez redirigĆ© automatiquement quand tous les taches sont finis" +#: ../../views/dashboard/widget.php:45 +msgid "Please select widget" +msgstr "SĆ©lectionnez un widget" -#: ../../general/logon_failed.php:18 ../../general/register.php:154 -#: ../../operation/users/user_edit.php:1061 -#: ../../operation/users/user_edit.php:1127 -#: ../../operation/users/user_edit.php:1198 -#: ../../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 -#: ../../enterprise/include/functions_login.php:485 -#: ../../godmode/users/configure_user.php:1822 -#: ../../godmode/users/configure_user.php:1892 -#: ../../godmode/users/configure_user.php:1964 -msgid "Authentication error" -msgstr "Erreur d'authentification" +#: ../../views/dashboard/jsLayout.php:42 ../../extensions/agents_modules.php:76 +#: ../../operation/snmpconsole/snmp_view.php:1298 +#: ../../operation/events/events.php:2922 +msgid "Until next" +msgstr "Jusqu'au suivant" -#: ../../general/logon_failed.php:30 -msgid "" -"Either, your password or your login are incorrect. Please check your CAPS LOCK " -"key, username and password are case SeNSiTiVe.

    All actions, included " -"failed login attempts are logged in Pandora FMS System logs, and these can be " -"reviewed by each user, please report to admin any incident or malfunction." +#: ../../views/dashboard/formDashboard.php:91 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:499 +#: ../../godmode/reporting/reporting_builder.php:936 +msgid "Private" +msgstr "PrivĆ©" + +#: ../../views/dashboard/formDashboard.php:122 +#: ../../enterprise/godmode/massive/massive_create_services.php:809 +#: ../../enterprise/godmode/services/services.service.php:736 +#: ../../enterprise/godmode/reporting/visual_console_template.php:272 +msgid "Favourite" +msgstr "Favori" + +#: ../../views/dashboard/cell.php:42 +msgid "New widget" +msgstr "Nouveau widget" + +#: ../../views/dashboard/cell.php:56 +msgid "Configure widget" +msgstr "Configurer le widget" + +#: ../../views/dashboard/cell.php:68 +msgid "Delete widget" +msgstr "Supprimer le widget" + +#: ../../views/dashboard/slides.php:41 ../../operation/snmpconsole/snmp_view.php:741 +msgid "Exit fullscreen" +msgstr "Quitter le mode plein Ć©cran" + +#: ../../views/dashboard/slides.php:181 +msgid "Change every" +msgstr "Changer chaque" + +#: ../../views/dashboard/slides.php:203 +#: ../../enterprise/meta/monitoring/wizard/wizard.agent.php:146 +#: ../../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:3875 +msgid "Previous" +msgstr "PrĆ©cĆ©dent" + +#: ../../views/dashboard/slides.php:218 +#: ../../enterprise/operation/agentes/transactional_map.php:402 +#: ../../operation/menu.php:431 +msgid "Stop" +msgstr "ArrĆŖter" + +#: ../../views/dashboard/slides.php:229 +msgid "Pause" +msgstr "Pause" + +#: ../../views/dashboard/slides.php:240 +#: ../../enterprise/meta/monitoring/wizard/wizard.agent.php:149 +#: ../../enterprise/meta/monitoring/wizard/wizard.module.local.php:214 +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:730 +#: ../../enterprise/meta/monitoring/wizard/wizard.module.network.php:262 +#: ../../enterprise/meta/monitoring/wizard/wizard.module.web.php:215 +#: ../../enterprise/meta/monitoring/wizard/wizard.php:132 +#: ../../enterprise/godmode/wizards/Cloud.class.php:579 +#: ../../enterprise/include/class/VMware.app.php:534 +#: ../../enterprise/include/class/Omnishell.class.php:643 +#: ../../enterprise/include/class/DB2.app.php:567 +#: ../../enterprise/include/class/SAP.app.php:442 +#: ../../enterprise/include/class/Aws.cloud.php:1423 +#: ../../enterprise/include/class/MySQL.app.php:589 +#: ../../enterprise/include/class/Oracle.app.php:574 +#: ../../enterprise/include/class/MicrosoftSQLServer.app.php:568 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:832 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1094 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1966 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2106 +#: ../../enterprise/include/lib/ClusterViewer/ClusterWizard.php:1200 +#: ../../godmode/alerts/configure_alert_template.php:1181 +#: ../../godmode/alerts/configure_alert_template.php:1188 +#: ../../godmode/wizards/HostDevices.class.php:769 +#: ../../include/class/CustomNetScan.class.php:550 +msgid "Next" +msgstr "Suivant" + +#: ../../views/dashboard/slides.php:252 +msgid "Mode Cell" +msgstr "Mode Cell" + +#: ../../views/dashboard/slides.php:258 +msgid "Mode Layout" +msgstr "Mode Layout" + +#: ../../enterprise/views/ncm/snippets/list.php:32 +#: ../../enterprise/views/ncm/snippets/edit.php:42 +#: ../../enterprise/views/ncm/templates/list.php:32 +#: ../../enterprise/views/ncm/templates/edit.php:42 +#: ../../enterprise/views/ncm/devices/list.php:32 +#: ../../enterprise/views/ncm/devices/list.php:67 +#: ../../enterprise/views/ncm/firmwares/list.php:32 +#: ../../enterprise/views/ncm/firmwares/edit.php:41 +#: ../../enterprise/views/ncm/models/list.php:32 +#: ../../enterprise/views/ncm/models/edit.php:37 +#: ../../enterprise/views/ncm/vendors/list.php:32 +#: ../../enterprise/views/ncm/vendors/edit.php:35 ../../include/functions.php:1238 +#: ../../include/functions_events.php:2893 +msgid "Network configuration manager" +msgstr "Gestionnaire de configuration rĆ©seau" + +#: ../../enterprise/views/ncm/snippets/list.php:32 +#: ../../enterprise/views/ncm/snippets/edit.php:42 +msgid "Snippets" +msgstr "Snippets" + +#: ../../enterprise/views/ncm/snippets/list.php:94 +#: ../../enterprise/views/ncm/templates/list.php:100 +#: ../../enterprise/views/ncm/devices/list.php:147 +#: ../../enterprise/views/ncm/firmwares/list.php:100 +#: ../../enterprise/views/cluster/list.php:87 +#: ../../enterprise/godmode/policies/policy_agents.php:436 +#: ../../enterprise/godmode/policies/policy_agents.php:468 +#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:335 +#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:358 +#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:209 +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:98 +#: ../../enterprise/godmode/reporting/graph_template_wizard.php:207 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:116 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:211 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:723 +#: ../../enterprise/include/class/Omnishell.class.php:812 +#: ../../enterprise/include/class/Omnishell.class.php:891 +#: ../../include/ajax/events.php:768 ../../include/functions_html.php:1244 +#: ../../include/functions_html.php:1397 +#: ../../include/functions_snmp_browser.php:1486 +msgid "Filter group" +msgstr "Filtrer le groupe" + +#: ../../enterprise/views/ncm/snippets/edit.php:73 +#: ../../enterprise/views/ncm/templates/edit.php:73 +#: ../../enterprise/views/ncm/firmwares/edit.php:72 +msgid "Script not defined" +msgstr "Script pas dĆ©fini" + +#: ../../enterprise/views/ncm/snippets/edit.php:91 +#: ../../enterprise/views/ncm/templates/edit.php:160 +#: ../../enterprise/views/ncm/templates/edit.php:188 +#: ../../enterprise/views/ncm/templates/edit.php:216 +#: ../../enterprise/views/ncm/templates/edit.php:244 +#: ../../enterprise/views/ncm/templates/edit.php:271 +#: ../../enterprise/views/ncm/templates/edit.php:298 +msgid "Script details" +msgstr "DĆ©tails du script" + +#: ../../enterprise/views/ncm/snippets/edit.php:138 +#: ../../enterprise/views/ncm/agent/manage.php:135 +#: ../../enterprise/views/ncm/agent/manage.php:148 +#: ../../enterprise/views/ncm/agent/manage.php:181 +#: ../../enterprise/views/ncm/agent/manage.php:274 +#: ../../enterprise/views/ncm/agent/manage.php:309 +#: ../../enterprise/views/ncm/agent/details.php:256 +#: ../../enterprise/views/ncm/templates/edit.php:347 +#: ../../enterprise/godmode/massive/massive_delete_service_elements.php:188 +#: ../../enterprise/godmode/massive/massive_add_service_elements.php:329 +#: ../../enterprise/godmode/massive/massive_edit_service_elements.php:230 +#: ../../include/class/ExternalTools.class.php:537 +msgid "Please select" +msgstr "SĆ©lectionnez" + +#: ../../enterprise/views/ncm/agent/manage.php:57 +msgid "For instance Cisco" +msgstr "Par exemple Cisco" + +#: ../../enterprise/views/ncm/agent/manage.php:59 +msgid "Device manufacturer" +msgstr "Fabricant de l'appareil" + +#: ../../enterprise/views/ncm/agent/manage.php:87 +msgid "For instance Catalyst 9400" +msgstr "Par exemple Catalyst 9400" + +#: ../../enterprise/views/ncm/agent/manage.php:89 +msgid "Device model" +msgstr "ModĆØle d'appareil" + +#: ../../enterprise/views/ncm/agent/manage.php:102 +#: ../../godmode/agentes/module_manager_editor_network.php:482 +msgid "Connection method" +msgstr "MĆ©thode de connexion" + +#: ../../enterprise/views/ncm/agent/manage.php:107 +msgid "connect using SSH" +msgstr "Connecter utilisant SSH" + +#: ../../enterprise/views/ncm/agent/manage.php:108 +msgid "connect using telnet" +msgstr "Connecter utilisant telnet" + +#: ../../enterprise/views/ncm/agent/manage.php:118 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:1063 +#: ../../enterprise/godmode/setup/setup_history.php:178 +#: ../../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: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:1533 +#: ../../include/class/AgentWizard.class.php:638 +#: ../../include/functions_snmp_browser.php:714 +msgid "Port" +msgstr "Port" + +#: ../../enterprise/views/ncm/agent/manage.php:131 +msgid "Credentials to access device" +msgstr "Identifiants pour accĆ©der Ć  l'appareil" + +#: ../../enterprise/views/ncm/agent/manage.php:144 +msgid "Credentials to administrate device" +msgstr "Identifiants pour gĆ©rer l'appareil" + +#: ../../enterprise/views/ncm/agent/manage.php:177 +msgid "NCM template to be used" +msgstr "ModĆØle NCM Ć  utiliser" + +#: ../../enterprise/views/ncm/agent/manage.php:190 +msgid "Backup schedule (if defined)" +msgstr "Planification de la sauvegarde (si dĆ©finie)" + +#: ../../enterprise/views/ncm/agent/manage.php:195 +msgid "No schedule" +msgstr "Aucune programmation" + +#: ../../enterprise/views/ncm/agent/manage.php:197 +msgid "Once a day" +msgstr "Une fois par jour" + +#: ../../enterprise/views/ncm/agent/manage.php:198 +msgid "Once a week" +msgstr "Une fois par semaine" + +#: ../../enterprise/views/ncm/agent/manage.php:199 +msgid "Once a month" +msgstr "Une fois par mois" + +#: ../../enterprise/views/ncm/agent/manage.php:218 +msgid "Launch event if configuration changes" +msgstr "ƉvĆ©nement de lancement si la configuration change" + +#: ../../enterprise/views/ncm/agent/manage.php:243 +msgid "NCM state" +msgstr "Ɖtat NCM" + +#: ../../enterprise/views/ncm/agent/manage.php:259 +#: ../../enterprise/godmode/reporting/reporting_builder.template_editor.php:109 +#: ../../enterprise/godmode/reporting/mysql_builder.php:240 +#: ../../enterprise/include/ajax/transactional.ajax.php:83 +#: ../../extensions/insert_data.php:208 ../../godmode/setup/gis_step_2.php:521 +#: ../../godmode/setup/snmp_wizard.php:100 +#: ../../godmode/reporting/visual_console_builder.data.php:229 +#: ../../godmode/reporting/reporting_builder.main.php:45 +#: ../../operation/agentes/graphs.php:342 +msgid "Save" +msgstr "Sauvegarder" + +#: ../../enterprise/views/ncm/agent/modalOnDemandScript.php:63 +msgid "Select firmware file to update to" msgstr "" -"Le mot de passe et/ou l'identifiant sont erronĆ©s. Veuillez vĆ©rifier que le " -"verrouillage des majuscules est dĆ©sactivĆ© ; l'identifiant et le mot de passe " -"sont sensibles Ć  la casse.

    Toutes les actions, y compris les essais de " -"connexion Ć©chouĆ©s, sont enregistrĆ©s dans les journaux du systĆØme Pandora FMS " -"et ils peuvent ĆŖtre consultĆ©s par chaque utilisateur. Veuillez communiquer " -"tout incident ou dĆ©faillance Ć  l'administrateur." +"SĆ©lectionnez le fichier du micrologiciel vers lequel effectuer la mise Ć  jour" -#: ../../general/register.php:157 ../../operation/users/user_edit.php:1064 -#: ../../operation/users/user_edit.php:1130 -#: ../../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/class/Diagnostics.class.php:1827 -#: ../../include/functions_events.php:2929 -#: ../../include/functions_events.php:3284 ../../include/functions_ui.php:290 -#: ../../include/functions.php:1236 -#: ../../enterprise/include/class/CommandCenter.class.php:473 -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:4052 -#: ../../enterprise/include/lib/Metaconsole/Node.php:593 -#: ../../enterprise/include/functions_login.php:104 -#: ../../enterprise/include/functions_login.php:488 -#: ../../enterprise/meta/include/functions_ui_meta.php:970 -#: ../../enterprise/godmode/services/services.elements.php:841 -#: ../../enterprise/godmode/services/services.elements.php:852 -#: ../../mobile/operation/visualmap.php:182 -#: ../../godmode/massive/massive_edit_plugins.php:856 -#: ../../godmode/massive/massive_edit_plugins.php:857 -#: ../../godmode/users/configure_user.php:1825 -#: ../../godmode/users/configure_user.php:1895 -msgid "Error" -msgstr "Erreur" +#: ../../enterprise/views/ncm/agent/modalOnDemandScript.php:75 +msgid "Transfer from url" +msgstr "Transfert depuis lā€™url" -#: ../../general/register.php:161 ../../operation/users/user_edit.php:1068 -#: ../../operation/users/user_edit.php:1134 -#: ../../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 -#: ../../enterprise/include/functions_login.php:492 -#: ../../godmode/users/configure_user.php:1829 -#: ../../godmode/users/configure_user.php:1899 -msgid "There was an error loading the data" -msgstr "Erreur de chargement des donnĆ©es" +#: ../../enterprise/views/ncm/agent/modalOnDemandScript.php:86 +msgid "Target file name" +msgstr "Nom du fichier cible" -#: ../../general/register.php:170 ../../operation/users/user_edit.php:1142 -#: ../../operation/users/user_edit.php:1218 -#: ../../enterprise/include/functions_login.php:501 -#: ../../godmode/users/configure_user.php:1907 -#: ../../godmode/users/configure_user.php:1985 -msgid "Double autentication activation" -msgstr "Double authentification activĆ©e" +#: ../../enterprise/views/ncm/agent/modalOnDemandScript.php:105 +msgid "Customize execution" +msgstr "Personnaliser lā€™exĆ©cution" -#: ../../general/noaccess.php:130 ../../general/noaccess2.php:16 -#: ../../general/noaccess2.php:18 ../../general/noaccesssaml.php:130 -#: ../../enterprise/meta/general/metaconsole_no_activated.php:12 -#: ../../enterprise/meta/general/noaccess.php:130 -#: ../../enterprise/meta/general/noaccesssaml.php:130 -#: ../../mobile/operation/agent.php:117 ../../mobile/operation/modules.php:218 -#: ../../mobile/operation/visualmaps.php:159 -#: ../../mobile/operation/visualmap.php:185 -#: ../../mobile/operation/tactical.php:79 ../../mobile/operation/alerts.php:176 -#: ../../mobile/operation/events.php:468 -#: ../../mobile/operation/module_graph.php:255 -#: ../../mobile/operation/agents.php:186 ../../mobile/operation/groups.php:59 -#: ../../mobile/index.php:258 -msgid "You don't have access to this page" -msgstr "Vous n'avez pas accĆØs Ć  cette page" +#: ../../enterprise/views/ncm/agent/details.php:89 +msgid "Script type" +msgstr "Type de script" -#: ../../general/noaccess.php:135 ../../enterprise/meta/general/noaccess.php:135 -msgid "" -"Access to this page is restricted to authorized users only, please contact " -"system administrator if you need assistance." -msgstr "" -"L'accĆØs Ć  cette page est limitĆ© aux utilisateurs autorisĆ©s seulement, veuillez " -"contacter l'administrateur systĆØme si vous avez besoin de l'aide." +#: ../../enterprise/views/ncm/agent/details.php:90 +#: ../../enterprise/include/class/CommandCenter.class.php:468 +#: ../../extensions/api_checker.php:219 ../../extensions/api_checker.php:226 +#: ../../include/functions_reporting_html.php:4091 +#: ../../include/functions_reporting_html.php:4238 +#: ../../include/functions_reporting_html.php:4579 +#: ../../include/functions_reporting_html.php:4590 +#: ../../include/functions_db.php:1918 +msgid "Result" +msgstr "RĆ©sultat" -#: ../../general/noaccess.php:137 ../../enterprise/meta/general/noaccess.php:137 +#: ../../enterprise/views/ncm/agent/details.php:91 +msgid "Execution last timestamp" +msgstr "Dernier horodatage dā€™exĆ©cution" + +#: ../../enterprise/views/ncm/agent/details.php:107 +msgid "Retrieve running configuration" +msgstr "RĆ©cupĆ©rer la configuration en cours dā€™exĆ©cution" + +#: ../../enterprise/views/ncm/agent/details.php:120 +#: ../../enterprise/views/ncm/agent/details.php:383 +msgid "Restore from backup" +msgstr "Restaurer Ć  partir de sauvegarde" + +#: ../../enterprise/views/ncm/agent/details.php:133 +#: ../../enterprise/views/ncm/agent/details.php:325 +#: ../../enterprise/include/lib/NetworkManager.php:85 +msgid "Retrieve firmware version" +msgstr "RĆ©cupĆ©rer version firmware" + +#: ../../enterprise/views/ncm/agent/details.php:172 +msgid "Running without a backup" +msgstr "ExĆ©cution sans sauvegarde" + +#: ../../enterprise/views/ncm/agent/details.php:181 +msgid "Latest configuration retrieved is different from backed one" +msgstr "La derniĆØre configuration rĆ©cupĆ©rĆ©e est diffĆ©rente de celle sauvegardĆ©e" + +#: ../../enterprise/views/ncm/agent/details.php:184 +msgid "Backup up to date with latest configuration" +msgstr "Sauvegarde Ć  jour avec la derniĆØre configuration" + +#: ../../enterprise/views/ncm/agent/details.php:208 +msgid "Configuration backup status" +msgstr "Ɖtat de sauvegarde de la configuration" + +#: ../../enterprise/views/ncm/agent/details.php:238 +msgid "Last on demand execution" +msgstr "DerniĆØre exĆ©cution Ć  la demande" + +#: ../../enterprise/views/ncm/agent/details.php:246 #, php-format -msgid "" -"Please know that all attempts to access this page are recorded in security " -"logs of %s System Database" -msgstr "" -"Tous les essais d'accĆØs Ć  cette page sont enregistrĆ©s dans les journaux de " -"sĆ©curitĆ© de la base de donnĆ©es du systĆØme %s" +msgid "Customize %s" +msgstr "Personnaliser %s" -#: ../../general/login_help_dialog.php:39 -#: ../../include/lib/Dashboard/Widgets/example.php:245 +#: ../../enterprise/views/ncm/agent/details.php:250 +msgid "Execute snippet" +msgstr "ExĆ©cuter skipper" + +#: ../../enterprise/views/ncm/agent/details.php:265 +#: ../../enterprise/meta/monitoring/wizard/wizard.agent.php:66 +#: ../../enterprise/meta/monitoring/wizard/wizard.module.local.php:110 +#: ../../enterprise/meta/monitoring/wizard/wizard.module.network.php:122 +#: ../../enterprise/meta/monitoring/wizard/wizard.module.web.php:103 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1539 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1632 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1757 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1832 +msgid "Preview" +msgstr "AperƧu" + +#: ../../enterprise/views/ncm/agent/details.php:312 +#: ../../enterprise/meta/monitoring/custom_fields_csv.php:131 +#: ../../enterprise/meta/monitoring/custom_fields_view.php:182 +#: ../../enterprise/meta/monitoring/group_view.php:236 +#: ../../enterprise/meta/monitoring/group_view.php:242 +#: ../../enterprise/meta/monitoring/tactical.php:225 +#: ../../enterprise/godmode/massive/massive_add_modules_policy.php:122 +#: ../../enterprise/godmode/services/services.elements.php:377 +#: ../../enterprise/include/functions_cron.php:585 +#: ../../enterprise/include/functions_reporting_pdf.php:637 +#: ../../enterprise/include/functions_HA_cluster.php:70 +#: ../../enterprise/include/class/DatabaseHA.class.php:223 +#: ../../enterprise/include/functions_reporting.php:1890 +#: ../../enterprise/include/functions_reporting.php:2940 +#: ../../enterprise/include/functions_reporting.php:3928 +#: ../../enterprise/include/functions_reporting.php:4848 +#: ../../enterprise/include/functions_reporting.php:6159 +#: ../../enterprise/include/lib/NetworkManager.php:103 +#: ../../enterprise/include/lib/ClusterViewer/ClusterManager.php:582 +#: ../../enterprise/operation/agentes/transactional_map.php:339 +#: ../../enterprise/operation/agentes/transactional_map.php:385 +#: ../../enterprise/operation/agentes/tag_view.php:134 +#: ../../enterprise/operation/services/services.service.php:180 +#: ../../enterprise/operation/services/services.service_map.php:152 +#: ../../enterprise/operation/services/services.treeview_services.php:285 +#: ../../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 +#: ../../godmode/massive/massive_copy_modules.php:118 +#: ../../godmode/massive/massive_copy_modules.php:278 +#: ../../godmode/massive/massive_delete_modules.php:421 +#: ../../godmode/massive/massive_delete_modules.php:442 +#: ../../godmode/massive/massive_delete_agents.php:212 +#: ../../godmode/massive/massive_edit_agents.php:534 +#: ../../godmode/massive/massive_edit_modules.php:388 +#: ../../godmode/massive/massive_edit_modules.php:474 +#: ../../godmode/alerts/alert_list.builder.php:290 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3737 +#: ../../mobile/operation/agents.php:60 ../../mobile/operation/modules.php:72 +#: ../../include/graphs/functions_flot.php:305 +#: ../../include/functions_reporting_html.php:2347 +#: ../../include/functions_reporting_html.php:2360 +#: ../../include/functions_reporting_html.php:3340 +#: ../../include/functions_reporting_html.php:3748 ../../include/functions.php:1225 +#: ../../include/functions.php:4108 ../../include/ajax/module.php:1071 +#: ../../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_alerts.php:702 +#: ../../include/rest-api/models/VisualConsole/Items/Group.php:437 +#: ../../include/functions_reports.php:557 ../../include/functions_maps.php:54 +#: ../../include/functions_netflow.php:1865 +#: ../../include/functions_reporting.php:6285 +#: ../../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:670 +#: ../../include/functions_events.php:2841 ../../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:1728 +#: ../../operation/agentes/tactical.php:181 ../../operation/events/events.php:725 +msgid "Unknown" +msgstr "Inconnu" + +#: ../../enterprise/views/ncm/agent/details.php:314 #, php-format -msgid "Welcome to %s" -msgstr "Bienvenue Ć  %s" +msgid "Current firmware version: %s" +msgstr "Version du firmware actuelle : %s" -#: ../../general/login_help_dialog.php:43 +#: ../../enterprise/views/ncm/agent/details.php:339 #, php-format -msgid "" -"If this is your first time using %s, we suggest a few links that'll help you " -"learn more about the software. Monitoring can be overwhelming, but take your " -"time to learn how to harness the power of %s!" -msgstr "" -"Si c'est votre premiĆØre fois utilisant %s, nous vous suggestions quelques " -"liens qui vous aideront a apprendre plus sur le logiciel. La supervision peut " -"ĆŖtre Ć©crasant, mais prenez votre temps pour apprendre comment exploiter la " -"puissance de %s !" +msgid "Configuration backup present, %s" +msgstr "Sauvegarde de configuration prĆ©sent, %s" -#: ../../general/login_help_dialog.php:57 ../../general/login_help_dialog.php:62 -msgid "Online help" -msgstr "Aide en ligne" +#: ../../enterprise/views/ncm/agent/details.php:346 +msgid "There is no configuration backup" +msgstr "Il n'y a pas de configuration de sauvegarde" -#: ../../general/login_help_dialog.php:70 ../../general/login_help_dialog.php:75 -msgid "Enterprise version" -msgstr "Version Enterprise" +#: ../../enterprise/views/ncm/agent/details.php:359 +msgid "Backup latest retrieved configuration" +msgstr "Sauvegarder la derniĆØre configuration rĆ©cupĆ©rĆ©e" -#: ../../general/login_help_dialog.php:83 ../../general/login_help_dialog.php:88 -#: ../../general/login_page.php:148 ../../general/login_page.php:151 -#: ../../enterprise/include/reset_pass.php:53 -#: ../../enterprise/include/process_reset_pass.php:58 -#: ../../enterprise/meta/general/login_page.php:64 -#: ../../enterprise/meta/include/reset_pass.php:47 -#: ../../enterprise/meta/include/process_reset_pass.php:47 -msgid "Support" -msgstr "Assistance" +#: ../../enterprise/views/ncm/agent/details.php:372 +#: ../../enterprise/include/class/ManageBackups.class.php:302 +#: ../../extensions/files_repo/files_repo_list.php:123 +msgid "Download" +msgstr "TĆ©lĆ©charger" -#: ../../general/login_help_dialog.php:88 -msgid "Forums" -msgstr "Forums" - -#: ../../general/login_help_dialog.php:96 ../../general/login_help_dialog.php:101 -#: ../../general/mysqlerr.php:142 -msgid "Documentation" -msgstr "Documentation" - -#: ../../general/login_help_dialog.php:110 -msgid "Click here to don't show again this message" -msgstr "Cliquez ici pour ne plus afficher ce message" - -#: ../../general/ui/agents_list.php:100 ../../general/ui/agents_list.php:113 -#: ../../operation/agentes/status_monitor.php:547 -#: ../../operation/agentes/alerts_status.functions.php:194 -#: ../../operation/agentes/alerts_status.functions.php:203 -#: ../../operation/agentes/estado_agente.php:280 -#: ../../operation/agentes/estado_agente.php:291 -#: ../../operation/search_results.php:192 ../../include/ajax/heatmap.ajax.php:70 -#: ../../include/class/AuditLog.class.php:180 -#: ../../include/class/AgentWizard.class.php:2617 -#: ../../include/class/CalendarManager.class.php:1020 -#: ../../include/functions_snmp.php:358 -#: ../../include/functions_snmp_browser.php:925 -#: ../../include/functions_snmp_browser.php:1501 -#: ../../enterprise/tools/ipam/ipam_vlan_config.php:432 -#: ../../enterprise/tools/ipam/ipam_vlan_config.php:439 -#: ../../enterprise/tools/ipam/ipam_network_location_config.php:164 -#: ../../enterprise/tools/ipam/ipam_network_location_config.php:173 -#: ../../enterprise/tools/ipam/ipam_supernet_config.php:760 -#: ../../enterprise/tools/ipam/ipam_supernet_config.php:797 -#: ../../enterprise/tools/ipam/ipam_list.php:90 -#: ../../enterprise/tools/ipam/ipam_list.php:164 -#: ../../enterprise/operation/log/log_viewer.php:513 -#: ../../enterprise/operation/log/log_viewer.php:796 -#: ../../enterprise/operation/services/services.treeview_services.php:128 -#: ../../enterprise/operation/services/services.list.php:225 -#: ../../enterprise/operation/services/services.list.php:318 -#: ../../enterprise/operation/services/services.table_services.php:147 -#: ../../enterprise/operation/services/services.table_services.php:238 -#: ../../enterprise/operation/agentes/tag_view.php:219 -#: ../../enterprise/operation/agentes/agent_inventory.php:138 -#: ../../enterprise/operation/agentes/agent_inventory.php:140 -#: ../../enterprise/operation/inventory/inventory.php:374 -#: ../../enterprise/operation/inventory/inventory.php:427 -#: ../../enterprise/meta/general/header.php:44 -#: ../../enterprise/meta/general/header.php:46 -#: ../../enterprise/meta/general/main_header.php:689 -#: ../../enterprise/meta/general/main_header.php:691 -#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:265 -#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:362 -#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:419 -#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:687 -#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:758 -#: ../../enterprise/meta/advanced/metasetup.relations.php:451 -#: ../../enterprise/meta/advanced/metasetup.translate_string.php:186 -#: ../../enterprise/meta/advanced/collections.php:217 -#: ../../enterprise/meta/advanced/collections.php:230 -#: ../../enterprise/meta/agentsearch.php:110 -#: ../../enterprise/extensions/translate_string.php:323 -#: ../../enterprise/godmode/modules/local_components.php:573 -#: ../../enterprise/godmode/modules/local_components.php:598 -#: ../../enterprise/godmode/agentes/collection_manager.php:48 -#: ../../enterprise/godmode/agentes/collections.php:365 -#: ../../enterprise/godmode/alerts/alert_inventory_list.php:151 -#: ../../enterprise/godmode/alerts/alert_inventory_list.php:162 -#: ../../enterprise/godmode/policies/policy_agents.php:822 -#: ../../enterprise/godmode/policies/policy_agents.php:835 -#: ../../enterprise/godmode/policies/policy_collections.php:254 -#: ../../extensions/module_groups.php:283 ../../mobile/operation/agent.php:320 -#: ../../godmode/modules/manage_network_components.php:678 -#: ../../godmode/reporting/map_builder.php:350 -#: ../../godmode/reporting/map_builder.php:372 -#: ../../godmode/reporting/graphs.php:241 -#: ../../godmode/reporting/visual_console_favorite.php:158 -#: ../../godmode/reporting/visual_console_favorite.php:188 -#: ../../godmode/reporting/reporting_builder.item_editor.php:1142 -#: ../../godmode/reporting/reporting_builder.php:795 -#: ../../godmode/agentes/module_manager.php:65 -#: ../../godmode/agentes/planned_downtime.list.php:284 -#: ../../godmode/agentes/planned_downtime.list.php:368 -#: ../../godmode/agentes/modificar_agente.php:363 -#: ../../godmode/agentes/modificar_agente.php:372 -#: ../../godmode/alerts/alert_actions.php:244 -#: ../../godmode/alerts/alert_actions.php:302 -#: ../../godmode/alerts/alert_templates.php:314 -#: ../../godmode/alerts/alert_templates.php:325 -#: ../../godmode/users/user_list.php:402 ../../godmode/users/user_list.php:412 -#: ../../godmode/module_library/module_library_view.php:102 -#: ../../godmode/module_library/module_library_view.php:112 -#: ../../godmode/groups/group_list.php:785 -#: ../../godmode/groups/group_list.php:795 -msgid "Search" -msgstr "Rechercher" - -#: ../../general/ui/agents_list.php:146 -#: ../../operation/reporting/graph_viewer.php:316 -#: ../../operation/reporting/reporting_viewer.php:347 -#: ../../include/functions_events.php:4380 -#: ../../enterprise/operation/log/log_viewer.php:845 -#: ../../enterprise/operation/log/log_viewer.php:867 -#: ../../enterprise/include/class/CommandCenter.class.php:463 -#: ../../enterprise/meta/monitoring/wizard/wizard.php:149 -#: ../../enterprise/godmode/massive/massive_add_modules_policy.php:195 -#: ../../enterprise/godmode/policies/policy_modules.php:1636 -#: ../../godmode/massive/massive_copy_modules.php:235 -#: ../../godmode/massive/massive_operations.php:361 -#: ../../godmode/massive/massive_add_profiles.php:292 -msgid "Loading" -msgstr "Chargement en cours" - -#: ../../general/ui/agents_list.php:152 -msgid "No agents found" -msgstr "Aucun agent trouvĆ©" - -#: ../../general/alert_enterprise.php:107 +#: ../../enterprise/views/ncm/agent/details.php:401 #, php-format -msgid "" -"This is the online help for %s console. This help is -in best cases- just a " -"brief contextual help, not intented to teach you how to use %s. Official " -"documentation of %s is about 900 pages, and you probably don't need to read it " -"entirely, but sure, you should download it and take a look.

    \n" -" Download the official documentation" +msgid "Latest operation \"%s\" was executed %s ago with result: %s %s" msgstr "" -"C'est l'aide en ligne pour la console %s. Cette aide -dans le meilleur cas- " -"c'este une bref aide contextuelle, qui ne prĆ©tend pas de vous apprendre " -"comment utiliser %s. La documentation officielle de %s est d'autour 900 pages, " -"et il se peut que vous n'avez pas besoin de le lire complĆØtement, mais vous " -"devriez le tĆ©lĆ©charger et le jeter un coup d'oeil.

    \n" -" TĆ©lĆ©charger la documentation officielle" +"La derniĆØre opĆ©ration Ā«Ā %sĀ Ā» a Ć©tĆ© exĆ©cutĆ©e il y a %s avec le rĆ©sultat: %s %s" -#: ../../general/alert_enterprise.php:120 +#: ../../enterprise/views/ncm/agent/details.php:414 #, php-format -msgid "" -"Access to this page is restricted to authorized users only, please contact " -"system administrator if you need assistance.

    \n" -" Please know that all attempts to access this page are recorded in security " -"logs of %s System Database." -msgstr "" -"L'accĆØs Ć  cette page est limitĆ©e aux utilisateurs autorisĆ©s seulement, " -"veuillez contacter l'administrateur systĆØme si vous avez besoin d'assistance.\n" -" Tous les essais d'accĆØs Ć  cette page sont enregistrĆ©s dans les journaux de " -"sĆ©curitĆ© de la Base de donnĆ©es du systĆØme %s." +msgid "Script executions queued: %d" +msgstr "ExĆ©cutions de script en file dā€™attente : %d" -#: ../../general/alert_enterprise.php:130 +#: ../../enterprise/views/ncm/agent/details.php:424 #, php-format +msgid "Configuration backup schedule: %s" +msgstr "Planification de la sauvegarde de la configuration : %s" + +#: ../../enterprise/views/ncm/agent/details.php:441 +msgid "Device details" +msgstr "DĆ©tails de lā€™appareil" + +#: ../../enterprise/views/ncm/agent/details.php:483 +msgid "Configuration timestamp" +msgstr "Horodatage de configuration" + +#: ../../enterprise/views/ncm/agent/details.php:484 +msgid "Diff" +msgstr "DiffĆ©rences" + +#: ../../enterprise/views/ncm/agent/details.php:485 +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:468 +#: ../../enterprise/meta/advanced/collections.php:391 +#: ../../enterprise/meta/monitoring/wizard/wizard.php:140 +#: ../../enterprise/meta/include/functions_autoprovision.php:477 +#: ../../enterprise/meta/include/functions_alerts_meta.php:133 +#: ../../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:224 +#: ../../enterprise/godmode/agentes/collections.php:384 +#: ../../enterprise/godmode/policies/policy_alerts.php:353 +#: ../../enterprise/godmode/policies/policy_external_alerts.php:350 +#: ../../enterprise/godmode/policies/policy_external_alerts.php:384 +#: ../../enterprise/godmode/policies/policy_external_alerts.php:682 +#: ../../enterprise/godmode/policies/policy_inventory_modules.php:305 +#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:387 +#: ../../enterprise/godmode/alerts/alert_inventory_list.php:223 +#: ../../enterprise/godmode/setup/setup_skins.php:128 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2120 +#: ../../enterprise/include/functions_reporting_csv.php:2465 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2337 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2505 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3476 +#: ../../enterprise/include/class/ManageBackups.class.php:167 +#: ../../enterprise/operation/agentes/transactional_map.php:213 +#: ../../enterprise/operation/agentes/manage_transmap_creation.php:190 +#: ../../enterprise/operation/services/services.list.php:513 +#: ../../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/agentes/modificar_agente.php:653 +#: ../../godmode/agentes/planned_downtime.editor.php:927 +#: ../../godmode/agentes/fields_manager.php:121 ../../godmode/menu.php:265 +#: ../../godmode/alerts/alert_list.list.php:130 +#: ../../godmode/alerts/alert_list.list.php:499 +#: ../../godmode/alerts/alert_commands.php:659 +#: ../../godmode/alerts/alert_view.php:301 +#: ../../godmode/alerts/alert_list.builder.php:96 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2045 +#: ../../godmode/events/event_responses.list.php:53 ../../godmode/tag/tag.php:284 +#: ../../godmode/category/category.php:170 +#: ../../include/functions_reporting_html.php:3228 +#: ../../include/functions_cron.php:469 ../../include/functions_treeview.php:413 +#: ../../include/class/AgentsAlerts.class.php:254 +#: ../../include/class/AgentsAlerts.class.php:285 +#: ../../include/functions_reporting.php:2843 +#: ../../include/functions_filemanager.php:607 +msgid "Actions" +msgstr "Actions" + +#: ../../enterprise/views/ncm/agent/details.php:490 +msgid "No changes with current backup" +msgstr "Aucun changements par rapport Ć  la sauvegarde actuelle" + +#: ../../enterprise/views/ncm/agent/details.php:494 +msgid "This is the latest configuration retrieved" +msgstr "Cā€™est la derniĆØre configuration rĆ©cupĆ©rĆ©e" + +#: ../../enterprise/views/ncm/agent/details.php:507 +#: ../../enterprise/views/ncm/agent/details.php:511 +msgid "This is the current backup." +msgstr "Cā€™est la sauvegarde actuelle." + +#: ../../enterprise/views/ncm/agent/details.php:523 +msgid "Review this configuration" +msgstr "Passez en revue cette configuration" + +#: ../../enterprise/views/ncm/agent/details.php:534 +msgid "There is no backup to compare with" +msgstr "Il nā€™y a pas de sauvegarde avec laquelle comparer" + +#: ../../enterprise/views/ncm/agent/details.php:545 +msgid "Backup this configuration" +msgstr "Sauvegarder cette configuration" + +#: ../../enterprise/views/ncm/agent/details.php:563 +msgid "Configurations registry" +msgstr "Registre des configurations" + +#: ../../enterprise/views/ncm/agent/details.php:574 +msgid "Diff between: backup - selected" +msgstr "DiffĆ©rence entre : sauvegarde - sĆ©lectionnĆ©" + +#: ../../enterprise/views/ncm/agent/details.php:600 +#: ../../enterprise/meta/monitoring/wizard/wizard.agent.php:64 +#: ../../enterprise/meta/monitoring/wizard/wizard.module.local.php:107 +#: ../../enterprise/meta/monitoring/wizard/wizard.module.network.php:119 +#: ../../enterprise/meta/monitoring/wizard/wizard.module.web.php:100 +#: ../../enterprise/godmode/modules/configure_local_component.php:483 +#: ../../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:351 +#: ../../godmode/agentes/planned_downtime.list.php:615 ../../godmode/menu.php:241 +#: ../../godmode/setup/setup.php:330 ../../godmode/events/events.php:124 +#: ../../include/functions_reports.php:898 ../../include/functions_reports.php:902 +#: ../../include/class/ConfigPEN.class.php:327 +#: ../../include/class/ModuleTemplates.class.php:195 +#: ../../include/class/ModuleTemplates.class.php:213 +msgid "Configuration" +msgstr "Configuration" + +#: ../../enterprise/views/ncm/agent/details.php:624 +msgid "Retrieve firmware version?" +msgstr "RĆ©cupĆ©rer version firmware ?" + +#: ../../enterprise/views/ncm/agent/details.php:625 msgid "" -"The Update Manager client is included on %s. It helps system administrators " -"update their %s automatically, since the Update Manager retrieves new modules, " -"new plugins and new features (even full migrations tools for future versions) " -"automatically." +"This action will connect to the device to retrieve firmware version. Are you sure?" msgstr "" -"Le client Update Manager est inclus dans %s. Il aide les administrateurs " -"systĆØme mettent Ć  jour leur %s automatiquement, puisque Update Manager " -"rĆ©cupĆØre nouveaux modules, nouveaux plugins et nouveaux caractĆ©ristiques (mĆŖme " -"les outils de migrations complĆØtes pour des futures versions) automatiquement." +"Cette action se connectera Ć  lā€™appareil pour rĆ©cupĆ©rer la version du firmware. " +"ĆŖtes-vous sĆ»r ?" -#: ../../general/alert_enterprise.php:130 +#: ../../enterprise/views/ncm/agent/details.php:635 +msgid "Get running config?" +msgstr "Collecter configuration en exĆ©cution ?" + +#: ../../enterprise/views/ncm/agent/details.php:636 msgid "" -"OpenSource version updates are automated packages generated each week. " -"These updates come WITHOUT ANY warranty or support. If your system is " -"corrupted or a feature stops working properly, you will need to recover a " -"backup by yourself." +"This action will connect to the device to retrieve latest configuration. Are you " +"sure?" msgstr "" -"Les mises Ć  jour de version source ouverte sont des progiciels automatisĆ©s " -"crĆ©Ć©s chaque semaine. Ces mises Ć  jour NE SONT PAS COUVERTES par une garantie " -"ni une assistance logiciel. Si votre systĆØme est altĆ©rĆ© ou une fonctionnalitĆ© " -"cesse de marcher correctement, vous devrez rĆ©cupĆ©rer votre copie de sĆ©curitĆ© " -"vous-mĆŖme." +"Cette action connectera avec l'appareil pour recueillir la derniĆØre " +"configuration. Ɗtes-vous sĆ»r ?" -#: ../../general/alert_enterprise.php:130 -#, php-format +#: ../../enterprise/views/ncm/agent/details.php:647 +msgid "Backup latest config?" +msgstr "Sauvegarder la derniĆØre configuration ?" + +#: ../../enterprise/views/ncm/agent/details.php:648 msgid "" -"The Enterprise version comes with a different update system, with fully " -"tested, professionally-supported packages, and our support team is there to " -"help you in case of problems or queries. Update Manager is another feature " -"present in the Enterprise version and not included in the OpenSource version. " -"There are lots of advanced business-oriented features contained in %s " -"Enterprise Edition. For more information visit pandorafms.com" +"This action will overwrite current backup to use latest retrieved configuration. " +"Are you sure?" msgstr "" -"La version Enterprise contient un systĆØme de mise Ć  jour diffĆ©rente, avec des " -"packages complĆØtement testĆ©s et avec de support professionnel, et notre Ć©quipe " -"de support est lĆ  pour vous aider s'il y a des problĆØmes ou des requĆŖtes. " -"Update Manager est une autre caractĆ©ristique prĆ©sente dans la version " -"Enterprise et ne sont pas inclus dans la version OpenSource. Il y a d'autres " -"caractĆ©ristiques orientĆ©es aux entreprises avancĆ©es comprises dans la version " -"%s Enterprise. Pour plus d'informations, visitez pandorafms.com" +"Cette action Ć©crasera la sauvegarde actuelle pour utiliser la derniĆØre " +"configuration recueilli. Ɗtes-vous sĆ»r ?" -#: ../../general/alert_enterprise.php:132 -#, php-format +#: ../../enterprise/views/ncm/agent/details.php:656 +msgid "Backup target config?" +msgstr "Configuration de la cible de sauvegarde ?" + +#: ../../enterprise/views/ncm/agent/details.php:657 msgid "" -"The new Update Manager " -"client is included on %s. It helps system administrators update their %s " -"automatically, since the Update Manager retrieves new modules, new plugins and " -"new features (even full migrations tools for future versions) automatically." +"This action will overwrite current backup to use selected configuration. Are you " +"sure?" msgstr "" -"Le nouvel client Update " -"Manager est inclus dans %s. Il aide aux administrateurs systĆØmes mettre Ć  " -"jour leur %s automatiquement, puisque Update Manager collecte des nouveaux " -"modules, des nouveaux plugins et des nouvelles fonctionnalitĆ©s (mĆŖme les " -"outils de migration complĆØtes pour les versions futures)" +"Cette action remplacera la sauvegarde actuelle pour utiliser la configuration " +"sĆ©lectionnĆ©e. Ɗtes-vous sĆ»r ?" -#: ../../general/alert_enterprise.php:132 -#, php-format +#: ../../enterprise/views/ncm/agent/details.php:668 +msgid "Restore device configuration?" +msgstr "Restaurer la configuration de l'appareil ?" + +#: ../../enterprise/views/ncm/agent/details.php:669 msgid "" -"The Update Manager is one of the most advanced features on the %s Enterprise " -"Edition. For more information visit http://" -"pandorafms.com." +"This action will overwrite device configuration with latest backup. Are you sure?" msgstr "" -"Update Manager est l'une des plus avancĆ©es fonctionnalitĆ©s de la version %s " -"Enterprise. Pour plus d'informations, visitez http://pandorafms.com." +"Cette action Ć©crasera la configuration de l'appareil avec la derniĆØre sauvegarde. " +"Ɗtes-vous sĆ»r ?" -#: ../../general/alert_enterprise.php:132 -#, php-format +#: ../../enterprise/views/ncm/agent/details.php:688 +msgid "Customize script execution" +msgstr "Personnaliser lā€™exĆ©cution des scripts" + +#: ../../enterprise/views/ncm/agent/details.php:689 +#: ../../include/ajax/events.php:2142 +#: ../../include/class/ExternalTools.class.php:581 +#: ../../include/functions_events.php:3422 +msgid "Execute" +msgstr "ExĆ©cuter" + +#: ../../enterprise/views/ncm/templates/list.php:32 +#: ../../enterprise/meta/include/functions_alerts_meta.php:129 +#: ../../enterprise/meta/include/functions_alerts_meta.php:160 +#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:261 +#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:191 +#: ../../enterprise/godmode/reporting/graph_template_wizard.php:192 +#: ../../enterprise/godmode/reporting/visual_console_template.php:109 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2097 +#: ../../enterprise/include/functions_reporting.php:146 +#: ../../enterprise/include/functions_reporting.php:7984 +#: ../../enterprise/include/functions_reporting.php:8012 +#: ../../enterprise/include/functions_reporting.php:8083 +#: ../../godmode/agentes/configurar_agente.php:740 ../../godmode/menu.php:159 +#: ../../godmode/menu.php:261 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1980 +#: ../../include/functions_menu.php:510 ../../include/class/ConfigPEN.class.php:332 +#: ../../include/class/ModuleTemplates.class.php:196 +#: ../../include/class/ModuleTemplates.class.php:214 +msgid "Templates" +msgstr "ModĆØles" + +#: ../../enterprise/views/ncm/templates/list.php:74 +#: ../../enterprise/views/ncm/templates/edit.php:107 +#: ../../enterprise/views/ncm/firmwares/edit.php:106 +#: ../../enterprise/views/ncm/vendors/list.php:32 +#: ../../enterprise/views/ncm/vendors/edit.php:35 +msgid "Vendors" +msgstr "Fournisseurs" + +#: ../../enterprise/views/ncm/templates/list.php:75 +#: ../../enterprise/views/ncm/templates/edit.php:134 +#: ../../enterprise/views/ncm/firmwares/list.php:76 +#: ../../enterprise/views/ncm/firmwares/edit.php:133 +#: ../../enterprise/views/ncm/models/list.php:32 +msgid "Models" +msgstr "ModĆØles" + +#: ../../enterprise/views/ncm/templates/list.php:76 +msgid "Scripts defined" +msgstr "Scripts dĆ©finis" + +#: ../../enterprise/views/ncm/templates/edit.php:42 +#: ../../enterprise/views/ncm/devices/list.php:32 +#: ../../enterprise/views/ncm/models/edit.php:37 +msgid "Devices" +msgstr "Dispositifs" + +#: ../../enterprise/views/ncm/templates/edit.php:102 msgid "" -"Update Manager sends anonymous information about %s usage (number of agents " -"and modules running). To disable it, please remove the remote server address " -"from the Update Manager plugin setup." +"Comma separated, a vendors list compatible with scripts defined within template." msgstr "" -"Update Manager envoi des informations anonymes sur l'utilisation %s (nombre " -"d'agents et modules en exĆ©cution). Pour le dĆ©sactiver, Ć©liminez l'adresse du " -"serveur distant depuis la configuration du plugin Update Manager." +"SĆ©parĆ©s par virgules, une liste de fournisseurs compatible avec les scripts " +"dĆ©finis dans le modĆØle." -#: ../../general/alert_enterprise.php:138 +#: ../../enterprise/views/ncm/templates/edit.php:130 msgid "" -"The community version doesn't have the ability to define your own library of " -"local modules, or distribute it to remote agents. You need to make those " -"changes individually on each agent which is possible by using external tools " -"and time and effort. Nor can it distribute local plugins, or have access to " -"the library of enterprise plugins to monitor applications such as VMWare, RHEV " -"or Informix between others. The Enterprise version will have all this, plus " -"the ability to distribute and manage your own local modules on your systems, " -"individually or through policies.\n" -"

    pandorafms." -"com" +"This script will be used to apply configuration, previously backed up, to devices" msgstr "" -"Voulez vous consolider toute votre supervision systĆØme ? Avez-vous beaucoup de " -"systĆØmes, ce qui rende difficile de les gĆ©rer d'une maniĆØre comprehensive ? " -"Voudriez-vous dĆ©ployer de la supervision, des alertes et mĆŖme des plugins " -"locales avec un seul clique ? Las politiques %s Enterprise sont exactement ce " -"dont vous avez besoin ; vous Ć©conomiserez du temps, de l'effort et des ennuis. " -"Plus d'informations pandorafms.com" +"Cet script sera utilisĆ© pour appliquer les configurations, prĆ©alablement " +"sauvegardĆ©s, aux appareils" -#: ../../general/alert_enterprise.php:148 -#, php-format +#: ../../enterprise/views/ncm/templates/edit.php:209 +msgid "Script: set configuration" +msgstr "Script : set configuration" + +#: ../../enterprise/views/ncm/templates/edit.php:232 +msgid "This script will be used to retrieve firmware version from devices" +msgstr "Cet script sera utilisĆ© pour collecter la version firmware des appareils" + +#: ../../enterprise/views/ncm/templates/edit.php:237 +msgid "Script: get firmware" +msgstr "Script : get firmware" + +#: ../../enterprise/views/ncm/templates/edit.php:259 +msgid "This script will be used to upgrade firmware version of the devices" +msgstr "" +"Ce script sera utilisĆ© pour mettre Ć  niveau la version du firmware des appareils" + +#: ../../enterprise/views/ncm/templates/edit.php:264 +msgid "Script: set firmware" +msgstr "Script : dĆ©finir le firmware" + +#: ../../enterprise/views/ncm/templates/edit.php:286 +msgid "This script will be executed on the devices when selecting CUSTOM task" +msgstr "" +"Cet script sera exĆ©cutĆ© dans les appareils lors de la selection de la tache CUSTOM" + +#: ../../enterprise/views/ncm/templates/edit.php:291 +msgid "Script: custom task" +msgstr "Script : custom task" + +#: ../../enterprise/views/ncm/devices/list.php:64 +#: ../../include/functions_reports.php:938 +msgid "NCM" +msgstr "NCM" + +#: ../../enterprise/views/ncm/devices/list.php:69 msgid "" -"%s Enterprise also features event correlation. Through correlation you can " -"generate realtime alerts and / or new events based on logical rules. This " -"allows you to automate troubleshooting. If you know the value of working with " -"events, event correlation will take you to a new level." +"WARNING: This is a new feature and is still at an early stage. It is available " +"with limited features, use it with caution and send us your feedback to improve " +"these current capabilities." msgstr "" -"%s Enterprise aussi inclut de la correlation d'Ć©vĆ©nements. Ƃ travers la " -"correlation, vous pouvez gĆ©nĆ©rer des alertes en temps rĆ©el et/ou des nouveaux " -"Ć©vĆ©nements basĆ©s sur des rĆØgles logiques. Cela vous permet d'automatiser la " -"rĆ©solution de bogues. Si vous connaissez la valeur de travailler avec de " -"Ć©vĆ©nements, la corrĆ©lation d'Ć©vĆ©nements vous prendra dans un nouveau niveau." +"AVERTISSEMENT : C'est une nouvelle fonctionnalitĆ© et elle est dans une Ć©tape " +"prĆ©liminaire. C'est disponible avec des fonctionnalitĆ©s limitĆ©es, utilisez-le " +"avec prĆ©caution et envoyez-nous vos commentaires pour amĆ©liorer ses capacitĆ©s " +"actuelles." -#: ../../general/alert_enterprise.php:152 -#, php-format +#: ../../enterprise/views/ncm/devices/list.php:72 msgid "" -"Report generating on the Enterprise version is also more powerful: it has " -"wizards, you can schedule emails in PDF to be sent according to the schedule " -"you decide, and it has a template system to create personalized reports " -"quickly for each of your customers. It will even allow your customers to " -"generate their own reports from templates created by you. If reports are key " -"to your business, %s Enterprise version is for you." +"Network configuration manager is used to keep configurations and software " +"versions of any network device in your infrastructure under your control." msgstr "" -"La gĆ©nĆ©ration de rapports dans la version Enterprise est aussi plus " -"puissante : il a des assistants, vous pouvez programmer des emails en PDF pour " -"les envoyer selon la programmation que vous dĆ©cidez, et il a un systĆØme de " -"modĆØles pour crĆ©er des rapports personnalisĆ©s rapidement pour chaque de vos " -"clients. Il permettra aux clients de gĆ©nĆ©rer leur propres rapports Ć  partir " -"des modĆØles crĆ©es par vous. Si les rapports sont clĆ©s pour votre business, la " -"version Enterprise de %s est pour vous." +"Le gestionnaire de configuration rĆ©seau est utilisĆ© pour maintenir des " +"configurations et des versions de logiciel de n'importe quel appareil rĆ©seau dans " +"votre infrastructure sous contrĆ“le." -#: ../../general/alert_enterprise.php:156 -msgid "These options are only effective on the Enterprise version." -msgstr "Ces options sont fonctionnelles uniquement sur la version Enterprise." - -#: ../../general/alert_enterprise.php:160 +#: ../../enterprise/views/ncm/devices/list.php:77 msgid "" -"WARNING: You are just one click away from an automated update. This may result " -"in a damaged system, including loss of data and operativity. Check you have a " -"recent backup. OpenSource updates are automatically created packages, and " -"there is no WARRANTY or SUPPORT. If you need professional support and " -"warranty, please upgrade to Enterprise Version." +"To start using it, navigatenavigate to your desired agent, tab Network Config " +"Manager, and enable the ncm features,\n" +" you will be asked for the vendor and model of the device." msgstr "" -"Avertissement : Vous ĆŖtes Ć  un seul clic d'une mise Ć  jour automatisĆ©e. Ceci " -"pourrait endommager le systĆØme et provoquer une possible perte de donnĆ©es et " -"de fonctionnalitĆ©s. Veuillez vĆ©rifier que vous disposez d'une copie de " -"sĆ©curitĆ© rĆ©cente. Les mises Ć  jour de source ouverte sont des progiciels crĆ©Ć©s " -"automatiquement qui ne sont pas couverts par une GARANTIE ou un ASSISTANCE " -"LOGICIEL. Si vous avez besoin de garantie et d'assistance logiciel, veuillez " -"faire une mise Ć  niveau avec la version Enterprise." +"Pour commencer Ć  l'utiliser, naviguez ver l'agent dĆ©sirĆ©, l'onglet Gestionnaire " +"de configuration rĆ©seau et habilitez les fonctionnalitĆ©s ncm\n" +" il vous demandera de entrer le fournisseur et le modĆØle d'appareil." -#: ../../general/alert_enterprise.php:164 +#: ../../enterprise/views/ncm/devices/list.php:84 +msgid "Define a NCM template" +msgstr "DĆ©finissez un modĆØle NCM" + +#: ../../enterprise/views/ncm/devices/list.php:87 +msgid "Configure agents to use NCM templates" +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:2036 +#: ../../enterprise/tools/ipam/ipam_network.php:395 +#: ../../enterprise/tools/ipam/ipam_supernet_config.php:546 +#: ../../enterprise/tools/ipam/ipam_vlan_wizard.php:53 +#: ../../enterprise/tools/ipam/ipam_vlan_wizard.php:254 +#: ../../enterprise/tools/ipam/ipam_excel.php:133 +#: ../../enterprise/tools/ipam/ipam_ajax.php:359 +#: ../../enterprise/tools/ipam/ipam_calculator.php:62 +#: ../../godmode/setup/setup_general.php:649 +#: ../../operation/agentes/ver_agente.php:1181 +msgid "Address" +msgstr "Adresse" + +#: ../../enterprise/views/ncm/devices/list.php:118 +#: ../../enterprise/views/ncm/firmwares/list.php:75 +#: ../../enterprise/views/ncm/models/list.php:72 +#: ../../enterprise/views/ncm/models/edit.php:88 +msgid "Vendor" +msgstr "Fournisseur" + +#: ../../enterprise/views/ncm/devices/list.php:119 +msgid "Model" +msgstr "ModĆØle" + +#: ../../enterprise/views/ncm/devices/list.php:120 +#: ../../enterprise/views/cluster/list.php:63 +#: ../../enterprise/meta/advanced/servers.build_table.php:61 +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:466 +#: ../../enterprise/meta/advanced/policymanager.queue.php:225 +#: ../../enterprise/meta/monitoring/custom_fields_view.php:707 +#: ../../enterprise/meta/include/functions_events_meta.php:78 +#: ../../enterprise/meta/agentsearch.php:140 +#: ../../enterprise/meta/agentsearch.php:330 +#: ../../enterprise/extensions/vmware/vmware_view.php:1085 +#: ../../enterprise/godmode/agentes/collection_manager.php:112 +#: ../../enterprise/godmode/agentes/collection_manager.php:209 +#: ../../enterprise/godmode/policies/policy_alerts.php:354 +#: ../../enterprise/godmode/policies/policy_modules.php:1466 +#: ../../enterprise/godmode/policies/policy_queue.php:616 +#: ../../enterprise/godmode/policies/policies.php:405 +#: ../../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/massive/massive_add_modules_policy.php:125 +#: ../../enterprise/godmode/admin_access_logs.php:50 +#: ../../enterprise/godmode/servers/HA_cluster.php:170 +#: ../../enterprise/godmode/servers/list_satellite.php:38 +#: ../../enterprise/include/functions_reporting_csv.php:718 +#: ../../enterprise/include/functions_reporting_csv.php:881 +#: ../../enterprise/include/functions_reporting_csv.php:1993 +#: ../../enterprise/include/functions_reporting_csv.php:2739 +#: ../../enterprise/include/class/ManageBackups.class.php:165 +#: ../../enterprise/include/functions_reporting.php:1858 +#: ../../enterprise/include/functions_reporting.php:2897 +#: ../../enterprise/include/functions_reporting.php:3884 +#: ../../enterprise/include/functions_reporting.php:6140 +#: ../../enterprise/include/functions_services.php:1613 +#: ../../enterprise/operation/agentes/policy_view.php:66 +#: ../../enterprise/operation/agentes/policy_view.php:166 +#: ../../enterprise/operation/agentes/policy_view.php:262 +#: ../../enterprise/operation/agentes/policy_view.php:397 +#: ../../enterprise/operation/agentes/tag_view.php:607 +#: ../../enterprise/operation/agentes/tag_view.php:685 +#: ../../enterprise/operation/agentes/collection_view.php:78 +#: ../../enterprise/operation/services/services.service.php:127 +#: ../../enterprise/operation/services/services.list.php:243 +#: ../../enterprise/operation/services/services.list.php:507 +#: ../../enterprise/operation/services/services.table_services.php:165 +#: ../../enterprise/tools/ipam/ipam_vlan_wizard.php:412 +#: ../../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:863 +#: ../../godmode/massive/massive_copy_modules.php:121 +#: ../../godmode/massive/massive_copy_modules.php:281 +#: ../../godmode/massive/massive_delete_modules.php:415 +#: ../../godmode/massive/massive_delete_agents.php:215 +#: ../../godmode/massive/massive_edit_agents.php:537 +#: ../../godmode/massive/massive_edit_agents.php:905 +#: ../../godmode/alerts/alert_list.list.php:142 +#: ../../godmode/alerts/alert_list.list.php:497 +#: ../../godmode/alerts/alert_view.php:114 +#: ../../godmode/setup/setup_integria.php:426 +#: ../../godmode/setup/setup_integria.php:548 +#: ../../godmode/reporting/reporting_builder.item_editor.php:77 +#: ../../godmode/events/custom_events.php:101 +#: ../../godmode/wizards/DiscoveryTaskList.class.php:600 +#: ../../godmode/servers/servers.build_table.php:80 +#: ../../mobile/operation/agents.php:97 ../../mobile/operation/agents.php:144 +#: ../../mobile/operation/agents.php:243 ../../mobile/operation/agents.php:244 +#: ../../mobile/operation/agents.php:406 ../../mobile/operation/modules.php:163 +#: ../../mobile/operation/modules.php:164 ../../mobile/operation/modules.php:275 +#: ../../mobile/operation/modules.php:276 ../../mobile/operation/modules.php:603 +#: ../../mobile/operation/modules.php:609 ../../mobile/operation/modules.php:615 +#: ../../mobile/operation/modules.php:621 ../../mobile/operation/modules.php:632 +#: ../../mobile/operation/modules.php:640 ../../mobile/operation/modules.php:648 +#: ../../mobile/operation/modules.php:720 ../../mobile/operation/modules.php:732 +#: ../../mobile/operation/modules.php:850 ../../mobile/operation/alerts.php:105 +#: ../../mobile/operation/alerts.php:106 ../../mobile/operation/alerts.php:247 +#: ../../mobile/operation/alerts.php:248 ../../mobile/operation/alerts.php:350 +#: ../../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:547 +#: ../../include/functions_reporting_html.php:1046 +#: ../../include/functions_reporting_html.php:1055 +#: ../../include/functions_reporting_html.php:1309 +#: ../../include/functions_reporting_html.php:1317 +#: ../../include/functions_reporting_html.php:1585 +#: ../../include/functions_reporting_html.php:2143 +#: ../../include/functions_reporting_html.php:2420 +#: ../../include/functions_reporting_html.php:2787 +#: ../../include/functions_reporting_html.php:3436 +#: ../../include/functions_reporting_html.php:3489 +#: ../../include/functions_reporting_html.php:5062 +#: ../../include/ajax/alert_list.ajax.php:296 +#: ../../include/ajax/alert_list.ajax.php:321 ../../include/ajax/module.php:980 +#: ../../include/ajax/custom_fields.php:416 ../../include/functions_snmp.php:369 +#: ../../include/class/NetworkMap.class.php:2907 +#: ../../include/class/AgentsAlerts.class.php:894 +#: ../../include/class/ExternalTools.class.php:795 +#: ../../include/lib/Dashboard/Widgets/system_group_status.php:318 +#: ../../include/functions_snmp_browser.php:594 +#: ../../include/functions_events.php:204 ../../include/functions_events.php:259 +#: ../../include/functions_events.php:2377 ../../include/functions_events.php:4608 +#: ../../operation/search_agents.php:56 +#: ../../operation/agentes/estado_agente.php:275 +#: ../../operation/agentes/estado_agente.php:763 +#: ../../operation/agentes/interface_view.functions.php:497 +#: ../../operation/agentes/status_monitor.php:1334 +#: ../../operation/agentes/alerts_status.functions.php:105 +#: ../../operation/messages/message_list.php:192 +#: ../../operation/snmpconsole/snmp_view.php:584 +#: ../../operation/snmpconsole/snmp_view.php:849 +#: ../../operation/snmpconsole/snmp_view.php:1226 +#: ../../operation/incidents/integriaims_export_csv.php:83 +#: ../../operation/incidents/configure_integriaims_incident.php:250 +#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:322 +#: ../../operation/incidents/list_integriaims_incidents.php:320 +#: ../../operation/search_modules.php:36 ../../operation/search_policies.php:38 +msgid "Status" +msgstr "Ɖtat" + +#: ../../enterprise/views/ncm/devices/list.php:121 +msgid "Last queued task" +msgstr "DerniĆØre tĆ¢che en file dā€™attente" + +#: ../../enterprise/views/ncm/devices/list.php:122 +#: ../../enterprise/operation/services/services.service.php:133 +#: ../../enterprise/operation/services/services.list.php:510 +#: ../../enterprise/tools/ipam/ipam_list.php:631 +#: ../../extensions/agents_modules.php:317 ../../operation/agentes/group_view.php:80 +#: ../../operation/agentes/tactical.php:60 +msgid "Last update" +msgstr "DerniĆØre mise Ć  jour" + +#: ../../enterprise/views/ncm/devices/list.php:123 +#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:136 +#: ../../enterprise/godmode/policies/policy_alerts.php:354 +#: ../../enterprise/godmode/alerts/alert_inventory_list.php:224 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:520 +#: ../../enterprise/include/functions_tasklist.php:158 +#: ../../godmode/massive/massive_copy_modules.php:185 +#: ../../godmode/alerts/alert_list.list.php:500 +#: ../../godmode/wizards/DiscoveryTaskList.class.php:612 +msgid "Operations" +msgstr "OpĆ©rations" + +#: ../../enterprise/views/ncm/firmwares/list.php:32 +msgid "Firmwares" +msgstr "Firmwares" + +#: ../../enterprise/views/ncm/firmwares/list.php:74 +#: ../../enterprise/include/class/Omnishell.class.php:398 +#: ../../include/class/CredentialStore.class.php:803 +#: ../../include/class/CredentialStore.class.php:911 +msgid "Identifier" +msgstr "Identificateur" + +#: ../../enterprise/views/ncm/firmwares/edit.php:41 +msgid "Firmware" +msgstr "Firmware" + +#: ../../enterprise/views/ncm/firmwares/edit.php:101 msgid "" -"This system is heavily loaded. OpenSource version could get a lot more agents " -"but fine tuning requires knowledge and time. Checkout the Enterprise Version " -"for a professional supported system." +"Comma separated, a vendors list compatible with scripts defined within firmware." msgstr "" -"Ce systĆØme est surchargĆ©. La version de source ouverte a pu rĆ©cupĆ©rer beaucoup " -"plus d'agents mais pour les prĆ©ciser, il est nĆ©cessaire d'avoir des " -"connaissances et du temps. Renseignez-vous sur la version Enterprise pour " -"obtenir un systĆØme avec une assistance professionnelle." +"SĆ©parĆ© par des virgules, une liste de fournisseurs compatible avec les scripts " +"dĆ©finis dans le firmware." -#: ../../general/alert_enterprise.php:173 -#, php-format +#: ../../enterprise/views/ncm/firmwares/edit.php:129 msgid "" -"This system has too many modules per agent. OpenSource version could manage " -"thousands of modules, but is not recommended to have more than 100 modules per " -"agent. This configuration has %d modules per agent. Checkout the Enterprise " -"Version for a professional supported system." +"Comma separated, a model list compatible with scripts defined within firmware." msgstr "" -"Ce systĆØme a trop de modules par agent. La version OpenSource pourrait gĆ©rer " -"des milliers de modules, mais il n'est pas recommandĆ© d'avoir plus de 100 " -"modules par agent. Cette configuration a %d modules par agent. Jetez un coup " -"d'oeil Ć  la version Enterprise pour un systĆØme supportĆ© par des professionnels." +"SĆ©parĆ© par des virgules, une liste de modĆØles compatible avec les scripts dĆ©finis " +"dans le firmware." -#: ../../general/alert_enterprise.php:177 -msgid "" -"Too much remote modules has been detected on this system. OpenSource version " -"could manage thousands of modules, but performance is limited on high amount " -"of SNMP or ICMP request. Checkout the Enterprise Version for a professional " -"supported system with improved capacity on network monitoring, including " -"distributed servers." -msgstr "" -"Trop de modules Ć  distance ont Ć©tĆ© trouvĆ©s sur ce systĆØme. La version de " -"source ouverte a pu gĆ©rer des milliers de modules, mais le rendement est " -"limitĆ© s'il y a trop de requĆŖtes SNMP ou ICMP. Renseignez-vous sur la version " -"Enterprise pour obtenir un systĆØme avec une assistance professionnelle et une " -"capacitĆ© renforcĆ©e de surveillance de rĆ©seaux et de serveurs distribuĆ©s." +#: ../../enterprise/views/ncm/firmwares/edit.php:149 +#: ../../enterprise/meta/advanced/metasetup.consoles.php:439 +#: ../../enterprise/meta/monitoring/custom_fields_csv.php:127 +#: ../../enterprise/meta/monitoring/custom_fields_view.php:180 +#: ../../enterprise/meta/monitoring/group_view.php:239 +#: ../../enterprise/meta/monitoring/group_view.php:245 +#: ../../enterprise/meta/monitoring/tactical.php:223 +#: ../../enterprise/meta/include/functions_wizard_meta.php:977 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1062 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1265 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1285 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1502 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1587 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1707 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1727 +#: ../../enterprise/meta/index.php:863 ../../enterprise/meta/index.php:932 +#: ../../enterprise/godmode/agentes/manage_config_remote.php:313 +#: ../../enterprise/godmode/massive/massive_add_modules_policy.php:120 +#: ../../enterprise/godmode/massive/massive_create_services.php:747 +#: ../../enterprise/godmode/services/services.service.php:707 +#: ../../enterprise/godmode/services/services.service.php:958 +#: ../../enterprise/godmode/services/services.elements.php:368 +#: ../../enterprise/godmode/setup/setup_history.php:585 +#: ../../enterprise/include/class/CommandCenter.class.php:564 +#: ../../enterprise/include/class/CommandCenter.class.php:603 +#: ../../enterprise/include/functions_reporting.php:4838 +#: ../../enterprise/include/functions_services.php:1448 +#: ../../enterprise/include/functions_login.php:23 +#: ../../enterprise/operation/agentes/transactional_map.php:333 +#: ../../enterprise/operation/agentes/tag_view.php:132 +#: ../../enterprise/operation/services/services.service.php:123 +#: ../../enterprise/operation/services/services.service.php:174 +#: ../../enterprise/operation/services/services.service_map.php:150 +#: ../../enterprise/operation/services/services.treeview_services.php:280 +#: ../../enterprise/operation/services/services.list.php:238 +#: ../../enterprise/operation/services/services.list.php:505 +#: ../../enterprise/operation/services/services.list.php:564 +#: ../../enterprise/operation/services/services.table_services.php:160 +#: ../../update_manager_client/views/offline.php:80 +#: ../../extensions/dbmanager.php:129 +#: ../../godmode/modules/manage_network_components_form_wizard.php:384 +#: ../../godmode/groups/group_list.php:1059 +#: ../../godmode/users/configure_user.php:1644 +#: ../../godmode/massive/massive_copy_modules.php:116 +#: ../../godmode/massive/massive_copy_modules.php:276 +#: ../../godmode/massive/massive_delete_modules.php:419 +#: ../../godmode/massive/massive_delete_modules.php:440 +#: ../../godmode/massive/massive_delete_agents.php:210 +#: ../../godmode/massive/massive_edit_agents.php:532 +#: ../../godmode/massive/massive_edit_agents.php:981 +#: ../../godmode/massive/massive_edit_modules.php:386 +#: ../../godmode/massive/massive_edit_modules.php:472 +#: ../../godmode/setup/setup_netflow.php:71 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3735 +#: ../../mobile/operation/agents.php:59 ../../mobile/operation/modules.php:70 +#: ../../include/functions_reporting_html.php:2359 ../../include/functions.php:1035 +#: ../../include/functions.php:1273 ../../include/functions.php:1276 +#: ../../include/functions.php:1315 ../../include/functions_graph.php:3493 +#: ../../include/functions_graph.php:3494 ../../include/functions_graph.php:5068 +#: ../../include/functions_ui.php:298 ../../include/functions_ui.php:2610 +#: ../../include/rest-api/models/VisualConsole/Items/Group.php:423 +#: ../../include/class/Diagnostics.class.php:1809 +#: ../../include/class/AgentWizard.class.php:1315 +#: ../../include/class/AgentWizard.class.php:4021 +#: ../../include/lib/Dashboard/Widgets/system_group_status.php:312 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:386 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:419 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:665 +#: ../../include/functions_events.php:2937 ../../index.php:1179 +#: ../../operation/tree.php:213 ../../operation/tree.php:270 +#: ../../operation/tree.php:471 ../../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/netflow/nf_live_view.php:459 +#: ../../operation/gis_maps/render_view.php:165 +msgid "Warning" +msgstr "Attention" -#: ../../general/alert_enterprise.php:181 -msgid "" -"This system has too much events in the database. Checkout database purge " -"options. Checkout the Enterprise Version for a professional supported system." -msgstr "" -"Ce systĆØme contient trop d'Ć©vĆ©nements sur la base de donnĆ©es. VĆ©rifiez les " -"options de nettoyage de la base de donnĆ©es. Renseignez-vous sur la version " -"Enterprise pour obtenir un systĆØme avec une assistance professionnelle." +#: ../../enterprise/views/ncm/firmwares/edit.php:149 +msgid "Current binary file will be overwritten, are you sure?" +msgstr "Le fichier binaire actuel sera Ć©crasĆ©, ĆŖtes-vous sĆ»r?" -#: ../../general/alert_enterprise.php:185 -msgid "" -"You have defined a high number of alerts, this may cause you performance " -"problems in the future. In the Enterprise version, you can use event " -"correlation alerts to simplify the alerting system and have easier " -"administration and increased performance." -msgstr "" -"Vous avez dĆ©fini un nombre Ć©levĆ© d'alertes. Cela peut provoquer des problĆØmes " -"de rendement. Avec la version Enterprise, vous pouvez utiliser des alertes de " -"corrĆ©lation d'Ć©vĆ©nements pour simplifier le systĆØme d'alertes, rendre " -"l'administration plus facile et augmenter le rendement." +#: ../../enterprise/views/ncm/firmwares/edit.php:154 +msgid "Binary file" +msgstr "Fichier binaire" -#: ../../general/noaccess2.php:23 -msgid "Access to this page is restricted" -msgstr "L'accĆØs Ć  cette page est limitĆ©" +#: ../../enterprise/views/ncm/vendors/edit.php:89 +msgid "icon" +msgstr "icĆ“ne" -#: ../../general/noaccess2.php:28 -#: ../../enterprise/meta/general/metaconsole_no_activated.php:20 -msgid "No access" -msgstr "Pas accĆØs" - -#: ../../general/noaccess2.php:35 -msgid "" -"Access to this page is restricted to authorized users only, please contact " -"system administrator if you need assistance.

    \n" -"\t\t\tPlease know that all attempts to access this page are recorded in " -"security logs of Pandora System Database" -msgstr "" -"L'accĆØs a cette page est rĆ©servĆ© aux utilisateurs autorisĆ©s. Veuillez " -"communiquer avec l'administrateur du systĆØme si vous avez besoin d'aide.
    " -"
    \n" -"\t\t\tSachez que toutes les tentatives pour accĆ©der Ć  cette page sont " -"enregistrĆ©es dans les journaux de sĆ©curitĆ© de la base de donnĆ©es du systĆØme " -"Pandora FMS." - -#: ../../general/header.php:48 ../../general/header.php:54 -#: ../../enterprise/meta/general/header.php:66 -#: ../../enterprise/meta/general/header.php:72 -#: ../../enterprise/meta/general/main_header.php:518 -#: ../../enterprise/meta/general/main_header.php:524 -msgid "All systems" -msgstr "Tous les systĆØmes" - -#: ../../general/header.php:48 ../../enterprise/meta/general/header.php:66 -#: ../../enterprise/meta/general/main_header.php:518 -msgid "Down" -msgstr "En panne" - -#: ../../general/header.php:51 ../../enterprise/meta/general/header.php:69 -#: ../../enterprise/meta/general/main_header.php:521 -msgid "servers down" -msgstr "Serveurs en panne" - -#: ../../general/header.php:54 ../../enterprise/meta/general/header.php:72 -#: ../../enterprise/meta/general/main_header.php:524 -msgid "Ready" -msgstr "PrĆŖt" - -#: ../../general/header.php:77 -msgid "Sobre actualizaciƃĀ³n de revisiƃĀ³n menor" -msgstr "ƀ propos de la mise Ć  jour de rĆ©vision mineure" - -#: ../../general/header.php:79 -msgid "About minor release update" -msgstr "ƀ propos de la mise Ć  jour mineure" - -#: ../../general/header.php:112 ../../general/header.php:114 -msgid "Enter keywords to search" -msgstr "Introduisez les mots clĆ©s pour effectuer une recherche" - -#: ../../general/header.php:235 ../../enterprise/meta/general/header.php:110 -#: ../../enterprise/meta/general/main_header.php:552 -msgid "Configure autorefresh" -msgstr "Configurer le rafraĆ®chissement automatique" - -#: ../../general/header.php:265 -#: ../../operation/incidents/configure_integriaims_incident.php:240 -#: ../../operation/incidents/configure_integriaims_incident.php:256 -#: ../../operation/incidents/configure_integriaims_incident.php:302 -#: ../../include/functions_reports.php:1351 -#: ../../include/class/AgentsAlerts.class.php:354 -#: ../../enterprise/meta/general/header.php:121 -#: ../../enterprise/meta/general/main_header.php:558 -#: ../../enterprise/meta/include/ajax/wizard.ajax.php:742 -#: ../../enterprise/meta/monitoring/wizard/wizard.php:150 -#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:260 -#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:357 -#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:414 -#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:682 -#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:753 -#: ../../enterprise/meta/monitoring/wizard/wizard.create_module.php:231 -#: ../../enterprise/meta/monitoring/wizard/wizard.manage_alert.php:231 -#: ../../enterprise/godmode/services/services.service.php:873 -#: ../../enterprise/godmode/services/services.service.php:885 -#: ../../enterprise/godmode/services/services.service.php:897 -#: ../../enterprise/godmode/services/services.service.php:909 -#: ../../enterprise/godmode/massive/massive_add_modules_policy.php:141 -#: ../../enterprise/godmode/massive/massive_create_services.php:902 -#: ../../enterprise/godmode/massive/massive_create_services.php:914 -#: ../../enterprise/godmode/massive/massive_create_services.php:926 -#: ../../enterprise/godmode/massive/massive_create_services.php:938 -#: ../../enterprise/godmode/policies/policy_external_alerts.php:676 -#: ../../enterprise/godmode/policies/policy_alerts.php:648 -#: ../../extensions/insert_data.php:186 -#: ../../godmode/setup/setup_integria.php:367 -#: ../../godmode/setup/setup_integria.php:385 -#: ../../godmode/setup/setup_integria.php:414 -#: ../../godmode/setup/setup_integria.php:432 -#: ../../godmode/setup/setup_integria.php:489 -#: ../../godmode/setup/setup_integria.php:507 -#: ../../godmode/setup/setup_integria.php:536 -#: ../../godmode/setup/setup_integria.php:554 -#: ../../godmode/snmpconsole/snmp_trap_generator.php:159 -#: ../../godmode/massive/massive_add_alerts.php:286 -#: ../../godmode/massive/massive_delete_modules.php:334 -#: ../../godmode/massive/massive_delete_modules.php:469 -#: ../../godmode/massive/massive_copy_modules.php:138 -#: ../../godmode/massive/massive_delete_alerts.php:277 -#: ../../godmode/massive/massive_edit_modules.php:318 -#: ../../godmode/massive/massive_edit_modules.php:431 -#: ../../godmode/alerts/alert_list.builder.php:82 -#: ../../godmode/alerts/alert_list.builder.php:156 -msgid "Select" -msgstr "SĆ©lectionner" - -#: ../../general/header.php:301 ../../general/header.php:320 -#: ../../enterprise/meta/general/header.php:137 -#: ../../enterprise/meta/general/header.php:149 -#: ../../enterprise/meta/general/main_header.php:569 -#: ../../enterprise/meta/general/main_header.php:581 -msgid "Disabled autorefresh" -msgstr "RafraĆ®chissement automatique dĆ©sactivĆ©" - -#: ../../general/header.php:356 ../../general/header.php:358 -#: ../../include/class/HelpFeedBack.class.php:213 -#: ../../include/class/Diagnostics.class.php:1967 -msgid "Feedback" -msgstr "Commentaires" - -#: ../../general/header.php:379 -msgid "Go to support" -msgstr "Aller vers support" - -#: ../../general/header.php:393 -msgid "Go to documentation" -msgstr "Aller vers documentation" - -#: ../../general/header.php:407 ../../general/header.php:417 -#: ../../operation/menu.php:460 ../../enterprise/meta/general/header.php:204 -#: ../../enterprise/meta/general/header.php:214 -#: ../../enterprise/meta/general/main_header.php:624 -#: ../../enterprise/meta/general/main_header.php:630 -#: ../../enterprise/meta/include/functions_users_meta.php:193 -#: ../../enterprise/meta/include/functions_users_meta.php:208 -msgid "Edit my user" -msgstr "Modifier mon utilisateur" - -#: ../../general/header.php:432 ../../general/header.php:434 -#: ../../enterprise/meta/general/header.php:231 -#: ../../enterprise/meta/general/header.php:233 -#: ../../enterprise/meta/general/main_header.php:535 -#: ../../mobile/operation/home.php:148 ../../mobile/include/user.class.php:440 -#: ../../mobile/include/ui.class.php:225 -#: ../../mobile/include/functions_web.php:34 -msgid "Logout" -msgstr "DĆ©connexion" - -#: ../../general/header.php:813 ../../godmode/setup/setup_general.php:660 -msgid "Send" -msgstr "Envoyer" - -#: ../../general/header.php:815 -msgid "Report an issue" -msgstr "Signaler un problĆØme" - -#: ../../general/first_task/map_builder.php:23 -#: ../../godmode/reporting/map_builder.php:462 -msgid "There are no visual console defined yet." -msgstr "Aucune console visuelle dĆ©finie jusqu'Ć  prĆ©sent" - -#: ../../general/first_task/map_builder.php:31 -#: ../../include/class/OrderInterpreter.class.php:233 -#: ../../include/lib/Dashboard/Widgets/maps_made_by_user.php:174 -#: ../../include/lib/Dashboard/Widgets/maps_made_by_user.php:471 -#: ../../enterprise/include/functions_enterprise.php:456 -#: ../../enterprise/meta/general/main_menu.php:346 -#: ../../enterprise/meta/general/main_header.php:240 -msgid "Visual Console" -msgstr "Console visuelle" - -#: ../../general/first_task/map_builder.php:34 -#: ../../general/first_task/map_builder.php:45 -msgid "Create Visual Console" -msgstr "CrĆ©er une console visuelle" - -#: ../../general/first_task/map_builder.php:37 -#, php-format -msgid "" -"%s allows users to create visual maps on which each user is able to create his " -"or her own monitoring map. The new visual console editor is much more " -"practical, although the prior visual console editor had its advantages. On the " -"new visual console, we've been successful in imitating the sensation and touch " -"of a drawing application like GIMP. We've also simplified the editor by " -"dividing it into several subject-divided tabs named 'Data', 'Preview', " -"'Wizard', 'List of Elements' and 'Editor'. The items the %s Visual Map was " -"designed to handle are 'static images', 'percentage bars', 'module graphs' and " -"'simple values'." -msgstr "" -"%s permet aux utilisateurs de crĆ©er des cartes visuelles dans lesquelles " -"chaque utilisateur peut crĆ©er ses propres cartes de supervision. Le nouvel " -"Ć©diteur de la console visuelle et plus pratique, bien que l'Ć©diteur de la " -"console visuelle avait ses avantages. Dans la nouvelle console visuelle nous " -"avons imitĆ© les sensations et le touch d'une application de dessin telle que " -"GIMP. Nous avons aussi simplifiĆ© l'Ć©diteur le divisant entre diffĆ©rents " -"onglets sous-divisĆ©s nomĆ©s 'Data', 'Preview', 'Wizard', 'List of Elements' et " -"'Editor'. Les Ć©lĆ©ments de la carte visuelle %s Ć  gĆ©rer sont 'static images', " -"'percentage bars', 'module graphs' et 'simple values'." - -#: ../../general/first_task/service_list.php:19 -msgid "There are no services defined yet." -msgstr "Aucun service dĆ©fini jusqu'Ć  prĆ©sent" - -#: ../../general/first_task/service_list.php:23 -#: ../../operation/agentes/ver_agente.php:1654 -#: ../../enterprise/operation/services/services.treeview_services.php:61 -#: ../../enterprise/operation/services/services.treeview_services.php:81 -#: ../../enterprise/operation/services/services.service.php:83 -#: ../../enterprise/operation/services/services.list.php:58 -#: ../../enterprise/operation/services/services.list.php:75 -#: ../../enterprise/operation/services/services.service_map.php:97 -#: ../../enterprise/operation/services/services.service_map.php:144 -#: ../../enterprise/operation/services/services.table_services.php:38 -#: ../../enterprise/operation/services/services.table_services.php:58 -#: ../../enterprise/operation/menu.php:77 -#: ../../enterprise/include/functions_groups.php:65 -#: ../../enterprise/meta/general/main_menu.php:329 -#: ../../enterprise/meta/general/main_header.php:210 -#: ../../enterprise/godmode/services/services.elements.php:778 -#: ../../enterprise/godmode/services/services.elements.php:798 -#: ../../enterprise/godmode/services/services.service.php:477 -#: ../../enterprise/godmode/services/services.service.php:497 -#: ../../enterprise/godmode/services/services.massive.meta.php:42 -#: ../../enterprise/godmode/services/services.massive.elements.php:44 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:314 -#: ../../enterprise/godmode/reporting/visual_console_builder.wizard_services.php:136 -#: ../../enterprise/godmode/menu.php:137 -#: ../../enterprise/godmode/massive/massive_add_service_elements.php:363 -#: ../../enterprise/godmode/massive/massive_create_services.php:966 -msgid "Services" -msgstr "Services" - -#: ../../general/first_task/service_list.php:26 -#: ../../general/first_task/service_list.php:40 -msgid "Create Services" -msgstr "CrĆ©er des services" - -#: ../../general/first_task/service_list.php:30 -msgid "" -"A service is a way to group your IT resources based on their " -"functionalities. \n" -"\t\t\t\t\t\tA service could be e.g. your official website, your CRM system, " -"your support application, or even your printers.\n" -"\t\t\t\t\t\t Services are logical groups which can include hosts, routers, " -"switches, firewalls, CRMs, ERPs, websites and numerous other services. \n" -"\t\t\t\t\t\t By the following example, you're able to see more clearly what a " -"service is:\n" -"\t\t\t\t\t\t\tA chip manufacturer sells computers by its website all around " -"the world. \n" -"\t\t\t\t\t\t\tHis company consists of three big departments: A management, an " -"on-line shop and support." -msgstr "" -"Un service est une maniĆØre de regrouper vos ressources informatiques selon " -"leurs fonctionnalitĆ©s.\n" -"\t\t\t\t\t\tVotre site officiel, systĆØme CRM, application d'assistance ou mĆŖme " -"vos imprimantes sont des exemples de services.\n" -"\t\t\t\t\t\tLes services sont des groupes logiques qui peuvent inclure des " -"hĆ“tes, des routeurs, des switchs, des firewalls, des CRMs, des ERPs, des sites " -"web et plusieurs autres services.\n" -"\t\t\t\t\t\tL'exemple suivant explique plus clairement ce qu'est un service :\n" -"\t\t\t\t\t\t\tUn fabricant de puces vent des ordinateurs sur son site web " -"partout sur la planĆØte.\n" -"\t\t\t\t\t\t\tSon entreprise se compose de trois grands dĆ©partements : " -"gestion, ventes en ligne et assistance." - -#: ../../general/first_task/HA_cluster_builder.php:37 -msgid "There are no HA clusters defined yet." -msgstr "Il n'y a pas des grappes HA dĆ©finis dĆ©jĆ ." - -#: ../../general/first_task/HA_cluster_builder.php:42 -#: ../../general/first_task/cluster_builder.php:29 -#: ../../general/first_task/cluster_builder.php:51 #: ../../enterprise/views/cluster/list.php:31 -msgid "Clusters" -msgstr "Grappes" - -#: ../../general/first_task/HA_cluster_builder.php:45 -msgid "PANDORA FMS DB CLUSTER" -msgstr "GRAPPE DE BASE DE DONNƉES PANDORA FMS" - -#: ../../general/first_task/HA_cluster_builder.php:48 -msgid "" -"With Pandora FMS Enterprise you can add high availability to your Pandora FMS " -"installation by adding redundant MySQL servers" -msgstr "" -"Avec Pandora FMS Enterprise vous pouvez ajouter l'haute disponibilitĆ© Ć  votre " -"installation Pandora FMS en ajoutant des serveurs MySQL redondantes" - -#: ../../general/first_task/HA_cluster_builder.php:50 -msgid "" -"Click on \"add new node\" to start transforming your Pandora FMS DB Cluster " -"into a Pandora FMS DB Cluster." -msgstr "" -"Cliquez Ā« ajouter nouveau noeud Ā» pour commencer Ć  transformer votre Grappe de " -"Base de donnĆ©es Pandora FMS dans une Grappe de base de donnĆ©es Pandora FMS." - -#: ../../general/first_task/HA_cluster_builder.php:59 -msgid "Add new node" -msgstr "Ajouter nouveau noeud" - -#: ../../general/first_task/tags.php:18 -msgid "There are no tags defined yet." -msgstr "Aucune Ć©tiquette dĆ©finie jusqu'Ć  prĆ©sent" - -#: ../../general/first_task/tags.php:22 ../../operation/tree.php:66 -#: ../../operation/events/events.build_table.php:283 -#: ../../operation/agentes/status_monitor.php:550 -#: ../../operation/agentes/group_view.php:222 -#: ../../operation/agentes/alerts_status.functions.php:107 -#: ../../operation/users/user_edit.php:815 -#: ../../include/lib/Dashboard/Widgets/events_list.php:450 -#: ../../include/lib/Dashboard/Widgets/tree_view.php:329 -#: ../../include/functions_events.php:203 ../../include/functions_events.php:272 -#: ../../include/functions_events.php:5138 -#: ../../include/functions_events.php:6747 -#: ../../include/functions_treeview.php:168 -#: ../../include/functions_profile.php:215 -#: ../../include/functions_reporting_html.php:3445 -#: ../../enterprise/operation/agentes/tag_view.php:223 -#: ../../enterprise/operation/agentes/tag_view.php:225 -#: ../../enterprise/operation/agentes/tag_view.php:678 -#: ../../enterprise/meta/include/functions_events_meta.php:106 -#: ../../enterprise/godmode/setup/setup_auth.php:231 -#: ../../enterprise/godmode/setup/setup_auth.php:510 -#: ../../enterprise/godmode/setup/setup_auth.php:1307 -#: ../../enterprise/godmode/modules/configure_local_component.php:550 -#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:971 -#: ../../enterprise/godmode/massive/massive_add_modules_policy.php:163 -#: ../../enterprise/godmode/massive/massive_tags_edit_policy.php:120 -#: ../../mobile/operation/events.php:557 -#: ../../godmode/modules/manage_network_components_form_common.php:351 -#: ../../godmode/tag/edit_tag.php:66 ../../godmode/events/custom_events.php:108 -#: ../../godmode/massive/massive_delete_modules.php:401 -#: ../../godmode/massive/massive_delete_modules.php:515 -#: ../../godmode/massive/massive_copy_modules.php:172 -#: ../../godmode/massive/massive_edit_modules.php:405 -#: ../../godmode/massive/massive_edit_modules.php:491 -#: ../../godmode/massive/massive_edit_modules.php:1047 -msgid "Tags" -msgstr "Ɖtiquettes" - -#: ../../general/first_task/tags.php:25 ../../general/first_task/tags.php:35 -msgid "Create Tags" -msgstr "CrĆ©er des Ć©tiquettes" - -#: ../../general/first_task/tags.php:28 -msgid "" -"Access to modules can be configured by a tagging system.\n" -"\t\t\t\t\t\t\t\tTags are configured on the system and are assigned to the " -"chosen modules.\n" -"\t\t\t\t\t\t\t\tA user's access can therefore be restricted to modules with " -"certain tags." -msgstr "" -"L'accĆØs aux modules peuvent ĆŖtre configurĆ©s par le biais d'un systĆØme " -"d'etiquettes.\n" -"\t\t\t\t\t\t\t\tLes etiquettes sont configurĆ©es dans le systĆØme et sont " -"attribuĆ©s aux modules choisis.\n" -"\t\t\t\t\t\t\t\tL'accĆØs utilisateur peut ĆŖtre limitĆ© aux modules avec des " -"certaines Ć©tiquettes." - -#: ../../general/first_task/custom_fields.php:19 -#: ../../general/first_task/fields_manager.php:18 -msgid "There are no custom fields defined yet." -msgstr "Aucun champ personnalisĆ© dĆ©fini jusqu'Ć  prĆ©sent" - -#: ../../general/first_task/custom_fields.php:24 -#: ../../enterprise/meta/monitoring/custom_fields_view.php:250 -msgid "Custom Fields" -msgstr "Champs personnalisĆ©s" - -#: ../../general/first_task/custom_fields.php:27 -#: ../../general/first_task/custom_fields.php:36 -msgid "Create Custom Fields" -msgstr "CrĆ©er des champs personnalisĆ©s" - -#: ../../general/first_task/custom_fields.php:30 -msgid "" -"Custom fields are an easy way to personalized agent's information.\n" -"\t\t You're able to create custom fields by klicking on 'Administration' -> " -"'Manage monitoring' -> 'Manage custom fields'. " -msgstr "" -"Les champs personnalisĆ©s permettent de personnaliser facilement l'information " -"des agents.\n" -"\t\t Pour crĆ©er des champs personnalisĆ©s, cliquez sur Ā« Administration Ā» -> Ā« " -"GĆ©rer surveillance Ā» -> Ā« GĆ©rer champs personnalisĆ©s Ā». " - -#: ../../general/first_task/omnishell.php:27 -msgid "There is no command defined yet." -msgstr "Il n'y a pas de commande dĆ©finie dĆ©jĆ ." - -#: ../../general/first_task/omnishell.php:31 -#: ../../general/first_task/omnishell.php:34 -#: ../../enterprise/godmode/menu.php:308 -msgid "Omnishell" -msgstr "Omnishell" - -#: ../../general/first_task/omnishell.php:37 -#, php-format -msgid "" -"Omnishell is an enterprise feature which allows you to execute a structured " -"command along any agent in your %s. The only requirement is to have remote " -"configuration enabled in your agent." -msgstr "" -"Omnishell est une caractĆ©ristique Enterprise qui vous permet d'exĆ©cuter une " -"commande structurĆ©e dans n'importe quel agent dans votre %s. Le seul requis " -"est d'avoir la configuration Ć  distance habilitĆ© dans votre agent." - -#: ../../general/first_task/omnishell.php:42 -msgid "" -"You can execute any command on as many agents you need, and check the " -"execution on all of them using the Omnishell Command View" -msgstr "" -"Vous pouvez exĆ©cuter n'importe quelle commande dans aussi d'agents que vous " -"avez besoin, et vĆ©rifiez l'exĆ©cution de tous eux en utilisant la Vue de " -"commande Omnishell" - -#: ../../general/first_task/omnishell.php:50 -msgid "Define a command" -msgstr "DĆ©finissez une commande" - -#: ../../general/first_task/planned_downtime.php:18 -msgid "There are no scheduled downtime defined yet." -msgstr "Il n'ya pas des temps d'inactivitĆ© dĆ©finis programmĆ©s encore." - -#: ../../general/first_task/planned_downtime.php:22 -msgid "Scehduled Downtime" -msgstr "Temps d'inactivitĆ© programmĆ©s" - -#: ../../general/first_task/planned_downtime.php:25 -#: ../../general/first_task/planned_downtime.php:37 -msgid "Create Scheduled Downtime" -msgstr "CrĆ©er temps d'inactivitĆ© programmĆ©s" - -#: ../../general/first_task/planned_downtime.php:28 -#, php-format -msgid "" -"%s contains a scheduled downtime management system.\n" -"\t\t\t\t\t\tThis system was designed to deactivate alerts during specific " -"intervals whenever there is down time by deactivating the agent.\n" -"\t\t\t\t\t\tIf an agent is deactivated, it doesn't gather information. During " -"down time, down-time intervals aren't taken into\n" -"\t\t\t\t\t\taccount for most metrics or report types, because agents don't " -"contain any data within those intervals." -msgstr "" -"%s contient un systĆØme de gestion de temps d'arrĆŖt programmĆ©s.\n" -"\t\t\t\t\t\tCe systĆØme a Ć©tĆ© conƧu pour dĆ©sactiver des alertes pendant des " -"temps spĆ©cifiques lors du temps d'arrĆŖt en dĆ©sactivant l'agent.\n" -"\t\t\t\t\t\tS'il y a un agent dĆ©sactivĆ©, il ne recueille pas des informations. " -"Pendant ce temps d'inactivitĆ©, les temps d'inactivitĆ© ne sont pas tenus sur\n" -"\t\t\t\t\t\tcompte pour la majoritĆ© des mĆ©triques ou types de rapport, parce " -"que le agents ne contiennent pas des donnĆ©es dans ces intervalles." - -#: ../../general/first_task/cluster_builder.php:38 ../../operation/tree.php:183 -#: ../../operation/menu.php:31 ../../operation/menu.php:154 -#: ../../operation/snmpconsole/snmp_mib_uploader.php:56 -#: ../../operation/snmpconsole/snmp_browser.php:86 -#: ../../operation/snmpconsole/snmp_statistics.php:98 -#: ../../operation/snmpconsole/snmp_view.php:693 -#: ../../operation/snmpconsole/snmp_view.php:802 ../../operation/heatmap.php:133 -#: ../../operation/agentes/status_monitor.php:104 -#: ../../operation/agentes/alerts_status.php:200 -#: ../../operation/agentes/group_view.php:98 -#: ../../operation/agentes/interface_view.php:72 -#: ../../operation/agentes/tactical.php:78 -#: ../../operation/agentes/estado_agente.php:224 -#: ../../operation/agentes/ver_agente.php:1915 -#: ../../include/class/AgentsAlerts.class.php:738 -#: ../../enterprise/tools/ipam/ipam_editor.php:261 -#: ../../enterprise/views/cluster/list.php:31 -#: ../../enterprise/operation/services/services.treeview_services.php:61 -#: ../../enterprise/operation/services/services.list.php:58 -#: ../../enterprise/operation/services/services.table_services.php:38 -#: ../../enterprise/operation/agentes/tag_view.php:50 -#: ../../enterprise/operation/inventory/inventory.php:146 -#: ../../enterprise/include/ajax/ipam.ajax.php:455 -#: ../../enterprise/include/class/SAPView.class.php:155 -#: ../../enterprise/include/class/SAPView.class.php:199 -#: ../../enterprise/meta/general/main_menu.php:181 -#: ../../enterprise/meta/general/logon_ok.php:75 #: ../../enterprise/meta/general/main_header.php:91 +#: ../../enterprise/meta/general/logon_ok.php:75 +#: ../../enterprise/meta/general/main_menu.php:181 #: ../../enterprise/extensions/vmware/vmware_view.php:1394 +#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:53 #: ../../enterprise/godmode/services/services.massive.meta.php:42 #: ../../enterprise/godmode/services/services.massive.elements.php:44 #: ../../enterprise/godmode/reporting/aws_view.php:115 #: ../../enterprise/godmode/reporting/aws_view.php:148 -#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:53 -#: ../../extensions/realtime_graphs.php:67 ../../extensions/module_groups.php:260 -#: ../../extensions/agents_modules.php:474 -#: ../../godmode/snmpconsole/snmp_filters.php:55 +#: ../../enterprise/include/ajax/ipam.ajax.php:455 +#: ../../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/services.treeview_services.php:62 +#: ../../enterprise/operation/services/services.list.php:58 +#: ../../enterprise/operation/services/services.table_services.php:38 +#: ../../enterprise/tools/ipam/ipam_editor.php:261 +#: ../../extensions/agents_modules.php:474 ../../extensions/module_groups.php:260 +#: ../../extensions/realtime_graphs.php:67 #: ../../godmode/snmpconsole/snmp_trap_generator.php:47 +#: ../../godmode/snmpconsole/snmp_filters.php:55 +#: ../../include/class/AgentsAlerts.class.php:738 ../../operation/heatmap.php:133 +#: ../../operation/tree.php:183 ../../operation/agentes/alerts_status.php:199 +#: ../../operation/agentes/estado_agente.php:224 +#: ../../operation/agentes/interface_view.php:72 +#: ../../operation/agentes/status_monitor.php:104 +#: ../../operation/agentes/group_view.php:98 +#: ../../operation/agentes/ver_agente.php:1915 +#: ../../operation/agentes/tactical.php:78 +#: ../../operation/snmpconsole/snmp_statistics.php:98 +#: ../../operation/snmpconsole/snmp_browser.php:86 +#: ../../operation/snmpconsole/snmp_view.php:693 +#: ../../operation/snmpconsole/snmp_view.php:802 +#: ../../operation/snmpconsole/snmp_mib_uploader.php:56 ../../operation/menu.php:31 +#: ../../operation/menu.php:154 ../../general/first_task/cluster_builder.php:38 msgid "Monitoring" msgstr "Surveillance" -#: ../../general/first_task/cluster_builder.php:46 -msgid "There are no clusters defined yet." -msgstr "Aucune grappe dĆ©finie jusqu'Ć  prĆ©sent" +#: ../../enterprise/views/cluster/list.php:31 +#: ../../general/first_task/HA_cluster_builder.php:42 +#: ../../general/first_task/cluster_builder.php:29 +#: ../../general/first_task/cluster_builder.php:51 +msgid "Clusters" +msgstr "Grappes" -#: ../../general/first_task/cluster_builder.php:54 -#: ../../general/first_task/cluster_builder.php:72 -msgid "Create Cluster" -msgstr "CrĆ©er une grappe" +#: ../../enterprise/views/cluster/list.php:61 +#: ../../enterprise/meta/advanced/servers.build_table.php:62 +#: ../../enterprise/meta/advanced/metasetup.relations.php:335 +#: ../../enterprise/meta/advanced/metasetup.relations.php:413 +#: ../../enterprise/meta/advanced/metasetup.relations.php:548 +#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:68 +#: ../../enterprise/godmode/modules/configure_local_component.php:212 +#: ../../enterprise/godmode/policies/policy_modules.php:1465 +#: ../../enterprise/godmode/services/services.elements.php:113 +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:83 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:104 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:207 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1654 +#: ../../enterprise/godmode/reporting/reporting_builder.template_list_item.php:201 +#: ../../enterprise/include/functions_reporting_csv.php:1605 +#: ../../enterprise/include/functions_reporting_csv.php:1721 +#: ../../enterprise/include/functions_reporting_csv.php:1961 +#: ../../enterprise/include/functions_reporting_csv.php:2029 +#: ../../enterprise/include/functions_services.php:1602 +#: ../../enterprise/operation/agentes/policy_view.php:396 +#: ../../enterprise/operation/agentes/tag_view.php:605 +#: ../../enterprise/operation/agentes/ver_agente.php:32 +#: ../../godmode/modules/manage_network_templates_form.php:232 +#: ../../godmode/modules/manage_network_components_form_common.php:64 +#: ../../godmode/modules/manage_network_components.php:750 +#: ../../godmode/update_manager/update_manager.history.php:41 +#: ../../godmode/agentes/agent_template.php:236 +#: ../../godmode/agentes/modificar_agente.php:650 +#: ../../godmode/agentes/planned_downtime.list.php:613 +#: ../../godmode/agentes/planned_downtime.editor.php:588 +#: ../../godmode/agentes/module_manager_editor_common.php:288 +#: ../../godmode/agentes/module_manager_editor_common.php:401 +#: ../../godmode/agentes/module_manager_editor_common.php:1305 +#: ../../godmode/agentes/module_manager.php:850 +#: ../../godmode/alerts/alert_templates.php:37 +#: ../../godmode/alerts/alert_templates.php:302 +#: ../../godmode/alerts/alert_templates.php:387 ../../godmode/setup/news.php:247 +#: ../../godmode/setup/gis_step_2.php:235 ../../godmode/setup/setup_integria.php:408 +#: ../../godmode/setup/setup_integria.php:530 +#: ../../godmode/reporting/reporting_builder.list_items.php:212 +#: ../../godmode/reporting/reporting_builder.list_items.php:249 +#: ../../godmode/reporting/reporting_builder.list_items.php:372 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1034 +#: ../../godmode/reporting/visual_console_builder.wizard.php:135 +#: ../../godmode/reporting/visual_console_builder.wizard.php:283 +#: ../../godmode/events/event_responses.editor.php:159 +#: ../../godmode/servers/servers.build_table.php:81 +#: ../../godmode/servers/modificar_server.php:72 +#: ../../godmode/servers/plugin.php:816 ../../mobile/operation/visualmaps.php:125 +#: ../../mobile/operation/visualmaps.php:126 ../../mobile/operation/events.php:658 +#: ../../mobile/operation/events.php:659 ../../mobile/operation/events.php:812 +#: ../../mobile/operation/events.php:972 ../../mobile/operation/events.php:973 +#: ../../include/functions_visual_map_editor.php:702 +#: ../../include/functions_visual_map_editor.php:720 +#: ../../include/functions_visual_map_editor.php:848 +#: ../../include/functions_reporting_html.php:1049 +#: ../../include/functions_reporting_html.php:1057 +#: ../../include/functions_reporting_html.php:1311 +#: ../../include/functions_reporting_html.php:1319 +#: ../../include/functions_reporting_html.php:2426 +#: ../../include/functions_reporting_html.php:3482 +#: ../../include/functions_reporting_html.php:5249 +#: ../../include/ajax/heatmap.ajax.php:75 ../../include/ajax/module.php:977 +#: ../../include/rest-api/models/VisualConsole/Items/Percentile.php:467 +#: ../../include/functions_reports.php:1067 ../../include/functions_html.php:5502 +#: ../../include/class/ModuleTemplates.class.php:1209 +#: ../../include/class/CalendarManager.class.php:1028 +#: ../../include/class/CalendarManager.class.php:1062 +#: ../../include/class/AgentWizard.class.php:1197 +#: ../../include/class/AgentWizard.class.php:4054 +#: ../../include/lib/Dashboard/Widgets/service_view.php:251 +#: ../../include/lib/Dashboard/Widgets/custom_graph.php:327 +#: ../../include/lib/Dashboard/Widgets/clock.php:221 +#: ../../include/functions_snmp_browser.php:564 +#: ../../include/functions_events.php:2359 ../../include/functions_events.php:4563 +#: ../../operation/agentes/estado_agente.php:757 +#: ../../operation/agentes/ver_agente.php:1153 +#: ../../operation/netflow/nf_live_view.php:319 +#: ../../operation/incidents/configure_integriaims_incident.php:234 +#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:326 +#: ../../operation/search_modules.php:34 +msgid "Type" +msgstr "Type" -#: ../../general/first_task/cluster_builder.php:57 -msgid "" -"A cluster is a group of devices that provide the same service in high " -"availability." +#: ../../enterprise/views/cluster/list.php:62 +#: ../../include/functions_reporting_html.php:5684 +#: ../../operation/agentes/pandora_networkmap.php:708 +msgid "Nodes" +msgstr "Nœuds" + +#: ../../enterprise/views/cluster/list.php:122 +msgid "New cluster" +msgstr "Nouveau grappe" + +#: ../../enterprise/views/cluster/view.php:44 +#: ../../enterprise/views/cluster/view.php:63 +#: ../../enterprise/views/cluster/edit.php:41 +#: ../../enterprise/views/cluster/edit.php:68 +msgid "Cluster list" +msgstr "Liste de grappes" + +#: ../../enterprise/views/cluster/view.php:50 +#: ../../enterprise/views/cluster/view.php:81 +msgid "Cluster details" +msgstr "DĆ©tails du grappe" + +#: ../../enterprise/views/cluster/view.php:74 +msgid "Edit this cluster" +msgstr "Ɖditer ce grappe" + +#: ../../enterprise/views/cluster/view.php:162 +#: ../../enterprise/views/cluster/view.php:164 +#: ../../enterprise/meta/include/functions_wizard_meta.php:240 +#: ../../enterprise/meta/include/functions_wizard_meta.php:525 +#: ../../enterprise/meta/include/functions_wizard_meta.php:597 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1145 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1530 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1623 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1817 +#: ../../enterprise/meta/agentsearch.php:251 +#: ../../enterprise/meta/agentsearch.php:258 +#: ../../enterprise/godmode/modules/configure_local_component.php:459 +#: ../../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/massive/massive_edit_policy_modules.php:701 +#: ../../enterprise/godmode/setup/edit_skin.php:276 +#: ../../enterprise/include/class/VMware.app.php:888 +#: ../../enterprise/include/class/DatabaseHA.class.php:211 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2038 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3255 +#: ../../enterprise/include/lib/NetworkManager.php:190 +#: ../../enterprise/include/functions_policies.php:4782 +#: ../../godmode/groups/group_list.php:908 +#: ../../godmode/agentes/modificar_agente.php:761 +#: ../../godmode/agentes/module_manager_editor_common.php:257 +#: ../../godmode/agentes/module_manager_editor_common.php:897 +#: ../../godmode/agentes/module_manager_editor_common.php:1059 +#: ../../godmode/massive/massive_edit_agents.php:917 +#: ../../godmode/massive/massive_edit_agents.php:1017 +#: ../../godmode/massive/massive_edit_modules.php:765 +#: ../../godmode/alerts/alert_list.list.php:149 +#: ../../godmode/alerts/configure_alert_template.php:899 +#: ../../godmode/alerts/alert_view.php:541 ../../mobile/operation/agent.php:167 +#: ../../mobile/operation/alerts.php:68 +#: ../../include/functions_visual_map_editor.php:826 +#: ../../include/functions_reporting_html.php:3448 +#: ../../include/functions_treeview.php:72 ../../include/functions_treeview.php:613 +#: ../../include/rest-api/models/VisualConsole/Items/StaticGraph.php:405 +#: ../../include/functions_reporting.php:6505 ../../operation/search_agents.php:93 +#: ../../operation/agentes/estado_generalagente.php:99 +#: ../../operation/agentes/estado_generalagente.php:101 +#: ../../operation/agentes/alerts_status.functions.php:99 +msgid "Disabled" +msgstr "DĆ©sactivĆ©" + +#: ../../enterprise/views/cluster/view.php:168 +#: ../../enterprise/views/cluster/view.php:170 +#: ../../enterprise/godmode/massive/massive_create_services.php:819 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:1028 +#: ../../enterprise/godmode/services/services.service.php:746 +#: ../../godmode/agentes/modificar_agente.php:775 +#: ../../godmode/agentes/planned_downtime.list.php:655 +#: ../../godmode/agentes/planned_downtime.editor.php:594 +#: ../../godmode/agentes/agent_manager.php:683 +#: ../../godmode/agentes/module_manager_editor_common.php:1056 +#: ../../godmode/agentes/module_manager.php:985 +#: ../../godmode/massive/massive_edit_agents.php:990 +#: ../../godmode/massive/massive_edit_modules.php:1104 +#: ../../mobile/operation/agent.php:174 ../../include/ajax/module.php:1128 +#: ../../include/class/Tree.class.php:907 ../../operation/search_agents.php:100 +#: ../../operation/agentes/estado_agente.php:831 +#: ../../operation/agentes/estado_generalagente.php:110 +#: ../../operation/agentes/estado_generalagente.php:120 +msgid "Quiet" +msgstr "Mode silencieux" + +#: ../../enterprise/views/cluster/view.php:178 +#: ../../enterprise/views/cluster/view.php:186 +#: ../../godmode/agentes/modificar_agente.php:783 +#: ../../operation/search_agents.php:111 +#: ../../operation/agentes/estado_agente.php:839 +#: ../../operation/agentes/estado_generalagente.php:131 +#: ../../operation/agentes/estado_generalagente.php:139 +msgid "Agent in scheduled downtime" +msgstr "Agent dans temps d'arrĆŖt programmĆ©" + +#: ../../enterprise/views/cluster/view.php:223 +msgid "Force cluster status calculation" +msgstr "Forcer calcule d'Ć©tat du grappe" + +#: ../../enterprise/views/cluster/view.php:253 +#: ../../enterprise/meta/agentsearch.php:136 +#: ../../enterprise/godmode/modules/configure_local_component.php:177 +#: ../../enterprise/godmode/modules/manage_inventory_modules.php:274 +#: ../../enterprise/godmode/modules/local_components.php:561 +#: ../../enterprise/godmode/modules/local_components.php:586 +#: ../../enterprise/godmode/modules/local_components.php:622 +#: ../../enterprise/godmode/modules/manage_inventory_modules_form.php:103 +#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:254 +#: ../../enterprise/include/functions_reporting_csv.php:718 +#: ../../enterprise/include/class/DeploymentCenter.class.php:756 +#: ../../enterprise/include/class/DeploymentCenter.class.php:817 +#: ../../enterprise/include/class/DeploymentCenter.class.php:1289 +#: ../../enterprise/include/class/DeploymentCenter.class.php:1397 +#: ../../enterprise/include/class/AgentRepository.class.php:352 +#: ../../enterprise/include/class/AgentRepository.class.php:640 +#: ../../enterprise/include/class/AgentRepository.class.php:686 +#: ../../enterprise/operation/agentes/tag_view.php:602 +#: ../../enterprise/tools/ipam/ipam_network.php:398 +#: ../../godmode/agentes/modificar_agente.php:649 +#: ../../godmode/agentes/planned_downtime.editor.php:922 +#: ../../godmode/agentes/agent_manager.php:392 +#: ../../godmode/massive/massive_edit_agents.php:719 +#: ../../godmode/reporting/reporting_builder.item_editor.php:71 +#: ../../mobile/operation/agents.php:94 ../../mobile/operation/agents.php:404 +#: ../../include/functions_reporting_html.php:1561 +#: ../../include/functions_reporting_html.php:3433 +#: ../../include/ajax/heatmap.ajax.php:325 +#: ../../include/class/Diagnostics.class.php:748 +#: ../../include/lib/Dashboard/Widgets/os_quick_report.php:283 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:332 +#: ../../include/functions_events.php:4039 ../../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 +#: ../../operation/gis_maps/ajax.php:297 +msgid "OS" +msgstr "SystĆØme d'exploitation" + +#: ../../enterprise/views/cluster/view.php:273 +#: ../../operation/agentes/estado_generalagente.php:212 +msgid "IP address" +msgstr "Adresse IP" + +#: ../../enterprise/views/cluster/view.php:278 +#: ../../enterprise/views/cluster/view.php:293 +#: ../../enterprise/meta/advanced/servers.build_table.php:100 +#: ../../enterprise/meta/advanced/servers.build_table.php:101 +#: ../../enterprise/meta/advanced/servers.build_table.php:107 +#: ../../enterprise/meta/advanced/metasetup.visual.php:895 +#: ../../enterprise/include/functions_visual_map.php:320 +#: ../../enterprise/include/functions_servicemap.php:471 +#: ../../enterprise/include/functions_aws.php:507 +#: ../../enterprise/include/functions_aws.php:508 +#: ../../enterprise/include/functions_reporting.php:6158 +#: ../../enterprise/include/functions_services.php:1190 +#: ../../enterprise/include/functions_services.php:1371 +#: ../../enterprise/include/functions_services.php:2081 +#: ../../enterprise/include/lib/Metaconsole/Node.php:453 +#: ../../enterprise/include/lib/Metaconsole/Node.php:1129 +#: ../../enterprise/tools/ipam/ipam_network.php:435 +#: ../../enterprise/tools/ipam/ipam_network.php:515 +#: ../../enterprise/tools/ipam/ipam_ajax.php:366 +#: ../../enterprise/tools/ipam/ipam_ajax.php:387 +#: ../../godmode/modules/manage_network_components.php:776 +#: ../../godmode/modules/manage_network_components.php:777 +#: ../../godmode/extensions.php:186 ../../godmode/extensions.php:201 +#: ../../godmode/agentes/planned_downtime.list.php:812 +#: ../../godmode/alerts/alert_view.php:135 +#: ../../godmode/servers/servers.build_table.php:147 +#: ../../godmode/servers/servers.build_table.php:148 +#: ../../godmode/servers/servers.build_table.php:154 +#: ../../mobile/operation/agent.php:192 ../../mobile/operation/agent.php:200 +#: ../../mobile/operation/events.php:307 ../../mobile/operation/events.php:319 +#: ../../mobile/operation/events.php:334 ../../mobile/operation/events.php:443 +#: ../../mobile/operation/events.php:493 ../../mobile/operation/events.php:509 +#: ../../include/functions_servers.php:1362 +#: ../../include/functions_reporting_html.php:651 +#: ../../include/functions_reporting_html.php:654 +#: ../../include/functions_reporting_html.php:5323 +#: ../../include/functions_reporting_html.php:5376 ../../include/functions.php:1124 +#: ../../include/functions.php:1130 ../../include/functions.php:1134 +#: ../../include/ajax/module.php:1168 ../../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/functions_events.php:3396 +#: ../../include/functions_events.php:3509 ../../include/functions_events.php:3529 +#: ../../include/functions_events.php:3538 ../../include/functions_events.php:3547 +#: ../../include/functions_events.php:3548 ../../include/functions_events.php:3560 +#: ../../include/functions_events.php:3611 ../../include/functions_events.php:3644 +#: ../../include/functions_events.php:3710 ../../include/functions_events.php:3727 +#: ../../include/functions_events.php:3734 ../../include/functions_events.php:3800 +#: ../../include/functions_events.php:3872 ../../include/functions_events.php:3996 +#: ../../include/functions_events.php:4035 ../../include/functions_events.php:4049 +#: ../../include/functions_events.php:4054 ../../include/functions_events.php:4084 +#: ../../include/functions_events.php:4170 ../../include/functions_events.php:4250 +#: ../../include/functions_events.php:4260 ../../include/functions_events.php:4477 +#: ../../include/functions_events.php:4548 ../../include/functions_events.php:4637 +#: ../../include/functions_events.php:4666 ../../include/functions_events.php:4681 +#: ../../include/functions_events.php:4691 ../../include/functions_events.php:4701 +#: ../../include/functions_events.php:5131 ../../include/functions_events.php:5145 +#: ../../include/functions_events.php:5150 ../../include/functions_events.php:5153 +#: ../../include/functions_events.php:5161 ../../include/functions_events.php:5170 +#: ../../include/functions_events.php:5182 ../../include/functions_events.php:5235 +#: ../../include/functions_events.php:5262 ../../include/functions_events.php:5287 +#: ../../include/functions_events.php:5331 +#: ../../operation/agentes/interface_view.functions.php:682 +#: ../../operation/agentes/interface_view.functions.php:683 +#: ../../operation/agentes/interface_view.functions.php:684 +#: ../../operation/agentes/interface_view.functions.php:685 +#: ../../operation/agentes/interface_view.functions.php:686 +#: ../../operation/agentes/status_monitor.php:1710 +#: ../../operation/agentes/estado_generalagente.php:217 +#: ../../operation/agentes/estado_generalagente.php:230 +#: ../../operation/agentes/estado_generalagente.php:242 +#: ../../operation/agentes/estado_generalagente.php:411 +#: ../../operation/agentes/estado_generalagente.php:427 +#: ../../operation/agentes/estado_generalagente.php:438 +#: ../../operation/snmpconsole/snmp_view.php:974 +#: ../../operation/snmpconsole/snmp_view.php:994 +msgid "N/A" +msgstr "S.O." + +#: ../../enterprise/views/cluster/view.php:309 +#: ../../include/functions_treeview.php:731 +#: ../../operation/agentes/estado_generalagente.php:225 +#: ../../operation/gis_maps/ajax.php:341 +msgid "Agent Version" +msgstr "Version de l'agent" + +#: ../../enterprise/views/cluster/view.php:314 +msgid "Cluster agent" +msgstr "Agent de grappe" + +#: ../../enterprise/views/cluster/view.php:369 +#: ../../operation/agentes/estado_generalagente.php:890 +msgid "Events (Last 24h)" +msgstr "ƉvĆ©nements (DerniĆØres 24h)" + +#: ../../enterprise/views/cluster/view.php:441 +#: ../../operation/agentes/stat_win.php:451 +#: ../../operation/agentes/interface_traffic_graph_win.php:276 +msgid "Reload" +msgstr "Recharger" + +#: ../../enterprise/views/cluster/edit.php:57 +msgid "cluster " +msgstr "grappe " + +#: ../../enterprise/views/cluster/edit.php:88 +msgid "View this cluster" +msgstr "Voir le grappe" + +#: ../../enterprise/views/ipam/sites/list.php:48 +#: ../../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/agentes/agent_manager.php:565 +#: ../../godmode/massive/massive_edit_agents.php:648 +#: ../../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:1218 +#: ../../operation/agentes/estado_generalagente.php:425 +msgid "Parent" +msgstr "Parent" + +#: ../../enterprise/views/ipam/sites/edit.php:71 +#: ../../enterprise/meta/advanced/metasetup.visual.php:289 +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:833 +#: ../../enterprise/meta/advanced/metasetup.relations.php:245 +#: ../../enterprise/meta/advanced/metasetup.setup.php:394 +#: ../../enterprise/meta/advanced/metasetup.setup.php:400 +#: ../../enterprise/meta/advanced/metasetup.setup.php:410 +#: ../../enterprise/meta/advanced/metasetup.setup.php:416 +#: ../../enterprise/meta/monitoring/custom_fields_view.php:256 +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:266 +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:363 +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:420 +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:688 +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:759 +#: ../../enterprise/meta/monitoring/wizard/wizard.php:142 +#: ../../enterprise/meta/event/custom_events.php:227 +#: ../../enterprise/meta/event/custom_events.php:273 +#: ../../enterprise/godmode/modules/configure_local_component.php:543 +#: ../../enterprise/godmode/modules/configure_local_component.php:698 +#: ../../enterprise/godmode/modules/configure_local_component.php:704 +#: ../../enterprise/godmode/modules/configure_local_component.php:712 +#: ../../enterprise/godmode/modules/configure_local_component.php:718 +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:992 +#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:473 +#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:604 +#: ../../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:579 +#: ../../enterprise/godmode/policies/policy_external_alerts.php:688 +#: ../../enterprise/godmode/policies/policy_agents.php:391 +#: ../../enterprise/godmode/policies/policy_agents.php:1694 +#: ../../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 +#: ../../enterprise/godmode/massive/massive_add_alerts_policy.php:132 +#: ../../enterprise/godmode/massive/massive_add_alerts_policy.php:144 +#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:396 +#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:473 +#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:549 +#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:550 +#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:551 +#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:552 +#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:601 +#: ../../enterprise/godmode/massive/massive_delete_alerts_snmp.php:28 +#: ../../enterprise/godmode/massive/massive_delete_alerts_snmp.php:205 +#: ../../enterprise/godmode/massive/massive_delete_alerts_snmp.php:244 +#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:29 +#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:265 +#: ../../enterprise/godmode/massive/massive_tags_edit_policy.php:117 +#: ../../enterprise/godmode/massive/massive_tags_edit_policy.php:197 +#: ../../enterprise/godmode/massive/massive_delete_alerts_policy.php:121 +#: ../../enterprise/godmode/massive/massive_delete_alerts_policy.php:142 +#: ../../enterprise/godmode/massive/massive_delete_alerts_policy.php:154 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:471 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:862 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:977 +#: ../../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:591 +#: ../../enterprise/godmode/setup/setup.php:608 +#: ../../enterprise/godmode/setup/setup.php:617 +#: ../../enterprise/godmode/setup/setup.php:634 +#: ../../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 +#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:810 +#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:820 +#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:830 +#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:834 +#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:861 +#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:194 +#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:578 +#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:597 +#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:611 +#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:621 +#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:631 +#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:635 +#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:661 +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:60 +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:527 +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:544 +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:560 +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:576 +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:600 +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:616 +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:658 +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:691 +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:702 +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:721 +#: ../../enterprise/godmode/reporting/graph_template_wizard.php:193 +#: ../../enterprise/godmode/reporting/graph_template_wizard.php:398 +#: ../../enterprise/godmode/reporting/graph_template_wizard.php:417 +#: ../../enterprise/godmode/reporting/graph_template_wizard.php:428 +#: ../../enterprise/godmode/reporting/graph_template_wizard.php:443 +#: ../../enterprise/godmode/reporting/graph_template_wizard.php:475 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:81 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:401 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:424 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:937 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:953 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:974 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:983 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:1340 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:1368 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:1389 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:1416 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:184 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:451 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:596 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:604 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:614 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:636 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:689 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:722 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:744 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:754 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:775 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:797 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:822 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:845 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:866 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:1148 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:1272 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:1287 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:1297 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:1312 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:1334 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:314 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2988 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3205 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3289 +#: ../../enterprise/godmode/reporting/visual_console_builder.wizard_services.php:215 +#: ../../enterprise/godmode/reporting/visual_console_builder.wizard_services.php:247 +#: ../../enterprise/godmode/reporting/visual_console_builder.wizard_services.php:253 +#: ../../enterprise/godmode/reporting/visual_console_builder.wizard_services.php:265 +#: ../../enterprise/godmode/reporting/visual_console_builder.wizard_services.php:275 +#: ../../enterprise/godmode/servers/manage_export_form.php:85 +#: ../../enterprise/include/functions_tasklist.php:317 +#: ../../enterprise/include/ajax/ipam.ajax.php:400 +#: ../../enterprise/include/ajax/ipam.ajax.php:428 +#: ../../enterprise/include/class/Omnishell.class.php:858 +#: ../../enterprise/include/class/Omnishell.class.php:859 +#: ../../enterprise/include/class/SAP.app.php:615 +#: ../../enterprise/include/class/SAP.app.php:810 +#: ../../enterprise/include/class/SAP.app.php:811 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:895 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:922 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1032 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1185 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1195 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2002 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2511 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2556 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3523 +#: ../../enterprise/operation/agentes/ver_agente.php:38 +#: ../../enterprise/operation/log/log_viewer.php:735 +#: ../../enterprise/tools/ipam/ipam_network.php:594 +#: ../../enterprise/tools/ipam/ipam_supernet_config.php:611 +#: ../../enterprise/tools/ipam/ipam_supernet_config.php:783 +#: ../../enterprise/tools/ipam/ipam_list.php:112 +#: ../../enterprise/tools/ipam/ipam_list.php:135 +#: ../../enterprise/tools/ipam/ipam_list.php:157 +#: ../../enterprise/tools/ipam/ipam_editor.php:206 +#: ../../enterprise/tools/ipam/ipam_editor.php:234 +#: ../../godmode/modules/manage_nc_groups_form.php:77 +#: ../../godmode/modules/manage_network_components_form_plugin.php:41 +#: ../../godmode/modules/manage_network_components_form_common.php:343 +#: ../../godmode/modules/manage_network_components_form_network.php:248 +#: ../../godmode/modules/manage_network_components_form.php:642 +#: ../../godmode/modules/manage_network_components_form.php:648 +#: ../../godmode/modules/manage_network_components_form.php:657 +#: ../../godmode/modules/manage_network_components_form.php:663 +#: ../../godmode/groups/configure_group.php:188 +#: ../../godmode/groups/configure_group.php:210 +#: ../../godmode/users/configure_user.php:1054 +#: ../../godmode/users/configure_user.php:1068 +#: ../../godmode/users/configure_user.php:1262 +#: ../../godmode/users/configure_user.php:1274 +#: ../../godmode/agentes/status_monitor_custom_fields.php:218 +#: ../../godmode/agentes/status_monitor_custom_fields.php:266 +#: ../../godmode/agentes/module_manager_editor_plugin.php:55 +#: ../../godmode/agentes/module_manager_editor_network.php:465 +#: ../../godmode/agentes/agent_manager.php:428 +#: ../../godmode/agentes/agent_manager.php:461 +#: ../../godmode/agentes/agent_manager.php:718 +#: ../../godmode/agentes/agent_manager.php:884 +#: ../../godmode/agentes/module_manager_editor_common.php:733 +#: ../../godmode/agentes/module_manager_editor_common.php:1149 +#: ../../godmode/agentes/module_manager_editor_common.php:1405 +#: ../../godmode/agentes/module_manager_editor_common.php:1412 +#: ../../godmode/agentes/module_manager_editor_common.php:1423 +#: ../../godmode/agentes/module_manager_editor_common.php:1431 +#: ../../godmode/snmpconsole/snmp_alert.php:40 +#: ../../godmode/snmpconsole/snmp_alert.php:1169 +#: ../../godmode/massive/massive_copy_modules.php:374 +#: ../../godmode/massive/massive_copy_modules.php:508 +#: ../../godmode/massive/massive_delete_modules.php:502 +#: ../../godmode/massive/massive_delete_modules.php:594 +#: ../../godmode/massive/massive_delete_modules.php:679 +#: ../../godmode/massive/massive_delete_modules.php:728 +#: ../../godmode/massive/massive_delete_modules.php:736 +#: ../../godmode/massive/massive_delete_modules.php:737 +#: ../../godmode/massive/massive_delete_modules.php:738 +#: ../../godmode/massive/massive_delete_modules.php:739 +#: ../../godmode/massive/massive_delete_modules.php:805 +#: ../../godmode/massive/massive_delete_modules.php:835 +#: ../../godmode/massive/massive_add_alerts.php:304 +#: ../../godmode/massive/massive_edit_plugins.php:338 +#: ../../godmode/massive/massive_edit_agents.php:740 +#: ../../godmode/massive/massive_delete_alerts.php:365 +#: ../../godmode/massive/massive_add_action_alerts.php:341 +#: ../../godmode/massive/massive_edit_modules.php:458 +#: ../../godmode/massive/massive_edit_modules.php:919 +#: ../../godmode/massive/massive_edit_modules.php:1053 +#: ../../godmode/massive/massive_edit_modules.php:1169 +#: ../../godmode/massive/massive_edit_modules.php:1204 +#: ../../godmode/massive/massive_edit_modules.php:1259 +#: ../../godmode/massive/massive_edit_modules.php:1345 +#: ../../godmode/massive/massive_edit_modules.php:1418 +#: ../../godmode/massive/massive_edit_modules.php:1527 +#: ../../godmode/massive/massive_edit_modules.php:1528 +#: ../../godmode/massive/massive_edit_modules.php:1529 +#: ../../godmode/massive/massive_edit_modules.php:1530 +#: ../../godmode/massive/massive_edit_modules.php:1769 +#: ../../godmode/massive/massive_edit_modules.php:1829 +#: ../../godmode/alerts/alert_actions.php:291 +#: ../../godmode/alerts/alert_list.list.php:763 +#: ../../godmode/alerts/alert_commands.php:302 +#: ../../godmode/alerts/alert_commands.php:316 +#: ../../godmode/alerts/alert_commands.php:376 +#: ../../godmode/alerts/alert_commands.php:389 +#: ../../godmode/alerts/configure_alert_template.php:650 +#: ../../godmode/alerts/configure_alert_template.php:777 +#: ../../godmode/alerts/configure_alert_template.php:798 +#: ../../godmode/setup/os.builder.php:41 ../../godmode/setup/setup_visuals.php:401 +#: ../../godmode/setup/setup_visuals.php:420 +#: ../../godmode/setup/setup_visuals.php:950 +#: ../../godmode/reporting/create_container.php:489 +#: ../../godmode/reporting/graph_builder.graph_editor.php:329 +#: ../../godmode/reporting/reporting_builder.item_editor.php:198 +#: ../../godmode/reporting/reporting_builder.item_editor.php:959 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2128 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2201 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2222 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2254 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3167 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3328 +#: ../../godmode/reporting/visual_console_builder.elements.php:482 +#: ../../godmode/reporting/visual_console_builder.elements.php:633 +#: ../../godmode/reporting/visual_console_builder.elements.php:643 +#: ../../godmode/reporting/visual_console_builder.wizard.php:266 +#: ../../godmode/reporting/visual_console_builder.wizard.php:438 +#: ../../godmode/reporting/visual_console_builder.wizard.php:451 +#: ../../godmode/reporting/visual_console_builder.wizard.php:485 +#: ../../godmode/reporting/visual_console_builder.wizard.php:498 +#: ../../godmode/reporting/visual_console_builder.wizard.php:536 +#: ../../godmode/reporting/visual_console_builder.wizard.php:537 +#: ../../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:699 +#: ../../godmode/events/custom_events.php:200 +#: ../../godmode/events/custom_events.php:248 +#: ../../godmode/wizards/HostDevices.class.php:1098 +#: ../../mobile/operation/events.php:930 +#: ../../include/functions_visual_map_editor.php:404 +#: ../../include/functions_visual_map_editor.php:406 +#: ../../include/functions_visual_map_editor.php:622 +#: ../../include/functions_visual_map_editor.php:957 +#: ../../include/functions_visual_map_editor.php:1010 +#: ../../include/functions_visual_map_editor.php:1072 +#: ../../include/functions.php:1073 ../../include/functions_cron.php:642 +#: ../../include/functions_networkmap.php:1519 +#: ../../include/ajax/planned_downtime.ajax.php:85 +#: ../../include/ajax/custom_fields.php:668 ../../include/ajax/events.php:577 +#: ../../include/functions_integriaims.php:135 +#: ../../include/functions_profile.php:297 ../../include/functions_profile.php:315 +#: ../../include/functions_profile.php:330 +#: ../../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:2319 +#: ../../include/rest-api/models/VisualConsole/Item.php:2441 +#: ../../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 +#: ../../include/functions_html.php:1392 ../../include/functions_html.php:1442 +#: ../../include/functions_html.php:4664 ../../include/functions_html.php:6055 +#: ../../include/class/NetworkMap.class.php:2789 +#: ../../include/class/NetworkMap.class.php:3024 +#: ../../include/class/NetworkMap.class.php:3047 +#: ../../include/class/NetworkMap.class.php:3119 +#: ../../include/class/NetworkMap.class.php:3129 +#: ../../include/class/NetworkMap.class.php:3214 +#: ../../include/class/NetworkMap.class.php:3230 +#: ../../include/lib/Dashboard/Widgets/sla_percent.php:336 +#: ../../include/lib/Dashboard/Widgets/BlockHistogram.php:301 +#: ../../include/lib/Dashboard/Widgets/events_list.php:312 +#: ../../include/lib/Dashboard/Widgets/events_list.php:470 +#: ../../include/lib/Dashboard/Widgets/graph_module_histogram.php:326 +#: ../../include/lib/Dashboard/Widgets/service_map.php:273 +#: ../../include/lib/Dashboard/Widgets/service_map.php:314 +#: ../../include/lib/Dashboard/Widgets/maps_made_by_user.php:537 +#: ../../include/lib/Dashboard/Widgets/custom_graph.php:355 +#: ../../include/lib/Dashboard/Widgets/single_graph.php:310 +#: ../../include/lib/Dashboard/Widgets/reports.php:501 +#: ../../include/lib/Dashboard/Widgets/top_n.php:241 +#: ../../include/functions_events.php:3209 ../../include/functions_events.php:3225 +#: ../../operation/users/user_edit.php:402 ../../operation/users/user_edit.php:414 +#: ../../operation/users/user_edit.php:455 ../../operation/users/user_edit.php:491 +#: ../../operation/users/user_edit.php:505 ../../operation/users/user_edit.php:898 +#: ../../operation/users/user_edit.php:905 ../../operation/users/user_edit.php:914 +#: ../../operation/users/user_edit.php:921 +#: ../../operation/agentes/pandora_networkmap.editor.php:349 +#: ../../operation/agentes/pandora_networkmap.view.php:174 +#: ../../operation/agentes/ver_agente.php:1164 +#: ../../operation/agentes/ver_agente.php:1220 +#: ../../operation/agentes/ver_agente.php:1235 +#: ../../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/snmpconsole/snmp_view.php:630 +#: ../../operation/snmpconsole/snmp_view.php:1114 +#: ../../operation/snmpconsole/snmp_view.php:1125 +#: ../../operation/gis_maps/render_view.php:163 +#: ../../operation/incidents/list_integriaims_incidents.php:530 +#: ../../operation/incidents/list_integriaims_incidents.php:534 +#: ../../operation/events/events.php:2414 +msgid "None" +msgstr "Aucun" + +#: ../../enterprise/meta/screens/screens.visualmap.php:71 +msgid "Create visualmap" +msgstr "CrĆ©er une carte visuelle" + +#: ../../enterprise/meta/screens/screens.visualmap.php:163 +#: ../../enterprise/meta/screens/screens.visualmap.php:194 +#: ../../enterprise/godmode/reporting/visual_console_builder.wizard_services.php:106 +#: ../../enterprise/include/lib/ClusterViewer/ClusterManager.php:601 +#: ../../enterprise/operation/agentes/policy_view.php:70 +#: ../../godmode/agentes/configurar_agente.php:373 +#: ../../godmode/agentes/modificar_agente.php:82 +#: ../../godmode/agentes/modificar_agente.php:836 +#: ../../godmode/agentes/modificar_agente.php:841 ../../godmode/menu.php:556 +#: ../../godmode/setup/setup_visuals.php:163 +#: ../../godmode/setup/setup_visuals.php:228 +#: ../../godmode/setup/setup_visuals.php:282 +#: ../../godmode/setup/setup_visuals.php:287 +#: ../../godmode/setup/setup_visuals.php:326 +#: ../../godmode/setup/setup_visuals.php:363 +#: ../../godmode/setup/setup_visuals.php:385 +#: ../../godmode/setup/setup_visuals.php:410 +#: ../../godmode/setup/setup_visuals.php:429 +#: ../../godmode/setup/setup_visuals.php:448 +#: ../../godmode/setup/setup_visuals.php:467 +#: ../../godmode/setup/setup_visuals.php:609 +#: ../../godmode/reporting/visual_console_builder.php:851 +#: ../../godmode/module_library/module_library_view.php:59 +#: ../../operation/tree.php:187 ../../operation/visual_console/view.php:198 +#: ../../operation/visual_console/legacy_view.php:193 +#: ../../operation/agentes/estado_agente.php:858 +#: ../../operation/agentes/estado_agente.php:861 +#: ../../operation/agentes/status_monitor.php:75 +#: ../../operation/agentes/ver_agente.php:1916 +msgid "View" +msgstr "Vue" + +#: ../../enterprise/meta/screens/screens.visualmap.php:206 +#: ../../enterprise/godmode/alerts/alert_inventory.php:80 +#: ../../godmode/reporting/visual_console_builder.php:845 +#: ../../operation/visual_console/legacy_view.php:183 +msgid "Builder" +msgstr "Outil de conception" + +#: ../../enterprise/meta/screens/screens.visualmap.php:219 +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:61 +#: ../../enterprise/meta/monitoring/wizard/wizard.php:123 +#: ../../enterprise/meta/general/main_header.php:134 +#: ../../enterprise/meta/general/logon_ok.php:48 +#: ../../enterprise/meta/general/main_menu.php:238 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:95 +#: ../../enterprise/include/functions_reporting.php:60 +#: ../../enterprise/include/functions_reporting.php:7991 +#: ../../enterprise/include/functions_reporting.php:8017 +#: ../../godmode/reporting/visual_console_builder.php:840 +#: ../../godmode/reporting/visual_console_builder.wizard.php:518 +#: ../../operation/visual_console/view.php:188 +#: ../../operation/visual_console/legacy_view.php:175 +msgid "Wizard" +msgstr "Assistant" + +#: ../../enterprise/meta/screens/screens.visualmap.php:230 +#: ../../godmode/reporting/visual_console_builder.php:828 +#: ../../operation/visual_console/view.php:168 +#: ../../operation/visual_console/legacy_view.php:155 +msgid "List elements" +msgstr "Liste d'Ć©lĆ©ments" + +#: ../../enterprise/meta/screens/screens.visualmap.php:241 +#: ../../godmode/reporting/visual_console_builder.php:824 +#: ../../godmode/reporting/graph_builder.php:298 +#: ../../godmode/reporting/reporting_builder.main.php:73 +#: ../../godmode/reporting/reporting_builder.php:3573 +#: ../../operation/visual_console/view.php:160 +#: ../../operation/visual_console/legacy_view.php:147 +#: ../../operation/reporting/reporting_viewer.php:139 +#: ../../operation/reporting/graph_viewer.php:193 +msgid "Main data" +msgstr "DonnĆ©es principales" + +#: ../../enterprise/meta/screens/screens.visualmap.php:261 +#: ../../godmode/reporting/visual_console_builder.php:820 +#: ../../operation/visual_console/view.php:150 +#: ../../operation/visual_console/legacy_view.php:137 +msgid "Show link to public Visual Console" +msgstr "Afficher lien vers console visuelle publique" + +#: ../../enterprise/meta/screens/screens.visualmap.php:286 +#: ../../godmode/reporting/visual_console_builder.php:816 +#: ../../operation/visual_console/view.php:122 +#: ../../operation/visual_console/legacy_view.php:121 +msgid "Visual consoles list" +msgstr "Liste de consoles visuelles" + +#: ../../enterprise/meta/screens/screens.visualmap.php:297 +#: ../../godmode/reporting/visual_console_builder.php:859 +msgid "New visual console" +msgstr "Nouvelle console visuelle" + +#: ../../enterprise/meta/screens/screens.visualmap.php:305 +#: ../../enterprise/meta/screens/screens.visualmap.php:310 +#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:121 +#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:127 +#: ../../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:1091 +#: ../../godmode/reporting/visual_console_builder.php:882 +#: ../../godmode/reporting/map_builder.php:134 +#: ../../godmode/reporting/map_builder.php:140 +#: ../../godmode/reporting/visual_console_favorite.php:131 +#: ../../godmode/reporting/visual_console_favorite.php:137 +#: ../../include/lib/Dashboard/Widgets/maps_made_by_user.php:335 +#: ../../operation/users/user_edit.php:357 +#: ../../operation/visual_console/view.php:230 ../../operation/menu.php:177 +#: ../../operation/menu.php:181 +msgid "Visual console" +msgstr "Console visuelle" + +#: ../../enterprise/meta/screens/screens.php:37 +#: ../../enterprise/meta/general/main_header.php:232 +#: ../../enterprise/meta/general/logon_ok.php:84 +#: ../../enterprise/meta/general/main_menu.php:340 +msgid "Screens" +msgstr "Ɖcrans" + +#: ../../enterprise/meta/advanced/servers.build_table.php:34 +#: ../../godmode/servers/servers.build_table.php:52 +msgid "There are no servers configured into the database" +msgstr "Aucun serveur configurĆ© dans la base de donnĆ©es" + +#: ../../enterprise/meta/advanced/servers.build_table.php:63 +#: ../../enterprise/meta/advanced/metasetup.consoles.php:836 +#: ../../enterprise/godmode/servers/list_satellite.php:39 +#: ../../enterprise/include/functions_reporting_csv.php:718 +#: ../../enterprise/include/class/AgentRepository.class.php:376 +#: ../../enterprise/include/class/AgentRepository.class.php:642 +#: ../../enterprise/tools/ipam/ipam_calculator.php:52 +#: ../../godmode/extensions.php:139 +#: ../../godmode/update_manager/update_manager.history.php:40 +#: ../../godmode/reporting/reporting_builder.item_editor.php:78 +#: ../../godmode/servers/servers.build_table.php:82 +#: ../../include/functions_reporting_html.php:1589 +#: ../../include/functions_snmp_browser.php:746 +msgid "Version" +msgstr "Version" + +#: ../../enterprise/meta/advanced/servers.build_table.php:64 +#: ../../enterprise/meta/monitoring/wizard/wizard.agent.php:65 +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:444 +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:712 +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:791 +#: ../../enterprise/meta/monitoring/wizard/wizard.php:286 +#: ../../enterprise/meta/monitoring/group_view.php:155 +#: ../../enterprise/meta/monitoring/group_view.php:221 +#: ../../enterprise/meta/include/functions_wizard_meta.php:406 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1821 +#: ../../enterprise/meta/agentsearch.php:139 +#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:111 +#: ../../enterprise/godmode/policies/policy_modules.php:458 +#: ../../enterprise/godmode/policies/policies.php:509 +#: ../../enterprise/godmode/massive/massive_edit_tags_policy.php:128 +#: ../../enterprise/godmode/massive/massive_add_modules_policy.php:176 +#: ../../enterprise/godmode/massive/massive_add_service_elements.php:362 +#: ../../enterprise/godmode/massive/massive_create_services.php:965 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:473 +#: ../../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:861 +#: ../../enterprise/include/functions_policies.php:3722 +#: ../../enterprise/operation/agentes/tag_view.php:606 +#: ../../enterprise/operation/services/services.service_map.php:163 +#: ../../extensions/agents_modules.php:758 +#: ../../godmode/agentes/configurar_agente.php:406 +#: ../../godmode/agentes/configurar_agente.php:724 +#: ../../godmode/agentes/modificar_agente.php:817 +#: ../../godmode/agentes/planned_downtime.list.php:85 +#: ../../godmode/agentes/planned_downtime.list.php:115 +#: ../../godmode/agentes/planned_downtime.editor.php:924 +#: ../../godmode/agentes/planned_downtime.editor.php:999 +#: ../../godmode/massive/massive_copy_modules.php:199 +#: ../../godmode/massive/massive_delete_modules.php:463 +#: ../../godmode/massive/massive_edit_plugins.php:383 +#: ../../godmode/massive/massive_edit_modules.php:425 +#: ../../godmode/reporting/reporting_builder.list_items.php:210 +#: ../../godmode/reporting/reporting_builder.list_items.php:239 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1899 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2120 +#: ../../godmode/reporting/visual_console_builder.wizard.php:432 +#: ../../godmode/servers/servers.build_table.php:83 +#: ../../mobile/operation/agents.php:96 ../../mobile/operation/agents.php:409 +#: ../../mobile/operation/modules.php:236 ../../mobile/operation/home.php:88 +#: ../../mobile/operation/agent.php:327 +#: ../../include/functions_reporting_html.php:1881 +#: ../../include/functions_reporting_html.php:5421 +#: ../../include/functions_reports.php:733 ../../include/functions_reports.php:737 +#: ../../include/functions_reports.php:741 ../../include/functions_reports.php:745 +#: ../../include/functions_reports.php:749 ../../include/functions_reports.php:753 +#: ../../include/functions_reports.php:757 ../../include/functions_reports.php:761 +#: ../../include/functions_reports.php:765 ../../include/functions_html.php:1720 +#: ../../include/functions_html.php:5530 +#: ../../include/class/AgentsAlerts.class.php:253 +#: ../../include/lib/Dashboard/Widgets/groups_status.php:403 +#: ../../include/lib/Dashboard/Widgets/groups_status.php:409 +#: ../../include/lib/Dashboard/Widgets/agent_module.php:448 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:331 +#: ../../operation/search_agents.php:55 ../../operation/tree.php:114 +#: ../../operation/search_results.php:158 +#: ../../operation/agentes/estado_agente.php:760 +#: ../../operation/agentes/graphs.php:188 ../../operation/agentes/exportdata.php:282 +#: ../../operation/agentes/group_view.php:184 +#: ../../operation/agentes/group_view.php:217 +msgid "Modules" +msgstr "Modules" + +#: ../../enterprise/meta/advanced/servers.build_table.php:65 +#: ../../godmode/servers/servers.build_table.php:84 +msgid "Lag" +msgstr "Retard" + +#: ../../enterprise/meta/advanced/servers.build_table.php:65 +#: ../../godmode/servers/servers.build_table.php:84 +msgid "Avg. Delay(sec)/Modules delayed" +msgstr "Retard moyen(sec)/Modules retardĆ©s" + +#: ../../enterprise/meta/advanced/servers.build_table.php:66 +#: ../../godmode/servers/servers.build_table.php:85 +msgid "T/Q" +msgstr "T/Q" + +#: ../../enterprise/meta/advanced/servers.build_table.php:66 +#: ../../godmode/servers/servers.build_table.php:85 +msgid "Threads / Queued modules currently" +msgstr "Threads/Modules en attente" + +#: ../../enterprise/meta/advanced/servers.build_table.php:68 +#: ../../enterprise/include/class/DatabaseHA.class.php:798 +#: ../../enterprise/tools/ipam/ipam_ajax.php:494 +#: ../../godmode/agentes/agent_incidents.php:93 +#: ../../godmode/servers/servers.build_table.php:87 +#: ../../operation/incidents/integriaims_export_csv.php:86 +msgid "Updated" +msgstr "Mis Ć  jour" + +#: ../../enterprise/meta/advanced/servers.build_table.php:72 +#: ../../enterprise/meta/include/functions_autoprovision.php:644 +#: ../../enterprise/godmode/modules/local_components.php:625 +#: ../../enterprise/godmode/policies/policy_alerts.php:354 +#: ../../enterprise/godmode/policies/policies.php:409 +#: ../../enterprise/godmode/alerts/alert_inventory_list.php:224 +#: ../../enterprise/godmode/reporting/reporting_builder.template_list_item.php:261 +#: ../../godmode/users/profile_list.php:349 ../../godmode/users/user_list.php:487 +#: ../../godmode/alerts/alert_list.list.php:500 +#: ../../godmode/alerts/alert_templates.php:388 +#: ../../godmode/reporting/reporting_builder.list_items.php:427 +#: ../../godmode/reporting/graphs.php:323 +#: ../../godmode/reporting/reporting_builder.php:955 +#: ../../godmode/reporting/reporting_builder.php:1154 +#: ../../godmode/servers/servers.build_table.php:91 +#: ../../godmode/servers/plugin.php:819 ../../include/functions_container.php:157 +#: ../../operation/gis_maps/gis_map.php:109 +msgid "Op." +msgstr "Op." + +#: ../../enterprise/meta/advanced/servers.build_table.php:91 +#: ../../godmode/servers/servers.build_table.php:134 +msgid "This is a master server" +msgstr "Ceci est un serveur principal" + +#: ../../enterprise/meta/advanced/servers.build_table.php:106 +#: ../../enterprise/meta/advanced/servers.build_table.php:112 +#: ../../godmode/servers/servers.build_table.php:153 +#: ../../godmode/servers/servers.build_table.php:159 +msgid "of" +msgstr "de" + +#: ../../enterprise/meta/advanced/servers.build_table.php:134 +#: ../../godmode/servers/servers.build_table.php:260 +msgid "Modules run by this server will stop working. Do you want to continue?" msgstr "" -"Une grappe est un groupe de dispositifs qui fournit le mĆŖme service en haute " -"disponibilitĆ©." +"Les modules sur ce serveur cesseront de fonctionner. Voulez-vous continuer ?" -#: ../../general/first_task/cluster_builder.php:59 -msgid "Depending on how they provide that service, we can find two types:" -msgstr "" -"Il existe deux types de grappes, selon la maniĆØre dont elles fournissent ce " -"service :" +#: ../../enterprise/meta/advanced/servers.build_table.php:160 +#: ../../godmode/servers/servers.build_table.php:287 +msgid "Tactical server information" +msgstr "Information tactique du serveur" -#: ../../general/first_task/cluster_builder.php:61 -msgid "" -"Clusters to balance the service load: these are active - active (A/A) " -"mode clusters. It means that all the nodes (or machines that compose it) are " -"working. They must be working because if one stops working, it will overload " -"the others." -msgstr "" -"Grappes pour Ć©quilibrer la charge du service : grappes de mode active-" -"active (A/A). Cela signifie que tous les nœuds (ou machines qui les composent) " -"sont opĆ©rationnels. Il faut qu'ils soient en fonctionnement, parce que si un " -"d'entre eux cesse de marcher, les autres seront surchargĆ©s." +#: ../../enterprise/meta/advanced/massive_operations.php:57 +#: ../../enterprise/meta/monitoring/wizard/wizard.php:53 +#: ../../general/node_deactivated.php:59 +msgid "command center" +msgstr "centre de commande" -#: ../../general/first_task/cluster_builder.php:63 -msgid "" -"Clusters to guarantee service: these are active - passive (A/P) mode " -"clusters. It means that one of the nodes (or machines that make up the " -"cluster) will be running (primary) and another won't (secondary). When the " -"primary goes down, the secondary must take over and give the service instead. " -"Although many of the elements of this cluster are active-passive, it will also " -"have active elements in both of them that indicate that the passive node is " -"\"online\", so that in the case of a service failure in the master, the active " -"node collects this information." -msgstr "" -"Grappes pour garantir le service : grappes de mode active-passive (A/" -"P). Cela signifie qu'un des nœuds (ou machines qui composent la grappe) est " -"opĆ©rationnel (primaire) et un autre ne l'es pas (secondaire). Lorsque le " -"primaire est hors service, le secondaire prend le relais et fournit le service " -"Ć  sa place. Plusieurs Ć©lĆ©ments de cette grappe sont actifs-passifs. Cependant, " -"les deux nœuds prĆ©sentent aussi des Ć©lĆ©ments actifs qui indiquent que le nœud " -"est Ā« en ligne Ā», pour que, en cas d'interruption de service dans le maĆ®tre, " -"le nœud actif rĆ©cupĆØre cette information." - -#: ../../general/first_task/snmp_filters.php:18 -msgid "There are no SNMP filter defined yet." -msgstr "Aucun filtre SNMP dĆ©fini jusqu'Ć  prĆ©sent" - -#: ../../general/first_task/snmp_filters.php:22 -msgid "SNMP Filter" -msgstr "Filtre SNMP" - -#: ../../general/first_task/snmp_filters.php:25 -#: ../../general/first_task/snmp_filters.php:37 -msgid "Create SNMP Filter" -msgstr "CrĆ©er un filtre SNMP" - -#: ../../general/first_task/snmp_filters.php:28 -msgid "" -"Some systems receive a high number of traps. \n" -"\t\t\t\tWe're only interested in monitoring a tiny percentage of them. From " -"Pandora FMS versions 3.2 and above, \n" -"\t\t\t\tit's possible to filter the traps that the server obtains in order to " -"avoid straining the application unnecessarily.\n" -"\t\t\t\tIn order to define different filters, please go to 'Administration' -> " -"'Manage SNMP Console' and 'SNMP Filters'. \n" -"\t\t\t\tOne trap which is going to run in conjunction with any of them - just " -"the ones for the server are going to get ruled out automatically. " -msgstr "" -"Certains systĆØmes reƧoivent un nombre Ć©levĆ© de dĆ©routements.\n" -"\t\t\t\tNous sommes seulement intĆ©ressĆ©s Ć  surveiller un faible pourcentage de " -"ces dĆ©routements. Pour la version 3.2 de Pandora FMS et les suivantes, \n" -"\t\t\t\til est possible de filtrer les dĆ©routements que le serveur obtient " -"afin d'Ć©viter une surcharge inutile de l'application. \n" -"\t\t\t\tPour dĆ©finir les diffĆ©rents filtres, veuillez cliquer sur Ā« " -"Administration Ā» -> Ā« GĆ©rer console SNMP Ā» et Ā« Filtres SNMP Ā». \n" -"\t\t\t\tUn dĆ©routement qui fonctionnera avec n'importe quel autre - seulement " -"ceux pour le serveur seront exclus automatiquement. " - -#: ../../general/first_task/fields_manager.php:22 -msgid "Fields Manager" -msgstr "Gestionnaire de champs" - -#: ../../general/first_task/fields_manager.php:25 -msgid "Create Fields Manager" -msgstr "CrĆ©er un gestionnaire de champs" - -#: ../../general/first_task/fields_manager.php:28 -msgid "" -"Custom fields are an easy way to personalized agent's information.\n" -"\t\t\t\tYou're able to create custom fields by klicking on 'Administration' -> " -"'Manage monitoring' -> 'Manage custom fields'. " -msgstr "" -"Les champs personnalisĆ©s permettent de personnaliser facilement l'information " -"de l'agent.\n" -"\t\t\t\tPour crĆ©er des champs personnalisĆ©s, cliquez sur Ā« Administration Ā» -> " -"Ā« GĆ©rer surveillance Ā» -> Ā« GĆ©rer champs personnalisĆ©s Ā» " - -#: ../../general/first_task/fields_manager.php:34 -msgid "Create Fields " -msgstr "CrĆ©er des champs " - -#: ../../general/first_task/custom_graphs.php:19 -msgid "There are no custom graphs defined yet." -msgstr "Aucun graphique personnalisĆ© dĆ©fini jusqu'Ć  prĆ©sent." - -#: ../../general/first_task/custom_graphs.php:24 -msgid "Custom Graphs" -msgstr "Graphiques personnalisĆ©s" - -#: ../../general/first_task/custom_graphs.php:27 -#: ../../general/first_task/custom_graphs.php:39 -msgid "Create Custom Graph" -msgstr "CrĆ©er un graphique personnalisĆ©" - -#: ../../general/first_task/custom_graphs.php:30 +#: ../../enterprise/meta/advanced/massive_operations.php:54 +#: ../../enterprise/meta/monitoring/wizard/wizard.php:50 #, php-format msgid "" -"Graphs are designed to show the data collected by %s in a temporary scale " -"defined by the user.\n" -"\t\t\t\t%s Graphs display data in real time. They are generated every time the " -"operator requires any of them and display the up-to-date state.\n" -"\t\t\t\tThere are two types of graphs: The agent's automated graphs and the " -"graphs the user customizes by using one or more modules to do so." +"You should centralise management in order to use Wizard section. Please go to %s" msgstr "" -"Les graphiques sont conƧues pour montrer les donnĆ©es collectĆ©es par %s dans " -"une scale temporaire dĆ©fini par l'utilisateur.\n" -"\t\t\t\tLes graphs %s montrent des donnĆ©es en temps rĆ©el. Ils sont gĆ©nĆ©rĆ©s " -"chaque fois que l'opĆ©rateur requis quelqu'un et montrent l'Ć©tat mis Ć  jour.\n" -"\t\t\t\tIl y a deux types de : Les gaphs d'agent automatisĆ©s et les graphs " -"d'utilisateur personnalisĆ©s en utilisant une ou plus de modules pour le faire." +"Vous devez centraliser la gestion afin dā€™utiliser la section Assistant. Veuillez " +"aller vers %s" -#: ../../general/first_task/recon_view.php:18 -msgid "There are no discovery tasks defined yet." -msgstr "Il n'y a pas des taches de dĆ©couverte dĆ©finis dĆ©jĆ ." +#: ../../enterprise/meta/advanced/component_management.php:52 +#: ../../include/functions_menu.php:531 +msgid "Tags management" +msgstr "Gestion des Ć©tiquettes" -#: ../../general/first_task/recon_view.php:22 -#: ../../include/class/CustomNetScan.class.php:479 -#: ../../include/functions_servers.php:595 -#: ../../include/functions_servers.php:1341 -#: ../../enterprise/tools/ipam/ipam_editor.php:163 -#: ../../enterprise/include/ajax/ipam.ajax.php:357 -#: ../../enterprise/include/class/MicrosoftSQLServer.app.php:450 -#: ../../enterprise/include/class/Aws.cloud.php:522 -#: ../../enterprise/include/class/Aws.cloud.php:1212 -#: ../../enterprise/include/class/Aws.S3.php:412 -#: ../../enterprise/include/class/MySQL.app.php:453 -#: ../../enterprise/include/class/Oracle.app.php:455 -#: ../../enterprise/include/class/DB2.app.php:448 -#: ../../enterprise/include/class/SAP.app.php:481 -#: ../../enterprise/include/class/VMware.app.php:593 -#: ../../enterprise/include/class/Azure.cloud.php:781 -#: ../../enterprise/include/class/Google.cloud.php:769 -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:431 -#: ../../godmode/wizards/HostDevices.class.php:848 -msgid "Discovery server" -msgstr "Serveur Discovery" +#: ../../enterprise/meta/advanced/component_management.php:56 +msgid "Module groups Management" +msgstr "Gestion des groupes de module" -#: ../../general/first_task/recon_view.php:25 -msgid "Create Discovery Task" -msgstr "CrĆ©er de la tache de Discovery" +#: ../../enterprise/meta/advanced/component_management.php:60 +msgid "OS Management" +msgstr "Gestion du systĆØme d'exploitation" -#: ../../general/first_task/recon_view.php:28 -msgid "" -"Discovery Task are used to find new elements in the network. \n" -"\t\tIf it detects any item, it will add that item to the monitoring, and if " -"that item it is already being monitored, then it will \n" -"\t\tignore it or will update its information.There are three types of " -"detection: Based on ICMP (pings), \n" -"\t\tSNMP (detecting the topology of networks " -"and their interfaces), and other customized \n" -"\t\ttype. You can define your own customized recon script." -msgstr "" -"Les taches de Discovery sont utilisĆ©s pour trouver des nouveaux Ć©lĆ©ments dans " -"le rĆ©seau. \n" -"\t\tS'il dĆ©tecte quelque Ć©lĆ©ment, il ajoutera cet Ć©lĆ©ment Ć  la supervision, et " -"si cet Ć©lĆ©ment est dĆ©jĆ  en cours de supervision, il \n" -"\t\tĆ©cartera ou mettra Ć  jour son information. Il y a quelques types de " -"dĆ©tection : BasĆ©s dans le ICMP (pings), \n" -"\t\tSNMP (dĆ©tecter des topologies des rĆ©seaux " -"et leur interfaces), et d'autres personnalisĆ©s \n" -"\t\ttype. Vous pouvez dĆ©finir votre propre recon script personnalisĆ©." - -#: ../../general/first_task/recon_view.php:37 -msgid "Discover" -msgstr "DĆ©couvrir" - -#: ../../general/first_task/incidents.php:21 -msgid "There are no incidents defined yet." -msgstr "Aucun incident dĆ©fini jusqu'Ć  prĆ©sent" - -#: ../../general/first_task/incidents.php:28 ../../operation/menu.php:474 -#: ../../operation/agentes/ver_agente.php:1507 -#: ../../operation/incidents/incident_statistics.php:21 -#: ../../godmode/agentes/configurar_agente.php:582 -#: ../../godmode/agentes/configurar_agente.php:750 -msgid "Incidents" -msgstr "Incidents" - -#: ../../general/first_task/incidents.php:31 -#: ../../general/first_task/incidents.php:46 -msgid "Create Incidents" -msgstr "CrĆ©er des incidents" - -#: ../../general/first_task/incidents.php:34 +#: ../../enterprise/meta/advanced/metasetup.visual.php:51 +#: ../../enterprise/meta/advanced/metasetup.relations.php:96 +#: ../../enterprise/meta/advanced/metasetup.password.php:46 +#: ../../enterprise/meta/advanced/metasetup.log.php:41 +#: ../../enterprise/meta/advanced/metasetup.setup.php:79 +#: ../../enterprise/meta/advanced/metasetup.auth.php:47 +#: ../../enterprise/meta/advanced/metasetup.performance.php:47 #, php-format -msgid "" -"Besides receiving and processing data to monitor systems or applications,\n" -"\t\t\tyou're also required to monitor possible incidents which might take " -"place on these subsystems within the system's monitoring process.\n" -"\t\t\tFor it, the %s team has designed an incident manager from which any user " -"is able to open incidents,\n" -"\t\t\tthat explain what's happened on the network, and update them with " -"comments and files, at any time, in case there is a need to do so.\n" -"\t\t\tThis system allows users to work as a team, along with different roles " -"and work-flow systems which allow an incident to be\n" -"\t\t\tmoved from one group to another, and members from different groups and " -"different people could work on the same incident, sharing information and " -"files.\n" -"\t\t" -msgstr "" -"Outre la rĆ©ception et le traitement de donnĆ©es pour superviser des systĆØmes ou " -"des applications,\n" -"\t\t\tvous devez aussi superviser des possibles incidentes qui peuvent se " -"passer dans ces sous-systĆØmes dans le processus de supervision systĆØme.\n" -"\t\t\tPour Ƨa, l'Ć©quipe %s a conƧu un gestionnaire d'incidences depuis " -"lesquelles n'importe quel utilisateur peut ouvris des incidentes,\n" -"\t\t\tqui expliquent ce qui s'est passĆ© dans le rĆ©seau, et les mettre Ć  jour " -"avec des commentaires et des fichiers, Ć  n'importe quel moment, s'il est " -"nĆ©cessaire de le faire.\n" -"\t\t\tCe systĆØme permet des utilisateurs de travailler comme une Ć©quipe, avec " -"des diffĆ©rents roles et systĆØmes de flux de travail qui permettent qu'un " -"incident se\n" -"\t\t\tdĆ©place vers un groupe ou un autre, et les membres des diffĆ©rentes " -"groupes et diffĆ©rentes personnes peuvent travailler sur le mĆŖme incidente, " -"partageant des informations et des fichiers.\n" -"\t\t" +msgid "Could not be update: Error in %s" +msgstr "Erreur de mise Ć  jour : erreur dans %s" -#: ../../general/first_task/network_map.php:19 -msgid "There are no network map defined yet." -msgstr "Aucune carte de rĆ©seau dĆ©finie jusqu'Ć  prĆ©sent" +#: ../../enterprise/meta/advanced/metasetup.visual.php:58 +#: ../../enterprise/meta/advanced/metasetup.relations.php:103 +#: ../../enterprise/meta/advanced/metasetup.password.php:53 +#: ../../enterprise/meta/advanced/metasetup.consoles.php:219 +#: ../../enterprise/meta/advanced/metasetup.log.php:48 +#: ../../enterprise/meta/advanced/metasetup.setup.php:86 +#: ../../enterprise/meta/advanced/metasetup.auth.php:54 +#: ../../enterprise/meta/advanced/metasetup.performance.php:54 +#: ../../enterprise/godmode/setup/setup_metaconsole.php:85 +msgid "Successfully update" +msgstr "Mis Ć  jour correctement" -#: ../../general/first_task/network_map.php:26 -msgid "Network Map" -msgstr "Carte de rĆ©seau" +#: ../../enterprise/meta/advanced/metasetup.visual.php:98 ../../godmode/menu.php:345 +#: ../../godmode/setup/setup.php:137 ../../godmode/setup/setup.php:266 +msgid "Visual styles" +msgstr "Styles visuels" -#: ../../general/first_task/network_map.php:29 -#: ../../general/first_task/network_map.php:50 -msgid "Create Network Map" -msgstr "CrĆ©er une carte de rĆ©seau" +#: ../../enterprise/meta/advanced/metasetup.visual.php:105 +#: ../../enterprise/meta/include/functions_meta.php:1298 +#: ../../godmode/setup/setup_visuals.php:1310 ../../include/functions_config.php:932 +msgid "Date format string" +msgstr "Format de la date" -#: ../../general/first_task/network_map.php:32 -msgid "" -"There is also an open-source version of the network map. \n" -"\t\t\t\t\t\t\t\tThis functionality allows to graphically display the nodes and " -"relationships, agents, modules and groups available to the user. \n" -"\t\t\t\t\t\t\t\tThere are three types of network maps:\n" -"\t\t\t" -msgstr "" -"Il y a aussi une version de source ouverte de la carte de rĆ©seau. \n" -"\t\t\t\t\t\t\t\tCette fonctionnalitĆ© permet d'afficher les nœuds, les " -"relations, les agents, les modules et les groupes disponibles pour " -"l'utilisateur. \n" -"\t\t\t\t\t\t\t\tIl existe trois types de cartes de rĆ©seau :\n" -"\t\t\t" +#: ../../enterprise/meta/advanced/metasetup.visual.php:109 +#: ../../godmode/setup/setup_visuals.php:1311 +msgid "Example" +msgstr "Exemple" -#: ../../general/first_task/network_map.php:37 -msgid "Topology Map" -msgstr "Carte topologique" +#: ../../enterprise/meta/advanced/metasetup.visual.php:136 +#: ../../godmode/setup/setup_visuals.php:1329 +msgid "Timestamp, time comparison, or compact mode" +msgstr "Horodatage, comparaison dā€™heure ou mode compact" -#: ../../general/first_task/network_map.php:38 -msgid "Group Map" -msgstr "Carte de groupe" +#: ../../enterprise/meta/advanced/metasetup.visual.php:139 +#: ../../godmode/setup/setup_visuals.php:1331 +msgid "Comparation in rollover" +msgstr "Date en comparaison" -#: ../../general/first_task/network_map.php:39 -msgid "Radial Map (User without strict user)" -msgstr "Carte radiale (utilisateur sans droits strictes)" +#: ../../enterprise/meta/advanced/metasetup.visual.php:148 +#: ../../godmode/setup/setup_visuals.php:1332 +msgid "Timestamp in rollover" +msgstr "Horodatage littĆ©ral" -#: ../../general/first_task/network_map.php:40 -msgid "Dinamic Map" -msgstr "Carte dynamique" +#: ../../enterprise/meta/advanced/metasetup.visual.php:157 +#: ../../godmode/setup/setup_visuals.php:1333 +msgid "Compact mode" +msgstr "Mode compact" -#: ../../general/first_task/network_map.php:41 -msgid "Policy Map (Only Enterprise version)" -msgstr "Carte de politique (uniquement sur la version Enterprise)" +#: ../../enterprise/meta/advanced/metasetup.visual.php:166 +#: ../../godmode/setup/setup_visuals.php:699 ../../include/functions_config.php:940 +msgid "Graph color #1" +msgstr "Couleur du graphique #1" -#: ../../general/first_task/collections.php:18 -#: ../../enterprise/meta/advanced/collections.php:504 -msgid "There are no collections defined yet." -msgstr "Aucune collection dĆ©finie jusqu'Ć  prĆ©sent." +#: ../../enterprise/meta/advanced/metasetup.visual.php:176 +#: ../../godmode/setup/setup_visuals.php:710 ../../include/functions_config.php:944 +msgid "Graph color #2" +msgstr "Couleur du graphique #2" -#: ../../general/first_task/collections.php:22 -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2109 -#: ../../enterprise/include/functions_policies.php:3798 -#: ../../enterprise/meta/include/functions_agents_meta.php:533 -#: ../../enterprise/meta/advanced/collections.editor.php:60 -#: ../../enterprise/meta/advanced/collections.data.php:33 -#: ../../enterprise/godmode/menu.php:70 -#: ../../enterprise/godmode/agentes/collections.editor.php:71 -#: ../../enterprise/godmode/agentes/collections.agents.php:44 -#: ../../enterprise/godmode/agentes/collections.data.php:54 -#: ../../enterprise/godmode/policies/policies.php:505 -#: ../../enterprise/godmode/policies/policy_collections.php:31 -msgid "Collections" -msgstr "Collections" +#: ../../enterprise/meta/advanced/metasetup.visual.php:186 +#: ../../godmode/setup/setup_visuals.php:721 ../../include/functions_config.php:948 +msgid "Graph color #3" +msgstr "Couleur du graphique #3" -#: ../../general/first_task/collections.php:25 -#: ../../general/first_task/collections.php:39 -msgid "Create Collections" -msgstr "CrĆ©er des collections" +#: ../../enterprise/meta/advanced/metasetup.visual.php:197 +msgid "Data precision for reports and visual consoles" +msgstr "PrĆ©cision des donnĆ©es pour les rapports et les consoles visuelles" -#: ../../general/first_task/collections.php:28 -msgid "" -"A file collection is a group of files (e.g. scripts or executables) which " -"are \n" -"\t\tautomatically copied to a specific directory of the agent (under Windows " -"or UNIX). The file collections allow to be propagated\n" -"\t\t along with the policies in order to be used by a group of agents, using a " -"'package' of scripts and modules which use them.\n" -"\t\tFirst we learn how to use the file collections in the agent's view, how to " -"conduct it manually, agent by agent, without using collections,\n" -"\t\t and how to do the same thing by using policies.Our first task is to " -"arrange a compilation of files. In order to do this, please go to the " -"agent's \n" -"\t\t administrator. Subsequently, we're going to see a 'sub option' called " -"'Collections'. Please click on it in order to create a new collection as we " -"can see on \n" -"\t\t the picture below. " -msgstr "" -"Une collection de fichiers est un groupe de fichiers (par ex. scripts ou " -"exĆ©cutables) qui sont\n" -"\t\tcopiĆ©s automatiquement dans un rĆ©pertoire de l'agent (sur Windows ou " -"UNIX). Les collections de fichiers peuvent ĆŖtre propagĆ©es\n" -"\t\t avec les politiques pour qu'un groupe d'agents les utilisent, en " -"employant un progiciel de scripts et modules qui se servent des collections.\n" -"\t\tIl faut d'abord apprendre Ć  utiliser les collections de fichiers dans le " -"visualiseur de l'agent, Ć  le faire manuellement, agent par agent, sans " -"utiliser de collections,\n" -"\t\t et Ć  faire la mĆŖme chose en utilisant les politiques. La premiĆØre tĆ¢che " -"consiste Ć  organiser un compilation de fichiers. Pour ceci, veuillez vous " -"rĆ©fĆ©rer Ć  l'administrateur d'agents. \n" -"\t\t Ensuite, une sous-option dĆ©nommĆ©e Ā« Collections Ā» apparaĆ®tra. Veuillez " -"cliquer dessus afin de crĆ©er une nouvelle collection comme illustrĆ©\n" -"\t\t sur l'image ci-dessous. " +#: ../../enterprise/meta/advanced/metasetup.visual.php:200 +msgid "Precision must be a integer number between 0 and 5" +msgstr "La prĆ©cision doit ĆŖtre un nombre entier entre 0 et 5" -#: ../../general/first_task/transactional_list.php:21 -msgid "There are no transactions defined yet." -msgstr "Aucune transaction dĆ©finie jusqu'Ć  prĆ©sent" +#: ../../enterprise/meta/advanced/metasetup.visual.php:216 +#: ../../enterprise/meta/include/functions_meta.php:1348 +#: ../../godmode/setup/setup_visuals.php:936 +#: ../../godmode/reporting/visual_console_builder.elements.php:213 +#: ../../godmode/reporting/visual_console_builder.wizard.php:285 +#: ../../include/functions_visual_map_editor.php:686 +#: ../../include/rest-api/models/VisualConsole/Items/Percentile.php:458 +msgid "Percentile" +msgstr "Centile" -#: ../../general/first_task/transactional_list.php:28 -msgid "Transactions" -msgstr "Transactions" +#: ../../enterprise/meta/advanced/metasetup.visual.php:219 +msgid "Show percentile 95 in graphs" +msgstr "Afficher le centile 95 dans les graphiques" -#: ../../general/first_task/transactional_list.php:31 -#: ../../general/first_task/transactional_list.php:41 -msgid "Create Transactions" -msgstr "CrĆ©er des transactions" +#: ../../enterprise/meta/advanced/metasetup.visual.php:232 +#: ../../enterprise/meta/include/functions_meta.php:1433 +#: ../../godmode/setup/setup_visuals.php:809 ../../include/functions_config.php:980 +msgid "Value to interface graphics" +msgstr "Valeur pour l'interface graphique" -#: ../../general/first_task/transactional_list.php:34 -msgid "" -"The new transactional server allows you to execute tasks dependent on the " -"others following a user-defined design. This means that it is possible to " -"coordinate several executions to check a target at a given time.\n" -"\n" -"Transaction graphs represent the different processes within our infrastructure " -"that we use to deliver our service." -msgstr "" -"Le nouveau secteur de transaction permet d'exĆ©cuter des tĆ¢ches dĆ©pendantes du " -"reste selon un design dĆ©fini pour l'utilisateur. Par consĆ©quent, il est " -"possible de coordonner plusieurs exĆ©cutions pour vĆ©rifier des cibles Ć  un " -"moment donnĆ©.\n" -"\n" -"Les graphiques de transaction reprĆ©sentent les diffĆ©rents processus dans notre " -"infrastructure que nous utilisons pour fournir nos services." +#: ../../enterprise/meta/advanced/metasetup.visual.php:242 +#: ../../enterprise/meta/include/functions_meta.php:1446 +#: ../../godmode/users/configure_user.php:1164 +#: ../../godmode/setup/setup_visuals.php:66 +#: ../../godmode/events/event_edit_filter.php:398 +#: ../../include/functions_config.php:997 ../../operation/users/user_edit.php:308 +#: ../../operation/snmpconsole/snmp_view.php:555 +msgid "Block size for pagination" +msgstr "Longueur de bloc pour la mise en page" -#: ../../general/links_menu.php:17 -#: ../../enterprise/meta/general/main_menu.php:596 -#: ../../enterprise/meta/general/main_menu.php:616 -#: ../../enterprise/meta/general/main_header.php:381 -#: ../../enterprise/meta/general/main_header.php:448 ../../godmode/menu.php:390 -#: ../../godmode/menu.php:510 -msgid "Links" -msgstr "Liens" +#: ../../enterprise/meta/advanced/metasetup.visual.php:252 +#: ../../enterprise/meta/include/functions_meta.php:1362 +#: ../../godmode/setup/setup_visuals.php:870 +msgid "Number of elements in Custom Graph" +msgstr "Nombre d'Ć©lĆ©ments dans le Graphique personnalisĆ©" -#: ../../general/logon_ok.php:167 -#, php-format -msgid "%s Overview" -msgstr "%s AperƧu" +#: ../../enterprise/meta/advanced/metasetup.visual.php:265 +#: ../../enterprise/meta/include/functions_meta.php:1456 +#: ../../godmode/setup/setup_visuals.php:884 ../../include/functions_config.php:1001 +msgid "Use round corners" +msgstr "Utiliser des coins arrondis" -#: ../../general/logon_ok.php:191 -#: ../../enterprise/operation/agentes/wux_console_view.php:357 -#: ../../enterprise/operation/agentes/wux_console_view.php:378 -#: ../../godmode/setup/performance.php:188 -#: ../../godmode/setup/performance.php:243 -msgid "ago" -msgstr "il y a" +#: ../../enterprise/meta/advanced/metasetup.visual.php:273 +#: ../../enterprise/meta/include/functions_meta.php:1467 +#: ../../godmode/setup/setup_visuals.php:893 ../../include/functions_config.php:1005 +msgid "Chart fit to content" +msgstr "Table adaptĆ© au contenu" -#: ../../general/logon_ok.php:206 ../../include/functions_events.php:5276 -msgid "by" -msgstr "par" +#: ../../enterprise/meta/advanced/metasetup.visual.php:281 +#: ../../enterprise/meta/include/functions_meta.php:1478 +#: ../../include/functions_config.php:1217 +msgid "Disable help" +msgstr "DĆ©sactiver l'aide" -#: ../../general/logon_ok.php:220 -msgid "News board" -msgstr "Tableau de nouvelles" - -#: ../../general/logon_ok.php:247 ../../general/login_page.php:230 -#: ../../general/login_page.php:272 ../../operation/search_users.php:71 -#: ../../operation/events/events.build_table.php:202 -#: ../../operation/events/events.build_table.php:707 -#: ../../operation/users/user_edit.php:696 -#: ../../operation/users/user_edit.php:742 -#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:118 -#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:249 -#: ../../include/functions_cron.php:463 -#: ../../include/class/AuditLog.class.php:108 -#: ../../include/class/AuditLog.class.php:211 -#: ../../include/class/CredentialStore.class.php:805 -#: ../../include/class/CredentialStore.class.php:1134 -#: ../../include/functions_events.php:194 ../../include/functions_events.php:245 -#: ../../include/functions_events.php:6698 -#: ../../include/functions_events.php:7125 ../../include/functions_config.php:708 -#: ../../include/functions_config.php:728 ../../include/functions.php:3046 -#: ../../include/functions_reporting_html.php:5723 -#: ../../enterprise/include/class/MicrosoftSQLServer.app.php:502 -#: ../../enterprise/include/class/MySQL.app.php:523 -#: ../../enterprise/include/class/Oracle.app.php:508 -#: ../../enterprise/include/class/DB2.app.php:501 -#: ../../enterprise/include/functions_tasklist.php:152 -#: ../../enterprise/meta/general/login_page.php:125 -#: ../../enterprise/meta/general/login_page.php:167 -#: ../../enterprise/meta/include/functions_events_meta.php:70 -#: ../../enterprise/meta/include/functions_meta.php:1165 -#: ../../enterprise/meta/include/functions_meta.php:1219 -#: ../../enterprise/meta/include/functions_meta.php:1273 -#: ../../enterprise/meta/include/functions_wizard_meta.php:519 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1473 -#: ../../enterprise/extensions/disabled/check_acls.php:47 -#: ../../enterprise/extensions/disabled/check_acls.php:132 -#: ../../enterprise/godmode/setup/setup_auth.php:1039 -#: ../../enterprise/godmode/setup/setup_auth.php:1071 -#: ../../enterprise/godmode/servers/manage_export_form.php:113 -#: ../../extensions/users_connected.php:143 ../../extensions/api_checker.php:138 -#: ../../mobile/operation/tactical.php:349 -#: ../../mobile/include/user.class.php:373 -#: ../../godmode/setup/setup_integria.php:283 -#: ../../godmode/setup/setup_ehorus.php:80 -#: ../../godmode/update_manager/update_manager.history.php:43 -#: ../../godmode/reporting/reporting_builder.item_editor.php:3331 -#: ../../godmode/events/custom_events.php:99 -msgid "User" -msgstr "Utilisateur" - -#: ../../general/logon_ok.php:248 ../../operation/snmpconsole/snmp_view.php:891 -#: ../../operation/snmpconsole/snmp_view.php:1266 -#: ../../operation/events/events.build_table.php:369 -#: ../../operation/agentes/alerts_status.php:550 -#: ../../operation/agentes/alerts_status.php:585 -#: ../../operation/agentes/alerts_status.php:620 -#: ../../operation/agentes/alerts_status.php:652 -#: ../../operation/agentes/alerts_status.functions.php:126 -#: ../../operation/search_alerts.php:37 -#: ../../include/ajax/alert_list.ajax.php:281 -#: ../../include/ajax/alert_list.ajax.php:306 -#: ../../include/ajax/alert_list.ajax.php:482 -#: ../../include/class/ModuleTemplates.class.php:894 -#: ../../include/class/AuditLog.class.php:109 -#: ../../include/class/AuditLog.class.php:201 -#: ../../include/class/AgentsAlerts.class.php:892 -#: ../../include/functions_events.php:6789 -#: ../../include/functions_ui_renders.php:117 -#: ../../include/functions_profile.php:217 ../../include/functions.php:3046 -#: ../../include/functions_reporting_html.php:3184 -#: ../../include/functions_reporting_html.php:5725 -#: ../../enterprise/tools/ipam/ipam_network_location_config.php:258 -#: ../../enterprise/tools/ipam/ipam_list.php:639 -#: ../../enterprise/operation/agentes/policy_view.php:260 -#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:413 -#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:475 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2587 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2907 -#: ../../enterprise/include/functions_services.php:1615 -#: ../../enterprise/meta/monitoring/wizard/wizard.manage_alert.php:257 -#: ../../enterprise/meta/advanced/metasetup.relations.php:550 -#: ../../enterprise/godmode/servers/manage_export.php:142 -#: ../../enterprise/godmode/modules/manage_inventory_modules.php:278 -#: ../../enterprise/godmode/services/services.massive.elements.php:66 -#: ../../enterprise/godmode/reporting/graph_template_item_editor.php:191 -#: ../../enterprise/godmode/reporting/graph_template_list.php:209 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3524 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3722 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3745 -#: ../../enterprise/godmode/admin_access_logs.php:54 -#: ../../enterprise/godmode/alerts/alert_inventory_list.php:379 -#: ../../enterprise/godmode/alerts/alert_inventory_builder.php:241 -#: ../../enterprise/godmode/policies/policy_modules.php:1466 -#: ../../enterprise/godmode/policies/policy_alerts.php:575 -#: ../../mobile/operation/tactical.php:348 -#: ../../godmode/modules/manage_network_components.php:755 -#: ../../godmode/modules/manage_network_templates.php:248 -#: ../../godmode/modules/manage_nc_groups.php:243 -#: ../../godmode/reporting/visual_console_builder.elements.php:118 -#: ../../godmode/reporting/reporting_builder.item_editor.php:3828 -#: ../../godmode/reporting/reporting_builder.item_editor.php:4319 -#: ../../godmode/reporting/reporting_builder.item_editor.php:4340 -#: ../../godmode/snmpconsole/snmp_alert.php:1278 -#: ../../godmode/snmpconsole/snmp_alert.php:1435 -#: ../../godmode/snmpconsole/snmp_filters.php:291 -#: ../../godmode/events/event_filter.php:141 -#: ../../godmode/netflow/nf_edit.php:161 -#: ../../godmode/netflow/nf_item_list.php:178 -#: ../../godmode/massive/massive_operations.php:426 -#: ../../godmode/massive/massive_standby_alerts.php:250 -#: ../../godmode/massive/massive_add_action_alerts.php:248 -#: ../../godmode/massive/massive_delete_action_alerts.php:270 -#: ../../godmode/massive/massive_enable_disable_alerts.php:222 -#: ../../godmode/agentes/module_manager.php:867 -#: ../../godmode/agentes/planned_downtime.editor.php:1008 -#: ../../godmode/agentes/agent_template.php:238 -#: ../../godmode/alerts/alert_list.list.php:745 -#: ../../godmode/alerts/alert_view.php:388 -msgid "Action" -msgstr "Action" - -#: ../../general/logon_ok.php:250 -#: ../../operation/snmpconsole/snmp_statistics.php:182 -#: ../../include/class/AuditLog.class.php:111 -#: ../../include/functions_netflow.php:347 ../../include/functions.php:3046 -#: ../../include/functions_reporting_html.php:5727 -#: ../../enterprise/include/functions_reporting_csv.php:2808 -#: ../../mobile/operation/tactical.php:351 -msgid "Source IP" -msgstr "Adresse IP source" - -#: ../../general/logon_ok.php:251 ../../operation/users/user_edit.php:606 -#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:317 -#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:410 -#: ../../include/ajax/events.php:1517 ../../include/class/AuditLog.class.php:112 -#: ../../include/functions.php:3046 -#: ../../include/functions_reporting_html.php:5728 -#: ../../enterprise/tools/ipam/ipam_ajax.php:293 -#: ../../enterprise/tools/ipam/ipam_ajax.php:479 -#: ../../enterprise/tools/ipam/ipam_massive.php:83 -#: ../../enterprise/tools/ipam/ipam_network.php:403 -#: ../../enterprise/tools/ipam/ipam_network.php:672 -#: ../../enterprise/include/functions_reporting_csv.php:1935 -#: ../../enterprise/include/functions_reporting.php:2317 -#: ../../enterprise/include/functions_ipam.php:2040 -#: ../../mobile/operation/events.php:561 -#: ../../godmode/users/configure_user.php:1042 -msgid "Comments" -msgstr "Commentaires" - -#: ../../general/logon_ok.php:296 -msgid "Latest activity" -msgstr "DerniĆØre activitĆ©" - -#: ../../general/php7_message.php:30 -#: ../../include/class/ConsoleSupervisor.php:1606 -msgid "" -"For a correct operation of PandoraFMS, PHP must be updated to version 7.0 or " -"higher." -msgstr "" -"Pour la correcte opĆ©ration de Pandora FMS, PHP doit ĆŖtre mis Ć  jour Ć  une " -"version 7.0 ou plus haute." - -#: ../../general/php7_message.php:31 -#: ../../include/class/ConsoleSupervisor.php:1606 -msgid "Otherwise, functionalities will be lost." -msgstr "Autrement, les fonctionnalitĆ©s seront perdues." - -#: ../../general/php7_message.php:33 -#: ../../include/class/ConsoleSupervisor.php:1606 -msgid "Report download in PDF format" -msgstr "Rapport tĆ©lĆ©chargement en format PDF" - -#: ../../general/php7_message.php:34 -#: ../../include/class/ConsoleSupervisor.php:1606 -msgid "Emails Sending" -msgstr "Envoy d'emails" - -#: ../../general/php7_message.php:35 -#: ../../include/class/ConsoleSupervisor.php:1606 -msgid "Metaconsole Collections" -msgstr "Collections de MĆ©taconsole" - -#: ../../general/php7_message.php:38 -msgid "Access Help" -msgstr "Aide d'accĆØs" - -#: ../../general/php7_message.php:41 -msgid "Warning php version" -msgstr "Avertissement version php" - -#: ../../general/subselect_data_module.php:62 ../../operation/tree.php:210 -#: ../../operation/tree.php:267 ../../operation/snmpconsole/snmp_view.php:549 -#: ../../operation/snmpconsole/snmp_view.php:578 -#: ../../operation/snmpconsole/snmp_view.php:586 -#: ../../operation/snmpconsole/snmp_view.php:902 ../../operation/heatmap.php:115 -#: ../../operation/events/events.build_table.php:626 -#: ../../operation/events/events.php:1073 ../../operation/events/events.php:1146 -#: ../../operation/events/events.php:1258 ../../operation/events/events.php:1310 -#: ../../operation/events/events.php:2315 -#: ../../operation/events/events_list.php:827 -#: ../../operation/events/events_list.php:839 -#: ../../operation/events/events_list.php:948 -#: ../../operation/events/events_list.php:960 -#: ../../operation/agentes/status_monitor.php:651 -#: ../../operation/agentes/estado_monitores.php:520 -#: ../../operation/agentes/estado_monitores.php:565 -#: ../../operation/agentes/alerts_status.functions.php:94 -#: ../../operation/agentes/alerts_status.functions.php:100 -#: ../../operation/agentes/alerts_status.functions.php:114 -#: ../../operation/agentes/alerts_status.functions.php:131 -#: ../../operation/agentes/alerts_status.functions.php:134 -#: ../../operation/agentes/estado_agente.php:276 -#: ../../operation/incidents/list_integriaims_incidents.php:326 -#: ../../operation/incidents/list_integriaims_incidents.php:337 -#: ../../operation/incidents/list_integriaims_incidents.php:354 -#: ../../operation/incidents/list_integriaims_incidents.php:365 -#: ../../include/ajax/events.php:438 ../../include/class/AuditLog.class.php:203 -#: ../../include/class/AuditLog.class.php:213 -#: ../../include/class/CredentialStore.class.php:535 -#: ../../include/lib/Dashboard/Widgets/system_group_status.php:399 -#: ../../include/lib/Dashboard/Widgets/events_list.php:401 -#: ../../include/lib/Dashboard/Widgets/tree_view.php:384 -#: ../../include/lib/Dashboard/Widgets/tree_view.php:417 -#: ../../include/functions_events.php:6438 -#: ../../include/functions_events.php:7044 ../../include/functions_groups.php:646 -#: ../../include/functions_groups.php:1940 -#: ../../include/functions_notifications.php:105 -#: ../../include/functions_reporting.php:2835 -#: ../../include/functions_reporting.php:2932 -#: ../../include/functions_modules.php:3542 -#: ../../include/functions_modules.php:3544 -#: ../../include/functions_groupview.php:95 ../../include/functions_html.php:915 -#: ../../include/functions_html.php:1566 ../../include/functions.php:1071 -#: ../../include/functions.php:1331 ../../include/functions_users.php:416 -#: ../../include/functions_users.php:674 -#: ../../enterprise/operation/log/log_viewer.php:620 -#: ../../enterprise/operation/log/log_viewer.php:638 -#: ../../enterprise/operation/log/log_viewer.php:688 -#: ../../enterprise/operation/snmpconsole/snmp_view.php:33 -#: ../../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/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 -#: ../../enterprise/include/class/ManageBackups.class.php:191 -#: ../../enterprise/include/functions_metaconsole.php:960 -#: ../../enterprise/include/functions_metaconsole.php:961 -#: ../../enterprise/include/functions_metaconsole.php:1309 -#: ../../enterprise/include/functions_ipam.php:1688 -#: ../../enterprise/include/functions_ipam.php:1733 -#: ../../enterprise/meta/include/ajax/wizard.ajax.php:400 -#: ../../enterprise/meta/include/ajax/wizard.ajax.php:444 -#: ../../enterprise/meta/include/functions_html_meta.php:75 -#: ../../enterprise/meta/include/functions_users_meta.php:87 -#: ../../enterprise/meta/include/functions_users_meta.php:98 -#: ../../enterprise/meta/include/functions_wizard_meta.php:322 -#: ../../enterprise/meta/monitoring/custom_fields_view.php:193 -#: ../../enterprise/meta/monitoring/custom_fields_view.php:209 -#: ../../enterprise/meta/monitoring/custom_fields_view.php:272 -#: ../../enterprise/meta/monitoring/custom_fields_view.php:762 -#: ../../enterprise/meta/monitoring/wizard/wizard.php:148 -#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:414 -#: ../../enterprise/meta/monitoring/wizard/wizard.create_module.php:218 +#: ../../enterprise/meta/advanced/metasetup.visual.php:290 +#: ../../enterprise/meta/advanced/metasetup.relations.php:419 +#: ../../enterprise/meta/advanced/collections.data.php:412 #: ../../enterprise/meta/advanced/policymanager.queue.php:212 #: ../../enterprise/meta/advanced/policymanager.queue.php:217 #: ../../enterprise/meta/advanced/policymanager.queue.php:228 #: ../../enterprise/meta/advanced/policymanager.queue.php:304 -#: ../../enterprise/meta/advanced/metasetup.relations.php:419 -#: ../../enterprise/meta/advanced/collections.data.php:412 -#: ../../enterprise/meta/advanced/metasetup.visual.php:290 +#: ../../enterprise/meta/monitoring/custom_fields_view.php:193 +#: ../../enterprise/meta/monitoring/custom_fields_view.php:209 +#: ../../enterprise/meta/monitoring/custom_fields_view.php:272 +#: ../../enterprise/meta/monitoring/custom_fields_view.php:762 +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:411 +#: ../../enterprise/meta/monitoring/wizard/wizard.create_module.php:218 +#: ../../enterprise/meta/monitoring/wizard/wizard.php:148 +#: ../../enterprise/meta/include/functions_users_meta.php:87 +#: ../../enterprise/meta/include/functions_users_meta.php:98 +#: ../../enterprise/meta/include/functions_wizard_meta.php:319 +#: ../../enterprise/meta/include/ajax/wizard.ajax.php:400 +#: ../../enterprise/meta/include/ajax/wizard.ajax.php:444 +#: ../../enterprise/meta/include/functions_html_meta.php:75 +#: ../../enterprise/godmode/modules/local_components.php:541 +#: ../../enterprise/godmode/modules/local_components.php:567 +#: ../../enterprise/godmode/modules/local_components.php:592 +#: ../../enterprise/godmode/agentes/collections.data.php:506 +#: ../../enterprise/godmode/policies/policy_queue.php:603 +#: ../../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:358 +#: ../../enterprise/godmode/policies/policy_agents.php:833 +#: ../../enterprise/godmode/massive/massive_add_modules_policy.php:131 +#: ../../enterprise/godmode/alerts/alert_inventory_builder.php:264 #: ../../enterprise/godmode/setup/setup_acl.php:487 #: ../../enterprise/godmode/setup/setup_acl.php:504 #: ../../enterprise/godmode/setup/setup_acl.php:521 @@ -4219,37 +4689,65 @@ msgstr "Avertissement version php" #: ../../enterprise/godmode/setup/setup_acl.php:772 #: ../../enterprise/godmode/setup/setup_acl.php:813 #: ../../enterprise/godmode/setup/setup_acl.php:844 -#: ../../enterprise/godmode/modules/local_components.php:541 -#: ../../enterprise/godmode/modules/local_components.php:567 -#: ../../enterprise/godmode/modules/local_components.php:592 #: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:241 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:243 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2022 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2825 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2852 #: ../../enterprise/godmode/reporting/reporting_builder.global.php:143 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:187 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:626 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:652 -#: ../../enterprise/godmode/massive/massive_add_modules_policy.php:131 -#: ../../enterprise/godmode/agentes/collections.data.php:506 -#: ../../enterprise/godmode/alerts/alert_inventory_builder.php:264 -#: ../../enterprise/godmode/policies/policy_agents.php:833 -#: ../../enterprise/godmode/policies/policy_queue.php:603 -#: ../../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:358 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:188 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:641 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:667 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:243 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2025 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2836 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2863 +#: ../../enterprise/include/class/ManageBackups.class.php:191 +#: ../../enterprise/include/functions_metaconsole.php:863 +#: ../../enterprise/include/functions_metaconsole.php:864 +#: ../../enterprise/include/functions_metaconsole.php:1212 +#: ../../enterprise/include/functions_ipam.php:1688 +#: ../../enterprise/include/functions_ipam.php:1733 +#: ../../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:620 +#: ../../enterprise/operation/log/log_viewer.php:638 +#: ../../enterprise/operation/log/log_viewer.php:688 +#: ../../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 -#: ../../extensions/agents_modules.php:416 ../../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:683 ../../mobile/operation/events.php:693 -#: ../../mobile/operation/events.php:1165 ../../mobile/operation/events.php:1194 -#: ../../mobile/operation/agents.php:56 ../../godmode/setup/gis_step_2.php:217 -#: ../../godmode/setup/setup_visuals.php:950 -#: ../../godmode/modules/manage_network_components.php:653 #: ../../godmode/modules/manage_network_templates_form.php:303 +#: ../../godmode/modules/manage_network_components.php:653 +#: ../../godmode/massive/massive_copy_modules.php:127 +#: ../../godmode/massive/massive_copy_modules.php:287 +#: ../../godmode/massive/massive_delete_modules.php:327 +#: ../../godmode/massive/massive_delete_modules.php:374 +#: ../../godmode/massive/massive_delete_modules.php:429 +#: ../../godmode/massive/massive_delete_modules.php:450 +#: ../../godmode/massive/massive_delete_agents.php:221 +#: ../../godmode/massive/massive_delete_agents.php:235 +#: ../../godmode/massive/massive_edit_agents.php:543 +#: ../../godmode/massive/massive_edit_agents.php:556 +#: ../../godmode/massive/massive_edit_modules.php:311 +#: ../../godmode/massive/massive_edit_modules.php:358 +#: ../../godmode/massive/massive_edit_modules.php:396 +#: ../../godmode/massive/massive_edit_modules.php:482 +#: ../../godmode/alerts/alert_list.list.php:131 +#: ../../godmode/alerts/alert_list.list.php:137 +#: ../../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:460 ../../godmode/alerts/alert_list.php:509 +#: ../../godmode/alerts/alert_list.php:523 ../../godmode/setup/gis_step_2.php:217 +#: ../../godmode/setup/setup_visuals.php:951 #: ../../godmode/reporting/reporting_builder.list_items.php:209 #: ../../godmode/reporting/reporting_builder.list_items.php:211 #: ../../godmode/reporting/reporting_builder.list_items.php:213 @@ -4257,2537 +4755,4019 @@ msgstr "Avertissement version php" #: ../../godmode/reporting/reporting_builder.list_items.php:245 #: ../../godmode/reporting/reporting_builder.list_items.php:255 #: ../../godmode/reporting/create_container.php:546 -#: ../../godmode/reporting/reporting_builder.item_editor.php:1531 -#: ../../godmode/reporting/reporting_builder.item_editor.php:1549 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2010 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2829 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2856 -#: ../../godmode/reporting/reporting_builder.item_editor.php:3491 -#: ../../godmode/reporting/reporting_builder.item_editor.php:3557 -#: ../../godmode/reporting/reporting_builder.item_editor.php:3579 -#: ../../godmode/reporting/reporting_builder.item_editor.php:3637 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1627 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1645 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2106 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2942 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2969 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3604 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3670 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3692 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3750 #: ../../godmode/reporting/visual_console_builder.wizard.php:340 #: ../../godmode/reporting/visual_console_builder.wizard.php:354 -#: ../../godmode/events/event_edit_filter.php:323 -#: ../../godmode/events/event_edit_filter.php:338 -#: ../../godmode/events/event_edit_filter.php:601 -#: ../../godmode/massive/massive_delete_modules.php:327 -#: ../../godmode/massive/massive_delete_modules.php:374 -#: ../../godmode/massive/massive_delete_modules.php:429 -#: ../../godmode/massive/massive_delete_modules.php:450 -#: ../../godmode/massive/massive_copy_modules.php:127 -#: ../../godmode/massive/massive_copy_modules.php:287 -#: ../../godmode/massive/massive_edit_agents.php:543 -#: ../../godmode/massive/massive_edit_agents.php:556 -#: ../../godmode/massive/massive_delete_agents.php:221 -#: ../../godmode/massive/massive_delete_agents.php:235 -#: ../../godmode/massive/massive_edit_modules.php:311 -#: ../../godmode/massive/massive_edit_modules.php:358 -#: ../../godmode/massive/massive_edit_modules.php:396 -#: ../../godmode/massive/massive_edit_modules.php:482 -#: ../../godmode/alerts/alert_list.list.php:121 -#: ../../godmode/alerts/alert_list.list.php:127 -#: ../../godmode/alerts/alert_list.list.php:136 -#: ../../godmode/alerts/alert_list.list.php:145 -#: ../../godmode/alerts/alert_templates.php:308 -#: ../../godmode/alerts/alert_list.php:460 -#: ../../godmode/alerts/alert_list.php:509 -#: ../../godmode/alerts/alert_list.php:523 +#: ../../godmode/events/event_edit_filter.php:328 +#: ../../godmode/events/event_edit_filter.php:343 +#: ../../godmode/events/event_edit_filter.php:606 +#: ../../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:1071 ../../include/functions.php:1331 +#: ../../include/ajax/events.php:506 ../../include/functions_groupview.php:95 +#: ../../include/functions_modules.php:3576 ../../include/functions_modules.php:3578 +#: ../../include/functions_users.php:416 ../../include/functions_users.php:674 +#: ../../include/functions_notifications.php:105 +#: ../../include/functions_html.php:915 ../../include/functions_html.php:1576 +#: ../../include/class/CredentialStore.class.php:535 +#: ../../include/class/AuditLog.class.php:203 +#: ../../include/class/AuditLog.class.php:213 +#: ../../include/functions_reporting.php:2953 +#: ../../include/functions_reporting.php:3050 +#: ../../include/lib/Dashboard/Widgets/system_group_status.php:399 +#: ../../include/lib/Dashboard/Widgets/events_list.php:412 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:384 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:417 +#: ../../include/functions_groups.php:646 ../../include/functions_groups.php:1940 +#: ../../operation/heatmap.php:115 ../../operation/tree.php:210 +#: ../../operation/tree.php:267 ../../operation/agentes/estado_agente.php:276 +#: ../../operation/agentes/status_monitor.php:651 +#: ../../operation/agentes/estado_monitores.php:520 +#: ../../operation/agentes/estado_monitores.php:565 +#: ../../operation/agentes/alerts_status.functions.php:96 +#: ../../operation/agentes/alerts_status.functions.php:115 +#: ../../operation/agentes/alerts_status.functions.php:125 +#: ../../operation/agentes/alerts_status.functions.php:130 +#: ../../operation/snmpconsole/snmp_view.php:549 +#: ../../operation/snmpconsole/snmp_view.php:578 +#: ../../operation/snmpconsole/snmp_view.php:586 +#: ../../operation/snmpconsole/snmp_view.php:902 +#: ../../operation/incidents/list_integriaims_incidents.php:326 +#: ../../operation/incidents/list_integriaims_incidents.php:337 +#: ../../operation/incidents/list_integriaims_incidents.php:354 +#: ../../operation/incidents/list_integriaims_incidents.php:365 +#: ../../operation/events/events.php:748 ../../operation/events/events.php:1589 +#: ../../operation/events/events.php:1662 ../../operation/events/events.php:1794 +#: ../../operation/events/events.php:1846 ../../general/subselect_data_module.php:62 msgid "All" msgstr "Tout" -#: ../../general/footer.php:51 ../../enterprise/meta/general/footer.php:41 -#, php-format -msgid "%s %s - %s - MR %s" -msgstr "%s %s - %s - MR %s" - -#: ../../general/footer.php:56 -#, php-format -msgid "Page generated on %s" -msgstr "Page gĆ©nĆ©rĆ©e dans %s" - -#: ../../general/mysqlerr.php:105 -msgid "Database error" -msgstr "Erreur de la base de donnĆ©es" - -#: ../../general/mysqlerr.php:115 -msgid "" -"Failure to connect to historical database, please check the configuration or " -"contact system administrator if you need assistance." -msgstr "" -"Il n'a pas Ć©tĆ© possible de connecter la base de donnĆ©es historique, veuillez " -"vĆ©rifier la configuration ou contactez l'administrateur systĆØme si vous avez " -"besoin d'assistance." - -#: ../../general/mysqlerr.php:117 -msgid "" -"Failure to connect to Database server, please check the configuration file " -"config.php or contact system administrator if you need assistance." -msgstr "" -"La connexion avec le serveur Database a Ć©chouĆ©, vĆ©rifiez le fichier de " -"configuration config.php ou contactez l'administrateur systĆØme si vous avez " -"besoin de l'assistance." - -#: ../../general/node_deactivated.php:36 -msgid "You cannot use this node until system is unified" -msgstr "Vous ne pouvez utiliser ce noeud jusqu'Ć  que le systĆØme soit unifiĆ©" - -#: ../../general/node_deactivated.php:59 -#: ../../enterprise/meta/monitoring/wizard/wizard.php:53 -#: ../../enterprise/meta/advanced/massive_operations.php:57 -msgid "command center" -msgstr "centre de commande" - -#: ../../general/node_deactivated.php:56 -#, php-format -msgid "Please navigate to %s to unify system" -msgstr "Naviguez ves %s pour unifier le systĆØme" - -#: ../../general/login_page.php:54 -#, php-format -msgid "Go to %s Website" -msgstr "Aller vers la page WEB %s" - -#: ../../general/login_page.php:68 -msgid "Go to Login" -msgstr "Aller Ć  Connexion" - -#: ../../general/login_page.php:79 -#: ../../enterprise/meta/general/login_page.php:45 -#: ../../enterprise/meta/include/reset_pass.php:28 -#: ../../enterprise/meta/include/process_reset_pass.php:28 -msgid "Splash login" -msgstr "Connexion Splah" - -#: ../../general/login_page.php:136 ../../general/login_page.php:139 -#: ../../general/login_page.php:155 ../../enterprise/include/reset_pass.php:48 -#: ../../enterprise/include/process_reset_pass.php:53 -msgid "Docs" -msgstr "Documents" - -#: ../../general/login_page.php:244 ../../general/login_page.php:285 -#: ../../operation/users/user_edit.php:702 -#: ../../operation/users/user_edit.php:748 -#: ../../include/class/AgentWizard.class.php:672 -#: ../../include/class/CredentialStore.class.php:958 -#: ../../include/class/CredentialStore.class.php:995 -#: ../../include/class/CredentialStore.class.php:1135 -#: ../../include/class/CredentialStore.class.php:1158 -#: ../../include/functions_config.php:712 ../../include/functions_config.php:732 -#: ../../enterprise/include/ajax/servers.ajax.php:101 -#: ../../enterprise/include/ajax/servers.ajax.php:159 -#: ../../enterprise/include/ajax/servers.ajax.php:285 -#: ../../enterprise/include/class/MicrosoftSQLServer.app.php:514 -#: ../../enterprise/include/class/MySQL.app.php:535 -#: ../../enterprise/include/class/Oracle.app.php:520 -#: ../../enterprise/include/class/DB2.app.php:513 -#: ../../enterprise/include/class/VMware.app.php:732 -#: ../../enterprise/include/functions_setup.php:55 -#: ../../enterprise/include/functions_setup.php:113 -#: ../../enterprise/include/functions_ui.php:104 -#: ../../enterprise/meta/general/login_page.php:139 -#: ../../enterprise/meta/general/login_page.php:181 -#: ../../enterprise/meta/include/functions_meta.php:1177 -#: ../../enterprise/meta/include/functions_meta.php:1231 -#: ../../enterprise/meta/include/functions_meta.php:1285 -#: ../../enterprise/meta/include/functions_wizard_meta.php:523 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1477 -#: ../../enterprise/godmode/setup/setup_auth.php:1045 -#: ../../enterprise/godmode/setup/setup_auth.php:1077 -#: ../../enterprise/godmode/setup/setup_module_library.php:52 -#: ../../enterprise/godmode/servers/manage_export_form.php:117 -#: ../../enterprise/godmode/servers/credential_boxes_satellite.php:250 -#: ../../enterprise/godmode/servers/manage_credential_boxes.php:59 -#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:851 -#: ../../extensions/api_checker.php:143 ../../mobile/include/user.class.php:380 -#: ../../godmode/setup/setup_integria.php:289 -#: ../../godmode/setup/setup_ehorus.php:86 -#: ../../godmode/modules/manage_network_components_form_wmi.php:49 -#: ../../godmode/massive/massive_edit_modules.php:908 -#: ../../godmode/agentes/module_manager_editor_wmi.php:116 -#: ../../godmode/users/configure_user.php:934 -msgid "Password" -msgstr "Mot de passe" - -#: ../../general/login_page.php:251 -msgid "Login as admin" -msgstr "Connexion en tant qu'administateur" - -#: ../../general/login_page.php:259 -#: ../../enterprise/meta/general/login_page.php:154 -#: ../../mobile/include/user.class.php:404 -msgid "Login with SAML" -msgstr "Connexion avec SAML" - -#: ../../general/login_page.php:291 -#: ../../enterprise/meta/general/login_page.php:146 -#: ../../enterprise/meta/general/login_page.php:187 -#: ../../mobile/include/user.class.php:384 -msgid "Login" -msgstr "Se connecter" - -#: ../../general/login_page.php:307 -#: ../../enterprise/meta/general/login_page.php:109 -msgid "Authentication code" -msgstr "Code d'authentification" - -#: ../../general/login_page.php:310 -#: ../../enterprise/meta/general/login_page.php:112 -#: ../../mobile/include/user.class.php:473 -msgid "Check code" -msgstr "Code de vĆ©rification" - -#: ../../general/login_page.php:319 -msgid "View details" -msgstr "Voir les dĆ©tails" - -#: ../../general/login_page.php:334 ../../general/login_page.php:337 -#: ../../enterprise/meta/general/login_page.php:195 -msgid "Forgot your password?" -msgstr "Mot de passe oubliĆ© ?" - -#: ../../general/login_page.php:340 ../../general/login_page.php:343 -#: ../../general/login_page.php:428 ../../general/login_page.php:431 -#: ../../general/login_page.php:445 ../../general/login_page.php:448 -#: ../../general/login_page.php:465 ../../general/login_page.php:468 -#: ../../enterprise/meta/general/login_page.php:235 -#: ../../enterprise/meta/general/login_page.php:238 -#: ../../enterprise/meta/general/login_page.php:252 -#: ../../enterprise/meta/general/login_page.php:255 -#: ../../enterprise/meta/general/login_page.php:272 -#: ../../enterprise/meta/general/login_page.php:275 -msgid "Password reset" -msgstr "RĆ©initialiser le mot de passe" - -#: ../../general/login_page.php:347 -msgid "" -"This node is configured with centralized mode. Go to metaconsole to reset the " -"password" -msgstr "" -"Ce nœud est configurĆ© en mode centralisĆ©. AccĆ©dez Ć  MĆ©taconsole pour " -"rĆ©initialiser le mot de passe" - -#: ../../general/login_page.php:372 ../../general/login_page.php:375 -#, php-format -msgid "WELCOME TO %s" -msgstr "Bienvenue Ć  %s" - -#: ../../general/login_page.php:384 ../../general/login_page.php:387 -msgid "NEXT GENERATION" -msgstr "NOUVELLE GƉNƉRATION" - -#: ../../general/login_page.php:424 ../../enterprise/include/reset_pass.php:170 -#: ../../enterprise/include/process_reset_pass.php:183 -#: ../../enterprise/meta/general/login_page.php:232 -#: ../../enterprise/meta/include/reset_pass.php:161 -#: ../../enterprise/meta/include/process_reset_pass.php:164 -msgid "Build" -msgstr "GĆ©nĆ©rer" - -#: ../../general/login_page.php:435 -#: ../../enterprise/meta/general/login_page.php:242 -msgid "INFO" -msgstr "INFO" - -#: ../../general/login_page.php:436 -#: ../../enterprise/meta/general/login_page.php:243 -msgid "An email has been sent to your email address" -msgstr "Un message a Ć©tĆ© envoyĆ© Ć  votre adresse courriel" - -#: ../../general/login_page.php:452 ../../general/login_page.php:494 -#: ../../enterprise/include/reset_pass.php:181 -#: ../../enterprise/meta/general/login_page.php:259 -#: ../../enterprise/meta/general/login_page.php:301 -#: ../../enterprise/meta/include/reset_pass.php:172 -msgid "ERROR" -msgstr "ERREUR" - -#: ../../general/login_page.php:472 -#: ../../enterprise/meta/general/login_page.php:279 -msgid "SUCCESS" -msgstr "SUCCƈS" - -#: ../../general/login_page.php:487 ../../general/login_page.php:490 -#: ../../general/login_page.php:644 ../../general/login_page.php:647 -#: ../../enterprise/include/functions_login.php:141 -#: ../../enterprise/meta/general/login_page.php:294 -#: ../../enterprise/meta/general/login_page.php:297 -msgid "Login failed" -msgstr "Erreur de connexion" - -#: ../../general/login_page.php:512 ../../general/login_page.php:515 -#: ../../general/login_page.php:519 -#: ../../enterprise/meta/general/login_page.php:319 -#: ../../enterprise/meta/general/login_page.php:322 -#: ../../enterprise/meta/general/login_page.php:326 -msgid "Logged out" -msgstr "DĆ©connectĆ©" - -#: ../../general/login_page.php:521 -#: ../../enterprise/meta/general/login_page.php:327 -#: ../../mobile/include/user.class.php:342 -#, php-format -msgid "" -"Your session has ended. Please close your browser window to close this %s " -"session." -msgstr "" -"Votre session a terminĆ©. Veuillez fermer votre fenĆŖtre du navigateur pour " -"fermer la session %s." - -#: ../../general/login_page.php:536 -msgid "User node access not enabled" -msgstr "AccĆØs au node de l'utilisateur non habilitĆ©" - -#: ../../general/login_page.php:539 ../../general/login_page.php:543 -msgid "Centralized user in metaconsole" -msgstr "Utilisateur centralisĆ© dans la MĆ©taconsole" - -#: ../../general/login_page.php:544 -msgid "" -"This user does not have access on node, please enable node access on this user " -"from metaconsole." -msgstr "" -"Cet utilisateur n'a pas d'accĆØs dans le noeud, veuillez habiliter l'accĆØs dans " -"cette utilisateur depuis la MĆ©taconsole." - -#: ../../general/login_page.php:559 ../../general/login_page.php:561 -#, php-format -msgid "Problem with %s database" -msgstr "ProblĆØme avec la base de donnĆ©es %s" - -#: ../../general/login_page.php:565 -msgid "" -"Cannot connect to the database, please check your database setup in the " -"include/config.php file.

    \n" -"\t\tProbably your database, hostname, user or password values are incorrect " -"or\n" -"\t\tthe database server is not running." -msgstr "" -"Impossible de se connecter Ơ la base de donnƩes. Veuillez vƩrifier la " -"configuration de la base de donnƩes dans le fichier include/config.php." -"

    \n" -"\t\tLes valeurs de votre base de donnƩes, nom d'hƓte, utilisateur ou mot de " -"passe sont probablement erronƩes ou bien\n" -"\t\tle serveur de la base de donnƩes est hors service." - -#: ../../general/login_page.php:570 -msgid "DB ERROR" -msgstr "ERREUR BD" - -#: ../../general/login_page.php:576 -#, php-format -msgid "" -"If you have modified the auth system, the origin of this problem could be that " -"%s cannot override the authorization variables from the config database. " -"Please remove them from your database by executing:
    DELETE FROM "
    -"tconfig WHERE token = \"auth\";
    " -msgstr "" -"Si vous avez modifiĆ© le auth system, la source de ce problĆØme pourrait ĆŖtre " -"que %s ne peut pas outrepasser les variables d'autorisation depuis la base de " -"donnĆ©es de configuration. Veuillez les Ć©liminer de votre bas de donnĆ©es en " -"exĆ©cutant :
    DELETE FROM tconfig WHERE token = \"auth\";
    " - -#: ../../general/login_page.php:581 -msgid "Empty configuration table" -msgstr "Table de configuration vide" - -#: ../../general/login_page.php:583 -#, php-format -msgid "" -"Cannot load configuration variables from database. Please check your database " -"setup in the\n" -"\t\t\tinclude/config.php file.

    \n" -"\t\t\tMost likely your database schema has been created but there are is no " -"data in it, you have a problem with the database access credentials or your " -"schema is out of date.\n" -"\t\t\t

    %s Console cannot find include/config.php or this file " -"has invalid\n" -"\t\t\tpermissions and HTTP server cannot read it. Please read documentation to " -"fix this problem.
    " -msgstr "" -"Les variables de configuration de la base de donnĆ©es ne peut pas ĆŖtre chargĆ©e " -"depuis la base de donnĆ©es. Veuillez vĆ©rifier la configuration de votre base de " -"donnĆ©es dans le\n" -"\t\t\tinclude/config.php file.

    \n" -"\t\t\tIl se peut que le schĆ©ma de votre base de donnĆ©es aie Ć©tĆ© crĆ©Ć© mais il " -"n'y a pas de donnĆ©es, vous avez un problĆØme avec les identifiants d'accĆØs de " -"la base de donnĆ©es ou votre schĆ©ma est pĆ©rimĆ©.\n" -"\t\t\t

    %s Console cannot find include/config.php or this file " -"has invalid\n" -"\t\t\tpermissions and HTTP server cannot read it. Please read documentation to " -"fix this problem.
    " - -#: ../../general/login_page.php:593 -msgid "No configuration file found" -msgstr "Aucun fichier de configuration trouvĆ©" - -#: ../../general/login_page.php:595 -#, php-format -msgid "" -"%s Console cannot find include/config.php or this file has invalid\n" -"\t\tpermissions and HTTP server cannot read it. Please read documentation to " -"fix this problem." -msgstr "" -"La Console %s ne peut pas trouver include/config.php ou ce fichier " -"n'est pas valide\n" -"\t\tles permissions et le serveur HTTP ne peut pas le lire. Veuillez lire la " -"documentation pour fixer ce problĆØme." - -#: ../../general/login_page.php:607 -#, php-format -msgid "You may try to run the %sinstallation wizard%s to create one." -msgstr "" -"Vous pouvez essayer d'exĆ©cuter le %sassistant logiciel%s pour en crĆ©er " -"un." - -#: ../../general/login_page.php:611 -msgid "Installer active" -msgstr "Installateur actif" - -#: ../../general/login_page.php:613 -#, php-format -msgid "" -"For security reasons, normal operation is not possible until you delete " -"installer file.\n" -"\t\tPlease delete the ./install.php file before running %s Console." -msgstr "" -"Pour raisons de sĆ©curitĆ©, l'opĆ©ration normal n'est pas possible jusqu'a que " -"vous Ć©liminez le fichier d'installation.\n" -"\t\tVeuillez Ć©liminer le fichier ./install.php avant d'exĆ©cuter la " -"Console %s." - -#: ../../general/login_page.php:620 -msgid "Bad permission for include/config.php" -msgstr "Autorisation incorrecte pour include/config.php" - -#: ../../general/login_page.php:622 -msgid "" -"For security reasons, config.php must have restrictive permissions, and " -"\"other\" users\n" -"\t\tshould not read it or write to it. It should be written only for owner\n" -"\t\t(usually www-data or http daemon user), normal operation is not possible " -"until you change\n" -"\t\tpermissions for include/config.php file. Please do it, it is for " -"your security." -msgstr "" -"Pour des raisons de sĆ©curitĆ©, config.php doit avoir des autorisation " -"restrictives, et les Ā« autres Ā» utilisateurs\n" -"\t\tne devraient pas le lire ou Ć©crire dessus. Il devrait ĆŖtre Ć©crit " -"uniquement par le propriĆ©taire\n" -"\t\t(en gĆ©nĆ©ral www-data ou utilisateur dĆ©mon http), il n'est pas possible " -"d'exĆ©cuter une opĆ©ration normale tant que vous ne changez pas\n" -"\t\tles autorisations pour le fichier include/config.php. Veuillez les " -"changer, c'est pour votre sĆ©curitĆ©." - -#: ../../general/login_page.php:630 -msgid "Bad defined homedir" -msgstr "RĆ©pertoire personnel homedir mal dĆ©fini" - -#: ../../general/login_page.php:631 -msgid "" -"In the config.php file in the variable $config[\"homedir\"] = add the correct " -"path" -msgstr "" -"Dans le fichier config.php, dans la variable $config[\"homedir\"] = ajouter le " -"chemin correct" - -#: ../../general/login_page.php:635 -msgid "Bad defined homeurl or homeurl_static" -msgstr "homeurl ou homeurl_static mal dĆ©fini" - -#: ../../general/login_page.php:636 -msgid "" -"In the config.php file in the variable $config[\"homeurl\"] or " -"$config[\"homeurl_static\"] = add the correct path" -msgstr "" -"Dans le fichier config.php, dans la variable $config[\"homeurl\"] ou " -"$config[\"homeurl_static\"] = ajouter le chemin correct" - -#: ../../general/noaccesssaml.php:135 -#: ../../enterprise/meta/general/noaccesssaml.php:135 -msgid "" -"Access to this page is restricted to authorized users SAML only, please " -"contact system administrator if you need assistance." -msgstr "" -"L'accĆØs Ć  cette page est limitĆ© auz utilisateurs SAML autorisĆ©s seulement, " -"veuillez contacter l'administrateur systĆØme si vous avez besoin d'assistance." - -#: ../../general/noaccesssaml.php:137 -#: ../../enterprise/meta/general/noaccesssaml.php:137 -#, php-format -msgid "" -"Please make sure you have SAML authentication properly configured. For more " -"information the error to access this page are recorded in security logs of %s " -"System Database" -msgstr "" -"VĆ©rifiez que votre authentification SAML est configurĆ©e correctement. Pour " -"plus d'informations l'erreur pour accĆ©der Ć  cette page sont enregistrĆ©s dans " -"des journaux de sĆ©curitĆ© de la base de donnĆ©es du systĆØme %s" - -#: ../../general/pandora_help.php:23 -#, php-format -msgid "%s help system" -msgstr "SystĆØme d'aide de %s" - -#: ../../general/pandora_help.php:72 -msgid "Help system error" -msgstr "Erreur dans le systĆØme d'aide" - -#: ../../general/pandora_help.php:77 -#, php-format -msgid "" -"%s help system has been called with a help reference that currently don't " -"exist. There is no help content to show." -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." - -#: ../../operation/messages/message_list.php:46 -#: ../../operation/messages/message_list.php:55 -#: ../../operation/messages/message_edit.php:66 -msgid "Sent messages" -msgstr "Messages envoyĆ©s" - -#: ../../operation/messages/message_list.php:46 -#: ../../operation/messages/message_list.php:50 -#: ../../operation/messages/message_edit.php:54 -msgid "Received messages" -msgstr "Messages reƧus" - -#: ../../operation/messages/message_list.php:64 -#: ../../operation/messages/message_list.php:304 -#: ../../operation/messages/message_edit.php:78 -msgid "Create message" -msgstr "CrĆ©er un message" - -#: ../../operation/messages/message_list.php:86 -#: ../../operation/messages/message_edit.php:99 ../../operation/menu.php:453 -#: ../../operation/users/user_edit_header.php:127 -msgid "Workspace" -msgstr "Espace de travail" - -#: ../../operation/messages/message_list.php:90 -#: ../../operation/messages/message_edit.php:103 ../../operation/menu.php:493 -#: ../../enterprise/meta/general/main_menu.php:318 -msgid "Messages" -msgstr "Messages" - -#: ../../operation/messages/message_list.php:136 -msgid "Not deleted. Error deleting messages" -msgstr "Erreur de suppression des messages" - -#: ../../operation/messages/message_list.php:144 -#: ../../operation/messages/message_list.php:153 -msgid "You have" -msgstr "Vous avez" - -#: ../../operation/messages/message_list.php:144 -msgid "sent message(s)" -msgstr "message(s) envoyĆ©(s)" - -#: ../../operation/messages/message_list.php:153 -msgid "unread message(s)" -msgstr "message(s) non lu(s)" - -#: ../../operation/messages/message_list.php:164 -msgid "There are no messages." -msgstr "Il n'y a pas de messages." - -#: ../../operation/messages/message_list.php:192 -#: ../../operation/search_policies.php:38 ../../operation/search_modules.php:36 -#: ../../operation/snmpconsole/snmp_view.php:584 -#: ../../operation/snmpconsole/snmp_view.php:849 -#: ../../operation/snmpconsole/snmp_view.php:1226 -#: ../../operation/search_agents.php:56 -#: ../../operation/events/events.build_table.php:358 -#: ../../operation/agentes/status_monitor.php:1334 -#: ../../operation/agentes/alerts_status.php:552 -#: ../../operation/agentes/alerts_status.php:587 -#: ../../operation/agentes/alerts_status.php:622 -#: ../../operation/agentes/alerts_status.php:654 -#: ../../operation/agentes/interface_view.functions.php:497 -#: ../../operation/agentes/alerts_status.functions.php:104 -#: ../../operation/agentes/estado_agente.php:275 -#: ../../operation/agentes/estado_agente.php:763 -#: ../../operation/incidents/integriaims_export_csv.php:83 -#: ../../operation/incidents/configure_integriaims_incident.php:250 -#: ../../operation/incidents/list_integriaims_incidents.php:320 -#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:322 -#: ../../include/ajax/module.php:980 ../../include/ajax/alert_list.ajax.php:283 -#: ../../include/ajax/alert_list.ajax.php:308 -#: ../../include/ajax/custom_fields.php:416 -#: ../../include/class/AgentsAlerts.class.php:894 -#: ../../include/class/ExternalTools.class.php:795 -#: ../../include/class/NetworkMap.class.php:2907 -#: ../../include/lib/Dashboard/Widgets/system_group_status.php:318 -#: ../../include/functions_events.php:196 ../../include/functions_events.php:251 -#: ../../include/functions_events.php:2625 -#: ../../include/functions_events.php:5072 -#: ../../include/functions_events.php:6666 ../../include/functions_snmp.php:369 -#: ../../include/functions_snmp_browser.php:594 -#: ../../include/functions_reporting_html.php:547 -#: ../../include/functions_reporting_html.php:1046 -#: ../../include/functions_reporting_html.php:1055 -#: ../../include/functions_reporting_html.php:1281 -#: ../../include/functions_reporting_html.php:1289 -#: ../../include/functions_reporting_html.php:1549 -#: ../../include/functions_reporting_html.php:2107 -#: ../../include/functions_reporting_html.php:2384 -#: ../../include/functions_reporting_html.php:2742 -#: ../../include/functions_reporting_html.php:3391 -#: ../../include/functions_reporting_html.php:3444 -#: ../../include/functions_reporting_html.php:5016 -#: ../../enterprise/tools/ipam/ipam_vlan_wizard.php:412 -#: ../../enterprise/views/ncm/devices/list.php:120 -#: ../../enterprise/views/cluster/list.php:63 -#: ../../enterprise/operation/services/services.service.php:127 -#: ../../enterprise/operation/services/services.list.php:243 -#: ../../enterprise/operation/services/services.list.php:507 -#: ../../enterprise/operation/services/services.table_services.php:165 -#: ../../enterprise/operation/agentes/tag_view.php:607 -#: ../../enterprise/operation/agentes/tag_view.php:685 -#: ../../enterprise/operation/agentes/policy_view.php:66 -#: ../../enterprise/operation/agentes/policy_view.php:166 -#: ../../enterprise/operation/agentes/policy_view.php:262 -#: ../../enterprise/operation/agentes/policy_view.php:397 -#: ../../enterprise/operation/agentes/collection_view.php:78 -#: ../../enterprise/include/functions_reporting_csv.php:718 -#: ../../enterprise/include/functions_reporting_csv.php:881 -#: ../../enterprise/include/functions_reporting_csv.php:1993 -#: ../../enterprise/include/functions_reporting_csv.php:2739 -#: ../../enterprise/include/class/ManageBackups.class.php:165 -#: ../../enterprise/include/functions_services.php:1613 -#: ../../enterprise/include/functions_reporting.php:1857 -#: ../../enterprise/include/functions_reporting.php:2896 -#: ../../enterprise/include/functions_reporting.php:3883 -#: ../../enterprise/include/functions_reporting.php:6139 -#: ../../enterprise/meta/include/functions_events_meta.php:78 -#: ../../enterprise/meta/monitoring/custom_fields_view.php:707 -#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:466 -#: ../../enterprise/meta/advanced/policymanager.queue.php:225 -#: ../../enterprise/meta/advanced/servers.build_table.php:61 -#: ../../enterprise/meta/agentsearch.php:140 -#: ../../enterprise/meta/agentsearch.php:330 -#: ../../enterprise/extensions/vmware/vmware_view.php:1085 -#: ../../enterprise/godmode/servers/list_satellite.php:38 -#: ../../enterprise/godmode/servers/HA_cluster.php:170 -#: ../../enterprise/godmode/admin_access_logs.php:50 -#: ../../enterprise/godmode/massive/massive_add_modules_policy.php:125 -#: ../../enterprise/godmode/agentes/collection_manager.php:112 -#: ../../enterprise/godmode/agentes/collection_manager.php:209 -#: ../../enterprise/godmode/policies/policy_agents.php:852 -#: ../../enterprise/godmode/policies/policy_agents.php:1368 -#: ../../enterprise/godmode/policies/policy_queue.php:616 -#: ../../enterprise/godmode/policies/policy_modules.php:1466 -#: ../../enterprise/godmode/policies/policies.php:405 -#: ../../enterprise/godmode/policies/policy_alerts.php:354 -#: ../../enterprise/godmode/policies/policy_collections.php:172 -#: ../../enterprise/godmode/policies/policy_collections.php:266 -#: ../../mobile/operation/modules.php:163 ../../mobile/operation/modules.php:164 -#: ../../mobile/operation/modules.php:275 ../../mobile/operation/modules.php:276 -#: ../../mobile/operation/modules.php:603 ../../mobile/operation/modules.php:609 -#: ../../mobile/operation/modules.php:615 ../../mobile/operation/modules.php:621 -#: ../../mobile/operation/modules.php:632 ../../mobile/operation/modules.php:640 -#: ../../mobile/operation/modules.php:648 ../../mobile/operation/modules.php:720 -#: ../../mobile/operation/modules.php:732 ../../mobile/operation/modules.php:850 -#: ../../mobile/operation/alerts.php:105 ../../mobile/operation/alerts.php:106 -#: ../../mobile/operation/alerts.php:247 ../../mobile/operation/alerts.php:248 -#: ../../mobile/operation/alerts.php:350 ../../mobile/operation/events.php:368 -#: ../../mobile/operation/events.php:369 ../../mobile/operation/events.php:536 -#: ../../mobile/operation/events.php:672 ../../mobile/operation/events.php:673 -#: ../../mobile/operation/agents.php:97 ../../mobile/operation/agents.php:144 -#: ../../mobile/operation/agents.php:243 ../../mobile/operation/agents.php:244 -#: ../../mobile/operation/agents.php:406 -#: ../../godmode/setup/setup_integria.php:426 -#: ../../godmode/setup/setup_integria.php:548 -#: ../../godmode/servers/servers.build_table.php:80 -#: ../../godmode/reporting/reporting_builder.item_editor.php:77 -#: ../../godmode/events/custom_events.php:101 -#: ../../godmode/massive/massive_delete_modules.php:415 -#: ../../godmode/massive/massive_copy_modules.php:121 -#: ../../godmode/massive/massive_copy_modules.php:281 -#: ../../godmode/massive/massive_edit_agents.php:537 -#: ../../godmode/massive/massive_edit_agents.php:905 -#: ../../godmode/massive/massive_delete_agents.php:215 -#: ../../godmode/wizards/DiscoveryTaskList.class.php:600 -#: ../../godmode/agentes/module_manager.php:863 -#: ../../godmode/agentes/status_monitor_custom_fields.php:97 -#: ../../godmode/agentes/status_monitor_custom_fields.php:148 -#: ../../godmode/agentes/agent_incidents.php:89 -#: ../../godmode/alerts/alert_list.list.php:132 -#: ../../godmode/alerts/alert_list.list.php:482 -#: ../../godmode/alerts/alert_view.php:114 -msgid "Status" -msgstr "Ɖtat" - -#: ../../operation/messages/message_list.php:194 -#: ../../operation/messages/message_edit.php:269 -msgid "Destination" -msgstr "Destination" - -#: ../../operation/messages/message_list.php:196 -#: ../../operation/messages/message_edit.php:265 -msgid "Sender" -msgstr "ExpĆ©diteur" - -#: ../../operation/messages/message_list.php:199 -#: ../../operation/messages/message_edit.php:350 -#: ../../enterprise/operation/reporting/custom_reporting.php:132 -#: ../../enterprise/include/functions_cron.php:190 -#: ../../enterprise/include/functions_cron.php:240 -#: ../../enterprise/include/functions_reporting.php:8186 -#: ../../godmode/setup/news.php:183 ../../godmode/setup/news.php:246 -msgid "Subject" -msgstr "Objet" - -#: ../../operation/messages/message_list.php:200 -#: ../../operation/search_modules.php:39 -#: ../../operation/snmpconsole/snmp_view.php:881 -#: ../../operation/events/events.build_table.php:192 -#: ../../operation/agentes/status_monitor.php:1364 -#: ../../operation/agentes/exportdata.csv.php:74 -#: ../../operation/agentes/exportdata.php:83 -#: ../../operation/agentes/exportdata.excel.php:74 -#: ../../operation/agentes/estado_generalagente.php:645 -#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:116 -#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:247 -#: ../../include/ajax/events_extended.php:90 -#: ../../include/ajax/custom_fields.php:415 ../../include/ajax/events.php:1809 -#: ../../include/functions_events.php:197 ../../include/functions_events.php:254 -#: ../../include/functions_events.php:2621 -#: ../../include/functions_events.php:4998 -#: ../../include/functions_events.php:6692 -#: ../../include/functions_netflow.php:278 -#: ../../include/functions_reporting_html.php:1053 -#: ../../include/functions_reporting_html.php:1061 -#: ../../include/functions_reporting_html.php:1286 -#: ../../include/functions_reporting_html.php:1293 -#: ../../include/functions_reporting_html.php:2393 -#: ../../include/functions_reporting_html.php:5019 -#: ../../enterprise/operation/agentes/tag_view.php:686 -#: ../../enterprise/include/functions_reporting_csv.php:802 -#: ../../enterprise/include/functions_reporting_csv.php:875 -#: ../../enterprise/include/functions_reporting_csv.php:1458 -#: ../../enterprise/include/functions_reporting_csv.php:2281 -#: ../../enterprise/include/functions_reporting_csv.php:2317 -#: ../../enterprise/include/functions_reporting_csv.php:2629 -#: ../../enterprise/include/class/LogSource.class.php:628 -#: ../../enterprise/include/class/Omnishell.class.php:400 -#: ../../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/meta/include/functions_events_meta.php:82 -#: ../../mobile/operation/modules.php:661 ../../mobile/operation/modules.php:852 -#: ../../mobile/operation/events.php:516 ../../godmode/setup/news.php:249 -#: ../../godmode/update_manager/update_manager.history.php:44 -#: ../../godmode/events/custom_events.php:102 -#: ../../godmode/agentes/status_monitor_custom_fields.php:117 -#: ../../godmode/agentes/status_monitor_custom_fields.php:153 -msgid "Timestamp" -msgstr "Horodatage" - -#: ../../operation/messages/message_list.php:214 -msgid "Click to read" -msgstr "Cliquez ici pour le lire" - -#: ../../operation/messages/message_list.php:218 -msgid "Mark as unread" -msgstr "Marquer comme non lu" - -#: ../../operation/messages/message_list.php:224 -#: ../../operation/messages/message_list.php:228 -msgid "Message unread - click to read" -msgstr "Message non lu - cliquez pour le lire" - -#: ../../operation/messages/message_list.php:256 -msgid "No Subject" -msgstr "Aucun sujet" - -#: ../../operation/messages/message_edit.php:90 -msgid "Compose message" -msgstr "RĆ©diger un message" - -#: ../../operation/messages/message_edit.php:119 -msgid "This message does not exist in the system" -msgstr "Ce message n'existe pas dans le systĆØme." - -#: ../../operation/messages/message_edit.php:188 -msgid "wrote" -msgstr "a Ć©crit" - -#: ../../operation/messages/message_edit.php:203 -msgid "Delete conversation" -msgstr "Supprimer la conversation" - -#: ../../operation/messages/message_edit.php:211 -msgid "Reply" -msgstr "RĆ©pondre" - -#: ../../operation/messages/message_edit.php:226 -msgid "User or group must be selected." -msgstr "L'utilisateur ou le groupe doit ĆŖtre sĆ©lectionnĆ©." - -#: ../../operation/messages/message_edit.php:244 -#, php-format -msgid "Message successfully sent to user %s" -msgstr "Message envoyĆ© Ć  l'utilisateur %s correctement" - -#: ../../operation/messages/message_edit.php:245 -#, php-format -msgid "Error sending message to user %s" -msgstr "Erreur, message non envoyĆ© Ć  l'utilisateur %s" - -#: ../../operation/messages/message_edit.php:324 -msgid "Select user" -msgstr "SĆ©lectionner l'utilisateur" - -#: ../../operation/messages/message_edit.php:330 -msgid "OR" -msgstr "OU" - -#: ../../operation/messages/message_edit.php:341 -msgid "Select group" -msgstr "Choisir un groupe" - -#: ../../operation/messages/message_edit.php:360 -#: ../../enterprise/operation/reporting/custom_reporting.php:150 -#: ../../enterprise/include/functions_cron.php:194 -#: ../../enterprise/include/functions_cron.php:244 -#: ../../enterprise/include/functions_reporting.php:8204 -msgid "Message" -msgstr "Message" - -#: ../../operation/messages/message_edit.php:396 -msgid "Send message" -msgstr "Envoyer le message" - -#: ../../operation/visual_console/legacy_public_view.php:57 -#: ../../operation/visual_console/public_view.php:38 -#: ../../operation/gis_maps/public_console.php:277 -#: ../../operation/events/sound_events.php:90 -#: ../../operation/agentes/stat_win.php:92 ../../index.php:1396 -#: ../../enterprise/meta/index.php:206 -msgid "Connection with server has been lost" -msgstr "Connexion avec le serveur perdue" - -#: ../../operation/visual_console/legacy_public_view.php:58 -#: ../../operation/visual_console/public_view.php:39 -#: ../../operation/gis_maps/public_console.php:278 -#: ../../operation/events/sound_events.php:91 -#: ../../operation/agentes/stat_win.php:93 ../../index.php:1397 -#: ../../enterprise/meta/index.php:207 -msgid "" -"Connection to the server has been lost. Please check your internet connection " -"or contact with administrator." -msgstr "" -"Connexion avec le serveur perdue. Veuillez vĆ©rifier votre connexion Internet " -"ou contacte avec l'administrateur." - -#: ../../operation/visual_console/legacy_public_view.php:168 -#: ../../operation/visual_console/public_view.php:150 -msgid "QR code of the page" -msgstr "Code QR de la page" - -#: ../../operation/visual_console/legacy_public_view.php:198 -#: ../../operation/visual_console/legacy_view.php:339 -msgid "Until refresh" -msgstr "Jusqu'Ć  la suivante mise Ć  jour" - -#: ../../operation/visual_console/legacy_view.php:121 -#: ../../operation/visual_console/view.php:122 -#: ../../enterprise/meta/screens/screens.visualmap.php:286 -#: ../../godmode/reporting/visual_console_builder.php:801 -msgid "Visual consoles list" -msgstr "Liste de consoles visuelles" - -#: ../../operation/visual_console/legacy_view.php:137 -#: ../../operation/visual_console/view.php:150 -#: ../../enterprise/meta/screens/screens.visualmap.php:261 -#: ../../godmode/reporting/visual_console_builder.php:805 -msgid "Show link to public Visual Console" -msgstr "Afficher lien vers console visuelle publique" - -#: ../../operation/visual_console/legacy_view.php:147 -#: ../../operation/visual_console/view.php:160 -#: ../../operation/reporting/graph_viewer.php:193 -#: ../../operation/reporting/reporting_viewer.php:139 -#: ../../enterprise/meta/screens/screens.visualmap.php:241 -#: ../../godmode/reporting/reporting_builder.main.php:73 -#: ../../godmode/reporting/visual_console_builder.php:809 -#: ../../godmode/reporting/graph_builder.php:298 -#: ../../godmode/reporting/reporting_builder.php:3541 -msgid "Main data" -msgstr "DonnĆ©es principales" - -#: ../../operation/visual_console/legacy_view.php:155 -#: ../../operation/visual_console/view.php:168 -#: ../../enterprise/meta/screens/screens.visualmap.php:230 -#: ../../godmode/reporting/visual_console_builder.php:813 -msgid "List elements" -msgstr "Liste d'Ć©lĆ©ments" - -#: ../../operation/visual_console/legacy_view.php:165 -#: ../../operation/visual_console/view.php:178 -#: ../../godmode/reporting/visual_console_builder.php:819 -msgid "Services wizard" -msgstr "Assistant de services" - -#: ../../operation/visual_console/legacy_view.php:175 -#: ../../operation/visual_console/view.php:188 -#: ../../enterprise/include/functions_reporting.php:60 -#: ../../enterprise/include/functions_reporting.php:7990 -#: ../../enterprise/include/functions_reporting.php:8016 -#: ../../enterprise/meta/screens/screens.visualmap.php:219 -#: ../../enterprise/meta/general/main_menu.php:238 -#: ../../enterprise/meta/general/logon_ok.php:48 -#: ../../enterprise/meta/general/main_header.php:134 -#: ../../enterprise/meta/monitoring/wizard/wizard.php:123 -#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:61 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:94 -#: ../../godmode/reporting/visual_console_builder.php:825 -#: ../../godmode/reporting/visual_console_builder.wizard.php:518 -msgid "Wizard" -msgstr "Assistant" - -#: ../../operation/visual_console/legacy_view.php:183 -#: ../../enterprise/meta/screens/screens.visualmap.php:206 -#: ../../enterprise/godmode/alerts/alert_inventory.php:80 -#: ../../godmode/reporting/visual_console_builder.php:830 -msgid "Builder" -msgstr "Outil de conception" - -#: ../../operation/visual_console/legacy_view.php:193 -#: ../../operation/visual_console/view.php:198 ../../operation/tree.php:187 -#: ../../operation/agentes/status_monitor.php:75 -#: ../../operation/agentes/estado_agente.php:858 -#: ../../operation/agentes/estado_agente.php:861 -#: ../../operation/agentes/ver_agente.php:1916 -#: ../../enterprise/operation/agentes/policy_view.php:70 -#: ../../enterprise/include/lib/ClusterViewer/ClusterManager.php:601 -#: ../../enterprise/meta/screens/screens.visualmap.php:163 -#: ../../enterprise/meta/screens/screens.visualmap.php:194 -#: ../../enterprise/godmode/reporting/visual_console_builder.wizard_services.php:106 -#: ../../godmode/setup/setup_visuals.php:163 -#: ../../godmode/setup/setup_visuals.php:227 -#: ../../godmode/setup/setup_visuals.php:281 -#: ../../godmode/setup/setup_visuals.php:286 -#: ../../godmode/setup/setup_visuals.php:325 -#: ../../godmode/setup/setup_visuals.php:362 -#: ../../godmode/setup/setup_visuals.php:384 -#: ../../godmode/setup/setup_visuals.php:409 -#: ../../godmode/setup/setup_visuals.php:428 -#: ../../godmode/setup/setup_visuals.php:447 -#: ../../godmode/setup/setup_visuals.php:466 -#: ../../godmode/setup/setup_visuals.php:608 -#: ../../godmode/reporting/visual_console_builder.php:836 -#: ../../godmode/menu.php:554 ../../godmode/agentes/configurar_agente.php:373 -#: ../../godmode/agentes/modificar_agente.php:82 -#: ../../godmode/agentes/modificar_agente.php:836 -#: ../../godmode/agentes/modificar_agente.php:841 -#: ../../godmode/module_library/module_library_view.php:59 -msgid "View" -msgstr "Vue" - -#: ../../operation/visual_console/view.php:226 ../../operation/menu.php:300 -#: ../../operation/agentes/pandora_networkmap.php:665 -#: ../../operation/agentes/pandora_networkmap.editor.php:214 -#: ../../enterprise/operation/services/services.treeview_services.php:77 -#: ../../enterprise/operation/services/services.service.php:79 -#: ../../enterprise/operation/services/services.list.php:71 -#: ../../enterprise/operation/services/services.service_map.php:93 -#: ../../enterprise/operation/services/services.table_services.php:54 -#: ../../enterprise/godmode/services/services.elements.php:794 -#: ../../enterprise/godmode/services/services.service.php:493 -#: ../../enterprise/godmode/reporting/visual_console_template.php:118 -#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:117 -#: ../../enterprise/godmode/agentes/pandora_networkmap_empty.editor.php:102 -#: ../../godmode/reporting/map_builder.php:130 -#: ../../godmode/reporting/visual_console_builder.php:863 -#: ../../godmode/reporting/visual_console_favorite.php:127 -#: ../../godmode/agentes/pandora_networkmap_empty.editor.php:104 -msgid "Topology maps" -msgstr "Cartes de topologie" - -#: ../../operation/visual_console/view.php:230 ../../operation/menu.php:177 -#: ../../operation/menu.php:181 ../../operation/users/user_edit.php:357 -#: ../../include/lib/Dashboard/Widgets/maps_made_by_user.php:324 -#: ../../enterprise/meta/screens/screens.visualmap.php:305 -#: ../../enterprise/meta/screens/screens.visualmap.php:310 -#: ../../enterprise/godmode/reporting/visual_console_template.php:122 -#: ../../enterprise/godmode/reporting/visual_console_template.php:128 -#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:121 -#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:127 -#: ../../extensions/resource_exportation.php:436 -#: ../../godmode/reporting/map_builder.php:134 -#: ../../godmode/reporting/map_builder.php:140 -#: ../../godmode/reporting/visual_console_builder.php:867 -#: ../../godmode/reporting/visual_console_favorite.php:131 -#: ../../godmode/reporting/visual_console_favorite.php:137 -#: ../../godmode/users/configure_user.php:1110 -msgid "Visual console" -msgstr "Console visuelle" - -#: ../../operation/visual_console/view.php:296 -#: ../../include/functions_visual_map_editor.php:1387 -#: ../../include/functions_visual_map.php:4214 -#: ../../godmode/setup/gis_step_2.php:233 -#: ../../godmode/reporting/visual_console_builder.elements.php:182 -msgid "Static Image" -msgstr "Image statique" - -#: ../../operation/visual_console/view.php:301 -#: ../../include/functions_visual_map_editor.php:57 -#: ../../include/functions_visual_map_editor.php:1388 -#: ../../godmode/reporting/visual_console_builder.wizard.php:128 -msgid "Percentile Item" -msgstr "ƉlĆ©ment centile" - -#: ../../operation/visual_console/view.php:306 -#: ../../include/functions_visual_map_editor.php:1389 -#: ../../include/rest-api/models/VisualConsole/Items/ModuleGraph.php:555 -#: ../../mobile/operation/events.php:549 -#: ../../godmode/reporting/visual_console_builder.elements.php:221 -msgid "Module Graph" -msgstr "Graphique de module" - -#: ../../operation/visual_console/view.php:311 -#: ../../include/rest-api/models/VisualConsole/Item.php:2155 -#: ../../godmode/reporting/visual_console_builder.elements.php:351 -msgid "Basic chart" -msgstr "Graphique de base" - -#: ../../operation/visual_console/view.php:316 -#: ../../include/functions_visual_map_editor.php:1390 -msgid "Serialized pie graph" -msgstr "Diagramme circulaire sĆ©rialisĆ©" - -#: ../../operation/visual_console/view.php:321 -#: ../../include/functions_visual_map_editor.php:1391 -msgid "Bars Graph" -msgstr "Graphique Ć  barres" - -#: ../../operation/visual_console/view.php:326 -#: ../../include/functions_visual_map_editor.php:59 -#: ../../include/functions_visual_map_editor.php:1392 -#: ../../include/functions_visual_map.php:4194 -#: ../../godmode/reporting/visual_console_builder.elements.php:231 -msgid "Event history graph" -msgstr "Graphique de l'historique des Ć©vĆ©nements" - -#: ../../operation/visual_console/view.php:331 -#: ../../include/functions_visual_map_editor.php:1393 -#: ../../include/functions_visual_map.php:4219 -#: ../../include/rest-api/models/VisualConsole/Item.php:2131 -#: ../../godmode/reporting/visual_console_builder.elements.php:240 -msgid "Simple Value" -msgstr "Valeur simple" - -#: ../../operation/visual_console/view.php:336 -#: ../../include/functions_visual_map_editor.php:67 -#: ../../include/functions_visual_map_editor.php:193 -#: ../../include/functions_visual_map_editor.php:779 -#: ../../include/functions_visual_map_editor.php:1394 -#: ../../include/lib/Dashboard/Widgets/sla_percent.php:285 -#: ../../include/lib/Dashboard/Widgets/module_value.php:278 -#: ../../include/lib/Dashboard/Widgets/module_status.php:294 -#: ../../include/lib/Dashboard/Widgets/graph_module_histogram.php:274 -#: ../../include/lib/Dashboard/Widgets/module_icon.php:304 -#: ../../include/functions_visual_map.php:4224 -#: ../../include/rest-api/models/VisualConsole/Item.php:1941 -#: ../../include/rest-api/models/VisualConsole/Item.php:2135 -#: ../../enterprise/include/functions_reporting_csv.php:1158 -#: ../../enterprise/meta/advanced/metasetup.consoles.php:513 -#: ../../enterprise/meta/advanced/metasetup.consoles.php:837 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1702 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:512 -#: ../../godmode/reporting/visual_console_builder.elements.php:104 -#: ../../godmode/reporting/visual_console_builder.elements.php:283 -#: ../../godmode/reporting/reporting_builder.item_editor.php:1119 -#: ../../godmode/reporting/graph_builder.graph_editor.php:214 -#: ../../godmode/reporting/visual_console_builder.wizard.php:446 -msgid "Label" -msgstr "Ɖtiquette" - -#: ../../operation/visual_console/view.php:341 -#: ../../include/functions_visual_map_editor.php:68 -#: ../../include/functions_visual_map_editor.php:1395 -#: ../../include/lib/Dashboard/Widgets/module_status.php:374 -#: ../../include/lib/Dashboard/Widgets/module_icon.php:384 -#: ../../include/functions_visual_map.php:4239 -#: ../../include/rest-api/models/VisualConsole/Item.php:2147 -#: ../../enterprise/godmode/reporting/visual_console_builder.wizard_services.php:103 -#: ../../godmode/setup/os.builder.php:40 ../../godmode/modules/module_list.php:60 -#: ../../godmode/reporting/visual_console_builder.elements.php:292 -#: ../../godmode/groups/configure_group.php:153 -#: ../../godmode/groups/group_list.php:844 -msgid "Icon" -msgstr "IcĆ“ne" - -#: ../../operation/visual_console/view.php:346 -#: ../../include/functions_visual_map_editor.php:69 -#: ../../include/functions_visual_map_editor.php:1396 -#: ../../include/lib/Dashboard/Widgets/clock.php:158 -#: ../../include/lib/Dashboard/Widgets/clock.php:310 -#: ../../include/functions_visual_map.php:4184 -#: ../../include/rest-api/models/VisualConsole/Item.php:2103 -#: ../../godmode/reporting/visual_console_builder.elements.php:367 -msgid "Clock" -msgstr "Horloge" - -#: ../../operation/visual_console/view.php:356 -#: ../../include/functions_visual_map_editor.php:71 -#: ../../include/functions_visual_map_editor.php:1398 -#: ../../include/functions_visual_map.php:4174 -#: ../../godmode/reporting/visual_console_builder.elements.php:303 -msgid "Box" -msgstr "BoĆ®te" - -#: ../../operation/visual_console/view.php:361 -#: ../../operation/reporting/graph_viewer.php:372 -#: ../../operation/agentes/graphs.php:238 ../../operation/agentes/graphs.php:244 -#: ../../operation/agentes/graphs.php:417 ../../operation/agentes/graphs.php:432 +#: ../../enterprise/meta/advanced/metasetup.visual.php:291 +#: ../../godmode/setup/setup_visuals.php:952 +msgid "On Boolean graphs" +msgstr "Sur les graphiques boolĆ©ens" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:294 +msgid "Graph TIP view" +msgstr "Vue Graphique TIP" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:295 +msgid "This option may cause performance issues" +msgstr "Cette option peut entraĆ®ner des problĆØmes de performances" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:309 +#: ../../godmode/setup/setup_visuals.php:971 +msgid "Show only average by default" +msgstr "Afficher uniquement la moyenne par dĆ©faut" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:310 +#: ../../godmode/setup/setup_visuals.php:972 +msgid "Show MAX/AVG/MIN by default" +msgstr "Afficher MAX/MOY/MIN par dĆ©faut" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:312 +#: ../../godmode/setup/setup_visuals.php:968 +msgid "Graph mode" +msgstr "Mode du graphique" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:332 +#: ../../godmode/setup/setup_visuals.php:987 +msgid "Zoom graphs:" +msgstr "Graphiques de zoom :" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:346 +#: ../../godmode/setup/setup_visuals.php:902 +msgid "Type of module charts" +msgstr "Type de graphiques de module" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:348 +#: ../../enterprise/godmode/reporting/graph_template_editor.php:245 +#: ../../godmode/setup/setup_visuals.php:903 +#: ../../godmode/setup/setup_visuals.php:920 +#: ../../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/lib/Dashboard/Widgets/custom_graph.php:315 +#: ../../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 +msgid "Area" +msgstr "Zone" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:357 +#: ../../enterprise/godmode/reporting/graph_template_editor.php:247 +#: ../../godmode/setup/setup_visuals.php:910 +#: ../../godmode/setup/setup_visuals.php:927 +#: ../../godmode/reporting/create_container.php:359 +#: ../../godmode/reporting/visual_console_builder.elements.php:334 +#: ../../godmode/reporting/graph_builder.main.php:216 #: ../../include/functions_visual_map_editor.php:72 #: ../../include/functions_visual_map_editor.php:557 #: ../../include/functions_visual_map_editor.php:1399 -#: ../../include/lib/Dashboard/Widgets/custom_graph.php:317 #: ../../include/rest-api/models/VisualConsole/Items/ModuleGraph.php:651 -#: ../../enterprise/meta/advanced/metasetup.visual.php:357 -#: ../../enterprise/godmode/reporting/graph_template_editor.php:247 -#: ../../godmode/setup/setup_visuals.php:909 -#: ../../godmode/setup/setup_visuals.php:926 -#: ../../godmode/reporting/create_container.php:359 -#: ../../godmode/reporting/visual_console_builder.elements.php:333 -#: ../../godmode/reporting/graph_builder.main.php:216 +#: ../../include/lib/Dashboard/Widgets/custom_graph.php:317 +#: ../../operation/visual_console/view.php:361 +#: ../../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 msgid "Line" msgstr "Ligne" -#: ../../operation/visual_console/view.php:366 -#: ../../include/functions_visual_map_editor.php:73 -#: ../../include/functions_visual_map_editor.php:1400 -#: ../../include/functions_visual_map.php:4234 -#: ../../include/rest-api/models/VisualConsole/Item.php:2143 -#: ../../godmode/reporting/visual_console_builder.elements.php:343 -msgid "Color cloud" -msgstr "Nuage de couleur" +#: ../../enterprise/meta/advanced/metasetup.visual.php:367 +#: ../../enterprise/meta/include/functions_meta.php:1548 +msgid "Metaconsole elements" +msgstr "ƉlĆ©ments de la MĆ©taconsole" -#: ../../operation/visual_console/view.php:371 -#: ../../include/functions_visual_map_editor.php:1405 -#: ../../godmode/reporting/visual_console_builder.elements.php:322 -msgid "Network link" -msgstr "Lien rĆ©seau" +#: ../../enterprise/meta/advanced/metasetup.visual.php:369 +msgid "The number of elements retrieved for each instance in some views." +msgstr "Nombre d'Ć©lĆ©ments rĆ©cupĆ©rĆ©s pour chaque instance dans certaines vues" -#: ../../operation/visual_console/view.php:376 -#: ../../include/rest-api/models/VisualConsole/Item.php:2151 -#: ../../godmode/reporting/visual_console_builder.elements.php:359 -msgid "Odometer" -msgstr "OdomĆØtre" +#: ../../enterprise/meta/advanced/metasetup.visual.php:382 +#: ../../enterprise/meta/advanced/metasetup.visual.php:849 +#: ../../enterprise/meta/advanced/metasetup.visual.php:850 +#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:327 +#: ../../enterprise/include/ajax/log_viewer.ajax.php:274 +#: ../../godmode/snmpconsole/snmp_alert.php:1102 +#: ../../godmode/setup/setup_visuals.php:1031 +#: ../../godmode/setup/setup_visuals.php:1032 +#: ../../godmode/setup/setup_visuals.php:1396 +#: ../../include/functions_visual_map_editor.php:1223 +#: ../../include/functions_visual_map_editor.php:1224 +#: ../../include/functions.php:499 ../../include/functions.php:630 +#: ../../include/ajax/events.php:2295 ../../include/ajax/events.php:2296 +#: ../../include/ajax/events.php:2297 ../../include/ajax/events.php:2298 +#: ../../include/ajax/events.php:2302 ../../include/ajax/events.php:2303 +#: ../../include/ajax/events.php:2304 ../../include/ajax/events.php:2305 +#: ../../include/ajax/events.php:2306 ../../include/ajax/events.php:2307 +#: ../../include/functions_html.php:2119 +#: ../../include/class/AgentsAlerts.class.php:387 +#: ../../operation/events/sound_events.php:199 +#: ../../operation/events/sound_events.php:200 +#: ../../operation/events/sound_events.php:201 +#: ../../operation/events/sound_events.php:202 +#: ../../operation/events/sound_events.php:206 +#: ../../operation/events/sound_events.php:207 +#: ../../operation/events/sound_events.php:208 +#: ../../operation/events/sound_events.php:209 +#: ../../operation/events/sound_events.php:210 +#: ../../operation/events/sound_events.php:211 +msgid "seconds" +msgstr "secondes" -#: ../../operation/visual_console/view.php:387 -msgid "Delete Item" -msgstr "Supprimer l'Ć©lĆ©ment" +#: ../../enterprise/meta/advanced/metasetup.visual.php:383 +#: ../../enterprise/meta/advanced/metasetup.visual.php:851 +#: ../../enterprise/meta/advanced/metasetup.visual.php:852 +#: ../../enterprise/meta/advanced/metasetup.visual.php:853 +#: ../../enterprise/meta/advanced/metasetup.visual.php:854 +#: ../../enterprise/include/ajax/log_viewer.ajax.php:276 +#: ../../godmode/setup/setup_visuals.php:1033 +#: ../../godmode/setup/setup_visuals.php:1034 +#: ../../godmode/setup/setup_visuals.php:1035 +#: ../../godmode/setup/setup_visuals.php:1036 +#: ../../godmode/setup/setup_visuals.php:1397 +#: ../../include/functions_visual_map_editor.php:1225 +#: ../../include/functions_visual_map_editor.php:1226 +#: ../../include/functions_visual_map_editor.php:1227 +#: ../../include/functions_visual_map_editor.php:1228 +#: ../../include/functions.php:503 ../../include/functions.php:634 +#: ../../include/functions_html.php:2120 +msgid "minutes" +msgstr "minutes" -#: ../../operation/visual_console/view.php:393 -msgid "Copy Item" -msgstr "Copier l'Ć©lĆ©ment" +#: ../../enterprise/meta/advanced/metasetup.visual.php:384 +#: ../../enterprise/include/ajax/log_viewer.ajax.php:278 +#: ../../godmode/setup/setup_visuals.php:1398 ../../include/functions.php:504 +#: ../../include/functions.php:635 ../../include/functions_snmp.php:402 +#: ../../include/functions_html.php:2121 +msgid "hours" +msgstr "heures" -#: ../../operation/visual_console/view.php:406 -#: ../../operation/agentes/estado_generalagente.php:347 -msgid "Force remote checks" -msgstr "Forcer les vĆ©rifications Ć  distance" +#: ../../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:1399 ../../include/functions.php:500 +#: ../../include/functions.php:631 ../../include/functions_html.php:2122 +msgid "days" +msgstr "jours" -#: ../../operation/visual_console/view.php:734 -msgid "Are you sure" -msgstr "Ɗtes-vous certain" +#: ../../enterprise/meta/advanced/metasetup.visual.php:386 +#: ../../godmode/setup/setup_visuals.php:1400 ../../include/functions.php:501 +#: ../../include/functions.php:632 ../../include/functions_html.php:2124 +msgid "months" +msgstr "mois" -#: ../../operation/visual_console/view.php:806 -#: ../../include/ajax/snmp_browser.ajax.php:260 -#: ../../include/class/ModuleTemplates.class.php:1417 -#: ../../include/class/HelpFeedBack.class.php:359 -#: ../../include/class/WebServerModuleDebug.class.php:359 -#: ../../include/class/AgentWizard.class.php:5808 -#: ../../include/class/Diagnostics.class.php:2087 -#: ../../include/class/ConfigPEN.class.php:737 -#: ../../include/class/CredentialStore.class.php:1185 -#: ../../include/functions_ui.php:294 -#: ../../enterprise/include/class/AgentRepository.class.php:842 -#: ../../enterprise/include/class/LogSource.class.php:788 -#: ../../enterprise/include/class/ManageBackups.class.php:473 -#: ../../enterprise/include/class/Omnishell.class.php:1083 -#: ../../enterprise/include/class/DeploymentCenter.class.php:1611 -#: ../../enterprise/include/functions_HA_cluster.php:535 -#: ../../enterprise/include/functions_visual_map.php:677 -#: ../../enterprise/godmode/services/services.elements.php:840 -#: ../../enterprise/godmode/services/services.elements.php:851 -#: ../../godmode/wizards/DiscoveryTaskList.class.php:1057 -msgid "Success" -msgstr "SuccĆØs" +#: ../../enterprise/meta/advanced/metasetup.visual.php:387 +#: ../../godmode/setup/setup_visuals.php:1401 ../../include/functions.php:502 +#: ../../include/functions.php:633 ../../include/functions_html.php:2125 +msgid "years" +msgstr "annĆ©es" -#: ../../operation/visual_console/view.php:813 -#: ../../operation/visual_console/view.php:818 -#: ../../include/ajax/snmp_browser.ajax.php:259 -#: ../../include/class/ModuleTemplates.class.php:1424 -#: ../../include/class/ModuleTemplates.class.php:1429 -#: ../../include/class/HelpFeedBack.class.php:354 -#: ../../include/class/WebServerModuleDebug.class.php:366 -#: ../../include/class/WebServerModuleDebug.class.php:371 -#: ../../include/class/AgentWizard.class.php:5815 -#: ../../include/class/AgentWizard.class.php:5820 -#: ../../include/class/Diagnostics.class.php:2086 -#: ../../include/class/ConfigPEN.class.php:744 -#: ../../include/class/ConfigPEN.class.php:749 -#: ../../include/class/CredentialStore.class.php:1192 -#: ../../include/class/CredentialStore.class.php:1197 -#: ../../include/lib/Dashboard/Widgets/wux_transaction.php:372 -#: ../../enterprise/operation/agentes/wux_console_view.php:452 -#: ../../enterprise/operation/agentes/transactional_map.php:327 -#: ../../enterprise/operation/agentes/ux_console_view.php:210 -#: ../../enterprise/operation/agentes/ux_console_view.php:352 -#: ../../enterprise/include/class/AgentRepository.class.php:849 -#: ../../enterprise/include/class/AgentRepository.class.php:854 +#: ../../enterprise/meta/advanced/metasetup.visual.php:390 +msgid "Add new custom value to intervals" +msgstr "Ajouter une nouvelle valeur personnalisĆ©e aux intervalles" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:411 +#: ../../enterprise/meta/advanced/metasetup.consoles.php:739 +#: ../../enterprise/meta/advanced/links.php:189 +#: ../../enterprise/meta/include/functions_autoprovision.php:703 +#: ../../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:144 +#: ../../enterprise/godmode/policies/policy_alerts.php:605 +#: ../../enterprise/godmode/policies/policy_alerts.php:670 +#: ../../enterprise/godmode/policies/policy_external_alerts.php:607 +#: ../../enterprise/godmode/policies/policy_external_alerts.php:703 +#: ../../enterprise/godmode/policies/policy_inventory_modules.php:263 +#: ../../enterprise/godmode/policies/policy_collections.php:267 +#: ../../enterprise/godmode/massive/massive_edit_tags_policy.php:168 +#: ../../enterprise/godmode/massive/massive_add_alerts_policy.php:138 +#: ../../enterprise/godmode/massive/massive_tags_edit_policy.php:152 +#: ../../enterprise/godmode/alerts/alert_inventory_list.php:398 +#: ../../enterprise/godmode/setup/setup_metaconsole.php:247 +#: ../../enterprise/godmode/setup/setup_metaconsole.php:357 +#: ../../enterprise/godmode/setup/setup_acl.php:532 +#: ../../enterprise/godmode/setup/setup_acl.php:558 +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:245 +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:506 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:269 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:862 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:354 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:512 +#: ../../enterprise/godmode/reporting/graph_template_item_editor.php:251 +#: ../../enterprise/godmode/reporting/visual_console_builder.wizard_services.php:190 +#: ../../enterprise/godmode/servers/credential_boxes_satellite.php:298 +#: ../../enterprise/godmode/servers/manage_credential_boxes.php:82 +#: ../../enterprise/godmode/servers/manage_export_form.php:138 +#: ../../enterprise/include/ajax/log_viewer.ajax.php:93 +#: ../../enterprise/include/ajax/servers.ajax.php:144 +#: ../../enterprise/include/ajax/servers.ajax.php:177 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2284 +#: ../../enterprise/operation/agentes/manage_transmap_creation.php:308 +#: ../../enterprise/tools/ipam/ipam_supernet_config.php:1321 +#: ../../enterprise/tools/ipam/ipam_vlan_config.php:830 +#: ../../extensions/files_repo/files_repo_form.php:105 +#: ../../godmode/modules/manage_network_templates_form.php:347 +#: ../../godmode/users/configure_profile.php:403 +#: ../../godmode/agentes/planned_downtime.editor.php:881 +#: ../../godmode/agentes/planned_downtime.editor.php:1055 +#: ../../godmode/snmpconsole/snmp_alert.php:1494 +#: ../../godmode/gis_maps/configure_gis_map.php:631 +#: ../../godmode/alerts/alert_list.list.php:816 ../../godmode/setup/news.php:299 +#: ../../godmode/setup/links.php:173 ../../godmode/setup/setup_visuals.php:1351 +#: ../../godmode/setup/setup_visuals.php:1406 +#: ../../godmode/setup/setup_visuals.php:1426 +#: ../../godmode/reporting/graph_builder.graph_editor.php:352 +#: ../../godmode/reporting/visual_console_builder.wizard.php:531 +#: ../../godmode/events/event_edit_filter.php:514 +#: ../../godmode/events/event_edit_filter.php:567 +#: ../../godmode/servers/plugin.php:909 +#: ../../include/functions_notifications.php:963 +#: ../../include/class/ManageNetScanScripts.class.php:471 +#: ../../include/functions_snmp_browser.php:1566 +#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:271 +#: ../../operation/events/events.php:1150 ../../operation/events/events.php:1224 +msgid "Add" +msgstr "Ajouter" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:420 +#: ../../enterprise/meta/include/functions_meta.php:1767 +#: ../../godmode/setup/setup_visuals.php:1411 +#: ../../include/functions_config.php:1388 +msgid "Delete interval" +msgstr "Supprimer intervalle" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:454 +#: ../../enterprise/meta/include/functions_meta.php:1558 +#: ../../godmode/setup/setup_visuals.php:1292 +msgid "Show only the group name" +msgstr "Afficher seulement le nom du groupe" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:456 +#: ../../include/functions_config.php:1245 +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:1859 +#: ../../godmode/setup/setup_visuals.php:88 ../../include/functions_config.php:1269 +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:1869 +#: ../../godmode/setup/setup_visuals.php:97 ../../include/functions_config.php:1273 +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:1879 +#: ../../godmode/setup/setup_visuals.php:101 ../../include/functions_config.php:1277 +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:1598 +#: ../../godmode/setup/setup_visuals.php:191 ../../include/functions_config.php:1025 +msgid "Custom favicon" +msgstr "Favicon personnalisĆ©" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:505 +msgid "" +"You can place your favicon into the folder images/custom_favicon/. This file " +"should be in .ico format with a size of 16x16." +msgstr "" +"Vous pouvez placer votre favicon dans le dossier images/custom_favicon/. Ce " +"fichier doit ĆŖtre au format .ico dā€™une taille de 16x16." + +#: ../../enterprise/meta/advanced/metasetup.visual.php:531 +#: ../../godmode/setup/setup_visuals.php:213 +msgid "Custom background logo" +msgstr "Logo d'arriĆØre-plan personnalisĆ©" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:533 +msgid "You can place your custom images into the folder images/backgrounds/" +msgstr "" +"Vous pouvez placer vos images personnalisĆ©es dans le dossier images/backgrounds/" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:576 +#: ../../godmode/setup/setup_visuals.php:280 +msgid "Custom logo (menu)" +msgstr "Logo personnalisĆ© (menu)" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:607 +#: ../../godmode/setup/setup_visuals.php:285 +msgid "Custom logo collapsed (menu)" +msgstr "Le logo personnalisĆ© s'est effondrĆ© (menu)" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:638 +#: ../../godmode/setup/setup_visuals.php:290 +msgid "Custom logo (header white background)" +msgstr "Logo personnalisĆ© (fond blanc dā€™en-tĆŖte)" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:667 +#: ../../godmode/setup/setup_visuals.php:329 +msgid "Custom logo (login)" +msgstr "Logo personnalisĆ© (connexion)" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:696 +#: ../../godmode/setup/setup_visuals.php:368 +msgid "Custom Splash (login)" +msgstr "Splash personnalisĆ© (connexion)" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:724 +#: ../../enterprise/meta/advanced/metasetup.visual.php:795 +#: ../../enterprise/meta/include/functions_meta.php:1628 +#: ../../godmode/setup/setup_visuals.php:508 ../../include/functions_config.php:1101 +msgid "Product name" +msgstr "Nom du produit" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:735 +#: ../../enterprise/meta/advanced/metasetup.visual.php:805 +#: ../../enterprise/meta/include/functions_meta.php:1638 +#: ../../godmode/setup/setup_visuals.php:514 ../../include/functions_config.php:1105 +msgid "Copyright notice" +msgstr "Mention de copyright" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:746 +#: ../../godmode/setup/setup_visuals.php:472 +msgid "Title (header)" +msgstr "Titre (en-tĆŖte)" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:750 +#: ../../godmode/setup/setup_visuals.php:477 +msgid "Subtitle (header)" +msgstr "Sous-titre (en-tĆŖte)" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:754 +#: ../../godmode/setup/setup_visuals.php:483 +msgid "Title 1 (login)" +msgstr "Titre 1 (connexion)" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:765 +#: ../../godmode/setup/setup_visuals.php:490 +msgid "Title 2 (login)" +msgstr "Titre 2 (connexion)" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:775 +#: ../../enterprise/meta/include/functions_meta.php:1688 +#: ../../godmode/setup/setup_visuals.php:496 +msgid "Docs URL (login)" +msgstr "URL docs (connexion)" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:785 +#: ../../enterprise/meta/include/functions_meta.php:1698 +#: ../../godmode/setup/setup_visuals.php:502 +msgid "Support URL (login)" +msgstr "URL assistance (connexion)" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:815 +msgid "Graphs font family" +msgstr "Famille de polices de graphiques" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:826 +#: ../../enterprise/meta/include/functions_meta.php:1528 +#: ../../godmode/setup/setup_visuals.php:564 +msgid "Visual effects and animation" +msgstr "Effets visuels et animation" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:836 +#: ../../godmode/setup/setup_visuals.php:1021 +msgid "Legacy Visual Console View" +msgstr "Vue console visuelle legacy" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:838 +msgid "To use the old view when using the Visual Console visor" +msgstr "" +"Pour utiliser lā€™ancienne vue lors de lā€™utilisation de la visiĆØre de la Console " +"visuelle" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:855 +#: ../../godmode/setup/setup_visuals.php:1037 +#: ../../include/functions_visual_map_editor.php:1229 +msgid "hour" +msgstr "heure" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:857 +#: ../../godmode/setup/setup_visuals.php:1039 +msgid "Default cache expiration" +msgstr "Expiration du cache par dĆ©faut" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:862 +#: ../../godmode/setup/setup_visuals.php:1044 +#: ../../include/functions_visual_map_editor.php:1255 +msgid "No cache" +msgstr "Pas de cache" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:874 +#: ../../enterprise/meta/include/functions_meta.php:1906 +#: ../../godmode/setup/setup_visuals.php:1056 +#: ../../include/functions_config.php:1149 +msgid "Default interval for refresh on Visual Console" +msgstr "Intervalle de rafraĆ®chissement par dĆ©faut sur la console visuelle" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:877 +msgid "This interval will affect to Visual Console pages" +msgstr "Cet intervalle aura un effet sur les pages de la console visuelle" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:903 +#: ../../godmode/setup/setup_visuals.php:1505 +msgid "Data multiplier to use in graphs/data" +msgstr "Multiplicateur de donnĆ©es Ć  utiliser dans les graphiques/donnĆ©es" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:907 +#: ../../godmode/setup/setup_visuals.php:1507 +msgid "Use 1024 when module unit are bytes" +msgstr "Utiliser 1024 lorsque lā€™unitĆ© de module est en octets" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:908 +#: ../../godmode/setup/setup_visuals.php:1508 +msgid "Use always 1000" +msgstr "Utilisez toujours 1000" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:909 +#: ../../godmode/setup/setup_visuals.php:1509 +msgid "Use always 1024" +msgstr "Utilisez toujours 1024" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:923 +#: ../../enterprise/meta/include/functions_meta.php:1911 +#: ../../godmode/setup/setup_visuals.php:1098 +#: ../../include/functions_config.php:1165 +msgid "Mobile view not allow visual console orientation" +msgstr "Non permettre lā€™orientation de la console visuelle dans la vue mobile" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:941 +msgid "Reports configuration" +msgstr "Configuration des rapports" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:947 +#: ../../godmode/setup/setup_visuals.php:1132 +msgid "Show report info with description" +msgstr "Afficher l'information du rapport avec description" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:948 +msgid "" +"Custom report description info. It will be applied to all reports and templates " +"by default." +msgstr "" +"Description du rapport personnalisĆ©. Elle sera appliquĆ©e par dĆ©faut Ć  tous les " +"rapports et modĆØles." + +#: ../../enterprise/meta/advanced/metasetup.visual.php:959 +#: ../../godmode/setup/setup_visuals.php:1141 +msgid "Custom report front page" +msgstr "Page de couverture du rapport personnalisĆ©" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:960 +msgid "" +"Custom report front page. It will be applied to all reports and templates by " +"default." +msgstr "" +"Page de couverture du rapport personnalisĆ©. Elle sera appliquĆ©e par dĆ©faut Ć  tous " +"les rapports et modĆØles." + +#: ../../enterprise/meta/advanced/metasetup.visual.php:971 +#: ../../enterprise/meta/include/functions_meta.php:1393 +#: ../../godmode/setup/setup_visuals.php:1151 +#: ../../include/functions_config.php:1419 +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:1383 +#: ../../godmode/setup/setup_visuals.php:1156 +#: ../../include/functions_config.php:1415 +msgid "HTML font size for SLA (em)" +msgstr "Taille de la police HTML pour SLA (em)" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:977 +#: ../../enterprise/meta/include/functions_meta.php:1508 +#: ../../godmode/setup/setup_visuals.php:1161 +msgid "Graph image height for HTML reports" +msgstr "Hauteur de l'image du graphique pour des rapports HTML" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:979 +msgid "" +"This is the height in pixels of the module graph or custom graph in the reports " +"(only: HTML)" +msgstr "" +"Il sā€™agit de la hauteur en pixels du graphique de module ou du graphique " +"personnalisĆ© dans les rapports (uniquement : HTML)" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:996 +#: ../../enterprise/meta/include/functions_meta.php:1413 +#: ../../godmode/setup/setup_visuals.php:1454 +#: ../../include/functions_config.php:1447 +msgid "CSV divider" +msgstr "SĆ©parateur CSV" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:1036 +#: ../../enterprise/meta/include/functions_meta.php:1423 +#: ../../godmode/setup/setup_visuals.php:1500 +#: ../../include/functions_config.php:1451 +msgid "CSV decimal separator" +msgstr "SĆ©parateur dĆ©cimale CSV" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:1044 +#: ../../enterprise/meta/include/functions_meta.php:1403 +#: ../../godmode/setup/setup_visuals.php:1170 +msgid "Interval description" +msgstr "Description de l'intervalle" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:1046 +msgid "" +"A long interval description is for example 10 hours, 20 minutes 33 secondsĆ¢Ā€Ā, a " +"short one is 10h 20m 33s" +msgstr "" +"Une description dā€™intervalle long est par exemple de 10 heures, 20 minutes 33 " +"secondes, une courte est de 10h 20m 33s" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:1061 +#: ../../enterprise/meta/advanced/metasetup.visual.php:1074 +#: ../../enterprise/meta/advanced/metasetup.visual.php:1085 +#: ../../enterprise/meta/advanced/metasetup.visual.php:1095 +#: ../../enterprise/meta/include/functions_meta.php:1793 +#: ../../enterprise/meta/include/functions_meta.php:1809 +#: ../../enterprise/meta/include/functions_meta.php:1819 +#: ../../enterprise/meta/include/functions_meta.php:1829 +#: ../../enterprise/meta/include/functions_meta.php:1839 +#: ../../enterprise/meta/include/functions_meta.php:1849 +#: ../../godmode/setup/setup_visuals.php:1194 +#: ../../godmode/setup/setup_visuals.php:1209 +#: ../../godmode/setup/setup_visuals.php:1217 +#: ../../godmode/setup/setup_visuals.php:1237 +#: ../../godmode/setup/setup_visuals.php:1253 +#: ../../include/functions_config.php:1423 ../../include/functions_config.php:1427 +#: ../../include/functions_config.php:1431 ../../include/functions_config.php:1435 +#: ../../include/functions_config.php:1439 ../../include/functions_config.php:1443 +msgid "Custom report front" +msgstr "Page de couverture du rapport personnalisĆ©" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:1061 +#: ../../enterprise/meta/include/functions_meta.php:1568 +#: ../../enterprise/meta/include/functions_meta.php:1819 +#: ../../enterprise/godmode/reporting/reporting_builder.advanced.php:127 +#: ../../enterprise/godmode/reporting/reporting_builder.template_advanced.php:130 +#: ../../godmode/setup/setup_visuals.php:1194 +#: ../../include/functions_config.php:1029 ../../include/functions_config.php:1431 +msgid "Custom logo" +msgstr "Logo personnalisĆ©" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:1062 +#: ../../enterprise/godmode/reporting/reporting_builder.advanced.php:128 +#: ../../enterprise/godmode/reporting/reporting_builder.template_advanced.php:131 +msgid "" +"The path of custom logos is 'images/custom_logo' in the console installation. You " +"can upload more files (ONLY JPEG AND PNG) with the upload tool." +msgstr "" +"Le chemin des logos personnalisĆ©s est 'images/custom_logo' dans lā€™installation de " +"la console. Vous pouvez tĆ©lĆ©charger plus de fichiers (UNIQUEMENT JPEG ET PNG) " +"avec lā€™outil de tĆ©lĆ©chargement." + +#: ../../enterprise/meta/advanced/metasetup.visual.php:1085 +#: ../../enterprise/meta/include/functions_meta.php:1829 +#: ../../enterprise/godmode/reporting/reporting_builder.advanced.php:153 +#: ../../enterprise/godmode/reporting/reporting_builder.template_advanced.php:142 +#: ../../godmode/setup/setup_visuals.php:1217 +#: ../../include/functions_config.php:1435 +msgid "Header" +msgstr "En-tĆŖte" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:1095 +#: ../../enterprise/meta/include/functions_meta.php:1839 +#: ../../enterprise/godmode/reporting/reporting_builder.advanced.php:163 +#: ../../enterprise/godmode/reporting/reporting_builder.template_advanced.php:152 +#: ../../godmode/setup/setup_visuals.php:1237 +#: ../../include/functions_config.php:1439 +msgid "First page" +msgstr "PremiĆØre page" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:1324 +#: ../../godmode/setup/setup_visuals.php:1806 +msgid "Logo preview" +msgstr "AperƧu du logo" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:1346 +#: ../../godmode/setup/setup_visuals.php:1836 +msgid "Splash Preview" +msgstr "AperƧu du Splash" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:1351 +#: ../../godmode/setup/setup_visuals.php:1860 +msgid "Background preview" +msgstr "AperƧu du fond d'Ć©cran" + +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:124 +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:127 +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:131 +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:135 +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:139 +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:143 +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:147 +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:151 +msgid "Agent: " +msgstr "AgentĀ :" + +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:124 +msgid " already exists in target node" +msgstr " existe dĆ©jĆ  dans le nœud cible" + +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:127 +msgid " group does not exist in target node" +msgstr " le groupe nā€™existe pas dans le nœud cible" + +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:131 +msgid " policies definitions does not match with defined ones in target node" +msgstr "" +" les dĆ©finitions de politiques ne correspondent pas Ć  ceux dĆ©finis dans le nœud " +"cible" + +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:135 +msgid " plugins does not exist in target node" +msgstr " les plugins nā€™existent pas dans le nœud cible" + +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:139 +msgid " collections does not exist in target node" +msgstr " les collections nā€™existent pas dans le nœud cible" + +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:143 +msgid " inventory does not exist in target node" +msgstr " lā€™inventaire nā€™existe pas dans le nœud cible" + +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:147 +msgid " alerts template does not exist in target node" +msgstr " Le modĆØle dā€™alertes nā€™existe pas dans le nœud cible" + +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:151 +msgid " alerts action does not exist in target node" +msgstr " Lā€™action dā€™alertes nā€™existe pas dans le nœud cible" + +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:155 +msgid "Exists agent conf for agent: " +msgstr "Il existe la configuration de lā€™agent lā€™agent : " + +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:155 +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:159 +#: ../../enterprise/include/functions_metaconsole.php:2820 +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:163 +#: ../../enterprise/include/functions_metaconsole.php:2813 +msgid "Target server ip address is set" +msgstr "L'adresse IP du serveur cible est configurĆ©" + +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:267 +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:269 +msgid "The agent: " +msgstr "Lā€™agent : " + +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:267 +msgid " has been successfully added to the migration queue " +msgstr " a Ć©tĆ© ajoutĆ© avec succĆØs Ć  la file dā€™attente de migration " + +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:269 +msgid " has not been added due to problems in the insertion" +msgstr " nā€™a pas Ć©tĆ© ajoutĆ© en raison de problĆØmes dans lā€™insertion" + +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:272 +#, php-format +msgid "The agent: %d has already been added to the migration queue" +msgstr "Lā€™agent : %d a dĆ©jĆ  Ć©tĆ© ajoutĆ© Ć  la file dā€™attente de migration" + +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:289 +#: ../../enterprise/meta/advanced/metasetup.relations.php:87 +#: ../../enterprise/godmode/reporting/graph_template_list.php:156 +#: ../../enterprise/godmode/reporting/graph_template_list.php:183 +#: ../../enterprise/godmode/reporting/graph_template_item_editor.php:130 +#: ../../enterprise/godmode/reporting/graph_template_item_editor.php:158 +#: ../../enterprise/tools/ipam/ipam_network_location_config.php:88 +#: ../../godmode/modules/manage_nc_groups.php:153 +#: ../../godmode/agentes/planned_downtime.list.php:243 +#: ../../godmode/netflow/nf_item_list.php:121 +#: ../../godmode/netflow/nf_item_list.php:149 ../../godmode/netflow/nf_edit.php:105 +#: ../../godmode/netflow/nf_edit.php:138 ../../godmode/reporting/map_builder.php:210 +#: ../../godmode/reporting/graphs.php:152 ../../godmode/reporting/graphs.php:163 +#: ../../godmode/reporting/graphs.php:214 ../../godmode/events/event_filter.php:70 +#: ../../godmode/events/event_filter.php:97 +#: ../../operation/reporting/graph_viewer.php:59 +#: ../../operation/reporting/graph_viewer.php:67 +msgid "Not deleted. Error deleting data" +msgstr "Erreur d'Ć©limination des donnĆ©es" + +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:292 +msgid "Problems delete queue" +msgstr "ProblĆØmes de suppression de la file dā€™attente" + +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:312 +msgid "Move Agents" +msgstr "DĆ©placer les agents" + +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:328 +msgid "Source Server" +msgstr "Serveur source" + +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:330 +msgid "Destination Server" +msgstr "Serveur de destination" + +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:362 +#: ../../enterprise/meta/advanced/policymanager.queue.php:258 +#: ../../enterprise/meta/monitoring/wizard/wizard.php:298 +#: ../../enterprise/meta/monitoring/group_view.php:154 +#: ../../enterprise/meta/monitoring/group_view.php:215 +#: ../../enterprise/meta/include/functions_autoprovision.php:476 +#: ../../enterprise/godmode/agentes/collections.agents.php:53 +#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:100 +#: ../../enterprise/godmode/agentes/collections.data.php:137 +#: ../../enterprise/godmode/agentes/collections.data.php:283 +#: ../../enterprise/godmode/agentes/collections.editor.php:74 +#: ../../enterprise/godmode/policies/policy_queue.php:648 +#: ../../enterprise/godmode/policies/policies.php:407 +#: ../../enterprise/godmode/policies/policies.php:531 +#: ../../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.php:71 +#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:248 +#: ../../enterprise/godmode/massive/massive_add_service_elements.php:361 +#: ../../enterprise/godmode/massive/massive_create_services.php:964 +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:228 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:220 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:305 +#: ../../enterprise/include/functions_cron.php:215 +#: ../../enterprise/include/functions_tasklist.php:338 +#: ../../enterprise/include/functions_reporting_pdf.php:861 +#: ../../enterprise/include/functions_policies.php:3824 +#: ../../enterprise/operation/services/services.service_map.php:158 +#: ../../extensions/agents_modules.php:431 ../../extensions/agents_modules.php:758 +#: ../../godmode/agentes/planned_downtime.list.php:84 +#: ../../godmode/agentes/planned_downtime.list.php:108 +#: ../../godmode/massive/massive_standby_alerts.php:203 +#: ../../godmode/massive/massive_delete_modules.php:535 +#: ../../godmode/massive/massive_add_alerts.php:231 +#: ../../godmode/massive/massive_delete_agents.php:280 +#: ../../godmode/massive/massive_edit_plugins.php:367 +#: ../../godmode/massive/massive_enable_disable_alerts.php:174 +#: ../../godmode/massive/massive_edit_agents.php:566 +#: ../../godmode/massive/massive_delete_alerts.php:314 +#: ../../godmode/massive/massive_edit_modules.php:511 +#: ../../godmode/alerts/alert_list.list.php:79 +#: ../../godmode/reporting/reporting_builder.list_items.php:208 +#: ../../godmode/reporting/reporting_builder.list_items.php:229 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1770 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1832 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2079 +#: ../../godmode/reporting/visual_console_builder.wizard.php:408 +#: ../../mobile/include/functions_web.php:23 ../../mobile/operation/agents.php:204 +#: ../../mobile/operation/home.php:81 ../../mobile/operation/agent.php:155 +#: ../../include/functions_reporting_html.php:1881 +#: ../../include/functions_reporting_html.php:2350 +#: ../../include/functions_reporting_html.php:3128 +#: ../../include/functions_cron.php:663 ../../include/functions_html.php:1655 +#: ../../include/functions_html.php:5464 +#: ../../include/class/Diagnostics.class.php:1161 +#: ../../include/class/Diagnostics.class.php:1165 +#: ../../include/class/Diagnostics.class.php:1169 +#: ../../include/class/Diagnostics.class.php:1173 +#: ../../include/class/NetworkMap.class.php:3228 +#: ../../include/class/AgentsAlerts.class.php:252 +#: ../../include/class/AgentsAlerts.class.php:542 +#: ../../include/lib/Dashboard/Widgets/groups_status.php:329 +#: ../../include/lib/Dashboard/Widgets/groups_status.php:334 +#: ../../include/lib/Dashboard/Widgets/agent_module.php:448 +#: ../../include/functions_groups.php:53 ../../operation/search_results.php:80 +#: ../../operation/agentes/interface_view.functions.php:71 +#: ../../operation/agentes/group_view.php:183 +#: ../../operation/agentes/group_view.php:216 +msgid "Agents" +msgstr "Agents" + +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:364 +msgid "Agents to move" +msgstr "Agents Ć  dĆ©placer" + +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:385 +msgid "Add agents to destination server" +msgstr "Ajouter des agents au serveur de destination" + +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:394 +msgid "Remove agents to doesn't move to destination server" +msgstr "Supprimer les agents pour ne pas les dĆ©placer au serveur de destination" + +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:413 +msgid "Discard history data" +msgstr "Ignorer les donnĆ©es dā€™historique" + +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:426 +msgid "Agents do not exist in target server." +msgstr "Les agents nā€™existent pas sur le serveur cible." + +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:427 +msgid "Check group is synchronized with target server." +msgstr "VĆ©rifiez que le groupe de contrĆ“le est synchronisĆ© avec le serveur cible." + +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:428 +msgid "All policies needed are synchronized with target server." +msgstr "Toutes les politiques nĆ©cessaires sont synchronisĆ©es avec le serveur cible." + +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:429 +msgid "All remote plugins needed are synchronized with target server." +msgstr "" +"Tous les plugins distants nĆ©cessaires sont synchronisĆ©s avec le serveur cible." + +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:430 +msgid "All collections needed are syncronized with target server." +msgstr "" +"Toutes les collections nĆ©cessaires sont synchronisĆ©es avec le serveur cible." + +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:431 +msgid "All remote inventory definitions needed are syncronized with target server." +msgstr "" +"Toutes les dĆ©finitions dā€™inventaire distant nĆ©cessaires sont synchronisĆ©es avec " +"le serveur cible." + +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:432 +msgid "All alert templates definitions needed are syncronized with target server." +msgstr "" +"Toutes les dĆ©finitions de modĆØles dā€™alerte nĆ©cessaires sont synchronisĆ©es avec le " +"serveur cible." + +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:433 +msgid "All alert actions needed are syncronized with target server." +msgstr "" +"Toutes les actions dā€™alerte nĆ©cessaires sont synchronisĆ©es avec le serveur cible." + +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:434 +msgid "Agents conf does not exists in target server." +msgstr "La configuration de lā€™agent nā€™existe pas dans le serveur cible." + +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:435 +#, php-format +msgid "Both %s servers must be in the same version" +msgstr "Les deux serveurs %s doivent ĆŖtre dans la mĆŖme version" + +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:436 +msgid "Check target server ip address is set" +msgstr "VĆ©rifier que lā€™adresse IP du serveur cible est dĆ©finie" + +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:446 +msgid "Move" +msgstr "DĆ©placer" + +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:461 +#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:123 +#: ../../enterprise/include/functions_inventory.php:142 +#: ../../enterprise/include/functions_inventory.php:176 +#: ../../include/functions_events.php:250 +msgid "Agent alias" +msgstr "Alias de l'agent" + +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:462 +msgid "Source node" +msgstr "Nœud source" + +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:463 +msgid "Target node" +msgstr "Nœud cible" + +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:464 +#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:82 +#: ../../enterprise/godmode/massive/massive_delete_alerts_snmp.php:204 +#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:264 +#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:328 +#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:423 +#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:483 +#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:530 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:816 +#: ../../godmode/agentes/agent_incidents.php:91 +#: ../../godmode/snmpconsole/snmp_alert.php:1105 +#: ../../godmode/snmpconsole/snmp_alert.php:1168 +#: ../../godmode/alerts/alert_list.list.php:136 +#: ../../godmode/alerts/alert_templates.php:51 +#: ../../godmode/alerts/configure_alert_template.php:1118 +#: ../../godmode/alerts/alert_view.php:124 +#: ../../godmode/setup/setup_integria.php:379 +#: ../../godmode/setup/setup_integria.php:501 +#: ../../include/functions_reporting_html.php:5133 +#: ../../include/functions_events.php:4213 +#: ../../operation/agentes/estado_generalagente.php:651 +#: ../../operation/incidents/integriaims_export_csv.php:85 +#: ../../operation/incidents/configure_integriaims_incident.php:296 +#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:325 +#: ../../operation/incidents/list_integriaims_incidents.php:348 +#: ../../operation/incidents/list_integriaims_incidents.php:519 +msgid "Priority" +msgstr "PrioritĆ©" + +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:465 +#: ../../enterprise/include/class/CommandCenter.class.php:456 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:743 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:1048 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:1143 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:1493 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:1778 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2103 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2534 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2547 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2875 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:3052 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:3142 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:3181 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:3246 +#: ../../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:1578 +msgid "Step" +msgstr "Ɖtape" + +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:467 +msgid "Active db only" +msgstr "Seulement la base de donnĆ©es active" + +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:520 +msgid "Creating modules in target node" +msgstr "CrĆ©ant de modules dans le nœud cible" + +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:524 +msgid "Disabling agent in source node and enabling in target one" +msgstr "DĆ©sactivant de lā€™agent dans le nœud source et activation dans la cible" + +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:528 +msgid "Transferring data" +msgstr "Transferrant de donnĆ©es" + +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:533 +msgid "Creating agent in target node" +msgstr "CrĆ©ant un agent dans le nœud cible" + +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:539 +#: ../../enterprise/include/functions_HA_cluster.php:542 +#: ../../enterprise/include/functions_HA_cluster.php:547 +#: ../../enterprise/include/class/DeploymentCenter.class.php:1618 +#: ../../enterprise/include/class/DeploymentCenter.class.php:1623 +#: ../../enterprise/include/class/DatabaseHA.class.php:208 +#: ../../enterprise/include/class/AgentRepository.class.php:862 +#: ../../enterprise/include/class/AgentRepository.class.php:867 +#: ../../enterprise/include/class/Omnishell.class.php:1079 #: ../../enterprise/include/class/LogSource.class.php:795 #: ../../enterprise/include/class/LogSource.class.php:800 #: ../../enterprise/include/class/ManageBackups.class.php:484 #: ../../enterprise/include/class/ManageBackups.class.php:489 -#: ../../enterprise/include/class/Omnishell.class.php:1079 -#: ../../enterprise/include/class/DeploymentCenter.class.php:1618 -#: ../../enterprise/include/class/DeploymentCenter.class.php:1623 -#: ../../enterprise/include/class/DatabaseHA.class.php:208 -#: ../../enterprise/include/functions_HA_cluster.php:542 -#: ../../enterprise/include/functions_HA_cluster.php:547 #: ../../enterprise/include/functions_ux_console.php:473 -#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:539 +#: ../../enterprise/operation/agentes/transactional_map.php:327 +#: ../../enterprise/operation/agentes/ux_console_view.php:210 +#: ../../enterprise/operation/agentes/ux_console_view.php:352 +#: ../../enterprise/operation/agentes/wux_console_view.php:452 #: ../../godmode/wizards/DiscoveryTaskList.class.php:1058 +#: ../../include/ajax/snmp_browser.ajax.php:259 +#: ../../include/class/ConfigPEN.class.php:744 +#: ../../include/class/ConfigPEN.class.php:749 +#: ../../include/class/HelpFeedBack.class.php:354 +#: ../../include/class/Diagnostics.class.php:2086 +#: ../../include/class/CredentialStore.class.php:1192 +#: ../../include/class/CredentialStore.class.php:1197 +#: ../../include/class/ModuleTemplates.class.php:1424 +#: ../../include/class/ModuleTemplates.class.php:1429 +#: ../../include/class/WebServerModuleDebug.class.php:366 +#: ../../include/class/WebServerModuleDebug.class.php:371 +#: ../../include/class/AgentWizard.class.php:5841 +#: ../../include/class/AgentWizard.class.php:5846 +#: ../../include/lib/Dashboard/Widgets/wux_transaction.php:372 +#: ../../operation/visual_console/view.php:813 +#: ../../operation/visual_console/view.php:818 msgid "Failed" msgstr "ƉchouĆ©" -#: ../../operation/search_reports.php:25 ../../operation/search_policies.php:22 -#: ../../operation/search_modules.php:23 ../../operation/search_users.php:23 -#: ../../operation/search_maps.php:19 ../../operation/search_graphs.php:21 -#: ../../operation/search_agents.php:30 ../../operation/search_alerts.php:24 -msgid "Zero results found" -msgstr "ZĆ©ro rĆ©sultats trouvĆ©s" +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:543 +#: ../../enterprise/meta/advanced/policymanager.queue.php:261 +#: ../../enterprise/godmode/policies/policy_queue.php:671 +#: ../../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:4064 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:4183 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:4337 +msgid "Finished" +msgstr "TerminĆ©" -#: ../../operation/search_reports.php:42 ../../operation/search_reports.php:58 -#: ../../operation/reporting/custom_reporting.php:34 -#: ../../include/functions_cron.php:665 -#: ../../enterprise/include/functions_cron.php:232 -#: ../../enterprise/include/functions_reporting_csv.php:2218 -#: ../../enterprise/include/functions_reporting_csv.php:2222 -#: ../../enterprise/include/functions_tasklist.php:340 -#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:282 -#: ../../godmode/reporting/reporting_builder.php:910 -msgid "Report name" -msgstr "Nom du rapport" +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:544 +#: ../../update_manager_client/lib/UpdateManager/Client.php:1874 +msgid "Completed" +msgstr "TerminĆ©" -#: ../../operation/search_reports.php:44 ../../operation/search_reports.php:60 -#: ../../operation/reporting/custom_reporting.php:36 -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:501 -#: ../../godmode/reporting/reporting_builder.php:912 -msgid "HTML" -msgstr "HTML" +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:549 +msgid "Queued" +msgstr "En file d'attente" -#: ../../operation/search_reports.php:45 ../../operation/search_reports.php:61 -#: ../../operation/reporting/custom_reporting.php:37 -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:502 -#: ../../godmode/reporting/reporting_builder.php:913 -msgid "XML" -msgstr "XML" +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:554 +#: ../../enterprise/operation/agentes/transactional_map.php:265 +#: ../../godmode/agentes/planned_downtime.list.php:616 +#: ../../godmode/agentes/planned_downtime.list.php:688 +msgid "Running" +msgstr "En cours" -#: ../../operation/search_main.php:54 ../../enterprise/meta/agentsearch.php:122 -msgid "Agents found" -msgstr "Agents trouvĆ©s" +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:679 +msgid "checking migration requirements" +msgstr "vĆ©rificant des exigences de migration" -#: ../../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 -#: ../../operation/search_main.php:74 -#, php-format -msgid "%s Found" -msgstr "%s trouvĆ©s" +#: ../../enterprise/meta/advanced/servers.php:39 +#: ../../godmode/servers/modificar_server.php:180 +msgid "Server deleted successfully" +msgstr "Serveur supprimĆ© correctement" -#: ../../operation/search_main.php:56 ../../operation/tree.php:432 -#: ../../include/lib/Dashboard/Widgets/tree_view.php:617 -msgid "Modules found" -msgstr "Modules trouvĆ©s" +#: ../../enterprise/meta/advanced/servers.php:41 +#: ../../godmode/servers/modificar_server.php:182 +msgid "There was a problem deleting the server" +msgstr "ProblĆØme de suppression du serveur" -#: ../../operation/search_main.php:64 -msgid "Users found" -msgstr "Utilisateurs trouvĆ©s" +#: ../../enterprise/meta/advanced/metasetup.translate_string.php:129 +#: ../../enterprise/extensions/translate_string.php:253 +msgid "Translation added successfully" +msgstr "Traduction ajoutĆ©e corectement" -#: ../../operation/search_main.php:66 -msgid "Graphs found" -msgstr "Graphiques trouvĆ©s" +#: ../../enterprise/meta/advanced/metasetup.translate_string.php:131 +#: ../../enterprise/extensions/translate_string.php:255 +msgid "Translation string could not be created" +msgstr "Impossible de crĆ©er la chaĆ®ne de traduction" -#: ../../operation/search_main.php:68 -msgid "Reports found" -msgstr "Rapports trouvĆ©s" +#: ../../enterprise/meta/advanced/metasetup.translate_string.php:144 +#: ../../enterprise/extensions/translate_string.php:268 +msgid "Translation updated successfully" +msgstr "Traduction mise Ć  jour correctement" -#: ../../operation/search_main.php:70 ../../operation/search_results.php:145 -#: ../../mobile/operation/visualmaps.php:184 ../../mobile/operation/home.php:66 -msgid "Visual consoles" -msgstr "Consoles visuelles" +#: ../../enterprise/meta/advanced/metasetup.translate_string.php:146 +#: ../../enterprise/extensions/translate_string.php:270 +msgid "Translation string could not be updated" +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:901 +#: ../../operation/users/user_edit.php:325 +msgid "Language" +msgstr "Langue" + +#: ../../enterprise/meta/advanced/metasetup.translate_string.php:186 +#: ../../enterprise/meta/advanced/metasetup.relations.php:451 +#: ../../enterprise/meta/advanced/collections.php:217 +#: ../../enterprise/meta/advanced/collections.php:230 +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:262 +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:359 +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:416 +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:684 +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:755 +#: ../../enterprise/meta/agentsearch.php:110 +#: ../../enterprise/meta/general/header.php:44 +#: ../../enterprise/meta/general/header.php:46 +#: ../../enterprise/meta/general/main_header.php:689 +#: ../../enterprise/meta/general/main_header.php:691 +#: ../../enterprise/extensions/translate_string.php:323 +#: ../../enterprise/godmode/modules/local_components.php:573 +#: ../../enterprise/godmode/modules/local_components.php:598 +#: ../../enterprise/godmode/agentes/collection_manager.php:48 +#: ../../enterprise/godmode/agentes/collections.php:365 +#: ../../enterprise/godmode/policies/policy_collections.php:254 +#: ../../enterprise/godmode/policies/policy_agents.php:822 +#: ../../enterprise/godmode/policies/policy_agents.php:835 +#: ../../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:513 +#: ../../enterprise/operation/log/log_viewer.php:796 +#: ../../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 +#: ../../enterprise/operation/services/services.table_services.php:147 +#: ../../enterprise/operation/services/services.table_services.php:238 +#: ../../enterprise/tools/ipam/ipam_supernet_config.php:760 +#: ../../enterprise/tools/ipam/ipam_supernet_config.php:797 +#: ../../enterprise/tools/ipam/ipam_list.php:90 +#: ../../enterprise/tools/ipam/ipam_list.php:164 +#: ../../enterprise/tools/ipam/ipam_network_location_config.php:164 +#: ../../enterprise/tools/ipam/ipam_network_location_config.php:173 +#: ../../enterprise/tools/ipam/ipam_vlan_config.php:432 +#: ../../enterprise/tools/ipam/ipam_vlan_config.php:439 +#: ../../extensions/module_groups.php:283 +#: ../../godmode/modules/manage_network_components.php:678 +#: ../../godmode/groups/group_list.php:785 ../../godmode/groups/group_list.php:795 +#: ../../godmode/users/user_list.php:402 ../../godmode/users/user_list.php:412 +#: ../../godmode/agentes/modificar_agente.php:363 +#: ../../godmode/agentes/modificar_agente.php:372 +#: ../../godmode/agentes/planned_downtime.list.php:284 +#: ../../godmode/agentes/planned_downtime.list.php:368 +#: ../../godmode/agentes/module_manager.php:65 +#: ../../godmode/alerts/alert_actions.php:244 +#: ../../godmode/alerts/alert_actions.php:302 +#: ../../godmode/alerts/alert_templates.php:314 +#: ../../godmode/alerts/alert_templates.php:325 +#: ../../godmode/reporting/map_builder.php:350 +#: ../../godmode/reporting/map_builder.php:372 +#: ../../godmode/reporting/graphs.php:241 +#: ../../godmode/reporting/visual_console_favorite.php:158 +#: ../../godmode/reporting/visual_console_favorite.php:188 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1238 +#: ../../godmode/reporting/reporting_builder.php:796 +#: ../../godmode/module_library/module_library_view.php:102 +#: ../../godmode/module_library/module_library_view.php:112 +#: ../../mobile/operation/agent.php:320 ../../include/ajax/heatmap.ajax.php:70 +#: ../../include/functions_snmp.php:358 ../../include/class/AuditLog.class.php:180 +#: ../../include/class/CalendarManager.class.php:1071 +#: ../../include/class/AgentWizard.class.php:2632 +#: ../../include/functions_snmp_browser.php:925 +#: ../../include/functions_snmp_browser.php:1509 +#: ../../operation/search_results.php:192 +#: ../../operation/agentes/estado_agente.php:280 +#: ../../operation/agentes/estado_agente.php:291 +#: ../../operation/agentes/status_monitor.php:547 +#: ../../general/ui/agents_list.php:100 ../../general/ui/agents_list.php:113 +msgid "Search" +msgstr "Rechercher" + +#: ../../enterprise/meta/advanced/metasetup.translate_string.php:187 +#: ../../enterprise/meta/advanced/metasetup.translate_string.php:188 +#: ../../enterprise/extensions/translate_string.php:313 +#: ../../enterprise/extensions/translate_string.php:314 +#: ../../enterprise/godmode/agentes/collection_manager.php:42 +#: ../../enterprise/godmode/agentes/collections.php:361 +#: ../../enterprise/godmode/policies/policies.php:326 +#: ../../enterprise/godmode/policies/policy_collections.php:248 +msgid "Free text for search (*)" +msgstr "Texte libre pour la recherche (*)" + +#: ../../enterprise/meta/advanced/metasetup.translate_string.php:206 +#: ../../enterprise/extensions/translate_string.php:334 +msgid "Original string" +msgstr "ChaĆ®ne d'origine" + +#: ../../enterprise/meta/advanced/metasetup.translate_string.php:207 +#: ../../enterprise/extensions/translate_string.php:335 +msgid "Translation in selected language" +msgstr "Traduction dans la langue sĆ©lectionnĆ©e" + +#: ../../enterprise/meta/advanced/metasetup.translate_string.php:208 +#: ../../enterprise/extensions/translate_string.php:336 +msgid "Customize translation" +msgstr "Personnaliser la traduction" + +#: ../../enterprise/meta/advanced/metasetup.relations.php:218 +#: ../../enterprise/meta/advanced/metasetup.relations.php:572 +#: ../../enterprise/meta/include/functions_autoprovision.php:388 +#: ../../enterprise/meta/include/functions_wizard_meta.php:494 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:755 +#: ../../enterprise/godmode/setup/setup_acl.php:463 +#: ../../enterprise/godmode/setup/setup_acl.php:765 +#: ../../enterprise/include/functions_cron.php:582 +#: ../../enterprise/include/lib/NetworkManager.php:87 +#: ../../godmode/agentes/module_manager_editor_wmi.php:61 +#: ../../godmode/agentes/module_manager_editor_network.php:96 +#: ../../godmode/massive/massive_edit_modules.php:819 +#: ../../include/functions_html.php:1890 ../../include/functions_html.php:1891 +#: ../../include/functions_html.php:2001 ../../include/functions_html.php:2002 +#: ../../include/functions_html.php:2162 ../../include/functions_html.php:2163 +#: ../../include/class/CredentialStore.class.php:945 +#: ../../operation/netflow/nf_live_view.php:392 +msgid "Custom" +msgstr "Personnaliser" + +#: ../../enterprise/meta/advanced/metasetup.relations.php:239 +msgid "Node Address Default" +msgstr "Adresse de nœud par dĆ©faut" + +#: ../../enterprise/meta/advanced/metasetup.relations.php:271 +#: ../../enterprise/meta/advanced/metasetup.relations.php:388 +msgid "This value will be the one returned by the API" +msgstr "Cette valeur sera celle renvoyĆ©e par lā€™API" + +#: ../../enterprise/meta/advanced/metasetup.relations.php:305 +msgid "Import file" +msgstr "Importer fichier" + +#: ../../enterprise/meta/advanced/metasetup.relations.php:319 +msgid "Ip Gateway" +msgstr "Passerelle IP" + +#: ../../enterprise/meta/advanced/metasetup.relations.php:320 +#: ../../enterprise/meta/advanced/metasetup.relations.php:564 +msgid "Imei" +msgstr "Imei" + +#: ../../enterprise/meta/advanced/metasetup.relations.php:330 +#: ../../include/class/NetworkMap.class.php:3086 +#: ../../include/class/NetworkMap.class.php:3087 +msgid "Relations" +msgstr "Relations" + +#: ../../enterprise/meta/advanced/metasetup.relations.php:351 +msgid "Relation" +msgstr "Relation" + +#: ../../enterprise/meta/advanced/metasetup.relations.php:361 +#: ../../enterprise/meta/advanced/metasetup.relations.php:440 +msgid "Node Address" +msgstr "Adresse du nœud" + +#: ../../enterprise/meta/advanced/metasetup.relations.php:398 +msgid "Insert relation" +msgstr "InsĆ©rer une relation" + +#: ../../enterprise/meta/advanced/metasetup.relations.php:406 +msgid "Show list relations" +msgstr "Afficher les relations de liste" + +#: ../../enterprise/meta/advanced/metasetup.relations.php:430 +#: ../../enterprise/meta/include/functions_autoprovision.php:643 +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:496 +#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:548 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:827 +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:413 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2530 +#: ../../enterprise/include/functions_reporting_csv.php:1158 +#: ../../enterprise/include/functions_reporting_csv.php:1184 +#: ../../enterprise/include/functions_reporting_csv.php:1215 +#: ../../enterprise/include/functions_reporting_csv.php:1270 +#: ../../enterprise/include/functions_reporting_csv.php:1374 +#: ../../enterprise/include/functions_reporting_csv.php:2681 +#: ../../enterprise/operation/services/services.service.php:124 +#: ../../enterprise/operation/services/services.list.php:506 +#: ../../godmode/agentes/module_manager_editor_common.php:1214 +#: ../../godmode/snmpconsole/snmp_trap_generator.php:115 +#: ../../godmode/massive/massive_edit_modules.php:884 +#: ../../godmode/alerts/configure_alert_template.php:816 +#: ../../godmode/setup/setup_visuals.php:1342 +#: ../../godmode/setup/setup_visuals.php:1403 +#: ../../godmode/setup/setup_visuals.php:1423 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2643 +#: ../../godmode/reporting/visual_console_builder.wizard.php:319 +#: ../../include/functions_visual_map_editor.php:693 +#: ../../include/functions_reporting_html.php:940 +#: ../../include/functions_reporting_html.php:2245 +#: ../../include/functions_reporting_html.php:4740 +#: ../../include/functions_reporting_html.php:5251 +#: ../../include/ajax/events.php:2116 ../../include/functions_graph.php:5394 +#: ../../include/rest-api/models/VisualConsole/Items/Percentile.php:505 +#: ../../include/functions_reports.php:1068 ../../include/functions_netflow.php:212 +#: ../../include/functions_snmp_browser.php:560 +msgid "Value" +msgstr "Valeur" + +#: ../../enterprise/meta/advanced/metasetup.relations.php:462 +msgid "Show Filters" +msgstr "Afficher les filtres" + +#: ../../enterprise/meta/advanced/metasetup.relations.php:549 +msgid "Node address" +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:278 +#: ../../enterprise/godmode/policies/policy_alerts.php:575 +#: ../../enterprise/godmode/policies/policy_modules.php:1466 +#: ../../enterprise/godmode/admin_access_logs.php:54 +#: ../../enterprise/godmode/alerts/alert_inventory_builder.php:241 +#: ../../enterprise/godmode/alerts/alert_inventory_list.php:379 +#: ../../enterprise/godmode/services/services.massive.elements.php:66 +#: ../../enterprise/godmode/reporting/graph_template_list.php:209 +#: ../../enterprise/godmode/reporting/graph_template_item_editor.php:191 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3535 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3733 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3756 +#: ../../enterprise/godmode/servers/manage_export.php:142 +#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:413 +#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:475 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2629 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2949 +#: ../../enterprise/include/functions_services.php:1615 +#: ../../enterprise/operation/agentes/policy_view.php:260 +#: ../../enterprise/tools/ipam/ipam_list.php:639 +#: ../../enterprise/tools/ipam/ipam_network_location_config.php:258 +#: ../../godmode/modules/manage_nc_groups.php:243 +#: ../../godmode/modules/manage_network_components.php:755 +#: ../../godmode/modules/manage_network_templates.php:248 +#: ../../godmode/agentes/agent_template.php:238 +#: ../../godmode/agentes/planned_downtime.editor.php:1008 +#: ../../godmode/agentes/module_manager.php:867 +#: ../../godmode/netflow/nf_item_list.php:178 ../../godmode/netflow/nf_edit.php:161 +#: ../../godmode/snmpconsole/snmp_alert.php:1278 +#: ../../godmode/snmpconsole/snmp_alert.php:1435 +#: ../../godmode/snmpconsole/snmp_filters.php:291 +#: ../../godmode/massive/massive_operations.php:426 +#: ../../godmode/massive/massive_standby_alerts.php:250 +#: ../../godmode/massive/massive_delete_action_alerts.php:270 +#: ../../godmode/massive/massive_enable_disable_alerts.php:222 +#: ../../godmode/massive/massive_add_action_alerts.php:248 +#: ../../godmode/alerts/alert_list.list.php:760 +#: ../../godmode/alerts/alert_view.php:388 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3941 +#: ../../godmode/reporting/reporting_builder.item_editor.php:4432 +#: ../../godmode/reporting/reporting_builder.item_editor.php:4453 +#: ../../godmode/reporting/visual_console_builder.elements.php:118 +#: ../../godmode/events/event_filter.php:141 ../../mobile/operation/tactical.php:348 +#: ../../include/functions_reporting_html.php:3229 +#: ../../include/functions_reporting_html.php:5771 ../../include/functions.php:3053 +#: ../../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 +#: ../../include/class/AgentsAlerts.class.php:892 +#: ../../include/class/AuditLog.class.php:109 +#: ../../include/class/AuditLog.class.php:201 +#: ../../include/class/ModuleTemplates.class.php:894 +#: ../../include/functions_ui_renders.php:117 +#: ../../operation/agentes/alerts_status.functions.php:127 +#: ../../operation/snmpconsole/snmp_view.php:891 +#: ../../operation/snmpconsole/snmp_view.php:1266 +#: ../../operation/search_alerts.php:37 ../../general/logon_ok.php:241 +msgid "Action" +msgstr "Action" + +#: ../../enterprise/meta/advanced/metasetup.relations.php:562 +msgid "Gateway" +msgstr "Passerelle" + +#: ../../enterprise/meta/advanced/metasetup.relations.php:642 +msgid "There are no relations yet" +msgstr "Il nā€™y a pas encore de relations" + +#: ../../enterprise/meta/advanced/metasetup.password.php:73 +msgid "Passwords" +msgstr "Mots de passe" + +#: ../../enterprise/meta/advanced/metasetup.password.php:79 +#: ../../enterprise/meta/include/functions_meta.php:344 +#: ../../enterprise/godmode/setup/setup.php:383 +#: ../../include/functions_config.php:466 +msgid "Enable password policy" +msgstr "Activer la politique de mot de passe" + +#: ../../enterprise/meta/advanced/metasetup.password.php:80 +#: ../../enterprise/meta/advanced/metasetup.password.php:122 +#: ../../enterprise/meta/advanced/metasetup.password.php:127 +#: ../../enterprise/meta/advanced/metasetup.password.php:133 +#: ../../enterprise/meta/advanced/metasetup.password.php:139 +#: ../../enterprise/meta/advanced/metasetup.password.php:143 +#: ../../enterprise/meta/advanced/metasetup.password.php:147 +#: ../../enterprise/meta/advanced/metasetup.setup.php:149 +#: ../../enterprise/meta/advanced/metasetup.setup.php:203 +#: ../../enterprise/meta/advanced/metasetup.setup.php:219 +#: ../../enterprise/meta/advanced/metasetup.setup.php:223 +#: ../../enterprise/meta/advanced/metasetup.setup.php:285 +#: ../../enterprise/meta/advanced/metasetup.setup.php:299 +#: ../../enterprise/meta/advanced/metasetup.setup.php:321 +#: ../../enterprise/meta/advanced/metasetup.setup.php:325 +#: ../../enterprise/meta/advanced/metasetup.setup.php:347 +#: ../../enterprise/meta/advanced/metasetup.performance.php:85 +#: ../../enterprise/meta/advanced/metasetup.performance.php:89 +#: ../../enterprise/meta/monitoring/wizard/wizard.php:136 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:553 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:574 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:644 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:665 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:705 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:967 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:1005 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:1033 +#: ../../enterprise/godmode/setup/setup_auth.php:208 +#: ../../enterprise/godmode/setup/setup_auth.php:338 +#: ../../enterprise/godmode/setup/setup_auth.php:386 +#: ../../enterprise/godmode/setup/setup_auth.php:1181 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:553 +#: ../../enterprise/godmode/reporting/graph_template_item_editor.php:209 +#: ../../enterprise/godmode/reporting/visual_console_template.php:286 +#: ../../enterprise/include/functions_cron.php:757 +#: ../../enterprise/include/functions_tasklist.php:323 +#: ../../enterprise/include/functions_reporting_csv.php:1940 +#: ../../enterprise/include/functions_reporting.php:2338 +#: ../../godmode/update_manager/update_manager.setup.php:372 +#: ../../godmode/users/configure_user.php:1080 +#: ../../godmode/agentes/agent_conf_gis.php:125 +#: ../../godmode/massive/massive_edit_agents.php:663 +#: ../../godmode/massive/massive_edit_agents.php:986 +#: ../../godmode/massive/massive_edit_agents.php:995 +#: ../../godmode/massive/massive_edit_modules.php:616 +#: ../../godmode/massive/massive_edit_modules.php:638 +#: ../../godmode/massive/massive_edit_modules.php:707 +#: ../../godmode/massive/massive_edit_modules.php:729 +#: ../../godmode/massive/massive_edit_modules.php:769 +#: ../../godmode/massive/massive_edit_modules.php:1043 +#: ../../godmode/massive/massive_edit_modules.php:1081 +#: ../../godmode/massive/massive_edit_modules.php:1109 +#: ../../godmode/alerts/alert_view.php:129 ../../godmode/alerts/alert_view.php:259 +#: ../../godmode/reporting/reporting_builder.main.php:194 +#: ../../godmode/reporting/reporting_builder.php:1090 +#: ../../godmode/reporting/visual_console_builder.wizard.php:380 +#: ../../godmode/reporting/visual_console_builder.wizard.php:467 +#: ../../godmode/servers/modificar_server.php:47 +#: ../../include/functions_reporting_html.php:1625 +#: ../../include/functions_cron.php:648 ../../include/functions_profile.php:276 +#: ../../include/functions_snmp.php:390 ../../operation/users/user_edit.php:321 +#: ../../operation/netflow/nf_live_view.php:460 +#: ../../operation/snmpconsole/snmp_view.php:653 +msgid "Yes" +msgstr "Oui" + +#: ../../enterprise/meta/advanced/metasetup.password.php:81 +#: ../../enterprise/meta/advanced/metasetup.password.php:123 +#: ../../enterprise/meta/advanced/metasetup.password.php:128 +#: ../../enterprise/meta/advanced/metasetup.password.php:134 +#: ../../enterprise/meta/advanced/metasetup.password.php:140 +#: ../../enterprise/meta/advanced/metasetup.password.php:144 +#: ../../enterprise/meta/advanced/metasetup.password.php:148 +#: ../../enterprise/meta/advanced/metasetup.setup.php:150 +#: ../../enterprise/meta/advanced/metasetup.setup.php:213 +#: ../../enterprise/meta/advanced/metasetup.setup.php:220 +#: ../../enterprise/meta/advanced/metasetup.setup.php:224 +#: ../../enterprise/meta/advanced/metasetup.setup.php:286 +#: ../../enterprise/meta/advanced/metasetup.setup.php:309 +#: ../../enterprise/meta/advanced/metasetup.setup.php:322 +#: ../../enterprise/meta/advanced/metasetup.setup.php:335 +#: ../../enterprise/meta/advanced/metasetup.setup.php:357 +#: ../../enterprise/meta/advanced/metasetup.performance.php:86 +#: ../../enterprise/meta/advanced/metasetup.performance.php:90 +#: ../../enterprise/meta/monitoring/wizard/wizard.php:137 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:554 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:575 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:645 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:666 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:706 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:967 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:1006 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:1034 +#: ../../enterprise/godmode/setup/setup.php:64 +#: ../../enterprise/godmode/setup/setup_auth.php:208 +#: ../../enterprise/godmode/setup/setup_auth.php:341 +#: ../../enterprise/godmode/setup/setup_auth.php:389 +#: ../../enterprise/godmode/setup/setup_auth.php:1184 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:555 +#: ../../enterprise/godmode/reporting/graph_template_item_editor.php:211 +#: ../../enterprise/godmode/reporting/visual_console_template.php:286 +#: ../../enterprise/include/functions_cron.php:756 +#: ../../enterprise/include/functions_tasklist.php:323 +#: ../../enterprise/include/functions_reporting_csv.php:1940 +#: ../../enterprise/include/functions_reporting.php:2338 +#: ../../godmode/update_manager/update_manager.setup.php:373 +#: ../../godmode/users/configure_user.php:1081 +#: ../../godmode/agentes/agent_conf_gis.php:126 +#: ../../godmode/massive/massive_edit_agents.php:664 +#: ../../godmode/massive/massive_edit_agents.php:987 +#: ../../godmode/massive/massive_edit_agents.php:996 +#: ../../godmode/massive/massive_edit_modules.php:617 +#: ../../godmode/massive/massive_edit_modules.php:639 +#: ../../godmode/massive/massive_edit_modules.php:708 +#: ../../godmode/massive/massive_edit_modules.php:730 +#: ../../godmode/massive/massive_edit_modules.php:770 +#: ../../godmode/massive/massive_edit_modules.php:1043 +#: ../../godmode/massive/massive_edit_modules.php:1082 +#: ../../godmode/massive/massive_edit_modules.php:1110 +#: ../../godmode/alerts/alert_view.php:129 ../../godmode/alerts/alert_view.php:259 +#: ../../godmode/alerts/alert_view.php:352 ../../godmode/setup/news.php:287 +#: ../../godmode/reporting/reporting_builder.main.php:204 +#: ../../godmode/reporting/reporting_builder.php:1092 +#: ../../godmode/reporting/visual_console_builder.wizard.php:390 +#: ../../godmode/reporting/visual_console_builder.wizard.php:468 +#: ../../godmode/servers/modificar_server.php:45 +#: ../../mobile/operation/events.php:365 ../../mobile/operation/events.php:373 +#: ../../include/functions_reporting_html.php:1625 +#: ../../include/functions_cron.php:648 ../../include/functions_profile.php:276 +#: ../../include/functions_snmp.php:382 ../../include/functions_events.php:4576 +#: ../../include/functions_events.php:4581 ../../operation/users/user_edit.php:322 +#: ../../operation/netflow/nf_live_view.php:470 +#: ../../operation/snmpconsole/snmp_view.php:654 +msgid "No" +msgstr "Non" + +#: ../../enterprise/meta/advanced/metasetup.password.php:101 +#: ../../enterprise/meta/include/functions_meta.php:354 +#: ../../enterprise/godmode/setup/setup.php:392 +#: ../../include/functions_config.php:470 +msgid "Min. size password" +msgstr "Taille minimale du mot de passe" + +#: ../../enterprise/meta/advanced/metasetup.password.php:102 +#: ../../enterprise/godmode/setup/setup.php:400 +msgid " Caracters" +msgstr " CaractĆØres" + +#: ../../enterprise/meta/advanced/metasetup.password.php:105 +#: ../../enterprise/meta/include/functions_meta.php:384 +#: ../../enterprise/godmode/setup/setup.php:421 +#: ../../include/functions_config.php:474 +msgid "Password expiration" +msgstr "Expiration du mot de passe" + +#: ../../enterprise/meta/advanced/metasetup.password.php:105 +msgid "Set 0 if never expire." +msgstr "Configurez-le sur 0 pour qu'il n'expire jamais." + +#: ../../enterprise/meta/advanced/metasetup.password.php:106 +#: ../../enterprise/godmode/setup/setup.php:429 +msgid " Days" +msgstr " Jours" + +#: ../../enterprise/meta/advanced/metasetup.password.php:109 +#: ../../enterprise/meta/include/functions_meta.php:404 +#: ../../enterprise/godmode/setup/setup.php:441 +#: ../../include/functions_config.php:482 +msgid "User blocked if login fails" +msgstr "Utilisateur bloquĆ© en cas d'erreur de connexion" + +#: ../../enterprise/meta/advanced/metasetup.password.php:110 +#: ../../enterprise/godmode/setup/setup.php:449 +msgid " Minutes" +msgstr " Minutes" + +#: ../../enterprise/meta/advanced/metasetup.password.php:113 +#: ../../enterprise/meta/include/functions_meta.php:414 +#: ../../enterprise/godmode/setup/setup.php:452 +#: ../../include/functions_config.php:486 +msgid "Number of failed login attempts" +msgstr "Nombre de tentatives de connexion infructueuses" + +#: ../../enterprise/meta/advanced/metasetup.password.php:113 +msgid "Two attempts minimum" +msgstr "Deux tentatives minimum" + +#: ../../enterprise/meta/advanced/metasetup.password.php:114 +#: ../../enterprise/godmode/setup/setup.php:460 +msgid " Attempts" +msgstr " Tentatives" + +#: ../../enterprise/meta/advanced/metasetup.password.php:117 +#: ../../enterprise/meta/include/functions_meta.php:436 +#: ../../enterprise/godmode/setup/setup.php:481 +#: ../../include/functions_config.php:506 +msgid "Compare previous password" +msgstr "Comparer mot de passe prĆ©cĆ©dent" + +#: ../../enterprise/meta/advanced/metasetup.password.php:121 +#: ../../enterprise/meta/include/functions_meta.php:424 +#: ../../enterprise/godmode/setup/setup.php:472 +#: ../../include/functions_config.php:502 +msgid "Enable password history" +msgstr "Activer historique de mot de passe" + +#: ../../enterprise/meta/advanced/metasetup.password.php:126 +#: ../../enterprise/meta/include/functions_meta.php:447 +#: ../../enterprise/godmode/setup/setup.php:463 +#: ../../include/functions_config.php:498 +msgid "Apply password policy to admin users" +msgstr "Appliquer la politique de mot de passe aux administrateurs" + +#: ../../enterprise/meta/advanced/metasetup.password.php:132 +#: ../../enterprise/meta/include/functions_meta.php:394 +#: ../../enterprise/godmode/setup/setup.php:432 +#: ../../include/functions_config.php:478 +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:138 +#: ../../enterprise/meta/include/functions_meta.php:364 +#: ../../enterprise/godmode/setup/setup.php:403 +#: ../../include/functions_config.php:490 +msgid "Password must have numbers" +msgstr "Le mot de passe doit contenir des chiffres" + +#: ../../enterprise/meta/advanced/metasetup.password.php:142 +#: ../../enterprise/meta/include/functions_meta.php:374 +#: ../../enterprise/godmode/setup/setup.php:412 +#: ../../include/functions_config.php:494 +msgid "Password must have symbols" +msgstr "Le mot de passe doit contenir des symboles" + +#: ../../enterprise/meta/advanced/metasetup.password.php:146 +#: ../../enterprise/meta/include/functions_meta.php:458 +#: ../../enterprise/godmode/setup/setup.php:493 +#: ../../include/functions_config.php:510 +msgid "Activate reset password" +msgstr "Activer la rĆ©initialisation du mot de passe" + +#: ../../enterprise/meta/advanced/agents_setup.php:60 +#: ../../enterprise/meta/advanced/policymanager.php:54 +#: ../../enterprise/meta/monitoring/custom_fields_view.php:50 +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:55 +#: ../../enterprise/meta/monitoring/group_view.php:51 +#: ../../enterprise/meta/monitoring/tactical.php:38 +#: ../../enterprise/meta/index.php:956 ../../enterprise/meta/agentsearch.php:48 +#: ../../enterprise/meta/general/logon_ok.php:16 +#: ../../enterprise/extensions/vmware/vmware_view.php:1373 +#: ../../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:1377 +#: ../../operation/netflow/nf_live_view.php:149 +msgid "Main" +msgstr "Principal" + +#: ../../enterprise/meta/advanced/agents_setup.php:64 +msgid "Propagation" +msgstr "Propagation" + +#: ../../enterprise/meta/advanced/agents_setup.autoprovision_rules.php:64 +msgid "Cannot create an unnamed rule." +msgstr "Impossible de crĆ©er une rĆØgle sans nom." + +#: ../../enterprise/meta/advanced/agents_setup.autoprovision_rules.php:75 +#: ../../enterprise/meta/advanced/agents_setup.autoprovision_rules.php:105 +msgid "Error creating provisioning rule." +msgstr "Erreur lors de la crĆ©ation de la rĆØgle dā€™approvisionnement." + +#: ../../enterprise/meta/advanced/agents_setup.autoprovision_rules.php:91 +#: ../../enterprise/meta/advanced/agents_setup.autoprovision_rules.php:119 +msgid "Error updating provisioning rule." +msgstr "Erreur lors de la mise Ć  jour de la rĆØgle dā€™approvisionnement." + +#: ../../enterprise/meta/advanced/agents_setup.autoprovision_rules.php:125 +msgid "Error deleting provisioning rule." +msgstr "Erreur lors de la suppression de la rĆØgle dā€™approvisionnement." + +#: ../../enterprise/meta/advanced/agents_setup.autoprovision_rules.php:135 +msgid "There was an error rule when moving the provisioning." +msgstr "" +"Une rĆØgle dā€™erreur sā€™est produite lors du dĆ©placement de lā€™approvisionnement." + +#: ../../enterprise/meta/advanced/agents_setup.autoprovision_rules.php:201 +#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:190 +msgid "Create rule" +msgstr "CrĆ©er une rĆØgle" + +#: ../../enterprise/meta/advanced/agents_setup.autoprovision_rules.php:202 +msgid "Edit rule" +msgstr "Modifier la rĆØgle" + +#: ../../enterprise/meta/advanced/metasetup.mail.php:79 +#: ../../godmode/update_manager/update_manager.setup.php:168 +#: ../../godmode/update_manager/update_manager.setup.php:243 +msgid "Succesful Update the url config vars." +msgstr "Variables de configuration de l'URL mises Ć  jour correctement" + +#: ../../enterprise/meta/advanced/metasetup.mail.php:80 +#: ../../godmode/update_manager/update_manager.setup.php:169 +#: ../../godmode/update_manager/update_manager.setup.php:244 +msgid "Unsuccesful Update the url config vars." +msgstr "Mise Ć  jour des variables de configuration de l'URL Ć©chouĆ©e." + +#: ../../enterprise/meta/advanced/metasetup.mail.php:98 +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 " +"587.\n" +"\n" +"If you have manual settings in your pandora_server.conf, please note these " +"settings will ignore this console setup." +msgstr "" +"Veuillez noter que certains fournisseurs comme Gmail ou Office365 doivent " +"configurer/activer manuellement les connexions externes Ć  lā€™aide de SMTP et que " +"vous devez utiliser STARTTLS sur le port 587.\n" +"\n" +"Si vous avez des paramĆØtres manuels dans votre pandora_server.conf, veuillez " +"noter que ces paramĆØtres ignoreront cette configuration de la console." + +#: ../../enterprise/meta/advanced/metasetup.mail.php:104 +#: ../../godmode/setup/setup_general.php:518 +msgid "Mail configuration" +msgstr "Configuration du courriel" + +#: ../../enterprise/meta/advanced/metasetup.mail.php:109 +#: ../../include/functions_config.php:370 +msgid "From dir" +msgstr "ƀ partir du rĆ©pertoire" + +#: ../../enterprise/meta/advanced/metasetup.mail.php:112 +#: ../../godmode/setup/setup_general.php:538 ../../include/functions_config.php:374 +msgid "From name" +msgstr "ƀ partir d'un nom" + +#: ../../enterprise/meta/advanced/metasetup.mail.php:115 +#: ../../include/functions_config.php:366 +msgid "Server SMTP" +msgstr "Serveur SMTP" + +#: ../../enterprise/meta/advanced/metasetup.mail.php:118 +#: ../../include/functions_config.php:378 +msgid "Port SMTP" +msgstr "Port SMTP" + +#: ../../enterprise/meta/advanced/metasetup.mail.php:121 +#: ../../godmode/setup/setup_general.php:579 ../../include/functions_config.php:386 +msgid "Email user" +msgstr "Utilisateur du courriel" + +#: ../../enterprise/meta/advanced/metasetup.mail.php:124 +#: ../../godmode/setup/setup_general.php:589 ../../include/functions_config.php:390 +msgid "Email password" +msgstr "Mot de passe du courriel" + +#: ../../enterprise/meta/advanced/metasetup.php:55 +msgid "Consoles Setup" +msgstr "Configuration des consoles" + +#: ../../enterprise/meta/advanced/metasetup.php:63 +#: ../../enterprise/meta/advanced/metasetup.php:216 +msgid "General setup" +msgstr "Configuration gĆ©nĆ©rale" + +#: ../../enterprise/meta/advanced/metasetup.php:71 +#: ../../enterprise/meta/advanced/metasetup.php:219 +msgid "Passwords setup" +msgstr "Configuration des mots de passe" + +#: ../../enterprise/meta/advanced/metasetup.php:80 +#: ../../enterprise/meta/advanced/metasetup.php:223 +#: ../../enterprise/meta/include/functions_meta.php:293 +#: ../../enterprise/meta/general/main_header.php:143 +#: ../../enterprise/meta/general/main_menu.php:249 +#: ../../enterprise/operation/log/elasticsearch_interface.php:31 +#: ../../enterprise/operation/log/log_viewer.php:377 +#: ../../enterprise/operation/log/log_viewer.php:417 +#: ../../enterprise/operation/menu.php:181 +msgid "Log viewer" +msgstr "Visualiseur de journaux" + +#: ../../enterprise/meta/advanced/metasetup.php:91 +#: ../../enterprise/meta/advanced/metasetup.php:227 ../../godmode/menu.php:339 +#: ../../godmode/setup/setup.php:113 ../../godmode/setup/setup.php:255 +msgid "Authentication" +msgstr "Authentification" + +#: ../../enterprise/meta/advanced/metasetup.php:101 +#: ../../enterprise/meta/advanced/metasetup.php:231 +msgid "Visual setup" +msgstr "Configuration visuelle" + +#: ../../enterprise/meta/advanced/metasetup.php:109 +#: ../../enterprise/meta/advanced/metasetup.php:235 +msgid "Performance setup" +msgstr "Configuration de la performance" + +#: ../../enterprise/meta/advanced/metasetup.php:117 +#: ../../enterprise/meta/advanced/metasetup.php:239 ../../godmode/menu.php:407 +#: ../../godmode/setup/file_manager.php:47 ../../godmode/setup/file_manager.php:60 +msgid "File manager" +msgstr "Gestionnaire de fichiers" + +#: ../../enterprise/meta/advanced/metasetup.php:125 +#: ../../enterprise/meta/advanced/metasetup.php:243 +msgid "Strings translation" +msgstr "Traduction des chaĆ®nes" + +#: ../../enterprise/meta/advanced/metasetup.php:133 +#: ../../enterprise/meta/advanced/metasetup.php:247 +msgid "Mail" +msgstr "Email" + +#: ../../enterprise/meta/advanced/metasetup.php:141 +#: ../../enterprise/meta/advanced/metasetup.php:251 ../../godmode/menu.php:363 +#: ../../godmode/setup/setup.php:204 ../../godmode/setup/setup.php:300 +msgid "Notifications" +msgstr "Notifications" + +#: ../../enterprise/meta/advanced/metasetup.php:153 +msgid "Relations rules" +msgstr "RĆØgles de relations" + +#: ../../enterprise/meta/advanced/metasetup.php:166 +msgid "Warp Update Setup" +msgstr "Configuration de Warp Update" + +#: ../../enterprise/meta/advanced/metasetup.php:174 +msgid "Warp Update Journal" +msgstr "Journal de Warp Update" + +#: ../../enterprise/meta/advanced/metasetup.php:182 +msgid "Warp Update Offline" +msgstr "Warp Update hors ligne" + +#: ../../enterprise/meta/advanced/metasetup.php:190 +msgid "Warp Update Online" +msgstr "Warp Update en ligne" + +#: ../../enterprise/meta/advanced/metasetup.php:211 +msgid "Consoles setup" +msgstr "Configuration des consoles" + +#: ../../enterprise/meta/advanced/metasetup.php:255 +msgid "Relations Rules" +msgstr "RĆØgles de relations" + +#: ../../enterprise/meta/advanced/metasetup.php:259 +msgid "Online Update Options" +msgstr "Options de mise Ć  jour en ligne" + +#: ../../enterprise/meta/advanced/metasetup.php:263 +msgid "Online Update Journal" +msgstr "Update Journal en ligne" + +#: ../../enterprise/meta/advanced/metasetup.php:268 +msgid "Online Update Offline" +msgstr "Mise Ć  jour en ligne hors ligne" + +#: ../../enterprise/meta/advanced/metasetup.php:275 +msgid "Online Update Online" +msgstr "Mise Ć  jour en ligne en ligne" + +#: ../../enterprise/meta/advanced/policymanager.apply.php:129 +#: ../../enterprise/godmode/policies/policy.php:198 +#: ../../enterprise/godmode/policies/policy.php:246 +msgid "Duplicated or incompatible operation in the queue" +msgstr "OpĆ©ration dupliquĆ©e ou non compatible dans la file d'attente" + +#: ../../enterprise/meta/advanced/policymanager.apply.php:137 +#: ../../enterprise/meta/advanced/policymanager.apply.php:141 +#: ../../enterprise/godmode/policies/policy.php:186 +#: ../../enterprise/godmode/policies/policy.php:241 +msgid "Operation successfully added to the queue" +msgstr "OpĆ©ration ajoutĆ©e correctement Ć  la file d'attente" + +#: ../../enterprise/meta/advanced/policymanager.apply.php:141 +#: ../../enterprise/meta/advanced/policymanager.apply.php:149 +msgid "Only database" +msgstr "Seulement base de donnĆ©es" + +#: ../../enterprise/meta/advanced/policymanager.apply.php:145 +#: ../../enterprise/meta/advanced/policymanager.apply.php:149 +#: ../../enterprise/meta/advanced/policymanager.apply.php:153 +#: ../../enterprise/godmode/policies/policy.php:192 +#: ../../enterprise/godmode/policies/policy.php:242 +msgid "Operation cannot be added to the queue" +msgstr "L'opĆ©ration ne peut pas ĆŖtre ajoutĆ©e Ć  la file d'attente" + +#: ../../enterprise/meta/advanced/policymanager.apply.php:186 +msgid "Apply Policies" +msgstr "Appliquer les politiques" -#: ../../operation/search_main.php:73 ../../operation/tree.php:127 -#: ../../operation/search_results.php:171 -#: ../../include/lib/Dashboard/Widgets/tree_view.php:333 -#: ../../include/functions_maps.php:42 -#: ../../include/functions_networkmap.php:1299 -#: ../../enterprise/operation/agentes/ver_agente.php:239 -#: ../../enterprise/include/functions_groups.php:33 #: ../../enterprise/meta/advanced/policymanager.apply.php:198 +#: ../../enterprise/include/functions_groups.php:33 +#: ../../enterprise/operation/agentes/ver_agente.php:239 +#: ../../include/functions_networkmap.php:1299 ../../include/functions_maps.php:42 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:333 +#: ../../operation/tree.php:127 ../../operation/search_results.php:171 +#: ../../operation/search_main.php:73 msgid "Policies" msgstr "Politiques" -#: ../../operation/search_main.php:83 +#: ../../enterprise/meta/advanced/policymanager.apply.php:200 +#: ../../enterprise/godmode/servers/HA_cluster.php:97 ../../godmode/menu.php:286 +#: ../../godmode/setup/os.php:225 +#: ../../godmode/reporting/visual_console_builder.wizard.php:333 +#: ../../mobile/include/functions_web.php:28 +msgid "Servers" +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 +#: ../../include/functions_visual_map_editor.php:641 +msgid "Apply" +msgstr "Appliquer" + +#: ../../enterprise/meta/advanced/metasetup.consoles.php:99 +#: ../../enterprise/include/class/Omnishell.class.php:1553 +#: ../../enterprise/include/lib/Metaconsole/Node.php:140 +#: ../../enterprise/include/lib/Metaconsole/Node.php:189 +#: ../../enterprise/include/lib/Metaconsole/Node.php:240 +#: ../../enterprise/include/lib/Metaconsole/Node.php:284 +#: ../../enterprise/include/lib/Metaconsole/Node.php:337 +msgid "success" +msgstr "rĆ©ussi" + +#: ../../enterprise/meta/advanced/metasetup.consoles.php:105 #, php-format -msgid "Show %s of %s. View all matches" -msgstr "Afficher %s de %s. Voir toutes les concordances." +msgid "Node %s is not recognized as metaconsole node." +msgstr "Le nœud %s nā€™est pas reconnu comme nœud de la MĆ©taconsole." -#: ../../operation/tree.php:78 ../../operation/tree.php:146 -#: ../../operation/gis_maps/ajax.php:297 ../../operation/search_agents.php:44 -#: ../../operation/search_agents.php:50 -#: ../../operation/agentes/estado_agente.php:748 -#: ../../operation/agentes/estado_generalagente.php:196 -#: ../../include/ajax/heatmap.ajax.php:325 -#: ../../include/class/Diagnostics.class.php:748 -#: ../../include/lib/Dashboard/Widgets/os_quick_report.php:283 -#: ../../include/lib/Dashboard/Widgets/tree_view.php:332 -#: ../../include/functions_events.php:4490 -#: ../../include/functions_reporting_html.php:1525 -#: ../../include/functions_reporting_html.php:3388 -#: ../../enterprise/tools/ipam/ipam_network.php:398 -#: ../../enterprise/views/cluster/view.php:253 -#: ../../enterprise/operation/agentes/tag_view.php:602 -#: ../../enterprise/include/functions_reporting_csv.php:718 -#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:254 -#: ../../enterprise/include/class/AgentRepository.class.php:342 -#: ../../enterprise/include/class/AgentRepository.class.php:630 -#: ../../enterprise/include/class/AgentRepository.class.php:673 -#: ../../enterprise/include/class/DeploymentCenter.class.php:756 -#: ../../enterprise/include/class/DeploymentCenter.class.php:817 -#: ../../enterprise/include/class/DeploymentCenter.class.php:1289 -#: ../../enterprise/include/class/DeploymentCenter.class.php:1397 -#: ../../enterprise/meta/agentsearch.php:136 -#: ../../enterprise/godmode/modules/configure_local_component.php:177 -#: ../../enterprise/godmode/modules/local_components.php:561 -#: ../../enterprise/godmode/modules/local_components.php:586 -#: ../../enterprise/godmode/modules/local_components.php:622 -#: ../../enterprise/godmode/modules/manage_inventory_modules.php:274 -#: ../../enterprise/godmode/modules/manage_inventory_modules_form.php:103 -#: ../../mobile/operation/agents.php:94 ../../mobile/operation/agents.php:404 -#: ../../godmode/reporting/reporting_builder.item_editor.php:71 -#: ../../godmode/massive/massive_edit_agents.php:719 -#: ../../godmode/agentes/agent_manager.php:392 -#: ../../godmode/agentes/planned_downtime.editor.php:922 -#: ../../godmode/agentes/modificar_agente.php:649 -msgid "OS" -msgstr "SystĆØme d'exploitation" - -#: ../../operation/tree.php:90 ../../operation/agentes/pandora_networkmap.php:710 -#: ../../include/lib/Dashboard/Widgets/top_n_events_by_group.php:301 -#: ../../include/lib/Dashboard/Widgets/top_n_events_by_module.php:301 -#: ../../include/lib/Dashboard/Widgets/system_group_status.php:295 -#: ../../include/lib/Dashboard/Widgets/groups_status.php:216 -#: ../../include/lib/Dashboard/Widgets/events_list.php:420 -#: ../../include/lib/Dashboard/Widgets/tree_view.php:328 -#: ../../include/lib/Dashboard/Widgets/tree_view.php:337 -#: ../../include/lib/Dashboard/Widgets/tree_view.php:359 -#: ../../include/functions_maps.php:46 -#: ../../include/functions_networkmap.php:1295 -#: ../../enterprise/godmode/setup/setup_auth.php:230 -#: ../../enterprise/godmode/setup/setup_auth.php:509 -#: ../../enterprise/godmode/setup/setup_auth.php:1306 -#: ../../enterprise/godmode/policies/policy_agents.php:566 -#: ../../enterprise/godmode/policies/policy_agents.php:1215 -#: ../../extensions/files_repo/files_repo_form.php:55 -#: ../../extensions/module_groups.php:311 ../../mobile/operation/home.php:57 -#: ../../mobile/operation/groups.php:77 ../../mobile/include/functions_web.php:27 -#: ../../godmode/reporting/visual_console_builder.wizard.php:362 -msgid "Groups" -msgstr "Groupes" - -#: ../../operation/tree.php:102 -#: ../../include/lib/Dashboard/Widgets/tree_view.php:330 -#: ../../extensions/module_groups.php:422 ../../godmode/menu.php:90 -msgid "Module groups" -msgstr "Groupes de modules" - -#: ../../operation/tree.php:114 ../../operation/search_agents.php:55 -#: ../../operation/agentes/group_view.php:184 -#: ../../operation/agentes/group_view.php:217 -#: ../../operation/agentes/graphs.php:188 -#: ../../operation/agentes/exportdata.php:282 -#: ../../operation/agentes/estado_agente.php:760 -#: ../../operation/search_results.php:158 ../../include/functions_reports.php:733 -#: ../../include/functions_reports.php:737 -#: ../../include/functions_reports.php:741 -#: ../../include/functions_reports.php:745 -#: ../../include/functions_reports.php:749 -#: ../../include/functions_reports.php:753 -#: ../../include/functions_reports.php:757 -#: ../../include/functions_reports.php:761 -#: ../../include/functions_reports.php:765 -#: ../../include/class/AgentsAlerts.class.php:253 -#: ../../include/lib/Dashboard/Widgets/groups_status.php:385 -#: ../../include/lib/Dashboard/Widgets/groups_status.php:391 -#: ../../include/lib/Dashboard/Widgets/agent_module.php:448 -#: ../../include/lib/Dashboard/Widgets/tree_view.php:331 -#: ../../include/functions_html.php:1708 -#: ../../include/functions_reporting_html.php:1845 -#: ../../include/functions_reporting_html.php:5375 -#: ../../enterprise/operation/services/services.service_map.php:163 -#: ../../enterprise/operation/agentes/tag_view.php:606 -#: ../../enterprise/include/functions_reporting_pdf.php:861 -#: ../../enterprise/include/functions_policies.php:3722 -#: ../../enterprise/meta/include/functions_wizard_meta.php:409 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1824 -#: ../../enterprise/meta/monitoring/group_view.php:155 -#: ../../enterprise/meta/monitoring/group_view.php:221 -#: ../../enterprise/meta/monitoring/wizard/wizard.php:292 -#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:447 -#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:715 -#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:794 -#: ../../enterprise/meta/monitoring/wizard/wizard.agent.php:65 -#: ../../enterprise/meta/advanced/servers.build_table.php:64 -#: ../../enterprise/meta/agentsearch.php:139 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:311 -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:230 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:243 -#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:473 -#: ../../enterprise/godmode/massive/massive_edit_tags_policy.php:128 -#: ../../enterprise/godmode/massive/massive_add_service_elements.php:362 -#: ../../enterprise/godmode/massive/massive_add_modules_policy.php:176 -#: ../../enterprise/godmode/massive/massive_create_services.php:965 -#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:111 -#: ../../enterprise/godmode/policies/policy_modules.php:458 -#: ../../enterprise/godmode/policies/policies.php:509 -#: ../../extensions/agents_modules.php:758 ../../mobile/operation/agent.php:327 -#: ../../mobile/operation/modules.php:236 ../../mobile/operation/home.php:88 -#: ../../mobile/operation/agents.php:96 ../../mobile/operation/agents.php:409 -#: ../../godmode/servers/servers.build_table.php:83 -#: ../../godmode/reporting/reporting_builder.list_items.php:210 -#: ../../godmode/reporting/reporting_builder.list_items.php:239 -#: ../../godmode/reporting/reporting_builder.item_editor.php:1803 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2024 -#: ../../godmode/reporting/visual_console_builder.wizard.php:432 -#: ../../godmode/massive/massive_delete_modules.php:463 -#: ../../godmode/massive/massive_copy_modules.php:199 -#: ../../godmode/massive/massive_edit_plugins.php:383 -#: ../../godmode/massive/massive_edit_modules.php:425 -#: ../../godmode/agentes/configurar_agente.php:406 -#: ../../godmode/agentes/configurar_agente.php:724 -#: ../../godmode/agentes/planned_downtime.editor.php:924 -#: ../../godmode/agentes/planned_downtime.editor.php:999 -#: ../../godmode/agentes/planned_downtime.list.php:85 -#: ../../godmode/agentes/planned_downtime.list.php:115 -#: ../../godmode/agentes/modificar_agente.php:817 -msgid "Modules" -msgstr "Modules" - -#: ../../operation/tree.php:138 ../../operation/menu.php:51 -#: ../../include/lib/Dashboard/Widgets/tree_view.php:173 -#: ../../include/lib/Dashboard/Widgets/tree_view.php:714 -#: ../../enterprise/operation/services/services.treeview_services.php:61 -#: ../../enterprise/operation/services/services.treeview_services.php:68 -#: ../../enterprise/meta/general/main_menu.php:188 -#: ../../enterprise/meta/general/main_header.php:97 -#: ../../godmode/groups/group_list.php:344 -msgid "Tree view" -msgstr "Vue arborescente" - -#: ../../operation/tree.php:139 +#: ../../enterprise/meta/advanced/metasetup.consoles.php:112 #, php-format -msgid "Sort the agents by %s" -msgstr "Classer les agents par %s" +msgid "Node %s license missmatch." +msgstr "Le noeud %s ne correspond pas avec la licence" -#: ../../operation/tree.php:142 -msgid "tags" -msgstr "Ć©tiquettes" +#: ../../enterprise/meta/advanced/metasetup.consoles.php:119 +#, php-format +msgid "Cannot connect to node %s" +msgstr "Impossible de se connecter au nœud %s" -#: ../../operation/tree.php:150 -msgid "groups" -msgstr "groupes" +#: ../../enterprise/meta/advanced/metasetup.consoles.php:126 +#, php-format +msgid "Unknown error synchronizing %s" +msgstr "Erreur inconnue lors de la synchronisation de %s" -#: ../../operation/tree.php:154 -msgid "module groups" -msgstr "groupes de modules" +#: ../../enterprise/meta/advanced/metasetup.consoles.php:136 +#, php-format +msgid "Synchronized %d nodes, but some failed to synchronize %s" +msgstr "Nœuds %d synchronisĆ©s, mais certains nā€™ont pas rĆ©ussi Ć  synchroniser %s" -#: ../../operation/tree.php:158 ../../godmode/setup/license.php:136 -#: ../../godmode/setup/license.php:139 ../../godmode/setup/license.php:142 -#: ../../godmode/setup/license.php:145 -msgid "modules" -msgstr "modules" +#: ../../enterprise/meta/advanced/metasetup.consoles.php:143 +#, php-format +msgid "Successfully synchronized all nodes (%d)" +msgstr "Synchronisation rĆ©ussie de tous les nœuds (%d)" -#: ../../operation/tree.php:163 -msgid "policies" -msgstr "politiques" +#: ../../enterprise/meta/advanced/metasetup.consoles.php:210 +msgid "Node synchronization process failed" +msgstr "Ɖchec du processus de synchronisation des nœuds" -#: ../../operation/tree.php:212 ../../operation/tree.php:269 -#: ../../operation/tree.php:486 ../../operation/netflow/nf_live_view.php:392 -#: ../../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/estado_agente.php:268 -#: ../../include/lib/Dashboard/Widgets/system_group_status.php:311 -#: ../../include/lib/Dashboard/Widgets/tree_view.php:385 -#: ../../include/lib/Dashboard/Widgets/tree_view.php:418 -#: ../../include/lib/Dashboard/Widgets/tree_view.php:680 -#: ../../include/functions_events.php:3336 ../../include/functions_graph.php:3543 -#: ../../include/functions_graph.php:3544 ../../include/functions_graph.php:5123 -#: ../../include/rest-api/models/VisualConsole/Items/Group.php:430 -#: ../../include/functions.php:1031 ../../include/functions.php:1271 -#: ../../include/functions.php:1278 ../../include/functions.php:1311 -#: ../../include/functions_reporting_html.php:2321 -#: ../../enterprise/operation/services/services.treeview_services.php:286 -#: ../../enterprise/operation/agentes/tag_view.php:131 -#: ../../enterprise/include/functions_services.php:1428 -#: ../../enterprise/meta/monitoring/custom_fields_csv.php:117 -#: ../../enterprise/meta/monitoring/custom_fields_csv.php:140 -#: ../../enterprise/meta/monitoring/group_view.php:238 -#: ../../enterprise/meta/monitoring/group_view.php:244 -#: ../../enterprise/meta/monitoring/custom_fields_view.php:179 -#: ../../enterprise/meta/monitoring/tactical.php:241 -#: ../../enterprise/godmode/services/services.elements.php:390 -#: ../../enterprise/godmode/massive/massive_add_modules_policy.php:119 -#: ../../mobile/operation/modules.php:69 ../../mobile/operation/agents.php:58 -#: ../../godmode/reporting/reporting_builder.item_editor.php:3621 -#: ../../godmode/netflow/nf_edit_form.php:236 -#: ../../godmode/massive/massive_delete_modules.php:418 -#: ../../godmode/massive/massive_delete_modules.php:439 -#: ../../godmode/massive/massive_copy_modules.php:115 -#: ../../godmode/massive/massive_copy_modules.php:275 -#: ../../godmode/massive/massive_edit_agents.php:531 -#: ../../godmode/massive/massive_delete_agents.php:209 -#: ../../godmode/massive/massive_edit_modules.php:385 -#: ../../godmode/massive/massive_edit_modules.php:471 -#: ../../godmode/groups/group_list.php:1074 -msgid "Normal" -msgstr "Normal" +#: ../../enterprise/meta/advanced/metasetup.consoles.php:210 +#: ../../enterprise/meta/advanced/metasetup.consoles.php:324 +msgid "" +"If you are trying to migrate this node to a new metaconsole, please use the form " +"available at Settings > Enterprise at node console." +msgstr "" +"Si vous essayez de migrer ce nœud vers une nouvelle MĆ©taconsole, utilisez le " +"formulaire disponible dans ParamĆØtres > Enterprise sur la console du nœud." -#: ../../operation/tree.php:213 ../../operation/tree.php:270 -#: ../../operation/tree.php:471 ../../operation/gis_maps/render_view.php:165 -#: ../../operation/netflow/nf_live_view.php:459 -#: ../../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/estado_agente.php:269 -#: ../../include/class/AgentWizard.class.php:1300 -#: ../../include/class/AgentWizard.class.php:3995 -#: ../../include/class/Diagnostics.class.php:1809 -#: ../../include/lib/Dashboard/Widgets/system_group_status.php:312 -#: ../../include/lib/Dashboard/Widgets/tree_view.php:386 -#: ../../include/lib/Dashboard/Widgets/tree_view.php:419 -#: ../../include/lib/Dashboard/Widgets/tree_view.php:665 -#: ../../include/functions_events.php:3340 ../../include/functions_graph.php:3553 -#: ../../include/functions_graph.php:3554 ../../include/functions_graph.php:5127 -#: ../../include/functions_ui.php:298 ../../include/functions_ui.php:2604 -#: ../../include/rest-api/models/VisualConsole/Items/Group.php:423 -#: ../../include/functions.php:1035 ../../include/functions.php:1273 -#: ../../include/functions.php:1276 ../../include/functions.php:1315 -#: ../../include/functions_reporting_html.php:2323 -#: ../../update_manager_client/views/offline.php:80 ../../index.php:1176 -#: ../../enterprise/views/ncm/firmwares/edit.php:149 -#: ../../enterprise/operation/services/services.treeview_services.php:271 -#: ../../enterprise/operation/services/services.service.php:123 -#: ../../enterprise/operation/services/services.service.php:174 -#: ../../enterprise/operation/services/services.list.php:238 -#: ../../enterprise/operation/services/services.list.php:505 -#: ../../enterprise/operation/services/services.list.php:564 -#: ../../enterprise/operation/services/services.service_map.php:150 -#: ../../enterprise/operation/services/services.table_services.php:160 -#: ../../enterprise/operation/agentes/tag_view.php:132 -#: ../../enterprise/operation/agentes/transactional_map.php:333 -#: ../../enterprise/include/class/CommandCenter.class.php:564 -#: ../../enterprise/include/class/CommandCenter.class.php:603 -#: ../../enterprise/include/functions_services.php:1448 -#: ../../enterprise/include/functions_login.php:23 -#: ../../enterprise/include/functions_reporting.php:4837 -#: ../../enterprise/meta/include/functions_wizard_meta.php:980 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1065 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1268 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1288 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1505 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1590 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1710 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1730 -#: ../../enterprise/meta/monitoring/custom_fields_csv.php:127 -#: ../../enterprise/meta/monitoring/group_view.php:239 -#: ../../enterprise/meta/monitoring/group_view.php:245 -#: ../../enterprise/meta/monitoring/custom_fields_view.php:180 -#: ../../enterprise/meta/monitoring/tactical.php:240 -#: ../../enterprise/meta/advanced/metasetup.consoles.php:439 -#: ../../enterprise/meta/index.php:862 ../../enterprise/meta/index.php:931 -#: ../../enterprise/godmode/setup/setup_history.php:583 -#: ../../enterprise/godmode/services/services.elements.php:372 -#: ../../enterprise/godmode/services/services.service.php:707 -#: ../../enterprise/godmode/services/services.service.php:958 -#: ../../enterprise/godmode/massive/massive_add_modules_policy.php:120 -#: ../../enterprise/godmode/massive/massive_create_services.php:747 -#: ../../extensions/dbmanager.php:129 ../../mobile/operation/modules.php:70 -#: ../../mobile/operation/agents.php:59 ../../godmode/setup/setup_netflow.php:71 -#: ../../godmode/modules/manage_network_components_form_wizard.php:384 -#: ../../godmode/reporting/reporting_builder.item_editor.php:3622 -#: ../../godmode/massive/massive_delete_modules.php:419 -#: ../../godmode/massive/massive_delete_modules.php:440 -#: ../../godmode/massive/massive_copy_modules.php:116 -#: ../../godmode/massive/massive_copy_modules.php:276 -#: ../../godmode/massive/massive_edit_agents.php:532 -#: ../../godmode/massive/massive_edit_agents.php:981 -#: ../../godmode/massive/massive_delete_agents.php:210 -#: ../../godmode/massive/massive_edit_modules.php:386 -#: ../../godmode/massive/massive_edit_modules.php:472 -#: ../../godmode/users/configure_user.php:1674 -#: ../../godmode/groups/group_list.php:1059 -msgid "Warning" -msgstr "Attention" +#: ../../enterprise/meta/advanced/metasetup.consoles.php:220 +#: ../../enterprise/godmode/setup/setup_metaconsole.php:86 +msgid "Could not be update" +msgstr "Erreur de mise Ć  jour" -#: ../../operation/tree.php:214 ../../operation/tree.php:271 -#: ../../operation/tree.php:466 ../../operation/gis_maps/render_view.php:164 -#: ../../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/estado_agente.php:270 -#: ../../include/class/AgentWizard.class.php:1303 -#: ../../include/class/AgentWizard.class.php:4009 -#: ../../include/lib/Dashboard/Widgets/system_group_status.php:313 -#: ../../include/lib/Dashboard/Widgets/tree_view.php:387 -#: ../../include/lib/Dashboard/Widgets/tree_view.php:420 -#: ../../include/lib/Dashboard/Widgets/tree_view.php:660 -#: ../../include/functions_events.php:3344 ../../include/functions_graph.php:3563 -#: ../../include/functions_graph.php:3564 ../../include/functions_graph.php:5131 -#: ../../include/functions_ui.php:2604 -#: ../../include/rest-api/models/VisualConsole/Items/Group.php:416 -#: ../../include/functions.php:1039 ../../include/functions.php:1275 -#: ../../include/functions.php:1276 ../../include/functions.php:1278 -#: ../../include/functions.php:1319 -#: ../../include/functions_reporting_html.php:859 -#: ../../include/functions_reporting_html.php:2322 -#: ../../include/functions_reporting_html.php:4605 -#: ../../enterprise/operation/services/services.treeview_services.php:266 -#: ../../enterprise/operation/services/services.service.php:122 -#: ../../enterprise/operation/services/services.service.php:168 -#: ../../enterprise/operation/services/services.list.php:239 -#: ../../enterprise/operation/services/services.list.php:504 -#: ../../enterprise/operation/services/services.list.php:558 -#: ../../enterprise/operation/services/services.service_map.php:149 -#: ../../enterprise/operation/services/services.table_services.php:161 -#: ../../enterprise/operation/agentes/tag_view.php:133 -#: ../../enterprise/include/functions_services.php:1440 -#: ../../enterprise/include/functions_reporting.php:3190 -#: ../../enterprise/include/functions_reporting.php:4191 -#: ../../enterprise/include/functions_reporting.php:4842 -#: ../../enterprise/include/functions_reporting.php:6198 -#: ../../enterprise/meta/include/functions_wizard_meta.php:989 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1074 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1277 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1301 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1514 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1599 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1719 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1737 -#: ../../enterprise/meta/monitoring/custom_fields_csv.php:122 -#: ../../enterprise/meta/monitoring/group_view.php:240 -#: ../../enterprise/meta/monitoring/group_view.php:246 -#: ../../enterprise/meta/monitoring/custom_fields_view.php:181 -#: ../../enterprise/meta/monitoring/tactical.php:239 -#: ../../enterprise/godmode/services/services.elements.php:363 -#: ../../enterprise/godmode/services/services.service.php:693 -#: ../../enterprise/godmode/massive/massive_add_modules_policy.php:121 -#: ../../enterprise/godmode/massive/massive_create_services.php:733 -#: ../../extensions/module_groups.php:50 ../../mobile/operation/modules.php:71 -#: ../../mobile/operation/agents.php:57 -#: ../../godmode/modules/manage_network_components_form_wizard.php:412 -#: ../../godmode/reporting/reporting_builder.item_editor.php:3623 -#: ../../godmode/massive/massive_delete_modules.php:420 -#: ../../godmode/massive/massive_delete_modules.php:441 -#: ../../godmode/massive/massive_copy_modules.php:117 -#: ../../godmode/massive/massive_copy_modules.php:277 -#: ../../godmode/massive/massive_edit_agents.php:533 -#: ../../godmode/massive/massive_delete_agents.php:211 -#: ../../godmode/massive/massive_edit_modules.php:387 -#: ../../godmode/massive/massive_edit_modules.php:473 -#: ../../godmode/groups/group_list.php:1054 -msgid "Critical" -msgstr "Critique" +#: ../../enterprise/meta/advanced/metasetup.consoles.php:260 +msgid "Could not be created, duplicated register found." +msgstr "Impossible de crĆ©er, registre dupliquĆ© trouvĆ©." -#: ../../operation/tree.php:215 ../../operation/tree.php:272 -#: ../../operation/tree.php:476 ../../operation/events/events.php:2245 -#: ../../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/tactical.php:181 -#: ../../operation/agentes/estado_agente.php:271 -#: ../../operation/agentes/pandora_networkmap.view.php:1728 -#: ../../include/functions_reports.php:557 ../../include/ajax/module.php:1071 -#: ../../include/lib/Dashboard/Widgets/tree_view.php:388 -#: ../../include/lib/Dashboard/Widgets/tree_view.php:421 -#: ../../include/lib/Dashboard/Widgets/tree_view.php:670 -#: ../../include/functions_events.php:3244 ../../include/functions_alerts.php:702 -#: ../../include/functions_netflow.php:1865 -#: ../../include/functions_filemanager.php:668 -#: ../../include/functions_reporting.php:6108 -#: ../../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/graphs/functions_flot.php:305 -#: ../../include/functions_maps.php:54 ../../include/functions_ui.php:549 -#: ../../include/functions_ui.php:550 -#: ../../include/rest-api/models/VisualConsole/Items/Group.php:437 -#: ../../include/functions.php:1225 ../../include/functions.php:4101 -#: ../../include/functions_reporting_html.php:2311 -#: ../../include/functions_reporting_html.php:2324 -#: ../../include/functions_reporting_html.php:3295 -#: ../../include/functions_reporting_html.php:3703 -#: ../../enterprise/views/ncm/agent/details.php:312 -#: ../../enterprise/operation/services/services.treeview_services.php:276 -#: ../../enterprise/operation/services/services.service.php:180 -#: ../../enterprise/operation/services/services.list.php:240 -#: ../../enterprise/operation/services/services.list.php:571 -#: ../../enterprise/operation/services/services.service_map.php:152 -#: ../../enterprise/operation/services/services.table_services.php:162 -#: ../../enterprise/operation/agentes/tag_view.php:134 -#: ../../enterprise/operation/agentes/transactional_map.php:339 -#: ../../enterprise/operation/agentes/transactional_map.php:385 -#: ../../enterprise/include/functions_cron.php:585 -#: ../../enterprise/include/class/DatabaseHA.class.php:223 -#: ../../enterprise/include/lib/ClusterViewer/ClusterManager.php:582 -#: ../../enterprise/include/lib/NetworkManager.php:103 -#: ../../enterprise/include/functions_HA_cluster.php:70 -#: ../../enterprise/include/functions_reporting.php:1889 -#: ../../enterprise/include/functions_reporting.php:2939 -#: ../../enterprise/include/functions_reporting.php:3927 -#: ../../enterprise/include/functions_reporting.php:4847 -#: ../../enterprise/include/functions_reporting.php:6158 -#: ../../enterprise/include/functions_reporting_pdf.php:637 -#: ../../enterprise/meta/monitoring/custom_fields_csv.php:131 -#: ../../enterprise/meta/monitoring/group_view.php:236 -#: ../../enterprise/meta/monitoring/group_view.php:242 -#: ../../enterprise/meta/monitoring/custom_fields_view.php:182 -#: ../../enterprise/meta/monitoring/tactical.php:242 -#: ../../enterprise/godmode/services/services.elements.php:381 -#: ../../enterprise/godmode/massive/massive_add_modules_policy.php:122 -#: ../../extensions/module_groups.php:52 ../../mobile/operation/modules.php:72 -#: ../../mobile/operation/agents.php:60 -#: ../../godmode/reporting/reporting_builder.item_editor.php:3624 -#: ../../godmode/massive/massive_delete_modules.php:421 -#: ../../godmode/massive/massive_delete_modules.php:442 -#: ../../godmode/massive/massive_copy_modules.php:118 -#: ../../godmode/massive/massive_copy_modules.php:278 -#: ../../godmode/massive/massive_edit_agents.php:534 -#: ../../godmode/massive/massive_delete_agents.php:212 -#: ../../godmode/massive/massive_edit_modules.php:388 -#: ../../godmode/massive/massive_edit_modules.php:474 -#: ../../godmode/alerts/alert_list.builder.php:290 -#: ../../godmode/groups/group_list.php:1064 -msgid "Unknown" -msgstr "Inconnu" +#: ../../enterprise/meta/advanced/metasetup.consoles.php:322 +msgid "Node synchronization process failed: " +msgstr "Ɖchec du processus de synchronisation des nœuds : " -#: ../../operation/tree.php:216 ../../operation/tree.php:273 -#: ../../operation/tree.php:481 ../../operation/agentes/status_monitor.php:498 -#: ../../operation/agentes/group_view.php:225 -#: ../../operation/agentes/group_view.php:230 -#: ../../operation/agentes/tactical.php:182 -#: ../../operation/agentes/estado_agente.php:273 -#: ../../include/lib/Dashboard/Widgets/tree_view.php:389 -#: ../../include/lib/Dashboard/Widgets/tree_view.php:422 -#: ../../include/lib/Dashboard/Widgets/tree_view.php:675 -#: ../../include/functions_reporting_html.php:652 -#: ../../include/functions_reporting_html.php:2325 -#: ../../include/functions_reporting_html.php:4413 -#: ../../enterprise/operation/services/services.treeview_services.php:281 -#: ../../enterprise/operation/agentes/tag_view.php:137 -#: ../../enterprise/operation/agentes/transactional_map.php:345 -#: ../../enterprise/meta/monitoring/group_view.php:237 -#: ../../enterprise/meta/monitoring/group_view.php:243 -#: ../../enterprise/meta/monitoring/custom_fields_view.php:185 -#: ../../enterprise/meta/monitoring/tactical.php:243 -#: ../../enterprise/godmode/massive/massive_add_modules_policy.php:124 -#: ../../mobile/operation/modules.php:75 -#: ../../godmode/reporting/reporting_builder.item_editor.php:3626 -#: ../../godmode/massive/massive_delete_modules.php:423 -#: ../../godmode/massive/massive_delete_modules.php:444 -#: ../../godmode/massive/massive_copy_modules.php:120 -#: ../../godmode/massive/massive_copy_modules.php:280 -#: ../../godmode/massive/massive_edit_agents.php:536 -#: ../../godmode/massive/massive_delete_agents.php:214 -#: ../../godmode/massive/massive_edit_modules.php:390 -#: ../../godmode/massive/massive_edit_modules.php:476 -#: ../../godmode/groups/group_list.php:1069 -msgid "Not init" -msgstr "Non initialisĆ©" +#: ../../enterprise/meta/advanced/metasetup.consoles.php:322 +#: ../../godmode/setup/license.php:101 +msgid "Unknown error" +msgstr "Erreur inconnue" -#: ../../operation/tree.php:219 -msgid "Search group" -msgstr "Rechercher groupe" +#: ../../enterprise/meta/advanced/metasetup.consoles.php:343 +msgid "Successfully registered" +msgstr "Inscription rĆ©ussie" -#: ../../operation/tree.php:223 ../../operation/tree.php:279 -msgid "Show not init modules" -msgstr "Afficher les modules non initialisĆ©s" +#: ../../enterprise/meta/advanced/metasetup.consoles.php:344 +#, php-format +msgid "Could not be registered %s" +msgstr "Impossible dā€™ĆŖtre enregistrĆ© %s" -#: ../../operation/tree.php:232 -msgid "Search agent" -msgstr "Rechercher agent" +#: ../../enterprise/meta/advanced/metasetup.consoles.php:370 +msgid "Successfully delete" +msgstr "SupprimĆ© correctement" -#: ../../operation/tree.php:235 -msgid "Show not init agents" -msgstr "Afficher les agents non initialisĆ©s" +#: ../../enterprise/meta/advanced/metasetup.consoles.php:371 +msgid "Could not be delete" +msgstr "Erreur de suppression" -#: ../../operation/tree.php:243 -msgid "Show full hirearchy" -msgstr "Afficher hiĆ©rarchie complĆØte" +#: ../../enterprise/meta/advanced/metasetup.consoles.php:387 +#: ../../enterprise/godmode/policies/policy_alerts.php:126 +#: ../../enterprise/godmode/policies/policy_modules.php:517 +#: ../../enterprise/godmode/setup/setup_metaconsole.php:147 +#: ../../godmode/users/user_list.php:372 +#: ../../godmode/agentes/configurar_agente.php:2175 +#: ../../godmode/agentes/modificar_agente.php:234 +#: ../../godmode/massive/massive_enable_disable_alerts.php:102 +#: ../../godmode/alerts/alert_list.php:366 +#: ../../include/ajax/alert_list.ajax.php:358 +msgid "Successfully enabled" +msgstr "ActivĆ© correctement" -#: ../../operation/tree.php:246 -#: ../../enterprise/include/functions_reporting_csv.php:2348 -#: ../../enterprise/godmode/servers/HA_cluster.php:163 -msgid "Agent status" -msgstr "Ɖtat de l'agent" +#: ../../enterprise/meta/advanced/metasetup.consoles.php:388 +#: ../../enterprise/godmode/policies/policy_alerts.php:127 +#: ../../enterprise/godmode/policies/policy_modules.php:518 +#: ../../enterprise/godmode/setup/setup_metaconsole.php:148 +#: ../../godmode/agentes/configurar_agente.php:2176 +#: ../../godmode/agentes/modificar_agente.php:235 +#: ../../godmode/massive/massive_enable_disable_alerts.php:102 +#: ../../godmode/alerts/alert_list.php:367 +#: ../../include/ajax/alert_list.ajax.php:360 +msgid "Could not be enabled" +msgstr "Erreur d'activation" -#: ../../operation/tree.php:254 -msgid "Show only disabled" -msgstr "Afficher uniquement dĆ©sactivĆ©" +#: ../../enterprise/meta/advanced/metasetup.consoles.php:412 +#: ../../enterprise/godmode/policies/policy_alerts.php:152 +#: ../../enterprise/godmode/policies/policy_modules.php:534 +#: ../../enterprise/godmode/setup/setup_metaconsole.php:156 +#: ../../godmode/users/user_list.php:366 +#: ../../godmode/agentes/configurar_agente.php:2200 +#: ../../godmode/agentes/modificar_agente.php:277 +#: ../../godmode/massive/massive_enable_disable_alerts.php:124 +#: ../../godmode/alerts/alert_list.php:393 +#: ../../include/ajax/alert_list.ajax.php:379 +msgid "Successfully disabled" +msgstr "DĆ©sactivĆ© correctement" -#: ../../operation/tree.php:260 ../../operation/netflow/nf_live_view.php:391 -#: ../../operation/agentes/graphs.php:265 -#: ../../operation/agentes/estado_monitores.php:594 -#: ../../operation/agentes/alerts_status.functions.php:137 -#: ../../operation/agentes/alerts_status.functions.php:146 -#: ../../operation/incidents/list_integriaims_incidents.php:435 -#: ../../operation/incidents/list_integriaims_incidents.php:439 -#: ../../include/class/ModuleTemplates.class.php:765 -#: ../../include/functions_ui.php:3371 ../../include/functions_ui.php:3392 -#: ../../include/functions_ui.php:3403 -#: ../../enterprise/operation/services/services.treeview_services.php:156 -#: ../../enterprise/operation/services/services.treeview_services.php:160 +#: ../../enterprise/meta/advanced/metasetup.consoles.php:413 +#, php-format +msgid "Could not be disabled: %s" +msgstr "Impossible de dĆ©sactiver : %s" + +#: ../../enterprise/meta/advanced/metasetup.consoles.php:429 +#, php-format +msgid "" +"System is centralised, but you just modify nodes registered, please go to %s to " +"perform a database merge process." +msgstr "" +"Le systĆØme est centralisĆ©, mais vous modifiez simplement les nœuds enregistrĆ©s, " +"veuillez vous rendre dans %s pour effectuer un processus de fusion de base de " +"donnĆ©es." + +#: ../../enterprise/meta/advanced/metasetup.consoles.php:432 +msgid "This node will not be usable until unifying the environment" +msgstr "Ce nœud ne sera pas utilisable tant quā€™il nā€™aura pas unifiĆ© lā€™environnement" + +#: ../../enterprise/meta/advanced/metasetup.consoles.php:507 +#, php-format +msgid "%s Metaconsole item edition" +msgstr "%s Ć©dition des Ć©lĆ©ments de la MĆ©taconsole" + +#: ../../enterprise/meta/advanced/metasetup.consoles.php:513 +#: ../../enterprise/meta/advanced/metasetup.consoles.php:835 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:513 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1705 +#: ../../enterprise/include/functions_reporting_csv.php:1158 +#: ../../godmode/reporting/graph_builder.graph_editor.php:214 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1215 +#: ../../godmode/reporting/visual_console_builder.elements.php:104 +#: ../../godmode/reporting/visual_console_builder.elements.php:284 +#: ../../godmode/reporting/visual_console_builder.wizard.php:446 +#: ../../include/functions_visual_map_editor.php:67 +#: ../../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:4254 +#: ../../include/rest-api/models/VisualConsole/Item.php:1941 +#: ../../include/rest-api/models/VisualConsole/Item.php:2135 +#: ../../include/lib/Dashboard/Widgets/sla_percent.php:285 +#: ../../include/lib/Dashboard/Widgets/BlockHistogram.php:284 +#: ../../include/lib/Dashboard/Widgets/module_icon.php:304 +#: ../../include/lib/Dashboard/Widgets/module_value.php:278 +#: ../../include/lib/Dashboard/Widgets/ColorModuleTabs.php:260 +#: ../../include/lib/Dashboard/Widgets/graph_module_histogram.php:274 +#: ../../include/lib/Dashboard/Widgets/module_status.php:294 +#: ../../operation/visual_console/view.php:336 +msgid "Label" +msgstr "Ɖtiquette" + +#: ../../enterprise/meta/advanced/metasetup.consoles.php:513 +msgid "Custom label to identify this setup." +msgstr "Ɖtiquette personnalisĆ©e pour identifier cette configuration." + +#: ../../enterprise/meta/advanced/metasetup.consoles.php:516 +#: ../../enterprise/meta/advanced/metasetup.consoles.php:837 +#: ../../enterprise/godmode/setup/setup_metaconsole.php:206 +msgid "Console URL" +msgstr "URL de la console" + +#: ../../enterprise/meta/advanced/metasetup.consoles.php:516 +#, php-format +msgid "Full path to %s console (without index.php). Example %s" +msgstr "Chemin dā€™accĆØs complet Ć  la console %s (sans index.php). Exemple %s" + +#: ../../enterprise/meta/advanced/metasetup.consoles.php:519 +#: ../../enterprise/godmode/setup/setup_metaconsole.php:202 +msgid "Auth token" +msgstr "Token d'authentification" + +#: ../../enterprise/meta/advanced/metasetup.consoles.php:520 +#, php-format +msgid "" +"Token previously configured on the destination %s console in order to use " +"delegated authentification." +msgstr "" +"Jeton prĆ©cĆ©demment configurĆ© sur la console de destination %s afin dā€™utiliser " +"lā€™authentification dĆ©lĆ©guĆ©e." + +#: ../../enterprise/meta/advanced/metasetup.consoles.php:533 +#: ../../enterprise/meta/advanced/metasetup.setup.php:267 +#: ../../enterprise/meta/include/functions_meta.php:218 +#: ../../enterprise/meta/include/functions_meta.php:228 +#: ../../enterprise/godmode/setup/setup_metaconsole.php:210 +#: ../../godmode/setup/setup_general.php:212 ../../include/functions_config.php:234 +msgid "API password" +msgstr "Mot de passe de l'API" + +#: ../../enterprise/meta/advanced/metasetup.consoles.php:544 +#: ../../enterprise/godmode/setup/setup_metaconsole.php:233 +msgid "Console User" +msgstr "Utilisateur de la console" + +#: ../../enterprise/meta/advanced/metasetup.consoles.php:553 +#: ../../enterprise/godmode/setup/setup_metaconsole.php:237 +msgid "Console Password" +msgstr "Mot de passe de la console" + +#: ../../enterprise/meta/advanced/metasetup.consoles.php:564 +#: ../../enterprise/meta/advanced/metasetup.consoles.php:838 +#: ../../enterprise/godmode/setup/setup_metaconsole.php:215 +#: ../../enterprise/godmode/setup/setup_metaconsole.php:275 +msgid "DB Host" +msgstr "HĆ“te de la BD" + +#: ../../enterprise/meta/advanced/metasetup.consoles.php:573 +#: ../../enterprise/godmode/setup/setup_metaconsole.php:219 +msgid "DB Name" +msgstr "Nom de la BD" + +#: ../../enterprise/meta/advanced/metasetup.consoles.php:582 +#: ../../enterprise/godmode/setup/setup_metaconsole.php:224 +msgid "DB User" +msgstr "Utilisateur de la BD" + +#: ../../enterprise/meta/advanced/metasetup.consoles.php:591 +#: ../../enterprise/godmode/setup/setup_metaconsole.php:228 +msgid "DB Password" +msgstr "Mot de passe de la BD" + +#: ../../enterprise/meta/advanced/metasetup.consoles.php:602 +#: ../../enterprise/include/class/DatabaseHA.class.php:959 +msgid "DB port" +msgstr "Port de la BD" + +#: ../../enterprise/meta/advanced/metasetup.consoles.php:613 +#: ../../enterprise/meta/advanced/metasetup.consoles.php:699 +#: ../../enterprise/meta/advanced/metasetup.consoles.php:704 +#: ../../enterprise/godmode/policies/policy_modules.php:412 +#: ../../enterprise/godmode/policies/policy_external_alerts.php:598 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:141 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:230 +#: ../../extensions/quick_shell.php:521 +#: ../../godmode/agentes/module_manager_editor.php:746 +#: ../../godmode/agentes/agent_manager.php:787 +#: ../../godmode/agentes/agent_manager.php:921 +#: ../../godmode/massive/massive_edit_agents.php:1027 +#: ../../godmode/massive/massive_add_action_alerts.php:250 +#: ../../include/functions_visual_map_editor.php:895 +#: ../../operation/agentes/status_monitor.php:848 +#: ../../operation/events/events.php:2068 +msgid "Advanced options" +msgstr "Options avancĆ©es" + +#: ../../enterprise/meta/advanced/metasetup.consoles.php:613 +msgid "Define database connection from Pandora FMS node to this Metaconsole" +msgstr "" +"DĆ©finir la connexion Ć  la base de donnĆ©es du nœud Pandora FMS Ć  cette MĆ©taconsole" + +#: ../../enterprise/meta/advanced/metasetup.consoles.php:635 +msgid "Metaconsole DB Host" +msgstr "HĆ“te de base de donnĆ©es de la MĆ©taconsole" + +#: ../../enterprise/meta/advanced/metasetup.consoles.php:644 +msgid "Metaconsole DB Name" +msgstr "Nom de la base de donnĆ©es de la MĆ©taconsole" + +#: ../../enterprise/meta/advanced/metasetup.consoles.php:653 +msgid "Metaconsole DB User" +msgstr "Utilisateur de la base de donnĆ©es de la MĆ©taconsole" + +#: ../../enterprise/meta/advanced/metasetup.consoles.php:662 +msgid "Metaconsole DB Password" +msgstr "Mot de passe de la base de donnĆ©es de la MĆ©taconsole" + +#: ../../enterprise/meta/advanced/metasetup.consoles.php:673 +#: ../../enterprise/godmode/setup/setup.php:179 +msgid "Metaconsole DB port" +msgstr "Port de la BD de la MĆ©taconsole" + +#: ../../enterprise/meta/advanced/metasetup.consoles.php:726 +msgid "Register empty node" +msgstr "Enregistrer un nœud vide" + +#: ../../enterprise/meta/advanced/metasetup.consoles.php:732 +msgid "Register node with data to merge" +msgstr "Enregistrer le nœud avec les donnĆ©es Ć  fusionner" + +#: ../../enterprise/meta/advanced/metasetup.consoles.php:769 +msgid "Node data will be wiped out" +msgstr "Les donnĆ©es du nœud seront effacĆ©es" + +#: ../../enterprise/meta/advanced/metasetup.consoles.php:770 +msgid "" +"Information contained in this node is not needed. Node information will be " +"erased, and replaced with new data from this metaconsole automatically after " +"register the node. Are you sure?" +msgstr "" +"Les informations contenues dans ce nœud ne sont pas nĆ©cessaires. Les informations " +"du nœud seront effacĆ©es et remplacĆ©es automatiquement par de nouvelles donnĆ©es de " +"cette MĆ©taconsole aprĆØs lā€™enregistrement du nœud. Ɗtes-vous sĆ»r ?" + +#: ../../enterprise/meta/advanced/metasetup.consoles.php:786 +msgid "Node data will be merged" +msgstr "Les donnĆ©es de nœud seront fusionnĆ©es" + +#: ../../enterprise/meta/advanced/metasetup.consoles.php:787 +msgid "" +"Information contained in this node is useful. After register the node, you must " +"launch a merge process from command center, which will combine information in " +"current environment with information contained in this new node. Are you sure?" +msgstr "" +"Les informations contenues dans ce nœud sont utiles. AprĆØs avoir enregistrĆ© le " +"nœud, vous devez lancer un processus de fusion Ć  partir du centre de commandes, " +"qui combinera les informations de lā€™environnement actuel avec les informations " +"contenues dans ce nouveau nœud. Ɗtes-vous sĆ»r ?" + +#: ../../enterprise/meta/advanced/metasetup.consoles.php:829 +#: ../../enterprise/godmode/setup/setup_metaconsole.php:270 +#: ../../enterprise/include/class/CommandCenter.class.php:317 +msgid "DB" +msgstr "BD" + +#: ../../enterprise/meta/advanced/metasetup.consoles.php:830 +#: ../../enterprise/godmode/setup/setup_metaconsole.php:271 +#: ../../enterprise/include/class/CommandCenter.class.php:318 +msgid "API" +msgstr "API" + +#: ../../enterprise/meta/advanced/metasetup.consoles.php:831 +#: ../../enterprise/godmode/setup/setup_metaconsole.php:272 +msgid "Compatibility" +msgstr "CompatibilitĆ©" + +#: ../../enterprise/meta/advanced/metasetup.consoles.php:832 +#: ../../enterprise/include/functions_setup.php:192 +msgid "Agent cache" +msgstr "Agent cache" + +#: ../../enterprise/meta/advanced/metasetup.consoles.php:833 +#: ../../enterprise/meta/advanced/policymanager.sync.php:328 +#: ../../enterprise/godmode/servers/HA_cluster.php:166 +#: ../../enterprise/include/functions_setup.php:201 +msgid "Sync" +msgstr "Synchronisation" + +#: ../../enterprise/meta/advanced/metasetup.consoles.php:834 +msgid "Database sync" +msgstr "Synchronisation de la base de donnĆ©es" + +#: ../../enterprise/meta/advanced/metasetup.consoles.php:839 +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:328 +#: ../../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:1357 +msgid "Manage" +msgstr "GĆ©rer" + +#: ../../enterprise/meta/advanced/metasetup.consoles.php:901 +msgid "New node" +msgstr "Nouveau nœud" + +#: ../../enterprise/meta/advanced/metasetup.consoles.php:933 +msgid "Synchronize all" +msgstr "Synchroniser tout" + +#: ../../enterprise/meta/advanced/links.php:47 ../../godmode/setup/links.php:42 +msgid "There was a problem creating link" +msgstr "Erreur de crĆ©ation du lien" + +#: ../../enterprise/meta/advanced/links.php:49 +#: ../../enterprise/meta/advanced/cron_main.php:158 +#: ../../enterprise/meta/advanced/cron_main.php:202 +#: ../../enterprise/meta/advanced/cron_main.php:295 +#: ../../enterprise/godmode/alerts/alert_inventory_builder.php:76 +#: ../../enterprise/godmode/setup/setup_metaconsole.php:125 +#: ../../enterprise/godmode/reporting/reporting_builder.template_editor.php:47 +#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:221 +#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:234 +#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:283 +#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:302 +#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:382 +#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:399 +#: ../../enterprise/godmode/servers/manage_export.php:112 +#: ../../enterprise/godmode/servers/manage_export.php:119 +#: ../../enterprise/godmode/servers/credential_boxes_satellite.php:80 +#: ../../enterprise/godmode/servers/credential_boxes_satellite.php:111 +#: ../../enterprise/include/ajax/servers.ajax.php:197 +#: ../../enterprise/include/ajax/servers.ajax.php:330 +#: ../../enterprise/include/class/NetworkConfigManager.class.php:1787 +#: ../../enterprise/include/class/NetworkConfigManager.class.php:1877 +#: ../../enterprise/include/class/NetworkConfigManager.class.php:1972 +#: ../../enterprise/include/class/NetworkConfigManager.class.php:2066 +#: ../../enterprise/operation/agentes/transactional_map.php:134 +#: ../../enterprise/tools/ipam/ipam_action.php:214 +#: ../../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:472 +#: ../../godmode/agentes/configurar_agente.php:881 +#: ../../godmode/agentes/planned_downtime.editor.php:416 +#: ../../godmode/snmpconsole/snmp_alert.php:302 +#: ../../godmode/snmpconsole/snmp_filters.php:164 +#: ../../godmode/alerts/alert_commands.php:572 +#: ../../godmode/alerts/configure_alert_template.php:536 +#: ../../godmode/alerts/alert_list.php:178 ../../godmode/setup/news.php:66 +#: ../../godmode/setup/gis.php:47 ../../godmode/setup/links.php:44 +#: ../../include/functions_alerts.php:2747 +#: ../../include/class/CalendarManager.class.php:537 +#: ../../include/class/CalendarManager.class.php:894 +#: ../../include/functions_planned_downtimes.php:114 +#: ../../include/functions_planned_downtimes.php:832 +msgid "Successfully created" +msgstr "CrĆ©Ć© correctement" + +#: ../../enterprise/meta/advanced/links.php:60 +msgid "The link was not updated, the data is identical" +msgstr "Le lien nā€™a pas Ć©tĆ© mis Ć  jour, les donnĆ©es sont identiques" + +#: ../../enterprise/meta/advanced/links.php:68 ../../godmode/setup/links.php:61 +msgid "There was a problem modifying link" +msgstr "ProblĆØme de modification du lien" + +#: ../../enterprise/meta/advanced/links.php:70 +#: ../../enterprise/godmode/agentes/agent_disk_conf_editor.php:111 +#: ../../enterprise/godmode/policies/policy_modules.php:1249 +#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:122 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:398 +#: ../../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:329 +#: ../../enterprise/include/class/NetworkConfigManager.class.php:1784 +#: ../../enterprise/include/class/NetworkConfigManager.class.php:1874 +#: ../../enterprise/include/class/NetworkConfigManager.class.php:1969 +#: ../../enterprise/include/class/NetworkConfigManager.class.php:2063 +#: ../../enterprise/include/class/NetworkConfigManager.class.php:2688 +#: ../../enterprise/operation/agentes/transactional_map.php:166 +#: ../../enterprise/tools/ipam/ipam_action.php:255 +#: ../../enterprise/tools/ipam/ipam_network_location_config.php:71 +#: ../../enterprise/tools/ipam/ipam_massive.php:47 +#: ../../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:1173 +#: ../../godmode/agentes/planned_downtime.editor.php:418 +#: ../../godmode/netflow/nf_edit_form.php:139 +#: ../../godmode/snmpconsole/snmp_alert.php:444 +#: ../../godmode/snmpconsole/snmp_filters.php:110 +#: ../../godmode/massive/massive_edit_modules.php:184 +#: ../../godmode/alerts/configure_alert_command.php:144 +#: ../../godmode/alerts/alert_templates.php:156 +#: ../../godmode/alerts/configure_alert_template.php:554 +#: ../../godmode/alerts/alert_list.php:94 ../../godmode/alerts/alert_list.php:312 +#: ../../godmode/setup/news.php:107 ../../godmode/setup/gis.php:39 +#: ../../godmode/setup/links.php:63 ../../godmode/events/event_edit_filter.php:220 +#: ../../include/functions_alerts.php:2747 +#: ../../include/class/CalendarManager.class.php:534 +#: ../../include/class/CalendarManager.class.php:891 +#: ../../include/functions_planned_downtimes.php:124 +#: ../../operation/snmpconsole/snmp_view.php:174 +msgid "Successfully updated" +msgstr "Mis Ć  jour correctement" + +#: ../../enterprise/meta/advanced/links.php:82 ../../godmode/setup/links.php:74 +msgid "There was a problem deleting link" +msgstr "ProblĆØme de suppression du lien" + +#: ../../enterprise/meta/advanced/links.php:100 +msgid "Link Name error" +msgstr "Erreur de nom de lien" + +#: ../../enterprise/meta/advanced/links.php:127 +#: ../../enterprise/meta/advanced/links.php:156 ../../godmode/setup/links.php:116 +#: ../../godmode/setup/links.php:145 +msgid "Link name" +msgstr "Nom du lien" + +#: ../../enterprise/meta/advanced/links.php:130 +#: ../../enterprise/godmode/policies/policy_linking.php:204 +#: ../../godmode/setup/links.php:119 +msgid "Link" +msgstr "Lien" + +#: ../../enterprise/meta/advanced/links.php:152 ../../godmode/setup/links.php:141 +msgid "There isn't links" +msgstr "Il n'y a pas de liens" + +#: ../../enterprise/meta/advanced/policymanager.php:58 +msgid "Policy Manager" +msgstr "Gestionnaire de politiques" + +#: ../../enterprise/meta/advanced/policymanager.php:75 +msgid "Apply policies" +msgstr "Appliquer les politiques" + +#: ../../enterprise/meta/advanced/policymanager.php:79 +#: ../../enterprise/meta/advanced/policymanager.php:97 +msgid "Policies queue" +msgstr "File d'attente des politiques" + +#: ../../enterprise/meta/advanced/policymanager.php:93 +msgid "Policies apply" +msgstr "Appliquer les politiques" + +#: ../../enterprise/meta/advanced/collections.data.php:33 +#: ../../enterprise/meta/advanced/collections.editor.php:60 +#: ../../enterprise/meta/include/functions_agents_meta.php:533 +#: ../../enterprise/godmode/agentes/collections.agents.php:44 +#: ../../enterprise/godmode/agentes/collections.data.php:54 +#: ../../enterprise/godmode/agentes/collections.editor.php:71 +#: ../../enterprise/godmode/policies/policies.php:505 +#: ../../enterprise/godmode/policies/policy_collections.php:31 +#: ../../enterprise/godmode/menu.php:70 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2106 +#: ../../enterprise/include/functions_policies.php:3798 +#: ../../general/first_task/collections.php:22 +msgid "Collections" +msgstr "Collections" + +#: ../../enterprise/meta/advanced/collections.data.php:46 +#: ../../enterprise/meta/advanced/collections.data.php:86 +#: ../../enterprise/meta/advanced/collections.data.php:104 +#: ../../enterprise/meta/advanced/collections.data.php:124 +#: ../../enterprise/meta/advanced/collections.data.php:149 +#: ../../enterprise/meta/advanced/collections.data.php:172 +#: ../../enterprise/meta/advanced/collections.data.php:197 +#: ../../enterprise/meta/advanced/collections.data.php:238 +#: ../../enterprise/meta/advanced/collections.data.php:263 +#: ../../enterprise/meta/advanced/collections.editor.php:54 +#: ../../enterprise/meta/include/functions_events_meta.php:134 +#: ../../enterprise/godmode/agentes/collections.agents.php:47 +#: ../../enterprise/godmode/agentes/collections.agents.php:56 +#: ../../enterprise/godmode/agentes/collections.data.php:74 +#: ../../enterprise/godmode/agentes/collections.data.php:117 +#: ../../enterprise/godmode/agentes/collections.data.php:184 +#: ../../enterprise/godmode/agentes/collections.data.php:204 +#: ../../enterprise/godmode/agentes/collections.data.php:224 +#: ../../enterprise/godmode/agentes/collections.data.php:251 +#: ../../enterprise/godmode/agentes/collections.data.php:279 +#: ../../enterprise/godmode/agentes/collections.data.php:309 +#: ../../enterprise/godmode/agentes/collections.data.php:332 +#: ../../enterprise/godmode/agentes/collections.editor.php:56 +#: ../../enterprise/include/functions_reporting_pdf.php:702 +#: ../../enterprise/include/functions_reporting_csv.php:802 +#: ../../enterprise/include/functions_reporting_csv.php:832 +#: ../../enterprise/include/functions_reporting_csv.php:879 +#: ../../enterprise/include/functions_reporting_csv.php:915 +#: ../../enterprise/include/functions_reporting_csv.php:954 +#: ../../enterprise/include/functions_reporting_csv.php:1014 +#: ../../enterprise/include/functions_reporting_csv.php:1458 +#: ../../enterprise/include/functions_reporting_csv.php:2281 +#: ../../enterprise/include/functions_reporting_csv.php:2317 +#: ../../enterprise/include/functions_reporting_csv.php:2423 +#: ../../enterprise/include/functions_reporting_csv.php:2518 +#: ../../enterprise/include/functions_reporting_csv.php:2740 +#: ../../enterprise/include/functions_reporting.php:2185 +#: ../../enterprise/include/functions_reporting.php:2218 +#: ../../enterprise/include/functions_reporting.php:2222 +#: ../../enterprise/include/functions_services.php:1612 +#: ../../enterprise/operation/agentes/policy_view.php:398 +#: ../../enterprise/operation/agentes/tag_view.php:684 +#: ../../extensions/insert_data.php:194 ../../extensions/insert_data.php:195 +#: ../../godmode/agentes/status_monitor_custom_fields.php:113 +#: ../../godmode/agentes/status_monitor_custom_fields.php:152 +#: ../../godmode/events/custom_events.php:115 ../../mobile/operation/modules.php:715 +#: ../../mobile/operation/modules.php:718 ../../mobile/operation/modules.php:719 +#: ../../mobile/operation/modules.php:720 ../../mobile/operation/modules.php:721 +#: ../../mobile/operation/modules.php:722 ../../mobile/operation/modules.php:723 +#: ../../mobile/operation/modules.php:724 ../../mobile/operation/modules.php:725 +#: ../../mobile/operation/modules.php:727 ../../mobile/operation/modules.php:730 +#: ../../mobile/operation/modules.php:731 ../../mobile/operation/modules.php:732 +#: ../../mobile/operation/modules.php:733 ../../mobile/operation/modules.php:734 +#: ../../mobile/operation/modules.php:735 ../../mobile/operation/modules.php:736 +#: ../../mobile/operation/modules.php:737 ../../mobile/operation/modules.php:853 +#: ../../include/functions_reporting_html.php:2144 +#: ../../include/functions_reporting_html.php:2629 +#: ../../include/functions_reporting_html.php:2633 +#: ../../include/functions_reporting_html.php:2634 +#: ../../include/functions_reporting_html.php:2638 +#: ../../include/functions_reporting_html.php:2643 +#: ../../include/functions_reporting_html.php:2648 +#: ../../include/functions_reporting_html.php:2652 +#: ../../include/functions_reporting_html.php:2657 +#: ../../include/functions_reporting_html.php:2664 +#: ../../include/functions_reporting_html.php:2713 +#: ../../include/functions_reporting_html.php:2786 ../../include/ajax/module.php:982 +#: ../../include/ajax/custom_fields.php:412 ../../include/functions_graph.php:3709 +#: ../../include/functions_netflow.php:301 +#: ../../include/functions_reporting.php:4194 +#: ../../include/functions_reporting.php:4235 +#: ../../include/functions_reporting.php:4986 ../../include/functions_events.php:218 +#: ../../include/functions_events.php:301 +#: ../../operation/agentes/exportdata.csv.php:74 +#: ../../operation/agentes/exportdata.php:83 +#: ../../operation/agentes/status_monitor.php:1356 +#: ../../operation/agentes/exportdata.excel.php:74 +#: ../../operation/search_modules.php:38 +msgid "Data" +msgstr "DonnĆ©es" + +#: ../../enterprise/meta/advanced/collections.data.php:76 +#: ../../enterprise/godmode/agentes/collections.data.php:174 +msgid "" +"Unable to create the collection. Another collection with the same short name." +msgstr "" +"Impossible de crĆ©er la collection. Une autre collection avec le mĆŖme nom abrĆ©gĆ© " +"existe dĆ©jĆ ." + +#: ../../enterprise/meta/advanced/collections.data.php:97 +#: ../../enterprise/meta/advanced/collections.data.php:117 +#: ../../enterprise/godmode/agentes/collections.data.php:197 +#: ../../enterprise/godmode/agentes/collections.data.php:217 +msgid "Unable to create the collection" +msgstr "Impossible de crĆ©er la collection" + +#: ../../enterprise/meta/advanced/collections.data.php:97 +#: ../../enterprise/godmode/agentes/collections.data.php:197 +msgid "Invalid characters in short name" +msgstr "CaractĆØres non valides dans le nom abrĆ©gĆ©" + +#: ../../enterprise/meta/advanced/collections.data.php:111 +#: ../../enterprise/godmode/agentes/collections.data.php:59 +#: ../../enterprise/godmode/agentes/collections.data.php:167 +#: ../../enterprise/godmode/agentes/collections.data.php:191 +#: ../../enterprise/godmode/agentes/collections.data.php:211 +#: ../../enterprise/godmode/agentes/collections.data.php:238 +#: ../../enterprise/godmode/agentes/collections.data.php:294 +msgid "Manager configuration > New" +msgstr "GĆ©rer la configuration > Nouveau" + +#: ../../enterprise/meta/advanced/collections.data.php:117 +#: ../../enterprise/godmode/agentes/collections.data.php:217 +#: ../../enterprise/include/functions_local_components.php:174 +msgid "Empty name" +msgstr "Nom vide" + +#: ../../enterprise/meta/advanced/collections.data.php:142 +#: ../../enterprise/meta/advanced/collections.data.php:190 +#: ../../enterprise/godmode/agentes/collections.data.php:244 +#: ../../enterprise/godmode/agentes/collections.data.php:302 +msgid "Unable to create the collection." +msgstr "Impossible de crĆ©er la collection" + +#: ../../enterprise/meta/advanced/collections.data.php:163 +#: ../../enterprise/meta/advanced/collections.data.php:309 +#: ../../enterprise/godmode/agentes/collections.data.php:270 +msgid "Correct create collection" +msgstr "Collection crĆ©Ć©e correctement" + +#: ../../enterprise/meta/advanced/collections.data.php:174 +#: ../../enterprise/meta/advanced/collections.data.php:241 +#: ../../enterprise/meta/advanced/collections.data.php:265 +#: ../../enterprise/meta/advanced/collections.editor.php:57 +#: ../../enterprise/meta/advanced/collections.editor.php:385 +#: ../../enterprise/meta/advanced/collections.editor.php:402 +#: ../../enterprise/godmode/agentes/collections.agents.php:50 +#: ../../enterprise/godmode/agentes/collections.data.php:127 +#: ../../enterprise/godmode/agentes/collections.data.php:281 +#: ../../enterprise/godmode/agentes/collections.data.php:334 +#: ../../enterprise/godmode/agentes/collections.editor.php:65 +#: ../../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:1665 +msgid "Files" +msgstr "Fichiers" + +#: ../../enterprise/meta/advanced/collections.data.php:231 +#: ../../enterprise/godmode/agentes/collections.data.php:106 +#: ../../enterprise/godmode/agentes/collections.data.php:262 +#: ../../enterprise/godmode/agentes/collections.data.php:351 +#: ../../enterprise/godmode/agentes/collections.data.php:367 +#: ../../enterprise/godmode/agentes/collections.data.php:375 +#: ../../enterprise/godmode/agentes/collections.editor.php:84 +msgid "Manager configuration > Edit " +msgstr "GĆ©rer la configuration > Ɖditer " + +#: ../../enterprise/meta/advanced/collections.data.php:287 +#: ../../enterprise/godmode/agentes/collections.data.php:358 +msgid "Unable to edit the collection, empty name." +msgstr "Impossible d'Ć©diter la collection : nom vide" + +#: ../../enterprise/meta/advanced/collections.data.php:300 +#: ../../enterprise/godmode/agentes/collections.data.php:373 +msgid "Unable to edit the collection." +msgstr "Impossible d'Ć©diter la collection" + +#: ../../enterprise/meta/advanced/collections.data.php:320 +#: ../../enterprise/meta/advanced/collections.editor.php:79 +msgid "This console is not manager of this environment." +msgstr "Cette console nā€™est pas gestionnaire de cet environnement." + +#: ../../enterprise/meta/advanced/collections.data.php:332 +#: ../../enterprise/meta/include/functions_autoprovision.php:566 +#: ../../enterprise/godmode/agentes/collections.data.php:425 +#: ../../godmode/setup/os.builder.php:35 +#: ../../godmode/reporting/visual_console_builder.data.php:106 +msgid "Name:" +msgstr "NomĀ :" + +#: ../../enterprise/meta/advanced/collections.data.php:345 +#: ../../enterprise/godmode/agentes/collections.data.php:438 +msgid "Recreate file" +msgstr "CrĆ©er le fichier Ć  nouveau" + +#: ../../enterprise/meta/advanced/collections.data.php:373 +#: ../../enterprise/meta/advanced/collections.data.php:374 +#: ../../enterprise/godmode/agentes/collection_manager.php:166 +#: ../../enterprise/godmode/agentes/collection_manager.php:167 +#: ../../enterprise/godmode/agentes/collection_manager.php:281 +#: ../../enterprise/godmode/agentes/collection_manager.php:282 +#: ../../enterprise/godmode/agentes/collections.data.php:467 +#: ../../enterprise/godmode/agentes/collections.data.php:468 +msgid "Need to regenerate" +msgstr "Il a besoin de se rĆ©gĆ©nĆ©rer." + +#: ../../enterprise/meta/advanced/collections.data.php:383 +#: ../../enterprise/meta/advanced/collections.data.php:384 +#: ../../enterprise/godmode/agentes/collection_manager.php:175 +#: ../../enterprise/godmode/agentes/collection_manager.php:176 +#: ../../enterprise/godmode/agentes/collection_manager.php:290 +#: ../../enterprise/godmode/agentes/collection_manager.php:291 +#: ../../enterprise/godmode/agentes/collections.data.php:477 +#: ../../enterprise/godmode/agentes/collections.data.php:478 +#: ../../enterprise/operation/agentes/collection_view.php:139 +#: ../../enterprise/operation/agentes/collection_view.php:140 +msgid "The collection directory does not exist." +msgstr "Le rĆ©pertoire de la collection n'existe pas." + +#: ../../enterprise/meta/advanced/collections.data.php:397 +#: ../../enterprise/godmode/agentes/collections.data.php:492 +msgid "Group:" +msgstr "GroupeĀ :" + +#: ../../enterprise/meta/advanced/collections.data.php:420 +#: ../../enterprise/godmode/agentes/collections.data.php:514 +msgid "Short name:" +msgstr "Nom abrĆ©gĆ© :" + +#: ../../enterprise/meta/advanced/collections.data.php:426 +#: ../../enterprise/godmode/agentes/collections.data.php:519 +msgid "" +"The collection's short name is the name of dir in attachment dir and the package " +"collection." +msgstr "" +"Le nom court de la collection est le nom du rĆ©pertoire dans le rĆ©pertoire de " +"piĆØces jointes et la collection de progiciels." + +#: ../../enterprise/meta/advanced/collections.data.php:426 +#: ../../enterprise/godmode/agentes/collections.data.php:519 +msgid "Short name must contain only alphanumeric characters, - or _ ." +msgstr "Le nom abrĆ©gĆ© doit contenir que des caractĆØres alphanumĆ©riques, - ou _." + +#: ../../enterprise/meta/advanced/collections.data.php:426 +#: ../../enterprise/godmode/agentes/collections.data.php:519 +msgid "Empty for default short name fc_X where X is the collection id." +msgstr "" +"Vide pour le nom abrĆ©gĆ© fc_X par dĆ©faut oĆ¹ X est l'identifiant de collection" + +#: ../../enterprise/meta/advanced/collections.data.php:432 +#: ../../enterprise/meta/include/functions_autoprovision.php:569 +#: ../../enterprise/godmode/agentes/collections.data.php:523 +#: ../../operation/snmpconsole/snmp_view.php:1107 +msgid "Description:" +msgstr "Description :" + +#: ../../enterprise/meta/advanced/agents_setup.autoprovision.php:72 +#, php-format +msgid "Provisioning custom data %s successfully deleted." +msgstr "" +"Mise en service des donnĆ©es personnalisĆ©es %s supprimĆ©es correctement." + +#: ../../enterprise/meta/advanced/agents_setup.autoprovision.php:79 +#, php-format +msgid "Cannot delete custom data %s." +msgstr "Impossible de supprimer les donnĆ©es personnalisĆ©es %s ." + +#: ../../enterprise/meta/advanced/agents_setup.autoprovision.php:92 +msgid "There was an error when moving the custom provisioning data." +msgstr "Erreur lors du dĆ©placement des donnĆ©es dā€™approvisionnement personnalisĆ©es." + +#: ../../enterprise/meta/advanced/collections.editor.php:125 +#: ../../enterprise/meta/advanced/collections.editor.php:193 +#: ../../enterprise/godmode/agentes/collections.editor.php:158 +#: ../../enterprise/godmode/agentes/collections.editor.php:224 +#: ../../godmode/servers/plugin.php:173 ../../include/functions_filemanager.php:737 +msgid "Edit file" +msgstr "Modifier le fichier" + +#: ../../enterprise/meta/advanced/collections.editor.php:128 +#: ../../enterprise/meta/advanced/collections.editor.php:195 +#: ../../enterprise/godmode/agentes/collections.editor.php:161 +#: ../../enterprise/godmode/agentes/collections.editor.php:226 +msgid "Back to file explorer" +msgstr "Retour Ć  l'Explorateur de fichiers" + +#: ../../enterprise/meta/advanced/collections.editor.php:167 +#: ../../enterprise/godmode/agentes/collections.editor.php:198 +#: ../../include/functions_filemanager.php:296 +msgid "Security error." +msgstr "Erreur de sĆ©curitĆ©" + +#: ../../enterprise/meta/advanced/collections.editor.php:217 +#: ../../enterprise/godmode/agentes/collections.editor.php:248 +#: ../../godmode/servers/plugin.php:192 +msgid "Compatibility mode" +msgstr "Mode de compatibilitĆ©" + +#: ../../enterprise/meta/advanced/collections.editor.php:269 +#: ../../enterprise/godmode/agentes/collections.editor.php:299 +msgid "Correct update file." +msgstr "Fichier mis Ć  jour correctement" + +#: ../../enterprise/meta/advanced/collections.editor.php:270 +#: ../../enterprise/godmode/agentes/collections.editor.php:300 +msgid "Incorrect update file." +msgstr "Erreur de mise Ć  jour du fichier" + +#: ../../enterprise/meta/advanced/collections.editor.php:403 +#: ../../enterprise/godmode/agentes/collections.editor.php:447 +msgid "Please, first save a new collection before to upload files." +msgstr "" +"Veuillez sauvegarder d'abord la nouvelle collection, et ensuite tĆ©lĆ©verser les " +"fichiers." + +#: ../../enterprise/meta/advanced/cron_main.php:75 +#: ../../enterprise/extensions/cron.php:156 +msgid "Cron jobs" +msgstr "TĆ¢ches planifiĆ©es" + +#: ../../enterprise/meta/advanced/cron_main.php:87 +#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:551 +msgid "Add new job" +msgstr "Ajouter une nouvelle tĆ¢che" + +#: ../../enterprise/meta/advanced/cron_main.php:159 +#: ../../enterprise/meta/advanced/cron_main.php:203 +#: ../../enterprise/meta/advanced/cron_main.php:296 +#: ../../enterprise/meta/include/functions_meta.php:122 +#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:213 +#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:276 +#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:371 +#: ../../include/functions_config.php:219 +msgid "Path doesn't exists or is not writable" +msgstr "Le chemin n'existe pas ou n'est pas accessible en Ć©criture" + +#: ../../enterprise/meta/advanced/cron_main.php:173 +#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:244 +msgid "Only administrator users can create this type of functions" +msgstr "Seuls les utilisateurs administrateurs peuvent crĆ©er ce type de fonctions" + +#: ../../enterprise/meta/advanced/cron_main.php:244 +#: ../../enterprise/meta/advanced/cron_main.php:278 +#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:356 +msgid "Edit job" +msgstr "Modifier la tĆ¢che" + +#: ../../enterprise/meta/advanced/cron_main.php:333 +msgid "In order to make backups it is necessary to have mysqldump on your console." +msgstr "" +"Afin de faire des sauvegardes, il est nĆ©cessaire dā€™avoir mysqldump sur votre " +"console." + +#: ../../enterprise/meta/advanced/cron_main.php:354 +#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:630 +#: ../../enterprise/include/functions_tasklist.php:153 +#: ../../include/functions_cron.php:464 +msgid "Task" +msgstr "TĆ¢che" + +#: ../../enterprise/meta/advanced/cron_main.php:385 +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:381 +#: ../../enterprise/godmode/setup/setup_history.php:680 +#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:640 +#: ../../enterprise/include/functions_tasklist.php:154 +#: ../../include/functions_cron.php:465 +msgid "Scheduled" +msgstr "PlanifiĆ©" + +#: ../../enterprise/meta/advanced/cron_main.php:398 +#: ../../enterprise/include/functions_tasklist.php:155 +#: ../../include/functions_cron.php:466 +msgid "Next execution" +msgstr "ExĆ©cution suivante" + +#: ../../enterprise/meta/advanced/cron_main.php:407 +msgid "Date format in Pandora is year/month/day" +msgstr "Le format de date sur Pandora FMS est annĆ©e/mois/jour" + +#: ../../enterprise/meta/advanced/cron_main.php:418 +msgid "Time format in Pandora is hours(24h):minutes:seconds" +msgstr "Le format de l'heure sur Pandora FMS est heure(24h):minutes:secondes" + +#: ../../enterprise/meta/advanced/cron_main.php:444 +#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:566 +#: ../../godmode/events/event_responses.editor.php:146 +#: ../../include/ajax/events.php:2111 +#: ../../include/class/ExternalTools.class.php:354 +#: ../../include/lib/Dashboard/Widgets/events_list.php:628 +#: ../../include/functions_events.php:3447 ../../operation/events/events.php:2394 +msgid "Parameters" +msgstr "ParamĆØtres" + +#: ../../enterprise/meta/advanced/cron_main.php:530 +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:868 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:1169 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3973 +#: ../../enterprise/godmode/wizards/consoletask_js.php:41 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:4339 +#: ../../enterprise/operation/log/log_viewer.php:981 +#: ../../enterprise/operation/log/log_viewer.php:993 +#: ../../enterprise/operation/services/services.treeview_services.php:384 +#: ../../extensions/insert_data.php:224 +#: ../../godmode/agentes/planned_downtime.editor.php:1494 +#: ../../godmode/alerts/configure_alert_template.php:1456 +#: ../../godmode/alerts/configure_alert_template.php:1540 +#: ../../godmode/setup/news.php:322 +#: ../../godmode/reporting/reporting_builder.item_editor.php:4965 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:683 +#: ../../operation/tree.php:573 ../../operation/agentes/stat_win.php:604 +#: ../../operation/agentes/interface_traffic_graph_win.php:434 +#: ../../operation/agentes/datos_agente.php:312 +#: ../../operation/agentes/estado_monitores.php:455 +#: ../../operation/network/network_report.php:336 +#: ../../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/events/events.php:2972 +msgid "Choose time" +msgstr "DĆ©finir temps" + +#: ../../enterprise/meta/advanced/cron_main.php:531 +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:869 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:1170 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3974 +#: ../../enterprise/godmode/wizards/consoletask_js.php:42 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:4030 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:4340 +#: ../../enterprise/include/lib/Metaconsole/Node.php:539 +#: ../../enterprise/operation/log/log_viewer.php:982 +#: ../../enterprise/operation/log/log_viewer.php:994 +#: ../../enterprise/operation/services/services.treeview_services.php:385 +#: ../../extensions/insert_data.php:225 +#: ../../godmode/agentes/planned_downtime.editor.php:1495 +#: ../../godmode/alerts/configure_alert_template.php:1457 +#: ../../godmode/alerts/configure_alert_template.php:1541 +#: ../../godmode/setup/news.php:323 +#: ../../godmode/reporting/reporting_builder.item_editor.php:4966 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:684 +#: ../../operation/tree.php:574 ../../operation/agentes/stat_win.php:605 +#: ../../operation/agentes/interface_traffic_graph_win.php:435 +#: ../../operation/agentes/datos_agente.php:313 +#: ../../operation/agentes/estado_monitores.php:456 +#: ../../operation/network/network_report.php:337 +#: ../../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/events/events.php:2973 +msgid "Time" +msgstr "Temps" + +#: ../../enterprise/meta/advanced/cron_main.php:532 +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:870 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:1171 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3975 +#: ../../enterprise/godmode/wizards/consoletask_js.php:43 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:4031 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:4341 +#: ../../enterprise/operation/log/log_viewer.php:983 +#: ../../enterprise/operation/log/log_viewer.php:995 +#: ../../enterprise/operation/services/services.treeview_services.php:386 +#: ../../extensions/insert_data.php:226 +#: ../../godmode/agentes/planned_downtime.editor.php:1496 +#: ../../godmode/alerts/configure_alert_template.php:1458 +#: ../../godmode/alerts/configure_alert_template.php:1542 +#: ../../godmode/setup/news.php:324 +#: ../../godmode/reporting/reporting_builder.item_editor.php:4967 +#: ../../include/functions_html.php:2283 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:685 +#: ../../operation/tree.php:575 ../../operation/agentes/stat_win.php:606 +#: ../../operation/agentes/interface_traffic_graph_win.php:436 +#: ../../operation/agentes/datos_agente.php:314 +#: ../../operation/agentes/estado_monitores.php:457 +#: ../../operation/network/network_report.php:338 +#: ../../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/events/events.php:2974 +msgid "Hour" +msgstr "Heure" + +#: ../../enterprise/meta/advanced/cron_main.php:533 +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:871 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:1172 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3976 +#: ../../enterprise/godmode/wizards/consoletask_js.php:44 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:4032 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:4342 +#: ../../enterprise/operation/log/log_viewer.php:984 +#: ../../enterprise/operation/log/log_viewer.php:996 +#: ../../enterprise/operation/services/services.treeview_services.php:387 +#: ../../extensions/insert_data.php:227 +#: ../../godmode/agentes/planned_downtime.editor.php:1497 +#: ../../godmode/alerts/configure_alert_template.php:1459 +#: ../../godmode/alerts/configure_alert_template.php:1543 +#: ../../godmode/setup/news.php:325 +#: ../../godmode/reporting/reporting_builder.item_editor.php:4968 +#: ../../include/functions_html.php:2284 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:686 +#: ../../operation/tree.php:576 ../../operation/agentes/stat_win.php:607 +#: ../../operation/agentes/interface_traffic_graph_win.php:437 +#: ../../operation/agentes/datos_agente.php:315 +#: ../../operation/agentes/estado_monitores.php:458 +#: ../../operation/network/network_report.php:339 +#: ../../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/events/events.php:2975 +msgid "Minute" +msgstr "Minute" + +#: ../../enterprise/meta/advanced/cron_main.php:534 +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:872 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:1173 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3977 +#: ../../enterprise/godmode/wizards/consoletask_js.php:45 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:4033 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:4343 +#: ../../enterprise/operation/log/log_viewer.php:985 +#: ../../enterprise/operation/log/log_viewer.php:997 +#: ../../enterprise/operation/services/services.treeview_services.php:388 +#: ../../extensions/insert_data.php:228 +#: ../../godmode/agentes/planned_downtime.editor.php:1498 +#: ../../godmode/alerts/configure_alert_template.php:1460 +#: ../../godmode/alerts/configure_alert_template.php:1544 +#: ../../godmode/setup/news.php:326 +#: ../../godmode/reporting/reporting_builder.item_editor.php:4969 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:687 +#: ../../operation/tree.php:577 ../../operation/agentes/stat_win.php:608 +#: ../../operation/agentes/interface_traffic_graph_win.php:438 +#: ../../operation/agentes/datos_agente.php:316 +#: ../../operation/agentes/estado_monitores.php:459 +#: ../../operation/network/network_report.php:340 +#: ../../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/events/events.php:2976 +msgid "Second" +msgstr "Seconde" + +#: ../../enterprise/meta/advanced/cron_main.php:535 +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:873 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:1174 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3978 +#: ../../enterprise/godmode/wizards/consoletask_js.php:46 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:4034 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:4344 +#: ../../enterprise/operation/agentes/agent_inventory.php:133 +#: ../../enterprise/operation/log/log_viewer.php:986 +#: ../../enterprise/operation/log/log_viewer.php:998 +#: ../../enterprise/operation/services/services.treeview_services.php:389 +#: ../../extensions/insert_data.php:229 +#: ../../godmode/agentes/planned_downtime.editor.php:1499 +#: ../../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:4970 +#: ../../include/functions.php:505 ../../include/functions.php:636 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:688 +#: ../../operation/tree.php:578 ../../operation/agentes/stat_win.php:609 +#: ../../operation/agentes/interface_traffic_graph_win.php:439 +#: ../../operation/agentes/datos_agente.php:317 +#: ../../operation/agentes/estado_monitores.php:460 +#: ../../operation/network/network_report.php:341 +#: ../../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/events/events.php:2977 +msgid "Now" +msgstr "Maintenant" + +#: ../../enterprise/meta/advanced/cron_main.php:536 +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:874 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:1175 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3979 +#: ../../enterprise/godmode/wizards/consoletask_js.php:47 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:4035 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:4345 +#: ../../enterprise/operation/log/log_viewer.php:987 +#: ../../enterprise/operation/log/log_viewer.php:999 +#: ../../enterprise/operation/services/services.treeview_services.php:390 +#: ../../extensions/insert_data.php:230 +#: ../../godmode/agentes/planned_downtime.editor.php:1500 +#: ../../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:4971 +#: ../../godmode/wizards/HostDevices.class.php:796 +#: ../../mobile/include/ui.class.php:691 ../../mobile/include/ui.class.php:749 +#: ../../include/class/WelcomeWindow.class.php:159 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:689 +#: ../../include/functions_snmp_browser.php:600 ../../operation/tree.php:579 +#: ../../operation/agentes/stat_win.php:610 +#: ../../operation/agentes/interface_traffic_graph_win.php:440 +#: ../../operation/agentes/datos_agente.php:318 +#: ../../operation/agentes/estado_monitores.php:461 +#: ../../operation/network/network_report.php:342 +#: ../../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/events/events.php:2978 +msgid "Close" +msgstr "Fermer" + +#: ../../enterprise/meta/advanced/metasetup.setup.php:108 +#: ../../enterprise/godmode/modules/configure_local_component.php:164 +#: ../../godmode/modules/manage_network_components_form_common.php:52 +#: ../../godmode/users/configure_user.php:1191 +#: ../../godmode/alerts/alert_commands.php:141 +#: ../../godmode/alerts/alert_commands.php:182 +#: ../../godmode/alerts/configure_alert_template.php:933 +#: ../../godmode/alerts/configure_alert_template.php:974 +#: ../../godmode/alerts/configure_alert_template.php:1137 +msgid "Basic" +msgstr "ƉlĆ©mentaire" + +#: ../../enterprise/meta/advanced/metasetup.setup.php:113 +#: ../../enterprise/meta/include/functions_meta.php:77 +#: ../../include/functions_config.php:178 +msgid "Language settings" +msgstr "Configuration de Langage" + +#: ../../enterprise/meta/advanced/metasetup.setup.php:126 +#: ../../enterprise/meta/include/functions_meta.php:82 +#: ../../godmode/setup/setup_general.php:110 ../../include/functions_config.php:190 +msgid "Auto login (hash) password" +msgstr "Mot de passe de connexion automatique (hash)" + +#: ../../enterprise/meta/advanced/metasetup.setup.php:142 +#: ../../enterprise/meta/include/functions_meta.php:92 +#: ../../godmode/setup/setup_general.php:124 ../../include/functions_config.php:194 +msgid "Time source" +msgstr "Temps de rĆ©fĆ©rence" + +#: ../../enterprise/meta/advanced/metasetup.setup.php:144 +#: ../../godmode/setup/setup_general.php:125 ../../mobile/operation/events.php:248 +#: ../../include/functions_reporting_html.php:1147 +#: ../../include/functions_reporting_html.php:2495 ../../include/functions.php:1235 +#: ../../include/functions_graph.php:2869 ../../include/functions_graph.php:3570 +#: ../../include/functions_graph.php:3572 +#: ../../include/lib/Dashboard/Widgets/top_n_events_by_module.php:433 +#: ../../include/lib/Dashboard/Widgets/top_n_events_by_group.php:429 +#: ../../include/functions_events.php:2444 ../../include/functions_events.php:2877 +#: ../../operation/events/events.php:743 +msgid "System" +msgstr "SystĆØme" + +#: ../../enterprise/meta/advanced/metasetup.setup.php:145 +#: ../../godmode/setup/setup_general.php:126 +msgid "Database" +msgstr "Base de donnĆ©es" + +#: ../../enterprise/meta/advanced/metasetup.setup.php:148 +#: ../../enterprise/meta/include/functions_meta.php:102 +#: ../../godmode/setup/setup_general.php:149 ../../include/functions_config.php:206 +msgid "Enforce https" +msgstr "ExĆ©cuter https" + +#: ../../enterprise/meta/advanced/metasetup.setup.php:149 +#, php-format +msgid "" +"If SSL is not properly configured, you will lose access to the %s Console. Do you " +"want to continue?" +msgstr "" +"Si SSL nā€™est pas correctement configurĆ©, vous perdrez lā€™accĆØs Ć  la console %s. " +"Voulez-vous continuer ?" + +#: ../../enterprise/meta/advanced/metasetup.setup.php:152 +#: ../../enterprise/meta/include/functions_meta.php:127 +#: ../../godmode/setup/setup_general.php:183 ../../include/functions_config.php:217 +msgid "Attachment store" +msgstr "Stockage de fichiers" + +#: ../../enterprise/meta/advanced/metasetup.setup.php:152 +msgid "Directory where temporary data is stored." +msgstr "RĆ©pertoire pour le stockage temporaire de donnĆ©es." + +#: ../../enterprise/meta/advanced/metasetup.setup.php:155 +#: ../../enterprise/meta/include/functions_meta.php:138 +#: ../../godmode/setup/setup_general.php:88 ../../include/functions_config.php:182 +msgid "Remote config directory" +msgstr "RĆ©pertoire de configuration Ć  distance" + +#: ../../enterprise/meta/advanced/metasetup.setup.php:158 +#: ../../enterprise/meta/include/functions_meta.php:148 +#: ../../godmode/setup/setup_general.php:98 +msgid "Phantomjs bin directory" +msgstr "RĆ©pertoire phantomjs bin" + +#: ../../enterprise/meta/advanced/metasetup.setup.php:158 +msgid "Directory where phantomjs binary file exists and has execution grants." +msgstr "" +"RĆ©pertoire oĆ¹ le fichier binaire phantomjs existe et a des licences dā€™exĆ©cution." + +#: ../../enterprise/meta/advanced/metasetup.setup.php:162 +#: ../../godmode/setup/setup_general.php:249 +#: ../../include/functions_visual_map_editor.php:290 +#: ../../include/rest-api/models/VisualConsole/Items/Clock.php:271 +#: ../../include/functions_register.php:134 +msgid "Africa" +msgstr "Afrique" + +#: ../../enterprise/meta/advanced/metasetup.setup.php:163 +#: ../../godmode/setup/setup_general.php:250 +#: ../../include/functions_visual_map_editor.php:291 +#: ../../include/rest-api/models/VisualConsole/Items/Clock.php:272 +#: ../../include/functions_register.php:135 +msgid "America" +msgstr "AmĆ©rique" + +#: ../../enterprise/meta/advanced/metasetup.setup.php:164 +#: ../../godmode/setup/setup_general.php:251 +#: ../../include/functions_visual_map_editor.php:292 +#: ../../include/rest-api/models/VisualConsole/Items/Clock.php:273 +#: ../../include/functions_register.php:136 +msgid "Antarctica" +msgstr "Antarctique" + +#: ../../enterprise/meta/advanced/metasetup.setup.php:165 +#: ../../godmode/setup/setup_general.php:252 +#: ../../include/functions_visual_map_editor.php:293 +#: ../../include/rest-api/models/VisualConsole/Items/Clock.php:274 +#: ../../include/functions_register.php:137 +msgid "Arctic" +msgstr "Arctique" + +#: ../../enterprise/meta/advanced/metasetup.setup.php:166 +#: ../../godmode/setup/setup_general.php:253 +#: ../../include/functions_visual_map_editor.php:294 +#: ../../include/rest-api/models/VisualConsole/Items/Clock.php:275 +#: ../../include/functions_register.php:138 +msgid "Asia" +msgstr "Asie" + +#: ../../enterprise/meta/advanced/metasetup.setup.php:167 +#: ../../godmode/setup/setup_general.php:254 +#: ../../include/functions_visual_map_editor.php:295 +#: ../../include/rest-api/models/VisualConsole/Items/Clock.php:276 +#: ../../include/functions_register.php:139 +msgid "Atlantic" +msgstr "Atlantique" + +#: ../../enterprise/meta/advanced/metasetup.setup.php:168 +#: ../../godmode/setup/setup_general.php:255 +#: ../../include/functions_visual_map_editor.php:296 +#: ../../include/rest-api/models/VisualConsole/Items/Clock.php:277 +#: ../../include/functions_register.php:140 +msgid "Australia" +msgstr "Australie" + +#: ../../enterprise/meta/advanced/metasetup.setup.php:169 +#: ../../godmode/setup/setup_general.php:256 +#: ../../include/functions_visual_map_editor.php:297 +#: ../../include/rest-api/models/VisualConsole/Items/Clock.php:278 +#: ../../include/functions_register.php:141 +msgid "Europe" +msgstr "Europe" + +#: ../../enterprise/meta/advanced/metasetup.setup.php:170 +#: ../../godmode/setup/setup_general.php:257 +#: ../../include/functions_visual_map_editor.php:298 +#: ../../include/rest-api/models/VisualConsole/Items/Clock.php:279 +#: ../../include/functions_register.php:142 +msgid "Indian" +msgstr "Indien" + +#: ../../enterprise/meta/advanced/metasetup.setup.php:171 +#: ../../godmode/setup/setup_general.php:258 +#: ../../include/functions_visual_map_editor.php:299 +#: ../../include/rest-api/models/VisualConsole/Items/Clock.php:280 +#: ../../include/functions_register.php:143 +msgid "Pacific" +msgstr "Pacifique" + +#: ../../enterprise/meta/advanced/metasetup.setup.php:172 +#: ../../godmode/setup/setup_general.php:259 +#: ../../include/functions_visual_map_editor.php:300 +#: ../../include/rest-api/models/VisualConsole/Items/Clock.php:281 +#: ../../include/functions_register.php:144 +msgid "UTC" +msgstr "UTC" + +#: ../../enterprise/meta/advanced/metasetup.setup.php:191 +#: ../../enterprise/meta/include/functions_meta.php:158 +#: ../../godmode/setup/setup_general.php:279 +#: ../../include/functions_register.php:164 ../../include/functions_config.php:259 +msgid "Timezone setup" +msgstr "Configuration du fuseau horaire" + +#: ../../enterprise/meta/advanced/metasetup.setup.php:193 +#: ../../godmode/setup/setup_general.php:296 +msgid "Change timezone" +msgstr "Modifier le fuseau horaire" + +#: ../../enterprise/meta/advanced/metasetup.setup.php:197 +#: ../../enterprise/meta/include/functions_meta.php:168 +#: ../../godmode/setup/setup_general.php:319 ../../include/functions_config.php:290 +msgid "Public URL" +msgstr "URL publique" + +#: ../../enterprise/meta/advanced/metasetup.setup.php:198 +#, php-format +msgid "" +"Set this value when you need your %s to be accessible via a public URL (for " +"example using Apache mod_proxy settings)." +msgstr "" +"DĆ©finissez cette valeur lorsque vous avez besoin que votre %s soit accessible via " +"une URL publique (par exemple en utilisant les paramĆØtres apache mod_proxy)." + +#: ../../enterprise/meta/advanced/metasetup.setup.php:201 +#: ../../enterprise/meta/include/functions_meta.php:178 +#: ../../godmode/setup/setup_general.php:329 ../../include/functions_config.php:294 +msgid "Force use Public URL" +msgstr "Forcer l'utilisation de l'URL publique" + +#: ../../enterprise/meta/advanced/metasetup.setup.php:202 +msgid "Force using defined public URL)." +msgstr "Forcer lā€™utilisation dā€™une URL publique dĆ©finie)." + +#: ../../enterprise/meta/advanced/metasetup.setup.php:209 +#, php-format +msgid "" +"If public URL is not properly configured, you will lose access to the %s Console. " +"Do you want to continue?" +msgstr "" +"Si lā€™URL publique nā€™est pas correctement configurĆ©e, vous perdrez lā€™accĆØs Ć  la " +"Console %s. Voulez-vous continuer ?" + +#: ../../enterprise/meta/advanced/metasetup.setup.php:215 +#: ../../enterprise/meta/include/functions_meta.php:188 +#: ../../godmode/setup/setup_general.php:343 ../../include/functions_config.php:298 +msgid "Public URL host exclusions" +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:1485 +msgid "Disable custom live view filters" +msgstr "DĆ©sactiver les filtres personnalisĆ©s d'affichage en temps rĆ©el" + +#: ../../enterprise/meta/advanced/metasetup.setup.php:218 +msgid "" +"Disable the definition of custom filters in the live view. Only existing filters " +"can be used." +msgstr "" +"DĆ©sactiver la dĆ©finition des filtres personnalisĆ©s d'affichage en temps rĆ©el. " +"Seulement les filtres existants peuvent ĆŖtre utilisĆ©s." + +#: ../../enterprise/meta/advanced/metasetup.setup.php:222 +#: ../../enterprise/meta/include/functions_meta.php:208 +#: ../../godmode/setup/setup_general.php:370 ../../include/functions_config.php:310 +msgid "Command Snapshot" +msgstr "InstantanĆ© de commande" + +#: ../../enterprise/meta/advanced/metasetup.setup.php:222 +msgid "The string modules with several lines show as command output" +msgstr "Les modules de chaĆ®nes avec plusieurs lignes montrent la sortie de commande" + +#: ../../enterprise/meta/advanced/metasetup.setup.php:227 +msgid "Customize sections" +msgstr "Personnaliser les sections" + +#: ../../enterprise/meta/advanced/metasetup.setup.php:248 +msgid "Disabled sections" +msgstr "Sections dĆ©sactivĆ©es" + +#: ../../enterprise/meta/advanced/metasetup.setup.php:250 +msgid "Enabled sections" +msgstr "Sections activĆ©es" + +#: ../../enterprise/meta/advanced/metasetup.setup.php:255 +msgid "Push selected sections to enable it" +msgstr "Empiler les sections sĆ©lectionnĆ©es pour les activer" + +#: ../../enterprise/meta/advanced/metasetup.setup.php:257 +msgid "Pop selected sections to disable it" +msgstr "DĆ©piler les sections sĆ©lectionnĆ©es pour les dĆ©sactiver" + +#: ../../enterprise/meta/advanced/metasetup.setup.php:267 +msgid "Please be careful if you put a password put https access." +msgstr "Si vous introduisez un mot de passe, veuillez activer l'accĆØs https." + +#: ../../enterprise/meta/advanced/metasetup.setup.php:272 +#: ../../enterprise/meta/include/functions_meta.php:238 +#: ../../godmode/setup/setup_general.php:193 ../../include/functions_config.php:230 +msgid "IP list with API access" +msgstr "Liste d'adresses IP avec accĆØs API" + +#: ../../enterprise/meta/advanced/metasetup.setup.php:283 +#: ../../enterprise/meta/include/functions_meta.php:248 +#: ../../enterprise/godmode/setup/setup.php:294 +msgid "Enable update manager" +msgstr "Activer le gestionnaire de mises Ć  jour" + +#: ../../enterprise/meta/advanced/metasetup.setup.php:288 +#: ../../enterprise/meta/include/functions_meta.php:273 +#: ../../enterprise/godmode/setup/setup.php:90 +#: ../../include/functions_config.php:409 +msgid "Size of collection" +msgstr "Taille de la collection" + +#: ../../enterprise/meta/advanced/metasetup.setup.php:289 +#: ../../enterprise/godmode/setup/setup.php:98 +msgid " Bytes" +msgstr " Octets" + +#: ../../enterprise/meta/advanced/metasetup.setup.php:291 +msgid "Max. agents to add in policy concurrently" +msgstr "Nombre maximal dā€™agents Ć  ajouter simultanĆ©ment Ć  la politique" + +#: ../../enterprise/meta/advanced/metasetup.setup.php:291 +msgid "" +"Maximum allowed number of agents to be added in policy concurrently (adding a " +"high number of agents at a time can lead to performance issues)" +msgstr "" +"Nombre maximal autorisĆ© dā€™agents Ć  ajouter simultanĆ©ment dans la politique " +"(lā€™ajout dā€™un nombre Ć©levĆ© dā€™agents Ć  la fois peut entraĆ®ner des problĆØmes de " +"performances)" + +#: ../../enterprise/meta/advanced/metasetup.setup.php:294 +msgid "Synchronization queue items warn detection" +msgstr "DĆ©tection dā€™avertissement des Ć©lĆ©ments de file dā€™attente de synchronisation" + +#: ../../enterprise/meta/advanced/metasetup.setup.php:294 +msgid "Number of items in synchronization queue before be notified, per node" +msgstr "" +"Nombre dā€™Ć©lĆ©ments dans la file dā€™attente de synchronisation avant dā€™ĆŖtre " +"notifiĆ©s, par nœud" + +#: ../../enterprise/meta/advanced/metasetup.setup.php:298 +msgid "Enable Agent API" +msgstr "Activer lā€™API de lā€™agent" + +#: ../../enterprise/meta/advanced/metasetup.setup.php:320 +msgid "Enable log viewer" +msgstr "Activer la visionneuse de journaux" + +#: ../../enterprise/meta/advanced/metasetup.setup.php:324 +#: ../../enterprise/meta/include/functions_meta.php:303 +#: ../../godmode/setup/setup_general.php:467 +msgid "Enable console log" +msgstr "Activer la console de journalisation" + +#: ../../enterprise/meta/advanced/metasetup.setup.php:324 +msgid "Log location: pandora_console/log/console.log" +msgstr "Emplacement du journal : pandora_console/log/console.log" + +#: ../../enterprise/meta/advanced/metasetup.setup.php:345 +#: ../../enterprise/meta/include/functions_meta.php:313 +#: ../../godmode/setup/setup_general.php:478 +msgid "Enable audit log" +msgstr "Activer le journal d'audit" + +#: ../../enterprise/meta/advanced/metasetup.setup.php:345 +msgid "Log location: pandora_console/log/audit.log" +msgstr "Emplacement du journal : pandora_console/log/audit.log" + +#: ../../enterprise/meta/advanced/policymanager.sync.php:247 +#: ../../enterprise/meta/include/functions_groups_meta.php:174 +#: ../../godmode/groups/group_list.php:667 +#, php-format +msgid "Error connecting to %s" +msgstr "Erreur de connexion Ć  %s" + +#: ../../enterprise/meta/advanced/policymanager.sync.php:255 +#, php-format +msgid "Error creating %s policies" +msgstr "Erreur de crĆ©ation de %s politiques" + +#: ../../enterprise/meta/advanced/policymanager.sync.php:259 +#, php-format +msgid "Created %s policies" +msgstr "%s politiques crĆ©Ć©es" + +#: ../../enterprise/meta/advanced/policymanager.sync.php:264 +#, php-format +msgid "Error creating/updating %s/%s policy modules" +msgstr "Erreur de crĆ©ation/mise Ć  jour de %s/%s modules de politique" + +#: ../../enterprise/meta/advanced/policymanager.sync.php:268 +#, php-format +msgid "Created/Updated %s/%s policy modules" +msgstr "%s/%s modules de politique crĆ©Ć©s/mis Ć  jour" + +#: ../../enterprise/meta/advanced/policymanager.sync.php:273 +#, php-format +msgid "Error deleting %s policy modules" +msgstr "Erreur de suppression de %s modules de politique" + +#: ../../enterprise/meta/advanced/policymanager.sync.php:277 +#, php-format +msgid "Deleted %s policy modules" +msgstr "%s modules de politiques supprimĆ©s" + +#: ../../enterprise/meta/advanced/policymanager.sync.php:282 +#, php-format +msgid "Error creating %s policy alerts" +msgstr "Erreur de crĆ©ation de %s alertes de politique" + +#: ../../enterprise/meta/advanced/policymanager.sync.php:286 +#, php-format +msgid "Created %s policy alerts" +msgstr "%s alertes de politiques crĆ©Ć©es" + +#: ../../enterprise/meta/advanced/policymanager.sync.php:291 +#, php-format +msgid "Error deleting %s policy alerts" +msgstr "Erreur de suppression de %s alertes de politique" + +#: ../../enterprise/meta/advanced/policymanager.sync.php:295 +#, php-format +msgid "Deleted %s policy alerts" +msgstr "%s alertes de politique supprimĆ©es" + +#: ../../enterprise/meta/advanced/policymanager.sync.php:307 +#: ../../enterprise/meta/include/functions_events_meta.php:110 +#: ../../enterprise/godmode/massive/massive_add_modules_policy.php:147 +#: ../../enterprise/include/functions_log.php:279 +#: ../../enterprise/include/functions_log.php:282 +#: ../../enterprise/include/class/LogSource.class.php:626 +#: ../../enterprise/operation/log/log_viewer.php:654 +#: ../../godmode/massive/massive_copy_modules.php:144 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1594 +#: ../../godmode/events/event_edit_filter.php:632 +#: ../../godmode/events/custom_events.php:109 ../../include/functions_events.php:212 +#: ../../include/functions_events.php:283 ../../include/functions_events.php:4175 +#: ../../include/functions_events.php:4256 +#: ../../operation/agentes/log_sources_status.php:56 +#: ../../operation/agentes/pandora_networkmap.editor.php:336 +#: ../../operation/agentes/pandora_networkmap.view.php:136 +#: ../../operation/events/events.php:1722 +msgid "Source" +msgstr "Source" + +#: ../../enterprise/meta/advanced/policymanager.sync.php:308 +#: ../../extensions/dbmanager.php:204 ../../include/lib/Dashboard/Widget.php:601 +msgid "This metaconsole" +msgstr "Cette MĆ©taconsole" + +#: ../../enterprise/meta/advanced/policymanager.sync.php:319 +#: ../../enterprise/meta/advanced/policymanager.queue.php:210 +#: ../../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:219 +#: ../../enterprise/godmode/agentes/plugins_manager.php:193 +#: ../../enterprise/godmode/policies/policy_queue.php:593 +#: ../../enterprise/godmode/policies/policy_queue.php:647 +#: ../../enterprise/godmode/massive/massive_edit_tags_policy.php:116 +#: ../../enterprise/godmode/massive/massive_add_alerts_policy.php:102 +#: ../../enterprise/godmode/massive/massive_add_modules_policy.php:208 +#: ../../enterprise/godmode/massive/massive_tags_edit_policy.php:108 +#: ../../enterprise/godmode/massive/massive_delete_alerts_policy.php:112 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:462 +#: ../../enterprise/include/functions_policies.php:4070 +#: ../../enterprise/operation/agentes/policy_view.php:67 +#: ../../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:841 +#: ../../godmode/alerts/alert_view.php:148 +#: ../../include/ajax/alert_list.ajax.php:285 ../../include/ajax/module.php:974 +#: ../../operation/agentes/status_monitor.php:1302 +msgid "Policy" +msgstr "Politique" + +#: ../../enterprise/meta/advanced/policymanager.sync.php:321 +#: ../../enterprise/godmode/massive/massive_add_modules_policy.php:199 +#: ../../godmode/massive/massive_copy_modules.php:239 +msgid "Targets" +msgstr "Cibles" + +#: ../../enterprise/meta/advanced/license_meta.php:52 +#: ../../godmode/setup/license.php:80 +msgid "Failed to Update license file" +msgstr "Echec de la mise Ć  jour du fichier de licence" + +#: ../../enterprise/meta/advanced/license_meta.php:59 +msgid "Metaconsole and all nodes license updated" +msgstr "Licence MĆ©taconsole et de tous les nœuds mise Ć  jour" + +#: ../../enterprise/meta/advanced/license_meta.php:61 +#, php-format +msgid "Metaconsole license updated but %d of %d node synchronization failed" +msgstr "" +"Mise Ć  jour de la licence de la MĆ©taconsole mais Ć©chec de la synchronisation des " +"nœuds %d de %d" + +#: ../../enterprise/meta/advanced/metasetup.auth.php:27 +msgid "" +"Be aware that group synchronization can change the group configuration of the node" +msgstr "" +"Sachez que la synchronisation de groupe peut modifier la configuration de groupe " +"du nœud" + +#: ../../enterprise/meta/advanced/metasetup.performance.php:74 +#: ../../godmode/menu.php:342 ../../godmode/setup/setup.php:125 +#: ../../godmode/setup/setup.php:260 +msgid "Performance" +msgstr "Performance" + +#: ../../enterprise/meta/advanced/metasetup.performance.php:79 +#: ../../enterprise/meta/include/functions_meta.php:1924 +#: ../../godmode/setup/performance.php:259 ../../godmode/setup/performance.php:449 +#: ../../include/functions_config.php:787 +msgid "Max. days before delete events" +msgstr "Nombre de jours maximum avant la suppression des Ć©vĆ©nements" + +#: ../../enterprise/meta/advanced/metasetup.performance.php:83 +#: ../../enterprise/meta/include/functions_meta.php:1934 +msgid "Active events history" +msgstr "Historique d'Ć©vĆ©nements actif" + +#: ../../enterprise/meta/advanced/metasetup.performance.php:88 +msgid "Use real-time statistics" +msgstr "Utiliser des statistiques en temps rĆ©el" + +#: ../../enterprise/meta/advanced/metasetup.performance.php:92 +#: ../../enterprise/meta/include/functions_meta.php:1949 +#: ../../godmode/setup/performance.php:283 ../../include/functions_config.php:800 +msgid "Max. days before delete audit events" +msgstr "Nombre de jours maximum avant la suppression d'Ć©vĆ©nements d'audit" + +#: ../../enterprise/meta/advanced/metasetup.performance.php:95 +#: ../../enterprise/meta/include/functions_meta.php:1959 +#: ../../godmode/setup/performance.php:540 ../../include/functions_config.php:832 +msgid "Default hours for event view" +msgstr "Heures par dĆ©faut pour la visualisation des Ć©vĆ©nements" + +#: ../../enterprise/meta/advanced/metasetup.performance.php:98 +msgid "Migration block size" +msgstr "Taille du bloc de migration" + +#: ../../enterprise/meta/advanced/metasetup.performance.php:108 +#: ../../godmode/setup/performance.php:614 +msgid "Events response max. execution" +msgstr "ExĆ©cution max. de rĆ©ponse dā€™Ć©vĆ©nements" + +#: ../../enterprise/meta/advanced/metasetup.performance.php:110 +msgid "Number of events that will perform the desired action at the same time" +msgstr "Nombre dā€™Ć©vĆ©nements qui effectueront lā€™action souhaitĆ©e en mĆŖme temps" + +#: ../../enterprise/meta/advanced/metasetup.performance.php:122 +#: ../../enterprise/meta/include/functions_meta.php:1989 +msgid "Max. number of events per node" +msgstr "Nombre maximal dā€™Ć©vĆ©nements par nœud" + +#: ../../enterprise/meta/advanced/metasetup.performance.php:124 +msgid "maximum number of events to be displayed per node" +msgstr "nombre maximale dā€™Ć©vĆ©nements Ć  montrer par noeud" + +#: ../../enterprise/meta/advanced/metasetup.performance.php:136 +#: ../../godmode/setup/performance.php:624 ../../include/functions_config.php:894 +msgid "Row limit in csv log" +msgstr "Limite de ligne dans le journal csv" + +#: ../../enterprise/meta/advanced/metasetup.performance.php:145 +#: ../../enterprise/meta/include/functions_meta.php:2022 +#: ../../godmode/setup/performance.php:363 ../../include/functions_config.php:868 +msgid "Max. macro data fields" +msgstr "Nombre maximum de champs macro de donnĆ©es" + +#: ../../enterprise/meta/advanced/metasetup.performance.php:160 +#: ../../godmode/setup/performance.php:660 +#, 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:165 +#: ../../godmode/setup/performance.php:677 +msgid "PhantomJS cache cleanup " +msgstr "Nettoyage du cache PhantomJS " + +#: ../../enterprise/meta/advanced/metasetup.performance.php:172 +#: ../../godmode/setup/performance.php:684 +msgid "No scheduled" +msgstr "Non planifiĆ©" + +#: ../../enterprise/meta/advanced/metasetup.performance.php:173 +#: ../../godmode/setup/performance.php:685 +msgid "Each week" +msgstr "Chaque semaine" + +#: ../../enterprise/meta/advanced/metasetup.performance.php:174 +#: ../../godmode/setup/performance.php:686 +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" + +#: ../../enterprise/meta/advanced/collections.php:122 +#: ../../enterprise/meta/advanced/collections.php:138 +#: ../../enterprise/godmode/agentes/collection_manager.php:94 +#: ../../enterprise/godmode/agentes/collections.php:188 +#: ../../enterprise/godmode/agentes/collections.php:210 +msgid "Successful create collection package." +msgstr "Progiciel de la collection crĆ©Ć© correctement" + +#: ../../enterprise/meta/advanced/collections.php:139 +#: ../../enterprise/godmode/agentes/collection_manager.php:95 +#: ../../enterprise/godmode/agentes/collections.php:211 +msgid "Can not create collection package." +msgstr "Erreur de crĆ©ation du progiciel de la collection" + +#: ../../enterprise/meta/advanced/collections.php:149 +#: ../../enterprise/godmode/agentes/collections.php:246 +msgid "Error: Id must not be empty" +msgstr "Erreur : ID ne doit pas ĆŖtre vide" + +#: ../../enterprise/meta/advanced/collections.php:163 +#: ../../enterprise/godmode/agentes/collections.php:260 +msgid "Successful re-create collection directory." +msgstr "RĆ©pertoire de collection recrĆ©Ć© correctement." + +#: ../../enterprise/meta/advanced/collections.php:164 +#: ../../enterprise/godmode/agentes/collections.php:261 +msgid "Can not re-create collection directory." +msgstr "Impossible de recrĆ©er le rĆ©pertoire de collection." + +#: ../../enterprise/meta/advanced/collections.php:190 +#: ../../enterprise/godmode/agentes/collections.php:287 +msgid "Successful re-create collections directories." +msgstr "RĆ©pertoires de collection recrĆ©Ć©s correctement." + +#: ../../enterprise/meta/advanced/collections.php:191 +#: ../../enterprise/godmode/agentes/collections.php:288 +msgid "Can not re-create collections directories." +msgstr "Impossible de recrĆ©er des rĆ©pertoires de collections." + +#: ../../enterprise/meta/advanced/collections.php:205 +msgid "To manage collections you must activate centralized management" +msgstr "Pour gĆ©rer les collections, vous devez activer la gestion centralisĆ©e" + +#: ../../enterprise/meta/advanced/collections.php:218 +#: ../../enterprise/meta/advanced/collections.php:224 +#: ../../godmode/users/user_list.php:402 ../../godmode/users/user_list.php:406 +msgid "Search by username, fullname or email" +msgstr "Rechercher par nom d'utilisateur, nom complet ou courriel" + +#: ../../enterprise/meta/advanced/collections.php:243 +#: ../../enterprise/meta/advanced/policymanager.queue.php:246 +#: ../../enterprise/meta/monitoring/custom_fields_view.php:334 +#: ../../enterprise/meta/agentsearch.php:113 +#: ../../enterprise/godmode/modules/local_components.php:584 +#: ../../godmode/modules/manage_network_components.php:690 +#: ../../godmode/users/user_list.php:444 ../../godmode/alerts/alert_actions.php:315 +#: ../../godmode/alerts/alert_templates.php:337 +#: ../../godmode/reporting/reporting_builder.list_items.php:273 +#: ../../godmode/tag/tag.php:246 ../../godmode/tag/tag.php:412 +#: ../../operation/tree.php:304 +msgid "Show Options" +msgstr "Afficher les options" + +#: ../../enterprise/meta/advanced/collections.php:250 +#: ../../godmode/users/user_list.php:451 +msgid "Users control filter" +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:373 +#: ../../enterprise/godmode/alerts/alert_inventory_list.php:174 +#: ../../godmode/users/user_list.php:452 +#: ../../godmode/snmpconsole/snmp_alert.php:1180 +#: ../../godmode/alerts/alert_list.list.php:188 +#: ../../operation/agentes/graphs.php:269 +#: ../../operation/snmpconsole/snmp_view.php:714 +#: ../../operation/snmpconsole/snmp_view.php:813 +msgid "Toggle filter(s)" +msgstr "Filtre(s) de bascul" + +#: ../../enterprise/meta/advanced/collections.php:259 +#: ../../enterprise/godmode/agentes/collections.php:296 +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:379 +#: ../../enterprise/include/functions_groups.php:81 +#: ../../enterprise/operation/agentes/ver_agente.php:215 +#: ../../godmode/agentes/configurar_agente.php:702 +msgid "Collection" +msgstr "Collection" + +#: ../../enterprise/meta/advanced/collections.php:364 +#: ../../enterprise/godmode/agentes/collection_manager.php:110 +#: ../../enterprise/godmode/agentes/collections.php:380 +#: ../../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:412 +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:413 +msgid "Delete collection" +msgstr "Supprimer la collection" + +#: ../../enterprise/meta/advanced/collections.php:440 +#: ../../enterprise/godmode/agentes/collections.php:420 +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:421 +msgid "Re-Apply changes" +msgstr "Appliquer les changements Ć  nouveau" + +#: ../../enterprise/meta/advanced/collections.php:448 +#: ../../enterprise/godmode/agentes/collections.php:428 +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:429 +msgid "Apply changes" +msgstr "Appliquer les modifications" + +#: ../../enterprise/meta/advanced/collections.php:454 +#: ../../enterprise/godmode/agentes/collections.php:434 +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:439 +#: ../../enterprise/godmode/agentes/collections.php:440 +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:460 +msgid "Re-create directories" +msgstr "RecrĆ©er des rĆ©pertoires" + +#: ../../enterprise/meta/advanced/collections.php:504 +#: ../../general/first_task/collections.php:18 +msgid "There are no collections defined yet." +msgstr "Aucune collection dĆ©finie jusqu'Ć  prĆ©sent." + +#: ../../enterprise/meta/advanced/policymanager.queue.php:58 +#: ../../enterprise/godmode/policies/policy_queue.php:96 +msgid "Operation successfully deleted from the queue" +msgstr "OpĆ©ration supprimĆ©e correctement de la file d'attente" + +#: ../../enterprise/meta/advanced/policymanager.queue.php:59 +#: ../../enterprise/godmode/policies/policy_queue.php:97 +msgid "Operation cannot be deleted from the queue" +msgstr "Impossible de supprimer l'opĆ©ration de la file d'attente" + +#: ../../enterprise/meta/advanced/policymanager.queue.php:214 +#: ../../enterprise/meta/advanced/policymanager.queue.php:259 +#: ../../enterprise/meta/include/functions_autoprovision.php:641 +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:494 +#: ../../enterprise/godmode/policies/policy_queue.php:605 +#: ../../enterprise/godmode/policies/policy_queue.php:649 +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:231 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3751 +#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:155 +#: ../../enterprise/include/functions_reporting_csv.php:1014 +#: ../../enterprise/include/class/CommandCenter.class.php:451 +#: ../../extensions/api_checker.php:156 ../../godmode/extensions.php:148 +#: ../../godmode/reporting/reporting_builder.item_editor.php:4445 +#: ../../include/functions_reporting_html.php:2244 +#: ../../include/functions_reporting_html.php:4737 +#: ../../include/functions_menu.php:592 +#: ../../include/class/ExternalTools.class.php:530 +msgid "Operation" +msgstr "OpĆ©ration" + +#: ../../enterprise/meta/advanced/policymanager.queue.php:218 +#: ../../enterprise/godmode/policies/policy_queue.php:609 +msgid "Apply (database and files)" +msgstr "Appliquer (base de donnĆ©es et fichiers)" + +#: ../../enterprise/meta/advanced/policymanager.queue.php:219 +#: ../../enterprise/meta/advanced/policymanager.queue.php:315 +#: ../../enterprise/godmode/policies/policy_queue.php:610 +#: ../../enterprise/godmode/policies/policy_queue.php:718 +msgid "Apply (only database)" +msgstr "Appliquer (seulement base de donnĆ©es)" + +#: ../../enterprise/meta/advanced/policymanager.queue.php:229 +#: ../../enterprise/godmode/policies/policy_queue.php:620 +msgid "Complete" +msgstr "ComplĆ©ter" + +#: ../../enterprise/meta/advanced/policymanager.queue.php:230 +#: ../../enterprise/godmode/policies/policy_queue.php:621 +msgid "Incomplete" +msgstr "InachevĆ©" + +#: ../../enterprise/meta/advanced/policymanager.queue.php:235 +#: ../../enterprise/godmode/policies/policy_queue.php:626 +#: ../../enterprise/godmode/policies/policies.php:337 +#: ../../enterprise/godmode/policies/policy_linking.php:129 +#: ../../enterprise/godmode/massive/massive_delete_alerts_snmp.php:209 +#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:269 +#: ../../enterprise/godmode/setup/setup_skins.php:96 +#: ../../enterprise/godmode/setup/setup_acl.php:574 +#: ../../enterprise/include/class/SAPView.class.php:409 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2868 +#: ../../enterprise/include/functions_ipam.php:1779 +#: ../../enterprise/operation/services/services.treeview_services.php:164 +#: ../../enterprise/operation/services/services.treeview_services.php:168 #: ../../enterprise/operation/services/services.list.php:454 #: ../../enterprise/operation/services/services.list.php:459 #: ../../enterprise/operation/services/services.table_services.php:363 #: ../../enterprise/operation/services/services.table_services.php:368 -#: ../../enterprise/include/class/SAPView.class.php:409 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2826 -#: ../../enterprise/include/functions_ipam.php:1779 -#: ../../enterprise/meta/advanced/policymanager.queue.php:235 -#: ../../enterprise/godmode/setup/setup_skins.php:96 -#: ../../enterprise/godmode/setup/setup_acl.php:574 -#: ../../enterprise/godmode/massive/massive_delete_alerts_snmp.php:209 -#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:269 -#: ../../enterprise/godmode/agentes/manage_config_remote.php:148 -#: ../../enterprise/godmode/policies/policy_queue.php:626 -#: ../../enterprise/godmode/policies/policy_linking.php:129 -#: ../../enterprise/godmode/policies/policies.php:337 #: ../../godmode/modules/manage_network_templates_form.php:277 #: ../../godmode/modules/manage_network_templates_form.php:337 -#: ../../godmode/reporting/reporting_builder.list_items.php:217 -#: ../../godmode/reporting/reporting_builder.list_items.php:261 -#: ../../godmode/reporting/reporting_builder.item_editor.php:1049 +#: ../../godmode/agentes/module_manager.php:83 +#: ../../godmode/netflow/nf_item_list.php:174 #: ../../godmode/snmpconsole/snmp_alert.php:1176 #: ../../godmode/snmpconsole/snmp_filters.php:203 -#: ../../godmode/snmpconsole/snmp_filters.php:290 ../../godmode/tag/tag.php:233 -#: ../../godmode/netflow/nf_item_list.php:174 -#: ../../godmode/agentes/module_manager.php:83 +#: ../../godmode/snmpconsole/snmp_filters.php:290 +#: ../../godmode/reporting/reporting_builder.list_items.php:217 +#: ../../godmode/reporting/reporting_builder.list_items.php:261 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1099 +#: ../../godmode/tag/tag.php:233 ../../include/functions_ui.php:3386 +#: ../../include/functions_ui.php:3408 ../../include/functions_ui.php:3420 +#: ../../include/class/ModuleTemplates.class.php:765 ../../operation/tree.php:260 +#: ../../operation/agentes/graphs.php:265 +#: ../../operation/agentes/estado_monitores.php:594 +#: ../../operation/netflow/nf_live_view.php:391 +#: ../../operation/incidents/list_integriaims_incidents.php:435 +#: ../../operation/incidents/list_integriaims_incidents.php:439 msgid "Filter" msgstr "Filtre" -#: ../../operation/tree.php:276 -msgid "Search module" -msgstr "Rechercher module" +#: ../../enterprise/meta/advanced/policymanager.queue.php:256 +#: ../../enterprise/meta/monitoring/custom_fields_csv.php:101 +#: ../../enterprise/meta/monitoring/custom_fields_view.php:706 +#: ../../enterprise/meta/monitoring/wizard/wizard.manage_alert.php:197 +#: ../../enterprise/meta/include/functions_wizard_meta.php:174 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1796 +#: ../../enterprise/meta/agentsearch.php:133 +#: ../../enterprise/meta/agentsearch.php:326 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1965 +#: ../../enterprise/include/functions_reporting_csv.php:2733 +#: ../../enterprise/include/class/CSVImportAgents.class.php:154 +#: ../../enterprise/include/class/SAPView.class.php:226 +#: ../../enterprise/include/functions_events.php:216 +#: ../../enterprise/operation/log/log_viewer.php:613 +#: ../../enterprise/operation/inventory/inventory.php:331 +#: ../../godmode/modules/manage_network_components.php:749 +#: ../../godmode/agentes/agent_manager.php:414 +#: ../../godmode/agentes/module_manager.php:844 +#: ../../godmode/massive/massive_edit_agents.php:743 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1194 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3614 +#: ../../godmode/wizards/DiscoveryTaskList.class.php:1043 +#: ../../include/functions_reporting_html.php:2137 +#: ../../include/class/AgentWizard.class.php:1196 +#: ../../operation/events/events.php:1788 +msgid "Server" +msgstr "Serveur" -#: ../../operation/tree.php:285 -#: ../../include/lib/Dashboard/Widgets/module_status.php:173 -#: ../../include/lib/Dashboard/Widgets/module_status.php:538 -#: ../../include/functions_events.php:211 ../../include/functions_events.php:6783 -#: ../../include/functions_reporting_html.php:4948 -#: ../../enterprise/meta/include/functions_events_meta.php:138 -msgid "Module status" -msgstr "Ɖtat du module" +#: ../../enterprise/meta/advanced/policymanager.queue.php:260 +#: ../../enterprise/godmode/policies/policy_queue.php:650 +#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:702 +#: ../../enterprise/include/class/Omnishell.class.php:401 +#: ../../enterprise/include/functions_ipam.php:1411 +#: ../../enterprise/include/functions_ipam.php:1418 +#: ../../enterprise/include/functions_ipam.php:1423 +#: ../../godmode/wizards/DiscoveryTaskList.class.php:606 +msgid "Progress" +msgstr "En cours" -#: ../../operation/tree.php:304 ../../operation/events/events_list.php:1102 -#: ../../operation/agentes/alerts_status.php:484 -#: ../../enterprise/meta/monitoring/custom_fields_view.php:334 -#: ../../enterprise/meta/advanced/policymanager.queue.php:246 -#: ../../enterprise/meta/advanced/collections.php:243 -#: ../../enterprise/meta/agentsearch.php:113 -#: ../../enterprise/godmode/modules/local_components.php:584 -#: ../../godmode/modules/manage_network_components.php:690 -#: ../../godmode/reporting/reporting_builder.list_items.php:273 -#: ../../godmode/tag/tag.php:246 ../../godmode/tag/tag.php:412 -#: ../../godmode/alerts/alert_actions.php:315 -#: ../../godmode/alerts/alert_templates.php:337 -#: ../../godmode/users/user_list.php:444 -msgid "Show Options" -msgstr "Afficher les options" +#: ../../enterprise/meta/advanced/policymanager.queue.php:298 +#: ../../enterprise/godmode/policies/policy_queue.php:688 +msgid "Policy " +msgstr "Politique " -#: ../../operation/tree.php:308 -msgid "Tree search" -msgstr "Rechercher arborescence" +#: ../../enterprise/meta/advanced/policymanager.queue.php:339 +#: ../../enterprise/godmode/policies/policy_queue.php:748 +#: ../../enterprise/godmode/policies/policy_queue.php:757 +msgid "Policy applying timeout" +msgstr "Temps dā€™attente de lā€™application de la politique" -#: ../../operation/tree.php:415 ../../operation/tree.php:446 -#: ../../operation/network/network_report.php:313 -#: ../../include/class/Heatmap.class.php:684 -#: ../../include/lib/Dashboard/Widgets/tree_view.php:645 -#: ../../enterprise/tools/ipam/ipam_supernet_treeview.php:93 -#: ../../enterprise/operation/services/services.treeview_services.php:246 -#: ../../enterprise/operation/agentes/tag_view.php:578 -#: ../../enterprise/include/functions_inventory.php:301 -#: ../../godmode/groups/group_list.php:1034 -msgid "No data found" -msgstr "Aucune donnĆ©e disponible" +#: ../../enterprise/meta/advanced/policymanager.queue.php:353 +#: ../../enterprise/godmode/policies/policy_queue.php:776 +msgid "Delete from queue" +msgstr "Supprimer de la file d'attente" -#: ../../operation/tree.php:420 -#: ../../include/lib/Dashboard/Widgets/tree_view.php:601 -#: ../../enterprise/meta/agentsearch.php:315 -msgid "Policies found" -msgstr "Politiques trouvĆ©es" +#: ../../enterprise/meta/advanced/policymanager.queue.php:371 +msgid "Empty queue." +msgstr "Vider la file" -#: ../../operation/tree.php:423 -#: ../../include/lib/Dashboard/Widgets/tree_view.php:605 -msgid "Operating systems found" -msgstr "SystĆØmes d'exploitation trouvĆ©s" - -#: ../../operation/tree.php:426 -#: ../../include/lib/Dashboard/Widgets/tree_view.php:609 -msgid "Tags found" -msgstr "Ɖtiquettes trouvĆ©es" - -#: ../../operation/tree.php:429 -#: ../../include/lib/Dashboard/Widgets/tree_view.php:613 -msgid "Module Groups found" -msgstr "Groupes de modules trouvĆ©s" - -#: ../../operation/tree.php:436 -#: ../../include/lib/Dashboard/Widgets/tree_view.php:622 -msgid "Groups found" -msgstr "Groupes trouvĆ©s" - -#: ../../operation/tree.php:454 ../../include/class/Diagnostics.class.php:549 -#: ../../include/lib/Dashboard/Widgets/tree_view.php:648 -#: ../../include/functions_reporting.php:11500 -#: ../../include/functions_reporting_html.php:5609 -#: ../../enterprise/operation/services/services.treeview_services.php:254 -#: ../../enterprise/include/functions_reporting_csv.php:983 -#: ../../mobile/operation/groups.php:147 ../../godmode/db/db_main.php:102 -#: ../../godmode/groups/group_list.php:1042 -msgid "Total agents" -msgstr "Nombre total d'agents" - -#: ../../operation/tree.php:455 ../../include/class/Diagnostics.class.php:553 -#: ../../include/lib/Dashboard/Widgets/tree_view.php:649 -#: ../../enterprise/operation/services/services.treeview_services.php:255 -#: ../../enterprise/include/functions_reporting_csv.php:983 -#: ../../godmode/module_library/module_library_view.php:159 -#: ../../godmode/groups/group_list.php:1043 -msgid "Total modules" -msgstr "Nombre total de modules" - -#: ../../operation/tree.php:456 ../../operation/agentes/group_view.php:223 -#: ../../include/lib/Dashboard/Widgets/tree_view.php:650 -#: ../../include/functions_alerts.php:3363 -#: ../../include/functions_reporting_html.php:2310 -#: ../../include/functions_reporting_html.php:2320 -#: ../../enterprise/operation/services/services.treeview_services.php:256 -#: ../../enterprise/operation/agentes/agent_inventory.php:266 -#: ../../enterprise/include/functions_inventory.php:511 -#: ../../enterprise/include/functions_inventory.php:654 -#: ../../enterprise/meta/monitoring/group_view.php:235 -#: ../../godmode/groups/group_list.php:1044 -msgid "Total" -msgstr "Total" - -#: ../../operation/tree.php:459 ../../operation/tree.php:460 -#: ../../operation/tree.php:461 -#: ../../include/lib/Dashboard/Widgets/tree_view.php:653 -#: ../../include/lib/Dashboard/Widgets/tree_view.php:654 -#: ../../include/lib/Dashboard/Widgets/tree_view.php:655 -#: ../../include/functions_graph.php:2631 -#: ../../include/functions_reporting.php:11361 -#: ../../include/functions_reporting.php:11384 -#: ../../enterprise/operation/services/services.treeview_services.php:259 -#: ../../enterprise/operation/services/services.treeview_services.php:260 -#: ../../enterprise/operation/services/services.treeview_services.php:261 -#: ../../enterprise/include/functions_reporting_csv.php:983 -#: ../../godmode/groups/group_list.php:1047 -#: ../../godmode/groups/group_list.php:1048 -#: ../../godmode/groups/group_list.php:1049 -msgid "Fired alerts" -msgstr "Alertes dĆ©clenchĆ©es" - -#: ../../operation/tree.php:464 -#: ../../include/lib/Dashboard/Widgets/tree_view.php:658 -#: ../../enterprise/operation/services/services.treeview_services.php:264 -#: ../../enterprise/meta/monitoring/custom_fields_view.php:533 -#: ../../godmode/groups/group_list.php:1052 -msgid "Critical agents" -msgstr "Agents critiques" - -#: ../../operation/tree.php:465 -#: ../../include/lib/Dashboard/Widgets/tree_view.php:659 -#: ../../enterprise/operation/services/services.treeview_services.php:265 -#: ../../enterprise/include/functions_reporting_csv.php:983 -#: ../../enterprise/meta/monitoring/custom_fields_view.php:602 -#: ../../mobile/operation/groups.php:171 ../../godmode/groups/group_list.php:1053 -msgid "Critical modules" -msgstr "Modules en Ć©tat critique" - -#: ../../operation/tree.php:469 -#: ../../include/lib/Dashboard/Widgets/tree_view.php:663 -#: ../../enterprise/operation/services/services.treeview_services.php:269 -#: ../../enterprise/meta/monitoring/custom_fields_view.php:543 -#: ../../godmode/groups/group_list.php:1057 -msgid "Warning agents" -msgstr "Agents d'alerte" - -#: ../../operation/tree.php:470 -#: ../../include/lib/Dashboard/Widgets/tree_view.php:664 -#: ../../enterprise/operation/services/services.treeview_services.php:270 -#: ../../enterprise/include/functions_reporting_csv.php:983 -#: ../../enterprise/meta/monitoring/custom_fields_view.php:613 -#: ../../mobile/operation/groups.php:168 ../../godmode/groups/group_list.php:1058 -msgid "Warning modules" -msgstr "Modules en Ć©tat d'alerte" - -#: ../../operation/tree.php:474 -#: ../../include/lib/Dashboard/Widgets/tree_view.php:668 -#: ../../enterprise/operation/services/services.treeview_services.php:274 -#: ../../enterprise/meta/monitoring/custom_fields_view.php:563 -#: ../../godmode/groups/group_list.php:1062 -msgid "Unknown agents" -msgstr "Agents inconnus" - -#: ../../operation/tree.php:475 -#: ../../include/lib/Dashboard/Widgets/tree_view.php:669 -#: ../../enterprise/operation/services/services.treeview_services.php:275 -#: ../../enterprise/include/functions_reporting_csv.php:983 -#: ../../enterprise/meta/monitoring/custom_fields_view.php:635 -#: ../../mobile/operation/groups.php:159 ../../godmode/groups/group_list.php:1063 -msgid "Unknown modules" -msgstr "Modules inconnus" - -#: ../../operation/tree.php:479 -#: ../../include/lib/Dashboard/Widgets/tree_view.php:673 -#: ../../enterprise/operation/services/services.treeview_services.php:279 -#: ../../enterprise/meta/monitoring/custom_fields_view.php:573 -#: ../../godmode/groups/group_list.php:1067 -msgid "Not init agents" -msgstr "Agents non initialisĆ©s" - -#: ../../operation/tree.php:480 -#: ../../include/lib/Dashboard/Widgets/tree_view.php:674 -#: ../../enterprise/operation/services/services.treeview_services.php:280 -#: ../../enterprise/include/functions_reporting_csv.php:983 -#: ../../enterprise/meta/monitoring/custom_fields_view.php:646 -#: ../../mobile/operation/groups.php:162 ../../godmode/groups/group_list.php:1068 -msgid "Not init modules" -msgstr "Modules non initialisĆ©s" - -#: ../../operation/tree.php:484 -#: ../../include/lib/Dashboard/Widgets/tree_view.php:678 -#: ../../enterprise/operation/services/services.treeview_services.php:284 -#: ../../enterprise/meta/monitoring/custom_fields_view.php:553 -#: ../../godmode/groups/group_list.php:1072 -msgid "Normal agents" -msgstr "Agents normaux" - -#: ../../operation/tree.php:485 -#: ../../include/lib/Dashboard/Widgets/tree_view.php:679 -#: ../../enterprise/operation/services/services.treeview_services.php:285 -#: ../../enterprise/include/functions_reporting_csv.php:983 -#: ../../enterprise/meta/monitoring/custom_fields_view.php:624 -#: ../../mobile/operation/groups.php:165 ../../godmode/groups/group_list.php:1073 -msgid "Normal modules" -msgstr "Modules normaux" - -#: ../../operation/tree.php:539 ../../operation/agentes/status_monitor.php:2055 -#: ../../operation/agentes/estado_monitores.php:421 -#: ../../enterprise/operation/services/services.treeview_services.php:341 -msgid "Module: " -msgstr "Module : " - -#: ../../operation/tree.php:573 ../../operation/reporting/graph_viewer.php:423 -#: ../../operation/reporting/reporting_viewer.php:367 -#: ../../operation/reporting/reporting_viewer.php:387 -#: ../../operation/network/network_report.php:336 -#: ../../operation/network/network_usage_map.php:184 -#: ../../operation/events/events.php:2806 -#: ../../operation/events/events_list.php:2031 -#: ../../operation/netflow/nf_live_view.php:753 -#: ../../operation/agentes/estado_monitores.php:455 -#: ../../operation/agentes/stat_win.php:617 -#: ../../operation/agentes/datos_agente.php:312 -#: ../../operation/agentes/interface_traffic_graph_win.php:434 -#: ../../include/lib/Dashboard/Widgets/tree_view.php:683 -#: ../../enterprise/operation/log/log_viewer.php:981 -#: ../../enterprise/operation/log/log_viewer.php:993 -#: ../../enterprise/operation/services/services.treeview_services.php:375 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:4313 -#: ../../enterprise/meta/advanced/cron_main.php:530 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3962 -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:1169 -#: ../../enterprise/godmode/wizards/consoletask_js.php:41 -#: ../../extensions/insert_data.php:224 ../../godmode/setup/news.php:322 -#: ../../godmode/reporting/reporting_builder.item_editor.php:4852 -#: ../../godmode/agentes/planned_downtime.editor.php:1494 -#: ../../godmode/alerts/configure_alert_template.php:1456 -#: ../../godmode/alerts/configure_alert_template.php:1540 -msgid "Choose time" -msgstr "DĆ©finir temps" - -#: ../../operation/tree.php:574 ../../operation/reporting/graph_viewer.php:424 -#: ../../operation/reporting/reporting_viewer.php:368 -#: ../../operation/reporting/reporting_viewer.php:388 -#: ../../operation/network/network_report.php:337 -#: ../../operation/network/network_usage_map.php:185 -#: ../../operation/events/events.php:2807 -#: ../../operation/events/events_list.php:2032 -#: ../../operation/netflow/nf_live_view.php:754 -#: ../../operation/agentes/estado_monitores.php:456 -#: ../../operation/agentes/stat_win.php:618 -#: ../../operation/agentes/datos_agente.php:313 -#: ../../operation/agentes/interface_traffic_graph_win.php:435 -#: ../../include/lib/Dashboard/Widgets/tree_view.php:684 -#: ../../enterprise/operation/log/log_viewer.php:982 -#: ../../enterprise/operation/log/log_viewer.php:994 -#: ../../enterprise/operation/services/services.treeview_services.php:376 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3988 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:4314 -#: ../../enterprise/include/lib/Metaconsole/Node.php:591 -#: ../../enterprise/meta/advanced/cron_main.php:531 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3963 -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:1170 -#: ../../enterprise/godmode/wizards/consoletask_js.php:42 -#: ../../extensions/insert_data.php:225 ../../godmode/setup/news.php:323 -#: ../../godmode/reporting/reporting_builder.item_editor.php:4853 -#: ../../godmode/agentes/planned_downtime.editor.php:1495 -#: ../../godmode/alerts/configure_alert_template.php:1457 -#: ../../godmode/alerts/configure_alert_template.php:1541 -msgid "Time" -msgstr "Temps" - -#: ../../operation/tree.php:575 ../../operation/reporting/graph_viewer.php:425 -#: ../../operation/reporting/reporting_viewer.php:369 -#: ../../operation/reporting/reporting_viewer.php:389 -#: ../../operation/network/network_report.php:338 -#: ../../operation/network/network_usage_map.php:186 -#: ../../operation/events/events.php:2808 -#: ../../operation/events/events_list.php:2033 -#: ../../operation/netflow/nf_live_view.php:755 -#: ../../operation/agentes/estado_monitores.php:457 -#: ../../operation/agentes/stat_win.php:619 -#: ../../operation/agentes/datos_agente.php:314 -#: ../../operation/agentes/interface_traffic_graph_win.php:436 -#: ../../include/lib/Dashboard/Widgets/tree_view.php:685 -#: ../../include/functions_html.php:2271 -#: ../../enterprise/operation/log/log_viewer.php:983 -#: ../../enterprise/operation/log/log_viewer.php:995 -#: ../../enterprise/operation/services/services.treeview_services.php:377 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3989 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:4315 -#: ../../enterprise/meta/advanced/cron_main.php:532 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3964 -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:1171 -#: ../../enterprise/godmode/wizards/consoletask_js.php:43 -#: ../../extensions/insert_data.php:226 ../../godmode/setup/news.php:324 -#: ../../godmode/reporting/reporting_builder.item_editor.php:4854 -#: ../../godmode/agentes/planned_downtime.editor.php:1496 -#: ../../godmode/alerts/configure_alert_template.php:1458 -#: ../../godmode/alerts/configure_alert_template.php:1542 -msgid "Hour" -msgstr "Heure" - -#: ../../operation/tree.php:576 ../../operation/reporting/graph_viewer.php:426 -#: ../../operation/reporting/reporting_viewer.php:370 -#: ../../operation/reporting/reporting_viewer.php:390 -#: ../../operation/network/network_report.php:339 -#: ../../operation/network/network_usage_map.php:187 -#: ../../operation/events/events.php:2809 -#: ../../operation/events/events_list.php:2034 -#: ../../operation/netflow/nf_live_view.php:756 -#: ../../operation/agentes/estado_monitores.php:458 -#: ../../operation/agentes/stat_win.php:620 -#: ../../operation/agentes/datos_agente.php:315 -#: ../../operation/agentes/interface_traffic_graph_win.php:437 -#: ../../include/lib/Dashboard/Widgets/tree_view.php:686 -#: ../../include/functions_html.php:2272 -#: ../../enterprise/operation/log/log_viewer.php:984 -#: ../../enterprise/operation/log/log_viewer.php:996 -#: ../../enterprise/operation/services/services.treeview_services.php:378 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3990 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:4316 -#: ../../enterprise/meta/advanced/cron_main.php:533 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3965 -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:1172 -#: ../../enterprise/godmode/wizards/consoletask_js.php:44 -#: ../../extensions/insert_data.php:227 ../../godmode/setup/news.php:325 -#: ../../godmode/reporting/reporting_builder.item_editor.php:4855 -#: ../../godmode/agentes/planned_downtime.editor.php:1497 -#: ../../godmode/alerts/configure_alert_template.php:1459 -#: ../../godmode/alerts/configure_alert_template.php:1543 -msgid "Minute" -msgstr "Minute" - -#: ../../operation/tree.php:577 ../../operation/reporting/graph_viewer.php:427 -#: ../../operation/reporting/reporting_viewer.php:371 -#: ../../operation/reporting/reporting_viewer.php:391 -#: ../../operation/network/network_report.php:340 -#: ../../operation/network/network_usage_map.php:188 -#: ../../operation/events/events.php:2810 -#: ../../operation/events/events_list.php:2035 -#: ../../operation/netflow/nf_live_view.php:757 -#: ../../operation/agentes/estado_monitores.php:459 -#: ../../operation/agentes/stat_win.php:621 -#: ../../operation/agentes/datos_agente.php:316 -#: ../../operation/agentes/interface_traffic_graph_win.php:438 -#: ../../include/lib/Dashboard/Widgets/tree_view.php:687 -#: ../../enterprise/operation/log/log_viewer.php:985 -#: ../../enterprise/operation/log/log_viewer.php:997 -#: ../../enterprise/operation/services/services.treeview_services.php:379 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3991 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:4317 -#: ../../enterprise/meta/advanced/cron_main.php:534 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3966 -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:1173 -#: ../../enterprise/godmode/wizards/consoletask_js.php:45 -#: ../../extensions/insert_data.php:228 ../../godmode/setup/news.php:326 -#: ../../godmode/reporting/reporting_builder.item_editor.php:4856 -#: ../../godmode/agentes/planned_downtime.editor.php:1498 -#: ../../godmode/alerts/configure_alert_template.php:1460 -#: ../../godmode/alerts/configure_alert_template.php:1544 -msgid "Second" -msgstr "Seconde" - -#: ../../operation/tree.php:578 ../../operation/reporting/graph_viewer.php:428 -#: ../../operation/reporting/reporting_viewer.php:372 -#: ../../operation/reporting/reporting_viewer.php:392 -#: ../../operation/network/network_report.php:341 -#: ../../operation/network/network_usage_map.php:189 -#: ../../operation/events/events.php:2811 -#: ../../operation/events/events_list.php:2036 -#: ../../operation/netflow/nf_live_view.php:758 -#: ../../operation/agentes/estado_monitores.php:460 -#: ../../operation/agentes/stat_win.php:622 -#: ../../operation/agentes/datos_agente.php:317 -#: ../../operation/agentes/interface_traffic_graph_win.php:439 -#: ../../include/lib/Dashboard/Widgets/tree_view.php:688 -#: ../../include/functions.php:505 ../../include/functions.php:636 -#: ../../enterprise/operation/log/log_viewer.php:986 -#: ../../enterprise/operation/log/log_viewer.php:998 -#: ../../enterprise/operation/services/services.treeview_services.php:380 -#: ../../enterprise/operation/agentes/agent_inventory.php:133 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3992 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:4318 -#: ../../enterprise/meta/advanced/cron_main.php:535 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3967 -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:1174 -#: ../../enterprise/godmode/wizards/consoletask_js.php:46 -#: ../../extensions/insert_data.php:229 ../../godmode/setup/news.php:327 -#: ../../godmode/reporting/reporting_builder.item_editor.php:4857 -#: ../../godmode/agentes/planned_downtime.editor.php:1499 -#: ../../godmode/alerts/configure_alert_template.php:1461 -#: ../../godmode/alerts/configure_alert_template.php:1545 -msgid "Now" -msgstr "Maintenant" - -#: ../../operation/tree.php:579 ../../operation/reporting/graph_viewer.php:429 -#: ../../operation/reporting/reporting_viewer.php:373 -#: ../../operation/reporting/reporting_viewer.php:393 -#: ../../operation/network/network_report.php:342 -#: ../../operation/network/network_usage_map.php:190 -#: ../../operation/events/events.php:2812 -#: ../../operation/events/events_list.php:2037 -#: ../../operation/netflow/nf_live_view.php:759 -#: ../../operation/agentes/estado_monitores.php:461 -#: ../../operation/agentes/stat_win.php:623 -#: ../../operation/agentes/datos_agente.php:318 -#: ../../operation/agentes/interface_traffic_graph_win.php:440 -#: ../../include/class/WelcomeWindow.class.php:159 -#: ../../include/lib/Dashboard/Widgets/tree_view.php:689 -#: ../../include/functions_snmp_browser.php:600 -#: ../../enterprise/operation/log/log_viewer.php:987 -#: ../../enterprise/operation/log/log_viewer.php:999 -#: ../../enterprise/operation/services/services.treeview_services.php:381 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3993 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:4319 -#: ../../enterprise/meta/advanced/cron_main.php:536 -#: ../../enterprise/godmode/setup/setup.php:736 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3968 -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:1175 -#: ../../enterprise/godmode/wizards/consoletask_js.php:47 -#: ../../extensions/insert_data.php:230 ../../mobile/include/ui.class.php:691 -#: ../../mobile/include/ui.class.php:749 ../../godmode/setup/news.php:328 -#: ../../godmode/reporting/reporting_builder.item_editor.php:4858 -#: ../../godmode/wizards/HostDevices.class.php:796 -#: ../../godmode/agentes/planned_downtime.editor.php:1500 -#: ../../godmode/alerts/configure_alert_template.php:1462 -#: ../../godmode/alerts/configure_alert_template.php:1546 -msgid "Close" -msgstr "Fermer" - -#: ../../operation/search_policies.php:37 -msgid "Id_group" -msgstr "Id_group" - -#: ../../operation/search_policies.php:50 -#: ../../enterprise/meta/agentsearch.php:409 -#: ../../enterprise/godmode/policies/policies.php:471 -msgid "Policy updated" -msgstr "Politique mise Ć  jour" - -#: ../../operation/search_policies.php:58 -#: ../../enterprise/meta/agentsearch.php:417 -#: ../../enterprise/godmode/policies/policies.php:479 -msgid "Pending update policy only database" -msgstr "" -"Mise Ć  jour de la politique en attente, seulement pour modification sur la " -"base de donnĆ©es" - -#: ../../operation/search_policies.php:66 -#: ../../enterprise/meta/agentsearch.php:425 -#: ../../enterprise/godmode/policies/policies.php:487 -msgid "Pending update policy" -msgstr "Mise Ć  jour de la politique en attente" - -#: ../../operation/search_modules.php:32 -#: ../../operation/agentes/alerts_status.php:548 -#: ../../operation/agentes/alerts_status.php:583 -#: ../../operation/agentes/alerts_status.php:618 -#: ../../operation/agentes/alerts_status.php:650 -#: ../../operation/agentes/estado_monitores.php:125 -#: ../../operation/agentes/exportdata.csv.php:74 -#: ../../operation/agentes/exportdata.php:83 -#: ../../operation/agentes/exportdata.excel.php:74 -#: ../../operation/search_alerts.php:35 -#: ../../include/functions_visual_map_editor.php:497 -#: ../../include/functions_reports.php:1344 -#: ../../include/ajax/alert_list.ajax.php:279 -#: ../../include/ajax/alert_list.ajax.php:304 -#: ../../include/ajax/alert_list.ajax.php:467 -#: ../../include/class/AgentsAlerts.class.php:412 -#: ../../include/class/AgentsAlerts.class.php:891 -#: ../../include/lib/Dashboard/Widgets/sla_percent.php:315 -#: ../../include/lib/Dashboard/Widgets/module_table_value.php:283 -#: ../../include/lib/Dashboard/Widgets/module_value.php:308 -#: ../../include/lib/Dashboard/Widgets/single_graph.php:279 -#: ../../include/lib/Dashboard/Widgets/module_status.php:324 -#: ../../include/lib/Dashboard/Widgets/graph_module_histogram.php:304 -#: ../../include/lib/Dashboard/Widgets/tree_view.php:682 -#: ../../include/lib/Dashboard/Widgets/module_icon.php:334 -#: ../../include/lib/Dashboard/Widgets/top_n.php:221 -#: ../../include/functions_treeview.php:64 ../../include/functions_graph.php:5450 -#: ../../include/functions_reporting.php:6662 -#: ../../include/rest-api/models/VisualConsole/Items/BasicChart.php:299 -#: ../../include/rest-api/models/VisualConsole/Items/DonutGraph.php:242 -#: ../../include/rest-api/models/VisualConsole/Items/StaticGraph.php:380 -#: ../../include/rest-api/models/VisualConsole/Items/ColorCloud.php:411 -#: ../../include/rest-api/models/VisualConsole/Items/SimpleValue.php:349 -#: ../../include/rest-api/models/VisualConsole/Items/BarsGraph.php:529 -#: ../../include/rest-api/models/VisualConsole/Items/Percentile.php:563 -#: ../../include/rest-api/models/VisualConsole/Items/ModuleGraph.php:604 -#: ../../include/rest-api/models/VisualConsole/Items/Odometer.php:385 -#: ../../include/rest-api/models/VisualConsole/Items/EventsHistory.php:252 -#: ../../include/functions_reporting_html.php:543 -#: ../../include/functions_reporting_html.php:939 -#: ../../include/functions_reporting_html.php:1777 -#: ../../include/functions_reporting_html.php:2105 -#: ../../include/functions_reporting_html.php:2207 -#: ../../include/functions_reporting_html.php:3181 -#: ../../include/functions_reporting_html.php:3564 -#: ../../include/functions_reporting_html.php:3572 -#: ../../include/functions_reporting_html.php:3581 -#: ../../include/functions_reporting_html.php:3593 -#: ../../include/functions_reporting_html.php:3749 -#: ../../include/functions_reporting_html.php:3877 -#: ../../include/functions_reporting_html.php:3971 -#: ../../include/functions_reporting_html.php:4690 -#: ../../include/functions_reporting_html.php:4738 -#: ../../enterprise/operation/agentes/policy_view.php:258 -#: ../../enterprise/operation/agentes/agent_inventory.php:116 -#: ../../enterprise/operation/inventory/inventory.php:357 -#: ../../enterprise/include/functions_reporting_csv.php:491 -#: ../../enterprise/include/functions_reporting_csv.php:776 -#: ../../enterprise/include/functions_reporting_csv.php:802 -#: ../../enterprise/include/functions_reporting_csv.php:915 -#: ../../enterprise/include/functions_reporting_csv.php:954 -#: ../../enterprise/include/functions_reporting_csv.php:1014 -#: ../../enterprise/include/functions_reporting_csv.php:1030 -#: ../../enterprise/include/functions_reporting_csv.php:1184 -#: ../../enterprise/include/functions_reporting_csv.php:1215 -#: ../../enterprise/include/functions_reporting_csv.php:1270 -#: ../../enterprise/include/functions_reporting_csv.php:1325 -#: ../../enterprise/include/functions_reporting_csv.php:1374 -#: ../../enterprise/include/functions_reporting_csv.php:1429 -#: ../../enterprise/include/functions_reporting_csv.php:1458 -#: ../../enterprise/include/functions_reporting_csv.php:1503 -#: ../../enterprise/include/functions_reporting_csv.php:1549 -#: ../../enterprise/include/functions_reporting_csv.php:1622 -#: ../../enterprise/include/functions_reporting_csv.php:1741 -#: ../../enterprise/include/functions_reporting_csv.php:1976 -#: ../../enterprise/include/functions_reporting_csv.php:2049 -#: ../../enterprise/include/functions_reporting_csv.php:2281 -#: ../../enterprise/include/functions_reporting_csv.php:2317 -#: ../../enterprise/include/functions_reporting_csv.php:2465 -#: ../../enterprise/include/functions_reporting_csv.php:2737 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:925 -#: ../../enterprise/include/functions_services.php:1779 -#: ../../enterprise/include/functions_events.php:157 -#: ../../enterprise/include/functions_inventory.php:881 -#: ../../enterprise/include/functions_inventory.php:937 -#: ../../enterprise/include/functions_reporting.php:1853 -#: ../../enterprise/include/functions_reporting.php:2892 -#: ../../enterprise/include/functions_reporting.php:3879 -#: ../../enterprise/include/functions_reporting.php:4903 -#: ../../enterprise/include/functions_reporting_pdf.php:525 -#: ../../enterprise/include/functions_reporting_pdf.php:533 -#: ../../enterprise/include/functions_reporting_pdf.php:541 -#: ../../enterprise/include/functions_reporting_pdf.php:557 -#: ../../enterprise/include/functions_ui.php:47 -#: ../../enterprise/meta/include/functions_wizard_meta.php:3512 -#: ../../enterprise/meta/monitoring/wizard/wizard.create_module.php:222 -#: ../../enterprise/meta/monitoring/wizard/wizard.manage_alert.php:213 -#: ../../enterprise/extensions/disabled/check_acls.php:133 -#: ../../enterprise/godmode/services/services.elements.php:93 -#: ../../enterprise/godmode/services/services.elements.php:157 -#: ../../enterprise/godmode/services/services.elements.php:275 -#: ../../enterprise/godmode/reporting/reporting_builder.template_list_item.php:239 -#: ../../enterprise/godmode/reporting/graph_template_item_editor.php:185 -#: ../../enterprise/godmode/reporting/graph_template_item_editor.php:240 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:317 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1394 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2055 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3504 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3717 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3735 -#: ../../enterprise/godmode/agentes/agent_disk_conf_editor.php:211 -#: ../../enterprise/godmode/alerts/alert_inventory_list.php:371 -#: ../../enterprise/godmode/policies/policy_linking.php:151 -#: ../../enterprise/godmode/policies/policy_alerts.php:352 -#: ../../enterprise/godmode/policies/policy_alerts.php:567 -#: ../../extensions/agents_modules.php:444 ../../extensions/insert_data.php:175 -#: ../../mobile/operation/alerts.php:338 ../../godmode/servers/plugin.php:88 -#: ../../godmode/reporting/reporting_builder.list_items.php:410 -#: ../../godmode/reporting/create_container.php:410 -#: ../../godmode/reporting/create_container.php:560 -#: ../../godmode/reporting/create_container.php:628 -#: ../../godmode/reporting/visual_console_builder.elements.php:105 -#: ../../godmode/reporting/reporting_builder.item_editor.php:197 -#: ../../godmode/reporting/reporting_builder.item_editor.php:823 -#: ../../godmode/reporting/reporting_builder.item_editor.php:1613 -#: ../../godmode/reporting/reporting_builder.item_editor.php:3788 -#: ../../godmode/reporting/reporting_builder.item_editor.php:4304 -#: ../../godmode/reporting/reporting_builder.item_editor.php:4328 -#: ../../godmode/reporting/graph_builder.graph_editor.php:213 -#: ../../godmode/reporting/visual_console_builder.wizard.php:449 -#: ../../godmode/reporting/visual_console_builder.wizard.php:770 -#: ../../godmode/massive/massive_standby_alerts.php:223 -#: ../../godmode/massive/massive_standby_alerts.php:258 -#: ../../godmode/massive/massive_edit_agents.php:674 -#: ../../godmode/massive/massive_edit_agents.php:1026 -#: ../../godmode/massive/massive_enable_disable_alerts.php:195 -#: ../../godmode/massive/massive_enable_disable_alerts.php:230 -#: ../../godmode/agentes/module_manager_editor_prediction.php:154 -#: ../../godmode/agentes/module_manager_editor_common.php:1260 -#: ../../godmode/agentes/module_manager_editor_common.php:1304 -#: ../../godmode/agentes/agent_manager.php:520 -#: ../../godmode/agentes/agent_manager.php:592 -#: ../../godmode/agentes/planned_downtime.editor.php:1007 -#: ../../godmode/agentes/planned_downtime.list.php:357 -#: ../../godmode/alerts/alert_list.list.php:479 -#: ../../godmode/alerts/alert_list.list.php:737 -#: ../../godmode/alerts/alert_list.builder.php:70 -#: ../../godmode/alerts/alert_view.php:91 -msgid "Module" -msgstr "Module" - -#: ../../operation/search_modules.php:33 ../../operation/gis_maps/ajax.php:236 -#: ../../operation/gis_maps/ajax.php:269 ../../operation/search_agents.php:42 -#: ../../operation/search_agents.php:48 -#: ../../operation/events/sound_events.php:165 -#: ../../operation/events/events.build_table.php:80 -#: ../../operation/events/events.php:1953 -#: ../../operation/agentes/status_monitor.php:1307 -#: ../../operation/agentes/alerts_status.php:547 -#: ../../operation/agentes/alerts_status.php:617 -#: ../../operation/agentes/estado_monitores.php:123 -#: ../../operation/agentes/interface_view.functions.php:480 -#: ../../operation/agentes/exportdata.csv.php:74 -#: ../../operation/agentes/exportdata.php:83 -#: ../../operation/agentes/exportdata.excel.php:74 -#: ../../operation/agentes/estado_agente.php:739 -#: ../../operation/agentes/ver_agente.php:1169 -#: ../../operation/search_alerts.php:34 ../../include/functions_gis.php:229 -#: ../../include/functions_visual_map_editor.php:422 -#: ../../include/functions_visual_map_editor.php:455 -#: ../../include/functions_reports.php:1313 -#: ../../include/ajax/alert_list.ajax.php:446 -#: ../../include/ajax/heatmap.ajax.php:238 -#: ../../include/ajax/heatmap.ajax.php:277 -#: ../../include/ajax/heatmap.ajax.php:312 -#: ../../include/class/AgentsAlerts.class.php:410 -#: ../../include/class/AgentsAlerts.class.php:962 -#: ../../include/class/NetworkMap.class.php:2835 -#: ../../include/class/NetworkMap.class.php:2884 -#: ../../include/class/NetworkMap.class.php:3162 -#: ../../include/lib/Dashboard/Widgets/sla_percent.php:297 -#: ../../include/lib/Dashboard/Widgets/module_table_value.php:265 -#: ../../include/lib/Dashboard/Widgets/module_value.php:290 -#: ../../include/lib/Dashboard/Widgets/wux_transaction.php:239 -#: ../../include/lib/Dashboard/Widgets/single_graph.php:261 -#: ../../include/lib/Dashboard/Widgets/module_status.php:306 -#: ../../include/lib/Dashboard/Widgets/graph_module_histogram.php:286 -#: ../../include/lib/Dashboard/Widgets/wux_transaction_stats.php:250 -#: ../../include/lib/Dashboard/Widgets/module_icon.php:316 -#: ../../include/lib/Dashboard/Widgets/top_n.php:206 -#: ../../include/functions_graph.php:5343 -#: ../../include/functions_snmp_browser.php:1625 -#: ../../include/functions_reporting.php:6661 -#: ../../include/rest-api/models/VisualConsole/Items/BasicChart.php:281 -#: ../../include/rest-api/models/VisualConsole/Items/DonutGraph.php:224 -#: ../../include/rest-api/models/VisualConsole/Items/StaticGraph.php:363 -#: ../../include/rest-api/models/VisualConsole/Items/ColorCloud.php:394 -#: ../../include/rest-api/models/VisualConsole/Items/SimpleValue.php:332 -#: ../../include/rest-api/models/VisualConsole/Items/BarsGraph.php:511 -#: ../../include/rest-api/models/VisualConsole/Items/Percentile.php:546 -#: ../../include/rest-api/models/VisualConsole/Items/ModuleGraph.php:585 -#: ../../include/rest-api/models/VisualConsole/Items/Odometer.php:368 -#: ../../include/rest-api/models/VisualConsole/Items/EventsHistory.php:235 -#: ../../include/functions_reporting_html.php:542 -#: ../../include/functions_reporting_html.php:938 -#: ../../include/functions_reporting_html.php:1050 -#: ../../include/functions_reporting_html.php:1058 -#: ../../include/functions_reporting_html.php:1776 -#: ../../include/functions_reporting_html.php:2104 -#: ../../include/functions_reporting_html.php:2206 -#: ../../include/functions_reporting_html.php:3046 -#: ../../include/functions_reporting_html.php:3180 -#: ../../include/functions_reporting_html.php:3483 -#: ../../include/functions_reporting_html.php:3563 -#: ../../include/functions_reporting_html.php:3571 -#: ../../include/functions_reporting_html.php:3580 -#: ../../include/functions_reporting_html.php:3592 -#: ../../include/functions_reporting_html.php:3748 -#: ../../include/functions_reporting_html.php:3871 -#: ../../include/functions_reporting_html.php:3965 -#: ../../include/functions_reporting_html.php:4689 -#: ../../include/functions_reporting_html.php:4737 -#: ../../include/functions_reporting_html.php:4775 -#: ../../include/functions_reporting_html.php:5084 -#: ../../include/functions_reporting_html.php:5124 -#: ../../include/functions_reporting_html.php:5374 -#: ../../enterprise/tools/ipam/ipam_ajax.php:379 -#: ../../enterprise/tools/ipam/ipam_network.php:397 -#: ../../enterprise/operation/log/log_viewer.php:632 -#: ../../enterprise/operation/agentes/tag_view.php:599 -#: ../../enterprise/operation/agentes/manage_transmap_creation.php:187 -#: ../../enterprise/operation/agentes/manage_transmap_creation.php:365 -#: ../../enterprise/operation/agentes/manage_transmap_creation.php:491 -#: ../../enterprise/operation/inventory/inventory.php:401 +#: ../../enterprise/meta/monitoring/custom_fields_csv.php:99 +#: ../../enterprise/meta/monitoring/custom_fields_view.php:704 +#: ../../enterprise/meta/monitoring/wizard/wizard.manage_alert.php:205 +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:279 +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:374 +#: ../../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:3502 +#: ../../enterprise/meta/agentsearch.php:134 +#: ../../enterprise/godmode/modules/manage_inventory_modules.php:299 +#: ../../enterprise/godmode/agentes/collections.agents.php:94 +#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:85 +#: ../../enterprise/godmode/policies/policy_linking.php:150 +#: ../../enterprise/godmode/massive/massive_add_modules_policy.php:136 +#: ../../enterprise/godmode/services/services.elements.php:94 +#: ../../enterprise/godmode/services/services.elements.php:132 +#: ../../enterprise/godmode/services/services.elements.php:270 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:316 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1396 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2034 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3512 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3723 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3741 +#: ../../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:524 +#: ../../enterprise/include/functions_reporting_pdf.php:532 +#: ../../enterprise/include/functions_reporting_pdf.php:540 +#: ../../enterprise/include/functions_reporting_pdf.php:556 +#: ../../enterprise/include/functions_reporting_pdf.php:714 #: ../../enterprise/include/functions_reporting_csv.php:490 #: ../../enterprise/include/functions_reporting_csv.php:776 #: ../../enterprise/include/functions_reporting_csv.php:802 @@ -6816,449 +8796,4739 @@ msgstr "Module" #: ../../enterprise/include/functions_reporting_csv.php:2518 #: ../../enterprise/include/functions_reporting_csv.php:2736 #: ../../enterprise/include/class/LogSource.class.php:627 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:924 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:923 +#: ../../enterprise/include/functions_reporting.php:1853 +#: ../../enterprise/include/functions_reporting.php:2186 +#: ../../enterprise/include/functions_reporting.php:2217 +#: ../../enterprise/include/functions_reporting.php:2235 +#: ../../enterprise/include/functions_reporting.php:2892 +#: ../../enterprise/include/functions_reporting.php:3879 +#: ../../enterprise/include/functions_reporting.php:4903 #: ../../enterprise/include/functions_services.php:1666 -#: ../../enterprise/include/functions_events.php:147 -#: ../../enterprise/include/functions_inventory.php:393 -#: ../../enterprise/include/functions_inventory.php:880 -#: ../../enterprise/include/functions_inventory.php:936 -#: ../../enterprise/include/functions_log.php:279 -#: ../../enterprise/include/functions_log.php:282 -#: ../../enterprise/include/functions_reporting.php:1852 -#: ../../enterprise/include/functions_reporting.php:2185 -#: ../../enterprise/include/functions_reporting.php:2216 -#: ../../enterprise/include/functions_reporting.php:2234 -#: ../../enterprise/include/functions_reporting.php:2891 -#: ../../enterprise/include/functions_reporting.php:3878 -#: ../../enterprise/include/functions_reporting.php:4902 -#: ../../enterprise/include/functions_reporting_pdf.php:524 -#: ../../enterprise/include/functions_reporting_pdf.php:532 -#: ../../enterprise/include/functions_reporting_pdf.php:540 -#: ../../enterprise/include/functions_reporting_pdf.php:556 -#: ../../enterprise/include/functions_reporting_pdf.php:714 -#: ../../enterprise/meta/include/functions_wizard_meta.php:3505 -#: ../../enterprise/meta/monitoring/custom_fields_csv.php:99 -#: ../../enterprise/meta/monitoring/custom_fields_view.php:704 -#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:282 -#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:377 -#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:444 -#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:712 -#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:791 -#: ../../enterprise/meta/monitoring/wizard/wizard.manage_alert.php:205 -#: ../../enterprise/meta/agentsearch.php:134 -#: ../../enterprise/godmode/modules/manage_inventory_modules.php:299 -#: ../../enterprise/godmode/services/services.elements.php:94 -#: ../../enterprise/godmode/services/services.elements.php:133 -#: ../../enterprise/godmode/services/services.elements.php:274 -#: ../../enterprise/godmode/reporting/reporting_builder.template_list_item.php:220 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:316 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1393 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2031 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3501 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3712 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3730 -#: ../../enterprise/godmode/massive/massive_add_modules_policy.php:136 -#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:85 -#: ../../enterprise/godmode/agentes/collections.agents.php:94 -#: ../../enterprise/godmode/policies/policy_linking.php:150 -#: ../../extensions/insert_data.php:158 ../../mobile/operation/modules.php:597 -#: ../../mobile/operation/home.php:96 ../../mobile/operation/alerts.php:335 -#: ../../mobile/operation/events.php:553 ../../mobile/operation/agents.php:93 -#: ../../mobile/operation/agents.php:403 ../../godmode/servers/plugin.php:87 +#: ../../enterprise/include/functions_events.php:80 +#: ../../enterprise/operation/agentes/tag_view.php:599 +#: ../../enterprise/operation/agentes/manage_transmap_creation.php:187 +#: ../../enterprise/operation/agentes/manage_transmap_creation.php:365 +#: ../../enterprise/operation/agentes/manage_transmap_creation.php:491 +#: ../../enterprise/operation/log/log_viewer.php:632 +#: ../../enterprise/operation/inventory/inventory.php:401 +#: ../../enterprise/tools/ipam/ipam_network.php:397 +#: ../../enterprise/tools/ipam/ipam_ajax.php:379 +#: ../../extensions/insert_data.php:158 +#: ../../godmode/agentes/status_monitor_custom_fields.php:77 +#: ../../godmode/agentes/status_monitor_custom_fields.php:143 +#: ../../godmode/agentes/module_manager_editor_prediction.php:126 +#: ../../godmode/agentes/planned_downtime.list.php:353 +#: ../../godmode/agentes/module_manager_editor_common.php:1250 +#: ../../godmode/agentes/module_manager_editor_common.php:1303 #: ../../godmode/gis_maps/configure_gis_map.php:581 -#: ../../godmode/reporting/reporting_builder.list_items.php:391 -#: ../../godmode/reporting/create_container.php:387 -#: ../../godmode/reporting/create_container.php:554 -#: ../../godmode/reporting/create_container.php:627 -#: ../../godmode/reporting/visual_console_builder.elements.php:104 -#: ../../godmode/reporting/reporting_builder.item_editor.php:196 -#: ../../godmode/reporting/reporting_builder.item_editor.php:822 -#: ../../godmode/reporting/reporting_builder.item_editor.php:1556 -#: ../../godmode/reporting/reporting_builder.item_editor.php:3783 -#: ../../godmode/reporting/reporting_builder.item_editor.php:4301 -#: ../../godmode/reporting/reporting_builder.item_editor.php:4325 -#: ../../godmode/reporting/graph_builder.graph_editor.php:212 -#: ../../godmode/reporting/visual_console_builder.wizard.php:450 -#: ../../godmode/reporting/visual_console_builder.wizard.php:738 -#: ../../godmode/reporting/visual_console_builder.wizard.php:761 #: ../../godmode/massive/massive_copy_modules.php:131 #: ../../godmode/massive/massive_copy_modules.php:295 #: ../../godmode/massive/massive_standby_alerts.php:223 #: ../../godmode/massive/massive_standby_alerts.php:258 #: ../../godmode/massive/massive_enable_disable_alerts.php:195 #: ../../godmode/massive/massive_enable_disable_alerts.php:230 -#: ../../godmode/agentes/module_manager_editor_prediction.php:126 -#: ../../godmode/agentes/module_manager_editor_common.php:1250 -#: ../../godmode/agentes/module_manager_editor_common.php:1303 -#: ../../godmode/agentes/status_monitor_custom_fields.php:77 -#: ../../godmode/agentes/status_monitor_custom_fields.php:143 -#: ../../godmode/agentes/planned_downtime.list.php:353 -#: ../../godmode/alerts/alert_list.list.php:477 -#: ../../godmode/alerts/alert_list.list.php:727 -#: ../../godmode/alerts/alert_list.builder.php:56 +#: ../../godmode/alerts/alert_list.list.php:492 +#: ../../godmode/alerts/alert_list.list.php:742 #: ../../godmode/alerts/alert_view.php:87 +#: ../../godmode/alerts/alert_list.builder.php:56 +#: ../../godmode/reporting/reporting_builder.list_items.php:391 +#: ../../godmode/reporting/create_container.php:387 +#: ../../godmode/reporting/create_container.php:554 +#: ../../godmode/reporting/create_container.php:627 +#: ../../godmode/reporting/graph_builder.graph_editor.php:212 +#: ../../godmode/reporting/reporting_builder.item_editor.php:200 +#: ../../godmode/reporting/reporting_builder.item_editor.php:872 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1147 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1652 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3896 +#: ../../godmode/reporting/reporting_builder.item_editor.php:4414 +#: ../../godmode/reporting/reporting_builder.item_editor.php:4438 +#: ../../godmode/reporting/visual_console_builder.elements.php:104 +#: ../../godmode/reporting/visual_console_builder.wizard.php:450 +#: ../../godmode/reporting/visual_console_builder.wizard.php:738 +#: ../../godmode/reporting/visual_console_builder.wizard.php:761 +#: ../../godmode/servers/plugin.php:87 ../../mobile/operation/agents.php:93 +#: ../../mobile/operation/agents.php:403 ../../mobile/operation/modules.php:597 +#: ../../mobile/operation/home.php:96 ../../mobile/operation/alerts.php:335 +#: ../../mobile/operation/events.php:841 +#: ../../include/functions_visual_map_editor.php:422 +#: ../../include/functions_visual_map_editor.php:455 +#: ../../include/functions_reporting_html.php:542 +#: ../../include/functions_reporting_html.php:938 +#: ../../include/functions_reporting_html.php:1050 +#: ../../include/functions_reporting_html.php:1058 +#: ../../include/functions_reporting_html.php:1812 +#: ../../include/functions_reporting_html.php:2140 +#: ../../include/functions_reporting_html.php:2242 +#: ../../include/functions_reporting_html.php:3091 +#: ../../include/functions_reporting_html.php:3225 +#: ../../include/functions_reporting_html.php:3528 +#: ../../include/functions_reporting_html.php:3608 +#: ../../include/functions_reporting_html.php:3616 +#: ../../include/functions_reporting_html.php:3625 +#: ../../include/functions_reporting_html.php:3637 +#: ../../include/functions_reporting_html.php:3793 +#: ../../include/functions_reporting_html.php:3916 +#: ../../include/functions_reporting_html.php:4010 +#: ../../include/functions_reporting_html.php:4734 +#: ../../include/functions_reporting_html.php:4782 +#: ../../include/functions_reporting_html.php:4821 +#: ../../include/functions_reporting_html.php:5130 +#: ../../include/functions_reporting_html.php:5170 +#: ../../include/functions_reporting_html.php:5420 +#: ../../include/ajax/heatmap.ajax.php:238 ../../include/ajax/heatmap.ajax.php:277 +#: ../../include/ajax/heatmap.ajax.php:312 +#: ../../include/ajax/alert_list.ajax.php:459 ../../include/functions_graph.php:5284 +#: ../../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/Odometer.php:368 +#: ../../include/functions_reports.php:1313 +#: ../../include/class/NetworkMap.class.php:2835 +#: ../../include/class/NetworkMap.class.php:2884 +#: ../../include/class/NetworkMap.class.php:3162 +#: ../../include/class/AgentsAlerts.class.php:410 +#: ../../include/class/AgentsAlerts.class.php:962 +#: ../../include/functions_reporting.php:6838 +#: ../../include/lib/Dashboard/Widgets/sla_percent.php:297 +#: ../../include/lib/Dashboard/Widgets/BlockHistogram.php:279 +#: ../../include/lib/Dashboard/Widgets/wux_transaction_stats.php:250 +#: ../../include/lib/Dashboard/Widgets/module_icon.php:316 +#: ../../include/lib/Dashboard/Widgets/module_value.php:290 +#: ../../include/lib/Dashboard/Widgets/wux_transaction.php:239 +#: ../../include/lib/Dashboard/Widgets/ColorModuleTabs.php:255 +#: ../../include/lib/Dashboard/Widgets/module_table_value.php:265 +#: ../../include/lib/Dashboard/Widgets/graph_module_histogram.php:286 +#: ../../include/lib/Dashboard/Widgets/module_status.php:306 +#: ../../include/lib/Dashboard/Widgets/single_graph.php:261 +#: ../../include/lib/Dashboard/Widgets/top_n.php:206 +#: ../../include/functions_snmp_browser.php:1633 +#: ../../operation/search_agents.php:42 ../../operation/search_agents.php:48 +#: ../../operation/agentes/exportdata.csv.php:74 +#: ../../operation/agentes/estado_agente.php:739 +#: ../../operation/agentes/interface_view.functions.php:480 +#: ../../operation/agentes/exportdata.php:83 +#: ../../operation/agentes/status_monitor.php:1307 +#: ../../operation/agentes/estado_monitores.php:123 +#: ../../operation/agentes/ver_agente.php:1169 +#: ../../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:2455 msgid "Agent" msgstr "Agent" -#: ../../operation/search_modules.php:34 -#: ../../operation/events/sound_events.php:127 -#: ../../operation/netflow/nf_live_view.php:319 -#: ../../operation/agentes/estado_agente.php:757 -#: ../../operation/agentes/ver_agente.php:1153 -#: ../../operation/incidents/configure_integriaims_incident.php:234 -#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:326 -#: ../../include/functions_visual_map_editor.php:702 -#: ../../include/functions_visual_map_editor.php:720 -#: ../../include/functions_visual_map_editor.php:848 -#: ../../include/functions_reports.php:1067 ../../include/ajax/module.php:977 -#: ../../include/ajax/heatmap.ajax.php:75 -#: ../../include/class/ModuleTemplates.class.php:1209 -#: ../../include/class/AgentWizard.class.php:1182 -#: ../../include/class/AgentWizard.class.php:4028 -#: ../../include/class/CalendarManager.class.php:977 -#: ../../include/class/CalendarManager.class.php:1011 -#: ../../include/lib/Dashboard/Widgets/custom_graph.php:327 -#: ../../include/lib/Dashboard/Widgets/clock.php:221 -#: ../../include/lib/Dashboard/Widgets/service_view.php:251 -#: ../../include/functions_events.php:2607 -#: ../../include/functions_events.php:5027 -#: ../../include/functions_snmp_browser.php:564 -#: ../../include/rest-api/models/VisualConsole/Items/Percentile.php:467 -#: ../../include/functions_reporting_html.php:1049 -#: ../../include/functions_reporting_html.php:1057 -#: ../../include/functions_reporting_html.php:1283 -#: ../../include/functions_reporting_html.php:1291 -#: ../../include/functions_reporting_html.php:2390 -#: ../../include/functions_reporting_html.php:3437 -#: ../../include/functions_reporting_html.php:5203 -#: ../../enterprise/views/cluster/list.php:61 -#: ../../enterprise/operation/agentes/tag_view.php:605 -#: ../../enterprise/operation/agentes/policy_view.php:396 -#: ../../enterprise/operation/agentes/ver_agente.php:32 -#: ../../enterprise/include/functions_reporting_csv.php:1605 -#: ../../enterprise/include/functions_reporting_csv.php:1721 -#: ../../enterprise/include/functions_reporting_csv.php:1961 -#: ../../enterprise/include/functions_reporting_csv.php:2029 -#: ../../enterprise/include/functions_services.php:1602 -#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:68 -#: ../../enterprise/meta/advanced/metasetup.relations.php:335 -#: ../../enterprise/meta/advanced/metasetup.relations.php:413 -#: ../../enterprise/meta/advanced/metasetup.relations.php:548 -#: ../../enterprise/meta/advanced/servers.build_table.php:62 -#: ../../enterprise/godmode/modules/configure_local_component.php:212 -#: ../../enterprise/godmode/services/services.elements.php:113 -#: ../../enterprise/godmode/reporting/reporting_builder.template_list_item.php:201 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:207 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1651 -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:83 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:103 -#: ../../enterprise/godmode/policies/policy_modules.php:1465 -#: ../../mobile/operation/visualmaps.php:125 -#: ../../mobile/operation/visualmaps.php:126 -#: ../../mobile/operation/events.php:377 ../../mobile/operation/events.php:378 -#: ../../mobile/operation/events.php:524 ../../mobile/operation/events.php:681 -#: ../../mobile/operation/events.php:682 -#: ../../godmode/setup/setup_integria.php:408 -#: ../../godmode/setup/setup_integria.php:530 -#: ../../godmode/setup/gis_step_2.php:235 ../../godmode/setup/news.php:247 -#: ../../godmode/servers/plugin.php:816 -#: ../../godmode/servers/modificar_server.php:72 -#: ../../godmode/servers/servers.build_table.php:81 -#: ../../godmode/update_manager/update_manager.history.php:41 -#: ../../godmode/modules/manage_network_components.php:750 -#: ../../godmode/modules/manage_network_templates_form.php:232 -#: ../../godmode/modules/manage_network_components_form_common.php:64 -#: ../../godmode/reporting/reporting_builder.list_items.php:212 -#: ../../godmode/reporting/reporting_builder.list_items.php:249 -#: ../../godmode/reporting/reporting_builder.list_items.php:372 -#: ../../godmode/reporting/reporting_builder.item_editor.php:984 -#: ../../godmode/reporting/visual_console_builder.wizard.php:135 -#: ../../godmode/reporting/visual_console_builder.wizard.php:283 -#: ../../godmode/events/event_responses.editor.php:159 -#: ../../godmode/agentes/module_manager.php:850 -#: ../../godmode/agentes/module_manager_editor_common.php:288 -#: ../../godmode/agentes/module_manager_editor_common.php:401 -#: ../../godmode/agentes/module_manager_editor_common.php:1305 -#: ../../godmode/agentes/planned_downtime.editor.php:588 -#: ../../godmode/agentes/planned_downtime.list.php:613 -#: ../../godmode/agentes/agent_template.php:236 -#: ../../godmode/agentes/modificar_agente.php:650 -#: ../../godmode/alerts/alert_templates.php:37 -#: ../../godmode/alerts/alert_templates.php:302 -#: ../../godmode/alerts/alert_templates.php:386 -msgid "Type" -msgstr "Type" +#: ../../enterprise/meta/monitoring/custom_fields_csv.php:100 +#: ../../enterprise/godmode/servers/HA_cluster.php:161 +#: ../../enterprise/include/functions_reporting_csv.php:1933 +#: ../../enterprise/include/class/Azure.cloud.php:803 +#: ../../enterprise/include/class/VMware.app.php:621 +#: ../../enterprise/include/class/DeploymentCenter.class.php:755 +#: ../../enterprise/include/class/DeploymentCenter.class.php:805 +#: ../../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:546 +#: ../../enterprise/include/functions_reporting.php:2316 +#: ../../enterprise/include/functions_ipam.php:1646 +#: ../../enterprise/include/functions_ipam.php:1647 +#: ../../extensions/api_checker.php:123 ../../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 +#: ../../include/functions_reporting_html.php:3108 +#: ../../include/functions_reporting_html.php:3434 +#: ../../include/ajax/heatmap.ajax.php:319 +#: ../../include/class/AuditLog.class.php:194 +#: ../../operation/network/network_report.php:184 +msgid "IP" +msgstr "Adresse IP" -#: ../../operation/search_modules.php:35 ../../operation/search_agents.php:45 -#: ../../operation/search_agents.php:51 -#: ../../operation/netflow/nf_live_view.php:270 -#: ../../operation/agentes/status_monitor.php:1328 -#: ../../operation/agentes/estado_agente.php:751 -#: ../../operation/agentes/estado_generalagente.php:359 -#: ../../include/class/CustomNetScan.class.php:520 -#: ../../include/lib/Dashboard/Widgets/sla_percent.php:331 -#: ../../include/lib/Dashboard/Widgets/custom_graph.php:350 -#: ../../include/lib/Dashboard/Widgets/single_graph.php:306 -#: ../../include/lib/Dashboard/Widgets/graph_module_histogram.php:321 -#: ../../include/lib/Dashboard/Widgets/top_n.php:236 -#: ../../include/functions_treeview.php:84 -#: ../../include/functions_treeview.php:646 -#: ../../include/functions_reporting_html.php:3442 -#: ../../enterprise/tools/ipam/ipam_list.php:617 -#: ../../enterprise/operation/agentes/tag_view.php:603 -#: ../../enterprise/operation/agentes/tag_view.php:681 -#: ../../enterprise/include/class/MicrosoftSQLServer.app.php:537 -#: ../../enterprise/include/class/Aws.cloud.php:591 -#: ../../enterprise/include/class/Aws.cloud.php:1318 -#: ../../enterprise/include/class/Aws.S3.php:506 -#: ../../enterprise/include/class/MySQL.app.php:558 -#: ../../enterprise/include/class/Oracle.app.php:543 -#: ../../enterprise/include/class/DB2.app.php:536 -#: ../../enterprise/include/class/SAP.app.php:513 -#: ../../enterprise/include/class/VMware.app.php:667 -#: ../../enterprise/include/class/Azure.cloud.php:847 -#: ../../enterprise/include/class/Google.cloud.php:797 -#: ../../enterprise/include/functions_ipam.php:1354 -#: ../../enterprise/include/functions_ui.php:84 -#: ../../enterprise/meta/include/functions_wizard_meta.php:921 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1038 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1205 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1523 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1608 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1745 +#: ../../enterprise/meta/monitoring/custom_fields_csv.php:102 +#: ../../godmode/massive/massive_edit_modules.php:468 +msgid "Agent Status" +msgstr "Ɖtat des agents" + +#: ../../enterprise/meta/monitoring/custom_fields_csv.php:117 +#: ../../enterprise/meta/monitoring/custom_fields_csv.php:140 +#: ../../enterprise/meta/monitoring/custom_fields_view.php:179 +#: ../../enterprise/meta/monitoring/group_view.php:238 +#: ../../enterprise/meta/monitoring/group_view.php:244 +#: ../../enterprise/meta/monitoring/tactical.php:224 +#: ../../enterprise/godmode/massive/massive_add_modules_policy.php:119 +#: ../../enterprise/godmode/services/services.elements.php:386 +#: ../../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/netflow/nf_edit_form.php:236 +#: ../../godmode/massive/massive_copy_modules.php:115 +#: ../../godmode/massive/massive_copy_modules.php:275 +#: ../../godmode/massive/massive_delete_modules.php:418 +#: ../../godmode/massive/massive_delete_modules.php:439 +#: ../../godmode/massive/massive_delete_agents.php:209 +#: ../../godmode/massive/massive_edit_agents.php:531 +#: ../../godmode/massive/massive_edit_modules.php:385 +#: ../../godmode/massive/massive_edit_modules.php:471 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3734 +#: ../../mobile/operation/agents.php:58 ../../mobile/operation/modules.php:69 +#: ../../include/functions_reporting_html.php:2357 ../../include/functions.php:1031 +#: ../../include/functions.php:1271 ../../include/functions.php:1278 +#: ../../include/functions.php:1311 ../../include/functions_graph.php:3483 +#: ../../include/functions_graph.php:3484 ../../include/functions_graph.php:5064 +#: ../../include/rest-api/models/VisualConsole/Items/Group.php:430 +#: ../../include/lib/Dashboard/Widgets/system_group_status.php:311 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:385 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:418 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:680 +#: ../../include/functions_events.php:2933 ../../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/netflow/nf_live_view.php:392 +msgid "Normal" +msgstr "Normal" + +#: ../../enterprise/meta/monitoring/custom_fields_csv.php:122 +#: ../../enterprise/meta/monitoring/custom_fields_view.php:181 +#: ../../enterprise/meta/monitoring/group_view.php:240 +#: ../../enterprise/meta/monitoring/group_view.php:246 +#: ../../enterprise/meta/monitoring/tactical.php:222 +#: ../../enterprise/meta/include/functions_wizard_meta.php:986 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1071 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1274 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1298 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1511 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1596 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1716 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1734 +#: ../../enterprise/godmode/massive/massive_add_modules_policy.php:121 +#: ../../enterprise/godmode/massive/massive_create_services.php:733 +#: ../../enterprise/godmode/services/services.service.php:693 +#: ../../enterprise/godmode/services/services.elements.php:359 +#: ../../enterprise/include/functions_reporting.php:3191 +#: ../../enterprise/include/functions_reporting.php:4192 +#: ../../enterprise/include/functions_reporting.php:4843 +#: ../../enterprise/include/functions_reporting.php:6199 +#: ../../enterprise/include/functions_services.php:1440 +#: ../../enterprise/operation/agentes/tag_view.php:133 +#: ../../enterprise/operation/services/services.service.php:122 +#: ../../enterprise/operation/services/services.service.php:168 +#: ../../enterprise/operation/services/services.service_map.php:149 +#: ../../enterprise/operation/services/services.treeview_services.php:275 +#: ../../enterprise/operation/services/services.list.php:239 +#: ../../enterprise/operation/services/services.list.php:504 +#: ../../enterprise/operation/services/services.list.php:558 +#: ../../enterprise/operation/services/services.table_services.php:161 +#: ../../extensions/module_groups.php:50 +#: ../../godmode/modules/manage_network_components_form_wizard.php:412 +#: ../../godmode/groups/group_list.php:1054 +#: ../../godmode/massive/massive_copy_modules.php:117 +#: ../../godmode/massive/massive_copy_modules.php:277 +#: ../../godmode/massive/massive_delete_modules.php:420 +#: ../../godmode/massive/massive_delete_modules.php:441 +#: ../../godmode/massive/massive_delete_agents.php:211 +#: ../../godmode/massive/massive_edit_agents.php:533 +#: ../../godmode/massive/massive_edit_modules.php:387 +#: ../../godmode/massive/massive_edit_modules.php:473 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3736 +#: ../../mobile/operation/agents.php:57 ../../mobile/operation/modules.php:71 +#: ../../include/functions_reporting_html.php:859 +#: ../../include/functions_reporting_html.php:2358 +#: ../../include/functions_reporting_html.php:4650 ../../include/functions.php:1039 +#: ../../include/functions.php:1275 ../../include/functions.php:1276 +#: ../../include/functions.php:1278 ../../include/functions.php:1319 +#: ../../include/functions_graph.php:3503 ../../include/functions_graph.php:3504 +#: ../../include/functions_graph.php:5072 ../../include/functions_ui.php:2610 +#: ../../include/rest-api/models/VisualConsole/Items/Group.php:416 +#: ../../include/class/AgentWizard.class.php:1318 +#: ../../include/class/AgentWizard.class.php:4035 +#: ../../include/lib/Dashboard/Widgets/system_group_status.php:313 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:387 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:420 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:660 +#: ../../include/functions_events.php:2941 ../../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/gis_maps/render_view.php:164 +msgid "Critical" +msgstr "Critique" + +#: ../../enterprise/meta/monitoring/custom_fields_csv.php:136 +msgid "No init" +msgstr "Pas dā€™init" + +#: ../../enterprise/meta/monitoring/custom_fields_view.php:54 +msgid "Custom fields View" +msgstr "Vue des champs personnalisĆ©s" + +#: ../../enterprise/meta/monitoring/custom_fields_view.php:66 +msgid "Custom Fields View" +msgstr "Vue des champs personnalisĆ©s" + +#: ../../enterprise/meta/monitoring/custom_fields_view.php:168 +#: ../../enterprise/godmode/policies/policies.php:324 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:746 +#: ../../extensions/agents_modules.php:407 +#: ../../godmode/agentes/modificar_agente.php:322 +#: ../../godmode/agentes/planned_downtime.editor.php:803 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1584 +#: ../../include/functions_html.php:1545 +#: ../../include/class/NetworkMap.class.php:3226 +#: ../../operation/agentes/estado_agente.php:262 +#: ../../operation/agentes/interface_view.functions.php:59 +#: ../../operation/agentes/status_monitor.php:488 +msgid "Recursion" +msgstr "RĆ©cursion" + +#: ../../enterprise/meta/monitoring/custom_fields_view.php:183 +#: ../../enterprise/godmode/massive/massive_add_modules_policy.php:123 +#: ../../enterprise/operation/agentes/tag_view.php:135 +#: ../../godmode/massive/massive_copy_modules.php:119 +#: ../../godmode/massive/massive_copy_modules.php:279 +#: ../../godmode/massive/massive_delete_modules.php:422 +#: ../../godmode/massive/massive_delete_modules.php:443 +#: ../../godmode/massive/massive_delete_agents.php:213 +#: ../../godmode/massive/massive_edit_agents.php:535 +#: ../../godmode/massive/massive_edit_modules.php:389 +#: ../../godmode/massive/massive_edit_modules.php:475 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3738 +#: ../../godmode/events/event_edit_filter.php:320 +#: ../../mobile/operation/modules.php:73 ../../include/functions.php:1277 +#: ../../include/lib/Dashboard/Widgets/events_list.php:319 +#: ../../include/functions_events.php:2889 +#: ../../operation/agentes/estado_agente.php:272 +#: ../../operation/agentes/status_monitor.php:496 +#: ../../operation/events/events.php:1583 +msgid "Not normal" +msgstr "Anormal" + +#: ../../enterprise/meta/monitoring/custom_fields_view.php:185 +#: ../../enterprise/meta/monitoring/group_view.php:237 +#: ../../enterprise/meta/monitoring/group_view.php:243 +#: ../../enterprise/meta/monitoring/tactical.php:226 +#: ../../enterprise/godmode/massive/massive_add_modules_policy.php:124 +#: ../../enterprise/operation/agentes/transactional_map.php:345 +#: ../../enterprise/operation/agentes/tag_view.php:137 +#: ../../enterprise/operation/services/services.treeview_services.php:290 +#: ../../godmode/groups/group_list.php:1069 +#: ../../godmode/massive/massive_copy_modules.php:120 +#: ../../godmode/massive/massive_copy_modules.php:280 +#: ../../godmode/massive/massive_delete_modules.php:423 +#: ../../godmode/massive/massive_delete_modules.php:444 +#: ../../godmode/massive/massive_delete_agents.php:214 +#: ../../godmode/massive/massive_edit_agents.php:536 +#: ../../godmode/massive/massive_edit_modules.php:390 +#: ../../godmode/massive/massive_edit_modules.php:476 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3739 +#: ../../mobile/operation/modules.php:75 +#: ../../include/functions_reporting_html.php:652 +#: ../../include/functions_reporting_html.php:2361 +#: ../../include/functions_reporting_html.php:4458 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:389 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:422 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:675 +#: ../../operation/tree.php:216 ../../operation/tree.php:273 +#: ../../operation/tree.php:481 ../../operation/agentes/estado_agente.php:273 +#: ../../operation/agentes/status_monitor.php:498 +#: ../../operation/agentes/group_view.php:225 +#: ../../operation/agentes/group_view.php:230 +#: ../../operation/agentes/tactical.php:182 +msgid "Not init" +msgstr "Non initialisĆ©" + +#: ../../enterprise/meta/monitoring/custom_fields_view.php:187 +msgid "Status agents" +msgstr "Agents dā€™Ć©tat" + +#: ../../enterprise/meta/monitoring/custom_fields_view.php:203 +msgid "Status module" +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:829 ../../operation/events/events.php:1708 +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:587 ../../include/ajax/events.php:571 +#: ../../include/ajax/events.php:587 ../../operation/netflow/nf_live_view.php:397 +#: ../../operation/events/sound_events.php:184 +#: ../../operation/events/events.php:1700 +msgid "Load filter" +msgstr "Charger le filtre" + +#: ../../enterprise/meta/monitoring/custom_fields_view.php:250 +#: ../../general/first_task/custom_fields.php:24 +msgid "Custom Fields" +msgstr "Champs personnalisĆ©s" + +#: ../../enterprise/meta/monitoring/custom_fields_view.php:266 +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:619 +#: ../../operation/events/events.php:1799 +msgid "Module search" +msgstr "Rechercher module" + +#: ../../enterprise/meta/monitoring/custom_fields_view.php:304 +#: ../../enterprise/extensions/vmware/vmware_view.php:1519 +#: ../../enterprise/include/class/DeploymentCenter.class.php:1533 +#: ../../enterprise/include/class/AgentRepository.class.php:784 +#: ../../enterprise/include/class/Omnishell.class.php:1124 +#: ../../enterprise/include/class/LogSource.class.php:766 +#: ../../enterprise/operation/agentes/tag_view.php:175 +#: ../../godmode/users/user_list.php:693 ../../include/class/ConfigPEN.class.php:252 +#: ../../include/class/CredentialStore.class.php:1098 +#: ../../operation/heatmap.php:291 +#: ../../operation/agentes/interface_view.functions.php:120 +#: ../../operation/agentes/interface_view.functions.php:158 +#: ../../operation/agentes/status_monitor.php:861 +msgid "Show" +msgstr "Afficher" + +#: ../../enterprise/meta/monitoring/custom_fields_view.php:319 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:597 +#: ../../enterprise/include/functions_ipam.php:339 +#: ../../enterprise/operation/log/log_viewer.php:805 +#: ../../enterprise/operation/reporting/custom_reporting.php:80 +#: ../../godmode/modules/manage_network_templates.php:288 +#: ../../godmode/agentes/planned_downtime.list.php:860 +#: ../../include/graphs/functions_flot.php:377 +#: ../../include/class/ModuleTemplates.class.php:934 +#: ../../operation/network/network_report.php:140 +#: ../../operation/incidents/list_integriaims_incidents.php:428 +msgid "Export to CSV" +msgstr "Exporter un fichier en CSV" + +#: ../../enterprise/meta/monitoring/custom_fields_view.php:347 +#: ../../enterprise/meta/monitoring/custom_fields_view.php:349 +#: ../../enterprise/include/class/DatabaseHA.class.php:217 +#: ../../godmode/wizards/DiscoveryTaskList.class.php:1861 +#: ../../include/functions_ui.php:3432 +msgid "Processing" +msgstr "Traitement en cours" + +#: ../../enterprise/meta/monitoring/custom_fields_view.php:374 +#: ../../mobile/operation/groups.php:153 +#: ../../include/functions_reporting_html.php:5602 +#: ../../include/functions_agents.php:3860 +msgid "Agents critical" +msgstr "Agents en Ć©tat critique" + +#: ../../enterprise/meta/monitoring/custom_fields_view.php:387 +#: ../../include/functions_reporting_html.php:5605 +#: ../../include/functions_agents.php:3870 +msgid "Agents warning" +msgstr "Agents en Ć©tat d'alerte" + +#: ../../enterprise/meta/monitoring/custom_fields_view.php:400 +#: ../../include/functions_reporting_html.php:5611 +#: ../../include/functions_agents.php:3850 ../../include/functions_agents.php:3904 +msgid "Agents ok" +msgstr "Agents en Ć©tat OK" + +#: ../../enterprise/meta/monitoring/custom_fields_view.php:413 +#: ../../mobile/operation/groups.php:156 +#: ../../include/functions_reporting_html.php:5614 +#: ../../include/functions_agents.php:3880 +msgid "Agents unknown" +msgstr "Agents inconnus" + +#: ../../enterprise/meta/monitoring/custom_fields_view.php:426 +#: ../../mobile/operation/groups.php:150 +#: ../../include/functions_reporting_html.php:5620 +#: ../../include/functions_agents.php:3894 +msgid "Agents not init" +msgstr "Agents non initialisĆ©s" + +#: ../../enterprise/meta/monitoring/custom_fields_view.php:452 +#: ../../include/functions_reporting.php:11572 +msgid "Monitor critical" +msgstr "Moniteur en Ć©tat critique" + +#: ../../enterprise/meta/monitoring/custom_fields_view.php:463 +#: ../../include/functions_reporting.php:11576 +msgid "Monitor warning" +msgstr "Moniteur en Ć©tat d'alerte" + +#: ../../enterprise/meta/monitoring/custom_fields_view.php:474 +#: ../../include/functions_reporting.php:11583 +msgid "Monitor normal" +msgstr "Moniteur en Ć©tat normal" + +#: ../../enterprise/meta/monitoring/custom_fields_view.php:485 +#: ../../include/functions_reporting.php:11587 +msgid "Monitor unknown" +msgstr "Moniteur inconnu" + +#: ../../enterprise/meta/monitoring/custom_fields_view.php:496 +#: ../../include/functions_reporting.php:11594 +msgid "Monitor not init" +msgstr "Moniteur non initialisĆ©" + +#: ../../enterprise/meta/monitoring/custom_fields_view.php:511 +#: ../../include/functions_reporting_html.php:5629 +#: ../../include/functions_reporting_html.php:5634 +msgid "Agents by status" +msgstr "Agents par Ć©tat" + +#: ../../enterprise/meta/monitoring/custom_fields_view.php:519 +#: ../../include/functions_reporting.php:11614 +#: ../../include/functions_reporting.php:11620 +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 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:658 +#: ../../operation/tree.php:464 +msgid "Critical agents" +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 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:663 +#: ../../operation/tree.php:469 +msgid "Warning agents" +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 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:678 +#: ../../operation/tree.php:484 +msgid "Normal agents" +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 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:668 +#: ../../operation/tree.php:474 +msgid "Unknown agents" +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 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:673 +#: ../../operation/tree.php:479 +msgid "Not init agents" +msgstr "Agents non initialisĆ©s" + +#: ../../enterprise/meta/monitoring/custom_fields_view.php:602 +#: ../../enterprise/include/functions_reporting_csv.php:983 +#: ../../enterprise/operation/services/services.treeview_services.php:274 +#: ../../godmode/groups/group_list.php:1053 ../../mobile/operation/groups.php:171 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:659 +#: ../../operation/tree.php:465 +msgid "Critical modules" +msgstr "Modules en Ć©tat critique" + +#: ../../enterprise/meta/monitoring/custom_fields_view.php:613 +#: ../../enterprise/include/functions_reporting_csv.php:983 +#: ../../enterprise/operation/services/services.treeview_services.php:279 +#: ../../godmode/groups/group_list.php:1058 ../../mobile/operation/groups.php:168 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:664 +#: ../../operation/tree.php:470 +msgid "Warning modules" +msgstr "Modules en Ć©tat d'alerte" + +#: ../../enterprise/meta/monitoring/custom_fields_view.php:624 +#: ../../enterprise/include/functions_reporting_csv.php:983 +#: ../../enterprise/operation/services/services.treeview_services.php:294 +#: ../../godmode/groups/group_list.php:1073 ../../mobile/operation/groups.php:165 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:679 +#: ../../operation/tree.php:485 +msgid "Normal modules" +msgstr "Modules normaux" + +#: ../../enterprise/meta/monitoring/custom_fields_view.php:635 +#: ../../enterprise/include/functions_reporting_csv.php:983 +#: ../../enterprise/operation/services/services.treeview_services.php:284 +#: ../../godmode/groups/group_list.php:1063 ../../mobile/operation/groups.php:159 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:669 +#: ../../operation/tree.php:475 +msgid "Unknown modules" +msgstr "Modules inconnus" + +#: ../../enterprise/meta/monitoring/custom_fields_view.php:646 +#: ../../enterprise/include/functions_reporting_csv.php:983 +#: ../../enterprise/operation/services/services.treeview_services.php:289 +#: ../../godmode/groups/group_list.php:1068 ../../mobile/operation/groups.php:162 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:674 +#: ../../operation/tree.php:480 +msgid "Not init modules" +msgstr "Modules non initialisĆ©s" + +#: ../../enterprise/meta/monitoring/custom_fields_view.php:672 +msgid "Total counters" +msgstr "Total des compteurs" + +#: ../../enterprise/meta/monitoring/custom_fields_view.php:675 +msgid "Total Agents" +msgstr "Total des agents" + +#: ../../enterprise/meta/monitoring/custom_fields_view.php:684 +msgid "Total Modules" +msgstr "Total des modules" + +#: ../../enterprise/meta/monitoring/custom_fields_view.php:705 +msgid "I.P" +msgstr "IP" + +#: ../../enterprise/meta/monitoring/custom_fields_view.php:719 +#: ../../include/functions_api.php:168 +msgid "No data to show." +msgstr "Aucune donnĆ©e Ć  afficher." + +#: ../../enterprise/meta/monitoring/custom_fields_view.php:727 +msgid "There are no custom search defined." +msgstr "Aucune recherche personnalisĆ©e nā€™est dĆ©finie." + +#: ../../enterprise/meta/monitoring/custom_fields_view.php:1151 +#: ../../enterprise/meta/event/custom_events.php:249 +#: ../../godmode/agentes/status_monitor_custom_fields.php:241 +#: ../../godmode/events/custom_events.php:223 +#: ../../include/class/TreeGroupEdition.class.php:164 +msgid "Confirm" +msgstr "Confirmer " + +#: ../../enterprise/meta/monitoring/wizard/wizard.agent.php:76 +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:229 +#: ../../godmode/agentes/configurar_agente.php:842 +#: ../../godmode/agentes/modificar_agente.php:952 +#: ../../operation/agentes/estado_agente.php:968 +#: ../../operation/agentes/estado_agente.php:978 +#: ../../operation/snmpconsole/snmp_statistics.php:193 +#: ../../operation/snmpconsole/snmp_view.php:956 +msgid "Create agent" +msgstr "CrĆ©er un agent" + +#: ../../enterprise/meta/monitoring/wizard/wizard.agent.php:80 +msgid "Edit agent" +msgstr "Modifier l'agent" + +#: ../../enterprise/meta/monitoring/wizard/wizard.agent.php:198 +#: ../../enterprise/meta/monitoring/wizard/wizard.module.network.php:280 +msgid "Please, set a valid IP/Name address" +msgstr "Veuillez configurer une adresse IP/Nom valide" + +#: ../../enterprise/meta/monitoring/wizard/wizard.agent.php:209 +msgid "Please, select a group first" +msgstr "Veuillez sĆ©lectionner dā€™abord un groupe" + +#: ../../enterprise/meta/monitoring/wizard/wizard.manage_alert.php:73 +#: ../../enterprise/godmode/alerts/alert_inventory_list.php:337 +msgid "Edit alert" +msgstr "Editer l'alerte" + +#: ../../enterprise/meta/monitoring/wizard/wizard.manage_alert.php:104 +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:648 +#: ../../godmode/snmpconsole/snmp_alert.php:97 +msgid "Create alert" +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:3509 +#: ../../enterprise/extensions/disabled/check_acls.php:133 +#: ../../enterprise/godmode/agentes/agent_disk_conf_editor.php:211 +#: ../../enterprise/godmode/policies/policy_alerts.php:352 +#: ../../enterprise/godmode/policies/policy_alerts.php:567 +#: ../../enterprise/godmode/policies/policy_linking.php:151 +#: ../../enterprise/godmode/alerts/alert_inventory_list.php:371 +#: ../../enterprise/godmode/services/services.elements.php:93 +#: ../../enterprise/godmode/services/services.elements.php:155 +#: ../../enterprise/godmode/services/services.elements.php:271 +#: ../../enterprise/godmode/reporting/graph_template_item_editor.php:185 +#: ../../enterprise/godmode/reporting/graph_template_item_editor.php:240 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:317 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1397 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2058 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3515 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3728 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3746 +#: ../../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:525 +#: ../../enterprise/include/functions_reporting_pdf.php:533 +#: ../../enterprise/include/functions_reporting_pdf.php:541 +#: ../../enterprise/include/functions_reporting_pdf.php:557 +#: ../../enterprise/include/functions_reporting_csv.php:491 +#: ../../enterprise/include/functions_reporting_csv.php:776 +#: ../../enterprise/include/functions_reporting_csv.php:802 +#: ../../enterprise/include/functions_reporting_csv.php:915 +#: ../../enterprise/include/functions_reporting_csv.php:954 +#: ../../enterprise/include/functions_reporting_csv.php:1014 +#: ../../enterprise/include/functions_reporting_csv.php:1030 +#: ../../enterprise/include/functions_reporting_csv.php:1184 +#: ../../enterprise/include/functions_reporting_csv.php:1215 +#: ../../enterprise/include/functions_reporting_csv.php:1270 +#: ../../enterprise/include/functions_reporting_csv.php:1325 +#: ../../enterprise/include/functions_reporting_csv.php:1374 +#: ../../enterprise/include/functions_reporting_csv.php:1429 +#: ../../enterprise/include/functions_reporting_csv.php:1458 +#: ../../enterprise/include/functions_reporting_csv.php:1503 +#: ../../enterprise/include/functions_reporting_csv.php:1549 +#: ../../enterprise/include/functions_reporting_csv.php:1622 +#: ../../enterprise/include/functions_reporting_csv.php:1741 +#: ../../enterprise/include/functions_reporting_csv.php:1976 +#: ../../enterprise/include/functions_reporting_csv.php:2049 +#: ../../enterprise/include/functions_reporting_csv.php:2281 +#: ../../enterprise/include/functions_reporting_csv.php:2317 +#: ../../enterprise/include/functions_reporting_csv.php:2465 +#: ../../enterprise/include/functions_reporting_csv.php:2737 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:924 +#: ../../enterprise/include/functions_reporting.php:1854 +#: ../../enterprise/include/functions_reporting.php:2893 +#: ../../enterprise/include/functions_reporting.php:3880 +#: ../../enterprise/include/functions_reporting.php:4904 +#: ../../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:357 +#: ../../godmode/agentes/planned_downtime.editor.php:1007 +#: ../../godmode/agentes/agent_manager.php:520 +#: ../../godmode/agentes/agent_manager.php:592 +#: ../../godmode/agentes/module_manager_editor_common.php:1260 +#: ../../godmode/agentes/module_manager_editor_common.php:1304 +#: ../../godmode/massive/massive_standby_alerts.php:223 +#: ../../godmode/massive/massive_standby_alerts.php:258 +#: ../../godmode/massive/massive_enable_disable_alerts.php:195 +#: ../../godmode/massive/massive_enable_disable_alerts.php:230 +#: ../../godmode/massive/massive_edit_agents.php:674 +#: ../../godmode/massive/massive_edit_agents.php:1026 +#: ../../godmode/alerts/alert_list.list.php:494 +#: ../../godmode/alerts/alert_list.list.php:752 +#: ../../godmode/alerts/alert_view.php:91 +#: ../../godmode/alerts/alert_list.builder.php:70 +#: ../../godmode/reporting/reporting_builder.list_items.php:410 +#: ../../godmode/reporting/create_container.php:410 +#: ../../godmode/reporting/create_container.php:560 +#: ../../godmode/reporting/create_container.php:628 +#: ../../godmode/reporting/graph_builder.graph_editor.php:213 +#: ../../godmode/reporting/reporting_builder.item_editor.php:201 +#: ../../godmode/reporting/reporting_builder.item_editor.php:873 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1170 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1709 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3901 +#: ../../godmode/reporting/reporting_builder.item_editor.php:4417 +#: ../../godmode/reporting/reporting_builder.item_editor.php:4441 +#: ../../godmode/reporting/visual_console_builder.elements.php:105 +#: ../../godmode/reporting/visual_console_builder.wizard.php:449 +#: ../../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:543 +#: ../../include/functions_reporting_html.php:939 +#: ../../include/functions_reporting_html.php:1813 +#: ../../include/functions_reporting_html.php:2141 +#: ../../include/functions_reporting_html.php:2243 +#: ../../include/functions_reporting_html.php:3226 +#: ../../include/functions_reporting_html.php:3609 +#: ../../include/functions_reporting_html.php:3617 +#: ../../include/functions_reporting_html.php:3626 +#: ../../include/functions_reporting_html.php:3638 +#: ../../include/functions_reporting_html.php:3794 +#: ../../include/functions_reporting_html.php:3922 +#: ../../include/functions_reporting_html.php:4016 +#: ../../include/functions_reporting_html.php:4735 +#: ../../include/functions_reporting_html.php:4783 +#: ../../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:5391 +#: ../../include/functions_treeview.php:64 +#: ../../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/Odometer.php:385 +#: ../../include/functions_reports.php:1344 +#: ../../include/class/AgentsAlerts.class.php:412 +#: ../../include/class/AgentsAlerts.class.php:891 +#: ../../include/functions_reporting.php:6839 +#: ../../include/lib/Dashboard/Widgets/sla_percent.php:315 +#: ../../include/lib/Dashboard/Widgets/BlockHistogram.php:278 +#: ../../include/lib/Dashboard/Widgets/module_icon.php:334 +#: ../../include/lib/Dashboard/Widgets/module_value.php:308 +#: ../../include/lib/Dashboard/Widgets/ColorModuleTabs.php:254 +#: ../../include/lib/Dashboard/Widgets/module_table_value.php:283 +#: ../../include/lib/Dashboard/Widgets/graph_module_histogram.php:304 +#: ../../include/lib/Dashboard/Widgets/module_status.php:324 +#: ../../include/lib/Dashboard/Widgets/single_graph.php:279 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:682 +#: ../../include/lib/Dashboard/Widgets/top_n.php:221 +#: ../../operation/agentes/exportdata.csv.php:74 +#: ../../operation/agentes/exportdata.php:83 +#: ../../operation/agentes/estado_monitores.php:125 +#: ../../operation/agentes/exportdata.excel.php:74 +#: ../../operation/search_alerts.php:35 ../../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:329 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:321 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1402 +#: ../../enterprise/include/functions_tasklist.php:328 +#: ../../enterprise/include/functions_reporting_csv.php:2465 +#: ../../enterprise/operation/agentes/policy_view.php:259 +#: ../../godmode/alerts/alert_list.list.php:498 +#: ../../godmode/alerts/alert_view.php:95 +#: ../../godmode/alerts/alert_list.builder.php:140 +#: ../../godmode/reporting/reporting_builder.item_editor.php:205 +#: ../../godmode/reporting/reporting_builder.item_editor.php:878 +#: ../../mobile/operation/alerts.php:342 +#: ../../include/functions_reporting_html.php:3227 +#: ../../include/functions_reporting_html.php:3230 +#: ../../include/functions_cron.php:653 ../../include/ajax/alert_list.ajax.php:293 +#: ../../include/ajax/alert_list.ajax.php:318 +#: ../../include/functions_treeview.php:412 ../../include/functions_treeview.php:453 +#: ../../include/class/AgentsAlerts.class.php:338 +#: ../../include/class/AgentsAlerts.class.php:964 +#: ../../operation/search_alerts.php:36 +msgid "Template" +msgstr "ModĆØle" + +#: ../../enterprise/meta/monitoring/wizard/wizard.manage_alert.php:231 +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:257 +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:354 +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:411 +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:679 +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:750 +#: ../../enterprise/meta/monitoring/wizard/wizard.create_module.php:231 +#: ../../enterprise/meta/monitoring/wizard/wizard.php:150 +#: ../../enterprise/meta/include/ajax/wizard.ajax.php:742 +#: ../../enterprise/meta/general/header.php:121 +#: ../../enterprise/meta/general/main_header.php:558 +#: ../../enterprise/godmode/policies/policy_alerts.php:648 +#: ../../enterprise/godmode/policies/policy_external_alerts.php:676 +#: ../../enterprise/godmode/massive/massive_add_modules_policy.php:141 +#: ../../enterprise/godmode/massive/massive_create_services.php:902 +#: ../../enterprise/godmode/massive/massive_create_services.php:914 +#: ../../enterprise/godmode/massive/massive_create_services.php:926 +#: ../../enterprise/godmode/massive/massive_create_services.php:938 +#: ../../enterprise/godmode/services/services.service.php:873 +#: ../../enterprise/godmode/services/services.service.php:885 +#: ../../enterprise/godmode/services/services.service.php:897 +#: ../../enterprise/godmode/services/services.service.php:909 +#: ../../extensions/insert_data.php:186 +#: ../../godmode/snmpconsole/snmp_trap_generator.php:159 +#: ../../godmode/massive/massive_copy_modules.php:138 +#: ../../godmode/massive/massive_delete_modules.php:334 +#: ../../godmode/massive/massive_delete_modules.php:469 +#: ../../godmode/massive/massive_add_alerts.php:286 +#: ../../godmode/massive/massive_delete_alerts.php:277 +#: ../../godmode/massive/massive_edit_modules.php:318 +#: ../../godmode/massive/massive_edit_modules.php:431 +#: ../../godmode/alerts/alert_list.builder.php:82 +#: ../../godmode/alerts/alert_list.builder.php:156 +#: ../../godmode/setup/setup_integria.php:367 +#: ../../godmode/setup/setup_integria.php:385 +#: ../../godmode/setup/setup_integria.php:414 +#: ../../godmode/setup/setup_integria.php:432 +#: ../../godmode/setup/setup_integria.php:489 +#: ../../godmode/setup/setup_integria.php:507 +#: ../../godmode/setup/setup_integria.php:536 +#: ../../godmode/setup/setup_integria.php:554 +#: ../../include/functions_reports.php:1351 +#: ../../include/class/AgentsAlerts.class.php:354 +#: ../../operation/incidents/configure_integriaims_incident.php:240 +#: ../../operation/incidents/configure_integriaims_incident.php:256 +#: ../../operation/incidents/configure_integriaims_incident.php:302 +#: ../../general/header.php:265 +msgid "Select" +msgstr "SĆ©lectionner" + +#: ../../enterprise/meta/monitoring/wizard/wizard.manage_alert.php:248 +msgid "Create new template" +msgstr "CrĆ©er un nouveau modĆØle" + +#: ../../enterprise/meta/monitoring/wizard/wizard.manage_alert.php:263 +#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:441 +#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:548 +#: ../../godmode/alerts/configure_alert_template.php:758 +#: ../../godmode/alerts/alert_list.builder.php:117 +#: ../../include/class/AgentsAlerts.class.php:304 +msgid "Default action" +msgstr "Action par dĆ©faut" + +#: ../../enterprise/meta/monitoring/wizard/wizard.manage_alert.php:280 +msgid "Create new action" +msgstr "CrĆ©er une nouvelle action" + +#: ../../enterprise/meta/monitoring/wizard/wizard.manage_alert.php:290 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2340 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2552 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3387 +#: ../../godmode/alerts/alert_list.list.php:666 +#: ../../godmode/alerts/alert_list.list.php:792 +#: ../../godmode/alerts/configure_alert_action.php:284 +#: ../../godmode/alerts/alert_view.php:361 +#: ../../godmode/alerts/alert_list.builder.php:173 +#: ../../include/functions_reporting_html.php:3484 +#: ../../include/functions_reporting_html.php:5252 +#: ../../include/ajax/alert_list.ajax.php:540 +#: ../../include/ajax/custom_fields.php:413 +#: ../../include/class/AgentsAlerts.class.php:385 +#: ../../include/class/AgentWizard.class.php:1199 +msgid "Threshold" +msgstr "Seuil" + +#: ../../enterprise/meta/monitoring/wizard/wizard.module.local.php:108 +#: ../../enterprise/meta/monitoring/wizard/wizard.module.network.php:120 +#: ../../enterprise/meta/monitoring/wizard/wizard.module.web.php:101 +msgid "Advanced configuration" +msgstr "Configuration avancĆ©e" + +#: ../../enterprise/meta/monitoring/wizard/wizard.module.local.php:122 +#: ../../enterprise/meta/monitoring/wizard/wizard.create_agent.php:40 +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:327 +#: ../../enterprise/meta/monitoring/wizard/wizard.module.network.php:135 +#: ../../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 +msgid "Create module" +msgstr "CrĆ©er un module" + +#: ../../enterprise/meta/monitoring/wizard/wizard.module.local.php:126 +#: ../../enterprise/meta/monitoring/wizard/wizard.module.network.php:142 +#: ../../enterprise/meta/monitoring/wizard/wizard.module.web.php:117 +#: ../../enterprise/meta/monitoring/wizard/wizard.update_module.php:39 +#: ../../enterprise/godmode/policies/policy_modules.php:380 +msgid "Edit module" +msgstr "Modifier le module" + +#: ../../enterprise/meta/monitoring/wizard/wizard.module.local.php:156 +#: ../../enterprise/meta/monitoring/wizard/wizard.module.network.php:195 +#: ../../enterprise/meta/monitoring/wizard/wizard.update_agent.php:46 +#: ../../enterprise/meta/monitoring/wizard/wizard.module.web.php:147 +#: ../../enterprise/meta/monitoring/wizard/wizard.update_module.php:92 +#: ../../enterprise/meta/monitoring/wizard/wizard.create_module.php:131 +#: ../../enterprise/meta/monitoring/wizard/wizard.php:155 +#: ../../enterprise/meta/monitoring/wizard/wizard.php:207 +#, php-format +msgid "Cannot connect to %s instance." +msgstr "Impossible de se connecter Ć  la instance %s." + +#: ../../enterprise/meta/monitoring/wizard/wizard.module.local.php:229 +#: ../../enterprise/meta/monitoring/wizard/wizard.module.network.php:281 +#: ../../enterprise/meta/monitoring/wizard/wizard.module.web.php:238 +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:819 +#: ../../godmode/agentes/configurar_agente.php:841 +#: ../../godmode/agentes/modificar_agente.php:108 ../../godmode/menu.php:87 +msgid "Manage agents" +msgstr "GĆ©rer les agents" + +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:276 +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:372 +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:438 +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:706 +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:785 +#: ../../enterprise/meta/agentsearch.php:52 ../../enterprise/meta/agentsearch.php:58 +#: ../../godmode/events/event_edit_filter.php:376 +#: ../../mobile/operation/home.php:168 ../../operation/events/events.php:1782 +msgid "Agent search" +msgstr "Rechercher agent" + +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:283 +msgid "Select the agent to be edited or deleted" +msgstr "SĆ©lectionner l'agent Ć  modifier ou Ć  supprimer" + +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:292 +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:388 +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:458 +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:727 +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:809 +#: ../../godmode/groups/configure_group.php:272 +#: ../../godmode/snmpconsole/snmp_alert.php:1138 +#: ../../godmode/alerts/configure_alert_action.php:395 +#: ../../mobile/operation/agents.php:209 ../../mobile/operation/modules.php:241 +#: ../../mobile/operation/groups.php:82 ../../mobile/operation/agent.php:148 +#: ../../mobile/operation/alerts.php:199 ../../mobile/operation/visualmap.php:256 +#: ../../mobile/operation/visualmaps.php:189 +#: ../../mobile/operation/module_graph.php:364 +#: ../../mobile/operation/module_graph.php:377 ../../mobile/operation/events.php:913 +#: ../../mobile/operation/tactical.php:102 +msgid "Back" +msgstr "Retour" + +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:332 +msgid "Manage modules" +msgstr "GĆ©rer les modules" + +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:378 +msgid "Select the agent where the module will be created" +msgstr "SĆ©lectionner l'agent oĆ¹ le module sera crĆ©Ć©" + +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:391 +msgid "Create Module" +msgstr "CrĆ©er un module" + +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:448 +msgid "Select the module to be edited or deleted" +msgstr "SĆ©lectionner le module Ć  modifier ou supprimer" + +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:503 +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:543 +msgid "Error creating alert" +msgstr "Erreur lors de la crĆ©ation dā€™une alerte" + +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:507 +msgid "Alert could not be created" +msgstr "Impossible de crĆ©er lā€™alerte" + +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:527 +msgid "Perform create alert" +msgstr "Effectuer la crĆ©ation dā€™une alerte" + +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:531 +msgid "Alert created correctly" +msgstr "Alerte crĆ©Ć©e correctement" + +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:547 +msgid "Alert template must be setted" +msgstr "Le modĆØle dā€™alerte doit ĆŖtre dĆ©fini" + +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:586 +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:619 +msgid "Error updating alert" +msgstr "Erreur lors de la mise Ć  jour de lā€™alerte" + +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:590 +msgid "Something gone wrong with alert update" +msgstr "Erreur de la mise Ć  jour des alertes" + +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:601 +msgid "Perform update alert" +msgstr "Effectuer une alerte de mise Ć  jour" + +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:605 +msgid "Alert updated correctly" +msgstr "Alerte mise Ć  jour correctement" + +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:623 +msgid "Template must be set." +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:494 ../../godmode/alerts/alert_list.php:496 +msgid "Manage alerts" +msgstr "Gestion d'alertes" + +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:716 +msgid "Select the module where the alert will be created" +msgstr "SĆ©lectionner le module oĆ¹ l'alerte sera crĆ©Ć©e" + +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:798 +msgid "Select the alert to be edited or deleted" +msgstr "SĆ©lectionner l'alerte Ć  modifier ou supprimer" + +#: ../../enterprise/meta/monitoring/wizard/wizard.module.web.php:231 +msgid "Please, set a name" +msgstr "Veuillez configurer un nom" + +#: ../../enterprise/meta/monitoring/wizard/wizard.module.web.php:252 +msgid "Please, set an interval" +msgstr "Veuillez dĆ©finir un intervalle" + +#: ../../enterprise/meta/monitoring/wizard/wizard.create_module.php:148 +#: ../../godmode/modules/manage_network_components_form_wizard.php:336 +#: ../../godmode/massive/massive_delete_modules.php:323 +#: ../../godmode/massive/massive_edit_modules.php:309 +msgid "Module type" +msgstr "Type de module" + +#: ../../enterprise/meta/monitoring/wizard/wizard.create_module.php:148 +#: ../../mobile/include/functions_web.php:24 +#: ../../include/functions_reporting_html.php:5171 +#: ../../include/functions_reporting_html.php:5325 +msgid "Monitor" +msgstr "Moniteur" + +#: ../../enterprise/meta/monitoring/wizard/wizard.create_module.php:148 +msgid "Web check" +msgstr "VĆ©rification web" + +#: ../../enterprise/meta/monitoring/wizard/wizard.create_module.php:155 +#: ../../enterprise/godmode/modules/configure_local_component.php:259 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:832 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2017 +#: ../../enterprise/operation/agentes/tag_view.php:156 +#: ../../enterprise/operation/agentes/ver_agente.php:35 +#: ../../extensions/agents_modules.php:410 +#: ../../godmode/modules/manage_network_components_form_common.php:111 +#: ../../godmode/agentes/module_manager_editor_common.php:265 +#: ../../godmode/massive/massive_edit_modules.php:889 +#: ../../godmode/reporting/create_container.php:540 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1637 +#: ../../mobile/operation/modules.php:183 ../../mobile/operation/modules.php:184 +#: ../../mobile/operation/modules.php:293 ../../mobile/operation/modules.php:294 +#: ../../include/ajax/heatmap.ajax.php:190 ../../include/ajax/heatmap.ajax.php:249 +#: ../../include/ajax/heatmap.ajax.php:288 ../../include/functions_graph.php:5307 +#: ../../include/functions_treeview.php:122 ../../include/functions_html.php:1570 +#: ../../include/functions_events.php:4096 ../../operation/heatmap.php:96 +#: ../../operation/heatmap.php:98 ../../operation/agentes/status_monitor.php:517 +#: ../../operation/agentes/estado_monitores.php:552 +#: ../../operation/agentes/ver_agente.php:1157 +msgid "Module group" +msgstr "Groupe de modules" + +#: ../../enterprise/meta/monitoring/wizard/wizard.create_module.php:245 +msgid "Module description" +msgstr "Description du module" + +#: ../../enterprise/meta/monitoring/wizard/wizard.create_module.php:267 +msgid "Step by step wizard" +msgstr "Assistant Ć©tape par Ć©tape" + +#: ../../enterprise/meta/monitoring/wizard/wizard.create_module.php:268 +#: ../../enterprise/meta/general/main_header.php:309 +#: ../../enterprise/meta/general/main_header.php:391 +#: ../../enterprise/godmode/modules/configure_local_component.php:165 +#: ../../enterprise/godmode/agentes/plugins_manager.php:126 +#: ../../enterprise/godmode/policies/policy_plugins.php:108 +#: ../../godmode/modules/manage_network_components_form_common.php:53 +#: ../../godmode/users/configure_user.php:1192 +#: ../../godmode/netflow/nf_edit_form.php:237 +#: ../../godmode/alerts/alert_commands.php:157 +#: ../../godmode/alerts/alert_commands.php:194 +#: ../../godmode/alerts/configure_alert_template.php:946 +#: ../../godmode/alerts/configure_alert_template.php:987 +#: ../../godmode/alerts/configure_alert_template.php:1138 +#: ../../operation/netflow/nf_live_view.php:490 +msgid "Advanced" +msgstr "AvancĆ©" + +#: ../../enterprise/meta/monitoring/wizard/wizard.create_module.php:275 +#: ../../enterprise/meta/monitoring/wizard/wizard.create_module.php:280 +msgid "Click Create to continue" +msgstr "Cliquez sur CrĆ©er pour continuer" + +#: ../../enterprise/meta/monitoring/wizard/wizard.create_module.php:384 +#: ../../enterprise/meta/monitoring/wizard/wizard.php:145 +#: ../../godmode/reporting/graph_builder.graph_editor.php:367 +msgid "Please, select a module" +msgstr "Veuillez sĆ©lectionner un module" + +#: ../../enterprise/meta/monitoring/wizard/wizard.php:133 +#: ../../enterprise/godmode/wizards/Cloud.class.php:579 +#: ../../enterprise/include/class/VMware.app.php:863 +#: ../../enterprise/include/class/Omnishell.class.php:852 +#: ../../enterprise/include/class/DB2.app.php:840 +#: ../../enterprise/include/class/SAP.app.php:802 +#: ../../enterprise/include/class/Aws.cloud.php:1423 +#: ../../enterprise/include/class/MySQL.app.php:908 +#: ../../enterprise/include/class/Oracle.app.php:949 +#: ../../enterprise/include/class/MicrosoftSQLServer.app.php:793 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2180 +#: ../../enterprise/include/lib/ClusterViewer/ClusterWizard.php:1206 +#: ../../godmode/alerts/configure_alert_template.php:1171 +#: ../../godmode/wizards/HostDevices.class.php:1569 +#: ../../include/class/CustomNetScan.class.php:725 +msgid "Finish" +msgstr "Terminer" + +#: ../../enterprise/meta/monitoring/wizard/wizard.php:134 +msgid "The alert you are trying to add is already in the list of alerts" +msgstr "L'alerte que vous essayez d'ajouter est dĆ©jĆ  dans la liste des alertes." + +#: ../../enterprise/meta/monitoring/wizard/wizard.php:135 +#: ../../enterprise/meta/include/ajax/wizard.ajax.php:609 +#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:124 +msgid "No description available" +msgstr "Aucune description disponible" + +#: ../../enterprise/meta/monitoring/wizard/wizard.php:138 +#: ../../enterprise/operation/agentes/policy_view.php:184 +#: ../../enterprise/operation/agentes/policy_view.php:277 +#: ../../enterprise/operation/agentes/policy_view.php:570 +#: ../../godmode/modules/manage_network_components_form_plugin.php:54 +#: ../../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:2712 +#: ../../include/class/AgentWizard.class.php:2510 +msgid "Empty" +msgstr "Vide" + +#: ../../enterprise/meta/monitoring/wizard/wizard.php:139 +#: ../../include/functions_events.php:2983 ../../include/functions_events.php:3263 +msgid "New" +msgstr "Nouveau" + +#: ../../enterprise/meta/monitoring/wizard/wizard.php:144 +msgid "" +"Are you sure? If the agent is on a policy, it will be removed from the policy." +msgstr "" +"Ɗtes-vous sĆ»r ? Si lā€™agent est sur une politique, il sera supprimĆ© de la " +"politique." + +#: ../../enterprise/meta/monitoring/wizard/wizard.php:146 +msgid "Please, select an alert" +msgstr "Veuillez sĆ©lectionner une alerte" + +#: ../../enterprise/meta/monitoring/wizard/wizard.php:147 +msgid "Please, select an agent" +msgstr "Veuillez sĆ©lectionner un agent" + +#: ../../enterprise/meta/monitoring/wizard/wizard.php:149 +#: ../../enterprise/godmode/policies/policy_modules.php:1636 +#: ../../enterprise/godmode/massive/massive_add_modules_policy.php:195 +#: ../../enterprise/include/class/CommandCenter.class.php:463 +#: ../../enterprise/operation/log/log_viewer.php:845 +#: ../../enterprise/operation/log/log_viewer.php:867 +#: ../../godmode/massive/massive_copy_modules.php:235 +#: ../../godmode/massive/massive_operations.php:361 +#: ../../godmode/massive/massive_add_profiles.php:292 +#: ../../include/functions_events.php:3944 +#: ../../operation/reporting/reporting_viewer.php:347 +#: ../../operation/reporting/graph_viewer.php:316 +#: ../../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:6969 +#: ../../include/lib/Dashboard/Widgets/url.php:216 +msgid "Url" +msgstr "URL" + +#: ../../enterprise/meta/monitoring/wizard/wizard.php:152 +#: ../../godmode/modules/manage_network_components_form_wizard.php:393 +#: ../../godmode/modules/manage_network_components_form_wizard.php:435 +#: ../../include/functions_reports.php:1080 ../../include/functions_reports.php:1210 +msgid "String" +msgstr "ChaĆ®ne" + +#: ../../enterprise/meta/monitoring/wizard/wizard.php:153 +msgid "No agent name specified" +msgstr "Aucun nom d'agent spĆ©cifiĆ©" + +#: ../../enterprise/meta/monitoring/wizard/wizard.php:154 +msgid "Another agent already exists with the same name" +msgstr "Un autre agent existe dĆ©jĆ  avec le mĆŖme nom" + +#: ../../enterprise/meta/monitoring/wizard/wizard.php:156 +#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:430 +#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:433 +#: ../../godmode/agentes/module_manager_editor_common.php:627 +#: ../../godmode/agentes/module_manager_editor_common.php:629 +#, php-format +msgid "Agent interval x %s" +msgstr "Agent intervalle x %s" + +#: ../../enterprise/meta/monitoring/group_view.php:55 +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:1093 +#: ../../operation/users/user_edit.php:359 ../../operation/agentes/group_view.php:89 +#: ../../operation/menu.php:48 +msgid "Group view" +msgstr "Affichage du groupe" + +#: ../../enterprise/meta/monitoring/group_view.php:151 +msgid "Summary by status" +msgstr "RĆ©sumĆ© par Ć©tat" + +#: ../../enterprise/meta/monitoring/group_view.php:160 +#: ../../enterprise/meta/monitoring/group_view.php:172 +msgid "% Agents not init" +msgstr "% agents non initialisĆ©s" + +#: ../../enterprise/meta/monitoring/group_view.php:163 +msgid "% Agents Warning" +msgstr "% Agents en Avertissement" + +#: ../../enterprise/meta/monitoring/group_view.php:166 +msgid "% Agents OK" +msgstr "% Agents OK" + +#: ../../enterprise/meta/monitoring/group_view.php:169 +msgid "% Agents Unknown" +msgstr "% agents inconnus" + +#: ../../enterprise/meta/monitoring/group_view.php:177 +msgid "% Monitors Critical" +msgstr "% moniteurs en Ć©tat critique" + +#: ../../enterprise/meta/monitoring/group_view.php:180 +msgid "% Monitors Warning" +msgstr "% moniteurs en Ć©tat d'alerte" + +#: ../../enterprise/meta/monitoring/group_view.php:183 +msgid "% Monitors OK" +msgstr "% moniteurs OK" + +#: ../../enterprise/meta/monitoring/group_view.php:186 +msgid "% Monitors Unknown" +msgstr "% moniteurs inconnus" + +#: ../../enterprise/meta/monitoring/group_view.php:189 +msgid "% Monitors Not init" +msgstr "% moniteurs non initialisĆ©s" + +#: ../../enterprise/meta/monitoring/group_view.php:205 +#: ../../godmode/agentes/modificar_agente.php:944 +#: ../../operation/agentes/estado_agente.php:975 +#: ../../operation/agentes/group_view.php:577 +msgid "There are no defined agents" +msgstr "Aucun agent dĆ©fini" + +#: ../../enterprise/meta/monitoring/group_view.php:217 +#: ../../enterprise/meta/monitoring/group_view.php:223 +msgid "This data doesn't show in realtime" +msgstr "Ces donnĆ©es ne sont pas affichĆ©es en temps rĆ©el." + +#: ../../enterprise/meta/monitoring/group_view.php:234 +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 +#: ../../include/functions_reporting_html.php:2346 +#: ../../include/functions_reporting_html.php:2356 +#: ../../include/functions_alerts.php:3360 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:650 +#: ../../operation/tree.php:456 ../../operation/agentes/group_view.php:223 +msgid "Total" +msgstr "Total" + +#: ../../enterprise/meta/monitoring/group_view.php:247 +#: ../../enterprise/operation/agentes/policy_view.php:345 +#: ../../godmode/alerts/alert_list.list.php:574 +#: ../../godmode/alerts/alert_view.php:105 ../../mobile/operation/alerts.php:324 +#: ../../include/functions.php:1228 ../../include/functions_agents.php:2942 +#: ../../include/functions_agents.php:2953 ../../include/functions_ui.php:1253 +#: ../../include/class/AgentsAlerts.class.php:937 +#: ../../include/functions_reporting.php:12488 +#: ../../include/functions_events.php:2657 ../../include/functions_events.php:2857 +#: ../../operation/agentes/group_view.php:234 +#: ../../operation/snmpconsole/snmp_view.php:1018 +msgid "Alert fired" +msgstr "Alerte dĆ©clenchĆ©e" + +#: ../../enterprise/meta/monitoring/group_view.php:359 +#: ../../operation/agentes/group_view.php:320 +#, php-format +msgid "" +"This %s installation are using the secondary groups feature. For this reason, an " +"agent can be counted several times." +msgstr "" +"Cette %s installation utilise la fonctionnalitĆ© de groupes secondaires. Pour " +"cette raison, un agent peut ĆŖtre comptĆ© plusieurs fois." + +#: ../../enterprise/meta/monitoring/tactical.php:42 +#: ../../include/class/OrderInterpreter.class.php:105 +msgid "Tactical View" +msgstr "Vue tactique" + +#: ../../enterprise/meta/monitoring/tactical.php:63 +#: ../../enterprise/meta/general/main_header.php:103 +#: ../../enterprise/meta/general/main_menu.php:194 +#: ../../godmode/users/configure_user.php:1094 ../../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:360 ../../operation/agentes/tactical.php:69 +#: ../../operation/menu.php:45 +msgid "Tactical view" +msgstr "Affichage tactique" + +#: ../../enterprise/meta/monitoring/tactical.php:234 +msgid "Report of state" +msgstr "Rapport de l'Ć©tat" + +#: ../../enterprise/meta/monitoring/tactical.php:272 +#: ../../enterprise/meta/general/main_header.php:154 +#: ../../enterprise/meta/general/logon_ok.php:57 +#: ../../enterprise/meta/general/main_menu.php:259 +#: ../../enterprise/include/class/CommandCenter.class.php:1071 +#: ../../enterprise/tools/ipam/ipam_network.php:399 +#: ../../enterprise/tools/ipam/ipam_massive.php:103 ../../godmode/menu.php:232 +#: ../../godmode/events/events.php:128 ../../mobile/include/functions_web.php:25 +#: ../../mobile/operation/home.php:51 ../../mobile/operation/events.php:908 +#: ../../include/functions.php:4094 ../../include/ajax/events.php:2162 +#: ../../include/functions_reports.php:864 ../../include/functions_reports.php:868 +#: ../../include/functions_reports.php:872 ../../operation/menu.php:373 +#: ../../operation/events/events.php:1477 ../../operation/events/events.php:1485 +msgid "Events" +msgstr "ƉvĆ©nements" + +#: ../../enterprise/meta/monitoring/tactical.php:278 +msgid "Report of events" +msgstr "Rapport d'Ć©vĆ©nements" + +#: ../../enterprise/meta/monitoring/tactical.php:288 +msgid "Info of state in events" +msgstr "Information sur l'Ć©tat des Ć©vĆ©nements" + +#: ../../enterprise/meta/monitoring/tactical.php:308 +msgid "More events" +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:379 +msgid "View events" +msgstr "Afficher les Ć©vĆ©nements" + +#: ../../enterprise/meta/event/custom_events.php:44 +#: ../../godmode/netflow/nf_edit.php:217 ../../godmode/netflow/nf_edit_form.php:190 +#: ../../godmode/snmpconsole/snmp_filters.php:37 +#: ../../godmode/events/event_filter.php:225 +#: ../../include/ajax/custom_fields.php:652 +msgid "Create filter" +msgstr "CrĆ©er un filtre" + +#: ../../enterprise/meta/event/custom_events.php:50 ../../godmode/menu.php:227 +#: ../../godmode/events/events.php:68 +msgid "Event responses" +msgstr "RĆ©ponses des Ć©vĆ©nements" + +#: ../../enterprise/meta/event/custom_events.php:56 +#: ../../enterprise/meta/event/custom_events.php:61 +#: ../../enterprise/meta/event/custom_events.php:74 +#: ../../enterprise/meta/event/custom_events.php:92 +#: ../../godmode/agentes/agent_manager.php:907 +#: ../../godmode/agentes/agent_manager.php:932 ../../godmode/menu.php:93 +#: ../../godmode/massive/massive_edit_agents.php:1103 +#: ../../godmode/reporting/reporting_builder.item_editor.php:76 +#: ../../include/functions_reporting_html.php:1581 +#: ../../include/functions_events.php:4058 +#: ../../operation/agentes/status_monitor.php:62 +#: ../../operation/agentes/status_monitor.php:85 +#: ../../operation/agentes/ver_agente.php:1544 +msgid "Custom fields" +msgstr "Champs personnalisĆ©s" + +#: ../../enterprise/meta/event/custom_events.php:69 +#: ../../enterprise/meta/event/custom_events.php:88 +#: ../../enterprise/meta/general/main_header.php:291 +#: ../../enterprise/meta/general/main_menu.php:402 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2887 +#: ../../godmode/reporting/reporting_builder.list_items.php:222 +#: ../../godmode/events/events.php:90 ../../godmode/events/events.php:109 +msgid "Filters" +msgstr "Filtres" + +#: ../../enterprise/meta/event/custom_events.php:79 +#: ../../godmode/events/events.php:100 ../../include/ajax/events.php:1749 +msgid "Responses" +msgstr "RĆ©ponses" + +#: ../../enterprise/meta/event/custom_events.php:98 +msgid "The user is not in neither group with EW profile" +msgstr "L'utilisateur ne se trouve dans aucun groupe avec un profil EW" + +#: ../../enterprise/meta/event/custom_events.php:160 +#: ../../enterprise/include/ajax/log_viewer.ajax.php:75 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1250 +msgid "Fields" +msgstr "Champs" + +#: ../../enterprise/meta/event/custom_events.php:175 +#: ../../godmode/agentes/status_monitor_custom_fields.php:164 +#: ../../godmode/events/custom_events.php:129 +msgid "Fields available" +msgstr "Champs disponibles" + +#: ../../enterprise/meta/event/custom_events.php:177 +#: ../../godmode/agentes/status_monitor_custom_fields.php:186 +#: ../../godmode/events/custom_events.php:149 +msgid "Fields selected" +msgstr "Champs sĆ©lectionnĆ©s" + +#: ../../enterprise/meta/event/custom_events.php:187 +#: ../../godmode/agentes/status_monitor_custom_fields.php:171 +#: ../../godmode/events/custom_events.php:136 +msgid "Add fields to select" +msgstr "Ajouter champs Ć  sĆ©lectionner" + +#: ../../enterprise/meta/event/custom_events.php:197 +#: ../../godmode/agentes/status_monitor_custom_fields.php:180 +#: ../../godmode/events/custom_events.php:144 +msgid "Delete fields to select" +msgstr "Supprimer champs pour sĆ©lectionner" + +#: ../../enterprise/meta/event/custom_events.php:207 +#: ../../godmode/events/custom_events.php:74 +msgid "Show event fields" +msgstr "Afficher champs d'Ć©vĆ©nement" + +#: ../../enterprise/meta/event/custom_events.php:248 +#: ../../godmode/agentes/status_monitor_custom_fields.php:240 +#: ../../godmode/events/custom_events.php:222 +msgid "There must be at least one custom field. Timestamp will be set by default" +msgstr "" +"Il doit y avoir au moins un champ personnalisĆ©. Lā€™horodatage sera dĆ©fini par " +"dĆ©faut" + +#: ../../enterprise/meta/include/functions_autoprovision.php:378 +msgid "Round Robin" +msgstr "Round Robin" + +#: ../../enterprise/meta/include/functions_autoprovision.php:383 +msgid "Less loaded" +msgstr "Moins chargĆ©" + +#: ../../enterprise/meta/include/functions_autoprovision.php:422 +msgid "" +"It uses the Round-robin planning method to distribute, \n" +" in an equitable way and in a rational order, all the new Pandora " +"software agents that reach the Metaconsole.\n" +" The distribution of the agents will be done in a circular way, " +"assigning the corresponding server to each new agent.\n" +" " +msgstr "" +"Il utilise la mĆ©thode de planification Round-robin pour distribuer, \n" +" de maniĆØre Ć©quitable et dans un ordre rationnel, tous les " +"nouveaux agents logiciels Pandora qui atteignent la MĆ©taconsole.\n" +" La distribution des agents se fera de maniĆØre circulaire, en " +"attribuant le serveur correspondant Ć  chaque nouvel agent.\n" +" " + +#: ../../enterprise/meta/include/functions_autoprovision.php:430 +msgid "The new agents will be dynamically assigned to those servers with less load." +msgstr "" +"Les nouveaux agents seront affectĆ©s dynamiquement aux serveurs avec une charge " +"mineure." + +#: ../../enterprise/meta/include/functions_autoprovision.php:435 +msgid "" +"In the customized classification, we will be able to define our own " +"classification rules, \n" +" based on certain parameters retrieved from the information " +"reported by the agent (name of the agent and its IP address).\n" +" " +msgstr "" +"Dans la classification personnalisĆ©e, nous serons en mesure de dĆ©finir nos " +"propres rĆØgles de classification, \n" +" en fonction de certains paramĆØtres extraits des informations " +"communiquĆ©es par lā€™agent (nom de lā€™agent et son adresse IP).\n" +" " + +#: ../../enterprise/meta/include/functions_autoprovision.php:473 +#: ../../enterprise/meta/include/functions_autoprovision.php:640 +#: ../../enterprise/godmode/reporting/reporting_builder.template_list_item.php:190 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2944 +#: ../../enterprise/include/functions_ipam.php:1643 +#: ../../godmode/reporting/reporting_builder.list_items.php:440 +#: ../../godmode/reporting/reporting_builder.list_items.php:740 +#: ../../godmode/reporting/graph_builder.graph_editor.php:217 +#: ../../godmode/reporting/graph_builder.graph_editor.php:318 +msgid "Sort" +msgstr "Classer" + +#: ../../enterprise/meta/include/functions_autoprovision.php:529 +msgid "" +"There is no custom entries defined. Click on \"Create custom entry\" to add the " +"first." +msgstr "" +"Aucune entrĆ©e personnalisĆ©e nā€™est dĆ©finie. Cliquez sur Ā«Ā CrĆ©er une entrĆ©e " +"personnalisĆ©eĀ Ā» pour ajouter la premiĆØre." + +#: ../../enterprise/meta/include/functions_autoprovision.php:534 +msgid "Create custom entry" +msgstr "CrĆ©er une entrĆ©e personnalisĆ©e" + +#: ../../enterprise/meta/include/functions_autoprovision.php:561 +msgid "Provisioning configuration" +msgstr "Configuration de lā€™approvisionnement" + +#: ../../enterprise/meta/include/functions_autoprovision.php:572 +msgid "Configuration:" +msgstr "Configuration :" + +#: ../../enterprise/meta/include/functions_autoprovision.php:610 +msgid "" +"There is no rules configured for this custom entry. Click on Add button to create " +"the first." +msgstr "" +"Aucune rĆØgle nā€™est configurĆ©e pour cette entrĆ©e personnalisĆ©e. Cliquez Ajouter " +"pour en crĆ©er la premiĆØre." + +#: ../../enterprise/meta/include/functions_autoprovision.php:642 +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:495 +#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:272 +#: ../../extensions/quick_shell.php:190 +msgid "Method" +msgstr "MĆ©thode" + +#: ../../enterprise/meta/include/functions_autoprovision.php:723 +msgid "There was an error when editing the rule." +msgstr "Une erreur sā€™est produite lors de la modification de la rĆØgle." + +#: ../../enterprise/meta/include/functions_autoprovision.php:737 +msgid "Operation:" +msgstr "OpĆ©ration :" + +#: ../../enterprise/meta/include/functions_autoprovision.php:751 +msgid "Method:" +msgstr "MĆ©thode :" + +#: ../../enterprise/meta/include/functions_autoprovision.php:765 +#: ../../enterprise/include/functions_visual_map.php:215 +#: ../../enterprise/include/functions_visual_map.php:280 +msgid "Value:" +msgstr "ValeurĀ :" + +#: ../../enterprise/meta/include/functions_autoprovision.php:816 +msgid "Move up" +msgstr "DĆ©placer vers le haut" + +#: ../../enterprise/meta/include/functions_autoprovision.php:824 +msgid "Move down" +msgstr "DĆ©placer vers le bas" + +#: ../../enterprise/meta/include/functions_groups_meta.php:114 +#, php-format +msgid "Error Duplicate name (%s) " +msgstr "Erreur Nom dupliquĆ© (%s) " + +#: ../../enterprise/meta/include/functions_groups_meta.php:132 +#, php-format +msgid "(Error Duplicate ID (%d) ) " +msgstr "(Erreur ID dupliquĆ© (%d) ) " + +#: ../../enterprise/meta/include/functions_groups_meta.php:153 +msgid "Error Duplicate name" +msgstr "Erreur Nom dupliquĆ©" + +#: ../../enterprise/meta/include/functions_users_meta.php:182 +#: ../../enterprise/meta/include/functions_users_meta.php:204 +#: ../../enterprise/meta/general/main_header.php:321 +#: ../../enterprise/meta/general/main_header.php:401 +#: ../../enterprise/meta/general/main_header.php:408 +#: ../../enterprise/meta/general/main_menu.php:462 +#: ../../enterprise/meta/general/main_menu.php:522 +#: ../../enterprise/meta/general/main_menu.php:529 +#: ../../godmode/users/profile_list.php:63 ../../godmode/users/profile_list.php:84 +#: ../../godmode/users/configure_profile.php:55 +#: ../../godmode/users/configure_profile.php:76 +#: ../../godmode/users/user_list.php:214 ../../godmode/users/user_list.php:239 +#: ../../godmode/users/user_list.php:250 ../../godmode/users/configure_user.php:223 +#: ../../operation/users/user_edit_header.php:91 +msgid "User management" +msgstr "Gestion des utilisateurs" + +#: ../../enterprise/meta/include/functions_users_meta.php:186 +#: ../../enterprise/meta/include/functions_users_meta.php:212 +#: ../../godmode/users/profile_list.php:74 +#: ../../godmode/users/configure_profile.php:66 +#: ../../godmode/users/user_list.php:225 ../../godmode/users/configure_user.php:234 +#: ../../godmode/menu.php:146 +msgid "Profile management" +msgstr "Gestion des profils" + +#: ../../enterprise/meta/include/functions_users_meta.php:193 +#: ../../enterprise/meta/include/functions_users_meta.php:208 +#: ../../enterprise/meta/general/header.php:204 +#: ../../enterprise/meta/general/header.php:214 +#: ../../enterprise/meta/general/main_header.php:624 +#: ../../enterprise/meta/general/main_header.php:630 ../../operation/menu.php:481 +#: ../../general/header.php:407 ../../general/header.php:417 +msgid "Edit my user" +msgstr "Modifier mon utilisateur" + +#: ../../enterprise/meta/include/functions_users_meta.php:200 +msgid "User synchronization" +msgstr "Synchronisation de l'utilisateur" + +#: ../../enterprise/meta/include/functions_users_meta.php:216 +msgid "Group synchronization" +msgstr "Synchronisation de groupe" + +#: ../../enterprise/meta/include/functions_wizard_meta.php:186 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1801 +#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:255 +#: ../../enterprise/include/functions_reporting_csv.php:718 +#: ../../godmode/agentes/agent_manager.php:292 +#: ../../godmode/reporting/reporting_builder.item_editor.php:69 +#: ../../include/functions_reporting_html.php:1553 +msgid "Alias" +msgstr "Alias" + +#: ../../enterprise/meta/include/functions_wizard_meta.php:207 +#: ../../enterprise/meta/include/functions_wizard_meta.php:211 +#: ../../enterprise/meta/include/functions_wizard_meta.php:479 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1465 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1813 +#: ../../enterprise/include/functions_reporting_csv.php:718 +#: ../../godmode/agentes/agent_manager.php:301 +#: ../../godmode/servers/modificar_server.php:62 +#: ../../include/functions_reporting_html.php:1557 +#: ../../include/functions_reporting_html.php:3920 +#: ../../include/functions_reporting_html.php:4014 +#: ../../include/functions_treeview.php:640 ../../include/functions_events.php:4034 +#: ../../operation/gis_maps/ajax.php:290 +msgid "IP Address" +msgstr "Adresse IP" + +#: ../../enterprise/meta/include/functions_wizard_meta.php:236 +#: ../../enterprise/meta/include/functions_wizard_meta.php:682 +#: ../../enterprise/godmode/modules/configure_local_component.php:503 +#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:183 +#: ../../enterprise/godmode/setup/setup_log_collector.php:49 +#: ../../enterprise/include/functions_metaconsole.php:1311 +#: ../../enterprise/include/functions_metaconsole.php:1344 +#: ../../enterprise/include/functions_metaconsole.php:1377 +#: ../../enterprise/include/functions_metaconsole.php:1410 +#: ../../enterprise/include/functions_metaconsole.php:1443 +#: ../../enterprise/include/functions_metaconsole.php:1474 +#: ../../enterprise/include/functions_metaconsole.php:1507 +#: ../../godmode/agentes/module_manager_editor_web.php:172 +msgid "Check" +msgstr "VĆ©rifier" + +#: ../../enterprise/meta/include/functions_wizard_meta.php:245 +#: ../../enterprise/meta/include/functions_wizard_meta.php:530 +#: ../../enterprise/meta/include/functions_wizard_meta.php:602 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1150 +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:48 +#: ../../enterprise/include/functions_reporting_csv.php:992 +#: ../../enterprise/include/class/Aws.cloud.php:345 +#: ../../godmode/alerts/configure_alert_template.php:229 +#: ../../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:1699 ../../include/functions_reports.php:771 +#: ../../include/functions_reporting.php:9585 +msgid "General" +msgstr "GĆ©nĆ©ral" + +#: ../../enterprise/meta/include/functions_wizard_meta.php:306 +#: ../../godmode/modules/manage_network_templates_form.php:341 +#: ../../include/class/ModuleTemplates.class.php:804 +msgid "Components" +msgstr "Composants" + +#: ../../enterprise/meta/include/functions_wizard_meta.php:308 +#: ../../enterprise/include/functions_reporting_csv.php:2334 +msgid "Agent modules" +msgstr "Module d'agent" + +#: ../../enterprise/meta/include/functions_wizard_meta.php:361 +msgid "Add selected modules to agent" +msgstr "Ajouter modules sĆ©lectionnĆ©s Ć  l'agent" + +#: ../../enterprise/meta/include/functions_wizard_meta.php:399 +msgid "Undo changes" +msgstr "Annuler les modifications" + +#: ../../enterprise/meta/include/functions_wizard_meta.php:492 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:753 +#: ../../godmode/agentes/module_manager_editor_wmi.php:59 +#: ../../godmode/agentes/module_manager_editor_network.php:94 +#: ../../godmode/massive/massive_edit_modules.php:817 +msgid "Auto" +msgstr "Automatique" + +#: ../../enterprise/meta/include/functions_wizard_meta.php:493 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:754 +#: ../../godmode/agentes/module_manager_editor_wmi.php:60 +#: ../../godmode/agentes/module_manager_editor_network.php:95 +#: ../../godmode/massive/massive_edit_modules.php:818 +msgid "Force primary key" +msgstr "Forcer clĆ© principale" + +#: ../../enterprise/meta/include/functions_wizard_meta.php:516 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1470 +#: ../../enterprise/meta/include/functions_events_meta.php:70 +#: ../../enterprise/meta/include/functions_meta.php:1165 +#: ../../enterprise/meta/include/functions_meta.php:1219 +#: ../../enterprise/meta/include/functions_meta.php:1273 +#: ../../enterprise/meta/general/login_page.php:125 +#: ../../enterprise/meta/general/login_page.php:167 +#: ../../enterprise/extensions/disabled/check_acls.php:47 +#: ../../enterprise/extensions/disabled/check_acls.php:132 +#: ../../enterprise/godmode/setup/setup_auth.php:1039 +#: ../../enterprise/godmode/setup/setup_auth.php:1071 +#: ../../enterprise/godmode/servers/manage_export_form.php:113 +#: ../../enterprise/include/functions_tasklist.php:152 +#: ../../enterprise/include/class/DB2.app.php:501 +#: ../../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 +#: ../../godmode/update_manager/update_manager.history.php:43 +#: ../../godmode/setup/setup_ehorus.php:80 +#: ../../godmode/setup/setup_integria.php:283 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3444 +#: ../../godmode/events/custom_events.php:99 ../../mobile/include/user.class.php:396 +#: ../../mobile/operation/tactical.php:349 +#: ../../include/functions_reporting_html.php:5769 ../../include/functions.php:3053 +#: ../../include/functions_cron.php:463 ../../include/functions_config.php:682 +#: ../../include/functions_config.php:702 +#: ../../include/class/CredentialStore.class.php:805 +#: ../../include/class/CredentialStore.class.php:1134 +#: ../../include/class/AuditLog.class.php:108 +#: ../../include/class/AuditLog.class.php:211 ../../include/functions_events.php:202 +#: ../../include/functions_events.php:253 ../../operation/search_users.php:71 +#: ../../operation/users/user_edit.php:696 ../../operation/users/user_edit.php:742 +#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:118 +#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:249 +#: ../../general/logon_ok.php:240 ../../general/login_page.php:230 +#: ../../general/login_page.php:272 +msgid "User" +msgstr "Utilisateur" + +#: ../../enterprise/meta/include/functions_wizard_meta.php:520 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1474 +#: ../../enterprise/meta/include/functions_meta.php:1177 +#: ../../enterprise/meta/include/functions_meta.php:1231 +#: ../../enterprise/meta/include/functions_meta.php:1285 +#: ../../enterprise/meta/general/login_page.php:139 +#: ../../enterprise/meta/general/login_page.php:181 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:851 +#: ../../enterprise/godmode/setup/setup_module_library.php:52 +#: ../../enterprise/godmode/setup/setup_auth.php:1045 +#: ../../enterprise/godmode/setup/setup_auth.php:1077 +#: ../../enterprise/godmode/servers/credential_boxes_satellite.php:250 +#: ../../enterprise/godmode/servers/manage_credential_boxes.php:59 +#: ../../enterprise/godmode/servers/manage_export_form.php:117 +#: ../../enterprise/include/ajax/servers.ajax.php:101 +#: ../../enterprise/include/ajax/servers.ajax.php:159 +#: ../../enterprise/include/ajax/servers.ajax.php:285 +#: ../../enterprise/include/functions_ui.php:104 +#: ../../enterprise/include/functions_setup.php:55 +#: ../../enterprise/include/functions_setup.php:113 +#: ../../enterprise/include/class/VMware.app.php:732 +#: ../../enterprise/include/class/DB2.app.php:513 +#: ../../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 +#: ../../godmode/modules/manage_network_components_form_wmi.php:49 +#: ../../godmode/users/configure_user.php:931 +#: ../../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:686 +#: ../../include/functions_config.php:706 +#: ../../include/class/CredentialStore.class.php:958 +#: ../../include/class/CredentialStore.class.php:995 +#: ../../include/class/CredentialStore.class.php:1135 +#: ../../include/class/CredentialStore.class.php:1158 +#: ../../include/class/AgentWizard.class.php:680 +#: ../../operation/users/user_edit.php:702 ../../operation/users/user_edit.php:748 +#: ../../general/login_page.php:244 ../../general/login_page.php:285 +msgid "Password" +msgstr "Mot de passe" + +#: ../../enterprise/meta/include/functions_wizard_meta.php:590 +msgid "Latency" +msgstr "Latence" + +#: ../../enterprise/meta/include/functions_wizard_meta.php:591 +msgid "Response" +msgstr "RĆ©ponse" + +#: ../../enterprise/meta/include/functions_wizard_meta.php:593 +#: ../../godmode/agentes/module_manager_editor_web.php:199 +msgid "Check type" +msgstr "VĆ©rifier le type" + +#: ../../enterprise/meta/include/functions_wizard_meta.php:610 +#: ../../enterprise/meta/include/functions_wizard_meta.php:667 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:1066 +#: ../../enterprise/include/functions_enterprise.php:460 +#: ../../godmode/agentes/module_manager_editor_web.php:93 +#: ../../godmode/massive/massive_edit_modules.php:1141 +msgid "Web checks" +msgstr "VĆ©rification web" + +#: ../../enterprise/meta/include/functions_wizard_meta.php:646 +msgid "String to check" +msgstr "ChaĆ®ne Ć  vĆ©rifier" + +#: ../../enterprise/meta/include/functions_wizard_meta.php:652 +msgid "Add check" +msgstr "Ajouter vĆ©rification" + +#: ../../enterprise/meta/include/functions_wizard_meta.php:661 +msgid "Delete check" +msgstr "Supprimer vĆ©rification" + +#: ../../enterprise/meta/include/functions_wizard_meta.php:674 +#: ../../enterprise/godmode/modules/configure_local_component.php:494 +#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:180 +#: ../../godmode/agentes/module_manager_editor_web.php:164 +msgid "Load basic" +msgstr "Charger les bases" + +#: ../../enterprise/meta/include/functions_wizard_meta.php:680 +#: ../../godmode/agentes/module_manager_editor_web.php:170 +msgid "Load a basic structure on Web Checks" +msgstr "Charger une structure de base sur les contrĆ“les web" + +#: ../../enterprise/meta/include/functions_wizard_meta.php:688 +#: ../../godmode/agentes/module_manager_editor_web.php:178 +msgid "Check the correct structure of the WebCheck" +msgstr "VĆ©rifiez la structure correcte du WebCheck" + +#: ../../enterprise/meta/include/functions_wizard_meta.php:695 +#: ../../godmode/agentes/module_manager_editor_web.php:253 +msgid "First line must be \"task_begin\"" +msgstr "La premiĆØre ligne doit ĆŖtre Ā« task_begin Ā»." + +#: ../../enterprise/meta/include/functions_wizard_meta.php:696 +#: ../../godmode/agentes/module_manager_editor_web.php:254 +msgid "Webchecks configuration is empty" +msgstr "La configuration des Webchecks est vide." + +#: ../../enterprise/meta/include/functions_wizard_meta.php:697 +#: ../../enterprise/meta/include/functions_wizard_meta.php:698 +#: ../../godmode/agentes/module_manager_editor_web.php:255 +#: ../../godmode/agentes/module_manager_editor_web.php:256 +msgid "Last line must be \"task_end\"" +msgstr "La derniĆØre ligne doit ĆŖtre Ā« task_end Ā»." + +#: ../../enterprise/meta/include/functions_wizard_meta.php:699 +#: ../../enterprise/godmode/modules/configure_local_component.php:513 +#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:203 +#: ../../godmode/agentes/module_manager_editor_web.php:257 +msgid "There is a line with a unknown token 'token_fail'." +msgstr "Une ligne contient un token inconnu Ā« token_fail Ā»." + +#: ../../enterprise/meta/include/functions_wizard_meta.php:700 +#: ../../godmode/agentes/module_manager_editor_web.php:259 +msgid "Web checks are built correctly" +msgstr "ContrĆ“les web Ć©tablis correctement" + +#: ../../enterprise/meta/include/functions_wizard_meta.php:918 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1035 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1202 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1520 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1605 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1742 #: ../../enterprise/meta/agentsearch.php:137 -#: ../../enterprise/godmode/servers/manage_export_form.php:95 -#: ../../enterprise/godmode/servers/manage_export.php:139 #: ../../enterprise/godmode/modules/configure_local_component.php:289 -#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:690 #: ../../enterprise/godmode/agentes/inventory_manager.php:223 #: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:421 #: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:463 #: ../../enterprise/godmode/policies/policy_inventory_modules.php:304 -#: ../../mobile/operation/modules.php:657 ../../mobile/operation/modules.php:659 -#: ../../mobile/operation/modules.php:851 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:690 +#: ../../enterprise/godmode/servers/manage_export.php:139 +#: ../../enterprise/godmode/servers/manage_export_form.php:95 +#: ../../enterprise/include/functions_ui.php:84 +#: ../../enterprise/include/class/Azure.cloud.php:847 +#: ../../enterprise/include/class/VMware.app.php:667 +#: ../../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: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 +#: ../../enterprise/include/class/MicrosoftSQLServer.app.php:537 +#: ../../enterprise/include/functions_ipam.php:1354 +#: ../../enterprise/operation/agentes/tag_view.php:603 +#: ../../enterprise/operation/agentes/tag_view.php:681 +#: ../../enterprise/tools/ipam/ipam_list.php:617 #: ../../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/agent_manager.php:369 +#: ../../godmode/agentes/module_manager_editor_common.php:617 +#: ../../godmode/agentes/module_manager_editor_common.php:642 +#: ../../godmode/agentes/module_manager.php:856 #: ../../godmode/massive/massive_edit_agents.php:705 #: ../../godmode/massive/massive_edit_modules.php:754 #: ../../godmode/wizards/HostDevices.class.php:798 #: ../../godmode/wizards/DiscoveryTaskList.class.php:594 -#: ../../godmode/agentes/module_manager.php:856 -#: ../../godmode/agentes/module_manager_editor_common.php:617 -#: ../../godmode/agentes/module_manager_editor_common.php:642 -#: ../../godmode/agentes/status_monitor_custom_fields.php:93 -#: ../../godmode/agentes/status_monitor_custom_fields.php:147 -#: ../../godmode/agentes/agent_manager.php:369 +#: ../../mobile/operation/modules.php:657 ../../mobile/operation/modules.php:659 +#: ../../mobile/operation/modules.php:851 +#: ../../include/functions_reporting_html.php:3487 +#: ../../include/ajax/events.php:2315 ../../include/functions_treeview.php:84 +#: ../../include/functions_treeview.php:646 +#: ../../include/class/CustomNetScan.class.php:520 +#: ../../include/lib/Dashboard/Widgets/sla_percent.php:331 +#: ../../include/lib/Dashboard/Widgets/BlockHistogram.php:296 +#: ../../include/lib/Dashboard/Widgets/graph_module_histogram.php:321 +#: ../../include/lib/Dashboard/Widgets/custom_graph.php:350 +#: ../../include/lib/Dashboard/Widgets/single_graph.php:305 +#: ../../include/lib/Dashboard/Widgets/top_n.php:236 +#: ../../operation/search_agents.php:45 ../../operation/search_agents.php:51 +#: ../../operation/agentes/estado_agente.php:751 +#: ../../operation/agentes/status_monitor.php:1328 +#: ../../operation/agentes/estado_generalagente.php:357 +#: ../../operation/netflow/nf_live_view.php:270 +#: ../../operation/search_modules.php:35 ../../operation/events/sound_events.php:219 msgid "Interval" msgstr "Intervalle" -#: ../../operation/search_modules.php:37 -#: ../../operation/agentes/status_monitor.php:1346 -#: ../../include/functions_visual_map_editor.php:58 -#: ../../include/ajax/module.php:983 -#: ../../include/class/NetworkMap.class.php:2908 -#: ../../include/lib/Dashboard/Widgets/custom_graph.php:303 -#: ../../include/functions_events.php:4584 -#: ../../enterprise/operation/services/services.service.php:130 -#: ../../enterprise/operation/services/services.list.php:509 -#: ../../enterprise/operation/agentes/tag_view.php:682 -#: ../../extensions/realtime_graphs.php:161 -#: ../../godmode/agentes/status_monitor_custom_fields.php:105 -#: ../../godmode/agentes/status_monitor_custom_fields.php:150 -msgid "Graph" -msgstr "Graphique" +#: ../../enterprise/meta/include/functions_wizard_meta.php:924 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1041 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1222 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1525 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1610 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1747 +#: ../../enterprise/godmode/modules/configure_local_component.php:468 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:868 +#: ../../enterprise/include/functions_reporting_csv.php:2741 +#: ../../godmode/modules/manage_network_components_form_common.php:312 +#: ../../godmode/agentes/module_manager_editor_common.php:582 +#: ../../godmode/massive/massive_edit_modules.php:925 +#: ../../include/functions_reporting_html.php:3488 +msgid "Unit" +msgstr "UnitĆ©" -#: ../../operation/search_modules.php:38 -#: ../../operation/events/events.build_table.php:330 -#: ../../operation/agentes/status_monitor.php:1356 -#: ../../operation/agentes/exportdata.csv.php:74 -#: ../../operation/agentes/exportdata.php:83 -#: ../../operation/agentes/exportdata.excel.php:74 -#: ../../include/ajax/module.php:982 ../../include/ajax/custom_fields.php:412 -#: ../../include/functions_events.php:210 ../../include/functions_events.php:293 -#: ../../include/functions_events.php:6777 -#: ../../include/functions_netflow.php:301 ../../include/functions_graph.php:3769 -#: ../../include/functions_reporting.php:4017 -#: ../../include/functions_reporting.php:4058 -#: ../../include/functions_reporting.php:4809 -#: ../../include/functions_reporting_html.php:2108 -#: ../../include/functions_reporting_html.php:2584 -#: ../../include/functions_reporting_html.php:2588 -#: ../../include/functions_reporting_html.php:2589 -#: ../../include/functions_reporting_html.php:2593 -#: ../../include/functions_reporting_html.php:2598 -#: ../../include/functions_reporting_html.php:2603 -#: ../../include/functions_reporting_html.php:2607 -#: ../../include/functions_reporting_html.php:2612 -#: ../../include/functions_reporting_html.php:2619 -#: ../../include/functions_reporting_html.php:2668 -#: ../../include/functions_reporting_html.php:2741 -#: ../../enterprise/operation/agentes/tag_view.php:684 -#: ../../enterprise/operation/agentes/policy_view.php:398 +#: ../../enterprise/meta/include/functions_wizard_meta.php:956 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1047 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1259 +msgid "Various" +msgstr "Divers" + +#: ../../enterprise/meta/include/functions_wizard_meta.php:964 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1481 +#: ../../include/class/ExternalTools.class.php:570 +msgid "SNMP Community" +msgstr "CommunautĆ© SNMP" + +#: ../../enterprise/meta/include/functions_wizard_meta.php:971 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1055 +#: ../../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:1470 +msgid "Credentials" +msgstr "Identifiants" + +#: ../../enterprise/meta/include/functions_wizard_meta.php:978 +#: ../../enterprise/meta/include/functions_wizard_meta.php:987 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1063 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1072 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1266 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1275 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1503 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1512 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1588 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1597 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1708 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1717 +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:281 +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:393 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:766 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1813 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2452 +#: ../../enterprise/include/functions_reporting_csv.php:1030 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2250 +#: ../../godmode/alerts/alert_view.php:266 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1400 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2510 +#: ../../include/functions_reporting_html.php:4786 +#: ../../include/functions_ui.php:2610 ../../include/functions_reporting.php:1526 +msgid "Min" +msgstr "Minimum" + +#: ../../enterprise/meta/include/functions_wizard_meta.php:980 +#: ../../enterprise/meta/include/functions_wizard_meta.php:989 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1065 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1074 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1268 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1277 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1505 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1514 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1590 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1599 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1710 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1719 +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:293 +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:386 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:774 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1811 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2445 +#: ../../enterprise/include/functions_reporting_csv.php:1030 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2250 +#: ../../godmode/alerts/alert_view.php:266 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1402 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2503 +#: ../../include/functions_reporting_html.php:4785 +#: ../../include/functions_ui.php:2610 ../../include/functions_reporting.php:1522 +msgid "Max" +msgstr "Maximum" + +#: ../../enterprise/meta/include/functions_wizard_meta.php:982 +#: ../../enterprise/meta/include/functions_wizard_meta.php:991 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1067 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1076 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1270 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1279 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1507 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1516 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1592 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1601 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1712 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1721 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1737 +#: ../../enterprise/godmode/modules/configure_local_component.php:338 +#: ../../enterprise/godmode/modules/configure_local_component.php:381 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:547 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:638 +#: ../../godmode/modules/manage_network_components_form_common.php:192 +#: ../../godmode/modules/manage_network_components_form_common.php:233 +#: ../../godmode/modules/manage_network_components_form_wizard.php:396 +#: ../../godmode/modules/manage_network_components_form_wizard.php:438 +#: ../../godmode/agentes/module_manager_editor_common.php:459 +#: ../../godmode/agentes/module_manager_editor_common.php:520 +#: ../../godmode/massive/massive_edit_modules.php:610 +#: ../../godmode/massive/massive_edit_modules.php:701 +msgid "Inverse interval" +msgstr "Intervalle inverse" + +#: ../../enterprise/meta/include/functions_wizard_meta.php:996 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1081 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1314 +#: ../../include/ajax/module.php:981 +msgid "Thresholds" +msgstr "Seuils" + +#: ../../enterprise/meta/include/functions_wizard_meta.php:1087 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1619 +#: ../../godmode/agentes/module_manager_editor_web.php:224 +msgid "Proxy URL" +msgstr "URL du proxy" + +#: ../../enterprise/meta/include/functions_wizard_meta.php:1092 +msgid "Web configuration" +msgstr "Configuration web" + +#: ../../enterprise/meta/include/functions_wizard_meta.php:1286 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1299 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1728 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1735 +msgid "Str: " +msgstr "ChaĆ®ne : " + +#: ../../enterprise/meta/include/functions_wizard_meta.php:1295 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1308 +msgid " Inverse interval " +msgstr " Intervalle inverse " + +#: ../../enterprise/meta/include/functions_wizard_meta.php:1368 +msgid "Alerts in module" +msgstr "Alertes dans le module" + +#: ../../enterprise/meta/include/functions_wizard_meta.php:1376 +#: ../../include/functions_reporting_html.php:5131 +msgid "Alert description" +msgstr "Description de l'alerte" + +#: ../../enterprise/meta/include/functions_wizard_meta.php:1615 +msgid "Checks" +msgstr "VĆ©rifications" + +#: ../../enterprise/meta/include/functions_wizard_meta.php:1826 +msgid "Deleted modules" +msgstr "Modules supprimĆ©s" + +#: ../../enterprise/meta/include/functions_wizard_meta.php:2014 +#: ../../enterprise/meta/include/functions_wizard_meta.php:2114 +#: ../../enterprise/meta/include/functions_wizard_meta.php:2669 +#: ../../enterprise/meta/include/functions_wizard_meta.php:2788 +#: ../../enterprise/meta/include/functions_wizard_meta.php:2879 +#: ../../enterprise/meta/include/functions_wizard_meta.php:3074 +msgid "Another module already exists with the same name" +msgstr "Un autre module existe dĆ©jĆ  avec le mĆŖme nom" + +#: ../../enterprise/meta/include/functions_wizard_meta.php:2026 +#: ../../enterprise/meta/include/functions_wizard_meta.php:2121 +#: ../../enterprise/meta/include/functions_wizard_meta.php:2681 +#, php-format +msgid "Error adding module %s" +msgstr "Erreur d'ajout du module %s" + +#: ../../enterprise/meta/include/functions_wizard_meta.php:2035 +#: ../../enterprise/meta/include/functions_wizard_meta.php:2130 +msgid "There was an error creating the alerts, the operation has been cancelled" +msgstr "Erreur de crĆ©ation des alertes ; l'opĆ©ration a Ć©tĆ© annulĆ©e." + +#: ../../enterprise/meta/include/functions_wizard_meta.php:2064 +#: ../../enterprise/meta/include/functions_wizard_meta.php:2159 +#: ../../enterprise/godmode/policies/policy_modules.php:919 +msgid "Successfully added module." +msgstr "Module ajoutĆ© correctement" + +#: ../../enterprise/meta/include/functions_wizard_meta.php:2219 +#, php-format +msgid "Could not create agent %s" +msgstr "Impossible de crĆ©er un agent %s" + +#: ../../enterprise/meta/include/functions_wizard_meta.php:2232 +msgid "Agent successfully added" +msgstr "Agent ajoutĆ© avec succĆØs" + +#: ../../enterprise/meta/include/functions_wizard_meta.php:2253 +#: ../../enterprise/meta/include/functions_wizard_meta.php:2371 +#, php-format +msgid "%s Modules created" +msgstr "%s modules crĆ©Ć©s" + +#: ../../enterprise/meta/include/functions_wizard_meta.php:2329 +#, php-format +msgid "Could not update agent %s" +msgstr "Impossible de mettre Ć  jour l'agent %s" + +#: ../../enterprise/meta/include/functions_wizard_meta.php:2338 +#: ../../enterprise/include/class/AgentRepository.class.php:522 +msgid "Agent successfully updated" +msgstr "Agent mis Ć  jour avec succĆØs" + +#: ../../enterprise/meta/include/functions_wizard_meta.php:2377 +#, php-format +msgid "%s Modules deleted" +msgstr "%s modules supprimĆ©s" + +#: ../../enterprise/meta/include/functions_wizard_meta.php:2693 +msgid "There was an error creating the alerts, the operation has been cancelled ." +msgstr "Erreur de crĆ©ation des alertes ; l'opĆ©ration a Ć©tĆ© annulĆ©e." + +#: ../../enterprise/meta/include/functions_wizard_meta.php:2723 +msgid "Module successfully added." +msgstr "Module ajoutĆ© avec succĆØs" + +#: ../../enterprise/meta/include/functions_wizard_meta.php:2795 +#: ../../enterprise/meta/include/functions_wizard_meta.php:2886 +#: ../../enterprise/meta/include/functions_wizard_meta.php:3081 +#, php-format +msgid "Error updating module %s" +msgstr "Erreur de mise Ć  jour le module %s" + +#: ../../enterprise/meta/include/functions_wizard_meta.php:2817 +#: ../../enterprise/meta/include/functions_wizard_meta.php:2908 +#: ../../enterprise/meta/include/functions_wizard_meta.php:3103 +msgid "There was an error updating the alerts, the operation has been cancelled" +msgstr "Erreur de mise Ć  jour des alertes ; l'opĆ©ration a Ć©tĆ© annulĆ©e." + +#: ../../enterprise/meta/include/functions_wizard_meta.php:2838 +#: ../../enterprise/meta/include/functions_wizard_meta.php:2929 +#: ../../enterprise/meta/include/functions_wizard_meta.php:3124 +msgid "Successfully updated module." +msgstr "Module mis Ć  jour correctement" + +#: ../../enterprise/meta/include/functions_wizard_meta.php:3504 +msgid "Manage agent modules" +msgstr "GĆ©rer les modules d'agents" + +#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:92 +#: ../../godmode/alerts/alert_templates.php:61 +msgid "Everyday" +msgstr "Tous les jours" + +#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:104 +#: ../../enterprise/include/ajax/ipam.ajax.php:521 +#: ../../enterprise/tools/ipam/ipam_editor.php:327 +#: ../../godmode/alerts/alert_templates.php:73 +#: ../../include/functions_config.php:1562 +msgid "Days" +msgstr "Jours" + +#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:104 +#: ../../godmode/alerts/alert_templates.php:73 +msgid "Every" +msgstr "Chaque" + +#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:115 +#: ../../godmode/alerts/alert_templates.php:84 +msgid "and" +msgstr "et" + +#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:122 +#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:313 +#: ../../enterprise/godmode/alerts/alert_inventory_builder.php:230 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2245 +#: ../../godmode/snmpconsole/snmp_alert.php:1083 +#: ../../godmode/alerts/alert_templates.php:91 +#: ../../godmode/alerts/configure_alert_template.php:676 +#: ../../godmode/alerts/alert_view.php:262 +msgid "Time threshold" +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:467 +#: ../../enterprise/include/functions_reporting_pdf.php:1794 +#: ../../enterprise/include/functions_reporting_pdf.php:1867 +#: ../../enterprise/include/functions_reporting_pdf.php:1982 +#: ../../enterprise/include/functions_reporting_csv.php:715 +#: ../../enterprise/include/functions_reporting_csv.php:951 +#: ../../enterprise/include/functions_reporting_csv.php:1325 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2375 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2379 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3379 +#: ../../godmode/agentes/planned_downtime.list.php:293 +#: ../../godmode/alerts/alert_list.list.php:659 +#: ../../godmode/alerts/alert_list.list.php:662 +#: ../../godmode/alerts/alert_templates.php:96 +#: ../../include/functions_reporting_html.php:147 +#: ../../include/functions_reporting_html.php:2990 +#: ../../include/functions_reporting_html.php:3795 +#: ../../include/rest-api/index.php:359 +#: ../../include/rest-api/models/VisualConsole/Items/ColorCloud.php:449 +#: ../../include/rest-api/models/VisualConsole/Items/ColorCloud.php:510 +#: ../../operation/agentes/gis_view.php:220 +#: ../../operation/reporting/reporting_viewer.php:304 +msgid "From" +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:467 +#: ../../enterprise/godmode/policies/policy_external_alerts.php:602 +#: ../../enterprise/include/functions_reporting_pdf.php:1800 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1017 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2375 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2379 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2536 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3381 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3510 +#: ../../godmode/massive/massive_add_action_alerts.php:254 +#: ../../godmode/alerts/alert_list.list.php:659 +#: ../../godmode/alerts/alert_list.list.php:779 +#: ../../godmode/alerts/alert_templates.php:98 +#: ../../godmode/alerts/alert_list.builder.php:129 +#: ../../include/functions_reporting_html.php:148 +#: ../../include/functions_reporting_html.php:2995 +#: ../../include/ajax/alert_list.ajax.php:527 +#: ../../include/class/AgentsAlerts.class.php:316 +#: ../../include/functions_reporting.php:14211 +#: ../../operation/reporting/reporting_viewer.php:308 +msgid "to" +msgstr "pour" + +#: ../../enterprise/meta/include/ajax/wizard.ajax.php:56 +msgid "Agent succesfully deleted" +msgstr "Agent supprimĆ© correctement" + +#: ../../enterprise/meta/include/ajax/wizard.ajax.php:58 +msgid "Could not delete agent" +msgstr "C'est ne pas possible de effacer l'agent" + +#: ../../enterprise/meta/include/functions_events_meta.php:58 +#: ../../include/functions_events.php:199 +msgid "Event id" +msgstr "Identifiant de l'Ć©vĆ©nement" + +#: ../../enterprise/meta/include/functions_events_meta.php:62 +#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:419 +#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:479 +#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:526 +#: ../../include/functions_reporting_html.php:1310 +#: ../../include/functions_reporting_html.php:1318 +#: ../../include/functions_reporting_html.php:5063 +#: ../../include/functions_events.php:200 ../../include/functions_events.php:2363 +#: ../../include/functions_events.php:4521 +msgid "Event name" +msgstr "Nom de l'Ć©vĆ©nement" + +#: ../../enterprise/meta/include/functions_events_meta.php:66 +#: ../../enterprise/include/functions_reporting_csv.php:871 +#: ../../enterprise/include/functions_ipam.php:2039 +#: ../../godmode/agentes/modificar_agente.php:647 +#: ../../godmode/agentes/agent_manager.php:213 +#: ../../mobile/operation/modules.php:597 ../../mobile/operation/modules.php:849 +#: ../../include/functions_reporting_html.php:3431 +#: ../../include/functions_treeview.php:617 ../../include/functions_events.php:201 +#: ../../include/functions_events.php:247 ../../include/functions_events.php:2368 +#: ../../operation/events/events.php:2436 +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:802 -#: ../../enterprise/include/functions_reporting_csv.php:832 -#: ../../enterprise/include/functions_reporting_csv.php:879 -#: ../../enterprise/include/functions_reporting_csv.php:915 -#: ../../enterprise/include/functions_reporting_csv.php:954 -#: ../../enterprise/include/functions_reporting_csv.php:1014 +#: ../../enterprise/include/functions_reporting_csv.php:875 #: ../../enterprise/include/functions_reporting_csv.php:1458 #: ../../enterprise/include/functions_reporting_csv.php:2281 #: ../../enterprise/include/functions_reporting_csv.php:2317 -#: ../../enterprise/include/functions_reporting_csv.php:2423 -#: ../../enterprise/include/functions_reporting_csv.php:2518 -#: ../../enterprise/include/functions_reporting_csv.php:2740 -#: ../../enterprise/include/functions_services.php:1612 -#: ../../enterprise/include/functions_reporting.php:2184 -#: ../../enterprise/include/functions_reporting.php:2217 -#: ../../enterprise/include/functions_reporting.php:2221 -#: ../../enterprise/include/functions_reporting_pdf.php:702 -#: ../../enterprise/meta/include/functions_events_meta.php:134 -#: ../../enterprise/meta/advanced/collections.editor.php:54 -#: ../../enterprise/meta/advanced/collections.data.php:46 -#: ../../enterprise/meta/advanced/collections.data.php:86 -#: ../../enterprise/meta/advanced/collections.data.php:104 -#: ../../enterprise/meta/advanced/collections.data.php:124 -#: ../../enterprise/meta/advanced/collections.data.php:149 -#: ../../enterprise/meta/advanced/collections.data.php:172 -#: ../../enterprise/meta/advanced/collections.data.php:197 -#: ../../enterprise/meta/advanced/collections.data.php:238 -#: ../../enterprise/meta/advanced/collections.data.php:263 -#: ../../enterprise/godmode/agentes/collections.editor.php:56 -#: ../../enterprise/godmode/agentes/collections.agents.php:47 -#: ../../enterprise/godmode/agentes/collections.agents.php:56 -#: ../../enterprise/godmode/agentes/collections.data.php:74 -#: ../../enterprise/godmode/agentes/collections.data.php:117 -#: ../../enterprise/godmode/agentes/collections.data.php:184 -#: ../../enterprise/godmode/agentes/collections.data.php:204 -#: ../../enterprise/godmode/agentes/collections.data.php:224 -#: ../../enterprise/godmode/agentes/collections.data.php:251 -#: ../../enterprise/godmode/agentes/collections.data.php:279 -#: ../../enterprise/godmode/agentes/collections.data.php:309 -#: ../../enterprise/godmode/agentes/collections.data.php:332 -#: ../../extensions/insert_data.php:194 ../../extensions/insert_data.php:195 -#: ../../mobile/operation/modules.php:715 ../../mobile/operation/modules.php:718 -#: ../../mobile/operation/modules.php:719 ../../mobile/operation/modules.php:720 -#: ../../mobile/operation/modules.php:721 ../../mobile/operation/modules.php:722 -#: ../../mobile/operation/modules.php:723 ../../mobile/operation/modules.php:724 -#: ../../mobile/operation/modules.php:725 ../../mobile/operation/modules.php:727 -#: ../../mobile/operation/modules.php:730 ../../mobile/operation/modules.php:731 -#: ../../mobile/operation/modules.php:732 ../../mobile/operation/modules.php:733 -#: ../../mobile/operation/modules.php:734 ../../mobile/operation/modules.php:735 -#: ../../mobile/operation/modules.php:736 ../../mobile/operation/modules.php:737 -#: ../../mobile/operation/modules.php:853 -#: ../../godmode/events/custom_events.php:115 -#: ../../godmode/agentes/status_monitor_custom_fields.php:113 -#: ../../godmode/agentes/status_monitor_custom_fields.php:152 -msgid "Data" -msgstr "DonnĆ©es" +#: ../../enterprise/include/functions_reporting_csv.php:2629 +#: ../../enterprise/include/class/Omnishell.class.php:400 +#: ../../enterprise/include/class/LogSource.class.php:628 +#: ../../enterprise/operation/agentes/tag_view.php:686 +#: ../../godmode/update_manager/update_manager.history.php:44 +#: ../../godmode/agentes/status_monitor_custom_fields.php:117 +#: ../../godmode/agentes/status_monitor_custom_fields.php:153 +#: ../../godmode/setup/news.php:249 ../../godmode/events/custom_events.php:102 +#: ../../mobile/operation/modules.php:661 ../../mobile/operation/modules.php:852 +#: ../../mobile/operation/events.php:804 +#: ../../include/functions_reporting_html.php:1053 +#: ../../include/functions_reporting_html.php:1061 +#: ../../include/functions_reporting_html.php:1314 +#: ../../include/functions_reporting_html.php:1321 +#: ../../include/functions_reporting_html.php:2429 +#: ../../include/functions_reporting_html.php:5065 +#: ../../include/ajax/events_extended.php:90 +#: ../../include/ajax/custom_fields.php:415 ../../include/functions_netflow.php:278 +#: ../../include/functions_events.php:205 ../../include/functions_events.php:262 +#: ../../include/functions_events.php:2373 ../../include/functions_events.php:4534 +#: ../../operation/agentes/exportdata.csv.php:74 +#: ../../operation/agentes/exportdata.php:83 +#: ../../operation/agentes/status_monitor.php:1364 +#: ../../operation/agentes/estado_generalagente.php:644 +#: ../../operation/agentes/exportdata.excel.php:74 +#: ../../operation/messages/message_list.php:200 +#: ../../operation/snmpconsole/snmp_view.php:881 +#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:116 +#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:247 +#: ../../operation/search_modules.php:39 +msgid "Timestamp" +msgstr "Horodatage" -#: ../../operation/search_modules.php:108 ../../operation/events/events.php:2164 -#: ../../operation/agentes/status_monitor.php:1572 -#: ../../include/functions_events.php:62 ../../include/functions_modules.php:2840 -#: ../../include/functions_modules.php:4076 -#: ../../enterprise/operation/agentes/tag_view.php:935 -#: ../../mobile/operation/modules.php:542 ../../mobile/operation/modules.php:605 -msgid "NOT INIT" -msgstr "NON INITIALISƉ" +#: ../../enterprise/meta/include/functions_events_meta.php:86 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:658 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2854 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1382 +#: ../../enterprise/include/lib/AlertCorrelation.class.php:1123 +#: ../../enterprise/include/functions_events.php:60 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2960 +#: ../../godmode/events/event_filter.php:138 +#: ../../godmode/events/event_edit_filter.php:322 +#: ../../include/lib/Dashboard/Widgets/events_list.php:332 +#: ../../include/functions_events.php:206 ../../operation/events/events.php:1593 +msgid "Event type" +msgstr "Type d'Ć©vĆ©nement" -#: ../../operation/search_modules.php:114 ../../operation/search_modules.php:141 -#: ../../operation/events/events.php:2060 ../../operation/events/events.php:2127 -#: ../../operation/events/events.php:2154 +#: ../../enterprise/meta/include/functions_events_meta.php:90 +#: ../../enterprise/godmode/policies/policy_external_alerts.php:338 +#: ../../enterprise/include/functions_reporting_csv.php:873 +#: ../../enterprise/operation/agentes/tag_view.php:205 +#: ../../godmode/modules/manage_network_templates_form.php:231 +#: ../../godmode/modules/manage_network_components.php:748 +#: ../../godmode/modules/manage_network_components_form_wizard.php:272 +#: ../../godmode/agentes/agent_template.php:235 +#: ../../godmode/agentes/status_monitor_custom_fields.php:85 +#: ../../godmode/agentes/status_monitor_custom_fields.php:145 +#: ../../godmode/alerts/alert_list.list.php:99 +#: ../../mobile/operation/modules.php:594 ../../mobile/operation/modules.php:848 +#: ../../include/ajax/heatmap.ajax.php:225 ../../include/ajax/heatmap.ajax.php:264 +#: ../../include/ajax/module.php:978 ../../include/ajax/custom_fields.php:411 +#: ../../operation/agentes/status_monitor.php:536 +#: ../../operation/agentes/status_monitor.php:1318 +msgid "Module name" +msgstr "Nom du module" + +#: ../../enterprise/meta/include/functions_events_meta.php:94 +#: ../../enterprise/godmode/policies/policy_external_alerts.php:382 +#: ../../enterprise/godmode/alerts/alert_inventory_list.php:362 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:4351 +#: ../../godmode/agentes/configurar_agente.php:734 +#: ../../godmode/alerts/configure_alert_template.php:1552 +#: ../../godmode/events/custom_events.php:105 ../../include/functions.php:4101 +#: ../../include/functions_snmp.php:324 ../../include/functions_events.php:208 +#: ../../include/functions_events.php:271 +#: ../../operation/agentes/estado_monitores.php:522 +#: ../../operation/snmpconsole/snmp_view.php:543 +#: ../../operation/snmpconsole/snmp_view.php:886 +#: ../../operation/snmpconsole/snmp_view.php:1246 +msgid "Alert" +msgstr "Alerte" + +#: ../../enterprise/meta/include/functions_events_meta.php:98 +#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor_form.php:72 +#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:384 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:632 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2827 +#: ../../enterprise/include/functions_reporting.php:2026 +#: ../../enterprise/include/functions_events.php:70 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2933 +#: ../../godmode/events/event_filter.php:140 +#: ../../godmode/events/event_edit_filter.php:337 +#: ../../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 ../../mobile/operation/events.php:983 +#: ../../include/functions_reporting_html.php:1051 +#: ../../include/functions_reporting_html.php:1059 +#: ../../include/functions_reporting_html.php:1312 +#: ../../include/functions_reporting_html.php:1320 +#: ../../include/functions_reporting_html.php:2427 +#: ../../include/functions_snmp.php:335 +#: ../../include/lib/Dashboard/Widgets/events_list.php:404 +#: ../../include/functions_events.php:209 ../../include/functions_events.php:274 +#: ../../include/functions_events.php:2355 ../../include/functions_events.php:4587 +#: ../../operation/snmpconsole/snmp_view.php:572 +#: ../../operation/events/events.php:1673 +msgid "Severity" +msgstr "SĆ©vĆ©ritĆ©" + +#: ../../enterprise/meta/include/functions_events_meta.php:102 +#: ../../godmode/events/event_edit_filter.php:638 +#: ../../godmode/events/custom_events.php:107 +#: ../../godmode/wizards/HostDevices.class.php:958 +#: ../../include/class/CustomNetScan.class.php:468 +#: ../../include/functions_events.php:210 ../../include/functions_events.php:277 +#: ../../include/functions_events.php:3340 ../../operation/events/events.php:1742 +msgid "Comment" +msgstr "Commentaire" + +#: ../../enterprise/meta/include/functions_events_meta.php:106 +#: ../../enterprise/godmode/modules/configure_local_component.php:550 +#: ../../enterprise/godmode/massive/massive_add_modules_policy.php:163 +#: ../../enterprise/godmode/massive/massive_tags_edit_policy.php:120 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:971 +#: ../../enterprise/godmode/setup/setup_auth.php:231 +#: ../../enterprise/godmode/setup/setup_auth.php:510 +#: ../../enterprise/godmode/setup/setup_auth.php:1307 +#: ../../enterprise/operation/agentes/tag_view.php:223 +#: ../../enterprise/operation/agentes/tag_view.php:225 +#: ../../enterprise/operation/agentes/tag_view.php:678 +#: ../../godmode/modules/manage_network_components_form_common.php:351 +#: ../../godmode/massive/massive_copy_modules.php:172 +#: ../../godmode/massive/massive_delete_modules.php:401 +#: ../../godmode/massive/massive_delete_modules.php:515 +#: ../../godmode/massive/massive_edit_modules.php:405 +#: ../../godmode/massive/massive_edit_modules.php:491 +#: ../../godmode/massive/massive_edit_modules.php:1047 +#: ../../godmode/events/custom_events.php:108 ../../godmode/tag/edit_tag.php:66 +#: ../../mobile/operation/events.php:845 +#: ../../include/functions_reporting_html.php:3490 +#: ../../include/functions_treeview.php:168 ../../include/functions_profile.php:215 +#: ../../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:4674 ../../operation/tree.php:66 +#: ../../operation/users/user_edit.php:815 +#: ../../operation/agentes/status_monitor.php:550 +#: ../../operation/agentes/group_view.php:222 +#: ../../operation/agentes/alerts_status.functions.php:108 +#: ../../general/first_task/tags.php:22 +msgid "Tags" +msgstr "Ɖtiquettes" + +#: ../../enterprise/meta/include/functions_events_meta.php:114 +#: ../../include/functions_events.php:213 ../../include/functions_events.php:4246 +msgid "Extra id" +msgstr "Identifiant supplĆ©mentaire" + +#: ../../enterprise/meta/include/functions_events_meta.php:118 +#: ../../godmode/setup/setup_integria.php:397 +#: ../../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:4546 +#: ../../operation/incidents/integriaims_export_csv.php:89 +#: ../../operation/incidents/configure_integriaims_incident.php:312 +#: ../../operation/incidents/list_integriaims_incidents.php:342 +#: ../../operation/incidents/list_integriaims_incidents.php:522 +msgid "Owner" +msgstr "PropriĆ©taire" + +#: ../../enterprise/meta/include/functions_events_meta.php:122 +#: ../../godmode/events/custom_events.php:112 ../../include/functions_events.php:215 +#: ../../include/functions_events.php:292 +msgid "ACK Timestamp" +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:4234 +#: ../../operation/events/events.php:2988 +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/include/ajax/agent_autoconfiguration.ajax.php:69 +#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:252 +#: ../../godmode/wizards/DiscoveryTaskList.class.php:591 +#: ../../include/functions_events.php:217 +msgid "Server name" +msgstr "Nom du serveur" + +#: ../../enterprise/meta/include/functions_events_meta.php:138 +#: ../../include/functions_reporting_html.php:4994 +#: ../../include/lib/Dashboard/Widgets/module_status.php:173 +#: ../../include/lib/Dashboard/Widgets/module_status.php:538 +#: ../../include/functions_events.php:219 ../../operation/tree.php:285 +msgid "Module status" +msgstr "Ɖtat du module" + +#: ../../enterprise/meta/include/process_reset_pass.php:28 +#: ../../enterprise/meta/include/reset_pass.php:28 +#: ../../enterprise/meta/general/login_page.php:45 ../../general/login_page.php:79 +msgid "Splash login" +msgstr "Connexion Splah" + +#: ../../enterprise/meta/include/process_reset_pass.php:41 +#: ../../enterprise/meta/include/reset_pass.php:41 +#: ../../enterprise/meta/general/login_page.php:58 +msgid "Go to Pandora FMS Support" +msgstr "Aller vers Pandora FMS Support" + +#: ../../enterprise/meta/include/process_reset_pass.php:43 +#: ../../enterprise/meta/include/process_reset_pass.php:54 +#: ../../enterprise/meta/include/reset_pass.php:43 +#: ../../enterprise/meta/include/reset_pass.php:54 +#: ../../enterprise/meta/general/login_page.php:60 +#: ../../enterprise/meta/general/login_page.php:71 +msgid "Go to " +msgstr "Aller Ć  " + +#: ../../enterprise/meta/include/process_reset_pass.php:47 +#: ../../enterprise/meta/include/reset_pass.php:47 +#: ../../enterprise/meta/general/login_page.php:64 +#: ../../enterprise/include/process_reset_pass.php:58 +#: ../../enterprise/include/reset_pass.php:53 ../../general/login_help_dialog.php:83 +#: ../../general/login_help_dialog.php:88 ../../general/login_page.php:148 +#: ../../general/login_page.php:151 +msgid "Support" +msgstr "Assistance" + +#: ../../enterprise/meta/include/process_reset_pass.php:52 +#: ../../enterprise/meta/include/reset_pass.php:52 +#: ../../enterprise/meta/general/login_page.php:69 +msgid "Go to Pandora FMS Wiki" +msgstr "Aller Ć  la wiki de Pandora FMS" + +#: ../../enterprise/meta/include/process_reset_pass.php:58 +#: ../../enterprise/meta/include/reset_pass.php:58 +#: ../../enterprise/meta/general/login_page.php:75 +#: ../../enterprise/godmode/modules/configure_local_component.php:645 +#: ../../godmode/servers/plugin.php:526 ../../include/functions_ui.php:1452 +#: ../../include/class/ManageNetScanScripts.class.php:690 +msgid "Help" +msgstr "Aide" + +#: ../../enterprise/meta/include/process_reset_pass.php:96 +#: ../../enterprise/include/process_reset_pass.php:103 +#: ../../operation/users/user_edit.php:298 +msgid "New Password" +msgstr "Nouveau mot de passe" + +#: ../../enterprise/meta/include/process_reset_pass.php:114 +#: ../../enterprise/include/process_reset_pass.php:118 +msgid "Repeat password" +msgstr "Ressaisir le mot de passe" + +#: ../../enterprise/meta/include/process_reset_pass.php:120 +#: ../../enterprise/include/process_reset_pass.php:124 +msgid "Change password" +msgstr "Modifier le mot de passe" + +#: ../../enterprise/meta/include/process_reset_pass.php:123 +#: ../../enterprise/meta/index.php:626 +#: ../../enterprise/include/process_reset_pass.php:127 ../../index.php:803 +msgid "Passwords must be the same" +msgstr "Les mots de passe doivent ĆŖtre identiques." + +#: ../../enterprise/meta/include/process_reset_pass.php:132 +#: ../../enterprise/meta/include/reset_pass.php:122 +#: ../../enterprise/include/process_reset_pass.php:136 +#: ../../enterprise/include/reset_pass.php:123 +msgid "Back to login" +msgstr "Retour Ć  la connexion" + +#: ../../enterprise/meta/include/process_reset_pass.php:142 +#: ../../enterprise/meta/include/reset_pass.php:139 +#, php-format +msgid "%s NEXT GENERATION" +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:2444 +msgid "METACONSOLE" +msgstr "MƉTACONSOLE" + +#: ../../enterprise/meta/include/process_reset_pass.php:164 +#: ../../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 +msgid "Build" +msgstr "GĆ©nĆ©rer" + +#: ../../enterprise/meta/include/functions_agents_meta.php:478 +#: ../../enterprise/meta/include/functions_agents_meta.php:542 +#: ../../enterprise/meta/include/functions_agents_meta.php:577 +msgid "Agents movement" +msgstr "Mouvement des agents" + +#: ../../enterprise/meta/include/functions_agents_meta.php:489 +#: ../../enterprise/meta/include/functions_agents_meta.php:557 +msgid "Provisioning management" +msgstr "Gestion de provisionnement" + +#: ../../enterprise/meta/include/functions_agents_meta.php:500 +#: ../../enterprise/meta/include/functions_agents_meta.php:567 +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:328 +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:542 +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:800 +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.php:99 +msgid "Agent autoconfiguration" +msgstr "Auto-configuration de l'agent" + +#: ../../enterprise/meta/include/functions_agents_meta.php:511 +#: ../../enterprise/meta/include/functions_agents_meta.php:547 +#: ../../enterprise/meta/include/functions_agents_meta.php:552 +msgid "Group management" +msgstr "Gestion de groupes" + +#: ../../enterprise/meta/include/functions_agents_meta.php:522 +msgid "Tree group" +msgstr "Groupe d'arbre" + +#: ../../enterprise/meta/include/functions_agents_meta.php:562 +msgid "Provisioning rules management" +msgstr "Gestion des rĆØgles de provisionnement" + +#: ../../enterprise/meta/include/functions_agents_meta.php:572 +msgid "Colecctions" +msgstr "Collections" + +#: ../../enterprise/meta/include/functions_agents_meta.php:605 +msgid "Agents Management" +msgstr "Gestion des agents" + +#: ../../enterprise/meta/include/functions_agents_meta.php:614 +#: ../../enterprise/meta/include/functions_agents_meta.php:619 +#: ../../enterprise/extensions/disabled/check_acls.php:50 +#: ../../enterprise/extensions/disabled/check_acls.php:137 +#: ../../include/functions_menu.php:492 +msgid "Agents management" +msgstr "Gestion des agents" + +#: ../../enterprise/meta/include/functions_meta.php:49 +msgid "No admin user" +msgstr "Aucun utilisateur administrateur" + +#: ../../enterprise/meta/include/functions_meta.php:68 +#: ../../include/functions_config.php:405 +msgid "Activate Metaconsole" +msgstr "Activer la MĆ©taconsole" + +#: ../../enterprise/meta/include/functions_meta.php:112 +msgid "Centralized management" +msgstr "Gestion centralisĆ©e" + +#: ../../enterprise/meta/include/functions_meta.php:120 +#: ../../include/functions_config.php:224 +msgid "Attachment store." +msgstr "EntrepĆ“t dā€™attachement." + +#: ../../enterprise/meta/include/functions_meta.php:198 +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:262 +msgid "Customizable section" +msgstr "Section personnalisable" + +#: ../../enterprise/meta/include/functions_meta.php:283 +msgid "Agent API" +msgstr "Agent API" + +#: ../../enterprise/meta/include/functions_meta.php:323 +msgid "Policy add max. agents" +msgstr "Nombre maximale dā€™agents Ć  ajouter Ć  la politique" + +#: ../../enterprise/meta/include/functions_meta.php:332 +msgid "Sync items warn detection" +msgstr "DĆ©tection dā€™avertissement des Ć©lĆ©ments de synchronisation" + +#: ../../enterprise/meta/include/functions_meta.php:470 +msgid "IP ElasticSearch" +msgstr "IP ElasticSearch" + +#: ../../enterprise/meta/include/functions_meta.php:480 +msgid "Port ElasticSearch" +msgstr "Port ElasticSearch" + +#: ../../enterprise/meta/include/functions_meta.php:490 +#: ../../enterprise/godmode/setup/setup_log_collector.php:41 +#: ../../include/functions_config.php:1507 +msgid "Number of logs viewed" +msgstr "Nombre de journaux visionnĆ©s" + +#: ../../enterprise/meta/include/functions_meta.php:502 +#: ../../godmode/setup/setup_auth.php:440 ../../include/functions_config.php:518 +#: ../../include/class/AgentWizard.class.php:839 +msgid "Authentication method" +msgstr "MĆ©thode d'authentification" + +#: ../../enterprise/meta/include/functions_meta.php:512 +#: ../../godmode/setup/setup_auth.php:56 ../../include/functions_config.php:642 +msgid "Fallback to local authentication" +msgstr "Repli Ć  l'authentification locale" + +#: ../../enterprise/meta/include/functions_meta.php:522 +#: ../../enterprise/meta/include/functions_meta.php:741 +#: ../../godmode/setup/setup_auth.php:69 ../../include/functions_config.php:522 +msgid "Autocreate remote users" +msgstr "CrĆ©er des utilisateurs Ć  distance" + +#: ../../enterprise/meta/include/functions_meta.php:532 +#: ../../enterprise/godmode/setup/setup_auth.php:55 +#: ../../enterprise/godmode/setup/setup_auth.php:303 +#: ../../enterprise/godmode/setup/setup_auth.php:364 +#: ../../enterprise/godmode/setup/setup_auth.php:1159 +#: ../../include/functions_config.php:526 +msgid "Autocreate profile" +msgstr "CrĆ©er profil automatiquement" + +#: ../../enterprise/meta/include/functions_meta.php:542 +#: ../../enterprise/godmode/setup/setup_auth.php:61 +#: ../../enterprise/godmode/setup/setup_auth.php:309 +#: ../../enterprise/godmode/setup/setup_auth.php:370 +#: ../../enterprise/godmode/setup/setup_auth.php:1165 +#: ../../include/functions_config.php:530 +msgid "Autocreate profile group" +msgstr "CrĆ©er groupe de profil automatiquement" + +#: ../../enterprise/meta/include/functions_meta.php:552 +#: ../../enterprise/godmode/setup/setup_auth.php:68 +#: ../../enterprise/godmode/setup/setup_auth.php:318 +#: ../../enterprise/godmode/setup/setup_auth.php:379 +#: ../../enterprise/godmode/setup/setup_auth.php:1174 +#: ../../include/functions_config.php:534 +msgid "Autocreate profile tags" +msgstr "CrĆ©er Ć©tiquettes de profil automatiquement" + +#: ../../enterprise/meta/include/functions_meta.php:562 +#: ../../enterprise/godmode/setup/setup_auth.php:324 +#: ../../include/functions_config.php:538 +msgid "Automatically assigned no hierarchy" +msgstr "Pas de hiĆ©rarchie attribuĆ© automatiquement" + +#: ../../enterprise/meta/include/functions_meta.php:572 +#: ../../enterprise/godmode/setup/setup_auth.php:569 +#: ../../enterprise/godmode/setup/setup_auth.php:1371 +#: ../../include/functions_config.php:542 +msgid "Autocreate blacklist" +msgstr "CrĆ©er liste noire automatiquement" + +#: ../../enterprise/meta/include/functions_meta.php:582 +#: ../../enterprise/meta/include/functions_meta.php:884 +#: ../../godmode/users/configure_user.php:1313 +#: ../../godmode/setup/setup_auth.php:353 ../../include/functions_config.php:750 +#: ../../operation/users/user_edit.php:426 +msgid "Double authentication" +msgstr "Double authentification" + +#: ../../enterprise/meta/include/functions_meta.php:592 +msgid "2FA_all_users" +msgstr "2FA_all_users" + +#: ../../enterprise/meta/include/functions_meta.php:604 +#: ../../enterprise/meta/include/functions_meta.php:897 +#: ../../include/functions_config.php:758 ../../include/functions_config.php:764 +msgid "Session timeout" +msgstr "Session expirĆ©e" + +#: ../../enterprise/meta/include/functions_meta.php:618 +#: ../../enterprise/meta/include/functions_meta.php:1082 +#: ../../enterprise/godmode/setup/setup_auth.php:82 +#: ../../enterprise/godmode/setup/setup_auth.php:348 +#: ../../include/functions_config.php:655 ../../include/functions_config.php:771 +msgid "Save Password" +msgstr "Enregistrer le mot de passe" + +#: ../../enterprise/meta/include/functions_meta.php:635 +#: ../../enterprise/godmode/setup/setup_auth.php:577 +#: ../../enterprise/godmode/setup/setup_auth.php:1379 +#: ../../include/functions_config.php:546 +msgid "Active directory server" +msgstr "Serveur de rĆ©pertoire actif" + +#: ../../enterprise/meta/include/functions_meta.php:645 +#: ../../enterprise/godmode/setup/setup_auth.php:583 +#: ../../enterprise/godmode/setup/setup_auth.php:1385 +#: ../../include/functions_config.php:550 +msgid "Active directory port" +msgstr "Port de rĆ©pertoire actif" + +#: ../../enterprise/meta/include/functions_meta.php:655 +#: ../../enterprise/meta/include/functions_meta.php:939 +#: ../../enterprise/godmode/setup/setup_auth.php:589 +#: ../../enterprise/godmode/setup/setup_auth.php:1391 +#: ../../godmode/setup/setup_auth.php:137 ../../include/functions_config.php:554 +#: ../../include/functions_config.php:590 +msgid "Start TLS" +msgstr "Lancer TLS" + +#: ../../enterprise/meta/include/functions_meta.php:665 +#: ../../enterprise/godmode/setup/setup_auth.php:353 +#: ../../enterprise/godmode/setup/setup_auth.php:1148 +#: ../../include/functions_config.php:558 +msgid "Advanced Config AD" +msgstr "Configuration AD avancĆ©e" + +#: ../../enterprise/meta/include/functions_meta.php:675 +#: ../../enterprise/godmode/setup/setup_auth.php:595 +#: ../../enterprise/godmode/setup/setup_auth.php:1397 +#: ../../include/functions_config.php:566 +msgid "Domain" +msgstr "Domaine" + +#: ../../enterprise/meta/include/functions_meta.php:685 +#: ../../enterprise/godmode/setup/setup_auth.php:413 +#: ../../enterprise/godmode/setup/setup_auth.php:1208 +#: ../../include/functions_config.php:570 +msgid "Advanced Permisions AD" +msgstr "Permissions AD avancĆ©es" + +#: ../../enterprise/meta/include/functions_meta.php:695 +#: ../../enterprise/godmode/setup/setup_auth.php:129 +#: ../../include/functions_config.php:574 +msgid "Advanced Permissions LDAP" +msgstr "Permissions LDAP avancĆ©es" + +#: ../../enterprise/meta/include/functions_meta.php:705 +#: ../../enterprise/godmode/setup/setup_auth.php:106 +#: ../../include/functions_config.php:562 +msgid "Advanced Config LDAP" +msgstr "Configuration LDAP avancĆ©e" + +#: ../../enterprise/meta/include/functions_meta.php:715 +#: ../../enterprise/meta/include/functions_meta.php:727 +#: ../../enterprise/godmode/setup/setup_auth.php:337 +#: ../../enterprise/godmode/setup/setup_auth.php:385 +#: ../../enterprise/godmode/setup/setup_auth.php:1180 +msgid "Auto enable node access" +msgstr "Activer automatiquement l'accĆØs noeud" + +#: ../../enterprise/meta/include/functions_meta.php:754 +#: ../../include/functions_config.php:710 +msgid "Saml path" +msgstr "Chemin SAML" + +#: ../../enterprise/meta/include/functions_meta.php:767 +#: ../../include/functions_config.php:714 +msgid "Saml source" +msgstr "Source Saml" + +#: ../../enterprise/meta/include/functions_meta.php:780 +#: ../../include/functions_config.php:718 +msgid "Saml user id parameter" +msgstr "ParamĆØtre de l'ID de l'utilisateur Saml" + +#: ../../enterprise/meta/include/functions_meta.php:793 +#: ../../include/functions_config.php:722 +msgid "Saml mail parameter" +msgstr "ParamĆØtre email Saml" + +#: ../../enterprise/meta/include/functions_meta.php:806 +#: ../../include/functions_config.php:726 +msgid "Saml group name parameter" +msgstr "ParamĆØtre nom de group Saml" + +#: ../../enterprise/meta/include/functions_meta.php:819 +#: ../../include/functions_config.php:730 +msgid "Saml attr type parameter" +msgstr "ParamĆØtre type attr Saml" + +#: ../../enterprise/meta/include/functions_meta.php:832 +#: ../../include/functions_config.php:734 +msgid "Saml profiles and tags parameter" +msgstr "ParamĆØtre d'Ć©tiquettes et profils Saml" + +#: ../../enterprise/meta/include/functions_meta.php:845 +#: ../../include/functions_config.php:746 +msgid "Saml profile and tag separator" +msgstr "SĆ©parateur d'etiquettes et profils Saml" + +#: ../../enterprise/meta/include/functions_meta.php:858 +msgid "SAML profile parameters" +msgstr "ParamĆØtres de profils SAML" + +#: ../../enterprise/meta/include/functions_meta.php:871 +#: ../../include/functions_config.php:742 +msgid "Saml tag parameter" +msgstr "ParamĆØtre d'etiquettes Saml" + +#: ../../enterprise/meta/include/functions_meta.php:909 +#: ../../godmode/setup/setup_auth.php:92 ../../include/functions_config.php:578 +msgid "LDAP server" +msgstr "Serveur LDAP" + +#: ../../enterprise/meta/include/functions_meta.php:919 +#: ../../godmode/setup/setup_auth.php:105 ../../include/functions_config.php:582 +msgid "LDAP port" +msgstr "Port LDAP" + +#: ../../enterprise/meta/include/functions_meta.php:929 +#: ../../godmode/setup/setup_auth.php:123 ../../include/functions_config.php:586 +msgid "LDAP version" +msgstr "Version LDAP" + +#: ../../enterprise/meta/include/functions_meta.php:949 +#: ../../godmode/setup/setup_auth.php:148 ../../include/functions_config.php:594 +msgid "Base DN" +msgstr "Base DN" + +#: ../../enterprise/meta/include/functions_meta.php:959 +#: ../../godmode/setup/setup_auth.php:161 ../../include/functions_config.php:598 +msgid "Login attribute" +msgstr "Attribut de connexion" + +#: ../../enterprise/meta/include/functions_meta.php:969 +#: ../../godmode/setup/setup_auth.php:174 ../../include/functions_config.php:602 +msgid "Admin LDAP login" +msgstr "Connexion LDAP administrateur" + +#: ../../enterprise/meta/include/functions_meta.php:979 +#: ../../godmode/setup/setup_auth.php:187 ../../include/functions_config.php:606 +msgid "Admin LDAP password" +msgstr "Mot de passe LDAP administrateur" + +#: ../../enterprise/meta/include/functions_meta.php:990 +#: ../../include/functions_config.php:666 +msgid "LDAP secondary enabled" +msgstr "LDAP secondaire activĆ©" + +#: ../../enterprise/meta/include/functions_meta.php:999 +#: ../../godmode/setup/setup_auth.php:222 ../../include/functions_config.php:610 +msgid "Secondary LDAP server" +msgstr "Serveur LDAP secondaire" + +#: ../../enterprise/meta/include/functions_meta.php:1009 +#: ../../godmode/setup/setup_auth.php:235 ../../include/functions_config.php:614 +msgid "Secondary LDAP port" +msgstr "Port LDAP secondaire" + +#: ../../enterprise/meta/include/functions_meta.php:1019 +#: ../../godmode/setup/setup_auth.php:253 ../../include/functions_config.php:618 +msgid "Secondary LDAP version" +msgstr "Version LDAP secondaire" + +#: ../../enterprise/meta/include/functions_meta.php:1029 +#: ../../godmode/setup/setup_auth.php:267 +msgid "Secondary start TLS" +msgstr "DĆ©marrage secondaire TLS" + +#: ../../enterprise/meta/include/functions_meta.php:1039 +#: ../../include/functions_config.php:626 +msgid "Secondary base DN" +msgstr "DN de base secondaire" + +#: ../../enterprise/meta/include/functions_meta.php:1049 +#: ../../include/functions_config.php:630 +msgid "Secondary login attribute" +msgstr "Attribut de connexion secondaire" + +#: ../../enterprise/meta/include/functions_meta.php:1059 +#: ../../godmode/setup/setup_auth.php:304 ../../include/functions_config.php:634 +msgid "Admin secondary LDAP login" +msgstr "Connexion LDAP secondaire dā€™administrateur" + +#: ../../enterprise/meta/include/functions_meta.php:1069 +#: ../../godmode/setup/setup_auth.php:317 ../../include/functions_config.php:638 +msgid "Admin secondary LDAP password" +msgstr "Mot de passe LDAP secondaire dā€™administrateur" + +#: ../../enterprise/meta/include/functions_meta.php:1102 +#: ../../enterprise/godmode/setup/setup_auth.php:101 +#: ../../include/functions_config.php:646 +msgid "Login user attribute" +msgstr "Identifier attribut d'utilisateur" + +#: ../../enterprise/meta/include/functions_meta.php:1112 +#: ../../include/functions_config.php:662 +msgid "Save profile" +msgstr "Enregistrer le profil" + +#: ../../enterprise/meta/include/functions_meta.php:1123 +#: ../../enterprise/godmode/setup/setup_auth.php:94 +#: ../../include/functions_config.php:650 +msgid "LDAP function" +msgstr "Fonction LDAP" + +#: ../../enterprise/meta/include/functions_meta.php:1135 +#, php-format +msgid "%s host" +msgstr "HĆ“te %s" + +#: ../../enterprise/meta/include/functions_meta.php:1145 +#: ../../enterprise/meta/include/functions_meta.php:1199 +#: ../../enterprise/meta/include/functions_meta.php:1253 +#: ../../enterprise/godmode/setup/setup_auth.php:1027 +#: ../../enterprise/godmode/setup/setup_auth.php:1059 +#: ../../include/functions_config.php:674 ../../include/functions_config.php:694 +msgid "MySQL port" +msgstr "Port MySQL" + +#: ../../enterprise/meta/include/functions_meta.php:1155 +#: ../../enterprise/meta/include/functions_meta.php:1209 +#: ../../enterprise/meta/include/functions_meta.php:1263 +#: ../../enterprise/godmode/setup/setup_history.php:193 +#: ../../enterprise/godmode/setup/setup_auth.php:1033 +#: ../../enterprise/godmode/setup/setup_auth.php:1065 +#: ../../include/functions_config.php:678 ../../include/functions_config.php:698 +#: ../../include/functions_config.php:1537 +msgid "Database name" +msgstr "Nom de la base de donnĆ©es" + +#: ../../enterprise/meta/include/functions_meta.php:1189 +msgid "Babel Enterprise host" +msgstr "HĆ“te de Babel Enterprise" + +#: ../../enterprise/meta/include/functions_meta.php:1243 +#: ../../enterprise/godmode/setup/setup_auth.php:1053 +#: ../../include/functions_config.php:690 +msgid "Integria host" +msgstr "HĆ“te d'Integria IMS" + +#: ../../enterprise/meta/include/functions_meta.php:1308 +#: ../../include/functions_config.php:936 +msgid "Timestamp or time comparation" +msgstr "Horodatage ou comparaison temporelle" + +#: ../../enterprise/meta/include/functions_meta.php:1318 +msgid "Graph color (min)" +msgstr "Couleur du graphique (min.)" + +#: ../../enterprise/meta/include/functions_meta.php:1328 +msgid "Graph color (avg)" +msgstr "Couleur du graphique (moy.)" + +#: ../../enterprise/meta/include/functions_meta.php:1338 +msgid "Graph color (max)" +msgstr "Couleur du graphique (max.)" + +#: ../../enterprise/meta/include/functions_meta.php:1373 +#: ../../include/functions_config.php:984 +msgid "Data precision for reports" +msgstr "PrĆ©cision de donnĆ©es pour rapports" + +#: ../../enterprise/meta/include/functions_meta.php:1488 +msgid "full scale charts" +msgstr "graphiques Ć  grande Ć©chelle" + +#: ../../enterprise/meta/include/functions_meta.php:1498 +msgid "type mode type charts" +msgstr "type mode type graphiques" + +#: ../../enterprise/meta/include/functions_meta.php:1518 +msgid "type mode zoom charts" +msgstr "Type mode zoom graphiques" + +#: ../../enterprise/meta/include/functions_meta.php:1538 +msgid "Type of charts" +msgstr "Type de graphiques" + +#: ../../enterprise/meta/include/functions_meta.php:1578 +#: ../../include/functions_config.php:1033 +msgid "Custom logo collapsed" +msgstr "Le logo personnalisĆ© s'est effondrĆ©" + +#: ../../enterprise/meta/include/functions_meta.php:1588 +msgid "Custom logo (white background)" +msgstr "Logo personnalisĆ© (fond blanc)" + +#: ../../enterprise/meta/include/functions_meta.php:1608 +#: ../../include/functions_config.php:1041 +msgid "Custom logo login" +msgstr "Logo personnalisĆ© sur Ć©cran de connexion" + +#: ../../enterprise/meta/include/functions_meta.php:1618 +#: ../../include/functions_config.php:1045 +msgid "Custom splash login" +msgstr "Splash personnalisĆ© sur Ć©cran de connexion" + +#: ../../enterprise/meta/include/functions_meta.php:1648 +#: ../../include/functions_config.php:1081 +msgid "Custom title1 login" +msgstr "Titre1 personnalisĆ© sur Ć©cran de connexion" + +#: ../../enterprise/meta/include/functions_meta.php:1658 +#: ../../include/functions_config.php:1085 +msgid "Custom title2 login" +msgstr "Titre2 personnalisĆ© sur Ć©cran de connexion" + +#: ../../enterprise/meta/include/functions_meta.php:1668 +#: ../../include/functions_config.php:1073 +msgid "Meta custom title header" +msgstr "EntĆŖte du titre personnalisĆ© Meta" + +#: ../../enterprise/meta/include/functions_meta.php:1678 +#: ../../include/functions_config.php:1077 +msgid "Meta custom subtitle header" +msgstr "EntĆŖte du sous-titre personnalisĆ© Meta" + +#: ../../enterprise/meta/include/functions_meta.php:1708 +msgid "Custom background login" +msgstr "Connexion en arriĆØre-plan personnalisĆ©e" + +#: ../../enterprise/meta/include/functions_meta.php:1718 +msgid "Custom product name" +msgstr "Nom de produit personnalisĆ©" + +#: ../../enterprise/meta/include/functions_meta.php:1728 +msgid "Custom copyright notice" +msgstr "Avis de droit dā€™auteur personnalisĆ©" + +#: ../../enterprise/meta/include/functions_meta.php:1777 +#: ../../include/functions_config.php:1017 +msgid "Font path" +msgstr "Chemin de la police" + +#: ../../enterprise/meta/include/functions_meta.php:1787 +#: ../../include/functions_config.php:1455 +msgid "Use data multiplier" +msgstr "Utiliser de mutiplicateur de donnĆ©es" + +#: ../../enterprise/meta/include/functions_meta.php:1799 +#: ../../include/functions_config.php:1411 +msgid "Custom report info" +msgstr "Information du rapport personnalisĆ©" + +#: ../../enterprise/meta/include/functions_meta.php:1809 +#: ../../enterprise/godmode/reporting/reporting_builder.advanced.php:116 +#: ../../enterprise/godmode/reporting/reporting_builder.template_advanced.php:127 +#: ../../include/functions_config.php:1427 +msgid "Font family" +msgstr "Type de police" + +#: ../../enterprise/meta/include/functions_meta.php:1849 +#: ../../enterprise/godmode/reporting/reporting_builder.advanced.php:173 +#: ../../enterprise/godmode/reporting/reporting_builder.template_advanced.php:162 +#: ../../godmode/setup/setup_visuals.php:1253 +#: ../../include/functions_config.php:1443 +msgid "Footer" +msgstr "Pied de page" + +#: ../../enterprise/meta/include/functions_meta.php:1884 +#: ../../include/functions_config.php:1141 +msgid "Use the legacy Visual Console" +msgstr "utiliser la Console visuelle Legacy" + +#: ../../enterprise/meta/include/functions_meta.php:1895 +#: ../../include/functions_config.php:1145 +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" + +#: ../../enterprise/meta/include/functions_meta.php:1939 +msgid "Realtime stats" +msgstr "Statistiques en temps rĆ©el" + +#: ../../enterprise/meta/include/functions_meta.php:1969 +#: ../../godmode/setup/performance.php:568 ../../include/functions_config.php:844 +msgid "Use agent access graph" +msgstr "Utiliser le graphique d'accĆØs pour agent" + +#: ../../enterprise/meta/include/functions_meta.php:1979 +msgid "Default block size migration agents" +msgstr "Agents de migration de la taille du bloc par dĆ©faut" + +#: ../../enterprise/meta/include/functions_meta.php:2001 +msgid "Default block size execution event" +msgstr "ƉvĆ©nement d'exĆ©cution de taille du bloc par dĆ©faut" + +#: ../../enterprise/meta/include/functions_meta.php:2012 +msgid "Default row limit in csv log" +msgstr "Limite de ligne par dĆ©faut dans le journal CSV" + +#: ../../enterprise/meta/include/functions_meta.php:2042 +#: ../../include/functions_config.php:925 +msgid "PhantomJS cache interval" +msgstr "Intervalle de cache PhantomJS" + +#: ../../enterprise/meta/include/functions_meta.php:2058 +msgid "Node address default" +msgstr "Adresse du noeud par dĆ©faut" + +#: ../../enterprise/meta/include/functions_components_meta.php:80 +#: ../../enterprise/meta/include/functions_components_meta.php:135 +#: ../../godmode/menu.php:96 +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:99 ../../godmode/menu.php:168 +msgid "Local components" +msgstr "Composants locaux" + +#: ../../enterprise/meta/include/functions_components_meta.php:96 +#: ../../enterprise/meta/include/functions_components_meta.php:143 +msgid "Network components" +msgstr "Composants du rĆ©seau" + +#: ../../enterprise/meta/include/functions_components_meta.php:104 +#: ../../enterprise/meta/include/functions_components_meta.php:147 +msgid "Plugin management" +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:90 +#: ../../enterprise/godmode/alerts/alert_inventory_builder.php:198 +#: ../../enterprise/include/functions_policies.php:3755 +msgid "Inventory modules" +msgstr "Modules d'inventaire" + +#: ../../enterprise/meta/include/functions_components_meta.php:124 +#: ../../enterprise/meta/include/functions_components_meta.php:164 +#: ../../godmode/servers/plugin_registration.php:99 +#: ../../godmode/servers/plugin.php:295 +msgid "Plugin registration" +msgstr "Enregistrement du plugin" + +#: ../../enterprise/meta/include/functions_components_meta.php:153 +msgid "Create plugin" +msgstr "CrĆ©er un plugin" + +#: ../../enterprise/meta/include/functions_components_meta.php:155 +msgid "Edit plugin" +msgstr "Modifier un plugin" + +#: ../../enterprise/meta/include/functions_ui_meta.php:53 +#, php-format +msgid "%s - the Flexible Monitoring System" +msgstr "%s - le SystĆØme de supervision flexible" + +#: ../../enterprise/meta/include/functions_ui_meta.php:971 +#: ../../enterprise/godmode/services/services.elements.php:846 +#: ../../enterprise/godmode/services/services.elements.php:857 +#: ../../enterprise/include/class/CommandCenter.class.php:473 +#: ../../enterprise/include/functions_login.php:104 +#: ../../enterprise/include/functions_login.php:488 +#: ../../enterprise/include/lib/Metaconsole/Node.php:541 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:4035 +#: ../../godmode/users/configure_user.php:1795 +#: ../../godmode/users/configure_user.php:1865 +#: ../../godmode/massive/massive_edit_plugins.php:856 +#: ../../godmode/massive/massive_edit_plugins.php:857 +#: ../../mobile/operation/visualmap.php:182 ../../include/functions.php:1236 +#: ../../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:2216 +#: ../../include/functions_ui.php:290 ../../include/class/Diagnostics.class.php:1827 +#: ../../include/functions_events.php:2681 ../../include/functions_events.php:2881 +#: ../../index.php:1516 ../../operation/users/user_edit.php:1064 +#: ../../operation/users/user_edit.php:1130 ../../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:268 +msgid "Commands" +msgstr "Commandes" + +#: ../../enterprise/meta/include/functions_alerts_meta.php:141 +msgid "Calendar" +msgstr "Calendrier" + +#: ../../enterprise/meta/include/reset_pass.php:93 +#: ../../enterprise/include/reset_pass.php:98 +msgid "User to reset password" +msgstr "Utilisateur pour remettre le mot de passe" + +#: ../../enterprise/meta/include/reset_pass.php:103 +#: ../../enterprise/meta/index.php:692 ../../enterprise/include/reset_pass.php:108 +#: ../../index.php:875 +msgid "Reset password" +msgstr "RĆ©initialiser le mot de passe" + +#: ../../enterprise/meta/include/reset_pass.php:165 +#: ../../enterprise/meta/include/reset_pass.php:168 +#: ../../enterprise/include/reset_pass.php:174 +#: ../../enterprise/include/reset_pass.php:177 +msgid "Reset password failed" +msgstr "Erreur de remise de mot de passe" + +#: ../../enterprise/meta/include/reset_pass.php:172 +#: ../../enterprise/meta/general/login_page.php:259 +#: ../../enterprise/meta/general/login_page.php:301 +#: ../../enterprise/include/reset_pass.php:181 ../../general/login_page.php:452 +#: ../../general/login_page.php:494 +msgid "ERROR" +msgstr "ERREUR" + +#: ../../enterprise/meta/include/functions_relations.php:49 +msgid "Invalid file content" +msgstr "Contenu du fichier non valide" + +#: ../../enterprise/meta/include/functions_relations.php:54 +msgid "No relations found" +msgstr "Pas de relations trouvĆ©es" + +#: ../../enterprise/meta/include/functions_relations.php:80 +#: ../../enterprise/meta/include/functions_relations.php:91 +#: ../../enterprise/meta/include/functions_relations.php:102 +#, php-format +msgid "The relation type: %s to %s -> %s was not saved" +msgstr "Le type de relation : %s to %s -> %s n'a pas Ć©tĆ© utilisĆ©" + +#: ../../enterprise/meta/include/functions_relations.php:123 +#, php-format +msgid "The relation %s -> %s was not saved" +msgstr "La relation %s -> %s n'a pas Ć©tĆ© sauvegardĆ©e" + +#: ../../enterprise/meta/include/functions_relations.php:133 +msgid "File imported successfully" +msgstr "Fichier importĆ© correctement" + +#: ../../enterprise/meta/include/functions_relations.php:136 +msgid "Error inserting relations" +msgstr "Erreur en entrant les relations" + +#: ../../enterprise/meta/include/functions_relations.php:165 +msgid "Empty string" +msgstr "ChaĆ®ne vide" + +#: ../../enterprise/meta/include/functions_relations.php:170 +msgid "Empty custom node address" +msgstr "Adresse du noeud personnalisĆ© vide" + +#: ../../enterprise/meta/include/functions_relations.php:208 +#, php-format +msgid "" +"The relation type: %s to %s -> %s was not saved. This relationship already exists " +"in the database" +msgstr "" +"Le type de relation : %s to %s -> %s n'a pas Ć©tĆ© sauvegardĆ©. Cette relation " +"existe dĆ©jĆ  dans la base de donnĆ©es" + +#: ../../enterprise/meta/include/functions_relations.php:230 +#, php-format +msgid "Error inserting the relation %s -> %s" +msgstr "Erreur en entrant la relation %s -> %s" + +#: ../../enterprise/meta/include/functions_relations.php:238 +msgid "Relation created successfully" +msgstr "Relation crĆ©e correctement" + +#: ../../enterprise/meta/include/functions_relations.php:263 +msgid "Error deleting the relation" +msgstr "Erreur en Ć©liminant la relation" + +#: ../../enterprise/meta/include/functions_relations.php:269 +msgid "Relation deleted successfully" +msgstr "Relation Ć©liminĆ©e correctement" + +#: ../../enterprise/meta/index.php:206 ../../index.php:1399 +#: ../../operation/visual_console/legacy_public_view.php:57 +#: ../../operation/visual_console/public_view.php:38 +#: ../../operation/agentes/stat_win.php:92 +#: ../../operation/gis_maps/public_console.php:277 +#: ../../operation/events/sound_events.php:168 +msgid "Connection with server has been lost" +msgstr "Connexion avec le serveur perdue" + +#: ../../enterprise/meta/index.php:207 ../../index.php:1400 +#: ../../operation/visual_console/legacy_public_view.php:58 +#: ../../operation/visual_console/public_view.php:39 +#: ../../operation/agentes/stat_win.php:93 +#: ../../operation/gis_maps/public_console.php:278 +#: ../../operation/events/sound_events.php:169 +msgid "" +"Connection to the server has been lost. Please check your internet connection or " +"contact with administrator." +msgstr "" +"Connexion avec le serveur perdue. Veuillez vĆ©rifier votre connexion Internet ou " +"contacte avec l'administrateur." + +#: ../../enterprise/meta/index.php:296 ../../mobile/include/user.class.php:303 +#: ../../include/ajax/double_auth.ajax.php:500 ../../index.php:336 +msgid "Invalid code" +msgstr "Code non valide" + +#: ../../enterprise/meta/index.php:308 ../../index.php:348 +msgid "The code shouldn't be empty" +msgstr "Le code ne doit pas ĆŖtre vide" + +#: ../../enterprise/meta/index.php:321 ../../index.php:361 +msgid "Expired login" +msgstr "Connexion expirĆ©e" + +#: ../../enterprise/meta/index.php:328 ../../enterprise/meta/index.php:334 +#: ../../index.php:368 ../../index.php:374 +msgid "Login error" +msgstr "Erreur de connexion" + +#: ../../enterprise/meta/index.php:617 ../../index.php:792 +msgid "Password changed successfully" +msgstr "Mot de passe changĆ© correctement" + +#: ../../enterprise/meta/index.php:623 ../../index.php:798 +msgid "Failed to change password" +msgstr "Erreur de modification du mot de passe" + +#: ../../enterprise/meta/index.php:637 ../../index.php:815 +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:644 ../../index.php:822 +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:660 ../../index.php:849 +msgid "Id user cannot be empty" +msgstr "L'identifiant de l'utilisateur ne peut pas ĆŖtre vide." + +#: ../../enterprise/meta/index.php:668 ../../index.php:857 +msgid "Error in reset password request" +msgstr "Erreur de rĆ©initialisation du mot de passe" + +#: ../../enterprise/meta/index.php:676 ../../index.php:865 +msgid "This user doesn't have a valid email address" +msgstr "Cet utilisateur n'a pas d'adresse courriel valide." + +#: ../../enterprise/meta/index.php:693 ../../index.php:876 +msgid "This is an automatically sent message for user " +msgstr "Ceci est un message envoyĆ© automatiquement Ć  l'utilisateur " + +#: ../../enterprise/meta/index.php:696 ../../index.php:879 +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:698 ../../index.php:881 +msgid "Reset your password" +msgstr "RĆ©initialiser le mot de passe" + +#: ../../enterprise/meta/index.php:702 ../../index.php:885 +msgid "Please do not reply to this email." +msgstr "Veuillez ne pas rĆ©pondre Ć  ce courriel." + +#: ../../enterprise/meta/index.php:708 ../../index.php:890 +msgid "Error at sending the email" +msgstr "Erreur lors de l'envoi du courriel" + +#: ../../enterprise/meta/index.php:849 +#, php-format +msgid "" +"System is not centralised, please go to %s to perform a database merge process." +msgstr "" +"Le systĆØme n'est pas centralisĆ©, allez vers %s pour effectuer le processus " +"d'unification" + +#: ../../enterprise/meta/index.php:917 +#, php-format +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:926 ../../index.php:1173 +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:983 ../../enterprise/meta/index.php:1062 +#: ../../index.php:1261 +msgid "Sorry! I can't find the page!" +msgstr "DĆ©solĆ© ! La page est introuvable !" + +#: ../../enterprise/meta/agentsearch.php:121 +msgid "Search results for" +msgstr "RĆ©sultats de recherche pour" + +#: ../../enterprise/meta/agentsearch.php:122 ../../operation/search_main.php:54 +msgid "Agents found" +msgstr "Agents trouvĆ©s" + +#: ../../enterprise/meta/agentsearch.php:142 +#: ../../enterprise/godmode/reporting/aws_view.php:61 +#: ../../enterprise/operation/agentes/policy_view.php:399 +#: ../../enterprise/operation/agentes/tag_view.php:609 +#: ../../enterprise/operation/agentes/ver_agente.php:77 +#: ../../extensions/users_connected.php:146 ../../godmode/users/user_list.php:481 +#: ../../godmode/agentes/planned_downtime.editor.php:923 +#: ../../mobile/operation/agents.php:99 ../../mobile/operation/agents.php:417 +#: ../../mobile/operation/agents.php:419 ../../mobile/operation/agents.php:422 +#: ../../mobile/operation/agent.php:193 ../../include/ajax/module.php:984 +#: ../../include/functions_treeview.php:668 ../../include/functions_events.php:4048 +#: ../../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:1028 +#: ../../operation/agentes/estado_generalagente.php:362 +#: ../../operation/gis_maps/ajax.php:239 ../../operation/gis_maps/ajax.php:349 +#: ../../operation/gis_maps/ajax.php:466 +msgid "Last contact" +msgstr "Dernier contact" + +#: ../../enterprise/meta/agentsearch.php:301 +msgid "There are no agents included in this group" +msgstr "Aucun agent inclus dans ce groupe" + +#: ../../enterprise/meta/agentsearch.php:315 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:601 +#: ../../operation/tree.php:420 +msgid "Policies found" +msgstr "Politiques trouvĆ©es" + +#: ../../enterprise/meta/agentsearch.php:409 +#: ../../enterprise/godmode/policies/policies.php:471 +#: ../../operation/search_policies.php:50 +msgid "Policy updated" +msgstr "Politique mise Ć  jour" + +#: ../../enterprise/meta/agentsearch.php:417 +#: ../../enterprise/godmode/policies/policies.php:479 +#: ../../operation/search_policies.php:58 +msgid "Pending update policy only database" +msgstr "" +"Mise Ć  jour de la politique en attente, seulement pour modification sur la base " +"de donnĆ©es" + +#: ../../enterprise/meta/agentsearch.php:425 +#: ../../enterprise/godmode/policies/policies.php:487 +#: ../../operation/search_policies.php:66 +msgid "Pending update policy" +msgstr "Mise Ć  jour de la politique en attente" + +#: ../../enterprise/meta/agentsearch.php:450 +msgid "There are no policies included in this group" +msgstr "Il n'y a pas des politiques inclues dans ce groupe" + +#: ../../enterprise/meta/general/footer.php:45 ../../general/footer.php:51 +#, php-format +msgid "%s %s - %s - MR %s" +msgstr "%s %s - %s - MR %s" + +#: ../../enterprise/meta/general/footer.php:50 +msgid "Page generated at" +msgstr "Page gĆ©nĆ©rĆ©e Ć " + +#: ../../enterprise/meta/general/metaconsole_no_activated.php:12 +#: ../../enterprise/meta/general/noaccesssaml.php:130 +#: ../../enterprise/meta/general/noaccess.php:130 ../../mobile/index.php:266 +#: ../../mobile/operation/agents.php:186 ../../mobile/operation/modules.php:218 +#: ../../mobile/operation/groups.php:59 ../../mobile/operation/agent.php:117 +#: ../../mobile/operation/alerts.php:176 ../../mobile/operation/visualmap.php:185 +#: ../../mobile/operation/visualmaps.php:159 +#: ../../mobile/operation/module_graph.php:255 ../../mobile/operation/events.php:744 +#: ../../mobile/operation/tactical.php:79 ../../general/noaccesssaml.php:130 +#: ../../general/noaccess2.php:16 ../../general/noaccess2.php:18 +msgid "You don't have access to this page" +msgstr "Vous n'avez pas accĆØs Ć  cette page" + +#: ../../enterprise/meta/general/metaconsole_no_activated.php:20 +#: ../../general/noaccess2.php:28 +msgid "No access" +msgstr "Pas accĆØs" + +#: ../../enterprise/meta/general/metaconsole_no_activated.php:24 +msgid "" +"Metaconsole needs previous activation from regular console, please contact system " +"administrator if you need assistance.
    " +msgstr "" +"La MĆ©taconsole requiert une activation prĆ©alable Ć  partir d'une console " +"rĆ©guliĆØre. Veuillez communiquer avec l'administrateur du systĆØme si vous avez " +"besoin d'aide.
    " + +#: ../../enterprise/meta/general/header.php:66 +#: ../../enterprise/meta/general/header.php:72 +#: ../../enterprise/meta/general/main_header.php:518 +#: ../../enterprise/meta/general/main_header.php:524 ../../general/header.php:48 +#: ../../general/header.php:54 +msgid "All systems" +msgstr "Tous les systĆØmes" + +#: ../../enterprise/meta/general/header.php:66 +#: ../../enterprise/meta/general/main_header.php:518 ../../general/header.php:48 +msgid "Down" +msgstr "En panne" + +#: ../../enterprise/meta/general/header.php:69 +#: ../../enterprise/meta/general/main_header.php:521 ../../general/header.php:51 +msgid "servers down" +msgstr "Serveurs en panne" + +#: ../../enterprise/meta/general/header.php:72 +#: ../../enterprise/meta/general/main_header.php:524 ../../general/header.php:54 +msgid "Ready" +msgstr "PrĆŖt" + +#: ../../enterprise/meta/general/header.php:110 +#: ../../enterprise/meta/general/main_header.php:552 ../../general/header.php:235 +msgid "Configure autorefresh" +msgstr "Configurer le rafraĆ®chissement automatique" + +#: ../../enterprise/meta/general/header.php:137 +#: ../../enterprise/meta/general/header.php:149 +#: ../../enterprise/meta/general/main_header.php:569 +#: ../../enterprise/meta/general/main_header.php:581 ../../general/header.php:301 +#: ../../general/header.php:320 +msgid "Disabled autorefresh" +msgstr "RafraĆ®chissement automatique dĆ©sactivĆ©" + +#: ../../enterprise/meta/general/header.php:231 +#: ../../enterprise/meta/general/header.php:233 +#: ../../enterprise/meta/general/main_header.php:535 +#: ../../mobile/include/functions_web.php:34 ../../mobile/include/ui.class.php:225 +#: ../../mobile/include/user.class.php:463 ../../mobile/operation/home.php:148 +#: ../../general/header.php:432 ../../general/header.php:434 +msgid "Logout" +msgstr "DĆ©connexion" + +#: ../../enterprise/meta/general/main_header.php:97 +#: ../../enterprise/meta/general/main_menu.php:188 +#: ../../enterprise/operation/services/services.treeview_services.php:62 +#: ../../enterprise/operation/services/services.treeview_services.php:69 +#: ../../godmode/groups/group_list.php:344 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:173 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:714 +#: ../../operation/tree.php:138 ../../operation/menu.php:51 +msgid "Tree view" +msgstr "Vue arborescente" + +#: ../../enterprise/meta/general/main_header.php:109 +#: ../../enterprise/meta/general/main_menu.php:200 +msgid "Groups view" +msgstr "Vue des groupes" + +#: ../../enterprise/meta/general/main_header.php:115 +#: ../../enterprise/meta/general/main_menu.php:206 +#: ../../operation/agentes/alerts_status.php:208 +msgid "Alerts view" +msgstr "Afficher les alertes" + +#: ../../enterprise/meta/general/main_header.php:121 +#: ../../enterprise/meta/general/main_menu.php:212 +msgid "Monitors view" +msgstr "Vue des moniteurs" + +#: ../../enterprise/meta/general/main_header.php:127 +#: ../../enterprise/meta/general/main_menu.php:218 +msgid "Custom fields view" +msgstr "Vue de champs personnalisĆ©s" + +#: ../../enterprise/meta/general/main_header.php:167 +#: ../../enterprise/meta/general/main_header.php:183 +#: ../../enterprise/meta/general/main_menu.php:271 +#: ../../enterprise/mobile/include/functions_web.php:15 +#: ../../include/functions_reporting.php:15186 +#: ../../include/functions_groups.php:139 ../../operation/search_results.php:132 +msgid "Reports" +msgstr "Rapports" + +#: ../../enterprise/meta/general/main_header.php:174 +#: ../../enterprise/meta/general/main_menu.php:278 +msgid "Create new report" +msgstr "CrĆ©er un nouveau rapport" + +#: ../../enterprise/meta/general/main_header.php:190 +#: ../../enterprise/meta/general/main_menu.php:288 +msgid "Report templates" +msgstr "ModĆØles de rapport" + +#: ../../enterprise/meta/general/main_header.php:200 +#: ../../enterprise/meta/general/main_menu.php:298 +#: ../../enterprise/include/functions_reporting.php:124 +#: ../../include/functions_menu.php:509 +msgid "Templates wizard" +msgstr "Assistant de modĆØles" + +#: ../../enterprise/meta/general/main_header.php:210 +#: ../../enterprise/meta/general/main_menu.php:331 +#: ../../enterprise/godmode/menu.php:137 +#: ../../enterprise/godmode/massive/massive_add_service_elements.php:363 +#: ../../enterprise/godmode/massive/massive_create_services.php:966 +#: ../../enterprise/godmode/services/services.massive.meta.php:42 +#: ../../enterprise/godmode/services/services.service.php:477 +#: ../../enterprise/godmode/services/services.service.php:497 +#: ../../enterprise/godmode/services/services.elements.php:783 +#: ../../enterprise/godmode/services/services.elements.php:803 +#: ../../enterprise/godmode/services/services.massive.elements.php:44 +#: ../../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/services/services.service.php:83 +#: ../../enterprise/operation/services/services.service_map.php:97 +#: ../../enterprise/operation/services/services.service_map.php:144 +#: ../../enterprise/operation/services/services.treeview_services.php:62 +#: ../../enterprise/operation/services/services.treeview_services.php:82 +#: ../../enterprise/operation/services/services.list.php:58 +#: ../../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:1654 +#: ../../general/first_task/service_list.php:23 +msgid "Services" +msgstr "Services" + +#: ../../enterprise/meta/general/main_header.php:240 +#: ../../enterprise/meta/general/main_menu.php:348 +#: ../../enterprise/include/functions_enterprise.php:456 +#: ../../include/class/OrderInterpreter.class.php:233 +#: ../../include/lib/Dashboard/Widgets/maps_made_by_user.php:174 +#: ../../include/lib/Dashboard/Widgets/maps_made_by_user.php:488 +#: ../../general/first_task/map_builder.php:31 +msgid "Visual Console" +msgstr "Console visuelle" + +#: ../../enterprise/meta/general/main_header.php:247 +#: ../../enterprise/meta/general/main_menu.php:355 +#: ../../godmode/reporting/visual_console_favorite.php:118 +msgid "Favourite Visual Console" +msgstr "Console visuelle prĆ©fĆ©rĆ©e" + +#: ../../enterprise/meta/general/main_header.php:255 +#: ../../enterprise/meta/general/main_menu.php:363 +msgid "Template Visual Console" +msgstr "Console visuelle du modĆØle" + +#: ../../enterprise/meta/general/main_header.php:262 +#: ../../enterprise/meta/general/main_menu.php:370 +msgid "Wizard Visual Console" +msgstr "Console visuelle de l'assistant" + +#: ../../enterprise/meta/general/main_header.php:275 +#: ../../enterprise/meta/general/logon_ok.php:37 +#: ../../enterprise/meta/general/main_menu.php:385 +#: ../../enterprise/include/functions_enterprise.php:452 ../../godmode/menu.php:350 +#: ../../godmode/setup/setup.php:151 ../../godmode/setup/setup.php:271 +#: ../../include/functions_reports.php:906 ../../include/functions_reports.php:910 +#: ../../include/functions_reports.php:914 ../../include/functions_reports.php:918 +msgid "Netflow" +msgstr "Netflow" + +#: ../../enterprise/meta/general/main_header.php:281 +#: ../../enterprise/meta/general/main_menu.php:393 +msgid "Live view" +msgstr "Vue en temps rĆ©el" + +#: ../../enterprise/meta/general/main_header.php:315 +#: ../../enterprise/meta/general/main_header.php:417 +#: ../../enterprise/meta/general/main_menu.php:438 +#: ../../enterprise/meta/general/main_menu.php:538 +msgid "Agent management" +msgstr "Gestion des agents" + +#: ../../enterprise/meta/general/main_header.php:327 +#: ../../enterprise/meta/general/main_header.php:423 +#: ../../enterprise/meta/general/main_menu.php:444 +#: ../../enterprise/meta/general/main_menu.php:544 +#: ../../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_network_components.php:290 +#: ../../godmode/modules/module_list.php:29 +#: ../../godmode/modules/manage_network_templates.php:39 +msgid "Module management" +msgstr "Gestion de modules" + +#: ../../enterprise/meta/general/main_header.php:333 +#: ../../enterprise/meta/general/main_header.php:439 +#: ../../enterprise/meta/general/main_menu.php:450 +#: ../../enterprise/meta/general/main_menu.php:567 +msgid "Alert management" +msgstr "Gestion des alertes" + +#: ../../enterprise/meta/general/main_header.php:339 +#: ../../enterprise/meta/general/main_menu.php:456 +msgid "Component management" +msgstr "Gestion des composants" + +#: ../../enterprise/meta/general/main_header.php:345 +#: ../../enterprise/meta/general/main_menu.php:468 +#: ../../enterprise/meta/general/main_menu.php:558 +msgid "Policy management" +msgstr "Gestion des politiques" + +#: ../../enterprise/meta/general/main_header.php:351 +#: ../../enterprise/meta/general/main_menu.php:474 +msgid "Category management" +msgstr "Gestion des catĆ©gories" + +#: ../../enterprise/meta/general/main_header.php:357 +#: ../../enterprise/meta/general/main_header.php:430 +#: ../../enterprise/meta/general/main_menu.php:480 +#: ../../enterprise/meta/general/main_menu.php:551 +msgid "Server management" +msgstr "Gestion du serveur" + +#: ../../enterprise/meta/general/main_header.php:363 +#: ../../enterprise/meta/general/main_menu.php:500 +msgid "Command Center" +msgstr "Centre de commande" + +#: ../../enterprise/meta/general/main_header.php:369 +#: ../../enterprise/meta/general/main_menu.php:588 ../../godmode/menu.php:379 +msgid "License" +msgstr "Licence" + +#: ../../enterprise/meta/general/main_header.php:375 +#: ../../enterprise/meta/general/main_menu.php:594 +msgid "Metasetup" +msgstr "Metasetup" + +#: ../../enterprise/meta/general/main_header.php:381 +#: ../../enterprise/meta/general/main_header.php:448 +#: ../../enterprise/meta/general/main_menu.php:600 +#: ../../enterprise/meta/general/main_menu.php:620 ../../godmode/menu.php:398 +#: ../../godmode/menu.php:511 ../../general/links_menu.php:17 +msgid "Links" +msgstr "Liens" + +#: ../../enterprise/meta/general/main_header.php:458 +#: ../../enterprise/meta/general/main_menu.php:630 ../../godmode/extensions.php:28 +msgid "Extensions" +msgstr "Extensions" + +#: ../../enterprise/meta/general/main_header.php:492 +msgid "Audit Logs" +msgstr "Journaux dā€™audit" + +#: ../../enterprise/meta/general/logon_ok.php:66 +#: ../../enterprise/godmode/reporting/graph_template_list.php:128 +#: ../../enterprise/godmode/reporting/graph_template_editor.php:103 +#: ../../enterprise/godmode/reporting/graph_template_wizard.php:144 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:272 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:285 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:306 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:319 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:340 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:353 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:374 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:387 +#: ../../enterprise/godmode/reporting/graph_template_item_editor.php:74 +#: ../../enterprise/godmode/reporting/mysql_builder.php:75 +#: ../../enterprise/godmode/reporting/mysql_builder.php:202 +#: ../../enterprise/operation/agentes/transactional_map.php:70 +#: ../../enterprise/operation/agentes/manage_transmap.php:172 +#: ../../enterprise/operation/agentes/manage_transmap_creation.php:169 +#: ../../enterprise/operation/agentes/manage_transmap_creation.php:349 +#: ../../enterprise/operation/agentes/manage_transmap_creation.php:471 +#: ../../godmode/reporting/graph_builder.php:366 +#: ../../godmode/reporting/graph_container.php:118 +#: ../../godmode/reporting/graphs.php:129 +#: ../../godmode/reporting/reporting_builder.php:572 +#: ../../godmode/reporting/reporting_builder.php:579 +#: ../../godmode/reporting/reporting_builder.php:592 +#: ../../godmode/reporting/reporting_builder.php:3515 +#: ../../godmode/reporting/reporting_builder.php:3522 +#: ../../godmode/reporting/reporting_builder.php:3535 +#: ../../godmode/reporting/reporting_builder.php:3626 +#: ../../godmode/reporting/reporting_builder.php:3633 +#: ../../godmode/reporting/reporting_builder.php:3649 +#: ../../godmode/reporting/reporting_builder.php:3678 ../../operation/menu.php:311 +#: ../../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 +msgid "Reporting" +msgstr "Rapports" + +#: ../../enterprise/meta/general/logon_ok.php:99 +#: ../../enterprise/meta/general/main_menu.php:581 +#: ../../enterprise/meta/general/main_menu.php:611 +#: ../../enterprise/godmode/policies/configure_policy.php:38 +#: ../../enterprise/godmode/servers/HA_cluster.php:70 +#: ../../enterprise/include/functions_policies.php:3714 +#: ../../godmode/update_manager/update_manager.php:57 +#: ../../godmode/update_manager/update_manager.php:87 +#: ../../godmode/agentes/configurar_agente.php:391 +#: ../../godmode/agentes/configurar_agente.php:696 ../../godmode/menu.php:317 +#: ../../godmode/menu.php:324 +#: ../../godmode/module_library/module_library_view.php:48 +#: ../../operation/agentes/estado_agente.php:201 +#: ../../operation/gis_maps/render_view.php:173 +msgid "Setup" +msgstr "RĆ©glages" + +#: ../../enterprise/meta/general/noaccesssaml.php:135 +#: ../../general/noaccesssaml.php:135 +msgid "" +"Access to this page is restricted to authorized users SAML only, please contact " +"system administrator if you need assistance." +msgstr "" +"L'accĆØs Ć  cette page est limitĆ© auz utilisateurs SAML autorisĆ©s seulement, " +"veuillez contacter l'administrateur systĆØme si vous avez besoin d'assistance." + +#: ../../enterprise/meta/general/noaccesssaml.php:137 +#: ../../general/noaccesssaml.php:137 +#, php-format +msgid "" +"Please make sure you have SAML authentication properly configured. For more " +"information the error to access this page are recorded in security logs of %s " +"System Database" +msgstr "" +"VĆ©rifiez que votre authentification SAML est configurĆ©e correctement. Pour plus " +"d'informations l'erreur pour accĆ©der Ć  cette page sont enregistrĆ©s dans des " +"journaux de sĆ©curitĆ© de la base de donnĆ©es du systĆØme %s" + +#: ../../enterprise/meta/general/noaccess.php:135 ../../general/noaccess.php:152 +msgid "" +"Access to this page is restricted to authorized users only, please contact system " +"administrator if you need assistance." +msgstr "" +"L'accĆØs Ć  cette page est limitĆ© aux utilisateurs autorisĆ©s seulement, veuillez " +"contacter l'administrateur systĆØme si vous avez besoin de l'aide." + +#: ../../enterprise/meta/general/noaccess.php:137 ../../general/noaccess.php:154 +#, php-format +msgid "" +"Please know that all attempts to access this page are recorded in security logs " +"of %s System Database" +msgstr "" +"Tous les essais d'accĆØs Ć  cette page sont enregistrĆ©s dans les journaux de " +"sĆ©curitĆ© de la base de donnĆ©es du systĆØme %s" + +#: ../../enterprise/meta/general/main_menu.php:229 +#: ../../enterprise/godmode/agentes/configurar_agente.php:88 +#: ../../enterprise/godmode/policies/policies.php:539 +#: ../../enterprise/include/functions_reporting_csv.php:754 +#: ../../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:712 +#: ../../godmode/setup/setup_integria.php:314 +#: ../../include/functions_reports.php:878 ../../include/functions_reports.php:885 +#: ../../include/functions_reports.php:886 ../../include/functions_reports.php:890 +#: ../../include/functions_reporting.php:2734 +msgid "Inventory" +msgstr "Inventaire" + +#: ../../enterprise/meta/general/main_menu.php:320 +#: ../../operation/messages/message_list.php:90 +#: ../../operation/messages/message_edit.php:103 ../../operation/menu.php:514 +msgid "Messages" +msgstr "Messages" + +#: ../../enterprise/meta/general/main_menu.php:411 +#: ../../enterprise/godmode/menu.php:257 +msgid "Alert correlation" +msgstr "Correlation d'alertes" + +#: ../../enterprise/meta/general/main_menu.php:431 +#: ../../enterprise/meta/general/main_menu.php:512 +msgid "Centralised management" +msgstr "Gestion centralisĆ©e" + +#: ../../enterprise/meta/general/main_menu.php:486 ../../godmode/menu.php:189 +#: ../../godmode/massive/massive_operations.php:329 +msgid "Bulk operations" +msgstr "OpĆ©rations massives" + +#: ../../enterprise/meta/general/main_menu.php:492 +msgid "Agent operations" +msgstr "OpĆ©rations de lā€™agent" + +#: ../../enterprise/meta/general/main_menu.php:675 ../../godmode/menu.php:396 +msgid "System audit log" +msgstr "Journaux d'audit du systĆØme" + +#: ../../enterprise/meta/general/login_page.php:109 ../../general/login_page.php:307 +msgid "Authentication code" +msgstr "Code d'authentification" + +#: ../../enterprise/meta/general/login_page.php:112 +#: ../../mobile/include/user.class.php:496 ../../general/login_page.php:310 +msgid "Check code" +msgstr "Code de vĆ©rification" + +#: ../../enterprise/meta/general/login_page.php:146 +#: ../../enterprise/meta/general/login_page.php:187 +#: ../../mobile/include/user.class.php:407 ../../general/login_page.php:291 +msgid "Login" +msgstr "Se connecter" + +#: ../../enterprise/meta/general/login_page.php:154 +#: ../../mobile/include/user.class.php:427 ../../general/login_page.php:259 +msgid "Login with SAML" +msgstr "Connexion avec SAML" + +#: ../../enterprise/meta/general/login_page.php:195 ../../general/login_page.php:334 +#: ../../general/login_page.php:337 +msgid "Forgot your password?" +msgstr "Mot de passe oubliĆ© ?" + +#: ../../enterprise/meta/general/login_page.php:209 +#: ../../include/functions_config.php:2440 +msgid "PANDORA FMS NEXT GENERATION" +msgstr "PANDORA FMS NEXT GENERATION" + +#: ../../enterprise/meta/general/login_page.php:235 +#: ../../enterprise/meta/general/login_page.php:238 +#: ../../enterprise/meta/general/login_page.php:252 +#: ../../enterprise/meta/general/login_page.php:255 +#: ../../enterprise/meta/general/login_page.php:272 +#: ../../enterprise/meta/general/login_page.php:275 ../../general/login_page.php:340 +#: ../../general/login_page.php:343 ../../general/login_page.php:428 +#: ../../general/login_page.php:431 ../../general/login_page.php:445 +#: ../../general/login_page.php:448 ../../general/login_page.php:465 +#: ../../general/login_page.php:468 +msgid "Password reset" +msgstr "RĆ©initialiser le mot de passe" + +#: ../../enterprise/meta/general/login_page.php:242 ../../general/login_page.php:435 +msgid "INFO" +msgstr "INFO" + +#: ../../enterprise/meta/general/login_page.php:243 ../../general/login_page.php:436 +msgid "An email has been sent to your email address" +msgstr "Un message a Ć©tĆ© envoyĆ© Ć  votre adresse courriel" + +#: ../../enterprise/meta/general/login_page.php:279 ../../general/login_page.php:472 +msgid "SUCCESS" +msgstr "SUCCƈS" + +#: ../../enterprise/meta/general/login_page.php:294 +#: ../../enterprise/meta/general/login_page.php:297 +#: ../../enterprise/include/functions_login.php:141 ../../general/login_page.php:487 +#: ../../general/login_page.php:490 ../../general/login_page.php:644 +#: ../../general/login_page.php:647 +msgid "Login failed" +msgstr "Erreur de connexion" + +#: ../../enterprise/meta/general/login_page.php:319 +#: ../../enterprise/meta/general/login_page.php:322 +#: ../../enterprise/meta/general/login_page.php:326 ../../general/login_page.php:512 +#: ../../general/login_page.php:515 ../../general/login_page.php:519 +msgid "Logged out" +msgstr "DĆ©connectĆ©" + +#: ../../enterprise/meta/general/login_page.php:327 +#: ../../mobile/include/user.class.php:365 ../../general/login_page.php:521 +#, php-format +msgid "" +"Your session has ended. Please close your browser window to close this %s session." +msgstr "" +"Votre session a terminĆ©. Veuillez fermer votre fenĆŖtre du navigateur pour fermer " +"la session %s." + +#: ../../enterprise/load_enterprise.php:564 ../../godmode/setup/license.php:83 +msgid "License updated" +msgstr "Licences mises Ć  jour" + +#: ../../enterprise/load_enterprise.php:565 +msgid "Failed while updating license." +msgstr "La mise Ć  jour de la licence a Ć©chouĆ©" + +#: ../../enterprise/load_enterprise.php:590 ../../enterprise/load_enterprise.php:655 +msgid "Invalid licence." +msgstr "Licence non valide" + +#: ../../enterprise/load_enterprise.php:590 +msgid "Please contact your system administrator." +msgstr "Veuillez communiquer avec l'administrateur du systĆØme." + +#: ../../enterprise/load_enterprise.php:655 +#, php-format +msgid "Please contact %s for a valid licence." +msgstr "Veuillez contacter %s pour une licence valide." + +#: ../../enterprise/load_enterprise.php:656 +#, php-format +msgid "Or disable %s enterprise" +msgstr "Ou dĆ©sactivez %s Enterprise" + +#: ../../enterprise/load_enterprise.php:754 +#: ../../enterprise/godmode/reporting/aws_view.php:181 +#: ../../enterprise/godmode/wizards/Cloud.class.php:325 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3174 +#: ../../godmode/setup/license.php:165 ../../mobile/operation/events.php:858 +#: ../../include/ajax/alert_list.ajax.php:280 +#: ../../include/ajax/alert_list.ajax.php:306 +#: ../../operation/agentes/alerts_status.php:429 +#: ../../operation/snmpconsole/snmp_view.php:1027 +#: ../../operation/snmpconsole/snmp_view.php:1217 +#: ../../operation/snmpconsole/snmp_view.php:1267 +msgid "Validate" +msgstr "Valider" + +#: ../../enterprise/load_enterprise.php:758 +#: ../../enterprise/load_enterprise.php:1053 +msgid "Request new licence" +msgstr "Demander une nouvelle licence" + +#: ../../enterprise/load_enterprise.php:837 +msgid "" +"Metaconsole unreached

    This " +"node has a metaconsole license and cannot contact with the metaconsole." +msgstr "" +"MƩtaconsole non achevƩe

    Ce " +"noeud a une licence de MĆ©taconsole et ne peut pas contacter la MĆ©taconsole." + +#: ../../enterprise/load_enterprise.php:854 ../../enterprise/load_enterprise.php:860 +#: ../../enterprise/load_enterprise.php:876 +#, php-format +msgid "" +"License exceeded

    This license " +"allows %d agents and you have %d agents configured." +msgstr "" +"Licence dƩpasƩe

    Cette licence " +"permet %d agents et vous avez %d agents configurƩs." + +#: ../../enterprise/load_enterprise.php:855 ../../enterprise/load_enterprise.php:862 +#: ../../enterprise/load_enterprise.php:871 ../../enterprise/load_enterprise.php:878 +#: ../../enterprise/load_enterprise.php:890 +#, php-format +msgid "Please contact %s to extend the license." +msgstr "Veuillez contacter %s pour Ʃtendre votre licence." + +#: ../../enterprise/load_enterprise.php:861 ../../enterprise/load_enterprise.php:863 +#: ../../enterprise/load_enterprise.php:877 ../../enterprise/load_enterprise.php:879 +#: ../../enterprise/load_enterprise.php:906 ../../enterprise/load_enterprise.php:912 +msgid "This console will work in limited mode. Enterprise features will not work." +msgstr "" +"Cette console fonctionnera en mode limitƩ. Les fonctionnalitƩs Enterprise ne " +"fonctionneront pas." + +#: ../../enterprise/load_enterprise.php:870 +#, php-format +msgid "" +"License exceeded

    This " +"license allows %d agents and you have %d agents configured." +msgstr "" +"Licence dƩpasƩe

    Cette licence " +"permet %d agents et vous avez %d agents configurƩs." + +#: ../../enterprise/load_enterprise.php:889 +#, php-format +msgid "" +"License exceeded

    This license " +"allows %d modules and you have %d modules configured." +msgstr "" +"Licence dƩpasƩe

    Cette licence " +"permet %d modules et vous avez %d modules configurƩs." + +#: ../../enterprise/load_enterprise.php:899 ../../enterprise/load_enterprise.php:905 +msgid "" +"This license has expired.

    You " +"can not get updates until you renew the license." +msgstr "" +"Licence expirƩe

    Vous ne " +"pouvez pas obtenir de mises Ơ jour tant que vous n'avez pas renouvelƩ la licence." + +#: ../../enterprise/load_enterprise.php:900 ../../enterprise/load_enterprise.php:907 +#, php-format +msgid "Please contact %s to renew the license." +msgstr "Veuillez contacter %s pour renouveler votre licence." + +#: ../../enterprise/load_enterprise.php:910 +#: ../../enterprise/load_enterprise.php:1049 +msgid "Renew" +msgstr "Renouveler" + +#: ../../enterprise/load_enterprise.php:919 +#, php-format +msgid "" +"This license is outside of support. " +"

    This %s installation will continue working normally and without " +"limitations, but without support or updates." +msgstr "" +"Cette licence est hors support. " +"

    Cette installation %s continuera Ć  fonctionner normalement et sans " +"limitations mais sans support ou mises Ć  jour." + +#: ../../enterprise/extensions/disabled/check_acls.php:16 +msgid "ACL users for this agent" +msgstr "Utilisateurs ACL pour cet agent" + +#: ../../enterprise/extensions/disabled/check_acls.php:49 +#: ../../enterprise/extensions/disabled/check_acls.php:136 +msgid "Agents reading" +msgstr "Lecture des agents" + +#: ../../enterprise/extensions/disabled/check_acls.php:51 +#: ../../enterprise/extensions/disabled/check_acls.php:138 +msgid "Agents disable" +msgstr "DĆ©sactiver les agents" + +#: ../../enterprise/extensions/disabled/check_acls.php:52 +#: ../../enterprise/extensions/disabled/check_acls.php:139 +msgid "Alerts editing" +msgstr "Ɖdition des alertes" + +#: ../../enterprise/extensions/disabled/check_acls.php:53 +#: ../../enterprise/extensions/disabled/check_acls.php:140 +#: ../../godmode/menu.php:141 +msgid "Users management" +msgstr "Gestion des utilisateurs" + +#: ../../enterprise/extensions/disabled/check_acls.php:54 +#: ../../enterprise/extensions/disabled/check_acls.php:141 +msgid "Database management" +msgstr "Gestion de la base de donnĆ©es" + +#: ../../enterprise/extensions/disabled/check_acls.php:55 +#: ../../enterprise/extensions/disabled/check_acls.php:142 +msgid "Alerts management" +msgstr "Gestion des alertes" + +#: ../../enterprise/extensions/disabled/check_acls.php:56 +#: ../../enterprise/extensions/disabled/check_acls.php:143 +msgid "Reports reading" +msgstr "Lecture des rapports" + +#: ../../enterprise/extensions/disabled/check_acls.php:57 +#: ../../enterprise/extensions/disabled/check_acls.php:144 +msgid "Reports writing" +msgstr "Ɖcriture des rapports" + +#: ../../enterprise/extensions/disabled/check_acls.php:58 +#: ../../enterprise/extensions/disabled/check_acls.php:145 +msgid "Reports management" +msgstr "Gestion des rapports" + +#: ../../enterprise/extensions/disabled/check_acls.php:59 +#: ../../enterprise/extensions/disabled/check_acls.php:146 +msgid "Events reading" +msgstr "Lecture des Ć©vĆ©nements" + +#: ../../enterprise/extensions/disabled/check_acls.php:60 +#: ../../enterprise/extensions/disabled/check_acls.php:147 +msgid "Events writing" +msgstr "Ɖcriture des Ć©vĆ©nements" + +#: ../../enterprise/extensions/disabled/check_acls.php:61 +#: ../../enterprise/extensions/disabled/check_acls.php:148 +msgid "Events management" +msgstr "Gestion des Ć©vĆ©nements" + +#: ../../enterprise/extensions/disabled/check_acls.php:62 +#: ../../enterprise/extensions/disabled/check_acls.php:149 +msgid "Systems management" +msgstr "Gestion des systĆØmes" + +#: ../../enterprise/extensions/disabled/check_acls.php:63 +#: ../../enterprise/extensions/disabled/check_acls.php:150 +#: ../../enterprise/godmode/setup/setup_metaconsole.php:276 +#: ../../enterprise/godmode/servers/HA_cluster.php:177 +#: ../../godmode/users/user_list.php:483 ../../godmode/users/user_list.php:664 +#: ../../operation/search_users.php:62 +msgid "Admin" +msgstr "Administrateur" + +#: ../../enterprise/extensions/disabled/check_acls.php:112 +msgid "There are no defined users" +msgstr "Aucun utilisateur dĆ©fini" + +#: ../../enterprise/extensions/disabled/check_acls.php:134 +#: ../../godmode/menu.php:133 +msgid "Module tags" +msgstr "Ɖtiquettes de modules" + +#: ../../enterprise/extensions/disabled/check_acls.php:197 +msgid "ACL module tags for the modules in this agent" +msgstr "Ɖtiquettes de module ACL pour les modules dans cet agent" + +#: ../../enterprise/extensions/disabled/check_acls.php:208 +msgid "Only admin users can see this section." +msgstr "Seulement les utilisateurs administrateurs peuvent voir cette section." + +#: ../../enterprise/extensions/disabled/check_acls.php:215 +msgid "Check ACL" +msgstr "VĆ©rifier ACL" + +#: ../../enterprise/extensions/translate_string.php:168 +#: ../../enterprise/extensions/translate_string.php:380 +msgid "Translate string" +msgstr "Traduire chaĆ®ne" + +#: ../../enterprise/extensions/vmware.php:46 +msgid "Failed to initialize VMware extension." +msgstr "Impossible dā€™initialiser lā€™extension VMware." + +#: ../../enterprise/extensions/vmware.php:89 +msgid "VMware View" +msgstr "Vue VMware" + +#: ../../enterprise/extensions/csv_import_group/main.php:23 +#: ../../enterprise/extensions/csv_import_group.php:69 +msgid "CSV import group" +msgstr "Groupe d'importation CSV" + +#: ../../enterprise/extensions/csv_import_group/main.php:48 +#, php-format +msgid "Created group %s" +msgstr "Groupe %s crĆ©Ć©" + +#: ../../enterprise/extensions/csv_import_group/main.php:49 +#, php-format +msgid "Could not create group %s" +msgstr "Impossible de crĆ©er le groupe %s" + +#: ../../enterprise/extensions/csv_import_group/main.php:56 +msgid "File processed" +msgstr "Fichier traitĆ©" + +#: ../../enterprise/extensions/csv_import_group/main.php:59 +msgid "Please syncronize groups to nodes" +msgstr "Veuillez synchroniser les groupes avec les nœuds" + +#: ../../enterprise/extensions/csv_import_group/main.php:68 +#: ../../enterprise/tools/ipam/ipam_supernet_config.php:701 +#: ../../enterprise/tools/ipam/ipam_list.php:447 +#: ../../enterprise/tools/ipam/ipam_vlan_config.php:316 +msgid "The CSV file must have the fields in the following order: " +msgstr "Le fichier CSV doit avoir des champs dans l'ordre suivant: " + +#: ../../enterprise/extensions/csv_import_group/main.php:84 +#: ../../enterprise/include/class/CSVImportAgents.class.php:146 +#: ../../enterprise/tools/ipam/ipam_network.php:115 +#: ../../enterprise/tools/ipam/ipam_supernet_config.php:719 +#: ../../enterprise/tools/ipam/ipam_list.php:50 +#: ../../enterprise/tools/ipam/ipam_vlan_config.php:393 +msgid "Upload file" +msgstr "Charger un fichier" + +#: ../../enterprise/extensions/csv_import_group/main.php:87 +#: ../../enterprise/include/class/DeploymentCenter.class.php:1400 +#: ../../enterprise/include/class/CSVImportAgents.class.php:163 +#: ../../enterprise/tools/ipam/ipam_network.php:124 +#: ../../enterprise/tools/ipam/ipam_supernet_config.php:728 +#: ../../enterprise/tools/ipam/ipam_list.php:59 +#: ../../enterprise/tools/ipam/ipam_vlan_config.php:402 +msgid "Separator" +msgstr "SĆ©parateur" + +#: ../../enterprise/extensions/csv_import_group/main.php:100 +#: ../../enterprise/tools/ipam/ipam_network.php:137 +#: ../../enterprise/tools/ipam/ipam_supernet_config.php:741 +#: ../../enterprise/tools/ipam/ipam_list.php:72 +#: ../../enterprise/tools/ipam/ipam_vlan_config.php:415 +msgid "Upload CSV file" +msgstr "TĆ©lĆ©verser un fichier CSV" + +#: ../../enterprise/extensions/csv_import_group/main.php:105 +#: ../../enterprise/include/class/CSVImportAgents.class.php:198 +#: ../../include/functions_filemanager.php:853 +msgid "Go" +msgstr "ExĆ©cuter" + +#: ../../enterprise/extensions/resource_registration/functions.php:61 +#, php-format +msgid "Error create '%s' policy, the name exist and there aren't free name." +msgstr "" +"Erreur de crĆ©ation de la politique '%s' ; le nom existe dĆ©jĆ  et aucun autre nom " +"est disponible." + +#: ../../enterprise/extensions/resource_registration/functions.php:69 +#, php-format +msgid "Warning create '%s' policy, the name exist, the policy have a name %s." +msgstr "" +"Erreur de crĆ©ation de la politique '%s' ; le nom existe dĆ©jĆ . Le nom de la " +"politique est %s." + +#: ../../enterprise/extensions/resource_registration/functions.php:78 +msgid "Error the policy haven't name." +msgstr "Erreur, la politique n'a pas de nom." + +#: ../../enterprise/extensions/resource_registration/functions.php:99 +#, php-format +msgid "Success create '%s' policy." +msgstr "Politique '%s' crĆ©Ć©e correctement" + +#: ../../enterprise/extensions/resource_registration/functions.php:100 +#, php-format +msgid "Error create '%s' policy." +msgstr "Erreur de crĆ©ation de la politique '%s'" + +#: ../../enterprise/extensions/resource_registration/functions.php:142 +#, php-format +msgid "Error add '%s' agent. The agent does not exist" +msgstr "Erreur dā€™ajout de lā€™agent '%s'. Lā€™agent nā€™existe pas" + +#: ../../enterprise/extensions/resource_registration/functions.php:147 +#, php-format +msgid "Success add '%s' agent." +msgstr "Agent '%s' ajoutĆ© correctement." + +#: ../../enterprise/extensions/resource_registration/functions.php:148 +#, php-format +msgid "Error add '%s' agent." +msgstr "Erreur d'ajout de l'agent '%s'." + +#: ../../enterprise/extensions/resource_registration/functions.php:167 +msgid "The collection does not exist" +msgstr "La collection nā€™existe pas" + +#: ../../enterprise/extensions/resource_registration/functions.php:172 +#, php-format +msgid "Success add '%s' collection." +msgstr "Collection '%s' ajoutĆ©e correctement" + +#: ../../enterprise/extensions/resource_registration/functions.php:173 +#, php-format +msgid "Error add '%s' collection." +msgstr "Erreur d'ajout de la collection '%s'" + +#: ../../enterprise/extensions/resource_registration/functions.php:191 +#, php-format +msgid "Success add '%s' agent plugin." +msgstr "Plugin de l'agent '%s' ajoutĆ© correctement" + +#: ../../enterprise/extensions/resource_registration/functions.php:192 +#, php-format +msgid "Error add '%s' agent plugin." +msgstr "Erreur d'ajout du plugin de l'agent '%s'." + +#: ../../enterprise/extensions/resource_registration/functions.php:205 +msgid "Error add the module, haven't type." +msgstr "Erreur d'ajout du module ; aucun type attribuĆ©." + +#: ../../enterprise/extensions/resource_registration/functions.php:411 +#: ../../enterprise/extensions/resource_registration/functions.php:480 +#: ../../enterprise/extensions/resource_registration/functions.php:581 +#: ../../enterprise/extensions/resource_registration/functions.php:637 +msgid "Error add the module, error in tag component." +msgstr "Erreur d'ajout du module ; erreur dans le composant de l'Ć©tiquette." + +#: ../../enterprise/extensions/resource_registration/functions.php:693 +msgid "Error add the module plugin importation, plugin is not registered" +msgstr "Erreur d'importation du plugin de module ; le plugin n'est pas enregistrĆ©." + +#: ../../enterprise/extensions/resource_registration/functions.php:703 +#, php-format +msgid "Success add '%s' module." +msgstr "Module '%s' ajoutĆ© correctement" + +#: ../../enterprise/extensions/resource_registration/functions.php:704 +#, php-format +msgid "Error add '%s' module." +msgstr "Erreur d'ajout du module '%s'" + +#: ../../enterprise/extensions/resource_registration/functions.php:718 +#, php-format +msgid "Error add the alert, the template '%s' don't exist." +msgstr "Erreur d'ajout de l'alerte, le modĆØle '%s' n'existe pas." + +#: ../../enterprise/extensions/resource_registration/functions.php:731 +#: ../../enterprise/extensions/resource_registration/functions.php:749 +#, php-format +msgid "Error add the alert, the module '%s' don't exist." +msgstr "Erreur d'ajout de l'alerte, le module '%s' n'existe pas." + +#: ../../enterprise/extensions/resource_registration/functions.php:771 +#, php-format +msgid "Success add '%s' alert." +msgstr "Alerte '%s' ajoutĆ©e correctement" + +#: ../../enterprise/extensions/resource_registration/functions.php:772 +#, php-format +msgid "Error add '%s' alert." +msgstr "Erreur d'ajout de l'alerte '%s'" + +#: ../../enterprise/extensions/resource_registration/functions.php:798 +#, php-format +msgid "Error add the alert, the action '%s' don't exist." +msgstr "Erreur d'ajout de l'alerte ; l'action '%s' n'existe pas." + +#: ../../enterprise/extensions/resource_registration/functions.php:817 +#, php-format +msgid "Success add '%s' action." +msgstr "Action '%s' ajoutĆ©e correctement" + +#: ../../enterprise/extensions/resource_registration/functions.php:818 +#: ../../extensions/resource_registration.php:436 +#: ../../extensions/resource_registration.php:458 +#: ../../extensions/resource_registration.php:469 +#, php-format +msgid "Error add '%s' action." +msgstr "Erreur, action '%s' non ajoutĆ©e" + +#: ../../enterprise/extensions/resource_registration/functions.php:854 +msgid "The inventory module does not exist" +msgstr "Le module dā€™inventaire nā€™existe pas" + +#: ../../enterprise/extensions/resource_registration/functions.php:859 +#, php-format +msgid "Success add '%s' inventory module." +msgstr "Ajout rĆ©ussi du module dā€™inventaire '%s'." + +#: ../../enterprise/extensions/resource_registration/functions.php:860 +#, php-format +msgid "Error add '%s' inventory module." +msgstr "Erreur dā€™ajout du module dā€™inventaire '%s'." + +#: ../../enterprise/extensions/vmware/vmware_view.php:61 +msgid "Top 5 VMs CPU Usage" +msgstr "Top 5 VMs de l'utilisation de l'UC" + +#: ../../enterprise/extensions/vmware/vmware_view.php:70 +msgid "Top 5 VMs Memory Usage" +msgstr "Top 5 VMs de l'utilisation de la mĆ©moire" + +#: ../../enterprise/extensions/vmware/vmware_view.php:82 +msgid "Top 5 VMs Provisioning Usage" +msgstr "Top 5 de lā€™utilisation du provisionnement des machines virtuelles" + +#: ../../enterprise/extensions/vmware/vmware_view.php:91 +msgid "Top 5 VMs Network Usage" +msgstr "Top 5 VMs de l'utilisation du rĆ©seau" + +#: ../../enterprise/extensions/vmware/vmware_view.php:684 +msgid "Host ESX" +msgstr "HĆ“te ESX" + +#: ../../enterprise/extensions/vmware/vmware_view.php:1009 +#: ../../enterprise/include/functions_services.php:1972 +#: ../../enterprise/operation/agentes/policy_view.php:479 +#: ../../enterprise/operation/agentes/policy_view.php:485 +#: ../../enterprise/operation/agentes/tag_view.php:942 +#: ../../enterprise/operation/agentes/tag_view.php:948 +#: ../../enterprise/operation/agentes/tag_view.php:989 +#: ../../enterprise/operation/agentes/tag_view.php:995 +#: ../../mobile/operation/modules.php:548 ../../mobile/operation/modules.php:571 +#: ../../mobile/operation/modules.php:611 ../../mobile/operation/modules.php:634 +#: ../../include/functions.php:1360 ../../include/functions.php:1399 +#: ../../include/functions_modules.php:2883 ../../include/functions_modules.php:2889 +#: ../../include/functions_modules.php:4098 ../../include/functions_modules.php:4130 +#: ../../include/functions_ui.php:3828 ../../include/functions_ui.php:3894 +#: ../../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:1579 #: ../../operation/agentes/status_monitor.php:1585 #: ../../operation/agentes/status_monitor.php:1662 #: ../../operation/agentes/status_monitor.php:1668 #: ../../operation/agentes/pandora_networkmap.view.php:1772 #: ../../operation/agentes/pandora_networkmap.view.php:1780 -#: ../../include/class/Tree.class.php:655 ../../include/lib/Module.php:570 -#: ../../include/functions_events.php:56 ../../include/functions_events.php:108 -#: ../../include/functions_events.php:171 -#: ../../include/functions_modules.php:2849 -#: ../../include/functions_modules.php:2855 -#: ../../include/functions_modules.php:4060 -#: ../../include/functions_modules.php:4092 ../../include/functions_ui.php:3763 -#: ../../include/functions_ui.php:3829 ../../include/functions.php:1360 -#: ../../include/functions.php:1399 -#: ../../enterprise/operation/agentes/tag_view.php:942 -#: ../../enterprise/operation/agentes/tag_view.php:948 -#: ../../enterprise/operation/agentes/tag_view.php:989 -#: ../../enterprise/operation/agentes/tag_view.php:995 -#: ../../enterprise/operation/agentes/policy_view.php:479 -#: ../../enterprise/operation/agentes/policy_view.php:485 -#: ../../enterprise/include/functions_services.php:1968 -#: ../../enterprise/extensions/vmware/vmware_view.php:1009 -#: ../../mobile/operation/modules.php:548 ../../mobile/operation/modules.php:571 -#: ../../mobile/operation/modules.php:611 ../../mobile/operation/modules.php:634 +#: ../../operation/search_modules.php:114 ../../operation/search_modules.php:141 +#: ../../operation/events/events.php:543 ../../operation/events/events.php:620 +#: ../../operation/events/events.php:646 msgid "NORMAL" msgstr "NORMAL" -#: ../../operation/search_modules.php:120 ../../operation/search_modules.php:149 -#: ../../operation/events/events.php:2035 ../../operation/events/events.php:2133 -#: ../../operation/events/events.php:2159 +#: ../../enterprise/extensions/vmware/vmware_view.php:1014 +#: ../../enterprise/include/functions_services.php:1980 +#: ../../enterprise/operation/agentes/policy_view.php:473 +#: ../../enterprise/operation/agentes/policy_view.php:490 +#: ../../enterprise/operation/agentes/tag_view.php:956 +#: ../../enterprise/operation/agentes/tag_view.php:962 +#: ../../enterprise/operation/agentes/tag_view.php:1005 +#: ../../enterprise/operation/agentes/tag_view.php:1011 +#: ../../mobile/operation/modules.php:554 ../../mobile/operation/modules.php:579 +#: ../../mobile/operation/modules.php:617 ../../mobile/operation/modules.php:642 +#: ../../include/functions.php:1348 ../../include/functions.php:1380 +#: ../../include/functions_modules.php:2877 ../../include/functions_modules.php:2893 +#: ../../include/functions_modules.php:4102 ../../include/functions_modules.php:4122 +#: ../../include/functions_ui.php:3834 ../../include/functions_ui.php:3904 +#: ../../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:1593 #: ../../operation/agentes/status_monitor.php:1601 #: ../../operation/agentes/status_monitor.php:1678 #: ../../operation/agentes/status_monitor.php:1684 #: ../../operation/agentes/pandora_networkmap.view.php:1766 #: ../../operation/agentes/pandora_networkmap.view.php:1785 -#: ../../include/class/Tree.class.php:625 ../../include/lib/Module.php:554 -#: ../../include/functions_events.php:59 ../../include/functions_events.php:112 -#: ../../include/functions_events.php:156 -#: ../../include/functions_modules.php:2843 -#: ../../include/functions_modules.php:2859 -#: ../../include/functions_modules.php:4064 -#: ../../include/functions_modules.php:4084 ../../include/functions_ui.php:3769 -#: ../../include/functions_ui.php:3839 ../../include/functions.php:1348 -#: ../../include/functions.php:1380 -#: ../../enterprise/operation/agentes/tag_view.php:956 -#: ../../enterprise/operation/agentes/tag_view.php:962 -#: ../../enterprise/operation/agentes/tag_view.php:1005 -#: ../../enterprise/operation/agentes/tag_view.php:1011 -#: ../../enterprise/operation/agentes/policy_view.php:473 -#: ../../enterprise/operation/agentes/policy_view.php:490 -#: ../../enterprise/include/functions_services.php:1976 -#: ../../enterprise/extensions/vmware/vmware_view.php:1014 -#: ../../mobile/operation/modules.php:554 ../../mobile/operation/modules.php:579 -#: ../../mobile/operation/modules.php:617 ../../mobile/operation/modules.php:642 +#: ../../operation/search_modules.php:120 ../../operation/search_modules.php:149 +#: ../../operation/events/events.php:518 ../../operation/events/events.php:626 +#: ../../operation/events/events.php:651 msgid "CRITICAL" msgstr "CRITIQUE" -#: ../../operation/search_modules.php:126 ../../operation/search_modules.php:157 -#: ../../operation/events/events.php:2065 ../../operation/events/events.php:2121 -#: ../../operation/events/events.php:2176 +#: ../../enterprise/extensions/vmware/vmware_view.php:1019 +#: ../../enterprise/include/functions_services.php:1988 +#: ../../enterprise/include/functions_login.php:34 +#: ../../enterprise/operation/agentes/policy_view.php:476 +#: ../../enterprise/operation/agentes/policy_view.php:495 +#: ../../enterprise/operation/agentes/tag_view.php:970 +#: ../../enterprise/operation/agentes/tag_view.php:976 +#: ../../enterprise/operation/agentes/tag_view.php:1021 +#: ../../enterprise/operation/agentes/tag_view.php:1027 +#: ../../mobile/operation/modules.php:560 ../../mobile/operation/modules.php:587 +#: ../../mobile/operation/modules.php:623 ../../mobile/operation/modules.php:650 +#: ../../include/functions.php:1351 ../../include/functions.php:1387 +#: ../../include/functions_modules.php:2880 ../../include/functions_modules.php:2897 +#: ../../include/functions_modules.php:4106 ../../include/functions_modules.php:4138 +#: ../../include/functions_ui.php:3822 ../../include/functions_ui.php:3899 +#: ../../include/class/Tree.class.php:633 +#: ../../include/class/NetworkMap.class.php:2805 ../../include/lib/Module.php:560 +#: ../../include/functions_events.php:78 ../../include/functions_events.php:112 +#: ../../include/functions_events.php:182 #: ../../operation/agentes/status_monitor.php:1609 #: ../../operation/agentes/status_monitor.php:1617 #: ../../operation/agentes/status_monitor.php:1694 #: ../../operation/agentes/status_monitor.php:1700 #: ../../operation/agentes/pandora_networkmap.view.php:1769 #: ../../operation/agentes/pandora_networkmap.view.php:1790 -#: ../../include/class/Tree.class.php:633 -#: ../../include/class/NetworkMap.class.php:2805 ../../include/lib/Module.php:558 -#: ../../include/functions_events.php:70 ../../include/functions_events.php:104 -#: ../../include/functions_events.php:174 -#: ../../include/functions_modules.php:2846 -#: ../../include/functions_modules.php:2863 -#: ../../include/functions_modules.php:4068 -#: ../../include/functions_modules.php:4100 ../../include/functions_ui.php:3757 -#: ../../include/functions_ui.php:3834 ../../include/functions.php:1351 -#: ../../include/functions.php:1387 -#: ../../enterprise/operation/agentes/tag_view.php:970 -#: ../../enterprise/operation/agentes/tag_view.php:976 -#: ../../enterprise/operation/agentes/tag_view.php:1021 -#: ../../enterprise/operation/agentes/tag_view.php:1027 -#: ../../enterprise/operation/agentes/policy_view.php:476 -#: ../../enterprise/operation/agentes/policy_view.php:495 -#: ../../enterprise/include/functions_services.php:1984 -#: ../../enterprise/include/functions_login.php:34 -#: ../../enterprise/extensions/vmware/vmware_view.php:1019 -#: ../../mobile/operation/modules.php:560 ../../mobile/operation/modules.php:587 -#: ../../mobile/operation/modules.php:623 ../../mobile/operation/modules.php:650 +#: ../../operation/search_modules.php:126 ../../operation/search_modules.php:157 +#: ../../operation/events/events.php:548 ../../operation/events/events.php:614 +#: ../../operation/events/events.php:668 msgid "WARNING" msgstr "ATTENTION" -#: ../../operation/search_modules.php:132 ../../operation/search_modules.php:141 -#: ../../operation/search_modules.php:149 ../../operation/search_modules.php:157 -#: ../../operation/events/events.php:2032 ../../operation/events/events.php:2140 -#: ../../operation/events/events.php:2151 +#: ../../enterprise/extensions/vmware/vmware_view.php:1024 +#: ../../enterprise/include/functions_services.php:2003 +#: ../../enterprise/operation/agentes/policy_view.php:485 +#: ../../enterprise/operation/agentes/policy_view.php:490 +#: ../../enterprise/operation/agentes/policy_view.php:495 +#: ../../enterprise/operation/agentes/tag_view.php:989 +#: ../../enterprise/operation/agentes/tag_view.php:995 +#: ../../enterprise/operation/agentes/tag_view.php:1005 +#: ../../enterprise/operation/agentes/tag_view.php:1011 +#: ../../enterprise/operation/agentes/tag_view.php:1021 +#: ../../enterprise/operation/agentes/tag_view.php:1027 +#: ../../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:1364 ../../include/functions.php:1390 +#: ../../include/functions_modules.php:2889 ../../include/functions_modules.php:2893 +#: ../../include/functions_modules.php:2897 ../../include/functions_modules.php:4110 +#: ../../include/functions_ui.php:3841 ../../include/functions_ui.php:3919 +#: ../../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:1625 #: ../../operation/agentes/status_monitor.php:1633 #: ../../operation/agentes/status_monitor.php:1662 @@ -7270,2994 +13540,3437 @@ msgstr "ATTENTION" #: ../../operation/agentes/pandora_networkmap.view.php:1780 #: ../../operation/agentes/pandora_networkmap.view.php:1785 #: ../../operation/agentes/pandora_networkmap.view.php:1790 -#: ../../include/class/Tree.class.php:639 ../../include/lib/Module.php:561 -#: ../../include/functions_events.php:73 ../../include/functions_events.php:117 -#: ../../include/functions_events.php:177 -#: ../../include/functions_modules.php:2855 -#: ../../include/functions_modules.php:2859 -#: ../../include/functions_modules.php:2863 -#: ../../include/functions_modules.php:4072 ../../include/functions_ui.php:3776 -#: ../../include/functions_ui.php:3854 ../../include/functions.php:1364 -#: ../../include/functions.php:1390 -#: ../../enterprise/operation/agentes/tag_view.php:989 -#: ../../enterprise/operation/agentes/tag_view.php:995 -#: ../../enterprise/operation/agentes/tag_view.php:1005 -#: ../../enterprise/operation/agentes/tag_view.php:1011 -#: ../../enterprise/operation/agentes/tag_view.php:1021 -#: ../../enterprise/operation/agentes/tag_view.php:1027 -#: ../../enterprise/operation/agentes/policy_view.php:485 -#: ../../enterprise/operation/agentes/policy_view.php:490 -#: ../../enterprise/operation/agentes/policy_view.php:495 -#: ../../enterprise/include/functions_services.php:1999 -#: ../../enterprise/extensions/vmware/vmware_view.php:1024 -#: ../../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 +#: ../../operation/search_modules.php:132 ../../operation/search_modules.php:141 +#: ../../operation/search_modules.php:149 ../../operation/search_modules.php:157 +#: ../../operation/events/events.php:554 ../../operation/events/events.php:633 +#: ../../operation/events/events.php:673 msgid "UNKNOWN" msgstr "INCONNU" -#: ../../operation/search_modules.php:141 ../../operation/search_modules.php:149 -#: ../../operation/search_modules.php:157 -#: ../../operation/agentes/status_monitor.php:1662 -#: ../../operation/agentes/status_monitor.php:1668 -#: ../../operation/agentes/status_monitor.php:1678 -#: ../../operation/agentes/status_monitor.php:1684 -#: ../../operation/agentes/status_monitor.php:1694 -#: ../../operation/agentes/status_monitor.php:1700 -#: ../../operation/agentes/pandora_networkmap.view.php:1780 -#: ../../operation/agentes/pandora_networkmap.view.php:1785 -#: ../../operation/agentes/pandora_networkmap.view.php:1790 -#: ../../include/functions_modules.php:2855 -#: ../../include/functions_modules.php:2859 -#: ../../include/functions_modules.php:2863 -#: ../../enterprise/operation/agentes/tag_view.php:989 -#: ../../enterprise/operation/agentes/tag_view.php:995 -#: ../../enterprise/operation/agentes/tag_view.php:1005 -#: ../../enterprise/operation/agentes/tag_view.php:1011 -#: ../../enterprise/operation/agentes/tag_view.php:1021 -#: ../../enterprise/operation/agentes/tag_view.php:1027 -#: ../../enterprise/operation/agentes/policy_view.php:485 -#: ../../enterprise/operation/agentes/policy_view.php:490 -#: ../../enterprise/operation/agentes/policy_view.php:495 -#: ../../enterprise/operation/agentes/transactional_map.php:210 -#: ../../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 -msgid "Last status" -msgstr "Dernier Ć©tat" +#: ../../enterprise/extensions/vmware/vmware_view.php:1036 +msgid "CPU Usage" +msgstr "Utilisation de l'UC" -#: ../../operation/gis_maps/ajax.php:237 ../../operation/gis_maps/ajax.php:275 -#: ../../operation/gis_maps/ajax.php:444 -msgid "Position (Lat, Long, Alt)" -msgstr "Position (Lat, Long, Alt)" +#: ../../enterprise/extensions/vmware/vmware_view.php:1046 +msgid "Memory Usage" +msgstr "Utilisation de la mĆ©moire" -#: ../../operation/gis_maps/ajax.php:238 -msgid "Start contact" -msgstr "Commencer le contact" +#: ../../enterprise/extensions/vmware/vmware_view.php:1056 +msgid "Disk I/O Rate" +msgstr "Ratio I/O du disque" -#: ../../operation/gis_maps/ajax.php:239 ../../operation/gis_maps/ajax.php:349 -#: ../../operation/gis_maps/ajax.php:466 ../../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/estado_generalagente.php:364 -#: ../../operation/agentes/ver_agente.php:1028 ../../include/ajax/module.php:984 -#: ../../include/functions_events.php:4499 -#: ../../include/functions_treeview.php:668 -#: ../../enterprise/operation/agentes/tag_view.php:609 -#: ../../enterprise/operation/agentes/policy_view.php:399 -#: ../../enterprise/operation/agentes/ver_agente.php:77 -#: ../../enterprise/meta/agentsearch.php:142 -#: ../../enterprise/godmode/reporting/aws_view.php:61 -#: ../../extensions/users_connected.php:146 ../../mobile/operation/agent.php:193 -#: ../../mobile/operation/agents.php:99 ../../mobile/operation/agents.php:417 -#: ../../mobile/operation/agents.php:419 ../../mobile/operation/agents.php:422 -#: ../../godmode/agentes/planned_downtime.editor.php:923 -#: ../../godmode/users/user_list.php:481 -msgid "Last contact" -msgstr "Dernier contact" +#: ../../enterprise/extensions/vmware/vmware_view.php:1066 +msgid "Network Usage" +msgstr "Utilisation du rĆ©seau" -#: ../../operation/gis_maps/ajax.php:240 -msgid "Num reports" -msgstr "Rapports numĆ©riques" +#: ../../enterprise/extensions/vmware/vmware_view.php:1169 +msgid "Settings updated " +msgstr "ParamĆØtres mis Ć  jour " -#: ../../operation/gis_maps/ajax.php:242 ../../operation/agentes/gis_view.php:225 -msgid "Manual placement" -msgstr "Emplacement manuel" +#: ../../enterprise/extensions/vmware/vmware_view.php:1171 +msgid "No changes in settings " +msgstr "Aucune modification des paramĆØtres " -#: ../../operation/gis_maps/ajax.php:279 ../../operation/gis_maps/ajax.php:448 -msgid "Default position of map." -msgstr "Position de la carte par dĆ©faut" +#: ../../enterprise/extensions/vmware/vmware_view.php:1179 +msgid "CPU usage graphs" +msgstr "Graphiques dā€™utilisation de lā€™UCT" -#: ../../operation/gis_maps/ajax.php:290 ../../include/functions_events.php:4485 -#: ../../include/functions_treeview.php:640 -#: ../../include/functions_reporting_html.php:1521 -#: ../../include/functions_reporting_html.php:3875 -#: ../../include/functions_reporting_html.php:3969 -#: ../../enterprise/include/functions_reporting_csv.php:718 -#: ../../enterprise/meta/include/functions_wizard_meta.php:210 -#: ../../enterprise/meta/include/functions_wizard_meta.php:214 -#: ../../enterprise/meta/include/functions_wizard_meta.php:482 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1468 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1816 -#: ../../godmode/servers/modificar_server.php:62 -#: ../../godmode/agentes/agent_manager.php:301 -msgid "IP Address" -msgstr "Adresse IP" +#: ../../enterprise/extensions/vmware/vmware_view.php:1180 +#: ../../enterprise/extensions/vmware/vmware_view.php:1186 +#: ../../enterprise/extensions/vmware/vmware_view.php:1192 +#: ../../enterprise/extensions/vmware/vmware_view.php:1198 +msgid "Force minimum value" +msgstr "Forcer la valeur minimale" -#: ../../operation/gis_maps/ajax.php:316 -#: ../../include/functions_reporting_html.php:1541 -#: ../../enterprise/include/functions_reporting_csv.php:718 -#: ../../enterprise/include/functions_reporting_csv.php:2409 -#: ../../enterprise/include/functions_reporting_csv.php:2423 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2266 -#: ../../extensions/api_checker.php:220 -#: ../../godmode/reporting/reporting_builder.item_editor.php:75 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2272 -#: ../../godmode/events/event_responses.editor.php:156 -#: ../../godmode/events/event_responses.editor.php:164 -msgid "URL" -msgstr "URL" +#: ../../enterprise/extensions/vmware/vmware_view.php:1182 +#: ../../enterprise/extensions/vmware/vmware_view.php:1188 +#: ../../enterprise/extensions/vmware/vmware_view.php:1194 +#: ../../enterprise/extensions/vmware/vmware_view.php:1200 +msgid "Force maximum value" +msgstr "Forcer la valeur maximale" -#: ../../operation/gis_maps/ajax.php:339 -msgid "Satellite Version" -msgstr "Version Satellite" +#: ../../enterprise/extensions/vmware/vmware_view.php:1185 +msgid "Memory usage graphs" +msgstr "Graphiques dā€™utilisation de la mĆ©moire" -#: ../../operation/gis_maps/ajax.php:341 -#: ../../operation/agentes/estado_generalagente.php:227 -#: ../../include/functions_treeview.php:731 -#: ../../enterprise/views/cluster/view.php:309 -msgid "Agent Version" -msgstr "Version de l'agent" +#: ../../enterprise/extensions/vmware/vmware_view.php:1191 +msgid "Provisioning Usage graphs" +msgstr "Provisionnant des graphiques dā€™utilisation" -#: ../../operation/gis_maps/ajax.php:351 ../../operation/gis_maps/ajax.php:362 -#: ../../operation/gis_maps/ajax.php:468 ../../operation/gis_maps/ajax.php:479 -#: ../../operation/agentes/estado_generalagente.php:369 -#: ../../include/functions_cron.php:869 ../../include/functions_treeview.php:660 -#: ../../include/functions_ui.php:549 -#: ../../enterprise/tools/ipam/ipam_ajax.php:502 -#: ../../enterprise/tools/ipam/ipam_list.php:675 -#: ../../enterprise/include/functions_tasklist.php:572 -#: ../../enterprise/include/functions_ipam.php:2076 -#: ../../enterprise/include/functions_ipam.php:2077 -#: ../../enterprise/include/functions_ipam.php:2078 -#: ../../godmode/snmpconsole/snmp_alert.php:1330 ../../godmode/db/db_main.php:189 -msgid "Never" -msgstr "Jamais" +#: ../../enterprise/extensions/vmware/vmware_view.php:1197 +msgid "Network usage graphs" +msgstr "Graphiques dā€™utilisation du rĆ©seau" -#: ../../operation/gis_maps/ajax.php:360 ../../operation/gis_maps/ajax.php:477 -#: ../../operation/agentes/estado_agente.php:745 -#: ../../operation/agentes/estado_generalagente.php:364 -#: ../../include/functions_treeview.php:668 -#: ../../enterprise/operation/agentes/tag_view.php:601 -#: ../../enterprise/include/functions_reporting_csv.php:718 -msgid "Remote" -msgstr "ƀ distance" +#: ../../enterprise/extensions/vmware/vmware_view.php:1208 +msgid "Map items" +msgstr "ElĆ©ments de la Carte" -#: ../../operation/gis_maps/ajax.php:385 ../../operation/gis_maps/ajax.php:502 -msgid "Number of non-validated critical events" -msgstr "Nombre d'Ć©vĆ©nements critiques non validĆ©s" +#: ../../enterprise/extensions/vmware/vmware_view.php:1209 +msgid "Show datastores" +msgstr "Afficher les datastores" -#: ../../operation/gis_maps/ajax.php:395 ../../operation/gis_maps/ajax.php:512 -msgid "Alert(s) fired" -msgstr "Alerte(s) dĆ©clenchĆ©e(s)" +#: ../../enterprise/extensions/vmware/vmware_view.php:1216 +msgid "Show ESXis" +msgstr "Afficher ESXis" -#: ../../operation/gis_maps/gis_map.php:30 -#: ../../operation/gis_maps/render_view.php:130 -#: ../../godmode/gis_maps/configure_gis_map.php:86 -msgid "GIS Maps list" -msgstr "Liste de cartes GIS" +#: ../../enterprise/extensions/vmware/vmware_view.php:1223 +msgid "Show VMs" +msgstr "Afficher les machines virtuelles" -#: ../../operation/gis_maps/gis_map.php:35 ../../operation/menu.php:260 -msgid "GIS Maps" -msgstr "Cartes GIS" +#: ../../enterprise/extensions/vmware/vmware_view.php:1230 +msgid "Font size (px)" +msgstr "Taille de police (px)" -#: ../../operation/gis_maps/gis_map.php:109 -#: ../../include/functions_container.php:157 -#: ../../enterprise/meta/include/functions_autoprovision.php:644 -#: ../../enterprise/meta/advanced/servers.build_table.php:72 -#: ../../enterprise/godmode/modules/local_components.php:625 -#: ../../enterprise/godmode/reporting/reporting_builder.template_list_item.php:261 -#: ../../enterprise/godmode/alerts/alert_inventory_list.php:224 -#: ../../enterprise/godmode/policies/policies.php:409 -#: ../../enterprise/godmode/policies/policy_alerts.php:354 -#: ../../godmode/servers/plugin.php:819 -#: ../../godmode/servers/servers.build_table.php:91 -#: ../../godmode/reporting/graphs.php:323 -#: ../../godmode/reporting/reporting_builder.list_items.php:427 -#: ../../godmode/reporting/reporting_builder.php:957 -#: ../../godmode/reporting/reporting_builder.php:1156 -#: ../../godmode/alerts/alert_list.list.php:485 -#: ../../godmode/alerts/alert_templates.php:387 -#: ../../godmode/users/user_list.php:487 ../../godmode/users/profile_list.php:349 -msgid "Op." -msgstr "Op." +#: ../../enterprise/extensions/vmware/vmware_view.php:1232 +msgid "Node radius (px)" +msgstr "Rayon du nœud (px)" -#: ../../operation/gis_maps/gis_map.php:200 -msgid "No maps found" -msgstr "Aucune carte retrouvĆ©e" +#: ../../enterprise/extensions/vmware/vmware_view.php:1234 +msgid "Node separation (rate)" +msgstr "SĆ©paration des nœuds (taux)" -#: ../../operation/gis_maps/gis_map.php:219 -msgid "Caution: Do you want delete the map?" -msgstr "Attention : ĆŖtes-vous sĆ»r(e) de vouloir supprimer la carte ?" +#: ../../enterprise/extensions/vmware/vmware_view.php:1239 +msgid "" +"Looking for VMware configuration? You can configure several tasks using Discovery " +"Applications." +msgstr "" +"Vous recherchez une configuration VMware ? Vous pouvez configurer plusieurs " +"tĆ¢ches Ć  lā€™aide des applications Discovery." -#: ../../operation/gis_maps/gis_map.php:226 -msgid "Do you want to set default the map?" -msgstr "Voulez-vous configurer la carte par dĆ©faut ?" +#: ../../enterprise/extensions/vmware/vmware_view.php:1240 +#: ../../enterprise/extensions/vmware/vmware_view.php:1526 +#: ../../enterprise/include/class/SAPView.class.php:626 +msgid "this link" +msgstr "ce lien" -#: ../../operation/gis_maps/gis_map.php:234 -msgid "There was error on setup the default map." -msgstr "Erreur de configuration par dĆ©faut de la carte" +#: ../../enterprise/extensions/vmware/vmware_view.php:1247 +msgid "Graph settings" +msgstr "ParamĆØtres du graphique" -#: ../../operation/gis_maps/render_view.php:145 -msgid "Show link to public GIS map" -msgstr "Afficher le lien vers la carte SIG publique" +#: ../../enterprise/extensions/vmware/vmware_view.php:1252 +msgid "Map settings" +msgstr "ParamĆØtres de la carte" -#: ../../operation/gis_maps/render_view.php:149 ../../include/functions.php:3351 -msgid "5 seconds" -msgstr "5 secondes" +#: ../../enterprise/extensions/vmware/vmware_view.php:1296 +#: ../../enterprise/extensions/vmware/vmware_view.php:1368 +msgid "Welcome" +msgstr "Bienvenue" -#: ../../operation/gis_maps/render_view.php:150 ../../include/functions.php:3352 -msgid "10 seconds" -msgstr "10 secondes" - -#: ../../operation/gis_maps/render_view.php:151 ../../operation/heatmap.php:171 -#: ../../include/ajax/heatmap.ajax.php:50 -#: ../../include/class/AgentsAlerts.class.php:804 -#: ../../include/functions.php:3354 -msgid "30 seconds" -msgstr "30 secondes" - -#: ../../operation/gis_maps/render_view.php:152 ../../operation/heatmap.php:172 -#: ../../include/ajax/heatmap.ajax.php:51 -#: ../../include/class/AgentsAlerts.class.php:805 -#: ../../include/functions.php:3355 -msgid "1 minute" -msgstr "1 minute" - -#: ../../operation/gis_maps/render_view.php:153 -#: ../../include/class/AgentsAlerts.class.php:806 -#: ../../include/functions.php:3356 -msgid "2 minutes" -msgstr "2 minutes" - -#: ../../operation/gis_maps/render_view.php:154 ../../operation/heatmap.php:174 -#: ../../include/ajax/module.php:198 ../../include/ajax/heatmap.ajax.php:53 -#: ../../include/class/AgentsAlerts.class.php:807 -#: ../../include/functions.php:3357 -msgid "5 minutes" -msgstr "5 minutes" - -#: ../../operation/gis_maps/render_view.php:155 -#: ../../include/class/AgentsAlerts.class.php:808 -msgid "10 minutes" -msgstr "10 minutes" - -#: ../../operation/gis_maps/render_view.php:156 ../../include/ajax/module.php:200 -#: ../../include/ajax/graph.ajax.php:146 ../../include/functions.php:2692 -#: ../../include/functions.php:3360 -#: ../../enterprise/godmode/reporting/graph_template_editor.php:217 -#: ../../godmode/setup/performance.php:531 -#: ../../godmode/reporting/create_container.php:346 -msgid "1 hour" -msgstr "1 heure" - -#: ../../operation/gis_maps/render_view.php:157 -#: ../../enterprise/godmode/reporting/graph_template_editor.php:218 -msgid "2 hours" -msgstr "2 heures" - -#: ../../operation/gis_maps/render_view.php:163 -#: ../../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/snmpconsole/snmp_view.php:630 -#: ../../operation/snmpconsole/snmp_view.php:1114 -#: ../../operation/snmpconsole/snmp_view.php:1125 -#: ../../operation/events/events.php:1912 -#: ../../operation/events/events_list.php:530 -#: ../../operation/events/events_list.php:1283 -#: ../../operation/agentes/pandora_networkmap.editor.php:349 -#: ../../operation/agentes/pandora_networkmap.view.php:174 -#: ../../operation/agentes/ver_agente.php:1164 -#: ../../operation/agentes/ver_agente.php:1220 -#: ../../operation/agentes/ver_agente.php:1235 -#: ../../operation/users/user_edit.php:402 -#: ../../operation/users/user_edit.php:414 -#: ../../operation/users/user_edit.php:455 -#: ../../operation/users/user_edit.php:491 -#: ../../operation/users/user_edit.php:505 -#: ../../operation/users/user_edit.php:898 -#: ../../operation/users/user_edit.php:905 -#: ../../operation/users/user_edit.php:914 -#: ../../operation/users/user_edit.php:921 -#: ../../operation/incidents/list_integriaims_incidents.php:530 -#: ../../operation/incidents/list_integriaims_incidents.php:534 -#: ../../include/functions_cron.php:642 -#: ../../include/functions_visual_map_editor.php:404 -#: ../../include/functions_visual_map_editor.php:406 -#: ../../include/functions_visual_map_editor.php:622 -#: ../../include/functions_visual_map_editor.php:957 -#: ../../include/functions_visual_map_editor.php:1010 -#: ../../include/functions_visual_map_editor.php:1072 -#: ../../include/ajax/planned_downtime.ajax.php:85 -#: ../../include/ajax/custom_fields.php:668 ../../include/ajax/events.php:509 -#: ../../include/class/NetworkMap.class.php:2789 -#: ../../include/class/NetworkMap.class.php:3024 -#: ../../include/class/NetworkMap.class.php:3047 -#: ../../include/class/NetworkMap.class.php:3119 -#: ../../include/class/NetworkMap.class.php:3129 -#: ../../include/class/NetworkMap.class.php:3214 -#: ../../include/class/NetworkMap.class.php:3230 -#: ../../include/lib/Dashboard/Widgets/sla_percent.php:336 -#: ../../include/lib/Dashboard/Widgets/reports.php:490 -#: ../../include/lib/Dashboard/Widgets/custom_graph.php:355 -#: ../../include/lib/Dashboard/Widgets/maps_made_by_user.php:521 -#: ../../include/lib/Dashboard/Widgets/single_graph.php:311 -#: ../../include/lib/Dashboard/Widgets/graph_module_histogram.php:326 -#: ../../include/lib/Dashboard/Widgets/service_map.php:270 -#: ../../include/lib/Dashboard/Widgets/service_map.php:311 -#: ../../include/lib/Dashboard/Widgets/events_list.php:301 -#: ../../include/lib/Dashboard/Widgets/events_list.php:459 -#: ../../include/lib/Dashboard/Widgets/top_n.php:241 -#: ../../include/functions_events.php:3620 -#: ../../include/functions_events.php:3636 -#: ../../include/functions_profile.php:297 -#: ../../include/functions_profile.php:315 -#: ../../include/functions_profile.php:330 -#: ../../include/functions_integriaims.php:135 -#: ../../include/rest-api/models/VisualConsole/Item.php:2087 -#: ../../include/rest-api/models/VisualConsole/Item.php:2206 -#: ../../include/rest-api/models/VisualConsole/Item.php:2319 -#: ../../include/rest-api/models/VisualConsole/Item.php:2441 -#: ../../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/functions_html.php:376 ../../include/functions_html.php:816 -#: ../../include/functions_html.php:1229 ../../include/functions_html.php:1281 -#: ../../include/functions_html.php:1328 ../../include/functions_html.php:1329 -#: ../../include/functions_html.php:1382 ../../include/functions_html.php:1432 -#: ../../include/functions_html.php:4648 ../../include/functions_html.php:5937 -#: ../../include/functions_networkmap.php:1519 ../../include/functions.php:1073 -#: ../../enterprise/tools/ipam/ipam_network.php:594 -#: ../../enterprise/tools/ipam/ipam_supernet_config.php:611 -#: ../../enterprise/tools/ipam/ipam_supernet_config.php:783 -#: ../../enterprise/tools/ipam/ipam_list.php:112 -#: ../../enterprise/tools/ipam/ipam_list.php:135 -#: ../../enterprise/tools/ipam/ipam_list.php:157 -#: ../../enterprise/tools/ipam/ipam_editor.php:206 -#: ../../enterprise/tools/ipam/ipam_editor.php:234 -#: ../../enterprise/views/ipam/sites/edit.php:71 -#: ../../enterprise/operation/log/log_viewer.php:735 -#: ../../enterprise/operation/agentes/ver_agente.php:38 -#: ../../enterprise/include/ajax/ipam.ajax.php:400 -#: ../../enterprise/include/ajax/ipam.ajax.php:428 -#: ../../enterprise/include/class/SAP.app.php:615 -#: ../../enterprise/include/class/SAP.app.php:810 -#: ../../enterprise/include/class/SAP.app.php:811 -#: ../../enterprise/include/class/Omnishell.class.php:858 -#: ../../enterprise/include/class/Omnishell.class.php:859 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:896 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:923 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1033 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1186 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1196 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2003 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2469 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2514 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3481 -#: ../../enterprise/include/functions_tasklist.php:317 -#: ../../enterprise/meta/event/custom_events.php:227 -#: ../../enterprise/meta/event/custom_events.php:273 -#: ../../enterprise/meta/monitoring/custom_fields_view.php:256 -#: ../../enterprise/meta/monitoring/wizard/wizard.php:142 -#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:269 -#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:366 -#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:423 -#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:691 -#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:762 -#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:833 -#: ../../enterprise/meta/advanced/metasetup.relations.php:245 -#: ../../enterprise/meta/advanced/metasetup.setup.php:394 -#: ../../enterprise/meta/advanced/metasetup.setup.php:400 -#: ../../enterprise/meta/advanced/metasetup.setup.php:410 -#: ../../enterprise/meta/advanced/metasetup.setup.php:416 -#: ../../enterprise/meta/advanced/metasetup.visual.php:289 -#: ../../enterprise/godmode/setup/setup.php:675 -#: ../../enterprise/godmode/setup/setup.php:692 -#: ../../enterprise/godmode/setup/setup.php:701 -#: ../../enterprise/godmode/setup/setup.php:718 -#: ../../enterprise/godmode/servers/manage_export_form.php:85 -#: ../../enterprise/godmode/modules/configure_local_component.php:543 -#: ../../enterprise/godmode/modules/configure_local_component.php:698 -#: ../../enterprise/godmode/modules/configure_local_component.php:704 -#: ../../enterprise/godmode/modules/configure_local_component.php:712 -#: ../../enterprise/godmode/modules/configure_local_component.php:718 -#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:194 -#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:578 -#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:597 -#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:611 -#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:621 -#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:631 -#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:635 -#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:661 -#: ../../enterprise/godmode/reporting/graph_template_wizard.php:193 -#: ../../enterprise/godmode/reporting/graph_template_wizard.php:398 -#: ../../enterprise/godmode/reporting/graph_template_wizard.php:417 -#: ../../enterprise/godmode/reporting/graph_template_wizard.php:428 -#: ../../enterprise/godmode/reporting/graph_template_wizard.php:443 -#: ../../enterprise/godmode/reporting/graph_template_wizard.php:475 -#: ../../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 -#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:810 -#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:820 -#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:830 -#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:834 -#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:861 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:184 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:451 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:596 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:604 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:614 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:636 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:689 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:722 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:744 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:754 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:775 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:797 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:822 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:845 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:866 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:314 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2977 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3194 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3278 -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:60 -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:527 -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:544 -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:560 -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:576 -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:600 -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:616 -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:658 -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:691 -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:702 -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:721 -#: ../../enterprise/godmode/reporting/visual_console_builder.wizard_services.php:215 -#: ../../enterprise/godmode/reporting/visual_console_builder.wizard_services.php:247 -#: ../../enterprise/godmode/reporting/visual_console_builder.wizard_services.php:253 -#: ../../enterprise/godmode/reporting/visual_console_builder.wizard_services.php:265 -#: ../../enterprise/godmode/reporting/visual_console_builder.wizard_services.php:275 -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:1148 -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:1272 -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:1287 -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:1297 -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:1312 -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:1334 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:80 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:400 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:423 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:922 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:938 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:959 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:968 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:1324 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:1352 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:1373 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:1400 -#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:471 -#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:862 -#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:977 -#: ../../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/massive/massive_delete_alerts_policy.php:121 -#: ../../enterprise/godmode/massive/massive_delete_alerts_policy.php:142 -#: ../../enterprise/godmode/massive/massive_delete_alerts_policy.php:154 -#: ../../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 -#: ../../enterprise/godmode/massive/massive_add_alerts_policy.php:132 -#: ../../enterprise/godmode/massive/massive_add_alerts_policy.php:144 -#: ../../enterprise/godmode/massive/massive_delete_alerts_snmp.php:28 -#: ../../enterprise/godmode/massive/massive_delete_alerts_snmp.php:205 -#: ../../enterprise/godmode/massive/massive_delete_alerts_snmp.php:244 -#: ../../enterprise/godmode/massive/massive_tags_edit_policy.php:117 -#: ../../enterprise/godmode/massive/massive_tags_edit_policy.php:197 -#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:29 -#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:265 -#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:396 -#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:473 -#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:549 -#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:550 -#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:551 -#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:552 -#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:601 -#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:473 -#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:604 -#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:700 -#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:822 -#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:167 -#: ../../enterprise/godmode/policies/policy_agents.php:391 -#: ../../enterprise/godmode/policies/policy_agents.php:1694 -#: ../../enterprise/godmode/policies/policy_external_alerts.php:579 -#: ../../enterprise/godmode/policies/policy_external_alerts.php:688 -#: ../../enterprise/godmode/policies/policy_alerts.php:583 -#: ../../mobile/operation/events.php:639 -#: ../../godmode/setup/setup_visuals.php:400 -#: ../../godmode/setup/setup_visuals.php:419 -#: ../../godmode/setup/setup_visuals.php:949 -#: ../../godmode/setup/os.builder.php:41 -#: ../../godmode/modules/manage_network_components_form.php:642 -#: ../../godmode/modules/manage_network_components_form.php:648 -#: ../../godmode/modules/manage_network_components_form.php:657 -#: ../../godmode/modules/manage_network_components_form.php:663 -#: ../../godmode/modules/manage_network_components_form_plugin.php:41 -#: ../../godmode/modules/manage_network_components_form_common.php:343 -#: ../../godmode/modules/manage_network_components_form_network.php:248 -#: ../../godmode/modules/manage_nc_groups_form.php:77 -#: ../../godmode/reporting/create_container.php:489 -#: ../../godmode/reporting/visual_console_builder.elements.php:482 -#: ../../godmode/reporting/visual_console_builder.elements.php:633 -#: ../../godmode/reporting/visual_console_builder.elements.php:643 -#: ../../godmode/reporting/reporting_builder.item_editor.php:194 -#: ../../godmode/reporting/reporting_builder.item_editor.php:909 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2032 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2105 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2126 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2158 -#: ../../godmode/reporting/reporting_builder.item_editor.php:3054 -#: ../../godmode/reporting/reporting_builder.item_editor.php:3215 -#: ../../godmode/reporting/graph_builder.graph_editor.php:329 -#: ../../godmode/reporting/visual_console_builder.wizard.php:266 -#: ../../godmode/reporting/visual_console_builder.wizard.php:438 -#: ../../godmode/reporting/visual_console_builder.wizard.php:451 -#: ../../godmode/reporting/visual_console_builder.wizard.php:485 -#: ../../godmode/reporting/visual_console_builder.wizard.php:498 -#: ../../godmode/reporting/visual_console_builder.wizard.php:536 -#: ../../godmode/reporting/visual_console_builder.wizard.php:537 -#: ../../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/snmpconsole/snmp_alert.php:40 -#: ../../godmode/snmpconsole/snmp_alert.php:1169 -#: ../../godmode/events/event_edit_filter.php:694 -#: ../../godmode/events/custom_events.php:181 -#: ../../godmode/events/custom_events.php:229 -#: ../../godmode/massive/massive_add_alerts.php:304 -#: ../../godmode/massive/massive_delete_modules.php:502 -#: ../../godmode/massive/massive_delete_modules.php:594 -#: ../../godmode/massive/massive_delete_modules.php:679 -#: ../../godmode/massive/massive_delete_modules.php:728 -#: ../../godmode/massive/massive_delete_modules.php:736 -#: ../../godmode/massive/massive_delete_modules.php:737 -#: ../../godmode/massive/massive_delete_modules.php:738 -#: ../../godmode/massive/massive_delete_modules.php:739 -#: ../../godmode/massive/massive_delete_modules.php:805 -#: ../../godmode/massive/massive_delete_modules.php:835 -#: ../../godmode/massive/massive_copy_modules.php:374 -#: ../../godmode/massive/massive_copy_modules.php:508 -#: ../../godmode/massive/massive_add_action_alerts.php:341 -#: ../../godmode/massive/massive_edit_agents.php:740 -#: ../../godmode/massive/massive_delete_alerts.php:365 -#: ../../godmode/massive/massive_edit_plugins.php:338 -#: ../../godmode/massive/massive_edit_modules.php:458 -#: ../../godmode/massive/massive_edit_modules.php:919 -#: ../../godmode/massive/massive_edit_modules.php:1053 -#: ../../godmode/massive/massive_edit_modules.php:1169 -#: ../../godmode/massive/massive_edit_modules.php:1204 -#: ../../godmode/massive/massive_edit_modules.php:1259 -#: ../../godmode/massive/massive_edit_modules.php:1345 -#: ../../godmode/massive/massive_edit_modules.php:1418 -#: ../../godmode/massive/massive_edit_modules.php:1527 -#: ../../godmode/massive/massive_edit_modules.php:1528 -#: ../../godmode/massive/massive_edit_modules.php:1529 -#: ../../godmode/massive/massive_edit_modules.php:1530 -#: ../../godmode/massive/massive_edit_modules.php:1769 -#: ../../godmode/massive/massive_edit_modules.php:1829 -#: ../../godmode/wizards/HostDevices.class.php:1098 -#: ../../godmode/agentes/module_manager_editor_plugin.php:55 -#: ../../godmode/agentes/module_manager_editor_common.php:733 -#: ../../godmode/agentes/module_manager_editor_common.php:1149 -#: ../../godmode/agentes/module_manager_editor_common.php:1405 -#: ../../godmode/agentes/module_manager_editor_common.php:1412 -#: ../../godmode/agentes/module_manager_editor_common.php:1423 -#: ../../godmode/agentes/module_manager_editor_common.php:1431 -#: ../../godmode/agentes/status_monitor_custom_fields.php:218 -#: ../../godmode/agentes/status_monitor_custom_fields.php:266 -#: ../../godmode/agentes/agent_manager.php:428 -#: ../../godmode/agentes/agent_manager.php:461 -#: ../../godmode/agentes/agent_manager.php:718 -#: ../../godmode/agentes/agent_manager.php:884 -#: ../../godmode/agentes/module_manager_editor_network.php:465 -#: ../../godmode/alerts/configure_alert_template.php:650 -#: ../../godmode/alerts/configure_alert_template.php:777 -#: ../../godmode/alerts/configure_alert_template.php:798 -#: ../../godmode/alerts/alert_list.list.php:748 -#: ../../godmode/alerts/alert_actions.php:291 -#: ../../godmode/alerts/alert_commands.php:302 -#: ../../godmode/alerts/alert_commands.php:316 -#: ../../godmode/alerts/alert_commands.php:376 -#: ../../godmode/alerts/alert_commands.php:389 -#: ../../godmode/users/configure_user.php:1073 -#: ../../godmode/users/configure_user.php:1087 -#: ../../godmode/users/configure_user.php:1281 -#: ../../godmode/users/configure_user.php:1293 -#: ../../godmode/groups/configure_group.php:188 -#: ../../godmode/groups/configure_group.php:210 -msgid "None" -msgstr "Aucun" - -#: ../../operation/gis_maps/render_view.php:167 -#: ../../operation/snmpconsole/snmp_statistics.php:218 -#: ../../operation/snmpconsole/snmp_statistics.php:275 -#: ../../operation/snmpconsole/snmp_view.php:636 -#: ../../operation/snmpconsole/snmp_view.php:1120 -#: ../../operation/snmpconsole/snmp_view.php:1149 -#: ../../operation/users/user_edit.php:362 ../../include/functions_graph.php:3060 -#: ../../include/functions_graph.php:3105 ../../include/functions_graph.php:3146 -#: ../../include/functions_graph.php:3188 ../../include/functions_graph.php:3265 -#: ../../include/functions_graph.php:3474 ../../include/functions_graph.php:3582 -#: ../../include/functions_graph.php:3647 ../../include/functions_graph.php:3814 -#: ../../include/functions_graph.php:3826 ../../include/functions_graph.php:3827 -#: ../../include/functions_graph.php:3830 ../../include/functions_graph.php:3835 -#: ../../include/functions_graph.php:3836 ../../include/functions_graph.php:3839 -#: ../../include/functions_graph.php:4837 -#: ../../include/functions_reporting.php:4854 -#: ../../include/functions_reporting.php:4866 -#: ../../include/functions_reporting.php:4867 -#: ../../include/functions_reporting.php:4870 -#: ../../include/functions_reporting.php:4875 -#: ../../include/functions_reporting.php:4876 -#: ../../include/functions_reporting.php:4879 -#: ../../enterprise/include/class/Aws.cloud.php:347 -#: ../../enterprise/include/functions_ipam.php:1597 -#: ../../enterprise/godmode/setup/setup_acl.php:475 -#: ../../enterprise/godmode/setup/setup_acl.php:479 -#: ../../enterprise/godmode/massive/massive_delete_alerts_snmp.php:34 -#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:35 -#: ../../extensions/api_checker.php:176 -#: ../../godmode/snmpconsole/snmp_alert.php:46 -#: ../../godmode/users/configure_user.php:1116 -#: ../../godmode/groups/configure_group.php:250 -msgid "Other" -msgstr "Autre" - -#: ../../operation/gis_maps/render_view.php:170 -msgid "Filter by status" -msgstr "Filtrer par Ć©tat" - -#: ../../operation/gis_maps/render_view.php:173 -#: ../../operation/agentes/estado_agente.php:201 -#: ../../enterprise/include/functions_policies.php:3714 -#: ../../enterprise/meta/general/main_menu.php:577 -#: ../../enterprise/meta/general/main_menu.php:607 -#: ../../enterprise/meta/general/logon_ok.php:99 -#: ../../enterprise/godmode/servers/HA_cluster.php:70 -#: ../../enterprise/godmode/policies/configure_policy.php:38 -#: ../../godmode/update_manager/update_manager.php:57 -#: ../../godmode/update_manager/update_manager.php:87 ../../godmode/menu.php:309 -#: ../../godmode/menu.php:316 ../../godmode/agentes/configurar_agente.php:391 -#: ../../godmode/agentes/configurar_agente.php:696 -#: ../../godmode/module_library/module_library_view.php:48 -msgid "Setup" -msgstr "RĆ©glages" - -#: ../../operation/gis_maps/render_view.php:178 -#: ../../include/lib/Dashboard/Widgets/network_map.php:323 #: ../../enterprise/extensions/vmware/vmware_view.php:1306 #: ../../enterprise/extensions/vmware/vmware_view.php:1348 +#: ../../include/lib/Dashboard/Widgets/network_map.php:323 +#: ../../operation/gis_maps/render_view.php:178 msgid "Map" msgstr "Carte" -#: ../../operation/search_users.php:43 -#: ../../operation/snmpconsole/snmp_view.php:876 -#: ../../operation/users/user_edit.php:258 -#: ../../include/functions_reporting_html.php:5018 -#: ../../include/functions_reporting_html.php:6216 -#: ../../include/functions_reporting_html.php:6239 -#: ../../enterprise/include/functions_reporting_csv.php:2549 -#: ../../enterprise/include/functions_reporting_csv.php:2559 -#: ../../godmode/users/user_list.php:479 -#: ../../godmode/users/configure_user.php:852 -#: ../../godmode/users/configure_user.php:868 -msgid "User ID" -msgstr "Identifiant de l'utilisateur" - -#: ../../operation/search_users.php:45 ../../include/functions_cron.php:575 -#: ../../include/functions_cron.php:666 -#: ../../enterprise/operation/reporting/custom_reporting.php:20 -#: ../../enterprise/include/functions_tasklist.php:254 -#: ../../enterprise/include/functions_tasklist.php:341 -#: ../../enterprise/godmode/setup/setup_auth.php:99 -#: ../../godmode/tag/edit_tag.php:239 ../../godmode/tag/tag.php:281 -msgid "Email" -msgstr "Courriel" - -#: ../../operation/search_users.php:47 -msgid "Profile" -msgstr "Profil" - -#: ../../operation/search_users.php:62 -#: ../../enterprise/extensions/disabled/check_acls.php:63 -#: ../../enterprise/extensions/disabled/check_acls.php:150 -#: ../../enterprise/godmode/setup/setup_metaconsole.php:276 -#: ../../enterprise/godmode/servers/HA_cluster.php:177 -#: ../../godmode/users/user_list.php:483 ../../godmode/users/user_list.php:664 -msgid "Admin" -msgstr "Administrateur" - -#: ../../operation/search_users.php:63 ../../godmode/users/user_list.php:665 -#: ../../godmode/users/configure_user.php:984 -msgid "Administrator" -msgstr "Administrateur" - -#: ../../operation/search_users.php:72 ../../godmode/users/configure_user.php:999 -msgid "Standard User" -msgstr "Utilisateur standard" - -#: ../../operation/search_users.php:87 ../../include/functions_reporting.php:4428 -#: ../../include/functions_reporting.php:4475 -#: ../../godmode/users/user_list.php:723 -msgid "The user doesn't have any assigned profile/group" -msgstr "Aucun profil/groupe assignĆ© Ć  cet utilisateur" - -#: ../../operation/reporting/graph_viewer.php:59 -#: ../../operation/reporting/graph_viewer.php:67 -#: ../../enterprise/tools/ipam/ipam_network_location_config.php:88 -#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:289 -#: ../../enterprise/meta/advanced/metasetup.relations.php:87 -#: ../../enterprise/godmode/reporting/graph_template_item_editor.php:130 -#: ../../enterprise/godmode/reporting/graph_template_item_editor.php:158 -#: ../../enterprise/godmode/reporting/graph_template_list.php:156 -#: ../../enterprise/godmode/reporting/graph_template_list.php:183 -#: ../../godmode/modules/manage_nc_groups.php:153 -#: ../../godmode/reporting/map_builder.php:210 -#: ../../godmode/reporting/graphs.php:152 ../../godmode/reporting/graphs.php:163 -#: ../../godmode/reporting/graphs.php:214 -#: ../../godmode/events/event_filter.php:70 -#: ../../godmode/events/event_filter.php:97 ../../godmode/netflow/nf_edit.php:105 -#: ../../godmode/netflow/nf_edit.php:138 -#: ../../godmode/netflow/nf_item_list.php:121 -#: ../../godmode/netflow/nf_item_list.php:149 -#: ../../godmode/agentes/planned_downtime.list.php:243 -msgid "Not deleted. Error deleting data" -msgstr "Erreur d'Ć©limination des donnĆ©es" - -#: ../../operation/reporting/graph_viewer.php:182 -#: ../../operation/reporting/graph_viewer.php:214 -#: ../../enterprise/godmode/reporting/graph_template_wizard.php:99 -#: ../../enterprise/godmode/reporting/graph_template_wizard.php:113 -#: ../../enterprise/godmode/reporting/graph_template_list.php:54 -#: ../../enterprise/godmode/reporting/graph_template_list.php:73 -#: ../../enterprise/godmode/reporting/graph_template_list.php:87 -#: ../../godmode/reporting/graphs.php:67 ../../godmode/reporting/graphs.php:81 -#: ../../godmode/reporting/graph_container.php:77 -#: ../../godmode/reporting/graph_builder.php:287 -msgid "Graph list" -msgstr "Liste de graphiques" - -#: ../../operation/reporting/graph_viewer.php:204 -#: ../../godmode/reporting/graph_builder.php:309 -msgid "Graph editor" -msgstr "Ɖditeur de graphique" - -#: ../../operation/reporting/graph_viewer.php:223 -#: ../../godmode/reporting/graph_builder.php:320 -msgid "View graph" -msgstr "Afficher graphique" - -#: ../../operation/reporting/graph_viewer.php:267 -#: ../../operation/reporting/graph_viewer.php:513 -#: ../../operation/reporting/custom_reporting.php:23 -#: ../../operation/reporting/reporting_viewer.php:211 -#: ../../operation/reporting/reporting_viewer.php:216 -#: ../../operation/reporting/reporting_viewer.php:229 -#: ../../operation/menu.php:311 -#: ../../enterprise/operation/agentes/transactional_map.php:70 -#: ../../enterprise/operation/agentes/manage_transmap_creation.php:169 -#: ../../enterprise/operation/agentes/manage_transmap_creation.php:349 -#: ../../enterprise/operation/agentes/manage_transmap_creation.php:471 -#: ../../enterprise/operation/agentes/manage_transmap.php:172 -#: ../../enterprise/meta/general/logon_ok.php:66 -#: ../../enterprise/godmode/reporting/graph_template_wizard.php:144 -#: ../../enterprise/godmode/reporting/mysql_builder.php:75 -#: ../../enterprise/godmode/reporting/mysql_builder.php:202 -#: ../../enterprise/godmode/reporting/graph_template_item_editor.php:74 -#: ../../enterprise/godmode/reporting/graph_template_editor.php:103 -#: ../../enterprise/godmode/reporting/graph_template_list.php:128 -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:272 -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:285 -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:306 -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:319 -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:340 -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:353 -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:374 -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:387 -#: ../../godmode/reporting/graphs.php:129 -#: ../../godmode/reporting/graph_container.php:118 -#: ../../godmode/reporting/graph_builder.php:366 -#: ../../godmode/reporting/reporting_builder.php:572 -#: ../../godmode/reporting/reporting_builder.php:579 -#: ../../godmode/reporting/reporting_builder.php:592 -#: ../../godmode/reporting/reporting_builder.php:3483 -#: ../../godmode/reporting/reporting_builder.php:3490 -#: ../../godmode/reporting/reporting_builder.php:3503 -#: ../../godmode/reporting/reporting_builder.php:3594 -#: ../../godmode/reporting/reporting_builder.php:3601 -#: ../../godmode/reporting/reporting_builder.php:3617 -#: ../../godmode/reporting/reporting_builder.php:3646 -msgid "Reporting" -msgstr "Rapports" - -#: ../../operation/reporting/graph_viewer.php:271 ../../operation/menu.php:327 -#: ../../enterprise/godmode/reporting/graph_template_wizard.php:148 -#: ../../enterprise/godmode/reporting/graph_template_item_editor.php:78 -#: ../../enterprise/godmode/reporting/graph_template_editor.php:107 -#: ../../enterprise/godmode/reporting/graph_template_list.php:132 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:387 -#: ../../godmode/reporting/graphs.php:133 -#: ../../godmode/reporting/graph_container.php:122 -#: ../../godmode/reporting/graph_builder.php:370 -msgid "Custom graphs" -msgstr "Graphiques personnalisĆ©s" - -#: ../../operation/reporting/graph_viewer.php:335 -msgid "No data." -msgstr "Aucune donnĆ©e" - -#: ../../operation/reporting/graph_viewer.php:360 -#: ../../operation/agentes/graphs.php:218 -#: ../../operation/agentes/stat_win.php:338 -#: ../../operation/agentes/stat_win.php:441 -#: ../../operation/agentes/interface_traffic_graph_win.php:213 -msgid "Time range" -msgstr "Intervalle de temps" - -#: ../../operation/reporting/graph_viewer.php:369 -#: ../../operation/reporting/graph_viewer.php:391 -msgid "Graph defined" -msgstr "Graphique dĆ©fini" - -#: ../../operation/reporting/graph_viewer.php:370 -#: ../../operation/agentes/graphs.php:236 ../../operation/agentes/graphs.php:243 -#: ../../operation/agentes/graphs.php:409 ../../operation/agentes/graphs.php:428 -#: ../../include/functions_visual_map_editor.php:558 -#: ../../include/lib/Dashboard/Widgets/custom_graph.php:315 -#: ../../include/rest-api/models/VisualConsole/Items/ModuleGraph.php:652 -#: ../../enterprise/meta/advanced/metasetup.visual.php:348 -#: ../../enterprise/godmode/reporting/graph_template_editor.php:245 -#: ../../godmode/setup/setup_visuals.php:902 -#: ../../godmode/setup/setup_visuals.php:919 -#: ../../godmode/reporting/create_container.php:358 -#: ../../godmode/reporting/graph_builder.main.php:214 -msgid "Area" -msgstr "Zone" - -#: ../../operation/reporting/graph_viewer.php:371 -#: ../../include/lib/Dashboard/Widgets/custom_graph.php:316 -#: ../../enterprise/godmode/reporting/graph_template_editor.php:246 -#: ../../godmode/reporting/graph_builder.main.php:215 -msgid "Stacked area" -msgstr "Zone en attente" - -#: ../../operation/reporting/graph_viewer.php:373 -#: ../../include/lib/Dashboard/Widgets/custom_graph.php:318 -#: ../../enterprise/godmode/reporting/graph_template_editor.php:248 -#: ../../godmode/reporting/graph_builder.main.php:217 -msgid "Stacked line" -msgstr "Ligne en attente" - -#: ../../operation/reporting/graph_viewer.php:374 -#: ../../include/lib/Dashboard/Widgets/custom_graph.php:319 -#: ../../godmode/reporting/graph_builder.main.php:218 -msgid "Bullet chart" -msgstr "Graphique Ć  puces" - -#: ../../operation/reporting/graph_viewer.php:375 -#: ../../include/lib/Dashboard/Widgets/custom_graph.php:320 -#: ../../godmode/reporting/graph_builder.main.php:219 -msgid "Gauge" -msgstr "Calibre" - -#: ../../operation/reporting/graph_viewer.php:376 -#: ../../include/lib/Dashboard/Widgets/custom_graph.php:321 -msgid "Horizontal Bars" -msgstr "Barres horizontales" - -#: ../../operation/reporting/graph_viewer.php:377 -#: ../../include/lib/Dashboard/Widgets/custom_graph.php:322 -msgid "Vertical Bars" -msgstr "Barres verticales" - -#: ../../operation/reporting/graph_viewer.php:378 -#: ../../include/lib/Dashboard/Widgets/custom_graph.php:323 -#: ../../godmode/reporting/graph_builder.main.php:222 -msgid "Pie" -msgstr "Diagramme circulaire" - -#: ../../operation/reporting/graph_viewer.php:383 -msgid "Equalize maxiddmum thresholds" -msgstr "Egaliser les seuils maximaux" - -#: ../../operation/reporting/graph_viewer.php:383 -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 "" -"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 -msgid "Zoom x1" -msgstr "Zoom x1" - -#: ../../operation/reporting/graph_viewer.php:393 -msgid "Zoom x2" -msgstr "Zoom x2" - -#: ../../operation/reporting/graph_viewer.php:394 -msgid "Zoom x3" -msgstr "Zoom x3" - -#: ../../operation/reporting/graph_viewer.php:505 -#: ../../operation/reporting/reporting_viewer.php:426 -msgid "Invalid date selected" -msgstr "Date sĆ©lectionnĆ©e non valide" - -#: ../../operation/reporting/graph_viewer.php:513 -msgid "Custom graph viewer" -msgstr "Affichage personnalisĆ© du tableau" - -#: ../../operation/reporting/graph_viewer.php:524 -#: ../../operation/search_graphs.php:30 ../../include/functions_container.php:146 -#: ../../godmode/reporting/graphs.php:310 -msgid "Graph name" -msgstr "Nom du graphique" - -#: ../../operation/reporting/graph_viewer.php:539 -#: ../../operation/reporting/custom_reporting.php:28 -msgid "There are no defined reportings" -msgstr "Aucun rapport dĆ©fini" - -#: ../../operation/reporting/custom_reporting.php:23 ../../operation/menu.php:318 -#: ../../godmode/reporting/reporting_builder.php:551 -#: ../../godmode/reporting/reporting_builder.php:3462 -msgid "Custom reporting" -msgstr "Rapports personnalisĆ©s" - -#: ../../operation/reporting/reporting_viewer.php:101 -#: ../../godmode/reporting/reporting_builder.php:210 -msgid "Your report has been planned, and the system will email you a " -msgstr "Votre rapport a Ć©tĆ© planifiĆ© et le systĆØme en vous enverra par e-mail un" - -#: ../../operation/reporting/reporting_viewer.php:102 -#: ../../godmode/reporting/reporting_builder.php:211 -msgid "An error has ocurred" -msgstr "Une erreur est survenue" - -#: ../../operation/reporting/reporting_viewer.php:119 -#: ../../godmode/netflow/nf_item_list.php:27 -msgid "Report list" -msgstr "Liste de rapports" - -#: ../../operation/reporting/reporting_viewer.php:148 -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:162 -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:205 -#: ../../godmode/reporting/reporting_builder.php:3545 -msgid "List items" -msgstr "Liste d'Ć©lĆ©ments" - -#: ../../operation/reporting/reporting_viewer.php:157 -#: ../../enterprise/include/functions_reporting.php:8026 -#: ../../enterprise/include/functions_reporting.php:8092 -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:151 -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:218 -#: ../../godmode/reporting/reporting_builder.php:3549 -msgid "Item editor" -msgstr "Ɖditeur d'Ć©lĆ©ments" - -#: ../../operation/reporting/reporting_viewer.php:173 -#: ../../godmode/reporting/reporting_builder.php:3566 -msgid "View report" -msgstr "Afficher le rapport" - -#: ../../operation/reporting/reporting_viewer.php:233 -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:289 -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:323 -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:357 -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:391 -#: ../../godmode/reporting/reporting_builder.php:596 -#: ../../godmode/reporting/reporting_builder.php:3507 -#: ../../godmode/reporting/reporting_builder.php:3621 -#: ../../godmode/reporting/reporting_builder.php:3650 -msgid "Custom reports" -msgstr "Rapports personnalisĆ©s" - -#: ../../operation/reporting/reporting_viewer.php:249 -msgid "View Report" -msgstr "Afficher le rapport" - -#: ../../operation/reporting/reporting_viewer.php:291 -msgid "Set initial date" -msgstr "DĆ©finir la date initiale" - -#: ../../operation/reporting/reporting_viewer.php:304 -#: ../../operation/agentes/gis_view.php:220 ../../include/rest-api/index.php:359 -#: ../../include/rest-api/models/VisualConsole/Items/ColorCloud.php:449 -#: ../../include/rest-api/models/VisualConsole/Items/ColorCloud.php:510 -#: ../../include/functions_reporting_html.php:147 -#: ../../include/functions_reporting_html.php:2945 -#: ../../include/functions_reporting_html.php:3750 -#: ../../enterprise/include/functions_reporting_csv.php:715 -#: ../../enterprise/include/functions_reporting_csv.php:951 -#: ../../enterprise/include/functions_reporting_csv.php:1325 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2333 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2337 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3337 -#: ../../enterprise/include/functions_reporting_pdf.php:1794 -#: ../../enterprise/include/functions_reporting_pdf.php:1867 -#: ../../enterprise/include/functions_reporting_pdf.php:1982 -#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:127 -#: ../../enterprise/godmode/policies/policy_external_alerts.php:467 -#: ../../enterprise/godmode/policies/policy_alerts.php:436 -#: ../../godmode/agentes/planned_downtime.list.php:293 -#: ../../godmode/alerts/alert_list.list.php:644 -#: ../../godmode/alerts/alert_list.list.php:647 -#: ../../godmode/alerts/alert_templates.php:96 -msgid "From" -msgstr "De" - -#: ../../operation/reporting/reporting_viewer.php:307 -#: ../../include/functions_reporting_html.php:150 -#: ../../enterprise/include/functions_reporting_pdf.php:1808 -msgid "Items period before" -msgstr "PĆ©riode d'articles avant" - -#: ../../operation/reporting/reporting_viewer.php:308 -#: ../../include/ajax/alert_list.ajax.php:514 -#: ../../include/class/AgentsAlerts.class.php:316 -#: ../../include/functions_reporting.php:14058 -#: ../../include/functions_reporting_html.php:148 -#: ../../include/functions_reporting_html.php:2950 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1018 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2333 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2337 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2494 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3339 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3468 -#: ../../enterprise/include/functions_reporting_pdf.php:1800 -#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:129 -#: ../../enterprise/godmode/agentes/manage_config_remote.php:108 -#: ../../enterprise/godmode/policies/policy_external_alerts.php:467 -#: ../../enterprise/godmode/policies/policy_external_alerts.php:602 -#: ../../enterprise/godmode/policies/policy_alerts.php:436 -#: ../../enterprise/godmode/policies/policy_alerts.php:600 -#: ../../godmode/massive/massive_add_action_alerts.php:254 -#: ../../godmode/alerts/alert_list.list.php:644 -#: ../../godmode/alerts/alert_list.list.php:764 -#: ../../godmode/alerts/alert_list.builder.php:129 -#: ../../godmode/alerts/alert_templates.php:98 -msgid "to" -msgstr "pour" - -#: ../../operation/reporting/reporting_viewer.php:321 -msgid "Invalid date selected. Initial date must be before end date." -msgstr "" -"Date sĆ©lectionnĆ©e non valide. La date initiale doit ĆŖtre antĆ©rieure Ć  la date " -"de fin." - -#: ../../operation/menu.php:37 ../../operation/heatmap.php:137 -#: ../../operation/agentes/status_monitor.php:108 -#: ../../operation/agentes/alerts_status.php:204 -#: ../../operation/agentes/group_view.php:102 -#: ../../operation/agentes/interface_view.php:76 -#: ../../operation/agentes/tactical.php:82 -#: ../../operation/agentes/estado_agente.php:228 -#: ../../include/class/AgentsAlerts.class.php:742 -#: ../../enterprise/operation/agentes/tag_view.php:54 -#: ../../extensions/realtime_graphs.php:71 ../../extensions/module_groups.php:264 -#: ../../extensions/agents_modules.php:478 -msgid "Views" -msgstr "Vues" - -#: ../../operation/menu.php:45 ../../operation/agentes/tactical.php:69 -#: ../../operation/users/user_edit.php:360 -#: ../../include/lib/Dashboard/Widgets/tactical.php:176 -#: ../../include/lib/Dashboard/Widgets/tactical.php:482 -#: ../../enterprise/meta/general/main_menu.php:194 -#: ../../enterprise/meta/general/main_header.php:103 -#: ../../enterprise/meta/monitoring/tactical.php:63 -#: ../../mobile/operation/home.php:45 ../../mobile/operation/tactical.php:97 -#: ../../godmode/users/configure_user.php:1113 -msgid "Tactical view" -msgstr "Affichage tactique" - -#: ../../operation/menu.php:48 ../../operation/agentes/group_view.php:89 -#: ../../operation/users/user_edit.php:359 -#: ../../enterprise/meta/monitoring/group_view.php:72 -#: ../../godmode/users/configure_user.php:1112 -#: ../../godmode/groups/group_list.php:321 -msgid "Group view" -msgstr "Affichage du groupe" - -#: ../../operation/menu.php:54 ../../operation/agentes/estado_agente.php:215 -#: ../../godmode/agentes/agent_manager.php:226 -msgid "Agent detail" -msgstr "DĆ©tail de l'agent" - -#: ../../operation/menu.php:58 ../../operation/agentes/status_monitor.php:95 -msgid "Monitor detail" -msgstr "DĆ©tail des moniteurs" - -#: ../../operation/menu.php:61 ../../operation/agentes/interface_view.php:63 -msgid "Interface view" -msgstr "Vue de l'interface" - -#: ../../operation/menu.php:66 ../../operation/agentes/alerts_status.php:191 -#: ../../operation/users/user_edit.php:361 -#: ../../godmode/users/configure_user.php:1114 -msgid "Alert detail" -msgstr "DĆ©tail des alertes" - -#: ../../operation/menu.php:69 ../../operation/heatmap.php:92 -msgid "Heatmap view" -msgstr "Vue de carte de chaleur" - -#: ../../operation/menu.php:78 ../../include/functions_ui.php:870 -#: ../../enterprise/tools/ipam/ipam_supernet_network.php:58 -#: ../../enterprise/tools/ipam/ipam_supernet_network.php:83 -#: ../../enterprise/tools/ipam/ipam_vlan_network.php:63 -#: ../../enterprise/tools/ipam/ipam_calculator.php:185 -#: ../../enterprise/tools/ipam/ipam_list.php:570 -#: ../../enterprise/tools/ipam/ipam_editor.php:122 -#: ../../enterprise/include/ajax/ipam.ajax.php:614 -#: ../../enterprise/include/ajax/ipam.ajax.php:644 -#: ../../enterprise/include/functions_ipam.php:1980 -#: ../../godmode/wizards/HostDevices.class.php:916 -#: ../../godmode/wizards/DiscoveryTaskList.class.php:597 -msgid "Network" -msgstr "RĆ©seau" - -#: ../../operation/menu.php:92 ../../operation/netflow/netflow_explorer.php:37 -msgid "Netflow explorer" -msgstr "Explorateur Netflow" - -#: ../../operation/menu.php:96 -msgid "Netflow Live View" -msgstr "Netflow en temps rĆ©el" - -#: ../../operation/menu.php:106 ../../operation/network/network_usage_map.php:29 -msgid "Network usage map" -msgstr "Carte dā€™utilisation du rĆ©seau" - -#: ../../operation/menu.php:125 ../../include/functions_menu.php:531 -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:461 -msgid "SNMP console" -msgstr "Console SNMP" - -#: ../../operation/menu.php:126 -msgid "SNMP browser" -msgstr "Navigateur SNMP" - -#: ../../operation/menu.php:131 -#: ../../operation/snmpconsole/snmp_mib_uploader.php:47 -msgid "MIB uploader" -msgstr "TĆ©lĆ©verseur MIB" - -#: ../../operation/menu.php:135 -msgid "SNMP filters" -msgstr "Filtres SNMP" - -#: ../../operation/menu.php:136 ../../include/functions_menu.php:530 -msgid "SNMP trap generator" -msgstr "GĆ©nĆ©rateur de dĆ©routements SNMP" - -#: ../../operation/menu.php:141 -#: ../../operation/snmpconsole/snmp_statistics.php:102 -#: ../../operation/snmpconsole/snmp_view.php:697 -#: ../../operation/snmpconsole/snmp_view.php:806 -msgid "SNMP" -msgstr "SNMP" - -#: ../../operation/menu.php:165 -#: ../../include/lib/Dashboard/Widgets/network_map.php:172 -#: ../../include/lib/Dashboard/Widgets/network_map.php:478 -msgid "Network map" -msgstr "Carte de rĆ©seau" - -#: ../../operation/menu.php:239 ../../operation/menu.php:241 -#: ../../operation/snmpconsole/snmp_view.php:1061 -#: ../../operation/snmpconsole/snmp_view.php:1062 -#: ../../operation/events/events.build_table.php:843 -#: ../../operation/events/events.php:2022 ../../operation/events/events.php:2188 -#: ../../include/functions_events.php:7283 -#: ../../enterprise/operation/agentes/wux_console_view.php:595 -msgid "Show more" -msgstr "Afficher plus" - -#: ../../operation/menu.php:265 -msgid "List of Gis maps" -msgstr "Liste de cartes GIS" - -#: ../../operation/menu.php:339 ../../operation/users/user_edit.php:363 -#: ../../include/class/OrderInterpreter.class.php:219 #: ../../enterprise/extensions/vmware/vmware_view.php:1316 #: ../../enterprise/extensions/vmware/vmware_view.php:1353 +#: ../../godmode/users/configure_user.php:1100 #: ../../mobile/include/functions_web.php:22 -#: ../../godmode/users/configure_user.php:1119 +#: ../../include/class/OrderInterpreter.class.php:219 +#: ../../operation/users/user_edit.php:363 ../../operation/menu.php:339 msgid "Dashboard" msgstr "Panneau de configuration" -#: ../../operation/menu.php:373 ../../operation/events/events.php:939 -#: ../../operation/events/events.php:952 ../../include/functions_reports.php:864 -#: ../../include/functions_reports.php:868 -#: ../../include/functions_reports.php:872 ../../include/functions.php:4087 -#: ../../enterprise/tools/ipam/ipam_massive.php:103 -#: ../../enterprise/tools/ipam/ipam_network.php:399 -#: ../../enterprise/include/class/CommandCenter.class.php:1071 -#: ../../enterprise/meta/general/main_menu.php:257 -#: ../../enterprise/meta/general/logon_ok.php:57 -#: ../../enterprise/meta/general/main_header.php:154 -#: ../../enterprise/meta/monitoring/tactical.php:272 -#: ../../mobile/operation/home.php:51 ../../mobile/operation/events.php:609 -#: ../../mobile/include/functions_web.php:25 ../../godmode/menu.php:269 -msgid "Events" -msgstr "ƉvĆ©nements" +#: ../../enterprise/extensions/vmware/vmware_view.php:1327 +msgid "ESX Detail" +msgstr "DĆ©tail ESX" -#: ../../operation/menu.php:379 ../../enterprise/meta/event/custom_events.php:38 -#: ../../enterprise/godmode/reporting/graph_template_editor.php:255 -#: ../../godmode/users/configure_profile.php:298 -msgid "View events" -msgstr "Afficher les Ć©vĆ©nements" +#: ../../enterprise/extensions/vmware/vmware_view.php:1358 +msgid "ESX details" +msgstr "DĆ©tails ESX" -#: ../../operation/menu.php:416 -msgid "RSS" -msgstr "RSS" +#: ../../enterprise/extensions/vmware/vmware_view.php:1363 +msgid "VMware view options" +msgstr "Options dā€™affichage VMware" -#: ../../operation/menu.php:425 ../../operation/events/sound_events.php:64 -msgid "Sound Events" -msgstr "ƉvĆ©nements sonores" +#: ../../enterprise/extensions/vmware/vmware_view.php:1399 +msgid "VMWare" +msgstr "VMware" -#: ../../operation/menu.php:443 ../../operation/events/events.php:961 -msgid "Sound Alerts" -msgstr "Alertes sonores" - -#: ../../operation/menu.php:465 -msgid "Configure user notifications" -msgstr "Configurer les notifications utilisateur" - -#: ../../operation/menu.php:485 -msgid "Integria IMS statistics" -msgstr "Statistiques Integria IMS" - -#: ../../operation/menu.php:486 -msgid "Integria IMS ticket list" -msgstr "Liste des tickets Integria IMS" - -#: ../../operation/menu.php:499 -msgid "Messages List" -msgstr "Liste de messages" - -#: ../../operation/menu.php:500 -msgid "New message" -msgstr "Nouveau message" - -#: ../../operation/menu.php:515 ../../operation/agentes/exportdata.php:34 -msgid "Export data" -msgstr "Exporter les donnĆ©es" - -#: ../../operation/menu.php:521 -msgid "Scheduled downtime" -msgstr "Temps d'arrĆŖt planifiĆ©" - -#: ../../operation/menu.php:595 -msgid "Tools" -msgstr "Outils" - -#: ../../operation/search_maps.php:30 -#: ../../enterprise/godmode/services/services.elements.php:778 -msgid "Elements" -msgstr "ƉlĆ©ments" - -#: ../../operation/network/network_report.php:67 -#: ../../operation/network/network_usage_map.php:124 -msgid "Data to show" -msgstr "DonnĆ©es Ć  afficher" - -#: ../../operation/network/network_report.php:78 -#: ../../operation/network/network_usage_map.php:104 -msgid "Number of result to show" -msgstr "Nombre de rĆ©sultat Ć  afficher" - -#: ../../operation/network/network_report.php:102 -#: ../../operation/network/network_usage_map.php:75 -#: ../../operation/netflow/nf_live_view.php:271 -#: ../../enterprise/operation/log/log_viewer.php:552 -msgid "Start date" -msgstr "Date du dĆ©marrage" - -#: ../../operation/network/network_report.php:109 -#: ../../operation/network/network_usage_map.php:82 -msgid "Time Period" -msgstr "PĆ©riode de temps" - -#: ../../operation/network/network_report.php:121 -#: ../../operation/network/network_usage_map.php:94 -#: ../../operation/netflow/nf_live_view.php:292 -msgid "Select this checkbox to write interval instead a date." -msgstr "Cochez cette case pour Ć©crire un intervalle Ć  la place d'une date." - -#: ../../operation/network/network_report.php:126 -#: ../../operation/network/network_usage_map.php:99 -#: ../../operation/netflow/nf_live_view.php:295 -#: ../../operation/agentes/exportdata.php:347 -#: ../../enterprise/operation/log/log_viewer.php:579 -msgid "End date" -msgstr "Date de fin" - -#: ../../operation/network/network_report.php:140 -#: ../../operation/incidents/list_integriaims_incidents.php:428 -#: ../../include/class/ModuleTemplates.class.php:934 -#: ../../include/graphs/functions_flot.php:377 -#: ../../enterprise/operation/log/log_viewer.php:805 -#: ../../enterprise/operation/reporting/custom_reporting.php:80 -#: ../../enterprise/include/functions_ipam.php:339 -#: ../../enterprise/meta/monitoring/custom_fields_view.php:319 -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:597 -#: ../../godmode/modules/manage_network_templates.php:288 -#: ../../godmode/agentes/planned_downtime.list.php:860 -msgid "Export to CSV" -msgstr "Exporter un fichier en CSV" - -#: ../../operation/network/network_report.php:184 -#: ../../include/functions_visual_map_editor.php:1460 -#: ../../include/ajax/heatmap.ajax.php:319 -#: ../../include/class/AuditLog.class.php:194 -#: ../../include/functions_reporting_html.php:3063 -#: ../../include/functions_reporting_html.php:3389 -#: ../../enterprise/include/functions_reporting_csv.php:1933 -#: ../../enterprise/include/class/Aws.cloud.php:546 -#: ../../enterprise/include/class/Aws.S3.php:564 -#: ../../enterprise/include/class/VMware.app.php:621 -#: ../../enterprise/include/class/Azure.cloud.php:803 -#: ../../enterprise/include/class/DeploymentCenter.class.php:755 -#: ../../enterprise/include/class/DeploymentCenter.class.php:805 -#: ../../enterprise/include/class/DeploymentCenter.class.php:1280 -#: ../../enterprise/include/class/DeploymentCenter.class.php:1397 -#: ../../enterprise/include/functions_reporting.php:2315 -#: ../../enterprise/include/functions_ipam.php:1646 -#: ../../enterprise/include/functions_ipam.php:1647 -#: ../../enterprise/meta/monitoring/custom_fields_csv.php:100 -#: ../../enterprise/godmode/servers/HA_cluster.php:161 -#: ../../extensions/users_connected.php:144 ../../extensions/api_checker.php:123 -#: ../../godmode/reporting/visual_console_builder.elements.php:790 -#: ../../godmode/reporting/reporting_builder.item_editor.php:70 -msgid "IP" -msgstr "Adresse IP" - -#: ../../operation/network/network_report.php:186 -#: ../../operation/network/network_report.php:233 -msgid "Flows" -msgstr "Flux" - -#: ../../operation/network/network_report.php:197 -#: ../../operation/network/network_report.php:235 -msgid "Packets" -msgstr "Paquets" - -#: ../../operation/network/network_report.php:206 -#: ../../operation/network/network_report.php:236 -#: ../../include/functions_config.php:1001 -#: ../../include/functions_config.php:3101 -#: ../../include/functions_netflow.php:349 -#: ../../enterprise/include/functions_reporting_csv.php:2808 -msgid "Bytes" -msgstr "Octets" - -#: ../../operation/network/network_report.php:256 -#, php-format -msgid "Filtered by port %s. Click here to remove the filter." -msgstr "FiltrĆ© par port %s. Cliquez ici pour supprimer le filtre." - -#: ../../operation/network/network_report.php:256 -#, php-format -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_report.php:324 -#: ../../include/functions_netflow.php:2078 -#: ../../include/functions_visual_map.php:2866 -#: ../../godmode/setup/performance.php:703 -msgid "Others" -msgstr "Autres" - -#: ../../operation/network/network_usage_map.php:139 -msgid "Show netflow map" -msgstr "Afficher la carte netflow" - -#: ../../operation/network/network_usage_map.php:175 -msgid "No data retrieved" -msgstr "Aucune donnĆ©e rĆ©cupĆ©rĆ©e" - -#: ../../operation/snmpconsole/snmp_mib_uploader.php:60 -#: ../../operation/snmpconsole/snmp_browser.php:90 -#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:57 -#: ../../godmode/snmpconsole/snmp_filters.php:59 -#: ../../godmode/snmpconsole/snmp_trap_generator.php:51 -msgid "SMNP" -msgstr "SMNP" - -#: ../../operation/snmpconsole/snmp_mib_uploader.php:86 -msgid "" -"MIB files will be installed on the system. Please note that a MIB may depend " -"on other MIB. To customize trap definitions use the SNMP trap editor." +#: ../../enterprise/extensions/vmware/vmware_view.php:1504 +msgid "Some ESX Hosts are not up to date, please check VMware plugin configuration." msgstr "" -"Les fichiers MIB seront installĆ©s sur le systĆØme. Veuillez noter qu'un MIB " -"peut dĆ©pendre d'un autre MIB. Pour personnaliser les dĆ©finitions de " -"dĆ©routement, utilisez l'Ć©diteur de trap SNMP." +"Certains hĆ“tes ESX ne sont pas Ć  jour, veuillez vĆ©rifier la configuration du plug-" +"in VMware." -#: ../../operation/snmpconsole/snmp_browser.php:56 -#: ../../operation/snmpconsole/snmp_statistics.php:45 -#: ../../operation/snmpconsole/snmp_view.php:118 -#: ../../operation/agentes/networkmap.dinamic.php:102 -#: ../../operation/agentes/pandora_networkmap.view.php:2266 -msgid "Normal screen" -msgstr "Ɖcran normal" +#: ../../enterprise/extensions/vmware/vmware_view.php:1506 +msgid "VMware plugin is working." +msgstr "Le plugin VMware fonctionne." -#: ../../operation/snmpconsole/snmp_browser.php:77 -msgid "SNMP Browser" -msgstr "Explorateur SNMP" +#: ../../enterprise/extensions/vmware/vmware_view.php:1515 +msgid "View VMware map" +msgstr "Afficher la carte VMware" -#: ../../operation/snmpconsole/snmp_browser.php:155 -#: ../../operation/snmpconsole/snmp_browser.php:175 -#: ../../godmode/modules/manage_network_templates_form.php:260 -msgid "Add modules" -msgstr "Ajouter des modules" +#: ../../enterprise/extensions/vmware/vmware_view.php:1516 +msgid "View VMware dashboard" +msgstr "Afficher le tableau de bord VMware" -#: ../../operation/snmpconsole/snmp_browser.php:218 -msgid "Adding modules in progress" -msgstr "Ajout de modules en cours" +#: ../../enterprise/extensions/vmware/vmware_view.php:1517 +msgid "View ESX Host statistics from" +msgstr "Afficher les statistiques de lā€™hĆ“te ESX Ć  partir de" -#: ../../operation/snmpconsole/snmp_browser.php:225 -#: ../../godmode/reporting/visual_console_builder.editor.php:167 -#: ../../godmode/reporting/visual_console_builder.editor.php:169 -#: ../../godmode/reporting/visual_console_builder.editor.php:171 -msgid "Action in progress" -msgstr "Action en cours" +#: ../../enterprise/extensions/vmware/vmware_view.php:1524 +msgid "There are no VMware information detected in this environment." +msgstr "Aucune information VMware nā€™est dĆ©tectĆ©e dans cet environnement." -#: ../../operation/snmpconsole/snmp_browser.php:541 -#: ../../include/functions_snmp_browser.php:1534 -msgid "Create new policy" -msgstr "CrĆ©er une nouvelle politique" +#: ../../enterprise/extensions/vmware/vmware_view.php:1525 +msgid "You can configure several tasks using Discovery Applications at " +msgstr "" +"Vous pouvez configurer plusieurs tĆ¢ches Ć  lā€™aide des applications de dĆ©couverte Ć  " +"lā€™adresse " -#: ../../operation/snmpconsole/snmp_browser.php:552 -msgid "Create policy" -msgstr "CrĆ©er une politique" +#: ../../enterprise/extensions/vmware/vmware_view.php:1737 +#: ../../enterprise/include/class/DeploymentCenter.class.php:482 +#: ../../enterprise/include/class/DeploymentCenter.class.php:490 +#: ../../enterprise/include/class/DeploymentCenter.class.php:498 +#: ../../enterprise/include/class/DeploymentCenter.class.php:657 +#: ../../enterprise/include/class/SAP.app.php:371 +msgid "here" +msgstr "ici" -#: ../../operation/snmpconsole/snmp_browser.php:639 -#: ../../enterprise/meta/monitoring/wizard/wizard.module.web.php:113 -#: ../../enterprise/meta/monitoring/wizard/wizard.module.local.php:122 -#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:330 -#: ../../enterprise/meta/monitoring/wizard/wizard.create_module.php:42 -#: ../../enterprise/meta/monitoring/wizard/wizard.create_module.php:119 -#: ../../enterprise/meta/monitoring/wizard/wizard.create_agent.php:40 -#: ../../enterprise/meta/monitoring/wizard/wizard.module.network.php:135 -msgid "Create module" -msgstr "CrĆ©er un module" - -#: ../../operation/snmpconsole/snmp_browser.php:644 -msgid "Are you sure you want add module?" -msgstr "Ɗtes-vous sĆ»r de vouloir ajouter un moduleĀ ?" - -#: ../../operation/snmpconsole/snmp_browser.php:645 -#: ../../operation/agentes/pandora_networkmap.editor.php:602 -#: ../../include/class/ModuleTemplates.class.php:1381 -#: ../../include/class/HelpFeedBack.class.php:369 -#: ../../include/class/AgentWizard.class.php:6014 -#: ../../include/class/WelcomeWindow.class.php:173 -#: ../../include/class/ConfigPEN.class.php:668 -#: ../../include/class/ConfigPEN.class.php:692 -#: ../../include/class/CredentialStore.class.php:1241 -#: ../../include/lib/Dashboard/Widgets/maps_status.php:351 -#: ../../include/functions_db.php:1933 -#: ../../include/functions_reporting_html.php:659 -#: ../../include/functions_reporting_html.php:854 -#: ../../include/functions_reporting_html.php:3301 -#: ../../include/functions_reporting_html.php:4600 -#: ../../enterprise/operation/agentes/wux_console_view.php:424 -#: ../../enterprise/operation/agentes/ux_console_view.php:186 -#: ../../enterprise/operation/agentes/ux_console_view.php:384 -#: ../../enterprise/include/functions_reporting_csv.php:1539 -#: ../../enterprise/include/functions_reporting_csv.php:1585 -#: ../../enterprise/include/functions_reporting_csv.php:1903 -#: ../../enterprise/include/class/AgentRepository.class.php:898 -#: ../../enterprise/include/class/LogSource.class.php:844 -#: ../../enterprise/include/class/ManageBackups.class.php:292 -#: ../../enterprise/include/class/ManageBackups.class.php:445 -#: ../../enterprise/include/class/DeploymentCenter.class.php:1668 -#: ../../enterprise/include/class/DeploymentCenter.class.php:1720 -#: ../../enterprise/include/class/DatabaseHA.class.php:390 -#: ../../enterprise/include/class/DatabaseHA.class.php:625 -#: ../../enterprise/include/class/DatabaseHA.class.php:727 -#: ../../enterprise/include/functions_services.php:2080 -#: ../../enterprise/include/functions_reporting.php:1882 -#: ../../enterprise/include/functions_reporting.php:2929 -#: ../../enterprise/include/functions_reporting.php:3185 -#: ../../enterprise/include/functions_reporting.php:3917 -#: ../../enterprise/include/functions_reporting.php:4186 -#: ../../enterprise/include/functions_reporting.php:4832 -#: ../../enterprise/include/functions_reporting.php:6155 -#: ../../enterprise/include/functions_reporting.php:6193 -#: ../../enterprise/include/functions_ux_console.php:473 -#: ../../enterprise/godmode/services/services.service.php:995 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2557 -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:436 -#: ../../extensions/module_groups.php:53 -#: ../../godmode/setup/setup_general.php:778 -#: ../../godmode/setup/setup_general.php:796 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2556 -#: ../../godmode/massive/massive_operations.php:392 -msgid "OK" -msgstr "OK" - -#: ../../operation/snmpconsole/snmp_statistics.php:78 -#: ../../operation/snmpconsole/snmp_view.php:99 -#: ../../operation/incidents/incident_statistics.php:21 -#: ../../enterprise/include/functions_ipam.php:1557 -msgid "Statistics" -msgstr "Statistiques" - -#: ../../operation/snmpconsole/snmp_statistics.php:85 -msgid "SNMP Statistics" -msgstr "Statistiques SNMP" - -#: ../../operation/snmpconsole/snmp_statistics.php:156 -#: ../../operation/snmpconsole/snmp_view.php:720 -msgid "There are no SNMP traps in database" -msgstr "Aucun dĆ©routement SNMP dans la base de donnĆ©es" - -#: ../../operation/snmpconsole/snmp_statistics.php:169 -msgid "Traps received by source" -msgstr "DĆ©routements reƧus par la source" - -#: ../../operation/snmpconsole/snmp_statistics.php:169 -#: ../../operation/snmpconsole/snmp_statistics.php:237 -#: ../../include/functions_reporting.php:1534 -#: ../../enterprise/include/functions_reporting_csv.php:932 +#: ../../enterprise/extensions/vmware/vmware_view.php:1734 #, php-format -msgid "Top %d" -msgstr "Top %d" +msgid "" +"This map is a quick representation of all your VMware entities detected. You can " +"create a custom VMware map by defining a network map based on your VMware " +"discovery task %s" +msgstr "" +"Cette carte est une reprĆ©sentation rapide de toutes vos entitĆ©s VMware dĆ©tectĆ©es. " +"Vous pouvez crĆ©er une carte VMware personnalisĆ©e en dĆ©finissant une carte rĆ©seau " +"en fonction de votre tĆ¢che de dĆ©couverte VMware %s" -#: ../../operation/snmpconsole/snmp_statistics.php:183 -#: ../../operation/snmpconsole/snmp_statistics.php:251 -msgid "Number" -msgstr "Nombre" +#: ../../enterprise/extensions/vmware/vmware_view.php:1744 +msgid "Show Datastores" +msgstr "Afficher les datastores" -#: ../../operation/snmpconsole/snmp_statistics.php:193 -#: ../../operation/snmpconsole/snmp_view.php:956 -#: ../../operation/agentes/estado_agente.php:968 -#: ../../operation/agentes/estado_agente.php:978 -#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:232 -#: ../../enterprise/meta/monitoring/wizard/wizard.agent.php:76 -#: ../../godmode/agentes/configurar_agente.php:842 -#: ../../godmode/agentes/modificar_agente.php:952 -msgid "Create agent" -msgstr "CrĆ©er un agent" +#: ../../enterprise/extensions/vmware/vmware_view.php:1747 +msgid "Show ESX" +msgstr "Afficher ESX" -#: ../../operation/snmpconsole/snmp_statistics.php:197 -#: ../../operation/snmpconsole/snmp_view.php:962 -msgid "View agent details" -msgstr "Voir les dĆ©tails de l'agent" +#: ../../enterprise/extensions/vmware/vmware_view.php:1750 +msgid "Show VM" +msgstr "Afficher VM" -#: ../../operation/snmpconsole/snmp_statistics.php:237 -msgid "Traps received by Enterprise String" -msgstr "DĆ©routements reƧus par la chaĆ®ne d'Enterprise" +#: ../../enterprise/extensions/vmware/vmware_view.php:1754 +#: ../../godmode/reporting/visual_console_builder.wizard.php:215 +msgid "Font" +msgstr "Police" -#: ../../operation/snmpconsole/snmp_statistics.php:250 -msgid "Trap Enterprise String" -msgstr "DĆ©routement Enterprise de chaĆ®ne" +#: ../../enterprise/extensions/vmware/vmware_view.php:1758 +#: ../../enterprise/godmode/agentes/pandora_networkmap_empty.editor.php:152 +#: ../../godmode/agentes/pandora_networkmap_empty.editor.php:154 +#: ../../operation/agentes/pandora_networkmap.editor.php:311 +#: ../../operation/agentes/pandora_networkmap.view.php:106 +msgid "Node radius" +msgstr "Rayon des nœuds" -#: ../../operation/snmpconsole/snmp_view.php:174 -#: ../../include/class/CalendarManager.class.php:487 -#: ../../include/class/CalendarManager.class.php:840 -#: ../../include/functions_alerts.php:2747 -#: ../../include/functions_planned_downtimes.php:124 -#: ../../enterprise/tools/ipam/ipam_network_location_config.php:71 -#: ../../enterprise/tools/ipam/ipam_massive.php:47 -#: ../../enterprise/tools/ipam/ipam_action.php:255 -#: ../../enterprise/operation/agentes/transactional_map.php:166 -#: ../../enterprise/include/class/NetworkConfigManager.class.php:1784 -#: ../../enterprise/include/class/NetworkConfigManager.class.php:1874 -#: ../../enterprise/include/class/NetworkConfigManager.class.php:1969 -#: ../../enterprise/include/class/NetworkConfigManager.class.php:2063 -#: ../../enterprise/include/class/NetworkConfigManager.class.php:2688 -#: ../../enterprise/meta/advanced/links.php:70 -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:329 -#: ../../enterprise/godmode/reporting/reporting_builder.template_advanced.php:69 -#: ../../enterprise/godmode/reporting/reporting_builder.template_editor.php:82 -#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:398 -#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:122 -#: ../../enterprise/godmode/agentes/agent_disk_conf_editor.php:111 -#: ../../enterprise/godmode/alerts/alert_inventory_builder.php:132 -#: ../../enterprise/godmode/policies/policy_modules.php:1249 -#: ../../godmode/setup/news.php:107 ../../godmode/setup/gis.php:39 -#: ../../godmode/setup/links.php:63 -#: ../../godmode/modules/manage_nc_groups.php:118 -#: ../../godmode/snmpconsole/snmp_alert.php:444 -#: ../../godmode/snmpconsole/snmp_filters.php:110 -#: ../../godmode/events/event_edit_filter.php:215 -#: ../../godmode/netflow/nf_edit_form.php:139 -#: ../../godmode/massive/massive_edit_modules.php:184 -#: ../../godmode/agentes/status_monitor_custom_fields.php:57 -#: ../../godmode/agentes/configurar_agente.php:1173 -#: ../../godmode/agentes/planned_downtime.editor.php:418 -#: ../../godmode/alerts/configure_alert_template.php:554 -#: ../../godmode/alerts/alert_templates.php:156 -#: ../../godmode/alerts/alert_list.php:94 ../../godmode/alerts/alert_list.php:312 -#: ../../godmode/alerts/configure_alert_command.php:144 -#: ../../godmode/users/profile_list.php:252 -msgid "Successfully updated" -msgstr "Mis Ć  jour correctement" +#: ../../enterprise/extensions/vmware/vmware_view.php:1762 +#: ../../operation/agentes/pandora_networkmap.editor.php:425 +#: ../../operation/agentes/pandora_networkmap.view.php:247 +msgid "Node separation" +msgstr "SĆ©paration de nœuds" -#: ../../operation/snmpconsole/snmp_view.php:175 -#: ../../operation/agentes/pandora_networkmap.php:216 -#: ../../operation/agentes/pandora_networkmap.php:508 +#: ../../enterprise/extensions/vmware/vmware_view.php:1772 +msgid "View options" +msgstr "Afficher les options" + +#: ../../enterprise/extensions/vmware/vmware_manager.php:227 +msgid "Power Status: " +msgstr "Ɖtat : " + +#: ../../enterprise/extensions/vmware/vmware_manager.php:269 +#: ../../operation/agentes/pandora_networkmap.view.php:1805 +msgid "Status: " +msgstr "ƉtatĀ : " + +#: ../../enterprise/extensions/vmware/vmware_manager.php:273 +msgid "Change Status" +msgstr "Changer l'Ć©tat" + +#: ../../enterprise/extensions/resource_exportation/functions.php:20 +msgid "Export agents" +msgstr "Exporter des agents" + +#: ../../enterprise/extensions/resource_exportation/functions.php:21 +#: ../../enterprise/include/functions_reporting.php:8136 +#: ../../extensions/resource_exportation.php:435 +#: ../../extensions/resource_exportation.php:438 +#: ../../operation/agentes/exportdata.php:389 +msgid "Export" +msgstr "Exporter" + +#: ../../enterprise/extensions/csv_import_group.php:50 +#, php-format +msgid "" +"This node is configured with centralized mode. All group information is read " +"only. Go to %s to import the CSV." +msgstr "" +"Ce nœud est configurĆ© en mode centralisĆ©. Toutes les informations de groupe sont " +"en lecture seule. AccĆ©dez Ć  %s pour importer le fichier CSV." + +#: ../../enterprise/extensions/csv_import_group.php:83 +msgid "CSV group import" +msgstr "Importation de groupe CSV" + +#: ../../enterprise/load_html_extra.php:202 +msgid "Activate license" +msgstr "Activer la licence" + +#: ../../enterprise/load_html_extra.php:203 +msgid "Your request key is:" +msgstr "La clĆ© de votre demande est :" + +#: ../../enterprise/load_html_extra.php:206 +#, php-format +msgid "" +"You can activate it manually here or " +"automatically filling the form below:" +msgstr "" +"Vous pouvez l'activer manuellement ici ou " +"automatiquement en remplissant le formulaire ci-dessous :" + +#: ../../enterprise/load_html_extra.php:213 +msgid "Auth Key:" +msgstr "ClĆ© d'authentification :" + +#: ../../enterprise/load_html_extra.php:221 ../../enterprise/load_html_extra.php:240 +msgid "Online validation" +msgstr "Validation en ligne" + +#: ../../enterprise/load_html_extra.php:233 +msgid "ERROR:" +msgstr "ERREURĀ :" + +#: ../../enterprise/load_html_extra.php:233 +msgid "When connecting to licence server." +msgstr "Lors de la connexion au serveur de licences." + +#: ../../enterprise/godmode/modules/configure_local_component.php:141 +msgid "Update Local Component" +msgstr "Mettre Ć  jour le composant local" + +#: ../../enterprise/godmode/modules/configure_local_component.php:143 +msgid "Create Local Component" +msgstr "CrĆ©er un composant local" + +#: ../../enterprise/godmode/modules/configure_local_component.php:162 +#: ../../godmode/modules/manage_network_components_form_common.php:50 +#: ../../godmode/alerts/configure_alert_template.php:1134 +msgid "Wizard level" +msgstr "Niveau d'assistant logiciel" + +#: ../../enterprise/godmode/modules/configure_local_component.php:192 +msgid "Throw unknown events" +msgstr "GĆ©nĆ©rer des Ć©vĆ©nements inconnus" + +#: ../../enterprise/godmode/modules/configure_local_component.php:292 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:489 +#: ../../godmode/modules/manage_network_components_form_common.php:146 +#: ../../godmode/massive/massive_edit_modules.php:552 +msgid "Dynamic Interval" +msgstr "Intervalle dynamique" + +#: ../../enterprise/godmode/modules/configure_local_component.php:298 +#: ../../godmode/modules/manage_network_components_form_common.php:152 +#: ../../godmode/agentes/module_manager_editor_common.php:691 +msgid "Advanced options Dynamic Threshold" +msgstr "Options avancĆ©es du Seuil dynamique" + +#: ../../enterprise/godmode/modules/configure_local_component.php:303 +#: ../../godmode/modules/manage_network_components_form_common.php:157 +msgid "Dynamic Min. " +msgstr "Dynamique min. " + +#: ../../enterprise/godmode/modules/configure_local_component.php:305 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:493 +#: ../../godmode/modules/manage_network_components_form_common.php:159 +#: ../../godmode/massive/massive_edit_modules.php:556 +msgid "Dynamic Max." +msgstr "Intervalle dynamique max." + +#: ../../enterprise/godmode/modules/configure_local_component.php:307 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:495 +#: ../../godmode/modules/manage_network_components_form_common.php:161 +#: ../../godmode/massive/massive_edit_modules.php:558 +msgid "Dynamic Two Tailed: " +msgstr "Suivi de l'intervalle dynamique deux : " + +#: ../../enterprise/godmode/modules/configure_local_component.php:310 +#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:289 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:498 +#: ../../godmode/modules/manage_network_components_form_common.php:164 +#: ../../godmode/massive/massive_edit_modules.php:561 +#: ../../include/functions_treeview.php:96 ../../include/functions_alerts.php:679 +msgid "Warning status" +msgstr "Ɖtat d'alerte" + +#: ../../enterprise/godmode/modules/configure_local_component.php:311 +#: ../../enterprise/godmode/modules/configure_local_component.php:354 +#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:293 +#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:342 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:502 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:593 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:828 +#: ../../godmode/modules/manage_network_components_form_common.php:165 +#: ../../godmode/modules/manage_network_components_form_common.php:206 +#: ../../godmode/modules/manage_network_components_form_wizard.php:387 +#: ../../godmode/modules/manage_network_components_form_wizard.php:415 +#: ../../godmode/massive/massive_edit_modules.php:565 +#: ../../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:5287 +#: ../../include/functions_treeview.php:92 ../../include/functions_treeview.php:104 +#: ../../include/functions_alerts.php:676 +#: ../../include/lib/Dashboard/Widgets/top_n.php:282 +msgid "Min." +msgstr "Min." + +#: ../../enterprise/godmode/modules/configure_local_component.php:320 +#: ../../enterprise/godmode/modules/configure_local_component.php:363 +#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:308 +#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:357 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:517 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:608 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:830 +#: ../../godmode/modules/manage_network_components_form_common.php:174 +#: ../../godmode/modules/manage_network_components_form_common.php:215 +#: ../../godmode/modules/manage_network_components_form_wizard.php:389 +#: ../../godmode/modules/manage_network_components_form_wizard.php:424 +#: ../../godmode/agentes/module_manager_editor_common.php:428 +#: ../../godmode/agentes/module_manager_editor_common.php:489 +#: ../../godmode/massive/massive_edit_modules.php:580 +#: ../../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:5288 +#: ../../include/functions_treeview.php:92 ../../include/functions_treeview.php:104 +#: ../../include/functions_alerts.php:675 +#: ../../include/lib/Dashboard/Widgets/top_n.php:281 +msgid "Max." +msgstr "Max." + +#: ../../enterprise/godmode/modules/configure_local_component.php:329 +#: ../../enterprise/godmode/modules/configure_local_component.php:372 +#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:323 +#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:372 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:532 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:623 +#: ../../godmode/modules/manage_network_components_form_common.php:183 +#: ../../godmode/modules/manage_network_components_form_common.php:224 +#: ../../godmode/agentes/module_manager_editor_common.php:444 +#: ../../godmode/agentes/module_manager_editor_common.php:505 +#: ../../godmode/massive/massive_edit_modules.php:595 +#: ../../godmode/massive/massive_edit_modules.php:686 +#: ../../include/functions_treeview.php:90 ../../include/functions_treeview.php:102 +msgid "Str." +msgstr "ChaĆ®ne" + +#: ../../enterprise/godmode/modules/configure_local_component.php:343 +#: ../../enterprise/godmode/modules/configure_local_component.php:386 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:567 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:658 +#: ../../godmode/modules/manage_network_components_form_common.php:196 +#: ../../godmode/modules/manage_network_components_form_common.php:237 +#: ../../godmode/modules/manage_network_components_form_wizard.php:400 +#: ../../godmode/modules/manage_network_components_form_wizard.php:442 +#: ../../godmode/agentes/module_manager_editor_common.php:464 +#: ../../godmode/agentes/module_manager_editor_common.php:526 +#: ../../godmode/massive/massive_edit_modules.php:630 +#: ../../godmode/massive/massive_edit_modules.php:722 +msgid "Percentage" +msgstr "Pourcentage" + +#: ../../enterprise/godmode/modules/configure_local_component.php:353 +#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:338 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:589 +#: ../../godmode/modules/manage_network_components_form_common.php:205 +#: ../../godmode/massive/massive_edit_modules.php:652 +#: ../../include/functions_treeview.php:108 ../../include/functions_alerts.php:680 +msgid "Critical status" +msgstr "Ɖtat critique" + +#: ../../enterprise/godmode/modules/configure_local_component.php:391 +#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:232 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:873 +#: ../../godmode/modules/manage_network_components_form_common.php:243 +#: ../../godmode/agentes/module_manager_editor_common.php:780 +#: ../../godmode/massive/massive_edit_modules.php:930 +msgid "FF threshold" +msgstr "Seuil du FF" + +#: ../../enterprise/godmode/modules/configure_local_component.php:394 +#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:235 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:941 +#: ../../godmode/modules/manage_network_components_form_common.php:246 +#: ../../godmode/agentes/module_manager_editor_common.php:782 +#: ../../godmode/massive/massive_edit_modules.php:994 +msgid "Keep counters" +msgstr "Conserver les compteurs" + +#: ../../enterprise/godmode/modules/configure_local_component.php:402 +#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:252 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:885 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:900 +#: ../../godmode/modules/manage_network_components_form_common.php:260 +#: ../../godmode/agentes/module_manager_editor_common.php:799 +#: ../../godmode/massive/massive_edit_modules.php:938 +#: ../../godmode/massive/massive_edit_modules.php:953 +msgid "All state changing" +msgstr "Tous les changements d'Ć©tat" + +#: ../../enterprise/godmode/modules/configure_local_component.php:417 +#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:274 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:884 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:910 +#: ../../godmode/modules/manage_network_components_form_common.php:276 +#: ../../godmode/agentes/module_manager_editor_common.php:821 +#: ../../godmode/massive/massive_edit_modules.php:937 +#: ../../godmode/massive/massive_edit_modules.php:963 +msgid "Each state changing" +msgstr "Chaque changement d'Ć©tat" + +#: ../../enterprise/godmode/modules/configure_local_component.php:418 +#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:275 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:911 +#: ../../godmode/modules/manage_network_components_form_common.php:277 +#: ../../godmode/agentes/module_manager_editor_common.php:822 +#: ../../godmode/massive/massive_edit_modules.php:964 +msgid "To normal" +msgstr "ƀ l'Ć©tat normal" + +#: ../../enterprise/godmode/modules/configure_local_component.php:427 +#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:289 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:921 +#: ../../godmode/modules/manage_network_components_form_common.php:286 +#: ../../godmode/agentes/module_manager_editor_common.php:836 +#: ../../godmode/massive/massive_edit_modules.php:974 +msgid "To warning" +msgstr "ƀ l'Ć©tat d'alerte" + +#: ../../enterprise/godmode/modules/configure_local_component.php:436 +#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:303 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:931 +#: ../../godmode/modules/manage_network_components_form_common.php:295 +#: ../../godmode/agentes/module_manager_editor_common.php:850 +#: ../../godmode/massive/massive_edit_modules.php:984 +msgid "To critical" +msgstr "ƀ l'Ć©tat critique" + +#: ../../enterprise/godmode/modules/configure_local_component.php:447 +#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:318 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:966 +#: ../../enterprise/include/functions_reporting_csv.php:2175 +#: ../../godmode/modules/manage_network_components_form_common.php:305 +#: ../../godmode/agentes/module_manager_editor_common.php:532 +#: ../../godmode/massive/massive_edit_modules.php:1042 +#: ../../include/functions_reporting.php:4129 +msgid "Historical data" +msgstr "Historique des donnĆ©es" + +#: ../../enterprise/godmode/modules/configure_local_component.php:450 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:963 +#: ../../godmode/agentes/module_manager_editor_common.php:880 +#: ../../godmode/massive/massive_edit_modules.php:1028 +msgid "FF timeout" +msgstr "FF dĆ©lai" + +#: ../../enterprise/godmode/modules/configure_local_component.php:458 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:964 +#: ../../godmode/massive/massive_edit_modules.php:1038 +msgid "" +"Timeout in secs from start of flip flop counting. If this value is exceeded, FF " +"counter is reset. Set to 0 for no timeout." +msgstr "" +"DĆ©lai d'arrĆŖt en secondes Ć  partir du dĆ©but du comptage du flip-flop. Si cette " +"valeur est dĆ©passĆ©e, le compteur FF est remis Ć  zĆ©ro. Mettre Ć  0 pour aucun arrĆŖt." + +#: ../../enterprise/godmode/modules/configure_local_component.php:459 +msgid "This value can be set only in the async modules." +msgstr "Cette valeur peut ĆŖtre rĆ©glĆ©e que dans les modules asynchrones." + +#: ../../enterprise/godmode/modules/configure_local_component.php:461 +#: ../../enterprise/include/functions_reporting_csv.php:1201 +#: ../../godmode/modules/manage_network_components_form_common.php:308 +#: ../../godmode/agentes/module_manager_editor_common.php:664 +#: ../../include/rest-api/models/VisualConsole/Items/Percentile.php:480 +#: ../../include/functions_reporting.php:6615 +msgid "Min. Value" +msgstr "Valeur minimale" + +#: ../../enterprise/godmode/modules/configure_local_component.php:461 +#: ../../godmode/modules/manage_network_components_form_common.php:309 +msgid "Any value below this number is discarted" +msgstr "Toute valeur infĆ©rieure Ć  ce nombre est refusĆ©e" + +#: ../../enterprise/godmode/modules/configure_local_component.php:466 +#: ../../enterprise/include/functions_reporting_csv.php:1256 +#: ../../godmode/modules/manage_network_components_form_common.php:310 +#: ../../godmode/agentes/module_manager_editor_common.php:668 +#: ../../include/rest-api/models/VisualConsole/Items/Percentile.php:492 +#: ../../include/functions_reporting.php:6611 +msgid "Max. Value" +msgstr "Valeur maximale" + +#: ../../enterprise/godmode/modules/configure_local_component.php:466 +#: ../../godmode/modules/manage_network_components_form_common.php:311 +msgid "Any value over this number is discarted" +msgstr "Toute valeur supĆ©rieure Ć  ce nombre est refusĆ©e" + +#: ../../enterprise/godmode/modules/configure_local_component.php:473 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:716 +#: ../../godmode/modules/manage_network_components_form_plugin.php:49 +#: ../../godmode/modules/manage_network_components_form_network.php:178 +#: ../../godmode/modules/manage_network_components_form_wmi.php:55 +#: ../../godmode/agentes/module_manager_editor_common.php:649 +#: ../../godmode/massive/massive_edit_modules.php:780 +#: ../../godmode/setup/snmp_wizard.php:43 +msgid "Post process" +msgstr "AprĆØs le traitement" + +#: ../../enterprise/godmode/modules/configure_local_component.php:500 +#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:180 +msgid "Load a basic structure on data configuration" +msgstr "Charger une structure de base de donnĆ©es de configuration" + +#: ../../enterprise/godmode/modules/configure_local_component.php:503 +#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:183 +msgid "Check the correct structure of the data configuration" +msgstr "VĆ©rifier la structure correcte de la configuration des donnĆ©es" + +#: ../../enterprise/godmode/modules/configure_local_component.php:506 +#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:196 +msgid "First line must be \"module_begin\"" +msgstr "La premiĆØre ligne doit ĆŖtre Ā« module_begin Ā»." + +#: ../../enterprise/godmode/modules/configure_local_component.php:507 +#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:197 +msgid "Data configuration is empty" +msgstr "La configuration de donnĆ©es est vide." + +#: ../../enterprise/godmode/modules/configure_local_component.php:508 +#: ../../enterprise/godmode/modules/configure_local_component.php:512 +#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:198 +#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:202 +msgid "Last line must be \"module_end\"" +msgstr "La derniĆØre ligne doit ĆŖtre Ā« module_end Ā»." + +#: ../../enterprise/godmode/modules/configure_local_component.php:509 +#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:199 +msgid "" +"Name is missed. Please add a line with \"module_name yourmodulename\" to data " +"configuration" +msgstr "" +"Il manque le nom. Veuillez ajouter une ligne avec Ā« module_name yourmodulename Ā» " +"Ć  la configuration des donnĆ©es" + +#: ../../enterprise/godmode/modules/configure_local_component.php:510 +#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:200 +msgid "" +"Type is missed. Please add a line with \"module_type yourmoduletype\" to data " +"configuration" +msgstr "" +"Il manque le type. Veuillez ajouter une ligne avec Ā« module_type yourmoduletype Ā» " +"Ć  la configuration des donnĆ©es." + +#: ../../enterprise/godmode/modules/configure_local_component.php:511 +#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:201 +msgid "Type is wrong. Please set a correct type" +msgstr "Le type est incorrect. Veuillez choisir un type correct." + +#: ../../enterprise/godmode/modules/configure_local_component.php:514 +#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:204 +msgid "Error in the syntax, please check the data configuration." +msgstr "Erreur dans la syntaxe, veuillez vĆ©rifier la configuration de donnĆ©es." + +#: ../../enterprise/godmode/modules/configure_local_component.php:515 +#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:205 +msgid "Data configuration are built correctly" +msgstr "Configuration des donnĆ©es Ć©tablie correctement" + +#: ../../enterprise/godmode/modules/configure_local_component.php:523 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:1016 +#: ../../godmode/modules/manage_network_components_form_common.php:323 +#: ../../godmode/agentes/module_manager_editor_common.php:1093 +#: ../../godmode/massive/massive_edit_modules.php:1092 +msgid "Critical instructions" +msgstr "Instructions Ć©tat critique" + +#: ../../enterprise/godmode/modules/configure_local_component.php:523 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:1016 +#: ../../godmode/modules/manage_network_components_form_common.php:323 +#: ../../godmode/massive/massive_edit_modules.php:1092 +msgid "Instructions when the status is critical" +msgstr "Instructions lorsque l'Ć©tat est critique" + +#: ../../enterprise/godmode/modules/configure_local_component.php:528 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:1020 +#: ../../godmode/modules/manage_network_components_form_common.php:327 +#: ../../godmode/agentes/module_manager_editor_common.php:1098 +#: ../../godmode/massive/massive_edit_modules.php:1096 +msgid "Warning instructions" +msgstr "Instructions Ć©tat d'alerte" + +#: ../../enterprise/godmode/modules/configure_local_component.php:528 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:1020 +#: ../../godmode/modules/manage_network_components_form_common.php:327 +#: ../../godmode/massive/massive_edit_modules.php:1096 +msgid "Instructions when the status is warning" +msgstr "Instructions lorsque l'Ć©tat est en alerte" + +#: ../../enterprise/godmode/modules/configure_local_component.php:533 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:1024 +#: ../../godmode/modules/manage_network_components_form_common.php:331 +#: ../../godmode/agentes/module_manager_editor_common.php:1102 +#: ../../godmode/massive/massive_edit_modules.php:1100 +msgid "Unknown instructions" +msgstr "Instructions Ć©tat inconnu" + +#: ../../enterprise/godmode/modules/configure_local_component.php:533 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:1024 +#: ../../godmode/modules/manage_network_components_form_common.php:331 +#: ../../godmode/massive/massive_edit_modules.php:1100 +msgid "Instructions when the status is unknown" +msgstr "Instructions lorsque l'Ć©tat est inconnu" + +#: ../../enterprise/godmode/modules/configure_local_component.php:542 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:984 +#: ../../godmode/modules/manage_network_components_form_common.php:342 +#: ../../godmode/agentes/module_manager_editor_common.php:1143 +#: ../../godmode/massive/massive_edit_modules.php:1060 +#: ../../godmode/module_library/module_library_view.php:123 +msgid "Category" +msgstr "CatĆ©gorie" + +#: ../../enterprise/godmode/modules/configure_local_component.php:561 +#: ../../godmode/modules/manage_network_components_form_common.php:362 +#: ../../godmode/agentes/module_manager_editor_common.php:906 +msgid "Tags available" +msgstr "Ɖtiquettes disponibles" + +#: ../../enterprise/godmode/modules/configure_local_component.php:579 +#: ../../godmode/modules/manage_network_components_form_common.php:380 +#: ../../godmode/agentes/module_manager_editor_common.php:1001 +msgid "Add tags to module" +msgstr "Ajouter des Ć©tiquettes au module" + +#: ../../enterprise/godmode/modules/configure_local_component.php:580 +#: ../../godmode/modules/manage_network_components_form_common.php:381 +#: ../../godmode/agentes/module_manager_editor_common.php:1010 +msgid "Delete tags to module" +msgstr "Supprimer les Ć©tiquettes du module" + +#: ../../enterprise/godmode/modules/configure_local_component.php:581 +#: ../../enterprise/godmode/setup/setup_auth.php:174 +#: ../../enterprise/godmode/setup/setup_auth.php:458 +#: ../../enterprise/godmode/setup/setup_auth.php:1253 +#: ../../godmode/modules/manage_network_components_form_common.php:382 +#: ../../godmode/agentes/module_manager_editor_common.php:1014 +msgid "Tags selected" +msgstr "Ɖtiquettes sĆ©lectionnĆ©es" + +#: ../../enterprise/godmode/modules/configure_local_component.php:603 +msgid "Macros" +msgstr "Macros" + +#: ../../enterprise/godmode/modules/configure_local_component.php:639 +#: ../../godmode/servers/plugin.php:492 +#: ../../include/class/ManageNetScanScripts.class.php:636 +msgid "Default value" +msgstr "Valeur par dĆ©faut" + +#: ../../enterprise/godmode/modules/configure_local_component.php:655 +#: ../../godmode/servers/plugin.php:554 +#: ../../include/class/ManageNetScanScripts.class.php:724 +msgid "Add macro" +msgstr "Ajouter une macro" + +#: ../../enterprise/godmode/modules/configure_local_component.php:663 +#: ../../godmode/servers/plugin.php:568 +#: ../../include/class/ManageNetScanScripts.class.php:742 +msgid "Delete macro" +msgstr "Effacer une macro" + +#: ../../enterprise/godmode/modules/configure_local_component.php:978 +#: ../../godmode/modules/manage_network_components_form_common.php:706 +#: ../../godmode/agentes/module_manager_editor_common.php:1994 +msgid "Normal Status" +msgstr "Ɖtat normal" + +#: ../../enterprise/godmode/modules/configure_local_component.php:979 +#: ../../godmode/modules/manage_network_components_form_common.php:707 +#: ../../godmode/agentes/module_manager_editor_common.php:1995 +msgid "Warning Status" +msgstr "Ɖtat d'alerte" + +#: ../../enterprise/godmode/modules/configure_local_component.php:980 +#: ../../godmode/modules/manage_network_components_form_common.php:708 +#: ../../godmode/agentes/module_manager_editor_common.php:1996 +msgid "Critical Status" +msgstr "Ɖtat critique" + +#: ../../enterprise/godmode/modules/configure_local_component.php:983 +#: ../../godmode/modules/manage_network_components_form_common.php:710 +#: ../../godmode/agentes/module_manager_editor_common.php:1998 +msgid "Please introduce a maximum warning higher than the minimun warning" +msgstr "Veuillez introduire une alerte maximale supĆ©rieure Ć  l'alerte minimale" + +#: ../../enterprise/godmode/modules/configure_local_component.php:985 +#: ../../godmode/modules/manage_network_components_form_common.php:711 +#: ../../godmode/agentes/module_manager_editor_common.php:1999 +msgid "Please introduce a maximum critical higher than the minimun critical" +msgstr "" +"Veuillez introduire un Ć©tat critique maximal supĆ©rieur Ć  l'Ć©tat critique minimal" + +#: ../../enterprise/godmode/modules/configure_local_component.php:987 +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:458 +#: ../../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:117 +msgid "Successfully created inventory module" +msgstr "Module d'inventaire crĆ©Ć© correctement" + +#: ../../enterprise/godmode/modules/manage_inventory_modules.php:118 +msgid "Error creating inventory module" +msgstr "Erreur de crĆ©ation du module d'inventaire" + +#: ../../enterprise/godmode/modules/manage_inventory_modules.php:143 +#: ../../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:144 +#: ../../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:162 +#: ../../enterprise/godmode/modules/manage_inventory_modules.php:183 +#: ../../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:163 +#: ../../enterprise/godmode/modules/manage_inventory_modules.php:184 +#: ../../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:217 +#: ../../enterprise/godmode/modules/manage_inventory_modules.php:250 +#: ../../enterprise/godmode/modules/local_components.php:443 +#: ../../godmode/modules/manage_nc_groups.php:194 +#: ../../godmode/modules/manage_network_components.php:578 +#: ../../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:218 +#: ../../enterprise/godmode/modules/manage_inventory_modules.php:251 +#: ../../enterprise/godmode/modules/local_components.php:444 +#: ../../godmode/modules/manage_nc_groups.php:195 +#: ../../godmode/modules/manage_network_components.php:579 +#: ../../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:275 +#: ../../enterprise/godmode/modules/manage_inventory_modules_form.php:114 +msgid "Interpreter" +msgstr "InterprĆØte" + +#: ../../enterprise/godmode/modules/manage_inventory_modules.php:284 +msgid "No inventory modules defined" +msgstr "Aucun module d'inventaire dĆ©fini" + +#: ../../enterprise/godmode/modules/manage_inventory_modules.php:305 +msgid "Local module" +msgstr "Module local" + +#: ../../enterprise/godmode/modules/manage_inventory_modules.php:307 +msgid "Remote/Local" +msgstr "ƀ distance/Local" + +#: ../../enterprise/godmode/modules/manage_inventory_modules.php:353 +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:355 +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:196 +#: ../../godmode/alerts/configure_alert_template.php:191 +#, php-format +msgid "Successfully created from %s" +msgstr "CrĆ©Ć© correctement Ć  partir de %s" + +#: ../../enterprise/godmode/modules/local_components.php:142 +#: ../../enterprise/godmode/modules/local_components.php:318 +#: ../../enterprise/godmode/policies/policies.php:170 +#: ../../enterprise/godmode/policies/policy_external_alerts.php:124 +#: ../../enterprise/godmode/policies/policy_external_alerts.php:127 +#: ../../enterprise/godmode/alerts/alert_inventory_builder.php:77 +#: ../../enterprise/godmode/setup/setup_metaconsole.php:126 +#: ../../enterprise/godmode/reporting/reporting_builder.template_editor.php:48 +#: ../../enterprise/godmode/servers/manage_export.php:112 +#: ../../enterprise/godmode/servers/manage_export.php:119 +#: ../../enterprise/godmode/servers/credential_boxes_satellite.php:81 +#: ../../enterprise/include/ajax/servers.ajax.php:198 +#: ../../enterprise/operation/agentes/transactional_map.php:135 +#: ../../enterprise/tools/ipam/ipam_action.php:153 +#: ../../enterprise/tools/ipam/ipam_network_location_config.php:51 +#: ../../godmode/modules/manage_nc_groups.php:85 +#: ../../godmode/modules/manage_network_components.php:199 +#: ../../godmode/modules/manage_network_components.php:427 +#: ../../godmode/users/configure_user.php:473 +#: ../../godmode/agentes/configurar_agente.php:351 +#: ../../godmode/agentes/configurar_agente.php:876 +#: ../../godmode/agentes/planned_downtime.editor.php:406 +#: ../../godmode/alerts/alert_commands.php:559 +#: ../../godmode/alerts/configure_alert_template.php:192 +#: ../../godmode/alerts/configure_alert_template.php:527 +#: ../../godmode/alerts/alert_list.php:165 ../../godmode/setup/news.php:67 +#: ../../godmode/setup/gis.php:49 +#: ../../godmode/reporting/reporting_builder.item_editor.php:5828 #: ../../include/functions_alerts.php:2748 -#: ../../include/functions_planned_downtimes.php:122 -#: ../../enterprise/tools/ipam/ipam_massive.php:48 -#: ../../enterprise/tools/ipam/ipam_action.php:253 -#: ../../enterprise/operation/agentes/transactional_map.php:160 -#: ../../enterprise/include/ajax/servers.ajax.php:331 -#: ../../enterprise/godmode/servers/credential_boxes_satellite.php:112 -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:330 +#: ../../include/functions_planned_downtimes.php:112 +#: ../../include/functions_planned_downtimes.php:827 +#: ../../operation/agentes/pandora_networkmap.php:140 +#: ../../operation/agentes/pandora_networkmap.php:375 +msgid "Could not be created" +msgstr "Erreur de crĆ©ation" + +#: ../../enterprise/godmode/modules/local_components.php:157 +msgid "Local component management" +msgstr "Gestion du composant local" + +#: ../../enterprise/godmode/modules/local_components.php:263 +#, php-format +msgid "" +"This node is configured with centralized mode. All local components are read " +"only. Go to %s to manage them." +msgstr "" +"Ce nœud est configurĆ© en mode centralisĆ©. Tous les composants locaux sont en " +"lecture seule. Allez dans %s pour les gĆ©rer." + +#: ../../enterprise/godmode/modules/local_components.php:326 +#: ../../godmode/modules/manage_network_components.php:438 +#: ../../include/class/ManageNetScanScripts.class.php:228 +msgid "Created successfully" +msgstr "CrĆ©Ć© correctement" + #: ../../enterprise/godmode/modules/local_components.php:393 -#: ../../enterprise/godmode/reporting/reporting_builder.template_advanced.php:70 -#: ../../enterprise/godmode/reporting/reporting_builder.template_editor.php:83 -#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:123 #: ../../enterprise/godmode/agentes/agent_disk_conf_editor.php:112 -#: ../../enterprise/godmode/alerts/alert_inventory_builder.php:133 #: ../../enterprise/godmode/policies/policy_modules.php:1250 #: ../../enterprise/godmode/policies/policies.php:212 -#: ../../godmode/setup/gis.php:41 +#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:123 +#: ../../enterprise/godmode/alerts/alert_inventory_builder.php:133 +#: ../../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:330 +#: ../../enterprise/include/ajax/servers.ajax.php:331 +#: ../../enterprise/operation/agentes/transactional_map.php:160 +#: ../../enterprise/tools/ipam/ipam_action.php:253 +#: ../../enterprise/tools/ipam/ipam_massive.php:48 #: ../../godmode/modules/manage_network_components.php:525 #: ../../godmode/agentes/status_monitor_custom_fields.php:57 #: ../../godmode/agentes/planned_downtime.editor.php:408 -#: ../../godmode/alerts/configure_alert_template.php:555 -#: ../../godmode/alerts/alert_templates.php:157 -#: ../../godmode/alerts/alert_list.php:95 ../../godmode/alerts/alert_list.php:313 #: ../../godmode/alerts/configure_alert_command.php:145 +#: ../../godmode/alerts/alert_templates.php:157 +#: ../../godmode/alerts/configure_alert_template.php:555 +#: ../../godmode/alerts/alert_list.php:95 ../../godmode/alerts/alert_list.php:313 +#: ../../godmode/setup/gis.php:41 ../../include/functions_alerts.php:2748 +#: ../../include/functions_planned_downtimes.php:122 +#: ../../operation/agentes/pandora_networkmap.php:216 +#: ../../operation/agentes/pandora_networkmap.php:508 +#: ../../operation/snmpconsole/snmp_view.php:175 msgid "Could not be updated" msgstr "Erreur de mise Ć  jour" -#: ../../operation/snmpconsole/snmp_view.php:228 -#: ../../operation/snmpconsole/snmp_view.php:1263 -#: ../../operation/agentes/alerts_status.functions.php:96 -#: ../../mobile/operation/alerts.php:67 -#: ../../godmode/alerts/alert_list.list.php:138 -msgid "Not fired" -msgstr "Non dĆ©clenchĆ©s" +#: ../../enterprise/godmode/modules/local_components.php:401 +#: ../../godmode/modules/manage_network_components.php:534 +#: ../../include/class/ManageNetScanScripts.class.php:315 +msgid "Updated successfully" +msgstr "Mis Ć  jour correctement" -#: ../../operation/snmpconsole/snmp_view.php:229 -#: ../../operation/snmpconsole/snmp_view.php:1254 -#: ../../operation/agentes/alerts_status.functions.php:95 -#: ../../include/functions_reporting_html.php:2339 -#: ../../include/functions_reporting_html.php:3184 -#: ../../include/functions_reporting_html.php:3185 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2906 -#: ../../mobile/operation/alerts.php:66 -#: ../../godmode/alerts/alert_list.list.php:137 -msgid "Fired" -msgstr "DĆ©clenchĆ©" +#: ../../enterprise/godmode/modules/local_components.php:547 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2852 +#: ../../godmode/modules/manage_network_components.php:659 +msgid "Free Search" +msgstr "Recherche libre" -#: ../../operation/snmpconsole/snmp_view.php:543 -#: ../../operation/snmpconsole/snmp_view.php:886 -#: ../../operation/snmpconsole/snmp_view.php:1246 -#: ../../operation/events/events.build_table.php:253 -#: ../../operation/agentes/estado_monitores.php:522 -#: ../../include/functions_events.php:200 ../../include/functions_events.php:263 -#: ../../include/functions_events.php:2694 -#: ../../include/functions_events.php:6729 ../../include/functions_snmp.php:324 -#: ../../include/functions.php:4094 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:4325 -#: ../../enterprise/meta/include/functions_events_meta.php:94 -#: ../../enterprise/godmode/alerts/alert_inventory_list.php:362 -#: ../../enterprise/godmode/policies/policy_external_alerts.php:382 -#: ../../godmode/events/custom_events.php:105 -#: ../../godmode/agentes/configurar_agente.php:734 -#: ../../godmode/alerts/configure_alert_template.php:1552 -msgid "Alert" -msgstr "Alerte" +#: ../../enterprise/godmode/modules/local_components.php:548 +msgid "Search by name, description or data, list matches." +msgstr "Rechercher liste de concordances par nom, description ou donnĆ©es" -#: ../../operation/snmpconsole/snmp_view.php:555 -#: ../../operation/events/events_list.php:852 -#: ../../operation/users/user_edit.php:308 -#: ../../include/functions_config.php:1019 -#: ../../enterprise/meta/include/functions_meta.php:1446 -#: ../../enterprise/meta/advanced/metasetup.visual.php:242 -#: ../../godmode/setup/setup_visuals.php:66 -#: ../../godmode/events/event_edit_filter.php:393 -#: ../../godmode/users/configure_user.php:1183 -msgid "Block size for pagination" -msgstr "Longueur de bloc pour la mise en page" +#: ../../enterprise/godmode/modules/local_components.php:690 +#: ../../enterprise/godmode/policies/policy_modules.php:1555 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:627 +#: ../../enterprise/include/class/NetworkConfigManager.class.php:628 +#: ../../godmode/modules/manage_network_components.php:859 +#: ../../godmode/modules/manage_network_components.php:860 +#: ../../godmode/agentes/module_manager.php:1166 +#: ../../godmode/snmpconsole/snmp_alert.php:1347 +#: ../../godmode/snmpconsole/snmp_alert.php:1348 +#: ../../godmode/alerts/alert_actions.php:435 +#: ../../godmode/alerts/alert_templates.php:432 +#: ../../godmode/reporting/reporting_builder.php:1194 +msgid "Duplicate" +msgstr "Dupliquer" -#: ../../operation/snmpconsole/snmp_view.php:572 -#: ../../operation/events/events.build_table.php:263 -#: ../../operation/events/events.php:1157 -#: ../../operation/events/events_list.php:953 -#: ../../include/lib/Dashboard/Widgets/events_list.php:393 -#: ../../include/functions_events.php:201 ../../include/functions_events.php:266 -#: ../../include/functions_events.php:2603 -#: ../../include/functions_events.php:5051 -#: ../../include/functions_events.php:6735 ../../include/functions_snmp.php:335 -#: ../../include/functions_reporting_html.php:1051 -#: ../../include/functions_reporting_html.php:1059 -#: ../../include/functions_reporting_html.php:1284 -#: ../../include/functions_reporting_html.php:1292 -#: ../../include/functions_reporting_html.php:2391 -#: ../../enterprise/include/functions_events.php:137 -#: ../../enterprise/include/functions_reporting.php:2025 -#: ../../enterprise/meta/include/functions_events_meta.php:98 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2816 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:617 -#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor_form.php:72 -#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:384 -#: ../../mobile/operation/events.php:397 ../../mobile/operation/events.php:398 -#: ../../mobile/operation/events.php:532 ../../mobile/operation/events.php:691 -#: ../../mobile/operation/events.php:692 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2820 -#: ../../godmode/events/event_edit_filter.php:332 -#: ../../godmode/events/custom_events.php:106 -#: ../../godmode/events/event_filter.php:140 -msgid "Severity" -msgstr "SĆ©vĆ©ritĆ©" +#: ../../enterprise/godmode/modules/manage_inventory_modules_form.php:71 +#: ../../enterprise/godmode/agentes/inventory_manager.php:165 +msgid "Inventory module error" +msgstr "Erreur du module d'inventaire" -#: ../../operation/snmpconsole/snmp_view.php:587 -#: ../../operation/snmpconsole/snmp_view.php:931 -#: ../../operation/snmpconsole/snmp_view.php:1243 -#: ../../include/functions_events.php:6197 -#: ../../include/functions_events.php:6204 -msgid "Not validated" -msgstr "Non validĆ©" +#: ../../enterprise/godmode/modules/manage_inventory_modules_form.php:116 +msgid "Left blank for the LOCAL inventory modules" +msgstr "LaissĆ© en blanc pour les modules d'inventaire LOCAUX" -#: ../../operation/snmpconsole/snmp_view.php:588 -#: ../../operation/snmpconsole/snmp_view.php:941 -#: ../../operation/snmpconsole/snmp_view.php:1234 -#: ../../include/functions_events.php:2629 -#: ../../include/functions_events.php:3387 -#: ../../include/functions_events.php:3676 -#: ../../include/functions_events.php:3685 -#: ../../include/functions_events.php:3692 -#: ../../include/functions_events.php:3699 -#: ../../include/functions_events.php:6195 -#: ../../include/functions_events.php:6203 ../../include/functions_graph.php:3326 -msgid "Validated" -msgstr "ValidĆ©" +#: ../../enterprise/godmode/modules/manage_inventory_modules_form.php:118 +msgid "Block Mode" +msgstr "Mode verrouillage" -#: ../../operation/snmpconsole/snmp_view.php:602 +#: ../../enterprise/godmode/modules/manage_inventory_modules_form.php:121 +#: ../../godmode/massive/massive_standby_alerts.php:223 +#: ../../godmode/massive/massive_standby_alerts.php:258 +#: ../../godmode/massive/massive_enable_disable_alerts.php:195 +#: ../../godmode/massive/massive_enable_disable_alerts.php:230 +#: ../../include/class/ModuleTemplates.class.php:1208 +msgid "Format" +msgstr "Format" + +#: ../../enterprise/godmode/modules/manage_inventory_modules_form.php:122 +msgid "separate fields with " +msgstr "sĆ©parer les champs avec " + +#: ../../enterprise/godmode/modules/manage_inventory_modules_form.php:125 +#: ../../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:126 msgid "" -"Search by any alphanumeric field in the trap.\n" -"\t\tREMEMBER trap sources need to be searched by IP Address" +"Here is placed the script for the REMOTE inventory modules Local inventory " +"modules don't use this field" msgstr "" -"Rechercher par n'importe quel champ alphanumĆ©rique dans le dĆ©routement.\n" -"\t\tN'OUBLIEZ PAS qu'il faut rechercher les sources de dĆ©routements par " -"adresse IP." +"Placer ici le script pour les modules d'inventaire ƀ DISTANCE. Les modules " +"d'inventaire locaux n'utilisent pas ce champ" -#: ../../operation/snmpconsole/snmp_view.php:616 -#: ../../operation/events/events.php:1104 ../../operation/events/events.php:1700 -#: ../../operation/events/events_list.php:973 -#: ../../include/class/AuditLog.class.php:187 -#: ../../include/lib/Dashboard/Widgets/top_n_events_by_group.php:270 -#: ../../include/lib/Dashboard/Widgets/top_n_events_by_module.php:270 -#: ../../include/lib/Dashboard/Widgets/events_list.php:336 -#: ../../include/functions_snmp.php:401 -#: ../../enterprise/include/functions_events.php:229 -#: ../../mobile/operation/events.php:706 -#: ../../godmode/events/event_edit_filter.php:404 -msgid "Max. hours old" -msgstr "Heures maximales" +#: ../../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" -#: ../../operation/snmpconsole/snmp_view.php:628 -#: ../../include/functions_snmp.php:433 -#: ../../enterprise/godmode/massive/massive_delete_alerts_snmp.php:202 -#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:262 -#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:305 -#: ../../godmode/snmpconsole/snmp_alert.php:829 -#: ../../godmode/snmpconsole/snmp_alert.php:1166 -msgid "Trap type" -msgstr "Type de dĆ©routement" +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:89 +msgid "Agent Autoconfiguration Information" +msgstr "Informations sur la configuration automatique de lā€™agent" -#: ../../operation/snmpconsole/snmp_view.php:628 -msgid "Search by trap type" -msgstr "Rechercher par type de dĆ©routement" +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:90 +msgid "You must click the Create or Update buttom for a correct configuration!!!" +msgstr "Cliquez sur CrĆ©er ou Mettre Ć  jour pour une configuration correcte !" -#: ../../operation/snmpconsole/snmp_view.php:631 -#: ../../operation/snmpconsole/snmp_view.php:1115 -#: ../../operation/snmpconsole/snmp_view.php:1129 -#: ../../enterprise/godmode/massive/massive_delete_alerts_snmp.php:29 -#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:30 -#: ../../godmode/snmpconsole/snmp_alert.php:41 -msgid "Cold start (0)" -msgstr "DĆ©marrage zĆ©ro (0)" +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:98 +msgid "" +"Cannot create autoconfiguration from read only console, please create from " +"metaconsole (centralized management)" +msgstr "" +"Impossible de crĆ©er une configuration automatique Ć  partir de la console en " +"lecture seule, veuillez crĆ©er Ć  partir de la MĆ©taconsole (gestion centralisĆ©e)" -#: ../../operation/snmpconsole/snmp_view.php:632 -#: ../../operation/snmpconsole/snmp_view.php:1116 -#: ../../operation/snmpconsole/snmp_view.php:1133 -#: ../../enterprise/godmode/massive/massive_delete_alerts_snmp.php:30 -#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:31 -#: ../../godmode/snmpconsole/snmp_alert.php:42 -msgid "Warm start (1)" -msgstr "DĆ©marrage (1)" +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:139 +msgid "Cannot create autoconfiguration in metaconsole" +msgstr "Impossible de crĆ©er une configuration automatique dans la MĆ©taconsole" -#: ../../operation/snmpconsole/snmp_view.php:633 -#: ../../operation/snmpconsole/snmp_view.php:1117 -#: ../../operation/snmpconsole/snmp_view.php:1137 -#: ../../enterprise/godmode/massive/massive_delete_alerts_snmp.php:31 -#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:32 -#: ../../godmode/snmpconsole/snmp_alert.php:43 -msgid "Link down (2)" -msgstr "Lien interrompu (2)" +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:147 +msgid "Cannot create unnamed autoconfiguration" +msgstr "Impossible de crĆ©er une configuration automatique sans nom" -#: ../../operation/snmpconsole/snmp_view.php:634 -#: ../../operation/snmpconsole/snmp_view.php:1118 -#: ../../operation/snmpconsole/snmp_view.php:1141 -#: ../../enterprise/godmode/massive/massive_delete_alerts_snmp.php:32 -#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:33 -#: ../../godmode/snmpconsole/snmp_alert.php:44 -msgid "Link up (3)" -msgstr "Lien actif (3)" +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:157 +msgid "" +"Cannot udpate autoconfiguration from read only console, please create from " +"metaconsole (centralized management)" +msgstr "" +"Impossible de mettre Ć  jour lā€™autoconfiguration Ć  partir de la console en lecture " +"seule, veuillez crĆ©er Ć  partir de MĆ©taconsole (gestion centralisĆ©e)" -#: ../../operation/snmpconsole/snmp_view.php:635 -#: ../../operation/snmpconsole/snmp_view.php:1119 -#: ../../operation/snmpconsole/snmp_view.php:1145 -#: ../../enterprise/godmode/massive/massive_delete_alerts_snmp.php:33 -#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:34 -#: ../../godmode/snmpconsole/snmp_alert.php:45 -msgid "Authentication failure (4)" -msgstr "Erreur d'authentification (4)" +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:194 +msgid "Cannot update autoconfiguration" +msgstr "Impossible de mettre Ć  jour la configuration automatique" -#: ../../operation/snmpconsole/snmp_view.php:652 -msgid "Group by Enterprise String/IP" -msgstr "Regrouper par chaĆ®ne Enterprise / IP" +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:204 +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:243 +msgid "" +"Cannot modify autoconfiguration from read only console, please create from " +"metaconsole (centralized management)" +msgstr "" +"Impossible de modifier la configuration automatique Ć  partir de la console en " +"lecture seule, veuillez crĆ©er Ć  partir de la MĆ©taconsole (gestion centralisĆ©e)" -#: ../../operation/snmpconsole/snmp_view.php:653 -#: ../../operation/netflow/nf_live_view.php:460 -#: ../../operation/users/user_edit.php:321 ../../include/functions_cron.php:648 -#: ../../include/functions_snmp.php:390 ../../include/functions_profile.php:276 -#: ../../include/functions_reporting_html.php:1589 -#: ../../enterprise/include/functions_cron.php:757 -#: ../../enterprise/include/functions_reporting_csv.php:1940 -#: ../../enterprise/include/functions_tasklist.php:323 -#: ../../enterprise/include/functions_reporting.php:2337 -#: ../../enterprise/meta/monitoring/wizard/wizard.php:136 -#: ../../enterprise/meta/advanced/metasetup.performance.php:85 -#: ../../enterprise/meta/advanced/metasetup.performance.php:89 -#: ../../enterprise/meta/advanced/metasetup.setup.php:149 -#: ../../enterprise/meta/advanced/metasetup.setup.php:203 -#: ../../enterprise/meta/advanced/metasetup.setup.php:219 -#: ../../enterprise/meta/advanced/metasetup.setup.php:223 -#: ../../enterprise/meta/advanced/metasetup.setup.php:285 -#: ../../enterprise/meta/advanced/metasetup.setup.php:299 -#: ../../enterprise/meta/advanced/metasetup.setup.php:321 -#: ../../enterprise/meta/advanced/metasetup.setup.php:325 -#: ../../enterprise/meta/advanced/metasetup.setup.php:347 -#: ../../enterprise/meta/advanced/metasetup.password.php:80 -#: ../../enterprise/meta/advanced/metasetup.password.php:122 -#: ../../enterprise/meta/advanced/metasetup.password.php:127 -#: ../../enterprise/meta/advanced/metasetup.password.php:133 -#: ../../enterprise/meta/advanced/metasetup.password.php:139 -#: ../../enterprise/meta/advanced/metasetup.password.php:143 -#: ../../enterprise/meta/advanced/metasetup.password.php:147 -#: ../../enterprise/godmode/setup/setup_auth.php:208 -#: ../../enterprise/godmode/setup/setup_auth.php:338 -#: ../../enterprise/godmode/setup/setup_auth.php:386 -#: ../../enterprise/godmode/setup/setup_auth.php:1181 -#: ../../enterprise/godmode/reporting/visual_console_template.php:286 -#: ../../enterprise/godmode/reporting/graph_template_item_editor.php:209 -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:553 -#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:553 -#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:574 -#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:644 -#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:665 -#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:705 +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:319 +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.php:92 +msgid "Agent autoconfiguration list" +msgstr "Liste de configuration automatique de lā€™agent" + +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:362 +msgid "Autoconfiguration" +msgstr "Configuration automatique" + +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:377 +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.php:138 +#: ../../godmode/modules/manage_network_components_form_wizard.php:655 +#: ../../godmode/agentes/planned_downtime.list.php:614 +#: ../../godmode/agentes/planned_downtime.editor.php:609 +#: ../../include/functions_reporting_html.php:6172 +msgid "Execution" +msgstr "ExĆ©cution" + +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:380 +#: ../../enterprise/operation/agentes/transactional_map.php:398 +#: ../../godmode/menu.php:47 ../../godmode/setup/setup_ehorus.php:112 +#: ../../godmode/setup/setup_integria.php:567 ../../include/ajax/events.php:2419 +#: ../../operation/users/user_edit.php:712 ../../operation/users/user_edit.php:758 +#: ../../operation/menu.php:430 +msgid "Start" +msgstr "DĆ©marrer" + +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:397 +#: ../../godmode/agentes/planned_downtime.editor.php:628 +msgid "Configure the time" +msgstr "Configurer le temps" + +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:403 +#: ../../godmode/agentes/planned_downtime.editor.php:647 +msgid "Type Periodicity:" +msgstr "Type de pĆ©riodicitĆ© :" + +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:405 +#: ../../enterprise/include/functions_cron.php:501 +#: ../../enterprise/include/lib/NetworkManager.php:178 +#: ../../godmode/agentes/module_manager_editor_prediction.php:183 +#: ../../include/functions_netflow.php:1850 +msgid "Daily" +msgstr "Tous les jours" + +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:406 +#: ../../enterprise/include/functions_cron.php:502 +#: ../../enterprise/include/lib/NetworkManager.php:182 +#: ../../godmode/agentes/module_manager_editor_prediction.php:181 +#: ../../godmode/agentes/planned_downtime.editor.php:649 +msgid "Weekly" +msgstr "Hebdomadaire" + +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:407 +#: ../../enterprise/include/functions_cron.php:503 +#: ../../godmode/agentes/module_manager_editor_prediction.php:182 +#: ../../godmode/agentes/planned_downtime.editor.php:650 +msgid "Monthly" +msgstr "Mensuel" + +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:436 +#: ../../godmode/agentes/planned_downtime.editor.php:679 +msgid "From day:" +msgstr "ƀ partir du jour :" + +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:454 +#: ../../godmode/agentes/planned_downtime.editor.php:712 +msgid "From hour:" +msgstr "De l'heure :" + +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:497 +#: ../../include/class/CredentialStore.class.php:959 +msgid "Extra" +msgstr "Extra" + +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:525 +msgid "Add rule" +msgstr "Ajouter une rĆØgle" + +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:530 +msgid "Rules" +msgstr "RĆØgles" + +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:552 +msgid "New group" +msgstr "Nouveau groupe" + +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:584 +#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:402 +msgid "Launch custom event" +msgstr "Lancer Ć©vĆ©nement personnalisĆ©" + +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:585 +#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:403 +msgid "Launch alert action" +msgstr "Lancer action d'alerte" + +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:586 +#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:404 +#: ../../enterprise/operation/agentes/manage_transmap_creation_phases_data.php:74 +msgid "Launch script" +msgstr "Lacer script" + +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:630 +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:644 +#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:28 +#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:315 +#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:330 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:552 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:573 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:643 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:664 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:695 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:704 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:763 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:786 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:807 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:811 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:822 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:842 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:867 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:883 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:944 #: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:967 -#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:1005 -#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:1033 -#: ../../godmode/servers/modificar_server.php:47 -#: ../../godmode/update_manager/update_manager.setup.php:372 -#: ../../godmode/reporting/reporting_builder.main.php:194 -#: ../../godmode/reporting/reporting_builder.php:1092 -#: ../../godmode/reporting/visual_console_builder.wizard.php:380 -#: ../../godmode/reporting/visual_console_builder.wizard.php:467 -#: ../../godmode/massive/massive_edit_agents.php:663 -#: ../../godmode/massive/massive_edit_agents.php:986 -#: ../../godmode/massive/massive_edit_agents.php:995 -#: ../../godmode/massive/massive_edit_modules.php:616 -#: ../../godmode/massive/massive_edit_modules.php:638 -#: ../../godmode/massive/massive_edit_modules.php:707 -#: ../../godmode/massive/massive_edit_modules.php:729 -#: ../../godmode/massive/massive_edit_modules.php:769 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:985 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:991 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:1004 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:1032 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:1134 +#: ../../godmode/massive/massive_edit_agents.php:669 +#: ../../godmode/massive/massive_edit_agents.php:694 +#: ../../godmode/massive/massive_edit_agents.php:711 +#: ../../godmode/massive/massive_edit_agents.php:725 +#: ../../godmode/massive/massive_edit_agents.php:749 +#: ../../godmode/massive/massive_edit_agents.php:859 +#: ../../godmode/massive/massive_edit_agents.php:906 +#: ../../godmode/massive/massive_edit_agents.php:981 +#: ../../godmode/massive/massive_edit_agents.php:985 +#: ../../godmode/massive/massive_edit_agents.php:994 +#: ../../godmode/massive/massive_edit_agents.php:1022 +#: ../../godmode/massive/massive_edit_agents.php:1091 +#: ../../godmode/massive/massive_edit_modules.php:615 +#: ../../godmode/massive/massive_edit_modules.php:637 +#: ../../godmode/massive/massive_edit_modules.php:706 +#: ../../godmode/massive/massive_edit_modules.php:728 +#: ../../godmode/massive/massive_edit_modules.php:759 +#: ../../godmode/massive/massive_edit_modules.php:768 +#: ../../godmode/massive/massive_edit_modules.php:827 +#: ../../godmode/massive/massive_edit_modules.php:845 +#: ../../godmode/massive/massive_edit_modules.php:864 +#: ../../godmode/massive/massive_edit_modules.php:868 +#: ../../godmode/massive/massive_edit_modules.php:879 +#: ../../godmode/massive/massive_edit_modules.php:899 +#: ../../godmode/massive/massive_edit_modules.php:924 +#: ../../godmode/massive/massive_edit_modules.php:936 +#: ../../godmode/massive/massive_edit_modules.php:997 #: ../../godmode/massive/massive_edit_modules.php:1043 -#: ../../godmode/massive/massive_edit_modules.php:1081 -#: ../../godmode/massive/massive_edit_modules.php:1109 -#: ../../godmode/agentes/agent_conf_gis.php:125 -#: ../../godmode/alerts/alert_view.php:129 -#: ../../godmode/alerts/alert_view.php:259 -#: ../../godmode/users/configure_user.php:1099 -msgid "Yes" -msgstr "Oui" - -#: ../../operation/snmpconsole/snmp_view.php:654 -#: ../../operation/netflow/nf_live_view.php:470 -#: ../../operation/users/user_edit.php:322 ../../include/functions_cron.php:648 -#: ../../include/functions_events.php:5040 -#: ../../include/functions_events.php:5045 ../../include/functions_snmp.php:382 -#: ../../include/functions_profile.php:276 -#: ../../include/functions_reporting_html.php:1589 -#: ../../enterprise/include/functions_cron.php:756 -#: ../../enterprise/include/functions_reporting_csv.php:1940 -#: ../../enterprise/include/functions_tasklist.php:323 -#: ../../enterprise/include/functions_reporting.php:2337 -#: ../../enterprise/meta/monitoring/wizard/wizard.php:137 -#: ../../enterprise/meta/advanced/metasetup.performance.php:86 -#: ../../enterprise/meta/advanced/metasetup.performance.php:90 -#: ../../enterprise/meta/advanced/metasetup.setup.php:150 -#: ../../enterprise/meta/advanced/metasetup.setup.php:213 -#: ../../enterprise/meta/advanced/metasetup.setup.php:220 -#: ../../enterprise/meta/advanced/metasetup.setup.php:224 -#: ../../enterprise/meta/advanced/metasetup.setup.php:286 -#: ../../enterprise/meta/advanced/metasetup.setup.php:309 -#: ../../enterprise/meta/advanced/metasetup.setup.php:322 -#: ../../enterprise/meta/advanced/metasetup.setup.php:335 -#: ../../enterprise/meta/advanced/metasetup.setup.php:357 -#: ../../enterprise/meta/advanced/metasetup.password.php:81 -#: ../../enterprise/meta/advanced/metasetup.password.php:123 -#: ../../enterprise/meta/advanced/metasetup.password.php:128 -#: ../../enterprise/meta/advanced/metasetup.password.php:134 -#: ../../enterprise/meta/advanced/metasetup.password.php:140 -#: ../../enterprise/meta/advanced/metasetup.password.php:144 -#: ../../enterprise/meta/advanced/metasetup.password.php:148 -#: ../../enterprise/godmode/setup/setup.php:64 -#: ../../enterprise/godmode/setup/setup_auth.php:208 -#: ../../enterprise/godmode/setup/setup_auth.php:341 -#: ../../enterprise/godmode/setup/setup_auth.php:389 -#: ../../enterprise/godmode/setup/setup_auth.php:1184 -#: ../../enterprise/godmode/reporting/visual_console_template.php:286 -#: ../../enterprise/godmode/reporting/graph_template_item_editor.php:211 -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:555 -#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:554 -#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:575 -#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:645 -#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:666 -#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:706 -#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:967 -#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:1006 -#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:1034 -#: ../../mobile/operation/events.php:195 ../../mobile/operation/events.php:200 -#: ../../godmode/setup/news.php:287 ../../godmode/servers/modificar_server.php:45 -#: ../../godmode/update_manager/update_manager.setup.php:373 -#: ../../godmode/reporting/reporting_builder.main.php:204 -#: ../../godmode/reporting/reporting_builder.php:1094 -#: ../../godmode/reporting/visual_console_builder.wizard.php:390 -#: ../../godmode/reporting/visual_console_builder.wizard.php:468 -#: ../../godmode/massive/massive_edit_agents.php:664 -#: ../../godmode/massive/massive_edit_agents.php:987 -#: ../../godmode/massive/massive_edit_agents.php:996 -#: ../../godmode/massive/massive_edit_modules.php:617 -#: ../../godmode/massive/massive_edit_modules.php:639 -#: ../../godmode/massive/massive_edit_modules.php:708 -#: ../../godmode/massive/massive_edit_modules.php:730 -#: ../../godmode/massive/massive_edit_modules.php:770 -#: ../../godmode/massive/massive_edit_modules.php:1043 -#: ../../godmode/massive/massive_edit_modules.php:1082 -#: ../../godmode/massive/massive_edit_modules.php:1110 -#: ../../godmode/agentes/agent_conf_gis.php:126 -#: ../../godmode/alerts/alert_view.php:129 -#: ../../godmode/alerts/alert_view.php:259 -#: ../../godmode/alerts/alert_view.php:352 -#: ../../godmode/users/configure_user.php:1100 -msgid "No" -msgstr "Non" - -#: ../../operation/snmpconsole/snmp_view.php:681 -#: ../../operation/snmpconsole/snmp_view.php:789 -#: ../../godmode/snmpconsole/snmp_alert.php:118 -#: ../../godmode/snmpconsole/snmp_filters.php:46 -msgid "SNMP Console" -msgstr "Console SNMP" - -#: ../../operation/snmpconsole/snmp_view.php:714 -#: ../../operation/snmpconsole/snmp_view.php:813 -#: ../../operation/agentes/alerts_status.php:501 -#: ../../operation/agentes/graphs.php:269 -#: ../../enterprise/meta/advanced/collections.php:251 -#: ../../enterprise/godmode/alerts/alert_inventory_list.php:174 -#: ../../enterprise/godmode/policies/policy_queue.php:524 -#: ../../enterprise/godmode/policies/policy_queue.php:636 -#: ../../enterprise/godmode/policies/policy_external_alerts.php:373 -#: ../../godmode/snmpconsole/snmp_alert.php:1180 -#: ../../godmode/alerts/alert_list.list.php:178 -#: ../../godmode/users/user_list.php:452 -msgid "Toggle filter(s)" -msgstr "Filtre(s) de bascul" - -#: ../../operation/snmpconsole/snmp_view.php:718 -msgid "There are no SNMP traps in database that contains this filter" -msgstr "Aucun dĆ©routement SNMP dans la base de donnĆ©es ne contient ce filtre" - -#: ../../operation/snmpconsole/snmp_view.php:758 -msgid "Refresh every" -msgstr "Actualiser toutes les" - -#: ../../operation/snmpconsole/snmp_view.php:770 -msgid "SNMP Traps" -msgstr "DĆ©routements SNMP" - -#: ../../operation/snmpconsole/snmp_view.php:854 -#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:303 -#: ../../godmode/snmpconsole/snmp_alert.php:790 -#: ../../godmode/snmpconsole/snmp_alert.php:1259 -#: ../../godmode/snmpconsole/snmp_trap_generator.php:125 -msgid "SNMP Agent" -msgstr "Agent SNMP" - -#: ../../operation/snmpconsole/snmp_view.php:859 -#: ../../godmode/snmpconsole/snmp_alert.php:774 -#: ../../godmode/snmpconsole/snmp_alert.php:1263 -#: ../../godmode/snmpconsole/snmp_trap_generator.php:105 -msgid "Enterprise String" -msgstr "ChaĆ®ne Enterprise" - -#: ../../operation/snmpconsole/snmp_view.php:865 -#: ../../include/functions_reporting_html.php:1047 -#: ../../include/functions_reporting_html.php:1285 -#: ../../include/functions_reporting_html.php:2386 -#: ../../enterprise/include/lib/AlertCorrelation.class.php:1086 -msgid "Count" -msgstr "Nombre" - -#: ../../operation/snmpconsole/snmp_view.php:871 -msgid "Trap subtype" -msgstr "Sous-type de dĆ©routements" - -#: ../../operation/snmpconsole/snmp_view.php:974 -#: ../../operation/snmpconsole/snmp_view.php:994 -#: ../../operation/agentes/status_monitor.php:1710 -#: ../../operation/agentes/interface_view.functions.php:682 -#: ../../operation/agentes/interface_view.functions.php:683 -#: ../../operation/agentes/interface_view.functions.php:684 -#: ../../operation/agentes/interface_view.functions.php:685 -#: ../../operation/agentes/interface_view.functions.php:686 -#: ../../operation/agentes/estado_generalagente.php:219 -#: ../../operation/agentes/estado_generalagente.php:232 -#: ../../operation/agentes/estado_generalagente.php:244 -#: ../../operation/agentes/estado_generalagente.php:413 -#: ../../operation/agentes/estado_generalagente.php:429 -#: ../../operation/agentes/estado_generalagente.php:440 -#: ../../include/ajax/module.php:1168 ../../include/functions_events.php:3810 -#: ../../include/functions_events.php:3960 -#: ../../include/functions_events.php:3981 -#: ../../include/functions_events.php:3986 -#: ../../include/functions_events.php:3999 -#: ../../include/functions_events.php:4000 -#: ../../include/functions_events.php:4012 -#: ../../include/functions_events.php:4063 -#: ../../include/functions_events.php:4090 -#: ../../include/functions_events.php:4146 -#: ../../include/functions_events.php:4163 -#: ../../include/functions_events.php:4170 -#: ../../include/functions_events.php:4236 -#: ../../include/functions_events.php:4308 -#: ../../include/functions_events.php:4447 -#: ../../include/functions_events.php:4486 -#: ../../include/functions_events.php:4500 -#: ../../include/functions_events.php:4505 -#: ../../include/functions_events.php:4535 -#: ../../include/functions_events.php:4628 -#: ../../include/functions_events.php:4708 -#: ../../include/functions_events.php:4718 -#: ../../include/functions_events.php:4935 -#: ../../include/functions_events.php:5012 -#: ../../include/functions_events.php:5101 -#: ../../include/functions_events.php:5130 -#: ../../include/functions_events.php:5145 -#: ../../include/functions_events.php:5155 -#: ../../include/functions_events.php:5165 -#: ../../include/functions_events.php:7445 -#: ../../include/functions_events.php:7464 -#: ../../include/functions_events.php:7469 -#: ../../include/functions_events.php:7476 -#: ../../include/functions_events.php:7489 -#: ../../include/functions_events.php:7502 -#: ../../include/functions_events.php:7514 -#: ../../include/functions_events.php:7567 -#: ../../include/functions_events.php:7594 -#: ../../include/functions_events.php:7619 -#: ../../include/functions_events.php:7663 ../../include/functions_db.php:241 -#: ../../include/functions_servers.php:1362 -#: ../../include/functions_treeview.php:162 -#: ../../include/functions_treeview.php:327 -#: ../../include/functions_treeview.php:423 ../../include/functions_ui.php:2609 -#: ../../include/functions_ui.php:2617 ../../include/functions.php:1124 -#: ../../include/functions.php:1130 ../../include/functions.php:1134 -#: ../../include/functions_reporting_html.php:651 -#: ../../include/functions_reporting_html.php:654 -#: ../../include/functions_reporting_html.php:5277 -#: ../../include/functions_reporting_html.php:5330 -#: ../../enterprise/tools/ipam/ipam_ajax.php:366 -#: ../../enterprise/tools/ipam/ipam_ajax.php:387 -#: ../../enterprise/tools/ipam/ipam_network.php:435 -#: ../../enterprise/tools/ipam/ipam_network.php:515 -#: ../../enterprise/views/cluster/view.php:278 -#: ../../enterprise/views/cluster/view.php:293 -#: ../../enterprise/include/lib/Metaconsole/Node.php:505 -#: ../../enterprise/include/lib/Metaconsole/Node.php:1185 -#: ../../enterprise/include/functions_services.php:1190 -#: ../../enterprise/include/functions_services.php:1371 -#: ../../enterprise/include/functions_services.php:2077 -#: ../../enterprise/include/functions_aws.php:507 -#: ../../enterprise/include/functions_aws.php:508 -#: ../../enterprise/include/functions_reporting.php:6157 -#: ../../enterprise/include/functions_visual_map.php:320 -#: ../../enterprise/include/functions_servicemap.php:471 -#: ../../enterprise/meta/advanced/servers.build_table.php:100 -#: ../../enterprise/meta/advanced/servers.build_table.php:101 -#: ../../enterprise/meta/advanced/servers.build_table.php:107 -#: ../../enterprise/meta/advanced/metasetup.visual.php:895 -#: ../../mobile/operation/agent.php:192 ../../mobile/operation/agent.php:200 -#: ../../mobile/operation/events.php:161 ../../mobile/operation/events.php:167 -#: ../../mobile/operation/events.php:175 ../../mobile/operation/events.php:260 -#: ../../mobile/operation/events.php:290 ../../mobile/operation/events.php:298 -#: ../../godmode/servers/servers.build_table.php:147 -#: ../../godmode/servers/servers.build_table.php:148 -#: ../../godmode/servers/servers.build_table.php:154 -#: ../../godmode/modules/manage_network_components.php:776 -#: ../../godmode/modules/manage_network_components.php:777 -#: ../../godmode/extensions.php:186 ../../godmode/extensions.php:201 -#: ../../godmode/agentes/planned_downtime.list.php:812 -#: ../../godmode/alerts/alert_view.php:135 -msgid "N/A" -msgstr "S.O." - -#: ../../operation/snmpconsole/snmp_view.php:1018 -#: ../../operation/events/sound_events.php:136 -#: ../../operation/agentes/group_view.php:234 -#: ../../include/class/AgentsAlerts.class.php:937 -#: ../../include/functions_events.php:2905 -#: ../../include/functions_events.php:3260 -#: ../../include/functions_agents.php:2939 -#: ../../include/functions_agents.php:2950 -#: ../../include/functions_reporting.php:12335 -#: ../../include/functions_ui.php:1247 ../../include/functions.php:1228 -#: ../../enterprise/operation/agentes/policy_view.php:345 -#: ../../enterprise/meta/monitoring/group_view.php:247 -#: ../../mobile/operation/alerts.php:324 -#: ../../godmode/alerts/alert_list.list.php:559 -#: ../../godmode/alerts/alert_view.php:105 -msgid "Alert fired" -msgstr "Alerte dĆ©clenchĆ©e" - -#: ../../operation/snmpconsole/snmp_view.php:1020 -#: ../../include/class/AgentsAlerts.class.php:943 -#: ../../include/functions_agents.php:2941 -#: ../../include/functions_agents.php:2952 -#: ../../include/functions_reporting.php:12258 -#: ../../include/functions_ui.php:1253 -#: ../../enterprise/operation/agentes/policy_view.php:351 -#: ../../mobile/operation/alerts.php:330 -#: ../../godmode/alerts/alert_list.list.php:565 -#: ../../godmode/alerts/alert_view.php:111 -msgid "Alert not fired" -msgstr "Alerte non dĆ©clenchĆ©e" - -#: ../../operation/snmpconsole/snmp_view.php:1027 -#: ../../operation/snmpconsole/snmp_view.php:1217 -#: ../../operation/snmpconsole/snmp_view.php:1267 -#: ../../operation/agentes/alerts_status.php:567 -#: ../../operation/agentes/alerts_status.php:604 -#: ../../operation/agentes/alerts_status.php:637 -#: ../../operation/agentes/alerts_status.php:723 -#: ../../include/ajax/alert_list.ajax.php:267 -#: ../../include/ajax/alert_list.ajax.php:293 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3132 -#: ../../enterprise/load_enterprise.php:749 -#: ../../enterprise/godmode/reporting/aws_view.php:181 -#: ../../enterprise/godmode/wizards/Cloud.class.php:325 -#: ../../mobile/operation/events.php:570 ../../godmode/setup/license.php:165 -msgid "Validate" -msgstr "Valider" - -#: ../../operation/snmpconsole/snmp_view.php:1076 -msgid "Variable bindings:" -msgstr "Liens variables :" - -#: ../../operation/snmpconsole/snmp_view.php:1089 -msgid "See more details" -msgstr "Afficher plus de dĆ©tails" - -#: ../../operation/snmpconsole/snmp_view.php:1101 -msgid "Enterprise String:" -msgstr "ChaĆ®ne Enterprise :" - -#: ../../operation/snmpconsole/snmp_view.php:1107 -#: ../../enterprise/meta/include/functions_autoprovision.php:569 -#: ../../enterprise/meta/advanced/collections.data.php:432 -#: ../../enterprise/godmode/agentes/collections.data.php:523 -msgid "Description:" -msgstr "Description :" - -#: ../../operation/snmpconsole/snmp_view.php:1153 -msgid "Trap type:" -msgstr "Type de dĆ©routement :" - -#: ../../operation/snmpconsole/snmp_view.php:1179 -msgid "Count:" -msgstr "Total :" - -#: ../../operation/snmpconsole/snmp_view.php:1183 -msgid "First trap:" -msgstr "Premier dĆ©routement :" - -#: ../../operation/snmpconsole/snmp_view.php:1187 -msgid "Last trap:" -msgstr "Dernier dĆ©routement :" - -#: ../../operation/snmpconsole/snmp_view.php:1208 -msgid "No matching traps found" -msgstr "Aucun dĆ©routement concordant retrouvĆ©" - -#: ../../operation/snmpconsole/snmp_view.php:1272 -#: ../../include/functions_reporting_html.php:2032 -#: ../../enterprise/operation/services/services.service_map.php:139 -#: ../../extensions/module_groups.php:391 ../../extensions/agents_modules.php:947 -#: ../../godmode/snmpconsole/snmp_alert.php:1518 -msgid "Legend" -msgstr "LĆ©gende" - -#: ../../operation/heatmap.php:70 ../../operation/heatmap.php:279 -#: ../../operation/agentes/pandora_networkmap.php:800 -#: ../../enterprise/operation/services/services.list.php:625 -msgid "Config" -msgstr "Configuration" - -#: ../../operation/heatmap.php:96 ../../operation/heatmap.php:98 -#: ../../operation/agentes/status_monitor.php:517 -#: ../../operation/agentes/estado_monitores.php:552 -#: ../../operation/agentes/ver_agente.php:1157 -#: ../../include/ajax/heatmap.ajax.php:190 -#: ../../include/ajax/heatmap.ajax.php:249 -#: ../../include/ajax/heatmap.ajax.php:288 -#: ../../include/functions_events.php:4547 -#: ../../include/functions_treeview.php:122 -#: ../../include/functions_graph.php:5366 ../../include/functions_html.php:1560 -#: ../../enterprise/operation/agentes/tag_view.php:156 -#: ../../enterprise/operation/agentes/ver_agente.php:35 -#: ../../enterprise/meta/monitoring/wizard/wizard.create_module.php:155 -#: ../../enterprise/godmode/modules/configure_local_component.php:259 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2014 -#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:832 -#: ../../extensions/agents_modules.php:410 ../../mobile/operation/modules.php:183 -#: ../../mobile/operation/modules.php:184 ../../mobile/operation/modules.php:293 -#: ../../mobile/operation/modules.php:294 -#: ../../godmode/modules/manage_network_components_form_common.php:111 -#: ../../godmode/reporting/create_container.php:540 -#: ../../godmode/reporting/reporting_builder.item_editor.php:1541 -#: ../../godmode/massive/massive_edit_modules.php:889 -#: ../../godmode/agentes/module_manager_editor_common.php:265 -msgid "Module group" -msgstr "Groupe de modules" - -#: ../../operation/heatmap.php:96 ../../operation/agentes/status_monitor.php:518 -#: ../../include/ajax/heatmap.ajax.php:196 -#: ../../include/functions_treeview.php:116 -#: ../../include/functions_graph.php:5316 -#: ../../enterprise/operation/agentes/tag_view.php:157 -#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:835 -#: ../../godmode/massive/massive_edit_modules.php:892 -#: ../../godmode/agentes/module_manager_editor_common.php:271 -#: ../../godmode/agentes/module_manager_editor_common.php:1188 -msgid "Not assigned" -msgstr "Non assignĆ©" - -#: ../../operation/heatmap.php:109 ../../operation/agentes/group_view.php:320 -#: ../../include/ajax/heatmap.ajax.php:126 -#: ../../include/ajax/heatmap.ajax.php:296 -#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:330 -#: ../../mobile/operation/modules.php:194 ../../mobile/operation/modules.php:195 -#: ../../mobile/operation/modules.php:308 ../../mobile/operation/modules.php:309 -#: ../../godmode/reporting/create_container.php:566 -#: ../../godmode/reporting/create_container.php:629 -msgid "Tag" -msgstr "Ɖtiquette" - -#: ../../operation/heatmap.php:173 ../../include/ajax/heatmap.ajax.php:52 -msgid "3 minutes" -msgstr "3 minutes" - -#: ../../operation/heatmap.php:291 ../../operation/agentes/status_monitor.php:861 -#: ../../operation/agentes/interface_view.functions.php:120 -#: ../../operation/agentes/interface_view.functions.php:158 -#: ../../include/class/ConfigPEN.class.php:252 -#: ../../include/class/CredentialStore.class.php:1098 -#: ../../enterprise/operation/agentes/tag_view.php:175 -#: ../../enterprise/include/class/AgentRepository.class.php:771 -#: ../../enterprise/include/class/LogSource.class.php:766 -#: ../../enterprise/include/class/Omnishell.class.php:1124 -#: ../../enterprise/include/class/DeploymentCenter.class.php:1533 -#: ../../enterprise/meta/monitoring/custom_fields_view.php:304 -#: ../../enterprise/extensions/vmware/vmware_view.php:1519 -#: ../../godmode/users/user_list.php:693 -msgid "Show" -msgstr "Afficher" - -#: ../../operation/search_agents.php:93 -#: ../../operation/agentes/alerts_status.functions.php:97 -#: ../../operation/agentes/estado_generalagente.php:101 -#: ../../operation/agentes/estado_generalagente.php:103 -#: ../../include/functions_visual_map_editor.php:826 -#: ../../include/functions_treeview.php:72 -#: ../../include/functions_treeview.php:613 -#: ../../include/functions_reporting.php:6328 -#: ../../include/rest-api/models/VisualConsole/Items/StaticGraph.php:397 -#: ../../include/functions_reporting_html.php:3403 -#: ../../enterprise/views/cluster/view.php:162 -#: ../../enterprise/views/cluster/view.php:164 -#: ../../enterprise/include/class/VMware.app.php:888 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3213 -#: ../../enterprise/include/class/DatabaseHA.class.php:211 -#: ../../enterprise/include/lib/NetworkManager.php:190 -#: ../../enterprise/include/functions_policies.php:4782 -#: ../../enterprise/meta/include/functions_wizard_meta.php:243 -#: ../../enterprise/meta/include/functions_wizard_meta.php:528 -#: ../../enterprise/meta/include/functions_wizard_meta.php:600 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1148 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1533 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1626 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1820 -#: ../../enterprise/meta/agentsearch.php:251 -#: ../../enterprise/meta/agentsearch.php:258 -#: ../../enterprise/godmode/setup/edit_skin.php:276 -#: ../../enterprise/godmode/modules/configure_local_component.php:459 -#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:701 -#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:118 -#: ../../enterprise/godmode/policies/policy_agents.php:1736 -#: ../../enterprise/godmode/policies/policy_agents.php:1751 -#: ../../mobile/operation/agent.php:167 ../../mobile/operation/alerts.php:68 -#: ../../godmode/massive/massive_edit_agents.php:917 -#: ../../godmode/massive/massive_edit_agents.php:1017 -#: ../../godmode/massive/massive_edit_modules.php:765 -#: ../../godmode/agentes/module_manager_editor_common.php:257 -#: ../../godmode/agentes/module_manager_editor_common.php:897 -#: ../../godmode/agentes/module_manager_editor_common.php:1059 -#: ../../godmode/agentes/modificar_agente.php:761 -#: ../../godmode/alerts/configure_alert_template.php:899 -#: ../../godmode/alerts/alert_list.list.php:139 -#: ../../godmode/alerts/alert_view.php:541 -#: ../../godmode/groups/group_list.php:908 -msgid "Disabled" -msgstr "DĆ©sactivĆ©" - -#: ../../operation/search_agents.php:100 -#: ../../operation/agentes/estado_agente.php:831 -#: ../../operation/agentes/estado_generalagente.php:112 -#: ../../operation/agentes/estado_generalagente.php:122 -#: ../../include/ajax/module.php:1128 ../../include/class/Tree.class.php:907 -#: ../../enterprise/views/cluster/view.php:168 -#: ../../enterprise/views/cluster/view.php:170 -#: ../../enterprise/godmode/services/services.service.php:746 -#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:1028 -#: ../../enterprise/godmode/massive/massive_create_services.php:819 -#: ../../mobile/operation/agent.php:174 -#: ../../godmode/massive/massive_edit_agents.php:990 -#: ../../godmode/massive/massive_edit_modules.php:1104 -#: ../../godmode/agentes/module_manager.php:985 -#: ../../godmode/agentes/module_manager_editor_common.php:1056 -#: ../../godmode/agentes/agent_manager.php:683 -#: ../../godmode/agentes/planned_downtime.editor.php:594 -#: ../../godmode/agentes/planned_downtime.list.php:655 -#: ../../godmode/agentes/modificar_agente.php:775 -msgid "Quiet" -msgstr "Mode silencieux" - -#: ../../operation/search_agents.php:111 -#: ../../operation/agentes/estado_agente.php:839 -#: ../../operation/agentes/estado_generalagente.php:133 -#: ../../operation/agentes/estado_generalagente.php:141 -#: ../../enterprise/views/cluster/view.php:178 -#: ../../enterprise/views/cluster/view.php:186 -#: ../../godmode/agentes/modificar_agente.php:783 -msgid "Agent in scheduled downtime" -msgstr "Agent dans temps d'arrĆŖt programmĆ©" - -#: ../../operation/search_agents.php:132 ../../operation/search_agents.php:133 -#: ../../operation/agentes/ver_agente.php:1357 -#: ../../enterprise/tools/ipam/ipam.php:426 -#: ../../enterprise/meta/advanced/metasetup.consoles.php:841 -#: ../../enterprise/godmode/agentes/agent_autoconfiguration.php:99 -#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:266 -msgid "Manage" -msgstr "GĆ©rer" - -#: ../../operation/events/events_rss.php:195 -msgid "Your IP is not into the IP list with API access." -msgstr "Votre adresse IP n'est pas dans la liste IP avec accĆØs Ć  l'API" - -#: ../../operation/events/events_rss.php:214 -msgid "The URL of your feed has bad hash." -msgstr "L'URL de votre flux a un mauvais hachage." - -#: ../../operation/events/sound_events.php:86 -msgid "Sound console" -msgstr "Console sonore" - -#: ../../operation/events/sound_events.php:145 -#: ../../include/functions_reporting.php:11419 -#: ../../enterprise/meta/monitoring/custom_fields_view.php:452 -msgid "Monitor critical" -msgstr "Moniteur en Ć©tat critique" - -#: ../../operation/events/sound_events.php:154 -#: ../../include/functions_reporting.php:11434 -#: ../../enterprise/meta/monitoring/custom_fields_view.php:485 -msgid "Monitor unknown" -msgstr "Moniteur inconnu" - -#: ../../operation/events/sound_events.php:163 -#: ../../include/functions_reporting.php:11423 -#: ../../enterprise/meta/monitoring/custom_fields_view.php:463 -msgid "Monitor warning" -msgstr "Moniteur en Ć©tat d'alerte" - -#: ../../operation/events/sound_events.php:186 -msgid "Event" -msgstr "ƉvĆ©nement" - -#: ../../operation/events/events.build_table.php:81 -msgid "More detail" -msgstr "Plus de dĆ©tails" - -#: ../../operation/events/events.build_table.php:105 -#: ../../operation/events/events.build_table.php:107 -msgid "The Agent: " -msgstr "Agent : " - -#: ../../operation/events/events.build_table.php:105 -#: ../../operation/events/events.build_table.php:107 -msgid " has " -msgstr " a " - -#: ../../operation/events/events.build_table.php:105 -#: ../../operation/events/events.build_table.php:107 -msgid " events." -msgstr " des Ć©vĆ©nements." - -#: ../../operation/events/events.build_table.php:134 -#: ../../operation/events/events.build_table.php:1164 -#: ../../include/functions_events.php:2576 -#: ../../include/functions_events.php:2579 -#: ../../include/functions_reporting.php:2002 -#: ../../include/functions_reporting.php:2303 -#: ../../include/functions_reporting_html.php:5930 -#: ../../include/functions_reporting_html.php:6115 -#: ../../mobile/operation/events.php:865 -msgid "No events" -msgstr "Aucun Ć©vĆ©nement" - -#: ../../operation/events/events.build_table.php:156 -#: ../../operation/events/events.php:1252 -#: ../../operation/events/events_list.php:821 -#: ../../include/class/AgentWizard.class.php:1181 -#: ../../include/functions_events.php:6660 -#: ../../include/functions_reporting_html.php:2101 -#: ../../enterprise/operation/log/log_viewer.php:613 -#: ../../enterprise/operation/inventory/inventory.php:331 -#: ../../enterprise/include/functions_reporting_csv.php:2733 -#: ../../enterprise/include/class/SAPView.class.php:226 -#: ../../enterprise/include/class/CSVImportAgents.class.php:154 -#: ../../enterprise/include/functions_events.php:283 -#: ../../enterprise/meta/include/functions_wizard_meta.php:174 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1799 -#: ../../enterprise/meta/monitoring/custom_fields_csv.php:101 -#: ../../enterprise/meta/monitoring/custom_fields_view.php:706 -#: ../../enterprise/meta/monitoring/wizard/wizard.manage_alert.php:197 -#: ../../enterprise/meta/advanced/policymanager.queue.php:256 -#: ../../enterprise/meta/agentsearch.php:133 -#: ../../enterprise/meta/agentsearch.php:326 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1962 -#: ../../godmode/modules/manage_network_components.php:749 -#: ../../godmode/reporting/reporting_builder.item_editor.php:1098 -#: ../../godmode/reporting/reporting_builder.item_editor.php:3501 -#: ../../godmode/massive/massive_edit_agents.php:743 -#: ../../godmode/wizards/DiscoveryTaskList.class.php:1043 -#: ../../godmode/agentes/module_manager.php:844 -#: ../../godmode/agentes/agent_manager.php:414 -msgid "Server" -msgstr "Serveur" - -#: ../../operation/events/events.build_table.php:162 -#: ../../include/functions_events.php:4979 -#: ../../include/functions_events.php:6672 ../../mobile/operation/events.php:512 -msgid "Event ID" -msgstr "Identification de l'Ć©vĆ©nement" - -#: ../../operation/events/events.build_table.php:172 -#: ../../include/functions_events.php:233 ../../include/functions_events.php:6678 -#: ../../mobile/operation/events.php:124 -#: ../../godmode/events/custom_events.php:95 -msgid "Event Name" -msgstr "Nom de lā€™Ć©vĆ©nement" - -#: ../../operation/events/events.build_table.php:182 -#: ../../operation/events/events.php:1934 ../../include/functions_events.php:193 -#: ../../include/functions_events.php:239 ../../include/functions_events.php:2616 -#: ../../include/functions_events.php:6685 -#: ../../include/functions_treeview.php:617 -#: ../../include/functions_reporting_html.php:3386 -#: ../../enterprise/include/functions_reporting_csv.php:871 -#: ../../enterprise/include/functions_ipam.php:2039 -#: ../../enterprise/meta/include/functions_events_meta.php:66 -#: ../../mobile/operation/modules.php:597 ../../mobile/operation/modules.php:849 -#: ../../godmode/agentes/agent_manager.php:213 -#: ../../godmode/agentes/modificar_agente.php:647 -msgid "Agent name" -msgstr "Nom de l'agent" - -#: ../../operation/events/events.build_table.php:212 -#: ../../operation/incidents/integriaims_export_csv.php:89 -#: ../../operation/incidents/configure_integriaims_incident.php:312 -#: ../../operation/incidents/list_integriaims_incidents.php:342 -#: ../../operation/incidents/list_integriaims_incidents.php:522 -#: ../../include/functions_events.php:206 ../../include/functions_events.php:281 -#: ../../include/functions_events.php:5010 -#: ../../include/functions_events.php:6704 -#: ../../enterprise/meta/include/functions_events_meta.php:118 -#: ../../mobile/operation/events.php:520 -#: ../../godmode/setup/setup_integria.php:397 -#: ../../godmode/setup/setup_integria.php:519 -#: ../../godmode/events/custom_events.php:111 -msgid "Owner" -msgstr "PropriĆ©taire" - -#: ../../operation/events/events.build_table.php:232 -#: ../../include/functions_events.php:257 -#: ../../godmode/events/custom_events.php:103 -msgid "Event Type" -msgstr "Type d'Ć©vĆ©nement" - -#: ../../operation/events/events.build_table.php:243 -#: ../../include/class/ModuleTemplates.class.php:1207 -#: ../../include/class/AgentWizard.class.php:1180 -#: ../../include/class/AgentWizard.class.php:4021 -#: ../../include/functions_events.php:260 -#: ../../godmode/events/custom_events.php:104 -msgid "Module Name" -msgstr "Nom du module" - -#: ../../operation/events/events.build_table.php:273 -#: ../../operation/events/events.build_table.php:709 -#: ../../operation/events/events.php:1208 -#: ../../operation/events/events_list.php:1003 -#: ../../include/class/CustomNetScan.class.php:468 -#: ../../include/functions_events.php:202 ../../include/functions_events.php:269 -#: ../../include/functions_events.php:3753 -#: ../../include/functions_events.php:6741 -#: ../../include/functions_events.php:7127 -#: ../../enterprise/meta/include/functions_events_meta.php:102 -#: ../../godmode/events/event_edit_filter.php:633 -#: ../../godmode/events/custom_events.php:107 -#: ../../godmode/wizards/HostDevices.class.php:958 -msgid "Comment" -msgstr "Commentaire" - -#: ../../operation/events/events.build_table.php:293 -#: ../../operation/events/events.php:1188 -#: ../../operation/events/events_list.php:999 -#: ../../operation/agentes/log_sources_status.php:56 -#: ../../operation/agentes/pandora_networkmap.editor.php:336 -#: ../../operation/agentes/pandora_networkmap.view.php:136 -#: ../../include/functions_events.php:204 ../../include/functions_events.php:275 -#: ../../include/functions_events.php:4633 -#: ../../include/functions_events.php:4714 -#: ../../include/functions_events.php:6753 -#: ../../enterprise/operation/log/log_viewer.php:654 -#: ../../enterprise/include/class/LogSource.class.php:626 -#: ../../enterprise/include/functions_log.php:279 -#: ../../enterprise/include/functions_log.php:282 -#: ../../enterprise/meta/include/functions_events_meta.php:110 -#: ../../enterprise/meta/advanced/policymanager.sync.php:307 -#: ../../enterprise/godmode/massive/massive_add_modules_policy.php:147 -#: ../../godmode/reporting/reporting_builder.item_editor.php:1498 -#: ../../godmode/events/event_edit_filter.php:627 -#: ../../godmode/events/custom_events.php:109 -#: ../../godmode/massive/massive_copy_modules.php:144 -msgid "Source" -msgstr "Source" - -#: ../../operation/events/events.build_table.php:303 -#: ../../operation/events/events.php:1195 -#: ../../operation/events/events_list.php:1001 -#: ../../include/functions_events.php:6759 -#: ../../godmode/events/event_edit_filter.php:630 -msgid "Extra ID" -msgstr "Identifiant supplĆ©mentaire" - -#: ../../operation/events/events.build_table.php:313 -#: ../../include/functions_events.php:207 ../../include/functions_events.php:284 -#: ../../include/functions_events.php:6765 -#: ../../enterprise/meta/include/functions_events_meta.php:122 -#: ../../godmode/events/custom_events.php:112 -msgid "ACK Timestamp" -msgstr "Horodatage ACK" - -#: ../../operation/events/events.build_table.php:323 -#: ../../operation/events/events.php:2822 ../../include/functions_events.php:208 -#: ../../include/functions_events.php:287 ../../include/functions_events.php:4692 -#: ../../include/functions_events.php:6771 -#: ../../enterprise/meta/include/functions_events_meta.php:126 -#: ../../godmode/events/custom_events.php:113 -msgid "Instructions" -msgstr "Instructions" - -#: ../../operation/events/events.build_table.php:340 -#: ../../include/functions_events.php:296 -#: ../../godmode/events/custom_events.php:116 -#: ../../godmode/massive/massive_delete_modules.php:436 -#: ../../godmode/massive/massive_edit_modules.php:382 -msgid "Module Status" -msgstr "Ɖtat des modules" - -#: ../../operation/events/events.build_table.php:350 -#: ../../include/ajax/events.php:1552 ../../include/functions_events.php:213 -#: ../../include/functions_events.php:315 -#: ../../include/functions_reporting_html.php:1065 -#: ../../include/functions_reporting_html.php:1298 -#: ../../include/functions_reporting_html.php:2395 -#: ../../godmode/events/event_edit_filter.php:650 -#: ../../godmode/events/custom_events.php:119 -msgid "Custom data" -msgstr "DonnĆ©es personnalisĆ©es" - -#: ../../operation/events/events.build_table.php:420 -#: ../../operation/events/events.php:2249 ../../include/ajax/events.php:1784 -#: ../../include/functions_events.php:2652 -#: ../../include/functions_events.php:4820 -#: ../../include/functions_events.php:6832 -#: ../../include/functions_reporting.php:10704 -#: ../../include/functions_reporting_html.php:1082 -#: ../../include/functions_reporting_html.php:1319 -#: ../../include/functions_reporting_html.php:2411 -#: ../../mobile/operation/events.php:267 -msgid "New event" -msgstr "Nouvel Ć©vĆ©nement" - -#: ../../operation/events/events.build_table.php:425 -#: ../../operation/events/events.php:2255 ../../include/ajax/events.php:1789 -#: ../../include/functions_events.php:2657 -#: ../../include/functions_events.php:4826 -#: ../../include/functions_events.php:6837 -#: ../../include/functions_reporting.php:10709 -#: ../../include/functions_reporting_html.php:1087 -#: ../../include/functions_reporting_html.php:1324 -#: ../../include/functions_reporting_html.php:2416 -#: ../../mobile/operation/events.php:272 -msgid "Event validated" -msgstr "ƉvĆ©nement validĆ©" - -#: ../../operation/events/events.build_table.php:430 -#: ../../operation/events/events.php:2261 ../../include/ajax/events.php:1794 -#: ../../include/functions_events.php:2662 -#: ../../include/functions_events.php:4832 -#: ../../include/functions_events.php:6842 -#: ../../include/functions_reporting.php:10714 -#: ../../include/functions_reporting_html.php:1092 -#: ../../include/functions_reporting_html.php:1329 -#: ../../include/functions_reporting_html.php:2421 -#: ../../mobile/operation/events.php:277 -msgid "Event in process" -msgstr "ƉvĆ©nement en cours" - -#: ../../operation/events/events.build_table.php:856 -#: ../../operation/events/events.php:2203 ../../include/functions_events.php:7249 -msgid "Validate event" -msgstr "Valider l'Ć©vĆ©nement" - -#: ../../operation/events/events.build_table.php:867 -#: ../../operation/events/events.php:2215 -msgid "Change to in progress status" -msgstr "Passer Ć  Ć©tat en cours" - -#: ../../operation/events/events.build_table.php:884 -#: ../../operation/events/events.php:2227 ../../include/functions_events.php:3777 -#: ../../include/functions_events.php:3781 -#: ../../include/functions_events.php:7263 -msgid "Delete event" -msgstr "Supprimer l'Ć©vĆ©nement" - -#: ../../operation/events/events.build_table.php:894 -#: ../../include/functions_events.php:7272 -msgid "Is not allowed delete events in process" -msgstr "Vous ne pouvez pas supprimer les Ć©vĆ©nements en cours" - -#: ../../operation/events/events.build_table.php:1008 -#: ../../operation/events/events.php:1847 -msgid "Execute event response" -msgstr "ExĆ©cuter la rĆ©ponse Ć  l'Ć©vĆ©nement" - -#: ../../operation/events/events.build_table.php:1016 -#: ../../operation/events/events.php:1860 +#: ../../godmode/massive/massive_edit_modules.php:1061 +#: ../../godmode/massive/massive_edit_modules.php:1067 +#: ../../godmode/massive/massive_edit_modules.php:1080 +#: ../../godmode/massive/massive_edit_modules.php:1108 +#: ../../godmode/massive/massive_edit_modules.php:1212 +#: ../../include/functions_html.php:1850 ../../include/functions_html.php:1951 +#: ../../include/functions_html.php:2089 +msgid "No change" +msgstr "Aucune modification" + +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:648 +#: ../../godmode/agentes/agent_manager.php:496 +#: ../../godmode/reporting/reporting_builder.item_editor.php:73 +#: ../../include/functions_events.php:4655 +#: ../../operation/agentes/estado_generalagente.php:408 +msgid "Secondary groups" +msgstr "Groupes secondaires" + +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:695 +#: ../../godmode/massive/massive_edit_agents.php:804 +#: ../../include/functions_html.php:6068 +msgid "Add secondary groups" +msgstr "Ajouter des groupes secondaires" + +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:702 +#: ../../godmode/massive/massive_edit_agents.php:830 +#: ../../include/functions_html.php:6081 +msgid "Remove secondary groups" +msgstr "Supprimer des groupes secondaires" + +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:739 +#: ../../enterprise/godmode/policies/configure_policy.php:47 +msgid "Add policy" +msgstr "Ajouter une politique" + +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:754 +#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:380 +msgid "Op" +msgstr "Op" + +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:771 +msgid "Extra configuration block" +msgstr "Bloc de configuration supplĆ©mentaire" + +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:773 +msgid "" +"Put here any extra configuration you want to be applied to any new agent matching " +"previously defined rules" +msgstr "" +"Mettez ici toute configuration supplĆ©mentaire que vous souhaitez appliquer Ć  tout " +"nouvel agent correspondant Ć  des rĆØgles prĆ©cĆ©demment dĆ©finies" + +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:806 +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:837 +msgid "Extra actions" +msgstr "Actions supplĆ©mentaires" + +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:827 +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:1145 +msgid "Add extra action" +msgstr "Ajouter une action supplĆ©mentaire" + +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:1010 +msgid "Add new rule" +msgstr "Ajouter une nouvelle rĆØgle" + +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:1012 +#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:188 +msgid "Update rule" +msgstr "Mettre Ć  jour la rĆØgle" + +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:1232 +msgid "Update extra action" +msgstr "Mettre Ć  jour lā€™action supplĆ©mentaire" + +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.php:47 +msgid "Cannot delete autoconfiguration" +msgstr "Impossible de supprimer la configuration automatique" + +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.php:62 +#: ../../godmode/setup/license.php:151 ../../godmode/setup/license.php:154 +msgid "enabled" +msgstr "activĆ©" + +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.php:63 +msgid "enabling" +msgstr "activation" + +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.php:65 +#: ../../godmode/setup/license.php:151 ../../godmode/setup/license.php:154 +msgid "disabled" +msgstr "dĆ©sactivĆ©" + +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.php:66 +msgid "disabling" +msgstr "dĆ©sactivation" + +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.php:71 #, php-format -msgid "A maximum of %s event custom responses can be selected" -msgstr "" -"Un maximum de %s rĆ©ponses personnalisĆ©es d'Ć©vĆ©nement peut ĆŖtre sĆ©lectionnĆ©" +msgid "Successfully %s" +msgstr "%s avec succĆØs" -#: ../../operation/events/events.build_table.php:1021 -#: ../../operation/events/events.php:1865 -msgid "Please, select an event" -msgstr "Veuillez sĆ©lectionner un Ć©vĆ©nement" +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.php:72 +#, php-format +msgid "Error %s" +msgstr "Erreur %s" -#: ../../operation/events/events.php:621 ../../operation/events/events.php:695 -#: ../../operation/events/events_list.php:613 -#: ../../operation/events/events_list.php:689 -#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:271 -#: ../../include/class/ManageNetScanScripts.class.php:471 -#: ../../include/functions_notifications.php:963 -#: ../../include/functions_snmp_browser.php:1558 -#: ../../enterprise/tools/ipam/ipam_vlan_config.php:830 -#: ../../enterprise/tools/ipam/ipam_supernet_config.php:1321 -#: ../../enterprise/operation/agentes/manage_transmap_creation.php:308 -#: ../../enterprise/include/ajax/log_viewer.ajax.php:93 -#: ../../enterprise/include/ajax/servers.ajax.php:144 -#: ../../enterprise/include/ajax/servers.ajax.php:177 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2242 -#: ../../enterprise/meta/include/functions_autoprovision.php:703 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1368 -#: ../../enterprise/meta/advanced/metasetup.consoles.php:739 -#: ../../enterprise/meta/advanced/metasetup.visual.php:411 -#: ../../enterprise/meta/advanced/links.php:189 -#: ../../enterprise/godmode/setup/setup_metaconsole.php:247 -#: ../../enterprise/godmode/setup/setup_metaconsole.php:357 -#: ../../enterprise/godmode/setup/setup_acl.php:532 -#: ../../enterprise/godmode/setup/setup_acl.php:558 -#: ../../enterprise/godmode/servers/manage_export_form.php:138 -#: ../../enterprise/godmode/servers/credential_boxes_satellite.php:298 -#: ../../enterprise/godmode/servers/manage_credential_boxes.php:82 -#: ../../enterprise/godmode/reporting/graph_template_item_editor.php:251 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:354 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:512 -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:245 -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:506 -#: ../../enterprise/godmode/reporting/visual_console_builder.wizard_services.php:190 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:268 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:847 -#: ../../enterprise/godmode/massive/massive_edit_tags_policy.php:168 -#: ../../enterprise/godmode/massive/massive_add_alerts_policy.php:138 -#: ../../enterprise/godmode/massive/massive_tags_edit_policy.php:152 -#: ../../enterprise/godmode/agentes/inventory_manager.php:185 -#: ../../enterprise/godmode/agentes/agent_disk_conf_editor.php:230 -#: ../../enterprise/godmode/agentes/collection_manager.php:113 -#: ../../enterprise/godmode/agentes/collection_manager.php:142 -#: ../../enterprise/godmode/agentes/plugins_manager.php:163 -#: ../../enterprise/godmode/alerts/alert_inventory_list.php:398 -#: ../../enterprise/godmode/policies/policy_external_alerts.php:607 -#: ../../enterprise/godmode/policies/policy_external_alerts.php:703 -#: ../../enterprise/godmode/policies/policy_inventory_modules.php:263 -#: ../../enterprise/godmode/policies/policy_alerts.php:605 -#: ../../enterprise/godmode/policies/policy_alerts.php:670 -#: ../../enterprise/godmode/policies/policy_collections.php:267 -#: ../../enterprise/godmode/policies/policy_plugins.php:144 -#: ../../extensions/files_repo/files_repo_form.php:105 -#: ../../godmode/setup/setup_visuals.php:1297 -#: ../../godmode/setup/setup_visuals.php:1352 -#: ../../godmode/setup/setup_visuals.php:1372 ../../godmode/setup/news.php:299 -#: ../../godmode/setup/links.php:173 ../../godmode/servers/plugin.php:909 -#: ../../godmode/modules/manage_network_templates_form.php:347 -#: ../../godmode/gis_maps/configure_gis_map.php:631 -#: ../../godmode/reporting/graph_builder.graph_editor.php:352 -#: ../../godmode/reporting/visual_console_builder.wizard.php:531 -#: ../../godmode/snmpconsole/snmp_alert.php:1494 -#: ../../godmode/events/event_edit_filter.php:509 -#: ../../godmode/events/event_edit_filter.php:562 -#: ../../godmode/agentes/planned_downtime.editor.php:881 -#: ../../godmode/agentes/planned_downtime.editor.php:1055 -#: ../../godmode/alerts/alert_list.list.php:801 -#: ../../godmode/users/configure_profile.php:403 -msgid "Add" -msgstr "Ajouter" +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.php:156 +msgid "There are no defined autoconfigurations" +msgstr "Il nā€™y a pas de configuration automatique dĆ©finie" -#: ../../operation/events/events.php:794 -msgid "Event viewer" -msgstr "Visionneur d'Ć©vĆ©nements" +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.php:173 +#: ../../enterprise/godmode/agentes/plugins_manager.php:195 +#: ../../enterprise/godmode/agentes/plugins_manager.php:262 +#: ../../enterprise/godmode/policies/policy_alerts.php:722 +#: ../../enterprise/include/functions_HA_cluster.php:61 +#: ../../enterprise/include/lib/Metaconsole/Node.php:1113 +#: ../../enterprise/include/lib/Metaconsole/Node.php:1114 +#: ../../godmode/extensions.php:257 ../../godmode/users/user_list.php:745 +#: ../../godmode/alerts/alert_list.list.php:1045 +#: ../../operation/users/user_edit_notifications.php:64 +msgid "Enable" +msgstr "Activer" -#: ../../operation/events/events.php:830 ../../operation/users/user_edit.php:358 -#: ../../godmode/events/events.php:41 ../../godmode/users/configure_user.php:1111 -msgid "Event list" -msgstr "Liste d'Ć©vĆ©nements" +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.php:173 +#: ../../enterprise/godmode/agentes/plugins_manager.php:195 +#: ../../enterprise/godmode/agentes/plugins_manager.php:271 +#: ../../enterprise/godmode/policies/policy_alerts.php:714 +#: ../../enterprise/include/functions_HA_cluster.php:58 +#: ../../enterprise/include/lib/Metaconsole/Node.php:1139 +#: ../../enterprise/include/lib/Metaconsole/Node.php:1140 +#: ../../godmode/extensions.php:259 ../../godmode/users/user_list.php:740 +#: ../../godmode/alerts/alert_list.list.php:1018 ../../include/functions.php:3357 +msgid "Disable" +msgstr "DĆ©sactiver" -#: ../../operation/events/events.php:841 -msgid "History event list" -msgstr "Liste des Ć©vĆ©nements de l'historique" +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.php:194 +msgid "Add new configuration definition" +msgstr "Ajouter une nouvelle dĆ©finition de configuration" -#: ../../operation/events/events.php:852 -msgid "RSS Events" -msgstr "ƉvĆ©nements RSS" +#: ../../enterprise/godmode/agentes/collections.agents.php:36 +msgid "Show Agent >" +msgstr "Afficher lā€™agent >" -#: ../../operation/events/events.php:863 -msgid "Export to CSV file" -msgstr "Exporter dans un fichier CSV" +#: ../../enterprise/godmode/agentes/collections.agents.php:120 +#: ../../enterprise/godmode/agentes/collections.agents.php:124 +msgid "This collection has not been added to any agents" +msgstr "Cette collection nā€™a Ć©tĆ© ajoutĆ©e Ć  aucun agent" -#: ../../operation/events/events.php:874 ../../operation/events/events.php:922 -msgid "Sound events" -msgstr "ƉvĆ©nements sonores" +#: ../../enterprise/godmode/agentes/configurar_agente.php:112 +#: ../../enterprise/godmode/policies/policy.php:82 +#: ../../enterprise/include/functions_policies.php:3832 +#: ../../godmode/agentes/configurar_agente.php:718 +msgid "Agent plugins" +msgstr "Plugins d'agents" -#: ../../operation/events/events.php:887 ../../godmode/events/events.php:116 -#: ../../godmode/events/events.php:124 -#: ../../godmode/users/configure_profile.php:306 -msgid "Manage events" -msgstr "GĆ©rer les Ć©vĆ©nements" +#: ../../enterprise/godmode/agentes/collection_manager.php:37 +#: ../../enterprise/operation/agentes/collection_view.php:60 +msgid "This agent have not a remote configuration, please set it." +msgstr "Cet agent n'a pas de configuration Ć  distance. Veuillez la dĆ©finir." -#: ../../operation/events/events.php:927 -msgid "History" -msgstr "Historique" +#: ../../enterprise/godmode/agentes/collection_manager.php:77 +msgid "Succesful add the collection" +msgstr "La collection a Ć©tĆ© ajoutĆ©e correctement" -#: ../../operation/events/events.php:990 -msgid "Errors" -msgstr "Erreurs" +#: ../../enterprise/godmode/agentes/collection_manager.php:78 +msgid "Unsuccesful add the collection" +msgstr "Erreur d'ajout de la collection" -#: ../../operation/events/events.php:1016 +#: ../../enterprise/godmode/agentes/collection_manager.php:129 +#: ../../enterprise/godmode/agentes/collection_manager.php:130 +#: ../../enterprise/godmode/agentes/collection_manager.php:254 +#: ../../enterprise/operation/agentes/policy_view.php:195 +#: ../../enterprise/operation/agentes/policy_view.php:196 +#: ../../enterprise/operation/agentes/collection_view.php:108 +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:1256 +#: ../../enterprise/operation/log/log_viewer.php:1264 +#: ../../enterprise/operation/inventory/inventory.php:475 +#: ../../enterprise/operation/inventory/inventory.php:518 +#: ../../godmode/reporting/reporting_builder.php:1260 +#: ../../include/functions_reporting.php:2809 +msgid "No data found." +msgstr "Aucune donnĆ©e retrouvĆ©e" + +#: ../../enterprise/godmode/agentes/collection_manager.php:205 +#: ../../enterprise/godmode/agentes/inventory_manager.php:219 +#: ../../enterprise/operation/agentes/collection_view.php:74 +#: ../../godmode/agentes/module_manager.php:841 +#: ../../godmode/snmpconsole/snmp_alert.php:1254 +#: ../../godmode/reporting/reporting_builder.list_items.php:371 +#: ../../godmode/reporting/graph_builder.graph_editor.php:211 +#: ../../include/ajax/alert_list.ajax.php:285 ../../include/ajax/module.php:974 +#: ../../operation/agentes/status_monitor.php:1302 +msgid "P." +msgstr "P." + +#: ../../enterprise/godmode/agentes/collection_manager.php:207 +#: ../../enterprise/operation/agentes/policy_view.php:164 +#: ../../enterprise/operation/agentes/collection_view.php:76 +msgid "Dir" +msgstr "RĆ©pertoire" + +#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:24 +msgid "Capacity planning" +msgstr "Planification de la capacitĆ©" + +#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:25 +#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:166 +#: ../../enterprise/godmode/services/services.elements.php:95 +#: ../../enterprise/godmode/services/services.elements.php:178 +#: ../../enterprise/include/functions_visual_map_editor.php:30 +#: ../../enterprise/include/functions_visual_map_editor.php:41 +#: ../../enterprise/include/functions_visual_map_editor.php:54 +#: ../../enterprise/include/functions_visual_map_editor.php:85 +#: ../../enterprise/include/functions_visual_map.php:539 +#: ../../enterprise/include/rest-api/models/VisualConsole/Items/Service.php:288 +#: ../../enterprise/include/functions_reporting.php:6137 +#: ../../enterprise/include/functions_services.php:1712 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3921 +#: ../../include/lib/Dashboard/Widgets/service_map.php:307 +msgid "Service" +msgstr "Service" + +#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:26 +msgid "Synthetic arithmetic" +msgstr "ArithmĆ©tique synthĆ©tique" + +#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:27 +msgid "Synthetic average" +msgstr "Moyenne synthĆ©tique" + +#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:28 +msgid "Trending module" +msgstr "Module tendance" + +#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:114 +msgid "Fixed value" +msgstr "Valeur fixe" + +#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:119 +msgid "Add module to operation as add" +msgstr "Ajouter un module Ć  l'opĆ©ration comme somme" + +#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:120 +msgid "Add module to operations as deduct" +msgstr "Ajouter un module Ć  l'opĆ©ration comme soustraction" + +#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:121 +msgid "Add module to operations as multiplicate " +msgstr "Ajouter un module Ć  l'opĆ©ration comme multiplication " + +#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:122 +msgid "Add module to operations as divide" +msgstr "Ajouter un module Ć  l'opĆ©ration comme division" + +#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:123 +msgid "Remove selected modules" +msgstr "Supprimer les modules sĆ©lectionnĆ©s" + +#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:128 +msgid "Add module to average operation" +msgstr "Ajouter un module Ć  l'opĆ©ration moyenne" + +#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:129 +msgid "Remove selected modules from operations stack" +msgstr "Supprimer les modules sĆ©lectionnĆ©s des opĆ©rations en attente" + +#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:144 +msgid "Move down selected modules" +msgstr "DĆ©placer les modules sĆ©lectionnĆ©s vers le bas" + +#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:145 +msgid "Move up selected modules" +msgstr "DĆ©placer les modules sĆ©lectionnĆ©s vers le haut" + +#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:175 +msgid "Select Service" +msgstr "SĆ©lectionner un service" + +#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:188 +msgid "Netflow filter" +msgstr "Filtre Netflow" + +#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:197 +msgid "Select filter" +msgstr "SĆ©lectionner un filtre" + +#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:207 +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:222 +#: ../../enterprise/include/functions_ui.php:92 +msgid "Target" +msgstr "Cible" + +#: ../../enterprise/godmode/agentes/inventory_manager.php:257 +#: ../../enterprise/include/functions_ipam.php:1384 +#: ../../enterprise/operation/services/services.list.php:639 +#: ../../godmode/wizards/DiscoveryTaskList.class.php:584 +#: ../../godmode/wizards/DiscoveryTaskList.class.php:674 +#: ../../include/ajax/module.php:1052 ../../include/functions_ui.php:1162 +#: ../../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" + +#: ../../enterprise/godmode/agentes/collections.data.php:395 +#: ../../enterprise/godmode/agentes/collections.editor.php:109 +#: ../../enterprise/godmode/agentes/collections.php:92 +#, php-format msgid "" -"Event viewer is disabled due event replication. For more information, please " -"contact with the administrator" +"This console is not manager of this environment, please manage this feature from " +"%s." msgstr "" -"Le visionneur d'Ć©vĆ©nements est dĆ©sactivĆ© Ć  cause de la rĆ©plication " -"d'Ć©vĆ©nements. Pour en savoir plus, veuillez communiquer avec l'administrateur." +"Cette console nā€™est pas gestionnaire de cet environnement, veuillez gĆ©rer cette " +"fonctionnalitĆ© Ć  partir de %s." -#: ../../operation/events/events.php:1067 -#: ../../operation/events/events_list.php:942 -#: ../../operation/agentes/status_monitor.php:496 -#: ../../operation/agentes/estado_agente.php:272 -#: ../../include/lib/Dashboard/Widgets/events_list.php:308 -#: ../../include/functions_events.php:3292 ../../include/functions.php:1277 -#: ../../enterprise/operation/agentes/tag_view.php:135 -#: ../../enterprise/meta/monitoring/custom_fields_view.php:183 -#: ../../enterprise/godmode/massive/massive_add_modules_policy.php:123 -#: ../../mobile/operation/modules.php:73 -#: ../../godmode/reporting/reporting_builder.item_editor.php:3625 -#: ../../godmode/events/event_edit_filter.php:315 -#: ../../godmode/massive/massive_delete_modules.php:422 -#: ../../godmode/massive/massive_delete_modules.php:443 -#: ../../godmode/massive/massive_copy_modules.php:119 -#: ../../godmode/massive/massive_copy_modules.php:279 -#: ../../godmode/massive/massive_edit_agents.php:535 -#: ../../godmode/massive/massive_delete_agents.php:213 -#: ../../godmode/massive/massive_edit_modules.php:389 -#: ../../godmode/massive/massive_edit_modules.php:475 -msgid "Not normal" -msgstr "Anormal" +#: ../../enterprise/godmode/agentes/collections.data.php:410 +msgid "Please go to the metaconsole and apply this collection" +msgstr "Veuillez vous rendre sur la MĆ©taconsole et appliquer cette collection" -#: ../../operation/events/events.php:1077 -#: ../../operation/events/events_list.php:937 -#: ../../include/lib/Dashboard/Widgets/events_list.php:321 -#: ../../include/functions_events.php:198 ../../include/functions_events.php:6716 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1383 -#: ../../enterprise/include/lib/AlertCorrelation.class.php:1083 -#: ../../enterprise/include/functions_events.php:127 -#: ../../enterprise/meta/include/functions_events_meta.php:86 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2843 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:643 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2847 -#: ../../godmode/events/event_edit_filter.php:317 -#: ../../godmode/events/event_filter.php:138 -msgid "Event type" -msgstr "Type d'Ć©vĆ©nement" +#: ../../enterprise/godmode/agentes/collections.data.php:414 +msgid "Error: The collection directory does not exist." +msgstr "Erreur : le rĆ©pertoire de la collection n'existe pas." -#: ../../operation/events/events.php:1091 ../../operation/events/events.php:1670 -#: ../../operation/events/events_list.php:970 -#: ../../include/lib/Dashboard/Widgets/events_list.php:378 -#: ../../enterprise/include/functions_events.php:107 -#: ../../godmode/events/event_edit_filter.php:350 -#: ../../godmode/events/event_filter.php:139 -msgid "Event status" -msgstr "Ɖtat des Ć©vĆ©nements" +#: ../../enterprise/godmode/agentes/collections.editor.php:98 +msgid "Files in " +msgstr "Les fichiers dans " -#: ../../operation/events/events.php:1111 -#: ../../operation/events/events_list.php:983 -#: ../../enterprise/godmode/setup/setup.php:161 -#: ../../godmode/events/event_edit_filter.php:436 -msgid "All events" -msgstr "Tous les Ć©vĆ©nements" +#: ../../enterprise/godmode/agentes/plugins_manager.php:66 +msgid "Plug-in updated succesfully" +msgstr "Plugin mis Ć  jour correctement" -#: ../../operation/events/events.php:1112 ../../operation/events/events.php:1720 -#: ../../operation/events/events_list.php:984 -#: ../../godmode/events/event_edit_filter.php:437 -msgid "Group events" -msgstr "ƉvĆ©nements du groupe" +#: ../../enterprise/godmode/agentes/plugins_manager.php:66 +msgid "Plug-in cannot be updated" +msgstr "Erreur de mise Ć  jour du plugin" -#: ../../operation/events/events.php:1113 -#: ../../operation/events/events_list.php:985 -#: ../../include/ajax/heatmap.ajax.php:78 -msgid "Group agents" -msgstr "Groupes d'agents" +#: ../../enterprise/godmode/agentes/plugins_manager.php:74 +msgid "Plug-in deleted succesfully" +msgstr "Plugin supprimĆ© correctement" -#: ../../operation/events/events.php:1122 -#: ../../operation/events/events_list.php:982 -#: ../../include/functions_events.php:5037 -#: ../../enterprise/include/functions_events.php:198 -#: ../../mobile/operation/events.php:528 -#: ../../godmode/events/event_edit_filter.php:438 -msgid "Repeated" -msgstr "RĆ©pĆ©tĆ©" +#: ../../enterprise/godmode/agentes/plugins_manager.php:74 +msgid "Plug-in cannot be deleted" +msgstr "Erreur de suppression du plugin" -#: ../../operation/events/events.php:1166 -#: ../../operation/events/events_list.php:384 -#: ../../operation/events/events_list.php:524 -#: ../../operation/events/events_list.php:535 -#: ../../operation/events/events_list.php:1053 -#: ../../operation/netflow/nf_live_view.php:397 -#: ../../include/ajax/custom_fields.php:587 ../../include/ajax/events.php:503 -#: ../../include/ajax/events.php:519 -#: ../../enterprise/meta/monitoring/custom_fields_view.php:236 -#: ../../enterprise/meta/monitoring/custom_fields_view.php:242 -#: ../../enterprise/meta/monitoring/custom_fields_view.php:243 -msgid "Load filter" -msgstr "Charger le filtre" +#: ../../enterprise/godmode/agentes/plugins_manager.php:87 +#: ../../enterprise/godmode/policies/policy_plugins.php:90 +msgid "Plug-in added succesfully" +msgstr "Plugin ajoutĆ© correctement" -#: ../../operation/events/events.php:1174 -#: ../../operation/events/events_list.php:376 -#: ../../operation/events/events_list.php:493 -#: ../../operation/events/events_list.php:1050 ../../include/ajax/events.php:759 -#: ../../enterprise/meta/monitoring/custom_fields_view.php:222 -#: ../../enterprise/meta/monitoring/custom_fields_view.php:228 -#: ../../enterprise/meta/monitoring/custom_fields_view.php:229 -msgid "Save filter" -msgstr "Sauvegarder le filtre" +#: ../../enterprise/godmode/agentes/plugins_manager.php:87 +#: ../../enterprise/godmode/policies/policy_plugins.php:91 +msgid "Plug-in cannot be added" +msgstr "Erreur d'ajout du plugin" -#: ../../operation/events/events.php:1246 -#: ../../operation/events/events_list.php:769 -#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:279 -#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:375 -#: ../../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/agentsearch.php:52 -#: ../../enterprise/meta/agentsearch.php:58 ../../mobile/operation/home.php:168 -#: ../../godmode/events/event_edit_filter.php:371 -msgid "Agent search" -msgstr "Rechercher agent" +#: ../../enterprise/godmode/agentes/plugins_manager.php:97 +msgid "Plug-in enabled succesfully" +msgstr "Plugin activĆ© correctement" -#: ../../operation/events/events.php:1263 -#: ../../operation/events/events_list.php:809 -#: ../../enterprise/meta/monitoring/custom_fields_view.php:293 -#: ../../godmode/events/event_edit_filter.php:614 -msgid "Module search" -msgstr "Rechercher module" +#: ../../enterprise/godmode/agentes/plugins_manager.php:98 +msgid "Plug-in cannot be enabled" +msgstr "Erreur d'activation du plugin" -#: ../../operation/events/events.php:1293 ../../operation/events/events.php:2632 -#: ../../operation/events/events_list.php:803 -#: ../../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/lib/Dashboard/Widgets/events_list.php:329 -#: ../../include/functions_profile.php:338 ../../include/functions_html.php:2278 -#: ../../include/functions_html.php:2279 ../../include/functions_html.php:2280 -#: ../../include/functions_html.php:2281 ../../include/functions_html.php:2282 -#: ../../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 -#: ../../enterprise/operation/services/services.list.php:249 -#: ../../enterprise/operation/services/services.list.php:279 -#: ../../enterprise/operation/services/services.table_services.php:171 -#: ../../enterprise/operation/services/services.table_services.php:201 -#: ../../enterprise/include/class/AgentRepository.class.php:650 -#: ../../enterprise/include/class/Omnishell.class.php:361 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1735 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3867 -#: ../../enterprise/include/class/DeploymentCenter.class.php:779 +#: ../../enterprise/godmode/agentes/plugins_manager.php:109 +msgid "Plug-in disabled succesfully" +msgstr "Plugin dĆ©sactivĆ© correctement" + +#: ../../enterprise/godmode/agentes/plugins_manager.php:110 +msgid "Plug-in cannot be disabled" +msgstr "Erreur de dĆ©sactivation du plugin" + +#: ../../enterprise/godmode/agentes/plugins_manager.php:127 +#: ../../enterprise/godmode/policies/policy_plugins.php:109 +msgid "If enabled, allows to define a complex module plugin or log." +msgstr "" +"Sā€™il est activĆ©, il permet de dĆ©finir un plugin ou un journal de module complexe." + +#: ../../enterprise/godmode/agentes/plugins_manager.php:142 +#: ../../enterprise/godmode/policies/policy_plugins.php:123 +msgid "New plug-in" +msgstr "Nouveau plugin" + +#: ../../enterprise/godmode/agentes/plugins_manager.php:192 +#: ../../enterprise/godmode/policies/policy_plugins.php:167 +#: ../../enterprise/godmode/policies/policies.php:535 ../../godmode/menu.php:301 +msgid "Plugins" +msgstr "Plugins" + +#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:58 +#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:61 +msgid "The changes on this field are linked with the configuration data." +msgstr "Les modifications de ce champ sont liĆ©es aux donnĆ©es de configuration." + +#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:67 +msgid "Using local component" +msgstr "Utilisation du composant local en cours" + +#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:76 +#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:96 +#: ../../godmode/agentes/module_manager_editor_common.php:118 +#: ../../godmode/agentes/module_manager_editor_common.php:135 +msgid "Manual setup" +msgstr "Configuration manuelle" + +#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:88 +#: ../../godmode/agentes/module_manager_editor_common.php:127 +msgid "No component was found" +msgstr "Aucun composant a Ć©tĆ© trouvĆ©" + +#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:155 +msgid "Show configuration data" +msgstr "Afficher les donnĆ©es de configuration" + +#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:166 +msgid "Hide configuration data" +msgstr "Cacher les donnĆ©es de configuration" + +#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:174 +msgid "Data configuration" +msgstr "Configuration des donnĆ©es" + +#: ../../enterprise/godmode/agentes/agent_disk_conf_editor.php:121 +msgid "Error: The conf file of agent is not readble." +msgstr "" +"Erreur : le fichier de configuration de l'agent n'est pas accessible en lecture." + +#: ../../enterprise/godmode/agentes/agent_disk_conf_editor.php:125 +msgid "Error: The conf file of agent is not writable." +msgstr "" +"Erreur: Le fichier de configuraton de l'agent n'est pas accessible en Ć©criture." + +#: ../../enterprise/godmode/agentes/agent_disk_conf_editor.php:178 +#: ../../enterprise/godmode/policies/policy_modules.php:387 +msgid "Add module" +msgstr "Ajouter un module" + +#: ../../enterprise/godmode/agentes/agent_disk_conf_editor.php:213 +msgid "No module was found" +msgstr "Aucun module a Ć©tĆ© trouvĆ©" + +#: ../../enterprise/godmode/agentes/agent_disk_conf_editor.php:248 +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:349 +#: ../../godmode/agentes/agent_manager.php:534 +msgid "Delete remote configuration file" +msgstr "Effacer le fichier de configuration Ć  distance" + +#: ../../enterprise/godmode/agentes/agent_disk_conf_editor.php:249 +msgid "" +"Delete this conf file implies that for restore you must reactive remote config in " +"the local agent." +msgstr "" +"Si vous supprimez ce fichier de configuration, vous devrez rĆ©activer la " +"configuration Ć  distance dans l'agent local pour le rĆ©tablir." + +#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:98 +#: ../../godmode/agentes/module_manager_editor_common.php:238 +msgid "Delete module" +msgstr "Supprimer le module" + +#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:127 +msgid "Run performance tests" +msgstr "ExĆ©cuter des tests de performances" + +#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:138 +msgid "Target web site" +msgstr "Site Web cible" + +#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:140 +msgid "The url specified in this field is mandatory to retrieve performance stats." +msgstr "" +"Lā€™URL spĆ©cifiĆ©e dans ce champ est obligatoire pour rĆ©cupĆ©rer les statistiques de " +"performances." + +#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:154 +msgid "target web site (http://...)" +msgstr "site web cible (http://...)" + +#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:161 +msgid "Execute tests from" +msgstr "ExĆ©cuter des tests Ć  partir de" + +#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:177 +msgid "Browser" +msgstr "Navigateur" + +#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:179 +msgid "" +"Support for IE and Edge browsers is experimental. Tests might not work as " +"expected." +msgstr "" +"La prise en charge des navigateurs IE et Edge est expĆ©rimentale. Les tests " +"peuvent ne pas fonctionner comme prĆ©vu." + +#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:221 +msgid "Accept insecure certificates" +msgstr "Accepter les certificats non sĆ©curisĆ©s" + +#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:223 +msgid "Only Selenium 3." +msgstr "Seulement SĆ©lĆ©nium 3." + +#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:349 +msgid "Paste your selenium test, exported as HTML, here" +msgstr "Collez votre test de sĆ©lĆ©nium, exportĆ© au format HTML, ici" + +#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:362 +msgid "Add file" +msgstr "Ajouter un fichier" + +#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:370 +msgid "Upload your selenium test in html or side (only Selenium 3) format" +msgstr "" +"TĆ©lĆ©chargez votre test de sĆ©lĆ©nium au format html ou side (uniquement Selenium 3)" + +#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:398 +#: ../../enterprise/tools/ipam/ipam_excel.php:212 +#: ../../enterprise/tools/ipam/ipam_vlan_config.php:342 +#: ../../enterprise/tools/ipam/ipam_vlan_config.php:674 +#: ../../godmode/groups/configure_group.php:238 +#: ../../godmode/agentes/agent_manager.php:198 +#: ../../godmode/agentes/module_manager_editor_common.php:567 +#: ../../godmode/massive/massive_edit_agents.php:798 +msgid "Custom ID" +msgstr "Identifiant personnalisĆ©" + +#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:454 +#: ../../godmode/agentes/module_manager.php:1105 +msgid "" +"The policy modules of data type will only update their intervals when policy is " +"applied." +msgstr "" +"Les modules de politique de type donnĆ©es mettent Ć  jour leurs intervalles que " +"lorsque la politique est appliquĆ©e." + +#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:480 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:961 +#: ../../godmode/agentes/module_manager_editor_common.php:865 +#: ../../godmode/massive/massive_edit_modules.php:1014 +msgid "FF interval" +msgstr "Intervalle FF" + +#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:496 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:962 +#: ../../godmode/massive/massive_edit_modules.php:1024 +msgid "Module execution flip flop time interval (in secs)." +msgstr "Intervalle de flip-flop d'exĆ©cution de module (en secondes)." + +#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:500 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:1057 +#: ../../enterprise/operation/agentes/manage_transmap_creation_phases_data.php:77 +#: ../../godmode/agentes/module_manager_editor_common.php:1138 +#: ../../godmode/massive/massive_edit_modules.php:1135 +msgid "Retries" +msgstr "Tentatives" + +#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:515 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:1059 +#: ../../godmode/massive/massive_edit_modules.php:1137 +msgid "Number of retries that the module will attempt to run." +msgstr "Nombre de tentatives que le module tente d'Ć©xĆ©cuter." + +#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:574 +#: ../../enterprise/godmode/policies/policy_modules.php:417 +#: ../../godmode/agentes/module_manager_editor.php:750 +#: ../../godmode/agentes/module_manager_editor_common.php:1226 +msgid "Custom macros" +msgstr "Macros personnalisĆ©es" + +#: ../../enterprise/godmode/agentes/pandora_networkmap_empty.editor.php:93 +#: ../../godmode/agentes/pandora_networkmap_empty.editor.php:95 +msgid "Empty Network maps editor" +msgstr "Ɖditeur de cartes rĆ©seau vide" + +#: ../../enterprise/godmode/agentes/pandora_networkmap_empty.editor.php:102 +#: ../../enterprise/godmode/services/services.service.php:493 +#: ../../enterprise/godmode/services/services.elements.php:799 +#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:117 +#: ../../enterprise/godmode/reporting/visual_console_template.php:118 +#: ../../enterprise/operation/services/services.service.php:79 +#: ../../enterprise/operation/services/services.service_map.php:93 +#: ../../enterprise/operation/services/services.treeview_services.php:78 +#: ../../enterprise/operation/services/services.list.php:71 +#: ../../enterprise/operation/services/services.table_services.php:54 +#: ../../godmode/agentes/pandora_networkmap_empty.editor.php:104 +#: ../../godmode/reporting/visual_console_builder.php:878 +#: ../../godmode/reporting/map_builder.php:130 +#: ../../godmode/reporting/visual_console_favorite.php:127 +#: ../../operation/visual_console/view.php:226 +#: ../../operation/agentes/pandora_networkmap.editor.php:214 +#: ../../operation/agentes/pandora_networkmap.php:665 ../../operation/menu.php:300 +msgid "Topology maps" +msgstr "Cartes de topologie" + +#: ../../enterprise/godmode/agentes/pandora_networkmap_empty.editor.php:106 +#: ../../godmode/agentes/pandora_networkmap_empty.editor.php:108 +#: ../../operation/agentes/pandora_networkmap.editor.php:218 +#: ../../operation/agentes/pandora_networkmap.php:669 +#: ../../operation/agentes/pandora_networkmap.view.php:2230 +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:256 +#: ../../operation/agentes/pandora_networkmap.view.php:2236 +msgid "Not found networkmap." +msgstr "Aucune carte de rĆ©seau retrouvĆ©e" + +#: ../../enterprise/godmode/agentes/pandora_networkmap_empty.editor.php:173 +#: ../../godmode/agentes/pandora_networkmap_empty.editor.php:175 +#: ../../operation/agentes/pandora_networkmap.editor.php:445 +msgid "Save networkmap" +msgstr "Enregistrer la carte de rĆ©seau" + +#: ../../enterprise/godmode/agentes/pandora_networkmap_empty.editor.php:184 +#: ../../godmode/agentes/pandora_networkmap_empty.editor.php:186 +#: ../../operation/agentes/pandora_networkmap.editor.php:456 +msgid "Update networkmap" +msgstr "Mettre Ć  jour la carte de rĆ©seau" + +#: ../../enterprise/godmode/agentes/collections.php:65 +msgid "Success: recreate file" +msgstr "Fichier crĆ©Ć© Ć  nouveau correctement" + +#: ../../enterprise/godmode/agentes/collections.php:67 +msgid "Error: recreate file " +msgstr "Impossible de crĆ©er le fichier Ć  nouveau " + +#: ../../enterprise/godmode/agentes/collections.php:82 +#: ../../enterprise/godmode/agentes/collections.php:123 +#: ../../enterprise/godmode/agentes/collections.php:232 +msgid "Collections Management" +msgstr "Gestion des collections" + +#: ../../enterprise/godmode/agentes/collections.php:175 +msgid "Manager collection" +msgstr "Gestionnaire de collections" + +#: ../../enterprise/godmode/agentes/manage_config_remote.php:56 +msgid "Data Copy" +msgstr "Copie de donnĆ©es" + +#: ../../enterprise/godmode/agentes/manage_config_remote.php:56 +msgid "Duplicate configuration" +msgstr "Dupliquer la configuration" + +#: ../../enterprise/godmode/agentes/manage_config_remote.php:78 +msgid "No source agent selected" +msgstr "Aucun agent de la source sĆ©lectionnĆ©" + +#: ../../enterprise/godmode/agentes/manage_config_remote.php:80 +msgid "No destination agent/s selected" +msgstr "Aucun agent de destination sĆ©lectionnĆ©" + +#: ../../enterprise/godmode/agentes/manage_config_remote.php:140 +#: ../../enterprise/godmode/agentes/manage_config_remote.php:152 +msgid "Copied " +msgstr "CopiĆ© " + +#: ../../enterprise/godmode/agentes/manage_config_remote.php:140 +#: ../../enterprise/godmode/agentes/manage_config_remote.php:146 +#: ../../enterprise/godmode/agentes/manage_config_remote.php:158 +msgid " md5 file/s" +msgstr " fichier(s) md5" + +#: ../../enterprise/godmode/agentes/manage_config_remote.php:146 +#: ../../enterprise/godmode/agentes/manage_config_remote.php:158 +msgid "Error copying " +msgstr "Erreur de copie " + +#: ../../enterprise/godmode/agentes/manage_config_remote.php:152 +msgid " config file/s" +msgstr " fichier(s) de configuration" + +#: ../../enterprise/godmode/agentes/manage_config_remote.php:225 +msgid "Source Group" +msgstr "Groupe source" + +#: ../../enterprise/godmode/agentes/manage_config_remote.php:256 +msgid "Destination agent(s)" +msgstr "Agent(s) de destination" + +#: ../../enterprise/godmode/agentes/manage_config_remote.php:268 +msgid "Source Agent" +msgstr "Agent source" + +#: ../../enterprise/godmode/agentes/manage_config_remote.php:293 +msgid "Replicate configuration" +msgstr "RĆ©pliquer la configuration" + +#: ../../enterprise/godmode/agentes/manage_config_remote.php:314 +msgid "The action to be performed cannot be reversed. Are you sure to continue?" +msgstr "Lā€™action Ć  faire ne peut pas sā€™inverser. Ɗtes-vous sĆ»r de continuer ?" + +#: ../../enterprise/godmode/agentes/module_manager.php:48 +msgid "Create a new web analysis module" +msgstr "CrĆ©er un nouveau module dā€™analyse Web" + +#: ../../enterprise/godmode/policies/policy_plugins.php:38 +#: ../../enterprise/godmode/policies/policy_alerts.php:64 +#: ../../enterprise/godmode/policies/configure_policy.php:81 +#: ../../enterprise/godmode/policies/policy_modules.php:476 +#: ../../enterprise/godmode/policies/policy_queue.php:218 +#: ../../enterprise/godmode/policies/policies.php:268 +#: ../../enterprise/godmode/policies/policy_linking.php:117 +#: ../../enterprise/godmode/policies/policy_external_alerts.php:309 +#: ../../enterprise/godmode/policies/policy_inventory_modules.php:91 +#: ../../enterprise/godmode/policies/policy_collections.php:50 +#: ../../enterprise/godmode/policies/policy_agents.php:326 +#: ../../enterprise/godmode/massive/massive_edit_tags_policy.php:40 +#: ../../enterprise/godmode/massive/massive_add_alerts_policy.php:38 +#: ../../enterprise/godmode/massive/massive_add_modules_policy.php:40 +#: ../../enterprise/godmode/massive/massive_tags_edit_policy.php:40 +#: ../../enterprise/godmode/massive/massive_delete_alerts_policy.php:38 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:38 +#: ../../enterprise/operation/agentes/policy_view.php:58 +#, php-format +msgid "" +"This node is configured with centralized mode. All policies information is read " +"only. Go to %s to manage it." +msgstr "" +"Ce nœud est configurĆ© en mode centralisĆ©. Toutes les informations sur les " +"politiques sont en lecture seule. Allez dans %s pour le gĆ©rer." + +#: ../../enterprise/godmode/policies/policy_plugins.php:56 +msgid "" +"Successfully added to delete pending plugins. Will be deleted in the next policy " +"application." +msgstr "" +"AjoutĆ© correctement Ć  la liste de plugins Ć  supprimer. Il sera supprimĆ© dans la " +"prochaine application de la politique." + +#: ../../enterprise/godmode/policies/policy_plugins.php:57 +msgid "Cannot be added to delete pending plugins." +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:1316 +#: ../../enterprise/godmode/policies/policy_external_alerts.php:150 +#: ../../enterprise/godmode/policies/policy_inventory_modules.php:169 +#: ../../enterprise/godmode/policies/policy_collections.php:103 +#: ../../enterprise/godmode/policies/policy_agents.php:113 +#: ../../enterprise/godmode/policies/policy_agents.php:129 +msgid "Successfully reverted deletion" +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:1317 +#: ../../enterprise/godmode/policies/policy_external_alerts.php:151 +#: ../../enterprise/godmode/policies/policy_inventory_modules.php:172 +#: ../../enterprise/godmode/policies/policy_collections.php:104 +#: ../../enterprise/godmode/policies/policy_agents.php:114 +#: ../../enterprise/godmode/policies/policy_agents.php:130 +msgid "Could not be reverted" +msgstr "Impossible de l'annuler" + +#: ../../enterprise/godmode/policies/policy_plugins.php:210 +msgid "There are no defined plugins" +msgstr "Aucun plugin dĆ©fini" + +#: ../../enterprise/godmode/policies/policy_alerts.php:94 +#: ../../enterprise/godmode/policies/policy_modules.php:599 +#: ../../enterprise/godmode/policies/policies.php:249 +#: ../../enterprise/godmode/policies/policy_linking.php:41 +#: ../../enterprise/godmode/policies/policy_external_alerts.php:77 +#: ../../enterprise/godmode/policies/policy_inventory_modules.php:98 +#: ../../enterprise/godmode/policies/policy_collections.php:63 +#: ../../enterprise/godmode/policies/policy_agents.php:85 +#: ../../godmode/agentes/module_manager_editor.php:542 +msgid "This policy is applying and cannot be modified" +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:535 +#: ../../enterprise/godmode/setup/setup_metaconsole.php:157 +#: ../../godmode/agentes/configurar_agente.php:2201 +#: ../../godmode/agentes/modificar_agente.php:278 +#: ../../godmode/massive/massive_enable_disable_alerts.php:124 +#: ../../godmode/alerts/alert_list.php:394 +#: ../../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:420 +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:421 +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:447 +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:448 +msgid "Could not be set off standby" +msgstr "Erreur de dĆ©sactivation du mode veille" + +#: ../../enterprise/godmode/policies/policy_alerts.php:249 +msgid " created successfuly" +msgstr "CrĆ©Ć© correctement" + +#: ../../enterprise/godmode/policies/policy_alerts.php:249 +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 +msgid "" +"Successfully added to delete pending alerts. Will be deleted in the next policy " +"application." +msgstr "" +"AjoutĆ© correctement aux alertes en attente de suppression. Il sera supprimĆ© dans " +"la suivante application de la politique." + +#: ../../enterprise/godmode/policies/policy_alerts.php:280 +#: ../../enterprise/godmode/policies/policy_external_alerts.php:200 +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_agents.php:251 +#: ../../enterprise/godmode/alerts/alert_inventory_list.php:92 +#: ../../godmode/massive/massive_delete_action_alerts.php:175 +#: ../../godmode/massive/massive_add_alerts.php:169 +#: ../../godmode/massive/massive_add_action_alerts.php:75 +#: ../../godmode/massive/massive_add_action_alerts.php:134 +#: ../../godmode/massive/massive_add_action_alerts.php:160 +#: ../../godmode/massive/massive_add_action_alerts.php:163 +#: ../../godmode/massive/massive_add_action_alerts.php:166 +#: ../../godmode/alerts/alert_list.php:272 +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 +msgid "Deleted action successfuly" +msgstr "Action supprimĆ©e correctement" + +#: ../../enterprise/godmode/policies/policy_alerts.php:428 +#: ../../enterprise/godmode/policies/policy_external_alerts.php:459 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2402 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3370 +#: ../../godmode/alerts/alert_list.list.php:651 +#: ../../godmode/alerts/alert_view.php:234 ../../include/functions_alerts.php:683 +msgid "Always" +msgstr "Toujours" + +#: ../../enterprise/godmode/policies/policy_alerts.php:430 +#: ../../enterprise/godmode/policies/policy_external_alerts.php:461 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3372 +#: ../../godmode/alerts/alert_list.list.php:653 +#: ../../include/class/Diagnostics.class.php:1181 +#: ../../include/class/Diagnostics.class.php:1185 +msgid "On" +msgstr "Actif" + +#: ../../enterprise/godmode/policies/policy_alerts.php:434 +#: ../../enterprise/godmode/policies/policy_external_alerts.php:465 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3376 +#: ../../godmode/alerts/alert_list.list.php:657 +msgid "Until" +msgstr "Jusqu'Ć " + +#: ../../enterprise/godmode/policies/policy_alerts.php:529 +#: ../../enterprise/godmode/policies/policy_modules.php:1573 +#: ../../enterprise/godmode/policies/policy_external_alerts.php:533 +#: ../../enterprise/godmode/policies/policy_inventory_modules.php:329 +#: ../../enterprise/godmode/policies/policy_agents.php:1066 +#: ../../enterprise/godmode/policies/policy_agents.php:1535 +msgid "Undo deletion" +msgstr "Annuler la suppression" + +#: ../../enterprise/godmode/policies/policy_alerts.php:596 +#: ../../enterprise/godmode/policies/policy_external_alerts.php:600 +#: ../../godmode/massive/massive_add_action_alerts.php:252 +#: ../../godmode/alerts/alert_list.list.php:768 +#: ../../godmode/alerts/alert_list.builder.php:127 +#: ../../include/ajax/alert_list.ajax.php:516 +#: ../../include/class/AgentsAlerts.class.php:314 +msgid "Number of alerts match from" +msgstr "Nombre d'alertes qui concordent avec" + +#: ../../enterprise/godmode/policies/policy_alerts.php:613 +msgid "There is not alerts configured in this policy." +msgstr "Aucune alerte externe nā€™est configurĆ©e dans cette politique." + +#: ../../enterprise/godmode/policies/policy_alerts.php:642 +#: ../../enterprise/godmode/massive/massive_add_alerts_policy.php:115 +#: ../../enterprise/godmode/massive/massive_delete_alerts_policy.php:125 +#: ../../godmode/massive/massive_standby_alerts.php:217 +#: ../../godmode/massive/massive_add_alerts.php:280 +#: ../../godmode/massive/massive_enable_disable_alerts.php:189 +#: ../../godmode/massive/massive_delete_alerts.php:271 +msgid "Alert template" +msgstr "ModĆØle d'alerte" + +#: ../../enterprise/godmode/policies/policy_alerts.php:653 +msgid "Policy module" +msgstr "Module de la politique" + +#: ../../enterprise/godmode/policies/policy_alerts.php:731 +#: ../../godmode/alerts/alert_list.list.php:1072 +msgid "Set off standby" +msgstr "DĆ©configurer le mode veille" + +#: ../../enterprise/godmode/policies/policy_alerts.php:740 +#: ../../godmode/alerts/alert_list.list.php:1099 +msgid "Set standby" +msgstr "Configurer mode veille" + +#: ../../enterprise/godmode/policies/policy_alerts.php:754 +#: ../../enterprise/godmode/policies/policy_external_alerts.php:508 +#: ../../enterprise/godmode/alerts/alert_inventory_list.php:344 +#: ../../enterprise/godmode/alerts/alert_inventory_list.php:350 +#: ../../enterprise/godmode/alerts/alert_inventory_list.php:444 +#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:488 +#: ../../godmode/snmpconsole/snmp_alert.php:1381 +#: ../../godmode/alerts/alert_list.list.php:914 +#: ../../godmode/alerts/alert_list.list.php:921 +#: ../../godmode/alerts/alert_list.list.php:1145 +msgid "Add action" +msgstr "Ajouter une action" + +#: ../../enterprise/godmode/policies/configure_policy.php:122 +msgid "Force Apply" +msgstr "Forcer lā€™application" + +#: ../../enterprise/godmode/policies/configure_policy.php:122 +msgid "" +"Force the creation of modules even if the software agent does not have remote " +"configuration" +msgstr "" +"Forcer la crĆ©ation de modules mĆŖme si lā€™agent logiciel nā€™a pas de configuration Ć  " +"distance" + +#: ../../enterprise/godmode/policies/policy_modules.php:299 +msgid "" +"If you change this description, you must change into the text of Data " +"configuration." +msgstr "" +"Si vous modifiez cette description, vous devez la changer dans le texte de " +"configuration de donnĆ©es." + +#: ../../enterprise/godmode/policies/policy_modules.php:372 +msgid "Invalid module type." +msgstr "Type de module non valide." + +#: ../../enterprise/godmode/policies/policy_modules.php:403 +#: ../../godmode/agentes/module_manager_editor.php:738 +msgid "Base options" +msgstr "Options de base" + +#: ../../enterprise/godmode/policies/policy_modules.php:548 +msgid "Could not be added module(s). You must select a policy" +msgstr "" +"Impossible d'ajouter le(s) module(s). Vous devez sĆ©lectionner une politique." + +#: ../../enterprise/godmode/policies/policy_modules.php:581 +#, php-format +msgid "Successfully added module(s) (%s/%s) to policy %s" +msgstr "Module(s) (%s/%s) ajoutĆ©(s) correctement Ć  la politique %s." + +#: ../../enterprise/godmode/policies/policy_modules.php:587 +#, php-format +msgid "Could not be added module(s) (%s/%s) to policy %s" +msgstr "Impossible d'ajouter le(s) module(s) (%s/%s) Ć  la politique %s" + +#: ../../enterprise/godmode/policies/policy_modules.php:623 +msgid "To define plugins please use plugin configuration tab." +msgstr "" +"Pour dĆ©finir les plugins, veuillez utiliser lā€™onglet de configuration des plugins." + +#: ../../enterprise/godmode/policies/policy_modules.php:920 +msgid "Could not be added module." +msgstr "Impossible d'ajouter ce module" + +#: ../../enterprise/godmode/policies/policy_modules.php:1265 +msgid "The module type in Data configuration is empty, take from combo box of form." +msgstr "" +"Le type de module dans la configuration de donnĆ©es est vide. Choisissez-en un de " +"la liste dĆ©roulante du formulaire." + +#: ../../enterprise/godmode/policies/policy_modules.php:1269 +msgid "" +"The module name in Data configuration is empty, take from text field of form." +msgstr "" +"Le nom du module dans la configuration de donnĆ©es est vide. Choisissez-en un du " +"champ de texte du formulaire." + +#: ../../enterprise/godmode/policies/policy_modules.php:1299 +#: ../../enterprise/godmode/policies/policy_modules.php:1312 +#: ../../enterprise/godmode/policies/policy_inventory_modules.php:163 +msgid "" +"Successfully added to delete pending modules. Will be deleted in the next policy " +"application." +msgstr "" +"AjoutĆ© correctement aux modules en attente de suppression. Il sera supprimĆ© dans " +"la suivante application de la politique." + +#: ../../enterprise/godmode/policies/policy_modules.php:1303 +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:1363 +#: ../../godmode/agentes/configurar_agente.php:2114 +#: ../../include/functions_reports.php:956 +#, php-format +msgid "copy of %s" +msgstr "copie de %s" + +#: ../../enterprise/godmode/policies/policy_modules.php:1381 +#: ../../godmode/agentes/configurar_agente.php:2128 +#, php-format +msgid "copy of %s (%d)" +msgstr "copie de %s (%d)" + +#: ../../enterprise/godmode/policies/policy_modules.php:1411 +msgid "Successfully duplicate the module." +msgstr "Module dupliquĆ© correctement" + +#: ../../enterprise/godmode/policies/policy_modules.php:1412 +#: ../../operation/agentes/pandora_networkmap.php:533 +msgid "Could not be duplicated" +msgstr "Duplication impossible" + +#: ../../enterprise/godmode/policies/policy_modules.php:1492 +msgid "Local component" +msgstr "Composant local" + +#: ../../enterprise/godmode/policies/policy_modules.php:1509 +#: ../../enterprise/godmode/policies/policy_modules.php:1510 +msgid "Disabled module" +msgstr "Module dĆ©sactivĆ©" + +#: ../../enterprise/godmode/policies/policy_modules.php:1517 +#: ../../enterprise/godmode/policies/policy_modules.php:1518 +msgid "Enabled module" +msgstr "Module activĆ©" + +#: ../../enterprise/godmode/policies/policy_modules.php:1528 +#: ../../enterprise/godmode/policies/policy_modules.php:1529 +#: ../../godmode/agentes/module_manager.php:1143 +#: ../../godmode/agentes/module_manager.php:1144 +msgid "Enable module" +msgstr "Activer le module" + +#: ../../enterprise/godmode/policies/policy_modules.php:1538 +#: ../../enterprise/godmode/policies/policy_modules.php:1539 +#: ../../godmode/agentes/module_manager.php:1153 +#: ../../godmode/agentes/module_manager.php:1154 +msgid "Disable module" +msgstr "Module dĆ©sactivĆ©" + +#: ../../enterprise/godmode/policies/policy_modules.php:1624 +msgid "There are no defined modules" +msgstr "Aucun module dĆ©fini" + +#: ../../enterprise/godmode/policies/policy_modules.php:1643 +#: ../../godmode/massive/massive_copy_modules.php:188 +msgid "Copy modules" +msgstr "Copier les modules" + +#: ../../enterprise/godmode/policies/policy_modules.php:1644 +msgid "Copy selected modules to policy: " +msgstr "Copier les modules sĆ©lectionnĆ©s Ć  la politique : " + +#: ../../enterprise/godmode/policies/policy_modules.php:1706 +#: ../../godmode/agentes/module_manager_editor.php:822 +msgid "No module name provided" +msgstr "Aucun nom de module fourni" + +#: ../../enterprise/godmode/policies/policy_modules.php:1707 +#: ../../godmode/agentes/module_manager_editor.php:832 +msgid "No target IP provided" +msgstr "Aucune cible IP fournie" + +#: ../../enterprise/godmode/policies/policy_modules.php:1708 +#: ../../godmode/agentes/module_manager_editor.php:842 +msgid "No SNMP OID provided" +msgstr "Aucun OID SNMP fourni" + +#: ../../enterprise/godmode/policies/policy_modules.php:1849 +msgid "Are you sure to copy modules into policy?\\n" +msgstr "Ɗtes-vous sĆ»r(e) de vouloir copier les modules Ć  la politique ?" + +#: ../../enterprise/godmode/policies/policy_modules.php:1869 +msgid "Please select any module to copy" +msgstr "Veuillez sĆ©lectionner un module Ć  copier." + +#: ../../enterprise/godmode/policies/policy_queue.php:63 +msgid "No policies with this id" +msgstr "Aucune politique avec cet ID" + +#: ../../enterprise/godmode/policies/policy_queue.php:78 +#: ../../enterprise/godmode/policies/policy_agents.php:62 +msgid "" +"Starting with Pandora FMS version 760, assigning an entire group to a policy will " +"apply it automatically to all the new agents added to that group." +msgstr "" +"ƀ partir de Pandora FMS version 760, lā€™affectation dā€™un groupe entier Ć  une " +"stratĆ©gie lā€™appliquera automatiquement Ć  tous les nouveaux agents ajoutĆ©s Ć  ce " +"groupe." + +#: ../../enterprise/godmode/policies/policy_queue.php:146 +#, php-format +msgid "%s: Operations successfully deleted from the queue" +msgstr "%sĀ : opĆ©rations supprimĆ©es correctement de la file d'attente" + +#: ../../enterprise/godmode/policies/policy_queue.php:153 +msgid "Operations successfully deleted from the queue" +msgstr "OpĆ©rations supprimĆ©es correctement de la file d'attente" + +#: ../../enterprise/godmode/policies/policy_queue.php:154 +msgid "Operations cannot be deleted from the queue" +msgstr "Impossible de supprimer les opĆ©rations de la file d'attente" + +#: ../../enterprise/godmode/policies/policy_queue.php:261 +#, php-format +msgid "Some nodes (%s) are unreachebles. Some information may be missing." +msgstr "" +"Certains nœuds (%s) sont inaccessibles. Certaines informations peuvent ĆŖtre " +"manquantes." + +#: ../../enterprise/godmode/policies/policy_queue.php:308 +msgid "Update pending" +msgstr "Mise Ć  jour en attente" + +#: ../../enterprise/godmode/policies/policy_queue.php:314 +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 +msgid "Add to apply queue" +msgstr "Ajouter Ć  la file d'attente pour l'appliquer" + +#: ../../enterprise/godmode/policies/policy_queue.php:343 +msgid "Add to apply queue only for database" +msgstr "" +"Ajouter Ć  la file d'application, seulement pour les changements dans la base de " +"donnĆ©es" + +#: ../../enterprise/godmode/policies/policy_queue.php:354 +msgid "Update pending groups" +msgstr "Mettre Ć  jour les groupes en attente" + +#: ../../enterprise/godmode/policies/policy_queue.php:368 +msgid "Link pending modules" +msgstr "Associer les modules en attente" + +#: ../../enterprise/godmode/policies/policy_queue.php:376 +msgid "Will be linked in the next policy application" +msgstr "Il sera associĆ© lors de la prochaine application de la politique" + +#: ../../enterprise/godmode/policies/policy_queue.php:382 +msgid "Unlink pending modules" +msgstr "Dissocier les modules en attente" + +#: ../../enterprise/godmode/policies/policy_queue.php:388 +msgid "Will be unlinked in the next policy application" +msgstr "Ils seront dissociĆ©s lors de la prochaine application de la politique." + +#: ../../enterprise/godmode/policies/policy_queue.php:393 +msgid "Delete pending" +msgstr "Suppression en attente" + +#: ../../enterprise/godmode/policies/policy_queue.php:399 +msgid "Delete pending agents" +msgstr "Supprimer les agents en attente" + +#: ../../enterprise/godmode/policies/policy_queue.php:407 +#: ../../enterprise/godmode/policies/policy_queue.php:422 +#: ../../enterprise/godmode/policies/policy_queue.php:437 +#: ../../enterprise/godmode/policies/policy_queue.php:452 +#: ../../enterprise/godmode/policies/policy_queue.php:467 +#: ../../enterprise/godmode/policies/policy_queue.php:482 +#: ../../enterprise/godmode/policies/policy_queue.php:497 +#: ../../enterprise/godmode/policies/policy_queue.php:512 +msgid "Will be deleted in the next policy application" +msgstr "Ils seront supprimĆ©s lors de la prochaine application de la politique." + +#: ../../enterprise/godmode/policies/policy_queue.php:414 +msgid "Delete pending groups" +msgstr "Supprimer les groupes en attente" + +#: ../../enterprise/godmode/policies/policy_queue.php:429 +msgid "Delete pending modules" +msgstr "Supprimer les modules en attente" + +#: ../../enterprise/godmode/policies/policy_queue.php:444 +msgid "Delete pending inventory modules" +msgstr "Supprimer les modules d'inventaire en attente" + +#: ../../enterprise/godmode/policies/policy_queue.php:459 +msgid "Delete pending alerts" +msgstr "Supprimer les alertes en attente" + +#: ../../enterprise/godmode/policies/policy_queue.php:474 +msgid "Delete pending external alerts" +msgstr "Supprimer les alertes externes en attente" + +#: ../../enterprise/godmode/policies/policy_queue.php:489 +msgid "Delete pending file collections" +msgstr "Supprimer les collections de fichiers en attente" + +#: ../../enterprise/godmode/policies/policy_queue.php:504 +msgid "Delete pending plugins" +msgstr "Supprimer les plugins en attente" + +#: ../../enterprise/godmode/policies/policy_queue.php:518 +msgid "Advices" +msgstr "Conseils" + +#: ../../enterprise/godmode/policies/policy_queue.php:523 +msgid "Queue summary" +msgstr "RĆ©sumĆ© des files d'attente" + +#: ../../enterprise/godmode/policies/policy_queue.php:636 +msgid "Queue filter" +msgstr "Filtre de la file d'attente" + +#: ../../enterprise/godmode/policies/policy_queue.php:670 +#: ../../enterprise/godmode/policies/policy_linking.php:153 +#: ../../godmode/massive/massive_delete_agents.php:252 +#: ../../include/lib/Dashboard/Widget.php:594 +#: ../../include/functions_events.php:4528 +msgid "Node" +msgstr "Noeud" + +#: ../../enterprise/godmode/policies/policy_queue.php:790 +msgid "Empty queue" +msgstr "Vider la file d'attente" + +#: ../../enterprise/godmode/policies/policy_queue.php:804 +msgid "This operation could take a long time" +msgstr "Cette opĆ©ration pourrait prendre du temps" + +#: ../../enterprise/godmode/policies/policy_queue.php:815 +msgid "Apply all queues" +msgstr "Appliquer toutes les files d'attente" + +#: ../../enterprise/godmode/policies/policy_queue.php:821 +msgid "Clear all items" +msgstr "Effacer tous les Ć©lĆ©ments" + +#: ../../enterprise/godmode/policies/policies.php:85 +msgid "Policy not found." +msgstr "Politique introuvable." + +#: ../../enterprise/godmode/policies/policies.php:153 +msgid "Policy name already exists" +msgstr "Le nom de la politique existe dĆ©jĆ ." + +#: ../../enterprise/godmode/policies/policies.php:224 +msgid "Policies Management" +msgstr "Gestion des politiques" + +#: ../../enterprise/godmode/policies/policies.php:235 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:455 +#: ../../godmode/alerts/alert_actions.php:129 +#: ../../godmode/alerts/alert_commands.php:625 +#: ../../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:961 +msgid "Successfully copied" +msgstr "CopiĆ© correctement" + +#: ../../enterprise/godmode/policies/policies.php:236 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:456 +#: ../../godmode/alerts/alert_actions.php:130 +#: ../../godmode/alerts/alert_commands.php:626 +#: ../../godmode/reporting/reporting_builder.php:738 +#: ../../include/functions_planned_downtimes.php:958 +msgid "Could not be copied" +msgstr "Impossible de le copier" + +#: ../../enterprise/godmode/policies/policies.php:243 +msgid "All policy agents added to delete queue" +msgstr "" +"Tous les agents de politique ont Ć©tĆ© ajoutĆ©s Ć  la file d'attente de suppression" + +#: ../../enterprise/godmode/policies/policies.php:244 +msgid "Policy agents cannot be added to the delete queue" +msgstr "" +"Les agents de la politique ne peuvent pas ĆŖtre ajoutĆ©s Ć  la file d'attente de " +"suppression." + +#: ../../enterprise/godmode/policies/policies.php:330 +msgid "a" +msgstr "a" + +#: ../../enterprise/godmode/policies/policies.php:501 +#: ../../enterprise/godmode/policies/policy_linking.php:157 +#: ../../enterprise/include/functions_policies.php:3783 +msgid "Linking" +msgstr "Relation en cours" + +#: ../../enterprise/godmode/policies/policies.php:514 +msgid "Agent Wizard" +msgstr "Assistant de l'agent" + +#: ../../enterprise/godmode/policies/policies.php:523 +#: ../../enterprise/godmode/policies/policy_external_alerts.php:52 +#: ../../enterprise/include/functions_policies.php:3771 +msgid "External alerts" +msgstr "Alertes externes" + +#: ../../enterprise/godmode/policies/policies.php:527 +#: ../../enterprise/godmode/policies/policy.php:60 +#: ../../enterprise/include/functions_policies.php:3813 +msgid "Queue" +msgstr "File dā€™attente" + +#: ../../enterprise/godmode/policies/policies.php:595 +msgid "There must be no agents to delete the policy." +msgstr "Il ne doit pas y avoir dā€™agents pour supprimer la politique." + +#: ../../enterprise/godmode/policies/policies.php:601 +msgid "A policy with agents cannot be deleted. Purge it first" +msgstr "" +"Une politique avec des agents ne peut pas ĆŖtre supprimĆ©e. Veuillez la vider en " +"premier." + +#: ../../enterprise/godmode/policies/policies.php:611 +msgid "Deleting all policy agents" +msgstr "Suppression de tous les agents de la politique en cours" + +#: ../../enterprise/godmode/policies/policies.php:616 +msgid "All the policy agents will be deleted" +msgstr "Tous les agents de la politique seront supprimĆ©s" + +#: ../../enterprise/godmode/policies/policies.php:625 +msgid "Delete all agents" +msgstr "Supprimer tous les agents" + +#: ../../enterprise/godmode/policies/policy_linking.php:28 +msgid "Linking modules" +msgstr "Relation de modules en cours" + +#: ../../enterprise/godmode/policies/policy_linking.php:99 +msgid "Error: Update linking modules to policy" +msgstr "Erreur de mise Ć  jour des modules associĆ©s Ć  la politique" + +#: ../../enterprise/godmode/policies/policy_linking.php:101 +msgid "Success: Update linking modules to policy" +msgstr "Modules associĆ©s Ć  la politique mis Ć  jour correctement" + +#: ../../enterprise/godmode/policies/policy_linking.php:127 +msgid "Free text for filter (*)" +msgstr "Texte libre pour le filtre (*)" + +#: ../../enterprise/godmode/policies/policy_linking.php:128 +msgid "Free text for filter" +msgstr "Texte libre pour le filtre" + +#: ../../enterprise/godmode/policies/policy_linking.php:138 +msgid "Cannot retrieve unlinked modules" +msgstr "Impossible de rĆ©cupĆ©rer les modules non liĆ©s" + +#: ../../enterprise/godmode/policies/policy_linking.php:140 +msgid "There are no defined modules unlinked" +msgstr "Aucun module dissociĆ© dĆ©fini" + +#: ../../enterprise/godmode/policies/policy_linking.php:142 +msgid "List of modules unlinked" +msgstr "Liste des modules non associĆ©s" + +#: ../../enterprise/godmode/policies/policy_external_alerts.php:87 +#: ../../godmode/alerts/alert_list.php:173 +msgid "No module specified" +msgstr "Aucun module spĆ©cifiĆ©" + +#: ../../enterprise/godmode/policies/policy_external_alerts.php:123 +msgid "Created successfuly" +msgstr "CrĆ©Ć© correctement" + +#: ../../enterprise/godmode/policies/policy_external_alerts.php:127 +msgid "Duplicated alert" +msgstr "Alerte dupliquĆ©e" + +#: ../../enterprise/godmode/policies/policy_external_alerts.php:372 +#: ../../godmode/alerts/alert_list.list.php:188 +msgid "Alert control filter" +msgstr "Filtre de control d'alertes" + +#: ../../enterprise/godmode/policies/policy_external_alerts.php:383 +msgid "Modules in policy per agents" +msgstr "Modules dans la politique par agent" + +#: ../../enterprise/godmode/policies/policy_external_alerts.php:566 +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:620 +msgid "Modules in policy agents" +msgstr "Modules dans les agents de la politique" + +#: ../../enterprise/godmode/policies/policy_external_alerts.php:648 +msgid "Alert Template" +msgstr "ModĆØle de l'alerte" + +#: ../../enterprise/godmode/policies/policy_inventory_modules.php:110 +msgid "Module is not selected" +msgstr "Le module n'est pas sĆ©lectionnĆ©." + +#: ../../enterprise/godmode/policies/policy_inventory_modules.php:296 +msgid "There are no defined inventory modules" +msgstr "Aucun module d'inventaire dĆ©fini" + +#: ../../enterprise/godmode/policies/policy_collections.php:99 +msgid "" +"Successfully added to delete the collection. Will be deleted in the next policy " +"application." +msgstr "" +"AjoutĆ© correctement Ć  la collection en attente de suppression. Il sera supprimĆ© " +"dans la suivante application de la politique." + +#: ../../enterprise/godmode/policies/policy_collections.php:224 +#: ../../enterprise/godmode/policies/policy_collections.php:296 +#: ../../enterprise/operation/agentes/policy_view.php:217 +#: ../../enterprise/operation/agentes/policy_view.php:218 +#: ../../enterprise/operation/agentes/collection_view.php:128 +#: ../../enterprise/operation/agentes/collection_view.php:129 +msgid "Outdate" +msgstr "ObsolĆØte" + +#: ../../enterprise/godmode/policies/policy_collections.php:241 +msgid "Collections in policy" +msgstr "Collections dans la politique" + +#: ../../enterprise/godmode/policies/policy_collections.php:245 +msgid "Collections to add" +msgstr "Collections Ć  ajouter" + +#: ../../enterprise/godmode/policies/policy_collections.php:315 +msgid "No available collection to add" +msgstr "Aucune collection disponible Ć  ajouter" + +#: ../../enterprise/godmode/policies/policy_agents.php:102 +msgid "" +"Successfully added to delete pending agents. Will be deleted in the next policy " +"application." +msgstr "" +"AjoutĆ© correctement aux agents en attente de suppression. Il sera supprimĆ© dans " +"la suivante application de la politique." + +#: ../../enterprise/godmode/policies/policy_agents.php:124 +msgid "" +"Successfully added to delete pending groups. Will be deleted in the next policy " +"application." +msgstr "" +"AjoutĆ© correctement pour supprimer les groupes en attente. Il sera supprimĆ© dans " +"la prochaine application de la politique." + +#: ../../enterprise/godmode/policies/policy_agents.php:148 +#: ../../enterprise/godmode/policies/policy_agents.php:193 +#: ../../enterprise/godmode/policies/policy_agents.php:261 +msgid "Policy with this id does not exist. " +msgstr "La politique avec cet ID nā€™existe pas. " + +#: ../../enterprise/godmode/policies/policy_agents.php:177 +#: ../../enterprise/godmode/policies/policy_agents.php:310 +msgid "Successfully added to delete queue" +msgstr "AjoutĆ© correctement Ć  la file d'attente de suppression" + +#: ../../enterprise/godmode/policies/policy_agents.php:178 +#: ../../enterprise/godmode/policies/policy_agents.php:311 +msgid "Could not be added to delete queue" +msgstr "Impossible de l'ajouter Ć  la file d'attente de suppression" + +#: ../../enterprise/godmode/policies/policy_agents.php:250 +#, php-format +msgid "Successfully added %d" +msgstr "Ajout rĆ©ussi de %d" + +#: ../../enterprise/godmode/policies/policy_agents.php:281 +msgid "" +"Number of agents added to the policy concurrently is too large. This might cause " +"the operation to fail or lead to performance issues." +msgstr "" +"Le nombre d'agents ajoutĆ©s Ć  la politique simultanĆ©ment est trop grand. Cela peut " +"entraĆ®ner l'Ć©chec de l'opĆ©ration ou entraĆ®ner des problĆØmes de performances." + +#: ../../enterprise/godmode/policies/policy_agents.php:288 +msgid "Successfully added to policy" +msgstr "AjoutĆ© correctement Ć  la politique" + +#: ../../enterprise/godmode/policies/policy_agents.php:289 +msgid "Could not be added to policy" +msgstr "Impossible d'ajouter Ć  la politique" + +#: ../../enterprise/godmode/policies/policy_agents.php:407 +msgid "Apply to" +msgstr "Appliquer Ć " + +#: ../../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/massive/massive_add_modules_policy.php:115 +#: ../../godmode/massive/massive_copy_modules.php:112 +#: ../../godmode/massive/massive_copy_modules.php:265 +#: ../../godmode/massive/massive_standby_alerts.php:200 +#: ../../godmode/massive/massive_delete_action_alerts.php:221 +#: ../../godmode/massive/massive_delete_modules.php:386 +#: ../../godmode/massive/massive_add_alerts.php:228 +#: ../../godmode/massive/massive_delete_agents.php:199 +#: ../../godmode/massive/massive_enable_disable_alerts.php:171 +#: ../../godmode/massive/massive_edit_agents.php:520 +#: ../../godmode/massive/massive_delete_alerts.php:311 +#: ../../godmode/massive/massive_add_action_alerts.php:209 +#: ../../godmode/massive/massive_edit_modules.php:370 +#: ../../include/functions_html.php:1258 ../../include/functions_html.php:1410 +#: ../../include/lib/Dashboard/Widgets/groups_status.php:232 +#: ../../include/lib/Dashboard/Widgets/events_list.php:447 +msgid "Group recursion" +msgstr "RĆ©cursion du groupe" + +#: ../../enterprise/godmode/policies/policy_agents.php:499 +#: ../../enterprise/godmode/policies/policy_agents.php:513 +#: ../../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 +#: ../../enterprise/godmode/reporting/graph_template_wizard.php:217 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:749 +#: ../../enterprise/include/class/Omnishell.class.php:825 +#: ../../enterprise/include/class/Omnishell.class.php:904 +msgid "Filter agent" +msgstr "Filtrer l'agent" + +#: ../../enterprise/godmode/policies/policy_agents.php:538 +#: ../../enterprise/godmode/policies/policy_agents.php:670 +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/setup/setup_auth.php:230 +#: ../../enterprise/godmode/setup/setup_auth.php:509 +#: ../../enterprise/godmode/setup/setup_auth.php:1306 +#: ../../extensions/files_repo/files_repo_form.php:55 +#: ../../extensions/module_groups.php:311 +#: ../../godmode/reporting/visual_console_builder.wizard.php:362 +#: ../../mobile/include/functions_web.php:27 ../../mobile/operation/home.php:57 +#: ../../mobile/operation/groups.php:77 ../../include/functions_networkmap.php:1295 +#: ../../include/functions_maps.php:46 +#: ../../include/lib/Dashboard/Widgets/groups_status.php:220 +#: ../../include/lib/Dashboard/Widgets/system_group_status.php:295 +#: ../../include/lib/Dashboard/Widgets/events_list.php:431 +#: ../../include/lib/Dashboard/Widgets/top_n_events_by_module.php:301 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:328 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:337 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:359 +#: ../../include/lib/Dashboard/Widgets/tactical.php:331 +#: ../../include/lib/Dashboard/Widgets/top_n_events_by_group.php:301 +#: ../../operation/tree.php:90 ../../operation/agentes/pandora_networkmap.php:710 +msgid "Groups" +msgstr "Groupes" + +#: ../../enterprise/godmode/policies/policy_agents.php:572 +#: ../../enterprise/godmode/policies/policy_agents.php:1217 +msgid "Groups in Policy" +msgstr "Groupes dans la politique" + +#: ../../enterprise/godmode/policies/policy_agents.php:707 +msgid "Add agents to policy" +msgstr "Ajouter agents Ć  la politique" + +#: ../../enterprise/godmode/policies/policy_agents.php:734 +msgid "Delete agents from policy" +msgstr "Supprimer les agents de politique" + +#: ../../enterprise/godmode/policies/policy_agents.php:831 +msgid "Applied" +msgstr "AppliquĆ©" + +#: ../../enterprise/godmode/policies/policy_agents.php:832 +msgid "Not applied" +msgstr "Non appliquĆ©" + +#: ../../enterprise/godmode/policies/policy_agents.php:849 +#: ../../godmode/agentes/configurar_agente.php:604 +#: ../../godmode/agentes/configurar_agente.php:754 +#: ../../godmode/agentes/agent_manager.php:524 +#: ../../godmode/massive/massive_edit_agents.php:945 +#: ../../godmode/reporting/reporting_builder.item_editor.php:79 +#: ../../godmode/servers/servers.build_table.php:246 +msgid "Remote configuration" +msgstr "Configuration Ć  distance" + +#: ../../enterprise/godmode/policies/policy_agents.php:849 +#: ../../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/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:844 +#: ../../mobile/operation/agents.php:406 ../../include/ajax/alert_list.ajax.php:286 +#: ../../include/ajax/alert_list.ajax.php:311 +#: ../../include/class/AuditLog.class.php:128 +#: ../../include/functions_events.php:2355 +msgid "S." +msgstr "S." + +#: ../../enterprise/godmode/policies/policy_agents.php:853 +msgid "Unlinked modules" +msgstr "Modules non liĆ©s" + +#: ../../enterprise/godmode/policies/policy_agents.php:853 +msgid "U." +msgstr "U." + +#: ../../enterprise/godmode/policies/policy_agents.php:854 +#: ../../enterprise/godmode/policies/policy_agents.php:1369 +#: ../../enterprise/godmode/admin_access_logs.php:54 +#: ../../godmode/reporting/visual_console_builder.elements.php:118 +#: ../../mobile/operation/agents.php:407 ../../include/class/AuditLog.class.php:128 +msgid "A." +msgstr "A." + +#: ../../enterprise/godmode/policies/policy_agents.php:856 +#: ../../enterprise/godmode/policies/policy_agents.php:1371 +#: ../../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 +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 +msgid "D." +msgstr "D." + +#: ../../enterprise/godmode/policies/policy_agents.php:946 +#: ../../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 +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 +msgid "Process deletion" +msgstr "Suppression de processus" + +#: ../../enterprise/godmode/policies/policy_agents.php:1102 +#: ../../enterprise/godmode/policies/policy_agents.php:1427 +#: ../../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 +msgid "Need apply" +msgstr "Vous devez l'appliquer" + +#: ../../enterprise/godmode/policies/policy_agents.php:1122 +#: ../../enterprise/godmode/policies/policy_agents.php:1447 +msgid "Applying policy" +msgstr "Application de la politique en cours" + +#: ../../enterprise/godmode/policies/policy_agents.php:1135 +#: ../../enterprise/godmode/policies/policy_agents.php:1458 +msgid "Deleting from policy" +msgstr "Suppression de la politique en cours" + +#: ../../enterprise/godmode/policies/policy_agents.php:1152 +#: ../../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:172 +#: ../../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 +msgid "No agents selected" +msgstr "Aucun agent sĆ©lectionnĆ©" + +#: ../../enterprise/godmode/policies/policy_agents.php:1295 +msgid "Add groups to policy" +msgstr "Ajouter des groupes Ć  la politique" + +#: ../../enterprise/godmode/policies/policy_agents.php:1317 +msgid "Delete groups from policy" +msgstr "Supprimer des groupes de la politique" + +#: ../../enterprise/godmode/policies/policy_agents.php:1370 +msgid "Total agents in policy group" +msgstr "Nombre total d'agents dans le groupe de la politique" + +#: ../../enterprise/godmode/policies/policy_agents.php:1370 +msgid "T." +msgstr "T." + +#: ../../enterprise/godmode/policies/policy.php:102 +#: ../../enterprise/include/functions_policies.php:3732 +#: ../../godmode/agentes/configurar_agente.php:527 +msgid "Agent wizard" +msgstr "Assistant de l'agent" + +#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor_form.php:24 +#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:44 +#: ../../enterprise/operation/snmpconsole/snmp_view.php:82 +#: ../../enterprise/operation/menu.php:170 +msgid "SNMP trap editor" +msgstr "Ɖditeur de dĆ©routements SNMP" + +#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor_form.php:56 +#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:382 +#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:299 +#: ../../godmode/setup/snmp_wizard.php:42 +#: ../../include/functions_snmp_browser.php:556 +msgid "OID" +msgstr "OID" + +#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor_form.php:64 +#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:383 +msgid "Custom OID" +msgstr "OID personnalisĆ©" + +#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor_form.php:74 +#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:385 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2192 +#: ../../enterprise/include/functions_reporting_csv.php:2387 +#: ../../enterprise/include/functions_reporting_csv.php:2401 +#: ../../godmode/setup/news.php:205 ../../godmode/setup/setup_visuals.php:1343 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2285 +#: ../../include/functions_reports.php:835 +#: ../../include/functions_reporting.php:7008 +#: ../../include/lib/Dashboard/Widgets/post.php:214 +msgid "Text" +msgstr "Texte" + +#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:57 +#: ../../godmode/snmpconsole/snmp_trap_generator.php:51 +#: ../../godmode/snmpconsole/snmp_filters.php:59 +#: ../../operation/snmpconsole/snmp_browser.php:90 +#: ../../operation/snmpconsole/snmp_mib_uploader.php:60 +msgid "SMNP" +msgstr "SMNP" + +#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:225 +#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:237 +msgid "Successfully added trap custom values" +msgstr "AjoutĆ© correctement aux valeurs personnalisĆ©es du dĆ©routement" + +#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:227 +#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:239 +msgid "Error adding trap custom values" +msgstr "Erreur d'ajout des valeurs personnalisĆ©es de dĆ©routement" + +#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:242 +#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:317 +msgid "This custom OID is preexistent." +msgstr "L'OID personnalisĆ© existe dĆ©jĆ ." + +#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:283 +msgid "No change in data" +msgstr "Aucun changement dans les donnĆ©es" + +#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:285 +#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:312 +msgid "Successfully updated trap custom values" +msgstr "Valeurs personnalisĆ©es de dĆ©routement mises Ć  jour correctement" + +#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:287 +#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:314 +msgid "Error updating trap custom values" +msgstr "Erreur de mise Ć  jour des valeurs personnalisĆ©es de dĆ©routement" + +#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:330 +msgid "Successfully deleted trap custom values" +msgstr "Valeurs personnalisĆ©es de dĆ©routement supprimĆ©es correctement" + +#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:336 +msgid "Error deleting trap custom values" +msgstr "Erreur de suppression des valeurs personnalisĆ©es de dĆ©routement" + +#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:342 +#, php-format +msgid "Uploaded %s/%s traps" +msgstr "DĆ©routements %s/%s tĆ©lĆ©versĆ©s" + +#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:346 +msgid "Fail uploaded file" +msgstr "Erreur de tĆ©lĆ©versement du fichier" + +#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:351 +msgid "" +"MIB files will be loaded and searched for SNMP trap definitions. They will not be " +"installed on the system! You can use the MIB uploader for that purpose." +msgstr "" +"Les fichiers MIB seront chargĆ©s ; ils ont cherchĆ© des dĆ©finitions de dĆ©routements " +"SNMP. Ils ne seront pas installĆ©s sur le systĆØme ! Vous pouvez utiliser le " +"tĆ©lĆ©verseur MIB pour ce faire." + +#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:360 +msgid "Load MIB" +msgstr "Charger MIB" + +#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:362 +msgid "Upload MIB" +msgstr "TĆ©lĆ©verser MIB" + +#: ../../enterprise/godmode/menu.php:16 +msgid "Manage Satellite Server" +msgstr "GĆ©rer le serveur Satellite" + +#: ../../enterprise/godmode/menu.php:25 +#: ../../enterprise/godmode/massive/massive_operations.php:99 +msgid "Policies operations" +msgstr "OpĆ©rations des politiques" + +#: ../../enterprise/godmode/menu.php:36 +#: ../../enterprise/godmode/massive/massive_operations.php:75 +msgid "SNMP operations" +msgstr "OpĆ©rations SNMP" + +#: ../../enterprise/godmode/menu.php:48 +#: ../../enterprise/godmode/massive/massive_operations.php:28 +msgid "Satellite operations" +msgstr "OpĆ©rations du satellite" + +#: ../../enterprise/godmode/menu.php:60 +#: ../../enterprise/godmode/massive/massive_operations.php:53 +msgid "Services operations" +msgstr "OpĆ©rations de services" + +#: ../../enterprise/godmode/menu.php:72 ../../enterprise/godmode/menu.php:278 +msgid "Duplicate config" +msgstr "Dupliquer la configuration" + +#: ../../enterprise/godmode/menu.php:81 +#: ../../godmode/agentes/configurar_agente.php:707 +msgid "Network config manager" +msgstr "Gestionnaire de configuration rĆ©seau" + +#: ../../enterprise/godmode/menu.php:108 +#: ../../enterprise/include/functions_policies.php:3711 +msgid "Manage policies" +msgstr "GĆ©rer les politiques" + +#: ../../enterprise/godmode/menu.php:117 +msgid "Manage agent autoconfiguration" +msgstr "GĆ©rer la configuration automatique de lā€™agent" + +#: ../../enterprise/godmode/menu.php:126 +#: ../../enterprise/include/class/AgentRepository.class.php:623 +msgid "Software agents repository" +msgstr "DĆ©pĆ“t d'agents logicielles" + +#: ../../enterprise/godmode/menu.php:148 +#: ../../enterprise/include/functions_setup.php:67 +#: ../../enterprise/include/functions_setup.php:119 +#: ../../operation/agentes/datos_agente.php:180 +msgid "History database" +msgstr "Base de DonnĆ©es de l'historique" + +#: ../../enterprise/godmode/menu.php:159 +#: ../../enterprise/include/class/CSVImportAgents.class.php:114 +#: ../../godmode/wizards/HostDevices.class.php:159 +msgid "Import CSV" +msgstr "Importer CSV" + +#: ../../enterprise/godmode/menu.php:163 +#: ../../enterprise/include/class/DeploymentCenter.class.php:613 +#: ../../godmode/wizards/HostDevices.class.php:165 +#: ../../godmode/wizards/DiscoveryTaskList.class.php:823 +msgid "Agent deployment" +msgstr "DĆ©ploiement d'agents" + +#: ../../enterprise/godmode/menu.php:173 +#: ../../enterprise/include/class/MicrosoftSQLServer.app.php:406 +msgid "Microsoft SQL Server" +msgstr "Microsoft SQL Server" + +#: ../../enterprise/godmode/menu.php:174 +msgid "Mysql" +msgstr "MySQL" + +#: ../../enterprise/godmode/menu.php:175 +#: ../../enterprise/godmode/setup/setup.php:108 +#: ../../enterprise/include/class/Oracle.app.php:411 +msgid "Oracle" +msgstr "Oracle" + +#: ../../enterprise/godmode/menu.php:176 +#: ../../enterprise/include/class/VMware.app.php:503 +msgid "VMware" +msgstr "VMware" + +#: ../../enterprise/godmode/menu.php:177 +#: ../../enterprise/include/class/SAPView.class.php:621 +#: ../../enterprise/include/class/SAPView.class.php:624 +#: ../../include/class/CredentialStore.class.php:948 +msgid "SAP" +msgstr "SAP" + +#: ../../enterprise/godmode/menu.php:178 +#: ../../enterprise/include/class/DB2.app.php:404 +msgid "DB2" +msgstr "DB2" + +#: ../../enterprise/godmode/menu.php:179 +#: ../../enterprise/godmode/wizards/Applications.class.php:163 +#: ../../enterprise/godmode/wizards/Applications.class.php:171 +msgid "Applications" +msgstr "Applications" + +#: ../../enterprise/godmode/menu.php:190 +msgid "Amazon Web Services" +msgstr "Amazon Web Services" + +#: ../../enterprise/godmode/menu.php:191 +msgid "Microsoft Azure" +msgstr "Microsoft Azure" + +#: ../../enterprise/godmode/menu.php:192 +msgid "Google Compute Platform" +msgstr "Google Compute Platform" + +#: ../../enterprise/godmode/menu.php:193 +#: ../../enterprise/godmode/wizards/Cloud.class.php:186 +#: ../../enterprise/godmode/wizards/Cloud.class.php:195 +#: ../../enterprise/include/class/Azure.cloud.php:150 +#: ../../enterprise/include/class/Azure.cloud.php:194 +#: ../../enterprise/include/class/Aws.cloud.php:115 +#: ../../enterprise/include/class/Aws.cloud.php:162 +#: ../../enterprise/include/class/Google.cloud.php:144 +#: ../../enterprise/include/class/Google.cloud.php:188 +msgid "Cloud" +msgstr "Cloud" + +#: ../../enterprise/godmode/menu.php:208 +msgid "New console task" +msgstr "Nouvelle tĆ¢che de console" + +#: ../../enterprise/godmode/menu.php:218 +msgid "Enterprise ACL Setup" +msgstr "Configuration ACL Enterprise" + +#: ../../enterprise/godmode/menu.php:227 +msgid "Skins" +msgstr "ThĆØmes" + +#: ../../enterprise/godmode/menu.php:237 +msgid "Manage database HA" +msgstr "GĆ©rer la base de donnĆ©es HA" + +#: ../../enterprise/godmode/menu.php:247 +#: ../../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:269 +msgid "Log Collector" +msgstr "Collecteur de journaux" + +#: ../../enterprise/godmode/menu.php:287 +msgid "Password policy" +msgstr "Politique de mot de passe" + +#: ../../enterprise/godmode/menu.php:295 +#: ../../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:308 ../../general/first_task/omnishell.php:31 +#: ../../general/first_task/omnishell.php:34 +msgid "Omnishell" +msgstr "Omnishell" + +#: ../../enterprise/godmode/menu.php:322 ../../enterprise/tools/ipam/ipam.php:453 +#: ../../include/functions_reports.php:692 +msgid "IPAM" +msgstr "IPAM" + +#: ../../enterprise/godmode/menu.php:331 ../../godmode/setup/setup.php:190 +#: ../../godmode/setup/setup.php:289 +msgid "Module Library" +msgstr "BibliothĆØque de modules" + +#: ../../enterprise/godmode/menu.php:339 +#: ../../enterprise/godmode/alerts/alert_inventory.php:78 +#: ../../enterprise/godmode/alerts/alert_inventory.php:80 +msgid "Inventory alerts" +msgstr "Alertes dā€™inventaire" + +#: ../../enterprise/godmode/massive/massive_edit_tags_policy.php:92 +#: ../../enterprise/godmode/massive/massive_tags_edit_policy.php:87 +msgid "Successful update the tags" +msgstr "Ɖtiquettes mises Ć  jour correctement" + +#: ../../enterprise/godmode/massive/massive_edit_tags_policy.php:93 +#: ../../enterprise/godmode/massive/massive_tags_edit_policy.php:88 +msgid "Unsuccessful update the tags" +msgstr "Erreur de mise Ć  jour des Ć©tiquettes" + +#: ../../enterprise/godmode/massive/massive_edit_tags_policy.php:143 +msgid "Tags unused" +msgstr "Ɖtiquettes non utilisĆ©es" + +#: ../../enterprise/godmode/massive/massive_edit_tags_policy.php:183 +msgid "Tags used" +msgstr "Ɖtiquettes utilisĆ©es" + +#: ../../enterprise/godmode/massive/massive_add_alerts_policy.php:87 +msgid "Success: create the alerts." +msgstr "Alertes crĆ©Ć©es correctement" + +#: ../../enterprise/godmode/massive/massive_add_alerts_policy.php:87 +msgid "Failed: create the alerts for this modules, please check." +msgstr "Erreur de crĆ©ation des alertes pour ces modules. Veuillez les vĆ©rifier." + +#: ../../enterprise/godmode/massive/massive_add_alerts_policy.php:128 +#: ../../enterprise/godmode/massive/massive_add_alerts_policy.php:129 +#: ../../enterprise/godmode/massive/massive_delete_alerts_policy.php:138 +#: ../../enterprise/godmode/massive/massive_delete_alerts_policy.php:139 +#: ../../include/functions_alerts.php:673 +msgid "Regular expression" +msgstr "Expression rĆ©guliĆØre" + +#: ../../enterprise/godmode/massive/massive_add_alerts_policy.php:131 +msgid "Modules in policy" +msgstr "Modules dans la politique" + +#: ../../enterprise/godmode/massive/massive_operations.php:115 +msgid "Bulk alerts policy add" +msgstr "Ajouter alertes de politiques massivement" + +#: ../../enterprise/godmode/massive/massive_operations.php:116 +msgid "Bulk alerts policy delete" +msgstr "Supprimer alertes de politiques massivement" + +#: ../../enterprise/godmode/massive/massive_operations.php:117 +msgid "Bulk tags module policy edit" +msgstr "Ɖditer les Ć©tiquettes de politiques de modules massivement" + +#: ../../enterprise/godmode/massive/massive_operations.php:118 +msgid "Bulk modules policy tags edit" +msgstr "Ɖditer les Ć©tiquettes de politiques de modules massivement" + +#: ../../enterprise/godmode/massive/massive_operations.php:119 +msgid "Bulk modules policy add from agent" +msgstr "Ajout de politiques de modules en bloc Ć  partir de lā€™agent" + +#: ../../enterprise/godmode/massive/massive_operations.php:120 +msgid "Bulk modules policy edit" +msgstr "Modification des politiques des modules en bloc" + +#: ../../enterprise/godmode/massive/massive_operations.php:131 +msgid "Bulk alert SNMP delete" +msgstr "Supprimer massivement les alertes SNMP" + +#: ../../enterprise/godmode/massive/massive_operations.php:132 +msgid "Bulk alert SNMP edit" +msgstr "Ɖditer massivement les alertes SNMP" + +#: ../../enterprise/godmode/massive/massive_operations.php:143 +msgid "Bulk Satellite modules edit" +msgstr "Ɖditer massivement les modules Satellite" + +#: ../../enterprise/godmode/massive/massive_operations.php:156 +msgid "Bulk services creation" +msgstr "CrĆ©ation de services en bloc" + +#: ../../enterprise/godmode/massive/massive_operations.php:157 +#: ../../enterprise/godmode/services/services.massive.elements.php:56 +msgid "Bulk service elements adition" +msgstr "Ajout dā€™Ć©lĆ©ments de service en bloc" + +#: ../../enterprise/godmode/massive/massive_operations.php:158 +#: ../../enterprise/godmode/services/services.massive.elements.php:61 +msgid "Bulk service elements edition" +msgstr "Ɖdition dā€™Ć©lĆ©ments de service en bloc" + +#: ../../enterprise/godmode/massive/massive_operations.php:159 +#: ../../enterprise/godmode/services/services.massive.elements.php:57 +msgid "Bulk service elements deletion" +msgstr "Suppression dā€™Ć©lĆ©ments de service en bloc" + +#: ../../enterprise/godmode/massive/massive_operations.php:160 +msgid "Bulk services deletion" +msgstr "Suppression de services en bloc" + +#: ../../enterprise/godmode/massive/massive_add_modules_policy.php:75 +msgid "Successfully copied " +msgstr "CopiĆ© correctement" + +#: ../../enterprise/godmode/massive/massive_add_modules_policy.php:82 +msgid "Module " +msgstr "Le module " + +#: ../../enterprise/godmode/massive/massive_add_modules_policy.php:82 +msgid " cannot be copied to " +msgstr " ne peut pas ĆŖtre copiĆ© dans " + +#: ../../enterprise/godmode/massive/massive_add_modules_policy.php:82 +msgid " policy" +msgstr " politique" + +#: ../../enterprise/godmode/massive/massive_add_modules_policy.php:169 +#: ../../enterprise/godmode/services/services.elements.php:286 #: ../../enterprise/godmode/setup/setup_auth.php:69 #: ../../enterprise/godmode/setup/setup_auth.php:269 #: ../../enterprise/godmode/setup/setup_auth.php:319 @@ -10266,2141 +16979,5477 @@ msgstr "Rechercher module" #: ../../enterprise/godmode/setup/setup_auth.php:1175 #: ../../enterprise/godmode/setup/setup_auth.php:1345 #: ../../enterprise/godmode/setup/setup_acl.php:572 -#: ../../enterprise/godmode/services/services.elements.php:290 -#: ../../enterprise/godmode/massive/massive_add_modules_policy.php:169 -#: ../../godmode/reporting/create_container.php:573 -#: ../../godmode/events/event_edit_filter.php:431 -#: ../../godmode/massive/massive_delete_modules.php:407 -#: ../../godmode/massive/massive_delete_modules.php:521 -#: ../../godmode/massive/massive_copy_modules.php:178 -#: ../../godmode/massive/massive_add_action_alerts.php:216 -#: ../../godmode/massive/massive_edit_agents.php:643 -#: ../../godmode/massive/massive_edit_agents.php:1026 -#: ../../godmode/massive/massive_edit_modules.php:411 -#: ../../godmode/massive/massive_edit_modules.php:497 +#: ../../enterprise/include/class/DeploymentCenter.class.php:779 +#: ../../enterprise/include/class/AgentRepository.class.php:663 +#: ../../enterprise/include/class/Omnishell.class.php:361 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1734 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3909 +#: ../../enterprise/operation/services/services.list.php:249 +#: ../../enterprise/operation/services/services.list.php:279 +#: ../../enterprise/operation/services/services.table_services.php:171 +#: ../../enterprise/operation/services/services.table_services.php:201 +#: ../../godmode/agentes/planned_downtime.list.php:326 +#: ../../godmode/agentes/planned_downtime.editor.php:806 #: ../../godmode/agentes/agent_manager.php:331 #: ../../godmode/agentes/agent_manager.php:511 -#: ../../godmode/agentes/planned_downtime.editor.php:806 -#: ../../godmode/agentes/planned_downtime.list.php:326 +#: ../../godmode/massive/massive_copy_modules.php:178 +#: ../../godmode/massive/massive_delete_modules.php:407 +#: ../../godmode/massive/massive_delete_modules.php:521 +#: ../../godmode/massive/massive_edit_agents.php:643 +#: ../../godmode/massive/massive_edit_agents.php:1026 +#: ../../godmode/massive/massive_add_action_alerts.php:216 +#: ../../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:436 +#: ../../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:338 ../../include/functions_html.php:2290 +#: ../../include/functions_html.php:2291 ../../include/functions_html.php:2292 +#: ../../include/functions_html.php:2293 ../../include/functions_html.php:2294 +#: ../../include/functions_html.php:2296 ../../include/functions_html.php:2297 +#: ../../include/functions_html.php:2298 ../../include/functions_html.php:2299 +#: ../../include/functions_html.php:2300 +#: ../../include/lib/Dashboard/Widgets/events_list.php:340 +#: ../../operation/events/events.php:1829 ../../operation/events/events.php:2791 msgid "Any" msgstr "Tous" -#: ../../operation/events/events.php:1297 -#: ../../operation/events/events_list.php:790 -#: ../../enterprise/include/functions_events.php:168 -#: ../../godmode/events/event_edit_filter.php:414 -msgid "User ack." -msgstr "Confirmation de l'utilisateur" +#: ../../enterprise/godmode/massive/massive_add_modules_policy.php:190 +#: ../../godmode/massive/massive_copy_modules.php:213 +msgid "No modules for this agent" +msgstr "Aucun module pour cet agent" -#: ../../operation/events/events.php:1304 -#: ../../operation/events/events_list.php:840 -#: ../../godmode/events/event_edit_filter.php:602 -msgid "Filter alert events" -msgstr "Filtrer les Ć©vĆ©nements d'alerte" +#: ../../enterprise/godmode/massive/massive_add_modules_policy.php:223 +msgid "To policies" +msgstr "Aux politiques" -#: ../../operation/events/events.php:1305 -#: ../../operation/events/events_list.php:841 -#: ../../godmode/events/event_edit_filter.php:603 -msgid "Only alert events" -msgstr "Seulement les Ć©vĆ©nements d'alerte" +#: ../../enterprise/godmode/massive/massive_add_modules_policy.php:359 +#: ../../godmode/massive/massive_add_alerts.php:324 +#: ../../godmode/massive/massive_edit_agents.php:1199 +#: ../../godmode/massive/massive_delete_alerts.php:388 +msgid "" +"Unsucessful sending the data, please contact with your administrator or make with " +"less elements." +msgstr "" +"Envoi de donnĆ©es Ć©chouĆ©. Veuillez communiquer avec votre administrateur ou " +"rĆ©essayer avec moins d'Ć©lĆ©ments." -#: ../../operation/events/events.php:1320 -#: ../../operation/events/events_list.php:837 -#: ../../enterprise/include/functions_events.php:208 -#: ../../godmode/events/event_edit_filter.php:598 -msgid "Alert events" -msgstr "ƉvĆ©nements d'alerte" +#: ../../enterprise/godmode/massive/massive_add_modules_policy.php:366 +#: ../../godmode/massive/massive_copy_modules.php:551 +#: ../../include/functions_agents.php:840 +msgid "No source agent to copy" +msgstr "Aucun agent source Ć  copier" -#: ../../operation/events/events.php:1342 -#: ../../operation/events/events_list.php:1013 -msgid "Id source event" -msgstr "ƉvĆ©nements de source d'ID" +#: ../../enterprise/godmode/massive/massive_add_modules_policy.php:371 +#: ../../godmode/massive/massive_copy_modules.php:564 +#: ../../include/functions_agents.php:871 +msgid "No modules have been selected" +msgstr "Aucun module sĆ©lectionnĆ©" -#: ../../operation/events/events.php:1400 -msgid "From (date:time)" -msgstr "Du (date:heure)" +#: ../../enterprise/godmode/massive/massive_add_modules_policy.php:376 +msgid "No destiny policies to copy" +msgstr "Pas de politiques de destin Ć  copier" -#: ../../operation/events/events.php:1458 -msgid "To (date:time)" -msgstr "ƀ (date:heure)" +#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:211 +#: ../../godmode/massive/massive_delete_modules.php:372 +#: ../../godmode/massive/massive_edit_modules.php:356 +msgid "Agent group" +msgstr "Groupe d'agent" -#: ../../operation/events/events.php:1469 -msgid "Filter custom data by field name" -msgstr "Filtrer les donnĆ©es personnalisĆ©es par nom de champ" +#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:242 +msgid "Filter module" +msgstr "Filtrer le module" -#: ../../operation/events/events.php:1470 -msgid "Filter custom data by field value" -msgstr "Filtrer les donnĆ©es personnalisĆ©es par valeur de champ" +#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:261 +#: ../../godmode/massive/massive_delete_action_alerts.php:241 +#: ../../godmode/massive/massive_delete_modules.php:551 +#: ../../godmode/massive/massive_add_alerts.php:260 +#: ../../godmode/massive/massive_delete_alerts.php:341 +#: ../../godmode/massive/massive_add_action_alerts.php:220 +#: ../../godmode/massive/massive_edit_modules.php:524 +msgid "When select agents" +msgstr "Lorsque des agents sont sĆ©lectionnĆ©s" -#: ../../operation/events/events.php:1485 -msgid "Custom data filter" -msgstr "Filtre de donnĆ©es personnalisĆ©" +#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:265 +#: ../../extensions/agents_modules.php:436 ../../extensions/agents_modules.php:439 +#: ../../godmode/agentes/planned_downtime.editor.php:817 +#: ../../godmode/massive/massive_delete_action_alerts.php:245 +#: ../../godmode/massive/massive_delete_modules.php:555 +#: ../../godmode/massive/massive_add_alerts.php:264 +#: ../../godmode/massive/massive_delete_alerts.php:345 +#: ../../godmode/massive/massive_add_action_alerts.php:224 +#: ../../godmode/massive/massive_edit_modules.php:528 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1876 +#: ../../include/functions_html.php:1669 ../../include/functions_html.php:1688 +#: ../../include/functions_html.php:5497 +msgid "Show common modules" +msgstr "Afficher les modules communs" -#: ../../operation/events/events.php:1507 -msgid "Custom data search" -msgstr "Recherche de donnĆ©es personnalisĆ©e" +#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:266 +#: ../../extensions/agents_modules.php:437 +#: ../../godmode/agentes/planned_downtime.editor.php:818 +#: ../../godmode/massive/massive_delete_action_alerts.php:246 +#: ../../godmode/massive/massive_delete_modules.php:556 +#: ../../godmode/massive/massive_add_alerts.php:265 +#: ../../godmode/massive/massive_delete_alerts.php:346 +#: ../../godmode/massive/massive_add_action_alerts.php:225 +#: ../../godmode/massive/massive_edit_modules.php:529 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1877 +#: ../../include/functions_html.php:1670 ../../include/functions_html.php:5498 +msgid "Show all modules" +msgstr "Afficher tous les modules" -#: ../../operation/events/events.php:1516 ../../operation/events/events.php:1519 -#: ../../operation/events/events_list.php:892 -#: ../../operation/events/events_list.php:895 -#: ../../enterprise/include/functions_events.php:251 -#: ../../godmode/events/event_edit_filter.php:493 -msgid "Events with following tags" -msgstr "ƉvĆ©nements avec les Ć©tiquettes suivantes" +#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:423 +msgid "Updated modules on database" +msgstr "Mettre Ć  jour les modules dans la base de donnĆ©es" -#: ../../operation/events/events.php:1517 ../../operation/events/events.php:1520 -#: ../../operation/events/events_list.php:893 -#: ../../operation/events/events_list.php:896 -#: ../../enterprise/include/functions_events.php:273 -#: ../../godmode/events/event_edit_filter.php:546 -msgid "Events without following tags" -msgstr "ƉvĆ©nements sans les Ć©tiquettes suivantes" +#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:425 +msgid "Agent configuration files updated" +msgstr "Fichiers de configuration de l'agent mis Ć  jour" -#: ../../operation/events/events.php:1532 -#: ../../operation/events/events_list.php:1030 -#: ../../operation/agentes/status_monitor.php:848 -#: ../../include/functions_visual_map_editor.php:895 -#: ../../enterprise/meta/advanced/metasetup.consoles.php:613 -#: ../../enterprise/meta/advanced/metasetup.consoles.php:699 -#: ../../enterprise/meta/advanced/metasetup.consoles.php:704 -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:141 -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:230 -#: ../../enterprise/godmode/policies/policy_modules.php:412 -#: ../../enterprise/godmode/policies/policy_external_alerts.php:598 -#: ../../extensions/quick_shell.php:521 -#: ../../godmode/massive/massive_add_action_alerts.php:250 -#: ../../godmode/massive/massive_edit_agents.php:1027 -#: ../../godmode/agentes/agent_manager.php:787 -#: ../../godmode/agentes/agent_manager.php:921 -#: ../../godmode/agentes/module_manager_editor.php:746 -msgid "Advanced options" -msgstr "Options avancĆ©es" +#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:691 +msgid "No changes have been made." +msgstr "Aucun changement nā€™a Ć©tĆ© apportĆ©." -#: ../../operation/events/events.php:1657 -msgid "Current filter" -msgstr "Filtre actuel" +#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:692 +#: ../../enterprise/tools/ipam/ipam.php:300 ../../enterprise/tools/ipam/ipam.php:361 +#: ../../godmode/massive/massive_operations.php:390 +#: ../../godmode/massive/massive_edit_plugins.php:921 +msgid "Massive operations" +msgstr "OpĆ©rations massives" -#: ../../operation/events/events.php:1662 -msgid "Not set." -msgstr "Non paramĆ©trĆ©." +#: ../../enterprise/godmode/massive/massive_delete_service_elements.php:67 +#: ../../enterprise/godmode/massive/massive_add_service_elements.php:71 +#: ../../enterprise/godmode/massive/massive_edit_service_elements.php:65 +msgid "You must select a service" +msgstr "SĆ©lectionnez un modĆØle" -#: ../../operation/events/events.php:1675 -msgid "Any status." -msgstr "Tout Ć©tat." +#: ../../enterprise/godmode/massive/massive_delete_service_elements.php:90 +msgid "Failed to process deleting services elements: " +msgstr "Ɖchec du traitement de la suppression des Ć©lĆ©ments de services : " -#: ../../operation/events/events.php:1679 -msgid "New events." -msgstr "Nouveaux Ć©vĆ©nements." - -#: ../../operation/events/events.php:1683 -msgid "Validated." -msgstr "ValidĆ©." - -#: ../../operation/events/events.php:1687 -msgid "In proccess." -msgstr "En cours." - -#: ../../operation/events/events.php:1691 -msgid "Not validated." -msgstr "Pas validĆ©." - -#: ../../operation/events/events.php:1703 -msgid "Any time." -msgstr "ƀ tout moment." - -#: ../../operation/events/events.php:1705 ../../operation/events/events.php:2634 -msgid "Last hour." -msgstr "DerniĆØre heure." - -#: ../../operation/events/events.php:1707 +#: ../../enterprise/godmode/massive/massive_delete_service_elements.php:112 +#: ../../enterprise/godmode/massive/massive_add_service_elements.php:251 +#: ../../enterprise/godmode/massive/massive_edit_service_elements.php:153 #, php-format -msgid "Last %d hours." -msgstr "%dĀ derniĆØres heures." +msgid "%d modules" +msgstr "modules %d" -#: ../../operation/events/events.php:1715 -msgid "Duplicated" -msgstr "DupliquĆ©" +#: ../../enterprise/godmode/massive/massive_delete_service_elements.php:120 +#: ../../enterprise/godmode/massive/massive_add_service_elements.php:259 +#: ../../enterprise/godmode/massive/massive_edit_service_elements.php:161 +#, php-format +msgid "%d agents" +msgstr "agents %d" -#: ../../operation/events/events.php:1718 -msgid "All events." -msgstr "Tous les Ć©vĆ©nements." +#: ../../enterprise/godmode/massive/massive_delete_service_elements.php:128 +#: ../../enterprise/godmode/massive/massive_add_service_elements.php:267 +#: ../../enterprise/godmode/massive/massive_edit_service_elements.php:169 +#, php-format +msgid "%d services" +msgstr "Services %d" -#: ../../operation/events/events.php:1722 -msgid "Group agents." -msgstr "Agents du groupe." +#: ../../enterprise/godmode/massive/massive_delete_service_elements.php:131 +msgid "removed" +msgstr "supprimĆ©" -#: ../../operation/events/events.php:1812 -msgid "In progress selected" -msgstr "En cours sĆ©lectionnĆ©" +#: ../../enterprise/godmode/massive/massive_delete_service_elements.php:135 +#: ../../enterprise/godmode/massive/massive_add_service_elements.php:274 +#: ../../enterprise/godmode/massive/massive_edit_service_elements.php:176 +msgid "No changes made" +msgstr "Aucun changement nā€™a Ć©tĆ© fait" -#: ../../operation/events/events.php:1813 -msgid "Validate selected" -msgstr "Valider la sĆ©lection" +#: ../../enterprise/godmode/massive/massive_delete_service_elements.php:211 +#: ../../enterprise/godmode/massive/massive_add_service_elements.php:564 +#: ../../enterprise/godmode/massive/massive_create_services.php:1205 +#: ../../enterprise/godmode/massive/massive_edit_service_elements.php:320 +msgid "Selected services" +msgstr "Services sĆ©lectionnĆ©s" -#: ../../operation/events/events.php:1817 -#: ../../include/class/ModuleTemplates.class.php:970 -#: ../../enterprise/operation/services/services.list.php:728 -#: ../../enterprise/include/class/Omnishell.class.php:520 -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:306 -#: ../../godmode/snmpconsole/snmp_alert.php:1506 -#: ../../godmode/agentes/agent_manager.php:313 -msgid "Delete selected" -msgstr "Effacer les Ć©lĆ©ments sĆ©lectionnĆ©s" +#: ../../enterprise/godmode/massive/massive_delete_service_elements.php:226 +#: ../../enterprise/godmode/massive/massive_add_service_elements.php:579 +#: ../../enterprise/godmode/massive/massive_create_services.php:1220 +#: ../../enterprise/godmode/massive/massive_edit_service_elements.php:335 +#: ../../enterprise/include/class/Omnishell.class.php:915 +msgid "Selected agents" +msgstr "Agents sĆ©lectionnĆ©s" -#: ../../operation/events/events.php:1893 ../../include/ajax/events.php:1998 -#: ../../include/class/ExternalTools.class.php:354 -#: ../../include/lib/Dashboard/Widgets/events_list.php:788 -#: ../../include/functions_events.php:3862 -#: ../../enterprise/meta/advanced/cron_main.php:444 -#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:566 -#: ../../godmode/events/event_responses.editor.php:146 -msgid "Parameters" -msgstr "ParamĆØtres" +#: ../../enterprise/godmode/massive/massive_delete_service_elements.php:241 +#: ../../enterprise/godmode/massive/massive_add_service_elements.php:594 +#: ../../enterprise/godmode/massive/massive_create_services.php:1235 +#: ../../enterprise/godmode/massive/massive_edit_service_elements.php:350 +#: ../../enterprise/include/class/SAP.app.php:845 +msgid "Selected modules" +msgstr "Modules sĆ©lectionnes" -#: ../../operation/events/events.php:1930 ../../include/functions_events.php:236 -#: ../../enterprise/include/functions_reporting_csv.php:1934 -#: ../../enterprise/include/functions_reporting.php:2316 -#: ../../godmode/events/custom_events.php:96 -msgid "Agent ID" -msgstr "ID d'agent" +#: ../../enterprise/godmode/massive/massive_delete_service_elements.php:264 +msgid "Remove selected" +msgstr "Ɖliminer la sĆ©lection" -#: ../../operation/events/events.php:1954 -msgid "has at least" -msgstr "a au moins" +#: ../../enterprise/godmode/massive/massive_delete_alerts_snmp.php:29 +#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:30 +#: ../../godmode/snmpconsole/snmp_alert.php:41 +#: ../../operation/snmpconsole/snmp_view.php:631 +#: ../../operation/snmpconsole/snmp_view.php:1115 +#: ../../operation/snmpconsole/snmp_view.php:1129 +msgid "Cold start (0)" +msgstr "DĆ©marrage zĆ©ro (0)" -#: ../../operation/events/events.php:1956 -msgid "events" -msgstr "Ć©vĆ©nements" +#: ../../enterprise/godmode/massive/massive_delete_alerts_snmp.php:30 +#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:31 +#: ../../godmode/snmpconsole/snmp_alert.php:42 +#: ../../operation/snmpconsole/snmp_view.php:632 +#: ../../operation/snmpconsole/snmp_view.php:1116 +#: ../../operation/snmpconsole/snmp_view.php:1133 +msgid "Warm start (1)" +msgstr "DĆ©marrage (1)" -#: ../../operation/events/events.php:2040 ../../include/functions_events.php:159 -#: ../../include/functions_ui.php:3819 -msgid "MAINTENANCE" -msgstr "ENTRETIEN" +#: ../../enterprise/godmode/massive/massive_delete_alerts_snmp.php:31 +#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:32 +#: ../../godmode/snmpconsole/snmp_alert.php:43 +#: ../../operation/snmpconsole/snmp_view.php:633 +#: ../../operation/snmpconsole/snmp_view.php:1117 +#: ../../operation/snmpconsole/snmp_view.php:1137 +msgid "Link down (2)" +msgstr "Lien interrompu (2)" -#: ../../operation/events/events.php:2045 ../../include/functions_events.php:162 -#: ../../include/functions_ui.php:3824 -msgid "INFORMATIONAL" -msgstr "INFORMATIF" +#: ../../enterprise/godmode/massive/massive_delete_alerts_snmp.php:32 +#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:33 +#: ../../godmode/snmpconsole/snmp_alert.php:44 +#: ../../operation/snmpconsole/snmp_view.php:634 +#: ../../operation/snmpconsole/snmp_view.php:1118 +#: ../../operation/snmpconsole/snmp_view.php:1141 +msgid "Link up (3)" +msgstr "Lien actif (3)" -#: ../../operation/events/events.php:2050 ../../include/functions_events.php:165 -#: ../../include/functions_ui.php:3849 -msgid "MAJOR" -msgstr "MAJEUR" +#: ../../enterprise/godmode/massive/massive_delete_alerts_snmp.php:33 +#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:34 +#: ../../godmode/snmpconsole/snmp_alert.php:45 +#: ../../operation/snmpconsole/snmp_view.php:635 +#: ../../operation/snmpconsole/snmp_view.php:1119 +#: ../../operation/snmpconsole/snmp_view.php:1145 +msgid "Authentication failure (4)" +msgstr "Erreur d'authentification (4)" -#: ../../operation/events/events.php:2055 ../../include/functions_events.php:168 -#: ../../include/functions_ui.php:3844 -msgid "MINOR" -msgstr "MINEUR" +#: ../../enterprise/godmode/massive/massive_delete_alerts_snmp.php:34 +#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:35 +#: ../../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:1597 +#: ../../extensions/api_checker.php:176 ../../godmode/groups/configure_group.php:250 +#: ../../godmode/users/configure_user.php:1097 +#: ../../godmode/snmpconsole/snmp_alert.php:46 +#: ../../include/functions_graph.php:3065 ../../include/functions_graph.php:3110 +#: ../../include/functions_graph.php:3151 ../../include/functions_graph.php:3193 +#: ../../include/functions_graph.php:3270 ../../include/functions_graph.php:3414 +#: ../../include/functions_graph.php:3522 ../../include/functions_graph.php:3587 +#: ../../include/functions_graph.php:3754 ../../include/functions_graph.php:3766 +#: ../../include/functions_graph.php:3767 ../../include/functions_graph.php:3770 +#: ../../include/functions_graph.php:3775 ../../include/functions_graph.php:3776 +#: ../../include/functions_graph.php:3779 ../../include/functions_graph.php:4778 +#: ../../include/functions_reporting.php:5031 +#: ../../include/functions_reporting.php:5043 +#: ../../include/functions_reporting.php:5044 +#: ../../include/functions_reporting.php:5047 +#: ../../include/functions_reporting.php:5052 +#: ../../include/functions_reporting.php:5053 +#: ../../include/functions_reporting.php:5056 +#: ../../operation/users/user_edit.php:362 +#: ../../operation/snmpconsole/snmp_statistics.php:218 +#: ../../operation/snmpconsole/snmp_statistics.php:275 +#: ../../operation/snmpconsole/snmp_view.php:636 +#: ../../operation/snmpconsole/snmp_view.php:1120 +#: ../../operation/snmpconsole/snmp_view.php:1149 +#: ../../operation/gis_maps/render_view.php:167 +msgid "Other" +msgstr "Autre" -#: ../../operation/events/events.php:2106 ../../operation/events/events.php:2171 -#: ../../include/functions_events.php:67 ../../include/functions_events.php:93 -#: ../../include/functions_ui.php:3741 -msgid "ALERT" -msgstr "ALERTE" +#: ../../enterprise/godmode/massive/massive_delete_alerts_snmp.php:159 +#: ../../godmode/snmpconsole/snmp_alert.php:724 +#, php-format +msgid "Successfully deleted alerts (%s / %s)" +msgstr "Alertes supprimĆ©es correctement (%s / %s)" -#: ../../operation/events/events.php:2115 ../../include/functions_events.php:100 -#: ../../include/functions_events.php:2909 ../../include/functions_graph.php:3455 -#: ../../include/functions_ui.php:3750 -msgid "SYSTEM" -msgstr "SYSTƈME" +#: ../../enterprise/godmode/massive/massive_delete_alerts_snmp.php:167 +#: ../../godmode/snmpconsole/snmp_alert.php:728 +#, php-format +msgid "Unsuccessfully deleted alerts (%s / %s)" +msgstr "Erreur de suppression des alertes (%s / %s)" -#: ../../operation/events/events.php:2200 -msgid "Validate events" -msgstr "Valider les Ć©vĆ©nements" +#: ../../enterprise/godmode/massive/massive_delete_alerts_snmp.php:175 +#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:233 +msgid "You must select a SNMP alert" +msgstr "SĆ©lectionnez une alerte SNMP" -#: ../../operation/events/events.php:2224 -msgid "Delete events" -msgstr "Supprimer les Ć©vĆØnements" - -#: ../../operation/events/events.php:2307 -#: ../../include/lib/Dashboard/Widgets/top_n_events_by_group.php:433 -#: ../../include/lib/Dashboard/Widgets/top_n_events_by_module.php:437 -#: ../../include/functions_events.php:2692 -#: ../../include/functions_events.php:3280 ../../include/functions_graph.php:2864 -#: ../../include/functions_graph.php:3630 ../../include/functions_graph.php:3632 -#: ../../include/functions_reporting.php:10741 ../../include/functions.php:1235 -#: ../../include/functions_reporting_html.php:1128 -#: ../../include/functions_reporting_html.php:2450 -#: ../../enterprise/meta/advanced/metasetup.setup.php:144 -#: ../../mobile/operation/events.php:127 -#: ../../godmode/setup/setup_general.php:125 -msgid "System" -msgstr "SystĆØme" - -#: ../../operation/events/events.php:2636 -msgid "hours." -msgstr "heures." - -#: ../../operation/events/events_list.php:360 -#: ../../operation/events/events_list.php:1099 -msgid "No filter loaded" -msgstr "Aucun filtre chargĆ©" - -#: ../../operation/events/events_list.php:368 -#: ../../operation/events/events_list.php:1099 -msgid "Filter loaded" -msgstr "Filtre chargĆ©" - -#: ../../operation/events/events_list.php:418 ../../include/ajax/events.php:678 -msgid "New filter" -msgstr "Nouveau filtre" - -#: ../../operation/events/events_list.php:426 -#: ../../operation/events/events_list.php:479 -#: ../../include/ajax/custom_fields.php:707 ../../include/ajax/events.php:686 -#: ../../include/ajax/events.php:746 -#: ../../godmode/snmpconsole/snmp_filters.php:35 -#: ../../godmode/netflow/nf_edit_form.php:188 -msgid "Update filter" -msgstr "Mettre Ć  jour le filtre" - -#: ../../operation/events/events_list.php:433 -#: ../../include/ajax/custom_fields.php:571 -#: ../../include/ajax/custom_fields.php:618 -#: ../../include/ajax/custom_fields.php:662 ../../include/ajax/events.php:693 -#: ../../godmode/events/event_edit_filter.php:261 -msgid "Filter name" -msgstr "Nom du filtre" - -#: ../../operation/events/events_list.php:436 ../../include/ajax/events.php:696 -msgid "Save in Group" -msgstr "Enregistrer dans le groupe" - -#: ../../operation/events/events_list.php:438 ../../include/ajax/events.php:698 -#: ../../include/functions_snmp_browser.php:1478 -#: ../../include/functions_html.php:1234 ../../include/functions_html.php:1387 -#: ../../enterprise/views/ncm/snippets/list.php:94 -#: ../../enterprise/views/ncm/firmwares/list.php:100 -#: ../../enterprise/views/ncm/devices/list.php:147 -#: ../../enterprise/views/ncm/templates/list.php:100 -#: ../../enterprise/views/cluster/list.php:87 -#: ../../enterprise/include/class/Omnishell.class.php:812 -#: ../../enterprise/include/class/Omnishell.class.php:891 -#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:209 -#: ../../enterprise/godmode/reporting/graph_template_wizard.php:207 -#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:335 -#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:358 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:211 -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:98 -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:723 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:115 -#: ../../enterprise/godmode/policies/policy_agents.php:436 -#: ../../enterprise/godmode/policies/policy_agents.php:468 -msgid "Filter group" -msgstr "Filtrer le groupe" - -#: ../../operation/events/events_list.php:465 ../../include/ajax/events.php:732 -msgid "Overwrite filter" -msgstr "Ɖcraser le filtre" - -#: ../../operation/events/events_list.php:871 -#: ../../enterprise/include/functions_events.php:178 -#: ../../godmode/events/event_edit_filter.php:449 -msgid "Date from" -msgstr "Date de dĆ©but" - -#: ../../operation/events/events_list.php:875 -#: ../../enterprise/include/functions_events.php:188 -#: ../../godmode/events/event_edit_filter.php:452 -msgid "Date to" -msgstr "Date de fin" - -#: ../../operation/events/events_list.php:881 -#: ../../operation/agentes/datos_agente.php:198 ../../include/ajax/module.php:250 -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:778 -msgid "Timestamp from:" -msgstr "Horodatage Ć  partir de :" - -#: ../../operation/events/events_list.php:884 -#: ../../operation/agentes/datos_agente.php:204 ../../include/ajax/module.php:270 -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:796 -msgid "Timestamp to:" -msgstr "Horodatage jusqu'Ć  :" - -#: ../../operation/events/events_list.php:1105 -#: ../../operation/events/events_list.php:1107 -msgid "Event control filter" -msgstr "Filtre de contrĆ“le d'Ć©vĆ©nements" - -#: ../../operation/events/events_list.php:1115 -msgid "Error creating filter." -msgstr "Erreur de crĆ©ation du filtre" - -#: ../../operation/events/events_list.php:1119 -msgid "Error creating filter is duplicated." -msgstr "Erreur de crĆ©ation ; le filtre est dupliquĆ©." - -#: ../../operation/events/events_list.php:1123 -msgid "Filter created." -msgstr "Filtre crĆ©Ć©" - -#: ../../operation/events/events_list.php:1128 -msgid "Filter updated." -msgstr "Filtre mis Ć  jour" - -#: ../../operation/events/events_list.php:1132 -msgid "Error updating filter." -msgstr "Erreur de mise Ć  jour du filtre" - -#: ../../operation/events/events_list.php:1538 ../../include/ajax/events.php:803 -msgid "Filter name cannot be left blank" -msgstr "Le nom du filtre ne peut pas ĆŖtre laissĆ© en blanc" - -#: ../../operation/events/events_list.php:1614 -#: ../../operation/events/events_list.php:1707 -#: ../../include/ajax/graph.ajax.php:145 ../../include/ajax/events.php:946 -#: ../../godmode/setup/setup_general.php:574 -#: ../../godmode/gis_maps/configure_gis_map.php:575 -#: ../../godmode/reporting/create_container.php:294 -#: ../../godmode/reporting/create_container.php:310 -msgid "none" -msgstr "aucun" - -#: ../../operation/netflow/nf_live_view.php:131 -#: ../../operation/netflow/nf_live_view.php:153 -#: ../../operation/netflow/nf_live_view.php:159 -msgid "Netflow live view" -msgstr "Netflow en temps rĆ©el" - -#: ../../operation/netflow/nf_live_view.php:141 -#: ../../enterprise/operation/log/log_viewer.php:458 -#: ../../enterprise/godmode/modules/manage_inventory_modules.php:72 -#: ../../enterprise/godmode/modules/manage_inventory_modules_form.php:48 -#: ../../godmode/netflow/nf_edit.php:47 -msgid "Not supported in Windows systems" -msgstr "Pas pris en charge sur Windows" - -#: ../../operation/netflow/nf_live_view.php:149 -#: ../../operation/agentes/ver_agente.php:1377 -#: ../../enterprise/include/class/CommandCenter.class.php:142 -#: ../../enterprise/meta/general/logon_ok.php:16 -#: ../../enterprise/meta/monitoring/group_view.php:51 -#: ../../enterprise/meta/monitoring/custom_fields_view.php:50 -#: ../../enterprise/meta/monitoring/tactical.php:36 -#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:55 -#: ../../enterprise/meta/advanced/agents_setup.php:60 -#: ../../enterprise/meta/advanced/policymanager.php:54 -#: ../../enterprise/meta/index.php:955 ../../enterprise/meta/agentsearch.php:48 -#: ../../enterprise/extensions/vmware/vmware_view.php:1373 -#: ../../godmode/netflow/nf_edit.php:53 ../../godmode/netflow/nf_edit_form.php:69 -#: ../../godmode/netflow/nf_item_list.php:49 -msgid "Main" -msgstr "Principal" - -#: ../../operation/netflow/nf_live_view.php:170 -msgid "Error creating filter" -msgstr "Erreur de crĆ©ation du filtre" - -#: ../../operation/netflow/nf_live_view.php:172 -msgid "Filter created successfully" -msgstr "Filtre crĆ©Ć© correctement" - -#: ../../operation/netflow/nf_live_view.php:191 -msgid "Filter updated successfully" -msgstr "Filtre mis Ć  jour correctement" - -#: ../../operation/netflow/nf_live_view.php:192 -msgid "Error updating filter" -msgstr "Erreur de mise Ć  jour du filtre" - -#: ../../operation/netflow/nf_live_view.php:216 -msgid "Draw live filter" -msgstr "Dessiner un filtre en temps rĆ©el" - -#: ../../operation/netflow/nf_live_view.php:250 -msgid "Connection" -msgstr "Connexion" - -#: ../../operation/netflow/nf_live_view.php:303 -#: ../../operation/incidents/integriaims_export_csv.php:84 -#: ../../operation/incidents/configure_integriaims_incident.php:325 -#: ../../operation/incidents/list_integriaims_incidents.php:359 -#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:323 -msgid "Resolution" -msgstr "RĆ©solution" - -#: ../../operation/netflow/nf_live_view.php:303 -msgid "The interval will be divided in chunks the length of the resolution." -msgstr "L'intervalle sera divisĆ© en morceaux de la longueur de la rĆ©solution." - -#: ../../operation/netflow/nf_live_view.php:330 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2389 -#: ../../godmode/netflow/nf_item_list.php:176 -msgid "Max. values" -msgstr "Valeurs maximales" - -#: ../../operation/netflow/nf_live_view.php:344 -#: ../../godmode/netflow/nf_edit_form.php:253 -msgid "Aggregate by" -msgstr "Regrouper par" - -#: ../../operation/netflow/nf_live_view.php:347 -#: ../../godmode/netflow/nf_edit_form.php:255 -msgid "Src Ip Address" -msgstr "Adresse IP source" - -#: ../../operation/netflow/nf_live_view.php:348 -#: ../../godmode/netflow/nf_edit_form.php:256 -msgid "Dst Ip Address" -msgstr "Adresse IP de destination" - -#: ../../operation/netflow/nf_live_view.php:349 -#: ../../operation/netflow/nf_live_view.php:441 -#: ../../godmode/netflow/nf_edit_form.php:248 -#: ../../godmode/netflow/nf_edit_form.php:257 -msgid "Src Port" -msgstr "Port source" - -#: ../../operation/netflow/nf_live_view.php:350 -#: ../../operation/netflow/nf_live_view.php:433 -#: ../../godmode/netflow/nf_edit_form.php:245 -#: ../../godmode/netflow/nf_edit_form.php:258 -msgid "Dst Port" -msgstr "Port de destination" - -#: ../../operation/netflow/nf_live_view.php:392 -#: ../../include/class/CredentialStore.class.php:945 -#: ../../include/functions_html.php:1878 ../../include/functions_html.php:1879 -#: ../../include/functions_html.php:1989 ../../include/functions_html.php:1990 -#: ../../include/functions_html.php:2150 ../../include/functions_html.php:2151 -#: ../../enterprise/include/functions_cron.php:582 -#: ../../enterprise/include/lib/NetworkManager.php:87 -#: ../../enterprise/meta/include/functions_autoprovision.php:388 -#: ../../enterprise/meta/include/functions_wizard_meta.php:497 -#: ../../enterprise/meta/advanced/metasetup.relations.php:218 -#: ../../enterprise/meta/advanced/metasetup.relations.php:572 -#: ../../enterprise/godmode/setup/setup_acl.php:463 -#: ../../enterprise/godmode/setup/setup_acl.php:765 -#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:755 -#: ../../godmode/massive/massive_edit_modules.php:819 -#: ../../godmode/agentes/module_manager_editor_wmi.php:61 -#: ../../godmode/agentes/module_manager_editor_network.php:96 -msgid "Custom" -msgstr "Personnaliser" - -#: ../../operation/netflow/nf_live_view.php:404 -msgid "Select a filter" -msgstr "SĆ©lectionner un filtre" - -#: ../../operation/netflow/nf_live_view.php:414 -#: ../../godmode/netflow/nf_edit_form.php:239 -msgid "Dst Ip" -msgstr "Adresse IP de destination" - -#: ../../operation/netflow/nf_live_view.php:414 -#: ../../godmode/netflow/nf_edit_form.php:239 +#: ../../enterprise/godmode/massive/massive_delete_alerts_snmp.php:198 +#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:258 msgid "" -"Destination IP. A comma separated list of destination ip. If we leave the " -"field blank, will show all ip. Example filter by ip:" -"
    25.46.157.214,160.253.135.249" +"Search by these fields description, OID, Custom Value, SNMP Agent (IP), Single " +"value, each Custom OIDs/Datas." msgstr "" -"Adresse IP de destination. Une virgule sƩpare la liste d'adresses IP de " -"destination. Si le champ est laissƩ vide, toutes les adresses IP seront " -"affichƩes. Exemple de filtre par IP :
    25.46.157.214,160.253.135.249" +"Recherche par description de ces champs, OID, Valeur personnalisƩe, Agent SNMP " +"(IP), Valeur unique, chaque OID personnalisƩs/DonnƩes." -#: ../../operation/netflow/nf_live_view.php:422 -#: ../../godmode/netflow/nf_edit_form.php:242 -msgid "Src Ip" -msgstr "Adresse IP source" +#: ../../enterprise/godmode/massive/massive_delete_alerts_snmp.php:202 +#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:262 +#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:305 +#: ../../godmode/snmpconsole/snmp_alert.php:829 +#: ../../godmode/snmpconsole/snmp_alert.php:1166 +#: ../../include/functions_snmp.php:433 +#: ../../operation/snmpconsole/snmp_view.php:628 +msgid "Trap type" +msgstr "Type de dƩroutement" -#: ../../operation/netflow/nf_live_view.php:422 -#: ../../godmode/netflow/nf_edit_form.php:242 -msgid "" -"Source IP. A comma separated list of source ip. If we leave the field blank, " -"will show all ip. Example filter by ip:
    25.46.157.214,160.253.135.249" -msgstr "" -"Adresse IP Source. Une virgule sƩpare la liste d'adresses IP source. Si le " -"champ est laissƩ vide, toutes les adresses IP seront affichƩes. Exemple de " -"filtre par IP :
    25.46.157.214,160.253.135.249" +#: ../../enterprise/godmode/massive/massive_delete_alerts_snmp.php:217 +msgid "SNMP Alerts to be deleted" +msgstr "Alertes SNMP Ć  supprimer" -#: ../../operation/netflow/nf_live_view.php:433 -#: ../../godmode/netflow/nf_edit_form.php:245 -msgid "" -"Destination port. A comma separated list of destination ports. If we leave the " -"field blank, will show all ports. Example filter by ports 80 and 22:
    80,22" -msgstr "" -"Port de destination. Une virgule sƩpare la liste de ports de destination. Si " -"le champ est laissƩ vide, tous les ports seront affichƩs. Exemple de filtre " -"par ports 80 et 22 :
    80,22" +#: ../../enterprise/godmode/massive/massive_delete_alerts_snmp.php:289 +#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:403 +msgid "No snmp alert found." +msgstr "Aucune alerte snmp trouvƩe." -#: ../../operation/netflow/nf_live_view.php:441 -#: ../../godmode/netflow/nf_edit_form.php:248 -msgid "" -"Source port. A comma separated list of source ports. If we leave the field " -"blank, will show all ports. Example filter by ports 80 and 22:
    80,22" -msgstr "" -"Port source. Une virgule sƩpare la liste de ports source. Si le champ est " -"laissƩ vide, touts les ports seront affichƩs. Exemple de filtre par ports 80 " -"et 22 :
    80,22" +#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:217 +#, php-format +msgid "Successfully updated alerts (%s / %s)" +msgstr "Alertes (%s / %s) mises Ć  jour correctement" -#: ../../operation/netflow/nf_live_view.php:459 -#: ../../godmode/setup/setup_netflow.php:71 -msgid "IP address resolution can take a lot of time" -msgstr "La rĆ©solution de l'adresse IP peut prendre du temps" +#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:225 +#, php-format +msgid "Unsuccessfully updated alerts (%s / %s)" +msgstr "Erreur de mise Ć  jour des alertes (%s / %s)" -#: ../../operation/netflow/nf_live_view.php:477 -msgid "IP address resolution" -msgstr "RĆ©solution de l'adresse IP" +#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:277 +msgid "SNMP Alerts to be edit" +msgstr "Alertes SNMP Ć  modifier" -#: ../../operation/netflow/nf_live_view.php:477 -msgid "Resolve the IP addresses to get their hostnames." -msgstr "RĆ©soudre les adresses IP pour obtenir leurs noms d'hĆ“te" +#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:301 +#: ../../godmode/snmpconsole/snmp_alert.php:781 +msgid "Custom Value/OID" +msgstr "Valeur/OID personnalisĆ©e" -#: ../../operation/netflow/nf_live_view.php:480 -msgid "Source ip" -msgstr "IP source" +#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:303 +#: ../../godmode/snmpconsole/snmp_trap_generator.php:125 +#: ../../godmode/snmpconsole/snmp_alert.php:790 +#: ../../godmode/snmpconsole/snmp_alert.php:1259 +#: ../../operation/snmpconsole/snmp_view.php:854 +msgid "SNMP Agent" +msgstr "Agent SNMP" -#: ../../operation/netflow/nf_live_view.php:490 -#: ../../enterprise/meta/general/main_header.php:309 -#: ../../enterprise/meta/general/main_header.php:391 -#: ../../enterprise/meta/monitoring/wizard/wizard.create_module.php:268 -#: ../../enterprise/godmode/modules/configure_local_component.php:165 -#: ../../enterprise/godmode/agentes/plugins_manager.php:126 -#: ../../enterprise/godmode/policies/policy_plugins.php:108 -#: ../../godmode/modules/manage_network_components_form_common.php:53 -#: ../../godmode/netflow/nf_edit_form.php:237 -#: ../../godmode/alerts/configure_alert_template.php:946 -#: ../../godmode/alerts/configure_alert_template.php:987 -#: ../../godmode/alerts/configure_alert_template.php:1138 -#: ../../godmode/alerts/alert_commands.php:157 -#: ../../godmode/alerts/alert_commands.php:194 -#: ../../godmode/users/configure_user.php:1211 -msgid "Advanced" -msgstr "AvancĆ©" +#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:307 +#: ../../godmode/snmpconsole/snmp_alert.php:835 +msgid "Single value" +msgstr "Valeur unique" -#: ../../operation/netflow/nf_live_view.php:503 -msgid "Draw" -msgstr "Dessiner" +#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:309 +#: ../../godmode/snmpconsole/snmp_alert.php:1075 +#: ../../godmode/alerts/configure_alert_template.php:691 +msgid "Min. number of alerts" +msgstr "Nombre minimum d'alertes" -#: ../../operation/netflow/nf_live_view.php:507 -msgid "Save as new filter" -msgstr "Enregistrer comme nouveau filtre" +#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:311 +#: ../../godmode/snmpconsole/snmp_alert.php:1078 +#: ../../godmode/alerts/configure_alert_template.php:728 +msgid "Max. number of alerts" +msgstr "Nombre maximum d'alertes" -#: ../../operation/netflow/nf_live_view.php:508 -msgid "Update current filter" -msgstr "Mise Ć  jour de ce filtre" +#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:326 +#: ../../godmode/snmpconsole/snmp_alert.php:1097 +msgid "Other value" +msgstr "Autre valeur" -#: ../../operation/netflow/nf_live_view.php:522 -msgid "No filter selected" -msgstr "Aucun filtre sĆ©lectionnĆ©" - -#: ../../operation/agentes/networkmap.dinamic.php:126 -#: ../../operation/agentes/pandora_networkmap.view.php:2290 -msgid "List of networkmap" -msgstr "Liste de cartes de rĆ©seau" - -#: ../../operation/agentes/networkmap.dinamic.php:226 -#: ../../include/functions_config.php:2410 -msgid "Pandora FMS" -msgstr "Pandora FMS" - -#: ../../operation/agentes/status_monitor.php:62 -#: ../../operation/agentes/status_monitor.php:85 -#: ../../operation/agentes/ver_agente.php:1544 -#: ../../include/functions_events.php:4509 -#: ../../include/functions_reporting_html.php:1545 -#: ../../enterprise/meta/event/custom_events.php:56 -#: ../../enterprise/meta/event/custom_events.php:61 -#: ../../enterprise/meta/event/custom_events.php:74 -#: ../../enterprise/meta/event/custom_events.php:92 -#: ../../godmode/reporting/reporting_builder.item_editor.php:76 -#: ../../godmode/menu.php:77 ../../godmode/events/events.php:80 -#: ../../godmode/events/events.php:95 -#: ../../godmode/massive/massive_edit_agents.php:1103 -#: ../../godmode/agentes/agent_manager.php:907 -#: ../../godmode/agentes/agent_manager.php:932 -msgid "Custom fields" -msgstr "Champs personnalisĆ©s" - -#: ../../operation/agentes/status_monitor.php:119 -msgid "Monitor view" -msgstr "Vue du moniteur" - -#: ../../operation/agentes/status_monitor.php:488 -#: ../../operation/agentes/interface_view.functions.php:59 -#: ../../operation/agentes/estado_agente.php:262 -#: ../../include/class/NetworkMap.class.php:3226 -#: ../../include/functions_html.php:1535 -#: ../../enterprise/meta/monitoring/custom_fields_view.php:168 -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:746 -#: ../../enterprise/godmode/policies/policies.php:324 -#: ../../extensions/agents_modules.php:407 -#: ../../godmode/reporting/reporting_builder.item_editor.php:1488 -#: ../../godmode/agentes/planned_downtime.editor.php:803 -#: ../../godmode/agentes/modificar_agente.php:322 -msgid "Recursion" -msgstr "RĆ©cursion" - -#: ../../operation/agentes/status_monitor.php:500 -#: ../../enterprise/operation/agentes/tag_view.php:139 -msgid "Monitor status" -msgstr "Ɖtat du moniteur" - -#: ../../operation/agentes/status_monitor.php:536 -#: ../../operation/agentes/status_monitor.php:1318 -#: ../../include/ajax/module.php:978 ../../include/ajax/heatmap.ajax.php:225 -#: ../../include/ajax/heatmap.ajax.php:264 -#: ../../include/ajax/custom_fields.php:411 -#: ../../enterprise/operation/agentes/tag_view.php:205 -#: ../../enterprise/include/functions_reporting_csv.php:873 -#: ../../enterprise/meta/include/functions_events_meta.php:90 -#: ../../enterprise/godmode/policies/policy_external_alerts.php:338 -#: ../../mobile/operation/modules.php:594 ../../mobile/operation/modules.php:848 -#: ../../godmode/modules/manage_network_components.php:748 -#: ../../godmode/modules/manage_network_templates_form.php:231 -#: ../../godmode/modules/manage_network_components_form_wizard.php:272 -#: ../../godmode/agentes/status_monitor_custom_fields.php:85 -#: ../../godmode/agentes/status_monitor_custom_fields.php:145 -#: ../../godmode/agentes/agent_template.php:235 -#: ../../godmode/alerts/alert_list.list.php:89 -msgid "Module name" -msgstr "Nom du module" - -#: ../../operation/agentes/status_monitor.php:550 -#: ../../operation/agentes/alerts_status.functions.php:107 -#: ../../enterprise/operation/agentes/tag_view.php:223 -#: ../../enterprise/operation/agentes/tag_view.php:225 -msgid "Only it is show tags in use." -msgstr "Afficher seulement les Ć©tiquettes utilisĆ©es" - -#: ../../operation/agentes/status_monitor.php:555 -#: ../../operation/agentes/alerts_status.functions.php:112 -#: ../../enterprise/operation/agentes/tag_view.php:229 -msgid "No tags" -msgstr "Aucune Ć©tiquette" - -#: ../../operation/agentes/status_monitor.php:621 -#: ../../enterprise/operation/agentes/tag_view.php:278 -#: ../../godmode/agentes/module_manager_editor_data.php:15 -msgid "Data server module" -msgstr "Module de serveur de donnĆ©es" - -#: ../../operation/agentes/status_monitor.php:623 -#: ../../enterprise/operation/agentes/tag_view.php:280 -#: ../../godmode/agentes/module_manager_editor_network.php:77 -msgid "Network server module" -msgstr "Module de serveur de rĆ©seau" - -#: ../../operation/agentes/status_monitor.php:627 -#: ../../enterprise/operation/agentes/tag_view.php:284 -#: ../../godmode/agentes/module_manager_editor_plugin.php:46 -msgid "Plugin server module" -msgstr "Module du serveur plugin" - -#: ../../operation/agentes/status_monitor.php:631 -#: ../../enterprise/operation/agentes/tag_view.php:288 -#: ../../godmode/agentes/module_manager_editor_wmi.php:33 -msgid "WMI server module" -msgstr "Module serveur WMI" - -#: ../../operation/agentes/status_monitor.php:635 -#: ../../enterprise/operation/agentes/tag_view.php:292 -#: ../../godmode/agentes/module_manager_editor_prediction.php:107 -msgid "Prediction server module" -msgstr "Module de prĆ©diction du serveur" - -#: ../../operation/agentes/status_monitor.php:639 -#: ../../enterprise/operation/agentes/tag_view.php:296 -#: ../../godmode/agentes/module_manager_editor_web.php:55 -msgid "Web server module" -msgstr "Module du serveur web" - -#: ../../operation/agentes/status_monitor.php:641 -msgid "Wux server module" -msgstr "Module du serveur WUX" - -#: ../../operation/agentes/status_monitor.php:646 -#: ../../operation/agentes/status_monitor.php:1323 -#: ../../enterprise/operation/agentes/tag_view.php:299 -#: ../../enterprise/operation/agentes/tag_view.php:680 -#: ../../godmode/agentes/status_monitor_custom_fields.php:89 -#: ../../godmode/agentes/status_monitor_custom_fields.php:146 -msgid "Server type" -msgstr "Type de serveur" - -#: ../../operation/agentes/status_monitor.php:652 -#: ../../enterprise/operation/agentes/tag_view.php:305 -#: ../../godmode/agentes/modificar_agente.php:337 -msgid "Only enabled" -msgstr "ActivĆ©s seulement" - -#: ../../operation/agentes/status_monitor.php:653 -#: ../../enterprise/operation/agentes/tag_view.php:306 -#: ../../godmode/agentes/modificar_agente.php:336 -msgid "Only disabled" -msgstr "DĆ©sactivĆ©s seulement" - -#: ../../operation/agentes/status_monitor.php:656 -#: ../../enterprise/operation/agentes/tag_view.php:309 -msgid "Show monitors..." -msgstr "Afficher les moniteurs" - -#: ../../operation/agentes/status_monitor.php:662 -msgid "Min. hours in current status" -msgstr "Heures min. dans l'Ć©tat actuel" - -#: ../../operation/agentes/status_monitor.php:666 -#: ../../enterprise/operation/agentes/tag_view.php:319 -#: ../../enterprise/operation/agentes/tag_view.php:679 -#: ../../godmode/agentes/status_monitor_custom_fields.php:81 -#: ../../godmode/agentes/status_monitor_custom_fields.php:144 -msgid "Data type" -msgstr "Type de donnĆ©es" - -#: ../../operation/agentes/status_monitor.php:765 -msgid "Not condition" -msgstr "Pas de condition" - -#: ../../operation/agentes/status_monitor.php:765 -msgid "" -"If you check this option, those elements that do NOT meet any of the " -"requirements will be shown" -msgstr "" -"Si vous cochez cette option, les Ć©lĆ©ments qui ne rĆ©pondent Ć  aucune des " -"exigences seront affichĆ©s" - -#: ../../operation/agentes/status_monitor.php:831 -#: ../../operation/agentes/agent_fields.php:37 -#: ../../enterprise/operation/agentes/tag_view.php:447 -msgid "Agent custom fields" -msgstr "Champs d'agent personnalisĆ©s" - -#: ../../operation/agentes/status_monitor.php:872 -msgid "Show filters" -msgstr "Afficher les filtres" - -#: ../../operation/agentes/status_monitor.php:1302 -#: ../../operation/agentes/alerts_status.php:537 -#: ../../operation/agentes/alerts_status.php:573 -#: ../../include/ajax/module.php:974 ../../include/ajax/alert_list.ajax.php:272 -#: ../../enterprise/operation/agentes/policy_view.php:67 -#: ../../enterprise/operation/agentes/collection_view.php:74 -#: ../../enterprise/include/functions_policies.php:4070 -#: ../../enterprise/meta/advanced/policymanager.sync.php:319 -#: ../../enterprise/meta/advanced/policymanager.queue.php:210 -#: ../../enterprise/meta/advanced/policymanager.queue.php:257 -#: ../../enterprise/extensions/resource_exportation/functions.php:18 -#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:462 -#: ../../enterprise/godmode/massive/massive_delete_alerts_policy.php:112 -#: ../../enterprise/godmode/massive/massive_edit_tags_policy.php:116 -#: ../../enterprise/godmode/massive/massive_add_alerts_policy.php:102 -#: ../../enterprise/godmode/massive/massive_add_modules_policy.php:208 -#: ../../enterprise/godmode/massive/massive_tags_edit_policy.php:108 -#: ../../enterprise/godmode/agentes/inventory_manager.php:219 -#: ../../enterprise/godmode/agentes/collection_manager.php:205 -#: ../../enterprise/godmode/agentes/plugins_manager.php:193 -#: ../../enterprise/godmode/policies/policy_queue.php:593 -#: ../../enterprise/godmode/policies/policy_queue.php:647 -#: ../../godmode/agentes/module_manager.php:841 -#: ../../godmode/agentes/status_monitor_custom_fields.php:73 -#: ../../godmode/agentes/status_monitor_custom_fields.php:142 -#: ../../godmode/alerts/alert_view.php:148 -msgid "Policy" -msgstr "Politique" - -#: ../../operation/agentes/status_monitor.php:1302 -#: ../../operation/agentes/alerts_status.php:537 -#: ../../operation/agentes/alerts_status.php:573 -#: ../../include/ajax/module.php:974 ../../include/ajax/alert_list.ajax.php:272 -#: ../../enterprise/operation/agentes/collection_view.php:74 -#: ../../enterprise/godmode/agentes/inventory_manager.php:219 -#: ../../enterprise/godmode/agentes/collection_manager.php:205 -#: ../../godmode/reporting/reporting_builder.list_items.php:371 -#: ../../godmode/reporting/graph_builder.graph_editor.php:211 +#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:332 +#: ../../godmode/snmpconsole/snmp_alert.php:1126 #: ../../godmode/snmpconsole/snmp_alert.php:1254 -#: ../../godmode/agentes/module_manager.php:841 -msgid "P." -msgstr "P." +#: ../../godmode/reporting/reporting_builder.list_items.php:371 +#: ../../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 +msgid "Position" +msgstr "Position" -#: ../../operation/agentes/status_monitor.php:1312 -msgid "Data Type" -msgstr "Type de donnĆ©es" +#: ../../enterprise/godmode/massive/massive_tags_edit_policy.php:127 +msgid "Modules unused" +msgstr "Modules non utilisĆ©s" -#: ../../operation/agentes/status_monitor.php:1340 -#: ../../operation/agentes/estado_generalagente.php:438 -#: ../../include/functions_treeview.php:326 -#: ../../godmode/agentes/status_monitor_custom_fields.php:101 -#: ../../godmode/agentes/status_monitor_custom_fields.php:149 -msgid "Last status change" -msgstr "Dernier changement dā€™Ć©tat" +#: ../../enterprise/godmode/massive/massive_tags_edit_policy.php:167 +msgid "Modules used" +msgstr "Modules utilisĆ©s" -#: ../../operation/agentes/status_monitor.php:1351 -#: ../../enterprise/operation/agentes/tag_view.php:683 -#: ../../godmode/agentes/module_manager.php:864 -#: ../../godmode/agentes/status_monitor_custom_fields.php:109 -#: ../../godmode/agentes/status_monitor_custom_fields.php:151 -msgid "Warn" -msgstr "Alerte" +#: ../../enterprise/godmode/massive/massive_delete_alerts_policy.php:88 +msgid "Success: remove the alerts." +msgstr "Alertes supprimĆ©es correctement" -#: ../../operation/agentes/status_monitor.php:1431 -#: ../../operation/agentes/pandora_networkmap.view.php:1743 -msgid "(Adopt) " -msgstr "(Adopter) " +#: ../../enterprise/godmode/massive/massive_delete_alerts_policy.php:88 +msgid "Failed: remove the alerts for this modules, please check." +msgstr "Erreur de suppression des alertes pour ces modules. Veuillez les vĆ©rifier." -#: ../../operation/agentes/status_monitor.php:1439 -#: ../../operation/agentes/pandora_networkmap.view.php:1751 -msgid "(Unlinked) (Adopt) " -msgstr "(DissociĆ©) (Adopter) " +#: ../../enterprise/godmode/massive/massive_delete_alerts_policy.php:141 +msgid "Modules agents in policy" +msgstr "Modules des agents dans la politique" -#: ../../operation/agentes/status_monitor.php:1442 -#: ../../operation/agentes/pandora_networkmap.view.php:1754 -msgid "(Unlinked) " -msgstr "(DissociĆ©) " +#: ../../enterprise/godmode/massive/massive_add_service_elements.php:112 +#, php-format +msgid "Problems while adding module element: %d, %s" +msgstr "ProblĆØmes lors de lā€™ajout dā€™un Ć©lĆ©ment de module : %d, %s" -#: ../../operation/agentes/status_monitor.php:1641 -#: ../../operation/agentes/status_monitor.php:1649 -#: ../../include/class/Tree.class.php:646 ../../include/lib/Module.php:565 -#: ../../include/functions_modules.php:4088 ../../include/functions.php:1357 -#: ../../include/functions.php:1394 -msgid "NO DATA" -msgstr "PAS DE DONNƉES" +#: ../../enterprise/godmode/massive/massive_add_service_elements.php:157 +#, php-format +msgid "Problems while adding agent element: %d, %s" +msgstr "ProblĆØmes lors de lā€™ajout dā€™un Ć©lĆ©ment dā€™agent : %d, %s" -#: ../../operation/agentes/status_monitor.php:1980 -msgid "This group doesn't have any monitor" -msgstr "Ce groupe n'a aucun moniteur" +#: ../../enterprise/godmode/massive/massive_add_service_elements.php:205 +#, php-format +msgid "%s: %d, %s" +msgstr "%s: %d, %s" -#: ../../operation/agentes/status_monitor.php:1982 -msgid "Sorry no search parameters" -msgstr "Pas de paramĆØtres de recherche" +#: ../../enterprise/godmode/massive/massive_add_service_elements.php:228 +msgid "Failed to process adding elements in services: " +msgstr "Impossible de traiter lā€™ajout dā€™Ć©lĆ©ments dans les services : " -#: ../../operation/agentes/alerts_status.php:209 -#: ../../enterprise/meta/general/main_menu.php:206 -#: ../../enterprise/meta/general/main_header.php:115 -msgid "Alerts view" -msgstr "Afficher les alertes" +#: ../../enterprise/godmode/massive/massive_add_service_elements.php:270 +msgid "added" +msgstr "ajoutĆ©" -#: ../../operation/agentes/alerts_status.php:217 -msgid "Insufficient permissions to validate alerts" -msgstr "Autorisations insuffisantes pour valider les alertes" +#: ../../enterprise/godmode/massive/massive_add_service_elements.php:354 +msgid "Item type to be added" +msgstr "Type dā€™Ć©lĆ©ment Ć  ajouter" -#: ../../operation/agentes/alerts_status.php:500 -#: ../../enterprise/godmode/policies/policy_external_alerts.php:372 -#: ../../godmode/alerts/alert_list.list.php:178 -msgid "Alert control filter" -msgstr "Filtre de control d'alertes" +#: ../../enterprise/godmode/massive/massive_add_service_elements.php:371 +#: ../../enterprise/godmode/massive/massive_create_services.php:974 +msgid "Add selected" +msgstr "Ajouter la sĆ©lection" -#: ../../operation/agentes/alerts_status.php:539 -#: ../../operation/agentes/alerts_status.php:575 -#: ../../operation/agentes/alerts_status.php:610 -#: ../../operation/agentes/alerts_status.php:643 -#: ../../operation/agentes/alerts_status.functions.php:123 -#: ../../include/ajax/alert_list.ajax.php:273 -#: ../../include/ajax/alert_list.ajax.php:298 -#: ../../enterprise/operation/agentes/policy_view.php:257 -#: ../../godmode/alerts/alert_list.list.php:141 -msgid "Standby" -msgstr "Mode veille" +#: ../../enterprise/godmode/massive/massive_add_service_elements.php:496 +#: ../../enterprise/godmode/massive/massive_edit_service_elements.php:252 +msgid "In smart services weights are automatically calculated." +msgstr "Dans les services intelligents, les poids sont calculĆ©s automatiquement." -#: ../../operation/agentes/alerts_status.php:539 -#: ../../operation/agentes/alerts_status.php:575 -#: ../../operation/agentes/alerts_status.php:610 -#: ../../operation/agentes/alerts_status.php:643 -#: ../../include/ajax/alert_list.ajax.php:273 -#: ../../include/ajax/alert_list.ajax.php:298 -#: ../../include/class/AuditLog.class.php:128 -#: ../../include/functions_events.php:2603 -#: ../../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 -#: ../../enterprise/godmode/reporting/reporting_builder.template_list_item.php:190 -#: ../../enterprise/godmode/admin_access_logs.php:50 -#: ../../enterprise/godmode/policies/policy_agents.php:852 -#: ../../enterprise/godmode/policies/policy_agents.php:1368 -#: ../../mobile/operation/agents.php:406 -#: ../../godmode/agentes/module_manager.php:844 -msgid "S." -msgstr "S." +#: ../../enterprise/godmode/massive/massive_add_service_elements.php:501 +#: ../../enterprise/godmode/massive/massive_edit_service_elements.php:257 +msgid "" +"Weights configured are common for every item added to the service, if you want to " +"customize them, please edit each element at service element editor." +msgstr "" +"Les poids configurĆ©s sont communs pour chaque Ć©lĆ©ment ajoutĆ© au service, si vous " +"souhaitez les personnaliser, veuillez modifier chaque Ć©lĆ©ment dans lā€™Ć©diteur " +"dā€™Ć©lĆ©ments de service." -#: ../../operation/agentes/alerts_status.php:543 -#: ../../operation/agentes/alerts_status.php:579 -#: ../../operation/agentes/alerts_status.php:613 -#: ../../operation/agentes/alerts_status.php:646 -#: ../../include/ajax/module.php:970 ../../include/ajax/alert_list.ajax.php:276 -#: ../../include/ajax/alert_list.ajax.php:301 -msgid "Force execution" -msgstr "Forcer l'exĆ©cution" +#: ../../enterprise/godmode/massive/massive_add_service_elements.php:506 +#: ../../enterprise/godmode/massive/massive_create_services.php:1148 +#: ../../enterprise/godmode/massive/massive_edit_service_elements.php:262 +msgid "Service items summary" +msgstr "RĆ©sumĆ© des Ć©lĆ©ments de service" -#: ../../operation/agentes/alerts_status.php:543 -#: ../../operation/agentes/alerts_status.php:579 -#: ../../operation/agentes/alerts_status.php:613 -#: ../../operation/agentes/alerts_status.php:646 -#: ../../include/ajax/module.php:970 ../../include/ajax/alert_list.ajax.php:276 -#: ../../include/ajax/alert_list.ajax.php:301 -msgid "F." -msgstr "F." +#: ../../enterprise/godmode/massive/massive_add_service_elements.php:509 +#: ../../enterprise/godmode/massive/massive_create_services.php:1151 +#: ../../enterprise/godmode/massive/massive_edit_service_elements.php:265 +#: ../../include/functions_visual_map_editor.php:1148 +#: ../../include/rest-api/models/VisualConsole/Item.php:2522 +msgid "Critical weight" +msgstr "Poids critique" -#: ../../operation/agentes/alerts_status.php:549 -#: ../../operation/agentes/alerts_status.php:584 -#: ../../operation/agentes/alerts_status.php:619 -#: ../../operation/agentes/alerts_status.php:651 -#: ../../operation/search_alerts.php:36 ../../include/functions_cron.php:653 -#: ../../include/ajax/alert_list.ajax.php:280 -#: ../../include/ajax/alert_list.ajax.php:305 -#: ../../include/class/AgentsAlerts.class.php:338 -#: ../../include/class/AgentsAlerts.class.php:964 -#: ../../include/functions_treeview.php:412 -#: ../../include/functions_treeview.php:453 -#: ../../include/functions_reporting_html.php:3182 -#: ../../include/functions_reporting_html.php:3185 -#: ../../enterprise/operation/agentes/policy_view.php:259 -#: ../../enterprise/include/functions_reporting_csv.php:2465 -#: ../../enterprise/include/functions_tasklist.php:328 -#: ../../enterprise/meta/monitoring/wizard/wizard.manage_alert.php:224 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:321 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1399 -#: ../../enterprise/godmode/policies/policy_external_alerts.php:329 -#: ../../enterprise/godmode/policies/policy_alerts.php:351 -#: ../../enterprise/godmode/policies/policy_alerts.php:557 -#: ../../mobile/operation/alerts.php:342 -#: ../../godmode/reporting/reporting_builder.item_editor.php:201 -#: ../../godmode/reporting/reporting_builder.item_editor.php:828 -#: ../../godmode/alerts/alert_list.list.php:483 -#: ../../godmode/alerts/alert_list.builder.php:140 -#: ../../godmode/alerts/alert_view.php:95 -msgid "Template" -msgstr "ModĆØle" +#: ../../enterprise/godmode/massive/massive_add_service_elements.php:522 +#: ../../enterprise/godmode/massive/massive_create_services.php:1164 +#: ../../enterprise/godmode/massive/massive_edit_service_elements.php:278 +#: ../../include/functions_visual_map_editor.php:1174 +#: ../../include/rest-api/models/VisualConsole/Item.php:2536 +msgid "Warning weight" +msgstr "Poids d'alerte" + +#: ../../enterprise/godmode/massive/massive_add_service_elements.php:535 +#: ../../enterprise/godmode/massive/massive_create_services.php:1177 +#: ../../enterprise/godmode/massive/massive_edit_service_elements.php:291 +msgid "Unknown weight" +msgstr "Poids inconnu" + +#: ../../enterprise/godmode/massive/massive_add_service_elements.php:548 +#: ../../enterprise/godmode/massive/massive_create_services.php:1190 +#: ../../enterprise/godmode/massive/massive_edit_service_elements.php:304 +msgid "Normal weight" +msgstr "Poids normal" + +#: ../../enterprise/godmode/massive/massive_add_service_elements.php:616 +#: ../../include/functions_notifications.php:928 +msgid "Add elements" +msgstr "Ajouter des Ć©lĆ©ments" + +#: ../../enterprise/godmode/massive/massive_create_services.php:110 +#: ../../enterprise/godmode/services/services.service.php:120 +msgid "No name specified for the service" +msgstr "Aucun nom spĆ©cifiĆ© pour le service" + +#: ../../enterprise/godmode/massive/massive_create_services.php:116 +#: ../../enterprise/godmode/services/services.service.php:131 +msgid "No description specified for the service" +msgstr "Aucune description spĆ©cifiĆ©e pour le service" + +#: ../../enterprise/godmode/massive/massive_create_services.php:122 +#: ../../enterprise/godmode/services/services.service.php:142 +msgid "You must specify an agent to store the service" +msgstr "SpĆ©cifiez un agent pour stocker le service" + +#: ../../enterprise/godmode/massive/massive_create_services.php:210 +#, php-format +msgid "Failed to create service for agent %s, %s" +msgstr "Impossible de crĆ©er le service pour les %s de lā€™agent, %s" + +#: ../../enterprise/godmode/massive/massive_create_services.php:294 +#, php-format +msgid "Failed to create service for module %s, %s" +msgstr "Impossible de crĆ©er un service pour le %s du module, %s" + +#: ../../enterprise/godmode/massive/massive_create_services.php:380 +#, php-format +msgid "Failed to create service for service %s, %s" +msgstr "Impossible de crĆ©er le service pour les %s du service, %s" + +#: ../../enterprise/godmode/massive/massive_create_services.php:435 +#, php-format +msgid "Agent selected %d not found" +msgstr "Agent sĆ©lectionnĆ© %d introuvable" + +#: ../../enterprise/godmode/massive/massive_create_services.php:481 +#, php-format +msgid "Module selected %d not found" +msgstr "Module sĆ©lectionnĆ© %d introuvable" + +#: ../../enterprise/godmode/massive/massive_create_services.php:528 +#, php-format +msgid "Service selected %d not found" +msgstr "Service sĆ©lectionnĆ© %d introuvable" + +#: ../../enterprise/godmode/massive/massive_create_services.php:562 +#, php-format +msgid "Failed to create service for agent %s" +msgstr "Impossible de crĆ©er le service pour les %s de lā€™agent" + +#: ../../enterprise/godmode/massive/massive_create_services.php:573 +#, php-format +msgid "Failed to create services: %s" +msgstr "Impossible de crĆ©er des services : %s" + +#: ../../enterprise/godmode/massive/massive_create_services.php:593 +#, php-format +msgid "%d services created with %d items" +msgstr "%d services crĆ©Ć©s avec des Ć©lĆ©ments %d" + +#: ../../enterprise/godmode/massive/massive_create_services.php:599 +msgid "No services created" +msgstr "Aucun service crĆ©Ć©" + +#: ../../enterprise/godmode/massive/massive_create_services.php:632 +msgid "Service(s) definition" +msgstr "DĆ©finition du(s) service(s)" + +#: ../../enterprise/godmode/massive/massive_create_services.php:659 +#: ../../enterprise/godmode/services/services.service.php:570 +msgid "" +"This group will be used also to control access to this service and its elements." +msgstr "" +"Ce groupe sera Ć©galement utilisĆ© pour contrĆ“ler lā€™accĆØs Ć  ce service et Ć  ses " +"Ć©lĆ©ments." + +#: ../../enterprise/godmode/massive/massive_create_services.php:674 +#: ../../enterprise/godmode/services/services.service.php:634 +msgid "Agent to store data" +msgstr "Agent pour stocker des donnĆ©es" + +#: ../../enterprise/godmode/massive/massive_create_services.php:690 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:880 +#: ../../enterprise/godmode/services/services.service.php:651 +#: ../../enterprise/godmode/servers/HA_cluster.php:175 +#: ../../enterprise/operation/services/services.list.php:278 +#: ../../enterprise/operation/services/services.table_services.php:200 +#: ../../godmode/massive/massive_edit_modules.php:933 +#: ../../godmode/alerts/alert_view.php:407 +msgid "Mode" +msgstr "Mode" + +#: ../../enterprise/godmode/massive/massive_create_services.php:698 +#: ../../enterprise/godmode/services/services.service.php:658 +#: ../../enterprise/include/class/VMware.app.php:676 +#: ../../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:1327 +#: ../../enterprise/include/class/MySQL.app.php:567 +#: ../../enterprise/include/class/Oracle.app.php:552 +#: ../../enterprise/include/class/MicrosoftSQLServer.app.php:546 +#: ../../enterprise/include/functions_ipam.php:1356 +#: ../../enterprise/operation/services/services.list.php:275 +#: ../../enterprise/operation/services/services.table_services.php:197 +#: ../../enterprise/tools/ipam/ipam_list.php:670 +#: ../../godmode/wizards/HostDevices.class.php:807 +#: ../../godmode/wizards/DiscoveryTaskList.class.php:712 +#: ../../include/class/CustomNetScan.class.php:529 +msgid "Manual" +msgstr "Manuel" + +#: ../../enterprise/godmode/massive/massive_create_services.php:699 +#: ../../enterprise/godmode/services/services.service.php:659 +#: ../../enterprise/operation/services/services.list.php:276 +#: ../../enterprise/operation/services/services.table_services.php:198 +msgid "Smart" +msgstr "Smart" + +#: ../../enterprise/godmode/massive/massive_create_services.php:716 +#: ../../enterprise/godmode/services/services.service.php:676 +msgid "In smart mode, thresholds are percentual." +msgstr "En mode intelligent, les seuils sont en pourcentage." + +#: ../../enterprise/godmode/massive/massive_create_services.php:765 +msgid "Create a service per item" +msgstr "CrĆ©er un service par Ć©lĆ©ment" + +#: ../../enterprise/godmode/massive/massive_create_services.php:766 +msgid "If enabled multiple services will be created." +msgstr "Si cette option est activĆ©e, plusieurs services seront crĆ©Ć©s." + +#: ../../enterprise/godmode/massive/massive_create_services.php:784 +msgid "Services header" +msgstr "En-tĆŖte Services" + +#: ../../enterprise/godmode/massive/massive_create_services.php:785 +msgid "All services names created will start with selected name." +msgstr "Tous les noms de services crĆ©Ć©s commenceront par le nom sĆ©lectionnĆ©." + +#: ../../enterprise/godmode/massive/massive_create_services.php:799 +#: ../../enterprise/godmode/services/services.service.php:726 +msgid "Unknown elements as critical" +msgstr "ƉlĆ©ments inconnus comme critiques" + +#: ../../enterprise/godmode/massive/massive_create_services.php:829 +#: ../../enterprise/godmode/services/services.service.php:766 +msgid "Cascade protection enabled" +msgstr "Protection en cascade activĆ©e" + +#: ../../enterprise/godmode/massive/massive_create_services.php:839 +msgid "SLA calculation" +msgstr "Calcul du SLA" + +#: ../../enterprise/godmode/massive/massive_create_services.php:842 +#: ../../enterprise/godmode/services/services.service.php:796 +msgid "Calculate continuous SLA" +msgstr "Calculer le SLA continu" + +#: ../../enterprise/godmode/massive/massive_create_services.php:852 +#: ../../enterprise/godmode/services/services.service.php:806 +msgid "S.L.A. interval" +msgstr "Intervalle du SLA" + +#: ../../enterprise/godmode/massive/massive_create_services.php:866 +#: ../../enterprise/godmode/services/services.service.php:820 +msgid "S.L.A. limit" +msgstr "Limite du SLA" + +#: ../../enterprise/godmode/massive/massive_create_services.php:896 +#: ../../enterprise/godmode/services/services.service.php:867 +msgid "Warning service alert" +msgstr "Alerte de service dā€™avertissement" + +#: ../../enterprise/godmode/massive/massive_create_services.php:908 +#: ../../enterprise/godmode/services/services.service.php:879 +msgid "Critical service alert" +msgstr "Alerte de service critique" + +#: ../../enterprise/godmode/massive/massive_create_services.php:920 +#: ../../enterprise/godmode/services/services.service.php:891 +msgid "Unknown service alert" +msgstr "Alerte de service inconnue" + +#: ../../enterprise/godmode/massive/massive_create_services.php:932 +#: ../../enterprise/godmode/services/services.service.php:903 +msgid "S.L.A. critical service alert" +msgstr "Alerte de service critique S.L.A." + +#: ../../enterprise/godmode/massive/massive_create_services.php:946 +msgid "Items selected here will be added to the lists at Service items summary." +msgstr "" +"Les Ć©lĆ©ments sĆ©lectionnĆ©s ici seront ajoutĆ©s aux listes dans RĆ©sumĆ© des Ć©lĆ©ments " +"de service." + +#: ../../enterprise/godmode/massive/massive_create_services.php:949 +msgid "Item(s) definition" +msgstr "DĆ©finition dā€™Ć©lĆ©ment(s)" + +#: ../../enterprise/godmode/massive/massive_create_services.php:957 +msgid "Item type" +msgstr "Type d'Ć©lĆ©ment" + +#: ../../enterprise/godmode/massive/massive_create_services.php:1144 +msgid "" +"Weights configured are common for every item added to the service, if you want to " +"customize them, please edit the service." +msgstr "" +"Les poids configurĆ©s sont communs pour chaque article ajoutĆ© au service, si vous " +"souhaitez les personnaliser, veuillez modifier le service." + +#: ../../enterprise/godmode/massive/massive_create_services.php:1260 +msgid "Create services" +msgstr "CrĆ©er des services" + +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:491 +#: ../../godmode/massive/massive_edit_modules.php:554 +msgid "Dynamic Min." +msgstr "Dynamique min." + +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:732 +#: ../../godmode/massive/massive_edit_modules.php:796 +msgid "SMNP community" +msgstr "CommunautĆ© SNMP" + +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:742 +#: ../../godmode/agentes/module_manager_editor_network.php:227 +#: ../../godmode/massive/massive_edit_modules.php:806 +msgid "SNMP OID" +msgstr "OID SNMP" + +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:757 +#: ../../godmode/agentes/module_manager_editor_wmi.php:45 +#: ../../godmode/agentes/module_manager_editor_network.php:80 +#: ../../godmode/massive/massive_edit_modules.php:821 +#: ../../include/class/AgentWizard.class.php:623 +#: ../../include/functions_snmp_browser.php:702 +msgid "Target IP" +msgstr "Adresse IP cible" + +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:780 +#: ../../enterprise/tools/ipam/ipam_vlan_wizard.php:272 +#: ../../godmode/modules/manage_network_components_form_network.php:55 +#: ../../godmode/agentes/module_manager_editor_network.php:180 +#: ../../godmode/massive/massive_edit_modules.php:839 +#: ../../godmode/wizards/HostDevices.class.php:1199 +#: ../../include/class/AgentWizard.class.php:734 +msgid "SNMP version" +msgstr "Version SNMP" + +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:795 +#: ../../enterprise/tools/ipam/ipam_vlan_wizard.php:299 +#: ../../godmode/modules/manage_network_components_form_network.php:96 +#: ../../godmode/agentes/module_manager_editor_network.php:336 +#: ../../godmode/massive/massive_edit_modules.php:852 +#: ../../godmode/wizards/HostDevices.class.php:1259 +#: ../../include/functions_snmp_browser.php:826 +msgid "Auth user" +msgstr "Utilisateur de l'authentification" + +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:804 +#: ../../enterprise/tools/ipam/ipam_vlan_wizard.php:308 +#: ../../godmode/modules/manage_network_components_form_network.php:105 +#: ../../godmode/agentes/module_manager_editor_network.php:349 +#: ../../godmode/massive/massive_edit_modules.php:861 +#: ../../godmode/wizards/HostDevices.class.php:1270 +#: ../../include/functions_snmp_browser.php:836 +msgid "Auth password" +msgstr "Authentification de mot de passe" + +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:804 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:808 +#: ../../godmode/agentes/module_manager_editor_network.php:349 +#: ../../godmode/agentes/module_manager_editor_network.php:371 +#: ../../godmode/massive/massive_edit_modules.php:861 +#: ../../godmode/massive/massive_edit_modules.php:865 +#: ../../godmode/wizards/HostDevices.class.php:1272 +#: ../../godmode/wizards/HostDevices.class.php:1303 +msgid "The pass length must be eight character minimum." +msgstr "La longueur minimale du mot de passe est de huit caractĆØres." + +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:806 +#: ../../enterprise/tools/ipam/ipam_vlan_wizard.php:324 +#: ../../godmode/modules/manage_network_components_form_network.php:123 +#: ../../godmode/agentes/module_manager_editor_network.php:369 +#: ../../godmode/massive/massive_edit_modules.php:863 +#: ../../godmode/wizards/HostDevices.class.php:1286 +#: ../../include/class/AgentWizard.class.php:868 +#: ../../include/functions_snmp_browser.php:853 +msgid "Privacy method" +msgstr "MĆ©thode de confidentialitĆ©" + +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:807 +#: ../../enterprise/tools/ipam/ipam_vlan_wizard.php:327 +#: ../../godmode/modules/manage_network_components_form_network.php:126 +#: ../../godmode/agentes/module_manager_editor_network.php:370 +#: ../../godmode/massive/massive_edit_modules.php:864 +#: ../../godmode/wizards/HostDevices.class.php:1291 +#: ../../include/functions_snmp_browser.php:856 +msgid "DES" +msgstr "DES" + +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:807 +#: ../../enterprise/tools/ipam/ipam_vlan_wizard.php:328 +#: ../../godmode/modules/manage_network_components_form_network.php:127 +#: ../../godmode/agentes/module_manager_editor_network.php:370 +#: ../../godmode/massive/massive_edit_modules.php:864 +#: ../../godmode/wizards/HostDevices.class.php:1292 +#: ../../include/functions_snmp_browser.php:857 +msgid "AES" +msgstr "AES" + +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:808 +#: ../../godmode/modules/manage_network_components_form_network.php:136 +#: ../../godmode/agentes/module_manager_editor_network.php:371 +#: ../../godmode/massive/massive_edit_modules.php:865 +#: ../../godmode/wizards/HostDevices.class.php:1301 +#: ../../include/class/AgentWizard.class.php:882 +#: ../../include/functions_snmp_browser.php:867 +msgid "Privacy pass" +msgstr "Mot de passe privĆ©" + +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:810 +#: ../../enterprise/tools/ipam/ipam_vlan_wizard.php:347 +#: ../../godmode/modules/manage_network_components_form_network.php:148 +#: ../../godmode/agentes/module_manager_editor_network.php:391 +#: ../../godmode/massive/massive_edit_modules.php:867 +#: ../../godmode/wizards/HostDevices.class.php:1317 +#: ../../include/functions_snmp_browser.php:877 +msgid "Auth method" +msgstr "MĆ©thode d'authentification" + +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:811 +#: ../../enterprise/tools/ipam/ipam_vlan_wizard.php:350 +#: ../../godmode/modules/manage_network_components_form_network.php:151 +#: ../../godmode/agentes/module_manager_editor_network.php:394 +#: ../../godmode/massive/massive_edit_modules.php:868 +#: ../../godmode/wizards/HostDevices.class.php:1322 +#: ../../include/class/Diagnostics.class.php:2175 +#: ../../include/functions_snmp_browser.php:880 +msgid "MD5" +msgstr "MD5" + +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:811 +#: ../../enterprise/tools/ipam/ipam_vlan_wizard.php:351 +#: ../../godmode/modules/manage_network_components_form_network.php:152 +#: ../../godmode/agentes/module_manager_editor_network.php:395 +#: ../../godmode/massive/massive_edit_modules.php:868 +#: ../../godmode/wizards/HostDevices.class.php:1323 +#: ../../include/functions_snmp_browser.php:881 +msgid "SHA" +msgstr "SHA" + +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:812 +#: ../../enterprise/tools/ipam/ipam_vlan_wizard.php:360 +#: ../../godmode/modules/manage_network_components_form_network.php:161 +#: ../../godmode/agentes/module_manager_editor_network.php:408 +#: ../../godmode/massive/massive_edit_modules.php:869 +#: ../../godmode/wizards/HostDevices.class.php:1332 +#: ../../include/class/AgentWizard.class.php:809 +#: ../../include/functions_snmp_browser.php:890 +msgid "Security level" +msgstr "Niveau de sĆ©curitĆ©" + +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:815 +#: ../../enterprise/tools/ipam/ipam_vlan_wizard.php:363 +#: ../../godmode/modules/manage_network_components_form_network.php:164 +#: ../../godmode/agentes/module_manager_editor_network.php:411 +#: ../../godmode/massive/massive_edit_modules.php:872 +#: ../../godmode/wizards/HostDevices.class.php:1337 +#: ../../include/functions_snmp_browser.php:893 +msgid "Not auth and not privacy method" +msgstr "MĆ©thode sans authentification ni confidentialitĆ©" + +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:816 +#: ../../enterprise/tools/ipam/ipam_vlan_wizard.php:364 +#: ../../godmode/modules/manage_network_components_form_network.php:165 +#: ../../godmode/agentes/module_manager_editor_network.php:412 +#: ../../godmode/massive/massive_edit_modules.php:873 +#: ../../godmode/wizards/HostDevices.class.php:1338 +#: ../../include/functions_snmp_browser.php:894 +msgid "Auth and not privacy method" +msgstr "MĆ©thode avec authentification et sans confidentialitĆ©" + +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:817 +#: ../../enterprise/tools/ipam/ipam_vlan_wizard.php:365 +#: ../../godmode/modules/manage_network_components_form_network.php:166 +#: ../../godmode/agentes/module_manager_editor_network.php:413 +#: ../../godmode/massive/massive_edit_modules.php:874 +#: ../../godmode/wizards/HostDevices.class.php:1339 +#: ../../include/functions_snmp_browser.php:895 +msgid "Auth and privacy method" +msgstr "MĆ©thode avec authentification et mĆ©thode de confidentialitĆ©" + +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:835 +#: ../../enterprise/operation/agentes/tag_view.php:157 +#: ../../godmode/agentes/module_manager_editor_common.php:271 +#: ../../godmode/agentes/module_manager_editor_common.php:1188 +#: ../../godmode/massive/massive_edit_modules.php:892 +#: ../../include/ajax/heatmap.ajax.php:196 ../../include/functions_graph.php:5257 +#: ../../include/functions_treeview.php:116 ../../operation/heatmap.php:96 +#: ../../operation/agentes/status_monitor.php:518 +msgid "Not assigned" +msgstr "Non assignĆ©" + +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:849 +#: ../../enterprise/godmode/setup/setup_module_library.php:49 +#: ../../enterprise/include/functions_ui.php:102 +#: ../../extensions/quick_shell.php:174 +#: ../../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/class/CredentialStore.class.php:957 +#: ../../include/class/AgentWizard.class.php:667 +msgid "Username" +msgstr "Nom d'utilisateur" + +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:855 +#: ../../godmode/agentes/module_manager_editor_common.php:731 +#: ../../godmode/massive/massive_edit_modules.php:912 +msgid "Export target" +msgstr "Exporter cible" + +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:945 +#: ../../godmode/massive/massive_edit_modules.php:998 +msgid "Active Counters" +msgstr "Compteurs actifs" + +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:946 +#: ../../godmode/massive/massive_edit_modules.php:999 +msgid "Inactive Counters" +msgstr "Compteurs inactifs" + +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:990 +#: ../../godmode/massive/massive_edit_modules.php:1066 +msgid "Policy linking status" +msgstr "Ɖtat d'association de la politique" + +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:990 +#: ../../godmode/massive/massive_edit_modules.php:1066 +msgid "This field only has sense in modules adopted by a policy." +msgstr "Ce champ a un sens uniquement pour les modules adoptĆ©s par une politique." + +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:991 +#: ../../godmode/massive/massive_edit_modules.php:1067 +msgid "Linked" +msgstr "AssociĆ©" + +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:991 +#: ../../godmode/agentes/module_manager.php:1050 +#: ../../godmode/agentes/module_manager.php:1053 +#: ../../godmode/massive/massive_edit_modules.php:1067 +#: ../../include/ajax/module.php:1092 ../../include/ajax/module.php:1095 +msgid "Unlinked" +msgstr "DissociĆ©s" + +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:1000 +#: ../../godmode/modules/manage_network_components_form_common.php:315 +#: ../../godmode/agentes/module_manager_editor_common.php:764 +#: ../../godmode/massive/massive_edit_modules.php:1076 +msgid "Discard unknown events" +msgstr "Supprimer Ć©vĆ©nements inconnus" + +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:1029 +#: ../../godmode/massive/massive_edit_modules.php:1105 +msgid "The module still store data but the alerts and events will be stop" +msgstr "" +"Le module stocke encore des donnĆ©es, mais les alertes et les Ć©vĆ©nements seront " +"arrĆŖtĆ©s" + +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:1044 +#: ../../enterprise/operation/agentes/manage_transmap_creation_phases_data.php:80 +#: ../../godmode/agentes/module_manager_editor_common.php:1135 +#: ../../godmode/massive/massive_edit_modules.php:1122 +msgid "Timeout" +msgstr "Interruption de session" + +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:1053 +#: ../../godmode/massive/massive_edit_modules.php:1131 +msgid "Seconds that agent will wait for the execution of the module." +msgstr "Secondes que l'agent attend pour l'exĆ©cution du module." + +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:1070 +#: ../../godmode/modules/manage_network_components_form_network.php:209 +#: ../../godmode/agentes/module_manager_editor_network.php:281 +#: ../../godmode/massive/massive_edit_modules.php:1148 +msgid "TCP send" +msgstr "Envoyer TCP" + +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:1073 +#: ../../godmode/modules/manage_network_components_form_network.php:216 +#: ../../godmode/agentes/module_manager_editor_network.php:295 +#: ../../godmode/massive/massive_edit_modules.php:1151 +msgid "TCP receive" +msgstr "Recevoir TCP" + +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:1076 +#: ../../godmode/modules/manage_network_components_form_wmi.php:31 +#: ../../godmode/agentes/module_manager_editor_wmi.php:133 +#: ../../godmode/massive/massive_edit_modules.php:1154 +msgid "WMI query" +msgstr "RequĆŖte WMI" + +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:1079 +#: ../../godmode/modules/manage_network_components_form_wmi.php:33 +#: ../../godmode/modules/manage_network_components_form_wizard.php:685 +#: ../../godmode/agentes/module_manager_editor_wmi.php:151 +#: ../../godmode/massive/massive_edit_modules.php:1157 +msgid "Key string" +msgstr "ChaĆ®ne clĆ©" + +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:1082 +#: ../../godmode/modules/manage_network_components_form_wmi.php:39 +#: ../../godmode/agentes/module_manager_editor_wmi.php:164 +#: ../../godmode/massive/massive_edit_modules.php:1160 +msgid "Field number" +msgstr "Nombre de champs" + +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:1085 +#: ../../godmode/modules/manage_network_components_form_plugin.php:35 +#: ../../godmode/agentes/module_manager_editor_plugin.php:49 +#: ../../godmode/massive/massive_edit_plugins.php:346 +#: ../../godmode/massive/massive_edit_modules.php:1163 +#: ../../godmode/servers/plugin_registration.php:503 +msgid "Plugin" +msgstr "Plugin" + +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:1103 +#: ../../godmode/modules/manage_network_components_form_network.php:223 +#: ../../godmode/agentes/module_manager_editor_network.php:433 +#: ../../godmode/massive/massive_edit_plugins.php:480 +#: ../../godmode/massive/massive_edit_modules.php:1181 +#: ../../godmode/alerts/configure_alert_command.php:246 +#: ../../godmode/alerts/alert_actions.php:272 +#: ../../godmode/alerts/alert_actions.php:327 +#: ../../godmode/alerts/configure_alert_action.php:247 +#: ../../godmode/events/event_responses.editor.php:157 +#: ../../godmode/events/event_responses.editor.php:164 +#: ../../godmode/servers/plugin.php:429 ../../godmode/servers/plugin.php:434 +#: ../../godmode/servers/plugin.php:817 +#: ../../include/class/ManageNetScanScripts.class.php:434 +#: ../../include/class/ExternalTools.class.php:353 +msgid "Command" +msgstr "Commande" + +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:1120 +#: ../../enterprise/include/class/DeploymentCenter.class.php:1397 +#: ../../godmode/modules/manage_network_components_form_network.php:242 +#: ../../godmode/agentes/module_manager_editor_network.php:459 +#: ../../godmode/massive/massive_edit_modules.php:1198 +msgid "Credential identifier" +msgstr "Identifiant des idĆ©ntifiants" + +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:1135 +#: ../../godmode/modules/manage_network_components_form_network.php:258 +#: ../../godmode/agentes/module_manager_editor_network.php:477 +#: ../../godmode/massive/massive_edit_modules.php:1213 +msgid "Inherited" +msgstr "HĆ©ritĆ©" + +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:1136 +#: ../../godmode/modules/manage_network_components_form_network.php:259 +#: ../../godmode/massive/massive_edit_modules.php:1214 +msgid "Linux" +msgstr "Linux" + +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:1137 +#: ../../godmode/modules/manage_network_components_form_network.php:260 +#: ../../godmode/massive/massive_edit_modules.php:1215 +msgid "Windows" +msgstr "Windows" + +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:1140 +#: ../../godmode/modules/manage_network_components_form_network.php:263 +#: ../../godmode/massive/massive_edit_modules.php:1218 +msgid "Target OS" +msgstr "SystĆØme dā€™exploitation cible" + +#: ../../enterprise/godmode/massive/massive_edit_service_elements.php:131 +msgid "Failed to process updating elements in services: " +msgstr "Impossible de traiter les Ć©lĆ©ments de mise Ć  jour dans les services : " + +#: ../../enterprise/godmode/massive/massive_edit_service_elements.php:172 +#: ../../include/class/ConfigPEN.class.php:564 +msgid "updated" +msgstr "mis Ć  jour" + +#: ../../enterprise/godmode/massive/massive_edit_service_elements.php:373 +msgid "Update selected service elements" +msgstr "Mettre Ć  jour les Ć©lĆ©ments de service sĆ©lectionnĆ©s" + +#: ../../enterprise/godmode/massive/massive_delete_services.php:50 +#, php-format +msgid "Failed to delete: %s" +msgstr "Impossible de supprimer : %s" + +#: ../../enterprise/godmode/admin_access_logs.php:78 +msgid "Show extended info" +msgstr "Afficher plus d'informations" + +#: ../../enterprise/godmode/admin_access_logs.php:99 +msgid "" +"The security check cannot be performed. There are no data in tsession_extended to " +"check the hash." +msgstr "" +"Le contrĆ“le de sĆ©curitĆ© ne peut pas ĆŖtre effectuĆ©. Il nā€™y a pas de donnĆ©es dans " +"tsession_extended pour vĆ©rifier le hachage." + +#: ../../enterprise/godmode/admin_access_logs.php:108 +msgid "Security check is ok." +msgstr "ContrĆ“le de sĆ©curitĆ© correct" + +#: ../../enterprise/godmode/admin_access_logs.php:113 +msgid "Security check is fail." +msgstr "ProblĆØme de contrĆ“le de sĆ©curitĆ©" + +#: ../../enterprise/godmode/admin_access_logs.php:208 +msgid "Extended info:" +msgstr "Information supplĆ©mentaire :" + +#: ../../enterprise/godmode/admin_access_logs.php:216 +msgid "Changes:" +msgstr "Changements :" + +#: ../../enterprise/godmode/alerts/alert_inventory_builder.php:176 +msgid "Group acl" +msgstr "ACL de groupe" + +#: ../../enterprise/godmode/alerts/alert_inventory_builder.php:215 +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:425 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2544 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2658 +msgid "Condition" +msgstr "Condition" + +#: ../../enterprise/godmode/alerts/alert_inventory_builder.php:256 +msgid "Alert groups" +msgstr "Groupes dā€™alerte" + +#: ../../enterprise/godmode/alerts/alert_inventory_builder.php:270 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1081 +#: ../../godmode/snmpconsole/snmp_alert.php:1130 +#: ../../godmode/alerts/configure_alert_template.php:749 +msgid "Disable event" +msgstr "DĆ©sactiver lā€™Ć©vĆ©nement" + +#: ../../enterprise/godmode/alerts/alert_inventory_builder.php:278 +#: ../../godmode/snmpconsole/snmp_alert.php:94 +msgid "Update alert" +msgstr "Mise Ć  jour de l'alerte" + +#: ../../enterprise/godmode/alerts/alert_inventory_builder.php:282 +#: ../../godmode/alerts/alert_list.builder.php:204 +#: ../../include/class/AgentsAlerts.class.php:396 +msgid "Add alert" +msgstr "Ajouter alertes" + +#: ../../enterprise/godmode/alerts/alert_inventory_list.php:91 +#: ../../godmode/massive/massive_add_alerts.php:168 +#: ../../godmode/massive/massive_add_action_alerts.php:160 +#: ../../godmode/alerts/alert_list.php:271 +msgid "Successfully added" +msgstr "AjoutĆ© correctement" + +#: ../../enterprise/godmode/alerts/alert_inventory_list.php:174 +msgid "Inventory alert filters" +msgstr "Filtres dā€™alerte dā€™inventaire" + +#: ../../enterprise/godmode/alerts/alert_inventory_list.php:220 +msgid "Alert name" +msgstr "Nom de lā€™alerte" -#: ../../operation/agentes/alerts_status.php:551 -#: ../../operation/agentes/alerts_status.php:586 -#: ../../operation/agentes/alerts_status.php:621 -#: ../../operation/agentes/alerts_status.php:653 -#: ../../include/ajax/alert_list.ajax.php:282 -#: ../../include/ajax/alert_list.ajax.php:307 -#: ../../include/class/AgentsAlerts.class.php:893 -#: ../../include/functions_treeview.php:455 -#: ../../include/functions_reporting_html.php:5207 -#: ../../enterprise/operation/agentes/policy_view.php:261 #: ../../enterprise/godmode/alerts/alert_inventory_list.php:221 +#: ../../enterprise/operation/agentes/policy_view.php:261 #: ../../godmode/snmpconsole/snmp_alert.php:1275 #: ../../godmode/alerts/alert_view.php:99 +#: ../../include/functions_reporting_html.php:5253 +#: ../../include/ajax/alert_list.ajax.php:295 +#: ../../include/ajax/alert_list.ajax.php:320 +#: ../../include/functions_treeview.php:455 +#: ../../include/class/AgentsAlerts.class.php:893 msgid "Last fired" msgstr "DĆ©clenchĆ©e pour la derniĆØre fois" -#: ../../operation/agentes/alerts_status.php:732 -#: ../../include/ajax/alert_list.ajax.php:328 -msgid "No alerts found" -msgstr "Aucune alerte retrouvĆ©e" +#: ../../enterprise/godmode/alerts/alert_inventory_list.php:261 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3228 +#: ../../enterprise/operation/agentes/policy_view.php:348 +#: ../../godmode/alerts/alert_list.list.php:577 +#: ../../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:12497 +msgid "Alert disabled" +msgstr "Alerte dĆ©sactivĆ©e" -#: ../../operation/agentes/alerts_status.php:742 -msgid "Full list of alerts" -msgstr "Liste complĆØte des alertes" +#: ../../enterprise/godmode/alerts/alert_inventory_list.php:319 +#: ../../godmode/snmpconsole/snmp_alert.php:1394 +#: ../../godmode/alerts/alert_list.list.php:688 +msgid "Delete action" +msgstr "Supprimer l'action" -#: ../../operation/agentes/ehorus.php:30 -msgid "Missing agent id" -msgstr "Identifiant de l'agent manquant" +#: ../../enterprise/godmode/alerts/alert_inventory_list.php:404 +msgid "Disable alert" +msgstr "DĆ©sactiver lā€™alerte" -#: ../../operation/agentes/ehorus.php:51 -msgid "Missing ehorus agent id" -msgstr "Identifiant de l'agent eHorus manquant" +#: ../../enterprise/godmode/alerts/alert_inventory_list.php:407 +msgid "Enable alert" +msgstr "Activer lā€™alerte" -#: ../../operation/agentes/ehorus.php:100 ../../operation/agentes/ehorus.php:137 -msgid "There was an error retrieving an authorization token" -msgstr "Erreur d'obtention de token d'autorisation" +#: ../../enterprise/godmode/alerts/alert_inventory_list.php:415 +msgid "Delete alert" +msgstr "Supprimer une alerte" -#: ../../operation/agentes/ehorus.php:112 ../../operation/agentes/ehorus.php:149 -#: ../../operation/agentes/ehorus.php:185 -msgid "There was an error processing the response" -msgstr "Erreur de traitement de la rĆ©ponse" +#: ../../enterprise/godmode/alerts/alert_inventory_list.php:427 +msgid "There are no defined inventory alerts" +msgstr "Il nā€™y a pas dā€™alertes dā€™inventaire dĆ©finies" -#: ../../operation/agentes/ehorus.php:173 -msgid "There was an error retrieving the agent data" -msgstr "Erreur d'obtention de donnĆ©es de l'agent" +#: ../../enterprise/godmode/alerts/alert_inventory.php:67 +msgid "Inventory alert list" +msgstr "Liste des alertes dā€™inventaire" -#: ../../operation/agentes/ehorus.php:190 -msgid "Remote management of this agent with eHorus" -msgstr "Gestion Ć  distance de cet agent avec eHorus" +#: ../../enterprise/godmode/alerts/alert_inventory.php:71 +msgid "Inventory alert builder" +msgstr "GĆ©nĆ©rateur dā€™alertes dā€™inventaire" -#: ../../operation/agentes/ehorus.php:192 -msgid "Launch" -msgstr "Lancer" +#: ../../enterprise/godmode/services/services.massive.meta.php:56 +#: ../../enterprise/godmode/services/services.massive.elements.php:93 +#: ../../godmode/agentes/agent_manager.php:541 +#: ../../godmode/massive/massive_edit_agents.php:952 +msgid "Not available" +msgstr "Non disponible" -#: ../../operation/agentes/ehorus.php:198 -msgid "The connection was lost and the authorization token was expired" -msgstr "Connexion perdue et token d'autorisation expirĆ©" +#: ../../enterprise/godmode/services/services.service.php:109 +msgid "Service already exists." +msgstr "Le service existe dĆ©jĆ ." -#: ../../operation/agentes/ehorus.php:198 -msgid "Reload the page to request a new authorization token" -msgstr "RafraĆ®chir la page pour demander un nouveau token d'autorisation" +#: ../../enterprise/godmode/services/services.service.php:201 +msgid "Error creating service: " +msgstr "Erreur lors de la crĆ©ation du service : " -#: ../../operation/agentes/group_view.php:80 -#: ../../operation/agentes/tactical.php:60 -#: ../../enterprise/tools/ipam/ipam_list.php:631 -#: ../../enterprise/views/ncm/devices/list.php:122 -#: ../../enterprise/operation/services/services.service.php:133 -#: ../../enterprise/operation/services/services.list.php:510 -#: ../../extensions/agents_modules.php:317 -msgid "Last update" -msgstr "DerniĆØre mise Ć  jour" +#: ../../enterprise/godmode/services/services.service.php:210 +#: ../../enterprise/godmode/services/services.service.php:316 +msgid "New Service" +msgstr "Nouveau service" -#: ../../operation/agentes/group_view.php:180 -msgid "Summary of the status groups" -msgstr "RĆ©sumĆ© des groupes par Ć©tat" +#: ../../enterprise/godmode/services/services.service.php:216 +msgid "Service created successfully" +msgstr "Service crĆ©Ć© correctement" + +#: ../../enterprise/godmode/services/services.service.php:285 +#: ../../enterprise/include/functions_services.php:728 +msgid "Error updating service: " +msgstr "Erreur lors de la mise Ć  jour des services : " + +#: ../../enterprise/godmode/services/services.service.php:296 +msgid "Service updated successfully" +msgstr "Service mis Ć  jour correctement" + +#: ../../enterprise/godmode/services/services.service.php:309 +#: ../../enterprise/godmode/services/services.service.php:354 +#: ../../enterprise/operation/services/services.service.php:55 +#: ../../enterprise/operation/services/services.service_map.php:62 +msgid "Not found" +msgstr "Introuvable" + +#: ../../enterprise/godmode/services/services.service.php:369 +msgid "Dynamic elements are not affected by cascade protection" +msgstr "Les Ć©lĆ©ments dynamiques ne sont pas affectĆ©s par la protection en cascade" + +#: ../../enterprise/godmode/services/services.service.php:396 +#: ../../enterprise/godmode/services/services.elements.php:702 +#: ../../enterprise/operation/services/services.php:90 +#: ../../enterprise/operation/services/services.php:182 +msgid "Services list" +msgstr "Liste de services" + +#: ../../enterprise/godmode/services/services.service.php:410 +#: ../../enterprise/godmode/services/services.elements.php:716 +#: ../../enterprise/operation/services/services.php:105 +msgid "Config Service" +msgstr "Service de configuration" + +#: ../../enterprise/godmode/services/services.service.php:427 +#: ../../enterprise/godmode/services/services.elements.php:733 +#: ../../enterprise/operation/services/services.php:123 +msgid "Config Elements" +msgstr "ƉlĆ©ments de configuration" + +#: ../../enterprise/godmode/services/services.service.php:439 +#: ../../enterprise/godmode/services/services.elements.php:745 +#: ../../enterprise/operation/services/services.php:136 +msgid "Bulk service elements operations" +msgstr "OpĆ©rations dā€™Ć©lĆ©ments de service en vrac" + +#: ../../enterprise/godmode/services/services.service.php:454 +#: ../../enterprise/godmode/services/services.elements.php:760 +#: ../../enterprise/operation/services/services.php:152 +msgid "View Service" +msgstr "Afficher services" + +#: ../../enterprise/godmode/services/services.service.php:465 +#: ../../enterprise/godmode/services/services.elements.php:771 +#: ../../enterprise/operation/services/services.php:164 +#: ../../include/lib/Dashboard/Widgets/service_map.php:441 +msgid "Service map" +msgstr "Carte de services" + +#: ../../enterprise/godmode/services/services.service.php:519 +msgid "No Services or concrete action" +msgstr "Pas de services ou actions concrĆØtes" + +#: ../../enterprise/godmode/services/services.service.php:538 +msgid "Random name" +msgstr "Nom alĆ©atoire" + +#: ../../enterprise/godmode/services/services.service.php:586 +msgid "Server assigned" +msgstr "Serveur affectĆ©" + +#: ../../enterprise/godmode/services/services.service.php:587 +msgid "Selected Prediction server will be assigned to evaluate the service." +msgstr "" +"Le serveur de prĆ©diction sĆ©lectionnĆ© sera affectĆ© Ć  lā€™Ć©valuation du service." + +#: ../../enterprise/godmode/services/services.service.php:608 +msgid "Evaluation interval" +msgstr "Intervalle dā€™Ć©valuation" + +#: ../../enterprise/godmode/services/services.service.php:756 +msgid "Asynchronous mode" +msgstr "Mode asynchrone" + +#: ../../enterprise/godmode/services/services.service.php:776 +msgid "Enable Sunburst" +msgstr "Activer Sunburst" + +#: ../../enterprise/godmode/services/services.service.php:786 +msgid "General Data" +msgstr "DonnĆ©es gĆ©nĆ©rales" + +#: ../../enterprise/godmode/services/services.service.php:832 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:221 +#: ../../enterprise/include/functions_reporting_csv.php:1481 +#: ../../include/functions_reports.php:699 ../../include/functions_reporting.php:952 +msgid "S.L.A." +msgstr "SLA" + +#: ../../enterprise/godmode/services/services.service.php:841 +msgid "" +"Here are described the alert templates, which will use their default actions.\n" +"\t\tYou can modify the default behaviour editing alerts in the agent who stores " +"data and alert definitions about the service and the SLA status." +msgstr "" +"Les modĆØles d'alertes sont dĆ©finis ici. Ils utilisent leurs actions par dĆ©faut.\n" +"\t\tVous pouvez modifier le comportement par dĆ©faut en Ć©ditant les alertes dans " +"l'agent qui stocke les donnĆ©es et les dĆ©finitions des alertes sur le service et " +"l'Ć©tat du SLA." + +#: ../../enterprise/godmode/services/services.service.php:995 +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:436 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2568 +#: ../../enterprise/include/functions_reporting_csv.php:1539 +#: ../../enterprise/include/functions_reporting_csv.php:1585 +#: ../../enterprise/include/functions_reporting_csv.php:1903 +#: ../../enterprise/include/class/DeploymentCenter.class.php:1668 +#: ../../enterprise/include/class/DeploymentCenter.class.php:1720 +#: ../../enterprise/include/class/DatabaseHA.class.php:390 +#: ../../enterprise/include/class/DatabaseHA.class.php:625 +#: ../../enterprise/include/class/DatabaseHA.class.php:727 +#: ../../enterprise/include/class/AgentRepository.class.php:911 +#: ../../enterprise/include/class/LogSource.class.php:844 +#: ../../enterprise/include/class/ManageBackups.class.php:292 +#: ../../enterprise/include/class/ManageBackups.class.php:445 +#: ../../enterprise/include/functions_reporting.php:1883 +#: ../../enterprise/include/functions_reporting.php:2930 +#: ../../enterprise/include/functions_reporting.php:3186 +#: ../../enterprise/include/functions_reporting.php:3918 +#: ../../enterprise/include/functions_reporting.php:4187 +#: ../../enterprise/include/functions_reporting.php:4833 +#: ../../enterprise/include/functions_reporting.php:6156 +#: ../../enterprise/include/functions_reporting.php:6194 +#: ../../enterprise/include/functions_services.php:2084 +#: ../../enterprise/include/functions_ux_console.php:473 +#: ../../enterprise/operation/agentes/ux_console_view.php:186 +#: ../../enterprise/operation/agentes/ux_console_view.php:384 +#: ../../enterprise/operation/agentes/wux_console_view.php:424 +#: ../../extensions/module_groups.php:53 +#: ../../godmode/massive/massive_operations.php:392 +#: ../../godmode/setup/setup_general.php:778 +#: ../../godmode/setup/setup_general.php:796 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2669 +#: ../../include/functions_reporting_html.php:659 +#: ../../include/functions_reporting_html.php:854 +#: ../../include/functions_reporting_html.php:3346 +#: ../../include/functions_reporting_html.php:4645 +#: ../../include/functions_db.php:1933 ../../include/class/ConfigPEN.class.php:668 +#: ../../include/class/ConfigPEN.class.php:692 +#: ../../include/class/HelpFeedBack.class.php:369 +#: ../../include/class/CredentialStore.class.php:1241 +#: ../../include/class/ModuleTemplates.class.php:1381 +#: ../../include/class/WelcomeWindow.class.php:173 +#: ../../include/class/AgentWizard.class.php:6040 +#: ../../include/lib/Dashboard/Widgets/maps_status.php:351 +#: ../../operation/agentes/pandora_networkmap.editor.php:602 +#: ../../operation/snmpconsole/snmp_browser.php:645 +msgid "OK" +msgstr "OK" + +#: ../../enterprise/godmode/services/services.service.php:998 +msgid "" +"This change in the service configuration will delete the history of the service " +"modules. Do you wish to continue?" +msgstr "" +"Cette modification de la configuration du service supprimera lā€™historique des " +"modules de service. Voulez-vous continuer ?" + +#: ../../enterprise/godmode/services/services.service.php:1000 +msgid "" +"This change in the service configuration will prevent the SLA modules from being " +"created. Do you wish to continue?" +msgstr "" +"Cette modification de la configuration du service empĆŖchera la crĆ©ation des " +"modules SLA. Voulez-vous continuer ?" + +#: ../../enterprise/godmode/services/services.elements.php:72 +msgid "Invalid service" +msgstr "Service invalide" + +#: ../../enterprise/godmode/services/services.elements.php:99 +#: ../../enterprise/include/functions_reporting.php:2536 +#: ../../enterprise/include/functions_reporting.php:3480 +#: ../../enterprise/include/functions_reporting.php:4455 +#: ../../include/functions_maps.php:50 ../../include/functions_reporting.php:1062 +#: ../../include/functions_reporting.php:9111 +#: ../../operation/agentes/pandora_networkmap.php:778 +msgid "Dynamic" +msgstr "Dynamique" + +#: ../../enterprise/godmode/services/services.elements.php:216 +#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:128 +msgid "Custom field name" +msgstr "Nom de champ personnalisĆ©" + +#: ../../enterprise/godmode/services/services.elements.php:228 +#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:130 +msgid "Custom field value" +msgstr "Valeur de champ personnalisĆ©e" + +#: ../../enterprise/godmode/services/services.elements.php:246 +msgid "Add custom field match" +msgstr "Ajouter une correspondance de champ personnalisĆ©e" + +#: ../../enterprise/godmode/services/services.elements.php:252 +msgid "Both 'name' and 'value' must be defined to filter. Ignored otherwise." +msgstr "'nom' et 'valeur' doivent ĆŖtre dĆ©finis pour filtrer. IgnorĆ© autrement." + +#: ../../enterprise/godmode/services/services.elements.php:257 +msgid "MySQL Regular expressions case sensitive." +msgstr "Expressions rĆ©guliĆØres MySQL sensibles Ć  la casse." + +#: ../../enterprise/godmode/services/services.elements.php:263 +msgid "Matching objects type" +msgstr "Type dā€™objet correspondant" + +#: ../../enterprise/godmode/services/services.elements.php:278 +msgid "Filter by group" +msgstr "Filtrer par groupe" + +#: ../../enterprise/godmode/services/services.elements.php:290 +msgid "Use regular expresions selectors" +msgstr "Utiliser des sĆ©lecteurs dā€™expressions rĆ©gulierers" + +#: ../../enterprise/godmode/services/services.elements.php:298 +msgid "Having agent name" +msgstr "Ayant un nom dā€™agent" + +#: ../../enterprise/godmode/services/services.elements.php:306 +msgid "Having module name" +msgstr "Ayant un nom de module" + +#: ../../enterprise/godmode/services/services.elements.php:316 +msgid "Having custom fields" +msgstr "Ayant des champs personnalisĆ©s" + +#: ../../enterprise/godmode/services/services.elements.php:327 +msgid "Apply rules on this server" +msgstr "Appliquer des rĆØgles sur ce serveur" + +#: ../../enterprise/godmode/services/services.elements.php:346 +msgid "Weights" +msgstr "Poids" + +#: ../../enterprise/godmode/services/services.elements.php:351 +msgid "In smart mode weights are automatically calculated." +msgstr "En mode intelligent, les poids sont calculĆ©s automatiquement." + +#: ../../enterprise/godmode/services/services.elements.php:449 +#: ../../enterprise/godmode/services/services.elements.php:459 +#: ../../enterprise/godmode/services/services.elements.php:466 +msgid "Selected agent not found." +msgstr "Agent sĆ©lectionnĆ© introuvable." + +#: ../../enterprise/godmode/services/services.elements.php:472 +#: ../../enterprise/godmode/services/services.elements.php:484 +#, php-format +msgid "Selected module not found in %s." +msgstr "Module sĆ©lectionnĆ© introuvable dans %s." + +#: ../../enterprise/godmode/services/services.elements.php:493 +msgid "Selected service not found." +msgstr "Service sĆ©lectionnĆ© introuvable." + +#: ../../enterprise/godmode/services/services.elements.php:510 +msgid "Selected service could generate a loop" +msgstr "Le service sĆ©lectionnĆ© pourrait gĆ©nĆ©rer une boucle" + +#: ../../enterprise/godmode/services/services.elements.php:522 +#, php-format +msgid "Failed adding service child: %s" +msgstr "Ɖchec de lā€™ajout de service fils : %s" + +#: ../../enterprise/godmode/services/services.elements.php:565 +#, php-format +msgid "Selected rules are not valid: %s." +msgstr "Les rĆØgles sĆ©lectionnĆ©es ne sont pas valides : %s." + +#: ../../enterprise/godmode/services/services.elements.php:573 +msgid "Invalid element type." +msgstr "Type dā€™Ć©lĆ©ment non valide." + +#: ../../enterprise/godmode/services/services.elements.php:599 +msgid "Element registered successfully" +msgstr "ƉlĆ©ment enregistrĆ© correctement" + +#: ../../enterprise/godmode/services/services.elements.php:645 +#, php-format +msgid "Error deleting element: %s" +msgstr "Erreur lors de la suppression de lā€™Ć©lĆ©ment : %s" + +#: ../../enterprise/godmode/services/services.elements.php:783 +#: ../../operation/search_maps.php:30 +msgid "Elements" +msgstr "ƉlĆ©ments" + +#: ../../enterprise/godmode/services/services.elements.php:811 +#: ../../enterprise/include/functions_services.php:2019 +msgid "Edit service elements" +msgstr "Ɖditer Ć©lĆ©ments de service" + +#: ../../enterprise/godmode/services/services.elements.php:845 +#: ../../enterprise/godmode/services/services.elements.php:856 +#: ../../enterprise/include/functions_visual_map.php:677 +#: ../../enterprise/include/functions_HA_cluster.php:535 +#: ../../enterprise/include/class/DeploymentCenter.class.php:1611 +#: ../../enterprise/include/class/AgentRepository.class.php:855 +#: ../../enterprise/include/class/Omnishell.class.php:1083 +#: ../../enterprise/include/class/LogSource.class.php:788 +#: ../../enterprise/include/class/ManageBackups.class.php:473 +#: ../../godmode/wizards/DiscoveryTaskList.class.php:1057 +#: ../../include/ajax/snmp_browser.ajax.php:260 ../../include/functions_ui.php:294 +#: ../../include/class/ConfigPEN.class.php:737 +#: ../../include/class/HelpFeedBack.class.php:359 +#: ../../include/class/Diagnostics.class.php:2087 +#: ../../include/class/CredentialStore.class.php:1185 +#: ../../include/class/ModuleTemplates.class.php:1417 +#: ../../include/class/WebServerModuleDebug.class.php:359 +#: ../../include/class/AgentWizard.class.php:5834 +#: ../../operation/visual_console/view.php:806 +msgid "Success" +msgstr "SuccĆØs" + +#: ../../enterprise/godmode/services/services.elements.php:847 +msgid "Add element" +msgstr "Ajouter un Ć©lĆ©ment" + +#: ../../enterprise/godmode/services/services.elements.php:858 +msgid "Edit element" +msgstr "Editer l'Ć©lĆ©ment" + +#: ../../enterprise/godmode/setup/setup_history.php:88 +msgid "Method does not exist" +msgstr "La mĆ©thode n'existe pas" + +#: ../../enterprise/godmode/setup/setup_history.php:163 +#: ../../include/functions_config.php:1529 +msgid "Host" +msgstr "HĆ“te" + +#: ../../enterprise/godmode/setup/setup_history.php:208 +#: ../../include/functions_config.php:1550 +msgid "Database user" +msgstr "Utilisateur de la base de donnĆ©es" + +#: ../../enterprise/godmode/setup/setup_history.php:223 +#: ../../include/functions_config.php:1554 +msgid "Database password" +msgstr "Mot de passe de la base de donnĆ©es" + +#: ../../enterprise/godmode/setup/setup_history.php:227 +msgid "Configure connection target" +msgstr "Configurer la cible de connexion" + +#: ../../enterprise/godmode/setup/setup_history.php:241 +msgid "Active to historical settings" +msgstr "Actif dans les paramĆØtres historiques" + +#: ../../enterprise/godmode/setup/setup_history.php:245 +#, php-format +msgid "" +"Data will be available in active database as time as days you specify here. Older " +"information will be sent to historical database. Note data will be purged from " +"active database after %d days." +msgstr "" +"Les donnĆ©es seront disponibles dans la base de donnĆ©es active en tant quā€™heure et " +"jours que vous spĆ©cifiez ici. Les informations plus anciennes seront envoyĆ©es Ć  " +"la base de donnĆ©es historique. Les donnĆ©es seront purgĆ©es de la base de donnĆ©es " +"active aprĆØs %d jours." + +#: ../../enterprise/godmode/setup/setup_history.php:251 +msgid "Data days old to keep in active database" +msgstr "DonnĆ©es anciennes Ć  conserver dans la base de donnĆ©es active" + +#: ../../enterprise/godmode/setup/setup_history.php:266 +msgid "" +"Number of rows to be sent to historical database each 'delay' seconds. If you " +"experience issues running pandora_db, try decreasing this value." +msgstr "" +"Nombre de lignes Ć  envoyer Ć  la base de donnĆ©es historique chaque seconde de Ā« " +"retard Ā». Si vous rencontrez des problĆØmes lors de lā€™exĆ©cution de pandora_db, " +"essayez de diminuer cette valeur." + +#: ../../enterprise/godmode/setup/setup_history.php:270 +msgid "Transference block size (Step)" +msgstr "Taille du bloc de transfert (Ć©tape)" + +#: ../../enterprise/godmode/setup/setup_history.php:275 +msgid "Delay between transferences (seconds)" +msgstr "DĆ©lai entre les transferts (secondes)" + +#: ../../enterprise/godmode/setup/setup_history.php:280 +msgid "Historical data settings" +msgstr "ParamĆØtres de donnĆ©es historiques" + +#: ../../enterprise/godmode/setup/setup_history.php:282 +msgid "Maximum historical data age (days)" +msgstr "Ƃge maximal des donnĆ©es historiques (jours)" + +#: ../../enterprise/godmode/setup/setup_history.php:287 +msgid "Maximum historical string data age (days)" +msgstr "Ƃge maximal des donnĆ©es de chaĆ®ne historique (jours)" + +#: ../../enterprise/godmode/setup/setup_history.php:292 +msgid "Data older than 'days' is compacted in order to improve disk utilization." +msgstr "" +"Les donnĆ©es plus anciennes que les Ā« jours Ā» sont compactĆ©es afin dā€™amĆ©liorer " +"lā€™utilisation du disque." + +#: ../../enterprise/godmode/setup/setup_history.php:297 +msgid "" +"Automatically create partitions on specific database IDB files (tagente_datos, " +"tagente_datos_string, tevento). Monthly partitions." +msgstr "" +"CrĆ©ez automatiquement des partitions sur des fichiers IDB de base de donnĆ©es " +"spĆ©cifiques (tagent_donnĆ©es, tagent_donnĆ©es_string, tevent). Partitions " +"mensuelles." + +#: ../../enterprise/godmode/setup/setup_history.php:301 +msgid "Automatic partition of big tables." +msgstr "Partition automatique des grandes tables." + +#: ../../enterprise/godmode/setup/setup_history.php:312 +msgid "Historical events settings" +msgstr "ParamĆØtres des Ć©vĆ©nements historiques" + +#: ../../enterprise/godmode/setup/setup_history.php:323 +#, php-format +msgid "" +"Events will remain in active database a maximum of specified days, then they will " +"be transferred to historical database. Note events will be purged from active " +"database after %d days." +msgstr "" +"Les Ć©vĆ©nements resteront dans la base de donnĆ©es active un maximum de jours " +"spĆ©cifiĆ©s, puis ils seront transfĆ©rĆ©s dans la base de donnĆ©es historique. Notez " +"que les Ć©vĆ©nements seront purgĆ©s de la base de donnĆ©es active aprĆØs %d jours." + +#: ../../enterprise/godmode/setup/setup_history.php:329 +msgid "Events days old to keep in active database" +msgstr "" +"ƉvĆ©nements vieux de plusieurs jours Ć  conserver dans la base de donnĆ©es active" + +#: ../../enterprise/godmode/setup/setup_history.php:344 +msgid "Events will be purged from historical database after specified days." +msgstr "" +"Les Ć©vĆ©nements seront purgĆ©s de la base de donnĆ©es historique aprĆØs les jours " +"spĆ©cifiĆ©s." + +#: ../../enterprise/godmode/setup/setup_history.php:348 +msgid "Maximum historical events age (days)" +msgstr "Ƃge maximale des Ć©vĆ©nements historiques (jours)" + +#: ../../enterprise/godmode/setup/setup_history.php:365 +msgid "Enable historical events" +msgstr "Activer les Ć©vĆ©nements historiques" + +#: ../../enterprise/godmode/setup/setup_history.php:377 +msgid "Customize settings" +msgstr "Personnaliser les paramĆØtres" + +#: ../../enterprise/godmode/setup/setup_history.php:389 +msgid "Enable historical database" +msgstr "Activer la base de donnĆ©es historique" + +#: ../../enterprise/godmode/setup/setup_history.php:411 +msgid "History database connection is available." +msgstr "La connexion Ć  la base de donnĆ©es dā€™historique est disponible." + +#: ../../enterprise/godmode/setup/setup_history.php:418 +#, php-format +msgid "History database connection failed: %s" +msgstr "Ɖchec de la connexion Ć  la base de donnĆ©es historique : %s" + +#: ../../enterprise/godmode/setup/setup_history.php:434 +msgid "History database schema is installed." +msgstr "Le schĆ©ma de base de donnĆ©es dā€™historique est installĆ©." + +#: ../../enterprise/godmode/setup/setup_history.php:443 +#, php-format +msgid "Database is not installed: %s" +msgstr "La base de donnĆ©es nā€™est pas installĆ©e : %s" + +#: ../../enterprise/godmode/setup/setup_history.php:448 +msgid "Install database schema" +msgstr "Installer le schĆ©ma de base de donnĆ©es" + +#: ../../enterprise/godmode/setup/setup_history.php:449 +msgid "This action will install the schema into the target, are you sure?" +msgstr "Cette action installera le schĆ©ma dans la cible, ĆŖtes-vous sĆ»r ?" + +#: ../../enterprise/godmode/setup/setup_history.php:471 +msgid "History database schema is up to date with active database." +msgstr "" +"Le schĆ©ma de base de donnĆ©es dā€™historique est Ć  jour avec la base de donnĆ©es " +"active." + +#: ../../enterprise/godmode/setup/setup_history.php:480 +#, php-format +msgid "Database is not updated: %s" +msgstr "La base de donnĆ©es nā€™est pas mise Ć  jour : %s" + +#: ../../enterprise/godmode/setup/setup_history.php:495 +msgid "Current schema: " +msgstr "SchĆ©ma actuel : " + +#: ../../enterprise/godmode/setup/setup_history.php:502 +msgid "Upgrade database schema" +msgstr "Mettre Ć  niveau le schĆ©ma de base de donnĆ©es" + +#: ../../enterprise/godmode/setup/setup_history.php:503 +msgid "" +"This action will schedule the installation or upgrade of database schema into the " +"target, are you sure?" +msgstr "" +"Cette action planifiera lā€™installation ou la mise Ć  niveau du schĆ©ma de base de " +"donnĆ©es dans la cible, ĆŖtes-vous sĆ»r ?" + +#: ../../enterprise/godmode/setup/setup_history.php:517 +#: ../../godmode/setup/performance.php:696 +msgid "Database maintenance status" +msgstr "Ɖtat de maintenance de la base de donnĆ©es" + +#: ../../enterprise/godmode/setup/setup_history.php:536 +msgid "" +"By enabling historical database, target connection will be tested. If needed, " +"database schema will be applied on your selected target, do you want to proceed?" +msgstr "" +"En activant la base de donnĆ©es historique, la connexion cible sera testĆ©e. Si " +"nĆ©cessaire, le schĆ©ma de base de donnĆ©es sera appliquĆ© sur votre cible " +"sĆ©lectionnĆ©e, voulez-vous continuer ?" + +#: ../../enterprise/godmode/setup/setup_history.php:537 +msgid "" +"Changing historical database target, schema will be recreated in new one, but old " +"data will remain in previous node, unlinked from this console and not maintained, " +"do you want to proceed?" +msgstr "" +"En changeant la cible de la base de donnĆ©es historique, le schĆ©ma sera recrĆ©Ć© " +"dans un nouveau, mais les anciennes donnĆ©es resteront dans le nœud prĆ©cĆ©dent, " +"dissociĆ©es de cette console et non maintenues, voulez-vous continuer ?" + +#: ../../enterprise/godmode/setup/setup_history.php:539 +#, php-format +msgid "" +"Disabling historical database, you will not keep any data older than %d days. Are " +"you sure?" +msgstr "" +"En dĆ©sactivant la base de donnĆ©es historique, vous ne conserverez aucune donnĆ©e " +"de plus de %d jours. Ɗtes-vous sĆ»r ?" + +#: ../../enterprise/godmode/setup/setup_history.php:543 +#, php-format +msgid "" +"Historical database allows you to keep data older than %d days. This action will " +"produce no changes. Historical database will remain disabled." +msgstr "" +"La base de donnĆ©es historique vous permet de conserver des donnĆ©es plus anciennes " +"que %d jours. Cette action ne produira aucun changement. La base de donnĆ©es " +"historique restera dĆ©sactivĆ©e." + +#: ../../enterprise/godmode/setup/setup_history.php:548 +msgid "" +"By changing historical database target, the new connection will be tested. If " +"needed, database schema will be applied on your selected target. Information " +"stored in previous configuration will be IGNORED, do you want to proceed?" +msgstr "" +"En modifiant la cible historique de la base de donnĆ©es, la nouvelle connexion " +"sera testĆ©e. Si nĆ©cessaire, le schĆ©ma de base de donnĆ©es sera appliquĆ© sur la " +"cible sĆ©lectionnĆ©e. Les informations stockĆ©es dans la configuration prĆ©cĆ©dente " +"seront IGNORƉES, voulez-vous continuer ?" + +#: ../../enterprise/godmode/setup/setup_history.php:551 +msgid "Please ensure all fields matches your needs." +msgstr "Veuillez vous assurer que tous les champs correspondent Ć  vos besoins." + +#: ../../enterprise/godmode/setup/setup_history.php:683 +msgid "Update scheduled." +msgstr "Mise Ć  jour planifiĆ©e." + +#: ../../enterprise/godmode/setup/setup.php:47 +#: ../../include/functions_config.php:397 +msgid "Forward SNMP traps to agent (if exist)" +msgstr "TransfĆ©rer les dĆ©routements SNMP vers l'agent (s'il existe)" + +#: ../../enterprise/godmode/setup/setup.php:48 +msgid "Yes and change status" +msgstr "Oui et changer dā€™Ć©tat" + +#: ../../enterprise/godmode/setup/setup.php:56 +msgid "Yes without changing status" +msgstr "Oui sans changer dā€™Ć©tat" + +#: ../../enterprise/godmode/setup/setup.php:77 +#: ../../include/functions_config.php:401 +msgid "Use Enterprise ACL System" +msgstr "Utiliser le SystĆØme ACL Enterprise" + +#: ../../enterprise/godmode/setup/setup.php:104 +msgid "Metaconsole DB engine" +msgstr "Moteur BD de la MĆ©taconsole" + +#: ../../enterprise/godmode/setup/setup.php:107 +#: ../../enterprise/include/class/MySQL.app.php:420 +msgid "MySQL" +msgstr "MySQL" + +#: ../../enterprise/godmode/setup/setup.php:122 +msgid "Metaconsole DB host" +msgstr "HĆ“te BD de la MĆ©taconsole" + +#: ../../enterprise/godmode/setup/setup.php:136 +msgid "Metaconsole DB name" +msgstr "Nom de la BD de la MĆ©taconsole" + +#: ../../enterprise/godmode/setup/setup.php:150 +msgid "Metaconsole DB user" +msgstr "Utilisateur de la BD de la MĆ©taconsole" + +#: ../../enterprise/godmode/setup/setup.php:164 +msgid "Metaconsole DB password" +msgstr "Mot de passe de la BD de la MĆ©taconsole" + +#: ../../enterprise/godmode/setup/setup.php:191 +msgid "Events Configuration Information" +msgstr "Informations sur la configuration des Ć©vĆ©nements" + +#: ../../enterprise/godmode/setup/setup.php:193 +msgid "" +" If you are replicating events, events validated or deleted on the metaconsole " +"WILL NOT be deleted or validated here. This option is just to allow local pandora " +"users to see events, but not to operate with them. Operation, when event " +"replication is enabled, should be done only in metaconsole" +msgstr "" +" Si vous rĆ©pliquez des Ć©vĆ©nements, les Ć©vĆ©nements validĆ©s ou supprimĆ©s sur la " +"MĆ©taconsole NE SERONT PAS supprimĆ©s ou validĆ©s ici. Cette option est juste pour " +"permettre aux utilisateurs locaux de Pandora FMS de voir les Ć©vĆ©nements, mais pas " +"dā€™opĆ©rer avec eux. Lā€™opĆ©ration, lorsque la rĆ©plication dā€™Ć©vĆ©nements est activĆ©e, " +"doit ĆŖtre effectuĆ©e uniquement dans la MĆ©taconsole" + +#: ../../enterprise/godmode/setup/setup.php:198 +#: ../../include/functions_config.php:458 +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:437 +msgid "Activate Log Collector" +msgstr "Activer le collecteur de journaux" + +#: ../../enterprise/godmode/setup/setup.php:305 +msgid "Critical threshold for occupied addresses" +msgstr "Seuil critique pour les adresses occupĆ©es" + +#: ../../enterprise/godmode/setup/setup.php:317 +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:453 +msgid "SAP/R3 Plugin Licence" +msgstr "Licence de plugin SAP/R3" + +#: ../../enterprise/godmode/setup/setup.php:345 +msgid "Enterprise options" +msgstr "Options Enterprise" + +#: ../../enterprise/godmode/setup/setup.php:505 +#, php-format +msgid "" +"Password related configuration only applies when local %s authentication is " +"selected." +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:514 +msgid "Enterprise password policy" +msgstr "Politique de mot de passe Enterprise" + +#: ../../enterprise/godmode/setup/setup_skins.php:38 +#: ../../enterprise/godmode/setup/edit_skin.php:44 +msgid "Skins configuration" +msgstr "Configuration des thĆØmes" + +#: ../../enterprise/godmode/setup/setup_skins.php:77 +msgid "Error deleting skin" +msgstr "Erreur de suppression du thĆØme" + +#: ../../enterprise/godmode/setup/setup_skins.php:79 +msgid "Successfully deleted skin" +msgstr "ThĆØme supprimĆ© correctement" + +#: ../../enterprise/godmode/setup/setup_skins.php:125 +msgid "Skin name" +msgstr "Nom du thĆØme" + +#: ../../enterprise/godmode/setup/setup_skins.php:126 +#: ../../enterprise/godmode/setup/edit_skin.php:241 +msgid "Relative path" +msgstr "Chemin relatif" + +#: ../../enterprise/godmode/setup/setup_skins.php:153 +msgid "There are no defined skins" +msgstr "Aucun thĆØme dĆ©fini" + +#: ../../enterprise/godmode/setup/setup_skins.php:159 +msgid "Create skin" +msgstr "CrĆ©er un thĆØme" + +#: ../../enterprise/godmode/setup/setup_module_library.php:68 +#: ../../enterprise/godmode/wizards/Cloud.class.php:381 +#: ../../godmode/module_library/module_library_view.php:163 +msgid "Invalid username or password" +msgstr "Nom d'utilisateur ou mot de passe invalide" + +#: ../../enterprise/godmode/setup/setup_module_library.php:69 +#: ../../godmode/module_library/module_library_view.php:162 +msgid "Problem with authentication. Check your internet connection" +msgstr "ProblĆØme dā€™authentification. VĆ©rifiez votre connexion Internet" + +#: ../../enterprise/godmode/setup/setup_metaconsole.php:31 +msgid "Metaconsole setup" +msgstr "Configuration de la MĆ©taconsole" + +#: ../../enterprise/godmode/setup/setup_metaconsole.php:195 +msgid "Pandora FMS Metaconsole item edition" +msgstr "Ɖdition des Ć©lĆ©ments de la MĆ©taconsole de Pandora FMS" + +#: ../../enterprise/godmode/setup/setup_metaconsole.php:202 +msgid "" +"Token previously configured on the destination Pandora console in order to use " +"delegated authentification." +msgstr "" +"Token configurĆ© prĆ©alablement sur la console de destination de Pandora FMS afin " +"d'utiliser l'authentification dĆ©lĆ©guĆ©e" + +#: ../../enterprise/godmode/setup/setup_metaconsole.php:274 +msgid "Console URLxxxxxx" +msgstr "Console URLxxxxxx" + +#: ../../enterprise/godmode/setup/setup_log_collector.php:37 +msgid "ElasticSearch IP" +msgstr "IP ElasticSearch" + +#: ../../enterprise/godmode/setup/setup_log_collector.php:37 +msgid "IP of ElasticSearch server" +msgstr "IP du serveur ElasticSearch" + +#: ../../enterprise/godmode/setup/setup_log_collector.php:39 +msgid "ElasticSearch Port" +msgstr "Port ElasticSearch" + +#: ../../enterprise/godmode/setup/setup_log_collector.php:39 +msgid "Port of ElasticSearch server" +msgstr "Port du serveur ElasticSearch" + +#: ../../enterprise/godmode/setup/setup_log_collector.php:44 +#: ../../include/functions_config.php:1511 +msgid "Days to purge old information" +msgstr "Nombre de jours avant nettoyage d'information ancienne" + +#: ../../enterprise/godmode/setup/setup_log_collector.php:48 +msgid "ElasticSearch Status" +msgstr "Ɖtat dā€™ElasticSearch" + +#: ../../enterprise/godmode/setup/setup_auth.php:34 +msgid "Active directory" +msgstr "RĆ©pertoire actif" + +#: ../../enterprise/godmode/setup/setup_auth.php:35 +msgid "SAML" +msgstr "SAML" + +#: ../../enterprise/godmode/setup/setup_auth.php:87 +msgid "Force automatically create profile user" +msgstr "Forcer la crĆ©ation automatique dā€™un utilisateur de profil" + +#: ../../enterprise/godmode/setup/setup_auth.php:92 +msgid "Local command" +msgstr "Commande locale" + +#: ../../enterprise/godmode/setup/setup_auth.php:95 +msgid "PHP function" +msgstr "Fonction PHP" + +#: ../../enterprise/godmode/setup/setup_auth.php:99 +#: ../../enterprise/include/functions_tasklist.php:254 +#: ../../enterprise/include/functions_tasklist.php:341 +#: ../../enterprise/operation/reporting/custom_reporting.php:20 +#: ../../godmode/tag/tag.php:281 ../../godmode/tag/edit_tag.php:239 +#: ../../include/functions_cron.php:575 ../../include/functions_cron.php:666 +#: ../../operation/search_users.php:45 +msgid "Email" +msgstr "Courriel" + +#: ../../enterprise/godmode/setup/setup_auth.php:172 +#: ../../enterprise/godmode/setup/setup_auth.php:456 +#: ../../enterprise/godmode/setup/setup_auth.php:1251 +msgid "Profiles selected" +msgstr "Profils sĆ©lectionnĆ©s" + +#: ../../enterprise/godmode/setup/setup_auth.php:173 +#: ../../enterprise/godmode/setup/setup_auth.php:457 +#: ../../enterprise/godmode/setup/setup_auth.php:1252 +msgid "Groups selected" +msgstr "Groupes sĆ©lectionnĆ©s" + +#: ../../enterprise/godmode/setup/setup_auth.php:175 +#: ../../enterprise/godmode/setup/setup_auth.php:232 +#: ../../include/functions_profile.php:216 +msgid "No hierarchy" +msgstr "Pas de hiĆ©rarchie" + +#: ../../enterprise/godmode/setup/setup_auth.php:176 +#: ../../enterprise/godmode/setup/setup_auth.php:233 +msgid "LDAP Attributes" +msgstr "Attributs LDAP" + +#: ../../enterprise/godmode/setup/setup_auth.php:177 +#: ../../enterprise/godmode/setup/setup_auth.php:234 +#: ../../enterprise/godmode/setup/setup_auth.php:460 +#: ../../enterprise/godmode/setup/setup_auth.php:512 +#: ../../enterprise/godmode/setup/setup_auth.php:1255 +#: ../../enterprise/godmode/setup/setup_auth.php:1309 +#: ../../godmode/setup/snmp_wizard.php:44 +msgid "OP" +msgstr "OP" + +#: ../../enterprise/godmode/setup/setup_auth.php:229 +#: ../../enterprise/godmode/setup/setup_auth.php:508 +#: ../../enterprise/godmode/setup/setup_auth.php:1305 +#: ../../godmode/groups/configure_group.php:122 +#: ../../godmode/groups/group_list.php:380 ../../godmode/users/profile_list.php:323 +#: ../../godmode/menu.php:152 +msgid "Profiles" +msgstr "Profils" + +#: ../../enterprise/godmode/setup/setup_auth.php:242 +#: ../../enterprise/godmode/setup/setup_auth.php:519 +#: ../../enterprise/godmode/setup/setup_auth.php:1316 +msgid "Select profile" +msgstr "SĆ©lectionner un profil" + +#: ../../enterprise/godmode/setup/setup_auth.php:287 +#: ../../enterprise/godmode/setup/setup_auth.php:557 +#: ../../enterprise/godmode/setup/setup_auth.php:1359 +msgid "Add new permissions" +msgstr "Ajouter de nouvelles autorisations" + +#: ../../enterprise/godmode/setup/setup_auth.php:385 +#: ../../enterprise/godmode/setup/setup_auth.php:1180 +msgid "New users will be able to log in to the nodes." +msgstr "Les nouveaux utilisateurs pourront se connecter aux nœuds." + +#: ../../enterprise/godmode/setup/setup_auth.php:459 +#: ../../enterprise/godmode/setup/setup_auth.php:511 +#: ../../enterprise/godmode/setup/setup_auth.php:1254 +#: ../../enterprise/godmode/setup/setup_auth.php:1308 +msgid "AD Groups" +msgstr "Groupes AD" + +#: ../../enterprise/godmode/setup/setup_auth.php:738 +#: ../../enterprise/godmode/setup/setup_auth.php:854 +msgid "You must select a profile from the list of profiles." +msgstr "Vous devez sĆ©lectionner un profil de la liste de profils." + +#: ../../enterprise/godmode/setup/setup_auth.php:743 +#: ../../enterprise/godmode/setup/setup_auth.php:859 +msgid "You must select a group from the list of groups." +msgstr "SĆ©lectionnez un groupe dans la liste des groupes." + +#: ../../enterprise/godmode/setup/setup_auth.php:1021 +#: ../../include/functions_config.php:670 +msgid "MySQL host" +msgstr "HĆ“te MySQL" + +#: ../../enterprise/godmode/setup/setup_auth.php:1084 +msgid "SimpleSAML path" +msgstr "Chemin SimpleSAML" + +#: ../../enterprise/godmode/setup/setup_auth.php:1085 +msgid "Directory where your 'simplesamlphp' folder is located." +msgstr "RĆ©pertoire oĆ¹ se trouve votre dossier 'simplesamlphp'." + +#: ../../enterprise/godmode/setup/setup_auth.php:1091 +msgid "SAML source" +msgstr "Source Saml" + +#: ../../enterprise/godmode/setup/setup_auth.php:1092 +msgid "Authsource name, e.g. 'example-userpass'" +msgstr "Nom Authsource, par exemple 'example-userpass'" + +#: ../../enterprise/godmode/setup/setup_auth.php:1099 +msgid "SAML user id attribute" +msgstr "Attribut dā€™ID utilisateur SAML" + +#: ../../enterprise/godmode/setup/setup_auth.php:1104 +msgid "SAML mail attribute" +msgstr "Attribut de messagerie SAML" + +#: ../../enterprise/godmode/setup/setup_auth.php:1105 +msgid "" +"SAML field where search for the user email (while autocreate remote users is " +"enabled)" +msgstr "" +"Champ SAML oĆ¹ rechercher lā€™e-mail de lā€™utilisateur (alors que la crĆ©ation " +"automatique dā€™utilisateurs distants est activĆ©e)" + +#: ../../enterprise/godmode/setup/setup_auth.php:1112 +msgid "SAML group name attribute" +msgstr "Attribut de nom de groupe SAML" + +#: ../../enterprise/godmode/setup/setup_auth.php:1113 +msgid "" +"SAML field where search for the group name (while autocreate remote users is " +"enabled)" +msgstr "" +"Champ SAML oĆ¹ rechercher le nom du groupe (alors que la crĆ©ation automatique " +"dā€™utilisateurs distants est activĆ©e)" + +#: ../../enterprise/godmode/setup/setup_auth.php:1120 +msgid "Simple attribute / Multivalue attribute" +msgstr "Attribut simple / Attribut Ć  valeurs multiples" + +#: ../../enterprise/godmode/setup/setup_auth.php:1125 +msgid "SAML profiles and tag attribute" +msgstr "Profils SAML et attribut de lā€™Ć©tiquette" + +#: ../../enterprise/godmode/setup/setup_auth.php:1130 +msgid "Profile attribute" +msgstr "Attribut de profil" + +#: ../../enterprise/godmode/setup/setup_auth.php:1135 +msgid "Tag attribute" +msgstr "Attribut dā€™Ć©tiquette" + +#: ../../enterprise/godmode/setup/setup_auth.php:1140 +msgid "SAML profile and tags prefix" +msgstr "Profil SAML et prĆ©fixe des Ć©tiquettes" + +#: ../../enterprise/godmode/setup/setup_acl.php:46 +msgid "Enterprise ACL setup" +msgstr "Configuration ACL Enterprise" + +#: ../../enterprise/godmode/setup/setup_acl.php:69 +msgid "ACL element was deleted successfully" +msgstr "Lā€™Ć©lĆ©ment ACL a Ć©tĆ© supprimĆ© correctement" + +#: ../../enterprise/godmode/setup/setup_acl.php:71 +msgid "There was a problem delete ACL element" +msgstr "Il y a eu un problĆØme pour supprimer lā€™Ć©lĆ©ment ACL" + +#: ../../enterprise/godmode/setup/setup_acl.php:417 +msgid "This record already exists in the database" +msgstr "Cet enregistrement existe dĆ©jĆ  dans la base de donnĆ©es" + +#: ../../enterprise/godmode/setup/setup_acl.php:422 +msgid "ACL element is added successfully" +msgstr "Lā€™Ć©lĆ©ment ACL est ajoutĆ© correctement" + +#: ../../enterprise/godmode/setup/setup_acl.php:424 +msgid "There was a problem adding ACL element" +msgstr "Il y a eu un problĆØme lors de lā€™ajout de lā€™Ć©lĆ©ment ACL" + +#: ../../enterprise/godmode/setup/setup_acl.php:464 +#: ../../enterprise/godmode/setup/setup_acl.php:539 +msgid "Add new ACL element to profile" +msgstr "Ajouter un nouvel Ć©lĆ©ment ACL au profil" + +#: ../../enterprise/godmode/setup/setup_acl.php:469 +#: ../../enterprise/godmode/setup/setup_acl.php:544 +#: ../../enterprise/godmode/setup/setup_acl.php:592 +msgid "Section" +msgstr "Section" + +#: ../../enterprise/godmode/setup/setup_acl.php:476 +#: ../../enterprise/godmode/setup/setup_acl.php:694 +msgid "Mobile" +msgstr "Portable" + +#: ../../enterprise/godmode/setup/setup_acl.php:480 +#: ../../enterprise/godmode/setup/setup_acl.php:690 +msgid "Head search" +msgstr "Recherche de tĆŖte" + +#: ../../enterprise/godmode/setup/setup_acl.php:497 +#: ../../enterprise/godmode/setup/setup_acl.php:548 +#: ../../enterprise/godmode/setup/setup_acl.php:593 +msgid "Section 2" +msgstr "Section 2" + +#: ../../enterprise/godmode/setup/setup_acl.php:514 +#: ../../enterprise/godmode/setup/setup_acl.php:552 +#: ../../enterprise/godmode/setup/setup_acl.php:594 +msgid "Section 3" +msgstr "Section 3" + +#: ../../enterprise/godmode/setup/setup_acl.php:538 +msgid "Hidden" +msgstr "CachĆ©" + +#: ../../enterprise/godmode/setup/setup_acl.php:570 +msgid "Filter by profile" +msgstr "Filtrer par profil" + +#: ../../enterprise/godmode/setup/setup_acl.php:591 +#: ../../godmode/users/configure_profile.php:265 +#: ../../godmode/massive/massive_delete_profiles.php:151 +#: ../../godmode/massive/massive_add_profiles.php:202 +#: ../../include/functions_profile.php:213 ../../operation/users/user_edit.php:813 +msgid "Profile name" +msgstr "Nom du profil" + +#: ../../enterprise/godmode/setup/setup_acl.php:749 +#: ../../enterprise/godmode/setup/setup_acl.php:759 +msgid "Invalid" +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 +#: ../../include/ajax/visual_console_builder.ajax.php:343 +#: ../../include/functions_visual_map.php:2841 +msgid "No data to show" +msgstr "Aucune donnĆ©e Ć  afficher" + +#: ../../enterprise/godmode/setup/edit_skin.php:47 +msgid "Successfully updated skin" +msgstr "ThĆØme mis Ć  jour correctement" + +#: ../../enterprise/godmode/setup/edit_skin.php:49 +#: ../../enterprise/godmode/setup/edit_skin.php:67 +msgid "Error updating skin" +msgstr "Erreur de mise Ć  jour du thĆØme" + +#: ../../enterprise/godmode/setup/edit_skin.php:197 +msgid "Error creating skin" +msgstr "Erreur de crĆ©ation du thĆØme" + +#: ../../enterprise/godmode/setup/edit_skin.php:201 +msgid "Successfully created skin" +msgstr "ThĆØme crĆ©Ć© correctement" + +#: ../../enterprise/godmode/setup/edit_skin.php:242 +msgid "" +"Zip file with skin subdirectory. The name of the zip file only can have " +"alphanumeric characters." +msgstr "" +"Fichier zip avec sous-rĆ©pertoire thĆØme. Le nom du fichier zip ne peut avoir que " +"des caractĆØres alphanumĆ©riques." + +#: ../../enterprise/godmode/setup/edit_skin.php:267 +msgid "Group/s" +msgstr "Groupe/s" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:147 +#: ../../enterprise/godmode/reporting/graph_template_wizard.php:80 +msgid "Cleanup sucessfully" +msgstr "NettoyĆ© correctement" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:150 +#: ../../enterprise/godmode/reporting/graph_template_wizard.php:83 +msgid "Cleanup error" +msgstr "Erreur de nettoyage" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:195 +msgid "No item could be applied to report." +msgstr "Aucun Ć©lĆ©ment nā€™a pu ĆŖtre appliquĆ© au rapport." + +#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:198 +#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:156 +msgid "Sucessfully applied" +msgstr "AppliquĆ©s correctement" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:198 +msgid "reports" +msgstr "Rapports" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:198 +msgid "items" +msgstr "Ć©lĆ©ments" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:200 +#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:158 +msgid "Could not be applied" +msgstr "Erreur d'application" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:207 +#: ../../godmode/massive/massive_operations.php:347 +msgid "" +"In order to perform massive operations, PHP needs a correct configuration in " +"timeout parameters. Please, open your PHP configuration file (php.ini) for " +"example: sudo vi /etc/php5/apache2/php.ini;
    And set your timeout " +"parameters to a correct value:
    max_execution_time = 0 and " +"max_input_time = -1" +msgstr "" +"Pour effectuer des opĆ©rations massives, il faut que les paramĆØtres d'interruption " +"PHP soient configurĆ©s correctement. Veuillez ouvrir le fichier de configuration " +"PHP (php.ini) par exemple : sudo vi /etc/php5/apache2/php.ini;
    et " +"rĆ©gler les paramĆØtres d'interruption Ć  une valeur correcte :
    " +"max_execution_time = 0 and max_input_time = -1" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:221 +msgid "Create template report wizard" +msgstr "Assistant de crĆ©ation de modĆØles de rapports" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:266 +#: ../../enterprise/godmode/reporting/graph_template_wizard.php:197 +msgid "Clean up template" +msgstr "Nettoyer le modĆØle" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:273 +msgid "Create report per agent" +msgstr "CrĆ©er un rapport par agent" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:282 +#: ../../enterprise/include/functions_cron.php:232 +#: ../../enterprise/include/functions_tasklist.php:340 +#: ../../enterprise/include/functions_reporting_csv.php:2218 +#: ../../enterprise/include/functions_reporting_csv.php:2222 +#: ../../godmode/reporting/reporting_builder.php:908 +#: ../../include/functions_cron.php:665 ../../operation/search_reports.php:42 +#: ../../operation/search_reports.php:58 +#: ../../operation/reporting/custom_reporting.php:34 +msgid "Report name" +msgstr "Nom du rapport" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:282 +msgid "" +"Left in blank if you want to use default name: Template name - agents (num " +"agents) - Date" +msgstr "" +"Laissez-le en blanc si vous voulez utiliser le nom par dĆ©faut : Template name - " +"agents (num agents) - Date" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:288 +#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:236 +msgid "Target group" +msgstr "Groupe cible" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:327 +msgid "Filter by" +msgstr "Filtrer par" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:330 +#: ../../godmode/reporting/create_container.php:566 +#: ../../godmode/reporting/create_container.php:629 +#: ../../mobile/operation/modules.php:194 ../../mobile/operation/modules.php:195 +#: ../../mobile/operation/modules.php:308 ../../mobile/operation/modules.php:309 +#: ../../include/ajax/heatmap.ajax.php:126 ../../include/ajax/heatmap.ajax.php:296 +#: ../../operation/heatmap.php:109 ../../operation/agentes/group_view.php:327 +msgid "Tag" +msgstr "Ɖtiquette" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:398 +msgid "Filter tag" +msgstr "Filtrer par Ć©tiquette" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:412 +#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:422 +#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:172 +#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:177 +#: ../../enterprise/godmode/reporting/graph_template_wizard.php:228 +#: ../../enterprise/godmode/reporting/graph_template_wizard.php:234 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:832 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:834 +#: ../../include/functions_snmp_browser.php:1519 +#: ../../include/functions_snmp_browser.php:1521 +msgid "Select all" +msgstr "Tout sĆ©lectionner" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:415 +#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:281 +#: ../../enterprise/godmode/reporting/graph_template_wizard.php:228 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:832 +msgid "Agents available" +msgstr "Agents disponibles" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:425 +#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:287 +#: ../../enterprise/godmode/reporting/reporting_builder.template_editor.php:208 +#: ../../enterprise/godmode/reporting/graph_template_wizard.php:234 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:834 +msgid "Agents to apply" +msgstr "Agents Ć  appliquer" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:466 +#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:304 +#: ../../enterprise/godmode/reporting/graph_template_wizard.php:259 +msgid "Add agents to template" +msgstr "Ajouter agents au modĆØle" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:478 +#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:306 +#: ../../enterprise/godmode/reporting/graph_template_wizard.php:263 +msgid "Undo agents to template" +msgstr "Annuler ajout d'agents au modĆØle" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:499 +#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:324 +#: ../../enterprise/godmode/reporting/graph_template_wizard.php:281 +msgid "Apply template" +msgstr "Appliquer le modĆØle" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:830 +#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:861 +#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:631 +#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:661 +#: ../../enterprise/godmode/reporting/graph_template_wizard.php:443 +#: ../../enterprise/godmode/reporting/graph_template_wizard.php:475 +msgid "Please set template distinct than " +msgstr "Veuillez configurer un modĆØle diffĆ©rent de " + +#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:834 +#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:635 +msgid "Please set agent distinct than " +msgstr "Veuillez configurer un agent diffĆ©rent de " + +#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:856 +#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:656 +#: ../../enterprise/godmode/reporting/graph_template_wizard.php:470 +msgid "" +"This will be delete all reports created in previous template applications. Do you " +"want to continue?" +msgstr "" +"Ceci supprimera tous les rapports crĆ©Ć©s dans les applications de modĆØles " +"prĆ©cĆ©dentes. Voulez-vous continuer ?" + +#: ../../enterprise/godmode/reporting/aws_view.php:53 +msgid "Instance" +msgstr "Instance" + +#: ../../enterprise/godmode/reporting/aws_view.php:54 +#: ../../include/class/Diagnostics.class.php:722 +msgid "CPU" +msgstr "UCT" + +#: ../../enterprise/godmode/reporting/aws_view.php:55 +msgid "IO read" +msgstr "E/S lues" + +#: ../../enterprise/godmode/reporting/aws_view.php:56 +msgid "IO write" +msgstr "Ɖcriture dā€™E/S" + +#: ../../enterprise/godmode/reporting/aws_view.php:57 +msgid "Disk read" +msgstr "Lecture du disque" + +#: ../../enterprise/godmode/reporting/aws_view.php:58 +msgid "Disk write" +msgstr "Ɖcriture sur disque" + +#: ../../enterprise/godmode/reporting/aws_view.php:59 +msgid "Network in" +msgstr "RĆ©seau entrĆ©e" + +#: ../../enterprise/godmode/reporting/aws_view.php:60 +msgid "Network out" +msgstr "RĆ©seau sortie" + +#: ../../enterprise/godmode/reporting/aws_view.php:106 +#: ../../enterprise/godmode/reporting/aws_view.php:139 +#: ../../enterprise/operation/menu.php:45 +msgid "AWS View" +msgstr "Vue AWS" + +#: ../../enterprise/godmode/reporting/aws_view.php:134 +msgid "Failed to retrieve AWS information using selected account." +msgstr "" +"Impossible de rĆ©cupĆ©rer les informations AWS Ć  lā€™aide du compte sĆ©lectionnĆ©." + +#: ../../enterprise/godmode/reporting/aws_view.php:153 +msgid "AWS credentials not validated." +msgstr "Identifiants AWS non validĆ©es." + +#: ../../enterprise/godmode/reporting/aws_view.php:168 +msgid "Discovery Cloud: AWS" +msgstr "Discovery Cloud : AWS" + +#: ../../enterprise/godmode/reporting/aws_view.php:177 +msgid "Please, select an account: " +msgstr "Veuillez sĆ©lectionner un compte : " + +#: ../../enterprise/godmode/reporting/aws_view.php:186 +msgid "CREATE CLOUD MONITORING DISCOVERY TASK" +msgstr "CRƉER UNE TƂCHE DE DƉCOUVERTE DE SUPERVISION CLOUD" + +#: ../../enterprise/godmode/reporting/aws_view.php:189 +msgid "" +"Within this view you will find information collected using Discovery Cloud AWS " +"task. You will be able to see the most relevant information about your " +"infrastructure, such as the current cost of your contracted services, the number " +"of instances per region or resource usage metrics. In order to collect this " +"information you must create a Cloud Monitoring Discovery task." +msgstr "" +"Dans cette vue, vous trouverez des informations collectĆ©es Ć  lā€™aide de la tĆ¢che " +"AWS Discovery Cloud. Vous pourrez voir les informations les plus pertinentes sur " +"votre infrastructure, telles que le coĆ»t actuel de vos services contractuels, le " +"nombre dā€™instances par rĆ©gion ou les mesures dā€™utilisation des ressources. Pour " +"collecter ces informations, vous devez crĆ©er une tĆ¢che Cloud Monitoring Discovery." + +#: ../../enterprise/godmode/reporting/aws_view.php:192 +msgid "Press the create button to begin." +msgstr "Cliquez CrĆ©er pour commencer." + +#: ../../enterprise/godmode/reporting/aws_view.php:221 +msgid "Instance table" +msgstr "Table dā€™instance" + +#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:62 +#: ../../enterprise/godmode/reporting/visual_console_template.php:63 +#: ../../godmode/reporting/map_builder.php:75 +#: ../../godmode/reporting/map_builder.php:121 +#: ../../godmode/reporting/visual_console_favorite.php:72 +msgid "Visual Console List" +msgstr "Liste de la console visuelle" + +#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:74 +#: ../../enterprise/godmode/reporting/visual_console_template.php:75 +#: ../../godmode/reporting/map_builder.php:87 +#: ../../godmode/reporting/visual_console_favorite.php:84 +msgid "Visual Favourite Console" +msgstr "Console visuelle prĆ©fĆ©rĆ©e" + +#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:87 +#: ../../enterprise/godmode/reporting/visual_console_template.php:88 +#: ../../godmode/reporting/map_builder.php:100 +#: ../../godmode/reporting/visual_console_favorite.php:97 +msgid "Visual Console Template" +msgstr "ModĆØle de console visuelle" + +#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:99 +#: ../../enterprise/godmode/reporting/visual_console_template.php:100 +#: ../../godmode/reporting/map_builder.php:112 +#: ../../godmode/reporting/visual_console_favorite.php:109 +msgid "Visual Console Template Wizard" +msgstr "Assistant de modĆØle de console visuelle" + +#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:108 +msgid "Template Wizard" +msgstr "Assistant du modĆØle" + +#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:200 +msgid "Visual console name" +msgstr "Nom de la console visuelle" + +#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:200 +msgid "" +"You can use macro _agentalias_ here. Left in blank if you want to use default " +"name: Template name - agent alias" +msgstr "" +"Vous pouvez utiliser macro _agentalias_ ici. LaissĆ© vide si vous souhaitez " +"utiliser le nom par dĆ©faut : Nom du modĆØle - alias de lā€™agent" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_editor.php:170 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:107 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:131 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:193 +msgid "Edit template" +msgstr "Modifier le modĆØle" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_editor.php:209 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:903 +msgid "" +"Case insensitive regular expression for agent alias. For example: Network.* will " +"match with the following agent alias: network_agent1, NetworK CHECKS" +msgstr "" +"Expression rĆ©guliĆØre insensible Ć  la casse pour lā€™alias dā€™agent. Par exemple : " +"Network.* correspond Ć  lā€™alias dā€™agent suivant : network_agent1, NetworK CHECKS" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_editor.php:222 +#: ../../godmode/reporting/reporting_builder.main.php:226 +msgid "Generate cover page in PDF render" +msgstr "GĆ©nĆ©rer une page de couverture dans le PDF render" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_editor.php:230 +#: ../../godmode/reporting/reporting_builder.main.php:234 +msgid "Generate index in PDF render" +msgstr "GĆ©nĆ©rer un index dans le PDF render" + +#: ../../enterprise/godmode/reporting/graph_template_list.php:54 +#: ../../enterprise/godmode/reporting/graph_template_list.php:73 +#: ../../enterprise/godmode/reporting/graph_template_list.php:87 +#: ../../enterprise/godmode/reporting/graph_template_wizard.php:99 +#: ../../enterprise/godmode/reporting/graph_template_wizard.php:113 +#: ../../godmode/reporting/graph_builder.php:287 +#: ../../godmode/reporting/graph_container.php:77 +#: ../../godmode/reporting/graphs.php:67 ../../godmode/reporting/graphs.php:81 +#: ../../operation/reporting/graph_viewer.php:182 +#: ../../operation/reporting/graph_viewer.php:214 +msgid "Graph list" +msgstr "Liste de graphiques" + +#: ../../enterprise/godmode/reporting/graph_template_list.php:111 +#: ../../enterprise/godmode/reporting/graph_template_wizard.php:127 +#: ../../godmode/reporting/create_container.php:188 +#: ../../godmode/reporting/graph_container.php:101 +#: ../../godmode/reporting/graph_container.php:109 +msgid "Graph container" +msgstr "Conteneur de graphiques" + +#: ../../enterprise/godmode/reporting/graph_template_list.php:119 +msgid "Graph template management" +msgstr "Gestion du modĆØle de graphique" + +#: ../../enterprise/godmode/reporting/graph_template_list.php:132 +#: ../../enterprise/godmode/reporting/graph_template_editor.php:107 +#: ../../enterprise/godmode/reporting/graph_template_wizard.php:148 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:388 +#: ../../enterprise/godmode/reporting/graph_template_item_editor.php:78 +#: ../../godmode/reporting/graph_builder.php:370 +#: ../../godmode/reporting/graph_container.php:122 +#: ../../godmode/reporting/graphs.php:133 ../../operation/menu.php:327 +#: ../../operation/reporting/graph_viewer.php:271 +msgid "Custom graphs" +msgstr "Graphiques personnalisĆ©s" + +#: ../../enterprise/godmode/reporting/graph_template_list.php:203 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:497 +#: ../../godmode/alerts/alert_list.list.php:66 +msgid "Template name" +msgstr "Nom du modĆØle" + +#: ../../enterprise/godmode/reporting/graph_template_list.php:252 +msgid "There are no defined graph templates" +msgstr "Aucun modĆØle de graphique dĆ©fini" + +#: ../../enterprise/godmode/reporting/graph_template_list.php:257 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:166 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:667 +#: ../../enterprise/godmode/reporting/visual_console_template.php:254 +msgid "Create template" +msgstr "CrĆ©er un modĆØle" + +#: ../../enterprise/godmode/reporting/graph_template_editor.php:58 +msgid "Not created. Blank name" +msgstr "Non crĆ©Ć©. Nom vide" + +#: ../../enterprise/godmode/reporting/graph_template_editor.php:94 +msgid "Graph template editor" +msgstr "Ɖditeur de modĆØle de graphique" + +#: ../../enterprise/godmode/reporting/graph_template_editor.php:155 +#: ../../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:210 +msgid "Not updated. Blank name" +msgstr "Erreur de mise Ć  jour. Nom en blanc." + +#: ../../enterprise/godmode/reporting/graph_template_editor.php:173 +msgid "Template updated successfully" +msgstr "ModĆØle mis Ć  jour correctement" + +#: ../../enterprise/godmode/reporting/graph_template_editor.php:174 +#: ../../include/class/ModuleTemplates.class.php:355 +msgid "Error updating template" +msgstr "Erreur mise Ć  jour du modĆØle" + +#: ../../enterprise/godmode/reporting/graph_template_editor.php:208 +#: ../../godmode/setup/gis_step_2.php:371 +#: ../../godmode/reporting/visual_console_builder.wizard.php:180 +#: ../../godmode/events/event_responses.editor.php:139 +#: ../../include/functions_visual_map_editor.php:97 +#: ../../include/functions_visual_map_editor.php:668 +#: ../../include/rest-api/models/VisualConsole/Items/Line.php:475 +#: ../../include/rest-api/models/VisualConsole/Items/NetworkLink.php:926 +#: ../../include/functions_reports.php:1248 +msgid "Width" +msgstr "Largeur" + +#: ../../enterprise/godmode/reporting/graph_template_editor.php:212 +#: ../../godmode/setup/gis_step_2.php:378 +#: ../../godmode/reporting/visual_console_builder.wizard.php:181 +#: ../../godmode/events/event_responses.editor.php:141 +#: ../../include/functions_visual_map_editor.php:673 +#: ../../include/functions_reports.php:1264 ../../include/functions_reports.php:1364 +msgid "Height" +msgstr "Hauteur" + +#: ../../enterprise/godmode/reporting/graph_template_editor.php:217 +#: ../../godmode/setup/performance.php:531 +#: ../../godmode/reporting/create_container.php:346 ../../include/functions.php:2699 +#: ../../include/functions.php:3367 ../../include/ajax/module.php:200 +#: ../../include/ajax/graph.ajax.php:146 +#: ../../operation/gis_maps/render_view.php:156 +msgid "1 hour" +msgstr "1 heure" + +#: ../../enterprise/godmode/reporting/graph_template_editor.php:218 +#: ../../operation/gis_maps/render_view.php:157 +msgid "2 hours" +msgstr "2 heures" + +#: ../../enterprise/godmode/reporting/graph_template_editor.php:219 +msgid "3 hours" +msgstr "3 heures" + +#: ../../enterprise/godmode/reporting/graph_template_editor.php:220 +#: ../../include/ajax/module.php:201 +msgid "6 hours" +msgstr "6 heures" + +#: ../../enterprise/godmode/reporting/graph_template_editor.php:221 +#: ../../godmode/setup/performance.php:532 ../../include/ajax/module.php:202 +msgid "12 hours" +msgstr "12 heures" + +#: ../../enterprise/godmode/reporting/graph_template_editor.php:222 +#: ../../godmode/reporting/create_container.php:350 ../../include/functions.php:2702 +#: ../../include/ajax/module.php:203 ../../include/ajax/graph.ajax.php:150 +msgid "1 day" +msgstr "1 jour" + +#: ../../enterprise/godmode/reporting/graph_template_editor.php:223 +#: ../../godmode/setup/performance.php:534 +msgid "2 days" +msgstr "2 jours" + +#: ../../enterprise/godmode/reporting/graph_template_editor.php:224 +msgid "4 days" +msgstr "4 jours" + +#: ../../enterprise/godmode/reporting/graph_template_editor.php:225 +#: ../../godmode/setup/performance.php:536 +msgid "Last week" +msgstr "La semaine derniĆØre" + +#: ../../enterprise/godmode/reporting/graph_template_editor.php:226 +#: ../../godmode/reporting/create_container.php:354 ../../include/functions.php:2704 +#: ../../include/ajax/module.php:205 ../../include/ajax/graph.ajax.php:154 +msgid "15 days" +msgstr "15 jours" + +#: ../../enterprise/godmode/reporting/graph_template_editor.php:227 +#: ../../godmode/setup/performance.php:538 +msgid "Last month" +msgstr "Le mois dernier" + +#: ../../enterprise/godmode/reporting/graph_template_editor.php:228 +msgid "2 months" +msgstr "2 mois" + +#: ../../enterprise/godmode/reporting/graph_template_editor.php:229 +#: ../../include/ajax/module.php:208 +msgid "6 months" +msgstr "6 mois" + +#: ../../enterprise/godmode/reporting/graph_template_editor.php:230 +#: ../../include/functions.php:2708 ../../include/ajax/module.php:209 +msgid "1 year" +msgstr "1 an" + +#: ../../enterprise/godmode/reporting/graph_template_editor.php:235 +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:102 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1768 +#: ../../enterprise/include/functions_reporting_csv.php:483 +#: ../../enterprise/include/functions_reporting_csv.php:486 +#: ../../enterprise/include/functions_reporting_csv.php:710 +#: ../../enterprise/include/functions_reporting_csv.php:831 +#: ../../enterprise/include/functions_reporting_csv.php:914 +#: ../../enterprise/include/functions_reporting_csv.php:946 +#: ../../enterprise/include/functions_reporting_csv.php:1006 +#: ../../enterprise/include/functions_reporting_csv.php:1184 +#: ../../enterprise/include/functions_reporting_csv.php:1215 +#: ../../enterprise/include/functions_reporting_csv.php:1270 +#: ../../enterprise/include/functions_reporting_csv.php:1374 +#: ../../enterprise/include/functions_reporting_csv.php:1429 +#: ../../enterprise/include/functions_reporting_csv.php:1495 +#: ../../enterprise/include/functions_reporting_csv.php:1881 +#: ../../enterprise/include/functions_reporting_csv.php:1931 +#: ../../enterprise/include/functions_reporting_csv.php:2627 +#: ../../enterprise/include/functions_reporting_csv.php:2678 +#: ../../enterprise/include/functions_reporting_csv.php:2804 +#: ../../godmode/agentes/module_manager_editor_prediction.php:179 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1357 +#: ../../godmode/reporting/visual_console_builder.elements.php:107 +#: ../../godmode/reporting/visual_console_builder.wizard.php:242 +#: ../../godmode/reporting/graph_builder.main.php:196 +#: ../../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 +msgid "Period" +msgstr "PĆ©riode" + +#: ../../enterprise/godmode/reporting/graph_template_editor.php:239 +msgid "Stacked" +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:316 +#: ../../operation/reporting/graph_viewer.php:371 +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:318 +#: ../../operation/reporting/graph_viewer.php:373 +msgid "Stacked line" +msgstr "Ligne en attente" + +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:46 +#: ../../include/functions_reports.php:815 +msgid "Top n" +msgstr "Top N" + +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:47 +#: ../../enterprise/include/functions_reporting_csv.php:900 +#: ../../include/functions_reports.php:789 +#: ../../include/functions_reporting.php:3170 +msgid "Exception" +msgstr "Exception" + +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:51 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:57 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:196 +#: ../../godmode/reporting/reporting_builder.item_editor.php:58 +msgid "Only table" +msgstr "Seulement le tableau" + +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:52 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:58 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:197 +#: ../../godmode/reporting/reporting_builder.item_editor.php:59 +msgid "Table & Graph" +msgstr "Tableau et graphique" + +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:53 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:59 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:198 +#: ../../godmode/reporting/reporting_builder.item_editor.php:60 +msgid "Only graph" +msgstr "Seulement le graphique" + +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:74 +#: ../../enterprise/include/functions_reporting.php:82 +msgid "Global" +msgstr "GĆ©nĆ©ral" + +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:106 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:290 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:319 +msgid "Elements to apply" +msgstr "ƉlĆ©ments Ć  appliquer" + +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:190 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:204 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:291 +msgid "Filter agents selector" +msgstr "SĆ©lecteur de filtres dā€™agents" + +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:196 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1745 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1334 +#: ../../include/functions_reports.php:766 +msgid "Last value" +msgstr "DerniĆØre valeur" + +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:198 +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:818 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1747 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:5006 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1336 +#: ../../godmode/reporting/reporting_builder.item_editor.php:7092 +msgid "" +"Warning: period 0 reports cannot be used to show information back in time. " +"Information contained in this kind of reports will be always reporting the most " +"recent information" +msgstr "" +"Attention : les rapports de pĆ©riode 0 ne peuvent pas ĆŖtre utilisĆ©s pour afficher " +"de l'information passĆ©e. L'information dans ce type de rapport affiche toujours " +"les donnĆ©es les plus rĆ©centes." -#: ../../operation/agentes/group_view.php:183 -#: ../../operation/agentes/group_view.php:216 -#: ../../operation/agentes/interface_view.functions.php:71 -#: ../../operation/search_results.php:80 ../../include/functions_cron.php:663 -#: ../../include/class/AgentsAlerts.class.php:252 -#: ../../include/class/AgentsAlerts.class.php:542 -#: ../../include/class/Diagnostics.class.php:1161 -#: ../../include/class/Diagnostics.class.php:1165 -#: ../../include/class/Diagnostics.class.php:1169 -#: ../../include/class/Diagnostics.class.php:1173 -#: ../../include/class/NetworkMap.class.php:3228 -#: ../../include/lib/Dashboard/Widgets/groups_status.php:311 -#: ../../include/lib/Dashboard/Widgets/groups_status.php:316 -#: ../../include/lib/Dashboard/Widgets/agent_module.php:448 -#: ../../include/functions_groups.php:53 ../../include/functions_html.php:1645 -#: ../../include/functions_reporting_html.php:1845 -#: ../../include/functions_reporting_html.php:2314 -#: ../../include/functions_reporting_html.php:3083 -#: ../../enterprise/operation/services/services.service_map.php:158 -#: ../../enterprise/include/functions_cron.php:215 -#: ../../enterprise/include/functions_tasklist.php:338 -#: ../../enterprise/include/functions_reporting_pdf.php:861 -#: ../../enterprise/include/functions_policies.php:3824 -#: ../../enterprise/meta/include/functions_autoprovision.php:476 -#: ../../enterprise/meta/monitoring/group_view.php:154 -#: ../../enterprise/meta/monitoring/group_view.php:215 -#: ../../enterprise/meta/monitoring/wizard/wizard.php:304 -#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:362 -#: ../../enterprise/meta/advanced/policymanager.queue.php:258 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:305 #: ../../enterprise/godmode/reporting/reporting_builder.global.php:228 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:219 -#: ../../enterprise/godmode/massive/massive_add_service_elements.php:361 -#: ../../enterprise/godmode/massive/massive_create_services.php:964 -#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:248 -#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:100 -#: ../../enterprise/godmode/agentes/collections.editor.php:74 -#: ../../enterprise/godmode/agentes/collections.agents.php:53 -#: ../../enterprise/godmode/agentes/collections.data.php:137 -#: ../../enterprise/godmode/agentes/collections.data.php:283 -#: ../../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.php:71 -#: ../../enterprise/godmode/policies/policy_queue.php:648 -#: ../../enterprise/godmode/policies/policies.php:407 -#: ../../enterprise/godmode/policies/policies.php:531 -#: ../../extensions/agents_modules.php:431 -#: ../../extensions/agents_modules.php:758 ../../mobile/operation/agent.php:155 -#: ../../mobile/operation/home.php:81 ../../mobile/operation/agents.php:204 -#: ../../mobile/include/functions_web.php:23 -#: ../../godmode/reporting/reporting_builder.list_items.php:208 -#: ../../godmode/reporting/reporting_builder.list_items.php:229 -#: ../../godmode/reporting/reporting_builder.item_editor.php:1674 -#: ../../godmode/reporting/reporting_builder.item_editor.php:1736 -#: ../../godmode/reporting/reporting_builder.item_editor.php:1983 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:222 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:305 #: ../../godmode/reporting/visual_console_builder.wizard.php:408 -#: ../../godmode/massive/massive_add_alerts.php:231 -#: ../../godmode/massive/massive_delete_modules.php:535 -#: ../../godmode/massive/massive_standby_alerts.php:203 -#: ../../godmode/massive/massive_edit_agents.php:566 -#: ../../godmode/massive/massive_delete_alerts.php:314 -#: ../../godmode/massive/massive_delete_agents.php:280 -#: ../../godmode/massive/massive_edit_plugins.php:367 -#: ../../godmode/massive/massive_enable_disable_alerts.php:174 -#: ../../godmode/massive/massive_edit_modules.php:511 -#: ../../godmode/agentes/planned_downtime.list.php:84 -#: ../../godmode/agentes/planned_downtime.list.php:108 -#: ../../godmode/alerts/alert_list.list.php:69 -msgid "Agents" -msgstr "Agents" +msgid "If you select several agents, only the common modules will be displayed" +msgstr "" +"Si vous sĆ©lectionnez plusieurs agents, seuls les modules communs seront affichĆ©s" -#: ../../operation/agentes/group_view.php:221 -#: ../../operation/agentes/group_view.php:276 ../../include/ajax/module.php:1052 -#: ../../include/functions_ui.php:1162 -#: ../../enterprise/operation/services/services.list.php:639 -#: ../../enterprise/include/functions_ipam.php:1384 -#: ../../enterprise/godmode/agentes/inventory_manager.php:257 -#: ../../godmode/wizards/DiscoveryTaskList.class.php:584 -#: ../../godmode/wizards/DiscoveryTaskList.class.php:674 -msgid "Force" -msgstr "Forcer" +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:258 +#: ../../enterprise/include/functions_reporting_csv.php:1030 +#: ../../include/functions_reporting_html.php:4787 +msgid "Sum" +msgstr "Total" -#: ../../operation/agentes/group_view.php:313 -#: ../../enterprise/meta/monitoring/group_view.php:359 -#, php-format +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:270 +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:400 +#: ../../include/functions_reporting.php:9993 +msgid "Rate" +msgstr "Taux" + +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:306 +#: ../../enterprise/include/class/Omnishell.class.php:520 +#: ../../enterprise/operation/services/services.list.php:728 +#: ../../godmode/agentes/agent_manager.php:313 +#: ../../godmode/snmpconsole/snmp_alert.php:1506 +#: ../../include/class/ModuleTemplates.class.php:970 +msgid "Delete selected" +msgstr "Effacer les Ć©lĆ©ments sĆ©lectionnĆ©s" + +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:321 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2328 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2427 +msgid "Group by agent" +msgstr "Regrouper par agent" + +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:333 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2378 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3131 +msgid "Show in the same row" +msgstr "Afficher dans la mĆŖme rangĆ©e" + +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:334 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2380 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3133 +msgid "Show one module per row with all its operations" +msgstr "Afficher un module par rangĆ©e avec toutes ses opĆ©rations" + +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:346 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:450 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2398 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2975 +#: ../../enterprise/operation/log/log_viewer.php:500 +#: ../../godmode/netflow/nf_item_list.php:173 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2441 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3154 +#: ../../include/lib/Dashboard/Widgets/top_n.php:267 +msgid "Order" +msgstr "Ordre" + +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:351 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:318 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:63 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:202 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2401 +#: ../../enterprise/operation/log/log_viewer.php:497 +#: ../../godmode/reporting/reporting_builder.item_editor.php:64 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2444 +#: ../../include/lib/Dashboard/Widgets/top_n.php:261 +msgid "Ascending" +msgstr "Croissant" + +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:353 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:325 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:64 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:203 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2408 +#: ../../enterprise/operation/log/log_viewer.php:496 +#: ../../godmode/reporting/reporting_builder.item_editor.php:65 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2451 +#: ../../include/lib/Dashboard/Widgets/top_n.php:262 +msgid "Descending" +msgstr "DĆ©croissant" + +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:355 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:332 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2415 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2458 +#: ../../include/lib/Dashboard/Widgets/top_n.php:263 +msgid "By agent name" +msgstr "Par nom d'agent" + +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:363 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2427 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2470 +#: ../../include/lib/Dashboard/Widgets/top_n.php:249 +msgid "Quantity (n)" +msgstr "QuantitĆ© (n)" + +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:375 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2442 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2500 +#: ../../include/lib/Dashboard/Widgets/top_n.php:286 +#: ../../operation/agentes/ver_agente.php:1632 +msgid "Display" +msgstr "Afficher" + +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:430 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2547 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2662 +#: ../../include/functions_reporting.php:3192 +msgid "Everything" +msgstr "Tout" + +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:432 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2554 +msgid ">=" +msgstr ">=" + +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:434 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2561 +msgid "<" +msgstr "<" + +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:438 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2575 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2670 +#: ../../include/functions_reporting_html.php:3357 +msgid "Not OK" +msgstr "Pas OK" + +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:446 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:461 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2587 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2682 +msgid "Show graph" +msgstr "Afficher le graphique" + +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:458 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:347 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2700 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2792 +msgid "Show resume" +msgstr "Afficher le rĆ©sumĆ©" + +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:458 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2701 msgid "" -"This %s installation are using the secondary groups feature. For this reason, " -"an agent can be counted several times." +"Show a resume table with max, min, average of total modules on the report bottom" msgstr "" -"Cette %s installation utilise la fonctionnalitĆ© de groupes secondaires. Pour " -"cette raison, un agent peut ĆŖtre comptĆ© plusieurs fois." +"Montrer un tableau rĆ©sumĆ© avec le maximum, le minimum et la moyenne de modules " +"totaux Ć  la fin du rapport." -#: ../../operation/agentes/group_view.php:570 -#: ../../operation/agentes/estado_agente.php:975 -#: ../../enterprise/meta/monitoring/group_view.php:205 -#: ../../godmode/agentes/modificar_agente.php:944 -msgid "There are no defined agents" -msgstr "Aucun agent dĆ©fini" +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:473 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:812 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:481 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3377 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3560 +msgid "Show item in landscape format (only PDF)" +msgstr "Afficher lā€™Ć©lĆ©ment au format paysage (uniquement PDF)" -#: ../../operation/agentes/graphs.php:143 -msgid "Other modules" -msgstr "Autres modules" +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:489 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:828 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:495 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3386 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3569 +msgid "Page break at the end of the item (only PDF)" +msgstr "Saut de page Ć  la fin de lā€™article (UNIQUEMENT PDF)" -#: ../../operation/agentes/graphs.php:150 -msgid "Modules network no proc" -msgstr "Modules de rĆ©seau sans proc" +#: ../../enterprise/godmode/reporting/graph_template_wizard.php:135 +msgid "Wizard template" +msgstr "ModĆØle de l'assistant" -#: ../../operation/agentes/graphs.php:157 -msgid "Modules boolean" -msgstr "Modules boolĆ©ens" +#: ../../enterprise/godmode/reporting/reporting_builder.advanced.php:81 +msgid "Advance Reporting" +msgstr "Rapport avancĆ©" -#: ../../operation/agentes/graphs.php:207 -#: ../../operation/agentes/stat_win.php:302 -#: ../../operation/agentes/stat_win.php:421 -#: ../../operation/agentes/exportdata.php:318 -#: ../../operation/agentes/interface_traffic_graph_win.php:181 -#: ../../mobile/operation/module_graph.php:461 -msgid "Begin date" -msgstr "Date de dĆ©but" +#: ../../enterprise/godmode/reporting/reporting_builder.advanced.php:97 +msgid "Page orientation" +msgstr "Orientation de la page" -#: ../../operation/agentes/graphs.php:222 -#: ../../operation/agentes/stat_win.php:278 -msgid "Show events" -msgstr "Afficher les Ć©vĆ©nements" +#: ../../enterprise/godmode/reporting/reporting_builder.advanced.php:105 +#: ../../include/functions_visual_map_editor.php:843 +#: ../../include/rest-api/models/VisualConsole/Items/BarsGraph.php:483 +msgid "Vertical" +msgstr "Vertical" -#: ../../operation/agentes/graphs.php:224 -#: ../../operation/agentes/stat_win.php:312 -msgid "Show alerts" -msgstr "Afficher les alertes" +#: ../../enterprise/godmode/reporting/reporting_builder.advanced.php:114 +#: ../../include/functions_visual_map_editor.php:844 +#: ../../include/rest-api/models/VisualConsole/Items/BarsGraph.php:482 +msgid "Horizontal" +msgstr "Horizontal" -#: ../../operation/agentes/graphs.php:224 -msgid "the combined graph does not show the alerts into this graph" -msgstr "Le graphique combinĆ© ne montre pas les alertes dans ce graphique" +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:112 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:215 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1725 +#: ../../enterprise/godmode/reporting/reporting_builder.template_list_item.php:258 +#: ../../godmode/reporting/reporting_builder.list_items.php:424 +#: ../../godmode/reporting/create_container.php:364 +#: ../../godmode/reporting/create_container.php:473 +#: ../../godmode/reporting/create_container.php:527 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1311 +msgid "Time lapse" +msgstr "Intervalle de temps" -#: ../../operation/agentes/graphs.php:226 -msgid "Show as one combined graph" -msgstr "Afficher sous forme de graphique combinĆ©" +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:313 +msgid "Order:" +msgstr "OrdreĀ :" -#: ../../operation/agentes/graphs.php:228 -msgid "several graphs for each module" -msgstr "Plusieurs graphiques pour chaque module" - -#: ../../operation/agentes/graphs.php:229 -msgid "One combined graph" -msgstr "Un graphique combinĆ©" - -#: ../../operation/agentes/graphs.php:233 -#: ../../godmode/netflow/nf_item_list.php:177 -msgid "Chart type" -msgstr "Type de graphique" - -#: ../../operation/agentes/graphs.php:237 ../../operation/agentes/graphs.php:413 -msgid "Area stack" -msgstr "Graphique de zone empilĆ©e" - -#: ../../operation/agentes/graphs.php:239 ../../operation/agentes/graphs.php:421 -msgid "Line stack" -msgstr "Graphique de ligne empilĆ©e" - -#: ../../operation/agentes/graphs.php:256 -msgid "Save as custom graph" -msgstr "Enregistrer comme graphique personnalisĆ©" - -#: ../../operation/agentes/graphs.php:269 -msgid "Filter graphs" -msgstr "Filtrer les graphiques" - -#: ../../operation/agentes/graphs.php:296 -msgid "There was an error loading the graph" -msgstr "Erreur de chargement du graphique" - -#: ../../operation/agentes/graphs.php:304 ../../operation/agentes/graphs.php:308 -msgid "Name custom graph" -msgstr "Nom du graphique personnalisĆ©" - -#: ../../operation/agentes/graphs.php:342 -#: ../../enterprise/views/ncm/agent/manage.php:259 -#: ../../enterprise/include/ajax/transactional.ajax.php:83 -#: ../../enterprise/godmode/reporting/mysql_builder.php:240 -#: ../../enterprise/godmode/reporting/reporting_builder.template_editor.php:109 -#: ../../extensions/insert_data.php:208 ../../godmode/setup/snmp_wizard.php:100 -#: ../../godmode/setup/gis_step_2.php:521 -#: ../../godmode/reporting/reporting_builder.main.php:45 -#: ../../godmode/reporting/visual_console_builder.data.php:229 -msgid "Save" -msgstr "Sauvegarder" - -#: ../../operation/agentes/graphs.php:354 -msgid "Save custom graph" -msgstr "Enregistrer le graphique personnalisĆ©" - -#: ../../operation/agentes/graphs.php:375 -msgid "Custom graph create from the tab graphs in the agent." -msgstr "" -"Graphique personnalisĆ© crĆ©Ć© Ć  partir de la section des graphiques de l'agent" - -#: ../../operation/agentes/estado_monitores.php:51 -msgid "Tag's information" -msgstr "Information des Ć©tiquettes" - -#: ../../operation/agentes/estado_monitores.php:109 -msgid "Relationship information" -msgstr "Information des relations" - -#: ../../operation/agentes/estado_monitores.php:160 -msgid "Non-initialized modules found." -msgstr "Modules non initialisĆ©s trouvĆ©s." - -#: ../../operation/agentes/estado_monitores.php:181 -msgid "List of modules" -msgstr "Liste de modules" - -#: ../../operation/agentes/estado_monitores.php:182 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:349 msgid "" -"To see the list of modules paginated, enable this option in the Styles " -"Configuration." +"Show a resume table with max, min, average of total modules on the report bottom:" msgstr "" -"Pour afficher la liste de modules paginĆ©s, activez cette option dans la " -"configuration de styles." +"Afficher un tableau rĆ©sumĆ© avec le maximum, le minimum et la moyenne de modules " +"totaux Ć  la fin du rapport :" -#: ../../operation/agentes/estado_monitores.php:518 -msgid "Status:" -msgstr "ƉtatĀ :" +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:369 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2680 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2772 +msgid "Show address instead module name" +msgstr "Afficher adresse au lieu du nom du module" -#: ../../operation/agentes/estado_monitores.php:524 -msgid "Not Normal" -msgstr "Pas normal" +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:370 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2681 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2773 +msgid "Show the main address of agent." +msgstr "Afficher l'adresse principale de l'agent" -#: ../../operation/agentes/estado_monitores.php:539 -#: ../../operation/agentes/alerts_status.functions.php:177 -msgid "Free text for search (*):" -msgstr "Texte libre pour la recherche (*):" +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:439 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2254 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2321 +#: ../../include/functions_reports.php:809 +msgid "SQL query" +msgstr "RequĆŖte SQL" -#: ../../operation/agentes/estado_monitores.php:540 -msgid "Search by module name, list matches." -msgstr "Rechercher par nom de module, concordances de listes" +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:463 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:402 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3041 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3210 +msgid "Failover mode" +msgstr "Mode de basculement" -#: ../../operation/agentes/estado_monitores.php:582 -#: ../../godmode/agentes/module_manager.php:192 -msgid "Show in hierachy mode" -msgstr "Affichage en mode hiĆ©rarchique" - -#: ../../operation/agentes/estado_monitores.php:602 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1955 -msgid "Reset" -msgstr "RĆ©initialiser" - -#: ../../operation/agentes/interface_view.functions.php:93 -#: ../../operation/agentes/interface_view.functions.php:131 -#: ../../operation/agentes/ver_agente.php:1410 -#: ../../enterprise/tools/ipam/ipam_vlan_wizard.php:53 -#: ../../enterprise/tools/ipam/ipam_vlan_wizard.php:410 -msgid "Interfaces" -msgstr "Interfaces" - -#: ../../operation/agentes/interface_view.functions.php:170 -#: ../../operation/agentes/interface_view.functions.php:171 -msgid "Interface filter" -msgstr "Filtre d'interface" - -#: ../../operation/agentes/interface_view.functions.php:489 -msgid "IfName" -msgstr "IfName" - -#: ../../operation/agentes/interface_view.functions.php:499 -msgid "IfSpeed" -msgstr "IfSpeed" - -#: ../../operation/agentes/interface_view.functions.php:507 -msgid "IfInOctets" -msgstr "IfInOctets" - -#: ../../operation/agentes/interface_view.functions.php:515 -msgid "IfOutOctets" -msgstr "IfOutOctets" - -#: ../../operation/agentes/interface_view.functions.php:523 -msgid "% Bandwidth usage (in)" -msgstr "% d'utilisation de la bande passante (entrĆ©e)" - -#: ../../operation/agentes/interface_view.functions.php:531 -msgid "% Bandwidth usage (out)" -msgstr "% d'utilisation de la bande passante (sortie)" - -#: ../../operation/agentes/interface_view.functions.php:539 -#: ../../include/functions_treeview.php:319 -#: ../../include/functions_reporting_html.php:90 -#: ../../include/functions_reporting_html.php:5529 -#: ../../enterprise/include/functions_reporting_pdf.php:1988 -msgid "Last data" -msgstr "DerniĆØres donnĆ©es" - -#: ../../operation/agentes/interface_view.functions.php:736 -msgid "No search parameters" -msgstr "Aucun paramĆØtre de recherche" - -#: ../../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 -#: ../../include/chart_generator.php:125 -#: ../../enterprise/operation/inventory/inventory.php:203 -msgid "There was a problem connecting with the node" -msgstr "ProblĆØme de connexion avec le nœud" - -#: ../../operation/agentes/stat_win.php:116 -#, php-format -msgid "%s Graph" -msgstr "Graphique %s" - -#: ../../operation/agentes/stat_win.php:149 -msgid "There was a problem locating the source of the graph" -msgstr "Erreur de repĆ©rage de la source du tableau" - -#: ../../operation/agentes/stat_win.php:267 -#: ../../operation/agentes/interface_traffic_graph_win.php:167 -msgid "Refresh time" -msgstr "Heure de rafraĆ®chissement" - -#: ../../operation/agentes/stat_win.php:297 -#, php-format +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:464 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:403 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3042 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3211 msgid "" -"'Show events' is disabled because this %s node is set to event replication." +"SLA calculation must be performed taking into account the failover modules " +"assigned to the primary module" msgstr "" -"Ā«Ā Afficher les Ć©vĆ©nementsĀ Ā» est dĆ©sactivĆ© car ce nœud %s est dĆ©fini sur la " -"rĆ©plication d'Ć©vĆ©nements." +"Le calcul du SLA doit ĆŖtre effectuĆ© en tenant compte des modules de basculement " +"affectĆ©s au module principal" -#: ../../operation/agentes/stat_win.php:320 -#: ../../operation/agentes/stat_win.php:431 -#: ../../operation/agentes/interface_traffic_graph_win.php:207 -msgid "Begin time" -msgstr "Heure de dĆ©but" +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:481 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:420 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3061 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3230 +msgid "Failover type" +msgstr "Type de basculement" -#: ../../operation/agentes/stat_win.php:330 -#: ../../mobile/operation/module_graph.php:444 -msgid "Show unknown graph" -msgstr "Afficher le graphique inconnu" +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:486 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:425 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3066 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3235 +msgid "Failover normal" +msgstr "Basculement normal" -#: ../../operation/agentes/stat_win.php:353 -msgid "Zoom" -msgstr "Zoom" +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:498 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:437 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3078 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3247 +msgid "Failover simple" +msgstr "Basculement simple" -#: ../../operation/agentes/stat_win.php:373 -#: ../../operation/agentes/interface_traffic_graph_win.php:227 -msgid "Show percentil" -msgstr "Afficher centile" +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:538 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2472 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2531 +msgid "Graph render" +msgstr "Rendu graphique" -#: ../../operation/agentes/stat_win.php:382 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:557 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:544 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2478 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2537 +msgid "Avg, max & min" +msgstr "Moyenne, max & min" + +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:545 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2479 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2538 +msgid "Max only" +msgstr "Max seulement" + +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:546 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2480 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2539 +msgid "Min only" +msgstr "Min seulement" + +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:547 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2481 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2540 +msgid "Avg only" +msgstr "Moy uniquement" + +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:558 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2623 #: ../../mobile/operation/module_graph.php:436 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2510 +#: ../../operation/agentes/stat_win.php:369 msgid "Time compare (Overlapped)" msgstr "Comparaison de temps (chevauchĆ©)" -#: ../../operation/agentes/stat_win.php:390 -#: ../../operation/agentes/stat_win.php:452 -#: ../../mobile/operation/module_graph.php:428 -msgid "Time compare (Separated)" -msgstr "Comparaison de temps (sĆ©parĆ©ment)" - -#: ../../operation/agentes/stat_win.php:399 -msgid "Show AVG/MAX/MIN data series in graph" -msgstr "Afficher les sĆ©ries de donnĆ©es MOY/MAX/MIN dans le graphique" - -#: ../../operation/agentes/stat_win.php:408 -#: ../../operation/agentes/interface_traffic_graph_win.php:238 -#: ../../godmode/reporting/create_container.php:437 -#: ../../godmode/reporting/create_container.php:494 -#: ../../godmode/reporting/create_container.php:589 -#: ../../godmode/reporting/graph_builder.main.php:285 -msgid "Show full scale graph (TIP)" -msgstr "Afficher graphique Ć  pleine Ć©chelle (TIP)" - -#: ../../operation/agentes/stat_win.php:410 -#: ../../operation/agentes/interface_traffic_graph_win.php:240 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2492 #: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:574 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2491 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2494 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2586 +msgid "Full resolution graph (TIP)" +msgstr "Graphique en pleine rĆ©solution (TIP)" + +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:575 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2495 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2587 +#: ../../operation/agentes/stat_win.php:397 +#: ../../operation/agentes/interface_traffic_graph_win.php:240 msgid "" -"TIP mode charts do not support average - maximum - minimum series, you can " -"only enable TIP or average, maximum or minimum series" +"TIP mode charts do not support average - maximum - minimum series, you can only " +"enable TIP or average, maximum or minimum series" msgstr "" "Les graphiques en mode TIP ne prennent pas en charge les sĆ©ries moyennes - " "maximales - minimales, vous ne pouvez activer que les sĆ©ries TIP ou moyennes, " "maximales ou minimales" -#: ../../operation/agentes/stat_win.php:464 -#: ../../operation/agentes/interface_traffic_graph_win.php:276 -#: ../../enterprise/views/cluster/view.php:441 -msgid "Reload" -msgstr "Recharger" +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:591 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2505 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2606 +msgid "Show threshold" +msgstr "Afficher le seuil" -#: ../../operation/agentes/stat_win.php:502 -#: ../../operation/agentes/interface_traffic_graph_win.php:306 -msgid "Graph configuration menu" -msgstr "Menu de configuration du graphique" +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:605 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2513 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2638 +#: ../../godmode/reporting/graph_builder.main.php:245 +#: ../../include/functions.php:4116 ../../include/functions.php:4124 +msgid "Percentil" +msgstr "Centile" -#: ../../operation/agentes/stat_win.php:504 -#: ../../operation/agentes/interface_traffic_graph_win.php:308 -#: ../../include/ajax/module.php:399 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:606 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2514 msgid "" -"In Pandora FMS, data is stored compressed. The data visualization in database, " -"charts or CSV exported data won't match, because is interpreted at runtime. " -"Please check 'Pandora FMS Engineering' chapter from documentation." +"If this option was checked, only adding in elements that type of modules support " +"this option." msgstr "" -"Dans Pandora FMS, les donnĆ©es sont stockĆ©es compressĆ©es. La visualisation des " -"donnĆ©es dans la base de donnĆ©es, les graphiques ou les donnĆ©es exportĆ©es CSV " -"ne correspondront pas, car elles sont interprĆ©tĆ©es au moment de l'exĆ©cution. " -"Veuillez consulter le chapitre Ā«Ā Pandora FMS IngĆ©nierieĀ Ā» de la documentation." +"Si vous cochez cette case, cette option sera possible que si vous ajoutez des " +"modules de ce type." -#: ../../operation/agentes/pandora_networkmap.php:139 -#: ../../operation/agentes/pandora_networkmap.php:374 -msgid "Succesfully created" -msgstr "CrĆ©Ć©e correctement" +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:620 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2795 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2901 +msgid "Show Summary group" +msgstr "Afficher groupe rĆ©capitulatif" -#: ../../operation/agentes/pandora_networkmap.php:140 -#: ../../operation/agentes/pandora_networkmap.php:375 -#: ../../include/functions_alerts.php:2748 -#: ../../include/functions_planned_downtimes.php:112 -#: ../../include/functions_planned_downtimes.php:827 -#: ../../enterprise/tools/ipam/ipam_network_location_config.php:51 -#: ../../enterprise/tools/ipam/ipam_action.php:153 -#: ../../enterprise/operation/agentes/transactional_map.php:135 -#: ../../enterprise/include/ajax/servers.ajax.php:198 -#: ../../enterprise/godmode/setup/setup_metaconsole.php:126 -#: ../../enterprise/godmode/servers/credential_boxes_satellite.php:81 -#: ../../enterprise/godmode/servers/manage_export.php:112 -#: ../../enterprise/godmode/servers/manage_export.php:119 -#: ../../enterprise/godmode/modules/local_components.php:142 -#: ../../enterprise/godmode/modules/local_components.php:318 -#: ../../enterprise/godmode/reporting/reporting_builder.template_editor.php:48 -#: ../../enterprise/godmode/alerts/alert_inventory_builder.php:77 -#: ../../enterprise/godmode/policies/policies.php:170 -#: ../../enterprise/godmode/policies/policy_external_alerts.php:124 -#: ../../enterprise/godmode/policies/policy_external_alerts.php:127 -#: ../../godmode/setup/news.php:67 ../../godmode/setup/gis.php:49 -#: ../../godmode/modules/manage_network_components.php:199 -#: ../../godmode/modules/manage_network_components.php:427 -#: ../../godmode/modules/manage_nc_groups.php:85 -#: ../../godmode/reporting/reporting_builder.item_editor.php:5715 -#: ../../godmode/agentes/configurar_agente.php:351 -#: ../../godmode/agentes/configurar_agente.php:876 -#: ../../godmode/agentes/planned_downtime.editor.php:406 -#: ../../godmode/alerts/configure_alert_template.php:192 -#: ../../godmode/alerts/configure_alert_template.php:527 -#: ../../godmode/alerts/alert_commands.php:559 -#: ../../godmode/alerts/alert_list.php:165 -#: ../../godmode/users/configure_user.php:475 -msgid "Could not be created" -msgstr "Erreur de crĆ©ation" - -#: ../../operation/agentes/pandora_networkmap.php:215 -#: ../../operation/agentes/pandora_networkmap.php:507 -msgid "Succesfully updated" -msgstr "Mise Ć  jour correctement" - -#: ../../operation/agentes/pandora_networkmap.php:532 -msgid "Succesfully duplicate" -msgstr "DupliquĆ©e correctement" - -#: ../../operation/agentes/pandora_networkmap.php:533 -#: ../../enterprise/godmode/policies/policy_modules.php:1412 -msgid "Could not be duplicated" -msgstr "Duplication impossible" - -#: ../../operation/agentes/pandora_networkmap.php:546 -msgid "Succesfully deleted" -msgstr "SupprimĆ©e correctement" - -#: ../../operation/agentes/pandora_networkmap.php:656 -msgid "List of network maps" -msgstr "Liste des cartes du rĆ©seau" - -#: ../../operation/agentes/pandora_networkmap.php:669 -#: ../../operation/agentes/pandora_networkmap.editor.php:218 -#: ../../operation/agentes/pandora_networkmap.view.php:2230 -#: ../../enterprise/godmode/agentes/pandora_networkmap_empty.editor.php:106 -#: ../../godmode/agentes/pandora_networkmap_empty.editor.php:108 -msgid "Networkmap" -msgstr "Carte de rĆ©seau" - -#: ../../operation/agentes/pandora_networkmap.php:708 -#: ../../include/functions_reporting_html.php:5638 -#: ../../enterprise/views/cluster/list.php:62 -msgid "Nodes" -msgstr "Nœuds" - -#: ../../operation/agentes/pandora_networkmap.php:776 -msgid "Empty map" -msgstr "Carte vide" - -#: ../../operation/agentes/pandora_networkmap.php:778 -#: ../../include/functions_reporting.php:1060 -#: ../../include/functions_reporting.php:8930 ../../include/functions_maps.php:50 -#: ../../enterprise/include/functions_reporting.php:2535 -#: ../../enterprise/include/functions_reporting.php:3479 -#: ../../enterprise/include/functions_reporting.php:4454 -#: ../../enterprise/godmode/services/services.elements.php:99 -msgid "Dynamic" -msgstr "Dynamique" - -#: ../../operation/agentes/pandora_networkmap.php:780 -msgid "Pending to generate" -msgstr "En attente de gĆ©nĆ©rer" - -#: ../../operation/agentes/pandora_networkmap.php:811 -msgid "There are no maps defined." -msgstr "Aucune carte dĆ©finie" - -#: ../../operation/agentes/pandora_networkmap.php:818 -msgid "Create network map" -msgstr "CrĆ©er une carte de rĆ©seau" - -#: ../../operation/agentes/pandora_networkmap.php:825 -msgid "Create empty network map" -msgstr "CrĆ©er une carte rĆ©seau vide" - -#: ../../operation/agentes/realtime_win.php:85 -#, php-format -msgid "%s Realtime Module Graph" -msgstr "%sĀ Graphique du module en temps rĆ©el" - -#: ../../operation/agentes/realtime_win.php:112 -msgid "Realtime extension is not enabled." -msgstr "L'extension en temps rĆ©el n'est pas activĆ©e." - -#: ../../operation/agentes/log_sources_status.php:57 -#: ../../godmode/wizards/DiscoveryTaskList.class.php:1289 -#: ../../godmode/wizards/DiscoveryTaskList.class.php:1853 -msgid "Review" -msgstr "RĆ©viser" - -#: ../../operation/agentes/log_sources_status.php:75 -msgid "Review in log viewer" -msgstr "RĆ©viser dans la visionneuse de journaux" - -#: ../../operation/agentes/log_sources_status.php:98 -msgid "No log sources found" -msgstr "Aucune source de journal trouvĆ©e" - -#: ../../operation/agentes/log_sources_status.php:117 -msgid "Log sources status" -msgstr "Ɖtat des sources de journal" - -#: ../../operation/agentes/exportdata.csv.php:66 -#: ../../operation/agentes/exportdata.php:71 -#: ../../operation/agentes/exportdata.excel.php:66 -msgid "Invalid time specified" -msgstr "Temps spĆ©cifiĆ© non valide" - -#: ../../operation/agentes/exportdata.csv.php:178 -#: ../../operation/agentes/exportdata.php:209 -#: ../../operation/agentes/exportdata.excel.php:161 -msgid "No modules specified" -msgstr "Aucun module spĆ©cifiĆ©" - -#: ../../operation/agentes/exportdata.php:248 -#: ../../enterprise/godmode/agentes/manage_config_remote.php:153 -msgid "Source agent" -msgstr "Agent source" - -#: ../../operation/agentes/exportdata.php:283 -msgid "No modules of type string. You can not calculate their average" -msgstr "Aucun module de type chaĆ®ne. Vous ne pouvez pas calculer leur moyenne." - -#: ../../operation/agentes/exportdata.php:375 -msgid "Export type" -msgstr "Type d'exportation" - -#: ../../operation/agentes/exportdata.php:378 -#: ../../include/functions_netflow.php:1184 -msgid "Data table" -msgstr "Tableau de donnĆ©es" - -#: ../../operation/agentes/exportdata.php:379 -#: ../../enterprise/operation/reporting/custom_reporting.php:18 -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:505 -#: ../../extensions/insert_data.php:199 -msgid "CSV" -msgstr "CSV" - -#: ../../operation/agentes/exportdata.php:380 -msgid "MS Excel" -msgstr "MS Excel" - -#: ../../operation/agentes/exportdata.php:381 -msgid "Average per hour/day" -msgstr "Moyenne par heure/jour" - -#: ../../operation/agentes/exportdata.php:389 -#: ../../enterprise/include/functions_reporting.php:8135 -#: ../../enterprise/extensions/resource_exportation/functions.php:21 -#: ../../extensions/resource_exportation.php:435 -#: ../../extensions/resource_exportation.php:438 -msgid "Export" -msgstr "Exporter" - -#: ../../operation/agentes/tactical.php:201 -msgid "Report of State" -msgstr "Rapport d'Ć©tat" - -#: ../../operation/agentes/tactical.php:228 -#: ../../include/functions_events.php:2589 -msgid "Latest events" -msgstr "Derniers Ć©vĆ©nements" - -#: ../../operation/agentes/tactical.php:245 -#: ../../include/functions_events.php:2732 -msgid "Event graph" -msgstr "Graphique de commandes" - -#: ../../operation/agentes/tactical.php:248 -#: ../../include/functions_events.php:2734 -msgid "Event graph by agent" -msgstr "Graphique d'Ć©vĆ©nements par l'agent" +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:684 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2881 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2987 +msgid "Event Status" +msgstr "Ɖtat de l'Ć©vĆ©nement" +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:710 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2908 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3048 #: ../../operation/agentes/tactical.php:254 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2897 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:695 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2935 msgid "Event graphs" msgstr "Graphiques d'Ć©vĆ©nements" -#: ../../operation/agentes/alerts_status.functions.php:50 -msgid "Alert(s) validated" -msgstr "Alertes validĆ©es" +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:714 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2912 +msgid "By agent" +msgstr "Par agent" -#: ../../operation/agentes/alerts_status.functions.php:51 -msgid "Error processing alert(s)" -msgstr "Erreur de traitement des alertes" +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:724 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2922 +msgid "By user validator" +msgstr "Par utilisateur validateur" -#: ../../operation/agentes/alerts_status.functions.php:93 -#: ../../mobile/operation/alerts.php:64 -#: ../../godmode/alerts/alert_list.list.php:135 -msgid "All (Enabled)" -msgstr "Tous (activĆ©s)" +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:734 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2932 +msgid "By criticity" +msgstr "Par niveau de sĆ©vĆ©ritĆ©" -#: ../../operation/agentes/alerts_status.functions.php:101 -#: ../../include/functions_ui.php:1155 -#: ../../enterprise/operation/agentes/policy_view.php:292 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3275 -#: ../../mobile/operation/alerts.php:73 -#: ../../godmode/alerts/alert_list.list.php:143 -msgid "Standby on" -msgstr "Mode veille actif" +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:744 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2942 +msgid "Validated vs unvalidated" +msgstr "ValidĆ©s / non validĆ©s" -#: ../../operation/agentes/alerts_status.functions.php:102 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3269 -#: ../../mobile/operation/alerts.php:74 -#: ../../godmode/alerts/alert_list.list.php:144 -msgid "Standby off" -msgstr "Mode veille inactif" +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:763 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1806 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1395 +msgid "Data range" +msgstr "Gamme de donnĆ©es" -#: ../../operation/agentes/alerts_status.functions.php:117 -#: ../../operation/agentes/datos_agente.php:211 -msgid "Free text for search" -msgstr "Texte libre pour recherche" +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:788 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1787 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1376 +msgid "Projection period" +msgstr "PĆ©riode de projection" -#: ../../operation/agentes/alerts_status.functions.php:118 -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" +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:799 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2218 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2348 +msgid "Serialized header" +msgstr "En-tĆŖte sĆ©rialisĆ©" -#: ../../operation/agentes/alerts_status.functions.php:129 -msgid "No actions" -msgstr "Aucune action" +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:799 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2219 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2349 +msgid "The separator character is |" +msgstr "Le caractĆØre sĆ©parateur est |" -#: ../../operation/agentes/alerts_status.functions.php:178 -msgid "Filter by module name, template name or action name" -msgstr "Filtrer par nom de module, nom de modĆØle ou nom d'action" +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:803 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2286 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2385 +msgid "Field separator" +msgstr "Champ sĆ©parateur" -#: ../../operation/agentes/custom_fields.php:24 -#: ../../operation/agentes/estado_generalagente.php:62 -#: ../../operation/agentes/agent_fields.php:24 -#: ../../include/functions_treeview.php:564 -msgid "There was a problem loading agent" -msgstr "Erreur de chargement de l'agent" +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:803 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2287 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2386 +msgid "Separator for different fields in the serialized text chain" +msgstr "SĆ©parateur pour des champs diffĆ©rents dans la chaĆ®ne de texte en sĆ©rie" -#: ../../operation/agentes/custom_fields.php:59 -msgid "No fields defined" -msgstr "Aucun champ dĆ©fini" +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:807 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2307 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2406 +msgid "Line separator" +msgstr "SĆ©parateur de ligne" -#: ../../operation/agentes/custom_fields.php:65 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2658 -#: ../../godmode/agentes/fields_manager.php:119 -#: ../../godmode/alerts/alert_view.php:441 -#: ../../godmode/alerts/alert_view.php:564 -msgid "Field" -msgstr "Champ" - -#: ../../operation/agentes/custom_fields.php:67 -#: ../../godmode/agentes/configure_field.php:95 -#: ../../godmode/agentes/fields_manager.php:120 -msgid "Display on front" -msgstr "Afficher Ć  l'avant" - -#: ../../operation/agentes/custom_fields.php:67 -#: ../../godmode/agentes/configure_field.php:96 -#: ../../godmode/agentes/fields_manager.php:120 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:807 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2308 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2407 msgid "" -"The fields with display on front enabled will be displayed into the agent " -"details" +"Separator in different lines (composed by fields) of the serialized text chain" msgstr "" -"Les champs avec l'affichage Ć  l'avant activĆ© apparaĆ®tront dans les dĆ©tails des " -"agents" +"SĆ©parateur en diffĆ©rentes lignes (composĆ©es par des champs) de la chaĆ®ne de texte " +"en sĆ©rie" -#: ../../operation/agentes/custom_fields.php:90 -#: ../../operation/agentes/agent_fields.php:47 -msgid "empty" -msgstr "vide" +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:845 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3361 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3397 +msgid "Uncompress module" +msgstr "DĆ©compresser le module" -#: ../../operation/agentes/datos_agente.php:173 -msgid "Received data from" -msgstr "DonnĆ©es reƧues de" +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:846 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3362 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3398 +msgid "Use uncompressed module data." +msgstr "Utiliser des donnĆ©es de module non compressĆ©es." -#: ../../operation/agentes/datos_agente.php:180 -msgid "Main database" -msgstr "Base de donnĆ©es principale" +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:911 +#: ../../enterprise/include/functions_massive.php:54 +#: ../../godmode/agentes/module_manager.php:274 +#: ../../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 +msgid "No modules selected" +msgstr "Aucun module sĆ©lectionnĆ©" -#: ../../operation/agentes/datos_agente.php:180 -#: ../../enterprise/include/functions_setup.php:67 -#: ../../enterprise/include/functions_setup.php:119 -#: ../../enterprise/godmode/menu.php:148 -msgid "History database" -msgstr "Base de DonnĆ©es de l'historique" +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:198 +#: ../../enterprise/include/functions_reporting.php:71 +msgid "Wizard SLA" +msgstr "Assistant SLA" -#: ../../operation/agentes/datos_agente.php:181 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:222 +#: ../../enterprise/include/functions_reporting.php:2372 +#: ../../include/functions_reports.php:704 +msgid "Monthly S.L.A." +msgstr "SLA mensuel" + +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:223 +#: ../../enterprise/include/functions_reporting.php:3324 +#: ../../include/functions_reports.php:708 +msgid "Weekly S.L.A." +msgstr "SLA hebdomadaire" + +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:224 +msgid "hourly S.L.A." +msgstr "SLA par heures" + +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:225 +msgid "Availability Graph S.L.A." +msgstr "Graphique de disponibilitĆ© SLA" + +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:226 +#: ../../enterprise/include/functions_reporting.php:5567 +#: ../../include/functions_reports.php:718 +msgid "Services S.L.A." +msgstr "SLA de services" + +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:368 +msgid "SLA min value" +msgstr "Valeur minimale de SLA" + +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:368 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:374 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:380 +msgid "Enter possible range of values in SLA." +msgstr "Entrez la plage de valeurs possible dans SLA." + +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:369 +msgid "SLA min Value" +msgstr "Valeur minimale de SLA" + +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:374 +msgid "SLA max value" +msgstr "Valeur maximale de SLA" + +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:375 +msgid "SLA max Value" +msgstr "Valeur maximale de SLA" + +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:380 +msgid "SLA Limit %" +msgstr "Limite % SLA" + +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:381 +msgid "SLA Limit Value" +msgstr "Valeur limite de SLA" + +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:386 +msgid "Dynamic SLA" +msgstr "SLA dynamique" + +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:393 +msgid "Inverse SLA" +msgstr "Inverse SLA" + +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:450 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2976 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3155 +msgid "SLA items sorted by fulfillment value" +msgstr "ƉlĆ©ments SLA classĆ©s par valeur d'accomplissement" + +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:455 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1819 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1408 +msgid "Only display wrong SLAs" +msgstr "Affiche seulement des SLA erronĆ©s" + +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:467 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3094 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3263 +#: ../../godmode/wizards/DiscoveryTaskList.class.php:1417 +#: ../../include/functions_reporting_html.php:4624 +#: ../../include/functions_reporting_html.php:4895 +#: ../../include/functions_reporting_html.php:5032 +#: ../../include/functions_netflow.php:1183 +#: ../../include/lib/Dashboard/Widgets/tactical.php:299 +msgid "Summary" +msgstr "RĆ©sumĆ©" + +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:534 +msgid "Please introduce a SLA max value higher than the SLA min value" +msgstr "Veuillez introduire une valeur SLA max supĆ©rieure Ć  la valeur minimale SLA" + +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:659 +msgid "Dynamic SLA can not be Inverse" +msgstr "Le SLA dynamique ne peut pas ĆŖtre inverse" + +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:664 +msgid "Check Dynamic SLA or introduce a max and min SLA value" +msgstr "" +"VĆ©rifier le SLA dynamique ou introduiser une valeur SLA maximale et minimale" + +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:668 +msgid "SLA Limit value is needed" +msgstr "La valeur limite SLA est nĆ©cessaire" + +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:151 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:218 +#: ../../enterprise/include/functions_reporting.php:8027 +#: ../../enterprise/include/functions_reporting.php:8093 +#: ../../godmode/reporting/reporting_builder.php:3581 +#: ../../operation/reporting/reporting_viewer.php:157 +msgid "Item editor" +msgstr "Ɖditeur d'Ć©lĆ©ments" + +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:162 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:205 +#: ../../godmode/reporting/reporting_builder.php:3577 +#: ../../operation/reporting/reporting_viewer.php:148 +msgid "List items" +msgstr "Liste d'Ć©lĆ©ments" + +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:181 +msgid "List templates" +msgstr "Liste de modĆØles" + +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:289 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:323 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:357 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:391 +#: ../../godmode/reporting/reporting_builder.php:596 +#: ../../godmode/reporting/reporting_builder.php:3539 +#: ../../godmode/reporting/reporting_builder.php:3653 +#: ../../godmode/reporting/reporting_builder.php:3682 +#: ../../operation/reporting/reporting_viewer.php:233 +msgid "Custom reports" +msgstr "Rapports personnalisĆ©s" + +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:501 +#: ../../godmode/reporting/reporting_builder.php:910 +#: ../../operation/search_reports.php:44 ../../operation/search_reports.php:60 +#: ../../operation/reporting/custom_reporting.php:36 +msgid "HTML" +msgstr "HTML" + +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:502 +#: ../../godmode/reporting/reporting_builder.php:911 +#: ../../operation/search_reports.php:45 ../../operation/search_reports.php:61 +#: ../../operation/reporting/custom_reporting.php:37 +msgid "XML" +msgstr "XML" + +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:503 +#: ../../enterprise/operation/reporting/custom_reporting.php:14 +msgid "PDF" +msgstr "PDF" + +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:504 +#: ../../enterprise/operation/reporting/custom_reporting.php:16 +msgid "JSON" +msgstr "JSON" + +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:505 +#: ../../enterprise/operation/reporting/custom_reporting.php:18 +#: ../../extensions/insert_data.php:199 ../../operation/agentes/exportdata.php:379 +msgid "CSV" +msgstr "CSV" + +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:565 +#: ../../godmode/reporting/reporting_builder.php:1053 +msgid "HTML view" +msgstr "Affichage HTML" + +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:573 +#: ../../godmode/reporting/reporting_builder.php:1063 +msgid "Export to XML" +msgstr "Exporter en XML" + +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:581 +#: ../../enterprise/operation/reporting/custom_reporting.php:64 +#: ../../include/class/Diagnostics.class.php:144 +msgid "Export to PDF" +msgstr "Exporter au format PDF" + +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:589 +#: ../../enterprise/operation/reporting/custom_reporting.php:72 +msgid "Export to JSON" +msgstr "Exporter au format JSON" + +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:661 +msgid "You haven't created templates yet." +msgstr "Vous n'avez pas encore crĆ©Ć© de modĆØles." + +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:681 +msgid "Generate a dynamic report" +msgstr "GĆ©nĆ©rer un rapport dynamique" + +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:759 +#: ../../include/functions_reports.php:1380 +msgid "Period " +msgstr "PĆ©riode " + +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:765 +msgid "Set start and end date" +msgstr "DĆ©finir les dates de dĆ©but et de fin" + +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:778 +#: ../../include/ajax/module.php:250 ../../operation/agentes/datos_agente.php:198 +msgid "Timestamp from:" +msgstr "Horodatage Ć  partir de :" + +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:796 +#: ../../include/ajax/module.php:270 ../../operation/agentes/datos_agente.php:204 +msgid "Timestamp to:" +msgstr "Horodatage jusqu'Ć  :" + +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:815 +msgid "Monthly SLA period" +msgstr "PĆ©riode SLA mensuelle" + +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:815 +msgid "This field only applies in case of Monthly SLA item." +msgstr "Ce champ ne sā€™applique quā€™en cas dā€™Ć©lĆ©ment SLA mensuel." + +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:857 +#: ../../enterprise/include/class/Omnishell.class.php:867 +msgid "Add agents" +msgstr "Ajouter des agents" + +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:865 +msgid "Undo agents" +msgstr "Annuler les agents" + +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:902 +msgid "RegEx agent filter" +msgstr "Filtre dā€™agent RegEx" + +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:918 +msgid "Generate" +msgstr "GĆ©nĆ©rer" + +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:1312 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:1334 +msgid "Please set agent or agent regex distinct than " +msgstr "Veuillez dĆ©finir agent ou agent regex distinct de " + +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:1342 +msgid "It is not a regular expression " +msgstr "Ce nā€™est pas une expression rĆ©guliĆØre " + +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:1344 +msgid "No agent matches regular expression " +msgstr "Aucun agent ne correspond Ć  lā€™expression rĆ©guliĆØre " + +#: ../../enterprise/godmode/reporting/graph_template_item_editor.php:65 +msgid "Graph template item editor" +msgstr "Ɖditeur dā€™Ć©lĆ©ments de modĆØle de graphique" + +#: ../../enterprise/godmode/reporting/graph_template_item_editor.php:187 +#: ../../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:3981 +msgid "Weight" +msgstr "Poids" + +#: ../../enterprise/godmode/reporting/graph_template_item_editor.php:189 +#: ../../enterprise/godmode/reporting/graph_template_item_editor.php:244 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3515 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3590 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3746 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3817 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:4251 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:4396 +#: ../../enterprise/operation/log/log_viewer.php:477 +msgid "Exact match" +msgstr "Concordance exacte" + +#: ../../enterprise/godmode/reporting/graph_template_item_editor.php:206 +msgid "Decrease Weight" +msgstr "Diminuer le poids" + +#: ../../enterprise/godmode/reporting/graph_template_item_editor.php:206 +msgid "Increase Weight" +msgstr "Augmenter le poids" + +#: ../../enterprise/godmode/reporting/visual_console_template.php:141 +#: ../../enterprise/godmode/reporting/visual_console_template.php:157 +msgid "visual console has not been selected" +msgstr "La console visuelle nā€™a pas Ć©tĆ© sĆ©lectionnĆ©" + +#: ../../enterprise/godmode/reporting/visual_console_template.php:147 +msgid "Error. Error created template" +msgstr "Erreur. ModĆØle crĆ©Ć© par erreur" + +#: ../../enterprise/godmode/reporting/visual_console_template.php:149 +msgid "Error. Template name cannot be repeated" +msgstr "Erreur. Le nom du modĆØle ne peut pas ĆŖtre rĆ©pĆ©tĆ©" + +#: ../../enterprise/godmode/reporting/visual_console_template.php:151 +msgid "Successfully created template" +msgstr "ModĆØle crĆ©Ć© correctement" + +#: ../../enterprise/godmode/reporting/visual_console_template.php:163 +msgid "Error. Error delete template" +msgstr "Erreur. Erreur de suppression du modĆØle" + +#: ../../enterprise/godmode/reporting/visual_console_template.php:165 +msgid "Successfully delete template" +msgstr "Supprimer le modĆØle correctement" + +#: ../../enterprise/godmode/reporting/visual_console_template.php:187 +msgid "Create From" +msgstr "CrĆ©er Ć  partir de" + +#: ../../enterprise/godmode/reporting/visual_console_template.php:198 +msgid "There is not any visual console created. Please, create one firstly." +msgstr "Aucune console visuelle nā€™est crĆ©Ć©e. Sā€™il vous plaĆ®t, crĆ©ez-en un dā€™abord." + +#: ../../enterprise/godmode/reporting/visual_console_template.php:260 +msgid "Create New Template" +msgstr "CrĆ©er Nouveau ModĆØle" + +#: ../../enterprise/godmode/reporting/mysql_builder.php:66 +msgid "Custom MySQL template builder" +msgstr "GĆ©nĆ©rateur de modĆØles MySQL personnalisĆ©s" + +#: ../../enterprise/godmode/reporting/mysql_builder.php:79 +#: ../../enterprise/godmode/reporting/mysql_builder.php:206 +#: ../../enterprise/operation/menu.php:160 +msgid "Custom SQL" +msgstr "SQL personnalisĆ©" + +#: ../../enterprise/godmode/reporting/mysql_builder.php:117 +msgid "Create custom SQL" +msgstr "CrĆ©er un SQL personnalisĆ©" + +#: ../../enterprise/godmode/reporting/mysql_builder.php:128 +#: ../../enterprise/godmode/reporting/mysql_builder.php:146 +msgid "Create new custom" +msgstr "CrĆ©er un nouvel Ć©lĆ©ment personnalisĆ©" + +#: ../../enterprise/godmode/reporting/mysql_builder.php:187 +msgid "List of custom MySQL templates" +msgstr "Liste des modĆØles MySQL personnalisĆ©s" + +#: ../../enterprise/godmode/reporting/mysql_builder.php:193 +msgid "Template builder" +msgstr "GĆ©nĆ©rateur de modĆØles" + +#: ../../enterprise/godmode/reporting/mysql_builder.php:212 +msgid "Successfully operation" +msgstr "OpĆ©ration complĆ©tĆ©e correctement" + +#: ../../enterprise/godmode/reporting/mysql_builder.php:212 +msgid "Could not be operation" +msgstr "Impossible de complĆ©ter l'opĆ©ration" + +#: ../../enterprise/godmode/reporting/mysql_builder.php:214 +msgid "Without changes" +msgstr "Sans changements" + +#: ../../enterprise/godmode/reporting/mysql_builder.php:214 +#: ../../operation/users/user_edit.php:192 +msgid "No changes have been made" +msgstr "Aucune modification nā€™a Ć©tĆ© apportĆ©e" + +#: ../../enterprise/godmode/reporting/mysql_builder.php:232 +#: ../../enterprise/include/functions_reporting_csv.php:1084 +#: ../../include/functions_reporting.php:7031 +msgid "SQL" +msgstr "SQL" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1627 +#: ../../godmode/reporting/reporting_builder.php:3704 +msgid "Successfull action" +msgstr "Action rĆ©ussie" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1628 +#: ../../godmode/servers/modificar_server.php:157 +#: ../../godmode/servers/modificar_server.php:168 +msgid "Unsuccessfull action" +msgstr "Action Ć©chouĆ©e" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1645 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1025 +msgid "Item Editor" +msgstr "Ɖditeur d'Ć©lĆ©ments" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1833 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1422 +msgid "Current month" +msgstr "Mois en cours" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1843 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1438 +msgid "Working time" +msgstr "Temps de travail" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1908 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1504 +msgid "Time from" +msgstr "Temps depuis" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1926 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1522 +msgid "Time to" +msgstr "Temps jusqu'Ć " + +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1944 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1540 +msgid "Show 24x7 item" +msgstr "Afficher lā€™Ć©lĆ©ment 24/7" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1974 +msgid "Select server" +msgstr "SĆ©lectionner un serveur" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1988 +#: ../../godmode/reporting/reporting_builder.item_editor.php:193 +msgid "Local metaconsole" +msgstr "MĆ©taconsole locale" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2035 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1148 +#: ../../include/lib/Dashboard/Widgets/top_n.php:207 msgid "" -"Switch between the main database and the history database to retrieve module " -"data" +"Case insensitive regular expression for agent name. For example: Network.* will " +"match with the following agent names: network_agent1, NetworK CHECKS" msgstr "" -"Changez entre la base de donnĆ©es principale et la base de donnĆ©es de " -"l'historique pour rĆ©cupĆ©rer les donnĆ©es du module." +"Expression rĆ©guliĆØre non sensible Ć  la casse pour le nom de l'agent. Par " +"exemple : Network.* concordera avec les noms d'agents suivants : network_agent1, " +"NetworK CHECKS" -#: ../../operation/agentes/datos_agente.php:194 ../../include/ajax/module.php:223 -msgid "Choose a time from now" -msgstr "Choisir un temps Ć  partir de maintenant" - -#: ../../operation/agentes/datos_agente.php:197 ../../include/ajax/module.php:249 -msgid "Specify time range" -msgstr "SpĆ©cifier l'intervalle de temps" - -#: ../../operation/agentes/datos_agente.php:295 ../../include/ajax/module.php:560 -#: ../../godmode/reporting/map_builder.php:452 -#: ../../godmode/reporting/map_builder.php:469 -#: ../../godmode/agentes/module_manager.php:794 -msgid "No available data to show" -msgstr "Aucune donnĆ©e disponible" - -#: ../../operation/agentes/estado_agente.php:242 -msgid "Sucessfully deleted agent" -msgstr "Agent supprimĆ© correctement" - -#: ../../operation/agentes/estado_agente.php:244 -msgid "There was an error message deleting the agent" -msgstr "Message d'erreur lors de la suppression de l'agent" - -#: ../../operation/agentes/estado_agente.php:285 -msgid "Search in custom fields" -msgstr "Rechercher dans les champs personnalisĆ©s" - -#: ../../operation/agentes/estado_agente.php:898 -#: ../../enterprise/operation/agentes/tag_view.php:647 -msgid "Remote config" -msgstr "Configuration Ć  distance" - -#: ../../operation/agentes/pandora_networkmap.editor.php:205 -msgid "Network maps editor" -msgstr "Ɖditeur de cartes rĆ©seau" - -#: ../../operation/agentes/pandora_networkmap.editor.php:256 -#: ../../operation/agentes/pandora_networkmap.view.php:2236 -#: ../../enterprise/godmode/agentes/pandora_networkmap_empty.editor.php:113 -#: ../../godmode/agentes/pandora_networkmap_empty.editor.php:115 -msgid "Not found networkmap." -msgstr "Aucune carte de rĆ©seau retrouvĆ©e" - -#: ../../operation/agentes/pandora_networkmap.editor.php:311 -#: ../../operation/agentes/pandora_networkmap.view.php:106 -#: ../../enterprise/extensions/vmware/vmware_view.php:1758 -#: ../../enterprise/godmode/agentes/pandora_networkmap_empty.editor.php:152 -#: ../../godmode/agentes/pandora_networkmap_empty.editor.php:154 -msgid "Node radius" -msgstr "Rayon des nœuds" - -#: ../../operation/agentes/pandora_networkmap.editor.php:324 -#: ../../operation/agentes/pandora_networkmap.view.php:127 -msgid "Position X" -msgstr "Position X" - -#: ../../operation/agentes/pandora_networkmap.editor.php:326 -#: ../../operation/agentes/pandora_networkmap.view.php:129 -msgid "Position Y" -msgstr "Position Y" - -#: ../../operation/agentes/pandora_networkmap.editor.php:329 -#: ../../operation/agentes/pandora_networkmap.view.php:132 -msgid "Zoom scale" -msgstr "Ɖchelle de zoom" - -#: ../../operation/agentes/pandora_networkmap.editor.php:334 -#: ../../operation/agentes/pandora_networkmap.view.php:134 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2059 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3643 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3875 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1171 msgid "" -"Introduce zoom level. 1 = Highest resolution. Figures may include decimals" +"Case insensitive regular expression or string for module name. For example: if " +"you use this field with \"Module exact match\" enabled then this field has to be " +"fulfilled with the literally string of the module name, if not you can use a " +"regular expression. Example: .*usage.* will match: cpu_usage, vram usage in " +"matchine 1." msgstr "" -"Introduire le niveau de zoom. 1 = RĆ©solution maximale. Les chiffres peuvent " -"inclure des dĆ©cimales." +"Expression rĆ©guliĆØre ou chaĆ®ne non sensible Ć  la casse pour le nom du module. Par " +"exemple : si vous utilisez ce champ avec Ā« Concordance exacte de module Ā» " +"activĆ©e, alors ce champ doit ĆŖtre rempli avec une chaĆ®ne littĆ©rale du nom du " +"module. Sinon, vous pouvez utiliser une expression rĆ©guliĆØre. Par exemple : ." +"*usage.* concordera avec : cpu_usage, vram usage dans la machine 1." -#: ../../operation/agentes/pandora_networkmap.editor.php:337 -#: ../../operation/agentes/pandora_networkmap.view.php:137 -#: ../../include/functions_groups.php:107 -msgid "Discovery task" -msgstr "TĆ¢che de dĆ©couverte" +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2081 +msgid "Module exact match" +msgstr "Concordance exacte de module" -#: ../../operation/agentes/pandora_networkmap.editor.php:337 -#: ../../operation/agentes/pandora_networkmap.view.php:137 -msgid "CIDR IP mask" -msgstr "Masque IP du CIDR" +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2082 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3575 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3651 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3799 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3882 +msgid "Check it if you want to match module name literally" +msgstr "Cochez si vous voulez faire correspondre le nom du module littĆ©ralement." -#: ../../operation/agentes/pandora_networkmap.editor.php:339 -#: ../../operation/agentes/pandora_networkmap.view.php:164 -msgid "Source from recon task" -msgstr "Source de la tĆ¢che de reconnaissance" +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2098 +msgid "Case insensitive regular expression or string for templates name." +msgstr "" +"Expression rĆ©guliĆØre ou chaĆ®ne insensible Ć  la casse pour le nom des modĆØles." -#: ../../operation/agentes/pandora_networkmap.editor.php:341 -#: ../../operation/agentes/pandora_networkmap.view.php:166 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2121 +msgid "Case insensitive regular expression or string for actions name." +msgstr "" +"Expression rĆ©guliĆØre ou chaĆ®ne insensible Ć  la casse pour le nom des actions." + +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2143 +msgid "Hide items without data" +msgstr "Masquer des Ć©lĆ©ments sans donnĆ©es" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2144 +msgid "Check it if you want not show items without data" +msgstr "Cochez-le si vous ne souhaitez pas afficher les Ć©lĆ©ments sans donnĆ©es" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2157 +#: ../../godmode/reporting/create_container.php:480 +#: ../../godmode/reporting/create_container.php:624 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2189 +#: ../../godmode/reporting/visual_console_builder.elements.php:105 +#: ../../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/functions_reports.php:561 ../../include/functions_reports.php:648 +#: ../../include/functions_reports.php:654 +#: ../../include/functions_reporting.php:10064 +msgid "Custom graph" +msgstr "Tableau personnalisĆ©" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2201 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2336 +msgid "Max items" +msgstr "Nombre d'Ć©lĆ©ments maximum" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2234 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2301 +msgid "Custom SQL template" +msgstr "ModĆØle de SQL personnalisĆ©" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2255 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2322 +msgid "The entities of the fields that contain them must be included." +msgstr "Les entitĆ©s des champs qui les contiennent doivent ĆŖtre incluses." + +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2269 +#: ../../enterprise/include/functions_reporting_csv.php:718 +#: ../../enterprise/include/functions_reporting_csv.php:2409 +#: ../../enterprise/include/functions_reporting_csv.php:2423 +#: ../../extensions/api_checker.php:220 +#: ../../godmode/reporting/reporting_builder.item_editor.php:75 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2368 +#: ../../godmode/events/event_responses.editor.php:156 +#: ../../godmode/events/event_responses.editor.php:164 +#: ../../include/functions_reporting_html.php:1577 +#: ../../operation/gis_maps/ajax.php:316 +msgid "URL" +msgstr "URL" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2280 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2379 +msgid "Protocol must be specified in URL (e.g.: \"https://\")" +msgstr "Le protocole doit ĆŖtre spĆ©cifiĆ© dans lā€™URL (par exemple: Ā«Ā https://Ā Ā»)" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2344 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3525 +msgid "Group by" +msgstr "Regrouper par" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2459 +#: ../../enterprise/include/functions_reporting_csv.php:1030 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2517 +#: ../../include/functions_reporting_html.php:4784 +#: ../../include/functions_reporting.php:1532 +msgid "Avg" +msgstr "Moyenne" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2601 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2696 +msgid "Select fields to show" +msgstr "SĆ©lectionner les champs Ć  afficher" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2609 +#: ../../enterprise/include/functions_reporting_csv.php:494 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2704 +#: ../../include/functions_reporting_html.php:3926 +msgid "Total time" +msgstr "DurĆ©e totale" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2617 +#: ../../enterprise/include/functions_reporting_csv.php:498 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2712 +#: ../../include/functions_reporting_html.php:3932 +msgid "Time failed" +msgstr "Temps d'Ć©chec" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2625 +#: ../../enterprise/include/functions_reporting_csv.php:502 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2720 +msgid "Time in OK status" +msgstr "Temps en Ć©tat OK" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2633 +#: ../../enterprise/include/functions_reporting_csv.php:506 +#: ../../enterprise/include/functions_reporting.php:4969 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2728 +#: ../../include/functions_reporting_html.php:3944 +msgid "Time in warning status" +msgstr "Temps en Ć©tat d'avertissement" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2641 +#: ../../enterprise/include/functions_reporting_csv.php:510 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2736 +msgid "Time in unknown status" +msgstr "Temps en Ć©tat inconnu" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2653 +#: ../../enterprise/include/functions_reporting_csv.php:514 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2748 +msgid "Time of not initialized module" +msgstr "Temps de module non initialisĆ©" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2665 +#: ../../enterprise/include/functions_reporting_csv.php:518 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2760 +msgid "Time of downtime" +msgstr "Temps d'arrĆŖte" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2719 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2812 +msgid "

    Select fields to show

    " +msgstr "

    SĆ©lectionner les champs Ć  afficher

    " + +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2727 +#: ../../enterprise/include/functions_reporting_csv.php:526 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2820 +#: ../../include/functions_reporting_html.php:4020 +msgid "Total checks" +msgstr "VƩrifications totales" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2735 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2828 +#: ../../include/functions_reporting_html.php:4026 +msgid "Checks failed" +msgstr "VƩrifications ƩchouƩes" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2743 +#: ../../enterprise/include/functions_reporting_csv.php:534 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2836 +msgid "Checks in OK status" +msgstr "VƩrifications en Ʃtat OK" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2755 +#: ../../enterprise/include/functions_reporting_csv.php:538 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2860 +msgid "Unknown checks" +msgstr "VƩrifications inconnues" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2767 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2872 +msgid "

    Select fields to show

    " +msgstr "

    SĆ©lectionner les champs Ć  afficher

    " + +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2775 +#: ../../enterprise/include/functions_reporting_csv.php:661 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2880 +#: ../../include/functions_reporting_html.php:4340 +msgid "Agent max value" +msgstr "Valeur maximale de l'agent" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2783 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2888 +msgid "Agent min values" +msgstr "Valeurs min de lā€™agent" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2812 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3508 +msgid "Show Summary" +msgstr "Voir le sommaire " + +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2956 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3112 +msgid "Height (dynamic graphs)" +msgstr "Hauteur (graphiques dynamiques)" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2996 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3096 +msgid "Query History Database" +msgstr "Base de donnĆ©es de l'historique de requĆŖtes" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3008 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3177 +msgid "Priority mode" +msgstr "Mode prioritaire" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3013 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3182 +msgid "Priority ok mode" +msgstr "Mode ok de prioritĆ©" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3025 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3194 +msgid "Priority unknown mode" +msgstr "Mode inconnu de prioritĆ©" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3115 +msgid "Modules to match" +msgstr "Modules Ć  comparer" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3117 +msgid "Select the modules to match when create a report for agents" +msgstr "" +"SĆ©lectionnez les modules Ć  comparer lors de la crĆ©ation d'un rapport pour les " +"agents." + +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3217 +msgid "Modules to match (Free text)" +msgstr "Modules Ć  comparer (texte libre)" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3219 +msgid "Free text to filter the modules of agents when apply this template." +msgstr "" +"Texte libre pour filtrer les modules d'agents lors de l'application de ce modĆØle." + +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3236 +msgid "Create a graph for each agent" +msgstr "CrĆ©er un graphique pour chaque agent" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3238 msgid "" -"It is setted any recon task, the nodes get from the recontask IP mask instead " -"from the group." +"If it is checked, the regexp or name of modules match only each to each to agent, " +"instead create a big graph with all modules from all agents." msgstr "" -"Il est configurĆ© sur n'importe quelle tĆ¢che de reconnaissance, les nœuds " -"reƧoivent des donnĆ©es Ć  partir du masque IP de la tĆ¢che de reconnaissance au " -"lieu d'Ć  partir du groupe." +"Si cette option est cochĆ©e, le regexp ou le nom de modules correspondent avec " +"chaque module de chaque agent, au lieu de crĆ©er un grand graphique avec tous les " +"modules de tous les agents." -#: ../../operation/agentes/pandora_networkmap.editor.php:358 -#: ../../operation/agentes/pandora_networkmap.view.php:182 -msgid "Show only the task with the recon script \"SNMP L2 Recon\"." -msgstr "" -"Afficher uniquement la tĆ¢che avec le script de reconnaissance \"SNMP L2 Recon" -"\"." +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3265 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3302 +msgid "Calculate for custom intervals" +msgstr "Calculer pour les intervalles personnalisĆ©s" -#: ../../operation/agentes/pandora_networkmap.editor.php:362 -#: ../../operation/agentes/pandora_networkmap.view.php:186 -msgid "Source from CIDR IP mask" -msgstr "Source du masque IP du CIDR" +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3277 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3314 +msgid "Time lapse intervals" +msgstr "Intervalles de temps" -#: ../../operation/agentes/pandora_networkmap.editor.php:365 -#: ../../enterprise/godmode/agentes/manage_config_remote.php:140 -msgid "Source group" -msgstr "Groupe source" - -#: ../../operation/agentes/pandora_networkmap.editor.php:382 -msgid "Source id group changed. All elements in networkmap will be lost." -msgstr "" -"Le groupe d'ID source a Ć©tĆ© modifiĆ©. Tous les Ć©lĆ©ments de la carte du rĆ©seau " -"seront perdus." - -#: ../../operation/agentes/pandora_networkmap.editor.php:387 -#: ../../operation/agentes/pandora_networkmap.view.php:198 -msgid "Don't show subgroups:" -msgstr "Ne pas afficher les sous-groupes :" - -#: ../../operation/agentes/pandora_networkmap.editor.php:405 -#: ../../operation/agentes/pandora_networkmap.view.php:232 -msgid "Method generation networkmap" -msgstr "MĆ©thode de gĆ©nĆ©ration de cartes de rĆ©seau" - -#: ../../operation/agentes/pandora_networkmap.editor.php:425 -#: ../../operation/agentes/pandora_networkmap.view.php:247 -#: ../../enterprise/extensions/vmware/vmware_view.php:1762 -msgid "Node separation" -msgstr "SĆ©paration de nœuds" - -#: ../../operation/agentes/pandora_networkmap.editor.php:426 -#: ../../operation/agentes/pandora_networkmap.view.php:248 -msgid "Separation between nodes. By default 0.25" -msgstr "SĆ©paration entre les nœuds. 0,25 par dĆ©faut" - -#: ../../operation/agentes/pandora_networkmap.editor.php:428 -#: ../../operation/agentes/pandora_networkmap.view.php:250 -msgid "Rank separation" -msgstr "SĆ©paration de rangs" - -#: ../../operation/agentes/pandora_networkmap.editor.php:429 -#: ../../operation/agentes/pandora_networkmap.view.php:251 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3279 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3317 msgid "" -"Only flat and radial. Separation between arrows. By default 0.5 in flat and " -"1.0 in radial" +"Lapses of time in which the period is divided to make more precise calculations" msgstr "" -"Uniquement plat et radial. SĆ©paration entre flĆØches. 0,5 plat et 1,0 radial " -"par dĆ©faut" +"Intervalles de temps dans lesquelles une pĆ©riode se divise pour effectuer des " +"calculs plus prĆ©cis" -#: ../../operation/agentes/pandora_networkmap.editor.php:431 -#: ../../operation/agentes/pandora_networkmap.view.php:253 -msgid "Min nodes dist" -msgstr "Distance minimale entre nœuds" +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3324 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3358 +msgid "Table only" +msgstr "Seulement le tableau" -#: ../../operation/agentes/pandora_networkmap.editor.php:432 -#: ../../operation/agentes/pandora_networkmap.view.php:254 -msgid "Only circular. Minimum separation between all nodes. By default 1.0" +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3334 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3369 +msgid "Graph only" +msgstr "Seulement le graphique" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3344 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3380 +msgid "Graph and table" +msgstr "Graphique et tableau" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3393 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1264 +msgid "Filter by network" +msgstr "Filtrer par rĆ©seau" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3423 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1283 +msgid "Show alive IPs only" +msgstr "Afficher uniquement les adresses IP vivantes" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3436 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1296 +msgid "Show IPs not assigned to an agent" +msgstr "Afficher les adresses IP non affectĆ©es Ć  un agent" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3462 +#: ../../godmode/netflow/nf_item_list.php:282 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3832 +msgid "Create item" +msgstr "CrĆ©er un Ć©lĆ©ment" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3471 +#: ../../extensions/agents_modules.php:448 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3839 +#: ../../include/functions_visual_map_editor.php:1421 +msgid "Update item" +msgstr "Mettre Ć  jour l'Ć©lĆ©ment" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3520 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3926 +msgid "SLA Min. (value)" +msgstr "SLA min. (valeur)" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3525 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3931 +msgid "SLA Max. (value)" +msgstr "SLA max. (valeur)" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3530 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3936 +msgid "SLA Limit (%)" +msgstr "Limite SLA (%)" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3547 +msgid "Please save the SLA template for start to add items in this list." msgstr "" -"Uniquement circulaire. SĆ©paration minimale entre tous les nœuds. 1,0 par " -"dĆ©faut." +"Veuillez sauvegarder le modĆØle SLA pour commencer Ć  ajouter les Ć©lĆ©ments Ć  cette " +"liste." -#: ../../operation/agentes/pandora_networkmap.editor.php:434 -#: ../../operation/agentes/pandora_networkmap.view.php:256 -msgid "Default ideal node separation" -msgstr "SĆ©paration idĆ©ale entre nœuds par dĆ©faut" +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3588 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3815 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:4260 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:4405 +msgid "Not literally" +msgstr "Pas littĆ©ralement" -#: ../../operation/agentes/pandora_networkmap.editor.php:435 -#: ../../operation/agentes/pandora_networkmap.view.php:257 -msgid "Only fdp. Default ideal node separation in the layout. By default 0.3" +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3634 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3866 +msgid "" +"Case insensitive regular expression for agent name. For example: Network* will " +"match with the following agent names: network_agent1, NetworK CHECKS" msgstr "" -"Uniquement fdp. SĆ©paration idĆ©ale entre nœuds par dĆ©faut. 0,3 par dĆ©faut." +"Expression rĆ©guliĆØre sensitive Ć  la casse pour le nom de l'agent. Par exemple : " +"Network* concordera avec les nom d'agents suivants : network_agent1, NetworK " +"CHECKS" -#: ../../operation/agentes/pandora_networkmap.editor.php:445 -#: ../../enterprise/godmode/agentes/pandora_networkmap_empty.editor.php:173 -#: ../../godmode/agentes/pandora_networkmap_empty.editor.php:175 -msgid "Save networkmap" -msgstr "Enregistrer la carte de rĆ©seau" +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3650 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3881 +msgid "Literal module name forced" +msgstr "Nom littĆ©ral du module forcĆ©" -#: ../../operation/agentes/pandora_networkmap.editor.php:456 -#: ../../enterprise/godmode/agentes/pandora_networkmap_empty.editor.php:184 -#: ../../godmode/agentes/pandora_networkmap_empty.editor.php:186 -msgid "Update networkmap" -msgstr "Mettre Ć  jour la carte de rĆ©seau" +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3689 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3941 +#: ../../godmode/reporting/create_container.php:418 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1760 +#: ../../godmode/reporting/reporting_builder.item_editor.php:4160 +#: ../../godmode/reporting/reporting_builder.item_editor.php:4197 +#: ../../godmode/reporting/reporting_builder.item_editor.php:4366 +#: ../../godmode/reporting/reporting_builder.item_editor.php:4639 +#: ../../godmode/reporting/reporting_builder.item_editor.php:4673 +#: ../../godmode/reporting/reporting_builder.item_editor.php:4727 +#: ../../include/functions_ui.php:5845 ../../include/functions_html.php:5357 +msgid "Select an Agent first" +msgstr "SĆ©lectionnez d'abord un agent" -#: ../../operation/agentes/pandora_networkmap.editor.php:601 -msgid "Source id group changed. All elements in Networkmap will be lost" +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3771 +msgid "Please save the template to start adding items into the list." msgstr "" -"Le groupe d'ID source a Ć©tĆ© modifiĆ©. Tous les Ć©lĆ©ments de Networkmap seront " -"perdus" +"Veuillez sauvegarder le modĆØle pour commencer Ć  ajouter les Ć©lĆ©ments Ć  cette " +"liste." -#: ../../operation/agentes/interface_traffic_graph_win.php:78 -#: ../../include/rest-api/models/VisualConsole/View.php:738 -#: ../../include/rest-api/models/VisualConsole/View.php:817 -msgid "In" -msgstr "Dans" +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:4286 +msgid "Name and SLA limit should not be empty" +msgstr "Le nom et la limite SLA ne peuvent pas ĆŖtre vides" -#: ../../operation/agentes/interface_traffic_graph_win.php:79 -#: ../../include/rest-api/models/VisualConsole/View.php:739 -#: ../../include/rest-api/models/VisualConsole/View.php:818 -msgid "Out" -msgstr "ƀ l'extĆ©rieur de" +#: ../../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/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:4269 +#: ../../include/rest-api/models/VisualConsole/Item.php:2147 +#: ../../include/lib/Dashboard/Widgets/module_icon.php:384 +#: ../../include/lib/Dashboard/Widgets/module_status.php:374 +#: ../../operation/visual_console/view.php:341 +msgid "Icon" +msgstr "IcĆ“ne" -#: ../../operation/agentes/interface_traffic_graph_win.php:95 +#: ../../enterprise/godmode/reporting/visual_console_builder.wizard_services.php:139 +#: ../../enterprise/include/functions_ipam.php:1567 +msgid "Available" +msgstr "Disponible" + +#: ../../enterprise/godmode/reporting/visual_console_builder.wizard_services.php:141 +#: ../../include/graphs/export_data.php:100 +msgid "Selected" +msgstr "SĆ©lectionnĆ©s" + +#: ../../enterprise/godmode/reporting/visual_console_builder.wizard_services.php:150 +#: ../../enterprise/godmode/reporting/visual_console_builder.wizard_services.php:151 +msgid "Push the selected services into the list" +msgstr "Ajouter les services sĆ©lectionnĆ©s Ć  la liste" + +#: ../../enterprise/godmode/reporting/visual_console_builder.wizard_services.php:161 +#: ../../enterprise/godmode/reporting/visual_console_builder.wizard_services.php:162 +msgid "Remove the services from the list" +msgstr "Supprimer les services de la liste" + +#: ../../enterprise/godmode/reporting/visual_console_builder.wizard_services.php:229 +msgid "Icon preview" +msgstr "AperƧu de l'icĆ“ne" + +#: ../../enterprise/godmode/reporting/visual_console_builder.wizard_services.php:295 +msgid "The services list is empty" +msgstr "La liste des services est vide." + +#: ../../enterprise/godmode/reporting/reporting_builder.template_advanced.php:115 +msgid "Advance Options" +msgstr "Options avancĆ©es" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_list_item.php:207 +#: ../../enterprise/godmode/reporting/reporting_builder.template_list_item.php:226 +#: ../../enterprise/godmode/reporting/reporting_builder.template_list_item.php:245 +#: ../../godmode/reporting/reporting_builder.list_items.php:378 +#: ../../godmode/reporting/reporting_builder.list_items.php:397 +#: ../../godmode/reporting/reporting_builder.list_items.php:416 +msgid "Ascendent" +msgstr "Croissant" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_list_item.php:214 +#: ../../enterprise/godmode/reporting/reporting_builder.template_list_item.php:233 +#: ../../enterprise/godmode/reporting/reporting_builder.template_list_item.php:252 +#: ../../godmode/reporting/reporting_builder.list_items.php:385 +#: ../../godmode/reporting/reporting_builder.list_items.php:404 +#: ../../godmode/reporting/reporting_builder.list_items.php:420 +msgid "Descent" +msgstr "DĆ©croissant" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_list_item.php:259 +#: ../../godmode/reporting/reporting_builder.list_items.php:425 +msgid "Name or Description" +msgstr "Nom ou description" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_list_item.php:312 +#: ../../godmode/netflow/nf_item_list.php:228 +#: ../../godmode/netflow/nf_item_list.php:230 +msgid "Move to up" +msgstr "DĆ©placer vers le haut" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_list_item.php:325 +#: ../../godmode/netflow/nf_item_list.php:226 +#: ../../godmode/netflow/nf_item_list.php:231 +msgid "Move to down" +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:1538 +msgid "No items." +msgstr "Aucun Ć©lĆ©ment" + +#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:139 +#: ../../enterprise/include/class/Azure.cloud.php:420 +#: ../../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:907 +#: ../../enterprise/include/class/MySQL.app.php:196 +#: ../../enterprise/include/class/Google.cloud.php:423 +#: ../../enterprise/include/class/Oracle.app.php:194 +#: ../../enterprise/include/class/MicrosoftSQLServer.app.php:193 +#: ../../godmode/wizards/HostDevices.class.php:412 +#: ../../include/class/CustomNetScan.class.php:158 +msgid "You have no access to edit this task." +msgstr "vous n'avez de permissions pour accĆ©der Ć  cette tache." + +#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:179 +msgid "Command Mysqldump is failed." +msgstr "La commande Mysqldump a Ć©chouĆ©." + +#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:225 +#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:238 +#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:287 +#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:306 +#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:386 +#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:403 +msgid "Failed to create task" +msgstr "Ɖchec de crĆ©ation de la tache" + +#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:293 +msgid "No template selected" +msgstr "Aucun modĆØle sĆ©lectionnĆ©" + +#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:412 +msgid "I do not know what you want to do" +msgstr "Je sais ce que tu veux faire." + +#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:429 +#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:611 +msgid "You have no access to manage console tasks." +msgstr "Vous n'avez pas accĆØs Ć  la gestion des tĆ¢ches de la console." + +#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:446 +#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:517 +msgid "Create new console task" +msgstr "CrĆ©er une nouvelle tĆ¢che de console" + +#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:469 +#: ../../enterprise/include/class/Azure.cloud.php:689 +#: ../../enterprise/include/class/VMware.app.php:455 +#: ../../enterprise/include/class/Omnishell.class.php:630 +#: ../../enterprise/include/class/Omnishell.class.php:980 +#: ../../enterprise/include/class/Omnishell.class.php:1349 +#: ../../enterprise/include/class/DB2.app.php:354 +#: ../../enterprise/include/class/SAP.app.php:401 +#: ../../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 +#: ../../enterprise/include/class/MicrosoftSQLServer.app.php:356 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:285 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:339 +#: ../../enterprise/include/lib/ClusterViewer/ClusterManager.php:752 +#: ../../enterprise/include/lib/ClusterViewer/ClusterWizard.php:349 +#: ../../godmode/modules/manage_network_components_form.php:367 +#: ../../godmode/reporting/graph_builder.main.php:308 +#: ../../godmode/wizards/HostDevices.class.php:648 +#: ../../godmode/wizards/HostDevices.class.php:747 +#: ../../godmode/wizards/Wizard.main.php:416 +#: ../../godmode/wizards/DiscoveryTaskList.class.php:181 +#: ../../include/functions_html.php:6161 +#: ../../include/class/CustomNetScan.class.php:314 +#: ../../include/class/CustomNetScan.class.php:422 +#: ../../include/class/HTML.class.php:419 +msgid "Go back" +msgstr "Revenir" + +#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:489 +msgid "Updating console task" +msgstr "TĆ¢che de mise Ć  jour de la console" + +#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:514 +#: ../../godmode/menu.php:49 ../../godmode/wizards/DiscoveryTaskList.class.php:105 +msgid "Task list" +msgstr "Liste de tĆ¢ches" + +#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:519 +msgid "Update console task" +msgstr "TĆ¢che de mise Ć  jour de la console" + +#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:650 +msgid "Next Execution" +msgstr "Prochaine ExĆ©cution" + +#: ../../enterprise/godmode/wizards/Cloud.class.php:182 +#: ../../enterprise/godmode/wizards/Applications.class.php:157 +#: ../../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:78 +#: ../../godmode/wizards/HostDevices.class.php:190 +#: ../../godmode/servers/discovery.php:59 +msgid "Discovery" +msgstr "Discovery" + +#: ../../enterprise/godmode/wizards/Cloud.class.php:210 +#: ../../enterprise/godmode/wizards/Applications.class.php:186 +msgid "" +"All company names used here are for identification purposes only. Use of these " +"names, logos, and brands does not imply endorsement." +msgstr "" +"Tous les noms de sociĆ©tĆ©s utilisĆ©s ici sont uniquement Ć  des fins " +"d'identification. L'utilisation de ces noms, logos et marques n'implique pas une " +"approbation." + +#: ../../enterprise/godmode/wizards/Cloud.class.php:240 +#: ../../enterprise/godmode/wizards/Cloud.class.php:248 #, php-format -msgid "%s Interface Graph" -msgstr "%s Graphique d'interface" +msgid "%s credentials" +msgstr "Identifiants %s" -#: ../../operation/agentes/interface_traffic_graph_win.php:250 -msgid "Zoom factor" -msgstr "Facteur de zoom" - -#: ../../operation/agentes/interface_traffic_graph_win.php:257 -msgid "Full" -msgstr "Complet" - -#: ../../operation/agentes/estado_generalagente.php:57 -msgid "The agent has not assigned server. Maybe agent does not run fine." +#: ../../enterprise/godmode/wizards/Cloud.class.php:264 +msgid "" +"If a task with the selected credentials is already running, it will be edited. To " +"create a new one, another account from the credential store must be selected." msgstr "" -"L'agent n'a pas de serveur attribuĆ©. Peut-ĆŖtre l'agent ne fonctionne pas bien." +"Si une tĆ¢che avec les informations dā€™identification sĆ©lectionnĆ©es est dĆ©jĆ  en " +"cours dā€™exĆ©cution, elle sera modifiĆ©e. Pour en crĆ©er un nouveau, un autre compte " +"du magasin dā€™informations dā€™identification doit ĆŖtre sĆ©lectionnĆ©." -#: ../../operation/agentes/estado_generalagente.php:214 -#: ../../enterprise/views/cluster/view.php:273 -msgid "IP address" -msgstr "Adresse IP" +#: ../../enterprise/godmode/wizards/Cloud.class.php:284 +msgid "Manage accounts" +msgstr "GĆ©rer les comptes" -#: ../../operation/agentes/estado_generalagente.php:267 -msgid "Remote configuration enabled" -msgstr "Configuration Ć  distance activĆ©e" +#: ../../enterprise/godmode/wizards/Cloud.class.php:296 +msgid "Cloud tool full path" +msgstr "Chemin complet de l'outil cloud" -#: ../../operation/agentes/estado_generalagente.php:330 -msgid "Agent contact" -msgstr "Contact de l'agent" +#: ../../enterprise/godmode/wizards/Cloud.class.php:304 +msgid "Account" +msgstr "Compte" -#: ../../operation/agentes/estado_generalagente.php:337 -msgid "Refresh data" -msgstr "RafraĆ®chir les donnĆ©es" +#: ../../enterprise/godmode/wizards/Cloud.class.php:365 +msgid "Select a set of credentials from the list" +msgstr "SĆ©lectionnez un ensemble d'informations d'identification dans la liste" -#: ../../operation/agentes/estado_generalagente.php:378 -msgid "Next contact" -msgstr "Contact suivant" +#: ../../enterprise/godmode/wizards/Cloud.class.php:378 +#, php-format +msgid "Path %s is not executable." +msgstr "Le chemin %s n'est pas exĆ©cutable." -#: ../../operation/agentes/estado_generalagente.php:410 -#: ../../include/functions_events.php:5119 -#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:493 -#: ../../godmode/reporting/reporting_builder.item_editor.php:73 -#: ../../godmode/agentes/agent_manager.php:496 -msgid "Secondary groups" -msgstr "Groupes secondaires" +#: ../../enterprise/godmode/wizards/Cloud.class.php:423 +msgid "Account disconnected" +msgstr "Compte dĆ©connectĆ©" -#: ../../operation/agentes/estado_generalagente.php:427 -#: ../../operation/agentes/ver_agente.php:1218 -#: ../../include/functions_visual_map_editor.php:956 -#: ../../include/rest-api/models/VisualConsole/Item.php:2175 -#: ../../enterprise/views/ipam/sites/edit.php:64 -#: ../../enterprise/views/ipam/sites/list.php:48 -#: ../../godmode/modules/manage_nc_groups_form.php:71 -#: ../../godmode/reporting/visual_console_builder.elements.php:108 -#: ../../godmode/massive/massive_edit_agents.php:648 -#: ../../godmode/agentes/agent_manager.php:565 -#: ../../godmode/groups/configure_group.php:170 -#: ../../godmode/groups/group_list.php:848 -msgid "Parent" -msgstr "Parent" +#: ../../enterprise/godmode/wizards/Cloud.class.php:425 +msgid "Failed disconnecting account" +msgstr "Ɖchec de la dĆ©connexion du compte" -#: ../../operation/agentes/estado_generalagente.php:466 -msgid "Agent info" -msgstr "Information de l'agent" +#: ../../enterprise/godmode/wizards/Cloud.class.php:503 +msgid "Credentials successfully updated" +msgstr "Identifiants mis Ć  jour correctement" -#: ../../operation/agentes/estado_generalagente.php:473 -#: ../../include/functions_treeview.php:750 -msgid "Position (Long, Lat)" -msgstr "Position (Long, Lat)" +#: ../../enterprise/godmode/wizards/Cloud.class.php:505 +msgid "Failed updating credentials process" +msgstr "Ɖchec du processus de mise Ć  jour des identifiants" -#: ../../operation/agentes/estado_generalagente.php:479 -msgid "There is no GIS data." -msgstr "Aucune donnĆ©e GIS" +#: ../../enterprise/godmode/servers/HA_cluster.php:59 +#: ../../enterprise/godmode/servers/HA_cluster.php:83 +msgid "View nodes" +msgstr "Afficher les nœuds" -#: ../../operation/agentes/estado_generalagente.php:497 -#: ../../operation/agentes/ver_agente.php:1526 -#: ../../include/functions_treeview.php:759 -#: ../../godmode/agentes/agent_manager.php:653 -#: ../../godmode/agentes/agent_manager.php:670 -msgid "Url address" -msgstr "Adresse URL" +#: ../../enterprise/godmode/servers/HA_cluster.php:80 +msgid "Manage Pandora DB HA" +msgstr "GĆ©rer Pandora DB HA" -#: ../../operation/agentes/estado_generalagente.php:507 -#: ../../include/functions_treeview.php:634 -msgid "Other IP addresses" -msgstr "Autres adresses IP" +#: ../../enterprise/godmode/servers/HA_cluster.php:101 +msgid "Manage Database HA" +msgstr "GĆ©rer la base de donnĆ©es HA" -#: ../../operation/agentes/estado_generalagente.php:515 -#: ../../include/functions_treeview.php:767 -msgid "Timezone Offset" -msgstr "Fuseau horaire dĆ©sactivĆ©" +#: ../../enterprise/godmode/servers/HA_cluster.php:136 +msgid "" +"Make the cluster forget failed operations from history of\n" +" the resource and re-detect its current state. This can be\n" +" useful to purge knowledge of past failures that have since\n" +" been resolved. If a resource id is not specified then all\n" +" resources / stonith devices will be cleaned up. If a node\n" +" is not specified then resources / stonith devices on all\n" +" nodes will be cleaned up" +msgstr "" +"Faire oublier au cluster les opĆ©rations ayant Ć©chouĆ© de lā€™historique de\n" +" la ressource et re-dĆ©tecter son Ć©tat actuel. Cela peut ĆŖtre\n" +" utile pour purger la connaissance des Ć©checs passĆ©s qui ont depuis\n" +" ont Ć©tĆ© rĆ©solus. Si aucun ID de ressource nā€™est spĆ©cifiĆ©, tous les\n" +" les ressources / appareils stonith seront Ć©liminĆ©s. Si un nœud\n" +" nā€™est pas spĆ©cifiĆ© alors les ressources / appareils stonith sur tous les\n" +" les nœuds seront Ć©liminĆ©s" + +#: ../../enterprise/godmode/servers/HA_cluster.php:162 +msgid "Node label" +msgstr "Ɖtiquette de nœud" + +#: ../../enterprise/godmode/servers/HA_cluster.php:163 +#: ../../enterprise/include/functions_reporting_csv.php:2348 +#: ../../operation/tree.php:246 +msgid "Agent status" +msgstr "Ɖtat de l'agent" + +#: ../../enterprise/godmode/servers/HA_cluster.php:164 +msgid "DB Repl." +msgstr "RĆ©ponse de la base de donnĆ©es" + +#: ../../enterprise/godmode/servers/HA_cluster.php:165 +msgid "DB Status" +msgstr "Ɖtat de la base de donnĆ©es" + +#: ../../enterprise/godmode/servers/HA_cluster.php:167 +#: ../../extensions/quick_shell.php:195 +#: ../../godmode/agentes/module_manager_editor_network.php:478 +msgid "SSH" +msgstr "SSH" + +#: ../../enterprise/godmode/servers/HA_cluster.php:168 +msgid "DB Role" +msgstr "RĆ“le de la base de donnĆ©es" + +#: ../../enterprise/godmode/servers/HA_cluster.php:169 +msgid "Cluster Role" +msgstr "RĆ“le de grappe" + +#: ../../enterprise/godmode/servers/HA_cluster.php:171 +msgid "Seconds behind master" +msgstr "Secondes derriĆØre le maĆ®tre" + +#: ../../enterprise/godmode/servers/HA_cluster.php:172 +msgid "Virtual IP" +msgstr "IP virtuelle" + +#: ../../enterprise/godmode/servers/HA_cluster.php:173 +msgid "SQL version" +msgstr "Version de SQL" + +#: ../../enterprise/godmode/servers/HA_cluster.php:174 +msgid "DB version" +msgstr "Version de la base de donnĆ©es" + +#: ../../enterprise/godmode/servers/HA_cluster.php:176 +msgid "Pending action" +msgstr "Action en attente" + +#: ../../enterprise/godmode/servers/HA_cluster.php:301 +msgid "Show/ edit node" +msgstr "Afficher/modifier le nœud" + +#: ../../enterprise/godmode/servers/HA_cluster.php:317 +msgid "Put node into standby status" +msgstr "Mettre le nœud en Ć©tat de veille" + +#: ../../enterprise/godmode/servers/HA_cluster.php:332 +msgid "Force node resync" +msgstr "Forcer la resynchronisation du nœud" + +#: ../../enterprise/godmode/servers/HA_cluster.php:359 +msgid "Put node into online status" +msgstr "Mettre le nœud en Ć©tat en ligne" + +#: ../../enterprise/godmode/servers/HA_cluster.php:374 +msgid "Show cluster details" +msgstr "Afficher les dĆ©tails du grappe" + +#: ../../enterprise/godmode/servers/HA_cluster.php:392 +msgid "Remove node from this list" +msgstr "Supprimer un nœud de cette liste" + +#: ../../enterprise/godmode/servers/HA_cluster.php:428 +msgid "Register node" +msgstr "Enregistrer le nœud" + +#: ../../enterprise/godmode/servers/HA_cluster.php:466 +msgid "" +"Target node will be erased from this list but not removed from cluster. Do you " +"want to continue?" +msgstr "" +"Le nœud cible sera effacĆ© de cette liste mais pas supprimĆ© du cluster. Voulez-" +"vous continuer ?" + +#: ../../enterprise/godmode/servers/manage_export.php:69 +msgid "Error updating export target" +msgstr "Erreur de mise Ć  jour des serveurs d'exportation" + +#: ../../enterprise/godmode/servers/manage_export.php:71 +msgid "Successfully updated export target" +msgstr "Serveurs d'exportation mis Ć  jours correctement" + +#: ../../enterprise/godmode/servers/manage_export.php:82 +msgid "Error deleting export target" +msgstr "Erreur de suppression du serveur d'exportation" + +#: ../../enterprise/godmode/servers/manage_export.php:84 +msgid "" +"Successfully deleted export target. All the linked modules will be automatically " +"unattached" +msgstr "" +"Cible dā€™exportation supprimĆ©e correctement. Tous les modules liĆ©s seront " +"automatiquement dĆ©tachĆ©s" + +#: ../../enterprise/godmode/servers/manage_export.php:107 +msgid "" +"Can't be created export target: User and password must be filled with FTP mode" +msgstr "" +"Erreur de crĆ©ation du serveur d'exportation : l'utilisateur et le mot de passe " +"doivent ĆŖtre remplis avec le mode FTP" + +#: ../../enterprise/godmode/servers/manage_export.php:126 +msgid "There are no defined export targets" +msgstr "Aucun serveur d'exportation dĆ©fini" + +#: ../../enterprise/godmode/servers/manage_export.php:138 +#: ../../enterprise/godmode/servers/manage_export_form.php:91 +msgid "Preffix" +msgstr "PrĆ©fixe" + +#: ../../enterprise/godmode/servers/manage_export.php:141 +#: ../../enterprise/godmode/servers/manage_export_form.php:103 +msgid "Transfer mode" +msgstr "Mode de transfert" + +#: ../../enterprise/godmode/servers/credential_boxes_satellite.php:35 +msgid "Credential Boxes List" +msgstr "Liste des zones dā€™identifiants" + +#: ../../enterprise/godmode/servers/credential_boxes_satellite.php:42 +msgid "Credential Boxes" +msgstr "Zones dā€™identifiants" + +#: ../../enterprise/godmode/servers/credential_boxes_satellite.php:248 +#: ../../enterprise/godmode/servers/manage_credential_boxes.php:57 +#: ../../enterprise/include/ajax/servers.ajax.php:99 +#: ../../enterprise/include/ajax/servers.ajax.php:157 +#: ../../enterprise/include/ajax/servers.ajax.php:283 +#: ../../enterprise/include/functions_ipam.php:1343 +msgid "Subnet" +msgstr "Sous-rĆ©seau" + +#: ../../enterprise/godmode/servers/credential_boxes_satellite.php:293 +#: ../../enterprise/godmode/servers/list_satellite.php:69 +#: ../../enterprise/include/ajax/servers.ajax.php:139 +msgid "No Data" +msgstr "Aucune donnĆ©e" + +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:148 +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:152 +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:348 +msgid "Delete remote conf server files" +msgstr "Supprimer les fichiers du serveur de configuration distant" + +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:349 +msgid "" +"Delete this conf file implies that server will send back local config to console" +msgstr "" +"Supprimer ce fichier de configuration implique que le serveur renverra la " +"configuration locale Ć  la console" + +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:386 +#: ../../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:401 +#: ../../include/functions_servers.php:569 ../../include/functions_servers.php:1308 +#: ../../include/class/AgentWizard.class.php:1296 +msgid "Network server" +msgstr "Serveur de rĆ©seau" + +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:416 +#: ../../include/functions_servers.php:855 ../../include/functions_servers.php:1356 +msgid "Alert server" +msgstr "Serveur dā€™alertes" + +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:431 +#: ../../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: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 +#: ../../enterprise/include/class/MicrosoftSQLServer.app.php:450 +#: ../../enterprise/tools/ipam/ipam_editor.php:163 +#: ../../godmode/wizards/HostDevices.class.php:848 +#: ../../include/functions_servers.php:595 ../../include/functions_servers.php:1341 +#: ../../include/class/CustomNetScan.class.php:479 +#: ../../general/first_task/recon_view.php:22 +msgid "Discovery server" +msgstr "Serveur Discovery" + +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:446 +#: ../../include/functions_servers.php:608 ../../include/functions_servers.php:1320 +#: ../../include/class/AgentWizard.class.php:1277 +msgid "Plugin server" +msgstr "Serveur de plugin" + +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:461 +#: ../../include/functions_menu.php:526 ../../operation/menu.php:125 +msgid "SNMP console" +msgstr "Console SNMP" + +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:476 +#: ../../enterprise/include/lib/ClusterViewer/ClusterWizard.php:840 +#: ../../include/functions_servers.php:621 +msgid "Prediction server" +msgstr "Serveur de prĆ©diction" + +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:491 +#: ../../include/functions_servers.php:634 ../../include/functions_servers.php:1326 +#: ../../include/class/AgentWizard.class.php:1287 +msgid "WMI server" +msgstr "Serveur WMI" + +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:507 +#: ../../include/functions_servers.php:673 ../../include/functions_servers.php:1329 +msgid "Web server" +msgstr "Serveur web" + +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:522 +#: ../../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:537 +#: ../../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:552 +#: ../../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:567 +msgid "ICMP server" +msgstr "Serveur ICMP" + +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:582 +#: ../../include/functions_servers.php:1311 +msgid "SNMP server" +msgstr "Serveur SNMP" + +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:597 +#: ../../include/functions_servers.php:1347 +msgid "WUX server" +msgstr "Serveur WUX" + +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:612 +#: ../../include/functions_servers.php:816 ../../include/functions_servers.php:1359 +msgid "NCM server" +msgstr "serveur NCM" + +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:642 +msgid "Network timeout" +msgstr "DĆ©lai dā€™expiration du rĆ©seau" + +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:650 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:666 +msgid " Seconds" +msgstr "Secondes" + +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:658 +msgid "Plugin timeout" +msgstr "DĆ©lai dā€™expiration du plug-in" + +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:674 +msgid "SNMP console threads" +msgstr "Fils de console SNMP" + +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:690 +msgid "Network threads" +msgstr "Fils rĆ©seau" + +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:706 +msgid "Plugin threads" +msgstr "Fils plugin" + +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:722 +msgid "Recon threads" +msgstr "Fils de reconnaissance" + +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:738 +msgid "Dataserver threads" +msgstr "Fils du serveur de donnĆ©es" + +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:754 +msgid "Web threads" +msgstr "Fils web" + +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:770 +msgid "SNMP threads" +msgstr "Fils SNMP" + +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:786 +msgid "ICMP threads" +msgstr "Fils ICMP" + +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:816 +msgid "Autocreate group" +msgstr "CrĆ©ation automatique dā€™un groupe" + +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:832 +msgid "Autocreate group force" +msgstr "Forcer la crĆ©ation automatique dā€™un groupe" + +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:847 +msgid "Autocreate" +msgstr "CrĆ©ation automatique" + +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:865 +msgid "Server features" +msgstr "FonctionnalitĆ©s du serveur" + +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:872 +msgid "Optimization settings" +msgstr "ParamĆØtres dā€™optimisation" + +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:879 +msgid "Other server settings" +msgstr "Autres paramĆØtres du serveur" + +#: ../../enterprise/godmode/servers/manage_credential_boxes.php:20 +msgid "Add Credential Box" +msgstr "Zone Ajouter des identifiants" + +#: ../../enterprise/godmode/servers/manage_export_form.php:125 +msgid "Target directory" +msgstr "RĆ©pertoire cible" + +#: ../../enterprise/godmode/servers/manage_export_form.php:129 +#: ../../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:566 +msgid "Extra options" +msgstr "Options supplĆ©mentaires" + +#: ../../enterprise/godmode/servers/list_satellite.php:27 +msgid "Satellite Server" +msgstr "Serveur Satellite" + +#: ../../enterprise/include/functions_cron.php:178 +#: ../../enterprise/include/functions_cron.php:256 +#: ../../enterprise/include/functions_cron.php:331 +#: ../../enterprise/include/functions_cron.php:375 +msgid "Report to build" +msgstr "Rapport Ć  construire" + +#: ../../enterprise/include/functions_cron.php:186 +#: ../../enterprise/include/functions_cron.php:236 +#: ../../enterprise/include/functions_reporting.php:8179 +#: ../../enterprise/operation/reporting/custom_reporting.php:124 +msgid "Send to emails (separated by comma)" +msgstr "Envoyer aux courriels (sĆ©parĆ©s par des virgules)" + +#: ../../enterprise/include/functions_cron.php:190 +#: ../../enterprise/include/functions_cron.php:240 +#: ../../enterprise/include/functions_reporting.php:8187 +#: ../../enterprise/operation/reporting/custom_reporting.php:132 +#: ../../godmode/setup/news.php:183 ../../godmode/setup/news.php:246 +#: ../../operation/messages/message_list.php:199 +#: ../../operation/messages/message_edit.php:350 +msgid "Subject" +msgstr "Objet" + +#: ../../enterprise/include/functions_cron.php:194 +#: ../../enterprise/include/functions_cron.php:244 +#: ../../enterprise/include/functions_reporting.php:8205 +#: ../../enterprise/operation/reporting/custom_reporting.php:150 +#: ../../operation/messages/message_edit.php:360 +msgid "Message" +msgstr "Message" + +#: ../../enterprise/include/functions_cron.php:199 +#: ../../enterprise/include/functions_cron.php:249 +#: ../../enterprise/include/functions_cron.php:275 +msgid "Report Type" +msgstr "Type de rapport" + +#: ../../enterprise/include/functions_cron.php:206 +#: ../../enterprise/include/functions_cron.php:353 +msgid "Template to build" +msgstr "ModĆØle Ć  construire" + +#: ../../enterprise/include/functions_cron.php:224 +msgid "Regexp agent filter" +msgstr "Filtre d'agents Regexp" + +#: ../../enterprise/include/functions_cron.php:228 +#: ../../enterprise/include/functions_tasklist.php:339 +#: ../../include/functions_cron.php:664 +msgid "Report per agent" +msgstr "Rapport par agent" + +#: ../../enterprise/include/functions_cron.php:264 +#: ../../enterprise/include/functions_cron.php:286 +#: ../../enterprise/include/functions_cron.php:376 +msgid "Save to disk into path" +msgstr "Enregistrer le disque sur le chemin" + +#: ../../enterprise/include/functions_cron.php:265 +msgid "The apache user should have read-write access on this folder. Ex: " +msgstr "" +"L'utilisateur apache devrait avoir d'accĆØs de lecture-Ć©criture dans ce fichier. " +"Ex : " + +#: ../../enterprise/include/functions_cron.php:271 +msgid "File name prefix" +msgstr "PrĆ©fixe du nom du fichier" + +#: ../../enterprise/include/functions_cron.php:291 +msgid "Active backups" +msgstr "Sauvegardes actives" + +#: ../../enterprise/include/functions_cron.php:299 +#: ../../enterprise/include/functions_tasklist.php:383 +#: ../../include/functions_cron.php:703 +msgid "Custom script" +msgstr "Script personnalisĆ©" + +#: ../../enterprise/include/functions_cron.php:306 +#: ../../enterprise/include/functions_cron.php:332 +#: ../../enterprise/include/functions_cron.php:354 +msgid "Send to email" +msgstr "Envoyer au courriel" + +#: ../../enterprise/include/functions_cron.php:315 +msgid "Function name" +msgstr "Nom de la fonction" + +#: ../../enterprise/include/functions_cron.php:333 +msgid "Send custom report by email" +msgstr "Envoyer un rapport personnalisĆ© par courriel" + +#: ../../enterprise/include/functions_cron.php:355 +msgid "Send custom report (from template) by email" +msgstr "Envoyer un rapport personnalisĆ© (Ć  partir du modĆØle) par courriel" + +#: ../../enterprise/include/functions_cron.php:377 +msgid "Save custom report to disk" +msgstr "Enregistrer un rapport personnalisĆ© sur le disque" + +#: ../../enterprise/include/functions_cron.php:397 +msgid "Backup Pandora database" +msgstr "Sauvegarde de la base de donnĆ©es de Pandora FMS" + +#: ../../enterprise/include/functions_cron.php:417 +msgid "Execute custom script" +msgstr "ExĆ©cuter le script personnalisĆ©" + +#: ../../enterprise/include/functions_cron.php:499 +msgid "Not scheduled" +msgstr "Non planifiĆ©" + +#: ../../enterprise/include/functions_cron.php:500 +#: ../../include/functions_netflow.php:1849 +msgid "Hourly" +msgstr "Toutes les heures" + +#: ../../enterprise/include/functions_cron.php:504 +msgid "Yearly" +msgstr "Annuellement" + +#: ../../enterprise/include/functions_cron.php:800 +#: ../../enterprise/include/functions_cron.php:833 +#: ../../enterprise/include/functions_reporting.php:8199 +#: ../../enterprise/include/functions_reporting.php:8213 +#: ../../enterprise/operation/reporting/custom_reporting.php:144 +#: ../../enterprise/operation/reporting/custom_reporting.php:158 +msgid "This is an optional field" +msgstr "Il y a un champ optionnel" + +#: ../../enterprise/include/functions_cron.php:1531 +msgid "Scheduled report had an attempt to send an email without attachments." +msgstr "Le rapport programmĆ© a essayĆ© d'envoyer un email sans des fichier joints" + +#: ../../enterprise/include/functions_cron.php:1534 +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:15189 +msgid "Greetings" +msgstr "Bonjour" + +#: ../../enterprise/include/functions_cron.php:1778 +msgid "Attached to this email there's a CSV file of the logs" +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:15195 +msgid "Generated at" +msgstr "GĆ©nĆ©rĆ© le" + +#: ../../enterprise/include/functions_cron.php:1782 +#: ../../include/functions_reporting.php:15197 +msgid "Thanks for your time." +msgstr "Merci pour votre temps." + +#: ../../enterprise/include/functions_cron.php:1784 +#: ../../include/functions_reporting.php:15199 +msgid "Best regards, Pandora FMS" +msgstr "Cordialement, Pandora FMS" + +#: ../../enterprise/include/functions_cron.php:1786 +#: ../../include/functions_reporting.php:15201 +msgid "" +"This is an automatically generated email from Pandora FMS, please do not reply." +msgstr "" +"Ceci est un courriel gĆ©nĆ©rĆ© automatiquement de Pandora FMS. S'il vous plaĆ®t, ne " +"rĆ©pondez pas." + +#: ../../enterprise/include/functions_cron.php:1788 +msgid "logs csv" +msgstr "CSV journaux" + +#: ../../enterprise/include/functions_cron.php:2207 +#, php-format +msgid "Error while executing task: %s, running %s, reason %s" +msgstr "" +"Erreur lors de lā€™exĆ©cution de la tĆ¢che : %s, %s en cours dā€™exĆ©cution, raison %s" + +#: ../../enterprise/include/functions_cron.php:2221 +#: ../../enterprise/include/functions_cron.php:2231 +msgid "Error while executing task" +msgstr "Erreur d'exĆ©cution de la tache : " + +#: ../../enterprise/include/functions_tasklist.php:56 +#: ../../include/class/ConsoleSupervisor.php:2376 +msgid "DiscoveryConsoleTasks is not running properly" +msgstr "DiscoveryConsoleTasks n'est pas exĆ©cutĆ© correctement" + +#: ../../enterprise/include/functions_tasklist.php:58 +msgid "" +"Discovery relies on a proper setup of cron, the time-based scheduling service" +msgstr "" +"Discovery se fonde sur une correcte configuration du cron, le service de " +"programmation basĆ© sur le temps" + +#: ../../enterprise/include/functions_tasklist.php:59 +#: ../../include/class/ConsoleSupervisor.php:2379 +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:2392 +msgid "Last execution" +msgstr "DerniĆØre exĆ©cution" + +#: ../../enterprise/include/functions_tasklist.php:77 +msgid "Please check process is no locked." +msgstr "VĆ©rifiez que le processus n'est pas bloquĆ©." + +#: ../../enterprise/include/functions_tasklist.php:143 +#: ../../enterprise/include/functions_tasklist.php:688 +msgid "There are no console task defined yet." +msgstr "Il n'y a pas de console de tache dĆ©finie encore." + +#: ../../enterprise/include/functions_tasklist.php:156 +#: ../../include/functions_cron.php:467 +msgid "Last run" +msgstr "DerniĆØre exĆ©cution" + +#: ../../enterprise/include/functions_tasklist.php:217 +#: ../../enterprise/include/functions_tasklist.php:279 +#: ../../enterprise/include/functions_tasklist.php:365 +#: ../../enterprise/include/functions_tasklist.php:406 +#: ../../enterprise/include/functions_tasklist.php:459 +#: ../../enterprise/include/functions_tasklist.php:498 +#: ../../enterprise/include/functions_tasklist.php:535 +#: ../../include/functions_cron.php:498 ../../include/functions_cron.php:536 +#: ../../include/functions_cron.php:591 ../../include/functions_cron.php:683 +#: ../../include/functions_cron.php:719 ../../include/functions_cron.php:765 +#: ../../include/functions_cron.php:807 ../../include/functions_cron.php:841 +msgid "Force run" +msgstr "Forcer l'exĆ©cution" + +#: ../../enterprise/include/functions_tasklist.php:253 +#: ../../enterprise/include/functions_tasklist.php:342 +#: ../../enterprise/include/functions_tasklist.php:436 +#: ../../enterprise/include/functions_reporting_csv.php:983 +#: ../../enterprise/include/functions_reporting_csv.php:1184 +#: ../../enterprise/include/functions_reporting_csv.php:1215 +#: ../../enterprise/include/functions_reporting_csv.php:1270 +#: ../../enterprise/include/functions_reporting_csv.php:1325 +#: ../../enterprise/include/functions_reporting_csv.php:1374 +#: ../../enterprise/include/functions_reporting_csv.php:1429 +#: ../../enterprise/include/functions_reporting.php:8125 +#: ../../enterprise/include/functions_reporting.php:8159 +#: ../../enterprise/operation/reporting/custom_reporting.php:109 +#: ../../include/functions_cron.php:574 ../../include/functions_cron.php:667 +#: ../../include/functions_cron.php:791 +msgid "Report type" +msgstr "Type de rapport" + +#: ../../enterprise/include/functions_tasklist.php:313 +#: ../../include/functions_cron.php:638 +msgid "regex" +msgstr "regex" + +#: ../../enterprise/include/functions_tasklist.php:433 +#: ../../extensions/resource_exportation.php:433 +#: ../../include/functions_cron.php:747 ../../include/functions_cron.php:788 +#: ../../include/lib/Dashboard/Widgets/reports.php:318 +#: ../../include/lib/Dashboard/Widgets/reports.php:363 +msgid "Report" +msgstr "Rapport" + +#: ../../enterprise/include/functions_tasklist.php:435 +#: ../../enterprise/include/class/ManageBackups.class.php:166 +#: ../../include/functions_cron.php:749 ../../include/functions_cron.php:790 +#: ../../include/class/Diagnostics.class.php:2175 +msgid "Path" +msgstr "Chemin" + +#: ../../enterprise/include/functions_tasklist.php:569 +msgid "Task disabled" +msgstr "TĆ¢che dĆ©sactivĆ©e" + +#: ../../enterprise/include/functions_tasklist.php:572 +#: ../../enterprise/include/functions_ipam.php:2076 +#: ../../enterprise/include/functions_ipam.php:2077 +#: ../../enterprise/include/functions_ipam.php:2078 +#: ../../enterprise/tools/ipam/ipam_list.php:675 +#: ../../enterprise/tools/ipam/ipam_ajax.php:502 ../../godmode/db/db_main.php:189 +#: ../../godmode/snmpconsole/snmp_alert.php:1330 +#: ../../include/functions_cron.php:869 ../../include/functions_treeview.php:660 +#: ../../include/functions_ui.php:549 +#: ../../operation/agentes/estado_generalagente.php:367 +#: ../../operation/gis_maps/ajax.php:351 ../../operation/gis_maps/ajax.php:362 +#: ../../operation/gis_maps/ajax.php:468 ../../operation/gis_maps/ajax.php:479 +msgid "Never" +msgstr "Jamais" + +#: ../../enterprise/include/functions_tasklist.php:671 +#: ../../godmode/wizards/DiscoveryTaskList.class.php:1024 +#: ../../include/functions_cron.php:943 +msgid "Disable task" +msgstr "DĆ©sactiver la tĆ¢che" + +#: ../../enterprise/include/functions_tasklist.php:671 +#: ../../include/functions_cron.php:943 +msgid "Enable task" +msgstr "Activer la tĆ¢che" + +#: ../../enterprise/include/functions_tasklist.php:693 +msgid "Console Tasks" +msgstr "Taches de console" + +#: ../../enterprise/include/functions_hostdevices.php:45 +msgid "Remote commands enabled" +msgstr "Commandes distantes habilitĆ©es." + +#: ../../enterprise/include/ajax/transactional.ajax.php:174 +#: ../../enterprise/operation/agentes/manage_transmap_creation.php:219 +msgid "The phase does not have a defined script" +msgstr "Cet Ć©tape n'a pas un script dĆ©fini" + +#: ../../enterprise/include/ajax/transactional.ajax.php:211 +#: ../../enterprise/operation/agentes/manage_transmap_creation.php:275 +msgid "Edit Data" +msgstr "Modifier les donnĆ©es" + +#: ../../enterprise/include/ajax/top_n_widget.ajax.php:79 +msgid "avg" +msgstr "moyenne" + +#: ../../enterprise/include/ajax/top_n_widget.ajax.php:80 +#: ../../godmode/reporting/reporting_builder.item_editor.php:4400 +msgid "max" +msgstr "max" + +#: ../../enterprise/include/ajax/top_n_widget.ajax.php:81 +#: ../../godmode/reporting/reporting_builder.item_editor.php:4401 +msgid "min" +msgstr "min" + +#: ../../enterprise/include/ajax/top_n_widget.ajax.php:82 +#: ../../godmode/reporting/reporting_builder.item_editor.php:4402 +msgid "sum" +msgstr "somme" + +#: ../../enterprise/include/ajax/ipam.ajax.php:249 +msgid "Current Networks" +msgstr "RĆ©seaux actuels" + +#: ../../enterprise/include/ajax/ipam.ajax.php:296 +msgid "Please, create networks to assign to " +msgstr "Veuillez crĆ©er des rĆ©seaux Ć  attribuer Ć  " + +#: ../../enterprise/include/ajax/ipam.ajax.php:300 +msgid "No networks to assign to supernet" +msgstr "Aucun rĆ©seau Ć  affecter au supernet" + +#: ../../enterprise/include/ajax/ipam.ajax.php:302 +msgid "Please, create networks to assign to" +msgstr "Veuillez crĆ©er des rĆ©seaux Ć  attribuer Ć " + +#: ../../enterprise/include/ajax/ipam.ajax.php:307 +msgid "Create and add networks in bulk" +msgstr "CrĆ©er et ajouter des rĆ©seaux en bloc" + +#: ../../enterprise/include/ajax/ipam.ajax.php:316 +msgid "Starting network" +msgstr "DĆ©marrage du rĆ©seau" + +#: ../../enterprise/include/ajax/ipam.ajax.php:316 +msgid "" +"The networks will be created/added starting from this address in the subnetting " +"range given by the mask. Use CIDR format (e.g.: 192.168.72.0/22). If no value was " +"provided, it uses the starting address of the supernet by default." +msgstr "" +"Les rĆ©seaux seront crĆ©Ć©s/ajoutĆ©s Ć  partir de cette adresse dans la plage de sous-" +"rĆ©seaux donnĆ©e par le masque. Utilisez le format CIDR (p. ex. : 192.168.72.0/22). " +"Si aucune valeur nā€™a Ć©tĆ© fournie, il utilise lā€™adresse de dĆ©part du super-rĆ©seau " +"par dĆ©faut." + +#: ../../enterprise/include/ajax/ipam.ajax.php:320 +msgid "Max. number" +msgstr "Nombre maximale" + +#: ../../enterprise/include/ajax/ipam.ajax.php:320 +msgid "" +"Maximum number of networks to be created/added from starting address of the range " +"specified above" +msgstr "" +"Nombre maximale de rĆ©seaux Ć  crĆ©er/ajouter Ć  partir de lā€™adresse de dĆ©part de la " +"plage spĆ©cifiĆ©e ci-dessus" + +#: ../../enterprise/include/ajax/ipam.ajax.php:385 +#: ../../enterprise/include/functions_ipam.php:1369 +#: ../../enterprise/include/functions_ipam.php:1983 +#: ../../enterprise/tools/ipam/ipam_list.php:97 +#: ../../enterprise/tools/ipam/ipam_list.php:588 +#: ../../enterprise/tools/ipam/ipam_editor.php:191 +#: ../../godmode/events/event_responses.editor.php:123 +msgid "Location" +msgstr "Emplacement" + +#: ../../enterprise/include/ajax/ipam.ajax.php:386 +#: ../../enterprise/tools/ipam/ipam_editor.php:192 +msgid "For example: Central Data Center" +msgstr "Par exemple : Centre de donnĆ©es" + +#: ../../enterprise/include/ajax/ipam.ajax.php:418 +#: ../../enterprise/tools/ipam/ipam.php:171 ../../enterprise/tools/ipam/ipam.php:411 +#: ../../enterprise/tools/ipam/ipam_editor.php:224 +msgid "Sites" +msgstr "Sites" + +#: ../../enterprise/include/ajax/ipam.ajax.php:419 +#: ../../enterprise/tools/ipam/ipam_editor.php:225 +msgid "For example: Pandora" +msgstr "Par exemple : Pandora" + +#: ../../enterprise/include/ajax/ipam.ajax.php:437 +#: ../../enterprise/tools/ipam/ipam_list.php:609 +#: ../../enterprise/tools/ipam/ipam_editor.php:243 +msgid "Vrf" +msgstr "Vrf" + +#: ../../enterprise/include/ajax/ipam.ajax.php:438 +#: ../../enterprise/tools/ipam/ipam_editor.php:244 +msgid "Virtual Routing and Forwarding" +msgstr "Routage et transfert virtuels" + +#: ../../enterprise/include/ajax/ipam.ajax.php:456 +#: ../../enterprise/tools/ipam/ipam_editor.php:262 +msgid "Include statistical monitors" +msgstr "Inclure des moniteurs statistiques" + +#: ../../enterprise/include/ajax/ipam.ajax.php:471 +#: ../../enterprise/tools/ipam/ipam_editor.php:277 +msgid "Lightweight mode" +msgstr "Mode lĆ©ger" + +#: ../../enterprise/include/ajax/ipam.ajax.php:472 +#: ../../enterprise/tools/ipam/ipam_editor.php:278 +msgid "Use quicker network scan" +msgstr "Utiliser des scans rĆ©seau" + +#: ../../enterprise/include/ajax/ipam.ajax.php:488 +#: ../../enterprise/tools/ipam/ipam_editor.php:294 +msgid "Target group for monitoring agent" +msgstr "Group cible pour l'agent de supervision" + +#: ../../enterprise/include/ajax/ipam.ajax.php:509 +#: ../../enterprise/tools/ipam/ipam_editor.php:315 +msgid "Scan interval" +msgstr "VĆ©rifier intervalle" + +#: ../../enterprise/include/ajax/ipam.ajax.php:510 +#: ../../enterprise/tools/ipam/ipam_editor.php:316 +msgid "0 for manually scan" +msgstr "0 pour vĆ©rification manuelle" + +#: ../../enterprise/include/ajax/ipam.ajax.php:524 +#: ../../enterprise/tools/ipam/ipam_editor.php:330 +msgid "The list of users can manage the networks in the IPAM." +msgstr "La liste des utilisateurs peut gĆ©rer les rĆ©seaux dans lā€™IPAM." + +#: ../../enterprise/include/ajax/ipam.ajax.php:525 +#: ../../enterprise/tools/ipam/ipam_editor.php:331 +msgid " Only the admin users can manage networks and edit the networks" +msgstr "" +" Seuls les utilisateurs administrateurs peuvent gĆ©rer les rĆ©seaux et modifier les " +"rĆ©seaux" + +#: ../../enterprise/include/ajax/ipam.ajax.php:526 +#: ../../enterprise/tools/ipam/ipam_editor.php:332 +msgid "Operator users" +msgstr "Utilisateurs de l'opĆ©rateur" + +#: ../../enterprise/include/ajax/ipam.ajax.php:532 +#: ../../enterprise/tools/ipam/ipam_editor.php:338 +msgid "All users" +msgstr "Tous les utilisateurs" + +#: ../../enterprise/include/ajax/ipam.ajax.php:613 +#: ../../enterprise/tools/ipam/ipam_supernet_config.php:536 +#: ../../enterprise/tools/ipam/ipam_supernet_network.php:82 +msgid "Supernet" +msgstr "Super-rĆ©seau" + +#: ../../enterprise/include/ajax/ipam.ajax.php:614 +#: ../../enterprise/include/ajax/ipam.ajax.php:644 +#: ../../enterprise/include/functions_ipam.php:1980 +#: ../../enterprise/tools/ipam/ipam_list.php:570 +#: ../../enterprise/tools/ipam/ipam_vlan_network.php:63 +#: ../../enterprise/tools/ipam/ipam_calculator.php:185 +#: ../../enterprise/tools/ipam/ipam_supernet_network.php:58 +#: ../../enterprise/tools/ipam/ipam_supernet_network.php:83 +#: ../../enterprise/tools/ipam/ipam_editor.php:122 +#: ../../godmode/wizards/HostDevices.class.php:916 +#: ../../godmode/wizards/DiscoveryTaskList.class.php:597 +#: ../../include/functions_ui.php:870 ../../operation/menu.php:78 +msgid "Network" +msgstr "RĆ©seau" + +#: ../../enterprise/include/ajax/ipam.ajax.php:622 +msgid "Go to supernet edition" +msgstr "Aller Ć  lā€™Ć©dition supernet" + +#: ../../enterprise/include/ajax/ipam.ajax.php:664 +msgid "Go to network edition" +msgstr "Aller Ć  lā€™Ć©dition rĆ©seau" + +#: ../../enterprise/include/ajax/ipam.ajax.php:691 +#: ../../enterprise/include/ajax/ipam.ajax.php:748 +#: ../../enterprise/include/ajax/ipam.ajax.php:779 +#: ../../enterprise/include/ajax/ipam.ajax.php:826 +#: ../../enterprise/tools/ipam/ipam_supernet_config.php:1176 +#: ../../enterprise/tools/ipam/ipam_supernet_config.php:1306 +#: ../../enterprise/tools/ipam/ipam_vlan_config.php:702 +msgid "No assigned networks" +msgstr "RĆ©seaux non-attribuĆ©s" + +#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:94 +#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:253 +msgid "Group name" +msgstr "Nom du groupe" + +#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:118 +#: ../../include/lib/Dashboard/Widgets/os_quick_report.php:284 +msgid "OS name" +msgstr "Nom du systĆØme d'exploitation" + +#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:136 +msgid "IP Network range" +msgstr "Intervalle rĆ©seau d'IP" + +#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:141 +msgid "Script" +msgstr "Script" + +#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:143 +msgid "Arguments" +msgstr "Arguments" + +#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:149 +msgid "Unknown option" +msgstr "Option inconnue" -#: ../../operation/agentes/estado_generalagente.php:546 -#: ../../operation/agentes/agent_fields.php:44 -#: ../../include/functions_treeview.php:783 #: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:256 +#: ../../include/functions_treeview.php:783 +#: ../../operation/agentes/agent_fields.php:44 +#: ../../operation/agentes/estado_generalagente.php:544 msgid "Custom field" msgstr "Champ personnalisĆ©" -#: ../../operation/agentes/estado_generalagente.php:600 -msgid "Agent access rate (Last 24h)" -msgstr "Taux d'accĆØs des agents (derniĆØres 24h)" +#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:257 +msgid "IP range" +msgstr "Intervalle d'IP" -#: ../../operation/agentes/estado_generalagente.php:639 -msgid "Active incident on this agent" -msgstr "Incident actif sur cet agent" +#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:258 +msgid "Script output (> 0)" +msgstr "sortie de le script (> 0)" -#: ../../operation/agentes/estado_generalagente.php:643 -#: ../../godmode/setup/news.php:248 -msgid "Author" -msgstr "Auteur" +#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:435 +#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:542 +#: ../../godmode/snmpconsole/snmp_alert.php:1110 +#: ../../godmode/snmpconsole/snmp_alert.php:1257 +msgid "Alert action" +msgstr "Action de l'alerte" -#: ../../operation/agentes/estado_generalagente.php:650 -#: ../../operation/incidents/integriaims_export_csv.php:81 -#: ../../operation/incidents/configure_integriaims_incident.php:213 -#: ../../operation/incidents/list_integriaims_incidents.php:516 -#: ../../include/lib/Dashboard/Widget.php:549 -#: ../../include/rest-api/models/VisualConsole/Items/Odometer.php:404 +#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:455 +#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:562 +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" +msgstr "Argument du script" + +#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:471 +#: ../../godmode/alerts/alert_list.list.php:703 +#: ../../godmode/alerts/alert_list.list.php:1182 +msgid "Update action" +msgstr "Mettre Ć  jour l'action" + +#: ../../enterprise/include/ajax/url_route_analyzer.ajax.php:33 +msgid "Global time: " +msgstr "Temps global : " + +#: ../../enterprise/include/ajax/log_viewer.ajax.php:55 #: ../../enterprise/include/functions_reporting_csv.php:421 #: ../../enterprise/include/functions_reporting_csv.php:443 #: ../../enterprise/include/functions_reporting_csv.php:474 @@ -12443,359 +22492,10630 @@ msgstr "Auteur" #: ../../enterprise/include/functions_reporting_csv.php:2661 #: ../../enterprise/include/functions_reporting_csv.php:2710 #: ../../enterprise/include/functions_reporting_csv.php:2787 -#: ../../enterprise/include/ajax/log_viewer.ajax.php:55 #: ../../godmode/setup/setup_integria.php:333 #: ../../godmode/setup/setup_integria.php:454 +#: ../../include/rest-api/models/VisualConsole/Items/Odometer.php:404 +#: ../../include/lib/Dashboard/Widget.php:555 +#: ../../operation/agentes/estado_generalagente.php:649 +#: ../../operation/incidents/integriaims_export_csv.php:81 +#: ../../operation/incidents/configure_integriaims_incident.php:213 +#: ../../operation/incidents/list_integriaims_incidents.php:516 msgid "Title" msgstr "Titre" -#: ../../operation/agentes/estado_generalagente.php:652 -#: ../../operation/incidents/integriaims_export_csv.php:85 -#: ../../operation/incidents/configure_integriaims_incident.php:296 -#: ../../operation/incidents/list_integriaims_incidents.php:348 -#: ../../operation/incidents/list_integriaims_incidents.php:519 -#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:325 -#: ../../include/functions_events.php:4671 -#: ../../include/functions_reporting_html.php:5087 -#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:423 -#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:483 -#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:530 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:817 -#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:82 -#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:464 -#: ../../enterprise/godmode/massive/massive_delete_alerts_snmp.php:204 -#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:264 -#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:328 -#: ../../godmode/setup/setup_integria.php:379 -#: ../../godmode/setup/setup_integria.php:501 -#: ../../godmode/snmpconsole/snmp_alert.php:1105 -#: ../../godmode/snmpconsole/snmp_alert.php:1168 -#: ../../godmode/agentes/agent_incidents.php:91 -#: ../../godmode/alerts/configure_alert_template.php:1118 -#: ../../godmode/alerts/alert_list.list.php:126 -#: ../../godmode/alerts/alert_templates.php:51 -#: ../../godmode/alerts/alert_view.php:124 -msgid "Priority" -msgstr "PrioritĆ©" +#: ../../enterprise/include/ajax/log_viewer.ajax.php:65 +msgid "Capture regexp" +msgstr "Capturer regexp" -#: ../../operation/agentes/estado_generalagente.php:721 -#: ../../operation/agentes/pandora_networkmap.view.php:1234 -#: ../../include/functions_treeview.php:878 -msgid "Interface traffic" -msgstr "Trafic d'interface" +#: ../../enterprise/include/ajax/log_viewer.ajax.php:85 +#: ../../enterprise/include/functions_reporting_pdf.php:542 +#: ../../enterprise/include/functions_reporting_pdf.php:598 +#: ../../include/functions_reporting_html.php:3627 +#: ../../include/functions_reporting_html.php:3695 +msgid "Average" +msgstr "Moyenne" -#: ../../operation/agentes/estado_generalagente.php:798 -msgid "Events info (24hr.)" -msgstr "Information des Ć©vĆ©nements (24h)" +#: ../../enterprise/include/ajax/log_viewer.ajax.php:175 +msgid "Empty ip or port" +msgstr "IP ou port vide" -#: ../../operation/agentes/estado_generalagente.php:818 -#: ../../operation/agentes/pandora_networkmap.view.php:1857 -msgid "Last contact: " -msgstr "Dernier contact : " +#: ../../enterprise/include/ajax/log_viewer.ajax.php:192 +msgid "Curl Error: " +msgstr "Erreur Curl : " -#: ../../operation/agentes/estado_generalagente.php:891 -#: ../../enterprise/views/cluster/view.php:369 -msgid "Events (Last 24h)" -msgstr "ƉvĆ©nements (DerniĆØres 24h)" +#: ../../enterprise/include/process_reset_pass.php:53 +#: ../../enterprise/include/reset_pass.php:48 ../../general/login_page.php:136 +#: ../../general/login_page.php:139 ../../general/login_page.php:155 +msgid "Docs" +msgstr "Documents" -#: ../../operation/agentes/estado_generalagente.php:943 -msgid "Interface information (SNMP)" -msgstr "Information de l'interface (SNMP)" +#: ../../enterprise/include/process_reset_pass.php:159 +#: ../../enterprise/include/process_reset_pass.php:162 +#: ../../enterprise/include/reset_pass.php:146 +#: ../../enterprise/include/reset_pass.php:149 +#: ../../include/functions_config.php:2400 +msgid "ONE TOOL TO MONITOR THEM ALL" +msgstr "UN OUTIL POUR LES GOUVERNER TOUS" -#: ../../operation/agentes/snapshot_view.php:42 -msgid "Cannot connect with node to display the module data." -msgstr "Impossible de se connecter au nœud pour afficher les donnĆ©es du module." +#: ../../enterprise/include/functions_log.php:279 +#: ../../enterprise/include/functions_log.php:282 +msgid "Lines" +msgstr "Lignes" -#: ../../operation/agentes/snapshot_view.php:90 +#: ../../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:684 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:645 +#: ../../operation/tree.php:415 ../../operation/tree.php:446 +#: ../../operation/network/network_report.php:313 +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:1716 +msgid "Added" +msgstr "AjoutĆ©" + +#: ../../enterprise/include/functions_inventory.php:891 +#: ../../enterprise/include/functions_inventory.php:956 +#: ../../include/functions_reporting_html.php:1727 +#: ../../include/functions_filemanager.php:342 +#: ../../include/functions_filemanager.php:359 +msgid "Deleted" +msgstr "SupprimĆ©" + +#: ../../enterprise/include/functions_transactional.php:631 +msgid "Error in dependencies field" +msgstr "Erreur dans le champ de dĆ©pendances" + +#: ../../enterprise/include/functions_transactional.php:640 +msgid "Error in enables field" +msgstr "Erreur dans le champ d'activation" + +#: ../../enterprise/include/auth/saml.php:119 #, php-format -msgid "%s Snapshot data view for module (%s)" -msgstr "%s Vue de donnĆ©es d'instantanĆ© pour le module (%s)" +msgid "Pandora FMS SAML authentication error: %s" +msgstr "Erreur d'authentification SAML Pandora FMS : %s" -#: ../../operation/agentes/snapshot_view.php:96 +#: ../../enterprise/include/auth/saml.php:184 +msgid "Force log out" +msgstr "Forcer dĆ©connexion" + +#: ../../enterprise/include/auth/saml.php:241 ../../include/auth/mysql.php:372 +#: ../../include/auth/mysql.php:402 ../../include/auth/mysql.php:437 +msgid "Please, login into metaconsole first" +msgstr "Veuillez d'abord vous connecter Ć  la MĆ©taconsole" + +#: ../../enterprise/include/functions_collection.php:39 #, php-format -msgid "Current data at %s" -msgstr "DonnĆ©es actuelles chez %s" +msgid "Collection %d does not exist" +msgstr "La collection %d n'existe pas" -#: ../../operation/agentes/pandora_networkmap.view.php:1611 -msgid "Success be updated." -msgstr "Mis Ć  jour correctement" +#: ../../enterprise/include/functions_collection.php:48 +msgid "Collection dir does not exist." +msgstr "Le rĆ©pertoire de la collection n'existe pas." -#: ../../operation/agentes/pandora_networkmap.view.php:1613 -#: ../../enterprise/tools/ipam/ipam_action.php:374 -msgid "Could not be updated." -msgstr "Erreur de mise Ć  jour" - -#: ../../operation/agentes/pandora_networkmap.view.php:1708 -msgid "Name: " -msgstr "NomĀ : " - -#: ../../operation/agentes/pandora_networkmap.view.php:1758 -msgid "Policy: " -msgstr "Politique : " - -#: ../../operation/agentes/pandora_networkmap.view.php:1805 -#: ../../enterprise/extensions/vmware/vmware_manager.php:269 -msgid "Status: " -msgstr "ƉtatĀ : " - -#: ../../operation/agentes/pandora_networkmap.view.php:1855 -msgid "Data: " -msgstr "DonnĆ©es : " - -#: ../../operation/agentes/status_events.php:26 -#: ../../operation/agentes/status_events.php:27 -msgid "Latest events for this agent" -msgstr "Derniers Ć©vĆ©nements pour cet agent" - -#: ../../operation/agentes/gis_view.php:59 -#: ../../godmode/agentes/agent_conf_gis.php:38 -msgid "There is no default map. Please go to the setup for to set a default map." -msgstr "" -"Il n'y a pas de carte par dĆ©faut. Veuillez accĆ©der Ć  la configuration pour " -"dĆ©finir une carte par dĆ©faut." - -#: ../../operation/agentes/gis_view.php:96 -msgid "Period to show data as path" -msgstr "PĆ©riode pour montrer les donnĆ©es comme chemin" - -#: ../../operation/agentes/gis_view.php:100 -msgid "Refresh path" -msgstr "RafraĆ®chir le chemin" - -#: ../../operation/agentes/gis_view.php:158 -msgid "This agent doesn't have any GIS data." -msgstr "Cet agent ne possĆØde pas de donnĆ©es GIS." - -#: ../../operation/agentes/gis_view.php:170 -msgid "Positional data from the last" -msgstr "DonnĆ©es de position des derniers" - -#: ../../operation/agentes/gis_view.php:209 +#: ../../enterprise/include/functions_collection.php:57 #, php-format -msgid "%s Km" -msgstr "%s Km" +msgid "Failed to create collection path: %s" +msgstr "Erreur de crĆ©ation du chemin de la collection : %s" -#: ../../operation/agentes/gis_view.php:217 -#: ../../godmode/setup/gis_step_2.php:483 -msgid "Longitude" -msgstr "Longitude" +#: ../../enterprise/include/functions_collection.php:66 +msgid "Target collection path is not writable" +msgstr "Le chemin de la collection cible ne peut pas ĆŖtre Ć©crit" -#: ../../operation/agentes/gis_view.php:218 -#: ../../godmode/setup/gis_step_2.php:465 -msgid "Latitude" -msgstr "Latitude" +#: ../../enterprise/include/functions_collection.php:80 +msgid "Failed to create zip file for collection" +msgstr "Erreur de crĆ©ation du fichier zip pour la collection" -#: ../../operation/agentes/gis_view.php:219 -#: ../../godmode/setup/gis_step_2.php:501 -msgid "Altitude" -msgstr "Altitude" +#: ../../enterprise/include/functions_collection.php:87 +#, php-format +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)" -#: ../../operation/agentes/gis_view.php:221 ../../include/functions_snmp.php:413 -#: ../../include/functions_snmp.php:421 ../../include/rest-api/index.php:361 -#: ../../include/rest-api/models/VisualConsole/Items/ColorCloud.php:460 -#: ../../include/rest-api/models/VisualConsole/Items/ColorCloud.php:520 -#: ../../include/functions_reporting_html.php:3751 +#: ../../enterprise/include/functions_ui.php:79 +msgid "Select inventory module" +msgstr "SĆ©lectionnez un module d'inventaire" + +#: ../../enterprise/include/functions_ui.php:96 +msgid "Use custom fields" +msgstr "utiliser les champs personnalisĆ©s." + +#: ../../enterprise/include/functions_ui.php:179 +msgid "Field name" +msgstr "Nom du champ" + +#: ../../enterprise/include/functions_ui.php:179 +msgid "It's a password" +msgstr "C'est un mot de passe" + +#: ../../enterprise/include/functions_ui.php:179 +msgid "Add field" +msgstr "Ajouter un champ" + +#: ../../enterprise/include/functions_reporting_pdf.php:72 +#: ../../include/class/Diagnostics.class.php:2130 +#: ../../include/class/Diagnostics.class.php:2248 +#, php-format +msgid "Automated %s report for user defined report" +msgstr "Rapport %s automatisĆ© pour le port dĆ©fini par l'utilisateur" + +#: ../../enterprise/include/functions_reporting_pdf.php:526 +#: ../../enterprise/include/functions_reporting_pdf.php:558 +#: ../../enterprise/include/functions_reporting_pdf.php:584 +#: ../../enterprise/include/functions_reporting_pdf.php:609 +#: ../../enterprise/include/functions_reporting_pdf.php:612 +#: ../../enterprise/include/functions_reporting_pdf.php:619 +#: ../../enterprise/include/functions_reporting_csv.php:1290 +#: ../../include/functions_reporting_html.php:3610 +#: ../../include/functions_reporting_html.php:3639 +#: ../../include/functions_reporting_html.php:3680 +#: ../../include/functions_reporting_html.php:3703 +#: ../../include/functions_reporting_html.php:3706 +#: ../../include/functions_reporting_html.php:3713 +#: ../../include/functions_reporting.php:6840 +#: ../../include/functions_reporting.php:6863 +#: ../../include/functions_reporting.php:6878 +#: ../../include/functions_reporting.php:6894 +#: ../../include/functions_reporting.php:6909 +msgid "Maximun" +msgstr "Maximun" + +#: ../../enterprise/include/functions_reporting_pdf.php:534 +#: ../../enterprise/include/functions_reporting_pdf.php:591 +#: ../../include/functions_reporting_html.php:3618 +#: ../../include/functions_reporting_html.php:3687 +msgid "Minimun" +msgstr "Minimum" + +#: ../../enterprise/include/functions_reporting_pdf.php:583 +#: ../../enterprise/include/functions_reporting_pdf.php:590 +#: ../../enterprise/include/functions_reporting_pdf.php:597 +#: ../../enterprise/include/functions_reporting_pdf.php:611 +#: ../../enterprise/include/functions_reporting_pdf.php:616 +#: ../../enterprise/include/functions_reporting_csv.php:1235 +#: ../../enterprise/include/functions_reporting_csv.php:1290 +#: ../../enterprise/include/functions_reporting_csv.php:1394 +#: ../../include/functions_reporting_html.php:3679 +#: ../../include/functions_reporting_html.php:3686 +#: ../../include/functions_reporting_html.php:3694 +#: ../../include/functions_reporting_html.php:3705 +#: ../../include/functions_reporting_html.php:3710 +#: ../../include/functions_reporting.php:6858 +msgid "Lapse" +msgstr "Intervalle" + +#: ../../enterprise/include/functions_reporting_pdf.php:946 +#: ../../include/functions_reporting_html.php:2043 +#: ../../include/lib/Dashboard/Widgets/agent_module.php:536 +#, php-format +msgid "%s in %s : NORMAL" +msgstr "%s en %s : NORMAL" + +#: ../../enterprise/include/functions_reporting_pdf.php:963 +#: ../../include/functions_reporting_html.php:1955 +#: ../../include/lib/Dashboard/Widgets/agent_module.php:552 +#, php-format +msgid "%s in %s : CRITICAL" +msgstr "%s en %s : CRITIQUE" + +#: ../../enterprise/include/functions_reporting_pdf.php:980 +#: ../../include/functions_reporting_html.php:1972 +#: ../../include/lib/Dashboard/Widgets/agent_module.php:568 +#, php-format +msgid "%s in %s : WARNING" +msgstr "%s en %s : ALERTE" + +#: ../../enterprise/include/functions_reporting_pdf.php:997 +#: ../../include/functions_reporting_html.php:1989 +#: ../../include/lib/Dashboard/Widgets/agent_module.php:584 +#, php-format +msgid "%s in %s : UNKNOWN" +msgstr "%s in %s : INCONNU" + +#: ../../enterprise/include/functions_reporting_pdf.php:1014 +#: ../../include/functions_reporting_html.php:2025 +#: ../../include/lib/Dashboard/Widgets/agent_module.php:600 +#, php-format +msgid "%s in %s : Not initialize" +msgstr "%s in %s : Non initialisĆ©es" + +#: ../../enterprise/include/functions_reporting_pdf.php:1031 +#: ../../include/functions_reporting_html.php:2008 +#: ../../include/lib/Dashboard/Widgets/agent_module.php:617 +#, php-format +msgid "%s in %s : ALERTS FIRED" +msgstr "%s in %s : ALERTES DƉCLENCHƉES" + +#: ../../enterprise/include/functions_reporting_pdf.php:1785 +#: ../../enterprise/include/functions_reporting_csv.php:2220 +#: ../../enterprise/include/functions_reporting_csv.php:2224 +#: ../../include/functions_reporting_html.php:138 +msgid "Generated" +msgstr "GĆ©nĆ©rĆ©" + +#: ../../enterprise/include/functions_reporting_pdf.php:1789 +#: ../../include/functions_reporting_html.php:141 +msgid "Report date" +msgstr "Date du rapport" + +#: ../../enterprise/include/functions_reporting_pdf.php:1808 +#: ../../include/functions_reporting_html.php:150 +#: ../../operation/reporting/reporting_viewer.php:307 +msgid "Items period before" +msgstr "PĆ©riode d'articles avant" + +#: ../../enterprise/include/functions_reporting_pdf.php:1838 +msgid "Contents" +msgstr "Contenu" + +#: ../../enterprise/include/functions_reporting_pdf.php:1984 #: ../../enterprise/include/functions_reporting_csv.php:716 #: ../../enterprise/include/functions_reporting_csv.php:952 #: ../../enterprise/include/functions_reporting_csv.php:1325 -#: ../../enterprise/include/functions_reporting_pdf.php:1984 #: ../../godmode/agentes/planned_downtime.list.php:302 +#: ../../include/functions_reporting_html.php:3796 +#: ../../include/functions_snmp.php:413 ../../include/functions_snmp.php:421 +#: ../../include/rest-api/index.php:361 +#: ../../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 "ƀ" -#: ../../operation/agentes/gis_view.php:223 -msgid "Distance" -msgstr "Distance" +#: ../../enterprise/include/functions_reporting_pdf.php:1988 +#: ../../include/functions_reporting_html.php:90 +#: ../../include/functions_reporting_html.php:5575 +#: ../../include/functions_treeview.php:319 +#: ../../operation/agentes/interface_view.functions.php:539 +msgid "Last data" +msgstr "DerniĆØres donnĆ©es" -#: ../../operation/agentes/gis_view.php:224 -msgid "# of Packages" -msgstr "Nombre de progiciels" +#: ../../enterprise/include/functions_visual_map.php:203 +#: ../../enterprise/include/functions_visual_map.php:268 +msgid "Crit:" +msgstr "Critique :" + +#: ../../enterprise/include/functions_visual_map.php:207 +#: ../../enterprise/include/functions_visual_map.php:272 +msgid "Warn:" +msgstr "Avertissement :" + +#: ../../enterprise/include/functions_visual_map.php:211 +#: ../../enterprise/include/functions_visual_map.php:276 +msgid "Ok:" +msgstr "OK :" + +#: ../../enterprise/include/functions_visual_map.php:672 +msgid "None of the services was added" +msgstr "Aucun des services a Ć©tĆ© ajoutĆ©" + +#: ../../enterprise/include/functions_visual_map.php:674 +#, php-format +msgid "%d services couldn't be added" +msgstr "Les services %d n'ont pas pu ĆŖtre ajoutĆ©s." + +#: ../../enterprise/include/functions_visual_map.php:680 +msgid "There was an error retrieving the visual map information" +msgstr "Erreur de rĆ©cupĆ©ration de l'information de la carte visuelle" + +#: ../../enterprise/include/functions_visual_map.php:683 +#: ../../enterprise/operation/services/services.list.php:104 +msgid "No services selected" +msgstr "Aucun service sĆ©lectionnĆ©" + +#: ../../enterprise/include/functions_backup.php:162 +msgid "Command mysqldump not found." +msgstr "Commande Mysqldump introuvable." + +#: ../../enterprise/include/functions_backup.php:177 +msgid "The mysqldump execution goes wrong." +msgstr "Lā€™exĆ©cution de mysqldump tourne mal." + +#: ../../enterprise/include/functions_backup.php:190 +msgid "" +"In order to make backups it is necessary to check if the configuration is correct." +msgstr "" +"Afin dā€™effectuer des sauvegardes, il est nĆ©cessaire de vĆ©rifier si la " +"configuration est correcte." + +#: ../../enterprise/include/functions_backup.php:256 +msgid "No description" +msgstr "Aucune description" + +#: ../../enterprise/include/functions_backup.php:408 +msgid "Restoring a backup" +msgstr "Restauration d'une sauvegarde" + +#: ../../enterprise/include/functions_backup.php:410 +#, php-format +msgid "Restoring a %s database backup must be done manually." +msgstr "" +"La restoration d'une sauvegarde de base de donnĆ©es %s doit ĆŖtre fait manuellement." + +#: ../../enterprise/include/functions_backup.php:412 +msgid "" +"It's a complex operation that needs human intervation to avoid system failures " +"and data loosing" +msgstr "" +"Il s'agit d'une opĆ©ration complexe qui requiert une intervention humaine afin " +"d'Ć©viter les pannes de systĆØme et la perte de donnĆ©es." + +#: ../../enterprise/include/functions_backup.php:414 +msgid "To restore the selected backup, please follow these steps" +msgstr "Pour restaurer la sauvegarde sĆ©lectionnĆ©e, veuillez suivre ces Ć©tapes." + +#: ../../enterprise/include/functions_backup.php:420 +msgid "Open a root shell in your system located at " +msgstr "Ouvrez une interface systĆØme racine sur votre systĆØme situĆ© Ć  " + +#: ../../enterprise/include/functions_backup.php:424 +msgid "Connect to MySQL database using the following command" +msgstr "Se connecter Ć  la base de donnĆ©es MySQL en utilisant la commande suivante" + +#: ../../enterprise/include/functions_backup.php:430 +msgid "Create a new database" +msgstr "CrĆ©er une nouvelle base de donnĆ©es" + +#: ../../enterprise/include/functions_backup.php:454 +msgid "Restore the backup" +msgstr "Restaurer la sauvegarde" + +#: ../../enterprise/include/functions_backup.php:469 +msgid "Modify console configuration to use this new database" +msgstr "" +"Modifier la configuration de la console pour utiliser cette nouvelle base de " +"donnĆ©es" + +#: ../../enterprise/include/functions_backup.php:470 +msgid "Open configuration file" +msgstr "Ouvrir le fichier de configuration" + +#: ../../enterprise/include/functions_backup.php:473 +#: ../../enterprise/include/functions_backup.php:483 +msgid "Find" +msgstr "Chercher" + +#: ../../enterprise/include/functions_backup.php:475 +#: ../../enterprise/include/functions_backup.php:485 +msgid "and replace with" +msgstr "et les remplacer par" + +#: ../../enterprise/include/functions_backup.php:480 +msgid "Modify servers configuration to use this new database" +msgstr "" +"Modifier la configuration des serveurs Ć  utiliser cette nouvelle base de donnĆ©es" + +#: ../../enterprise/include/functions_backup.php:481 +msgid "Find servers configuration file and replace the following lines" +msgstr "" +"Trouver le fichier de configuration des serveurs et remplacer les lignes suivantes" + +#: ../../enterprise/include/functions_backup.php:490 +msgid "Restart the servers and login again into the console" +msgstr "RedĆ©marrer les serveurs et se connecter Ć  nouveau Ć  la console" + +#: ../../enterprise/include/functions_snmp.php:65 +msgid "Trap status agent recovered" +msgstr "Agent d'Ć©tat de trap rĆ©cupĆ©rĆ©" + +#: ../../enterprise/include/functions_servicemap.php:80 +#: ../../enterprise/include/functions_servicemap.php:1203 +msgid "Failed to retrieve service elements: " +msgstr "Les Ć©lĆ©ments service n'ont pas pu ĆŖtre collectĆ©s : " + +#: ../../enterprise/include/functions_setup.php:79 +#: ../../enterprise/include/functions_setup.php:125 +msgid "Log collector" +msgstr "Collecteur de journaux" + +#: ../../enterprise/include/functions_setup.php:151 +msgid "Metaconsole link status" +msgstr "Ɖtat du lien de la MĆ©taconsole" + +#: ../../enterprise/include/functions_setup.php:183 +msgid "DB connection" +msgstr "Connexion de la base de donnĆ©es" + +#: ../../enterprise/include/functions_setup.php:205 +msgid "This console is joining a metaconsole." +msgstr "Cette console va se rejoindre avec la MĆ©taconsole." + +#: ../../enterprise/include/functions_setup.php:212 +msgid "There is no metaconsole defined." +msgstr "Il nā€™y a pas de mĆ©taconsole dĆ©finie." + +#: ../../enterprise/include/rest-api/models/VisualConsole/Items/Service.php:236 +#: ../../godmode/reporting/visual_console_builder.elements.php:105 +#: ../../godmode/reporting/visual_console_builder.wizard.php:151 +#: ../../include/functions_visual_map_editor.php:250 +#: ../../include/rest-api/models/VisualConsole/Items/Icon.php:175 +#: ../../include/rest-api/models/VisualConsole/Items/StaticGraph.php:344 +#: ../../include/rest-api/models/VisualConsole/Items/Group.php:522 +#: ../../include/functions_filemanager.php:641 +msgid "Image" +msgstr "Image" + +#: ../../enterprise/include/functions_reporting_csv.php:416 +msgid "Event report agent" +msgstr "Rapport d'Ć©vĆ©nements d'agent" + +#: ../../enterprise/include/functions_reporting_csv.php:418 +msgid "Event report group" +msgstr "Rapport d'Ć©vĆ©nements de groupes" + +#: ../../enterprise/include/functions_reporting_csv.php:442 +msgid "Event report module" +msgstr "Rapport d'Ć©vĆ©nements de module" + +#: ../../enterprise/include/functions_reporting_csv.php:473 +#: ../../enterprise/include/functions_reporting.php:1228 +#: ../../include/functions_reports.php:830 +#: ../../include/functions_reporting.php:8310 +#: ../../include/functions_reporting.php:8702 +msgid "Availability" +msgstr "DisponibilitĆ©" + +#: ../../enterprise/include/functions_reporting_csv.php:521 +#: ../../enterprise/include/functions_reporting_csv.php:1429 +msgid "% OK" +msgstr "% OK" + +#: ../../enterprise/include/functions_reporting_csv.php:530 +#: ../../include/functions_reporting_html.php:613 +msgid "Checks Failed" +msgstr "VĆ©rifications Ć©chouĆ©es" + +#: ../../enterprise/include/functions_reporting_csv.php:662 +msgid "Maximum value" +msgstr "Valeur maximale" + +#: ../../enterprise/include/functions_reporting_csv.php:666 +#: ../../include/functions_reporting_html.php:4342 +msgid "Agent min value" +msgstr "Valeur minimale de l'agent" + +#: ../../enterprise/include/functions_reporting_csv.php:667 +msgid "Minimum value" +msgstr "Valeur minimale" + +#: ../../enterprise/include/functions_reporting_csv.php:670 +msgid "Average value" +msgstr "Valeur moyenne" + +#: ../../enterprise/include/functions_reporting_csv.php:696 +#: ../../include/functions_reports.php:879 +msgid "Agents inventory" +msgstr "inventaire d'agents" + +#: ../../enterprise/include/functions_reporting_csv.php:718 +#: ../../enterprise/operation/agentes/tag_view.php:601 +#: ../../include/functions_treeview.php:668 +#: ../../operation/agentes/estado_agente.php:745 +#: ../../operation/agentes/estado_generalagente.php:362 +#: ../../operation/gis_maps/ajax.php:360 ../../operation/gis_maps/ajax.php:477 +msgid "Remote" +msgstr "ƀ distance" + +#: ../../enterprise/include/functions_reporting_csv.php:718 +msgid "Sec. group" +msgstr "Groupe secondaire" + +#: ../../enterprise/include/functions_reporting_csv.php:718 +msgid "Custom Field" +msgstr "Champ personnalisĆ©" + +#: ../../enterprise/include/functions_reporting_csv.php:740 +#: ../../include/functions_reporting.php:2639 +msgid "Inventory Changes" +msgstr "Modifications de l'inventaire" + +#: ../../enterprise/include/functions_reporting_csv.php:768 +#: ../../include/functions_reports.php:725 +msgid "Prediction date" +msgstr "Date de prĆ©diction" + +#: ../../enterprise/include/functions_reporting_csv.php:788 +#: ../../include/functions_reporting.php:6313 +msgid "Projection Graph" +msgstr "Graphique de projection" + +#: ../../enterprise/include/functions_reporting_csv.php:817 +msgid "Serialized data " +msgstr "DonnĆ©es sĆ©rialisĆ©es " + +#: ../../enterprise/include/functions_reporting_csv.php:856 +msgid "Last Value " +msgstr "DerniĆØre valeur " + +#: ../../enterprise/include/functions_reporting_csv.php:932 +#: ../../include/functions_reporting.php:1536 +#: ../../operation/snmpconsole/snmp_statistics.php:169 +#: ../../operation/snmpconsole/snmp_statistics.php:237 +#, php-format +msgid "Top %d" +msgstr "Top %d" + +#: ../../enterprise/include/functions_reporting_csv.php:969 +#: ../../include/functions_reporting.php:3719 +msgid "Group Report" +msgstr "Rapport du groupe" + +#: ../../enterprise/include/functions_reporting_csv.php:983 +#: ../../enterprise/operation/services/services.treeview_services.php:263 +#: ../../godmode/db/db_main.php:102 ../../godmode/groups/group_list.php:1042 +#: ../../mobile/operation/groups.php:147 +#: ../../include/functions_reporting_html.php:5655 +#: ../../include/class/Diagnostics.class.php:549 +#: ../../include/functions_reporting.php:11653 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:648 +#: ../../operation/tree.php:454 +msgid "Total agents" +msgstr "Nombre total d'agents" + +#: ../../enterprise/include/functions_reporting_csv.php:983 +msgid "Uknown agents" +msgstr "Agents inconnus" + +#: ../../enterprise/include/functions_reporting_csv.php:983 +#: ../../enterprise/operation/services/services.treeview_services.php:264 +#: ../../godmode/groups/group_list.php:1043 +#: ../../godmode/module_library/module_library_view.php:159 +#: ../../include/class/Diagnostics.class.php:553 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:649 +#: ../../operation/tree.php:455 +msgid "Total modules" +msgstr "Nombre total de modules" + +#: ../../enterprise/include/functions_reporting_csv.php:983 +#: ../../include/functions_reporting.php:11496 +msgid "Defined alerts" +msgstr "Alertes definies" + +#: ../../enterprise/include/functions_reporting_csv.php:983 +#: ../../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:2636 +#: ../../include/functions_reporting.php:11514 +#: ../../include/functions_reporting.php:11537 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:653 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:654 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:655 +#: ../../operation/tree.php:459 ../../operation/tree.php:460 +#: ../../operation/tree.php:461 +msgid "Fired alerts" +msgstr "Alertes dĆ©clenchĆ©es" + +#: ../../enterprise/include/functions_reporting_csv.php:983 +msgid "Last 8 hours events" +msgstr "ƉvĆ©nements des 8 derniĆØres heures" + +#: ../../enterprise/include/functions_reporting_csv.php:986 +#: ../../include/functions_reports.php:777 ../../include/functions_reports.php:783 +msgid "Group report" +msgstr "Rapport du groupe" + +#: ../../enterprise/include/functions_reporting_csv.php:1115 +msgid "Illegal query or any other error" +msgstr "RequĆŖte illĆ©gale ou autre erreur" + +#: ../../enterprise/include/functions_reporting_csv.php:1137 +#: ../../include/functions_reports.php:661 +msgid "SQL vertical bar graph" +msgstr "Graphique Ć  barres verticales SQL" + +#: ../../enterprise/include/functions_reporting_csv.php:1139 +#: ../../include/functions_reports.php:669 +msgid "SQL horizontal bar graph" +msgstr "Graphique Ć  barres horizontales SQL" + +#: ../../enterprise/include/functions_reporting_csv.php:1141 +#: ../../include/functions_reports.php:665 +msgid "SQL pie graph" +msgstr "Diagramme circulaire SQL" + +#: ../../enterprise/include/functions_reporting_csv.php:1170 +#: ../../enterprise/include/functions_reporting_csv.php:1188 +#: ../../enterprise/include/functions_reporting_csv.php:1190 +#: ../../include/functions_reports.php:754 +#: ../../include/functions_reporting.php:6619 +#: ../../include/functions_reporting.php:9980 +msgid "Summatory" +msgstr "Sommation" + +#: ../../enterprise/include/functions_reporting_csv.php:1220 +#: ../../enterprise/include/functions_reporting_csv.php:1222 +#: ../../enterprise/include/functions_reporting_csv.php:1228 +#: ../../enterprise/include/functions_reporting_csv.php:1230 +msgid "Minimum Value" +msgstr "Valeur minimale" + +#: ../../enterprise/include/functions_reporting_csv.php:1235 +#: ../../include/functions_reporting.php:9984 +msgid "Minimum" +msgstr "Minimum" + +#: ../../enterprise/include/functions_reporting_csv.php:1275 +#: ../../enterprise/include/functions_reporting_csv.php:1277 +#: ../../enterprise/include/functions_reporting_csv.php:1283 +#: ../../enterprise/include/functions_reporting_csv.php:1285 +msgid "Maximun Value" +msgstr "Valeur maximale" + +#: ../../enterprise/include/functions_reporting_csv.php:1311 +#: ../../enterprise/include/functions_reporting_csv.php:1325 +#: ../../enterprise/include/functions_reporting_csv.php:1329 +#: ../../enterprise/include/functions_reporting_csv.php:1340 +#: ../../include/functions_reporting_html.php:3799 +#: ../../include/functions_reports.php:762 +#: ../../include/functions_reporting.php:9440 +msgid "Increment" +msgstr "IncrĆ©ment" + +#: ../../enterprise/include/functions_reporting_csv.php:1325 +#: ../../include/functions_reporting_html.php:3797 +msgid "From data" +msgstr "ƀ partir des donnĆ©es" + +#: ../../enterprise/include/functions_reporting_csv.php:1325 +#: ../../include/functions_reporting_html.php:3798 +msgid "To data" +msgstr "Aux donnĆ©es" + +#: ../../enterprise/include/functions_reporting_csv.php:1331 +#: ../../enterprise/include/functions_reporting_csv.php:1342 +#: ../../include/functions_reporting_html.php:3826 +msgid "Negative increase: " +msgstr "Croissance nĆ©gative : " + +#: ../../enterprise/include/functions_reporting_csv.php:1333 +#: ../../enterprise/include/functions_reporting_csv.php:1344 +#: ../../include/functions_reporting_html.php:3828 +msgid "Positive increase: " +msgstr "Croissance positive : " + +#: ../../enterprise/include/functions_reporting_csv.php:1335 +#: ../../enterprise/include/functions_reporting_csv.php:1346 +#: ../../include/functions_reporting_html.php:3830 +msgid "Neutral increase: " +msgstr "Croissance neutre : " + +#: ../../enterprise/include/functions_reporting_csv.php:1360 +#: ../../enterprise/include/functions_reporting_csv.php:1379 +#: ../../enterprise/include/functions_reporting_csv.php:1381 +#: ../../enterprise/include/functions_reporting_csv.php:1387 +#: ../../enterprise/include/functions_reporting_csv.php:1389 +#: ../../include/functions_reporting.php:6624 +msgid "AVG. Value" +msgstr "Valeur moyenne" + +#: ../../enterprise/include/functions_reporting_csv.php:1394 +msgid "AVG" +msgstr "Moyenne" + +#: ../../enterprise/include/functions_reporting_csv.php:1415 +#: ../../enterprise/include/functions_reporting_csv.php:1433 +#: ../../enterprise/include/functions_reporting_csv.php:1435 +#: ../../include/functions_reporting.php:5955 +msgid "Monitor Report" +msgstr "Rapport du moniteur" + +#: ../../enterprise/include/functions_reporting_csv.php:1429 +msgid "% Wrong" +msgstr "% Erreur" + +#: ../../enterprise/include/functions_reporting_csv.php:1444 +msgid "Simple Graph" +msgstr "Graphique simple" + +#: ../../enterprise/include/functions_reporting_csv.php:1504 +#: ../../enterprise/include/functions_reporting_csv.php:1550 +#: ../../enterprise/include/functions_reporting_csv.php:1623 +#: ../../enterprise/include/functions_reporting_csv.php:1742 +#: ../../enterprise/include/functions_reporting_csv.php:2050 +msgid "SLA Max" +msgstr "SLA max" + +#: ../../enterprise/include/functions_reporting_csv.php:1505 +#: ../../enterprise/include/functions_reporting_csv.php:1551 +#: ../../enterprise/include/functions_reporting_csv.php:1624 +#: ../../enterprise/include/functions_reporting_csv.php:1743 +#: ../../enterprise/include/functions_reporting_csv.php:2051 +msgid "SLA Min" +msgstr "SLA min" + +#: ../../enterprise/include/functions_reporting_csv.php:1506 +#: ../../enterprise/include/functions_reporting_csv.php:1552 +#: ../../enterprise/include/functions_reporting_csv.php:1625 +#: ../../enterprise/include/functions_reporting_csv.php:1744 +#: ../../enterprise/include/functions_reporting_csv.php:2052 +#: ../../enterprise/include/functions_reporting.php:1856 +#: ../../enterprise/include/functions_reporting.php:2895 +#: ../../enterprise/include/functions_reporting.php:3882 +#: ../../enterprise/include/functions_reporting.php:6138 +#: ../../include/functions_reporting_html.php:545 +msgid "SLA Limit" +msgstr "Limite SLA" + +#: ../../enterprise/include/functions_reporting_csv.php:1507 +#: ../../enterprise/include/functions_reporting_csv.php:1553 +msgid "Time Total " +msgstr "Temps total " + +#: ../../enterprise/include/functions_reporting_csv.php:1508 +#: ../../enterprise/include/functions_reporting_csv.php:1554 +msgid "Time OK " +msgstr "Temps OK " + +#: ../../enterprise/include/functions_reporting_csv.php:1509 +#: ../../enterprise/include/functions_reporting_csv.php:1555 +msgid "Time Error " +msgstr "Temps erreur " + +#: ../../enterprise/include/functions_reporting_csv.php:1510 +#: ../../enterprise/include/functions_reporting_csv.php:1556 +msgid "Time Unknown " +msgstr "Temps inconnu " + +#: ../../enterprise/include/functions_reporting_csv.php:1511 +#: ../../enterprise/include/functions_reporting_csv.php:1557 +msgid "Time Not Init " +msgstr "Temps non initialisĆ© " + +#: ../../enterprise/include/functions_reporting_csv.php:1512 +#: ../../enterprise/include/functions_reporting_csv.php:1558 +msgid "Time Downtime " +msgstr "Temps d'arrĆŖt " + +#: ../../enterprise/include/functions_reporting_csv.php:1513 +#: ../../enterprise/include/functions_reporting_csv.php:1559 +msgid "Checks Total " +msgstr "VĆ©rifications totales " + +#: ../../enterprise/include/functions_reporting_csv.php:1514 +#: ../../enterprise/include/functions_reporting_csv.php:1560 +msgid "Checks OK " +msgstr "VĆ©rifications OK " + +#: ../../enterprise/include/functions_reporting_csv.php:1515 +#: ../../enterprise/include/functions_reporting_csv.php:1561 +msgid "Checks Error " +msgstr "Erreur vĆ©rifications " + +#: ../../enterprise/include/functions_reporting_csv.php:1516 +#: ../../enterprise/include/functions_reporting_csv.php:1562 +msgid "Checks Unknown " +msgstr "VĆ©rifications inconnues " + +#: ../../enterprise/include/functions_reporting_csv.php:1517 +#: ../../enterprise/include/functions_reporting_csv.php:1563 +msgid "Checks Not Init " +msgstr "VĆ©rifications non initialisĆ©es " + +#: ../../enterprise/include/functions_reporting_csv.php:1518 +#: ../../enterprise/include/functions_reporting_csv.php:1564 +msgid "SLA " +msgstr "SLA " + +#: ../../enterprise/include/functions_reporting_csv.php:1519 +#: ../../enterprise/include/functions_reporting_csv.php:1565 +msgid "Status " +msgstr "Ɖtat " + +#: ../../enterprise/include/functions_reporting_csv.php:1541 +#: ../../enterprise/include/functions_reporting_csv.php:1587 +#: ../../enterprise/include/functions_reporting_csv.php:1905 +#: ../../enterprise/include/functions_reporting.php:1876 +#: ../../enterprise/include/functions_reporting.php:1917 +#: ../../enterprise/include/functions_reporting.php:2920 +#: ../../enterprise/include/functions_reporting.php:2979 +#: ../../enterprise/include/functions_reporting.php:3908 +#: ../../enterprise/include/functions_reporting.php:3967 +#: ../../enterprise/include/functions_reporting.php:6162 +#: ../../include/functions_reporting_html.php:662 +#: ../../include/functions_config.php:1276 ../../include/functions_config.php:3163 +msgid "Fail" +msgstr "Ɖchec" + +#: ../../enterprise/include/functions_reporting_csv.php:1611 +#: ../../enterprise/include/functions_reporting_csv.php:1727 +#: ../../enterprise/include/functions_reporting_csv.php:1967 +#: ../../enterprise/include/functions_reporting_csv.php:2035 +msgid "Subtitle" +msgstr "Sous-titre" + +#: ../../enterprise/include/functions_reporting_csv.php:1626 +#: ../../enterprise/include/functions_reporting_csv.php:1758 +#: ../../enterprise/include/functions_reporting_csv.php:2066 +msgid "Time Total Month" +msgstr "Temps total mois" + +#: ../../enterprise/include/functions_reporting_csv.php:1627 +#: ../../enterprise/include/functions_reporting_csv.php:1759 +#: ../../enterprise/include/functions_reporting_csv.php:2067 +msgid "Time OK Month" +msgstr "Temps OK mois" + +#: ../../enterprise/include/functions_reporting_csv.php:1628 +#: ../../enterprise/include/functions_reporting_csv.php:1760 +#: ../../enterprise/include/functions_reporting_csv.php:2068 +msgid "Time Error Month" +msgstr "Temps erreur mois" + +#: ../../enterprise/include/functions_reporting_csv.php:1629 +#: ../../enterprise/include/functions_reporting_csv.php:1761 +#: ../../enterprise/include/functions_reporting_csv.php:2069 +msgid "Time Unknown Month" +msgstr "Temps inconnu mois" + +#: ../../enterprise/include/functions_reporting_csv.php:1630 +#: ../../enterprise/include/functions_reporting_csv.php:1762 +#: ../../enterprise/include/functions_reporting_csv.php:2070 +msgid "Time Downtime Month" +msgstr "Temps d'arrĆŖt mois" + +#: ../../enterprise/include/functions_reporting_csv.php:1631 +#: ../../enterprise/include/functions_reporting_csv.php:1763 +#: ../../enterprise/include/functions_reporting_csv.php:2071 +msgid "Time Not Init Month" +msgstr "Temps non initialisĆ© mois" + +#: ../../enterprise/include/functions_reporting_csv.php:1632 +#: ../../enterprise/include/functions_reporting_csv.php:1764 +#: ../../enterprise/include/functions_reporting_csv.php:2072 +msgid "Checks Total Month" +msgstr "VĆ©rifications totales mois" + +#: ../../enterprise/include/functions_reporting_csv.php:1633 +#: ../../enterprise/include/functions_reporting_csv.php:1765 +#: ../../enterprise/include/functions_reporting_csv.php:2073 +msgid "Checks OK Month" +msgstr "VĆ©rifications OK mois" + +#: ../../enterprise/include/functions_reporting_csv.php:1634 +#: ../../enterprise/include/functions_reporting_csv.php:1766 +#: ../../enterprise/include/functions_reporting_csv.php:2074 +msgid "Checks Error Month" +msgstr "VĆ©rifications erreur mois" + +#: ../../enterprise/include/functions_reporting_csv.php:1635 +#: ../../enterprise/include/functions_reporting_csv.php:1767 +#: ../../enterprise/include/functions_reporting_csv.php:2075 +msgid "Checks Unknown Month" +msgstr "VĆ©rifications inconnues mois" + +#: ../../enterprise/include/functions_reporting_csv.php:1636 +#: ../../enterprise/include/functions_reporting_csv.php:1768 +#: ../../enterprise/include/functions_reporting_csv.php:2076 +msgid "Checks Not Init Month" +msgstr "VĆ©rifications non initialisĆ©es mois" + +#: ../../enterprise/include/functions_reporting_csv.php:1637 +#: ../../enterprise/include/functions_reporting_csv.php:1769 +#: ../../enterprise/include/functions_reporting_csv.php:2077 +msgid "SLA Month" +msgstr "SLA mois" + +#: ../../enterprise/include/functions_reporting_csv.php:1638 +#: ../../enterprise/include/functions_reporting_csv.php:1770 +#: ../../enterprise/include/functions_reporting_csv.php:2078 +msgid "Status Month" +msgstr "Ɖtat mois" + +#: ../../enterprise/include/functions_reporting_csv.php:1660 +#: ../../enterprise/include/functions_reporting.php:2024 +msgid "Day" +msgstr "Jour" + +#: ../../enterprise/include/functions_reporting_csv.php:1661 +#: ../../enterprise/include/functions_reporting_csv.php:1816 +msgid "Time Total Day" +msgstr "Temps total jour" + +#: ../../enterprise/include/functions_reporting_csv.php:1662 +#: ../../enterprise/include/functions_reporting_csv.php:1817 +msgid "Time OK Day" +msgstr "Temps OK jour" + +#: ../../enterprise/include/functions_reporting_csv.php:1663 +#: ../../enterprise/include/functions_reporting_csv.php:1818 +msgid "Time Error Day" +msgstr "Erreur de temps jour" + +#: ../../enterprise/include/functions_reporting_csv.php:1664 +#: ../../enterprise/include/functions_reporting_csv.php:1819 +msgid "Time Unknown Day" +msgstr "Temps inconnu jour" + +#: ../../enterprise/include/functions_reporting_csv.php:1665 +#: ../../enterprise/include/functions_reporting_csv.php:1820 +msgid "Time Not Init Day" +msgstr "Temps non initialisĆ© jour" + +#: ../../enterprise/include/functions_reporting_csv.php:1666 +#: ../../enterprise/include/functions_reporting_csv.php:1821 +msgid "Time Downtime Day" +msgstr "Temps d'arrĆŖt jour" + +#: ../../enterprise/include/functions_reporting_csv.php:1667 +#: ../../enterprise/include/functions_reporting_csv.php:1822 +msgid "Time Out Day" +msgstr "Temps pause jour" + +#: ../../enterprise/include/functions_reporting_csv.php:1668 +#: ../../enterprise/include/functions_reporting_csv.php:1823 +msgid "Checks Total Day" +msgstr "VĆ©rifications totales jour" + +#: ../../enterprise/include/functions_reporting_csv.php:1669 +#: ../../enterprise/include/functions_reporting_csv.php:1824 +msgid "Checks OK Day" +msgstr "VĆ©rifications OK jour" + +#: ../../enterprise/include/functions_reporting_csv.php:1670 +#: ../../enterprise/include/functions_reporting_csv.php:1825 +msgid "Checks Error Day" +msgstr "VĆ©rifications Erreur" + +#: ../../enterprise/include/functions_reporting_csv.php:1671 +#: ../../enterprise/include/functions_reporting_csv.php:1826 +msgid "Checks Unknown Day" +msgstr "VĆ©rifications inconnues jour" + +#: ../../enterprise/include/functions_reporting_csv.php:1672 +#: ../../enterprise/include/functions_reporting_csv.php:1827 +msgid "Checks Not Init Day" +msgstr "VĆ©rifications non initialisĆ©es jour" + +#: ../../enterprise/include/functions_reporting_csv.php:1673 +#: ../../enterprise/include/functions_reporting_csv.php:1828 +msgid "SLA Day" +msgstr "SLA jour" + +#: ../../enterprise/include/functions_reporting_csv.php:1674 +#: ../../enterprise/include/functions_reporting_csv.php:1829 +msgid "SLA Fixed Day" +msgstr "SLA jour fixe" + +#: ../../enterprise/include/functions_reporting_csv.php:1675 +#: ../../enterprise/include/functions_reporting_csv.php:1830 +msgid "Date From Day" +msgstr "Date Ć  partir du jour" + +#: ../../enterprise/include/functions_reporting_csv.php:1676 +#: ../../enterprise/include/functions_reporting_csv.php:1831 +msgid "Date To Day" +msgstr "Date au jour" + +#: ../../enterprise/include/functions_reporting_csv.php:1677 +#: ../../enterprise/include/functions_reporting_csv.php:1832 +msgid "Status Day" +msgstr "Ɖtat jour" + +#: ../../enterprise/include/functions_reporting_csv.php:1737 +#: ../../enterprise/include/functions_reporting_csv.php:2045 +#: ../../include/functions_html.php:2286 +msgid "Month" +msgstr "Mois" + +#: ../../enterprise/include/functions_reporting_csv.php:1738 +#: ../../enterprise/include/functions_reporting_csv.php:2046 +msgid "Month Number" +msgstr "NumĆ©ro du mois" + +#: ../../enterprise/include/functions_reporting_csv.php:1739 +#: ../../enterprise/include/functions_reporting_csv.php:2047 +msgid "Year" +msgstr "AnnĆ©e" + +#: ../../enterprise/include/functions_reporting_csv.php:1789 +msgid "Time Total week" +msgstr "Temps total semaine" + +#: ../../enterprise/include/functions_reporting_csv.php:1790 +msgid "Time OK week" +msgstr "Temps OK semaine" + +#: ../../enterprise/include/functions_reporting_csv.php:1791 +msgid "Time Error week" +msgstr "Temps erreur semaine" + +#: ../../enterprise/include/functions_reporting_csv.php:1792 +msgid "Time Unknown week" +msgstr "Temps inconnu semaine" + +#: ../../enterprise/include/functions_reporting_csv.php:1793 +msgid "Time Downtime week" +msgstr "Temps d'arrĆŖt semaine" + +#: ../../enterprise/include/functions_reporting_csv.php:1794 +msgid "Time Not Init week" +msgstr "Temps non initialisĆ© semaine" + +#: ../../enterprise/include/functions_reporting_csv.php:1795 +msgid "Checks Total week" +msgstr "VĆ©rifications totales semaine" + +#: ../../enterprise/include/functions_reporting_csv.php:1796 +msgid "Checks OK week" +msgstr "VĆ©rifications OK semaine" + +#: ../../enterprise/include/functions_reporting_csv.php:1797 +msgid "Checks Error week" +msgstr "VĆ©rifications erreur semaine" + +#: ../../enterprise/include/functions_reporting_csv.php:1798 +msgid "Checks Unknown week" +msgstr "VĆ©rifications inconnues semaine" + +#: ../../enterprise/include/functions_reporting_csv.php:1799 +msgid "Status week" +msgstr "Ɖtat semaine" + +#: ../../enterprise/include/functions_reporting_csv.php:1815 +msgid "Day Week" +msgstr "Jour semaine" + +#: ../../enterprise/include/functions_reporting_csv.php:1867 +msgid "S.L.A. Services" +msgstr "Services SLA" + +#: ../../enterprise/include/functions_reporting_csv.php:1885 +msgid "Lost sercice " +msgstr "Service perdu " + +#: ../../enterprise/include/functions_reporting_csv.php:1886 +msgid "Service " +msgstr "Service " + +#: ../../enterprise/include/functions_reporting_csv.php:1887 +msgid "Limit " +msgstr "Limite " + +#: ../../enterprise/include/functions_reporting_csv.php:1888 +msgid "SLA Compilance " +msgstr "ConformitĆ© SLA " + +#: ../../enterprise/include/functions_reporting_csv.php:1889 +msgid "Unknown " +msgstr "Inconnu " + +#: ../../enterprise/include/functions_reporting_csv.php:1890 +msgid "Ok " +msgstr "Ok " + +#: ../../enterprise/include/functions_reporting_csv.php:1891 +msgid "Fail " +msgstr "Ɖchec " + +#: ../../enterprise/include/functions_reporting_csv.php:1892 +msgid "Result " +msgstr "RĆ©sultat " + +#: ../../enterprise/include/functions_reporting_csv.php:1917 +msgid "IPAM Networks" +msgstr "RĆ©seaux IPAM" + +#: ../../enterprise/include/functions_reporting_csv.php:1934 +#: ../../enterprise/include/functions_reporting.php:2317 +#: ../../godmode/events/custom_events.php:96 ../../include/functions_events.php:244 +#: ../../operation/events/events.php:2432 +msgid "Agent ID" +msgstr "ID d'agent" + +#: ../../enterprise/include/functions_reporting_csv.php:1935 +#: ../../enterprise/include/functions_reporting.php:2318 +#: ../../enterprise/include/functions_ipam.php:2040 +#: ../../enterprise/tools/ipam/ipam_network.php:403 +#: ../../enterprise/tools/ipam/ipam_network.php:672 +#: ../../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:1023 ../../mobile/operation/events.php:849 +#: ../../include/functions_reporting_html.php:5774 ../../include/functions.php:3053 +#: ../../include/ajax/events.php:1722 ../../include/class/AuditLog.class.php:112 +#: ../../operation/users/user_edit.php:606 +#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:317 +#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:410 +#: ../../general/logon_ok.php:244 +msgid "Comments" +msgstr "Commentaires" + +#: ../../enterprise/include/functions_reporting_csv.php:1936 +#: ../../enterprise/include/functions_reporting.php:2319 +#: ../../enterprise/include/functions_ipam.php:2038 +#: ../../enterprise/tools/ipam/ipam_network.php:414 +#: ../../godmode/wizards/DiscoveryTaskList.class.php:1391 +msgid "Alive" +msgstr "Actif" + +#: ../../enterprise/include/functions_reporting_csv.php:1977 +msgid "SLA max" +msgstr "SLA max" + +#: ../../enterprise/include/functions_reporting_csv.php:1978 +msgid "SLA min" +msgstr "SLA min" + +#: ../../enterprise/include/functions_reporting_csv.php:1979 +msgid "SLA limit" +msgstr "SLA limite" + +#: ../../enterprise/include/functions_reporting_csv.php:1980 +#: ../../enterprise/include/functions_reporting.php:4967 +#: ../../include/functions_reporting_html.php:579 +msgid "Time Total" +msgstr "Temps total" + +#: ../../enterprise/include/functions_reporting_csv.php:1981 +#: ../../enterprise/include/functions_reporting.php:4970 +#: ../../include/functions_reporting_html.php:581 +#: ../../include/functions_reporting_html.php:3938 +msgid "Time OK" +msgstr "Temps OK" + +#: ../../enterprise/include/functions_reporting_csv.php:1982 +msgid "Time Error" +msgstr "Temps erreur" + +#: ../../enterprise/include/functions_reporting_csv.php:1983 +#: ../../enterprise/include/functions_reporting.php:4971 +#: ../../include/functions_reporting_html.php:582 +#: ../../include/functions_reporting_html.php:3950 +msgid "Time Unknown" +msgstr "Temps inconnu" + +#: ../../enterprise/include/functions_reporting_csv.php:1984 +#: ../../enterprise/include/functions_reporting.php:4972 +#: ../../include/functions_reporting_html.php:583 +msgid "Time Not Init" +msgstr "Temps non initialisĆ©" + +#: ../../enterprise/include/functions_reporting_csv.php:1985 +#: ../../include/functions_reporting_html.php:3962 +msgid "Time Downtime" +msgstr "Temps d'arrĆŖt" + +#: ../../enterprise/include/functions_reporting_csv.php:1986 +#: ../../enterprise/include/functions_reporting.php:5062 +#: ../../include/functions_reporting_html.php:612 +msgid "Checks Total" +msgstr "VĆ©rifications totales" + +#: ../../enterprise/include/functions_reporting_csv.php:1987 +#: ../../enterprise/include/functions_reporting.php:5065 +#: ../../include/functions_reporting_html.php:614 +#: ../../include/functions_reporting_html.php:4032 +msgid "Checks OK" +msgstr "VĆ©rifications OK" + +#: ../../enterprise/include/functions_reporting_csv.php:1988 +msgid "Checks Error" +msgstr "Erreur de vĆ©rifications" + +#: ../../enterprise/include/functions_reporting_csv.php:1989 +#: ../../enterprise/include/functions_reporting.php:5066 +#: ../../include/functions_reporting_html.php:615 +msgid "Checks Unknown" +msgstr "VĆ©rifications inconnues" + +#: ../../enterprise/include/functions_reporting_csv.php:1990 +#: ../../enterprise/include/functions_reporting.php:5067 +msgid "Checks Not Init" +msgstr "VĆ©rifications non initialisĆ©es" + +#: ../../enterprise/include/functions_reporting_csv.php:1991 +#: ../../enterprise/operation/services/services.service.php:128 +#: ../../enterprise/operation/services/services.list.php:508 +#: ../../include/functions_reports.php:698 ../../include/functions_reports.php:703 +#: ../../include/functions_reports.php:707 ../../include/functions_reports.php:711 +#: ../../include/functions_reports.php:717 +msgid "SLA" +msgstr "SLA" + +#: ../../enterprise/include/functions_reporting_csv.php:1992 +msgid "SLA Fixed" +msgstr "SLA fixe" + +#: ../../enterprise/include/functions_reporting_csv.php:2097 +msgid "Time Total day" +msgstr "Temps total jour" + +#: ../../enterprise/include/functions_reporting_csv.php:2098 +msgid "Time OK day" +msgstr "Temps OK jour" + +#: ../../enterprise/include/functions_reporting_csv.php:2099 +msgid "Time Error day" +msgstr "Temps erreur jour" + +#: ../../enterprise/include/functions_reporting_csv.php:2100 +msgid "Time Unknown day" +msgstr "Temps inconnu jour" + +#: ../../enterprise/include/functions_reporting_csv.php:2101 +msgid "Time Downtime day" +msgstr "Temps d'arrĆŖt jour" + +#: ../../enterprise/include/functions_reporting_csv.php:2102 +msgid "Time Not Init day" +msgstr "Temps non initialisĆ© jour" + +#: ../../enterprise/include/functions_reporting_csv.php:2103 +msgid "Checks Total day" +msgstr "VĆ©rifications totales jour" + +#: ../../enterprise/include/functions_reporting_csv.php:2104 +msgid "Checks OK day" +msgstr "VĆ©rifications OK jour" + +#: ../../enterprise/include/functions_reporting_csv.php:2105 +msgid "Checks Error day" +msgstr "VĆ©rifications erreur jour" + +#: ../../enterprise/include/functions_reporting_csv.php:2106 +msgid "Checks Unknown day" +msgstr "VĆ©rifications inconnues jour" + +#: ../../enterprise/include/functions_reporting_csv.php:2107 +msgid "Status day" +msgstr "Ɖtat jour" + +#: ../../enterprise/include/functions_reporting_csv.php:2123 +#: ../../enterprise/include/functions_events.php:163 +msgid "Hours" +msgstr "Heures" + +#: ../../enterprise/include/functions_reporting_csv.php:2124 +msgid "Time Total hours" +msgstr "Temps total heures" + +#: ../../enterprise/include/functions_reporting_csv.php:2125 +msgid "Time OK hours" +msgstr "Temps OK heures" + +#: ../../enterprise/include/functions_reporting_csv.php:2126 +msgid "Time Error hours" +msgstr "Temps erreur heures" + +#: ../../enterprise/include/functions_reporting_csv.php:2127 +msgid "Time Unknown hours" +msgstr "Temps inconnu heures" + +#: ../../enterprise/include/functions_reporting_csv.php:2128 +msgid "Time Not Init hours" +msgstr "Temps non initialisĆ© heures" + +#: ../../enterprise/include/functions_reporting_csv.php:2129 +msgid "Time Downtime hours" +msgstr "Temps d'arrĆŖt heures" + +#: ../../enterprise/include/functions_reporting_csv.php:2130 +msgid "Time Out hours" +msgstr "Temps pause heures" + +#: ../../enterprise/include/functions_reporting_csv.php:2131 +msgid "Checks Total hours" +msgstr "VĆ©rifications totales heures" + +#: ../../enterprise/include/functions_reporting_csv.php:2132 +msgid "Checks OK hours" +msgstr "VĆ©rifications OK heures" + +#: ../../enterprise/include/functions_reporting_csv.php:2133 +msgid "Checks Error hours" +msgstr "VĆ©rifications erreur heures" + +#: ../../enterprise/include/functions_reporting_csv.php:2134 +msgid "Checks Unknown hours" +msgstr "VĆ©rifications inconnues heures" + +#: ../../enterprise/include/functions_reporting_csv.php:2135 +msgid "Checks Not Init hours" +msgstr "VĆ©rifications non initialisĆ©s heures" + +#: ../../enterprise/include/functions_reporting_csv.php:2136 +msgid "SLA hours" +msgstr "SLA heures" + +#: ../../enterprise/include/functions_reporting_csv.php:2137 +msgid "SLA Fixed hours" +msgstr "SLA fixe heures" + +#: ../../enterprise/include/functions_reporting_csv.php:2138 +msgid "Date From hours" +msgstr "ƀ partir de" + +#: ../../enterprise/include/functions_reporting_csv.php:2139 +msgid "Date To hours" +msgstr "ƀ" + +#: ../../enterprise/include/functions_reporting_csv.php:2140 +msgid "Status hours" +msgstr "Ɖtat heures" + +#: ../../enterprise/include/functions_reporting_csv.php:2267 +msgid "Simple Baseline Graph" +msgstr "Graphique de rĆ©fĆ©rence simple" + +#: ../../enterprise/include/functions_reporting_csv.php:2298 +#: ../../include/rest-api/models/VisualConsole/Items/ModuleGraph.php:567 +msgid "Custom Graph" +msgstr "Graphique personnalisĆ©e" + +#: ../../enterprise/include/functions_reporting_csv.php:2443 +#: ../../include/functions_reporting.php:5663 +msgid "Alert Report Module" +msgstr "Module de rapport d'alerte" + +#: ../../enterprise/include/functions_reporting_csv.php:2445 +#: ../../include/functions_reporting.php:5496 +msgid "Alert Report Agent" +msgstr "Agent de rapport d'alerte" + +#: ../../enterprise/include/functions_reporting_csv.php:2447 +#: ../../include/functions_reporting.php:5316 +msgid "Alert Report Group" +msgstr "Rapport d'alertes de groupe" + +#: ../../enterprise/include/functions_reporting_csv.php:2465 +msgid "Actions Triggered" +msgstr "Actions dĆ©clenchĆ©es" + +#: ../../enterprise/include/functions_reporting_csv.php:2465 +msgid "Template Triggered" +msgstr "ModĆØle dĆ©chenchĆ©" + +#: ../../enterprise/include/functions_reporting_csv.php:2502 +msgid "Event Report Log" +msgstr "Journal de rapport d'Ć©vĆ©nement" + +#: ../../enterprise/include/functions_reporting_csv.php:2531 +#: ../../include/functions_reports.php:932 ../../include/functions_reports.php:933 +#: ../../include/functions_reporting.php:4573 +msgid "Permissions report" +msgstr "Rapport de permissions" + +#: ../../enterprise/include/functions_reporting_csv.php:2549 +#: ../../enterprise/include/functions_reporting_csv.php:2559 +#: ../../godmode/users/user_list.php:479 ../../godmode/users/configure_user.php:849 +#: ../../godmode/users/configure_user.php:865 +#: ../../include/functions_reporting_html.php:5064 +#: ../../include/functions_reporting_html.php:6236 +#: ../../include/functions_reporting_html.php:6259 +#: ../../operation/search_users.php:43 ../../operation/users/user_edit.php:258 +#: ../../operation/snmpconsole/snmp_view.php:876 +msgid "User ID" +msgstr "Identifiant de l'utilisateur" + +#: ../../enterprise/include/functions_reporting_csv.php:2549 +#: ../../enterprise/include/functions_reporting_csv.php:2559 +#: ../../include/functions_reporting_html.php:6237 +#: ../../include/functions_reporting_html.php:6260 +msgid "Full name" +msgstr "Nom complet" + +#: ../../enterprise/include/functions_reporting_csv.php:2549 +#: ../../enterprise/include/functions_reporting_csv.php:2559 +#: ../../include/functions_reporting_html.php:6238 +#: ../../include/functions_reporting_html.php:6261 +msgid "Permissions" +msgstr "Permissions" + +#: ../../enterprise/include/functions_reporting_csv.php:2605 +msgid "Netflow data chart" +msgstr "Graphique de donnĆ©es Netflow" + +#: ../../enterprise/include/functions_reporting_csv.php:2607 +#: ../../include/functions_reports.php:907 +msgid "Netflow area chart" +msgstr "Carte de zone Netflow" + +#: ../../enterprise/include/functions_reporting_csv.php:2660 +msgid "Netflow summary" +msgstr "RĆ©sumĆ© Netflow" + +#: ../../enterprise/include/functions_reporting_csv.php:2680 +#: ../../include/functions_netflow.php:416 +msgid "Total flows" +msgstr "Flux au total" + +#: ../../enterprise/include/functions_reporting_csv.php:2680 +#: ../../include/functions_netflow.php:421 +msgid "Total bytes" +msgstr "Octets au total :" + +#: ../../enterprise/include/functions_reporting_csv.php:2680 +#: ../../include/functions_netflow.php:426 +msgid "Total packets" +msgstr "Nombre total de progiciels" + +#: ../../enterprise/include/functions_reporting_csv.php:2680 +msgid "Avg. bits/sec" +msgstr "Bits moyens/s" + +#: ../../enterprise/include/functions_reporting_csv.php:2680 +msgid "Avg. packets/sec" +msgstr "Paquets moyens/s" + +#: ../../enterprise/include/functions_reporting_csv.php:2680 +msgid "Avg. bytes/packet" +msgstr "Nombre moyen dā€™octets/paquet" + +#: ../../enterprise/include/functions_reporting_csv.php:2681 +msgid "Dst. IP" +msgstr "Adresse IP de destination" + +#: ../../enterprise/include/functions_reporting_csv.php:2707 +msgid "Agent/module status" +msgstr "Ɖtat de lā€™agent/module" + +#: ../../enterprise/include/functions_reporting_csv.php:2742 +#: ../../include/functions_reporting_html.php:2145 +msgid "Last time" +msgstr "DerniĆØre fois" + +#: ../../enterprise/include/functions_reporting_csv.php:2786 +#: ../../include/functions_reports.php:919 +#: ../../include/functions_reporting.php:6110 +msgid "Netflow top-N connections" +msgstr "Connexions Netflow top-N" + +#: ../../enterprise/include/functions_reporting_csv.php:2808 +#: ../../mobile/operation/tactical.php:351 +#: ../../include/functions_reporting_html.php:5773 ../../include/functions.php:3053 +#: ../../include/functions_netflow.php:347 +#: ../../include/class/AuditLog.class.php:111 +#: ../../operation/snmpconsole/snmp_statistics.php:182 +#: ../../general/logon_ok.php:243 +msgid "Source IP" +msgstr "Adresse IP source" + +#: ../../enterprise/include/functions_reporting_csv.php:2808 +#: ../../include/functions_netflow.php:348 +msgid "Destination IP" +msgstr "IP Destination" + +#: ../../enterprise/include/functions_reporting_csv.php:2808 +#: ../../include/functions_config.php:979 ../../include/functions_config.php:3075 +#: ../../include/functions_netflow.php:349 +#: ../../operation/network/network_report.php:206 +#: ../../operation/network/network_report.php:236 +msgid "Bytes" +msgstr "Octets" + +#: ../../enterprise/include/functions_reporting_csv.php:2808 +#: ../../include/functions_netflow.php:350 +msgid "% Traffic" +msgstr "Trafic %" + +#: ../../enterprise/include/functions_reporting_csv.php:2808 +msgid "Average Throughput (bits/sec)" +msgstr "DĆ©bit moyen (bits/sec)" + +#: ../../enterprise/include/functions_aws.php:381 +msgid "$" +msgstr "$" + +#: ../../enterprise/include/functions_aws.php:491 +msgid "Current deployments" +msgstr "DĆ©ploiements actuels" + +#: ../../enterprise/include/functions_aws.php:525 +msgid "Cost analysis" +msgstr "Analyse de coĆ»t" + +#: ../../enterprise/include/functions_aws.php:528 +msgid "Current cost estimation" +msgstr "Estimation actuelle de coĆ»ts" + +#: ../../enterprise/include/functions_aws.php:530 +msgid "Previous period cost" +msgstr "CoĆ»t du pĆ©riode prĆ©cĆ©dent" + +#: ../../enterprise/include/functions_aws.php:589 +msgid "Reservation status" +msgstr "Ɖtat de reservation" + +#: ../../enterprise/include/functions_HA_cluster.php:46 +#: ../../enterprise/include/class/DeploymentCenter.class.php:1787 +msgid "Deploy" +msgstr "DĆ©ployer" + +#: ../../enterprise/include/functions_HA_cluster.php:49 +msgid "Recover" +msgstr "RĆ©cupĆ©rer" + +#: ../../enterprise/include/functions_HA_cluster.php:52 +msgid "Promote" +msgstr "Promouvoir" + +#: ../../enterprise/include/functions_HA_cluster.php:55 +msgid "Demote" +msgstr "DĆ©valoriser" + +#: ../../enterprise/include/functions_HA_cluster.php:64 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1944 +msgid "Cleanup" +msgstr "Nettoyage" + +#: ../../enterprise/include/functions_HA_cluster.php:67 +msgid "Resync" +msgstr "Resync" + +#: ../../enterprise/include/functions_HA_cluster.php:261 +msgid "Public Key Authentication Failed" +msgstr "ClĆ© d'authentication publique Ć©chouĆ©e" + +#: ../../enterprise/include/functions_HA_cluster.php:268 +msgid "Connection failed" +msgstr "La connexion a Ć©chouĆ©" + +#: ../../enterprise/include/functions_HA_cluster.php:491 +msgid "Register" +msgstr "S'inscrire" + +#: ../../enterprise/include/functions_HA_cluster.php:493 +msgid "Register new node" +msgstr "Enregistrer nouveau noeud" + +#: ../../enterprise/include/functions_HA_cluster.php:496 +#: ../../include/class/NetworkMap.class.php:2957 +msgid "Update node" +msgstr "Mettre Ć  jour le nœud" + +#: ../../enterprise/include/class/Azure.cloud.php:148 +#: ../../enterprise/include/class/Aws.cloud.php:113 +#: ../../enterprise/include/class/Google.cloud.php:142 +msgid "Cloud message" +msgstr "Message Cloud" + +#: ../../enterprise/include/class/Azure.cloud.php:153 +#: ../../include/class/CredentialStore.class.php:947 +msgid "Azure" +msgstr "Azure" + +#: ../../enterprise/include/class/Azure.cloud.php:248 +#: ../../enterprise/include/class/Google.cloud.php:242 +msgid "Task details" +msgstr "DĆ©tails de la tache" + +#: ../../enterprise/include/class/Azure.cloud.php:249 +#: ../../enterprise/include/class/Google.cloud.php:243 +msgid "Instance explorer" +msgstr "Explorateur d'instance" + +#: ../../enterprise/include/class/Azure.cloud.php:250 +#: ../../enterprise/include/class/Google.cloud.php:244 +msgid "Metrics" +msgstr "MĆ©triques" + +#: ../../enterprise/include/class/Azure.cloud.php:307 +msgid "Microsoft Compute" +msgstr "Microsoft Compute" + +#: ../../enterprise/include/class/Azure.cloud.php:355 +#: ../../enterprise/include/class/Aws.cloud.php:1492 +#: ../../enterprise/include/class/Google.cloud.php:349 +#, php-format +msgid "%s not found or not executable" +msgstr "%s non trouvĆ© ou non exĆ©cutable" + +#: ../../enterprise/include/class/Azure.cloud.php:468 +#: ../../enterprise/include/class/Google.cloud.php:470 +msgid "Group not found." +msgstr "Groupe non trouvĆ©." + +#: ../../enterprise/include/class/Azure.cloud.php:598 +#: ../../enterprise/include/class/Azure.cloud.php:646 +#: ../../enterprise/include/class/Google.cloud.php:597 +#: ../../enterprise/include/class/Google.cloud.php:643 +msgid "Unauthorized access" +msgstr "AccĆØs pas autorisĆ©" + +#: ../../enterprise/include/class/Azure.cloud.php:771 +#: ../../enterprise/include/class/VMware.app.php:583 +#: ../../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:1201 +#: ../../enterprise/include/class/MySQL.app.php:442 +#: ../../enterprise/include/class/Google.cloud.php:759 +#: ../../enterprise/include/class/Oracle.app.php:444 +#: ../../enterprise/include/class/MicrosoftSQLServer.app.php:439 +#: ../../godmode/wizards/HostDevices.class.php:838 +#: ../../godmode/wizards/DiscoveryTaskList.class.php:588 +#: ../../include/class/CustomNetScan.class.php:446 +msgid "Task name" +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:540 +msgid "Tentacle options" +msgstr "Options Tentacle" + +#: ../../enterprise/include/class/Azure.cloud.php:872 +#: ../../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." + +#: ../../enterprise/include/class/Azure.cloud.php:909 +#: ../../enterprise/include/class/Google.cloud.php:865 +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: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: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: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: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:718 +#: ../../enterprise/include/class/Google.cloud.php:927 +msgid "Network performance summary" +msgstr "RĆ©sumĆ©e de la performance du rĆ©seau" + +#: ../../enterprise/include/class/Azure.cloud.php:990 +#: ../../enterprise/include/class/VMware.app.php:1014 +#: ../../enterprise/include/class/DB2.app.php:868 +#: ../../enterprise/include/class/Aws.S3.php:658 +#: ../../enterprise/include/class/SAP.app.php:924 +#: ../../enterprise/include/class/Aws.cloud.php:1590 +#: ../../enterprise/include/class/MySQL.app.php:944 +#: ../../enterprise/include/class/Google.cloud.php:952 +#: ../../enterprise/include/class/Oracle.app.php:977 +#: ../../enterprise/include/class/MicrosoftSQLServer.app.php:821 +#: ../../godmode/wizards/HostDevices.class.php:1589 +#: ../../include/class/CustomNetScan.class.php:758 +msgid "Task configured." +msgstr "Tache configurĆ©e." + +#: ../../enterprise/include/class/Azure.cloud.php:994 +#: ../../enterprise/include/class/VMware.app.php:1018 +#: ../../enterprise/include/class/DB2.app.php:872 +#: ../../enterprise/include/class/SAP.app.php:928 +#: ../../enterprise/include/class/MySQL.app.php:948 +#: ../../enterprise/include/class/Google.cloud.php:956 +#: ../../enterprise/include/class/Oracle.app.php:981 +#: ../../enterprise/include/class/MicrosoftSQLServer.app.php:825 +#: ../../godmode/wizards/HostDevices.class.php:1593 +#: ../../include/class/CustomNetScan.class.php:762 +msgid "Wizard failed. Cannot configure task." +msgstr "Ɖchec de l'assistant. La tache ne peut pas se configurer." + +#: ../../enterprise/include/class/VMware.app.php:230 +msgid "" +"This VMware configuration has been already defined. Please edit it or create a " +"new one." +msgstr "" +"La configuration VMware est dĆ©jĆ  dĆ©finie. Veuillez l'Ć©diter ou en crĆ©er une " +"nouvelle." + +#: ../../enterprise/include/class/VMware.app.php:264 +#: ../../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:917 +#: ../../enterprise/include/class/MySQL.app.php:206 +#: ../../enterprise/include/class/Oracle.app.php:204 +#: ../../enterprise/include/class/MicrosoftSQLServer.app.php:203 +#: ../../godmode/wizards/HostDevices.class.php:422 +#: ../../include/class/CustomNetScan.class.php:168 +msgid "You must provide a task name." +msgstr "Vous devez fournir un nom de tache." + +#: ../../enterprise/include/class/VMware.app.php:269 +#: ../../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:922 +#: ../../enterprise/include/class/MySQL.app.php:211 +#: ../../enterprise/include/class/Oracle.app.php:209 +#: ../../enterprise/include/class/MicrosoftSQLServer.app.php:208 +#: ../../godmode/wizards/HostDevices.class.php:427 +#: ../../include/class/CustomNetScan.class.php:173 +msgid "You must select a Discovery Server." +msgstr "Vos devez sĆ©lectionner un Serveur Discovery." + +#: ../../enterprise/include/class/VMware.app.php:274 +msgid "You must provide a valid V-Center IP or FQDN." +msgstr "Fournissez une IP ou FQDN V-Center valide" + +#: ../../enterprise/include/class/VMware.app.php:279 +#: ../../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:927 +#: ../../enterprise/include/class/MySQL.app.php:226 +#: ../../enterprise/include/class/Oracle.app.php:219 +#: ../../enterprise/include/class/MicrosoftSQLServer.app.php:218 +#: ../../godmode/wizards/HostDevices.class.php:438 +#: ../../include/class/CustomNetScan.class.php:178 +msgid "You must select a valid group." +msgstr "Vous devez sĆ©lectionner un groupe valide." + +#: ../../enterprise/include/class/VMware.app.php:291 +msgid "Discovery.Application.VMware" +msgstr "Discovery.Application.VMware" + +#: ../../enterprise/include/class/VMware.app.php:310 +msgid "Please select a valid group" +msgstr "SĆ©lectionnez un groupe valide" + +#: ../../enterprise/include/class/VMware.app.php:369 +msgid "Failed to find discovery VMware task." +msgstr "Erreur en trouvant la tache VMware." + +#: ../../enterprise/include/class/VMware.app.php:384 +msgid "Threads must be equal or greater than 1." +msgstr "Les fils doivent ĆŖtre Ć©gales ou supĆ©rieurs Ć  1." + +#: ../../enterprise/include/class/VMware.app.php:486 +#: ../../enterprise/include/class/DB2.app.php:386 +#: ../../enterprise/include/class/SAP.app.php:336 +#: ../../enterprise/include/class/MySQL.app.php:403 +#: ../../enterprise/include/class/Oracle.app.php:393 +#: ../../enterprise/include/class/MicrosoftSQLServer.app.php:388 +msgid "Application" +msgstr "Application" + +#: ../../enterprise/include/class/VMware.app.php:536 +#: ../../enterprise/include/class/DB2.app.php:569 +#: ../../enterprise/include/class/SAP.app.php:444 +#: ../../enterprise/include/class/MySQL.app.php:591 +#: ../../enterprise/include/class/Oracle.app.php:576 +#: ../../enterprise/include/class/MicrosoftSQLServer.app.php:570 +#: ../../enterprise/include/lib/ClusterViewer/ClusterWizard.php:1202 +#: ../../godmode/setup/setup_integria.php:636 +#: ../../godmode/wizards/HostDevices.class.php:772 +#: ../../include/class/CustomNetScan.class.php:553 +msgid "Update and continue" +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:500 +msgid "" +"This kind of task uses multipurpose plugins in order to generate monitoring data, " +"configure your desired tentacle target." +msgstr "" +"Ce type de tache utilise plugins polyvalentes pour gĆ©nĆ©rer des donnĆ©es de " +"supervision, configurez votre cible tentacle dĆ©sirĆ©e." + +#: ../../enterprise/include/class/VMware.app.php:594 +#: ../../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:1213 +#: ../../enterprise/include/class/MySQL.app.php:454 +#: ../../enterprise/include/class/Oracle.app.php:456 +#: ../../enterprise/include/class/MicrosoftSQLServer.app.php:451 +#: ../../godmode/wizards/HostDevices.class.php:849 +#: ../../include/class/CustomNetScan.class.php:480 +msgid "" +"You must select a Discovery Server to run the Task, otherwise the Recon Task will " +"never run" +msgstr "" +"Vous devez sĆ©lectionner un Serveur Discovery pour exĆ©cuter la la Tache, autrement " +"la Tache Recon ne s'exĆ©cutera jamais" + +#: ../../enterprise/include/class/VMware.app.php:656 +msgid "Datacenter user" +msgstr "Utilisateur du centre de traitement de donnĆ©es" + +#: ../../enterprise/include/class/VMware.app.php:668 +#: ../../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:1319 +#: ../../enterprise/include/class/MySQL.app.php:559 +#: ../../enterprise/include/class/Oracle.app.php:544 +#: ../../enterprise/include/class/MicrosoftSQLServer.app.php:538 +#: ../../godmode/wizards/HostDevices.class.php:799 +#: ../../include/class/CustomNetScan.class.php:521 +msgid "Manual interval means that it will be executed only On-demand" +msgstr "Avec l'intervalle manuel il sera exĆ©cutĆ© uniquement sur demande" + +#: ../../enterprise/include/class/VMware.app.php:675 +#: ../../enterprise/include/class/VMware.app.php:887 +#: ../../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:1326 +#: ../../enterprise/include/class/MySQL.app.php:566 +#: ../../enterprise/include/class/Oracle.app.php:551 +#: ../../enterprise/include/class/MicrosoftSQLServer.app.php:545 +#: ../../godmode/wizards/HostDevices.class.php:806 +#: ../../include/functions_reporting_html.php:2374 +#: ../../include/class/CustomNetScan.class.php:528 +msgid "Defined" +msgstr "DĆ©fini" + +#: ../../enterprise/include/class/VMware.app.php:693 +#: ../../enterprise/include/class/DB2.app.php:561 +#: ../../enterprise/include/class/Aws.S3.php:531 +#: ../../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:1343 +#: ../../enterprise/include/class/MySQL.app.php:583 +#: ../../enterprise/include/class/Oracle.app.php:568 +#: ../../enterprise/include/class/MicrosoftSQLServer.app.php:562 +msgid "The minimum recomended interval is 5 minutes" +msgstr "L'intervalle minimale recommandĆ©e est 5 minutes" + +#: ../../enterprise/include/class/VMware.app.php:707 +msgid "V-Center IP" +msgstr "Adresse IP vCenter" + +#: ../../enterprise/include/class/VMware.app.php:718 +msgid "Datacenter name" +msgstr "Nom du centre de traitement de donnĆ©es" + +#: ../../enterprise/include/class/VMware.app.php:719 +msgid "" +"This name must match with the name wich appears when you log in you VMware manager" +msgstr "" +"Ce nom doit correspondre le nom qu'il a lorsque vous vous connectez Ć  VMware " +"manager" + +#: ../../enterprise/include/class/VMware.app.php:749 +msgid "Encrypt passwords" +msgstr "Chiffrer les mots de passe" + +#: ../../enterprise/include/class/VMware.app.php:763 +#: ../../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:1234 +#: ../../enterprise/include/class/MySQL.app.php:475 +#: ../../enterprise/include/class/Oracle.app.php:477 +#: ../../enterprise/include/class/MicrosoftSQLServer.app.php:472 +msgid "This group will be used also to classify discovered agents" +msgstr "Ce groupe sera utilisĆ© aussi pour classifier des agents dĆ©couverts" + +#: ../../enterprise/include/class/VMware.app.php:870 +msgid "Max threads" +msgstr "Fils maximales" + +#: ../../enterprise/include/class/VMware.app.php:879 +msgid "Re-scan interval" +msgstr "Re-scanner l'intervalle" + +#: ../../enterprise/include/class/VMware.app.php:880 +msgid "Enables re-scan entities process every interval defined." +msgstr "Permet de traiter Ć  nouveau les entitĆ©s Ć  chaque intervalle dĆ©fini." + +#: ../../enterprise/include/class/VMware.app.php:913 +msgid "Retry send" +msgstr "RĆ©essayer l'envoi" + +#: ../../enterprise/include/class/VMware.app.php:923 +msgid "Event mode" +msgstr "Mode d'Ć©vĆ©nement" + +#: ../../enterprise/include/class/VMware.app.php:923 +msgid "Only for VCenter." +msgstr "Seulement pour VCenter." + +#: ../../enterprise/include/class/VMware.app.php:933 +msgid "Virtual network monitoring" +msgstr "Supervision rĆ©seau virtuel" + +#: ../../enterprise/include/class/VMware.app.php:964 +msgid "Extra settings" +msgstr "Configurations complĆ©mentaires" + +#: ../../enterprise/include/class/VMware.app.php:965 +msgid "This RAW block will be directly added to config file." +msgstr "Ce bloc RAW sera directement ajoutĆ© au fichier de configuration." + +#: ../../enterprise/include/class/VMware.app.php:1259 +msgid "Include datastores" +msgstr "Inclure des banques de donnĆ©es" + +#: ../../enterprise/include/class/VMware.app.php:1269 +msgid "Include datacenters" +msgstr "Inclure les centres de donnĆ©es" + +#: ../../enterprise/include/class/VMware.app.php:1279 +msgid "Include esxs" +msgstr "Inclure esxs" + +#: ../../enterprise/include/class/VMware.app.php:1289 +msgid "Include vms" +msgstr "Inclure les machines virtuelles" + +#: ../../enterprise/include/class/DeploymentCenter.class.php:235 +msgid "IP address is required" +msgstr "Une adresse IP est requise" + +#: ../../enterprise/include/class/DeploymentCenter.class.php:245 +#: ../../enterprise/include/class/AgentRepository.class.php:439 +msgid "Target OS is required" +msgstr "Le systĆØme d'exploitation cible est requis" + +#: ../../enterprise/include/class/DeploymentCenter.class.php:247 +#: ../../enterprise/include/class/AgentRepository.class.php:441 +msgid "Target architecture is required" +msgstr "L'architecture cible est requis" + +#: ../../enterprise/include/class/DeploymentCenter.class.php:249 +msgid "Credentials to use are required" +msgstr "Les identifiants Ć  utiliser sont requises" + +#: ../../enterprise/include/class/DeploymentCenter.class.php:251 +msgid "Desired agent version is required" +msgstr "La version dĆ©sirĆ©e de l'agent est requise" + +#: ../../enterprise/include/class/DeploymentCenter.class.php:262 +msgid "Target already defined." +msgstr "cible dĆ©jĆ  dĆ©fini." + +#: ../../enterprise/include/class/DeploymentCenter.class.php:288 +msgid "Target successfully added" +msgstr "Cible correctement ajoutĆ©" + +#: ../../enterprise/include/class/DeploymentCenter.class.php:309 +msgid "Target successfully updated" +msgstr "Cible correctement mis Ć  jour" + +#: ../../enterprise/include/class/DeploymentCenter.class.php:335 +#: ../../enterprise/include/class/AgentRepository.class.php:601 +msgid "Target successfully deleted" +msgstr "Cible Ć©liminĆ© correctement" + +#: ../../enterprise/include/class/DeploymentCenter.class.php:352 +msgid "You should specify a Discovery server" +msgstr "Vou devriez spĆ©cifier un serveur Discovery" + +#: ../../enterprise/include/class/DeploymentCenter.class.php:354 +msgid "You must select some targets to deploy" +msgstr "Vous devez sĆ©lectionner quelques cibles Ć  dĆ©ployer" + +#: ../../enterprise/include/class/DeploymentCenter.class.php:384 +#: ../../enterprise/include/class/DeploymentCenter.class.php:1095 +msgid "Failed to schedule" +msgstr "Error de programmation" + +#: ../../enterprise/include/class/DeploymentCenter.class.php:399 +msgid "Deploy scheduled" +msgstr "DĆ©ployer ceux programmĆ©s" + +#: ../../enterprise/include/class/DeploymentCenter.class.php:425 +msgid "CSV file is needed" +msgstr "Un fichier CSV est requis" + +#: ../../enterprise/include/class/DeploymentCenter.class.php:480 +#, php-format +msgid "" +"Credential identifier %s does not exist, please, add it to your repository %s " +msgstr "" +"L'identifier d'identifiant %s n'existe pas, veuillez l'ajouter Ć  votre " +"rĆ©fĆ©rentiel %s " + +#: ../../enterprise/include/class/DeploymentCenter.class.php:488 +#, php-format +msgid "OS %s does not math any existing, please, add it to OS list %s" +msgstr "" +"Le systĆØme d'exploitation %s ne correspond aucun existant, ajoutez-le Ć  la liste " +"de systĆØmes d'exploitation %s" + +#: ../../enterprise/include/class/DeploymentCenter.class.php:496 +#, php-format +msgid "" +"Sofware agent version with id %s does not exist, please, add it to your " +"repository %s " +msgstr "" +"La version de l'agent logiciel avec l'ID %s n'existe pas, veuillez l'ajouter Ć  " +"votre rĆ©fĆ©rentiel %s " + +#: ../../enterprise/include/class/DeploymentCenter.class.php:518 +msgid "No target could be added. " +msgstr "Aucun cible ajoutĆ©. " + +#: ../../enterprise/include/class/DeploymentCenter.class.php:594 +#: ../../enterprise/include/class/CSVImportAgents.class.php:98 +#: ../../godmode/wizards/HostDevices.class.php:196 +#: ../../include/class/ManageNetScanScripts.class.php:104 +#: ../../include/class/CustomNetScan.class.php:352 +msgid "Host & Devices" +msgstr "HĆ“te et appareils" + +#: ../../enterprise/include/class/DeploymentCenter.class.php:621 +msgid "Deployment center" +msgstr "Centre de dĆ©ploiement" + +#: ../../enterprise/include/class/DeploymentCenter.class.php:637 +msgid "There are no targets defined yet, please add some." +msgstr "Il n'y a pas des cibles dĆ©finis encore, veuillez en ajouter quelques-uns." + +#: ../../enterprise/include/class/DeploymentCenter.class.php:644 +#, php-format +msgid "Please set %s to make software available for targets." +msgstr "Veuillez ajuster %s pour rendre le logiciel disponible pour les cibles." + +#: ../../enterprise/include/class/DeploymentCenter.class.php:656 +#, php-format +msgid "There are no software agents in your repository yet, please add some %s." +msgstr "" +"Il n'y a pas des agents logiciels dans votre rĆ©pertoire encore, veuillez en " +"ajouter quelques-uns %s." + +#: ../../enterprise/include/class/DeploymentCenter.class.php:675 +#: ../../enterprise/include/class/DeploymentCenter.class.php:1751 +msgid "Scan for targets" +msgstr "Scanner des cibles" + +#: ../../enterprise/include/class/DeploymentCenter.class.php:684 +msgid "Add target" +msgstr "Ajouter une cible" + +#: ../../enterprise/include/class/DeploymentCenter.class.php:693 +msgid "Load targets" +msgstr "Mettre en ligne des cibles" + +#: ../../enterprise/include/class/DeploymentCenter.class.php:757 +#: ../../enterprise/include/class/DeploymentCenter.class.php:825 +#: ../../enterprise/include/class/DeploymentCenter.class.php:1301 +#: ../../enterprise/include/class/DeploymentCenter.class.php:1397 +#: ../../enterprise/include/class/AgentRepository.class.php:364 +#: ../../enterprise/include/class/AgentRepository.class.php:641 +#: ../../enterprise/include/class/AgentRepository.class.php:694 +msgid "Architecture" +msgstr "Architecture" + +#: ../../enterprise/include/class/DeploymentCenter.class.php:758 +msgid "Key identifier" +msgstr "Identifiant de clĆ©" + +#: ../../enterprise/include/class/DeploymentCenter.class.php:759 +#: ../../enterprise/include/class/DeploymentCenter.class.php:1222 +#: ../../enterprise/include/class/DeploymentCenter.class.php:1359 +msgid "Target server IP" +msgstr "IP de serveur cible" + +#: ../../enterprise/include/class/DeploymentCenter.class.php:760 +msgid "Agent version installed" +msgstr "Version d'agent installĆ©e" + +#: ../../enterprise/include/class/DeploymentCenter.class.php:761 +msgid "Agent version desired" +msgstr "Version de l'agent dĆ©sirĆ©e" + +#: ../../enterprise/include/class/DeploymentCenter.class.php:762 +msgid "Installation date" +msgstr "Date de l'installation" + +#: ../../enterprise/include/class/DeploymentCenter.class.php:763 +msgid "Last error" +msgstr "DerniĆØre erreur" + +#: ../../enterprise/include/class/DeploymentCenter.class.php:811 +msgid "Server IP" +msgstr "IP du serveur" + +#: ../../enterprise/include/class/DeploymentCenter.class.php:836 +msgid "State" +msgstr "Ɖtat" + +#: ../../enterprise/include/class/DeploymentCenter.class.php:868 +msgid "Deploy agent to targets" +msgstr "DĆ©ployer des agents aux cibles" + +#: ../../enterprise/include/class/DeploymentCenter.class.php:956 +#: ../../enterprise/include/class/AgentRepository.class.php:272 +msgid "Deploying" +msgstr "DĆ©ployant" + +#: ../../enterprise/include/class/DeploymentCenter.class.php:1042 +msgid "You must define a network." +msgstr "DĆ©finissez un rĆ©seau." + +#: ../../enterprise/include/class/DeploymentCenter.class.php:1044 +msgid "You must select at least one credential to test." +msgstr "SĆ©lectionnez au moins un identifiant Ć  vĆ©rifier." + +#: ../../enterprise/include/class/DeploymentCenter.class.php:1046 +msgid "You must select a Discovery server." +msgstr "SĆ©lectionnez un serveur Discovery." + +#: ../../enterprise/include/class/DeploymentCenter.class.php:1048 +msgid "Please select a desired software agent version." +msgstr "SĆ©lectionnez la version de l'agent logiciel dĆ©sirĆ©e." + +#: ../../enterprise/include/class/DeploymentCenter.class.php:1050 +msgid "Please specify a server IP." +msgstr "SpĆ©cifiez une IP de serveur." + +#: ../../enterprise/include/class/DeploymentCenter.class.php:1070 +#: ../../enterprise/include/class/DeploymentCenter.class.php:1103 +msgid "Discovery task list" +msgstr "Liste de taches Discovery" + +#: ../../enterprise/include/class/DeploymentCenter.class.php:1069 +#, php-format +msgid "This network is already being scanned. See progress at %s" +msgstr "Ce rĆ©seau est dĆ©jĆ  en cours de scan. Voyez le progrĆØs chez %s" + +#: ../../enterprise/include/class/DeploymentCenter.class.php:1102 +#, php-format +msgid "Network scheduled to be scanned. You can see progress at %s" +msgstr "RĆ©seau programmĆ© Ć  ĆŖtre scannĆ©. Voyez le progrĆØs chez %s" + +#: ../../enterprise/include/class/DeploymentCenter.class.php:1135 +#: ../../enterprise/include/class/DeploymentCenter.class.php:1138 +#: ../../enterprise/include/class/DeploymentCenter.class.php:1265 +#: ../../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:1434 +#: ../../godmode/wizards/HostDevices.class.php:1437 +msgid "No credentials available" +msgstr "Pas d'identifiants disponibles" + +#: ../../enterprise/include/class/DeploymentCenter.class.php:1136 +#: ../../enterprise/include/class/DeploymentCenter.class.php:1266 +#: ../../enterprise/include/class/SAP.app.php:605 +#: ../../godmode/agentes/module_manager_editor_network.php:474 +#: ../../godmode/wizards/HostDevices.class.php:1435 +msgid "Manage credentials" +msgstr "GĆ©rer des identifiants" + +#: ../../enterprise/include/class/DeploymentCenter.class.php:1150 +msgid "Network/mask" +msgstr "RĆ©seau/Masque" + +#: ../../enterprise/include/class/DeploymentCenter.class.php:1159 +msgid "Scan from" +msgstr "Scanner depuis" + +#: ../../enterprise/include/class/DeploymentCenter.class.php:1178 +#: ../../godmode/wizards/HostDevices.class.php:1447 +msgid "Credentials to try with" +msgstr "Identifiants avec lesquels essayer" + +#: ../../enterprise/include/class/DeploymentCenter.class.php:1212 +#: ../../enterprise/include/class/DeploymentCenter.class.php:1349 +msgid "Desired agent version" +msgstr "Version de l'agent dĆ©sirĆ©e" + +#: ../../enterprise/include/class/DeploymentCenter.class.php:1396 +msgid "CSV format" +msgstr "Format CSV" + +#: ../../enterprise/include/class/DeploymentCenter.class.php:1397 +msgid "Target agent version" +msgstr "Version de l'agent cible" + +#: ../../enterprise/include/class/DeploymentCenter.class.php:1397 +msgid "Target server ip" +msgstr "IP du serveur cible" + +#: ../../enterprise/include/class/DeploymentCenter.class.php:1416 +msgid "CSV file" +msgstr "Fichier CSV" + +#: ../../enterprise/include/class/DeploymentCenter.class.php:1476 +msgid "Select desired targets to be deployed" +msgstr "SĆ©lectionnez les cibles dĆ©sirĆ©s Ć  dĆ©ployer" + +#: ../../enterprise/include/class/DeploymentCenter.class.php:1479 +msgid "Deploy from" +msgstr "DĆ©ployer depuis" + +#: ../../enterprise/include/class/DeploymentCenter.class.php:1494 +msgid "Available targets" +msgstr "Cibles disponibles" + +#: ../../enterprise/include/class/DeploymentCenter.class.php:1670 +msgid "Add new target" +msgstr "Ajouter nouveau cible" + +#: ../../enterprise/include/class/DeploymentCenter.class.php:1673 +msgid "Update target" +msgstr "Mettre Ć  jour le cible" + +#: ../../enterprise/include/class/DeploymentCenter.class.php:1719 +msgid "Import targets from CSV" +msgstr "Importer cibles depuis le CSV" + +#: ../../enterprise/include/class/DeploymentCenter.class.php:1752 +#: ../../godmode/modules/manage_network_components_form_wizard.php:637 +msgid "Scan" +msgstr "Scan" + +#: ../../enterprise/include/class/DeploymentCenter.class.php:1786 +msgid "Select targets" +msgstr "SĆ©lectionner des cibles" + +#: ../../enterprise/include/class/DatabaseHA.class.php:137 +#: ../../enterprise/include/class/DatabaseHA.class.php:241 +#: ../../enterprise/include/class/DatabaseHA.class.php:423 +#: ../../enterprise/include/class/DatabaseHA.class.php:433 +#: ../../enterprise/include/class/DatabaseHA.class.php:525 +#: ../../enterprise/include/class/DatabaseHA.class.php:534 +#: ../../enterprise/include/class/DatabaseHA.class.php:651 +#: ../../enterprise/include/class/DatabaseHA.class.php:660 +msgid "Error, please refresh page" +msgstr "Erreur, veuillez rafraĆ®chir la page" + +#: ../../enterprise/include/class/DatabaseHA.class.php:142 +msgid "Action already scheduled" +msgstr "Action dĆ©jĆ  programmĆ©e" + +#: ../../enterprise/include/class/DatabaseHA.class.php:148 +msgid "Unavailable action" +msgstr "Action non disponible" + +#: ../../enterprise/include/class/DatabaseHA.class.php:160 +msgid "A node is already being synchronized, please wait until process finish." +msgstr "Un noeud est dĆ©jĆ  synchronisĆ©, attendez jusqu'Ć  la fin du processus." + +#: ../../enterprise/include/class/DatabaseHA.class.php:172 +msgid "Please verify resync configuration is set before use this feature." +msgstr "" +"Veuillez spĆ©cifier la configuration de resynchronisation avant d'utiliser cette " +"fonctionnalitĆ©." + +#: ../../enterprise/include/class/DatabaseHA.class.php:190 +#: ../../enterprise/include/class/NetworkConfigManager.class.php:2852 +msgid "Successfully scheduled" +msgstr "ProgrammĆ© correctement" + +#: ../../enterprise/include/class/DatabaseHA.class.php:205 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2039 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3262 +#: ../../enterprise/tools/ipam/ipam_network.php:402 +#: ../../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/agentes/module_manager_editor_common.php:1061 +#: ../../godmode/agentes/module_manager_editor_common.php:1071 +#: ../../godmode/massive/massive_edit_agents.php:1016 +#: ../../godmode/alerts/configure_alert_template.php:900 +#: ../../include/functions_visual_map_editor.php:825 +#: ../../include/functions_reporting_html.php:3446 +#: ../../include/rest-api/models/VisualConsole/Items/StaticGraph.php:406 +msgid "Enabled" +msgstr "ActivĆ©" + +#: ../../enterprise/include/class/DatabaseHA.class.php:214 +#: ../../enterprise/include/class/Omnishell.class.php:363 +#: ../../enterprise/include/class/Omnishell.class.php:1087 +#: ../../godmode/wizards/DiscoveryTaskList.class.php:1845 +msgid "Pending" +msgstr "En attente" + +#: ../../enterprise/include/class/DatabaseHA.class.php:220 +msgid "Uninitialized" +msgstr "Non initialisĆ©" + +#: ../../enterprise/include/class/DatabaseHA.class.php:476 +#: ../../enterprise/include/class/DatabaseHA.class.php:575 +#: ../../enterprise/include/class/DatabaseHA.class.php:1251 +msgid "This is not a cluster node" +msgstr "Ce n'est pas un noeud de grappe" + +#: ../../enterprise/include/class/DatabaseHA.class.php:480 +#: ../../enterprise/include/class/DatabaseHA.class.php:1255 +msgid "Failed to retrieve master position" +msgstr "Erreur de rĆ©cupĆ©ration de la position maĆ®tre" + +#: ../../enterprise/include/class/DatabaseHA.class.php:494 +#: ../../enterprise/include/class/DatabaseHA.class.php:1268 +msgid "Failed to retrieve slave information" +msgstr "Erreur de rĆ©cupĆ©ration des informations d'esclave" + +#: ../../enterprise/include/class/DatabaseHA.class.php:611 +msgid "Master" +msgstr "Principal" + +#: ../../enterprise/include/class/DatabaseHA.class.php:614 +msgid "Slave" +msgstr "Esclave" + +#: ../../enterprise/include/class/DatabaseHA.class.php:796 +#: ../../enterprise/include/class/NetworkConfigManager.class.php:1785 +#: ../../enterprise/include/class/NetworkConfigManager.class.php:1875 +#: ../../enterprise/include/class/NetworkConfigManager.class.php:1970 +#: ../../enterprise/include/class/NetworkConfigManager.class.php:2064 +#: ../../include/class/CalendarManager.class.php:535 +#: ../../include/class/CalendarManager.class.php:892 +msgid "Failed to update" +msgstr "Erreur de mise Ć  jour" + +#: ../../enterprise/include/class/DatabaseHA.class.php:823 +#: ../../enterprise/include/class/DatabaseHA.class.php:1006 +msgid "DB Replication user" +msgstr "Utilisateur de rĆ©plication de la base de donnĆ©es" + +#: ../../enterprise/include/class/DatabaseHA.class.php:824 +msgid "User configured for Master to Slaves replication" +msgstr "Utilisateur configurĆ© pour la rĆ©plication de MaĆ®tre Ć  Esclave" + +#: ../../enterprise/include/class/DatabaseHA.class.php:834 +#: ../../enterprise/include/class/DatabaseHA.class.php:1015 +msgid "DB Replication user password" +msgstr "Mot de passe de l'utilisateur de rĆ©plication de la base de donnĆ©es" + +#: ../../enterprise/include/class/DatabaseHA.class.php:835 +msgid "User password" +msgstr "Mot de passe de l'utilisateur" + +#: ../../enterprise/include/class/DatabaseHA.class.php:845 +msgid "Resync data dir" +msgstr "RĆ©pertoire des donnĆ©es de resynchronisation" + +#: ../../enterprise/include/class/DatabaseHA.class.php:846 +msgid "Directory where mysql files are stored (must be common to all nodes)" +msgstr "" +"RĆ©pertoire oĆ¹ les fichiers mysql sont stockĆ©s (doit ĆŖtre commun Ć  tous les noeuds)" + +#: ../../enterprise/include/class/DatabaseHA.class.php:856 +msgid "Resync tmp directory" +msgstr "RĆ©pertoire tmp resync" + +#: ../../enterprise/include/class/DatabaseHA.class.php:857 +msgid "" +"Temporary working directory where to store the backups that will be used to re-" +"synchronize a slave node" +msgstr "" +"RĆ©pertoire de travail temporaire oĆ¹ les sauvegardes qui seront utilisĆ©es pour re-" +"synchroniser un noeud slave seront stockĆ©es" + +#: ../../enterprise/include/class/DatabaseHA.class.php:867 +msgid "Resync MySQL user" +msgstr "Utilisateur MySQL de resynchronisation" + +#: ../../enterprise/include/class/DatabaseHA.class.php:868 +msgid "" +"User of the system that owns the MySQL files, necessary for the adjustment of " +"permissions (by default mysql)" +msgstr "" +"Utilisateur du systĆØme qui possĆØde les fichiers MySQL, nĆ©cessaire pour ajuster " +"les permissions (mysql par dĆ©faut)" + +#: ../../enterprise/include/class/DatabaseHA.class.php:878 +msgid "Resync MySQL group" +msgstr "Groupe MySQL de rĆ©synchronisation" + +#: ../../enterprise/include/class/DatabaseHA.class.php:879 +msgid "" +"System group that owns the MySQL files, needed for permissions setting (default " +"mysql)" +msgstr "" +"Group du systĆØme qui possĆØde les fichiers MySQL, nĆ©cessaires pour la " +"configuration de permissions (mysql par dĆ©faut)" + +#: ../../enterprise/include/class/DatabaseHA.class.php:940 +msgid "IP or FQDN" +msgstr "IP ou FQDN" + +#: ../../enterprise/include/class/DatabaseHA.class.php:941 +msgid "" +"This action only registers an already configured node. This action does not " +"configure any resource." +msgstr "" +"Cette action enregistre seulement un noeud dĆ©jĆ  configurĆ©. Cette action ne " +"configure aucune ressource." + +#: ../../enterprise/include/class/DatabaseHA.class.php:951 +msgid "Cluster node label (pcs)" +msgstr "Etiquette de noeud du grappe (pcs)" + +#: ../../enterprise/include/class/DatabaseHA.class.php:967 +msgid "SSH user" +msgstr "Utilisateur SSH" + +#: ../../enterprise/include/class/DatabaseHA.class.php:975 +msgid "SSH port" +msgstr "Port SSH" + +#: ../../enterprise/include/class/DatabaseHA.class.php:983 +msgid "SSH key" +msgstr "ClĆ© SSH" + +#: ../../enterprise/include/class/DatabaseHA.class.php:991 +msgid "SSH public key" +msgstr "ClĆ© SSH publique" + +#: ../../enterprise/include/class/DatabaseHA.class.php:1043 +msgid "Missed parameters" +msgstr "ParamĆØtres manquĆ©s" + +#: ../../enterprise/include/class/DatabaseHA.class.php:1090 +msgid "You must specify a host" +msgstr "SpĆ©cifiez un hĆ“te" + +#: ../../enterprise/include/class/DatabaseHA.class.php:1092 +msgid "DB port must be a positive integer" +msgstr "Le port de la base de donnĆ©es doit ĆŖtre un nĆŗmero entier positif" + +#: ../../enterprise/include/class/DatabaseHA.class.php:1094 +msgid "SSH port must be a positive integer" +msgstr "Le port SSH doit ĆŖtre un nĆŗmero entier positif" + +#: ../../enterprise/include/class/DatabaseHA.class.php:1096 +msgid "You must specify a SSH user" +msgstr "SpĆ©cifiez un utilisateur SSH" + +#: ../../enterprise/include/class/DatabaseHA.class.php:1098 +msgid "You must specify a replication DB user" +msgstr "SpĆ©cifiez un utilisateur de base de donnĆ©es de rĆ©plication" + +#: ../../enterprise/include/class/DatabaseHA.class.php:1100 +msgid "You must specify a replication DB pass" +msgstr "SpĆ©cifiez un mot de passe de la base de donnĆ©es de rĆ©plication" + +#: ../../enterprise/include/class/DatabaseHA.class.php:1102 +msgid "You must specify a public key path" +msgstr "SpĆ©cifiez un chemin de clĆ© publique" + +#: ../../enterprise/include/class/DatabaseHA.class.php:1104 +msgid "You must specify a private path" +msgstr "SpĆ©cifiez un chemin privĆ©" + +#: ../../enterprise/include/class/DatabaseHA.class.php:1154 +msgid "Successfully " +msgstr "Correctement " + +#: ../../enterprise/include/class/NetworkConfigManager.class.php:375 +msgid "Perform action" +msgstr "RĆ©aliser l'action" + +#: ../../enterprise/include/class/NetworkConfigManager.class.php:1442 +msgid "NCM devices" +msgstr "Appareils NCM" + +#: ../../enterprise/include/class/NetworkConfigManager.class.php:1456 +msgid "NCM templates" +msgstr "ModĆØles NCM" + +#: ../../enterprise/include/class/NetworkConfigManager.class.php:1470 +msgid "Registered vendors" +msgstr "Fournisseurs rĆ©gistrĆ©s" + +#: ../../enterprise/include/class/NetworkConfigManager.class.php:1484 +msgid "Registered models" +msgstr "ModĆØles registrĆ©s" + +#: ../../enterprise/include/class/NetworkConfigManager.class.php:1498 +msgid "Registered snippets" +msgstr "Snippets enregistrĆ©s" + +#: ../../enterprise/include/class/NetworkConfigManager.class.php:1512 +msgid "Registered firmwares" +msgstr "Firmwares enregistrĆ©s" + +#: ../../enterprise/include/class/NetworkConfigManager.class.php:1548 +msgid "No agents with NCM features enabled yet" +msgstr "Pas encore d'agents avec les fonctionnalitĆ©s NCM activĆ©s" + +#: ../../enterprise/include/class/NetworkConfigManager.class.php:1679 +#: ../../enterprise/include/class/NetworkConfigManager.class.php:2189 +#: ../../enterprise/include/class/NetworkConfigManager.class.php:2240 +#, php-format +msgid "Template not found: %s" +msgstr "ModĆØle non trouvĆ© : %s" + +#: ../../enterprise/include/class/NetworkConfigManager.class.php:1704 +msgid "Template created" +msgstr "ModĆØle crĆ©Ć©" + +#: ../../enterprise/include/class/NetworkConfigManager.class.php:1704 +msgid "Template updated" +msgstr "ModĆØle mis Ć  jour" + +#: ../../enterprise/include/class/NetworkConfigManager.class.php:1725 +#: ../../enterprise/include/class/NetworkConfigManager.class.php:1807 +#: ../../enterprise/include/class/NetworkConfigManager.class.php:1901 +#: ../../enterprise/include/class/NetworkConfigManager.class.php:1992 +#: ../../enterprise/include/class/NetworkConfigManager.class.php:2131 +#: ../../enterprise/include/class/NetworkConfigManager.class.php:2792 +#: ../../enterprise/include/lib/Metaconsole/Node.php:1453 +#: ../../include/class/CalendarManager.class.php:570 +#: ../../include/class/CalendarManager.class.php:946 +#: ../../include/functions_reporting.php:4927 +#: ../../include/functions_reporting.php:4955 +#, php-format +msgid "Error: %s" +msgstr "Erreur : %s" + +#: ../../enterprise/include/class/NetworkConfigManager.class.php:1770 +#: ../../enterprise/include/class/NetworkConfigManager.class.php:2314 +#, php-format +msgid "Vendor not found: %s" +msgstr "Fournisseur non trouvĆ© : %s" + +#: ../../enterprise/include/class/NetworkConfigManager.class.php:1788 +#: ../../enterprise/include/class/NetworkConfigManager.class.php:1878 +#: ../../enterprise/include/class/NetworkConfigManager.class.php:1973 +#: ../../enterprise/include/class/NetworkConfigManager.class.php:2067 +#: ../../include/class/CalendarManager.class.php:538 +#: ../../include/class/CalendarManager.class.php:895 +msgid "Failed to create" +msgstr "Erreur de crĆ©ation" + +#: ../../enterprise/include/class/NetworkConfigManager.class.php:1801 +msgid "Failed saving vendor: " +msgstr "Erreur de sauvegarde de fournisseur : " + +#: ../../enterprise/include/class/NetworkConfigManager.class.php:1860 +#, php-format +msgid "model not found: %s" +msgstr "modĆØle non trouvĆ© : %s" + +#: ../../enterprise/include/class/NetworkConfigManager.class.php:1882 +#: ../../enterprise/include/class/NetworkConfigManager.class.php:2653 +msgid "you must select a valid vendor" +msgstr "sĆ©lectionnez un fournisseur valide" + +#: ../../enterprise/include/class/NetworkConfigManager.class.php:1895 +msgid "Failed saving model: " +msgstr "Erreur de sauvegarde de modĆØle : " + +#: ../../enterprise/include/class/NetworkConfigManager.class.php:1955 +#, php-format +msgid "snippet not found: %s" +msgstr "Skipper introuvable : %s" + +#: ../../enterprise/include/class/NetworkConfigManager.class.php:1986 +msgid "Failed saving snippet: " +msgstr "Erreur de sauvegarde du skipper : " + +#: ../../enterprise/include/class/NetworkConfigManager.class.php:2049 +#, php-format +msgid "firmware not found: %s" +msgstr "firmware introuvable : %s" + +#: ../../enterprise/include/class/NetworkConfigManager.class.php:2076 +msgid "Firmware file missing" +msgstr "Fichier du firmware manquant" + +#: ../../enterprise/include/class/NetworkConfigManager.class.php:2089 +#: ../../enterprise/include/class/AgentRepository.class.php:450 +msgid "Cannot create target dir [" +msgstr "Le rĆ©pertoire cible n'a pas pu ĆŖtre crĆ©Ć© [" + +#: ../../enterprise/include/class/NetworkConfigManager.class.php:2108 +#, php-format +msgid "Failed to store file in %s" +msgstr "Impossible de stocker le fichier dans %s" + +#: ../../enterprise/include/class/NetworkConfigManager.class.php:2125 +msgid "Failed saving firmware: " +msgstr "Ɖchec de lā€™enregistrement du firmware : " + +#: ../../enterprise/include/class/NetworkConfigManager.class.php:2152 +msgid "" +"Upload only official binary files from your device provide in raw format (not " +"compressed)" +msgstr "" +"TĆ©lĆ©chargez uniquement les fichiers binaires officiels Ć  partir de votre appareil " +"au format brut (non compressĆ©)" + +#: ../../enterprise/include/class/NetworkConfigManager.class.php:2201 +#: ../../godmode/modules/manage_network_templates.php:83 +msgid "Template successfully deleted" +msgstr "ModĆØle supprimĆ© correctement" + +#: ../../enterprise/include/class/NetworkConfigManager.class.php:2256 +msgid "Template successfully duplicated" +msgstr "ModĆØle dupliquĆ© correctement" + +#: ../../enterprise/include/class/NetworkConfigManager.class.php:2279 +#, php-format +msgid "Model not found: %s" +msgstr "ModĆØle non trouvĆ© : %s" + +#: ../../enterprise/include/class/NetworkConfigManager.class.php:2291 +msgid "Model successfully deleted" +msgstr "ModĆØle Ć©liminĆ© correctement" + +#: ../../enterprise/include/class/NetworkConfigManager.class.php:2326 +msgid "Vendor successfully deleted" +msgstr "Fournisseur Ć©liminĆ© correctement" + +#: ../../enterprise/include/class/NetworkConfigManager.class.php:2349 +#, php-format +msgid "Snippet not found: %s" +msgstr "Snippet introuvable : %s" + +#: ../../enterprise/include/class/NetworkConfigManager.class.php:2361 +msgid "Snippet successfully deleted" +msgstr "Snippet supprimĆ© correctement" + +#: ../../enterprise/include/class/NetworkConfigManager.class.php:2384 +#, php-format +msgid "Firmware not found: %s" +msgstr "Firmware introuvable : %s" + +#: ../../enterprise/include/class/NetworkConfigManager.class.php:2396 +msgid "Firmware successfully deleted" +msgstr "Firmware supprimĆ© correctement" + +#: ../../enterprise/include/class/NetworkConfigManager.class.php:2475 +msgid "" +"Not executed yet, no content to display, define your own in following textarea." +msgstr "" +"Pas encore exĆ©cutĆ©, pas de contenu Ć  afficher, dĆ©finissez le vĆ“tre dans la zone " +"de texte suivante." + +#: ../../enterprise/include/class/NetworkConfigManager.class.php:2484 +msgid "" +"Following content is already queued to be executed! You must wait until execution " +"is finished before being able to modify this." +msgstr "" +"Le contenu suivant est dĆ©jĆ  mis en file dā€™attente pour ĆŖtre exĆ©cutĆ© ! Vous devez " +"attendre la fin de lā€™exĆ©cution avant de pouvoir la modifier." + +#: ../../enterprise/include/class/NetworkConfigManager.class.php:2576 +msgid "Check progress" +msgstr "VĆ©rifier la progression" + +#: ../../enterprise/include/class/NetworkConfigManager.class.php:2585 +#, php-format +msgid "Script scheduled %s %s" +msgstr "Script planifiĆ© %s %s" + +#: ../../enterprise/include/class/NetworkConfigManager.class.php:2643 +#, php-format +msgid "Error retrieving template: %s" +msgstr "Erreur de rĆ©cupĆ©ration du modĆØle : %s" + +#: ../../enterprise/include/class/NetworkConfigManager.class.php:2649 +msgid "you must select a template" +msgstr "sĆ©lectionnez un modĆØle" + +#: ../../enterprise/include/class/NetworkConfigManager.class.php:2651 +msgid "you must select a valid model" +msgstr "sĆ©lectionnez un modĆØle valide" + +#: ../../enterprise/include/class/NetworkConfigManager.class.php:2655 +msgid "you must select a valid port" +msgstr "sĆ©lectionnez un port valide" + +#: ../../enterprise/include/class/NetworkConfigManager.class.php:2689 +#, php-format +msgid "Failed to update%s" +msgstr "Erreur de mise Ć  jour %s" + +#: ../../enterprise/include/class/NetworkConfigManager.class.php:2721 +msgid "No configuration registers to backup" +msgstr "Pas de registres de configuration Ć  backup" + +#: ../../enterprise/include/class/NetworkConfigManager.class.php:2729 +#: ../../enterprise/include/class/NetworkConfigManager.class.php:2745 +msgid "Successfully backed up" +msgstr "SauvegardĆ© correctement" + +#: ../../enterprise/include/class/NetworkConfigManager.class.php:2780 +msgid "Invalid id given" +msgstr "ID fournie non valide" + +#: ../../enterprise/include/class/NetworkConfigManager.class.php:2815 +msgid "" +"Is highly recommendable to execute this kind of operation from agent details to " +"preview the script content" +msgstr "" +"Il est fortement recommandĆ© dā€™exĆ©cuter ce type dā€™opĆ©ration Ć  partir des dĆ©tails " +"de lā€™agent pour prĆ©visualiser le contenu du script" + +#: ../../enterprise/include/class/NetworkConfigManager.class.php:2824 +msgid "This operation is not ready yet! Keep up to date with latest updates" +msgstr "" +"Cette opĆ©ration n'est pas prĆŖte encore ! Tenez-vous au courant des derniĆØres " +"nouvelles" + +#: ../../enterprise/include/class/NetworkConfigManager.class.php:2833 +msgid "Invalid action" +msgstr "Action non valide" + +#: ../../enterprise/include/class/NetworkConfigManager.class.php:2853 +msgid "Failed to schedule action." +msgstr "Erreur de programmation de l'action" + +#: ../../enterprise/include/class/AgentRepository.class.php:346 +msgid "Time in seconds before deployment is cancelled." +msgstr "Temps en secondes avant lā€™annulation du dĆ©ploiement." + +#: ../../enterprise/include/class/AgentRepository.class.php:385 +msgid "Transfer timeout" +msgstr "DĆ©lai dā€™expiration du transfert" + +#: ../../enterprise/include/class/AgentRepository.class.php:393 +msgid "Installation file" +msgstr "Fichier d'installation" + +#: ../../enterprise/include/class/AgentRepository.class.php:433 +msgid "Agent version is required" +msgstr "La version de l'agent est requise" + +#: ../../enterprise/include/class/AgentRepository.class.php:471 +#, php-format +msgid "Invalid installation file for %s" +msgstr "Fichier d'installation pour %s non valide" + +#: ../../enterprise/include/class/AgentRepository.class.php:500 +msgid "Installation files not modified" +msgstr "Fichiers d'installation non modifiĆ©s" + +#: ../../enterprise/include/class/AgentRepository.class.php:519 +msgid "Installation files updated" +msgstr "Fichiers d'installation mises Ć  jour" + +#: ../../enterprise/include/class/AgentRepository.class.php:526 +msgid "You must provide installation files to create a new entry." +msgstr "" +"Vous devez fournir les fichiers d'installation pour crĆ©er une nouvelle entrĆ©e." + +#: ../../enterprise/include/class/AgentRepository.class.php:547 +msgid "This agent has been already defined." +msgstr "Cet agent a Ć©tĆ© dĆ©jĆ  dĆ©finit." + +#: ../../enterprise/include/class/AgentRepository.class.php:563 +msgid "Agent successfully registered and uploaded" +msgstr "Agent registrĆ© correctement et mis Ć  jour" + +#: ../../enterprise/include/class/AgentRepository.class.php:643 +msgid "Uploaded by" +msgstr "Mis en ligne par" + +#: ../../enterprise/include/class/AgentRepository.class.php:644 +msgid "Upload date" +msgstr "Date de mise en ligne" + +#: ../../enterprise/include/class/AgentRepository.class.php:726 +msgid "Add new software" +msgstr "Ajouter nouveau logiciel" + +#: ../../enterprise/include/class/AgentRepository.class.php:913 +msgid "Add new Software agent" +msgstr "Ajouter nouvel agent logiciel" + +#: ../../enterprise/include/class/AgentRepository.class.php:916 +msgid "Update Software agent" +msgstr "Mettre Ć  jour l'agent logiciel" + +#: ../../enterprise/include/class/Omnishell.class.php:214 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:414 +msgid "Please follow the wizard." +msgstr "Veuillez suivre l'assistant." + +#: ../../enterprise/include/class/Omnishell.class.php:226 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:427 +msgid "You have no acess to edit this command." +msgstr "Vous n'avez pas d'accĆØs Ć  l'Ć©dition de cette commande." + +#: ../../enterprise/include/class/Omnishell.class.php:261 +msgid "Failed to save command." +msgstr "Erreur lors de la sauvegarde du commande." + +#: ../../enterprise/include/class/Omnishell.class.php:272 +msgid "Command not found." +msgstr "Commande non trouvĆ©e." + +#: ../../enterprise/include/class/Omnishell.class.php:319 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:718 +#: ../../include/class/HelpFeedBack.class.php:99 +msgid "Page not found" +msgstr "Page non trouvĆ©e" + +#: ../../enterprise/include/class/Omnishell.class.php:349 +#: ../../enterprise/include/class/Omnishell.class.php:610 +msgid "You must install php-yaml in order to use this feature." +msgstr "Installez php-yaml pour utiliser cette fonctionnalitĆ©." + +#: ../../enterprise/include/class/Omnishell.class.php:364 +msgid "Not Started" +msgstr "Non dĆ©marrĆ©" + +#: ../../enterprise/include/class/Omnishell.class.php:442 +msgid "Commands status" +msgstr "Ɖtat des commandes" + +#: ../../enterprise/include/class/Omnishell.class.php:487 +msgid "Create command" +msgstr "CrĆ©er commande" + +#: ../../enterprise/include/class/Omnishell.class.php:506 +msgid "Selected command definitions will be erased" +msgstr "Las dĆ©finitions de la commande sĆ©lectionnĆ©e seront Ć©liminĆ©es" + +#: ../../enterprise/include/class/Omnishell.class.php:688 +msgid "Time out" +msgstr "Time out" + +#: ../../enterprise/include/class/Omnishell.class.php:697 +msgid "Retries " +msgstr "Tentatives " + +#: ../../enterprise/include/class/Omnishell.class.php:708 +msgid "Preconditions " +msgstr "Conditions prĆ©alables " + +#: ../../enterprise/include/class/Omnishell.class.php:709 +msgid "All commands defined line per line must success to execute main commands" +msgstr "" +"Toutes les commandes dĆ©finies ligne par ligne doivent succĆ©der pour exĆ©cuter les " +"commandes principales" + +#: ../../enterprise/include/class/Omnishell.class.php:721 +msgid "Execute commands " +msgstr "ExĆ©cuter les commandes " + +#: ../../enterprise/include/class/Omnishell.class.php:722 +msgid "Define as many lines as commands you want to execute" +msgstr "DĆ©finissez aussi de lignes que commandes vous voulez exĆ©cuter" + +#: ../../enterprise/include/class/Omnishell.class.php:734 +msgid "Postconditions " +msgstr "Post-conditions " + +#: ../../enterprise/include/class/Omnishell.class.php:735 +msgid "All commands defined line per line must success to consider command success" +msgstr "" +"Toutes les commandes dĆ©finies ligne par ligne doivent succĆ©der pour considerer le " +"succĆØs de la commande" + +#: ../../enterprise/include/class/Omnishell.class.php:835 +#: ../../godmode/agentes/planned_downtime.editor.php:805 +msgid "Available agents" +msgstr "Agents disponibles" + +#: ../../enterprise/include/class/Omnishell.class.php:880 +msgid "Remove agents" +msgstr "Ɖliminer des agents" + +#: ../../enterprise/include/class/Omnishell.class.php:1157 +msgid "Selected command definition will be erased" +msgstr "La dĆ©finition de la commande sĆ©lectionnĆ©e sera Ć©liminĆ©e" + +#: ../../enterprise/include/class/Omnishell.class.php:1243 +msgid "Command viewer" +msgstr "Lecteur de commandes" + +#: ../../enterprise/include/class/Omnishell.class.php:1251 +msgid "Detailed view" +msgstr "Vue dĆ©taillĆ©e" + +#: ../../enterprise/include/class/Omnishell.class.php:1392 +msgid "Not an array of ids" +msgstr "Pas un tableau dā€™IDs" + +#: ../../enterprise/include/class/Omnishell.class.php:1450 +msgid "There are no targets for this remote command" +msgstr "Il n'y a pas de cibles pour cette commande distante" + +#: ../../enterprise/include/class/Omnishell.class.php:1457 +msgid "Command does not exist" +msgstr "La commande n'existe pas" + +#: ../../enterprise/include/class/Omnishell.class.php:1556 +msgid "timed out" +msgstr "timed out" + +#: ../../enterprise/include/class/Omnishell.class.php:1559 +msgid "failed" +msgstr "Ć©chouĆ©" + +#: ../../enterprise/include/class/Omnishell.class.php:1575 +msgid "Waiting results..." +msgstr "En attendant des rĆ©sultats..." + +#: ../../enterprise/include/class/Omnishell.class.php:1594 +msgid "RCMD does not exist" +msgstr "Le RCMD n'existe pas" + +#: ../../enterprise/include/class/LogSource.class.php:455 +msgid "Source is required" +msgstr "La source est requise" + +#: ../../enterprise/include/class/LogSource.class.php:562 +msgid "id cannot be empty" +msgstr "L'ID ne peut pas ĆŖtre vide" + +#: ../../enterprise/include/class/LogSource.class.php:567 +#: ../../include/class/CredentialStore.class.php:747 +msgid "Not allowed" +msgstr "Non autorisĆ©" + +#: ../../enterprise/include/class/LogSource.class.php:611 +#: ../../include/class/CredentialStore.class.php:786 +msgid "How to configure encryption." +msgstr "Comment configurer cryptage" + +#: ../../enterprise/include/class/LogSource.class.php:610 +#, php-format +msgid "Log monitoring is disabled. %s" +msgstr "La supervision de journaux est dĆ©sactivĆ©e. %s" + +#: ../../enterprise/include/class/LogSource.class.php:680 +#: ../../enterprise/include/class/LogSource.class.php:846 +msgid "Add log source" +msgstr "Ajouter source de journal" + +#: ../../enterprise/include/class/LogSource.class.php:715 +msgid "Source name" +msgstr "Nom de la source" + +#: ../../enterprise/include/class/LogSource.class.php:850 +msgid "Update log source" +msgstr "Mettre Ć  jour la source de journal" + +#: ../../enterprise/include/class/DB2.app.php:165 +msgid "" +"This DB2 configuration has been already defined. Please edit it or create a new " +"one." +msgstr "" +"Cette configuration DB2 est dĆ©jĆ  dĆ©finie. Veuillez l'Ć©diter ou en crĆ©er une " +"nouvelle." + +#: ../../enterprise/include/class/DB2.app.php:207 +msgid "You must provide a valid DB2 server IP or FQDN." +msgstr "Vous devez fournir un serveur IP DB2 ou FQDN valide." + +#: ../../enterprise/include/class/DB2.app.php:219 +msgid "Discovery.Application.DB2" +msgstr "Discovery.Application.DB2" + +#: ../../enterprise/include/class/DB2.app.php:270 +msgid "Failed to find discovery DB2 task." +msgstr "Erreur pour trouver la tache DB2." + +#: ../../enterprise/include/class/DB2.app.php:486 +msgid "DB2 target strings" +msgstr "ChaĆ®nes cibles DB2" + +#: ../../enterprise/include/class/DB2.app.php:487 +msgid "" +"SERVER:PORT/DATABASE, comma separated or line by line, as many targets as you " +"need." +msgstr "" +"SERVER:PORT/DATABASE, sĆ©parĆ©s par des virgules ou ligne par ligne, aussi d'agents " +"dont vous avez besoin." + +#: ../../enterprise/include/class/DB2.app.php:487 +#: ../../enterprise/include/class/Oracle.app.php:494 +#: ../../enterprise/include/class/MicrosoftSQLServer.app.php:488 +msgid "Use # symbol to comment a line." +msgstr "Utilisez le symbole # pour commenter une ligne." + +#: ../../enterprise/include/class/DB2.app.php:634 +#: ../../enterprise/include/class/MySQL.app.php:656 +#: ../../enterprise/include/class/Oracle.app.php:641 +#: ../../enterprise/include/class/MicrosoftSQLServer.app.php:635 +msgid "Target agent" +msgstr "Agent cible" + +#: ../../enterprise/include/class/DB2.app.php:635 +#: ../../enterprise/include/class/Oracle.app.php:642 +#: ../../enterprise/include/class/MicrosoftSQLServer.app.php:636 +msgid "" +"Defines a target agent where this task will store data detected, if you have " +"defined multiple targets, define a comma separated list of names here or leave in " +"blank to use target as name." +msgstr "" +"Il dĆ©finit un agent cible oĆ¹ cette tache stockera les donnĆ©es dĆ©tectĆ©es, si vous " +"avez dĆ©finis des cibles multiples, dĆ©finissez une liste sĆ©parĆ© par des virgules " +"de noms ici ou laissez-le vide pour utiliser le cible en tant que nom." + +#: ../../enterprise/include/class/DB2.app.php:654 +#: ../../enterprise/include/class/MySQL.app.php:676 +#: ../../enterprise/include/class/Oracle.app.php:661 +#: ../../enterprise/include/class/MicrosoftSQLServer.app.php:655 +msgid "Custom module prefix" +msgstr "PrĆ©fixe de module personnalisĆ©" + +#: ../../enterprise/include/class/DB2.app.php:655 +#: ../../enterprise/include/class/MySQL.app.php:677 +#: ../../enterprise/include/class/Oracle.app.php:662 +#: ../../enterprise/include/class/MicrosoftSQLServer.app.php:656 +msgid "" +"Defines a custom prefix to be concatenated before module names generated by this " +"task." +msgstr "" +"Il dĆ©finit un prĆ©fixe personnalisĆ©e pour le concatĆ©ner avant les noms des modules " +"gĆ©nĆ©rĆ©s par cette tache." + +#: ../../enterprise/include/class/DB2.app.php:673 +msgid "Get database summary" +msgstr "Obtenir rĆ©sumĆ© de la base de donnĆ©es" + +#: ../../enterprise/include/class/DB2.app.php:689 +msgid "Check transactional log utilization" +msgstr "VĆ©rifier usage de journaux transactionnels" + +#: ../../enterprise/include/class/DB2.app.php:705 +msgid "Get number of connections" +msgstr "Obtenir nombre de connexions" + +#: ../../enterprise/include/class/DB2.app.php:721 +msgid "Check DB size" +msgstr "VĆ©rifier la taille de Base de donnĆ©es" + +#: ../../enterprise/include/class/DB2.app.php:737 +#: ../../enterprise/include/class/MySQL.app.php:821 +#: ../../enterprise/include/class/Oracle.app.php:760 +msgid "Retrieve cache statistics" +msgstr "RĆ©cupĆ©rer statistique du cachĆ©" + +#: ../../enterprise/include/class/DB2.app.php:753 +#: ../../enterprise/include/class/MySQL.app.php:837 +#: ../../enterprise/include/class/Oracle.app.php:776 +#: ../../enterprise/include/class/MicrosoftSQLServer.app.php:722 +msgid "Execute custom queries" +msgstr "ExĆ©cuter requĆŖtes personnalisĆ©es" + +#: ../../enterprise/include/class/DB2.app.php:821 +#: ../../enterprise/include/class/MySQL.app.php:889 +#: ../../enterprise/include/class/Oracle.app.php:930 +#: ../../enterprise/include/class/MicrosoftSQLServer.app.php:774 +msgid "Custom queries" +msgstr "RequĆŖtes personnalisĆ©es" + +#: ../../enterprise/include/class/DB2.app.php:822 +#: ../../enterprise/include/class/MySQL.app.php:890 +#: ../../enterprise/include/class/Oracle.app.php:931 +#: ../../enterprise/include/class/MicrosoftSQLServer.app.php:775 +msgid "Define here your custom queries." +msgstr "DĆ©finissez ice vos requĆŖtes personnalisĆ©es." + +#: ../../enterprise/include/class/Aws.S3.php:60 +msgid "Aws S3" +msgstr "Aws S3" + +#: ../../enterprise/include/class/Aws.S3.php:166 +#: ../../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 "Cette tache a Ć©tĆ© dĆ©jĆ  dĆ©finie. Veuillez l'Ć©diter ou en crĆ©er une nouvelle." + +#: ../../enterprise/include/class/Aws.S3.php:214 +msgid "You must select something." +msgstr "SĆ©lectionnez quelque Ć©lĆ©ment." + +#: ../../enterprise/include/class/Aws.S3.php:236 +msgid "Discovery.Cloud.AWS.S3" +msgstr "Discovery.Cloud.AWS.S3" + +#: ../../enterprise/include/class/Aws.S3.php:294 +msgid "Unknown task" +msgstr "Tache inconnue" + +#: ../../enterprise/include/class/Aws.S3.php:313 +msgid "Unknown section." +msgstr "Section inconnue." + +#: ../../enterprise/include/class/Aws.S3.php:339 +msgid "S3" +msgstr "S3" + +#: ../../enterprise/include/class/Aws.S3.php:344 +msgid "Bucket monitoring" +msgstr "Supervision des compartiments" + +#: ../../enterprise/include/class/Aws.S3.php:454 +msgid "No buckets found." +msgstr "Aucun compartiment trouvĆ©s." + +#: ../../enterprise/include/class/Aws.S3.php:598 +msgid "Select Buckets to be monitored" +msgstr "SĆ©lectionner compartiments Ć  superviser" + +#: ../../enterprise/include/class/Aws.S3.php:633 +msgid "Monitor bucket size" +msgstr "Superviser la taille du compartiment" + +#: ../../enterprise/include/class/Aws.S3.php:643 +msgid "Monitor bucket total items" +msgstr "Superviser tous les Ć©lĆ©ments du compartiment" + +#: ../../enterprise/include/class/CSVImportAgents.class.php:121 +msgid "The CSV file must have the fields in the following order:" +msgstr "Le fichier CSV doit avoir les champs dans l'ordre suivant :" + +#: ../../enterprise/include/class/CSVImportAgents.class.php:122 +msgid "Agent alias, IP address, OS id, Interval, Group id, Description" +msgstr "" +"Alias agent, adresse IP, ID du SystĆØme d'exploitation, Intervalle, ID de Groupe, " +"Description" + +#: ../../enterprise/include/class/CSVImportAgents.class.php:127 +msgid "" +"Warning, this CSV importer will not perform any discovery, it will only create " +"empty agents with the name, IP, OS type, description and group provided in the " +"CSV." +msgstr "" +"Attention, cet importateur CSV nā€™effectuera aucune dĆ©couverte, il crĆ©era " +"uniquement des agents vides avec le nom, lā€™adresse IP, le type de systĆØme " +"dā€™exploitation, la description et le groupe fournis dans le fichier CSV." + +#: ../../enterprise/include/class/CSVImportAgents.class.php:179 +msgid "Alias as name" +msgstr "Alias en tant que nom" + +#: ../../enterprise/include/class/CSVImportAgents.class.php:244 +msgid "No data or wrong separator" +msgstr "Absence de donnĆ©es ou sĆ©parateur incorrecte" + +#: ../../enterprise/include/class/CSVImportAgents.class.php:250 +#, php-format +msgid "Agent %s duplicated." +msgstr "Agent %s dupliquĆ©." + +#: ../../enterprise/include/class/CSVImportAgents.class.php:257 +#, php-format +msgid "Id group %s doesn't exist in %s" +msgstr "L'ID du groupe %s n'existe pas dans %s" + +#: ../../enterprise/include/class/CSVImportAgents.class.php:265 +msgid "General failure." +msgstr "DĆ©faillance gĆ©nĆ©ral" + +#: ../../enterprise/include/class/CSVImportAgents.class.php:286 +msgid "No input file detected" +msgstr "Aucun fichier d'entrĆ©e dĆ©tectĆ©" + +#: ../../enterprise/include/class/CSVImportAgents.class.php:375 +msgid "Agent processed successfully" +msgstr "Agent processĆ© correctement" + +#: ../../enterprise/include/class/CSVImportAgents.class.php:381 +msgid "Some errors while processing CSV." +msgstr "Quelques erreurs en processant le CSV." + +#: ../../enterprise/include/class/CSVImportAgents.class.php:384 +msgid "All agents processed correctly" +msgstr "Tous les agents processĆ©s correctement" + +#: ../../enterprise/include/class/CSVImportAgents.class.php:391 +#, php-format +msgid "Line %s" +msgstr "Ligne %s" + +#: ../../enterprise/include/class/SAPView.class.php:146 +#: ../../enterprise/include/class/SAPView.class.php:190 +msgid "SAP View" +msgstr "Vue SAP" + +#: ../../enterprise/include/class/SAPView.class.php:164 +msgid "SAP data not found." +msgstr "DonnĆ©es SAP non trouvĆ©s." + +#: ../../enterprise/include/class/SAPView.class.php:258 +msgid "Refresh Every" +msgstr "RafraĆ®chir chaque" + +#: ../../enterprise/include/class/SAPView.class.php:295 +msgid "Graph Interval" +msgstr "Intervalle de graphique" + +#: ../../enterprise/include/class/SAPView.class.php:626 +msgid "" +"SAP view offers you to see the most important modules Discovery Server is usually " +"configured to retry. You have not configured a Discovery SAP R3 task yet, please " +"visit" +msgstr "" +"La vue SAP vous offre de voir les modules les plus importants que le serveur " +"Discovery rĆ©essaie normalement. Si vous n'avez pas configurĆ© une tache Discovery " +"SAP RĀ· encore, veuillez visiter" + +#: ../../enterprise/include/class/SAPView.class.php:626 +msgid "to start monitoring your SAP infrastructure." +msgstr "pour commencer Ć  superviser votre infrastructure SAP." + +#: ../../enterprise/include/class/SAPView.class.php:633 +msgid "Discover SAP" +msgstr "DĆ©couvrir SAP" + +#: ../../enterprise/include/class/SAP.app.php:154 +msgid "" +"This SAP configuration has been already defined. Please edit it or create a new " +"one." +msgstr "" +"Cette configuration SAP a Ć©tĆ© dĆ©finie dĆ©jĆ . Veuillez l'Ć©diter ou en crĆ©er une " +"nouvelle." + +#: ../../enterprise/include/class/SAP.app.php:195 +msgid "You must specify at last one SAP hostname." +msgstr "SpĆ©cifiez au moins un nom d'hĆ“te SAP" + +#: ../../enterprise/include/class/SAP.app.php:206 +msgid "Discovery.Application.SAP" +msgstr "Discovery.Application.SAP" + +#: ../../enterprise/include/class/SAP.app.php:262 +msgid "Failed to find discovery SAP task." +msgstr "Erreur en trouvant la tache SAP de dĆ©couverte." + +#: ../../enterprise/include/class/SAP.app.php:286 +msgid "Select at least a module." +msgstr "SĆ©lectionnez au moins un module." + +#: ../../enterprise/include/class/SAP.app.php:354 +msgid "SAP R3" +msgstr "SAP R3" + +#: ../../enterprise/include/class/SAP.app.php:547 +msgid "SAP Hostname" +msgstr "Nom d'hĆ“te SAP" + +#: ../../enterprise/include/class/SAP.app.php:571 +msgid "SAP Client" +msgstr "Client SAP" + +#: ../../enterprise/include/class/SAP.app.php:585 +msgid "SAP System Number" +msgstr "NĆŗmero de systĆØme SAP" + +#: ../../enterprise/include/class/SAP.app.php:617 +#: ../../enterprise/include/class/SAP.app.php:631 +msgid "SAP Credentials" +msgstr "Identifiants SAP" + +#: ../../enterprise/include/class/SAP.app.php:617 +#: ../../enterprise/include/class/SAP.app.php:631 +msgid "Optional" +msgstr "Optionnel" + +#: ../../enterprise/include/class/SAP.app.php:727 +#: ../../include/functions_agents.php:4000 +msgid "SAP Login OK" +msgstr "Connexion SAP OK" + +#: ../../enterprise/include/class/SAP.app.php:728 +#: ../../include/functions_agents.php:4001 +msgid "SAP Dumps" +msgstr "Vidage SAP" + +#: ../../enterprise/include/class/SAP.app.php:729 +#: ../../include/functions_agents.php:4002 +msgid "SAP lock entry list" +msgstr "Liste des entrĆ©es de verrouillage SAP" + +#: ../../enterprise/include/class/SAP.app.php:730 +#: ../../include/functions_agents.php:4003 +msgid "SAP canceled Jobs" +msgstr "Travaux SAP annulĆ©s" + +#: ../../enterprise/include/class/SAP.app.php:731 +#: ../../include/functions_agents.php:4004 +msgid "SAP Batch inputs erroneous" +msgstr "EntrĆ©es par lot SAP erronĆ©es" + +#: ../../enterprise/include/class/SAP.app.php:732 +#: ../../include/functions_agents.php:4005 +msgid "SAP IDOC erroneous" +msgstr "IDOC SAP erronĆ©" + +#: ../../enterprise/include/class/SAP.app.php:733 +#: ../../include/functions_agents.php:4006 +msgid "SAP IDOC OK" +msgstr "IDOC SAP OK" + +#: ../../enterprise/include/class/SAP.app.php:734 +#: ../../include/functions_agents.php:4007 +msgid "SAP WP without active restart" +msgstr "SAP WB sans redĆ©marrage active" + +#: ../../enterprise/include/class/SAP.app.php:735 +#: ../../include/functions_agents.php:4008 +msgid "SAP WP stopped" +msgstr "SAP WP arrĆŖtĆ©" + +#: ../../enterprise/include/class/SAP.app.php:736 +#: ../../include/functions_agents.php:4009 +msgid "Average time of SAPGUI response" +msgstr "Moyenne de temps de rĆ©ponse de SAPGUI" + +#: ../../enterprise/include/class/SAP.app.php:737 +#: ../../include/functions_agents.php:4011 +msgid "Dialog Logged users" +msgstr "Utilisateurs connectĆ©s de dialogue" + +#: ../../enterprise/include/class/SAP.app.php:738 +#: ../../include/functions_agents.php:4012 +msgid "TRFC in error" +msgstr "TRFC en erreur" + +#: ../../enterprise/include/class/SAP.app.php:739 +#: ../../include/functions_agents.php:4013 +msgid "QRFC in error SMQ2" +msgstr "QRFC en erreur SMQ2" + +#: ../../enterprise/include/class/SAP.app.php:740 +#: ../../include/functions_agents.php:4014 +msgid "Number of Update WPs in error" +msgstr "Nombre de WPs de mise Ć  jour en erreur" + +#: ../../enterprise/include/class/SAP.app.php:764 +#, php-format +msgid "" +"Module 180 must be customized before being used, please use advanced options to " +"define the module following the documentation:
    %s" +msgstr "" +"Le module 180 doit ĆŖtre personnalisĆ©e avant de l'utiliser, veuillez utiliser les " +"options avancĆ©es pour dĆ©finir la documentation suivante :
    %s" + +#: ../../enterprise/include/class/SAP.app.php:785 +msgid "Available modules" +msgstr "Modules disponibles" + +#: ../../enterprise/include/class/SAP.app.php:821 +msgid "Add monitors" +msgstr "Ajouter des moniteurs" + +#: ../../enterprise/include/class/SAP.app.php:834 +msgid "Remove monitors" +msgstr "Ɖliminer des moniteurs" + +#: ../../enterprise/include/class/SAP.app.php:885 +msgid "Define your custom SAP modules." +msgstr "DĆ©finissez vos modules SAP personnalisĆ©s." + +#: ../../enterprise/include/class/SAP.app.php:884 +msgid "Advanced module configuration" +msgstr "Configuration de module avancĆ©e" + +#: ../../enterprise/include/class/SAP.app.php:894 +msgid "Custom module definitions" +msgstr "DĆ©finitions des modules personnalisĆ©s" + +#: ../../enterprise/include/class/SAP.app.php:895 +msgid "" +"Each line is a module definition using following format: module name ; " +"module_type ; SAP check definition." +msgstr "" +"chaque ligne est une dĆ©finition de module utilisant le format suivant : nom de " +"module ; type de module ; dĆ©finition de vĆ©rification SAP" + +#: ../../enterprise/include/class/Aws.cloud.php:118 +#: ../../include/class/CredentialStore.class.php:946 +msgid "Aws" +msgstr "AWS" + +#: ../../enterprise/include/class/Aws.cloud.php:343 +msgid "Recon" +msgstr "Recon" + +#: ../../enterprise/include/class/Aws.cloud.php:344 +msgid "Costs" +msgstr "CoĆ»ts" + +#: ../../enterprise/include/class/Aws.cloud.php:346 +msgid "Instances" +msgstr "Instances" + +#: ../../enterprise/include/class/Aws.cloud.php:441 +msgid "Amazon EC2" +msgstr "Amazon EC2" + +#: ../../enterprise/include/class/Aws.cloud.php:446 +msgid "Amazon RDS" +msgstr "Amazon RDS" + +#: ../../enterprise/include/class/Aws.cloud.php:451 +msgid "S3 Buckets" +msgstr "S3 Buckets" + +#: ../../enterprise/include/class/Aws.cloud.php:471 +#: ../../godmode/wizards/HostDevices.class.php:696 +msgid "NetScan" +msgstr "NetScan" + +#: ../../enterprise/include/class/Aws.cloud.php:510 +msgid "Discovery task name" +msgstr "Nom de la tache Discovery" + +#: ../../enterprise/include/class/Aws.cloud.php:614 +msgid "Total cost" +msgstr "CoĆ»t total" + +#: ../../enterprise/include/class/Aws.cloud.php:631 +msgid "Cost by region" +msgstr "CoĆ»t par rĆ©gion" + +#: ../../enterprise/include/class/Aws.cloud.php:645 +msgid "Cost interval" +msgstr "Intervalle de coĆ»t" + +#: ../../enterprise/include/class/Aws.cloud.php:773 +msgid "Select EC2 instances" +msgstr "SĆ©lectionner instances EC2" + +#: ../../enterprise/include/class/Aws.cloud.php:789 +msgid "Storage" +msgstr "Stockage" + +#: ../../enterprise/include/class/Aws.cloud.php:799 +msgid "Elastic IP Adresses" +msgstr "Adresses IP d'ELastic" + +#: ../../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:987 +msgid "" +"You cannot monitor RDS instances from different types. Please define several " +"tasks for several types." +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:994 +msgid "Discovery.Cloud.AWS.RDS" +msgstr "Discovery.Cloud.AWS.RDS" + +#: ../../enterprise/include/class/Aws.cloud.php:1160 +msgid "RDS" +msgstr "RDS" + +#: ../../enterprise/include/class/Aws.cloud.php:1165 +msgid "DB monitoring" +msgstr "Supervision de la basse de donnĆ©es" + +#: ../../enterprise/include/class/Aws.cloud.php:1175 +msgid "AWS RDS" +msgstr "AWS RDS" + +#: ../../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:1259 +msgid "Global DB password" +msgstr "Mot de pass de la base de donnĆ©es globale" + +#: ../../enterprise/include/class/Aws.cloud.php:1349 +msgid "Select RDS instances" +msgstr "SĆ©lectionner instances RDS" + +#: ../../enterprise/include/class/Aws.cloud.php:1652 +msgid "Invalid group" +msgstr "Groupe non valide" + +#: ../../enterprise/include/class/Aws.cloud.php:1710 +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:1732 +msgid "Engine not supported" +msgstr "Moteur non supportĆ©" + +#: ../../enterprise/include/class/MySQL.app.php:173 +msgid "" +"This MySQL configuration has been already defined. Please edit it or create a new " +"one." +msgstr "" +"Cette configuration MySQL est dĆ©jĆ  dĆ©finie. Veuillez l'Ć©diter ou crĆ©er une autre " +"nouvelle." + +#: ../../enterprise/include/class/MySQL.app.php:216 +msgid "You must provide a valid MySQL server IP or FQDN." +msgstr "vous devez fournir une IP de serveur MySQL ou FQDN valide." + +#: ../../enterprise/include/class/MySQL.app.php:221 +msgid "You must provide a valid port number." +msgstr "Vous devez fournir un nĆŗmero de port valide." + +#: ../../enterprise/include/class/MySQL.app.php:233 +msgid "Discovery.Application.MySQL" +msgstr "Discovery.Application.MySQL" + +#: ../../enterprise/include/class/MySQL.app.php:285 +msgid "Failed to find discovery MySQL task." +msgstr "La tache MySQL n'a pas Ć©tĆ© trouvĆ©e." + +#: ../../enterprise/include/class/MySQL.app.php:491 +msgid "MySQL server IP" +msgstr "IP du serveur MySQL" + +#: ../../enterprise/include/class/MySQL.app.php:492 +msgid "Comma separated, as many targets as you need." +msgstr "SĆ©parĆ©s par des virgules, aussi de cibles que vous souhaitez." + +#: ../../enterprise/include/class/MySQL.app.php:511 +msgid "MySQL server Port" +msgstr "Port du serveur MySQL" + +#: ../../enterprise/include/class/MySQL.app.php:657 +msgid "" +"Defines a target agent where this task will store data detected, if you have " +"defined multiple targets, define a comma separated list of names here or leave in " +"blank to use server IP address/ FQDN." +msgstr "" +"Il dĆ©finit un agent cible oĆ¹ cette tache stockera des donnĆ©es dĆ©tectĆ©es, si vous " +"avez dĆ©fini plus de cibles. dĆ©finissez une liste de noms sĆ©parĆ©s par des virgules " +"ici ou laissez-le vide pour utiliser le serveur adresse IP/FQDN." + +#: ../../enterprise/include/class/MySQL.app.php:698 +msgid "Scan databases" +msgstr "Scanner des basses des donnĆ©es" + +#: ../../enterprise/include/class/MySQL.app.php:714 +msgid "Create agent per database" +msgstr "CrĆ©er un agent par base de donnĆ©es" + +#: ../../enterprise/include/class/MySQL.app.php:735 +msgid "Custom database agent prefix" +msgstr "PrĆ©fixe d'agent de base de donnĆ©es personnalisĆ©e" + +#: ../../enterprise/include/class/MySQL.app.php:736 +msgid "" +"Defines a custom prefix to be concatenated before database agent names generated " +"by this task." +msgstr "" +"Il dĆ©finit un prĆ©fixe personnalisĆ© pour le concatĆ©ner avant les noms des agents " +"de la base de donnĆ©es gĆ©nĆ©rĆ©s par cette tache." + +#: ../../enterprise/include/class/MySQL.app.php:757 +#: ../../enterprise/include/class/Oracle.app.php:680 +#: ../../enterprise/include/class/MicrosoftSQLServer.app.php:674 +msgid "Check engine uptime" +msgstr "VĆ©rifier la disponibilitĆ© du moteur" + +#: ../../enterprise/include/class/MySQL.app.php:773 +#: ../../enterprise/include/class/Oracle.app.php:696 +#: ../../enterprise/include/class/MicrosoftSQLServer.app.php:690 +msgid "Retrieve query statistics" +msgstr "Recueillir les statistiques des requĆŖtes" + +#: ../../enterprise/include/class/MySQL.app.php:789 +#: ../../enterprise/include/class/Oracle.app.php:712 +#: ../../enterprise/include/class/MicrosoftSQLServer.app.php:706 +msgid "Analyze connections" +msgstr "Analyser des connexions" + +#: ../../enterprise/include/class/MySQL.app.php:805 +msgid "Retrieve InnoDB statistics" +msgstr "Recueillir les statistiques InnoDB" + +#: ../../enterprise/include/class/Google.cloud.php:147 +#: ../../include/class/CredentialStore.class.php:949 +msgid "Google" +msgstr "Google" + +#: ../../enterprise/include/class/Google.cloud.php:301 +msgid "Compute Engine" +msgstr "Moteur de calcul" + +#: ../../enterprise/include/class/Google.cloud.php:877 +msgid "This options only applies to zone (region) agents." +msgstr "Ces options seulement appliquent au agents de la zone (rĆ©gion)." + +#: ../../enterprise/include/class/Google.cloud.php:890 +msgid "Scan and general monitoring" +msgstr "Scan et supervision gĆ©nĆ©rale" + +#: ../../enterprise/include/class/Google.cloud.php:903 +msgid "CPU performance summary" +msgstr "RĆ©sumĆ©e de la performance de l'UCT" + +#: ../../enterprise/include/class/Oracle.app.php:172 +msgid "" +"This Oracle configuration has been already defined. Please edit it or create a " +"new one." +msgstr "" +"Cette configuration Oracle a dĆ©jĆ  Ć©tĆ© dĆ©finie. Veuillez Ć©diter ou en crĆ©er une " +"nouvelle." + +#: ../../enterprise/include/class/Oracle.app.php:214 +msgid "You must provide a valid Oracle server IP or FQDN." +msgstr "Vous devez fournir une IP de serveur Oracle ou FQDN valide." + +#: ../../enterprise/include/class/Oracle.app.php:226 +msgid "Discovery.Application.Oracle" +msgstr "Discovery.Application.Oracle" + +#: ../../enterprise/include/class/Oracle.app.php:277 +msgid "Failed to find discovery Oracle task." +msgstr "Erreur en trouvant la tache Oracle discovery." + +#: ../../enterprise/include/class/Oracle.app.php:493 +msgid "Oracle target strings" +msgstr "ChaĆ®nes cibles Oracle" + +#: ../../enterprise/include/class/Oracle.app.php:494 +msgid "" +"SERVER:PORT/SID, comma separated or line by line, as many targets as you need." +msgstr "" +"SERVER:PORT/SID, sĆ©parĆ©s par des virgules ou ligne par ligne, aussi de cibles que " +"vous voulez." + +#: ../../enterprise/include/class/Oracle.app.php:728 +msgid "Calculate fragmentation ratio" +msgstr "Calculer le ratio de fragmentation" + +#: ../../enterprise/include/class/Oracle.app.php:744 +msgid "Monitor tablespaces" +msgstr "Superviser les tablespaces" + +#: ../../enterprise/include/class/MicrosoftSQLServer.app.php:171 +msgid "" +"This Microsoft SQL Server configuration has been already defined. Please edit it " +"or create a new one." +msgstr "" +"Cette configuration du Microsoft SQL Server est dĆ©jĆ  dĆ©finie. Veuillez l'Ć©diter " +"ou en crĆ©er une nouvelle." + +#: ../../enterprise/include/class/MicrosoftSQLServer.app.php:213 +msgid "You must provide a valid Microsoft SQL Server server IP or FQDN." +msgstr "Fournissez une IP ou FQDN de Serveur Microsoft SQL Server valide" + +#: ../../enterprise/include/class/MicrosoftSQLServer.app.php:277 +msgid "Failed to find discovery Microsoft SQL Server task." +msgstr "Erreur pour trouver la tache discovery Microsoft SQL Server" + +#: ../../enterprise/include/class/MicrosoftSQLServer.app.php:487 +msgid "Microsoft SQL Server targets" +msgstr "Cibles Microsoft SQL Server" + +#: ../../enterprise/include/class/MicrosoftSQLServer.app.php:488 +msgid "" +"SERVER:PORT\\INSTANCE, comma separated or line by line, as many targets as you " +"need." +msgstr "" +"SERVER:PORT\\INSTANCE, sĆ©parĆ©s par des virgules ou ligne par ligne, aussi de " +"cibles que vous dĆ©sirez." + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:473 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:532 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:591 +msgid "Alert not found." +msgstr "Alerte non trouvĆ©e." + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:480 +msgid "Invalid json data" +msgstr "DonnĆ©es json non valides" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:575 +msgid "Rules updated." +msgstr "RĆØgles mises Ć  jour." + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:578 +msgid "JSON decoding error. Please call support." +msgstr "Erreur de dĆ©codage de JSON. Veuillez appeler support." + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:630 +msgid "There was a problem creating Action. You must select an action" +msgstr "" +"Il y a eu un problĆØme lors de la crĆ©ation de lā€™action. SĆ©lectionnez une action" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:898 +msgid "Pass" +msgstr "Passer" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:899 +msgid "Drop" +msgstr "LĆ¢cher" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:925 +msgid "Module alert" +msgstr "Alerte de module" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:945 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2021 +msgid "Load from template" +msgstr "TĆ©lĆ©charger depuis le modĆØle" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:962 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2241 +#: ../../godmode/alerts/configure_alert_template.php:625 +#: ../../godmode/alerts/alert_view.php:258 +msgid "Use special days list" +msgstr "Utiliser la liste de jours spĆ©ciaux" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:979 +#: ../../godmode/alerts/configure_alert_template.php:661 +msgid "Schedule" +msgstr "Planifier" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:982 +#: ../../godmode/alerts/configure_alert_template.php:665 +msgid "No alert has been scheduled yet" +msgstr "Aucune alerte nā€™a encore Ć©tĆ© programmĆ©e" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1004 +msgid "Execute alert" +msgstr "ExĆ©cuter l'alerte" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1007 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3501 +msgid "from" +msgstr "depuis" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1027 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3519 +msgid "times in" +msgstr "fois dans" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1037 +msgid "threshold" +msgstr "seuil" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1047 +msgid "Rule evaluation mode" +msgstr "Mode d'Ć©valuation de rĆØgles" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1047 +msgid "Pass - All alerts are evaluated. Drop - It stops when 1 alert matches." +msgstr "" +"Passer - Toutes les alertes sont Ć©valuĆ©es. LĆ¢cher - Il s'arrĆŖte lorsqu'une alerte " +"correspond." + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1064 +msgid "Grouped by" +msgstr "GroupĆ© par" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1203 +msgid "" +"The templates shown are only for correlative alerts, event alert (legacy) will be " +"deprecated in the future" +msgstr "" +"Les modĆØles montrĆ©s sont seulement pour les alertes correlatives, l'alerte " +"d'Ć©vĆ©nement (legacy) sera obsolĆØte Ć  l'avenir" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1213 +msgid "Available items" +msgstr "ƉlĆ©ments disponibles" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1214 +msgid "Block" +msgstr "Bloc" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1262 +#: ../../enterprise/include/lib/AlertCorrelation.class.php:1084 +msgid "Log content" +msgstr "Contenu du journal" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1267 +#: ../../enterprise/include/lib/AlertCorrelation.class.php:1087 +msgid "Log source" +msgstr "Source du journal" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1272 +#: ../../enterprise/include/lib/AlertCorrelation.class.php:1090 +msgid "Log agent" +msgstr "Agent du journal" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1330 +#: ../../enterprise/include/lib/AlertCorrelation.class.php:1096 +msgid "Event content" +msgstr "Contenu de l'Ć©vĆ©nement" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1335 +#: ../../enterprise/include/lib/AlertCorrelation.class.php:1093 +msgid "Event user comment" +msgstr "Commentaire d'utilisateur d'Ć©vĆ©nement" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1340 +#: ../../enterprise/include/lib/AlertCorrelation.class.php:1099 +msgid "Event agent" +msgstr "Agent de l'Ć©vĆ©nement" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1345 +#: ../../enterprise/include/lib/AlertCorrelation.class.php:1102 +msgid "Event module" +msgstr "Module de l'Ć©vĆ©nement" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1350 +#: ../../enterprise/include/lib/AlertCorrelation.class.php:1105 +msgid "Event module alerts" +msgstr "Alertes des modules d'Ć©vĆ©nements" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1355 +#: ../../enterprise/include/lib/AlertCorrelation.class.php:1108 +msgid "Event group" +msgstr "Groupe d'Ć©vĆ©nements" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1361 +msgid "Event group (recursive)" +msgstr "Group d'Ć©vĆ©nements" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1367 +#: ../../enterprise/include/lib/AlertCorrelation.class.php:1114 +msgid "Event severity" +msgstr "SĆ©vĆ©ritĆ© de l'Ć©vĆ©nement" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1372 +#: ../../enterprise/include/lib/AlertCorrelation.class.php:1117 +msgid "Event tag" +msgstr "Ɖtiquette de l'Ć©vĆ©nement" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1377 +#: ../../enterprise/include/lib/AlertCorrelation.class.php:1120 +msgid "Event user" +msgstr "Utilisateur de l'Ć©vĆ©nement" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1407 +msgid "Operators" +msgstr "OpĆ©rateurs" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1412 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1456 +#: ../../enterprise/include/lib/AlertCorrelation.class.php:1433 +msgid "greater than" +msgstr "supĆ©rieur Ć " + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1417 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1460 +#: ../../enterprise/include/lib/AlertCorrelation.class.php:1437 +#: ../../enterprise/include/lib/AlertCorrelation.class.php:1445 +msgid "less than" +msgstr "infĆ©rieur Ć " + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1422 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1464 +#: ../../enterprise/include/lib/AlertCorrelation.class.php:1441 +msgid "greater or equal than" +msgstr "supĆ©rieur ou Ć©gal Ć " + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1427 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1468 +msgid "less or equal than" +msgstr "infĆ©rieur ou Ć©gal Ć " + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1432 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1472 +#: ../../enterprise/include/lib/AlertCorrelation.class.php:1449 +msgid "is equal" +msgstr "est Ć©gal" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1437 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1476 +#: ../../enterprise/include/lib/AlertCorrelation.class.php:1453 +msgid "is different" +msgstr "est diffĆ©rent" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1442 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1480 +#: ../../enterprise/include/lib/AlertCorrelation.class.php:1457 +msgid "is like (regex)" +msgstr "est comme" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1447 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1484 +#: ../../enterprise/include/lib/AlertCorrelation.class.php:1461 +msgid "is not like (regex)" +msgstr "n'est pas comme (regex)" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1517 +msgid "Modifiers" +msgstr "Modificateurs" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1522 +msgid "within an interval (seconds)" +msgstr "dans un intervalle (secondes)" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1527 +msgid "repeated at least" +msgstr "rĆ©pĆ©tĆ© au moins" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1567 +msgid "Matches on both true" +msgstr "Concordances dans les deux vraies" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1573 +msgid "Matches when any is false" +msgstr "Concordances lorsqu'un est faux" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1579 +msgid "Matches on any true" +msgstr "Concordances dans n'importe quel vrai" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1585 +msgid "Matches when both are false" +msgstr "Concordances lorsque les deux sont faux" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1591 +msgid "Matches when only one is true" +msgstr "Concordances lorsque seulement un est vrai" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1597 +msgid "Matches when both are either true or false" +msgstr "Concordances lorsque les deux sont vrais ou faux" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1633 +msgid "Rule definition" +msgstr "DĆ©finition de rĆØgles" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1922 +msgid "Remove rule" +msgstr "Supprimer la rĆØgle" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1933 +msgid "Remove item" +msgstr "Supprimer lā€™Ć©lĆ©ment" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1954 +#: ../../operation/agentes/estado_monitores.php:602 +msgid "Reset" +msgstr "RĆ©initialiser" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2048 +#: ../../godmode/alerts/configure_alert_template.php:897 +msgid "Alert recovery" +msgstr "RĆ©cupĆ©ration d'alertes" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2076 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2733 +#: ../../godmode/alerts/alert_commands.php:100 +#: ../../godmode/alerts/alert_commands.php:105 +#: ../../godmode/alerts/alert_commands.php:121 +#: ../../godmode/alerts/alert_commands.php:127 +#: ../../godmode/alerts/configure_alert_template.php:928 +#: ../../godmode/alerts/alert_view.php:484 ../../godmode/alerts/alert_view.php:603 +#, php-format +msgid "Field %s" +msgstr "Champ %s" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2088 +#, php-format +msgid "Recovery Field %s" +msgstr "Champ de rĆ©cupĆ©ration %s" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2155 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2157 +msgid "Triggering Condition" +msgstr "condition de dĆ©clenchement" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2250 +#: ../../godmode/alerts/alert_view.php:266 +msgid "Number of alerts" +msgstr "Nombre d'alertes" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2338 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2601 +#: ../../godmode/alerts/configure_alert_action.php:305 +#: ../../godmode/alerts/alert_view.php:403 +msgid "Firing" +msgstr "DĆ©clenchement en cours" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2453 +msgid "There are no defined actions for this alert" +msgstr "Il n'y a pas des actions dĆ©finis pour cette alerte" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2524 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3498 +msgid "Number of alerts match" +msgstr "Nombre d'alertes concordantes" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2602 +#: ../../godmode/alerts/alert_view.php:404 +msgid "Recovering" +msgstr "RĆ©cupĆ©ration en cours" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2619 +msgid "" +"Select the desired action and mode to view the Triggering fields for this action" +msgstr "" +"SĆ©lectionnez l'action dĆ©chirĆ©e et mode Ć  la vue de Champs de dĆ©clenchement pour " +"cette action" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2636 +#: ../../godmode/alerts/alert_view.php:395 +msgid "Select the action" +msgstr "SĆ©lectionner l'action" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2694 +#: ../../godmode/alerts/configure_alert_template.php:918 +#: ../../godmode/alerts/alert_view.php:435 ../../godmode/alerts/alert_view.php:569 +msgid "Firing fields" +msgstr "Champs de dĆ©clenchement" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2696 +#: ../../godmode/alerts/alert_view.php:437 +msgid "Fields passed to the command executed by this action when the alert is fired" +msgstr "" +"Champs transfĆ©rĆ©s Ć  la commande exĆ©cutĆ©e par cette action lorsque l'alerte est " +"dĆ©clenchĆ©e" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2700 +#: ../../godmode/agentes/fields_manager.php:119 +#: ../../godmode/alerts/alert_view.php:441 ../../godmode/alerts/alert_view.php:564 +#: ../../operation/agentes/custom_fields.php:65 +msgid "Field" +msgstr "Champ" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2702 +#: ../../godmode/alerts/alert_view.php:443 ../../godmode/alerts/alert_view.php:566 +msgid "Fields configured on the command associated to the action" +msgstr "Champs configurĆ©s sur la commande associĆ©e Ć  l'action" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2705 +msgid "Alerts fields" +msgstr "Champs d'alertes" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2707 +msgid "Triggering fields configured in Alerts" +msgstr "Les champs de dĆ©clenchement configurĆ©s dans les Alertes" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2710 +#: ../../godmode/alerts/alert_view.php:451 +msgid "Action fields" +msgstr "Champs d'action" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2712 +#: ../../godmode/alerts/alert_view.php:453 +msgid "Triggering fields configured in action" +msgstr "Champs de dĆ©clenchement configurĆ©s dans l'action" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2715 +#: ../../godmode/alerts/alert_view.php:457 +msgid "Executed on firing" +msgstr "ExĆ©cutĆ© lors du dĆ©clenchement" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2717 +#: ../../godmode/alerts/alert_view.php:459 ../../godmode/alerts/alert_view.php:571 +msgid "Fields used on execution when the alert is fired" +msgstr "Champs utilisĆ©s lors de l'exĆ©cution lorsque l'alerte est dĆ©clenchĆ©e" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2766 +msgid "Correlated alerts" +msgstr "Alertes corrĆ©lĆ©s" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2790 +msgid "Alert succesfully deleted" +msgstr "Alerte Ć©liminĆ©e correctement" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2799 +msgid "Alerts validated" +msgstr "Alertes activĆ©es" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2802 +msgid "Failed to process validation" +msgstr "Ɖchec de validation de processus" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2947 +msgid "Matched" +msgstr "Correspondu" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2948 +#: ../../godmode/alerts/alert_list.list.php:147 ../../mobile/operation/alerts.php:66 +#: ../../include/functions_reporting_html.php:2375 +#: ../../include/functions_reporting_html.php:3229 +#: ../../include/functions_reporting_html.php:3230 +#: ../../operation/agentes/alerts_status.functions.php:97 +#: ../../operation/snmpconsole/snmp_view.php:229 +#: ../../operation/snmpconsole/snmp_view.php:1254 +msgid "Fired" +msgstr "DĆ©clenchĆ©" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2970 +#: ../../enterprise/include/class/CommandCenter.class.php:329 +msgid "Sort elements" +msgstr "Classer les Ć©lĆ©ments" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3015 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3401 +msgid "No associated actions" +msgstr "Aucune action associĆ©e" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3049 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3065 +msgid "Add Actions" +msgstr "Ajouter des actions" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3120 +msgid "There are no defined correlated alerts" +msgstr "Il nā€™y a pas dā€™alertes corrĆ©lĆ©es dĆ©finies" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3256 +msgid "Are you sure you want to disable the alert" +msgstr "Ɗtes-vous sĆ»r que vous voulez dĆ©sactiver l'alerte" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3263 +msgid "Are you sure you want to enable the alert" +msgstr "Ɗtes-vous sĆ»r que vous voulez activer l'alerte" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3270 +msgid "Disabled Alert" +msgstr "Alerte dĆ©sactivĆ©e" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3311 +#: ../../godmode/alerts/alert_list.list.php:154 ../../mobile/operation/alerts.php:74 +#: ../../operation/agentes/alerts_status.functions.php:103 +msgid "Standby off" +msgstr "Mode veille inactif" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3312 +msgid "Are you sure you want to standby the alert" +msgstr "Ɗtes-vous sĆ»r que vous voulez stand-by l'alerte" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3317 +#: ../../enterprise/operation/agentes/policy_view.php:292 +#: ../../godmode/alerts/alert_list.list.php:153 ../../mobile/operation/alerts.php:73 +#: ../../include/functions_ui.php:1155 +#: ../../operation/agentes/alerts_status.functions.php:102 +msgid "Standby on" +msgstr "Mode veille actif" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3319 +msgid "Are you sure you want to activate the alert" +msgstr "Ɗtes-vous sĆ»r que vous voulez activer l'alerte" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3327 +msgid "Standby Alert" +msgstr "Alerte en stand-by" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3399 +msgid "Delete Actions" +msgstr "Ɖliminer des actions" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3578 +msgid "Successfully added action" +msgstr "Action ajoutĆ©e correctement" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3616 +msgid "Successfully delete action" +msgstr "action Ć©liminĆ©e correctement" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:4029 +msgid "Choosetime" +msgstr "Choisir lā€™heure" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:4236 +msgid "Drop Here" +msgstr "LĆ¢cher ici" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:4294 +#: ../../godmode/alerts/configure_alert_template.php:1495 +msgid "Simple" +msgstr "Simple" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:4295 +#: ../../godmode/alerts/configure_alert_template.php:1496 +msgid "Detailed" +msgstr "DĆ©taillĆ©" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:4350 +#: ../../godmode/alerts/configure_alert_template.php:1551 +msgid "Drag out to remove" +msgstr "Faites glisser vers lā€™extĆ©rieur pour supprimer" + +#: ../../enterprise/include/class/CommandCenter.class.php:146 +msgid "Command center" +msgstr "Centre de commande" + +#: ../../enterprise/include/class/CommandCenter.class.php:160 +msgid "Could not be start merge process, no nodes in the metaconsole " +msgstr "" +"Ɖchec de lancement du processus de fusion, pas des noeuds dans la MĆ©taconsole " + +#: ../../enterprise/include/class/CommandCenter.class.php:169 +#: ../../enterprise/include/functions_groups.php:49 +msgid "Metaconsole" +msgstr "MĆ©taconsole" + +#: ../../enterprise/include/class/CommandCenter.class.php:265 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:900 +msgid "" +"Memory limit is recomended to be unlimited in metaconsole, please set to -1 in " +"php.ini." +msgstr "" +"La limite de mĆ©moire est recommandĆ©e d'ĆŖtre illimitĆ©e dans la MĆ©taconsole, " +"veuillez entrez -1 dans php.ini." + +#: ../../enterprise/include/class/CommandCenter.class.php:312 +msgid "Nodes priority order" +msgstr "Ordre de prioritĆ© des noeuds" + +#: ../../enterprise/include/class/CommandCenter.class.php:366 +msgid "Unify databases" +msgstr "Unifier les bases de donnĆ©es" + +#: ../../enterprise/include/class/CommandCenter.class.php:383 +msgid "merge process" +msgstr "Processus d'unification" + +#: ../../enterprise/include/class/CommandCenter.class.php:391 +msgid "Process detail of node" +msgstr "DĆ©tail du processus du noeud" + +#: ../../enterprise/include/class/CommandCenter.class.php:392 +msgid "Errors of node" +msgstr "Erreurs du noeud" + +#: ../../enterprise/include/class/CommandCenter.class.php:421 +msgid "Unexpected end of process" +msgstr "Fin du processus inattendue" + +#: ../../enterprise/include/class/CommandCenter.class.php:422 +msgid "Please retry" +msgstr "Veuillez rĆ©essayer" + +#: ../../enterprise/include/class/CommandCenter.class.php:443 +msgid "Critical issues while merging" +msgstr "ProblĆØmes critiques lors de l'unification" + +#: ../../enterprise/include/class/CommandCenter.class.php:444 +msgid "Please restore your backups" +msgstr "Veuillez rĆ©tablir vos sauvegardes" + +#: ../../enterprise/include/class/CommandCenter.class.php:452 +#: ../../include/functions_ui.php:6622 +msgid "Query" +msgstr "RequĆŖte" + +#: ../../enterprise/include/class/CommandCenter.class.php:453 +#: ../../include/lib/Dashboard/Widgets/service_view.php:247 +msgid "Table" +msgstr "Table" + +#: ../../enterprise/include/class/CommandCenter.class.php:454 +#: ../../include/class/Heatmap.class.php:743 +msgid "Info" +msgstr "Information" + +#: ../../enterprise/include/class/CommandCenter.class.php:455 +#: ../../enterprise/include/class/CommandCenter.class.php:1119 +msgid "Error message" +msgstr "Message d'erreur" + +#: ../../enterprise/include/class/CommandCenter.class.php:457 +msgid "Process details" +msgstr "DĆ©tails du processus" + +#: ../../enterprise/include/class/CommandCenter.class.php:458 +msgid "" +"System is not unified yet, something is wrong, please troubleshoot the errors and " +"retry the merge process. Your data have not been modified." +msgstr "" +"Le systĆØme n'est pas unifiĆ© encore, quelque chose ne marche pas, dĆ©pannez les " +"erreurs et rĆ©essayez le processus d'unification. Vos donnĆ©es n'ont pas Ć©tĆ© " +"modifies." + +#: ../../enterprise/include/class/CommandCenter.class.php:459 +msgid "Errors while merging" +msgstr "Erreur d'unification" + +#: ../../enterprise/include/class/CommandCenter.class.php:460 +msgid "The process has been completed correctly" +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:1818 +msgid "Successfully" +msgstr "Correctement" + +#: ../../enterprise/include/class/CommandCenter.class.php:462 +msgid "System is merging your environment, please wait" +msgstr "Le systĆØme est en cours d'unifier votre environnement, veuillez attendre" + +#: ../../enterprise/include/class/CommandCenter.class.php:464 +#: ../../enterprise/include/class/CommandCenter.class.php:884 +msgid "Initialice merge" +msgstr "Commencer l'unification" + +#: ../../enterprise/include/class/CommandCenter.class.php:465 +#: ../../enterprise/include/class/CommandCenter.class.php:890 +msgid "Apply merge" +msgstr "Appliquer l'unification" + +#: ../../enterprise/include/class/CommandCenter.class.php:466 +msgid "Finished merge" +msgstr "Unification finie" + +#: ../../enterprise/include/class/CommandCenter.class.php:467 +#: ../../enterprise/include/class/CommandCenter.class.php:896 +msgid "Restore merge" +msgstr "RĆ©tablir l'unification" + +#: ../../enterprise/include/class/CommandCenter.class.php:469 +msgid "Succesfully" +msgstr "Correctement" + +#: ../../enterprise/include/class/CommandCenter.class.php:470 +msgid "Pending operations" +msgstr "OpĆ©ration pendante" + +#: ../../enterprise/include/class/CommandCenter.class.php:472 +msgid "Error. Synchronization aborted. Backup restored" +msgstr "Erreur. Synchronisation annulĆ©e. Sauvegarde rĆ©tablie." + +#: ../../enterprise/include/class/CommandCenter.class.php:542 +#: ../../enterprise/include/class/CommandCenter.class.php:548 +msgid "Update priority nodes" +msgstr "Noeuds prioritaires de mise Ć  jour" + +#: ../../enterprise/include/class/CommandCenter.class.php:543 +msgid "Successfully updated priority order nodes" +msgstr "Noeuds prioritaires mises Ć  jour correctement" + +#: ../../enterprise/include/class/CommandCenter.class.php:549 +msgid "Could not be updated priority order nodes" +msgstr "Erreur de mise Ć  jour des noeuds prioritaires" + +#: ../../enterprise/include/class/CommandCenter.class.php:565 +msgid "" +"By unifying databases all information across your infrastructure will be merged " +"to gain integrity" +msgstr "" +"Lors de l'unification des bases de donnĆ©es, toutes les informations de votre " +"infrastructure seront unifiĆ©s pour une meilleure intĆ©gritĆ©" + +#: ../../enterprise/include/class/CommandCenter.class.php:578 +#: ../../enterprise/include/class/CommandCenter.class.php:588 +msgid "Blocked" +msgstr "BloquĆ©" + +#: ../../enterprise/include/class/CommandCenter.class.php:579 +msgid "This process already running" +msgstr "Ce processus est dĆ©jĆ  en cours d'exĆ©cution" + +#: ../../enterprise/include/class/CommandCenter.class.php:589 +msgid "You cannot start a new merge because system is merging events data." +msgstr "" +"Vous ne pouvez pas commencer une nouvelle unification parce que le systĆØme est " +"dĆ©jĆ  en train d'unifier des donnĆ©es d'Ć©vĆ©nements" + +#: ../../enterprise/include/class/CommandCenter.class.php:597 +msgid "Press OK button to start the process" +msgstr "Cliquez OK pour commencer le processus" + +#: ../../enterprise/include/class/CommandCenter.class.php:599 +msgid "" +"There are backups from a previous merging process, are you sure you want to " +"overwrite those backups? Press OK button to ignore this message and start the " +"process." +msgstr "" +"Il y a des sauvegardes des processus antĆ©rieurs d'unification. Ɗtes-vous sĆ»r que " +"vous voulez Ć©craser celles sauvegardes ? Cliquez OK pour ignorer ce message et " +"commencer le processus." + +#: ../../enterprise/include/class/CommandCenter.class.php:647 +msgid "System is merging events..." +msgstr "Le systĆØme est en cours d'unification des Ć©vĆ©nements" + +#: ../../enterprise/include/class/CommandCenter.class.php:654 +msgid "Already working..." +msgstr "DĆ©jĆ  en execution..." + +#: ../../enterprise/include/class/CommandCenter.class.php:760 +#: ../../enterprise/include/class/CommandCenter.class.php:761 +msgid "Initilize" +msgstr "Initialiser" + +#: ../../enterprise/include/class/CommandCenter.class.php:866 +#: ../../enterprise/include/class/CommandCenter.class.php:1054 +msgid "Waiting" +msgstr "En attente" + +#: ../../enterprise/include/class/CommandCenter.class.php:873 +msgid "Process detail" +msgstr "DĆ©tail du processus" + +#: ../../enterprise/include/class/CommandCenter.class.php:878 +msgid "Display errors" +msgstr "Montrer les erreurs" + +#: ../../enterprise/include/class/CommandCenter.class.php:909 +msgid "There are no nodes to do the merge process." +msgstr "Il n'y a pas de noeuds pour faire le processus d'unification." + +#: ../../enterprise/include/class/CommandCenter.class.php:1017 +msgid "merge events" +msgstr "Unifier les Ć©vĆ©nements" + +#: ../../enterprise/include/class/CommandCenter.class.php:1060 +msgid "Retry process" +msgstr "RĆ©essayer le processus" + +#: ../../enterprise/include/class/CommandCenter.class.php:1065 +msgid "Display events errors" +msgstr "Afficher les erreurs d'Ć©vĆ©nements" + +#: ../../enterprise/include/class/CommandCenter.class.php:1078 +msgid "Events History" +msgstr "Historique d'Ć©vĆ©nements" + +#: ../../enterprise/include/class/CommandCenter.class.php:1140 +msgid "merge process events" +msgstr "ƉvĆ©nements de processus d'unification" + +#: ../../enterprise/include/class/ManageBackups.class.php:106 +#, php-format +msgid "%s database backup manager" +msgstr "gestionnaire de sauvegarde de base de donnĆ©es %s" + +#: ../../enterprise/include/class/ManageBackups.class.php:117 +#: ../../include/class/AuditLog.class.php:145 +msgid "Admin Tools" +msgstr "Outils dā€™administration" + +#: ../../enterprise/include/class/ManageBackups.class.php:121 +#: ../../enterprise/operation/menu.php:200 +msgid "DB Backup Manager" +msgstr "Backup Manager de base de donĆ©es" + +#: ../../enterprise/include/class/ManageBackups.class.php:129 +#, php-format +msgid "To schedule a periodic (or one-time) backup task you can do it through %s." +msgstr "" +"Pour planifier une tĆ¢che de sauvegarde pĆ©riodique (ou unique), vous pouvez " +"lā€™effectuer via %s." + +#: ../../enterprise/include/class/ManageBackups.class.php:164 +#: ../../extensions/files_repo/files_repo_list.php:57 +#: ../../godmode/events/event_responses.editor.php:130 +#: ../../include/functions_visual_map_editor.php:125 +#: ../../include/functions_visual_map_editor.php:178 +#: ../../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/functions_filemanager.php:606 +#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:119 +#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:250 +msgid "Size" +msgstr "Taille" + +#: ../../enterprise/include/class/ManageBackups.class.php:189 +msgid "Path backups" +msgstr "Sauvegardes de chemins dā€™accĆØs" + +#: ../../enterprise/include/class/ManageBackups.class.php:314 +msgid "Rollback to this backup" +msgstr "Revenir Ć  cette sauvegarde" + +#: ../../enterprise/include/class/ManageBackups.class.php:323 +msgid "Lost" +msgstr "Perdu" + +#: ../../enterprise/include/class/ManageBackups.class.php:330 +msgid "In Progress" +msgstr "En cours" + +#: ../../enterprise/include/class/ManageBackups.class.php:361 +msgid "The backup was successfully deleted" +msgstr "La sauvegarde a Ć©tĆ© supprimĆ©e avec succĆØs" + +#: ../../enterprise/include/class/ManageBackups.class.php:367 +msgid "Missed id parameter" +msgstr "ParamĆØtre ID manquĆ©" + +#: ../../enterprise/include/class/ManageBackups.class.php:386 +msgid "Something was wrong with the rollback action." +msgstr "Une erreur sā€™est produite lors de lā€™action de restauration." + +#: ../../enterprise/include/class/ManageBackups.class.php:389 +msgid "Missed id parameter." +msgstr "ParamĆØtre ID manquĆ©." + +#: ../../enterprise/include/class/ManageBackups.class.php:424 +#: ../../include/class/AuditLog.class.php:376 +msgid "There is no additional information to display" +msgstr "Il nā€™y a pas dā€™informations supplĆ©mentaires Ć  afficher" + +#: ../../enterprise/include/class/ManageBackups.class.php:437 +msgid "" +"Are you sure you want to delete this database backup file? Once deleted you will " +"not be able to recover it." +msgstr "" +"Voulez-vous vraiment supprimer ce fichier de sauvegarde de base de donnĆ©es ? Une " +"fois supprimĆ©, vous ne pourrez pas le rĆ©cupĆ©rer." + +#: ../../enterprise/include/class/ManageBackups.class.php:439 +msgid "Do you like perform a database restoration?" +msgstr "Aimez-vous effectuer une restauration de base de donnĆ©es?" + +#: ../../enterprise/include/functions_enterprise.php:464 +msgid "Tree view by tags" +msgstr "Arborescence par Ć©tiquettes" + +#: ../../enterprise/include/functions_enterprise.php:494 +msgid "" +"If the interval of days until events data purge is shorter than the events data " +"history storage interval, data will be lost. It is recommended that the storage " +"frequency is higher than the purge frequency." +msgstr "" +"si l'intervalle de jours jusqu'Ć  l'Ć©puration des donnĆ©es d'Ć©vĆ©nements et plus " +"courte que l'intervalle historique de donnĆ©es d'Ć©vĆ©nements, des donnĆ©es seront " +"perdues. Nous vous recommandons que la frĆ©quence de stockage soit plus haute que " +"la frĆ©quence d'Ć©purage." + +#: ../../enterprise/include/functions_enterprise.php:496 +msgid "Problems with event days purge and event days that pass data to history DB." +msgstr "" +"ProblĆØmes avec la date de nettoyage d'Ć©vĆ©nements et la date de passage de donnĆ©es " +"Ć  l'historique de la BD." + +#: ../../enterprise/include/functions_enterprise.php:507 +msgid "" +"If days purge is less than history days pass to history db, you will have a " +"problems and you lost data. Recommended that days purge will more taller than " +"days to history DB" +msgstr "" +"Si la date de nettoyage est infĆ©rieure Ć  la date de passage de l'historique de la " +"BD, vous aurez des problĆØmes et perdrez des donnĆ©es. Il est conseillĆ© de " +"configurer la date de nettoyage Ć  un niveau supĆ©rieur Ć  la date de passage de " +"l'historique de la BD." + +#: ../../enterprise/include/functions_enterprise.php:509 +msgid "Problems with days purge and days that pass data to history DB" +msgstr "" +"ProblĆØmes avec la date de nettoyage et la date de passage de donnĆ©es Ć  " +"l'historique de la BD." + +#: ../../enterprise/include/functions_reporting.php:93 +msgid "Advance options" +msgstr "Options avancĆ©es" + +#: ../../enterprise/include/functions_reporting.php:117 +msgid "Templates list" +msgstr "Liste de modĆØles" + +#: ../../enterprise/include/functions_reporting.php:152 +msgid "Templates Wizard" +msgstr "Assistant de modĆØles" + +#: ../../enterprise/include/functions_reporting.php:1233 +msgid "Availability item created from wizard." +msgstr "ƉlĆ©ment disponible crĆ©Ć© Ć  partir de l'assistant" + +#: ../../enterprise/include/functions_reporting.php:1855 +#: ../../enterprise/include/functions_reporting.php:2894 +#: ../../enterprise/include/functions_reporting.php:3881 +#: ../../include/functions_reporting_html.php:544 +msgid "Max/Min Values" +msgstr "Valeurs max/min" + +#: ../../enterprise/include/functions_reporting.php:1857 +#: ../../enterprise/include/functions_reporting.php:2025 +#: ../../enterprise/include/functions_reporting.php:2896 +#: ../../enterprise/include/functions_reporting.php:3883 +#: ../../enterprise/include/functions_reporting.php:6139 +#: ../../include/functions_reporting_html.php:546 +msgid "SLA Compliance" +msgstr "ConformitĆ© SLA" + +#: ../../enterprise/include/functions_reporting.php:1897 +#: ../../enterprise/include/functions_reporting.php:2950 +#: ../../enterprise/include/functions_reporting.php:3201 +#: ../../enterprise/include/functions_reporting.php:3938 +#: ../../enterprise/include/functions_reporting.php:4202 +#: ../../enterprise/include/functions_reporting.php:4853 +#: ../../enterprise/include/functions_reporting.php:6209 +#: ../../include/functions_reporting_html.php:869 +#: ../../include/functions_reporting_html.php:4660 +msgid "Not Init" +msgstr "Non initialisĆ©es" + +#: ../../enterprise/include/functions_reporting.php:1904 +#: ../../enterprise/include/functions_reporting.php:2960 +#: ../../enterprise/include/functions_reporting.php:3948 +msgid "Planned Downtimes" +msgstr "Temps d'arrĆŖt planifiĆ©s" + +#: ../../enterprise/include/functions_reporting.php:1911 +msgid "Ignore time" +msgstr "Ignorer le temps" + +#: ../../enterprise/include/functions_reporting.php:1931 +msgid "SLA Compliance per days" +msgstr "ConformitĆ© des SLA par jours" + +#: ../../enterprise/include/functions_reporting.php:2022 +msgid "Summary of SLA Failures" +msgstr "RĆ©sumĆ© des Ć©checs de SLA" + +#: ../../enterprise/include/functions_reporting.php:2042 +#: ../../enterprise/include/functions_reporting.php:2043 +msgid "Out of SLA limits" +msgstr "Hors limites de SLA" + +#: ../../enterprise/include/functions_reporting.php:2048 +#: ../../enterprise/include/functions_reporting.php:2049 +msgid "IN of SLA limits" +msgstr "Dans les limites de SLA" + +#: ../../enterprise/include/functions_reporting.php:2132 +#: ../../include/functions_reports.php:926 +msgid "Log report" +msgstr "Rapport de journaux" + +#: ../../enterprise/include/functions_reporting.php:2145 +#: ../../include/functions_reports.php:925 +msgid "Log" +msgstr "Journal" + +#: ../../enterprise/include/functions_reporting.php:2494 +#: ../../enterprise/include/functions_reporting.php:3438 +#: ../../enterprise/include/functions_reporting.php:4413 +#: ../../include/functions_reporting.php:998 +#: ../../include/functions_reporting.php:8744 +msgid "There are no SLAs defined" +msgstr "Aucun SLA dĆ©fini" + +#: ../../enterprise/include/functions_reporting.php:2547 +#: ../../enterprise/include/functions_reporting.php:3491 +#: ../../enterprise/include/functions_reporting.php:4466 +#: ../../include/functions_reporting.php:1073 +#: ../../include/functions_reporting.php:9122 +msgid "Inverse" +msgstr "Inverse" + +#: ../../enterprise/include/functions_reporting.php:2970 +#: ../../enterprise/include/functions_reporting.php:3211 +#: ../../enterprise/include/functions_reporting.php:3958 +msgid "Planned Downtime" +msgstr "Temps d'arrĆŖt planifiĆ©" + +#: ../../enterprise/include/functions_reporting.php:3000 +msgid "T. Total" +msgstr "T. Total" + +#: ../../enterprise/include/functions_reporting.php:3001 +#: ../../enterprise/include/functions_reporting.php:3985 +msgid "T. OK" +msgstr "T. OK" + +#: ../../enterprise/include/functions_reporting.php:3002 +#: ../../enterprise/include/functions_reporting.php:3986 +msgid "T. Error" +msgstr "T. Erreur" + +#: ../../enterprise/include/functions_reporting.php:3003 +#: ../../enterprise/include/functions_reporting.php:3987 +msgid "T. Unknown" +msgstr "T. Inconnu" + +#: ../../enterprise/include/functions_reporting.php:3004 +#: ../../enterprise/include/functions_reporting.php:3988 +msgid "T. Not_init" +msgstr "T. Non_init" + +#: ../../enterprise/include/functions_reporting.php:3005 +#: ../../enterprise/include/functions_reporting.php:3989 +msgid "T. Downtime" +msgstr "T. Temps d'arrĆŖt" + +#: ../../enterprise/include/functions_reporting.php:3006 +#: ../../enterprise/include/functions_reporting.php:3990 +msgid "SLA %" +msgstr "SLA %" + +#: ../../enterprise/include/functions_reporting.php:3196 +#: ../../enterprise/include/functions_reporting.php:4197 +#: ../../enterprise/include/functions_reporting.php:6204 +#: ../../enterprise/include/functions_services.php:1453 +#: ../../include/functions_reporting_html.php:864 +#: ../../include/functions_reporting_html.php:4655 +msgid "Unknow" +msgstr "Inconnu" + +#: ../../enterprise/include/functions_reporting.php:3206 +#: ../../enterprise/include/functions_reporting.php:4207 +#: ../../enterprise/include/functions_reporting.php:6214 +#: ../../include/functions_reporting_html.php:874 +#: ../../include/functions_reporting_html.php:4665 +msgid "Downtimes" +msgstr "ArrĆŖts" + +#: ../../enterprise/include/functions_reporting.php:4212 +msgid "Ignore Planned Downtime" +msgstr "Ignorer le temps d'arrĆŖte programmĆ©" + +#: ../../enterprise/include/functions_reporting.php:4302 +#: ../../include/functions_reports.php:712 +msgid "Hourly S.L.A." +msgstr "SLA chaque heure" + +#: ../../enterprise/include/functions_reporting.php:4905 +msgid "Max/Min Critical" +msgstr "Critique max/min" + +#: ../../enterprise/include/functions_reporting.php:4906 +msgid "Max/Min Warning" +msgstr "Avertissement max/min" + +#: ../../enterprise/include/functions_reporting.php:4907 +msgid "Total checks ok/total" +msgstr "VĆ©rifications totales ok/total" + +#: ../../enterprise/include/functions_reporting.php:4908 +msgid "% time ok" +msgstr "% temps ok" + +#: ../../enterprise/include/functions_reporting.php:4926 +#: ../../include/functions_reporting_html.php:633 +#: ../../include/functions_reporting_html.php:672 +#: ../../include/functions_reporting_html.php:743 +#: ../../include/functions_reporting_html.php:821 +#: ../../include/functions_reporting_html.php:4114 +#: ../../include/functions_reporting_html.php:4261 +msgid "24 x 7" +msgstr "24h/24 7j/7" + +#: ../../enterprise/include/functions_reporting.php:4966 +#: ../../include/functions_reporting_html.php:578 +msgid "Global Time" +msgstr "Temps global" + +#: ../../enterprise/include/functions_reporting.php:4968 +msgid "Time Critical" +msgstr "Temps critique" + +#: ../../enterprise/include/functions_reporting.php:5061 +#: ../../include/functions_reporting_html.php:611 +msgid "Checks Time" +msgstr "Temps de vĆ©rifications" + +#: ../../enterprise/include/functions_reporting.php:5063 +msgid "Checks Critical" +msgstr "VĆ©rifications critiques" + +#: ../../enterprise/include/functions_reporting.php:5064 +#: ../../include/functions_reporting_html.php:4038 +msgid "Checks Warning" +msgstr "VĆ©rifications avertissement" + +#: ../../enterprise/include/functions_reporting.php:5147 +#: ../../include/functions_reporting_html.php:801 +#: ../../include/functions_reporting_html.php:4303 +#: ../../include/functions_reporting_html.php:4853 +#: ../../include/functions_reporting_html.php:4856 +#: ../../include/functions_reporting.php:1643 +#: ../../include/functions_reporting.php:3345 +msgid "There are no Agent/Modules defined" +msgstr "Aucun Agent/Module dĆ©fini" + +#: ../../enterprise/include/functions_reporting.php:5583 +msgid "There are no SLAs defined." +msgstr "Aucun SLA dĆ©fini" + +#: ../../enterprise/include/functions_reporting.php:5798 +#: ../../enterprise/include/functions_services.php:1368 +#: ../../enterprise/include/functions_services.php:1370 +#: ../../enterprise/include/functions_services.php:1404 +#: ../../enterprise/include/functions_services.php:1405 +#: ../../enterprise/include/functions_services.php:1407 +#: ../../enterprise/include/functions_services.php:1458 +#: ../../enterprise/include/functions_services.php:1460 +msgid "Nonexistent" +msgstr "Inexistant" + +#: ../../enterprise/include/functions_reporting.php:6219 +msgid "Scheduled shutdow" +msgstr "Temps d'arrĆŖte programĆ©" + +#: ../../enterprise/include/functions_reporting.php:6585 +#: ../../enterprise/include/functions_reporting.php:7475 +#, php-format +msgid "Graph agents(%s) - %s" +msgstr "Agents de graphiques(%s) - %s" + +#: ../../enterprise/include/functions_reporting.php:7383 +#, php-format +msgid "Graph agent(%s) - %s" +msgstr "Agent de graphiques(%s) - %s" + +#: ../../enterprise/include/functions_reporting.php:7830 +msgid "There is not data for the selected conditions" +msgstr "Il n'y a pas des donnĆ©es pour les conditions sĆ©lectionnĆ©es" + +#: ../../enterprise/include/functions_reporting.php:8022 +#: ../../enterprise/include/functions_reporting.php:8088 +msgid "Template editor" +msgstr "Ɖditeur de modĆØle" + +#: ../../enterprise/include/functions_reporting.php:8151 +#: ../../enterprise/operation/reporting/custom_reporting.php:101 +msgid "ID Report" +msgstr "Rapport ID" + +#: ../../enterprise/include/functions_reporting.php:8219 +#: ../../enterprise/operation/reporting/custom_reporting.php:90 +#: ../../enterprise/operation/reporting/custom_reporting.php:164 +msgid "Send by email" +msgstr "Envoyer par courriel" + +#: ../../enterprise/include/functions_reporting.php:8307 +#: ../../enterprise/operation/reporting/custom_reporting.php:200 +msgid "Send by email " +msgstr "Envoyer par courriel " + +#: ../../enterprise/include/functions_reporting.php:8348 +#: ../../include/functions_reports.php:643 +msgid "Simple baseline graph" +msgstr "Graphique simple de rĆ©fĆ©rence" + +#: ../../enterprise/include/functions_reporting.php:8518 +msgid "Configuration changes" +msgstr "Changements de configuration" + +#: ../../enterprise/include/functions_reporting.php:8535 +msgid "No NCM capabilities detected" +msgstr "Aucune fonctionnalitĆ© NCM dĆ©tectĆ©e" + +#: ../../enterprise/include/functions_enterprise_api.php:1119 +msgid "Is not metaconsole" +msgstr "c'est pas la MĆ©taconsole" + +#: ../../enterprise/include/functions_enterprise_api.php:2580 +msgid "Error getting alert actions." +msgstr "Erreur de rĆ©cupĆ©ration des actions des alertes" + +#: ../../enterprise/include/functions_enterprise_api.php:3553 +#: ../../enterprise/include/functions_enterprise_api.php:3607 +#, php-format +msgid "%d agents added to apply queue." +msgstr "%d agents ajoutĆ©s Ć  la file d'attente d'application." + +#: ../../enterprise/include/functions_enterprise_api.php:3576 +#: ../../enterprise/include/functions_policies.php:4859 +#, php-format +msgid "Successfully applied to node %s." +msgstr "Correctement appliquĆ© au noeud %s." + +#: ../../enterprise/include/functions_enterprise_api.php:3578 +#: ../../enterprise/include/functions_policies.php:4861 +#, php-format +msgid "Successfully applied to nodes: %s." +msgstr "Correctement appliquĆ© aux noeuds : %s." + +#: ../../enterprise/include/functions_enterprise_api.php:3617 +#, php-format +msgid "Id policy %d already pending to apply." +msgstr "Politique d'ID %d pendant d'application." + +#: ../../enterprise/include/functions_enterprise_api.php:3619 +#, php-format +msgid "Id policy %d already pending to apply in Id agent %d." +msgstr "Politique d'ID %d pendant dĆ©jĆ  d'application dans l'agent ID %d" + +#: ../../enterprise/include/functions_enterprise_api.php:4039 +#: ../../enterprise/include/functions_enterprise_api.php:4066 +msgid "" +"Error adding web analysis module to policy. Id_module_type is not correct for web " +"analysis modules." +msgstr "" +"Erreur lors de l'ajout du module d'analyse web Ć  la politique. Id_module_type " +"n'est pas correcte pour les modules d'analyse web." + +#: ../../enterprise/include/functions_enterprise_api.php:4048 +msgid "" +"Network Module could not be added to policy. Id_module_type is not correct for " +"network modules." +msgstr "" +"Le module rĆ©seau n'a pas Ć©tĆ© ajoutĆ© a la politique. Id_module_type n'est pas " +"correcte pour les modules rĆ©seau." + +#: ../../enterprise/include/functions_enterprise_api.php:4057 +msgid "" +"Error adding web module to policy. Id_module_type is not correct for web modules." +msgstr "" +"Error lors de l'ajout du module web Ć  la politique. Id_module_type n'est pas " +"correcte pour les modules web." + +#: ../../enterprise/include/functions_enterprise_api.php:4078 +msgid "Error adding module to policy configuration_data is not a valid base64." +msgstr "" +"Error lors de l'ajout de la politique, configuration_data n'est pas un base64 " +"valide." + +#: ../../enterprise/include/functions_enterprise_api.php:6079 +msgid "The agent could not be added to the policy." +msgstr "L'agent n'a pas Ć©tĆ© ajoutĆ© Ć  la politique." + +#: ../../enterprise/include/functions_enterprise_api.php:6296 +#, php-format +msgid "Failed Updated remote config files %d" +msgstr "Ɖchec de la mise Ć  jour des fichiers de configuration distants %d" + +#: ../../enterprise/include/functions_enterprise_api.php:6306 +#, php-format +msgid "Updated remote config files: %d => %d" +msgstr "Fichiers de configuration distants mises Ć  jour : %d => %d" + +#: ../../enterprise/include/functions_services.php:108 +msgid "There is no information about" +msgstr "Il n'y a pas d'informations sur" + +#: ../../enterprise/include/functions_services.php:113 +msgid "Service does not exist." +msgstr "Le service n'existe pas." + +#: ../../enterprise/include/functions_services.php:125 +msgid "module that stores the service" +msgstr "module qui stocke le service" + +#: ../../enterprise/include/functions_services.php:137 +msgid "module that stores SLA service" +msgstr "module qui stocke le service SLA" + +#: ../../enterprise/include/functions_services.php:150 +msgid "agent that stores the service" +msgstr "agent qui stocke le service" + +#: ../../enterprise/include/functions_services.php:163 +msgid "agent that stores SLA service" +msgstr "agent qui stocke les service SLA" + +#: ../../enterprise/include/functions_services.php:184 +msgid "alert critical SLA service" +msgstr "service SLA critique dā€™alerte" + +#: ../../enterprise/include/functions_services.php:205 +msgid "alert warning service" +msgstr "Service d'avertissement de l'alerte" + +#: ../../enterprise/include/functions_services.php:226 +msgid "alert critical service" +msgstr "Service critique de l'alerte" + +#: ../../enterprise/include/functions_services.php:247 +msgid "alert unknown service" +msgstr "Service unconnu de l'alerte" + +#: ../../enterprise/include/functions_services.php:528 +#, php-format +msgid "Module automatic create for the service %s" +msgstr "Module automatique crĆ©Ć© pour le service %s" + +#: ../../enterprise/include/functions_services.php:1432 +msgid "Normal (Alert)" +msgstr "Normal (Alerte)" + +#: ../../enterprise/include/functions_services.php:1436 +msgid "Critical (Alert)" +msgstr "Critique (Alerte)" + +#: ../../enterprise/include/functions_services.php:1444 +msgid "Warning (Alert)" +msgstr "Avertissement (Alerte)" + +#: ../../enterprise/include/functions_services.php:1582 +msgid "There are no service elements defined" +msgstr "Aucun Ć©lĆ©ment de service dĆ©fini" + +#: ../../enterprise/include/functions_services.php:1606 +msgid "Weight Critical" +msgstr "Poids critique" + +#: ../../enterprise/include/functions_services.php:1607 +msgid "Weight Warning" +msgstr "Poids alerte" + +#: ../../enterprise/include/functions_services.php:1608 +msgid "Weight Unknown" +msgstr "Poids inconnu" + +#: ../../enterprise/include/functions_services.php:1609 +msgid "Weight Ok" +msgstr "Poids OK" + +#: ../../enterprise/include/functions_services.php:1672 +#: ../../enterprise/include/functions_services.php:1717 +#: ../../enterprise/include/functions_services.php:1785 +msgid "Nonexistent. This element should be deleted" +msgstr "Inexistant. Cet Ć©lĆ©ment doit ĆŖtre supprimĆ©." + +#: ../../enterprise/include/functions_services.php:1700 +#: ../../enterprise/include/functions_services.php:1767 +#: ../../enterprise/include/functions_services.php:1813 +msgid "This element does not affect service weigth because is disabled." +msgstr "Cet Ć©lĆ©ment n'affecte pas le poids du service parce qu'il est dĆ©sactivĆ©." + +#: ../../enterprise/include/functions_services.php:1828 +#, php-format +msgid "Dynamic element (%d) '%s' does not match any target" +msgstr "L'Ć©lĆ©ment dynamique (%d) '%s' ne correspond avec aucun cible" + +#: ../../enterprise/include/functions_services.php:1837 +#, php-format +msgid "Dynamic element (%d) '%s' causes an error: %s" +msgstr "ƉlĆ©ment dynamique (%d) '%s' cause une erreur : %s" + +#: ../../enterprise/include/functions_services.php:1849 +msgid "Dynamic element" +msgstr "ƉlĆ©ment dynamique" + +#: ../../enterprise/include/functions_services.php:1855 +#, php-format +msgid "agents like \"%s\"" +msgstr "agents comme Ā« %s Ā»" + +#: ../../enterprise/include/functions_services.php:1860 +#, php-format +msgid "modules like \"%s\"" +msgstr "modules comme Ā« %s Ā»" + +#: ../../enterprise/include/functions_services.php:1993 +msgid "NOT INITIALIZED" +msgstr "NON INITIALISƉ" + +#: ../../enterprise/include/functions_services.php:2027 +msgid "Delete service element" +msgstr "Supprimer Ć©lĆ©ment de service" + +#: ../../enterprise/include/functions_services.php:2086 +msgid "FAIL" +msgstr "ƉCHEC" + +#: ../../enterprise/include/functions_login.php:22 +msgid "You must change password:" +msgstr "Changez le mot de passe :" + +#: ../../enterprise/include/functions_login.php:38 +msgid "Password must be different from the 3 previous changes." +msgstr "Le mot de passe doit ĆŖtre diffĆ©rent des 3 derniers changements." + +#: ../../enterprise/include/functions_login.php:50 +msgid "Old pass: " +msgstr "Vieux mot de passe : " + +#: ../../enterprise/include/functions_login.php:53 +msgid "New pass: " +msgstr "Nouvel mot de passe : " + +#: ../../enterprise/include/functions_login.php:57 +msgid "Confirm: " +msgstr "Valider : " + +#: ../../enterprise/include/functions_login.php:63 +msgid "Change" +msgstr "Modifier" + +#: ../../enterprise/include/functions_login.php:97 +msgid "Login blocked" +msgstr "Connexion bloquĆ©e" + +#: ../../enterprise/include/functions_login.php:105 +msgid "User has been blocked. Try again in " +msgstr "L'utilisateur a Ć©tĆ© bloquĆ©. Essayez Ć  nouveau dans " + +#: ../../enterprise/include/functions_login.php:105 +msgid " minutes" +msgstr " minutes" + +#: ../../enterprise/include/functions_login.php:138 +msgid "Login successfully" +msgstr "Connection correcte" + +#: ../../enterprise/include/functions_login.php:146 +msgid "User pass successfully updated" +msgstr "Mot de passe de l'utilisateur mis Ć  jour correctement" + +#: ../../enterprise/include/functions_login.php:252 +msgid "Password must be different from the " +msgstr "Le nouveau mot de passe doit ĆŖtre diffĆ©rent des " + +#: ../../enterprise/include/functions_login.php:252 +msgid " previous changes." +msgstr " mots de passe prĆ©cĆ©dents." + +#: ../../enterprise/include/functions_login.php:265 +msgid "Password must be different" +msgstr "Le mot de passe doit ĆŖtre diffĆ©rent" + +#: ../../enterprise/include/functions_login.php:276 +msgid "Password too short" +msgstr "Mot de passe trop court" + +#: ../../enterprise/include/functions_login.php:288 +msgid "Password must contain numbers" +msgstr "Le mot de passe doit contenir des chiffres" + +#: ../../enterprise/include/functions_login.php:301 +msgid "Password must contain symbols" +msgstr "Le mot de passe doit contenir des symboles." + +#: ../../enterprise/include/functions_login.php:324 +msgid "Invalid old password" +msgstr "Mot de passe ancien invalide" + +#: ../../enterprise/include/functions_login.php:361 +msgid "Password confirm does not match" +msgstr "Les mots de passe ne concordent pas." + +#: ../../enterprise/include/functions_login.php:368 +msgid "Password empty" +msgstr "Mot de passe vide" + +#: ../../enterprise/include/functions_login.php:485 +#: ../../godmode/users/configure_user.php:1792 +#: ../../godmode/users/configure_user.php:1862 +#: ../../godmode/users/configure_user.php:1934 +#: ../../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:1061 ../../operation/users/user_edit.php:1127 +#: ../../operation/users/user_edit.php:1198 ../../general/register.php:154 +#: ../../general/logon_failed.php:18 +msgid "Authentication error" +msgstr "Erreur d'authentification" + +#: ../../enterprise/include/functions_login.php:492 +#: ../../godmode/users/configure_user.php:1799 +#: ../../godmode/users/configure_user.php:1869 +#: ../../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:1068 ../../operation/users/user_edit.php:1134 +#: ../../general/register.php:161 +msgid "There was an error loading the data" +msgstr "Erreur de chargement des donnĆ©es" + +#: ../../enterprise/include/functions_login.php:501 +#: ../../godmode/users/configure_user.php:1877 +#: ../../godmode/users/configure_user.php:1955 +#: ../../operation/users/user_edit.php:1142 ../../operation/users/user_edit.php:1218 +#: ../../general/register.php:170 +msgid "Double autentication activation" +msgstr "Double authentification activĆ©e" + +#: ../../enterprise/include/lib/Agent.php:99 +msgid " error, invalid agent." +msgstr " erreur, agent non valide." + +#: ../../enterprise/include/lib/Agent.php:674 +#, php-format +msgid "Log module \"%s\" does not exist" +msgstr "Le module du journal Ā« %s Ā» n'existe pas" + +#: ../../enterprise/include/lib/Agent.php:696 +#, php-format +msgid "Plugin \"%s\" does not exist" +msgstr "Le plugin Ā« %s Ā» n'existe pas" + +#: ../../enterprise/include/lib/Agent.php:828 +#, php-format +msgid "Log module \"%s\" does not exist, %s skipped" +msgstr "Le module du journal Ā« %s Ā» n'existe pas, %s sautĆ©" + +#: ../../enterprise/include/lib/Agent.php:863 +#, php-format +msgid "Plugin \"%s\" does not exist, %s skipped" +msgstr "Le plugin Ā« %s Ā» n'existe pas, %s sautĆ©" + +#: ../../enterprise/include/lib/Agent.php:934 +#, php-format +msgid "Log module %s already defined" +msgstr "Le module du journal %s est dĆ©jĆ  dĆ©fini" + +#: ../../enterprise/include/lib/Agent.php:951 +#, php-format +msgid "Invalid module type %s" +msgstr "Type de module %s non dĆ©fini" + +#: ../../enterprise/include/lib/Agent.php:981 +#, php-format +msgid "Plugin %s already defined" +msgstr "Le plugin %s est dĆ©jĆ  dĆ©fini" + +#: ../../enterprise/include/lib/Agent.php:995 +msgid "Invalid plugin definition" +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:711 ../../operation/users/user_edit.php:757 +msgid "Test" +msgstr "Test" + +#: ../../enterprise/include/lib/NetworkManager.php:83 +msgid "Retrieve config" +msgstr "RĆ©cupĆ©rer configuration" + +#: ../../enterprise/include/lib/NetworkManager.php:84 +msgid "Restore backed up config" +msgstr "RĆ©cupĆ©rer configuration sauvegardĆ©e" + +#: ../../enterprise/include/lib/NetworkManager.php:86 +msgid "Send firmware" +msgstr "Envoyer firmware" + +#: ../../enterprise/include/lib/NetworkManager.php:88 +#: ../../godmode/setup/setup_general.php:408 +msgid "On demand" +msgstr "Sur demande" + +#: ../../enterprise/include/lib/NetworkManager.php:93 +msgid "Executing test" +msgstr "ExĆ©cution du test" + +#: ../../enterprise/include/lib/NetworkManager.php:94 +msgid "Retrieving config" +msgstr "RĆ©cupĆ©ration de la configuration" + +#: ../../enterprise/include/lib/NetworkManager.php:95 +msgid "Restoring backup" +msgstr "Restauration de la sauvegarde" + +#: ../../enterprise/include/lib/NetworkManager.php:96 +msgid "Retrieving firmware version" +msgstr "RĆ©cupĆ©ration de la version du firmware" + +#: ../../enterprise/include/lib/NetworkManager.php:97 +msgid "Sending firmware update" +msgstr "Envoi de la mise Ć  jour du firmware" + +#: ../../enterprise/include/lib/NetworkManager.php:98 +msgid "Executing custom script" +msgstr "ExĆ©cution dā€™un script personnalisĆ©" + +#: ../../enterprise/include/lib/NetworkManager.php:99 +msgid "Executing on demand script" +msgstr "ExĆ©cution dā€™un script Ć  la demande" + +#: ../../enterprise/include/lib/NetworkManager.php:186 +msgid "Montly" +msgstr "Mensuel" + +#: ../../enterprise/include/lib/AlertCorrelation.class.php:838 +#: ../../enterprise/include/lib/AlertCorrelation.class.php:852 +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 +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 +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 +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 +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 +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 +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 +msgid "Event group Recursive" +msgstr "RĆ©cursif du group d'Ć©vĆ©nement" + +#: ../../enterprise/include/lib/AlertCorrelation.class.php:1126 +#: ../../include/functions_reporting_html.php:1047 +#: ../../include/functions_reporting_html.php:1313 +#: ../../include/functions_reporting_html.php:2422 +#: ../../operation/snmpconsole/snmp_view.php:865 +msgid "Count" +msgstr "Nombre" + +#: ../../enterprise/include/lib/AlertCorrelation.class.php:1129 +msgid "Time window" +msgstr "FenĆŖtre de temps" + +#: ../../enterprise/include/lib/AlertCorrelation.class.php:1663 +msgid "Failed to cleanup old rules." +msgstr "Erreur d'Ć©limination de normes vielles." + +#: ../../enterprise/include/lib/AlertCorrelation.class.php:1671 +#, php-format +msgid "Failed SQL: %s" +msgstr "SQL Ć©chouĆ© : %s" + +#: ../../enterprise/include/lib/AlertCorrelation.class.php:1676 +#, php-format +msgid "Failed to apply rule: %s." +msgstr "Application de la norme Ć©chouĆ©e : %s" + +#: ../../enterprise/include/lib/AlertCorrelation.class.php:1824 +msgid "any" +msgstr "nā€™importe quel" + +#: ../../enterprise/include/lib/NetworkManager/NetworkAgent.php:197 +msgid "No template assigned" +msgstr "Aucun modĆØle attribuĆ©" + +#: ../../enterprise/include/lib/NetworkManager/NetworkAgent.php:227 +msgid "NCM Agent without template assigned." +msgstr "Agent NCM sans modĆØle attribuĆ©." + +#: ../../enterprise/include/lib/NetworkManager/NetworkAgent.php:233 +msgid "Current selected template does not match vendor configured." +msgstr "" +"Le modĆØle sĆ©lectionnĆ© actuellement ne correspond pas avec le fournisseur " +"configurĆ©." + +#: ../../enterprise/include/lib/NetworkManager/NetworkAgent.php:240 +msgid "Current selected template does not match model configured." +msgstr "Le modĆØle sĆ©lectionnĆ©e actuellement ne correspond pas le modĆØle configurĆ©." + +#: ../../enterprise/include/lib/NetworkManager/NetworkAgent.php:549 +#: ../../enterprise/include/lib/NetworkManager/NetworkAgent.php:579 +#, php-format +msgid "No %s script available for this agent, check template %s" +msgstr "Pas de script %s disponible pour cet agent, vĆ©rifiez le modĆØle %s" + +#: ../../enterprise/include/lib/NetworkManager/Template.php:192 +msgid "Error linking script: " +msgstr "Erreur de liaison du script : " + +#: ../../enterprise/include/lib/ClusterViewer/ClusterManager.php:224 +msgid "Cluster not found: " +msgstr "Le grappe n'a pas Ć©tĆ© trouvĆ© : " + +#: ../../enterprise/include/lib/ClusterViewer/ClusterManager.php:233 +msgid "Cluster agent not found: " +msgstr "Agent de grappe non trouvĆ© : " + +#: ../../enterprise/include/lib/ClusterViewer/ClusterManager.php:270 +#, php-format +msgid "Error while deleting, reason: %s" +msgstr "Erreur d'Ć©limination, cause : %s" + +#: ../../enterprise/include/lib/ClusterViewer/ClusterManager.php:278 +msgid "Cluster successfully deleted." +msgstr "Grappe Ć©liminĆ©e correctement" + +#: ../../enterprise/include/lib/ClusterViewer/ClusterManager.php:304 +#, php-format +msgid "Error while forcing, reason: %s" +msgstr "Erreur de forƧage, cause : %s" + +#: ../../enterprise/include/lib/ClusterViewer/ClusterManager.php:312 +msgid "Cluster successfully forced." +msgstr "Grappe forcĆ©e correctement." + +#: ../../enterprise/include/lib/ClusterViewer/ClusterManager.php:568 +msgid "Not set" +msgstr "Non dĆ©fini" + +#: ../../enterprise/include/lib/ClusterViewer/ClusterManager.php:578 +msgid "Active-Active" +msgstr "Active-Active" + +#: ../../enterprise/include/lib/ClusterViewer/ClusterManager.php:580 +msgid "Active-Passive" +msgstr "Active-Passive" + +#: ../../enterprise/include/lib/ClusterViewer/ClusterWizard.php:182 +msgid "Cluster already defined, please use another name." +msgstr "Grappe dĆ©jĆ  dĆ©finie, utilisez un autre nom." + +#: ../../enterprise/include/lib/ClusterViewer/ClusterWizard.php:779 +msgid "Cluster name" +msgstr "Nom de grappe" + +#: ../../enterprise/include/lib/ClusterViewer/ClusterWizard.php:780 +msgid "" +"An agent with the same name of the cluster will be created, as well a special " +"service with the same name" +msgstr "" +"Un agent avec le m^me nom de la grappe sera crĆ©Ć©, ainsi qu'un service special " +"avec le mĆŖme nom" + +#: ../../enterprise/include/lib/ClusterViewer/ClusterWizard.php:794 +msgid "Cluster type" +msgstr "Type de grappe" + +#: ../../enterprise/include/lib/ClusterViewer/ClusterWizard.php:795 +msgid "" +"AA is a cluster where all members are working. In AP cluster only master member " +"is working" +msgstr "" +"AA c'est une grappe oĆ¹ tous les membres travaillent. Dans la grappe AP seulement " +"le membre master travaille" + +#: ../../enterprise/include/lib/ClusterViewer/ClusterWizard.php:803 +msgid "Active - Active" +msgstr "Active - Active" + +#: ../../enterprise/include/lib/ClusterViewer/ClusterWizard.php:804 +msgid "Active - Pasive" +msgstr "Active - Passive" + +#: ../../enterprise/include/lib/ClusterViewer/ClusterWizard.php:824 +msgid "Target cluster agent will be stored under this group" +msgstr "L'agent de grappe cible sera stockĆ© sous ce groupe" + +#: ../../enterprise/include/lib/ClusterViewer/ClusterWizard.php:841 +msgid "" +"You must select a Prediction Server to perform all cluster status calculations" +msgstr "" +"Vous devez dĆ©tecter un Serveur de prĆ©diction pour accomplir toutes les " +"estimations d'Ć©tat de grappe" + +#: ../../enterprise/include/lib/ClusterViewer/ClusterWizard.php:1016 +msgid "critical if" +msgstr "critique si" + +#: ../../enterprise/include/lib/ClusterViewer/ClusterWizard.php:1025 +#: ../../enterprise/include/lib/ClusterViewer/ClusterWizard.php:1048 +#, php-format +msgid "% of balanced modules are down (equal or greater)." +msgstr "% des modules balancĆ©s sont dĆ©sactivĆ©s (Ć©gal ou supĆ©rieur)" + +#: ../../enterprise/include/lib/ClusterViewer/ClusterWizard.php:1063 +msgid "Please, set threholds for all active-active modules" +msgstr "Veuillez mettre des seuils pour touts les modules active-active" + +#: ../../enterprise/include/lib/ClusterViewer/ClusterWizard.php:1167 +msgid "Please, check all active-passive modules critical for this cluster" +msgstr "" +"Veuillez vĆ©rifier tout les modules critiques active-passive pour cette grappe" + +#: ../../enterprise/include/lib/ClusterViewer/ClusterWizard.php:1169 +msgid "" +"If a critical balanced module is going to critical status, then cluster will be " +"critical." +msgstr "" +"Si un module balancĆ© critique entre un Ć©tat critique, la grappe deviendra " +"critique." + +#: ../../enterprise/include/lib/Service.php:152 +msgid "Service module does not match pointed one" +msgstr "Le module de service ne correspond pas celui pointĆ©" + +#: ../../enterprise/include/lib/Service.php:158 +#, php-format +msgid "Service module not found %s
    " +msgstr "Module de service non trouvƩ %s
    " + +#: ../../enterprise/include/lib/Service.php:177 +msgid "Service module SLA not found" +msgstr "SLA de module de service non trouvƩ" + +#: ../../enterprise/include/lib/Service.php:183 +#, php-format +msgid "SLA service module not found %s
    " +msgstr "Module de service SLA non trouvƩ %s
    " + +#: ../../enterprise/include/lib/Service.php:202 +msgid "Service module SLA does not match pointed one" +msgstr "Le SLA du module de service ne correspond celui pointƩ" + +#: ../../enterprise/include/lib/Service.php:208 +#, php-format +msgid "SLA service value module not found %s
    " +msgstr "Module de valeur de service SLA non trouvƩ %s
    " + +#: ../../enterprise/include/lib/Service.php:221 +#, php-format +msgid "Service agent not found %s
    " +msgstr "Agent de service non trouvƩ %s
    " + +#: ../../enterprise/include/lib/Service.php:232 +#, php-format +msgid "Service children could not be fully retrieved: %s
    " +msgstr "Le service fils n'a pas pu ĆŖtre rĆ©cupĆ©rĆ© complĆØtement : %s
    " + +#: ../../enterprise/include/lib/Service.php:313 +msgid "" +" Cannot switch from SMART to MANUAL if there are dynamic elements attached to the " +"service. Please erase dynamic elements before change to MANUAL" +msgstr "" +" Il est impossible de changer de SMART Ć  MANUAL s'il y a des Ć©lĆ©ments dynamiques " +"ajoutĆ©s au service. Veuillez Ć©liminer les Ć©lĆ©ments dynamiques avan changer Ć  " +"MANUAL" + +#: ../../enterprise/include/lib/Service.php:397 +#: ../../enterprise/include/lib/Service.php:740 +#: ../../enterprise/include/lib/Service.php:921 +#: ../../enterprise/include/lib/Metaconsole/Node.php:1353 +#: ../../enterprise/include/lib/Metaconsole/Synchronizer.php:402 +#: ../../enterprise/include/lib/ServiceElement.php:390 +#: ../../enterprise/include/lib/ServiceElement.php:921 +#: ../../enterprise/include/lib/ServiceElement.php:963 +#: ../../enterprise/include/lib/ServiceElement.php:1005 +#: ../../enterprise/include/lib/ServiceElement.php:1111 +#: ../../enterprise/include/lib/ServiceElement.php:1153 +#: ../../include/lib/Agent.php:349 ../../include/lib/Module.php:1172 +#: ../../include/lib/Entity.php:303 +#, php-format +msgid "Cannot connect to node %d" +msgstr "Connexion avec le node %d Ć©chouĆ©e" + +#: ../../enterprise/include/lib/Service.php:777 +#, php-format +msgid "Failed to update CPS for moduleValue for service %s: " +msgstr "Mise Ć  jour du CPS pour moduleValue pour le service %s Ć©chouĆ©e : " + +#: ../../enterprise/include/lib/Service.php:1445 +msgid "Error: id agent must be defined." +msgstr "Erreur : l'ID d'agent doit ĆŖtre dĆ©fini." + +#: ../../enterprise/include/lib/Service.php:1533 +msgid " error: Target agent does not exist." +msgstr " erreur : L'agent cible n'existe pas." + +#: ../../enterprise/include/lib/Core/SSH.php:163 +msgid "php-ssh2 not available" +msgstr "php-ssh2 non disponible" + +#: ../../enterprise/include/lib/Core/SSH.php:184 +msgid "Failed to connect" +msgstr "Erreur de connexion" + +#: ../../enterprise/include/lib/Core/SSH.php:239 +#, php-format +msgid "Unable to open public key file %s" +msgstr "Incapable d'ouvrir le fichier de clĆ© publique %s" + +#: ../../enterprise/include/lib/Core/SSH.php:257 +msgid "Failed to login to target" +msgstr "Erreur de connexion du cible" + +#: ../../enterprise/include/lib/Metaconsole/Node.php:144 +msgid "auth error." +msgstr "erreur d'authentification." + +#: ../../enterprise/include/lib/Metaconsole/Node.php:148 +msgid "connection error." +msgstr "erreur de connexion." + +#: ../../enterprise/include/lib/Metaconsole/Node.php:152 +msgid "could not resolve the host." +msgstr "l'hĆ“te n'a pas pu ĆŖtre rĆ©solu" + +#: ../../enterprise/include/lib/Metaconsole/Node.php:156 +#: ../../enterprise/include/lib/Metaconsole/Node.php:205 +#: ../../enterprise/include/lib/Metaconsole/Node.php:252 +#: ../../enterprise/include/lib/Metaconsole/Node.php:457 +msgid "unknown error." +msgstr "erreur inconnue." + +#: ../../enterprise/include/lib/Metaconsole/Node.php:193 +msgid "missing credentials." +msgstr "identifiants manquants" + +#: ../../enterprise/include/lib/Metaconsole/Node.php:197 +msgid "cannot connect to host." +msgstr "la connexion avec l'hĆ“te n'est pas possible" + +#: ../../enterprise/include/lib/Metaconsole/Node.php:201 +msgid "database does not exist." +msgstr "la base de donnĆ©es n'existe pas." + +#: ../../enterprise/include/lib/Metaconsole/Node.php:244 +msgid "failed to connect to node database." +msgstr "erreur de connexion avec la base de donnĆ©es des noeuds." + +#: ../../enterprise/include/lib/Metaconsole/Node.php:248 +msgid "MR version mistmatch." +msgstr "La version MR ne correspond pas." + +#: ../../enterprise/include/lib/Metaconsole/Node.php:288 +msgid "agent cache failed" +msgstr "cachĆ© d'agent Ć©chouĆ©" + +#: ../../enterprise/include/lib/Metaconsole/Node.php:292 +#: ../../enterprise/include/lib/Metaconsole/Node.php:353 +msgid "unknown error" +msgstr "erreur inconnue" + +#: ../../enterprise/include/lib/Metaconsole/Node.php:341 +msgid "node is not recognized as metaconsole node." +msgstr "le noeud n'est pas reconnu en tant que noeud de la MĆ©taconsole." + +#: ../../enterprise/include/lib/Metaconsole/Node.php:345 +msgid "node license missmatch." +msgstr "Le noeud ne correspond pas avec la licence" + +#: ../../enterprise/include/lib/Metaconsole/Node.php:349 +msgid "cannot connect to node" +msgstr "la connexion avec le noeud n'est pas possible" + +#: ../../enterprise/include/lib/Metaconsole/Node.php:381 +msgid "Database is up to date with this Metaconsole" +msgstr "La base donnĆ©es est mise Ć  jour avec la MĆ©taconsole" + +#: ../../enterprise/include/lib/Metaconsole/Node.php:391 +msgid "Node not found" +msgstr "Noeud non trouvĆ©" + +#: ../../enterprise/include/lib/Metaconsole/Node.php:396 +#, php-format +msgid "There are %d queries pending to be applied, click in the eye to see results" +msgstr "" +"Il y a %d requĆŖtes pendant d'application, cliquez sur l'oeil pour voir les " +"rĆ©sultats" + +#: ../../enterprise/include/lib/Metaconsole/Node.php:405 +msgid "Database synchronization state and pending tasks" +msgstr "Ɖtat de la synchronisation de la base de donnĆ©es et les taches pendantes" + +#: ../../enterprise/include/lib/Metaconsole/Node.php:540 +msgid "Operation and table" +msgstr "OpĆ©ration et table" + +#: ../../enterprise/include/lib/Metaconsole/Node.php:655 +#, php-format +msgid "" +"Failed synchronizing %s, please check node PHP configuration issues and " +"collection max sizes" +msgstr "" +"Erreur de synchronisation %s, veuillez vĆ©rifier les problĆØmes de configuration " +"PHP et les tailles maximales de collections" + +#: ../../enterprise/include/lib/Metaconsole/Node.php:1173 +msgid "" +"The elimination of this node will lead to the suppression of its agents from " +"metaconsole and all the configuration assigned to them. " +msgstr "" +"L'Ć©limination de ce noeud suprimira son agent de la MĆ©taconsole et toutes leurs " +"configurations. " + +#: ../../enterprise/include/lib/Metaconsole/Node.php:1177 +msgid "The rules for this node may stop working. " +msgstr "Les rĆØgles pour ce noeud pourraient cĆ©sser de travailler. " + +#: ../../enterprise/include/lib/Metaconsole/Node.php:1181 +msgid "" +"The deleted node will lose its license, and you must license it manually again. " +msgstr "" +"Le noeud Ć©liminĆ© perdra sa licence, et vous devez le licencier manuellement une " +"autre fois. " + +#: ../../enterprise/include/lib/Metaconsole/Node.php:1685 +#, php-format +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:2926 +msgid "Final step" +msgstr "Ɖtape finale" + +#: ../../enterprise/include/lib/Metaconsole/Node.php:1704 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2927 +msgid "Database merged" +msgstr "Base de donnĆ©es fusionnĆ©e" + +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:171 +msgid "Activating node" +msgstr "Noeud d'activation" + +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:205 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:361 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:670 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:797 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:1068 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:1162 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:1514 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:1811 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2180 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:3104 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:3385 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:3539 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:3614 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:3913 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:4129 +msgid "Connect node" +msgstr "Noeud de connexion" + +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:577 +msgid "Create table tmerge_error" +msgstr "CrĆ©er table tmerge_error" + +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:603 +msgid "Create table tmerge_steps" +msgstr "CrĆ©er table tmerge_steps" + +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:628 +msgid "Create table tmerge_queries" +msgstr "CrĆ©er table tmerge_queries" + +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:769 +#, php-format +msgid "%s console" +msgstr "Console %s" + +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:774 +msgid "Check cron task" +msgstr "VĆ©rifier tache cron" + +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:775 +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:857 +msgid "memory_limit current value" +msgstr "Valeur actuelle de memory_limit" + +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:864 +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:876 +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:888 +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:913 +#, php-format +msgid "Post max size, nodes cannot be smaller than the size of the metaconsole %s" +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:928 +#, php-format +msgid "" +"Upload max file size, nodes cannot be smaller than the size of the metaconsole %s" +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:990 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:1006 +msgid "Problems with the backup directory" +msgstr "ProblĆØmes avec le rĆ©pertoire de sauvegarde" + +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:991 +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:1007 +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:1017 +msgid "Extension ZIP" +msgstr "Extension ZIP" + +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:1018 +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:1119 +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:1145 +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:1192 +msgid "Enable exceptions in tmerge_queries" +msgstr "Activer exceptions dans tmerge_queries" + +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:1216 +msgid "Enable foreing keys in tmerge_queries" +msgstr "Activer clĆ©s externes dans tmerge_queries" + +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:1495 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:1780 +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:1571 +msgid "This table does not have the id" +msgstr "Cette table n'a pas d'ID" + +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:1572 +msgid "Prepare merge request" +msgstr "PrĆ©parer requĆŖte de fusion" + +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:1898 +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:2068 +msgid "Inserts updates in tmerge_queries" +msgstr "Mises Ć  jour d'inserts dans tmerge_queries" + +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2105 +msgid "Merging collections files" +msgstr "Fusion de fichiers de collections" + +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2161 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2307 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2478 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:3091 +#, php-format +msgid "Api call: %s" +msgstr "Appelle API : %s" + +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2219 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2220 +msgid "Problems while backing up collections from: " +msgstr "ProblĆØmes lors de la sauvegarde de collections de : " + +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2237 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2241 +#, 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:2253 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2257 +#, 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:2536 +msgid "Start phase merge" +msgstr "Commencer Ć©tape de fusion" + +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2548 +msgid "Create backups" +msgstr "CrĆ©er des sauvegardes" + +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2616 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2617 +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:2627 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2865 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:3235 +msgid "Class agent" +msgstr "Agent de classe" + +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2651 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2663 +msgid "Disable_foreing" +msgstr "Disable_foreing" + +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2675 +msgid "Truncate table" +msgstr "Tronquer la table" + +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2693 +msgid "Autoincrement" +msgstr "Auto-incrĆ©ment" + +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2705 +msgid "Inserts" +msgstr "Insertions" + +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2723 +msgid "Disabling constraints" +msgstr "DĆ©sactivant des contraintes" + +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2741 +msgid "Updates" +msgstr "Mises Ć  jour" + +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2764 +msgid "Restoring constraints" +msgstr "Restorer des contraintes" + +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2782 +msgid "Enable exceptions" +msgstr "Activer des exceptions" + +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2800 +msgid "Enable foreings keys" +msgstr "Activer des clĆ©s externes" + +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2817 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2818 +msgid "Update conf agent policies" +msgstr "Mettre Ć  jour des politiques d'agents" + +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2854 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2855 +msgid "Error updating agent conf" +msgstr "Mise Ć  jour de la configuration de l'agent Ć©chouĆ©e" + +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2876 +msgid "Synchronizing collections" +msgstr "Synchronisant des collections" + +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2888 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2889 +msgid "Error synchronizing collections" +msgstr "Synchronisation de collections Ć©chouĆ©e" + +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2985 +msgid "Problems unzipping collections at: " +msgstr "ProblĆØmes lors de la dĆ©compression de collections dans : " + +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2986 +#, 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:3144 +msgid "Restoring database backup" +msgstr "Restituant de la sauvegarde de la base de donnĆ©es" + +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:3170 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:4394 +msgid "Problems creating the backup" +msgstr "ProblĆØmes lors de la crĆ©ation de la sauvegarde" + +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:3183 +msgid "Restore backups conf agents" +msgstr "Restoration des agents de configuration de la sauvegarde" + +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:3220 +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:3222 +#, php-format +msgid "Agent \"%s\" with md5 file \"%s\"" +msgstr "Agent Ā« %s Ā» avec fichier md5 Ā« %s Ā»" + +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:3248 +msgid "Restore collections" +msgstr "Restorer les collections" + +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:3263 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:3264 +msgid "Error Synch collections" +msgstr "Erreur de synchronisation des collections" + +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:3481 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:3721 +msgid "Insert info steps" +msgstr "InsĆ©ree Ć©tapes d'information" + +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:3646 +msgid "Node not ready" +msgstr "Noeud non prĆ©parĆ©" + +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:3647 +msgid "Pending to be unified" +msgstr "Pendant d'unification" + +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:3880 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:3885 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:3937 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:3942 +msgid "Initialize" +msgstr "Initialiser" + +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:4076 +msgid "Backup" +msgstr "Sauvegarde" + +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:4106 +msgid "Applying" +msgstr "En application" + +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:4325 +msgid "Error updating events" +msgstr "Erreur de mise Ć  jour d'Ć©vĆ©nements" + +#: ../../enterprise/include/lib/RCMDFile.class.php:203 +msgid "You do not have grants to access this feature" +msgstr "Vous n'avez pas de permissions pour accĆ©der Ć  cette fonctionnalitĆ©" + +#: ../../enterprise/include/lib/RCMDFile.class.php:548 +msgid "There was a problem creating RCMD" +msgstr "Il y a eu un problĆØme lors de la crĆ©ation du RCMD" + +#: ../../enterprise/include/lib/RCMDFile.class.php:693 +#: ../../enterprise/include/lib/RCMDFile.class.php:717 +msgid "There was a problem deleting RCMD" +msgstr "Il y a eu un problĆØme lors de l'Ć©limination du RCMD" + +#: ../../enterprise/include/lib/RCMDFile.class.php:865 +msgid "No agent configuration file" +msgstr "Pas de fichier de configuration de l'agent" + +#: ../../enterprise/include/lib/RCMDFile.class.php:873 +msgid "you don't have write permissions in the configuration file" +msgstr "Vous n'avez pas des permissions d'Ć©criture dans le fichier de configuration" + +#: ../../enterprise/include/lib/RCMDFile.class.php:914 +msgid "This agent is already a target" +msgstr "Cet agent est dĆ©jĆ  un cible" + +#: ../../enterprise/include/lib/RCMDFile.class.php:945 +#, php-format +msgid "You do not have grants to access in this agent %s" +msgstr "Vous n'avez pas des permissions pour accĆ©der Ć  cet agent %s" + +#: ../../enterprise/include/lib/RCMDFile.class.php:1011 +msgid "There was a problem creating RCMD files" +msgstr "Il y a eu un problĆØme lors de la crĆ©ation des fichiers RCMD" + +#: ../../enterprise/include/lib/RCMDFile.class.php:1058 +msgid "There was a problem creating target" +msgstr "Il y a eu un problĆØme lors de la crĆ©ation du cible" + +#: ../../enterprise/include/lib/RCMDFile.class.php:1092 +msgid "There was a problem adding items in the configuration file" +msgstr "" +"Il y a eu un problĆØme lors de l'Ć©dition des Ć©lĆ©ments dans le fichier de " +"configuration" + +#: ../../enterprise/include/lib/RCMDFile.class.php:1118 +#: ../../enterprise/include/lib/RCMDFile.class.php:1285 +msgid "No agent has been selected" +msgstr "Il n'y a pas d'agents sĆ©lectionnĆ©s" + +#: ../../enterprise/include/lib/RCMDFile.class.php:1151 +msgid "Target doesn't exist" +msgstr "Le cible n'existe pas" + +#: ../../enterprise/include/lib/RCMDFile.class.php:1223 +msgid "There was a problem deleting tokens in the configuration file" +msgstr "" +"Il y a eu un problĆØme lors de l'Ć©limination des tokens dans le fichier de " +"configuration" + +#: ../../enterprise/include/lib/RCMDFile.class.php:1259 +msgid "There was a problem deleting target from DB" +msgstr "Il y a eu un problĆØme lors de l'Ć©limination du cible de la base de donnĆ©es" + +#: ../../enterprise/include/lib/RCMDFile.class.php:1417 +msgid "Yaml is empty" +msgstr "Yaml est vide" + +#: ../../enterprise/include/lib/RCMDFile.class.php:1426 +msgid "Doesn't have a valid YAML format" +msgstr "Il n'a pas de format YAML valide" + +#: ../../enterprise/include/lib/RCMDFile.class.php:1444 +#, php-format +msgid "%s field is not allowed" +msgstr "Le champ %s n'est pas permis" + +#: ../../enterprise/include/lib/Policy/Inventory.php:156 +#, php-format +msgid "inventory module already registered: \"%d\"" +msgstr "Module d'inventaire dĆ©jĆ  enregistrĆ© : Ā« %d Ā»" + +#: ../../enterprise/include/lib/Policy/Inventory.php:181 +#, php-format +msgid "Failed to update, already exists: \"%d\"" +msgstr "Erreur de mise Ć  jour, il existe dĆ©jĆ  : Ā« %d Ā»" + +#: ../../enterprise/include/lib/Policy/Module.php:201 +#: ../../enterprise/include/lib/Policy.php:1196 ../../include/lib/Module.php:805 +#, php-format +msgid "Module already exists: \"%s\"" +msgstr "Le module existe dĆ©jĆ  : Ā« %s Ā»" + +#: ../../enterprise/include/lib/Policy/Module.php:227 +#, php-format +msgid "Failed to update: \"%s\"" +msgstr "Erreur de mise Ć  jour : Ā« %s Ā»" + +#: ../../enterprise/include/lib/Policy/Queue.php:378 +#, php-format +msgid "Already queued in %s" +msgstr "DĆ©jĆ  en file d'attente dans %s" + +#: ../../enterprise/include/lib/ServiceElement.php:611 +#, php-format +msgid "This filters will cause slowdown on server (%s ms)" +msgstr "Ces filtres causeront un ralentissement du serveur (%s ms)" + +#: ../../enterprise/include/lib/ServiceElement.php:625 +#, php-format +msgid "Regular expression is not valid: %s." +msgstr "L'expression rĆ©guliĆØre n'est pas valide : %s." + +#: ../../enterprise/include/lib/ServiceElement.php:864 +#, php-format +msgid " error while decoding rules: %s" +msgstr " erreur lors du dĆ©codage des normes : %s" + +#: ../../enterprise/include/lib/ServiceElement.php:1271 +#, php-format +msgid " error: Failed to delete element: %s" +msgstr " erreur : Ć©limination de l'Ć©lĆ©ment Ć©chouĆ©e : %s" + +#: ../../enterprise/include/lib/Policy.php:281 +#, php-format +msgid "Invalid operation %s" +msgstr "OpĆ©ration non valable %s" + +#: ../../enterprise/include/lib/Policy.php:1171 +#, php-format +msgid "Policy already defined: \"%s\"" +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:355 +#: ../../include/lib/Dashboard/Widgets/events_list.php:389 +#: ../../operation/events/events.php:1607 ../../operation/events/events.php:2181 +msgid "Event status" +msgstr "Ɖtat des Ć©vĆ©nements" + +#: ../../enterprise/include/functions_events.php:101 +#: ../../godmode/events/event_edit_filter.php:419 +#: ../../operation/events/events.php:1833 +msgid "User ack." +msgstr "Confirmation de l'utilisateur" + +#: ../../enterprise/include/functions_events.php:111 +#: ../../godmode/events/event_edit_filter.php:454 +msgid "Date from" +msgstr "Date de dĆ©but" + +#: ../../enterprise/include/functions_events.php:121 +#: ../../godmode/events/event_edit_filter.php:457 +msgid "Date to" +msgstr "Date de fin" + +#: ../../enterprise/include/functions_events.php:131 +#: ../../godmode/events/event_edit_filter.php:443 +#: ../../mobile/operation/events.php:816 ../../include/functions_events.php:4573 +#: ../../operation/events/events.php:1638 +msgid "Repeated" +msgstr "RĆ©pĆ©tĆ©" + +#: ../../enterprise/include/functions_events.php:141 +#: ../../godmode/events/event_edit_filter.php:603 +#: ../../operation/events/events.php:1856 +msgid "Alert events" +msgstr "ƉvĆ©nements d'alerte" + +#: ../../enterprise/include/functions_events.php:152 +msgid "Id source events" +msgstr "ƉvĆ©nements de source d'ID" + +#: ../../enterprise/include/functions_events.php:162 +#: ../../godmode/events/event_edit_filter.php:409 +#: ../../mobile/operation/events.php:997 ../../include/functions_snmp.php:401 +#: ../../include/class/AuditLog.class.php:187 +#: ../../include/lib/Dashboard/Widgets/events_list.php:347 +#: ../../include/lib/Dashboard/Widgets/top_n_events_by_module.php:270 +#: ../../include/lib/Dashboard/Widgets/top_n_events_by_group.php:270 +#: ../../operation/snmpconsole/snmp_view.php:616 +#: ../../operation/events/events.php:1620 ../../operation/events/events.php:2211 +msgid "Max. hours old" +msgstr "Heures maximales" + +#: ../../enterprise/include/functions_events.php:178 +#: ../../enterprise/include/functions_events.php:200 +msgid "More than 5 tags" +msgstr "Plus de 5 Ć©tiquettes" + +#: ../../enterprise/include/functions_events.php:184 +#: ../../godmode/events/event_edit_filter.php:498 +#: ../../operation/events/events.php:2052 ../../operation/events/events.php:2055 +msgid "Events with following tags" +msgstr "ƉvĆ©nements avec les Ć©tiquettes suivantes" + +#: ../../enterprise/include/functions_events.php:206 +#: ../../godmode/events/event_edit_filter.php:551 +#: ../../operation/events/events.php:2053 ../../operation/events/events.php:2056 +msgid "Events without following tags" +msgstr "ƉvĆ©nements sans les Ć©tiquettes suivantes" + +#: ../../enterprise/include/functions_events.php:224 +#: ../../include/functions_snmp.php:441 +msgid "Active filter" +msgstr "Filtre actif" + +#: ../../enterprise/include/functions_events.php:224 +#: ../../include/functions_snmp.php:441 +msgid "Active filters" +msgstr "Filtres actifs" + +#: ../../enterprise/include/functions_metaconsole.php:2827 +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:2834 +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:2841 +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:2848 +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:2855 +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:2862 +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:2869 +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:2876 +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:2883 +msgid "Agent already exists in target node" +msgstr "L'agent existe dĆ©jĆ  dans le noeud cible" + +#: ../../enterprise/include/functions_metaconsole.php:2907 +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:2912 +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" + +#: ../../enterprise/include/functions_license.php:119 +msgid "Perpetual" +msgstr "PerpĆ©tuel" + +#: ../../enterprise/include/functions_license.php:119 +msgid "Subscription" +msgstr "Abonnement" + +#: ../../enterprise/include/functions_license.php:120 +#: ../../include/class/Diagnostics.class.php:1156 +msgid "Support expires" +msgstr "Le support expire" + +#: ../../enterprise/include/functions_license.php:120 +msgid "Expires" +msgstr "Expire" + +#: ../../enterprise/include/functions_ipam.php:288 +msgid "Export to Excel" +msgstr "Exporter vers Excel" + +#: ../../enterprise/include/functions_ipam.php:395 +msgid "Assign next free IP" +msgstr "Attribuer la suivante IP libre" + +#: ../../enterprise/include/functions_ipam.php:413 +msgid "Next available IP" +msgstr "Suivante IP disponible" + +#: ../../enterprise/include/functions_ipam.php:1341 +#: ../../enterprise/tools/ipam/ipam_ajax.php:483 ../../include/ajax/events.php:1712 +#: ../../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:1557 +#: ../../operation/snmpconsole/snmp_statistics.php:78 +#: ../../operation/snmpconsole/snmp_view.php:99 +#: ../../operation/incidents/incident_statistics.php:21 +msgid "Statistics" +msgstr "Statistiques" + +#: ../../enterprise/include/functions_ipam.php:1559 +#: ../../enterprise/include/functions_ipam.php:1989 +#: ../../enterprise/tools/ipam/ipam_excel.php:136 +#: ../../enterprise/tools/ipam/ipam_excel.php:202 +msgid "Total IPs" +msgstr "Adresses IP totales" + +#: ../../enterprise/include/functions_ipam.php:1565 +msgid "Occupied" +msgstr "OccupĆ©" + +#: ../../enterprise/include/functions_ipam.php:1571 +#: ../../enterprise/include/functions_ipam.php:2042 +#: ../../enterprise/tools/ipam/ipam_network.php:400 +#: ../../enterprise/tools/ipam/ipam_ajax.php:406 +#: ../../enterprise/tools/ipam/ipam_massive.php:103 +msgid "Managed" +msgstr "GĆ©rĆ©" + +#: ../../enterprise/include/functions_ipam.php:1573 +msgid "Not managed" +msgstr "Non gĆ©rĆ©" + +#: ../../enterprise/include/functions_ipam.php:1577 +#: ../../enterprise/include/functions_ipam.php:1734 +#: ../../enterprise/include/functions_ipam.php:2043 +#: ../../enterprise/tools/ipam/ipam_network.php:401 +#: ../../enterprise/tools/ipam/ipam_ajax.php:432 +#: ../../enterprise/tools/ipam/ipam_massive.php:103 +msgid "Reserved" +msgstr "RĆ©servĆ©" + +#: ../../enterprise/include/functions_ipam.php:1579 +msgid "Not Reserved" +msgstr "Non rĆ©servĆ©" + +#: ../../enterprise/include/functions_ipam.php:1589 +msgid "Occupancy statistics" +msgstr "Statistiques d'occupation" + +#: ../../enterprise/include/functions_ipam.php:1646 +msgid "DESC" +msgstr "Descendant" + +#: ../../enterprise/include/functions_ipam.php:1647 +msgid "ASC" +msgstr "Ascendant" + +#: ../../enterprise/include/functions_ipam.php:1648 +#: ../../enterprise/include/functions_ipam.php:1649 +#: ../../enterprise/include/functions_ipam.php:2037 +#: ../../enterprise/tools/ipam/ipam_network.php:396 +#: ../../enterprise/tools/ipam/ipam_ajax.php:364 +#: ../../include/class/Diagnostics.class.php:734 +#: ../../include/class/Diagnostics.class.php:752 +msgid "Hostname" +msgstr "Nom d'hĆ“te" + +#: ../../enterprise/include/functions_ipam.php:1648 +msgid "A -> Z" +msgstr "A -> Z" + +#: ../../enterprise/include/functions_ipam.php:1649 +msgid "Z -> A" +msgstr "Z -> A" + +#: ../../enterprise/include/functions_ipam.php:1650 +#: ../../enterprise/include/functions_ipam.php:1651 +msgid "Last check" +msgstr "DerniĆØre vĆ©rification" + +#: ../../enterprise/include/functions_ipam.php:1650 +msgid "Newer -> Older" +msgstr "Nouveau -> Ancien" + +#: ../../enterprise/include/functions_ipam.php:1651 +msgid "Older -> Newer" +msgstr "Ancien -> Nouveau" + +#: ../../enterprise/include/functions_ipam.php:1678 +msgid "Exact address match" +msgstr "Concordance exacte de l'adresse" + +#: ../../enterprise/include/functions_ipam.php:1682 +msgid "S.O" +msgstr "SystĆØme d'exploitation" + +#: ../../enterprise/include/functions_ipam.php:1695 +msgid "Big" +msgstr "Grand" + +#: ../../enterprise/include/functions_ipam.php:1696 +msgid "Tiny" +msgstr "Petit" + +#: ../../enterprise/include/functions_ipam.php:1697 +msgid "Icons style" +msgstr "Style des icĆ“nes" + +#: ../../enterprise/include/functions_ipam.php:1714 +msgid "Show not alive hosts" +msgstr "Afficher les hĆ“tes inactifs" + +#: ../../enterprise/include/functions_ipam.php:1722 +msgid "Show only managed addresses" +msgstr "Afficher uniquement les adresses gĆ©rĆ©es" + +#: ../../enterprise/include/functions_ipam.php:1730 +msgid "Reserved addresses" +msgstr "Adresses rĆ©servĆ©es" + +#: ../../enterprise/include/functions_ipam.php:1735 +msgid "Unreserved" +msgstr "Non rĆ©servĆ©es" + +#: ../../enterprise/include/functions_ipam.php:1745 +msgid "Last Contact" +msgstr "Dernier contact" + +#: ../../enterprise/include/functions_ipam.php:1788 +msgid "Filter options" +msgstr "Options de filtre" + +#: ../../enterprise/include/functions_ipam.php:1979 +msgid "id Network" +msgstr "ID rĆ©seau" + +#: ../../enterprise/include/functions_ipam.php:1984 +msgid "ID recon task" +msgstr "ID de tache de reconnaissance" + +#: ../../enterprise/include/functions_ipam.php:1985 +msgid "Scan Interval" +msgstr "Scanner l'intervalle" + +#: ../../enterprise/include/functions_ipam.php:1986 +msgid "Users Operator" +msgstr "OpĆ©rateur d'utilisateurs" + +#: ../../enterprise/include/functions_ipam.php:1987 +msgid "Total Ips" +msgstr "Lps totales" + +#: ../../enterprise/include/functions_ipam.php:1988 +msgid "Last Update" +msgstr "DerniĆØre mise Ć  jour" + +#: ../../enterprise/include/functions_ipam.php:1990 +#: ../../enterprise/tools/ipam/ipam_excel.php:137 +#: ../../enterprise/tools/ipam/ipam_excel.php:203 +msgid "Alive IPs" +msgstr "IPs actives" + +#: ../../enterprise/include/functions_ipam.php:1991 +#: ../../enterprise/tools/ipam/ipam_excel.php:138 +#: ../../enterprise/tools/ipam/ipam_excel.php:204 +msgid "Occupied %" +msgstr "% occupĆ©" + +#: ../../enterprise/include/functions_ipam.php:1992 +#: ../../enterprise/tools/ipam/ipam_excel.php:139 +#: ../../enterprise/tools/ipam/ipam_excel.php:205 +msgid "Available %" +msgstr "% disponible" + +#: ../../enterprise/include/functions_ipam.php:1993 +#: ../../enterprise/tools/ipam/ipam_excel.php:140 +#: ../../enterprise/tools/ipam/ipam_excel.php:206 +msgid "Managed IPs" +msgstr "IPs gĆ©rĆ©s" + +#: ../../enterprise/include/functions_ipam.php:1994 +#: ../../enterprise/tools/ipam/ipam_excel.php:141 +#: ../../enterprise/tools/ipam/ipam_excel.php:207 +msgid "Managed %" +msgstr "% gĆ©rĆ©" + +#: ../../enterprise/include/functions_ipam.php:1995 +#: ../../enterprise/tools/ipam/ipam_excel.php:142 +#: ../../enterprise/tools/ipam/ipam_excel.php:208 +msgid "Unmanaged %" +msgstr "% non gĆ©rĆ©" + +#: ../../enterprise/include/functions_ipam.php:1996 +#: ../../enterprise/tools/ipam/ipam_excel.php:143 +#: ../../enterprise/tools/ipam/ipam_excel.php:209 +msgid "Reserved IPs" +msgstr "IPs rĆ©servĆ©es" + +#: ../../enterprise/include/functions_ipam.php:1997 +#: ../../enterprise/tools/ipam/ipam_excel.php:144 +#: ../../enterprise/tools/ipam/ipam_excel.php:210 +msgid "Reserved %" +msgstr "% rĆ©servĆ©" + +#: ../../enterprise/include/functions_ipam.php:1998 +#: ../../enterprise/tools/ipam/ipam_excel.php:145 +#: ../../enterprise/tools/ipam/ipam_excel.php:211 +msgid "Not reserved %" +msgstr "% non reservĆ©" + +#: ../../enterprise/include/functions_ipam.php:2041 +msgid "OS Name" +msgstr "Nom du systĆØme dā€™exploitation" + +#: ../../enterprise/include/functions_ipam.php:2044 +#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:366 +msgid "Created at" +msgstr "CrĆ©Ć© le" + +#: ../../enterprise/include/functions_ipam.php:2045 +msgid "Last updated" +msgstr "DerniĆØre mise Ć  jour" + +#: ../../enterprise/include/functions_ipam.php:2046 +msgid "Last modified" +msgstr "DerniĆØre modification" + +#: ../../enterprise/include/functions_ipam.php:2047 +msgid "Dhcp Leased" +msgstr "Dhcp louĆ©" + +#: ../../enterprise/include/functions_ipam.php:2048 +msgid "Dhcp Leased Mode" +msgstr "Mode louĆ© Dhcp" + +#: ../../enterprise/include/functions_ipam.php:2049 +msgid "Dhcp Leased Expiration" +msgstr "Expiration louĆ©e par Dhcp" + +#: ../../enterprise/include/functions_ipam.php:2050 +msgid "Mac address" +msgstr "Adresse Mac" + +#: ../../enterprise/include/functions_policies.php:423 +#: ../../enterprise/include/functions_policies.php:438 +#: ../../include/functions_alerts.php:477 +msgid "copy" +msgstr "copier" + +#: ../../enterprise/include/functions_policies.php:675 +#, php-format +msgid "%s success" +msgstr "%s a succĆ©dĆ©" + +#: ../../enterprise/include/functions_policies.php:675 +#, php-format +msgid "%s failed" +msgstr "%s a Ć©chouĆ©" + +#: ../../enterprise/include/functions_policies.php:680 +msgid "Policy cleaned from nodes: " +msgstr "Politique Ć©liminĆ©e des noeuds : " + +#: ../../enterprise/include/functions_policies.php:934 +#, php-format +msgid "Failed to connect to node %s" +msgstr "Connection avec le noeud %s Ć©chouĆ©" + +#: ../../enterprise/include/functions_policies.php:3506 +msgid "Policy linkation" +msgstr "Relation de la politique en cours" + +#: ../../enterprise/include/functions_policies.php:3511 +msgid "Module linked" +msgstr "Module associĆ©" + +#: ../../enterprise/include/functions_policies.php:3516 +#: ../../enterprise/include/functions_policies.php:3536 +msgid "Unlink from policy" +msgstr "Dissocier de la politique" + +#: ../../enterprise/include/functions_policies.php:3521 +msgid "Module unlinked" +msgstr "Module dissociĆ©" + +#: ../../enterprise/include/functions_policies.php:3526 +#: ../../enterprise/include/functions_policies.php:3546 +msgid "Relink to policy" +msgstr "Associer Ć  nouveau Ć  la politique" + +#: ../../enterprise/include/functions_policies.php:3531 +msgid "Module pending to link" +msgstr "Module Ć  associer" + +#: ../../enterprise/include/functions_policies.php:3531 +#: ../../godmode/agentes/module_manager_editor.php:548 +msgid "Module will be linked in the next application" +msgstr "Le module sera associĆ© lors de la suivante application" + +#: ../../enterprise/include/functions_policies.php:3541 +msgid "Module pending to unlink" +msgstr "Module Ć  dissocier" + +#: ../../enterprise/include/functions_policies.php:3541 +#: ../../godmode/agentes/module_manager_editor.php:562 +msgid "Module will be unlinked in the next application" +msgstr "Le module sera dissociĆ© lors de la suivante application" + +#: ../../enterprise/include/functions_policies.php:3737 +#: ../../godmode/agentes/configurar_agente.php:539 +#: ../../godmode/agentes/configurar_agente.php:760 +#: ../../godmode/setup/snmp_wizard.php:31 +msgid "SNMP Wizard" +msgstr "Assistant du SNMP" + +#: ../../enterprise/include/functions_policies.php:3740 +#: ../../godmode/agentes/configurar_agente.php:549 +#: ../../godmode/agentes/configurar_agente.php:766 +msgid "SNMP Interfaces wizard" +msgstr "Assistant des interfaces SNMP" + +#: ../../enterprise/include/functions_policies.php:3743 +#: ../../godmode/agentes/configurar_agente.php:559 +#: ../../godmode/agentes/configurar_agente.php:772 +msgid "WMI Wizard" +msgstr "Assistant du WMI" + +#: ../../enterprise/include/functions_policies.php:4060 +msgid "Create a new policy map" +msgstr "CrĆ©er une nouvelle carte politique" + +#: ../../enterprise/include/functions_policies.php:4448 +#: ../../extensions/resource_registration.php:1098 +msgid "Error, please install the PHP libXML in the system." +msgstr "Erreur, veuillez installer le PHP libXML dans le systĆØme" + +#: ../../enterprise/include/functions_policies.php:4460 +#, php-format +msgid "" +"This extension makes registration of policies enterprise.
    You can get more " +"policies in our Public Resource Library" +msgstr "" +"Cette extension enregistre les politiques Enterprise.
    Vouz pouvez trouver " +"plus de politiques dans notre Librairie de ressources publiques" + +#: ../../enterprise/include/functions_policies.php:4467 +#: ../../extensions/resource_registration.php:1133 +msgid "Group filter: " +msgstr "Filtre de groupe : " + +#: ../../enterprise/include/functions_policies.php:4492 +#: ../../extensions/resource_registration.php:1150 +msgid "" +"Error uploading resource. Check if the selected file is a valid resource template " +"in .ptr format" +msgstr "" +"Erreur lors du tĆ©lĆ©chargement de la ressource. VĆ©rifiez si le fichier sĆ©lectionnĆ© " +"est un modĆØle de ressource valide au format .ptr" + +#: ../../enterprise/include/functions_policies.php:4518 +msgid "Policy does not exist" +msgstr "La politique n'existe pas" + +#: ../../enterprise/include/functions_policies.php:4908 +msgid "This will not produce any action." +msgstr "Ce ne produira aucune action." + +#: ../../enterprise/include/functions_policies.php:4937 +#, php-format +msgid "Error connecting with node %s." +msgstr "Erreur de connexion avec le noeud %s." + +#: ../../enterprise/include/functions_policies.php:4944 +#, php-format +msgid "This policy is being applied on node %s." +msgstr "Cette politique est appliquĆ©e dans le noeud %s." + +#: ../../enterprise/include/functions_policies.php:4982 +msgid "Error syncronizing ." +msgstr "Erreur de synchronisation." + +#: ../../enterprise/include/functions_local_components.php:179 +msgid "Empty configuration" +msgstr "Vider la configuration" + +#: ../../enterprise/include/functions_local_components.php:184 +msgid "Empty OS" +msgstr "Vider le systĆØme d'exploitation" + +#: ../../enterprise/include/functions_local_components.php:354 +#: ../../include/functions_alerts.php:1124 +#: ../../include/functions_network_components.php:590 +msgid "Copy of" +msgstr "Copie de" + +#: ../../enterprise/include/functions_ux_console.php:507 +#: ../../enterprise/operation/agentes/tag_view.php:873 +#: ../../enterprise/operation/agentes/tag_view.php:883 +#: ../../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:6292 +msgid "Snapshot view" +msgstr "Vue de l'instantanĆ©" + +#: ../../enterprise/operation/agentes/agent_inventory.diff_view.php:44 +msgid "Unsucessful get module inventory data." +msgstr "Impossible de rĆ©cupĆ©rer les donnĆ©es du module d'inventaire" + +#: ../../enterprise/operation/agentes/agent_inventory.diff_view.php:173 +#: ../../enterprise/operation/agentes/agent_inventory.diff_view.php:176 +#: ../../godmode/reporting/visual_console_builder.wizard.php:538 +#: ../../mobile/operation/agents.php:463 ../../mobile/operation/modules.php:799 +#: ../../mobile/operation/module_graph.php:477 +#: ../../mobile/operation/events.php:1150 ../../mobile/operation/tactical.php:239 +msgid "Loading..." +msgstr "Chargement en cours..." + +#: ../../enterprise/operation/agentes/manage_transmap_creation_phases_data.php:34 +#: ../../enterprise/operation/agentes/manage_transmap.php:56 +#: ../../enterprise/operation/agentes/manage_transmap_creation.php:115 +#: ../../enterprise/operation/agentes/manage_transmap_creation.php:332 +#: ../../enterprise/operation/agentes/manage_transmap_creation.php:417 +msgid "Transactions List" +msgstr "Liste des transactions" + +#: ../../enterprise/operation/agentes/manage_transmap_creation_phases_data.php:42 +#: ../../enterprise/operation/agentes/manage_transmap.php:96 +#: ../../enterprise/operation/agentes/manage_transmap_creation.php:139 +#: ../../enterprise/operation/agentes/manage_transmap_creation.php:441 +msgid "Edit Transaction" +msgstr "Modifier la transaction" + +#: ../../enterprise/operation/agentes/manage_transmap_creation_phases_data.php:50 +msgid "Go back to phases list" +msgstr "Revenir Ć  la liste des phases" + +#: ../../enterprise/operation/agentes/manage_transmap_creation_phases_data.php:56 +msgid "Transactional Map - Phase - " +msgstr "Carte transactionnelle - Phase - " + +#: ../../enterprise/operation/agentes/policy_view.php:38 +msgid "This agent has no policy assigned" +msgstr "Cet agent n'a pas de politique attribuĆ©e" + +#: ../../enterprise/operation/agentes/policy_view.php:70 +#: ../../include/functions_events.php:2381 +msgid "V." +msgstr "V." + +#: ../../enterprise/operation/agentes/policy_view.php:89 +msgid "Policy outdate" +msgstr "Politique obsolĆØte" + +#: ../../enterprise/operation/agentes/policy_view.php:159 +#: ../../enterprise/operation/agentes/policy_view.php:169 +msgid "Toggle the collection table" +msgstr "Basculer la table de la collection" + +#: ../../enterprise/operation/agentes/policy_view.php:165 +msgid "Descripttion" +msgstr "Description" + +#: ../../enterprise/operation/agentes/policy_view.php:173 +msgid "Show Collection" +msgstr "Afficher la collection" + +#: ../../enterprise/operation/agentes/policy_view.php:253 +#: ../../enterprise/operation/agentes/policy_view.php:265 +msgid "Toggle the alert table" +msgstr "Basculer la table alerte" + +#: ../../enterprise/operation/agentes/policy_view.php:257 +#: ../../godmode/alerts/alert_list.list.php:151 +#: ../../include/ajax/alert_list.ajax.php:286 +#: ../../include/ajax/alert_list.ajax.php:311 +#: ../../operation/agentes/alerts_status.functions.php:124 +msgid "Standby" +msgstr "Mode veille" + +#: ../../enterprise/operation/agentes/policy_view.php:269 +msgid "Show Alert" +msgstr "Afficher l'alerte" + +#: ../../enterprise/operation/agentes/policy_view.php:345 +#: ../../godmode/alerts/alert_list.list.php:574 +#: ../../godmode/alerts/alert_view.php:105 ../../mobile/operation/alerts.php:324 +#: ../../include/functions_ui.php:1253 +#: ../../include/class/AgentsAlerts.class.php:937 +msgid "time(s)" +msgstr "foi(s)" + +#: ../../enterprise/operation/agentes/policy_view.php:351 +#: ../../godmode/alerts/alert_list.list.php:580 +#: ../../godmode/alerts/alert_view.php:111 ../../mobile/operation/alerts.php:330 +#: ../../include/functions_agents.php:2944 ../../include/functions_agents.php:2955 +#: ../../include/functions_ui.php:1259 +#: ../../include/class/AgentsAlerts.class.php:943 +#: ../../include/functions_reporting.php:12411 +#: ../../operation/snmpconsole/snmp_view.php:1020 +msgid "Alert not fired" +msgstr "Alerte non dĆ©clenchĆ©e" + +#: ../../enterprise/operation/agentes/policy_view.php:390 +#: ../../enterprise/operation/agentes/policy_view.php:402 +msgid "Toggle the module table" +msgstr "Basculer la table du module" + +#: ../../enterprise/operation/agentes/policy_view.php:394 +msgid "Relationship" +msgstr "Relation" + +#: ../../enterprise/operation/agentes/policy_view.php:406 +msgid "Show Modules" +msgstr "Afficher les modules" + +#: ../../enterprise/operation/agentes/policy_view.php:425 +msgid "(Un-adopted)" +msgstr "(Non adoptĆ©s)" + +#: ../../enterprise/operation/agentes/policy_view.php:428 +msgid "(Adopted)" +msgstr "(AdoptĆ©s)" + +#: ../../enterprise/operation/agentes/policy_view.php:433 +msgid "(Un-adopted) (Unlinked)" +msgstr "(Non adoptĆ©s) (Non liĆ©s)" + +#: ../../enterprise/operation/agentes/policy_view.php:436 +msgid "(Adopted) (Unlinked)" +msgstr "(AdoptĆ©s) (Non liĆ©s)" + +#: ../../enterprise/operation/agentes/policy_view.php:457 +#: ../../godmode/agentes/module_manager.php:1086 +msgid "Non initialized module" +msgstr "Module non initialisĆ©" + +#: ../../enterprise/operation/agentes/policy_view.php:485 +#: ../../enterprise/operation/agentes/policy_view.php:490 +#: ../../enterprise/operation/agentes/policy_view.php:495 +#: ../../enterprise/operation/agentes/transactional_map.php:210 +#: ../../enterprise/operation/agentes/tag_view.php:989 +#: ../../enterprise/operation/agentes/tag_view.php:995 +#: ../../enterprise/operation/agentes/tag_view.php:1005 +#: ../../enterprise/operation/agentes/tag_view.php:1011 +#: ../../enterprise/operation/agentes/tag_view.php:1021 +#: ../../enterprise/operation/agentes/tag_view.php:1027 +#: ../../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_modules.php:2889 ../../include/functions_modules.php:2893 +#: ../../include/functions_modules.php:2897 +#: ../../operation/agentes/status_monitor.php:1662 +#: ../../operation/agentes/status_monitor.php:1668 +#: ../../operation/agentes/status_monitor.php:1678 +#: ../../operation/agentes/status_monitor.php:1684 +#: ../../operation/agentes/status_monitor.php:1694 +#: ../../operation/agentes/status_monitor.php:1700 +#: ../../operation/agentes/pandora_networkmap.view.php:1780 +#: ../../operation/agentes/pandora_networkmap.view.php:1785 +#: ../../operation/agentes/pandora_networkmap.view.php:1790 +#: ../../operation/search_modules.php:141 ../../operation/search_modules.php:149 +#: ../../operation/search_modules.php:157 +msgid "Last status" +msgstr "Dernier Ć©tat" + +#: ../../enterprise/operation/agentes/transactional_map.php:61 +msgid "List of transactions" +msgstr "Liste des transactions" + +#: ../../enterprise/operation/agentes/transactional_map.php:74 +#: ../../enterprise/operation/agentes/manage_transmap.php:176 +#: ../../enterprise/operation/agentes/manage_transmap_creation.php:173 +#: ../../enterprise/operation/agentes/manage_transmap_creation.php:353 +#: ../../enterprise/operation/agentes/manage_transmap_creation.php:475 +msgid "Transactional Map" +msgstr "Carte transactionnelle" + +#: ../../enterprise/operation/agentes/transactional_map.php:149 +msgid "Name can't be empty" +msgstr "Le nom ne peut pas ĆŖtre vide" + +#: ../../enterprise/operation/agentes/transactional_map.php:206 +msgid "Transaction name" +msgstr "Nom de la transaction" + +#: ../../enterprise/operation/agentes/transactional_map.php:209 +msgid "Running status" +msgstr "Ɖtat dā€™exĆ©cution" + +#: ../../enterprise/operation/agentes/transactional_map.php:211 +msgid "Time spent" +msgstr "Temps dĆ©passĆ©" + +#: ../../enterprise/operation/agentes/transactional_map.php:212 +#: ../../godmode/wizards/DiscoveryTaskList.class.php:609 +#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:367 +msgid "Updated at" +msgstr "Mis Ć  jour le" + +#: ../../enterprise/operation/agentes/transactional_map.php:254 +msgid "Stopped" +msgstr "ArrĆŖtĆ©" + +#: ../../enterprise/operation/agentes/transactional_map.php:260 +msgid "Starting" +msgstr "DĆ©marrant" + +#: ../../enterprise/operation/agentes/transactional_map.php:260 +msgid "Stopping" +msgstr "ArrĆŖt en cours" + +#: ../../enterprise/operation/agentes/transactional_map.php:439 +msgid "Edit phases" +msgstr "Modifier les phases" + +#: ../../enterprise/operation/agentes/transactional_map.php:461 +msgid "Go to `Status` module" +msgstr "Aller au module ā€˜Ć‰tatā€™" + +#: ../../enterprise/operation/agentes/transactional_map.php:492 +msgid "Error in phases section" +msgstr "Erreur dans la section des phases" + +#: ../../enterprise/operation/agentes/transactional_map.php:512 +#: ../../enterprise/operation/agentes/manage_transmap_creation.php:340 +msgid "Create Transaction" +msgstr "CrĆ©er une transaction" + +#: ../../enterprise/operation/agentes/tag_view.php:41 +#: ../../enterprise/operation/menu.php:191 +msgid "Tag view" +msgstr "Vue des Ć©tiquettes" + +#: ../../enterprise/operation/agentes/tag_view.php:54 +#: ../../extensions/agents_modules.php:478 ../../extensions/module_groups.php:264 +#: ../../extensions/realtime_graphs.php:71 +#: ../../include/class/AgentsAlerts.class.php:742 ../../operation/heatmap.php:137 +#: ../../operation/agentes/alerts_status.php:203 +#: ../../operation/agentes/estado_agente.php:228 +#: ../../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:37 +msgid "Views" +msgstr "Vues" + +#: ../../enterprise/operation/agentes/tag_view.php:139 +#: ../../operation/agentes/status_monitor.php:500 +msgid "Monitor status" +msgstr "Ɖtat du moniteur" + +#: ../../enterprise/operation/agentes/tag_view.php:223 +#: ../../enterprise/operation/agentes/tag_view.php:225 +#: ../../operation/agentes/status_monitor.php:550 +#: ../../operation/agentes/alerts_status.functions.php:108 +msgid "Only it is show tags in use." +msgstr "Afficher seulement les Ć©tiquettes utilisĆ©es" + +#: ../../enterprise/operation/agentes/tag_view.php:229 +#: ../../operation/agentes/status_monitor.php:555 +#: ../../operation/agentes/alerts_status.functions.php:113 +msgid "No tags" +msgstr "Aucune Ć©tiquette" + +#: ../../enterprise/operation/agentes/tag_view.php:278 +#: ../../godmode/agentes/module_manager_editor_data.php:15 +#: ../../operation/agentes/status_monitor.php:621 +msgid "Data server module" +msgstr "Module de serveur de donnĆ©es" + +#: ../../enterprise/operation/agentes/tag_view.php:280 +#: ../../godmode/agentes/module_manager_editor_network.php:77 +#: ../../operation/agentes/status_monitor.php:623 +msgid "Network server module" +msgstr "Module de serveur de rĆ©seau" + +#: ../../enterprise/operation/agentes/tag_view.php:284 +#: ../../godmode/agentes/module_manager_editor_plugin.php:46 +#: ../../operation/agentes/status_monitor.php:627 +msgid "Plugin server module" +msgstr "Module du serveur plugin" + +#: ../../enterprise/operation/agentes/tag_view.php:288 +#: ../../godmode/agentes/module_manager_editor_wmi.php:33 +#: ../../operation/agentes/status_monitor.php:631 +msgid "WMI server module" +msgstr "Module serveur WMI" + +#: ../../enterprise/operation/agentes/tag_view.php:292 +#: ../../godmode/agentes/module_manager_editor_prediction.php:107 +#: ../../operation/agentes/status_monitor.php:635 +msgid "Prediction server module" +msgstr "Module de prĆ©diction du serveur" + +#: ../../enterprise/operation/agentes/tag_view.php:296 +#: ../../godmode/agentes/module_manager_editor_web.php:55 +#: ../../operation/agentes/status_monitor.php:639 +msgid "Web server module" +msgstr "Module du serveur web" + +#: ../../enterprise/operation/agentes/tag_view.php:299 +#: ../../enterprise/operation/agentes/tag_view.php:680 +#: ../../godmode/agentes/status_monitor_custom_fields.php:89 +#: ../../godmode/agentes/status_monitor_custom_fields.php:146 +#: ../../operation/agentes/status_monitor.php:646 +#: ../../operation/agentes/status_monitor.php:1323 +msgid "Server type" +msgstr "Type de serveur" + +#: ../../enterprise/operation/agentes/tag_view.php:305 +#: ../../godmode/agentes/modificar_agente.php:337 +#: ../../operation/agentes/status_monitor.php:652 +msgid "Only enabled" +msgstr "ActivĆ©s seulement" + +#: ../../enterprise/operation/agentes/tag_view.php:306 +#: ../../godmode/agentes/modificar_agente.php:336 +#: ../../operation/agentes/status_monitor.php:653 +msgid "Only disabled" +msgstr "DĆ©sactivĆ©s seulement" + +#: ../../enterprise/operation/agentes/tag_view.php:309 +#: ../../operation/agentes/status_monitor.php:656 +msgid "Show monitors..." +msgstr "Afficher les moniteurs" + +#: ../../enterprise/operation/agentes/tag_view.php:319 +#: ../../enterprise/operation/agentes/tag_view.php:679 +#: ../../godmode/agentes/status_monitor_custom_fields.php:81 +#: ../../godmode/agentes/status_monitor_custom_fields.php:144 +#: ../../operation/agentes/status_monitor.php:666 +msgid "Data type" +msgstr "Type de donnĆ©es" + +#: ../../enterprise/operation/agentes/tag_view.php:447 +#: ../../operation/agentes/agent_fields.php:37 +#: ../../operation/agentes/status_monitor.php:831 +msgid "Agent custom fields" +msgstr "Champs d'agent personnalisĆ©s" + +#: ../../enterprise/operation/agentes/tag_view.php:647 +#: ../../operation/agentes/estado_agente.php:898 +msgid "Remote config" +msgstr "Configuration Ć  distance" + +#: ../../enterprise/operation/agentes/tag_view.php:682 +#: ../../enterprise/operation/services/services.service.php:130 +#: ../../enterprise/operation/services/services.list.php:509 +#: ../../extensions/realtime_graphs.php:161 +#: ../../godmode/agentes/status_monitor_custom_fields.php:105 +#: ../../godmode/agentes/status_monitor_custom_fields.php:150 +#: ../../include/functions_visual_map_editor.php:58 +#: ../../include/ajax/module.php:983 ../../include/class/NetworkMap.class.php:2908 +#: ../../include/lib/Dashboard/Widgets/custom_graph.php:303 +#: ../../include/functions_events.php:4126 +#: ../../operation/agentes/status_monitor.php:1346 +#: ../../operation/search_modules.php:37 +msgid "Graph" +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:864 +#: ../../operation/agentes/status_monitor.php:1351 +msgid "Warn" +msgstr "Alerte" + +#: ../../enterprise/operation/agentes/tag_view.php:935 +#: ../../mobile/operation/modules.php:542 ../../mobile/operation/modules.php:605 +#: ../../include/functions_modules.php:2874 ../../include/functions_modules.php:4114 +#: ../../include/functions_events.php:70 +#: ../../operation/agentes/status_monitor.php:1572 +#: ../../operation/search_modules.php:108 ../../operation/events/events.php:656 +msgid "NOT INIT" +msgstr "NON INITIALISƉ" + +#: ../../enterprise/operation/agentes/tag_view.php:1075 +#: ../../include/functions_reporting.php:12533 +#: ../../include/functions_reporting.php:12542 +#, php-format +msgid "%d Total modules" +msgstr "%d modules au total" + +#: ../../enterprise/operation/agentes/tag_view.php:1076 +#: ../../include/functions_reporting.php:12534 +#, php-format +msgid "%d Modules in normal status" +msgstr "%d modules en Ć©tat normal" + +#: ../../enterprise/operation/agentes/tag_view.php:1077 +#: ../../include/functions_reporting.php:12535 +#, php-format +msgid "%d Modules in critical status" +msgstr "%d modules en Ć©tat critique" + +#: ../../enterprise/operation/agentes/tag_view.php:1078 +#: ../../include/functions_reporting.php:12536 +#, php-format +msgid "%d Modules in warning status" +msgstr "%d modules en Ć©tat d'alerte" + +#: ../../enterprise/operation/agentes/tag_view.php:1079 +#: ../../include/functions_reporting.php:12537 +#, php-format +msgid "%d Modules in unknown status" +msgstr "%d modules en Ć©tat inconnu" + +#: ../../enterprise/operation/agentes/tag_view.php:1080 +#: ../../include/functions_reporting.php:12538 +#, php-format +msgid "%d Modules in not init status" +msgstr "%d modules en Ć©tat non initialisĆ©s" + +#: ../../enterprise/operation/agentes/manage_transmap.php:84 +#: ../../enterprise/operation/agentes/manage_transmap_creation.php:127 +#: ../../enterprise/operation/agentes/manage_transmap_creation.php:429 +msgid "Edit main data" +msgstr "Modifier les donnĆ©es principales" + +#: ../../enterprise/operation/agentes/manage_transmap.php:109 +#: ../../enterprise/operation/agentes/manage_transmap_creation.php:152 +#: ../../enterprise/operation/agentes/manage_transmap_creation.php:454 +msgid "View Transaction" +msgstr "Voir la transaction" + +#: ../../enterprise/operation/agentes/manage_transmap.php:153 +msgid "Return to windowed mode" +msgstr "Retour en mode fenĆŖtrĆ©" + +#: ../../enterprise/operation/agentes/manage_transmap.php:182 +msgid "Transaction not found" +msgstr "Transaction non trouvĆ©e" + +#: ../../enterprise/operation/agentes/manage_transmap.php:185 +msgid "Master lock file not found (No data to show)" +msgstr "Fichier de verrouillage principal introuvable (aucune donnĆ©e Ć  afficher)" + +#: ../../enterprise/operation/agentes/manage_transmap.php:188 +msgid "Transaction is stopped" +msgstr "La transaction est arrĆŖtĆ©e" + +#: ../../enterprise/operation/agentes/manage_transmap.php:191 +msgid "Error, please check the transaction phases" +msgstr "Erreur, veuillez vĆ©rifier les phases de transaction" -#: ../../operation/agentes/ver_agente.php:1017 #: ../../enterprise/operation/agentes/ver_agente.php:72 +#: ../../operation/agentes/ver_agente.php:1017 msgid "Main IP" msgstr "Adresse IP principale" -#: ../../operation/agentes/ver_agente.php:1029 -#: ../../include/functions_events.php:4504 #: ../../enterprise/operation/agentes/ver_agente.php:78 +#: ../../include/functions_events.php:4053 +#: ../../operation/agentes/ver_agente.php:1029 msgid "Last remote contact" msgstr "Dernier contact Ć  distance" -#: ../../operation/agentes/ver_agente.php:1074 #: ../../enterprise/operation/agentes/ver_agente.php:122 +#: ../../operation/agentes/ver_agente.php:1074 msgid "Monitors down" msgstr "Moniteurs hors service" -#: ../../operation/agentes/ver_agente.php:1115 -#: ../../include/lib/Dashboard/Widgets/system_group_status.php:576 #: ../../enterprise/operation/agentes/ver_agente.php:164 #: ../../mobile/operation/groups.php:174 +#: ../../include/lib/Dashboard/Widgets/system_group_status.php:576 +#: ../../operation/agentes/ver_agente.php:1115 msgid "Alerts fired" msgstr "Alertes dĆ©clenchĆ©es" -#: ../../operation/agentes/ver_agente.php:1181 -#: ../../enterprise/tools/ipam/ipam_excel.php:133 -#: ../../enterprise/tools/ipam/ipam_ajax.php:359 -#: ../../enterprise/tools/ipam/ipam_vlan_wizard.php:53 -#: ../../enterprise/tools/ipam/ipam_vlan_wizard.php:254 -#: ../../enterprise/tools/ipam/ipam_network.php:395 -#: ../../enterprise/tools/ipam/ipam_calculator.php:62 -#: ../../enterprise/tools/ipam/ipam_supernet_config.php:546 -#: ../../enterprise/views/ncm/devices/list.php:117 -#: ../../enterprise/include/functions_ipam.php:2036 -#: ../../enterprise/godmode/servers/manage_export_form.php:99 -#: ../../enterprise/godmode/servers/manage_export.php:140 -#: ../../godmode/setup/setup_general.php:649 -msgid "Address" -msgstr "Adresse" +#: ../../enterprise/operation/agentes/ver_agente.php:258 +msgid "URL Route Analyzer" +msgstr "Analyseur dā€™itinĆ©raire dā€™URL" -#: ../../operation/agentes/ver_agente.php:1232 -msgid "Sons" -msgstr "Fils" +#: ../../enterprise/operation/agentes/ver_agente.php:274 +msgid "UX Console" +msgstr "Console UX" -#: ../../operation/agentes/ver_agente.php:1487 -#: ../../godmode/agentes/configurar_agente.php:510 -msgid "GIS data" -msgstr "DonnĆ©es GIS" +#: ../../enterprise/operation/agentes/ver_agente.php:290 +msgid "WUX Console" +msgstr "Console WUX" -#: ../../operation/agentes/ver_agente.php:1560 -#: ../../operation/search_results.php:119 ../../include/functions_reports.php:638 -#: ../../include/functions_reports.php:642 -#: ../../include/functions_reports.php:647 -#: ../../include/functions_reports.php:653 -#: ../../include/functions_reports.php:660 -#: ../../include/functions_reports.php:664 -#: ../../include/functions_reports.php:668 -#: ../../include/functions_reports.php:675 -#: ../../include/functions_reports.php:681 -#: ../../include/functions_reports.php:686 ../../include/functions_groups.php:123 -#: ../../include/functions_groups.php:187 -msgid "Graphs" -msgstr "Graphiques" +#: ../../enterprise/operation/agentes/collection_view.php:66 +msgid "No collection assigned to this agent" +msgstr "Aucune collection attribuĆ©e Ć  cet agent" -#: ../../operation/agentes/ver_agente.php:1582 -msgid "Log Viewer" -msgstr "Visionneur de journaux" +#: ../../enterprise/operation/agentes/manage_transmap_creation.php:63 +msgid "Please, reset the transaction" +msgstr "Veuillez rĆ©initialiser la transaction" -#: ../../operation/agentes/ver_agente.php:1609 ../../godmode/setup/setup.php:177 -#: ../../godmode/setup/setup.php:277 ../../godmode/menu.php:347 -msgid "eHorus" -msgstr "eHorus" +#: ../../enterprise/operation/agentes/manage_transmap_creation.php:102 +msgid "Successfully data updated" +msgstr "Mise Ć  jour des donnĆ©es rĆ©ussie" -#: ../../operation/agentes/ver_agente.php:1621 -msgid "Terminal" -msgstr "Terminal" +#: ../../enterprise/operation/agentes/manage_transmap_creation.php:103 +msgid "Could not be data updated" +msgstr "Impossible de mettre Ć  jour les donnĆ©es" -#: ../../operation/agentes/ver_agente.php:1632 -#: ../../include/lib/Dashboard/Widgets/top_n.php:286 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2439 -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:375 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2404 -msgid "Display" -msgstr "Afficher" +#: ../../enterprise/operation/agentes/manage_transmap_creation.php:160 +msgid "Create Phase" +msgstr "CrĆ©er une phase" -#: ../../operation/agentes/ver_agente.php:1643 -msgid "Processes" -msgstr "Processus" +#: ../../enterprise/operation/agentes/manage_transmap_creation.php:185 +msgid "Index" +msgstr "Index" -#: ../../operation/agentes/ver_agente.php:1665 -#: ../../enterprise/include/functions_collection.php:186 -#: ../../enterprise/meta/advanced/collections.editor.php:57 -#: ../../enterprise/meta/advanced/collections.editor.php:385 -#: ../../enterprise/meta/advanced/collections.editor.php:402 -#: ../../enterprise/meta/advanced/collections.data.php:174 -#: ../../enterprise/meta/advanced/collections.data.php:241 -#: ../../enterprise/meta/advanced/collections.data.php:265 -#: ../../enterprise/godmode/agentes/collections.editor.php:65 -#: ../../enterprise/godmode/agentes/collections.editor.php:424 -#: ../../enterprise/godmode/agentes/collections.editor.php:446 -#: ../../enterprise/godmode/agentes/collections.agents.php:50 -#: ../../enterprise/godmode/agentes/collections.data.php:127 -#: ../../enterprise/godmode/agentes/collections.data.php:281 -#: ../../enterprise/godmode/agentes/collections.data.php:334 -msgid "Files" -msgstr "Fichiers" +#: ../../enterprise/operation/agentes/manage_transmap_creation.php:188 +msgid "Dependencies" +msgstr "DĆ©pendances" +#: ../../enterprise/operation/agentes/manage_transmap_creation.php:189 +msgid "Enables" +msgstr "Active" + +#: ../../enterprise/operation/agentes/manage_transmap_creation.php:254 +msgid "Not valid dependencies field" +msgstr "Champ de DĆ©pendances non valides" + +#: ../../enterprise/operation/agentes/manage_transmap_creation.php:260 +msgid "Not valid enables field" +msgstr "Champ Active non valide" + +#: ../../enterprise/operation/agentes/manage_transmap_creation.php:367 +#: ../../enterprise/operation/agentes/manage_transmap_creation.php:493 +msgid "Loop interval" +msgstr "Intervalle de boucle" + +#: ../../enterprise/operation/agentes/manage_transmap_creation.php:462 +msgid "Transactional Map - Edit Transaction" +msgstr "Carte transactionnelle - Modifier la transaction" + +#: ../../enterprise/operation/agentes/url_route_analyzer.php:39 +msgid "No agent selected" +msgstr "Aucun agent sĆ©lectionnĆ©" + +#: ../../enterprise/operation/agentes/url_route_analyzer.php:42 +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." + +#: ../../enterprise/operation/agentes/ux_console_view.php:124 +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 +msgid "Transaction" +msgstr "Transaction" + +#: ../../enterprise/operation/agentes/ux_console_view.php:142 +#: ../../enterprise/operation/agentes/wux_console_view.php:286 +msgid "Show transaction" +msgstr "Afficher la transaction" + +#: ../../enterprise/operation/agentes/ux_console_view.php:168 +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 +msgid "Global results" +msgstr "RĆ©sultats globaux" + +#: ../../enterprise/operation/agentes/ux_console_view.php:332 +#: ../../enterprise/operation/agentes/wux_console_view.php:570 +msgid "Transaction history" +msgstr "Historique des transactions" + +#: ../../enterprise/operation/agentes/wux_console_view.php:75 +#: ../../include/lib/Dashboard/Widgets/wux_transaction.php:320 +msgid "No wux transaction selected." +msgstr "Aucune transaction WUX sĆ©lectionnĆ©e" + +#: ../../enterprise/operation/agentes/wux_console_view.php:149 +#: ../../include/lib/Dashboard/Widgets/wux_transaction.php:398 +msgid "Phase modules not found" +msgstr "Modules de phases introuvables" + +#: ../../enterprise/operation/agentes/wux_console_view.php:224 +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 +msgid "No WUX transactions found." +msgstr "Aucune transaction WUX trouvĆ©e." + +#: ../../enterprise/operation/agentes/wux_console_view.php:357 +msgid "Failed: " +msgstr "RatĆ© : " + +#: ../../enterprise/operation/agentes/wux_console_view.php:357 +#: ../../enterprise/operation/agentes/wux_console_view.php:378 +#: ../../godmode/setup/performance.php:188 ../../godmode/setup/performance.php:243 +#: ../../general/logon_ok.php:184 +msgid "ago" +msgstr "il y a" + +#: ../../enterprise/operation/agentes/wux_console_view.php:369 +#: ../../enterprise/operation/agentes/wux_console_view.php:373 +#: ../../include/functions_alerts.php:681 +msgid "Unknown status" +msgstr "Ɖtat inconnu" + +#: ../../enterprise/operation/agentes/wux_console_view.php:378 +msgid "Success: " +msgstr "SuccĆØs : " + +#: ../../enterprise/operation/agentes/wux_console_view.php:384 +msgid "Total transaction time: " +msgstr "Temps total de transaction : " + +#: ../../enterprise/operation/agentes/wux_console_view.php:398 +#, 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 +msgid "View all stats" +msgstr "Voir toutes les statistiques" + +#: ../../enterprise/operation/agentes/wux_console_view.php:595 +#: ../../operation/snmpconsole/snmp_view.php:1061 +#: ../../operation/snmpconsole/snmp_view.php:1062 ../../operation/menu.php:239 +#: ../../operation/menu.php:241 ../../operation/events/events.php:500 +#: ../../operation/events/events.php:763 +msgid "Show more" +msgstr "Afficher plus" + +#: ../../enterprise/operation/agentes/wux_console_view.php:611 +msgid "Invalid transaction." +msgstr "Transaction invalide." + +#: ../../enterprise/operation/log/elasticsearch_interface.php:39 +#: ../../enterprise/operation/log/log_viewer.php:391 +#: ../../enterprise/operation/menu.php:211 +msgid "Elasticsearch Interface" +msgstr "Interface Elasticsearch" + +#: ../../enterprise/operation/log/elasticsearch_interface.php:49 +msgid "" +"This is a view to interface with Elasticsearch directly from WEB console. \n" +"Please note that you can damage your Elasticsearch if you don`t know exactly what " +"are you are doing. \n" +"This view is intended to be used only by users with a knowledge of Elasticsearch" +msgstr "" +"Il sā€™agit dā€™une vue pour sā€™interfacer avec Elasticsearch directement Ć  partir de " +"la console WEB \n" +"Veuillez noter que vous pouvez endommager votre Elasticsearch si vous ne savez " +"pas exactement ce que vous faites. \n" +"Cette vue est destinĆ©e Ć  ĆŖtre utilisĆ©e uniquement par les utilisateurs ayant une " +"connaissance dā€™Elasticsearch" + +#: ../../enterprise/operation/log/log_viewer.php:405 +#: ../../enterprise/operation/log/log_viewer.php:424 +#: ../../enterprise/operation/log/log_viewer.php:435 +msgid "Log sources" +msgstr "Sources de journaux" + +#: ../../enterprise/operation/log/log_viewer.php:478 +msgid "All words" +msgstr "Tous les mots" + +#: ../../enterprise/operation/log/log_viewer.php:479 +msgid "Any word" +msgstr "N'importe quel mot" + +#: ../../enterprise/operation/log/log_viewer.php:482 +msgid "Search mode" +msgstr "Mode recherche" + +#: ../../enterprise/operation/log/log_viewer.php:529 +msgid "Full context" +msgstr "Contexte complet" + +#: ../../enterprise/operation/log/log_viewer.php:552 +#: ../../operation/network/network_report.php:102 +#: ../../operation/network/network_usage_map.php:75 +#: ../../operation/netflow/nf_live_view.php:271 +msgid "Start date" +msgstr "Date du dĆ©marrage" + +#: ../../enterprise/operation/log/log_viewer.php:579 +#: ../../operation/agentes/exportdata.php:347 +#: ../../operation/network/network_report.php:126 +#: ../../operation/network/network_usage_map.php:99 +#: ../../operation/netflow/nf_live_view.php:295 +msgid "End date" +msgstr "Date de fin" + +#: ../../enterprise/operation/log/log_viewer.php:667 +#: ../../enterprise/operation/log/log_viewer.php:668 +msgid "Edit sources" +msgstr "Modifier les sources" + +#: ../../enterprise/operation/log/log_viewer.php:711 +msgid "Show log entries" +msgstr "Afficher les entrĆ©es de journal" + +#: ../../enterprise/operation/log/log_viewer.php:712 +msgid "Graph log results" +msgstr "RĆ©sultats du journal graphique" + +#: ../../enterprise/operation/log/log_viewer.php:714 +msgid "Display mode" +msgstr "Mode d'affichage" + +#: ../../enterprise/operation/log/log_viewer.php:727 +msgid "Use capture model" +msgstr "Utiliser le modĆØle de capture" + +#: ../../enterprise/operation/log/log_viewer.php:757 +msgid "Create new model" +msgstr "CrĆ©ez un nouveau modĆØle" + +#: ../../enterprise/operation/log/log_viewer.php:761 +#: ../../godmode/reporting/graph_builder.main.php:220 +msgid "Horizontal bars" +msgstr "Barres horizontales" + +#: ../../enterprise/operation/log/log_viewer.php:762 +#: ../../godmode/reporting/graph_builder.main.php:221 +msgid "Vertical bars" +msgstr "Barres verticales" + +#: ../../enterprise/operation/log/log_viewer.php:764 +msgid "Graph type" +msgstr "Type de graphique" + +#: ../../enterprise/operation/log/log_viewer.php:779 +msgid "Advanced options " +msgstr "Options avancĆ©es" + +#: ../../enterprise/operation/log/log_viewer.php:899 +msgid "" +"The maximum limit of rows has been exceeded. Please enter an email to send the " +"csv file" +msgstr "" +"La limite maximale de lignes a Ć©tĆ© dĆ©passĆ©e. Veuillez entrer un e-mail pour " +"envoyer le fichier csv" + +#: ../../enterprise/operation/log/log_viewer.php:901 +msgid "e-mail address" +msgstr "adresse e-mail" + +#: ../../enterprise/operation/log/log_viewer.php:904 +msgid "" +"WARNING: If your email size exceeds your mail attachment size limit, the file " +"will be saved in the local attachment folder." +msgstr "" +"AVERTISSEMENT : Si la taille de votre e-mail dĆ©passe la limite de taille de votre " +"attachement, le fichier sera enregistrĆ© dans le dossier des attachements local." + +#: ../../enterprise/operation/log/log_viewer.php:1022 +msgid "The start date cannot be greater than the end date" +msgstr "La date de dĆ©but ne peut pas ĆŖtre supĆ©rieure Ć  la date de fin." + +#: ../../enterprise/operation/log/log_viewer.php:1450 +msgid "Add new capture model" +msgstr "Ajouter un nouveau modĆØle de capture" + +#: ../../enterprise/operation/log/log_viewer.php:1453 +msgid "Edit capture model" +msgstr "Modifier le modĆØle de capture" + +#: ../../enterprise/operation/log/log_viewer.php:1536 +msgid "Error create new model" +msgstr "Erreur lors de la crĆ©ation dā€™un nouveau modĆØle" + +#: ../../enterprise/operation/log/log_viewer.php:1563 +msgid "Error delete model" +msgstr "Erreur en supprimant le modĆØle" + +#: ../../enterprise/operation/log/log_viewer.php:1609 +msgid "Error update model" +msgstr "Erreur lors de la mise Ć  jour du modĆØle" + +#: ../../enterprise/operation/menu.php:32 +msgid "Cluster View" +msgstr "Vue de grappe" + +#: ../../enterprise/operation/menu.php:61 #: ../../operation/agentes/ver_agente.php:1683 #: ../../operation/agentes/ver_agente.php:1882 -#: ../../enterprise/operation/menu.php:61 msgid "SAP view" msgstr "Vue SAP" -#: ../../operation/agentes/ver_agente.php:1695 ../../godmode/setup/setup.php:224 -#: ../../godmode/setup/setup.php:311 ../../godmode/menu.php:361 -msgid "External Tools" -msgstr "Outils externes" +#: ../../enterprise/operation/menu.php:143 +msgid "Transactional map" +msgstr "Carte transactionnelle" -#: ../../operation/users/user_edit.php:31 -#: ../../godmode/users/configure_user.php:244 -msgid "User detail editor" -msgstr "Ɖditeur d'information sur l'utilisateur" +#: ../../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" -#: ../../operation/users/user_edit.php:153 -msgid "Current password of user is required to perform password change" +#: ../../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:2174 +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 +msgid "Service Map" +msgstr "Carte de service" + +#: ../../enterprise/operation/services/services.service.php:90 +msgid "No Services" +msgstr "Aucun service" + +#: ../../enterprise/operation/services/services.service.php:203 +#: ../../enterprise/operation/services/services.list.php:586 +msgid "SLA graph" +msgstr "Graphique SLA" + +#: ../../enterprise/operation/services/services.service.php:227 +msgid "List of elements" +msgstr "Liste des Ć©lĆ©ments" + +#: ../../enterprise/operation/services/services.php:197 +msgid "Service table view" +msgstr "Vue de la table de service" + +#: ../../enterprise/operation/services/services.php:212 +msgid "Service tree view" +msgstr "Arborescence des services" + +#: ../../enterprise/operation/services/services.php:229 +msgid "Bulk creation" +msgstr "CrĆ©ation en bloc" + +#: ../../enterprise/operation/services/services.service_map.php:116 +msgid "Show tree" +msgstr "Afficher lā€™arbre" + +#: ../../enterprise/operation/services/services.service_map.php:130 +msgid "Show sunburst" +msgstr "Afficher sunburst" + +#: ../../enterprise/operation/services/services.service_map.php:139 +#: ../../extensions/agents_modules.php:947 ../../extensions/module_groups.php:391 +#: ../../godmode/snmpconsole/snmp_alert.php:1518 +#: ../../include/functions_reporting_html.php:2068 +#: ../../operation/snmpconsole/snmp_view.php:1272 +msgid "Legend" +msgstr "LĆ©gende" + +#: ../../enterprise/operation/services/services.treeview_services.php:117 +msgid "Search service" +msgstr "Chercher service" + +#: ../../enterprise/operation/services/services.treeview_services.php:119 +#: ../../enterprise/operation/services/services.list.php:284 +#: ../../enterprise/operation/services/services.table_services.php:206 +msgid "Show only favourites" +msgstr "Afficher uniquement les favoris" + +#: ../../enterprise/operation/services/services.treeview_services.php:157 +msgid "No favourite services defined." +msgstr "Aucun service favori dĆ©fini." + +#: ../../enterprise/operation/services/services.treeview_services.php:159 +msgid "No services matched." +msgstr "Aucun service correspond." + +#: ../../enterprise/operation/services/services.treeview_services.php:161 +#: ../../enterprise/operation/services/services.list.php:447 +#: ../../enterprise/operation/services/services.list.php:456 +#: ../../enterprise/operation/services/services.table_services.php:359 +#: ../../enterprise/operation/services/services.table_services.php:365 +msgid "No services defined." +msgstr "Aucun service dĆ©fini" + +#: ../../enterprise/operation/services/services.treeview_services.php:189 +#: ../../enterprise/operation/services/services.list.php:719 +#: ../../enterprise/operation/services/services.table_services.php:450 +msgid "Create Service" +msgstr "CrĆ©er un service" + +#: ../../enterprise/operation/services/services.treeview_services.php:256 +#: ../../godmode/groups/group_list.php:1035 +msgid "Found groups" +msgstr "Groupes trouvĆ©s" + +#: ../../enterprise/operation/services/services.treeview_services.php:350 +#: ../../operation/tree.php:539 ../../operation/agentes/status_monitor.php:2055 +#: ../../operation/agentes/estado_monitores.php:421 +msgid "Module: " +msgstr "Module : " + +#: ../../enterprise/operation/services/services.list.php:62 +msgid "List of services" +msgstr "Liste des services" + +#: ../../enterprise/operation/services/services.list.php:100 +msgid "Services successfully deleted" +msgstr "Services supprimĆ©s correctement" + +#: ../../enterprise/operation/services/services.list.php:101 +#, php-format +msgid "Error while deleting services: %s" +msgstr "Erreur lors de la suppression de services : %s" + +#: ../../enterprise/operation/services/services.list.php:118 +msgid "Service deleted successfully" +msgstr "Service supprimĆ© correctement" + +#: ../../enterprise/operation/services/services.list.php:119 +#, php-format +msgid "Error deleting service %s" +msgstr "Erreur lors de la suppression du %s de service" + +#: ../../enterprise/operation/services/services.list.php:127 +msgid "Service forced successfully" +msgstr "Service forcĆ© correctement" + +#: ../../enterprise/operation/services/services.list.php:128 +msgid "Error service forced" +msgstr "Erreur ; service non forcĆ©" + +#: ../../enterprise/operation/services/services.list.php:298 +#: ../../enterprise/operation/services/services.table_services.php:220 +msgid "Show only root services" +msgstr "Afficher uniquement les services racine" + +#: ../../enterprise/operation/services/services.list.php:590 +msgid "Status graph" +msgstr "Graphique dā€™Ć©tat" + +#: ../../enterprise/operation/services/services.list.php:625 +#: ../../operation/heatmap.php:70 ../../operation/heatmap.php:279 +#: ../../operation/agentes/pandora_networkmap.php:800 +msgid "Config" +msgstr "Configuration" + +#: ../../enterprise/operation/services/services.table_services.php:45 +#: ../../godmode/groups/group_list.php:355 +msgid "Table view" +msgstr "Vue de la table" + +#: ../../enterprise/tools/ipam/ipam.php:52 ../../extensions/files_repo.php:122 +#: ../../extensions/files_repo.php:210 +msgid "Operation view" +msgstr "Afficher opĆ©ration" + +#: ../../enterprise/tools/ipam/ipam.php:78 ../../enterprise/tools/ipam/ipam.php:356 +msgid "Subnetworks calculator" +msgstr "Calculatrice de sous-rĆ©seaux" + +#: ../../enterprise/tools/ipam/ipam.php:96 +msgid "Vlan config" +msgstr "Configuration Vlan" + +#: ../../enterprise/tools/ipam/ipam.php:114 +msgid "Vlan wizard" +msgstr "Assistant Vlan" + +#: ../../enterprise/tools/ipam/ipam.php:133 +msgid "Supernet treeview" +msgstr "Vue d'arbre de super rĆ©seau" + +#: ../../enterprise/tools/ipam/ipam.php:152 +msgid "Network locations" +msgstr "Emplacements rĆ©seau" + +#: ../../enterprise/tools/ipam/ipam.php:196 +msgid "Vlan statistics" +msgstr "Statistiques de la VLan" + +#: ../../enterprise/tools/ipam/ipam.php:216 ../../enterprise/tools/ipam/ipam.php:381 +msgid "Supernet config" +msgstr "Configuration de super-rĆ©seau" + +#: ../../enterprise/tools/ipam/ipam.php:237 ../../enterprise/tools/ipam/ipam.php:396 +msgid "Supernet statistics" +msgstr "Statistiques de super-rĆ©seau" + +#: ../../enterprise/tools/ipam/ipam.php:257 +msgid "Supernet map" +msgstr "Carte super-rĆ©seau" + +#: ../../enterprise/tools/ipam/ipam.php:280 +#: ../../enterprise/tools/ipam/ipam_list.php:685 +msgid "Manage addresses" +msgstr "GĆ©rer les adresses" + +#: ../../enterprise/tools/ipam/ipam.php:320 +#: ../../enterprise/tools/ipam/ipam_list.php:694 +msgid "Addresses view" +msgstr "Vue des adresses" + +#: ../../enterprise/tools/ipam/ipam.php:352 +msgid "/tools/ipam/ipam_network.php" +msgstr "/tools/ipam/ipam_network.php" + +#: ../../enterprise/tools/ipam/ipam.php:366 +msgid "VLAN Config" +msgstr "Configuration VLAN" + +#: ../../enterprise/tools/ipam/ipam.php:371 +msgid "VLAN Wizard" +msgstr "Assistant VLAN" + +#: ../../enterprise/tools/ipam/ipam.php:376 +msgid "VLAN Statistics" +msgstr "Statistiques VLAN" + +#: ../../enterprise/tools/ipam/ipam.php:386 +msgid "Network location config" +msgstr "Configuration de lā€™emplacement rĆ©seau" + +#: ../../enterprise/tools/ipam/ipam.php:391 +msgid "Supernet wizard" +msgstr "Assistante super-rĆ©seau" + +#: ../../enterprise/tools/ipam/ipam.php:401 +msgid "Supernet Map" +msgstr "Carte super-rĆ©seau" + +#: ../../enterprise/tools/ipam/ipam.php:406 +msgid "Supernet Treeview" +msgstr "Vue d'arbre super-rĆ©seau" + +#: ../../enterprise/tools/ipam/ipam.php:432 +msgid "Operation View" +msgstr "Vue d'opĆ©ration" + +#: ../../enterprise/tools/ipam/ipam.php:449 ../../godmode/menu.php:388 +#: ../../godmode/setup/file_manager.php:56 +msgid "Admin tools" +msgstr "Outils d'administration" + +#: ../../enterprise/tools/ipam/ipam_sites.php:70 +msgid "Successfully saved" +msgstr "EnregistrĆ© correctement" + +#: ../../enterprise/tools/ipam/ipam_sites.php:76 +#, php-format +msgid "Failed to save site %s" +msgstr "Impossible dā€™enregistrer site %s" + +#: ../../enterprise/tools/ipam/ipam_sites.php:132 +#, php-format +msgid "Failed to delete site %s" +msgstr "Impossible de supprimer site %s" + +#: ../../enterprise/tools/ipam/ipam_network.php:163 +msgid "No addresses found on this network" +msgstr "Aucune adresse trouvĆ©e sur ce rĆ©seau" + +#: ../../enterprise/tools/ipam/ipam_network.php:314 +msgid "Edit address" +msgstr "Modifier l'adresse" + +#: ../../enterprise/tools/ipam/ipam_network.php:327 +msgid "Disabled address" +msgstr "Adresse dĆ©sactivĆ©e" + +#: ../../enterprise/tools/ipam/ipam_network.php:327 +msgid "This address will not be updated by the server" +msgstr "Cette adresse ne sera pas mise Ć  jour par le serveur" + +#: ../../enterprise/tools/ipam/ipam_network.php:423 +#: ../../godmode/wizards/DiscoveryTaskList.class.php:1396 +msgid "Not alive" +msgstr "Inactif" + +#: ../../enterprise/tools/ipam/ipam_network.php:454 +#: ../../enterprise/tools/ipam/ipam_network.php:533 +#: ../../enterprise/tools/ipam/ipam_network.php:575 +msgid "Change to automatic mode" +msgstr "Changer au mode automatique" + +#: ../../enterprise/tools/ipam/ipam_network.php:463 +#: ../../enterprise/tools/ipam/ipam_network.php:542 +#: ../../enterprise/tools/ipam/ipam_network.php:584 +msgid "Change to manual mode" +msgstr "Changer au mode manuel" + +#: ../../enterprise/tools/ipam/ipam_network.php:663 +msgid "Add comments" +msgstr "Ajouter des commentaires" + +#: ../../enterprise/tools/ipam/ipam_network.php:691 +msgid "Update agent address" +msgstr "Mise Ć  jour de l'adresse de l'agent" + +#: ../../enterprise/tools/ipam/ipam_network.php:857 +msgid "Please, uncheck auto option to set manual agent." +msgstr "Veuillez dĆ©cocher l'option automatique pour rĆ©gler l'agent manuellement" + +#: ../../enterprise/tools/ipam/ipam_supernet_config.php:52 +#: ../../enterprise/tools/ipam/ipam_supernet_config.php:100 +msgid "There is no supernet name. Please introduce a name" +msgstr "Il n'y a pas des noms de super-rĆ©seau. Entrez un nom" + +#: ../../enterprise/tools/ipam/ipam_supernet_config.php:56 +#: ../../enterprise/tools/ipam/ipam_supernet_config.php:104 +msgid "There is no supernet address. Please introduce a address" +msgstr "Il n'y a pas d'adresse super-rĆ©seau. Entrez une adresse" + +#: ../../enterprise/tools/ipam/ipam_supernet_config.php:60 +#: ../../enterprise/tools/ipam/ipam_supernet_config.php:108 +msgid "There is no supernet mask. Please introduce a mask" +msgstr "Il n'y a pas de masque de super-rĆ©seau. Veuillez entrer une maque" + +#: ../../enterprise/tools/ipam/ipam_supernet_config.php:64 +msgid "There is no valid address. Please introduce a address" +msgstr "Il n'y a pas d'adresse valide. Veuillez entrer une adresse" + +#: ../../enterprise/tools/ipam/ipam_supernet_config.php:68 +msgid "There is no valid mask. Please introduce a mask" +msgstr "Il n'y a pas de masque valide. Veuillez entrer une masque" + +#: ../../enterprise/tools/ipam/ipam_supernet_config.php:83 +msgid "Supernet created" +msgstr "Super-rĆ©seau crĆ©e" + +#: ../../enterprise/tools/ipam/ipam_supernet_config.php:85 +msgid "Supernet not created" +msgstr "Super-rĆ©seau non crĆ©e" + +#: ../../enterprise/tools/ipam/ipam_supernet_config.php:89 +#: ../../enterprise/tools/ipam/ipam_supernet_config.php:135 +msgid "Supernet name exists in bbdd, please select other name" msgstr "" -"Le mot de passe actuel de l'utilisateur est requis pour effectuer le " -"changement de mot de passe" +"Le nom de super-rĆ©seau existe dans la base de donnĆ©es, sĆ©lectionnez un autre nom" -#: ../../operation/users/user_edit.php:155 -msgid "Current password of user is not correct" -msgstr "Votre mot de passe actuel est incorrect." +#: ../../enterprise/tools/ipam/ipam_supernet_config.php:129 +msgid "Supernet updated" +msgstr "Super-rĆ©seau mise Ć  jour" -#: ../../operation/users/user_edit.php:159 +#: ../../enterprise/tools/ipam/ipam_supernet_config.php:131 +msgid "Supernet not updated" +msgstr "Super-rĆ©seau non mise Ć  jour" + +#: ../../enterprise/tools/ipam/ipam_supernet_config.php:156 +msgid "Could not be deleted, please select supernet" +msgstr "Il n'a pas Ć©tĆ© possible de l'Ć©liminer, sĆ©lectionnez un super-rĆ©seau" + +#: ../../enterprise/tools/ipam/ipam_supernet_config.php:227 +#: ../../enterprise/tools/ipam/ipam_supernet_config.php:327 +#: ../../enterprise/tools/ipam/ipam_list.php:383 +#: ../../enterprise/tools/ipam/ipam_action.php:121 +#: ../../enterprise/tools/ipam/ipam_action.php:240 +msgid "The location is not filled, please add a location." +msgstr "L'emplacement n'a pas Ć©tĆ© indiquĆ©. Veuillez ajouter un emplacement." + +#: ../../enterprise/tools/ipam/ipam_supernet_config.php:395 +#, php-format +msgid "Successfully created %d networks" +msgstr "%d rĆ©seaux ajoutĆ©s correctement" + +#: ../../enterprise/tools/ipam/ipam_supernet_config.php:399 +msgid "Failed to create networks" +msgstr "Impossible de crĆ©er des rĆ©seaux" + +#: ../../enterprise/tools/ipam/ipam_supernet_config.php:402 +msgid "Entered range address is not valid" +msgstr "Lā€™adresse de plage saisie nā€™est pas valide" + +#: ../../enterprise/tools/ipam/ipam_supernet_config.php:429 +msgid "Network name cannot be repeated in this supernet" +msgstr "Le nom du rĆ©seau ne peut pas ĆŖtre rĆ©pĆ©tĆ© dans ce super-rĆ©seau" + +#: ../../enterprise/tools/ipam/ipam_supernet_config.php:436 +#: ../../enterprise/tools/ipam/ipam_vlan_config.php:170 +msgid "Successfully added networks" +msgstr "RĆ©seaux ajoutĆ©s correctement" + +#: ../../enterprise/tools/ipam/ipam_supernet_config.php:440 +#: ../../enterprise/tools/ipam/ipam_vlan_config.php:174 +msgid "Network could not be added" +msgstr "Le rĆ©seau n'a pas pu ĆŖtre ajoutĆ©" + +#: ../../enterprise/tools/ipam/ipam_supernet_config.php:445 +msgid "No networks to be added to supernet" +msgstr "Aucun rĆ©seau Ć  ajouter Ć  supernet" + +#: ../../enterprise/tools/ipam/ipam_supernet_config.php:450 +msgid "supernet name could not be added, please select supernet" +msgstr "le nom du super-rĆ©seau n'a pas pu ĆŖtre ajoutĆ©, sĆ©lectionnez super-rĆ©seau" + +#: ../../enterprise/tools/ipam/ipam_supernet_config.php:479 +msgid "Could not be deleted, please select supernet and network" +msgstr "Il n'a pas pu ĆŖtre Ć©liminĆ©, sĆ©lectionnez le super-rĆ©seau et le rĆ©seau" + +#: ../../enterprise/tools/ipam/ipam_supernet_config.php:486 +#, php-format +msgid "Failed to delete %d/%d networks from supernet" +msgstr "Impossible de supprimer les rĆ©seaux %d/%d de supernet" + +#: ../../enterprise/tools/ipam/ipam_supernet_config.php:490 +msgid "Successfully deleted network from supernet" +msgstr "RĆ©seau supprimĆ© avec succĆØs du supernet" + +#: ../../enterprise/tools/ipam/ipam_supernet_config.php:492 +#, php-format +msgid "Successfully deleted %d/%d networks from supernet" +msgstr "Suppression rĆ©ussie des rĆ©seaux %d/%d de supernet" + +#: ../../enterprise/tools/ipam/ipam_supernet_config.php:495 +#: ../../enterprise/tools/ipam/ipam_vlan_config.php:228 +msgid "No items selected" +msgstr "Aucun Ć©lĆ©ment sĆ©lectionnĆ©" + +#: ../../enterprise/tools/ipam/ipam_supernet_config.php:564 +#: ../../enterprise/tools/ipam/ipam_excel.php:134 +#: ../../enterprise/tools/ipam/ipam_calculator.php:84 +msgid "Mask" +msgstr "Masque" + +#: ../../enterprise/tools/ipam/ipam_supernet_config.php:582 +msgid "Subnetting Mask" +msgstr "Masque de sous-rĆ©seau" + +#: ../../enterprise/tools/ipam/ipam_supernet_config.php:605 +#: ../../enterprise/tools/ipam/ipam_supernet_config.php:777 +#: ../../enterprise/tools/ipam/ipam_supernet_config.php:1064 +#: ../../enterprise/tools/ipam/ipam_list.php:129 +#: ../../enterprise/tools/ipam/ipam_list.php:595 +msgid "Site" +msgstr "Site" + +#: ../../enterprise/tools/ipam/ipam_supernet_config.php:640 +#: ../../enterprise/tools/ipam/ipam_supernet_config.php:1313 +msgid "Update Supernet" +msgstr "Mettre Ć  jour le super-rĆ©seau" + +#: ../../enterprise/tools/ipam/ipam_supernet_config.php:647 +#: ../../enterprise/tools/ipam/ipam_supernet_config.php:1451 +msgid "New Supernet" +msgstr "Nouveau super-rĆ©seau" + +#: ../../enterprise/tools/ipam/ipam_supernet_config.php:688 +#, php-format +msgid "%s supernets created" +msgstr "Super-rĆ©seaux %s crĆ©Ć©s" + +#: ../../enterprise/tools/ipam/ipam_supernet_config.php:690 +msgid "supernets creation failed" +msgstr "La crĆ©ation de super-rĆ©seaux a Ć©chouĆ©" + +#: ../../enterprise/tools/ipam/ipam_supernet_config.php:763 +#: ../../enterprise/tools/ipam/ipam_list.php:93 +msgid "Search filter by name, network address or description" +msgstr "Chercher de filtre par nom, adresse rĆ©seau ou description" + +#: ../../enterprise/tools/ipam/ipam_supernet_config.php:790 +msgid "Min. networks range" +msgstr "Ɖventail de rĆ©seaux minimale" + +#: ../../enterprise/tools/ipam/ipam_supernet_config.php:793 +msgid "Max. networks range" +msgstr "Ɖventail de rĆ©seaux maximale" + +#: ../../enterprise/tools/ipam/ipam_supernet_config.php:1060 +msgid "Address / Masks" +msgstr "Adresse / Masques" + +#: ../../enterprise/tools/ipam/ipam_supernet_config.php:1062 +msgid "Subnetting mask" +msgstr "Masque de sous-rĆ©seau" + +#: ../../enterprise/tools/ipam/ipam_supernet_config.php:1063 +msgid "Networks range" +msgstr "Ɖventail de rĆ©seaux" + +#: ../../enterprise/tools/ipam/ipam_supernet_config.php:1071 +#: ../../enterprise/tools/ipam/ipam_vlan_config.php:688 +msgid "Networks" +msgstr "RĆ©seaux" + +#: ../../enterprise/tools/ipam/ipam_supernet_config.php:1237 +msgid "Delete network in supernet" +msgstr "Ɖliminer rĆ©seau du super-rĆ©seau" + +#: ../../enterprise/tools/ipam/ipam_supernet_config.php:1286 +msgid "Manage networks in supernet" +msgstr "GĆ©rer les rĆ©seaux dans supernet" + +#: ../../enterprise/tools/ipam/ipam_supernet_config.php:1320 +msgid "Add network to supernet" +msgstr "Ajouter du rĆ©seau au super-rĆ©seau" + +#: ../../enterprise/tools/ipam/ipam_supernet_config.php:1323 +msgid "Next network" +msgstr "RĆ©seau suivant" + +#: ../../enterprise/tools/ipam/ipam_supernet_config.php:1355 +msgid "Delete Supernet" +msgstr "Ɖliminer du super-rĆ©seau" + +#: ../../enterprise/tools/ipam/ipam_supernet_config.php:1377 +#: ../../enterprise/tools/ipam/ipam_vlan_config.php:871 +#: ../../include/functions_visual_map_editor.php:793 +#: ../../include/rest-api/models/VisualConsole/Items/Group.php:562 +msgid "Show statistics" +msgstr "Afficher les statistiques" + +#: ../../enterprise/tools/ipam/ipam_supernet_config.php:1444 +msgid "No Supernet found" +msgstr "Aucune super-rĆ©seau trouvĆ©" + +#: ../../enterprise/tools/ipam/ipam_list.php:151 +#: ../../enterprise/tools/ipam/ipam_list.php:602 +#: ../../enterprise/tools/ipam/ipam_vlan_wizard.php:58 +#: ../../enterprise/tools/ipam/ipam_vlan_wizard.php:62 +#: ../../enterprise/tools/ipam/ipam_vlan_wizard.php:67 +#: ../../enterprise/tools/ipam/ipam_vlan_network.php:39 +#: ../../enterprise/tools/ipam/ipam_vlan_config.php:339 +msgid "Vlan" +msgstr "Vlan" + +#: ../../enterprise/tools/ipam/ipam_list.php:400 +#: ../../enterprise/tools/ipam/ipam_action.php:138 +#: ../../enterprise/tools/ipam/ipam_action.php:270 +msgid "Incorrect format in Subnet field" +msgstr "Format incorrect dans le champ de sous-rĆ©seau" + +#: ../../enterprise/tools/ipam/ipam_list.php:425 +#: ../../enterprise/tools/ipam/ipam_action.php:219 +#, php-format +msgid "Could not be created: %s" +msgstr "N'a pas pu ĆŖtre crĆ©Ć© : %s" + +#: ../../enterprise/tools/ipam/ipam_list.php:434 +#, php-format +msgid "%s networks created" +msgstr "RĆ©seaux %s crĆ©es" + +#: ../../enterprise/tools/ipam/ipam_list.php:436 +msgid "Networks creation failed" +msgstr "La crĆ©ation de rĆ©seaux a Ć©chouĆ©" + +#: ../../enterprise/tools/ipam/ipam_list.php:501 +msgid "No networks found" +msgstr "Aucun rĆ©seau trouvĆ©" + +#: ../../enterprise/tools/ipam/ipam_list.php:625 +msgid "IPs" +msgstr "Adresses IP" + +#: ../../enterprise/tools/ipam/ipam_list.php:708 +msgid "Edit network" +msgstr "Ɖditer le rĆ©seau" + +#: ../../enterprise/tools/ipam/ipam_list.php:719 +msgid "Delete network" +msgstr "Supprimer le rĆ©seau" + +#: ../../enterprise/tools/ipam/ipam_vlan_wizard.php:53 +#: ../../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:1410 +msgid "Interfaces" +msgstr "Interfaces" + +#: ../../enterprise/tools/ipam/ipam_vlan_wizard.php:58 +msgid "succesfully created" +msgstr "crĆ©Ć© correctement" + +#: ../../enterprise/tools/ipam/ipam_vlan_wizard.php:62 +msgid "not created" +msgstr "non crĆ©Ć©" + +#: ../../enterprise/tools/ipam/ipam_vlan_wizard.php:67 +msgid "exists in bbdd, please select other name" +msgstr "Il existe dans la base de donnĆ©es, sĆ©lectionnez un autre nom" + +#: ../../enterprise/tools/ipam/ipam_vlan_wizard.php:72 +msgid "please, select VLAN to be created" +msgstr "Veuillez sĆ©lectionner le VLAN Ć  creer" + +#: ../../enterprise/tools/ipam/ipam_vlan_wizard.php:231 +msgid "Please enter adress, for search vlans" +msgstr "Veuillez entrer l'adresse pour chercher des vlans" + +#: ../../enterprise/tools/ipam/ipam_vlan_wizard.php:263 +#: ../../godmode/modules/manage_network_components_form_network.php:82 +#: ../../godmode/agentes/module_manager_editor_network.php:149 +#: ../../include/class/AgentWizard.class.php:712 +msgid "SNMP community" +msgstr "CommunautĆ© SNMP" + +#: ../../enterprise/tools/ipam/ipam_vlan_wizard.php:337 +msgid "privacy pass" +msgstr "Connexion privĆ©e" + +#: ../../enterprise/tools/ipam/ipam_vlan_wizard.php:374 +#: ../../godmode/wizards/HostDevices.class.php:1248 +msgid "Context" +msgstr "Contexte" + +#: ../../enterprise/tools/ipam/ipam_vlan_wizard.php:397 +msgid "Run" +msgstr "ExĆ©cuter" + +#: ../../enterprise/tools/ipam/ipam_vlan_wizard.php:409 +msgid "Vlan name" +msgstr "Nom de vlan" + +#: ../../enterprise/tools/ipam/ipam_vlan_wizard.php:424 +#: ../../enterprise/tools/ipam/ipam_ajax.php:489 +msgid "Created" +msgstr "CrĆ©Ć©" + +#: ../../enterprise/tools/ipam/ipam_vlan_wizard.php:459 +#: ../../enterprise/tools/ipam/ipam_vlan_config.php:906 +msgid "No vlans found" +msgstr "Il n'a pas de vlans trouvĆ©s" + +#: ../../enterprise/tools/ipam/ipam_action.php:198 +#, php-format +msgid "Network could not be added to supernet %s (%s)" +msgstr "Le rĆ©seau n'a pas pu ĆŖtre ajoutĆ© au super-rĆ©seau %s (%s)" + +#: ../../enterprise/tools/ipam/ipam_action.php:202 +#, php-format +msgid "Network added to supernet %s (%s)" +msgstr "RĆ©seau ajoutĆ© au super-rĆ©seau %s (%s)" + +#: ../../enterprise/tools/ipam/ipam_action.php:207 +#, php-format +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:374 +#: ../../operation/agentes/pandora_networkmap.view.php:1613 +msgid "Could not be updated." +msgstr "Erreur de mise Ć  jour" + +#: ../../enterprise/tools/ipam/ipam_action.php:380 +#: ../../update_manager_client/views/offline.php:78 +#: ../../update_manager_client/views/online.php:94 +msgid "Successfully updated." +msgstr "Mis Ć  jour correctement" + +#: ../../enterprise/tools/ipam/ipam_action.php:385 +#: ../../include/functions_reporting.php:2712 +msgid "No changes found." +msgstr "Aucun changement retrouvĆ©." + +#: ../../enterprise/tools/ipam/ipam_network_location_config.php:40 +#: ../../godmode/modules/manage_nc_groups.php:64 +msgid "Could not be created. Blank name" +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:221 +msgid "Not updated. Error updating data" +msgstr "Erreur de mise Ć  jour des donnĆ©es" + +#: ../../enterprise/tools/ipam/ipam_network_location_config.php:110 +#, php-format +msgid "%d/%d items deleted" +msgstr "%d/%d Ć©lĆ©ments supprimĆ©s" + +#: ../../enterprise/tools/ipam/ipam_network_location_config.php:112 +msgid "Failed to delete items" +msgstr "Impossible de supprimer des Ć©lĆ©ments" + +#: ../../enterprise/tools/ipam/ipam_network_location_config.php:167 +msgid "Search filter by name or network address" +msgstr "Chercher de filtre par nom ou adresse rĆ©seau" + +#: ../../enterprise/tools/ipam/ipam_network_location_config.php:273 +msgid "No locations found" +msgstr "Aucune destination trouvĆ©e" + +#: ../../enterprise/tools/ipam/ipam_network_location_config.php:309 +msgid "There are no defined network locations" +msgstr "Il nā€™y a pas dā€™emplacements rĆ©seau dĆ©finis" + +#: ../../enterprise/tools/ipam/ipam_excel.php:135 +msgid "Subneting Mask" +msgstr "Masque de sous-rĆ©seau" + +#: ../../enterprise/tools/ipam/ipam_ajax.php:285 +msgid "There is not an available IP." +msgstr "Aucune adresse IP disponible" + +#: ../../enterprise/tools/ipam/ipam_ajax.php:287 +msgid "Next available IP Address is:" +msgstr "La suivante adresse IP disponible est :" + +#: ../../enterprise/tools/ipam/ipam_ajax.php:313 +msgid "Reserve this IP now" +msgstr "RĆ©server cette adresse IP maintenant" + +#: ../../enterprise/tools/ipam/ipam_ajax.php:329 +msgid "Manage this IP now" +msgstr "GĆ©rer cette adresse IP maintenant" + +#: ../../enterprise/tools/ipam/ipam_ajax.php:374 +msgid "Operating system" +msgstr "SystĆØme d'exploitation" + +#: ../../enterprise/tools/ipam/ipam_ajax.php:384 +msgid "This agent has other IPs" +msgstr "Cet agent a d'autres adresses IP." + +#: ../../enterprise/tools/ipam/ipam_ajax.php:393 +msgid "Generate events" +msgstr "GĆ©nĆ©rer des Ć©vĆ©nements" + +#: ../../enterprise/tools/ipam/ipam_ajax.php:445 +msgid "Leases Dhcp" +msgstr "Leases Dhcp" + +#: ../../enterprise/tools/ipam/ipam_ajax.php:455 +msgid "leased mode" +msgstr "mode leased" + +#: ../../enterprise/tools/ipam/ipam_ajax.php:468 +msgid "leased expiration" +msgstr "expiration louĆ©" + +#: ../../enterprise/tools/ipam/ipam_ajax.php:473 +#: ../../include/class/NetworkMap.class.php:2910 +msgid "MAC" +msgstr "MAC" + +#: ../../enterprise/tools/ipam/ipam_ajax.php:499 +msgid "Edited" +msgstr "ModifiĆ©" + +#: ../../enterprise/tools/ipam/ipam_ajax.php:509 +msgid "Tracking" +msgstr "Suivi" + +#: ../../enterprise/tools/ipam/ipam_ajax.php:524 +msgid "Ping" +msgstr "Ping" + +#: ../../enterprise/tools/ipam/ipam_ajax.php:540 ../../include/ajax/events.php:1365 +#, php-format +msgid "Executing command: %s" +msgstr "ExĆ©cution de la commande : %s" + +#: ../../enterprise/tools/ipam/ipam_ajax.php:551 ../../include/ajax/events.php:1382 +#: ../../include/ajax/events.php:1409 +msgid "Execute again" +msgstr "ExĆ©cuter Ć  nouveau" + +#: ../../enterprise/tools/ipam/ipam_ajax.php:565 +msgid "Ping to host" +msgstr "Ping Ć  un hĆ“te" + +#: ../../enterprise/tools/ipam/ipam_supernet_treeview.php:94 +msgid "Found supernets" +msgstr "Super-rĆ©seaux trouvĆ©s" + +#: ../../enterprise/tools/ipam/ipam_vlan_config.php:45 +#: ../../enterprise/tools/ipam/ipam_vlan_config.php:268 +msgid "There is no VLAN name. Please introduce a name" +msgstr "Il n'y a pas de nom pour le VLAN. Entrez un nom" + +#: ../../enterprise/tools/ipam/ipam_vlan_config.php:49 +#: ../../enterprise/tools/ipam/ipam_vlan_config.php:87 +#: ../../enterprise/tools/ipam/ipam_vlan_config.php:272 +msgid "Custom ID is not valid" +msgstr "Lā€™ID personnalisĆ© nā€™est pas valide" + +#: ../../enterprise/tools/ipam/ipam_vlan_config.php:66 +msgid "Vlan created" +msgstr "Vlan crĆ©e" + +#: ../../enterprise/tools/ipam/ipam_vlan_config.php:68 +msgid "Vlan not created" +msgstr "Vlan non crĆ©e" + +#: ../../enterprise/tools/ipam/ipam_vlan_config.php:72 +#: ../../enterprise/tools/ipam/ipam_vlan_config.php:296 +msgid "VLAN name exists in database, please select another name" +msgstr "Le nom du VLAN existe dans la base de donnĆ©es, sĆ©lectionnez un autre nom" + +#: ../../enterprise/tools/ipam/ipam_vlan_config.php:83 +msgid "There is no vlan name. Please introduce a name" +msgstr "Il n'y a pas de nom du VLAN. Entrez un nom" + +#: ../../enterprise/tools/ipam/ipam_vlan_config.php:109 +msgid "Vlan updated" +msgstr "Vlan mis Ć  jour" + +#: ../../enterprise/tools/ipam/ipam_vlan_config.php:111 +msgid "Vlan not updated" +msgstr "Vlan non mis Ć  jour" + +#: ../../enterprise/tools/ipam/ipam_vlan_config.php:115 +msgid "Vlan name exists in database, please select other name" +msgstr "" +"Le nom du Vlan existe dĆ©jĆ  dans la base de donnĆ©es, sĆ©lectionnez un autre nom" + +#: ../../enterprise/tools/ipam/ipam_vlan_config.php:135 +msgid "Could not be deleted, please select vlan" +msgstr "Il n'a pas pue ĆŖtre Ć©liminĆ©, sĆ©lectionnez un vlan" + +#: ../../enterprise/tools/ipam/ipam_vlan_config.php:163 +msgid "Network name cannot be repeated in this Vlan" +msgstr "Le nom du rĆ©seau ne peut pas ĆŖtre rĆ©pĆ©tĆ© and ce Vlan" + +#: ../../enterprise/tools/ipam/ipam_vlan_config.php:179 +msgid "Network name could not be added, please select network" +msgstr "Nom du rĆ©seau n'a pas pu ĆŖtre ajoutĆ©, sĆ©lectionnez le rĆ©seau" + +#: ../../enterprise/tools/ipam/ipam_vlan_config.php:184 +msgid "Vlan name could not be added, please select vlan" +msgstr "Le nom du Vlan n'a pas pu ĆŖtre ajoutĆ©, sĆ©lectionnez clan" + +#: ../../enterprise/tools/ipam/ipam_vlan_config.php:212 +msgid "Could not be deleted, please select VLAN and network" +msgstr "Il n'as pas pu ĆŖtre Ć©liminĆ©, sĆ©lectionnez vlan et rĆ©seau" + +#: ../../enterprise/tools/ipam/ipam_vlan_config.php:219 +#, php-format +msgid "Failed to delete %d/%d networks from VLAN" +msgstr "Impossible de supprimer les rĆ©seaux %d/%d du VLAN" + +#: ../../enterprise/tools/ipam/ipam_vlan_config.php:223 +msgid "Successfully deleted network from VLAN" +msgstr "RĆ©seau supprimĆ© avec succĆØs du VLAN" + +#: ../../enterprise/tools/ipam/ipam_vlan_config.php:225 +#, php-format +msgid "Successfully deleted %d/%d networks from VLAN" +msgstr "Suppression rĆ©ussie des rĆ©seaux %d/%d du VLAN" + +#: ../../enterprise/tools/ipam/ipam_vlan_config.php:303 +#, php-format +msgid "%s VLAN networks have been created" +msgstr "Les rĆ©seaux VLAN %s ont Ć©tĆ© crĆ©es" + +#: ../../enterprise/tools/ipam/ipam_vlan_config.php:305 +msgid "Could not create VLAN networks" +msgstr "Les rĆ©seaux VLAN nĀ”ont pas pu ĆŖtre crĆ©Ć©s" + +#: ../../enterprise/tools/ipam/ipam_vlan_config.php:366 +#: ../../enterprise/tools/ipam/ipam_vlan_config.php:822 +msgid "Update Vlan" +msgstr "Mettre Ć  jour le Vlan" + +#: ../../enterprise/tools/ipam/ipam_vlan_config.php:373 +#: ../../enterprise/tools/ipam/ipam_vlan_config.php:917 +msgid "New Vlan" +msgstr "Nouveau Vlan" + +#: ../../enterprise/tools/ipam/ipam_vlan_config.php:435 +msgid "Search filter by name" +msgstr "Chercher filtre par nom" + +#: ../../enterprise/tools/ipam/ipam_vlan_config.php:736 +msgid "Delete network to vlan" +msgstr "Ɖliminer rĆ©seau du vlan" + +#: ../../enterprise/tools/ipam/ipam_vlan_config.php:796 +msgid "Manage networks in VLAN" +msgstr "GĆ©rer les rĆ©seaux en VLAN" + +#: ../../enterprise/tools/ipam/ipam_vlan_config.php:816 +msgid "Not assigned networks" +msgstr "RĆ©seaux non-attribuĆ©s" + +#: ../../enterprise/tools/ipam/ipam_vlan_config.php:829 +#: ../../enterprise/tools/ipam/ipam_vlan_config.php:848 +msgid "Add network to Vlan" +msgstr "Ajouter rĆ©seau au Vlan" + +#: ../../enterprise/tools/ipam/ipam_vlan_config.php:832 +msgid "Create network" +msgstr "CrĆ©er rĆ©seau" + +#: ../../enterprise/tools/ipam/ipam_vlan_config.php:865 +msgid "Delete Vlan" +msgstr "Ɖliminer Vlan" + +#: ../../enterprise/tools/ipam/ipam_massive.php:82 +msgid "Addresses" +msgstr "Adresses" + +#: ../../enterprise/tools/ipam/ipam_calculator.php:64 +#: ../../enterprise/tools/ipam/ipam_calculator.php:66 +#: ../../enterprise/tools/ipam/ipam_calculator.php:87 +#: ../../enterprise/tools/ipam/ipam_calculator.php:90 +#: ../../enterprise/tools/ipam/ipam_calculator.php:93 +#: ../../enterprise/tools/ipam/ipam_calculator.php:96 +msgid "Example:" +msgstr "Exemple :" + +#: ../../enterprise/tools/ipam/ipam_calculator.php:70 +msgid "Bit mask" +msgstr "Masque de bit" + +#: ../../enterprise/tools/ipam/ipam_calculator.php:71 +msgid "Net mask" +msgstr "Masque de rĆ©seau" + +#: ../../enterprise/tools/ipam/ipam_calculator.php:74 +msgid "Mask format" +msgstr "Format du masque" + +#: ../../enterprise/tools/ipam/ipam_calculator.php:105 +msgid "Calculate" +msgstr "Calculer" + +#: ../../enterprise/tools/ipam/ipam_calculator.php:112 +msgid "Address field is empty" +msgstr "Le champ adresse est vide." + +#: ../../enterprise/tools/ipam/ipam_calculator.php:120 +msgid "Mask field is empty" +msgstr "Le champ masque est vide." + +#: ../../enterprise/tools/ipam/ipam_calculator.php:139 +#: ../../enterprise/tools/ipam/ipam_calculator.php:152 +msgid "Incorrect address format" +msgstr "Format d'adresse incorrect" + +#: ../../enterprise/tools/ipam/ipam_calculator.php:144 +#: ../../enterprise/tools/ipam/ipam_calculator.php:157 +#: ../../enterprise/tools/ipam/ipam_calculator.php:162 +msgid "Incorrect mask format" +msgstr "Format de masque incorrect" + +#: ../../enterprise/tools/ipam/ipam_calculator.php:190 +msgid "Network mask" +msgstr "Masque de rĆ©seau" + +#: ../../enterprise/tools/ipam/ipam_calculator.php:211 +msgid "Network wildcard" +msgstr "CaractĆØre de remplacement du rĆ©seau" + +#: ../../enterprise/tools/ipam/ipam_calculator.php:220 +msgid "Network address" +msgstr "Adresse du rĆ©seau" + +#: ../../enterprise/tools/ipam/ipam_calculator.php:229 +msgid "Broadcast address" +msgstr "Adresse de diffusion" + +#: ../../enterprise/tools/ipam/ipam_calculator.php:238 +msgid "First valid IP" +msgstr "PremiĆØre adresse IP valide" + +#: ../../enterprise/tools/ipam/ipam_calculator.php:247 +msgid "Last valid IP" +msgstr "DerniĆØre adresse IP valide" + +#: ../../enterprise/tools/ipam/ipam_calculator.php:257 +msgid "Hosts/Net" +msgstr "HĆ“tes/RĆ©seau" + +#: ../../enterprise/tools/ipam/ipam_editor.php:56 +msgid "Network not found" +msgstr "RĆ©seau introuvable" + +#: ../../enterprise/tools/ipam/ipam_editor.php:122 +msgid "Format: IP/Mask" +msgstr "Format : IP/Masque" + +#: ../../enterprise/tools/ipam/ipam_editor.php:136 +msgid "Examples" +msgstr "Exemples" + +#: ../../update_manager_client/views/offline.php:65 +msgid "Drop the package here or" +msgstr "DĆ©poser le progiciel ici ou" + +#: ../../update_manager_client/views/offline.php:66 +msgid "Browse it" +msgstr "Naviguer" + +#: ../../update_manager_client/views/offline.php:67 +msgid "The package has been uploaded successfully." +msgstr "Le progiciel a Ć©tĆ© tĆ©lĆ©versĆ© correctement" + +#: ../../update_manager_client/views/offline.php:68 +#, php-format msgid "" -"Passwords didn't match or other problem encountered while updating passwords" +"Please keep in mind that this package is going to override your actual %s files " +"and that it's recommended to conduct a backup before continuing the updating " +"process." msgstr "" -"Les mots de passe ne se correspondent pas ou d'autres problĆØmes ont surgis " -"pendant la mise Ć  jour des mots de passe" +"Veuillez garder Ć  l'esprit que ce package va remplacer vos fichiers %s rĆ©els et " +"qu'il est recommandĆ© d'effectuer une sauvegarde avant de poursuivre le processus " +"de mise Ć  jour." -#: ../../operation/users/user_edit.php:172 -#: ../../operation/users/user_edit.php:187 -msgid "Password successfully updated" -msgstr "Mot de passe mis Ć  jour correctement" +#: ../../update_manager_client/views/offline.php:69 +msgid "Click on the file below to begin." +msgstr "Cliquez sur le fichier ci-dessous pour commencer." -#: ../../operation/users/user_edit.php:182 -#: ../../operation/users/user_edit.php:230 -msgid "Error updating user info" -msgstr "Erreur de mise Ć  jour de l'information de l'utilisateur" +#: ../../update_manager_client/views/offline.php:70 +#: ../../update_manager_client/views/online.php:123 +#: ../../update_manager_client/views/online.php:164 +msgid "This action will upgrade this console to version " +msgstr "Cette action mettra Ć  niveau cette console vers la version" -#: ../../operation/users/user_edit.php:184 -#: ../../operation/users/user_edit.php:229 -#: ../../godmode/users/configure_user.php:643 -#: ../../godmode/users/configure_user.php:667 -#: ../../godmode/users/configure_user.php:737 -#: ../../godmode/users/configure_user.php:744 -#: ../../godmode/users/configure_user.php:776 -msgid "User info successfully updated" -msgstr "L'information de l'utilisateur a Ć©tĆ© mise Ć  jour correctement." +#: ../../update_manager_client/views/offline.php:71 +msgid "This action will upgrade all servers to version " +msgstr "Cette action mettra Ć  niveau tous les serveurs vers la version" -#: ../../operation/users/user_edit.php:189 -msgid "Skin successfully updated" -msgstr "Skin mis Ć  jour correctement" +#: ../../update_manager_client/views/offline.php:73 +#: ../../update_manager_client/views/online.php:89 +msgid "Updating to" +msgstr "Mise Ć  jour vers" -#: ../../operation/users/user_edit.php:192 -#: ../../enterprise/godmode/reporting/mysql_builder.php:214 -msgid "No changes have been made" -msgstr "Aucune modification nā€™a Ć©tĆ© apportĆ©e" +#: ../../update_manager_client/views/offline.php:74 +#: ../../update_manager_client/views/online.php:90 +msgid "Do you really want to leave our brilliant application?" +msgstr "Voulez-vous vraiment quitter notre brillante applicationĀ ?" -#: ../../operation/users/user_edit.php:203 -msgid "Please enter a valid email" -msgstr "Veuillez entrer une adresse email valide" +#: ../../update_manager_client/views/offline.php:75 +#: ../../update_manager_client/views/online.php:91 +msgid "There are no updates available" +msgstr "Il nā€™y a pas de mises Ć  jour disponibles." -#: ../../operation/users/user_edit.php:205 -msgid "Please enter a valid phone number" -msgstr "Veuillez entrer un numĆ©ro de tĆ©lĆ©phone valide" +#: ../../update_manager_client/views/offline.php:76 +#: ../../update_manager_client/views/online.php:92 +msgid "Searching for updates..." +msgstr "Recherche des mises Ć  jour..." -#: ../../operation/users/user_edit.php:211 -msgid "Error updating passwords: " -msgstr "Erreur lors de la mise Ć  jour des mots de passeĀ :" +#: ../../update_manager_client/views/offline.php:77 +#: ../../update_manager_client/views/online.php:93 +msgid "Package" +msgstr "Package" -#: ../../operation/users/user_edit.php:235 -msgid "Edit my User" -msgstr "Modifier mon utilisateur" +#: ../../update_manager_client/views/offline.php:79 +msgid "Package rejected. These package changes will not apply." +msgstr "Progiciel rejetĆ©. Ces changements de progiciel ne seront pas appliquĆ©s" -#: ../../operation/users/user_edit.php:251 ../../godmode/users/user_list.php:432 +#: ../../update_manager_client/views/offline.php:81 +#, php-format +msgid "" +"This update does not correspond with next version of %s. Are you sure you want to " +"install it?" +msgstr "" +"Cette mise Ć  jour ne correspond pas Ć  la prochaine version de %s. Ɗtes-vous sĆ»r " +"de vouloir l'installer ?" + +#: ../../update_manager_client/views/offline.php:82 +msgid "" +"This server update does not correspond with current console version. Are you sure " +"you want to install it?" +msgstr "" +"Cette mise Ć  jour du serveur ne correspond pas Ć  la version actuelle de la " +"console. Ɗtes-vous sĆ»r de vouloir l'installer ?" + +#: ../../update_manager_client/views/offline.php:83 +msgid "" +"File name does not match required format: package_NUMBER.oum or " +"pandorafms_server[_enterprise]-7.0NG.NUMBER_x86[_64].tar.gz, you can use numbers " +"with decimals." +msgstr "" +"Le nom de fichier ne correspond pas au format requisĀ : package_NUMBER.oum ou " +"pandorafms_server[_enterprise]-7.0NG.NUMBER_x86[_64].tar.gz, vous pouvez utiliser " +"des nombres avec des dĆ©cimales." + +#: ../../update_manager_client/views/offline.php:84 +msgid "Files included in this package" +msgstr "Fichiers inclus dans ce package" + +#: ../../update_manager_client/views/offline.php:85 +msgid "Ignore" +msgstr "Ignorer" + +#: ../../update_manager_client/views/offline.php:86 +msgid "Verify package signature" +msgstr "VĆ©rifier la signature du package" + +#: ../../update_manager_client/views/offline.php:87 +#, php-format +msgid "" +"Copy into the textarea the signature validation token you can retrieve from %s " +"and press OK to verify the package, press ignore to avoid signature verification" +msgstr "" +"Copiez dans la zone de texte le jeton de validation de signature que vous pouvez " +"rĆ©cupĆ©rer Ć  partir de %s et appuyez sur OK pour vĆ©rifier le package, cliquez " +"ignorer pour Ć©viter la vĆ©rification de la signature" + +#: ../../update_manager_client/views/offline.php:88 +msgid "" +"This server update does not correspond with current console version and is not " +"going to be installed unless patches are allowed. Please enable patches in update " +"manager settings." +msgstr "" +"Cette mise Ć  jour du serveur ne correspond pas Ć  la version actuelle de la " +"console et ne sera pas installĆ©e Ć  moins que les correctifs ne soient autorisĆ©s. " +"Veuillez activer les correctifs dans les paramĆØtres du gestionnaire de mises Ć  " +"jour." + +#: ../../update_manager_client/views/offline.php:89 +#, php-format +msgid "" +"This update does not correspond with next version of %s and is not going to be " +"installed unless patches are allowed. Please enable patches in update manager " +"settings." +msgstr "" +"Cette mise Ć  jour ne correspond pas Ć  la prochaine version de %s et ne sera pas " +"installĆ©e Ć  moins que les correctifs ne soient autorisĆ©s. Veuillez activer les " +"correctifs dans les paramĆØtres du gestionnaire de mises Ć  jour." + +#: ../../update_manager_client/views/register.php:47 +msgid "Register to Warp Update" +msgstr "Sā€™inscrire Ć  Warp Update" + +#: ../../update_manager_client/views/register.php:54 +#, php-format +msgid "Keep this %s console up to date with latest updates." +msgstr "Gardez cette %s console Ć  jour avec les derniĆØres mises Ć  jour." + +#: ../../update_manager_client/views/register.php:61 +#, php-format +msgid "" +"When you subscribe to the Warp update service for %s, you accept that we\n" +" register your %s instance as an identifier on a database owned by %s. " +"This data will solely be used to\n" +" provide you with information about %s and will not be conceded to " +"third parties. You can unregister from\n" +" said database at any time from the Warp update options." +msgstr "" +"Lorsque vous vous abonnez Ć  %s Update Manager service, vous acceptez que nous\n" +" registrons votre %s instance en tant quā€™identifiant dans la base " +"donnĆ©es propriĆ©tĆ© de %s. Ces donnĆ©es seront utilisĆ©es seulement pour vous\n" +" fournir de lā€™information sur %s et ne seront pas transmis aux " +"tierces. Vous pouvez vous dĆ©sabonner de\n" +" ladite base de donnĆ©es Ć  tout moment depuis les options de Update " +"Manager." + +#: ../../update_manager_client/views/register.php:74 +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:1910 +msgid "Your email" +msgstr "Votre email" + +#: ../../update_manager_client/views/register.php:97 +msgid "OK!" +msgstr "OK !" + +#: ../../update_manager_client/views/register.php:112 +msgid "Are you sure you don't want to use Warp update?" +msgstr "Ɗtes-vous sĆ»r de ne pas vouloir utiliser Warp Update?" + +#: ../../update_manager_client/views/register.php:116 +msgid "" +"You will need to update your system manually, through source code or RPM\n" +" packages to be up to date with latest updates." +msgstr "" +"Vous devrez mettre Ć  jour votre systĆØme manuellement, via le code source ou " +"RPM packages pour ĆŖtre Ć  jour avec les derniĆØres mises Ć  jour." + +#: ../../update_manager_client/views/register.php:208 +msgid "Unsuccessful subscription" +msgstr "Abonnement infructueux" + +#: ../../update_manager_client/views/register.php:213 +msgid "Pandora successfully subscribed with UID: " +msgstr "Pandora FMS abonnĆ© correctement avec UID : " + +#: ../../update_manager_client/views/online.php:44 +msgid "The latest version of package installed is" +msgstr "La derniĆØre version du paquet installĆ© est" + +#: ../../update_manager_client/views/online.php:64 +msgid "Update to next version" +msgstr "Mettre Ć  jour vers la prochaine version" + +#: ../../update_manager_client/views/online.php:65 +msgid "Update to latest version" +msgstr "Mise Ć  jour vers la derniĆØre version" + +#: ../../update_manager_client/views/online.php:124 +#: ../../update_manager_client/views/online.php:165 +msgid "Update to" +msgstr "Mettre Ć  jour vers" + +#: ../../update_manager_client/views/online.php:145 +#: ../../update_manager_client/views/online.php:149 +msgid "Failed to update to " +msgstr "Ɖchec lors de la mise Ć  jour" + +#: ../../update_manager_client/views/online.php:188 +msgid "Failed to update:" +msgstr "Ɖchec lors de la mise Ć  jour :" + +#: ../../update_manager_client/lib/UpdateManager/UI/Manager.php:484 +msgid "Next update" +msgstr "Prochaine mise Ć  jour" + +#: ../../update_manager_client/lib/UpdateManager/UI/Manager.php:489 +msgid "Show details" +msgstr "Afficher les dĆ©tails" + +#: ../../update_manager_client/lib/UpdateManager/UI/Manager.php:514 +#, php-format +msgid "%s update(s) available more" +msgstr "%s mise Ć  jour(s) disponible(s) plus" + +#: ../../update_manager_client/lib/UpdateManager/UI/Manager.php:526 +msgid "details" +msgstr "dĆ©tails" + +#: ../../update_manager_client/lib/UpdateManager/UI/Manager.php:604 +msgid "Failed creating temporary directory." +msgstr "Ɖchec de la crĆ©ation du rĆ©pertoire temporaire." + +#: ../../update_manager_client/lib/UpdateManager/UI/Manager.php:614 +msgid "Failed storing uploaded file." +msgstr "Ɖchec du stockage du fichier tĆ©lĆ©chargĆ©." + +#: ../../update_manager_client/lib/UpdateManager/UI/Manager.php:646 +#, php-format +msgid "Invalid extension. The package needs to be in `%s` or `%s` format." +msgstr "Extension invalide. Le package doit ĆŖtre au format `%s` ou `%s`." + +#: ../../update_manager_client/lib/UpdateManager/UI/Manager.php:655 +msgid "Failed uploading file." +msgstr "Ɖchec du tĆ©lĆ©chargement du fichier." + +#: ../../update_manager_client/lib/UpdateManager/UI/Manager.php:690 +msgid "Signatures does not match." +msgstr "Les signatures ne correspondent pas." + +#: ../../update_manager_client/lib/UpdateManager/UI/Manager.php:749 +#, php-format +msgid "Update %s successfully installed." +msgstr "Mise Ć  jour %s installĆ©e correctement." + +#: ../../update_manager_client/lib/UpdateManager/UI/Manager.php:752 +#, php-format +msgid "Failed while updating: %s" +msgstr "Ɖchec lors de la mise Ć  jourĀ : %s" + +#: ../../update_manager_client/lib/UpdateManager/Client.php:712 +#, php-format +msgid "server update %d" +msgstr "Mise Ć  jour du serveur %d" + +#: ../../update_manager_client/lib/UpdateManager/Client.php:714 +#, php-format +msgid "console update %d" +msgstr "mise Ć  jour de la console %d" + +#: ../../update_manager_client/lib/UpdateManager/Client.php:734 +#, php-format +msgid "Downloading %s %.2f/ %.2f MB." +msgstr "TĆ©lĆ©chargement de %s %.2f/ %.2fĀ Mo." + +#: ../../update_manager_client/lib/UpdateManager/Client.php:745 +#, php-format +msgid "Downloading %.2f MB" +msgstr "TĆ©lĆ©chargement de %.2f" + +#: ../../update_manager_client/lib/UpdateManager/Client.php:1469 +#, php-format +msgid "Failed to analyze package: %s" +msgstr "Ɖchec de l'analyse du packageĀ : %s" + +#: ../../update_manager_client/lib/UpdateManager/Client.php:1560 +msgid "Searching update package" +msgstr "Recherche de package de mise Ć  jour" + +#: ../../update_manager_client/lib/UpdateManager/Client.php:1592 +msgid "Retrieving update" +msgstr "RĆ©cupĆ©ration de la mise Ć  jour" + +#: ../../update_manager_client/lib/UpdateManager/Client.php:1683 +msgid "Extracting package" +msgstr "RĆ©cupĆ©rant le package" + +#: ../../update_manager_client/lib/UpdateManager/Client.php:1750 +msgid "Testing files" +msgstr "Testant les fichiers" + +#: ../../update_manager_client/lib/UpdateManager/Client.php:1782 +#, php-format +msgid "Applying MR %s" +msgstr "Appliquant MR %s" + +#: ../../update_manager_client/lib/UpdateManager/Client.php:1819 +msgid "Applying file updates" +msgstr "Appliquant les mises Ć  jour de fichiers" + +#: ../../update_manager_client/lib/UpdateManager/Client.php:1841 +msgid "Retrieving server update" +msgstr "RĆ©cupĆ©rant la mise Ć  jour du serveur" + +#: ../../update_manager_client/lib/UpdateManager/Client.php:1856 +msgid "Cleaning" +msgstr "Nettoyage en cours" + +#: ../../update_manager_client/lib/UpdateManager/Client.php:1969 +msgid "Updating to " +msgstr "Mise Ć  jour vers" + +#: ../../extensions/disabled/matrix_events.php:30 +msgid "Matrix events" +msgstr "ƉvĆ©nements de la matrice" + +#: ../../extensions/quick_shell.php:140 ../../extensions/quick_shell.php:244 +msgid "WebService engine has not been started, please check documentation." +msgstr "Le moteur WebService n'a pas Ć©tĆ© dĆ©marrĆ©, vĆ©rifiez la documentation" + +#: ../../extensions/quick_shell.php:152 +msgid "Retry" +msgstr "RĆ©essayer" + +#: ../../extensions/quick_shell.php:196 +msgid "Telnet" +msgstr "Telnet" + +#: ../../extensions/quick_shell.php:204 +msgid "Connect" +msgstr "Connecter" + +#: ../../extensions/quick_shell.php:232 +msgid "Please use SSH or Telnet." +msgstr "Utilisez SSH ou Telnet." + +#: ../../extensions/quick_shell.php:266 +msgid "WebService engine is not working properly, please check documentation." +msgstr "" +"Le moteur de service Web ne fonctionne pas correctement, veuillez vĆ©rifier la " +"documentation." + +#: ../../extensions/quick_shell.php:425 +#, php-format +msgid "%d Updated" +msgstr "%d Mis Ć  jour" + +#: ../../extensions/quick_shell.php:428 +#, php-format +msgid "%d Updated, please restart WebSocket engine service" +msgstr "%d Mis Ć  jour, veuillez redĆ©marrer le service du moteur WebSocket" + +#: ../../extensions/quick_shell.php:438 +msgid "Quickshell" +msgstr "QuickShell" + +#: ../../extensions/quick_shell.php:448 +msgid "Gotty path" +msgstr "Chemin de Gotty" + +#: ../../extensions/quick_shell.php:458 +msgid "Gotty host" +msgstr "HĆ“te Gotty" + +#: ../../extensions/quick_shell.php:468 +msgid "Gotty ssh port" +msgstr "Port Gotty ssh" + +#: ../../extensions/quick_shell.php:478 +msgid "Gotty telnet port" +msgstr "Port Gotty telnet" + +#: ../../extensions/quick_shell.php:495 +msgid "Gotty user" +msgstr "Utilisateur Gotty" + +#: ../../extensions/quick_shell.php:505 +msgid "Gotty password" +msgstr "Mot de passe Getty" + +#: ../../extensions/quick_shell.php:545 +msgid "QuickShell" +msgstr "QuickShell" + +#: ../../extensions/extension_uploader.php:29 +msgid "Uploader extension" +msgstr "Extension du tĆ©lĆ©verseur" + +#: ../../extensions/extension_uploader.php:72 +msgid "Success to upload extension" +msgstr "Extension tĆ©lĆ©versĆ©e correctement" + +#: ../../extensions/extension_uploader.php:73 +msgid "Fail to upload extension" +msgstr "Erreur, extension non tĆ©lĆ©versĆ©e" + +#: ../../extensions/extension_uploader.php:82 +msgid "Upload extension" +msgstr "TĆ©lĆ©verser l'extension" + +#: ../../extensions/extension_uploader.php:83 +msgid "Upload the extension as a zip file." +msgstr "TĆ©lĆ©verser l'extension sous forme de fichier zip" + +#: ../../extensions/extension_uploader.php:85 +msgid "Upload enterprise extension" +msgstr "TĆ©lĆ©verser l'extension Enterprise" + +#: ../../extensions/extension_uploader.php:98 +msgid "Extension uploader" +msgstr "TĆ©lĆ©verseur de l'extension" + +#: ../../extensions/resource_registration.php:55 +#, php-format +msgid "Success add '%s' item in report '%s'." +msgstr "ƉlĆ©ment '%s' ajoutĆ© correctement au rapport '%s'" + +#: ../../extensions/resource_registration.php:60 +#, php-format +msgid "Error create '%s' item in report '%s'." +msgstr "Erreur de crĆ©ation de l'Ć©lĆ©ment '%s' dans le rapport '%s'" + +#: ../../extensions/resource_registration.php:96 +#, php-format +msgid "Error create '%s' report, the name exist and there aren't free name." +msgstr "" +"Erreur de crĆ©ation du rapport '%s'. Ce nom existe dĆ©jĆ  et il n'y a plus de noms " +"disponibles." + +#: ../../extensions/resource_registration.php:104 +#, php-format +msgid "Warning create '%s' report, the name exist, the report have a name %s." +msgstr "Alerte crĆ©ation rapport '%s', le nom existe dĆ©jĆ . Le nom du rapport est %s." + +#: ../../extensions/resource_registration.php:113 +msgid "Error the report haven't name." +msgstr "Erreur, le rapport n'a pas de nom" + +#: ../../extensions/resource_registration.php:127 +msgid "Error the report haven't group." +msgstr "Erreur, le rapport n'a pas de groupe" + +#: ../../extensions/resource_registration.php:140 +#, php-format +msgid "Success create '%s' report." +msgstr "Rapport '%s' crĆ©Ć© correctement" + +#: ../../extensions/resource_registration.php:141 +#, php-format +msgid "Error create '%s' report." +msgstr "Erreur de crĆ©ation du rapport '%s'" + +#: ../../extensions/resource_registration.php:435 +#: ../../extensions/resource_registration.php:457 +#: ../../extensions/resource_registration.php:468 +#, php-format +msgid "Success add '%s' content." +msgstr "Contenu '%s' ajoutĆ© correctement" + +#: ../../extensions/resource_registration.php:445 +#, php-format +msgid "Success add '%s' SLA." +msgstr "'%s' SLA ajoutĆ© correctement" + +#: ../../extensions/resource_registration.php:446 +#, php-format +msgid "Error add '%s' SLA." +msgstr "Erreur, '%s' SLA non ajoutĆ©" + +#: ../../extensions/resource_registration.php:489 +#, php-format +msgid "Error create '%s' visual map, lost tag name." +msgstr "Erreur de crĆ©ation de la carte visuelle '%s', nom de l'Ć©tiquette perdu" + +#: ../../extensions/resource_registration.php:532 +#, php-format +msgid "Error create '%s' visual map, the name exist and there aren't free name." +msgstr "" +"Erreur de crĆ©ation de la carte visuelle '%s', ce nom existe et il n'y a plus de " +"noms disponibles." + +#: ../../extensions/resource_registration.php:540 +#, php-format +msgid "Warning create '%s' visual map, the name exist, the report have a name %s." +msgstr "" +"Alerte lors de la crĆ©ation de la carte visuelle '%s', le nom existe. Le rapport a " +"un nom %s." + +#: ../../extensions/resource_registration.php:552 +#, php-format +msgid "Success create '%s' visual map." +msgstr "Carte visuelle '%s' crĆ©Ć©e correctement" + +#: ../../extensions/resource_registration.php:553 +#, php-format +msgid "Error create '%s' visual map." +msgstr "Erreur de crĆ©ation de la carte visuelle '%s'." + +#: ../../extensions/resource_registration.php:718 +#, php-format +msgid "Success create item type '%d' visual map." +msgstr "ƉlĆ©ment type '%d' de la carte visuelle crĆ©Ć© correctement" + +#: ../../extensions/resource_registration.php:719 +#, php-format +msgid "Error create item type '%d' visual map." +msgstr "Erreur de crĆ©ation de l'Ć©lĆ©ment type '%d' de la carte visuelle" + +#: ../../extensions/resource_registration.php:742 +#: ../../extensions/resource_registration.php:763 +#, php-format +msgid "Success create item for agent '%s' visual map." +msgstr "ƉlĆ©ment pour agent '%s' de la carte visuelle crĆ©Ć© correctement" + +#: ../../extensions/resource_registration.php:743 +#: ../../extensions/resource_registration.php:764 +#, php-format +msgid "Error create item for agent '%s' visual map." +msgstr "Erreur de crĆ©ation de l'Ć©lĆ©ment pour l'agent '%s' de la carte visuelle." + +#: ../../extensions/resource_registration.php:1028 +#, php-format +msgid "Success create '%s' component." +msgstr "Composant '%s' crĆ©Ć© correctement" + +#: ../../extensions/resource_registration.php:1029 +#, php-format +msgid "Error create '%s' component." +msgstr "Erreur de crĆ©ation du composant '%s'." + +#: ../../extensions/resource_registration.php:1095 +#: ../../extensions/resource_registration.php:1158 +msgid "Resource registration" +msgstr "Enregistrement de ressource" + +#: ../../extensions/resource_registration.php:1114 +#, php-format +msgid "This node is configured with centralized mode. Go to %s to create a policy." +msgstr "" +"Ce nœud est configurĆ© en mode centralisĆ©. AccĆ©dez Ć  %s pour crĆ©er une politique." + +#: ../../extensions/resource_registration.php:1123 +msgid "This extension makes registering resource templates easier." +msgstr "Cette extension facilite l'enregistrement des modĆØles de ressources." + +#: ../../extensions/resource_registration.php:1123 +msgid "Here you can upload a resource template in .ptr format." +msgstr "Ici, vous pouvez tĆ©lĆ©charger un modĆØle de ressource au format .ptr." + +#: ../../extensions/resource_registration.php:1123 +#, php-format +msgid "" +"Please refer to our documentation for more information on how to obtain and use " +"%s resources." +msgstr "" +"Veuillez vous rĆ©fĆ©rer Ć  notre documentation pour plus d'informations sur la faƧon " +"d'obtenir et d'utiliser des ressources %s." + +#: ../../extensions/resource_registration.php:1123 +msgid "" +"You can get more resurces in our Public Resource Library" +msgstr "" +"Vous pouvez obtenir plus de resources dans notre bibliothĆØque de ressources publiques" + +#: ../../extensions/api_checker.php:111 ../../extensions/api_checker.php:248 +msgid "API checker" +msgstr "VĆ©rificateur API" + +#: ../../extensions/api_checker.php:128 +#, php-format +msgid "%s Console URL" +msgstr "%s URL de la console" + +#: ../../extensions/api_checker.php:133 +msgid "API Pass" +msgstr "Mot de passe de l'API" + +#: ../../extensions/api_checker.php:151 +msgid "Action (get or set)" +msgstr "Action (obtenir ou dĆ©finir)" + +#: ../../extensions/api_checker.php:166 +msgid "ID 2" +msgstr "Identifiant 2" + +#: ../../extensions/api_checker.php:171 +msgid "Return Type" +msgstr "Type de retour" + +#: ../../extensions/api_checker.php:181 +msgid "Other Mode" +msgstr "Autre mode" + +#: ../../extensions/api_checker.php:189 +msgid "Raw URL" +msgstr "URL brute" + +#: ../../extensions/api_checker.php:200 +msgid "Call parameters" +msgstr "ParamĆØtres d'appel" + +#: ../../extensions/api_checker.php:200 +msgid "Action: get Operation: module_last_value id: 63" +msgstr "Action : get Operation : module_last_value id : 63" + +#: ../../extensions/api_checker.php:207 +msgid "Custom URL" +msgstr "URL personnalisĆ©e" + +#: ../../extensions/api_checker.php:213 +msgid "Call" +msgstr "Appel" + +#: ../../extensions/api_checker.php:222 ../../extensions/api_checker.php:239 +msgid "Show URL" +msgstr "Afficher URL" + +#: ../../extensions/api_checker.php:235 +msgid "Hide URL" +msgstr "Cacher URL" + +#: ../../extensions/db_status.php:25 ../../extensions/db_status.php:453 +#: ../../godmode/menu.php:439 +msgid "DB Schema check" +msgstr "VĆ©rifier SchĆ©ma BD" + +#: ../../extensions/db_status.php:43 +msgid "" +"This extension checks the DB is correct. Because sometimes the old DB from a " +"migration has not some fields in the tables or the data is changed." +msgstr "" +"Cette extension vĆ©rifie que la BD soit correcte, car il se peut que l'ancienne BD " +"d'une migration ne prĆ©sente pas certains champs dans les tableaux ou que les " +"donnĆ©es soient modifiĆ©es." + +#: ../../extensions/db_status.php:46 +msgid "At the moment the checks is for MySQL/MariaDB." +msgstr "Pour l'instant, les vĆ©rifications sont pour MySQL/MariaDB." + +#: ../../extensions/db_status.php:52 +msgid "DB settings" +msgstr "ParamĆØtres de la BD" + +#: ../../extensions/db_status.php:56 +msgid "DB User with privileges" +msgstr "Utilisateur de BD avec privilĆØges" + +#: ../../extensions/db_status.php:58 +msgid "DB Password for this user" +msgstr "Mot de passe de la BD pour cet utilisateur" + +#: ../../extensions/db_status.php:62 +msgid "DB Hostname" +msgstr "Nom d'hĆ“te de la BD" + +#: ../../extensions/db_status.php:64 +msgid "DB Name (temporal for testing)" +msgstr "Nom de la BD (temporaire pour essai)" + +#: ../../extensions/db_status.php:72 +msgid "Execute Test" +msgstr "ExĆ©cuter le test" + +#: ../../extensions/db_status.php:108 +msgid "Unsuccessful connected to the DB" +msgstr "Erreur de connexion Ć  la BD" + +#: ../../extensions/db_status.php:119 +msgid "Unsuccessful created the testing DB" +msgstr "Erreur de crĆ©ation de la BD d'essai" + +#: ../../extensions/db_status.php:135 +msgid "Unsuccessful installed tables into the testing DB" +msgstr "Installation de tables dans la BD d'essai Ć©chouĆ©e" + +#: ../../extensions/db_status.php:219 +#, php-format +msgid "Success! %s DB contains all tables" +msgstr "SuccĆØs! %s La base de donnĆ©es contient toutes les tables" + +#: ../../extensions/db_status.php:221 +#, php-format +msgid "%s DB could not retrieve all tables. The missing tables are (%s)" +msgstr "" +"La base de donnĆ©es %s n'a pas pu rĆ©cupĆ©rer toutes les tables. Les tableaux " +"manquants sont (%s)" + +#: ../../extensions/db_status.php:235 ../../extensions/db_status.php:246 +#: ../../extensions/db_status.php:349 +msgid "You can execute this SQL query for to fix." +msgstr "Vous pouvez exĆ©cuter cette requĆŖte SQL pour le rĆ©parer." + +#: ../../extensions/db_status.php:343 +#, php-format +msgid "Unsuccessful the table %s has not the field %s" +msgstr "Erreur, le tableau %s ne contient pas le champ %s" + +#: ../../extensions/db_status.php:408 +msgid "Successful all the tables have the correct fields" +msgstr "SuccĆØs, toutes les tables contiennent les champs corrects" + +#: ../../extensions/agents_alerts.php:37 +msgid "Agents/Alerts view" +msgstr "Afficher agents/alertes" + +#: ../../extensions/resource_exportation.php:50 +#: ../../extensions/resource_exportation.php:420 +msgid "Resource exportation" +msgstr "Exportation de ressource" + +#: ../../extensions/resource_exportation.php:423 +msgid "This extension makes exportation of resource template more easy." +msgstr "Cette extension facilite l'exportation du modĆØle de ressource." + +#: ../../extensions/resource_exportation.php:423 +msgid "You can export resource templates in .ptr format." +msgstr "Vous pouvez exporter des modĆØles de ressources au format .ptr." + +#: ../../extensions/files_repo.php:103 +msgid "Extension not installed" +msgstr "Extension non installĆ©e" + +#: ../../extensions/files_repo.php:118 ../../extensions/files_repo.php:207 +msgid "Administration view" +msgstr "Afficher administration" + +#: ../../extensions/files_repo.php:130 ../../extensions/files_repo.php:240 +msgid "Files repository manager" +msgstr "Gestionnaire du rĆ©pertoire de fichiers" + +#: ../../extensions/files_repo.php:148 +msgid "" +"Problem uploading. Please check this PHP runtime variable values:
      "
    +"post_max_size (currently "
    +msgstr ""
    +"ProblĆØme de tĆ©lĆ©chargement. Veuillez vĆ©rifier les valeurs de cette variable "
    +"dā€™exĆ©cution PHP : 
      post_max_size (actuellement "
    +
    +#: ../../extensions/files_repo.php:221 ../../extensions/files_repo.php:238
    +msgid "Files repository"
    +msgstr "RĆ©pertoire de fichiers"
    +
    +#: ../../extensions/dbmanager.php:110
    +msgid "Database interface"
    +msgstr "Interface de la BD"
    +
    +#: ../../extensions/dbmanager.php:123
    +msgid ""
    +"Warning, you are accessing the database directly. You can leave the system "
    +"inoperative if you run an inappropriate SQL statement"
    +msgstr ""
    +"Attention, vous accƩdez directement Ơ la base de donnƩes. Vous pouvez laisser le "
    +"systĆØme inopĆ©rant si vous exĆ©cutez une instruction SQL inappropriĆ©e"
    +
    +#: ../../extensions/dbmanager.php:161
    +#, php-format
    +msgid ""
    +"This is an advanced extension to interface with %s database directly from WEB "
    +"console\n"
    +"\t\tusing native SQL sentences. Please note that you can damage your %s "
    +"installation\n"
    +"\t\tif you don't know exactly what are you are doing,\n"
    +"\t\tthis means that you can severily damage your setup using this extension.\n"
    +"\t\tThis extension is intended to be used only by experienced users\n"
    +"\t\twith a depth knowledge of %s internals."
    +msgstr ""
    +"Cā€™est une extension avancĆ©e pour interagir aver %s la base de donnĆ©es directement "
    +"depuis la console WEB\n"
    +"\t\ten utilisant les sentences SQL natives. Notez que vous pouvez endommager votre %s installation\n"
    +"\t\tsi vous ne savez pas exactement ce que vous faissez,\n"
    +"\t\tƧa signifie que vous pouvez endommager gravement votre configuration en "
    +"utilisant cette configuration.\n"
    +"\t\tCette extension est conƧue pour ĆŖtre utilisĆ©ei seulement par des "
    +"utilisateurs expƩrimentƩs\n"
    +"\t\tavec une connaissance profonde %s de comme Ƨa fonctionne."
    +
    +#: ../../extensions/dbmanager.php:207
    +msgid "Select query target"
    +msgstr "SĆ©lectionner la cible de requĆŖte"
    +
    +#: ../../extensions/dbmanager.php:214
    +msgid "Execute SQL"
    +msgstr "ExƩcuter SQL"
    +
    +#: ../../extensions/dbmanager.php:255
    +msgid "Error querying database node"
    +msgstr "Erreur lors de lā€™interrogation du nœud de base de donnĆ©es"
    +
    +#: ../../extensions/dbmanager.php:322 ../../godmode/menu.php:439
    +msgid "DB interface"
    +msgstr "Interface de la BD"
    +
    +#: ../../extensions/agents_modules.php:396
    +#: ../../godmode/reporting/reporting_builder.item_editor.php:1953
    +#: ../../include/lib/Dashboard/Widgets/agent_module.php:255
    +msgid "Show module status"
    +msgstr "Afficher lā€™Ć©tat du module"
    +
    +#: ../../extensions/agents_modules.php:397
    +#: ../../godmode/reporting/reporting_builder.item_editor.php:1954
    +#: ../../include/lib/Dashboard/Widgets/agent_module.php:256
    +msgid "Show module data"
    +msgstr "Afficher les donnƩes du module"
    +
    +#: ../../extensions/agents_modules.php:400
    +#: ../../godmode/reporting/reporting_builder.item_editor.php:1949
    +#: ../../include/lib/Dashboard/Widgets/agent_module.php:265
    +msgid "Information to be shown"
    +msgstr "Informations Ć  afficher"
    +
    +#: ../../extensions/agents_modules.php:465 ../../include/functions_reports.php:795
    +msgid "Agents/Modules"
    +msgstr "Agents/Modules"
    +
    +#: ../../extensions/agents_modules.php:564
    +msgid "Agent/module view"
    +msgstr "Afficher agent/module"
    +
    +#: ../../extensions/agents_modules.php:605
    +msgid "Filters "
    +msgstr "Filtres "
    +
    +#: ../../extensions/agents_modules.php:605
    +msgid "Secondary groups and agent subgroups will be taken into account."
    +msgstr "Les groupes secondaires et les sous-groupes d'agents seront pris en compte."
    +
    +#: ../../extensions/agents_modules.php:750
    +#: ../../include/functions_reporting.php:2986
    +msgid "There are no agents with modules"
    +msgstr "Aucun agent avec des modules"
    +
    +#: ../../extensions/agents_modules.php:765
    +msgid "Previous modules"
    +msgstr "Modules prƩcƩdents"
    +
    +#: ../../extensions/agents_modules.php:791
    +msgid "More modules"
    +msgstr "Plus de modules"
    +
    +#: ../../extensions/agents_modules.php:934
    +#: ../../include/functions_reporting_html.php:2069
    +msgid "Orange cell when the module has fired alerts"
    +msgstr "Cellule orange quand le module contient des alertes dƩclenchƩes"
    +
    +#: ../../extensions/agents_modules.php:936
    +#: ../../include/functions_reporting_html.php:2070
    +msgid "Red cell when the module has a critical status"
    +msgstr "Cellule rouge quand le module se trouve en Ć©tat critique"
    +
    +#: ../../extensions/agents_modules.php:939
    +#: ../../include/functions_reporting_html.php:2071
    +msgid "Yellow cell when the module has a warning status"
    +msgstr "Cellule jaune quand le module se trouve en Ć©tat d'alerte"
    +
    +#: ../../extensions/agents_modules.php:941
    +#: ../../include/functions_reporting_html.php:2072
    +msgid "Green cell when the module has a normal status"
    +msgstr "Cellule verte quand le module se trouve en Ć©tat normal"
    +
    +#: ../../extensions/agents_modules.php:943
    +#: ../../include/functions_reporting_html.php:2073
    +msgid "Grey cell when the module has an unknown status"
    +msgstr "Cellule grise quand le module se trouve en Ć©tat inconnu"
    +
    +#: ../../extensions/agents_modules.php:945
    +msgid "Cell turns blue when the module is in 'not initialize' status"
    +msgstr "Cellule devient bleue quand le module se trouve en Ć©tat Ā« non initialisĆ© Ā»"
    +
    +#: ../../extensions/agents_modules.php:959
    +msgid "Agents/Modules view"
    +msgstr "Afficher agents/modules"
    +
    +#: ../../extensions/pandora_logs.php:29
    +msgid "Cannot find file"
    +msgstr "Fichier introuvable"
    +
    +#: ../../extensions/pandora_logs.php:34
    +msgid "File is too large than PHP memory allocated in the system."
    +msgstr ""
    +"La taille du fichier est supƩrieure Ơ celle de la mƩmoire PHP allouƩe dans le "
    +"systĆØme."
    +
    +#: ../../extensions/pandora_logs.php:35
    +msgid "The preview file is imposible."
    +msgstr "Impossible d'obtenir un aperƧu du fichier."
    +
    +#: ../../extensions/pandora_logs.php:38 ../../extensions/pandora_logs.php:45
    +msgid "The folder /var/log/pandora must have pandora:apache and its content too."
    +msgstr "Le dossier /var/log/pandora doit avoir pandora:apache et son contenu aussi."
    +
    +#: ../../extensions/pandora_logs.php:67
    +msgid "System logfile viewer"
    +msgstr "Visualiseur de l'historique du systĆØme"
    +
    +#: ../../extensions/pandora_logs.php:69
    +#, php-format
    +msgid "Use this tool to view your %s logfiles directly on the console"
    +msgstr ""
    +"Utilisez cet outil pour afficher vos %s fichiers journaux directement sur la "
    +"console"
    +
    +#: ../../extensions/pandora_logs.php:71
    +msgid ""
    +"You can choose the amount of information shown in general setup (Log size limit "
    +"in system logs viewer extension), "
    +msgstr ""
    +"Vous pouvez dƩterminer la quantitƩ d'information affichƩe dans la configuration "
    +"gĆ©nĆ©rale (taille limite dans l'extension du visualiseur des journaux du systĆØme) "
    +
    +#: ../../extensions/pandora_logs.php:85
    +msgid "System logfiles"
    +msgstr "Historique du systĆØme"
    +
    +#: ../../extensions/files_repo/functions_files_repo.php:28
    +#: ../../extensions/files_repo/functions_files_repo.php:46
    +msgid "Attachment directory is not writable by HTTP Server"
    +msgstr ""
    +"Le rĆ©pertoire des piĆØces jointes n'est pas accessible en Ć©criture par le serveur "
    +"HTTP"
    +
    +#: ../../extensions/files_repo/functions_files_repo.php:28
    +#: ../../extensions/files_repo/functions_files_repo.php:46
    +#, php-format
    +msgid "Please check that the web server has write rights on the %s directory"
    +msgstr ""
    +"Veuillez vĆ©rifier que le serveur web possĆØde les droits d'Ć©criture pour le "
    +"rƩpertoire %s"
    +
    +#: ../../extensions/files_repo/functions_files_repo.php:248
    +msgid "The file could not be copied"
    +msgstr "Le fichier n'a pas pu ĆŖtre copiĆ©"
    +
    +#: ../../extensions/files_repo/functions_files_repo.php:251
    +msgid "There was an error creating the file"
    +msgstr "Erreur de crƩation du fichier"
    +
    +#: ../../extensions/files_repo/functions_files_repo.php:295
    +msgid "There was an error updating the file"
    +msgstr "Erreur de mise Ć  jour du fichier"
    +
    +#: ../../extensions/files_repo/files_repo_get_file.php:66
    +msgid "Unreliable petition"
    +msgstr "Demande peu fiable"
    +
    +#: ../../extensions/files_repo/files_repo_get_file.php:66
    +msgid "Please contact the administrator"
    +msgstr "Veuillez communiquer avec l'administrateur"
    +
    +#: ../../extensions/files_repo/files_repo_form.php:84
    +msgid "Only 200 characters are permitted"
    +msgstr "Seulement 200 caractĆØres sont autorisĆ©s"
    +
    +#: ../../extensions/files_repo/files_repo_form.php:95
    +#: ../../godmode/extensions.php:138
    +msgid "File"
    +msgstr "Fichier"
    +
    +#: ../../extensions/files_repo/files_repo_form.php:98
    +#: ../../extensions/files_repo/files_repo_form.php:104
    +#: ../../extensions/files_repo/files_repo_list.php:112
    +msgid "Public link"
    +msgstr "Lien publique"
    +
    +#: ../../extensions/files_repo/files_repo_list.php:58
    +#: ../../include/functions_filemanager.php:605
    +msgid "Last modification"
    +msgstr "DerniĆØre modification"
    +
    +#: ../../extensions/files_repo/files_repo_list.php:106
    +msgid "Copy to clipboard"
    +msgstr "Copier dans le presse-papier"
    +
    +#: ../../extensions/files_repo/files_repo_list.php:164
    +#: ../../include/functions_reporting_html.php:2101
    +#: ../../include/functions_reporting_html.php:2105
    +msgid "No items"
    +msgstr "Aucun ƩlƩment"
    +
    +#: ../../extensions/module_groups.php:48
    +msgid "Counters Module"
    +msgstr "Module Compteurs"
    +
    +#: ../../extensions/module_groups.php:49
    +msgid "Alerts_Fired"
    +msgstr "Alerts_Fired"
    +
    +#: ../../extensions/module_groups.php:51
    +msgid "warning"
    +msgstr "avertissement"
    +
    +#: ../../extensions/module_groups.php:54
    +msgid "Not_init"
    +msgstr "Not_init"
    +
    +#: ../../extensions/module_groups.php:251
    +msgid "Combined table of agent group and module group"
    +msgstr "Tableau combinƩ du groupe agent et du groupe module"
    +
    +#: ../../extensions/module_groups.php:275
    +msgid "Search by agent group"
    +msgstr "Recherche par groupe d'agents"
    +
    +#: ../../extensions/module_groups.php:279
    +msgid "Search by module group"
    +msgstr "Recherche par groupe de modules"
    +
    +#: ../../extensions/module_groups.php:392
    +msgid "Orange cell when the module group and agent have at least one alarm fired."
    +msgstr ""
    +"Cellule orange quand le groupe du module et l'agent ont au moins une alerte "
    +"declenchƩe."
    +
    +#: ../../extensions/module_groups.php:393
    +msgid ""
    +"Red cell when the module group and agent have at least one module in critical "
    +"status and the others in any status"
    +msgstr ""
    +"Cellule rouge quand le groupe du module et l'agent ont au moins un module dans un "
    +"Ć©tat critique et le reste dans n'importe quel Ć©tat"
    +
    +#: ../../extensions/module_groups.php:394
    +msgid ""
    +"Yellow cell when the module group and agent have at least one in warning status "
    +"and the others in grey or green status"
    +msgstr ""
    +"Cellule jaune quand le groupe du module et l'agent ont au moins un module dans un "
    +"Ć©tat d'alerte et le reste dans un Ć©tat gris ou vert"
    +
    +#: ../../extensions/module_groups.php:395
    +msgid ""
    +"Grey cell when the module group and agent have at least one in unknown status and "
    +"the others in green status"
    +msgstr ""
    +"Cellule grise quand le groupe de module et l'agent ont au moins un module dans un "
    +"Ć©tat inconnu et le reste dans Ć©tat vert"
    +
    +#: ../../extensions/module_groups.php:396
    +msgid "Green cell when the module group and agent have all modules in OK status"
    +msgstr ""
    +"Cellule verte quand le groupe du module et l'agent prƩsentent tous les modules "
    +"dans un Ć©tat OK"
    +
    +#: ../../extensions/module_groups.php:397
    +msgid ""
    +"Blue cell when the module group and agent have all modules in not init status."
    +msgstr ""
    +"Cellule bleue quand le groupe de modules et l'agent prƩsentent tous les modules "
    +"dans un Ć©tat de non initialisation."
    +
    +#: ../../extensions/module_groups.php:401
    +msgid ""
    +"This table shows in columns the modules group and in rows agents group. The cell "
    +"shows all modules"
    +msgstr ""
    +"Cette table prƩsente les groupes de modules en colonnes  et les groupes d'agents "
    +"en rangƩes. La cellule affiche tous les modules"
    +
    +#: ../../extensions/module_groups.php:402
    +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:106
    +#: ../../include/lib/Dashboard/Widgets/tree_view.php:330
    +#: ../../operation/tree.php:102
    +msgid "Module groups"
    +msgstr "Groupes de modules"
    +
    +#: ../../extensions/insert_data.php:58
    +msgid "Insert data"
    +msgstr "Introduire les donnƩs"
    +
    +#: ../../extensions/insert_data.php:89
    +msgid "You haven't privileges for insert data in the agent."
    +msgstr "Vous n'avez pas de privilĆØges pour introduire des donnĆ©es dans l'agent"
    +
    +#: ../../extensions/insert_data.php:125
    +#, php-format
    +msgid "Can't save agent (%s), module (%s) data xml."
    +msgstr "Impossible de sauvegarder l'agent (%s), module (%s) de donnƩs XML"
    +
    +#: ../../extensions/insert_data.php:134
    +#, php-format
    +msgid "Save agent (%s), module (%s) data xml."
    +msgstr "Sauvegarder l'agent (%s), module (%s) de donnƩs xml"
    +
    +#: ../../extensions/insert_data.php:145
    +#, php-format
    +msgid ""
    +"Please check that the directory \"%s\" is writeable by the apache user. 

    The CSV file format is date;value<newline>date;value<" +"newline>... The date in CSV is in format Y/m/d H:i:s." +msgstr "" +"Veuillez vĆ©rifier que le rĆ©pertoire Ā« %s Ā» est accessible en Ć©criture par " +"l'utilisateur apache.

    Le format de fichier CSV est date;value<" +"newline>date;value<newline>... La date CSV est en format A/M/J H:i:s." + +#: ../../extensions/insert_data.php:273 +msgid "Insert Data" +msgstr "Introduire les donnĆ©es" + +#: ../../extensions/realtime_graphs.php:58 ../../extensions/realtime_graphs.php:268 +msgid "Realtime graphs" +msgstr "Graphiques en temps rĆ©el" + +#: ../../extensions/realtime_graphs.php:134 +#, php-format +msgid "%s Server CPU" +msgstr "%s CPU du serveur" + +#: ../../extensions/realtime_graphs.php:136 +#, php-format +msgid "Pending packages from %s Server" +msgstr "Paquets en attente du serveur %s" + +#: ../../extensions/realtime_graphs.php:140 +#, php-format +msgid "%s Server Disk IO Wait" +msgstr "%s Disk IO serveur attente" + +#: ../../extensions/realtime_graphs.php:144 +#, php-format +msgid "%s Server Apache load" +msgstr "%s Apache serveur charge" + +#: ../../extensions/realtime_graphs.php:148 +#, php-format +msgid "%s Server MySQL load" +msgstr "%s MySQL serveur charge" + +#: ../../extensions/realtime_graphs.php:152 +#, php-format +msgid "%s Server load" +msgstr "%s Serveur charge" + +#: ../../extensions/realtime_graphs.php:155 +msgid "SNMP Interface throughput" +msgstr "DĆ©bit de l'interface SNMP" + +#: ../../extensions/realtime_graphs.php:206 +msgid "Refresh interval" +msgstr "Intervalle d'actualisation" + +#: ../../extensions/realtime_graphs.php:217 +#: ../../godmode/modules/manage_network_components_form_wizard.php:135 +msgid "Incremental" +msgstr "Croissant" + +#: ../../extensions/realtime_graphs.php:222 +msgid "Clear graph" +msgstr "Supprimer le graphique" + +#: ../../extensions/realtime_graphs.php:249 +#: ../../godmode/agentes/module_manager_editor_network.php:43 +msgid "Use this OID" +msgstr "Utiliser cet OID" + +#: ../../extensions/users_connected.php:37 ../../extensions/users_connected.php:209 +msgid "Users connected" +msgstr "Utilisateurs connectĆ©s" + +#: ../../extensions/users_connected.php:42 +msgid "This user does not have any associated profile" +msgstr "Cet utilisateur n'a pas de profil associĆ©" + +#: ../../extensions/users_connected.php:132 +msgid "No other users connected" +msgstr "Aucun autre utilisateur connectĆ©" + +#: ../../extensions/users_connected.php:145 +msgid "Last login" +msgstr "DerniĆØre connexion" + +#: ../../godmode/modules/manage_nc_groups_form.php:54 +msgid "Update Group Component" +msgstr "Mettre Ć  jour le composant de groupe" + +#: ../../godmode/modules/manage_nc_groups_form.php:56 +msgid "Create Group Component" +msgstr "CrĆ©er un composant de groupe" + +#: ../../godmode/modules/manage_network_templates_form.php:32 +#: ../../godmode/modules/manage_network_templates.php:39 +#: ../../include/class/ModuleTemplates.class.php:199 +#: ../../include/class/ModuleTemplates.class.php:217 +#: ../../include/class/ModuleTemplates.class.php:227 +msgid "Module template management" +msgstr "Gestion de modĆØle de module" + +#: ../../godmode/modules/manage_network_templates_form.php:59 +msgid "Successfully deleted module from profile" +msgstr "Module supprimĆ© du profil correctement" + +#: ../../godmode/modules/manage_network_templates_form.php:60 +msgid "Error deleting module from profile" +msgstr "Erreur de suppression du module dans le profil" + +#: ../../godmode/modules/manage_network_templates_form.php:79 +msgid "Successfully added module to profile" +msgstr "Module ajoutĆ© au profil correctement" + +#: ../../godmode/modules/manage_network_templates_form.php:80 +msgid "Error adding module to profile" +msgstr "Erreur d'ajout du module au profil" + +#: ../../godmode/modules/manage_network_templates_form.php:113 +msgid "Successfully updated network profile" +msgstr "Profil de rĆ©seau mis Ć  jour correctement" + +#: ../../godmode/modules/manage_network_templates_form.php:114 +msgid "Error updating network profile" +msgstr "Erreur de mise Ć  jour du profil de rĆ©seau" + +#: ../../godmode/modules/manage_network_templates_form.php:138 +msgid "Successfully added network profile" +msgstr "Profil de rĆ©seau mis Ć  jour correctement" + +#: ../../godmode/modules/manage_network_templates_form.php:139 +msgid "Error adding network profile" +msgstr "Erreur d'ajout du profil de rĆ©seau" + +#: ../../godmode/modules/manage_network_templates_form.php:145 +msgid "Cannot create a template without name" +msgstr "Impossible de crĆ©er un modĆØle sans nom" + +#: ../../godmode/modules/manage_network_templates_form.php:219 +msgid "No modules for this profile" +msgstr "Aucun module pour ce profil" + +#: ../../godmode/modules/manage_network_templates_form.php:260 +#: ../../operation/snmpconsole/snmp_browser.php:155 +#: ../../operation/snmpconsole/snmp_browser.php:175 +msgid "Add modules" +msgstr "Ajouter des modules" + +#: ../../godmode/modules/manage_nc_groups.php:40 +msgid "Component group management" +msgstr "Gestion de groupes de composants" + +#: ../../godmode/modules/manage_nc_groups.php:293 +#, php-format +msgid "" +"This node is configured with centralized mode. Component groups are read only. Go " +"to %s to manage it." +msgstr "" +"Ce nœud est configurĆ© en mode centralisĆ©. Les groupes de composants sont en " +"lecture seule. Allez dans %s pour le gĆ©rer." + +#: ../../godmode/modules/manage_nc_groups.php:311 +msgid "There are no defined component groups" +msgstr "Aucun groupe de composants dĆ©fini" + +#: ../../godmode/modules/manage_network_components_form_common.php:712 +#: ../../godmode/agentes/module_manager_editor_common.php:2000 +msgid "Please introduce a positive percentage value" +msgstr "Veuillez introduire une valeur de pourcentage positive" + +#: ../../godmode/modules/manage_network_components_form_network.php:72 +msgid "SNMP Enterprise String" +msgstr "ChaĆ®ne SNMP Enterprise" + +#: ../../godmode/modules/manage_network_components_form_network.php:191 +#: ../../godmode/modules/manage_network_components_form_wizard.php:315 +msgid "Name OID" +msgstr "Nom OID" + +#: ../../godmode/modules/manage_network_components_form_wmi.php:41 +#: ../../godmode/agentes/module_manager_editor_wmi.php:87 +msgid "Namespace" +msgstr "Espace de noms" + +#: ../../godmode/modules/manage_network_components_form.php:355 +msgid "Update Network Component" +msgstr "Mettre Ć  jour le composant de rĆ©seau" + +#: ../../godmode/modules/manage_network_components_form.php:357 +msgid "Create Network Component" +msgstr "CrĆ©er un composant de rĆ©seau" + +#: ../../godmode/modules/manage_network_components.php:290 +msgid "Remote component management" +msgstr "Gestion des composants Ć  distance" + +#: ../../godmode/modules/manage_network_components.php:313 +#, php-format +msgid "" +"This node is configured with centralized mode. All remote components are read " +"only. Go to %s to manage them." +msgstr "" +"Ce nœud est configurĆ© en mode centralisĆ©. Tous les composants distants sont en " +"lecture seule. AccĆ©dez Ć  %s pour les gĆ©rer." + +#: ../../godmode/modules/manage_network_components.php:424 +msgid "Could not be created because the component exists" +msgstr "Impossible de crĆ©er car le composant existe" + +#: ../../godmode/modules/manage_network_components.php:660 +msgid "Search by name, description, tcp send or tcp rcv, list matches." +msgstr "" +"Rechercher par nom, description, TCP envoyĆ© ou TCP reƧu, concordances de listes." + +#: ../../godmode/modules/manage_network_components.php:753 +msgid "Max/Min" +msgstr "Max/Min" + +#: ../../godmode/modules/manage_network_components.php:804 +#: ../../include/class/ModuleTemplates.class.php:1234 +msgid "Network module" +msgstr "Module de rĆ©seau" + +#: ../../godmode/modules/manage_network_components.php:815 +#: ../../include/class/ModuleTemplates.class.php:1245 +msgid "WMI module" +msgstr "Module WMI" + +#: ../../godmode/modules/manage_network_components.php:826 +#: ../../include/class/ModuleTemplates.class.php:1256 +msgid "Plug-in module" +msgstr "Module de plugin" + +#: ../../godmode/modules/manage_network_components.php:837 +msgid "Wizard module" +msgstr "Module assistant" + +#: ../../godmode/modules/manage_network_components.php:910 +msgid "There are no defined network components" +msgstr "Aucun composant de rĆ©seau dĆ©fini" + +#: ../../godmode/modules/manage_network_components.php:921 +msgid "Create a new network component" +msgstr "CrĆ©er un nouveau composant de rĆ©seau" + +#: ../../godmode/modules/manage_network_components.php:922 +msgid "Create a new plugin component" +msgstr "CrĆ©er un nouveau composant de plugin" + +#: ../../godmode/modules/manage_network_components.php:923 +msgid "Create a new WMI component" +msgstr "CrĆ©er un nouveau composant de WMI" + +#: ../../godmode/modules/manage_network_components.php:924 +msgid "Create a new wizard component" +msgstr "CrĆ©er un nouveau composant d'assistant" + +#: ../../godmode/modules/manage_network_components_form_wizard.php:92 +msgid "Add a macro oid" +msgstr "Ajoute une macro oie" + +#: ../../godmode/modules/manage_network_components_form_wizard.php:110 +msgid "Remove last macro oid" +msgstr "Supprimer le dernier oid de macro" + +#: ../../godmode/modules/manage_network_components_form_wizard.php:134 +msgid "Numeric" +msgstr "NumĆ©rique" + +#: ../../godmode/modules/manage_network_components_form_wizard.php:136 +msgid "Boolean" +msgstr "BoolĆ©en" + +#: ../../godmode/modules/manage_network_components_form_wizard.php:137 +msgid "Alphanumeric" +msgstr "AlphanumĆ©rique" + +#: ../../godmode/modules/manage_network_components_form_wizard.php:258 +msgid "Add by default" +msgstr "Ajouter par dĆ©faut" + +#: ../../godmode/modules/manage_network_components_form_wizard.php:286 +msgid "Module protocol" +msgstr "Protocole du module" + +#: ../../godmode/modules/manage_network_components_form_wizard.php:302 +msgid "Protocol" +msgstr "Protocole" + +#: ../../godmode/modules/manage_network_components_form_wizard.php:318 +msgid "Manufacturer ID" +msgstr "ID du manufacturier" + +#: ../../godmode/modules/manage_network_components_form_wizard.php:350 +msgid "Component Group" +msgstr "Groupe de composants" + +#: ../../godmode/modules/manage_network_components_form_wizard.php:368 +msgid "Module unit" +msgstr "UnitĆ© du Module" + +#: ../../godmode/modules/manage_network_components_form_wizard.php:458 +msgid "Scan Type" +msgstr "Type de scan" + +#: ../../godmode/modules/manage_network_components_form_wizard.php:472 +#: ../../godmode/agentes/planned_downtime.list.php:321 +msgid "Execution type" +msgstr "Type d'exĆ©cution" + +#: ../../godmode/modules/manage_network_components_form_wizard.php:492 +msgid "Value OID" +msgstr "Valeur OID" + +#: ../../godmode/modules/manage_network_components_form_wizard.php:509 +msgid "Macros OID" +msgstr "OID des macros" + +#: ../../godmode/modules/manage_network_components_form_wizard.php:517 +#: ../../godmode/modules/manage_network_components_form_wizard.php:702 +msgid "Value operation" +msgstr "OpĆ©ration de valeur" + +#: ../../godmode/modules/manage_network_components_form_wizard.php:534 +#: ../../godmode/modules/manage_network_components_form_wizard.php:719 +msgid "Satellite execution" +msgstr "ExĆ©cution du Satellite" + +#: ../../godmode/modules/manage_network_components_form_wizard.php:551 +#: ../../godmode/modules/manage_network_components_form_wizard.php:736 +msgid "Server plugin" +msgstr "Plugin du serveur" + +#: ../../godmode/modules/manage_network_components_form_wizard.php:589 +msgid "WMI class" +msgstr "Classe WMI" + +#: ../../godmode/modules/manage_network_components_form_wizard.php:606 +msgid "Query key field" +msgstr "Champ de clĆ© de requĆŖte" + +#: ../../godmode/modules/manage_network_components_form_wizard.php:623 +msgid "Query extra fields" +msgstr "Champs extra de requĆŖtes" + +#: ../../godmode/modules/manage_network_components_form_wizard.php:631 +msgid "Query filters" +msgstr "Filtres de requĆŖte" + +#: ../../godmode/modules/manage_network_components_form_wizard.php:674 +msgid "Field value" +msgstr "Valeur de champ" + +#: ../../godmode/modules/module_list.php:29 +msgid "Defined modules" +msgstr "Modules dĆ©finis" + +#: ../../godmode/modules/module_list.php:51 +msgid "Problem modifying module" +msgstr "ProblĆØme de modification du module" + +#: ../../godmode/modules/module_list.php:53 +msgid "Module updated successfully" +msgstr "Module mis Ć  jour correctement" + +#: ../../godmode/modules/manage_network_templates.php:84 +msgid "Error deleting template" +msgstr "Erreur de suppression du modĆØle" + +#: ../../godmode/modules/manage_network_templates.php:124 +msgid "This template does not exist" +msgstr "Ce modĆØle n'existe pas" + +#: ../../godmode/modules/manage_network_templates.php:304 +msgid "There are no defined network profiles" +msgstr "Aucun profil de rĆ©seau dĆ©fini" + +#: ../../godmode/db/db_main.php:74 +msgid "Current database maintenance setup" +msgstr "Configuration actuelle de gestion de la base de donnĆ©es" + +#: ../../godmode/db/db_main.php:80 +msgid "Database setup" +msgstr "Configuration de la base de donnĆ©es" + +#: ../../godmode/db/db_main.php:84 +msgid "Max. time before compact data" +msgstr "Temps maximum avant de comprimer les donnĆ©es" + +#: ../../godmode/db/db_main.php:90 +msgid "Max. time before purge" +msgstr "Temps maximum avant nettoyage" + +#: ../../godmode/db/db_main.php:98 ../../include/class/Diagnostics.class.php:230 +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:569 +#: ../../include/functions_reporting.php:14085 +msgid "Total events" +msgstr "Nombre total d'Ć©vĆ©nements" + +#: ../../godmode/db/db_main.php:114 +msgid "Total data items (tagente_datos)" +msgstr "Nombre total d'Ć©lĆ©ments de donnĆ©es (tagente_datos)" + +#: ../../godmode/db/db_main.php:127 +msgid "Total log4x items (tagente_datos_log4x)" +msgstr "Nombre total d'Ć©lĆ©ments log4x (tagente_datos_log4x)" + +#: ../../godmode/db/db_main.php:140 +msgid "Total data string items (tagente_datos_string)" +msgstr "Nombre d'Ć©lĆ©ments de chaĆ®nes de donnĆ©es (tagente_datos_string)" + +#: ../../godmode/db/db_main.php:146 +msgid "Total modules configured" +msgstr "Nombre total de modules configurĆ©s" + +#: ../../godmode/db/db_main.php:154 +msgid "Total agent access records" +msgstr "Nombre total d'enregistrements d'accĆØs des agents" + +#: ../../godmode/db/db_main.php:166 +msgid "Database sanity" +msgstr "SantĆ© de la base de donnĆ©s" + +#: ../../godmode/db/db_main.php:170 +msgid "Total uknown agents" +msgstr "Nombre total d'agents inconnus" + +#: ../../godmode/db/db_main.php:176 +msgid "Total non-init modules" +msgstr "Nombre total de modules non-initialisĆ©s" + +#: ../../godmode/db/db_main.php:185 +msgid "Last time on DB maintance" +msgstr "Dernier accĆØs Ć  la gestion de la BD" + +#: ../../godmode/db/db_main.php:208 +#, php-format +msgid "" +"Please make sure your %s Server settings are correct and that the database " +"maintenance daemon is running. It's very important to keep your database up to " +"date in order to get the best performance and results from %s." +msgstr "" +"Veuillez vous assurer que vos %s paramĆØtres de serveur sont corrects et que le " +"dĆ©mon de maintenance de la base de donnĆ©es est en cours d'exĆ©cution. Il est trĆØs " +"important de maintenir votre base de donnĆ©es Ć  jour afin d'obtenir les meilleures " +"performances et rĆ©sultats de %s." + +#: ../../godmode/groups/configure_group.php:87 +#: ../../godmode/groups/configure_modu_group.php:49 +msgid "There was a problem loading group" +msgstr "Erreur de chargement du groupe" + +#: ../../godmode/groups/configure_group.php:106 +msgid "Update group" +msgstr "Mettre Ć  jour le groupe" + +#: ../../godmode/groups/configure_group.php:108 +#: ../../godmode/groups/group_list.php:981 +msgid "Create group" +msgstr "CrĆ©er un groupe" + +#: ../../godmode/groups/configure_group.php:126 +#: ../../godmode/groups/group_list.php:384 +msgid "Manage agents group" +msgstr "GĆ©rer le groupe d'agents" + +#: ../../godmode/groups/configure_group.php:138 +msgid "Update Group" +msgstr "Mettre Ć  jour le groupe" + +#: ../../godmode/groups/configure_group.php:140 +msgid "Create Group" +msgstr "CrĆ©er un groupe" + +#: ../../godmode/groups/configure_group.php:178 +msgid "You have not access to the parent." +msgstr "Vous n'avez pas accĆØs au parent" + +#: ../../godmode/groups/configure_group.php:226 +msgid "Group Password" +msgstr "Mot de passe du groupe" + +#: ../../godmode/groups/configure_group.php:230 +msgid "Enable alert use in this group." +msgstr "Activer l'utilisation des alertes dans ce groupe." + +#: ../../godmode/groups/configure_group.php:234 +msgid "Propagate ACL" +msgstr "Propager ACL" + +#: ../../godmode/groups/configure_group.php:234 +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:4662 +msgid "Contact" +msgstr "Contact" + +#: ../../godmode/groups/configure_group.php:246 +msgid "Contact information accessible through the _groupcontact_ macro" +msgstr "Information de contact accessible via la _groupcontact_ macro" + +#: ../../godmode/groups/configure_group.php:250 +msgid "Information accessible through the _group_other_ macro" +msgstr "Information accessible par la _group_other_ macro" + +#: ../../godmode/groups/configure_group.php:259 +msgid "Max agents allowed" +msgstr "Nombre maximum d'agents autorisĆ©s" + +#: ../../godmode/groups/configure_group.php:259 +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 +msgid "Tree Group view" +msgstr "Vue de groupe dā€™arbre" + +#: ../../godmode/groups/group_list.php:333 +msgid "Credential Store" +msgstr "EntrepĆ“t dā€™identifiants" + +#: ../../godmode/groups/group_list.php:339 +#, php-format +msgid "Groups defined in %s" +msgstr "Groupes dĆ©finis dans %s" + +#: ../../godmode/groups/group_list.php:349 ../../godmode/menu.php:212 +msgid "Credential store" +msgstr "EntrepĆ“t dā€™identifiants" + +#: ../../godmode/groups/group_list.php:365 +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 +#, php-format +msgid "" +"This node is configured with centralized mode. All groups information is read " +"only. Go to %s to manage it." +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/modu_group_list.php:119 +msgid "Group successfully created" +msgstr "Groupe crĆ©Ć© correctement" + +#: ../../godmode/groups/group_list.php:470 +#: ../../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 +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 +msgid "Group must have a name" +msgstr "Le groupe doit avoir un nom" + +#: ../../godmode/groups/group_list.php:540 +#: ../../godmode/groups/modu_group_list.php:155 +msgid "Group successfully updated" +msgstr "Groupe mis Ć  jour correctement" + +#: ../../godmode/groups/group_list.php:542 +#: ../../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 +#, 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 +msgid "" +"The group has not been deleted in the metaconsole due to an error in the node " +"database" +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 +#, 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/modu_group_list.php:229 +msgid "Group successfully deleted" +msgstr "Groupe supprimĆ© correctement" + +#: ../../godmode/groups/group_list.php:723 +#: ../../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 +#, 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 +msgid "There are no defined groups" +msgstr "Aucun groupe dĆ©fini" + +#: ../../godmode/groups/group_list.php:924 +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 +msgid "The child groups will be updated to use the parent id of the deleted group" +msgstr "" +"Les groupes fils seront mis Ć  jour pour utiliser l'identifiant parent du groupe " +"supprimĆ©" + +#: ../../godmode/groups/configure_modu_group.php:31 +msgid "Module group management" +msgstr "Gestion du groupe de module" + +#: ../../godmode/groups/modu_group_list.php:70 +#, php-format +msgid "Module groups defined in %s" +msgstr "Groupes de modules dĆ©finis dans %s" + +#: ../../godmode/groups/modu_group_list.php:92 +#, php-format +msgid "" +"This node is configured with centralized mode. All module groups information is " +"read only. Go to %s to manage it." +msgstr "" +"Ce nœud est configurĆ© en mode centralisĆ©. Toutes les informations sur les groupes " +"de modules sont en lecture seule. Allez dans %s pour le gĆ©rer." + +#: ../../godmode/groups/modu_group_list.php:127 +#: ../../godmode/groups/modu_group_list.php:163 +msgid "Each module group must have a different name" +msgstr "Chaque groupe de module doit avoir un nom diffĆ©rent" + +#: ../../godmode/groups/modu_group_list.php:131 +#: ../../godmode/groups/modu_group_list.php:167 +msgid "Module group must have a name" +msgstr "Le groupe du module doit avoir un nom" + +#: ../../godmode/groups/modu_group_list.php:294 +msgid "There are no defined module groups" +msgstr "Aucun groupe de module dĆ©fini" + +#: ../../godmode/groups/modu_group_list.php:303 +msgid "Create module group" +msgstr "CrĆ©er un groupe de modules" + +#: ../../godmode/extensions.php:28 +msgid "Defined extensions" +msgstr "Extensions dĆ©finies" + +#: ../../godmode/extensions.php:33 +msgid "There are no extensions defined" +msgstr "Aucune extension dĆ©finie" + +#: ../../godmode/extensions.php:141 +msgid "Godmode Function" +msgstr "Fonction Godmode" + +#: ../../godmode/extensions.php:142 +msgid "Godmode Menu" +msgstr "Menu Godmode" + +#: ../../godmode/extensions.php:143 +msgid "Operation Menu" +msgstr "Menu d'opĆ©ration" + +#: ../../godmode/extensions.php:144 +msgid "Operation Function" +msgstr "Fonction d'opĆ©ration" + +#: ../../godmode/extensions.php:145 +msgid "Login Function" +msgstr "Fonction de connexion" + +#: ../../godmode/extensions.php:146 +msgid "Agent operation tab" +msgstr "Onglet opĆ©ration de l'agent" + +#: ../../godmode/extensions.php:147 +msgid "Agent godmode tab" +msgstr "Onglet Godmode de l'agent" + +#: ../../godmode/update_manager/update_manager.setup.php:271 +msgid "Warp Update URL" +msgstr "URL de Warp Update" + +#: ../../godmode/update_manager/update_manager.setup.php:275 +msgid "URL update manager" +msgstr "URL Gestionnaire de mises Ć  jour" + +#: ../../godmode/update_manager/update_manager.setup.php:282 +msgid "Use secured Warp Update" +msgstr "UtiliserWarp Update sĆ©curisĆ©" + +#: ../../godmode/update_manager/update_manager.setup.php:291 +#: ../../godmode/update_manager/update_manager.setup.php:295 +msgid "Proxy server" +msgstr "Serveur Proxy" + +#: ../../godmode/update_manager/update_manager.setup.php:301 +#: ../../godmode/update_manager/update_manager.setup.php:305 +msgid "Proxy port" +msgstr "Port proxy" + +#: ../../godmode/update_manager/update_manager.setup.php:311 +#: ../../godmode/update_manager/update_manager.setup.php:315 +msgid "Proxy user" +msgstr "Utilisateur proxy" + +#: ../../godmode/update_manager/update_manager.setup.php:321 +#: ../../godmode/update_manager/update_manager.setup.php:325 +msgid "Proxy password" +msgstr "Mot de passe du proxy" + +#: ../../godmode/update_manager/update_manager.setup.php:331 +msgid "Allow no-consecutive patches" +msgstr "Autoriser les patchs non consĆ©cutifs" + +#: ../../godmode/update_manager/update_manager.setup.php:340 +msgid "Limit to LTS updates" +msgstr "Limite aux mises Ć  jour LTS :" + +#: ../../godmode/update_manager/update_manager.setup.php:350 +msgid "Registration ID" +msgstr "ID dā€™inscription" + +#: ../../godmode/update_manager/update_manager.setup.php:351 +msgid "Not registred yet" +msgstr "Pas encore enregistrĆ©" + +#: ../../godmode/update_manager/update_manager.setup.php:354 +msgid "Cancel registration" +msgstr "Annuler lā€™inscription" + +#: ../../godmode/update_manager/update_manager.setup.php:366 +msgid "Unregister" +msgstr "DĆ©sinscription" + +#: ../../godmode/update_manager/update_manager.setup.php:371 +#, php-format +msgid "%s community reminder" +msgstr "Rappel de la communautĆ© %s" + +#: ../../godmode/update_manager/update_manager.setup.php:371 +#, php-format +msgid "" +"Every 8 days, a message is displayed to admin users to remember to register this " +"%s instance" +msgstr "" +"Tous les 8 jours, un message est affichĆ© aux utilisateurs administrateurs pour " +"quā€™ils se souviennent dā€™enregistrer cette instance %s" + +#: ../../godmode/update_manager/update_manager.history.php:42 +msgid "Origin" +msgstr "Origine" + +#: ../../godmode/update_manager/update_manager.php:64 +#: ../../godmode/update_manager/update_manager.php:83 +msgid "Journal" +msgstr "Journal" + +#: ../../godmode/update_manager/update_manager.php:71 +msgid "Offline update" +msgstr "Mise Ć  jour hors ligne" + +#: ../../godmode/update_manager/update_manager.php:78 +msgid "Online update" +msgstr "Mise Ć  jour en ligne" + +#: ../../godmode/update_manager/update_manager.php:91 +msgid "Offline" +msgstr "Hors ligne" + +#: ../../godmode/update_manager/update_manager.php:96 +msgid "Online" +msgstr "En ligne" + +#: ../../godmode/update_manager/update_manager.php:159 +msgid "Please register on metaconsole first." +msgstr "Veuillez dā€™abord vous inscrire sur la MĆ©taconsole." + +#: ../../godmode/users/profile_list.php:84 +#: ../../godmode/users/configure_profile.php:76 +#, php-format +msgid "Profiles defined on %s" +msgstr "Profils dĆ©finis sur %s" + +#: ../../godmode/users/profile_list.php:115 +#, php-format +msgid "" +"This node is configured with centralized mode. All profiles information is read " +"only. Go to %s to manage it." +msgstr "" +"Ce nœud est configurĆ© en mode centralisĆ©. Toutes les informations des profils " +"sont en lecture seule. Allez vers %s pour le gĆ©rer." + +#: ../../godmode/users/profile_list.php:127 ../../godmode/users/user_list.php:341 +msgid "There was a problem deleting the profile" +msgstr "Erreur de suppression du profil" + +#: ../../godmode/users/profile_list.php:254 +msgid "There was a problem updating this profile" +msgstr "Erreur de mise Ć  jour du profil" + +#: ../../godmode/users/profile_list.php:257 +msgid "Profile name cannot be empty" +msgstr "Le nom du profil ne peut pas ĆŖtre vide" + +#: ../../godmode/users/profile_list.php:303 ../../godmode/users/profile_list.php:306 +msgid "There was a problem creating this profile" +msgstr "Erreur de crĆ©ation du profil" + +#: ../../godmode/users/profile_list.php:456 +msgid "There are no defined profiles" +msgstr "Aucun profil dĆ©fini" + +#: ../../godmode/users/configure_profile.php:142 +msgid "Create profile" +msgstr "CrĆ©er un profil" + +#: ../../godmode/users/configure_profile.php:147 +msgid "There was a problem loading profile" +msgstr "Erreur de chargement de profil" + +#: ../../godmode/users/configure_profile.php:239 +msgid "Update profile" +msgstr "Mettre Ć  jour le profil" + +#: ../../godmode/users/configure_profile.php:249 +msgid "Update Profile" +msgstr "Mettre Ć  jour le profil" + +#: ../../godmode/users/configure_profile.php:251 +msgid "Create Profile" +msgstr "CrĆ©er un profil" + +#: ../../godmode/users/configure_profile.php:272 +msgid "View agents" +msgstr "Afficher les agents" + +#: ../../godmode/users/configure_profile.php:276 +msgid "Disable agents" +msgstr "DĆ©sactiver les agents" + +#: ../../godmode/users/configure_profile.php:280 +msgid "Edit agents" +msgstr "Ɖditer les agents" + +#: ../../godmode/users/configure_profile.php:287 +msgid "Edit alerts" +msgstr "Ɖditer les alertes" + +#: ../../godmode/users/configure_profile.php:302 +msgid "Edit events" +msgstr "Modifier les Ć©vĆ©nements" + +#: ../../godmode/users/configure_profile.php:306 ../../godmode/events/events.php:133 +#: ../../operation/events/events.php:1416 +msgid "Manage events" +msgstr "GĆ©rer les Ć©vĆ©nements" + +#: ../../godmode/users/configure_profile.php:313 +msgid "View reports" +msgstr "Afficher les rapports" + +#: ../../godmode/users/configure_profile.php:317 +msgid "Edit reports" +msgstr "Modifier les rapports" + +#: ../../godmode/users/configure_profile.php:321 +msgid "Manage reports" +msgstr "GĆ©rer les rapports" + +#: ../../godmode/users/configure_profile.php:328 +msgid "View network maps" +msgstr "Afficher les cartes de rĆ©seau" + +#: ../../godmode/users/configure_profile.php:332 +msgid "Edit network maps" +msgstr "Modifier les cartes de rĆ©seau" + +#: ../../godmode/users/configure_profile.php:336 +msgid "Manage network maps" +msgstr "GĆ©rer les cartes de rĆ©seau" + +#: ../../godmode/users/configure_profile.php:343 +#: ../../include/functions_menu.php:496 +msgid "View visual console" +msgstr "Afficher la console visuelle" + +#: ../../godmode/users/configure_profile.php:347 +msgid "Edit visual console" +msgstr "Modifier la console visuelle" + +#: ../../godmode/users/configure_profile.php:351 +msgid "Manage visual console" +msgstr "GĆ©rer la console visuelle" + +#: ../../godmode/users/configure_profile.php:363 +msgid "View NCM data" +msgstr "Afficher les donnĆ©es du NCM" + +#: ../../godmode/users/configure_profile.php:367 +msgid "Operate NCM" +msgstr "Exploiter le NCM" + +#: ../../godmode/users/configure_profile.php:371 +msgid "Manage NCM" +msgstr "GĆ©rer le NCM" + +#: ../../godmode/users/configure_profile.php:378 +msgid "Manage users" +msgstr "GĆ©rer les utilisateurs" + +#: ../../godmode/users/configure_profile.php:385 +msgid "Manage database" +msgstr "GĆ©rer la base de donnĆ©es" + +#: ../../godmode/users/configure_profile.php:392 +#, php-format +msgid "%s management" +msgstr "gestion %s" + +#: ../../godmode/users/user_list.php:250 +#, php-format +msgid "Users defined on %s" +msgstr "Utilisateurs dĆ©finis sur %s" + +#: ../../godmode/users/user_list.php:287 ../../godmode/users/configure_user.php:151 +#, php-format +msgid "Deleted user %s" +msgstr "Supprimer l'utilisateur %s" + +#: ../../godmode/users/user_list.php:294 ../../godmode/users/user_list.php:332 +#: ../../godmode/users/configure_user.php:158 +msgid "There was a problem deleting the user" +msgstr "Erreur de suppression de l'utilisateur" + +#: ../../godmode/users/user_list.php:308 ../../godmode/users/configure_user.php:173 +#, php-format +msgid "Deleted user %s from metaconsole" +msgstr "Supprimer l'utilisateur %s de la MĆ©taconsole" + +#: ../../godmode/users/user_list.php:320 ../../godmode/users/configure_user.php:184 +#, php-format +msgid "Deleted user %s from %s" +msgstr "Supprimer l'utilisateur %s de %s" + +#: ../../godmode/users/user_list.php:326 ../../godmode/users/configure_user.php:190 +#, php-format +msgid "Successfully deleted from %s" +msgstr "SupprimĆ© de %s correctement" + +#: ../../godmode/users/user_list.php:327 ../../godmode/users/configure_user.php:191 +#, php-format +msgid "There was a problem deleting the user from %s" +msgstr "Erreur de suppression de l'utilisateur de %s" + +#: ../../godmode/users/user_list.php:367 +msgid "There was a problem disabling user" +msgstr "Erreur de dĆ©sactivation de l'utilisateur" + +#: ../../godmode/users/user_list.php:373 +msgid "There was a problem enabling user" +msgstr "Erreur d'activation de l'utilisateur" + +#: ../../godmode/users/user_list.php:432 ../../operation/users/user_edit.php:251 #, php-format msgid "" "This node is configured with centralized mode. All users information is read " @@ -12804,62 +33124,195 @@ msgstr "" "Ce nœud est configurĆ© en mode centralisĆ©. Toutes les informations des " "utilisateurs sont en lecture seule. Allez vers %s pour le gĆ©rer." +#: ../../godmode/users/user_list.php:484 +msgid "Profile / Group" +msgstr "Profil/Groupe" + +#: ../../godmode/users/user_list.php:665 ../../operation/search_users.php:63 +msgid "Administrator" +msgstr "Administrateur" + +#: ../../godmode/users/user_list.php:714 +msgid "Other profiles are also assigned." +msgstr "D'autres profils sont Ć©galement attribuĆ©s." + +#: ../../godmode/users/user_list.php:716 +msgid "" +"Other profiles you cannot manage are also assigned. These profiles are not shown. " +"You cannot enable/disable or delete this user." +msgstr "" +"D'autres profils que vous ne pouvez pas gĆ©rer sont Ć©galement attribuĆ©s. Ces " +"profils ne sont pas affichĆ©s. Vous ne pouvez pas activer/dĆ©sactiver ou supprimer " +"cet utilisateur." + +#: ../../godmode/users/user_list.php:723 ../../include/functions_reporting.php:4605 +#: ../../include/functions_reporting.php:4652 ../../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:873 ../../godmode/users/configure_user.php:208 +msgid "Create user" +msgstr "CrĆ©er un utilisateur" + +#: ../../godmode/users/user_list.php:876 ../../godmode/users/configure_user.php:316 +#, 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:206 +msgid "Update user" +msgstr "Mettre Ć  jour l'utilisateur" + +#: ../../godmode/users/configure_user.php:244 ../../operation/users/user_edit.php:31 +msgid "User detail editor" +msgstr "Ɖditeur d'information sur l'utilisateur" + +#: ../../godmode/users/configure_user.php:401 +msgid "User ID cannot be empty" +msgstr "L'identifiant de l'utilisateur ne peut pas ĆŖtre vide." + +#: ../../godmode/users/configure_user.php:408 +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:416 +msgid "Passwords cannot be empty" +msgstr "Les mots de passe ne peuvent pas ĆŖtre vides." + +#: ../../godmode/users/configure_user.php:423 +msgid "Passwords didn't match" +msgstr "Les mots de passe saisis ne sont pas identiques." + +#: ../../godmode/users/configure_user.php:482 +msgid "" +"Strict ACL is not recommended for admin users because performance could be " +"affected." +msgstr "" +"Les ACL strictes ne sont pas recommandĆ©es pour les administrateur parce que cela " +"pourrait affecter la performance." + +#: ../../godmode/users/configure_user.php:517 +#: ../../godmode/users/configure_user.php:803 +msgid "Profile added successfully" +msgstr "Profil ajoutĆ© correctement" + +#: ../../godmode/users/configure_user.php:518 +#: ../../godmode/users/configure_user.php:804 +msgid "Profile cannot be added" +msgstr "Impossible d'ajouter le profil" + +#: ../../godmode/users/configure_user.php:640 +#: ../../godmode/users/configure_user.php:664 +#: ../../godmode/users/configure_user.php:734 +#: ../../godmode/users/configure_user.php:741 +#: ../../godmode/users/configure_user.php:773 +#: ../../operation/users/user_edit.php:184 ../../operation/users/user_edit.php:229 +msgid "User info successfully updated" +msgstr "L'information de l'utilisateur a Ć©tĆ© mise Ć  jour correctement." + +#: ../../godmode/users/configure_user.php:641 +#: ../../godmode/users/configure_user.php:665 +#: ../../godmode/users/configure_user.php:735 +#: ../../godmode/users/configure_user.php:742 +#: ../../godmode/users/configure_user.php:774 +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:670 +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:672 +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:688 +msgid "Passwords does not match" +msgstr "Les mots de passe ne concordent pas" + +#: ../../godmode/users/configure_user.php:763 +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:842 +msgid "Update User" +msgstr "Mettre Ć  jour l'utilisateur" + +#: ../../godmode/users/configure_user.php:844 +msgid "Create User" +msgstr "CrĆ©er un utilisateur" + +#: ../../godmode/users/configure_user.php:896 #: ../../operation/users/user_edit.php:272 -#: ../../godmode/users/configure_user.php:899 msgid "Full (display) name" msgstr "Nom complet (affichĆ©)" -#: ../../operation/users/user_edit.php:292 -#: ../../godmode/users/configure_user.php:1021 -msgid "E-mail" -msgstr "Courriel" +#: ../../godmode/users/configure_user.php:913 +#: ../../operation/users/user_edit.php:419 +msgid "Timezone" +msgstr "Fuseau horaire" -#: ../../operation/users/user_edit.php:294 -#: ../../godmode/users/configure_user.php:1037 -msgid "Phone number" -msgstr "NumĆ©ro de tĆ©lĆ©phone" - -#: ../../operation/users/user_edit.php:298 -#: ../../enterprise/include/process_reset_pass.php:103 -#: ../../enterprise/meta/include/process_reset_pass.php:96 -msgid "New Password" -msgstr "Nouveau mot de passe" +#: ../../godmode/users/configure_user.php:914 +#: ../../operation/users/user_edit.php:419 +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:947 #: ../../operation/users/user_edit.php:299 -#: ../../godmode/users/configure_user.php:950 msgid "Password confirmation" msgstr "Confirmation du mot de passe" -#: ../../operation/users/user_edit.php:300 -msgid "Current password" -msgstr "Mot de passe actuel" +#: ../../godmode/users/configure_user.php:965 +msgid "Own password confirmation" +msgstr "Confirmation propre du mot de passe" -#: ../../operation/users/user_edit.php:302 -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" +#: ../../godmode/users/configure_user.php:975 +msgid "Administrator user" +msgstr "Utilisateur administrateur" -#: ../../operation/users/user_edit.php:317 -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" +#: ../../godmode/users/configure_user.php:1002 +#: ../../operation/users/user_edit.php:292 +msgid "E-mail" +msgstr "Courriel" -#: ../../operation/users/user_edit.php:325 -#: ../../enterprise/meta/advanced/metasetup.translate_string.php:174 -#: ../../enterprise/extensions/translate_string.php:302 -#: ../../godmode/users/configure_user.php:904 -msgid "Language" -msgstr "Langue" +#: ../../godmode/users/configure_user.php:1018 +#: ../../operation/users/user_edit.php:294 +msgid "Phone number" +msgstr "NumĆ©ro de tĆ©lĆ©phone" +#: ../../godmode/users/configure_user.php:1053 +#: ../../operation/users/user_edit.php:401 ../../operation/users/user_edit.php:410 +msgid "Skin" +msgstr "ThĆØme" + +#: ../../godmode/users/configure_user.php:1062 +msgid "Search custom field view" +msgstr "Vue de recherche dā€™un champ personnalisĆ©" + +#: ../../godmode/users/configure_user.php:1062 +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:1079 +msgid "Use global conf" +msgstr "Utiliser configuration gĆ©nĆ©rale" + +#: ../../godmode/users/configure_user.php:1084 #: ../../operation/users/user_edit.php:354 -#: ../../godmode/users/configure_user.php:1103 msgid "Home screen" msgstr "Page d'accueil" +#: ../../godmode/users/configure_user.php:1085 #: ../../operation/users/user_edit.php:354 -#: ../../godmode/users/configure_user.php:1104 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/" @@ -12870,760 +33323,6912 @@ msgstr "" "sec=estado&sec2=operation/agentes/ver_agente&id_agente=1 pour afficher la vue " "dĆ©taillĆ©e de l'agent" -#: ../../operation/users/user_edit.php:401 -#: ../../operation/users/user_edit.php:410 -#: ../../godmode/users/configure_user.php:1072 -msgid "Skin" -msgstr "ThĆØme" +#: ../../godmode/users/configure_user.php:1092 ../../godmode/events/events.php:41 +#: ../../operation/users/user_edit.php:358 ../../operation/events/events.php:1359 +msgid "Event list" +msgstr "Liste d'Ć©vĆ©nements" -#: ../../operation/users/user_edit.php:411 -msgid "This change will only apply to nodes" -msgstr "Cette modification ne sā€™appliquera quā€™aux nœuds" +#: ../../godmode/users/configure_user.php:1095 +#: ../../operation/users/user_edit.php:361 +#: ../../operation/agentes/alerts_status.php:190 ../../operation/menu.php:66 +msgid "Alert detail" +msgstr "DĆ©tail des alertes" -#: ../../operation/users/user_edit.php:419 -#: ../../godmode/users/configure_user.php:916 -msgid "Timezone" -msgstr "Fuseau horaire" +#: ../../godmode/users/configure_user.php:1096 +msgid "External link" +msgstr "Lien externe" -#: ../../operation/users/user_edit.php:419 -#: ../../godmode/users/configure_user.php:917 -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:1189 +msgid "Metaconsole access" +msgstr "AccĆØs Ć  la MĆ©taconsole" -#: ../../operation/users/user_edit.php:426 ../../include/functions_config.php:776 -#: ../../enterprise/meta/include/functions_meta.php:582 -#: ../../enterprise/meta/include/functions_meta.php:884 -#: ../../godmode/setup/setup_auth.php:353 -#: ../../godmode/users/configure_user.php:1332 -msgid "Double authentication" -msgstr "Double authentification" +#: ../../godmode/users/configure_user.php:1207 +msgid "Not Login" +msgstr "Aucune connexion" +#: ../../godmode/users/configure_user.php:1209 +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:1219 +msgid "Local user" +msgstr "Utilisateur local" + +#: ../../godmode/users/configure_user.php:1221 +msgid "" +"The user with local authentication enabled will always use local authentication." +msgstr "" +"Lā€™utilisateur dont lā€™authentification locale est activĆ©e utilisera toujours " +"lā€™authentification locale." + +#: ../../godmode/users/configure_user.php:1231 +msgid "Session Time" +msgstr "DurĆ©e de la session" + +#: ../../godmode/users/configure_user.php:1233 +msgid "" +"This is defined in minutes, If you wish a permanent session should putting -1 in " +"this field." +msgstr "" +"DĆ©fini en minutes ; si vous souhaitez Ć©tablir une session permanente, introduisez " +"-1 dans ce champ." + +#: ../../godmode/users/configure_user.php:1267 +msgid "Default event filter" +msgstr "Filtre d'Ć©vĆ©nement par dĆ©faut" + +#: ../../godmode/users/configure_user.php:1281 +msgid "eHorus user access enabled" +msgstr "AccĆØs utilisateur eHorus activĆ©" + +#: ../../godmode/users/configure_user.php:1289 +#: ../../include/functions_config.php:1661 +msgid "eHorus user" +msgstr "Utilisateur eHorus" + +#: ../../godmode/users/configure_user.php:1298 +#: ../../include/functions_config.php:1665 +msgid "eHorus password" +msgstr "Mot de passe eHorus" + +#: ../../godmode/users/configure_user.php:1321 +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:1331 #: ../../operation/users/user_edit.php:440 -#: ../../godmode/users/configure_user.php:1350 msgid "Show information" msgstr "Afficher l'information" -#: ../../operation/users/user_edit.php:448 -msgid "Event filter" -msgstr "Filtre d'Ć©vĆ©nements" +#: ../../godmode/users/configure_user.php:1349 +msgid "Enable agents managment" +msgstr "Activer la gestion d'agents" -#: ../../operation/users/user_edit.php:519 -msgid "Autorefresh" -msgstr "RafraĆ®chissement automatique" +#: ../../godmode/users/configure_user.php:1357 +msgid "Enable node access" +msgstr "Activer l'accĆØs au nœud" -#: ../../operation/users/user_edit.php:520 -msgid "This will activate autorefresh in selected pages" -msgstr "Le rafraĆ®chissement automatique sera activĆ© sur les pages sĆ©lectionnĆ©es." - -#: ../../operation/users/user_edit.php:555 -msgid "Full list of pages" -msgstr "Liste complĆØte de pages" - -#: ../../operation/users/user_edit.php:564 -#: ../../operation/users/user_edit.php:565 -msgid "Push selected pages into autorefresh list" +#: ../../godmode/users/configure_user.php:1357 +msgid "With this option enabled, the user will can access to nodes console" msgstr "" -"Ajouter les pages sĆ©lectionnĆ©es Ć  la liste de rafraĆ®chissement automatique." +"Si cette option est activĆ©e, l'utilisateur pourra accĆ©der Ć  la console de nœuds" -#: ../../operation/users/user_edit.php:573 -#: ../../operation/users/user_edit.php:574 -msgid "Pop selected pages out of autorefresh list" -msgstr "" -"Supprimer les pages sĆ©lectionnĆ©es de la liste de rafraĆ®chissement automatique" +#: ../../godmode/users/configure_user.php:1572 +msgid "yes" +msgstr "Oui" -#: ../../operation/users/user_edit.php:579 -msgid "List of pages with autorefresh" -msgstr "Liste de pages avec le rafraĆ®chissement automatique" +#: ../../godmode/users/configure_user.php:1575 +msgid "no" +msgstr "Non" -#: ../../operation/users/user_edit.php:588 -msgid "Time autorefresh" -msgstr "Temps de rafraĆ®chissement" +#: ../../godmode/users/configure_user.php:1579 +msgid "please select profile and group" +msgstr "Veuillez sĆ©lectionner le profil et le groupe" -#: ../../operation/users/user_edit.php:590 +#: ../../godmode/users/configure_user.php:1605 +msgid "Deleting last profile will delete this user" +msgstr "La suppression du dernier profil supprimera cet utilisateur" + +#: ../../godmode/users/configure_user.php:1645 msgid "" -"Interval of autorefresh of the elements, by default they are 30 seconds, " -"needing to enable the autorefresh first" +"User will be created without profiles assigned and won't be able to log in, are " +"you sure?" msgstr "" -"Intervalle de rafraĆ®chissement automatique des Ć©lĆ©ments, par dĆ©faut ils sont " -"de 30 secondes, il faut d'abord activer le rafraĆ®chissement automatique" - -#: ../../operation/users/user_edit.php:685 -msgid "eHorus user configuration" -msgstr "Configuration utilisateur eHorus" - -#: ../../operation/users/user_edit.php:690 -msgid "eHorus user acces enabled" -msgstr "AccĆØs utilisateur eHorus activĆ©" - -#: ../../operation/users/user_edit.php:711 -#: ../../operation/users/user_edit.php:757 -#: ../../enterprise/include/lib/NetworkManager.php:82 -#: ../../godmode/setup/setup_integria.php:566 -#: ../../godmode/setup/setup_ehorus.php:111 -msgid "Test" -msgstr "Test" - -#: ../../operation/users/user_edit.php:712 -#: ../../operation/users/user_edit.php:758 -#: ../../enterprise/operation/agentes/transactional_map.php:398 -#: ../../godmode/setup/setup_integria.php:567 -#: ../../godmode/setup/setup_ehorus.php:112 ../../godmode/menu.php:31 -msgid "Start" -msgstr "DĆ©marrer" - -#: ../../operation/users/user_edit.php:737 -msgid "Integria user configuration" -msgstr "Configuration dā€™utilisateur Integria" - -#: ../../operation/users/user_edit.php:774 -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:787 -#: ../../operation/users/user_edit.php:796 -#: ../../include/functions_profile.php:188 -msgid "Profiles/Groups assigned to this user" -msgstr "Profils/Groupes assignĆ©s Ć  cet utilisateur" - -#: ../../operation/users/user_edit.php:813 -#: ../../include/functions_profile.php:213 -#: ../../enterprise/godmode/setup/setup_acl.php:591 -#: ../../godmode/massive/massive_add_profiles.php:202 -#: ../../godmode/massive/massive_delete_profiles.php:151 -#: ../../godmode/users/configure_profile.php:265 -msgid "Profile name" -msgstr "Nom du profil" - -#: ../../operation/users/user_edit.php:851 -msgid "This user doesn't have any assigned profile/group." -msgstr "Cet utilisateur n'a aucun profil/groupe assignĆ©." +"L'utilisateur sera crĆ©Ć© sans profils attribuĆ©s et ne pourra pas se connecter, " +"ĆŖtes-vous sĆ»rĀ ?" +#: ../../godmode/users/configure_user.php:1810 #: ../../operation/users/user_edit.php:1079 -#: ../../godmode/users/configure_user.php:1840 msgid "Double autentication information" msgstr "Information d'authentification double" +#: ../../godmode/users/configure_user.php:1900 #: ../../operation/users/user_edit.php:1168 -#: ../../godmode/users/configure_user.php:1930 msgid "The double authentication will be deactivated" msgstr "La double authentification sera dĆ©sactivĆ©e." +#: ../../godmode/users/configure_user.php:1901 #: ../../operation/users/user_edit.php:1169 -#: ../../godmode/users/configure_user.php:1931 msgid "Deactivate" msgstr "DĆ©sactiver" +#: ../../godmode/users/configure_user.php:1937 #: ../../operation/users/user_edit.php:1201 -#: ../../godmode/users/configure_user.php:1967 msgid "The double autentication was deactivated successfully" msgstr "La double authentification a Ć©tĆ© dĆ©sactivĆ©e correctement." -#: ../../operation/users/user_edit.php:1204 -#: ../../operation/users/user_edit.php:1208 -#: ../../godmode/users/configure_user.php:1971 -#: ../../godmode/users/configure_user.php:1975 +#: ../../godmode/users/configure_user.php:1941 +#: ../../godmode/users/configure_user.php:1945 +#: ../../operation/users/user_edit.php:1204 ../../operation/users/user_edit.php:1208 msgid "There was an error deactivating the double autentication" msgstr "Erreur de dĆ©sactivation de la double authentification" -#: ../../operation/users/user_edit.php:1243 -#: ../../operation/users/user_edit.php:1321 -#: ../../godmode/setup/setup_integria.php:720 -#: ../../godmode/setup/setup_integria.php:801 -#: ../../godmode/setup/setup_ehorus.php:255 -msgid "Empty user or password" -msgstr "Utilisateur ou mot de passe vide" +#: ../../godmode/agentes/agent_template.php:67 ../../include/functions_api.php:15255 +msgid "Created by template " +msgstr "CrĆ©Ć© par modĆØle " -#: ../../operation/users/user_edit.php:1244 -#: ../../operation/users/user_edit.php:1322 -#: ../../godmode/setup/setup_integria.php:721 -#: ../../godmode/setup/setup_integria.php:802 -#: ../../godmode/setup/setup_ehorus.php:256 -msgid "User not found" -msgstr "Utilisateur introuvable" +#: ../../godmode/agentes/agent_template.php:156 +msgid "Error adding modules" +msgstr "Erreur d'ajout de modules" -#: ../../operation/users/user_edit.php:1245 -#: ../../operation/users/user_edit.php:1323 -#: ../../godmode/setup/setup_integria.php:722 -#: ../../godmode/setup/setup_integria.php:803 -#: ../../godmode/setup/setup_ehorus.php:257 -msgid "Invalid password" -msgstr "Mot de passe incorrect" +#: ../../godmode/agentes/agent_template.php:158 +msgid "Error adding modules. The following errors already exists: " +msgstr "Erreur d'ajout de modules. Les erreurs suivantes existent dĆ©jĆ  : " -#: ../../operation/users/user_edit_notifications.php:36 -#: ../../operation/users/user_edit_header.php:102 -msgid "User notifications" -msgstr "Notifications utilisateur" +#: ../../godmode/agentes/agent_template.php:163 +#: ../../include/functions_api.php:15349 +msgid "Modules successfully added" +msgstr "Modules ajoutĆ©s correctement" -#: ../../operation/users/user_edit_notifications.php:64 -#: ../../enterprise/include/lib/Metaconsole/Node.php:1165 -#: ../../enterprise/include/lib/Metaconsole/Node.php:1166 -#: ../../enterprise/include/functions_HA_cluster.php:61 -#: ../../enterprise/godmode/agentes/agent_autoconfiguration.php:170 -#: ../../enterprise/godmode/agentes/plugins_manager.php:195 -#: ../../enterprise/godmode/agentes/plugins_manager.php:262 -#: ../../enterprise/godmode/policies/policy_alerts.php:722 -#: ../../godmode/extensions.php:257 ../../godmode/alerts/alert_list.list.php:1030 -#: ../../godmode/users/user_list.php:745 -msgid "Enable" -msgstr "Activer" +#: ../../godmode/agentes/agent_template.php:188 +msgid "Assign" +msgstr "Attribuer" -#: ../../operation/users/user_edit_notifications.php:65 -msgid "Also receive an email" -msgstr "Recevez Ć©galement un e-mail" +#: ../../godmode/agentes/agent_template.php:269 +#: ../../mobile/operation/modules.php:772 +msgid "No modules" +msgstr "Pas de modules" -#: ../../operation/users/user_edit_notifications.php:94 -msgid "Controls have been disabled by the system administrator" -msgstr "Les contrĆ“les ont Ć©tĆ© dĆ©sactivĆ©s par l'administrateur systĆØme" +#: ../../godmode/agentes/module_manager_editor_wmi.php:87 +msgid "Optional. WMI namespace. If unsure leave blank." +msgstr "Optionnel. Espace de noms WMI. En cas de doute, laissez vide." -#: ../../operation/users/user_edit_header.php:91 -#: ../../enterprise/meta/general/main_menu.php:458 -#: ../../enterprise/meta/general/main_menu.php:518 -#: ../../enterprise/meta/general/main_menu.php:525 -#: ../../enterprise/meta/general/main_header.php:321 -#: ../../enterprise/meta/general/main_header.php:401 -#: ../../enterprise/meta/general/main_header.php:408 -#: ../../enterprise/meta/include/functions_users_meta.php:182 -#: ../../enterprise/meta/include/functions_users_meta.php:204 -#: ../../godmode/users/user_list.php:214 ../../godmode/users/user_list.php:239 -#: ../../godmode/users/user_list.php:250 -#: ../../godmode/users/configure_user.php:223 -#: ../../godmode/users/configure_profile.php:55 -#: ../../godmode/users/configure_profile.php:76 -#: ../../godmode/users/profile_list.php:63 -#: ../../godmode/users/profile_list.php:84 -msgid "User management" -msgstr "Gestion des utilisateurs" - -#: ../../operation/users/user_edit_header.php:131 -msgid "Edit user" -msgstr "Editer l'utilisateur" - -#: ../../operation/search_helps.php:17 -msgid "Zero results found." -msgstr "ZĆ©ro rĆ©sultats trouvĆ©s" - -#: ../../operation/search_helps.php:18 -#, php-format -msgid "You can find more help in the wiki" +#: ../../godmode/agentes/module_manager_editor_wmi.php:151 +msgid "" +"Optional. Substring to look for in the WQL query result. The module returns 1 if " +"found, 0 if not." msgstr "" -"Vous pouvez trouver plus d'aide dans le wiki" +"Optionnel. Sous-chaĆ®ne Ć  rechercher dans le rĆ©sultat de la requĆŖte WQL. Le module " +"renvoie 1 s'il est trouvĆ©, 0 sinon." -#: ../../operation/search_helps.php:32 -msgid "Matches" -msgstr "Concordances" +#: ../../godmode/agentes/module_manager_editor_wmi.php:164 +msgid "Column number to retrieve from the WQL query result (starting from zero)." +msgstr "" +"NumĆ©ro de colonne Ć  extraire du rĆ©sultat de la requĆŖte WQL (Ć  partir de zĆ©ro)." -#: ../../operation/search_results.php:67 -msgid "Global search" -msgstr "Recherche globale" +#: ../../godmode/agentes/module_manager_editor_web.php:155 +msgid "Debug remotely this module" +msgstr "DĆ©boguer Ć  distance ce module" + +#: ../../godmode/agentes/module_manager_editor_web.php:158 +msgid "Debug this module once it has been initialized" +msgstr "DĆ©boguez ce module une fois qu'il a Ć©tĆ© initialisĆ©" + +#: ../../godmode/agentes/module_manager_editor_web.php:180 +#: ../../include/class/WebServerModuleDebug.class.php:325 +msgid "Debug" +msgstr "DĆ©bogage" + +#: ../../godmode/agentes/module_manager_editor_web.php:205 +msgid "Requests" +msgstr "RequĆŖtes" + +#: ../../godmode/agentes/module_manager_editor_web.php:208 +msgid "Agent browser id" +msgstr "Identifiant du navigateur (Agent browser)" + +#: ../../godmode/agentes/module_manager_editor_web.php:214 +msgid "HTTP auth (login)" +msgstr "Authentification HTTP (connexion)" + +#: ../../godmode/agentes/module_manager_editor_web.php:217 +msgid "HTTP auth (password)" +msgstr "Authentification HTTP (mot de passe)" + +#: ../../godmode/agentes/module_manager_editor_web.php:231 +msgid "Proxy auth (login)" +msgstr "Authentification du proxy (connexion)" + +#: ../../godmode/agentes/module_manager_editor_web.php:235 +msgid "Proxy auth (pass)" +msgstr "Authentification du proxy (mot de passe)" + +#: ../../godmode/agentes/module_manager_editor_web.php:242 +msgid "Proxy auth (server)" +msgstr "Authentification du proxy (serveur)" + +#: ../../godmode/agentes/module_manager_editor_web.php:246 +msgid "Proxy auth (realm)" +msgstr "Authentification du proxy (realm)" + +#: ../../godmode/agentes/module_manager_editor_web.php:258 +msgid "There isn't get or post" +msgstr "Impossible d'obtenir ou de publier" + +#: ../../godmode/agentes/status_monitor_custom_fields.php:101 +#: ../../godmode/agentes/status_monitor_custom_fields.php:149 +#: ../../include/functions_treeview.php:326 +#: ../../operation/agentes/status_monitor.php:1340 +#: ../../operation/agentes/estado_generalagente.php:436 +msgid "Last status change" +msgstr "Dernier changement dā€™Ć©tat" + +#: ../../godmode/agentes/status_monitor_custom_fields.php:125 +msgid "Show monitor detail fields" +msgstr "Afficher les champs de dĆ©tail du moniteur" + +#: ../../godmode/agentes/configurar_agente.php:244 +#: ../../godmode/agentes/configurar_agente.php:1042 +msgid "No agent alias specified" +msgstr "Aucun alias agent spĆ©cifiĆ©" + +#: ../../godmode/agentes/configurar_agente.php:247 +msgid "Agent cannot be created due to the maximum agent limit for this group" +msgstr "" +"L'agent ne peut pas ĆŖtre crĆ©Ć© en raison de la limite maximale d'agents pour ce " +"groupe" + +#: ../../godmode/agentes/configurar_agente.php:353 +msgid "Could not be created, because name already exists" +msgstr "Erreur de crĆ©ation, le nom existe dĆ©jĆ " + +#: ../../godmode/agentes/configurar_agente.php:355 +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:438 ../../godmode/menu.php:164 +#: ../../godmode/wizards/HostDevices.class.php:1077 +msgid "Module templates" +msgstr "ModĆØles de modules" + +#: ../../godmode/agentes/configurar_agente.php:510 +#: ../../operation/agentes/ver_agente.php:1487 +msgid "GIS data" +msgstr "DonnĆ©es GIS" + +#: ../../godmode/agentes/configurar_agente.php:582 +#: ../../godmode/agentes/configurar_agente.php:750 +#: ../../operation/agentes/ver_agente.php:1507 ../../operation/menu.php:495 +#: ../../operation/incidents/incident_statistics.php:21 +#: ../../general/first_task/incidents.php:28 +msgid "Incidents" +msgstr "Incidents" + +#: ../../godmode/agentes/configurar_agente.php:745 +msgid "Gis" +msgstr "GIS" + +#: ../../godmode/agentes/configurar_agente.php:787 +msgid "SNMP explorer" +msgstr "Explorateur SNMP" + +#: ../../godmode/agentes/configurar_agente.php:818 +#: ../../godmode/agentes/configurar_agente.php:840 +#: ../../godmode/agentes/modificar_agente.php:104 ../../godmode/menu.php:119 +msgid "Resources" +msgstr "Ressources" + +#: ../../godmode/agentes/configurar_agente.php:828 +msgid "Agent manager" +msgstr "Administrateur d'agents" + +#: ../../godmode/agentes/configurar_agente.php:868 +#: ../../godmode/servers/modificar_server.php:222 +msgid "Conf file deleted successfully" +msgstr "Le fichier de configuration a Ć©tĆ© supprimĆ© correctement" + +#: ../../godmode/agentes/configurar_agente.php:869 +#: ../../godmode/servers/modificar_server.php:223 +msgid "Could not delete conf file" +msgstr "Erreur de suppression du fichier de configuration" + +#: ../../godmode/agentes/configurar_agente.php:886 +#: ../../godmode/agentes/configurar_agente.php:1037 +#: ../../include/class/ExternalTools.class.php:750 +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:913 +#: ../../godmode/agentes/configurar_agente.php:917 +msgid "No data to normalize" +msgstr "Aucune donnĆ©e Ć  normaliser" + +#: ../../godmode/agentes/configurar_agente.php:922 +#, php-format +msgid "Deleted data above %f" +msgstr "DonnĆ©es supprimĆ©es ci-dessus %f" + +#: ../../godmode/agentes/configurar_agente.php:923 +#, php-format +msgid "Error normalizing module %s" +msgstr "Erreur lors de normalisation du module %s" + +#: ../../godmode/agentes/configurar_agente.php:1052 +#, php-format +msgid "The group id %d is incorrect." +msgstr "L'ID de groupe %d est incorrect." + +#: ../../godmode/agentes/configurar_agente.php:1054 +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:1056 +msgid "Duplicate main IP address" +msgstr "Dupliquer lā€™adresse IP principale" + +#: ../../godmode/agentes/configurar_agente.php:1109 +msgid "There was a problem updating the agent" +msgstr "ProblĆØme de mise Ć  jour de l'agent" + +#: ../../godmode/agentes/configurar_agente.php:1202 +msgid "There was a problem loading the agent" +msgstr "ProblĆØme de chargement de l'agent" + +#: ../../godmode/agentes/configurar_agente.php:1713 +msgid "" +"There was a problem updating module. Another module already exists with the same " +"name." +msgstr "" +"ProblĆØme de mise Ć  jour du module. Un autre module avec le mĆŖme nom existe dĆ©jĆ ." + +#: ../../godmode/agentes/configurar_agente.php:1717 +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:1721 +msgid "There was a problem updating module. \"No change\"" +msgstr "ProblĆØme de mise Ć  jour du module. Ā« Aucun changement Ā»" + +#: ../../godmode/agentes/configurar_agente.php:1727 +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:1756 +msgid "Module successfully updated" +msgstr "Module mis Ć  jour correctement" + +#: ../../godmode/agentes/configurar_agente.php:1903 +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:1907 +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:1913 +msgid "There was a problem adding module. Processing error" +msgstr "ProblĆØme d'ajout de module. Erreur de traitement" + +#: ../../godmode/agentes/configurar_agente.php:1942 +#: ../../godmode/reporting/graph_builder.php:386 +msgid "Module added successfully" +msgstr "Module ajoutĆ© correctement" + +#: ../../godmode/agentes/configurar_agente.php:2093 +msgid "There was a problem deleting the module" +msgstr "ProblĆØme de suppression du module" + +#: ../../godmode/agentes/configurar_agente.php:2097 +msgid "Module deleted succesfully" +msgstr "Module supprimĆ© correctement" + +#: ../../godmode/agentes/configurar_agente.php:2236 +#: ../../include/functions_api.php:11137 +#, php-format +msgid "Save by %s Console" +msgstr "Enregistrer par Console %s" + +#: ../../godmode/agentes/configurar_agente.php:2254 +#: ../../include/functions_api.php:11138 +#, php-format +msgid "Update by %s Console" +msgstr "Mise Ć  jour parĀ Console %s" + +#: ../../godmode/agentes/configurar_agente.php:2270 +#: ../../include/functions_api.php:11139 +#, php-format +msgid "Insert by %s Console" +msgstr "InsĆ©rer par Console %s" + +#: ../../godmode/agentes/configurar_agente.php:2343 +#: ../../godmode/agentes/configurar_agente.php:2355 +msgid "Invalid tab specified" +msgstr "Onglet non valide" + +#: ../../godmode/agentes/module_manager_editor_prediction.php:110 +msgid "Source module" +msgstr "Module source" + +#: ../../godmode/agentes/module_manager_editor_prediction.php:148 +#: ../../godmode/agentes/module_manager_editor_prediction.php:169 +msgid "Select Module" +msgstr "SĆ©lectionner un module" + +#: ../../godmode/agentes/module_manager_editor_prediction.php:195 +msgid "Calculation type" +msgstr "Type de calcul" + +#: ../../godmode/agentes/module_manager_editor_prediction.php:203 +msgid "Estimated absolute value" +msgstr "Valeur absolue estimĆ©e" + +#: ../../godmode/agentes/module_manager_editor_prediction.php:204 +msgid "Calculation of days to reach limit" +msgstr "Calcul des jours pour atteindre la limite" + +#: ../../godmode/agentes/module_manager_editor_prediction.php:213 +msgid "Future estimation" +msgstr "Estimation future" + +#: ../../godmode/agentes/module_manager_editor_prediction.php:228 +msgid "Limit value" +msgstr "Valeur limite" + +#: ../../godmode/agentes/module_manager_editor.php:718 +msgid "Invalid module type" +msgstr "Type de module non valide." + +#: ../../godmode/agentes/module_manager_editor.php:762 +msgid "Module relations" +msgstr "Relations du module" + +#: ../../godmode/agentes/module_manager_editor.php:852 +msgid "No module to predict" +msgstr "Aucun module Ć  prĆ©dire" + +#: ../../godmode/agentes/module_manager_editor.php:862 +msgid "No plug-in provided" +msgstr "Aucun plugin fourni" + +#: ../../godmode/agentes/module_manager_editor.php:872 +msgid "No server provided" +msgstr "Aucun serveur fourni" + +#: ../../godmode/agentes/module_manager_editor.php:903 +msgid "" +"Error, The field name and name in module_name in data configuration are different." +msgstr "" +"Erreur, le nom de champ et le nom dans module_name dans les donnĆ©es de " +"configuration sont diffĆ©rents." + +#: ../../godmode/agentes/module_manager_editor.php:941 +msgid "The File APIs are not fully supported in this browser." +msgstr "Les fichiers API ne sont pas pris en charge sur ce navigateur" + +#: ../../godmode/agentes/module_manager_editor.php:942 +msgid "Couldn`t find the fileinput element." +msgstr "ƉlĆ©ment fileinput introuvable" + +#: ../../godmode/agentes/module_manager_editor.php:943 +msgid "This browser doesn`t seem to support the files property of file inputs." +msgstr "" +"Ce navigateur ne semble pas prendre en charge la propriĆ©tĆ© de fichiers des " +"entrĆ©es de fichiers." + +#: ../../godmode/agentes/module_manager_editor.php:944 +msgid "Please select a file before clicking Load" +msgstr "Veuillez sĆ©lectionner un fichier avant de cliquer sur Charger" + +#: ../../godmode/agentes/modificar_agente.php:95 +#, php-format +msgid "Agents defined in %s" +msgstr "Agents dĆ©finis dans %s" + +#: ../../godmode/agentes/modificar_agente.php:124 +#, php-format +msgid "This node is configured with centralized mode. Go to %s to delete an agent" +msgstr "" +"Ce nœud est configurĆ© en mode centralisĆ©. Aller vers %s pour supprimer un agent" + +#: ../../godmode/agentes/modificar_agente.php:170 +msgid "Success deleted agent." +msgstr "Agent supprimĆ© correctement" + +#: ../../godmode/agentes/modificar_agente.php:171 +msgid "Could not be deleted." +msgstr "Erreur de suppression" + +#: ../../godmode/agentes/modificar_agente.php:186 +msgid "Maybe the files conf or md5 could not be deleted" +msgstr "Les fichiers conf ou md5 n'ont pas pu ĆŖtre supprimĆ©s" + +#: ../../godmode/agentes/modificar_agente.php:333 +msgid "Show Agents" +msgstr "Afficher les agents" + +#: ../../godmode/agentes/modificar_agente.php:335 +msgid "Everyone" +msgstr "Tous" + +#: ../../godmode/agentes/modificar_agente.php:349 +msgid "Operative System" +msgstr "SystĆØme d'exploitation" + +#: ../../godmode/agentes/modificar_agente.php:367 +msgid "" +"Search filter by alias, name, description, IP address or custom fields content" +msgstr "" +"Rechercher filtre par alias, nom, description, adresse IP ou contenu de champs " +"personnalisĆ©s" + +#: ../../godmode/agentes/modificar_agente.php:648 +msgid "Remote agent configuration" +msgstr "Configuration de l'agent Ć  distance" + +#: ../../godmode/agentes/modificar_agente.php:648 +msgid "R" +msgstr "R" + +#: ../../godmode/agentes/modificar_agente.php:858 +msgid "Edit remote config" +msgstr "Ɖditer la configuration Ć  distance" + +#: ../../godmode/agentes/modificar_agente.php:908 +msgid "You are going to enable a cluster agent. Are you sure?" +msgstr "Vous allez activer un agent de grappe. Ɗtes-vous sĆ»r ?" + +#: ../../godmode/agentes/modificar_agente.php:911 +msgid "Enable agent" +msgstr "Activer l'agent" + +#: ../../godmode/agentes/modificar_agente.php:918 +msgid "You are going to disable a cluster agent. Are you sure?" +msgstr "Vous allez dĆ©sactiver un agent de grappe. Ɗtes-vous sĆ»r ?" + +#: ../../godmode/agentes/modificar_agente.php:921 +msgid "Disable agent" +msgstr "DĆ©sactiver l'agent" + +#: ../../godmode/agentes/modificar_agente.php:931 +msgid "WARNING! - You are going to delete a cluster agent. Are you sure?" +msgstr "ATTENTION! - Vous allez supprimer un agent de grappe. Ɗtes-vous sĆ»r ?" + +#: ../../godmode/agentes/agent_conf_gis.php:38 +#: ../../operation/agentes/gis_view.php:59 +msgid "There is no default map. Please go to the setup for to set a default map." +msgstr "" +"Il n'y a pas de carte par dĆ©faut. Veuillez accĆ©der Ć  la configuration pour " +"dĆ©finir une carte par dĆ©faut." + +#: ../../godmode/agentes/agent_conf_gis.php:50 +msgid "" +"There is no GIS data for this agent, so it's positioned in default position of " +"map." +msgstr "" +"Il n'y a pas de donnĆ©es GIS pour cet agent. Il est donc situĆ© par dĆ©faut dans une " +"position de la carte." + +#: ../../godmode/agentes/agent_conf_gis.php:58 +msgid "" +"When you change the Agent position, the agent automatically activates the 'Ignore " +"new GIS data' option" +msgstr "" +"Lorsque vous modifiez la position de l'agent, il active automatiquement l'option " +"Ā« Ignorer les nouvelles donnĆ©es GIS Ā»" + +#: ../../godmode/agentes/agent_conf_gis.php:67 +msgid "Agent position" +msgstr "Position de l'agent" + +#: ../../godmode/agentes/agent_conf_gis.php:73 +msgid "Latitude: " +msgstr "Latitude : " + +#: ../../godmode/agentes/agent_conf_gis.php:90 +msgid "Longitude: " +msgstr "Longitude : " + +#: ../../godmode/agentes/agent_conf_gis.php:107 +msgid "Altitude: " +msgstr "Altitude : " + +#: ../../godmode/agentes/agent_conf_gis.php:124 +#: ../../godmode/massive/massive_edit_agents.php:984 +msgid "Ignore new GIS data:" +msgstr "Ignorer les nouvelles donnĆ©es GIS :" + +#: ../../godmode/agentes/planned_downtime.list.php:174 +#: ../../godmode/agentes/planned_downtime.editor.php:67 +#: ../../include/functions_reporting_html.php:879 +#: ../../include/functions_reporting_html.php:4670 +msgid "Scheduled Downtime" +msgstr "Temps d'arrĆŖt programmĆ©" + +#: ../../godmode/agentes/planned_downtime.list.php:206 +msgid "An error occurred stopping the scheduled downtime" +msgstr "Une erreur s'est produite lors de l'arrĆŖt du temps d'arrĆŖt programmĆ©" + +#: ../../godmode/agentes/planned_downtime.list.php:233 +msgid "This scheduled downtime is running" +msgstr "Ce temps d'arrĆŖt programmĆ© est en cours d'exĆ©cution" + +#: ../../godmode/agentes/planned_downtime.list.php:318 +#: ../../godmode/agentes/planned_downtime.editor.php:612 +msgid "Once" +msgstr "Une fois" + +#: ../../godmode/agentes/planned_downtime.list.php:319 +#: ../../godmode/agentes/planned_downtime.list.php:664 +#: ../../godmode/agentes/planned_downtime.editor.php:613 +msgid "Periodically" +msgstr "PĆ©riodiquement" + +#: ../../godmode/agentes/planned_downtime.list.php:333 +msgid "Show past downtimes" +msgstr "Afficher les temps d'arrĆŖt passĆ©s" + +#: ../../godmode/agentes/planned_downtime.list.php:574 +#: ../../godmode/agentes/planned_downtime.export_csv.php:202 +msgid "No scheduled downtime" +msgstr "Pas de temps d'arrĆŖt planifiĆ©" + +#: ../../godmode/agentes/planned_downtime.list.php:610 +msgid "Name #Ag." +msgstr "Nom #Ag." + +#: ../../godmode/agentes/planned_downtime.list.php:617 +msgid "Affected" +msgstr "AffectĆ©" + +#: ../../godmode/agentes/planned_downtime.list.php:622 +#: ../../godmode/agentes/planned_downtime.list.php:725 +#: ../../godmode/agentes/planned_downtime.list.php:731 +msgid "Stop downtime" +msgstr "Interrompre le temps d'arrĆŖt" + +#: ../../godmode/agentes/planned_downtime.list.php:656 +#: ../../godmode/agentes/planned_downtime.editor.php:595 +msgid "Disabled Agents" +msgstr "Agents dĆ©sactivĆ©s" + +#: ../../godmode/agentes/planned_downtime.list.php:657 +#: ../../godmode/agentes/planned_downtime.editor.php:596 +msgid "Disabled only Alerts" +msgstr "Seulement alertes dĆ©sactivĆ©es" + +#: ../../godmode/agentes/planned_downtime.list.php:663 +msgid "once" +msgstr "une fois" + +#: ../../godmode/agentes/planned_downtime.list.php:678 +msgid "Not running" +msgstr "ArrĆŖtĆ©" + +#: ../../godmode/agentes/planned_downtime.list.php:696 +msgid "Agents / Modules affected" +msgstr "Agents / Modules affectĆ©s" + +#: ../../godmode/agentes/planned_downtime.list.php:705 +msgid "Agents and modules affected" +msgstr "Agents et modules concernĆ©s" + +#: ../../godmode/agentes/planned_downtime.list.php:903 +msgid "" +"WARNING: If you delete this scheduled downtime, it will not be taken into account " +"in future SLA reports" +msgstr "" +"ATTENTION : Si vous supprimez ce temps d'arrĆŖt programmĆ©, il ne sera pas pris en " +"compte dans les futurs rapports SLA" + +#: ../../godmode/agentes/planned_downtime.list.php:909 +msgid "WARNING: There are malformed scheduled downtimes" +msgstr "AVERTISSEMENTĀ : il y a des temps d'arrĆŖt programmĆ©s mal formĆ©s" + +#: ../../godmode/agentes/planned_downtime.list.php:909 +msgid "Do you want to migrate automatically the malformed items?" +msgstr "Voulez-vous migrer automatiquement les Ć©lĆ©ments incorrects ?" + +#: ../../godmode/agentes/planned_downtime.editor.php:208 +#: ../../godmode/agentes/planned_downtime.editor.php:1129 +#: ../../godmode/agentes/planned_downtime.editor.php:1264 +msgid "This elements cannot be modified while the downtime is being executed" +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:241 +#: ../../include/functions_planned_downtimes.php:40 +#: ../../include/functions_planned_downtimes.php:742 +msgid "" +"Not created. Error inserting data. Start time must be higher than the current time" +msgstr "" +"Erreur de crĆ©ation et d'insertion de donnĆ©es. L'heure de dĆ©but doit ĆŖtre " +"supĆ©rieure Ć  l'heure actuelle." + +#: ../../godmode/agentes/planned_downtime.editor.php:245 +#: ../../godmode/agentes/planned_downtime.editor.php:249 +#: ../../godmode/agentes/planned_downtime.editor.php:257 +#: ../../godmode/agentes/planned_downtime.editor.php:261 +#: ../../include/functions_planned_downtimes.php:42 +#: ../../include/functions_planned_downtimes.php:47 +#: ../../include/functions_planned_downtimes.php:49 +#: ../../include/functions_planned_downtimes.php:747 +#: ../../include/functions_planned_downtimes.php:754 +#: ../../include/functions_planned_downtimes.php:762 +#: ../../include/functions_planned_downtimes.php:770 +#: ../../include/functions_planned_downtimes.php:775 +#: ../../include/functions_planned_downtimes.php:780 +#: ../../include/functions_planned_downtimes.php:785 +#: ../../include/functions_planned_downtimes.php:790 +#: ../../include/functions_planned_downtimes.php:795 +#: ../../include/functions_planned_downtimes.php:800 +msgid "Not created. Error inserting data" +msgstr "Erreur de crĆ©ation : erreur d'insertion de donnĆ©es" + +#: ../../godmode/agentes/planned_downtime.editor.php:245 +#: ../../include/functions_planned_downtimes.php:42 +#: ../../include/functions_planned_downtimes.php:754 +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:249 +#: ../../include/functions_planned_downtimes.php:747 +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:257 +#: ../../godmode/agentes/planned_downtime.editor.php:722 +#: ../../godmode/agentes/planned_downtime.editor.php:735 +#: ../../include/functions_planned_downtimes.php:47 +#: ../../include/functions_planned_downtimes.php:762 +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:261 +#: ../../godmode/agentes/planned_downtime.editor.php:707 +#: ../../include/functions_planned_downtimes.php:49 +#: ../../include/functions_planned_downtimes.php:770 +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" + +#: ../../godmode/agentes/planned_downtime.editor.php:313 +#: ../../include/functions_planned_downtimes.php:98 +#: ../../include/functions_planned_downtimes.php:814 +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:318 +#: ../../godmode/agentes/planned_downtime.editor.php:350 +#: ../../include/functions_planned_downtimes.php:103 +#: ../../include/functions_planned_downtimes.php:820 +msgid "Scheduled downtime must have a name" +msgstr "Les temps d'arrĆŖt programmĆ©s doivent avoir un nom" + +#: ../../godmode/agentes/planned_downtime.editor.php:589 +msgid "Quiet: Modules will not generate events or fire alerts." +msgstr "" +"Mode silencieux: les modules ne gĆ©nĆØrent pas d'Ć©vĆ©nements et ne dĆ©clenchent pas " +"d'alertes." + +#: ../../godmode/agentes/planned_downtime.editor.php:589 +msgid "Disable Agents: Disables the selected agents." +msgstr "DĆ©sactiver les agents : ceci dĆ©sactive les agents sĆ©lectionnĆ©s." + +#: ../../godmode/agentes/planned_downtime.editor.php:589 +msgid "Disable Alerts: Disable alerts for the selected agents." +msgstr "" +"DĆ©sactiver les alertes : ceci dĆ©sactive les alertes pour les agents sĆ©lectionnĆ©s." + +#: ../../godmode/agentes/planned_downtime.editor.php:634 +#: ../../include/functions_reporting_html.php:86 +#: ../../include/functions_reporting_html.php:5582 +#: ../../include/ajax/alert_list.ajax.php:592 +msgid "From:" +msgstr "De :" + +#: ../../godmode/agentes/planned_downtime.editor.php:638 +#: ../../include/functions_reporting_html.php:86 +#: ../../include/functions_reporting_html.php:5582 +#: ../../include/ajax/alert_list.ajax.php:606 +msgid "To:" +msgstr "ƀ :" + +#: ../../godmode/agentes/planned_downtime.editor.php:693 +msgid "To day:" +msgstr "Jusqu'au jour :" + +#: ../../godmode/agentes/planned_downtime.editor.php:725 +msgid "To hour:" +msgstr "Jusqu'Ć  l'heure :" + +#: ../../godmode/agentes/planned_downtime.editor.php:801 +msgid "Group filter" +msgstr "Filtre groupe" + +#: ../../godmode/agentes/planned_downtime.editor.php:835 +msgid "Available modules:" +msgstr "Modules disponibles :" + +#: ../../godmode/agentes/planned_downtime.editor.php:836 +msgid "Only for type Quiet for downtimes." +msgstr "Seulement pour le type Mode silencieux pour les temps d'arrĆŖt." + +#: ../../godmode/agentes/planned_downtime.editor.php:894 +msgid "Agents planned for this downtime" +msgstr "Agents planifiĆ©s pour ce temps d'arrĆŖt" + +#: ../../godmode/agentes/planned_downtime.editor.php:912 +msgid "There are no agents" +msgstr "Aucun agent" + +#: ../../godmode/agentes/planned_downtime.editor.php:954 +msgid "All alerts" +msgstr "Toutes les alertes" + +#: ../../godmode/agentes/planned_downtime.editor.php:956 +msgid "Entire agent" +msgstr "Agent au complet" + +#: ../../godmode/agentes/planned_downtime.editor.php:959 +#: ../../godmode/agentes/planned_downtime.editor.php:1081 +msgid "All modules" +msgstr "Tous les modules" + +#: ../../godmode/agentes/planned_downtime.editor.php:961 +#: ../../godmode/agentes/planned_downtime.editor.php:1073 +#: ../../godmode/agentes/planned_downtime.editor.php:1077 +msgid "Some modules" +msgstr "Quelques modules" + +#: ../../godmode/agentes/planned_downtime.editor.php:1027 +msgid "Add Module:" +msgstr "Ajouter un module :" + +#: ../../godmode/agentes/planned_downtime.editor.php:1394 +#: ../../godmode/reporting/reporting_builder.item_editor.php:4742 +msgid "Please select a module." +msgstr "Veuillez sĆ©lectionner un module." + +#: ../../godmode/agentes/planned_downtime.editor.php:1529 +msgid "" +"WARNING: If you edit this scheduled downtime, the data of future SLA reports may " +"be altered" +msgstr "" +"AVERTISSEMENTĀ : Si vous modifiez ce temps d'arrĆŖt programmĆ©, les donnĆ©es des " +"futurs rapports SLA peuvent ĆŖtre modifiĆ©es" + +#: ../../godmode/agentes/fields_manager.php:30 +msgid "Agents custom fields manager" +msgstr "Gestionnaire de champs personnalisĆ©s d'agents" + +#: ../../godmode/agentes/fields_manager.php:46 +#: ../../include/ajax/custom_fields.php:737 +msgid "The name must not be empty" +msgstr "Saisie de nom obligatoire" + +#: ../../godmode/agentes/fields_manager.php:48 +msgid "The name must be unique" +msgstr "Le nom doit ĆŖtre unique" + +#: ../../godmode/agentes/fields_manager.php:59 +msgid "Field successfully created" +msgstr "Champ crĆ©Ć© correctement" + +#: ../../godmode/agentes/fields_manager.php:80 +msgid "Field successfully updated" +msgstr "Champ mis Ć  jour correctement" + +#: ../../godmode/agentes/fields_manager.php:82 +msgid "There was a problem modifying field" +msgstr "ProblĆØme de modification du champ" + +#: ../../godmode/agentes/fields_manager.php:94 +msgid "There was a problem deleting field" +msgstr "Erreur de suppression du champ" + +#: ../../godmode/agentes/fields_manager.php:96 +msgid "Field successfully deleted" +msgstr "Champ supprimĆ© correctement" + +#: ../../godmode/agentes/fields_manager.php:120 +#: ../../godmode/agentes/configure_field.php:95 +#: ../../operation/agentes/custom_fields.php:67 +msgid "Display on front" +msgstr "Afficher Ć  l'avant" + +#: ../../godmode/agentes/fields_manager.php:120 +#: ../../godmode/agentes/configure_field.php:96 +#: ../../operation/agentes/custom_fields.php:67 +msgid "" +"The fields with display on front enabled will be displayed into the agent details" +msgstr "" +"Les champs avec l'affichage Ć  l'avant activĆ© apparaĆ®tront dans les dĆ©tails des " +"agents" + +#: ../../godmode/agentes/fields_manager.php:168 +msgid "Create field" +msgstr "CrĆ©er un champ" + +#: ../../godmode/agentes/module_manager_editor_network.php:266 +msgid "SNMP walk" +msgstr "Chemin SNMP" + +#: ../../godmode/agentes/module_manager_editor_network.php:448 +msgid "" +"Please use single quotation marks when necessary. \n" +"\n" +"If double quotation marks are needed, please escape them with a backslash " +"(\\")" +msgstr "" +"Veuillez utiliser des guillemets simples si nĆ©cessaire. Si des " +"guillemets doubles sont nĆ©cessaires, veuillez les Ć©chapper avec une barre oblique " +"inverse (\\\")" + +#: ../../godmode/agentes/module_manager_editor_network.php:479 +msgid "Windows remote" +msgstr "TĆ©lĆ©commande Windows" + +#: ../../godmode/agentes/agent_manager.php:226 +#: ../../operation/agentes/estado_agente.php:215 ../../operation/menu.php:54 +msgid "Agent detail" +msgstr "DĆ©tail de l'agent" + +#: ../../godmode/agentes/agent_manager.php:241 +msgid "Delete agent" +msgstr "Supprimer l'agent" + +#: ../../godmode/agentes/agent_manager.php:275 +msgid "QR Code Agent view" +msgstr "Voir Code QR Agent" + +#: ../../godmode/agentes/agent_manager.php:296 +msgid "Use alias as name" +msgstr "Utiliser alias comme nom" + +#: ../../godmode/agentes/agent_manager.php:304 +#: ../../godmode/setup/setup_general.php:459 ../../include/functions_config.php:362 +msgid "Unique IP" +msgstr "IP unique" + +#: ../../godmode/agentes/agent_manager.php:338 +msgid "Primary group" +msgstr "Groupe primaire" + +#: ../../godmode/agentes/agent_manager.php:452 ../../godmode/setup/license.php:153 +#: ../../godmode/servers/modificar_server.php:42 ../../include/functions_ui.php:866 +#: ../../include/class/Diagnostics.class.php:1184 +msgid "Satellite" +msgstr "Satellite" + +#: ../../godmode/agentes/agent_manager.php:518 +#: ../../godmode/massive/massive_edit_agents.php:1006 +msgid "Safe operation mode" +msgstr "Mode d'opĆ©ration sĆ©curisĆ©" + +#: ../../godmode/agentes/agent_manager.php:559 +msgid "Cascade protection services" +msgstr "Services de protection en cascade" + +#: ../../godmode/agentes/agent_manager.php:590 +#: ../../godmode/massive/massive_edit_agents.php:661 +msgid "Cascade protection" +msgstr "Protection en cascade" + +#: ../../godmode/agentes/agent_manager.php:606 +#: ../../godmode/massive/massive_edit_agents.php:858 +msgid "Module definition" +msgstr "DĆ©finition des modules" + +#: ../../godmode/agentes/agent_manager.php:611 +#: ../../godmode/massive/massive_edit_agents.php:870 +msgid "Learning mode" +msgstr "Mode d'apprentissage" + +#: ../../godmode/agentes/agent_manager.php:621 +#: ../../godmode/massive/massive_edit_agents.php:881 +msgid "Normal mode" +msgstr "Mode normal" + +#: ../../godmode/agentes/agent_manager.php:631 +#: ../../godmode/massive/massive_edit_agents.php:892 +msgid "Autodisable mode" +msgstr "Mode dĆ©sactivation automatique" + +#: ../../godmode/agentes/agent_manager.php:648 +msgid "Disabled mode" +msgstr "Mode dĆ©sactivĆ©" + +#: ../../godmode/agentes/agent_manager.php:653 +#: ../../godmode/agentes/agent_manager.php:670 +#: ../../include/functions_treeview.php:759 +#: ../../operation/agentes/ver_agente.php:1526 +#: ../../operation/agentes/estado_generalagente.php:495 +msgid "Url address" +msgstr "Adresse URL" + +#: ../../godmode/agentes/agent_manager.php:695 +#: ../../godmode/massive/massive_edit_agents.php:980 +msgid "Agent icon" +msgstr "IcĆ“ne de l'agent" + +#: ../../godmode/agentes/agent_manager.php:745 +msgid "Update new GIS data:" +msgstr "Mettre Ć  jour les nouvelles donnĆ©es SIGĀ :" + +#: ../../godmode/agentes/agent_manager.php:803 +msgid "Click to display" +msgstr "Cliquez pour afficher" + +#: ../../godmode/agentes/agent_manager.php:1055 +msgid "Secondary group cannot be primary too." +msgstr "Le groupe secondaire ne peut pas non plus ĆŖtre principal." + +#: ../../godmode/agentes/agent_incidents.php:22 +#: ../../operation/incidents/incident_statistics.php:24 +#: ../../operation/incidents/configure_integriaims_incident.php:33 +#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:23 +#: ../../operation/incidents/list_integriaims_incidents.php:34 +msgid "" +"In order to access ticket management system, integration with Integria IMS must " +"be enabled and properly configured" +msgstr "" +"Pour accĆ©der au systĆØme de gestion des tickets, l'intĆ©gration avec Integria IMS " +"doit ĆŖtre activĆ©e et correctement configurĆ©e" + +#: ../../godmode/agentes/agent_incidents.php:69 +msgid "No incidents associated to this agent" +msgstr "Aucun incident associĆ© Ć  cet agent" + +#: ../../godmode/agentes/agent_incidents.php:90 +msgid "Incident" +msgstr "Incident" + +#: ../../godmode/agentes/configure_field.php:41 +msgid "Update agent custom field" +msgstr "Mettre Ć  jour le champ de l'agent personnalisĆ©" + +#: ../../godmode/agentes/configure_field.php:43 +msgid "Create agent custom field" +msgstr "CrĆ©er un champ d'agent personnalisĆ©" + +#: ../../godmode/agentes/configure_field.php:55 +#: ../../godmode/agentes/configure_field.php:59 +#: ../../godmode/agentes/configure_field.php:63 +#: ../../godmode/agentes/configure_field.php:67 +msgid "Agent Custom Fields Information" +msgstr "Informations sur les champs personnalisĆ©s de l'agent" + +#: ../../godmode/agentes/configure_field.php:56 +msgid "" +"You cannot set the Password type until you clear the combo values and click on " +"update button." +msgstr "" +"Vous ne pouvez pas dĆ©finir le type de mot de passe tant que vous n'avez pas " +"effacĆ© les valeurs combinĆ©es et cliquĆ© sur le bouton de mise Ć  jour." + +#: ../../godmode/agentes/configure_field.php:60 +msgid "" +"You cannot unset the enable combo until you clear the combo values and click on " +"update." +msgstr "" +"Vous ne pouvez pas dĆ©sactiver le combo d'activation tant que vous n'avez pas " +"effacĆ© les valeurs du combo et cliquĆ© sur mettre Ć  jour." + +#: ../../godmode/agentes/configure_field.php:64 +msgid "If you select Enabled combo the Password type will be disabled." +msgstr "" +"Si vous sĆ©lectionnez la combinaison activĆ©e, le type de mot de passe sera " +"dĆ©sactivĆ©." + +#: ../../godmode/agentes/configure_field.php:68 +msgid "If you select Passord type the Enabled combo will be disabled." +msgstr "" +"Si vous sĆ©lectionnez le type de mot de passe, la liste dĆ©roulante ActivĆ© sera " +"dĆ©sactivĆ©e." + +#: ../../godmode/agentes/configure_field.php:84 +msgid "Pass type" +msgstr "Type de mot de passe" + +#: ../../godmode/agentes/configure_field.php:85 +msgid "" +"The fields with pass type enabled will be displayed like html input type pass in " +"html" +msgstr "" +"Les champs avec le type de mot de passe activĆ© sont masquĆ©s par des astĆ©risques " +"en HTML" + +#: ../../godmode/agentes/configure_field.php:106 +msgid "Enabled combo" +msgstr "Combo activĆ©" + +#: ../../godmode/agentes/configure_field.php:118 +msgid "Combo values" +msgstr "Valeurs du combo" + +#: ../../godmode/agentes/configure_field.php:119 +msgid "Set values separated by comma" +msgstr "DĆ©finir des valeurs sĆ©parĆ©es par des virgules" + +#: ../../godmode/agentes/module_manager_editor_common.php:108 +msgid "Using module component" +msgstr "Utilisation du composant de module" + +#: ../../godmode/agentes/module_manager_editor_common.php:413 +msgid "Warning threshold" +msgstr "Seuil dā€™avertissement" + +#: ../../godmode/agentes/module_manager_editor_common.php:415 +#: ../../godmode/agentes/module_manager_editor_common.php:476 +msgid "Min. " +msgstr "Min. " + +#: ../../godmode/agentes/module_manager_editor_common.php:474 +msgid "Critical threshold" +msgstr "Seuil critique" + +#: ../../godmode/agentes/module_manager_editor_common.php:673 +msgid "Dynamic Threshold Interval" +msgstr "Intervalle de seuil dynamique" + +#: ../../godmode/agentes/module_manager_editor_common.php:700 +msgid "Dynamic Threshold Min. " +msgstr "Seuil dynamique min. " + +#: ../../godmode/agentes/module_manager_editor_common.php:713 +msgid "Dynamic Threshold Max. " +msgstr "Seuil dynamique max. " + +#: ../../godmode/agentes/module_manager_editor_common.php:726 +msgid "Dynamic Threshold Two Tailed: " +msgstr "ProblĆØme de seuil dynamique deux : " + +#: ../../godmode/agentes/module_manager_editor_common.php:737 +msgid "Not needed" +msgstr "Pas nĆ©cessaire" + +#: ../../godmode/agentes/module_manager_editor_common.php:1035 +msgid "Tags from policy" +msgstr "Ɖtiquettes de la politique" + +#: ../../godmode/agentes/module_manager_editor_common.php:1075 +msgid "Cascade Protection Services" +msgstr "Services de protection en cascade" + +#: ../../godmode/agentes/module_manager_editor_common.php:1109 +#: ../../godmode/agentes/module_manager_editor_common.php:1117 +#: ../../godmode/agentes/module_manager_editor_common.php:1126 +msgid "Cron from" +msgstr "Cron Ć  partir de" + +#: ../../godmode/agentes/module_manager_editor_common.php:1113 +#: ../../godmode/agentes/module_manager_editor_common.php:1121 +#: ../../godmode/agentes/module_manager_editor_common.php:1130 +msgid "Cron to" +msgstr "Cron Ć " + +#: ../../godmode/agentes/module_manager_editor_common.php:1166 +msgid "Module parent" +msgstr "Parent de module" + +#: ../../godmode/agentes/module_manager_editor_common.php:1264 +#: ../../godmode/agentes/module_manager_editor_common.php:1375 +msgid "Direct" +msgstr "Direct" + +#: ../../godmode/agentes/module_manager_editor_common.php:1265 +#: ../../godmode/agentes/module_manager_editor_common.php:1375 +#: ../../include/functions_reporting_html.php:3913 +#: ../../include/functions_reporting_html.php:4007 +#: ../../include/functions_reporting_html.php:4087 +#: ../../include/functions_reporting_html.php:4096 +#: ../../include/functions_reporting_html.php:4234 +#: ../../include/functions_reporting_html.php:4243 +#: ../../include/functions_reporting_html.php:4567 +#: ../../include/functions_reporting_html.php:4573 +msgid "Failover" +msgstr "Basculement" + +#: ../../godmode/agentes/module_manager_editor_common.php:1266 +msgid "Rel. type" +msgstr "Type de relations" + +#: ../../godmode/agentes/module_manager_editor_common.php:1281 +msgid "Add relationship" +msgstr "Ajouter une relation" + +#: ../../godmode/agentes/module_manager_editor_common.php:1306 +msgid "Changes" +msgstr "Changements" + +#: ../../godmode/agentes/module_manager.php:130 +msgid "Create a new data server module" +msgstr "CrĆ©er un nouveau module de serveur de donnĆ©es" + +#: ../../godmode/agentes/module_manager.php:132 +msgid "Create a new network server module" +msgstr "CrĆ©er un nouveau module de serveur de rĆ©seau" + +#: ../../godmode/agentes/module_manager.php:136 +msgid "Create a new plugin server module" +msgstr "CrĆ©er un nouveau module de serveur plugin" + +#: ../../godmode/agentes/module_manager.php:140 +msgid "Create a new WMI server module" +msgstr "CrĆ©er un nouveau module de serveur WMI" + +#: ../../godmode/agentes/module_manager.php:144 +msgid "Create a new prediction server module" +msgstr "CrĆ©er un nouveau module de serveur de prĆ©diction" + +#: ../../godmode/agentes/module_manager.php:148 +msgid "Create a new web Server module" +msgstr "CrĆ©er un nouveau module de serveur web" + +#: ../../godmode/agentes/module_manager.php:192 +#: ../../operation/agentes/estado_monitores.php:582 +msgid "Show in hierachy mode" +msgstr "Affichage en mode hiĆ©rarchique" + +#: ../../godmode/agentes/module_manager.php:211 +msgid "

    Type

    " +msgstr "

    Type

    " + +#: ../../godmode/agentes/module_manager.php:241 +msgid "Get more modules on Monitoring Library" +msgstr "Obtenez plus de modules sur Monitoring Library" + +#: ../../godmode/agentes/module_manager.php:280 +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:437 +#: ../../godmode/agentes/module_manager.php:478 +#, 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:443 +#: ../../godmode/agentes/module_manager.php:484 +msgid "Operation finished successfully." +msgstr "OpĆ©ration complĆ©tĆ©e correctement" + +#: ../../godmode/agentes/module_manager.php:447 +#: ../../godmode/agentes/module_manager.php:488 +#, 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:794 +#: ../../godmode/reporting/map_builder.php:452 +#: ../../godmode/reporting/map_builder.php:469 ../../include/ajax/module.php:560 +#: ../../operation/agentes/datos_agente.php:295 +msgid "No available data to show" +msgstr "Aucune donnĆ©e disponible" + +#: ../../godmode/agentes/module_manager.php:868 +msgid "Del." +msgstr "Del." + +#: ../../godmode/agentes/module_manager.php:1042 +#: ../../godmode/agentes/module_manager.php:1050 ../../include/ajax/module.php:1084 +#: ../../include/ajax/module.php:1092 +msgid "Adopted" +msgstr "AdoptĆ©" + +#: ../../godmode/agentes/module_manager.php:1180 +msgid "Normalize" +msgstr "Normaliser" + +#: ../../godmode/agentes/module_manager.php:1190 +msgid "Normalize (Disabled)" +msgstr "Normaliser (dĆ©sactivĆ©)" + +#: ../../godmode/agentes/module_manager.php:1205 +#: ../../include/functions_snmp_browser.php:638 +msgid "Create network component" +msgstr "CrĆ©er un composant de rĆ©seau" + +#: ../../godmode/agentes/module_manager.php:1214 +msgid "Create network component (Disabled)" +msgstr "CrĆ©er un composant de rĆ©seau (dĆ©sactivĆ©)" + +#: ../../godmode/agentes/module_manager.php:1274 +msgid "Execute action" +msgstr "ExĆ©cuter l'action" + +#: ../../godmode/netflow/nf_item_list.php:27 +#: ../../operation/reporting/reporting_viewer.php:119 +msgid "Report list" +msgstr "Liste de rapports" + +#: ../../godmode/netflow/nf_item_list.php:30 +#: ../../godmode/netflow/nf_item_list.php:38 +msgid "Report items" +msgstr "ƉlĆ©ments de rapport" + +#: ../../godmode/netflow/nf_item_list.php:33 +msgid "Edit report" +msgstr "Ɖditer le rapport" + +#: ../../godmode/netflow/nf_item_list.php:53 +msgid "Netflow reports" +msgstr "Rapports Netflow" + +#: ../../godmode/netflow/nf_item_list.php:57 +msgid "Item list" +msgstr "Liste d'Ć©lĆ©ments" + +#: ../../godmode/netflow/nf_item_list.php:176 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2485 +#: ../../operation/netflow/nf_live_view.php:330 +msgid "Max. values" +msgstr "Valeurs maximales" + +#: ../../godmode/netflow/nf_item_list.php:177 ../../operation/agentes/graphs.php:233 +msgid "Chart type" +msgstr "Type de graphique" + +#: ../../godmode/netflow/nf_item_list.php:277 +msgid "There are no defined items" +msgstr "Aucun Ć©lĆ©ment dĆ©fini" + +#: ../../godmode/netflow/nf_edit.php:38 +msgid "Manage Netflow Filter" +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:113 +msgid "Netflow filters" +msgstr "Filtres Netflow" + +#: ../../godmode/netflow/nf_edit.php:212 ../../godmode/events/event_filter.php:215 +msgid "There are no defined filters" +msgstr "Aucun filtre dĆ©fini" + +#: ../../godmode/netflow/nf_edit_form.php:53 ../../godmode/events/events.php:54 +msgid "Filter list" +msgstr "Filtrer la liste" + +#: ../../godmode/netflow/nf_edit_form.php:55 +#: ../../godmode/netflow/nf_edit_form.php:77 +msgid "Add filter" +msgstr "Ajouter un filtre" + +#: ../../godmode/netflow/nf_edit_form.php:58 +msgid "Netflow Filter" +msgstr "Filtre Netflow" + +#: ../../godmode/netflow/nf_edit_form.php:188 +#: ../../godmode/snmpconsole/snmp_filters.php:35 +#: ../../include/ajax/custom_fields.php:707 ../../include/ajax/events.php:756 +#: ../../include/ajax/events.php:816 +msgid "Update filter" +msgstr "Mettre Ć  jour le filtre" + +#: ../../godmode/netflow/nf_edit_form.php:235 +msgid "Filter:" +msgstr "Filtre :" + +#: ../../godmode/netflow/nf_edit_form.php:239 +#: ../../operation/netflow/nf_live_view.php:414 +msgid "Dst Ip" +msgstr "Adresse IP de destination" + +#: ../../godmode/netflow/nf_edit_form.php:239 +#: ../../operation/netflow/nf_live_view.php:414 +msgid "" +"Destination IP. A comma separated list of destination ip. If we leave the field " +"blank, will show all ip. Example filter by ip:
    25.46.157.214,160.253.135.249" +msgstr "" +"Adresse IP de destination. Une virgule sƩpare la liste d'adresses IP de " +"destination. Si le champ est laissƩ vide, toutes les adresses IP seront " +"affichƩes. Exemple de filtre par IP :
    25.46.157.214,160.253.135.249" + +#: ../../godmode/netflow/nf_edit_form.php:242 +#: ../../operation/netflow/nf_live_view.php:422 +msgid "Src Ip" +msgstr "Adresse IP source" + +#: ../../godmode/netflow/nf_edit_form.php:242 +#: ../../operation/netflow/nf_live_view.php:422 +msgid "" +"Source IP. A comma separated list of source ip. If we leave the field blank, will " +"show all ip. Example filter by ip:
    25.46.157.214,160.253.135.249" +msgstr "" +"Adresse IP Source. Une virgule sƩpare la liste d'adresses IP source. Si le champ " +"est laissƩ vide, toutes les adresses IP seront affichƩes. Exemple de filtre par " +"IP :
    25.46.157.214,160.253.135.249" + +#: ../../godmode/netflow/nf_edit_form.php:245 +#: ../../godmode/netflow/nf_edit_form.php:258 +#: ../../operation/netflow/nf_live_view.php:350 +#: ../../operation/netflow/nf_live_view.php:433 +msgid "Dst Port" +msgstr "Port de destination" + +#: ../../godmode/netflow/nf_edit_form.php:245 +#: ../../operation/netflow/nf_live_view.php:433 +msgid "" +"Destination port. A comma separated list of destination ports. If we leave the " +"field blank, will show all ports. Example filter by ports 80 and 22:
    80,22" +msgstr "" +"Port de destination. Une virgule sƩpare la liste de ports de destination. Si le " +"champ est laissƩ vide, tous les ports seront affichƩs. Exemple de filtre par " +"ports 80 et 22 :
    80,22" + +#: ../../godmode/netflow/nf_edit_form.php:248 +#: ../../godmode/netflow/nf_edit_form.php:257 +#: ../../operation/netflow/nf_live_view.php:349 +#: ../../operation/netflow/nf_live_view.php:441 +msgid "Src Port" +msgstr "Port source" + +#: ../../godmode/netflow/nf_edit_form.php:248 +#: ../../operation/netflow/nf_live_view.php:441 +msgid "" +"Source port. A comma separated list of source ports. If we leave the field blank, " +"will show all ports. Example filter by ports 80 and 22:
    80,22" +msgstr "" +"Port source. Une virgule sƩpare la liste de ports source. Si le champ est laissƩ " +"vide, touts les ports seront affichƩs. Exemple de filtre par ports 80 et 22 : " +"
    80,22" + +#: ../../godmode/netflow/nf_edit_form.php:253 +#: ../../operation/netflow/nf_live_view.php:344 +msgid "Aggregate by" +msgstr "Regrouper par" + +#: ../../godmode/netflow/nf_edit_form.php:255 +#: ../../operation/netflow/nf_live_view.php:347 +msgid "Src Ip Address" +msgstr "Adresse IP source" + +#: ../../godmode/netflow/nf_edit_form.php:256 +#: ../../operation/netflow/nf_live_view.php:348 +msgid "Dst Ip Address" +msgstr "Adresse IP de destination" + +#: ../../godmode/snmpconsole/snmp_trap_generator.php:38 +msgid "SNMP Trap generator" +msgstr "GĆ©nĆ©rateur de dĆ©routements SNMP" + +#: ../../godmode/snmpconsole/snmp_trap_generator.php:68 +msgid "Empty parameters" +msgstr "ParamĆØtres vides" + +#: ../../godmode/snmpconsole/snmp_trap_generator.php:74 +msgid "Successfully generated" +msgstr "GĆ©nĆ©rĆ© correctement" + +#: ../../godmode/snmpconsole/snmp_trap_generator.php:75 +#, php-format +msgid "Could not be generated: %s" +msgstr "Erreur de crĆ©ation : %s" + +#: ../../godmode/snmpconsole/snmp_trap_generator.php:85 +msgid "Host address" +msgstr "Adresse de l'hĆ“te" + +#: ../../godmode/snmpconsole/snmp_trap_generator.php:95 +#: ../../include/functions_snmp_browser.php:727 +msgid "Community" +msgstr "CommunautĆ©" + +#: ../../godmode/snmpconsole/snmp_trap_generator.php:105 +#: ../../godmode/snmpconsole/snmp_alert.php:774 +#: ../../godmode/snmpconsole/snmp_alert.php:1263 +#: ../../operation/snmpconsole/snmp_view.php:859 +msgid "Enterprise String" +msgstr "ChaĆ®ne Enterprise" + +#: ../../godmode/snmpconsole/snmp_trap_generator.php:135 +msgid "SNMP Type" +msgstr "Type SNMP" + +#: ../../godmode/snmpconsole/snmp_trap_generator.php:168 +msgid "Generate trap" +msgstr "CrĆ©er un dĆ©routement" + +#: ../../godmode/snmpconsole/snmp_alert.php:100 +msgid "Alert overview" +msgstr "AperƧu des alertes" + +#: ../../godmode/snmpconsole/snmp_alert.php:118 +#: ../../godmode/snmpconsole/snmp_filters.php:46 +#: ../../operation/snmpconsole/snmp_view.php:681 +#: ../../operation/snmpconsole/snmp_view.php:789 +msgid "SNMP Console" +msgstr "Console SNMP" + +#: ../../godmode/snmpconsole/snmp_alert.php:293 +msgid "There was a problem creating the alert" +msgstr "ProblĆØme de crĆ©ation de l'alerte" + +#: ../../godmode/snmpconsole/snmp_alert.php:435 +msgid "There was a problem updating the alert" +msgstr "ProblĆØme de mise Ć  jour de l'alerte" + +#: ../../godmode/snmpconsole/snmp_alert.php:637 +#: ../../godmode/snmpconsole/snmp_alert.php:656 +msgid "There was a problem duplicating the alert" +msgstr "ProblĆØme de duplication de l'alerte" + +#: ../../godmode/snmpconsole/snmp_alert.php:646 +msgid "Successfully Duplicate" +msgstr "DupliquĆ© correctement" + +#: ../../godmode/snmpconsole/snmp_alert.php:677 +msgid "There was a problem deleting the alert" +msgstr "ProblĆØme de suppression de l'alerte" + +#: ../../godmode/snmpconsole/snmp_alert.php:774 +msgid "Matches substrings. End the string with $ for exact matches." +msgstr "" +"Correspond aux sous-chaĆ®nes. Terminez la chaĆ®ne par $ pour les correspondances " +"exactes." + +#: ../../godmode/snmpconsole/snmp_alert.php:842 +#: ../../godmode/snmpconsole/snmp_alert.php:852 +#: ../../godmode/snmpconsole/snmp_alert.php:862 +#: ../../godmode/snmpconsole/snmp_alert.php:872 +#: ../../godmode/snmpconsole/snmp_alert.php:882 +#: ../../godmode/snmpconsole/snmp_alert.php:892 +#: ../../godmode/snmpconsole/snmp_alert.php:902 +#: ../../godmode/snmpconsole/snmp_alert.php:912 +#: ../../godmode/snmpconsole/snmp_alert.php:922 +#: ../../godmode/snmpconsole/snmp_alert.php:932 +#: ../../godmode/snmpconsole/snmp_alert.php:942 +#: ../../godmode/snmpconsole/snmp_alert.php:952 +#: ../../godmode/snmpconsole/snmp_alert.php:962 +#: ../../godmode/snmpconsole/snmp_alert.php:972 +#: ../../godmode/snmpconsole/snmp_alert.php:982 +#: ../../godmode/snmpconsole/snmp_alert.php:992 +#: ../../godmode/snmpconsole/snmp_alert.php:1002 +#: ../../godmode/snmpconsole/snmp_alert.php:1012 +#: ../../godmode/snmpconsole/snmp_alert.php:1022 +#: ../../godmode/snmpconsole/snmp_alert.php:1032 +msgid "Variable bindings/Data" +msgstr "Liens variables/DonnĆ©es" + +#: ../../godmode/snmpconsole/snmp_alert.php:1162 +msgid "" +"Search by these fields description, OID, Custom Value, SNMP Agent (IP), Single " +"value, each Variable bindings/Datas." +msgstr "" +"Rechercher par ces champs de description : OID, Valeur personnalisĆ©e, Agent SNMP " +"(IP), Valeur unique, chaque Lien variable/DonnĆ©es." + +#: ../../godmode/snmpconsole/snmp_alert.php:1180 +msgid "Alert SNMP control filter" +msgstr "Filtre de contrĆ“le d'alerte SNMP" + +#: ../../godmode/snmpconsole/snmp_alert.php:1232 +msgid "There are no SNMP alerts" +msgstr "Aucune alerte SNMP" + +#: ../../godmode/snmpconsole/snmp_alert.php:1266 +msgid "Custom Value/Enterprise String" +msgstr "Valeur personnalisĆ©e/ChaĆ®ne Enterprise" + +#: ../../godmode/snmpconsole/snmp_alert.php:1271 +#: ../../include/functions_reporting_html.php:5132 +#: ../../include/functions_reporting_html.php:5254 +#: ../../include/functions_treeview.php:454 +msgid "Times fired" +msgstr "Nombre de fois dĆ©clenchĆ©e" + +#: ../../godmode/snmpconsole/snmp_alert.php:1271 +msgid "TF." +msgstr "TF." + +#: ../../godmode/snmpconsole/snmp_alert.php:1427 +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 ?" + +#: ../../godmode/snmpconsole/snmp_alert.php:1561 +msgid "Do you want delete the selected alerts?" +msgstr "Voulez-vous supprimer les alertes sĆ©lectionnĆ©es ?" + +#: ../../godmode/snmpconsole/snmp_alert.php:1671 +msgid "Add action " +msgstr "Ajouter une action " + +#: ../../godmode/snmpconsole/snmp_filters.php:41 +msgid "Filter overview" +msgstr "AperƧu du filtre" + +#: ../../godmode/snmpconsole/snmp_filters.php:108 +msgid "There was a problem updating the filter" +msgstr "ProblĆØme de mise Ć  jour du filtre" + +#: ../../godmode/snmpconsole/snmp_filters.php:126 +#: ../../godmode/snmpconsole/snmp_filters.php:152 +msgid "Description is empty" +msgstr "La description est vide" + +#: ../../godmode/snmpconsole/snmp_filters.php:129 +msgid "Filter is empty" +msgstr "Le filtre est vide." + +#: ../../godmode/snmpconsole/snmp_filters.php:149 +msgid "Filters are empty" +msgstr "Les filtres sont vides" + +#: ../../godmode/snmpconsole/snmp_filters.php:159 +msgid "There was a problem creating the filter" +msgstr "ProblĆØme de crĆ©ation du filtre" + +#: ../../godmode/snmpconsole/snmp_filters.php:178 +msgid "There was a problem deleting the filter" +msgstr "ProblĆØme de suppression du filtre" + +#: ../../godmode/snmpconsole/snmp_filters.php:221 +#: ../../godmode/snmpconsole/snmp_filters.php:231 +msgid "" +"This field contains a substring, could be part of a IP address, a numeric OID, or " +"a plain substring" +msgstr "" +"Ce champ contient une sous-chaĆ®ne qui pourrait faire partie d'une adresse IP, un " +"OID numĆ©rique ou une sous-chaĆ®ne simple" + +#: ../../godmode/snmpconsole/snmp_filters.php:223 +msgid "Click to remove the filter" +msgstr "Cliquez pour supprimer le filtre" + +#: ../../godmode/snmpconsole/snmp_filters.php:254 +#: ../../godmode/snmpconsole/snmp_filters.php:255 +msgid "Click to add new filter" +msgstr "Cliquez pour ajouter un filtre" + +#: ../../godmode/menu.php:57 +msgid "Network scan" +msgstr "Recherche du rĆ©seau" + +#: ../../godmode/menu.php:59 +msgid "Custom network scan" +msgstr "Analyse de rĆ©seau personnalisĆ©e" + +#: ../../godmode/menu.php:63 +msgid "Manage scan scripts" +msgstr "GĆ©rer les scripts d'analyse" + +#: ../../godmode/menu.php:66 ../../godmode/wizards/HostDevices.class.php:204 +msgid "Host & devices" +msgstr "HĆ“te et appareils" + +#: ../../godmode/menu.php:99 +msgid "Module categories" +msgstr "CatĆ©gories de modules" + +#: ../../godmode/menu.php:103 +msgid "Module types" +msgstr "Types de modules" + +#: ../../godmode/menu.php:127 +msgid "Manage agents groups" +msgstr "GĆ©rer les groupes d'agents" + +#: ../../godmode/menu.php:166 ../../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:170 +msgid "Remote components" +msgstr "Composants distants" + +#: ../../godmode/menu.php:194 ../../godmode/massive/massive_operations.php:257 +msgid "Agents operations" +msgstr "OpĆ©rations des agents" + +#: ../../godmode/menu.php:195 ../../godmode/massive/massive_operations.php:269 +msgid "Modules operations" +msgstr "OpĆ©rations des modules" + +#: ../../godmode/menu.php:196 ../../godmode/massive/massive_operations.php:281 +msgid "Plugins operations" +msgstr "OpĆ©rations des plugins" + +#: ../../godmode/menu.php:198 ../../godmode/massive/massive_operations.php:245 +msgid "Users operations" +msgstr "OpĆ©rations des utilisateurs" + +#: ../../godmode/menu.php:201 ../../godmode/massive/massive_operations.php:233 +msgid "Alerts operations" +msgstr "OpĆ©rations d'alertes" + +#: ../../godmode/menu.php:220 +msgid "Event filters" +msgstr "Filtres d'Ć©vĆ©nements" + +#: ../../godmode/menu.php:225 ../../godmode/events/events.php:80 +#: ../../godmode/events/events.php:95 +msgid "Custom columns" +msgstr "Colonnes personnalisĆ©es" + +#: ../../godmode/menu.php:256 +msgid "List of Alerts" +msgstr "Liste d'alertes" + +#: ../../godmode/menu.php:271 ../../godmode/menu.php:272 +msgid "Special days list" +msgstr "Liste de jours spĆ©ciaux" + +#: ../../godmode/menu.php:276 +msgid "SNMP alerts" +msgstr "Alertes SNMP" + +#: ../../godmode/menu.php:293 +msgid "Manage servers" +msgstr "GĆ©rer les serveurs" + +#: ../../godmode/menu.php:304 +msgid "Register Plugin" +msgstr "Enregistrer Plugin" + +#: ../../godmode/menu.php:330 ../../include/class/OrderInterpreter.class.php:141 +msgid "General Setup" +msgstr "Configuration gĆ©nĆ©rale" + +#: ../../godmode/menu.php:355 ../../godmode/setup/setup.php:177 +#: ../../godmode/setup/setup.php:277 ../../operation/agentes/ver_agente.php:1609 +msgid "eHorus" +msgstr "eHorus" + +#: ../../godmode/menu.php:358 ../../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:366 +msgid "Websocket Engine" +msgstr "Moteur de Websocket" + +#: ../../godmode/menu.php:369 ../../godmode/setup/setup.php:224 +#: ../../godmode/setup/setup.php:311 ../../operation/agentes/ver_agente.php:1695 +msgid "External Tools" +msgstr "Outils externes" + +#: ../../godmode/menu.php:373 ../../godmode/setup/setup.php:295 +msgid "Map conections GIS" +msgstr "Connexions de cartes GIS" + +#: ../../godmode/menu.php:377 ../../godmode/setup/os.php:211 +#: ../../godmode/setup/os.php:229 +msgid "Edit OS" +msgstr "Ɖditer systĆØme d'exploitation" + +#: ../../godmode/menu.php:400 +msgid "Diagnostic info" +msgstr "Information de diagnostic" + +#: ../../godmode/menu.php:405 +msgid "Site news" +msgstr "NouveautĆ©s du site" + +#: ../../godmode/menu.php:411 +msgid "DB Schema Check" +msgstr "VĆ©rifier schĆ©ma de la BD" + +#: ../../godmode/menu.php:414 +msgid "DB Interface" +msgstr "Interface de la BD" + +#: ../../godmode/menu.php:494 +msgid "Extension manager view" +msgstr "Afficher le gestionnaire d'extension" + +#: ../../godmode/menu.php:498 +msgid "Extension manager" +msgstr "Gestionnaire d'extension" + +#: ../../godmode/menu.php:529 ../../include/class/OrderInterpreter.class.php:339 +msgid "Warp Update" +msgstr "Warp Update" + +#: ../../godmode/menu.php:535 +msgid "Update offline" +msgstr "Mise Ć  jour hors ligne" + +#: ../../godmode/menu.php:538 +msgid "Update online" +msgstr "Mise Ć  jour en ligne" + +#: ../../godmode/menu.php:544 +msgid "Warp journal" +msgstr "Journal de Warp" + +#: ../../godmode/menu.php:552 +#: ../../godmode/module_library/module_library_view.php:81 +msgid "Module library" +msgstr "BibliothĆØque de modules" + +#: ../../godmode/menu.php:559 +#: ../../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/gis_maps/configure_gis_map.php:86 +#: ../../operation/gis_maps/gis_map.php:30 +#: ../../operation/gis_maps/render_view.php:130 +msgid "GIS Maps list" +msgstr "Liste de cartes GIS" + +#: ../../godmode/gis_maps/configure_gis_map.php:98 +msgid "View GIS" +msgstr "Afficher GIS" + +#: ../../godmode/gis_maps/configure_gis_map.php:106 +msgid "GIS Maps builder" +msgstr "Outil de conception de cartes GIS" + +#: ../../godmode/gis_maps/configure_gis_map.php:196 +msgid "Map successfully created" +msgstr "Carte crĆ©Ć©e correctement" + +#: ../../godmode/gis_maps/configure_gis_map.php:197 +msgid "Map could not be created" +msgstr "Erreur de crĆ©ation de la carte" + +#: ../../godmode/gis_maps/configure_gis_map.php:299 +msgid "Map successfully update" +msgstr "Carte mise Ć  jour correctement" + +#: ../../godmode/gis_maps/configure_gis_map.php:300 +msgid "Map could not be updated" +msgstr "Erreur de mise Ć  jour de la carte" + +#: ../../godmode/gis_maps/configure_gis_map.php:353 +msgid "Do you want to use the default data from the connection?" +msgstr "Voulez-vous utiliser les donnĆ©es par dĆ©faut de la connexion ?" + +#: ../../godmode/gis_maps/configure_gis_map.php:387 +msgid "The connection" +msgstr "Connexion" + +#: ../../godmode/gis_maps/configure_gis_map.php:387 +msgid "just added previously." +msgstr "ƉlĆ©ment dĆ©jĆ  ajoutĆ©" + +#: ../../godmode/gis_maps/configure_gis_map.php:455 +msgid "Map Name" +msgstr "Nom de la carte" + +#: ../../godmode/gis_maps/configure_gis_map.php:474 +msgid "Add Map connection" +msgstr "Ajouter connexion de carte" + +#: ../../godmode/gis_maps/configure_gis_map.php:523 +msgid "Default zoom" +msgstr "Zoom par dĆ©faut" + +#: ../../godmode/gis_maps/configure_gis_map.php:530 +msgid "Center Latitude" +msgstr "Centrer la latitude" + +#: ../../godmode/gis_maps/configure_gis_map.php:533 +msgid "Center Longitude" +msgstr "Centrer la longitude" + +#: ../../godmode/gis_maps/configure_gis_map.php:536 +msgid "Center Altitude" +msgstr "Centrer l'altitude" + +#: ../../godmode/gis_maps/configure_gis_map.php:539 +msgid "Default Latitude" +msgstr "Latitude par dĆ©faut" + +#: ../../godmode/gis_maps/configure_gis_map.php:542 +msgid "Default Longitude" +msgstr "Longitude par dĆ©faut" + +#: ../../godmode/gis_maps/configure_gis_map.php:545 +msgid "Default Altitude" +msgstr "Altitude par dĆ©faut" + +#: ../../godmode/gis_maps/configure_gis_map.php:552 +#: ../../godmode/setup/gis_step_2.php:395 +msgid "Layers" +msgstr "Couches" + +#: ../../godmode/gis_maps/configure_gis_map.php:561 +msgid "List of layers" +msgstr "Liste de couches" + +#: ../../godmode/gis_maps/configure_gis_map.php:562 +msgid "New layer" +msgstr "Nouvelle couche" + +#: ../../godmode/gis_maps/configure_gis_map.php:568 +msgid "Layer name" +msgstr "Nom de la couche" + +#: ../../godmode/gis_maps/configure_gis_map.php:570 +msgid "Visible" +msgstr "Visible" + +#: ../../godmode/gis_maps/configure_gis_map.php:574 +msgid "Show agents from group" +msgstr "Afficher les agents du groupe" + +#: ../../godmode/gis_maps/configure_gis_map.php:575 +#: ../../godmode/setup/setup_general.php:574 +#: ../../godmode/reporting/create_container.php:294 +#: ../../godmode/reporting/create_container.php:310 +#: ../../include/ajax/events.php:1018 ../../include/ajax/graph.ajax.php:145 +msgid "none" +msgstr "aucun" + +#: ../../godmode/gis_maps/configure_gis_map.php:586 +msgid "Add agent" +msgstr "Ajouter un agent" + +#: ../../godmode/gis_maps/configure_gis_map.php:608 +msgid "List of Agents to be shown in the layer" +msgstr "Liste d'agents Ć  afficher dans la couche" + +#: ../../godmode/gis_maps/configure_gis_map.php:639 +msgid "Use the data of this agent" +msgstr "Utiliser les donnĆ©es de cet agent" + +#: ../../godmode/gis_maps/configure_gis_map.php:647 +msgid "List of groups to be shown in the layer" +msgstr "Liste des groupes Ć  afficher dans la couche" + +#: ../../godmode/gis_maps/configure_gis_map.php:654 +msgid "Save Layer" +msgstr "Sauvegarder la couche" + +#: ../../godmode/gis_maps/configure_gis_map.php:670 +#: ../../godmode/gis_maps/configure_gis_map.php:677 +msgid "Save map" +msgstr "Sauvegarder la carte" + +#: ../../godmode/gis_maps/configure_gis_map.php:672 +msgid "Update map" +msgstr "Mettre Ć  jour la carte" + +#: ../../godmode/gis_maps/configure_gis_map.php:1060 +msgid "Using data from" +msgstr "En utilisant les donnĆ©es de" + +#: ../../godmode/gis_maps/configure_gis_map.php:1218 +msgid "Empty layer names are not supported" +msgstr "Les noms vides ne sont pas pris en charge!" + +#: ../../godmode/massive/massive_copy_modules.php:193 +msgid "Copy alerts" +msgstr "Copier les alertes" + +#: ../../godmode/massive/massive_copy_modules.php:196 +#: ../../godmode/massive/massive_delete_modules.php:458 +#: ../../godmode/massive/massive_edit_modules.php:420 +msgid "Filter Modules" +msgstr "Filtrer les modules" + +#: ../../godmode/massive/massive_copy_modules.php:230 +msgid "No alerts for this agent" +msgstr "Aucune alerte pour cet agent" + +#: ../../godmode/massive/massive_copy_modules.php:292 +#: ../../godmode/massive/massive_delete_modules.php:530 +msgid "Filter Agents" +msgstr "Filtrer les agents" + +#: ../../godmode/massive/massive_copy_modules.php:309 +msgid "To agent(s)" +msgstr "Pour agent(s)" + +#: ../../godmode/massive/massive_copy_modules.php:559 +msgid "No operation selected" +msgstr "Aucune opĆ©ration sĆ©lectionnĆ©e" + +#: ../../godmode/massive/massive_copy_modules.php:569 +#: ../../include/functions_agents.php:845 +msgid "No destiny agent(s) to copy" +msgstr "Aucun agent de destination Ć  copier" + +#: ../../godmode/massive/massive_operations.php:59 +msgid "Bulk alert add" +msgstr "Ajout massif d'alertes" + +#: ../../godmode/massive/massive_operations.php:60 +msgid "Bulk alert delete" +msgstr "Suppression massive d'alertes" + +#: ../../godmode/massive/massive_operations.php:61 +msgid "Bulk alert actions add" +msgstr "Ajout massif d'actions des alertes" + +#: ../../godmode/massive/massive_operations.php:62 +msgid "Bulk alert actions delete" +msgstr "Suppression massive d'actions des alertes" + +#: ../../godmode/massive/massive_operations.php:63 +msgid "Bulk alert enable/disable" +msgstr "Activer/dĆ©sactiver massivement les alertes" + +#: ../../godmode/massive/massive_operations.php:64 +msgid "Bulk alert setting standby" +msgstr "Configuration massive des alertes en mode veille" + +#: ../../godmode/massive/massive_operations.php:68 +msgid "Bulk agent edit" +msgstr "Ɖdition massive des alertes" + +#: ../../godmode/massive/massive_operations.php:69 +#: ../../godmode/massive/massive_operations.php:73 +msgid "Bulk agent delete" +msgstr "Suppression massive des alertes" + +#: ../../godmode/massive/massive_operations.php:79 +msgid "Bulk profile add" +msgstr "Ajout massif de profils" + +#: ../../godmode/massive/massive_operations.php:80 +msgid "Bulk profile delete" +msgstr "Suppression massive de profils" + +#: ../../godmode/massive/massive_operations.php:87 +msgid "Bulk module edit" +msgstr "Ɖdition massive de modules" + +#: ../../godmode/massive/massive_operations.php:88 +msgid "Bulk module copy" +msgstr "Copie massive de modules" + +#: ../../godmode/massive/massive_operations.php:89 +msgid "Bulk module delete" +msgstr "Suppression massive de modules" + +#: ../../godmode/massive/massive_operations.php:93 +msgid "Bulk plugin edit" +msgstr "Ɖdition massive de plugins" + +#: ../../godmode/massive/massive_operations.php:389 +#, php-format +msgid "" +"No changes have been made because they exceed the maximum allowed (%d). Make " +"fewer changes or contact the administrator." +msgstr "" +"Aucune modification n'a Ć©tĆ© apportĆ©e car elles dĆ©passent le maximum autorisĆ© " +"(%d). Apportez moins de modifications ou contactez l'administrateur." + +#: ../../godmode/massive/massive_operations.php:417 +#, php-format +msgid "This node is configured with centralized mode. To delete agents go to %s" +msgstr "" +"Ce nœud est configurĆ© en mode centralisĆ©. Pour supprimer des agents, accĆ©dez Ć  %s" + +#: ../../godmode/massive/massive_operations.php:440 +msgid "The blank fields will not be updated" +msgstr "Les champs vides ne seront pas mis Ć  jour" + +#: ../../godmode/massive/massive_standby_alerts.php:223 +msgid "Not standby alerts" +msgstr "Aucune alerte en mode veille" + +#: ../../godmode/massive/massive_standby_alerts.php:252 +#: ../../godmode/massive/massive_standby_alerts.php:256 +msgid "Set standby selected alerts" +msgstr "Configurer les alertes sĆ©lectionnĆ©es en mode veille" + +#: ../../godmode/massive/massive_standby_alerts.php:258 +msgid "Standby alerts" +msgstr "Alertes en mode veille" + +#: ../../godmode/massive/massive_delete_action_alerts.php:75 +msgid "Could not be deleted. No agents selected" +msgstr "Erreur de suppression. Aucun agent sĆ©lectionnĆ©" + +#: ../../godmode/massive/massive_delete_action_alerts.php:122 +msgid "Could not be deleted. No alerts selected" +msgstr "Erreur de suppression. Aucune alerte sĆ©lectionnĆ©e" + +#: ../../godmode/massive/massive_delete_action_alerts.php:181 +msgid "Could not be deleted. No action selected" +msgstr "Erreur de suppression. Aucune action sĆ©lectionnĆ©e" + +#: ../../godmode/massive/massive_delete_action_alerts.php:230 +#: ../../godmode/massive/massive_add_action_alerts.php:212 +msgid "Agents with templates" +msgstr "Agents avec des modĆØles" + +#: ../../godmode/massive/massive_delete_action_alerts.php:239 +#: ../../godmode/massive/massive_add_action_alerts.php:218 +#: ../../godmode/alerts/alert_templates.php:131 +#: ../../godmode/alerts/alert_templates.php:183 +#: ../../godmode/alerts/alert_templates.php:206 +#: ../../godmode/alerts/alert_templates.php:227 +msgid "Alert templates" +msgstr "ModĆØles d'alertes" + +#: ../../godmode/massive/massive_delete_action_alerts.php:247 +#: ../../godmode/massive/massive_delete_modules.php:557 +#: ../../godmode/massive/massive_add_action_alerts.php:226 +#: ../../godmode/massive/massive_edit_modules.php:530 +msgid "Show unknown and not init modules" +msgstr "Afficher les modules inconnus et non initialisĆ©s" + +#: ../../godmode/massive/massive_delete_modules.php:82 +msgid "No module selected" +msgstr "Aucun module sĆ©lectionnĆ©" + +#: ../../godmode/massive/massive_delete_modules.php:156 +msgid "There was an error deleting the modules, the operation has been cancelled" +msgstr "Erreur de suppression des modules, l'opĆ©ration a Ć©tĆ© annulĆ©e" + +#: ../../godmode/massive/massive_delete_modules.php:318 +#: ../../godmode/massive/massive_edit_modules.php:304 +msgid "Selection mode" +msgstr "Mode de sĆ©lection" + +#: ../../godmode/massive/massive_delete_modules.php:319 +#: ../../godmode/massive/massive_edit_modules.php:305 +msgid "Select modules first " +msgstr "SĆ©lectionner les modules en premier " + +#: ../../godmode/massive/massive_delete_modules.php:320 +#: ../../godmode/massive/massive_edit_modules.php:306 +msgid "Select agents first " +msgstr "SĆ©lectionner les agents en premier " + +#: ../../godmode/massive/massive_delete_modules.php:343 +#: ../../godmode/massive/massive_edit_modules.php:325 +msgid "Select all modules of this type" +msgstr "SĆ©lectionner tous les modules de ce type" + +#: ../../godmode/massive/massive_delete_modules.php:387 +#: ../../godmode/massive/massive_edit_modules.php:371 +msgid "Select all modules of this group" +msgstr "SĆ©lectionner tous les modules de ce groupe" + +#: ../../godmode/massive/massive_delete_modules.php:436 +#: ../../godmode/massive/massive_edit_modules.php:382 +#: ../../godmode/events/custom_events.php:116 ../../include/functions_events.php:304 +msgid "Module Status" +msgstr "Ɖtat des modules" + +#: ../../godmode/massive/massive_delete_modules.php:477 +#: ../../godmode/massive/massive_edit_modules.php:436 +msgid "Select all modules" +msgstr "SĆ©lectionner tous les modules" + +#: ../../godmode/massive/massive_delete_modules.php:479 +#: ../../godmode/massive/massive_edit_modules.php:438 +msgid "When select modules" +msgstr "Lorsque des modules sont sĆ©lectionnĆ©es" + +#: ../../godmode/massive/massive_delete_modules.php:483 +#: ../../godmode/massive/massive_edit_modules.php:442 +msgid "Show common agents" +msgstr "Afficher agents communs" + +#: ../../godmode/massive/massive_delete_modules.php:484 +#: ../../godmode/massive/massive_edit_modules.php:443 +msgid "Show all agents" +msgstr "Afficher tous les agents" + +#: ../../godmode/massive/massive_delete_modules.php:549 +#: ../../godmode/massive/massive_edit_modules.php:522 +msgid "Select all agents" +msgstr "SĆ©lectionnez tous les agents" + +#: ../../godmode/massive/massive_delete_modules.php:595 +#: ../../godmode/massive/massive_edit_modules.php:1260 +msgid "Please, select an agent first" +msgstr "Veuillez d'abord sĆ©lectionner un agent" + +#: ../../godmode/massive/massive_add_alerts.php:105 +#: ../../godmode/massive/massive_delete_alerts.php:108 +#: ../../operation/agentes/alerts_status.php:531 +#: ../../operation/agentes/alerts_status.functions.php:54 +msgid "No alert selected" +msgstr "Aucune alerte sĆ©lectionnĆ©e" + +#: ../../godmode/massive/massive_delete_agents.php:122 +#, php-format +msgid "" +"There was an error deleting the agent, the operation has been cancelled Could not " +"delete agent %s" +msgstr "" +"Erreur de suppression de l'agent, l'opĆ©ration a Ć©tĆ© annulĆ©e. Impossible de " +"supprimer %s agent(s)" + +#: ../../godmode/massive/massive_delete_agents.php:132 +#, php-format +msgid "Successfully deleted (%s)" +msgstr "(%s) supprimĆ©(s) correctement" + +#: ../../godmode/massive/massive_delete_agents.php:226 +#: ../../godmode/massive/massive_edit_agents.php:547 +msgid "Show agents" +msgstr "Afficher les agents" + +#: ../../godmode/massive/massive_edit_plugins.php:177 +msgid "Error retrieving the plugin macros" +msgstr "Erreur de rĆ©cupĆ©ration des macros plugin" + +#: ../../godmode/massive/massive_edit_plugins.php:185 +msgid "Error retrieving the modified macros" +msgstr "Erreur de rĆ©cupĆ©ration des macros modifiĆ©es" + +#: ../../godmode/massive/massive_edit_plugins.php:208 +msgid "Error retrieving the module plugin macros" +msgstr "Erreur de rĆ©cupĆ©ration des macros plugin module" + +#: ../../godmode/massive/massive_edit_plugins.php:226 +msgid "Error retrieving the module plugin macros data" +msgstr "Erreur de rĆ©cupĆ©ration des donnĆ©es des macros du module de plugin" + +#: ../../godmode/massive/massive_edit_plugins.php:264 +msgid "Error building the new macros" +msgstr "Erreur de conception des nouvelles macros" + +#: ../../godmode/massive/massive_edit_plugins.php:290 +#, php-format +msgid "%d modules updated" +msgstr "%d modules mis Ć  jour" + +#: ../../godmode/massive/massive_edit_plugins.php:321 +msgid "There are not registered plugins" +msgstr "Aucun plugin enregistrĆ©" + +#: ../../godmode/massive/massive_edit_plugins.php:464 +msgid "Invalid plugin data" +msgstr "DonnĆ©es du plugin non valides" + +#: ../../godmode/massive/massive_edit_plugins.php:571 +msgid "Clear" +msgstr "Effacer" + +#: ../../godmode/massive/massive_edit_plugins.php:599 +msgid "Invalid macros array" +msgstr "Tableau de macros non valide" + +#: ../../godmode/massive/massive_edit_plugins.php:624 +msgid "Multiple values" +msgstr "Valeurs multiples" + +#: ../../godmode/massive/massive_edit_plugins.php:656 +#: ../../godmode/massive/massive_edit_plugins.php:792 +#: ../../godmode/massive/massive_edit_plugins.php:808 +msgid "Invalid agents array" +msgstr "Tableau d'agents non valide" + +#: ../../godmode/massive/massive_edit_plugins.php:672 +msgid "Invalid agent element" +msgstr "ƉlĆ©ment d'agent non valide" + +#: ../../godmode/massive/massive_edit_plugins.php:683 +msgid "Invalid modules array" +msgstr "Tableau de modules non valide" + +#: ../../godmode/massive/massive_edit_plugins.php:711 +msgid "Invalid module element" +msgstr "ƉlĆ©ment de module non valide" + +#: ../../godmode/massive/massive_edit_plugins.php:920 +msgid "There are no modules using this plugin" +msgstr "Aucun module utilise ce plugin" + +#: ../../godmode/massive/massive_edit_plugins.php:1005 +msgid "There was a problem loading the module plugin macros data" +msgstr "Erreur de chargement des donnĆ©es des macros du module de plugin" + +#: ../../godmode/massive/massive_enable_disable_alerts.php:195 +msgid "Enabled alerts" +msgstr "Activer les alertes" + +#: ../../godmode/massive/massive_enable_disable_alerts.php:224 +msgid "Disable selected alerts" +msgstr "DĆ©sactiver les alertes sĆ©lectionnĆ©es" + +#: ../../godmode/massive/massive_enable_disable_alerts.php:228 +msgid "Enable selected alerts" +msgstr "Activer les alertes sĆ©lectionnĆ©es" + +#: ../../godmode/massive/massive_enable_disable_alerts.php:230 +msgid "Disabled alerts" +msgstr "DĆ©sactiver les alertes" + +#: ../../godmode/massive/massive_edit_agents.php:176 +msgid "No values changed" +msgstr "Aucune valeur modifiĆ©e" + +#: ../../godmode/massive/massive_edit_agents.php:227 +msgid "Configuration files deleted successfully" +msgstr "Fichiers de configuration supprimĆ©s correctement" + +#: ../../godmode/massive/massive_edit_agents.php:228 +msgid "Configuration files cannot be deleted" +msgstr "Erreur de suppression des fichiers de configuration" + +#: ../../godmode/massive/massive_edit_agents.php:420 +#, php-format +msgid "Agents updated successfully (%d)" +msgstr "Agents mis Ć  jour correctement (%d)" + +#: ../../godmode/massive/massive_edit_agents.php:435 +#, php-format +msgid "Agents cannot be updated (%d), ids (%s)" +msgstr "Les agents ne peuvent pas ĆŖtre mis Ć  jour (%d), ids (%s)" + +#: ../../godmode/massive/massive_edit_agents.php:450 +#, php-format +msgid "Agent ID: %s cannot be updated custom fields (%s)" +msgstr "" +"ID de lā€™agent : %s ne peut pas ĆŖtre mis Ć  jour des champs personnalisĆ©s (%s)" + +#: ../../godmode/massive/massive_edit_agents.php:470 +#, php-format +msgid "Agent ID: %s cannot be updated %s secondary groups (%s)" +msgstr "ID de lā€™agent : %s ne peut pas ĆŖtre mis Ć  jour %s groupes secondaires (%s)" + +#: ../../godmode/massive/massive_edit_agents.php:919 +msgid "" +"If the remote configuration is enabled, it will also go into standby mode when " +"disabling it." +msgstr "" +"Si la configuration Ć  distance est activĆ©e, elle passera Ć©galement en mode veille " +"lors de sa dĆ©sactivation." + +#: ../../godmode/massive/massive_edit_agents.php:932 +msgid "Active" +msgstr "ActivĆ©" + +#: ../../godmode/massive/massive_edit_agents.php:948 +msgid "Delete available remote configurations" +msgstr "Supprimer les configurations Ć  distance disponibles" + +#: ../../godmode/massive/massive_edit_agents.php:981 +msgid "Without status" +msgstr "Sans Ć©tat" + +#: ../../godmode/massive/massive_edit_agents.php:981 +#: ../../include/lib/Dashboard/Widgets/maps_status.php:360 +msgid "Bad" +msgstr "Mauvais" + +#: ../../godmode/massive/massive_edit_agents.php:991 +msgid "The agent still runs but the alerts and events will be stop" +msgstr "" +"L'agent fonctionne toujours mais les alertes et les Ć©vĆ©nements seront arrĆŖtĆ©s" + +#: ../../godmode/massive/massive_edit_agents.php:1008 +#, php-format +msgid "" +"This mode allow %s to disable all modules \n" +"of this agent while the selected module is on CRITICAL status" +msgstr "" +"Ce mode permet Ć  %s de dĆ©sactiver tous les modules de cet agent alors que le " +"module sĆ©lectionnĆ© est Ć  l'Ć©tat CRITIQUE" + +#: ../../godmode/massive/massive_delete_profiles.php:52 +#: ../../godmode/massive/massive_add_profiles.php:52 +#, php-format +msgid "" +"This node is configured with centralized mode. All profiles user information is " +"read only. Go to %s to manage it." +msgstr "" +"Ce nœud est configurĆ© en mode centralisĆ©. Toutes les informations utilisateur des " +"profils sont en lecture seule. Allez dans %s pour le gĆ©rer." + +#: ../../godmode/massive/massive_delete_profiles.php:133 +msgid "Profiles deleted successfully" +msgstr "Profils supprimĆ©s correctement" + +#: ../../godmode/massive/massive_delete_profiles.php:134 +msgid "Profiles cannot be deleted" +msgstr "Erreur de suppression des profils" -#: ../../operation/search_results.php:93 -#: ../../include/functions_reporting.php:11589 -#: ../../godmode/massive/massive_add_profiles.php:204 #: ../../godmode/massive/massive_delete_profiles.php:153 +#: ../../godmode/massive/massive_add_profiles.php:204 +#: ../../include/functions_reporting.php:11742 ../../operation/search_results.php:93 msgid "Users" msgstr "Utilisateurs" -#: ../../operation/search_results.php:132 ../../include/functions_groups.php:139 -#: ../../include/functions_reporting.php:15024 -#: ../../enterprise/meta/general/main_menu.php:269 -#: ../../enterprise/meta/general/main_header.php:167 -#: ../../enterprise/meta/general/main_header.php:183 -#: ../../enterprise/mobile/include/functions_web.php:15 -msgid "Reports" -msgstr "Rapports" +#: ../../godmode/massive/massive_delete_alerts.php:307 +msgid "Show alerts on disabled modules" +msgstr "Afficher les alertes sur les modules dĆ©sactivĆ©s" -#: ../../operation/incidents/integriaims_export_csv.php:80 -msgid "ID Ticket" -msgstr "ID du ticket" +#: ../../godmode/massive/massive_add_action_alerts.php:134 +msgid "No alerts selected" +msgstr "Aucune alerte sĆ©lectionnĆ©e" -#: ../../operation/incidents/integriaims_export_csv.php:82 -#: ../../operation/incidents/list_integriaims_incidents.php:517 -msgid "Group/Company" -msgstr "Groupe/SocietĆ©" +#: ../../godmode/massive/massive_add_action_alerts.php:166 +msgid "No actions selected" +msgstr "Aucune action sĆ©lectionnĆ©e" -#: ../../operation/incidents/integriaims_export_csv.php:86 -#: ../../enterprise/tools/ipam/ipam_ajax.php:494 -#: ../../enterprise/include/class/DatabaseHA.class.php:798 -#: ../../enterprise/meta/advanced/servers.build_table.php:68 -#: ../../godmode/servers/servers.build_table.php:87 -#: ../../godmode/agentes/agent_incidents.php:93 -msgid "Updated" -msgstr "Mis Ć  jour" +#: ../../godmode/massive/massive_add_profiles.php:184 +msgid "Profiles added successfully" +msgstr "Profils ajoutĆ©s correctement" -#: ../../operation/incidents/integriaims_export_csv.php:87 -msgid "Started" -msgstr "DĆ©marrĆ©" +#: ../../godmode/massive/massive_add_profiles.php:185 +msgid "Profiles cannot be added" +msgstr "Erreur d'ajout de profils" -#: ../../operation/incidents/integriaims_export_csv.php:88 -#: ../../operation/incidents/configure_integriaims_incident.php:282 -#: ../../operation/incidents/list_integriaims_incidents.php:345 -#: ../../operation/incidents/list_integriaims_incidents.php:521 -msgid "Creator" -msgstr "CrĆ©ateur" +#: ../../godmode/massive/massive_edit_modules.php:137 +msgid "Error updating the modules from a module type" +msgstr "Erreur de mise Ć  jour des modules Ć  partir d'un type de module" -#: ../../operation/incidents/incident_statistics.php:24 -#: ../../operation/incidents/configure_integriaims_incident.php:33 -#: ../../operation/incidents/list_integriaims_incidents.php:34 -#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:23 -#: ../../godmode/agentes/agent_incidents.php:22 -msgid "" -"In order to access ticket management system, integration with Integria IMS " -"must be enabled and properly configured" +#: ../../godmode/massive/massive_edit_modules.php:160 +msgid "Error updating the modules from an agent group" +msgstr "Erreur de mise Ć  jour des modules Ć  partir d'un groupe d'agent" + +#: ../../godmode/massive/massive_edit_modules.php:178 +msgid "Error updating the modules (maybe there was no field to update)" msgstr "" -"Pour accĆ©der au systĆØme de gestion des tickets, l'intĆ©gration avec Integria " -"IMS doit ĆŖtre activĆ©e et correctement configurĆ©e" +"Erreur de mise Ć  jour des modules (il n'y avait possiblement pas de champs Ć  " +"mettre Ć  jour)" -#: ../../operation/incidents/incident_statistics.php:29 -msgid "Incidents by status" -msgstr "Incidents par Ć©tat" +#: ../../godmode/massive/massive_edit_modules.php:506 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:405 +msgid "Filter agents" +msgstr "Filtrer les agents" -#: ../../operation/incidents/incident_statistics.php:32 -msgid "Incidents by priority" -msgstr "Incidents par prioritĆ©" +#: ../../godmode/alerts/configure_alert_command.php:60 +msgid "Configure alert command" +msgstr "Configurer la commande de l'alerte" -#: ../../operation/incidents/incident_statistics.php:35 -msgid "Incidents by group" -msgstr "Incidents par groupe" +#: ../../godmode/alerts/configure_alert_command.php:196 +#: ../../godmode/alerts/alert_commands.php:643 +#, php-format +msgid "" +"This node is configured with centralized mode. All alert commands information is " +"read only. Go to %s to manage it." +msgstr "" +"Ce nœud est configurĆ© en mode centralisĆ©. Toutes les informations des commandes " +"d'alerte sont en lecture seule. Allez vers %s pour le gĆ©rer." -#: ../../operation/incidents/incident_statistics.php:38 -msgid "Incidents by user" -msgstr "Incidents par utilisateur" +#: ../../godmode/alerts/configure_alert_command.php:207 +msgid "Update Command" +msgstr "Mettre Ć  jour la commande" -#: ../../operation/incidents/configure_integriaims_incident.php:26 -msgid "Update Integria IMS Ticket" -msgstr "Mettre Ć  jour le ticket Integria IMS" +#: ../../godmode/alerts/configure_alert_command.php:207 +#: ../../godmode/alerts/configure_alert_action.php:275 +msgid "Create Command" +msgstr "CrĆ©er une commande" -#: ../../operation/incidents/configure_integriaims_incident.php:28 -msgid "Create Integria IMS Ticket" -msgstr "CrĆ©er un ticket Integria IMS" +#: ../../godmode/alerts/configure_alert_command.php:297 +#, php-format +msgid "Field %s description" +msgstr "Description de %s champs" + +#: ../../godmode/alerts/configure_alert_command.php:325 +#, php-format +msgid "Field %s values" +msgstr "Valeurs de %s champs" + +#: ../../godmode/alerts/configure_alert_command.php:327 +msgid "value1,tag1;value2,tag2;value3,tag3" +msgstr "valeur1,balise1;valeur2,Ć©tiquette2;valeur3,Ć©tiquette3" + +#: ../../godmode/alerts/configure_alert_command.php:363 +msgid "Hide" +msgstr "Cacher" + +#: ../../godmode/alerts/alert_actions.php:74 +#: ../../include/functions_reporting.php:2836 +msgid "Alert actions" +msgstr "Actions d'alerte" + +#: ../../godmode/alerts/alert_actions.php:222 +#: ../../godmode/alerts/configure_alert_action.php:120 +#, php-format +msgid "" +"This node is configured with centralized mode. All alert actions information is " +"read only. Go to %s to manage it." +msgstr "" +"Ce nœud est configurĆ© en mode centralisĆ©. Toutes les informations sur les actions " +"d'alerte sont en lecture seule. Allez vers %s pour le gĆ©rer." + +#: ../../godmode/alerts/alert_actions.php:396 +msgid "" +"You cannot edit this action, You don't have the permission to edit All group." +msgstr "" +"Vous ne pouvez pas modifier cette action, vous n'avez pas la permission de " +"modifier tous les groupes." + +#: ../../godmode/alerts/alert_actions.php:407 +msgid "" +"The action and the command associated with it do not have the same group. Please " +"contact an administrator to fix it." +msgstr "" +"L'action et la commande qui lui est associĆ©e n'ont pas le mĆŖme groupe. Veuillez " +"contacter un administrateur pour le corriger." + +#: ../../godmode/alerts/alert_actions.php:465 +msgid "No alert actions configured" +msgstr "Aucune action d'alerte configurĆ©e" + +#: ../../godmode/alerts/alert_list.list.php:133 +msgid "Field content" +msgstr "Contenu du champ" + +#: ../../godmode/alerts/alert_list.list.php:145 ../../mobile/operation/alerts.php:64 +#: ../../operation/agentes/alerts_status.functions.php:95 +msgid "All (Enabled)" +msgstr "Tous (activĆ©s)" + +#: ../../godmode/alerts/alert_list.list.php:148 ../../mobile/operation/alerts.php:67 +#: ../../operation/agentes/alerts_status.functions.php:98 +#: ../../operation/snmpconsole/snmp_view.php:228 +#: ../../operation/snmpconsole/snmp_view.php:1263 +msgid "Not fired" +msgstr "Non dĆ©clenchĆ©s" + +#: ../../godmode/alerts/alert_list.list.php:677 +#: ../../godmode/alerts/alert_view.php:317 +msgid "" +"The default actions will be executed every time that the alert is fired and no " +"other action is executed" +msgstr "" +"Les actions par dĆ©faut seront exĆ©cutĆ©es chaque fois que l'alerte est dĆ©clenchĆ©e " +"et qu'aucune autre action est exĆ©cutĆ©e." + +#: ../../godmode/alerts/alert_list.list.php:945 +msgid "View alert advanced details" +msgstr "Afficher les informations avancĆ©es des alertes" + +#: ../../godmode/alerts/alert_list.list.php:961 +#: ../../include/functions_reporting_html.php:3219 +msgid "No alerts defined" +msgstr "Aucune alerte dĆ©finie" + +#: ../../godmode/alerts/alert_commands.php:143 +msgid "" +"For sending emails, text must be HTML format, if you want to use plain text, type " +"it between the following labels:
    "
    +msgstr ""
    +"Pour envoyer des courriels, il faut que le texte soit en format HTML. Si vous "
    +"voulez Ć©crire en texte clair, intoduisez-le entre les Ć©tiquettes suivantes : "
    +"
    "
    +
    +#: ../../godmode/alerts/alert_commands.php:219
    +#: ../../godmode/alerts/alert_commands.php:250
    +msgid "Text/plain"
    +msgstr "Texte/clair"
    +
    +#: ../../godmode/alerts/alert_commands.php:221
    +#: ../../godmode/alerts/alert_commands.php:252
    +msgid "For sending emails only text plain"
    +msgstr "Pour envoyer des courriels seulement en texte clair"
    +
    +#: ../../godmode/alerts/alert_commands.php:235
    +#: ../../godmode/alerts/alert_commands.php:266
    +msgid "Text/html"
    +msgstr "Texte/HTML"
    +
    +#: ../../godmode/alerts/alert_commands.php:474
    +msgid "Permissions warning"
    +msgstr "Avertissement sur les autorisations"
    +
    +#: ../../godmode/alerts/alert_commands.php:477
    +msgid ""
    +"Command management is limited to administrator users or user profiles with "
    +"permissions PM"
    +msgstr ""
    +"La gestion des commandes est limitƩe aux utilisateurs administrateurs ou aux "
    +"profils utilisateurs avec des autorisations PM"
    +
    +#: ../../godmode/alerts/alert_commands.php:494
    +msgid "Alert commands"
    +msgstr "Commandes d'alertes"
    +
    +#: ../../godmode/alerts/alert_commands.php:563
    +#: ../../include/functions_alerts.php:2652
    +msgid "No name specified"
    +msgstr "Aucun nom indiquƩ"
    +
    +#: ../../godmode/alerts/alert_commands.php:567
    +#: ../../include/functions_alerts.php:2647
    +msgid "No command specified"
    +msgstr "Aucune commande spƩcifiƩe."
    +
    +#: ../../godmode/alerts/alert_commands.php:619
    +msgid " (copy)"
    +msgstr " (copie)"
    +
    +#: ../../godmode/alerts/alert_commands.php:740
    +msgid "No alert commands configured"
    +msgstr "Aucune commande d'alerte configurƩe"
    +
    +#: ../../godmode/alerts/alert_templates.php:268
    +#, php-format
    +msgid ""
    +"This node is configured with centralized mode. All alert templates information is "
    +"read only. Go to %s to manage it."
    +msgstr ""
    +"Ce nœud est configurĆ© en mode centralisĆ©. Toutes les informations sur les modĆØles "
    +"d'alerte sont en lecture seule. Allez vers %s pour le gƩrer."
    +
    +#: ../../godmode/alerts/alert_templates.php:413
    +msgid ""
    +"You cannot edit this alert template, You don't have the permission to edit All "
    +"group."
    +msgstr ""
    +"Vous ne pouvez pas modifier ce modĆØle d'alerte, vous n'ĆŖtes pas autorisĆ© Ć  "
    +"modifier le groupe Tous."
    +
    +#: ../../godmode/alerts/alert_templates.php:474
    +msgid "No alert templates defined"
    +msgstr "Aucun modĆØle d'alerte dĆ©fini"
    +
    +#: ../../godmode/alerts/configure_alert_action.php:74
    +#: ../../godmode/alerts/configure_alert_action.php:87
    +msgid "Configure alert action"
    +msgstr "Configurer l'action d'alerte"
    +
    +#: ../../godmode/alerts/configure_alert_action.php:167
    +msgid "Update Action"
    +msgstr "Mettre Ć  jour l'action"
    +
    +#: ../../godmode/alerts/configure_alert_action.php:169
    +#: ../../godmode/alerts/alert_list.builder.php:136
    +#: ../../include/class/AgentsAlerts.class.php:332
    +msgid "Create Action"
    +msgstr "CrƩer une action"
    +
    +#: ../../godmode/alerts/configure_alert_action.php:204
    +msgid "This action may stop working, if you change its name."
    +msgstr "Cette action peut cesser de fonctionner si vous modifiez son nom."
    +
    +#: ../../godmode/alerts/configure_alert_action.php:306
    +msgid "Recovery"
    +msgstr "RƩcupƩration"
    +
    +#: ../../godmode/alerts/configure_alert_action.php:310
    +#: ../../godmode/alerts/alert_view.php:527 ../../godmode/alerts/alert_view.php:654
    +#: ../../godmode/servers/plugin.php:422
    +msgid "Command preview"
    +msgstr "AperƧu de commandes"
    +
    +#: ../../godmode/alerts/configure_alert_action.php:330
    +msgid "Create workunit on recovery"
    +msgstr "CrƩer une unitƩ de travail sur la rƩcupƩration"
    +
    +#: ../../godmode/alerts/configure_alert_action.php:331
    +msgid ""
    +"If closed status is set on recovery, a workunit will be added to the ticket in "
    +"Integria IMS rather that closing the ticket."
    +msgstr ""
    +"Si le statut fermƩ est dƩfini sur la rƩcupƩration, une unitƩ de travail sera "
    +"ajoutƩe au ticket dans Integria IMS plutƓt que de fermer le ticket."
    +
    +#: ../../godmode/alerts/configure_alert_template.php:99
    +#: ../../godmode/alerts/configure_alert_template.php:123
    +#: ../../godmode/alerts/configure_alert_template.php:155
    +#: ../../include/functions_menu.php:494
    +msgid "Configure alert template"
    +msgstr "Configurer le modĆØle d'alerte"
    +
    +#: ../../godmode/alerts/configure_alert_template.php:250
    +#: ../../godmode/alerts/configure_alert_template.php:254
    +msgid "Conditions"
    +msgstr "Conditions"
    +
    +#: ../../godmode/alerts/configure_alert_template.php:271
    +#: ../../godmode/alerts/configure_alert_template.php:275
    +msgid "Advanced fields"
    +msgstr "Champs avancƩs"
    +
    +#: ../../godmode/alerts/configure_alert_template.php:419
    +#, php-format
    +msgid ""
    +"This node is configured with centralized mode. All alerts templates information "
    +"is read only. Go to Go to %s to manage it."
    +msgstr ""
    +"Ce nœud est configurĆ© en mode centralisĆ©. Toutes les informations sur les modĆØles "
    +"d'alertes sont en lecture seule. Allez vers %s pour le gƩrer."
    +
    +#: ../../godmode/alerts/configure_alert_template.php:531
    +msgid "No template name specified"
    +msgstr "Aucun nom de modĆØle spĆ©cifiĆ©"
    +
    +#: ../../godmode/alerts/configure_alert_template.php:607
    +#: ../../godmode/alerts/alert_list.builder.php:169
    +#: ../../include/class/AgentsAlerts.class.php:379
    +msgid "Create Template"
    +msgstr "CrĆ©er un modĆØle"
    +
    +#: ../../godmode/alerts/configure_alert_template.php:712
    +msgid "Reset counter for non-sustained alerts"
    +msgstr "Remettre le compteur Ơ zƩro pour les alertes non-prolongƩes"
    +
    +#: ../../godmode/alerts/configure_alert_template.php:714
    +msgid ""
    +"Enable this option if you want the counter to be reset when the alert is not "
    +"being fired consecutively, even if it's within the time threshold"
    +msgstr ""
    +"Activez cette option si vous voulez remettre Ơ zƩro le compteur lorsque l'alerte "
    +"n'est pas dĆ©clenchĆ©e successivement, mĆŖme si elle se trouve dans le seuil de temps"
    +
    +#: ../../godmode/alerts/configure_alert_template.php:788
    +msgid ""
    +"Unless they're left blank, the fields from the action will override those set on "
    +"the template."
    +msgstr ""
    +"Les champs de l'action Ć©craseront ceux sur le modĆØle sauf s'ils sont laissĆ©s en "
    +"blanc."
    +
    +#: ../../godmode/alerts/configure_alert_template.php:792
    +msgid "Condition type"
    +msgstr "Type de condition"
    +
    +#: ../../godmode/alerts/configure_alert_template.php:809
    +msgid "Trigger when matches the value"
    +msgstr "DƩclenchƩ lorsqu'il concorde avec la valeur"
    +
    +#: ../../godmode/alerts/configure_alert_template.php:832
    +msgid "The regular expression is valid"
    +msgstr "L'expression rĆ©guliĆØre est valide"
    +
    +#: ../../godmode/alerts/configure_alert_template.php:842
    +msgid "The regular expression is not valid"
    +msgstr "L'expression rĆ©guliĆØre n'est pas valide"
    +
    +#: ../../godmode/alerts/configure_alert_template.php:919
    +msgid "Recovery fields"
    +msgstr "Champs de rƩcupƩration"
    +
    +#: ../../godmode/alerts/configure_alert_template.php:1136
    +msgid "No wizard"
    +msgstr "Pas d'assistant logiciel"
    +
    +#: ../../godmode/alerts/configure_alert_template.php:1216
    +#: ../../godmode/alerts/alert_view.php:166 ../../include/functions_ui.php:1340
    +msgid "The alert would fire when the value matches "
    +msgstr ""
    +"L'alerte est dƩclenchƩe lorsque la valeur concorde avec "
    +
    +#: ../../godmode/alerts/configure_alert_template.php:1217
    +#, php-format
    +msgid "The alert would fire when the value doesn\\'t match %s"
    +msgstr "L'alerte est dƩclenchƩe lorsque la valeur ne concorde pas avec %s"
    +
    +#: ../../godmode/alerts/configure_alert_template.php:1218
    +#: ../../godmode/alerts/alert_view.php:175 ../../include/functions_ui.php:1329
    +msgid "The alert would fire when the value is "
    +msgstr "L'alerte est dƩclenchƩe lorsque la valeur est "
    +
    +#: ../../godmode/alerts/configure_alert_template.php:1219
    +#: ../../godmode/alerts/alert_view.php:180 ../../include/functions_ui.php:1334
    +msgid "The alert would fire when the value is not "
    +msgstr ""
    +"L'alerte est dƩclenchƩe lorsque la valeur n'est pas "
    +
    +#: ../../godmode/alerts/configure_alert_template.php:1220
    +#: ../../godmode/alerts/alert_view.php:187 ../../include/functions_ui.php:1352
    +msgid ""
    +"The alert would fire when the value is between  and "
    +msgstr ""
    +"L'alerte est dƩclenchƩe lorsque la valeur se trouve entre  et "
    +
    +#: ../../godmode/alerts/configure_alert_template.php:1221
    +msgid ""
    +"The alert would fire when the value is not between  and "
    +msgstr ""
    +"L'alerte est dƩclenchƩe lorsque la valeur se trouve entre  et "
    +
    +#: ../../godmode/alerts/configure_alert_template.php:1222
    +#: ../../godmode/alerts/alert_view.php:200
    +msgid "The alert would fire when the value is below "
    +msgstr ""
    +"L'alerte est dƩclenchƩe lorsque la valeur est infƩrieure Ơ "
    +
    +#: ../../godmode/alerts/configure_alert_template.php:1223
    +#: ../../godmode/alerts/alert_view.php:205
    +msgid "The alert would fire when the value is above "
    +msgstr ""
    +"L'alerte est dƩclenchƩe lorsque la valeur est supƩrieure Ơ  "
    +
    +#: ../../godmode/alerts/configure_alert_template.php:1224
    +#: ../../godmode/alerts/alert_view.php:218 ../../include/functions_ui.php:1371
    +msgid "The alert would fire when the module is in warning status"
    +msgstr "L'alerte est dƩclenchƩe lorsque le module se trouve en Ʃtat d'alerte"
    +
    +#: ../../godmode/alerts/configure_alert_template.php:1225
    +#: ../../godmode/alerts/alert_view.php:222 ../../include/functions_ui.php:1376
    +msgid "The alert would fire when the module is in critical status"
    +msgstr "L'alerte est dƩclenchƩe lorsque le module se trouve en Ʃtat critique"
    +
    +#: ../../godmode/alerts/configure_alert_template.php:1226
    +#: ../../godmode/alerts/alert_view.php:211
    +msgid "The alert would fire when the module value changes"
    +msgstr "L'alerte est dƩclenchƩe lorsque la valeur du module change"
    +
    +#: ../../godmode/alerts/configure_alert_template.php:1227
    +#: ../../godmode/alerts/alert_view.php:213
    +msgid "The alert would fire when the module value does not change"
    +msgstr "L'alerte est dƩclenchƩe lorsque la valeur du module ne change pas"
    +
    +#: ../../godmode/alerts/configure_alert_template.php:1228
    +#: ../../godmode/alerts/alert_view.php:230
    +msgid "The alert would fire when the module is in unknown status"
    +msgstr "L'alerte est dƩclenchƩe lorsque le module se trouve en Ʃtat inconnu"
    +
    +#: ../../godmode/alerts/configure_alert_template.php:1229
    +msgid "The alert template cannot have the same value for min and max thresholds."
    +msgstr ""
    +"Le modĆØle d'alerte ne peut pas avoir la mĆŖme valeur pour les seuils minimum et "
    +"maximum."
    +
    +#: ../../godmode/alerts/configure_alert_template.php:1230
    +#: ../../godmode/alerts/alert_view.php:226
    +msgid "The alert would fire when the module is in not normal status"
    +msgstr "L'alerte se dƩclencherait lorsque le module n'est pas dans un Ʃtat normal"
    +
    +#: ../../godmode/alerts/configure_alert_template.php:1407
    +msgid ""
    +"The alert would fire when the module is in unknown status. Warning: "
    +"unknown_updates of pandora_server.conf must be equal to 1"
    +msgstr ""
    +"L'alerte se dƩclenche lorsque le module est dans un Ʃtat inconnu. Attention : "
    +"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:4169
    +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:480
    +msgid "List alerts"
    +msgstr "Liste d'alertes"
    +
    +#: ../../godmode/alerts/alert_view.php:128 ../../mobile/operation/alerts.php:125
    +#: ../../mobile/operation/alerts.php:126 ../../mobile/operation/alerts.php:256
    +#: ../../mobile/operation/alerts.php:257
    +msgid "Stand by"
    +msgstr "Veuillez patientez"
    +
    +#: ../../godmode/alerts/alert_view.php:168 ../../include/functions_ui.php:1343
    +msgid "The alert would fire when the value doesn't match "
    +msgstr ""
    +"L'alerte est dƩclenchƩe lorsque la valeur ne concorde pas avec "
    +
    +#: ../../godmode/alerts/alert_view.php:191 ../../include/functions_ui.php:1355
    +msgid ""
    +"The alert would fire when the value is not between  and "
    +""
    +msgstr ""
    +"L'alerte est dƩclenchƩe lorsque la valeur se trouve entre  et "
    +
    +#: ../../godmode/alerts/alert_view.php:281
    +msgid "Firing conditions"
    +msgstr "Conditions de dƩclenchement"
    +
    +#: ../../godmode/alerts/alert_view.php:305 ../../godmode/alerts/alert_view.php:339
    +msgid "Every time that the alert is fired"
    +msgstr "Chaque fois que l'alerte est dƩclenchƩe"
    +
    +#: ../../godmode/alerts/alert_view.php:385
    +msgid ""
    +"Select the desired action and mode to see the Firing/Recovery fields for this "
    +"action"
    +msgstr ""
    +"SƩlectionnez l'action et le mode souhaitƩs pour voir les champs DƩclenchement/"
    +"RƩcupƩration pour cette action"
    +
    +#: ../../godmode/alerts/alert_view.php:446
    +msgid "Template fields"
    +msgstr "Champs de modĆØles"
    +
    +#: ../../godmode/alerts/alert_view.php:448
    +msgid "Triggering fields configured in template"
    +msgstr "Champs de dĆ©clenchement configurĆ©s dans le modĆØle"
    +
    +#: ../../godmode/alerts/alert_view.php:542
    +msgid "The alert recovering is disabled on this template."
    +msgstr "L'alerte de rĆ©cupĆ©ration est dĆ©sactivĆ©e sur ce modĆØle."
    +
    +#: ../../godmode/alerts/alert_view.php:558
    +msgid "Recovering fields"
    +msgstr "RƩcupƩration de champs"
    +
    +#: ../../godmode/alerts/alert_view.php:560
    +msgid ""
    +"Fields passed to the command executed by this action when the alert is recovered"
    +msgstr ""
    +"Champs transfƩrƩs Ơ la commande exƩcutƩe par cette action lorsque l'alerte est "
    +"rƩcupƩrƩe"
    +
    +#: ../../godmode/alerts/alert_view.php:574
    +msgid "Template recovery fields"
    +msgstr "Champs de rĆ©cupĆ©ration de modĆØles"
    +
    +#: ../../godmode/alerts/alert_view.php:576
    +msgid "Recovery fields configured in alert template"
    +msgstr "Champs de rĆ©cupĆ©ration configurĆ©s dans le modĆØle d'alerte"
    +
    +#: ../../godmode/alerts/alert_view.php:579
    +msgid "Action recovery fields"
    +msgstr "Champs de rƩcupƩration d'actions"
    +
    +#: ../../godmode/alerts/alert_view.php:581
    +msgid "Recovery fields configured in alert action"
    +msgstr "Champs de rƩcupƩration configurƩs en action d'alerte"
    +
    +#: ../../godmode/alerts/alert_view.php:584
    +msgid "Executed on recovery"
    +msgstr "ExƩcutƩ lors de la rƩcupƩration"
    +
    +#: ../../godmode/alerts/alert_view.php:586
    +msgid "Fields used on execution when the alert is recovered"
    +msgstr "Champs utilisƩs lors de l'exƩcution lorsque l'alerte est rƩcupƩrƩe"
    +
    +#: ../../godmode/alerts/alert_list.builder.php:91
    +msgid "Latest value"
    +msgstr "DerniĆØre valeur"
    +
    +#: ../../godmode/alerts/alert_list.builder.php:201
    +msgid "Finish and view cluster"
    +msgstr "Terminer et afficher la grappe"
    +
    +#: ../../godmode/alerts/alert_list.php:115
    +msgid "Already added"
    +msgstr "DƩjƠ ajoutƩ"
    +
    +#: ../../godmode/alerts/alert_list.php:169
    +msgid "No template specified"
    +msgstr "Aucun modĆØle spĆ©cifiĆ©"
    +
    +#: ../../godmode/alerts/alert_list.php:484
    +msgid "Builder alert"
    +msgstr "Outil de conception d'alertes"
    +
    +#: ../../godmode/setup/license.php:51
    +msgid "License management"
    +msgstr "Gestion de licences"
    +
    +#: ../../godmode/setup/license.php:99
    +msgid "Error while connecting to licence server."
    +msgstr "Erreur lors de la connexion au serveur de licences."
    +
    +#: ../../godmode/setup/license.php:100
    +msgid "Invalid response while validating license."
    +msgstr "RĆ©ponse invalide lors de la validation de la licence."
    +
    +#: ../../godmode/setup/license.php:121
    +msgid "Licence"
    +msgstr "Licence"
    +
    +#: ../../godmode/setup/license.php:129
    +#: ../../include/class/Diagnostics.class.php:1152
    +msgid "Customer key"
    +msgstr "Mot de passe du client"
    +
    +#: ../../godmode/setup/license.php:135
    +#: ../../include/class/Diagnostics.class.php:1160
    +msgid "Platform Limit"
    +msgstr "Limite de la plateforme"
    +
    +#: ../../godmode/setup/license.php:136 ../../godmode/setup/license.php:139
    +#: ../../godmode/setup/license.php:142 ../../godmode/setup/license.php:145
    +msgid "agents"
    +msgstr "agents"
    +
    +#: ../../godmode/setup/license.php:136 ../../godmode/setup/license.php:139
    +#: ../../godmode/setup/license.php:142 ../../godmode/setup/license.php:145
    +#: ../../operation/tree.php:158
    +msgid "modules"
    +msgstr "modules"
    +
    +#: ../../godmode/setup/license.php:138
    +#: ../../include/class/Diagnostics.class.php:1164
    +msgid "Current Platform Count"
    +msgstr "Nombre de plateformes actuelles"
    +
    +#: ../../godmode/setup/license.php:141
    +#: ../../include/class/Diagnostics.class.php:1168
    +msgid "Current Platform Count (enabled: items)"
    +msgstr "Nombre de plateformes actuelles (activƩs : ƩlƩments)"
    +
    +#: ../../godmode/setup/license.php:144
    +#: ../../include/class/Diagnostics.class.php:1172
    +msgid "Current Platform Count (disabled: items)"
    +msgstr "Nombre de plateformes actuelles (dƩsactivƩs : ƩlƩments)"
    +
    +#: ../../godmode/setup/license.php:147
    +#: ../../include/class/Diagnostics.class.php:1176
    +msgid "License Mode"
    +msgstr "Mode licence"
    +
    +#: ../../godmode/setup/license.php:150
    +msgid "NMS"
    +msgstr "NMS"
    +
    +#: ../../godmode/setup/license.php:156
    +#: ../../include/class/Diagnostics.class.php:1188
    +msgid "Licensed to"
    +msgstr "Sous licence pour"
    +
    +#: ../../godmode/setup/license.php:167 ../../godmode/setup/license.php:182
    +msgid "Request new license"
    +msgstr "Demander une nouvelle licence"
    +
    +#: ../../godmode/setup/license.php:186
    +#, php-format
    +msgid "To get your %s Enterprise License:"
    +msgstr "Pour obtenir votre %s Licence EntrepriseĀ :"
    +
    +#: ../../godmode/setup/license.php:189
    +#, php-format
    +msgid "Go to %s"
    +msgstr "Aller Ć  %s"
    +
    +#: ../../godmode/setup/license.php:192
    +msgid "Enter the auth key and the following request key:"
    +msgstr ""
    +"Introduisez la clƩ d'authentification et la suivante clƩ de la "
    +"demande :"
    +
    +#: ../../godmode/setup/license.php:198
    +msgid "Enter your name (or a company name) and a contact email address."
    +msgstr ""
    +"Introduisez votre nom (ou le nom d'entreprise) et une adresse courriel de contact."
    +
    +#: ../../godmode/setup/license.php:201
    +msgid "Click on Generate."
    +msgstr "Cliquez sur GƩnƩrer."
    +
    +#: ../../godmode/setup/license.php:204
    +msgid ""
    +"Click here, enter the "
    +"generated license key and click on Validate."
    +msgstr ""
    +"Cliquez  ici , entrez "
    +"la clƩ de licence gƩnƩrƩe et cliquez sur Valider  ."
    +
    +#: ../../godmode/setup/news.php:29
    +msgid "Site news management"
    +msgstr "GƩrer les nouveautƩs du site"
    +
    +#: ../../godmode/setup/news.php:152 ../../godmode/setup/links.php:92
    +msgid "Name error"
    +msgstr "Erreur de nom"
    +
    +#: ../../godmode/setup/news.php:191
    +msgid "Modal screen"
    +msgstr "Ɖcran modal"
    +
    +#: ../../godmode/setup/news.php:194
    +msgid "Expire"
    +msgstr "Expire le"
    +
    +#: ../../godmode/setup/news.php:197 ../../godmode/setup/news.php:250
    +msgid "Expiration"
    +msgstr "Expiration"
    +
    +#: ../../godmode/setup/news.php:241
    +msgid "There are no defined news"
    +msgstr "Aucune nouvelle dƩfinie"
    +
    +#: ../../godmode/setup/news.php:248
    +#: ../../operation/agentes/estado_generalagente.php:642
    +msgid "Author"
    +msgstr "Auteur"
    +
    +#: ../../godmode/setup/news.php:268
    +msgid "Modal"
    +msgstr "Modal"
    +
    +#: ../../godmode/setup/news.php:270
    +msgid "Board"
    +msgstr "Panneau"
    +
    +#: ../../godmode/setup/news.php:281
    +msgid "Expired"
    +msgstr "ExpirƩ"
    +
    +#: ../../godmode/setup/gis.php:68
    +msgid "Map connection name"
    +msgstr "Nom de connexion de la carte"
    +
    +#: ../../godmode/setup/gis.php:86
    +msgid "Do you wan delete this connection?"
    +msgstr "Voulez-vous supprimer cette connexion ?"
    +
    +#: ../../godmode/setup/setup.php:216
    +msgid "Websocket engine"
    +msgstr "Moteur de Websocket"
    +
    +#: ../../godmode/setup/setup.php:234
    +msgid "GIS Map connection"
    +msgstr "Connexion Ć  la carte SIG"
    +
    +#: ../../godmode/setup/setup.php:305
    +msgid "Pandora Websocket Engine"
    +msgstr "Moteur de Websocket Pandora FMS"
    +
    +#: ../../godmode/setup/setup.php:349
    +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:1653
    +msgid "Enable eHorus"
    +msgstr "Activer eHorus"
    +
    +#: ../../godmode/setup/setup_ehorus.php:93
    +msgid "API Hostname"
    +msgstr "Nom d'hƓte de l'API"
    +
    +#: ../../godmode/setup/setup_ehorus.php:99
    +msgid "API Port"
    +msgstr "Port API"
    +
    +#: ../../godmode/setup/setup_ehorus.php:105
    +#: ../../godmode/setup/setup_integria.php:309
    +msgid "Request timeout"
    +msgstr "Demande expirƩe"
    +
    +#: ../../godmode/setup/setup_ehorus.php:139
    +msgid "Remote Management System"
    +msgstr "SystĆØme de Gestion Ć  Distance"
    +
    +#: ../../godmode/setup/setup_ehorus.php:147
    +msgid "Custom field eHorusID created"
    +msgstr "Champ personnalisƩ avec identifiant eHorus crƩƩ correctement"
    +
    +#: ../../godmode/setup/setup_ehorus.php:147
    +msgid "Error creating custom field"
    +msgstr "Erreur de crƩation du champ personnalisƩ"
    +
    +#: ../../godmode/setup/setup_ehorus.php:151
    +msgid "eHorus has his own agent identifiers"
    +msgstr "eHorus dispose de ses propres identifiants d'agents."
    +
    +#: ../../godmode/setup/setup_ehorus.php:152
    +msgid "To store them, it will be necessary to use an agent custom field"
    +msgstr "Pour les stocker, il faudra utiliser un champ personnalisƩ de l'agent."
    +
    +#: ../../godmode/setup/setup_ehorus.php:153
    +msgid "Possibly the eHorus id will have to be filled in by hand for every agent"
    +msgstr ""
    +"Il faudra possiblement introduire l'identifiant manuellement pour chaque agent."
    +
    +#: ../../godmode/setup/setup_ehorus.php:158
    +msgid "The custom field does not exists already"
    +msgstr "Le champ personnalisƩ n'existe pas encore"
    +
    +#: ../../godmode/setup/setup_ehorus.php:172
    +msgid "eHorus API"
    +msgstr "API de eHorus"
    +
    +#: ../../godmode/setup/setup_ehorus.php:254
    +#: ../../godmode/setup/setup_integria.php:719
    +msgid "Connection timeout"
    +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:1243 ../../operation/users/user_edit.php:1321
    +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:1244 ../../operation/users/user_edit.php:1322
    +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:1245 ../../operation/users/user_edit.php:1323
    +msgid "Invalid password"
    +msgstr "Mot de passe incorrect"
    +
    +#: ../../godmode/setup/setup_websocket_engine.php:38
    +msgid "WebSocket settings"
    +msgstr "ParamĆØtres WebSocket"
    +
    +#: ../../godmode/setup/setup_websocket_engine.php:47
    +msgid "Bind address"
    +msgstr "Lier l'adresse"
    +
    +#: ../../godmode/setup/setup_websocket_engine.php:57
    +msgid "Bind port"
    +msgstr "Lier le port"
    +
    +#: ../../godmode/setup/setup_websocket_engine.php:67
    +#: ../../include/functions_config.php:1805
    +msgid "WebSocket proxy url"
    +msgstr "URL du proxy WebSocket"
    +
    +#: ../../godmode/setup/os.list.php:56
    +#, php-format
    +msgid ""
    +"This node is configured with centralized mode. All OS definitions are read only. "
    +"Go to %s to manage them."
    +msgstr ""
    +"Ce nœud est configurĆ© en mode centralisĆ©. Toutes les dĆ©finitions de systĆØme "
    +"d'exploitation sont en lecture seule. AccƩdez Ơ %s pour les gƩrer."
    +
    +#: ../../godmode/setup/os.list.php:141
    +msgid "There are no defined operating systems"
    +msgstr "Aucun systĆØme d'exploitation dĆ©fini"
    +
    +#: ../../godmode/setup/os.list.php:147
    +msgid "Create OS"
    +msgstr "DĆ©finir systĆØme d'exploitation"
    +
    +#: ../../godmode/setup/os.php:190
    +msgid "List OS"
    +msgstr "Liste de systĆØmes d'exploitation"
    +
    +#: ../../godmode/setup/os.php:202
    +msgid "Builder OS"
    +msgstr "Outil de conception du systĆØme d'exploitation"
    +
    +#: ../../godmode/setup/os.php:211
    +msgid "List of OS"
    +msgstr "Liste de systĆØmes dā€™exploitation"
    +
    +#: ../../godmode/setup/os.php:238 ../../include/functions_api.php:2008
    +msgid "Success creating OS"
    +msgstr "SystĆØme d'exploitation dĆ©fini correctement"
    +
    +#: ../../godmode/setup/os.php:242
    +msgid "Fail creating OS"
    +msgstr "Erreur de dĆ©finition du systĆØme d'exploitation"
    +
    +#: ../../godmode/setup/os.php:246 ../../include/functions_api.php:2047
    +msgid "Success updating OS"
    +msgstr "Mise Ć  jour rĆ©ussie du systĆØme d'exploitation"
    +
    +#: ../../godmode/setup/os.php:250
    +msgid "Error updating OS"
    +msgstr "Erreur de mise Ć  jour du systĆØme d'exploitation"
    +
    +#: ../../godmode/setup/os.php:254
    +msgid "There are agents with this OS."
    +msgstr "Il y a des agents avec ce systĆØme d'exploitation"
    +
    +#: ../../godmode/setup/os.php:258
    +msgid "Success deleting"
    +msgstr "SupprimƩ correctement"
    +
    +#: ../../godmode/setup/os.php:262
    +msgid "Error deleting"
    +msgstr "Erreur de suppression"
    +
    +#: ../../godmode/setup/gis_step_2.php:37
    +msgid "GIS Maps connections"
    +msgstr "Connexions aux cartes SIG"
    +
    +#: ../../godmode/setup/gis_step_2.php:54
    +msgid "Create new map connection"
    +msgstr "CrƩer une nouvelle connexion de carte"
    +
    +#: ../../godmode/setup/gis_step_2.php:81
    +msgid "Edit map connection"
    +msgstr "Modifier la connexion de la carte"
    +
    +#: ../../godmode/setup/gis_step_2.php:213
    +msgid "Connection Name"
    +msgstr "Nom de la connexion"
    +
    +#: ../../godmode/setup/gis_step_2.php:219
    +msgid "Number of zoom levels"
    +msgstr "Nombre de niveaux de zoom"
    +
    +#: ../../godmode/setup/gis_step_2.php:223
    +msgid "Default zoom level"
    +msgstr "Niveau de zoom par dƩfaut"
    +
    +#: ../../godmode/setup/gis_step_2.php:226
    +msgid "Basic configuration"
    +msgstr "Configuration de base"
    +
    +#: ../../godmode/setup/gis_step_2.php:231
    +msgid "Open Street Maps"
    +msgstr "OpenStreetMaps"
    +
    +#: ../../godmode/setup/gis_step_2.php:232
    +msgid "Google Maps"
    +msgstr "Google Maps"
    +
    +#: ../../godmode/setup/gis_step_2.php:233
    +#: ../../godmode/reporting/visual_console_builder.elements.php:183
    +#: ../../include/functions_visual_map_editor.php:1387
    +#: ../../include/functions_visual_map.php:4244
    +#: ../../operation/visual_console/view.php:296
    +msgid "Static Image"
    +msgstr "Image statique"
    +
    +#: ../../godmode/setup/gis_step_2.php:234
    +msgid "WMS Server"
    +msgstr "Serveur WMS"
    +
    +#: ../../godmode/setup/gis_step_2.php:236
    +msgid "Please select the connection type"
    +msgstr "Veuillez sƩlectionner le type de connexion"
    +
    +#: ../../godmode/setup/gis_step_2.php:238
    +msgid "Map connection type"
    +msgstr "Type de connexion de la carte"
    +
    +#: ../../godmode/setup/gis_step_2.php:286
    +msgid "Tile Server URL"
    +msgstr "URL du serveur mosaĆÆque"
    +
    +#: ../../godmode/setup/gis_step_2.php:299
    +msgid "Google Physical"
    +msgstr "Google Physical"
    +
    +#: ../../godmode/setup/gis_step_2.php:300
    +msgid "Google Hybrid"
    +msgstr "Google Hybrid"
    +
    +#: ../../godmode/setup/gis_step_2.php:301
    +msgid "Google Satelite"
    +msgstr "Google Satellite"
    +
    +#: ../../godmode/setup/gis_step_2.php:303
    +msgid "Google Map Type"
    +msgstr "Type de carte Google"
    +
    +#: ../../godmode/setup/gis_step_2.php:327
    +msgid "Google Maps Key"
    +msgstr "ClƩ Google Maps"
    +
    +#: ../../godmode/setup/gis_step_2.php:336
    +msgid "Image URL"
    +msgstr "URL de l'image"
    +
    +#: ../../godmode/setup/gis_step_2.php:343
    +msgid "Corners of the area of the image"
    +msgstr "Coins qui dƩlimitent la surface de l'image"
    +
    +#: ../../godmode/setup/gis_step_2.php:343
    +#: ../../include/rest-api/models/VisualConsole/Item.php:1960
    +msgid "Left"
    +msgstr "Gauche"
    +
    +#: ../../godmode/setup/gis_step_2.php:350
    +#: ../../include/rest-api/models/VisualConsole/Item.php:1957
    +#: ../../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:357
    +#: ../../include/rest-api/models/VisualConsole/Item.php:1959
    +msgid "Right"
    +msgstr "Droite"
    +
    +#: ../../godmode/setup/gis_step_2.php:364
    +#: ../../include/rest-api/models/VisualConsole/Item.php:1958
    +msgid "Top"
    +msgstr "En haut"
    +
    +#: ../../godmode/setup/gis_step_2.php:371
    +msgid "Image Size"
    +msgstr "Taille de l'image"
    +
    +#: ../../godmode/setup/gis_step_2.php:388
    +msgid "WMS Server URL"
    +msgstr "URL du serveur WMS"
    +
    +#: ../../godmode/setup/gis_step_2.php:430
    +msgid ""
    +"Preview to select the center of the map and the default position of an agent "
    +"without gis data"
    +msgstr ""
    +"AperƧu pour sƩlectionner le centre de la carte et la position d'un agent par "
    +"dƩfaut sans des donnƩes GIS"
    +
    +#: ../../godmode/setup/gis_step_2.php:431
    +msgid "Load preview map"
    +msgstr "Charger l'aperƧu de la carte"
    +
    +#: ../../godmode/setup/gis_step_2.php:440
    +msgid "Map Center"
    +msgstr "Centre de la carte"
    +
    +#: ../../godmode/setup/gis_step_2.php:441
    +msgid "Default position for agents without GIS data"
    +msgstr "Position par dƩfaut des agents sans donnƩes GIS"
    +
    +#: ../../godmode/setup/gis_step_2.php:443
    +msgid "Change in the map"
    +msgstr "Modifier dans la carte"
    +
    +#: ../../godmode/setup/gis_step_2.php:465 ../../operation/agentes/gis_view.php:218
    +msgid "Latitude"
    +msgstr "Latitude"
    +
    +#: ../../godmode/setup/gis_step_2.php:483 ../../operation/agentes/gis_view.php:217
    +msgid "Longitude"
    +msgstr "Longitude"
    +
    +#: ../../godmode/setup/gis_step_2.php:501 ../../operation/agentes/gis_view.php:219
    +msgid "Altitude"
    +msgstr "Altitude"
    +
    +#: ../../godmode/setup/gis_step_2.php:564 ../../godmode/setup/gis_step_2.php:659
    +msgid "Center"
    +msgstr "Centre"
    +
    +#: ../../godmode/setup/gis_step_2.php:624
    +msgid "Refresh preview map"
    +msgstr "RafraƮchir l'aperƧu de la carte"
    +
    +#: ../../godmode/setup/setup_auth.php:207
    +msgid "Enable secondary LDAP"
    +msgstr "Activer LDAP secondaire"
    +
    +#: ../../godmode/setup/setup_auth.php:278
    +msgid "Secondary Base DN"
    +msgstr "DN de base secondaire"
    +
    +#: ../../godmode/setup/setup_auth.php:291
    +msgid "Secondary Login attribute"
    +msgstr "Attribut de connexion secondaire"
    +
    +#: ../../godmode/setup/setup_auth.php:368
    +msgid "Force 2FA for all users is enabled"
    +msgstr "Forcer 2FA pour tous les utilisateurs est activƩ"
    +
    +#: ../../godmode/setup/setup_auth.php:389
    +msgid "Session timeout (mins)"
    +msgstr "Expiration de la session (min)"
    +
    +#: ../../godmode/setup/setup_auth.php:432
    +#, php-format
    +msgid "Local %s"
    +msgstr "%s Local"
    +
    +#: ../../godmode/setup/setup_auth.php:433
    +msgid "ldap"
    +msgstr "LDAP"
     
    -#: ../../operation/incidents/configure_integriaims_incident.php:41
    -#: ../../operation/incidents/list_integriaims_incidents.php:42
    -#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:31
     #: ../../godmode/setup/setup_integria.php:64
    +#: ../../operation/incidents/configure_integriaims_incident.php:41
    +#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:31
    +#: ../../operation/incidents/list_integriaims_incidents.php:42
     msgid "Integria IMS API is not reachable"
     msgstr "L'API Integria IMS n'est pas accessible"
     
    -#: ../../operation/incidents/configure_integriaims_incident.php:123
    -msgid "Successfully created in Integria IMS"
    -msgstr "CrƩƩ correctement dans Integria IMS"
    +#: ../../godmode/setup/setup_integria.php:261
    +#: ../../include/functions_config.php:1691
    +msgid "Enable Integria IMS"
    +msgstr "Activer Integria IMS"
     
    -#: ../../operation/incidents/configure_integriaims_incident.php:124
    -msgid "Could not be created in Integria IMS"
    -msgstr "Impossible de crƩer dans Integria IMS"
    +#: ../../godmode/setup/setup_integria.php:296
    +msgid "URL to Integria IMS setup"
    +msgstr "URL vers la configuration Integria IMS"
     
    -#: ../../operation/incidents/configure_integriaims_incident.php:144
    -msgid "Successfully updated in Integria IMS"
    -msgstr "Mise Ơ jour rƩussie dans Integria IMS"
    -
    -#: ../../operation/incidents/configure_integriaims_incident.php:145
    -msgid "Could not be updated in Integria IMS"
    -msgstr "N'a pas pu ĆŖtre mis Ć  jour dans Integria IMS"
    -
    -#: ../../operation/incidents/configure_integriaims_incident.php:294
    +#: ../../godmode/setup/setup_integria.php:296
     msgid ""
    -"This field corresponds to the Integria IMS user specified in Integria IMS setup"
    +"Full URL to your Integria IMS setup (e.g., http://192.168.1.20/integria, https://"
    +"support.mycompany.com)."
     msgstr ""
    -"Ce champ correspond Ơ l'utilisateur Integria IMS spƩcifiƩ dans la "
    -"configuration Integria IMS"
    +"URL complĆØte de votre configuration Integria IMS (par exemple, "
    +"http://192.168.1.20/integria, https://support.mycompany.com)."
     
    -#: ../../operation/incidents/configure_integriaims_incident.php:352
    -#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:206
    -msgid "File name"
    -msgstr "Nom du fichier"
    +#: ../../godmode/setup/setup_integria.php:302
    +msgid "API Password"
    +msgstr "Mot de passe API"
     
    -#: ../../operation/incidents/configure_integriaims_incident.php:354
    -#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:208
    -msgid "Attachment description"
    -msgstr "Description des piĆØces jointes"
    +#: ../../godmode/setup/setup_integria.php:315
    +msgid "Sync inventory"
    +msgstr "Synchroniser l'inventaire"
     
    -#: ../../operation/incidents/list_integriaims_incidents.php:24
    -msgid "Integria IMS Tickets"
    -msgstr "Tickets Integria IMS"
    +#: ../../godmode/setup/setup_integria.php:348
    +#: ../../godmode/setup/setup_integria.php:469
    +msgid "Ticket body"
    +msgstr "Corps du ticket"
     
    -#: ../../operation/incidents/list_integriaims_incidents.php:317
    -msgid "Text filter"
    -msgstr "Filtre de texte"
    +#: ../../godmode/setup/setup_integria.php:603
    +msgid "Integria API settings"
    +msgstr "ParamĆØtres de l'API Integria"
     
    -#: ../../operation/incidents/list_integriaims_incidents.php:381
    -msgid "Created from"
    -msgstr "CrƩƩ Ơ partir de"
    +#: ../../godmode/setup/setup_integria.php:614
    +msgid "Alert default values"
    +msgstr "Valeurs par dƩfaut des alertes"
     
    -#: ../../operation/incidents/list_integriaims_incidents.php:393
    -msgid "Created to"
    -msgstr "CrƩƩ vers"
    +#: ../../godmode/setup/setup_integria.php:624
    +msgid "Event custom response default values"
    +msgstr "Valeurs par dƩfaut de la rƩponse personnalisƩe de l'ƩvƩnement"
     
    -#: ../../operation/incidents/list_integriaims_incidents.php:518
    -msgid "Status/Resolution"
    -msgstr "Ɖtat/RĆ©solution"
    +#: ../../godmode/setup/links.php:28
    +msgid "Link management"
    +msgstr "Gestion des liens"
     
    -#: ../../operation/incidents/list_integriaims_incidents.php:520
    -msgid "Updated/Started"
    -msgstr "Mis Ơ jour/DƩmarrƩ"
    +#: ../../godmode/setup/snmp_wizard.php:155
    +msgid "Unsucessful update the snmp translation"
    +msgstr "Erreur de mise Ć  jour de la traduction SNMP"
     
    -#: ../../operation/incidents/list_integriaims_incidents.php:564
    -msgid "No tickets to show"
    -msgstr "Aucun ticket Ć  afficher"
    +#: ../../godmode/setup/snmp_wizard.php:162
    +msgid "Unsucessful update the snmp translation."
    +msgstr "Erreur de mise Ć  jour de la traduction SNMP"
     
    -#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:59
    -#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:378
    -#: ../../include/ajax/events.php:1507
    -#: ../../enterprise/tools/ipam/ipam_ajax.php:483
    -#: ../../enterprise/include/functions_ipam.php:1341
    -msgid "Details"
    -msgstr "DĆ©tails"
    +#: ../../godmode/setup/snmp_wizard.php:210
    +msgid "Unsucessful delete the snmp translation"
    +msgstr "Erreur de suppression de la traduction SNMP"
     
    -#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:77
    -msgid "Not yet"
    -msgstr "Pas encore"
    +#: ../../godmode/setup/snmp_wizard.php:217
    +msgid "Unsucessful delete the snmp translation."
    +msgstr "Erreur de suppression de la traduction SNMP"
     
    -#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:81
    -msgid "Not closed yet"
    -msgstr "Pas encore fermƩ"
    +#: ../../godmode/setup/snmp_wizard.php:278
    +msgid "Unsucessful save the snmp translation"
    +msgstr "Erreur d'enregistrement de la traduction SNMP"
     
    -#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:115
    -#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:246
    -msgid "Filename"
    -msgstr "Nom du dossier"
    +#: ../../godmode/setup/snmp_wizard.php:287
    +msgid "Unsucessful save the snmp translation."
    +msgstr "Erreur d'enregistrement de la traduction SNMP"
     
    -#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:119
    -#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:250
    -#: ../../include/functions_visual_map_editor.php:125
    -#: ../../include/functions_visual_map_editor.php:178
    -#: ../../include/functions_visual_map_editor.php:838
    -#: ../../include/functions_visual_map_editor.php:933
    -#: ../../include/functions_filemanager.php:606
    -#: ../../include/rest-api/models/VisualConsole/Item.php:1991
    -#: ../../include/rest-api/models/VisualConsole/Items/Box.php:214
    -#: ../../enterprise/include/class/ManageBackups.class.php:164
    -#: ../../extensions/files_repo/files_repo_list.php:57
    -#: ../../godmode/events/event_responses.editor.php:130
    -msgid "Size"
    -msgstr "Taille"
    +#: ../../godmode/setup/setup_netflow.php:47 ../../include/functions_config.php:1461
    +msgid "Data storage path"
    +msgstr "Chemin de stockage de donnƩes"
     
    -#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:124
    -#: ../../enterprise/meta/include/ajax/wizard.ajax.php:609
    -#: ../../enterprise/meta/monitoring/wizard/wizard.php:135
    -msgid "No description available"
    -msgstr "Aucune description disponible"
    +#: ../../godmode/setup/setup_netflow.php:50 ../../include/functions_config.php:1465
    +msgid "Daemon interval"
    +msgstr "Intervalle de dƩmon"
     
    -#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:142
    -msgid "File successfully deleted"
    -msgstr "Fichier supprimƩ correctement"
    +#: ../../godmode/setup/setup_netflow.php:53 ../../include/functions_config.php:1469
    +msgid "Daemon binary path"
    +msgstr "Chemin binaire dƩmon"
     
    -#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:143
    -msgid "File could not be deleted"
    -msgstr "Le fichier n'a pas pu ĆŖtre supprimĆ©."
    +#: ../../godmode/setup/setup_netflow.php:56 ../../include/functions_config.php:1473
    +msgid "Nfdump binary path"
    +msgstr "Chemin binaire nfdump"
     
    -#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:222
    -msgid "Add attachment"
    -msgstr "Ajouter une piĆØce jointe"
    +#: ../../godmode/setup/setup_netflow.php:59 ../../include/functions_config.php:1477
    +msgid "Nfexpire binary path"
    +msgstr "Chemin binaire Nfexpire"
     
    -#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:224
    -#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:397
    -msgid "Attached files"
    -msgstr "Fichiers joints"
    +#: ../../godmode/setup/setup_netflow.php:62 ../../include/functions_config.php:1481
    +msgid "Maximum chart resolution"
    +msgstr "RĆ©solution maximale du graphique"
     
    -#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:282
    -msgid "Comment successfully added"
    -msgstr "Commentaire ajoutƩ correctement"
    +#: ../../godmode/setup/setup_netflow.php:67 ../../include/functions_config.php:1489
    +msgid "Netflow max lifetime"
    +msgstr "DurƩe de vie maximale du Netflow"
     
    -#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:283
    -msgid "Comment could not be added"
    -msgstr "Le commentaire n'a pas pu ĆŖtre ajoutĆ©."
    +#: ../../godmode/setup/setup_netflow.php:70 ../../include/functions_config.php:1493
    +msgid "Name resolution for IP address"
    +msgstr "RĆ©solution du nom pour l'adresse IP"
     
    -#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:309
    -msgid "No comments found"
    -msgstr "Aucun commentaire"
    +#: ../../godmode/setup/setup_netflow.php:71
    +#: ../../operation/netflow/nf_live_view.php:459
    +msgid "IP address resolution can take a lot of time"
    +msgstr "La rƩsolution de l'adresse IP peut prendre du temps"
     
    -#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:314
    -#: ../../include/functions_events.php:3756
    -#: ../../include/functions_events.php:5363
    -msgid "Add comment"
    -msgstr "Ajouter un commentaire"
    +#: ../../godmode/setup/setup_visuals.php:79
    +msgid "Paginated module view"
    +msgstr "Vue paginƩe du module"
     
    -#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:349
    -msgid "Created by"
    -msgstr "CrƩƩ par"
    +#: ../../godmode/setup/setup_visuals.php:106
    +msgid "Click to display lateral menus"
    +msgstr "Cliquer pour afficher les menus latƩraux"
     
    -#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:350
    -msgid "Owned by"
    -msgstr "PropriƩtaire"
    +#: ../../godmode/setup/setup_visuals.php:116 ../../include/functions_config.php:1286
    +msgid "Service label font size"
    +msgstr "Taille de la police de l'Ć©tiquette de service"
     
    -#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:351
    -msgid "Closed by"
    -msgstr "FermƩ par"
    +#: ../../godmode/setup/setup_visuals.php:120
    +msgid "Space between items in Service maps"
    +msgstr "Espace entre les ƩlƩments sur les cartes de service"
     
    -#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:366
    -#: ../../enterprise/include/functions_ipam.php:2044
    -msgid "Created at"
    -msgstr "CrƩƩ le"
    +#: ../../godmode/setup/setup_visuals.php:137 ../../include/functions_config.php:993
    +msgid "Style template"
    +msgstr "ModĆØle de style"
     
    -#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:367
    -#: ../../enterprise/operation/agentes/transactional_map.php:212
    -#: ../../godmode/wizards/DiscoveryTaskList.class.php:609
    -msgid "Updated at"
    -msgstr "Mis Ć  jour le"
    +#: ../../godmode/setup/setup_visuals.php:150 ../../include/functions_config.php:1013
    +msgid "Status icon set"
    +msgstr "DƩfinir icƓne d'Ʃtat"
     
    -#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:368
    -msgid "Closed at"
    -msgstr "FermƩ Ơ"
    +#: ../../godmode/setup/setup_visuals.php:151
    +msgid "Colors"
    +msgstr "Couleurs"
     
    -#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:379
    -msgid "People"
    -msgstr "Personnes"
    +#: ../../godmode/setup/setup_visuals.php:152
    +msgid "Faces"
    +msgstr "Apparence"
     
    -#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:380
    -#: ../../include/functions_reporting_html.php:6153
    -msgid "Dates"
    -msgstr "Dates"
    +#: ../../godmode/setup/setup_visuals.php:153
    +msgid "Colors and text"
    +msgstr "Couleurs et texte"
     
    -#: ../../include/functions_cron.php:455
    -msgid "Scheduled jobs"
    -msgstr "TĆ¢ches planifiĆ©es"
    +#: ../../godmode/setup/setup_visuals.php:176 ../../include/functions_config.php:1089
    +msgid "Login background"
    +msgstr "Fond d'Ć©cran de connexion"
     
    -#: ../../include/functions_cron.php:464
    -#: ../../enterprise/include/functions_tasklist.php:153
    -#: ../../enterprise/meta/advanced/cron_main.php:354
    -#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:630
    -msgid "Task"
    -msgstr "TĆ¢che"
    +#: ../../godmode/setup/setup_visuals.php:394 ../../include/functions_config.php:1049
    +msgid "Custom documentation logo"
    +msgstr "Logo de documentation personnalisƩ"
     
    -#: ../../include/functions_cron.php:465
    -#: ../../enterprise/include/functions_tasklist.php:154
    -#: ../../enterprise/meta/advanced/cron_main.php:385
    -#: ../../enterprise/godmode/setup/setup_history.php:678
    -#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:640
    -msgid "Scheduled"
    -msgstr "PlanifiƩ"
    +#: ../../godmode/setup/setup_visuals.php:414 ../../include/functions_config.php:1053
    +msgid "Custom support logo"
    +msgstr "Logo d'assistance personnalisƩ"
     
    -#: ../../include/functions_cron.php:466
    -#: ../../enterprise/include/functions_tasklist.php:155
    -#: ../../enterprise/meta/advanced/cron_main.php:398
    -msgid "Next execution"
    -msgstr "ExƩcution suivante"
    +#: ../../godmode/setup/setup_visuals.php:433 ../../include/functions_config.php:1057
    +#: ../../include/functions_config.php:1061
    +msgid "Custom networkmap center logo"
    +msgstr "Logo du centre de carte rƩseau personnalisƩ"
     
    -#: ../../include/functions_cron.php:467
    -#: ../../enterprise/include/functions_tasklist.php:156
    -msgid "Last run"
    -msgstr "DerniĆØre exĆ©cution"
    +#: ../../godmode/setup/setup_visuals.php:452
    +msgid "Custom mobile console icon"
    +msgstr "IcƓne de console mobile personnalisƩe"
     
    -#: ../../include/functions_cron.php:469
    -#: ../../include/class/AgentsAlerts.class.php:254
    -#: ../../include/class/AgentsAlerts.class.php:285
    -#: ../../include/functions_filemanager.php:607
    -#: ../../include/functions_treeview.php:413
    -#: ../../include/functions_reporting.php:2725
    -#: ../../include/functions_reporting_html.php:3183
    -#: ../../enterprise/tools/ipam/ipam_vlan_config.php:689
    -#: ../../enterprise/tools/ipam/ipam_ajax.php:532
    -#: ../../enterprise/tools/ipam/ipam_supernet_config.php:1072
    -#: ../../enterprise/views/ncm/agent/details.php:485
    -#: ../../enterprise/operation/services/services.list.php:513
    -#: ../../enterprise/operation/agentes/transactional_map.php:213
    -#: ../../enterprise/operation/agentes/manage_transmap_creation.php:190
    -#: ../../enterprise/include/functions_reporting_csv.php:2465
    -#: ../../enterprise/include/class/ManageBackups.class.php:167
    -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2295
    -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2463
    -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3434
    -#: ../../enterprise/meta/include/functions_autoprovision.php:477
    -#: ../../enterprise/meta/include/functions_alerts_meta.php:133
    -#: ../../enterprise/meta/include/functions_alerts_meta.php:164
    -#: ../../enterprise/meta/monitoring/wizard/wizard.php:140
    -#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:468
    -#: ../../enterprise/meta/advanced/collections.php:391
    -#: ../../enterprise/godmode/setup/setup_skins.php:128
    -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2117
    -#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:387
    -#: ../../enterprise/godmode/agentes/inventory_manager.php:224
    -#: ../../enterprise/godmode/agentes/agent_autoconfiguration.php:138
    -#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:344
    -#: ../../enterprise/godmode/agentes/collections.php:384
    -#: ../../enterprise/godmode/alerts/alert_inventory_list.php:223
    -#: ../../enterprise/godmode/policies/policy_external_alerts.php:350
    -#: ../../enterprise/godmode/policies/policy_external_alerts.php:384
    -#: ../../enterprise/godmode/policies/policy_external_alerts.php:682
    -#: ../../enterprise/godmode/policies/policy_inventory_modules.php:305
    -#: ../../enterprise/godmode/policies/policy_alerts.php:353
    -#: ../../godmode/category/category.php:170
    -#: ../../godmode/reporting/reporting_builder.item_editor.php:1949
    -#: ../../godmode/menu.php:234 ../../godmode/tag/tag.php:284
    -#: ../../godmode/events/event_responses.list.php:53
    -#: ../../godmode/agentes/planned_downtime.editor.php:927
    -#: ../../godmode/agentes/fields_manager.php:121
    -#: ../../godmode/agentes/modificar_agente.php:653
    -#: ../../godmode/alerts/alert_list.list.php:120
    -#: ../../godmode/alerts/alert_list.list.php:484
    -#: ../../godmode/alerts/alert_list.builder.php:96
    -#: ../../godmode/alerts/alert_commands.php:659
    -#: ../../godmode/alerts/alert_view.php:301
    -#: ../../godmode/groups/group_list.php:853
    -msgid "Actions"
    -msgstr "Actions"
    +#: ../../godmode/setup/setup_visuals.php:520
    +msgid "Disable logo in graphs"
    +msgstr "DĆ©sactiver logo sur les graphiques"
     
    -#: ../../include/functions_cron.php:498 ../../include/functions_cron.php:536
    -#: ../../include/functions_cron.php:591 ../../include/functions_cron.php:683
    -#: ../../include/functions_cron.php:719 ../../include/functions_cron.php:765
    -#: ../../include/functions_cron.php:807 ../../include/functions_cron.php:841
    -#: ../../enterprise/include/functions_tasklist.php:217
    -#: ../../enterprise/include/functions_tasklist.php:279
    -#: ../../enterprise/include/functions_tasklist.php:365
    -#: ../../enterprise/include/functions_tasklist.php:406
    -#: ../../enterprise/include/functions_tasklist.php:459
    -#: ../../enterprise/include/functions_tasklist.php:498
    -#: ../../enterprise/include/functions_tasklist.php:535
    -msgid "Force run"
    -msgstr "Forcer l'exƩcution"
    +#: ../../godmode/setup/setup_visuals.php:536
    +msgid "Disable helps"
    +msgstr "DĆ©sactiver les aides"
     
    -#: ../../include/functions_cron.php:574 ../../include/functions_cron.php:667
    -#: ../../include/functions_cron.php:791
    -#: ../../enterprise/operation/reporting/custom_reporting.php:109
    -#: ../../enterprise/include/functions_reporting_csv.php:983
    -#: ../../enterprise/include/functions_reporting_csv.php:1184
    -#: ../../enterprise/include/functions_reporting_csv.php:1215
    -#: ../../enterprise/include/functions_reporting_csv.php:1270
    -#: ../../enterprise/include/functions_reporting_csv.php:1325
    -#: ../../enterprise/include/functions_reporting_csv.php:1374
    -#: ../../enterprise/include/functions_reporting_csv.php:1429
    -#: ../../enterprise/include/functions_tasklist.php:253
    -#: ../../enterprise/include/functions_tasklist.php:342
    -#: ../../enterprise/include/functions_tasklist.php:436
    -#: ../../enterprise/include/functions_reporting.php:8124
    -#: ../../enterprise/include/functions_reporting.php:8158
    -msgid "Report type"
    -msgstr "Type de rapport"
    +#: ../../godmode/setup/setup_visuals.php:545 ../../include/functions_config.php:1225
    +msgid "Fixed header"
    +msgstr "En-tĆŖte fixe"
     
    -#: ../../include/functions_cron.php:638
    -#: ../../enterprise/include/functions_tasklist.php:313
    -msgid "regex"
    -msgstr "regex"
    +#: ../../godmode/setup/setup_visuals.php:556
    +msgid "Automatically hide submenu"
    +msgstr "Masquer automatiquement le sous-menu"
     
    -#: ../../include/functions_cron.php:664
    -#: ../../enterprise/include/functions_cron.php:228
    -#: ../../enterprise/include/functions_tasklist.php:339
    -msgid "Report per agent"
    -msgstr "Rapport par agent"
    +#: ../../godmode/setup/setup_visuals.php:584 ../../include/functions_config.php:1197
    +msgid "GIS Labels"
    +msgstr "Ɖtiquettes GIS"
     
    -#: ../../include/functions_cron.php:703
    -#: ../../enterprise/include/functions_cron.php:299
    -#: ../../enterprise/include/functions_tasklist.php:383
    -msgid "Custom script"
    -msgstr "Script personnalisƩ"
    +#: ../../godmode/setup/setup_visuals.php:599 ../../include/functions_config.php:1205
    +msgid "Default icon in GIS"
    +msgstr "IcƓne par dƩfaut sur GIS"
     
    -#: ../../include/functions_cron.php:747 ../../include/functions_cron.php:788
    -#: ../../include/lib/Dashboard/Widgets/reports.php:307
    -#: ../../include/lib/Dashboard/Widgets/reports.php:352
    -#: ../../enterprise/include/functions_tasklist.php:433
    -#: ../../extensions/resource_exportation.php:433
    -msgid "Report"
    -msgstr "Rapport"
    +#: ../../godmode/setup/setup_visuals.php:605
    +msgid "Agent icon group"
    +msgstr "IcƓne du groupe de l'agent"
     
    -#: ../../include/functions_cron.php:749 ../../include/functions_cron.php:790
    -#: ../../include/class/Diagnostics.class.php:2175
    -#: ../../enterprise/include/class/ManageBackups.class.php:166
    -#: ../../enterprise/include/functions_tasklist.php:435
    -msgid "Path"
    -msgstr "Chemin"
    +#: ../../godmode/setup/setup_visuals.php:623
    +msgid "Graphs font size"
    +msgstr "Taille de police des graphiques"
     
    -#: ../../include/functions_cron.php:943
    -#: ../../enterprise/include/functions_tasklist.php:671
    -#: ../../godmode/wizards/DiscoveryTaskList.class.php:1024
    -msgid "Disable task"
    -msgstr "DĆ©sactiver la tĆ¢che"
    +#: ../../godmode/setup/setup_visuals.php:654 ../../include/functions_config.php:1173
    +#: ../../include/functions_config.php:1177
    +msgid "Agent size text"
    +msgstr "Taille du texte de l'agent"
     
    -#: ../../include/functions_cron.php:943
    -#: ../../enterprise/include/functions_tasklist.php:671
    -msgid "Enable task"
    -msgstr "Activer la tĆ¢che"
    +#: ../../godmode/setup/setup_visuals.php:655
    +#: ../../godmode/setup/setup_visuals.php:660
    +msgid "Small:"
    +msgstr "Petit :"
     
    -#: ../../include/functions_incidents.php:29
    -#: ../../include/functions_incidents.php:55
    -msgid "Informative"
    -msgstr "Informatif"
    +#: ../../godmode/setup/setup_visuals.php:656
    +#: ../../godmode/setup/setup_visuals.php:661
    +msgid "Normal:"
    +msgstr "Normal :"
     
    -#: ../../include/functions_incidents.php:30
    -#: ../../include/functions_incidents.php:59
    -#: ../../include/functions_netflow.php:1845
    -msgid "Low"
    -msgstr "Faible"
    +#: ../../godmode/setup/setup_visuals.php:659 ../../include/functions_config.php:1181
    +msgid "Module size text"
    +msgstr "Taille du texte du module"
     
    -#: ../../include/functions_incidents.php:31
    -#: ../../include/functions_incidents.php:63
    -#: ../../include/functions_netflow.php:1846
    -msgid "Medium"
    -msgstr "Moyenne"
    +#: ../../godmode/setup/setup_visuals.php:664 ../../include/functions_config.php:1185
    +#: ../../include/functions_config.php:1189
    +msgid "Description size text"
    +msgstr "Taille du texte de description"
     
    -#: ../../include/functions_incidents.php:32
    -#: ../../include/functions_incidents.php:67
    -msgid "Serious"
    -msgstr "Grave"
    +#: ../../godmode/setup/setup_visuals.php:668 ../../include/functions_config.php:1193
    +msgid "Item title size text"
    +msgstr "Taille du texte du titre de l'ƩlƩment"
     
    -#: ../../include/functions_incidents.php:33
    -#: ../../include/functions_incidents.php:71
    -msgid "Very serious"
    -msgstr "TrĆØs grave"
    +#: ../../godmode/setup/setup_visuals.php:679
    +msgid "Show unit along with value in reports"
    +msgstr "Afficher l'unitƩ et la valeur dans les rapports"
     
    -#: ../../include/functions_incidents.php:34
    -#: ../../include/functions_incidents.php:75
    -#: ../../include/functions_events.php:3328 ../../include/functions_graph.php:3533
    -#: ../../include/functions_graph.php:3534 ../../include/functions_graph.php:5115
    -#: ../../include/functions.php:1023 ../../include/functions.php:1269
    -#: ../../include/functions.php:1303
    -msgid "Maintenance"
    -msgstr "Entretien"
    +#: ../../godmode/setup/setup_visuals.php:732 ../../include/functions_config.php:952
    +msgid "Graph color #4"
    +msgstr "Couleur du graphique #4"
     
    -#: ../../include/functions_incidents.php:95
    -#: ../../include/functions_incidents.php:116
    -msgid "Active incidents"
    -msgstr "Incidents actifs"
    +#: ../../godmode/setup/setup_visuals.php:743 ../../include/functions_config.php:956
    +msgid "Graph color #5"
    +msgstr "Couleur du graphique #5"
     
    -#: ../../include/functions_incidents.php:96
    -#: ../../include/functions_incidents.php:120
    -msgid "Active incidents, with comments"
    -msgstr "Incidents actifs, avec commentaires"
    +#: ../../godmode/setup/setup_visuals.php:754 ../../include/functions_config.php:960
    +msgid "Graph color #6"
    +msgstr "Couleur du graphique #6"
     
    -#: ../../include/functions_incidents.php:97
    -#: ../../include/functions_incidents.php:124
    -msgid "Rejected incidents"
    -msgstr "Incidents refusƩs"
    +#: ../../godmode/setup/setup_visuals.php:765 ../../include/functions_config.php:964
    +msgid "Graph color #7"
    +msgstr "Couleur du graphique #7"
     
    -#: ../../include/functions_incidents.php:98
    -#: ../../include/functions_incidents.php:128
    -msgid "Expired incidents"
    -msgstr "Incidents expirƩs"
    +#: ../../godmode/setup/setup_visuals.php:776 ../../include/functions_config.php:968
    +msgid "Graph color #8"
    +msgstr "Couleur du graphique #8"
     
    -#: ../../include/functions_incidents.php:99
    -#: ../../include/functions_incidents.php:132
    -msgid "Closed incidents"
    -msgstr "Incidents fermƩs"
    +#: ../../godmode/setup/setup_visuals.php:787 ../../include/functions_config.php:972
    +msgid "Graph color #9"
    +msgstr "Couleur du graphique #9"
     
    -#: ../../include/functions_gis.php:27 ../../include/functions_gis.php:31
    -#: ../../include/functions_gis.php:36
    -msgid "Hierarchy of agents"
    -msgstr "HiƩrarchie des agents"
    +#: ../../godmode/setup/setup_visuals.php:798 ../../include/functions_config.php:976
    +msgid "Graph color #10"
    +msgstr "Couleur du graphique #10"
    +
    +#: ../../godmode/setup/setup_visuals.php:825
    +msgid "Data precision"
    +msgstr "PrƩcision des donnƩes"
    +
    +#: ../../godmode/setup/setup_visuals.php:843
    +msgid "Data precision in graphs"
    +msgstr "PrƩcision de donnƩes sur les graphiques"
    +
    +#: ../../godmode/setup/setup_visuals.php:858 ../../include/functions_config.php:1253
    +msgid "Default line thickness for the Custom Graph."
    +msgstr "Ɖpaisseur de ligne par dĆ©faut pour le graphique personnalisĆ©"
    +
    +#: ../../godmode/setup/setup_visuals.php:919
    +msgid "Type of interface charts"
    +msgstr "Type de graphiques interactifs"
    +
    +#: ../../godmode/setup/setup_visuals.php:947
    +msgid "Graph TIP view:"
    +msgstr "Affichage TIP du graphique :"
    +
    +#: ../../godmode/setup/setup_visuals.php:1070
    +msgid "Classic view"
    +msgstr "Affichage classique"
    +
    +#: ../../godmode/setup/setup_visuals.php:1071
    +msgid "View of favorites"
    +msgstr "Vue des favoris"
    +
    +#: ../../godmode/setup/setup_visuals.php:1072
    +msgid "Type of view of visual consoles"
    +msgstr "Type d'affichage des consoles visuelles"
    +
    +#: ../../godmode/setup/setup_visuals.php:1084
    +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:1161
    +msgid "Default line thickness for the Visual Console"
    +msgstr "Ɖpaisseur de ligne par dĆ©faut pour la console visuelle"
    +
    +#: ../../godmode/setup/setup_visuals.php:1118
    +msgid "Number of favorite services to show in the menu"
    +msgstr "Nombre de services favoris Ć  afficher dans le menu"
    +
    +#: ../../godmode/setup/setup_visuals.php:1195
    +msgid ""
    +"The dir of custom logos is in your www Console in 'images/custom_logo'. You can "
    +"upload more files (ONLY JPEG AND PNG) in upload tool in console."
    +msgstr ""
    +"Le rƩpertoire des logos personnalisƩs se trouve dans votre console www dans "
    +"'images/custom_logo'. Vous pouvez tƩlƩcharger plus de fichiers (SEULEMENT JPEG ET "
    +"PNG) dans l'outil de tƩlƩchargement de la console."
    +
    +#: ../../godmode/setup/setup_visuals.php:1281
    +#: ../../include/functions_config.php:1237
    +msgid "Networkmap max width"
    +msgstr "Largeur maximale de la carte de rƩseau"
    +
    +#: ../../godmode/setup/setup_visuals.php:1301
    +msgid "Show empty groups in group view"
    +msgstr "Afficher les groupes vides dans la vue de groupe"
    +
    +#: ../../godmode/setup/setup_visuals.php:1341
    +msgid "Custom values post process"
    +msgstr "Valeurs personnalisƩes pour post-traitement"
    +
    +#: ../../godmode/setup/setup_visuals.php:1362
    +#: ../../godmode/setup/setup_visuals.php:1430
    +msgid "Delete custom values"
    +msgstr "Supprimer les valeurs personnalisƩes"
    +
    +#: ../../godmode/setup/setup_visuals.php:1394
    +msgid "Interval values"
    +msgstr "Valeurs d'intervalle"
    +
    +#: ../../godmode/setup/setup_visuals.php:1422
    +msgid "Module units"
    +msgstr "UnitƩs du module"
    +
    +#: ../../godmode/setup/setup_visuals.php:1538
    +msgid "Behaviour configuration"
    +msgstr "Configuration de comportement"
    +
    +#: ../../godmode/setup/setup_visuals.php:1543
    +msgid "GIS configuration"
    +msgstr "Configuration GIS"
    +
    +#: ../../godmode/setup/setup_visuals.php:1548
    +msgid "Style configuration"
    +msgstr "Configuration du style"
    +
    +#: ../../godmode/setup/setup_visuals.php:1553
    +msgid "Charts configuration"
    +msgstr "Configuration de graphiques"
    +
    +#: ../../godmode/setup/setup_visuals.php:1558
    +msgid "Font and Text configuration"
    +msgstr "Configuration de la police et du texte"
    +
    +#: ../../godmode/setup/setup_visuals.php:1563
    +msgid "Visual consoles configuration"
    +msgstr "Configuration des consoles visuelles"
    +
    +#: ../../godmode/setup/setup_visuals.php:1568
    +msgid "Reports configuration "
    +msgstr "Configuration des rapports"
    +
    +#: ../../godmode/setup/setup_visuals.php:1573
    +msgid "Services configuration"
    +msgstr "Configuration des services"
    +
    +#: ../../godmode/setup/setup_visuals.php:1578
    +msgid "Other configuration"
    +msgstr "Autre configuration"
    +
    +#: ../../godmode/setup/setup_visuals.php:1855
    +msgid "Mobile console logo preview"
    +msgstr "AperƧu du logo de la console mobile"
    +
    +#: ../../godmode/setup/setup_visuals.php:1890
    +msgid "Gis icons preview"
    +msgstr "AperƧu des icƓnes GIS"
    +
    +#: ../../godmode/setup/setup_visuals.php:1956
    +msgid "Status set preview"
    +msgstr "AperƧu de l'Ʃtat"
    +
    +#: ../../godmode/setup/setup_general.php:77 ../../include/functions_register.php:122
    +msgid "Language code"
    +msgstr "Code de la langue"
    +
    +#: ../../godmode/setup/setup_general.php:137 ../../include/functions_config.php:198
    +msgid "Automatic check for updates"
    +msgstr "VĆ©rification automatique de mises Ć  jour"
    +
    +#: ../../godmode/setup/setup_general.php:145
    +msgid "Enforce https Information"
    +msgstr "Appliquer les informations https"
    +
    +#: ../../godmode/setup/setup_general.php:146
    +msgid "If SSL is not properly configured you will lose access to "
    +msgstr "Si SSL n'est pas correctement configurĆ©, vous perdrez l'accĆØs Ć "
    +
    +#: ../../godmode/setup/setup_general.php:146
    +#: ../../godmode/setup/setup_general.php:340
    +msgid " Console"
    +msgstr "Console"
    +
    +#: ../../godmode/setup/setup_general.php:160
    +msgid "Use cert of SSL"
    +msgstr "Utiliser le certificat SSL"
    +
    +#: ../../godmode/setup/setup_general.php:173
    +msgid "Path of SSL Cert."
    +msgstr "Chemin du certificat SSL"
    +
    +#: ../../godmode/setup/setup_general.php:223 ../../include/functions_config.php:238
    +msgid "Enable GIS features"
    +msgstr "Activer les fonctionnalitƩs SIG"
    +
    +#: ../../godmode/setup/setup_general.php:231 ../../include/functions_config.php:254
    +msgid "Enable Netflow"
    +msgstr "Activer Netflow"
    +
    +#: ../../godmode/setup/setup_general.php:338
    +msgid "Enforce public URL usage information"
    +msgstr "Appliquer les informations d'utilisation des URL publiques"
    +
    +#: ../../godmode/setup/setup_general.php:340
    +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 ../../include/functions_config.php:302
    +msgid "Referer security"
    +msgstr "SƩcuritƩ du rƩfƩrent"
    +
    +#: ../../godmode/setup/setup_general.php:361 ../../include/functions_config.php:306
    +msgid "Event storm protection"
    +msgstr "Protection Event Storm"
    +
    +#: ../../godmode/setup/setup_general.php:378
    +msgid "Change remote config encoding"
    +msgstr "Changer l'encodage de la configuration Ć  distance"
    +
    +#: ../../godmode/setup/setup_general.php:386 ../../include/functions_config.php:318
    +msgid "Server logs directory"
    +msgstr "RĆ©pertoire des journaux du serveur"
    +
    +#: ../../godmode/setup/setup_general.php:396 ../../include/functions_config.php:322
    +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
    +msgid "Full mode"
    +msgstr "Mode intƩgral"
    +
    +#: ../../godmode/setup/setup_general.php:409
    +msgid "Expert"
    +msgstr "Expert"
    +
    +#: ../../godmode/setup/setup_general.php:411 ../../include/functions_config.php:326
    +msgid "Tutorial mode"
    +msgstr "Mode tutoriel"
    +
    +#: ../../godmode/setup/setup_general.php:425 ../../include/functions_config.php:330
    +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
    +msgid "Limit for bulk operations"
    +msgstr "Limite pour les opƩrations massives"
    +
    +#: ../../godmode/setup/setup_general.php:443
    +msgid "Include agents manually disabled"
    +msgstr "Inclure les agents dƩsactivƩs manuellement"
    +
    +#: ../../godmode/setup/setup_general.php:451
    +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
    +msgid "Log location"
    +msgstr "Emplacement du journal"
    +
    +#: ../../godmode/setup/setup_general.php:489
    +msgid "Module custom ID readonly"
    +msgstr "ID personnalisƩ du module en lecture seule"
    +
    +#: ../../godmode/setup/setup_general.php:490
    +msgid "Useful for integrations"
    +msgstr "Utile pour les intƩgrations"
    +
    +#: ../../godmode/setup/setup_general.php:503
    +msgid "General options"
    +msgstr "Options gƩnƩrales"
    +
    +#: ../../godmode/setup/setup_general.php:522
    +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 "
    +"587.\n"
    +"\n"
    +"    If you have manual settings in your pandora_server.conf, please note these "
    +"settings will ignore this console setup."
    +msgstr ""
    +"Veuillez noter que certains fournisseurs comme Gmail ou Office365 doivent "
    +"configurer/activer manuellement les connexions externes Ć  lā€™aide de SMTP et que "
    +"vous devez utiliser STARTTLS sur le port 587.\n"
    +"\n"
    +"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:528
    +msgid "From address"
    +msgstr "De l'adresse"
    +
    +#: ../../godmode/setup/setup_general.php:548
    +msgid "SMTP Server"
    +msgstr "Serveur SMTP"
    +
    +#: ../../godmode/setup/setup_general.php:558
    +msgid "SMTP Port"
    +msgstr "Port SMTP"
    +
    +#: ../../godmode/setup/setup_general.php:568 ../../include/functions_config.php:382
    +msgid "Encryption"
    +msgstr "Encodage"
    +
    +#: ../../godmode/setup/setup_general.php:608
    +msgid "Email test"
    +msgstr "Test d'un email"
    +
    +#: ../../godmode/setup/setup_general.php:660 ../../general/header.php:813
    +msgid "Send"
    +msgstr "Envoyer"
    +
    +#: ../../godmode/setup/setup_general.php:670
    +msgid "Check mail configuration"
    +msgstr "VĆ©rifier la configuration de la messagerie"
    +
    +#: ../../godmode/setup/performance.php:181
    +msgid "Pandora_db running in active database."
    +msgstr "Pandora_db s'exƩcutant dans la base de donnƩes active."
    +
    +#: ../../godmode/setup/performance.php:182 ../../godmode/setup/performance.php:238
    +msgid "Executed:"
    +msgstr "ExƩcutƩ :"
    +
    +#: ../../godmode/setup/performance.php:237
    +msgid "Pandora_db running in historical database."
    +msgstr "Pandora_db s'exƩcutant dans la base de donnƩes historique."
    +
    +#: ../../godmode/setup/performance.php:245
    +msgid "not executed"
    +msgstr "Non exƩcutƩ"
    +
    +#: ../../godmode/setup/performance.php:273 ../../include/functions_config.php:792
    +msgid "Max. days before delete traps"
    +msgstr "Nombre de jours maximum avant la suppression de dƩroutements"
    +
    +#: ../../godmode/setup/performance.php:293 ../../godmode/setup/performance.php:459
    +#: ../../include/functions_config.php:796
    +msgid "Max. days before delete string data"
    +msgstr "Nombre de jours maximum avant la suppression de chaƮnes de donnƩes"
    +
    +#: ../../godmode/setup/performance.php:303 ../../include/functions_config.php:804
    +msgid "Max. days before delete GIS data"
    +msgstr "Nombre de jours maximum avant la suppression de donnƩes GIS"
    +
    +#: ../../godmode/setup/performance.php:313 ../../godmode/setup/performance.php:419
    +#: ../../include/functions_config.php:808
    +msgid "Max. days before purge"
    +msgstr "Nombre de jours maximum avant le nettoyage"
    +
    +#: ../../godmode/setup/performance.php:323 ../../godmode/setup/performance.php:429
    +#: ../../include/functions_config.php:816
    +msgid "Max. days before compact data"
    +msgstr "Nombre de jours maximum avant la compression de donnƩes"
    +
    +#: ../../godmode/setup/performance.php:333 ../../include/functions_config.php:812
    +msgid "Max. days before delete unknown modules"
    +msgstr "Nombre de jours maximum avant la suppression de modules inconnus"
    +
    +#: ../../godmode/setup/performance.php:343
    +msgid "Max. days before delete autodisabled agents"
    +msgstr ""
    +"Nombre de jours maximum avant la suppression d'agents Ơ dƩsactivation automatique"
    +
    +#: ../../godmode/setup/performance.php:353 ../../include/functions_config.php:864
    +msgid "Retention period of past special days"
    +msgstr "PƩriode de rƩtention de jours spƩciaux passƩs"
    +
    +#: ../../godmode/setup/performance.php:377 ../../include/functions_config.php:873
    +msgid "Max. days before delete inventory data"
    +msgstr "Nombre de jours maximum avant la suppression de donnƩes d'inventaire"
    +
    +#: ../../godmode/setup/performance.php:439 ../../godmode/setup/performance.php:520
    +#: ../../include/functions_config.php:828
    +msgid "Compact interpolation in hours (1 Fine-20 bad)"
    +msgstr "Interpolation de compression en heures (1 Optimale-20 Mauvaise)"
    +
    +#: ../../godmode/setup/performance.php:477 ../../include/functions_config.php:878
    +msgid "Max. days before delete old messages"
    +msgstr "Max. jours avant de supprimer les anciens messages"
    +
    +#: ../../godmode/setup/performance.php:490 ../../include/functions_config.php:882
    +msgid "Max. days before delete old network matrix data"
    +msgstr "Max. jours avant de supprimer les anciennes donnƩes de la matrice rƩseau"
    +
    +#: ../../godmode/setup/performance.php:510
    +msgid "Item limit for realtime reports"
    +msgstr "Limite d'articles pour les rapports en temps rƩel"
    +
    +#: ../../godmode/setup/performance.php:533
    +msgid "Last day"
    +msgstr "Dernier jour"
    +
    +#: ../../godmode/setup/performance.php:535
    +msgid "10 days"
    +msgstr "10 jours"
    +
    +#: ../../godmode/setup/performance.php:537
    +msgid "2 weeks"
    +msgstr "2 semaines"
    +
    +#: ../../godmode/setup/performance.php:550 ../../include/functions_config.php:836
    +msgid "Use realtime statistics"
    +msgstr "Utiliser des statistiques en temps rƩel"
    +
    +#: ../../godmode/setup/performance.php:558 ../../include/functions_config.php:840
    +msgid "Batch statistics period (secs)"
    +msgstr "PĆ©riode de statistiques par lot (en secondes)"
    +
    +#: ../../godmode/setup/performance.php:571 ../../include/functions_config.php:848
    +msgid "Max. recommended number of files in attachment directory"
    +msgstr "Nombre maximum de fichiers recommandĆ© dans le rĆ©pertoire des piĆØces jointes"
    +
    +#: ../../godmode/setup/performance.php:581 ../../include/functions_config.php:852
    +msgid "Delete not init modules"
    +msgstr "Supprimer les modules non initialisƩs"
    +
    +#: ../../godmode/setup/performance.php:584
    +msgid "Big Operation Step to purge old data"
    +msgstr "Ɖtape majeure pour nettoyer les donnĆ©es anciennes"
    +
    +#: ../../godmode/setup/performance.php:594 ../../include/functions_config.php:860
    +msgid "Small Operation Step to purge old data"
    +msgstr "Ɖtape mineure pour nettoyer les donnĆ©es anciennes"
    +
    +#: ../../godmode/setup/performance.php:604 ../../include/functions_config.php:886
    +msgid "Graph container - Max. Items"
    +msgstr "Conteneur de graphiques - Nombre maximal d'ƩlƩments"
    +
    +#: ../../godmode/setup/performance.php:634
    +msgid "SNMP walk binary"
    +msgstr "Chemin binaire de SNMP walk"
    +
    +#: ../../godmode/setup/performance.php:645
    +msgid ""
    +"SNMP bulk walk is not able to request V1 SNMP, this option will be used instead "
    +"(by default snmpwalk, slower)."
    +msgstr ""
    +"SNMP bulk walk n'est pas capable de demander SNMP V1, cette option sera utilisƩe "
    +"Ơ la place (par dƩfaut snmpwalk, plus lent)."
    +
    +#: ../../godmode/setup/performance.php:648
    +msgid "SNMP walk binary (fallback)"
    +msgstr "SNMP walk binaire (repli)"
    +
    +#: ../../godmode/setup/performance.php:666
    +msgid "WMI binary"
    +msgstr "Binaire WMI"
    +
    +#: ../../godmode/setup/performance.php:701
    +msgid "Database maintenance options"
    +msgstr "Options d'entretien de la base de donnƩes"
    +
    +#: ../../godmode/setup/performance.php:707
    +msgid "Historical database maintenance options"
    +msgstr "Options de maintenance de la base de donnƩes historique"
    +
    +#: ../../godmode/setup/performance.php:713
    +#: ../../include/functions_visual_map.php:2874
    +#: ../../include/functions_netflow.php:2078
    +#: ../../operation/network/network_report.php:324
    +msgid "Others"
    +msgstr "Autres"
    +
    +#: ../../godmode/setup/file_manager.php:83 ../../godmode/servers/plugin.php:235
    +#: ../../include/functions_filemanager.php:590
    +#, php-format
    +msgid "Index of %s"
    +msgstr "Index de %s"
    +
    +#: ../../godmode/reporting/visual_console_builder.data.php:94
    +msgid "Create visual console"
    +msgstr "CrƩer une console visuelle"
    +
    +#: ../../godmode/reporting/visual_console_builder.data.php:106
    +msgid ""
    +"Use [ or ( as first character, for example '[*] Map name', to render this map "
    +"name in main menu"
    +msgstr ""
    +"Utilisez [ ou ( comme premier caractĆØre ; par exemple Ā« [*] Nom de la carte Ā», "
    +"pour afficher ce nom de carte dans le menu principal."
     
    -#: ../../include/functions_visual_map_editor.php:55
    -#: ../../include/functions_visual_map_editor.php:632
    -#: ../../include/lib/Dashboard/Widget.php:560
     #: ../../godmode/reporting/visual_console_builder.data.php:169
     #: ../../godmode/reporting/visual_console_builder.elements.php:151
    +#: ../../include/functions_visual_map_editor.php:55
    +#: ../../include/functions_visual_map_editor.php:632
    +#: ../../include/lib/Dashboard/Widget.php:566
     msgid "Background"
     msgstr "Fond d'Ć©cran"
     
    -#: ../../include/functions_visual_map_editor.php:56
    +#: ../../godmode/reporting/visual_console_builder.data.php:179
    +msgid "Background image"
    +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
    +msgid "Background color"
    +msgstr "Couleur de fond"
    +
    +#: ../../godmode/reporting/visual_console_builder.data.php:211
    +msgid "Layout size"
    +msgstr "Taille du layout"
    +
    +#: ../../godmode/reporting/visual_console_builder.data.php:214
    +msgid "Set custom size"
    +msgstr "DƩterminer taille personnalisƩe"
    +
    +#: ../../godmode/reporting/visual_console_builder.data.php:220
    +msgid "Get default image size"
    +msgstr "Obtenir taille de l'image par dƩfaut"
    +
    +#: ../../godmode/reporting/visual_console_builder.data.php:222
    +msgid "Favourite visual console"
    +msgstr "Console visuelle prƩfƩrƩe"
    +
    +#: ../../godmode/reporting/visual_console_builder.data.php:225
    +msgid "Auto adjust to screen in fullscreen"
    +msgstr "Ajustement automatique Ć  l'Ć©cran en plein Ć©cran"
    +
    +#: ../../godmode/reporting/visual_console_builder.php:226
    +msgid "This file isn't image"
    +msgstr "Ce fichier n'est pas une image."
    +
    +#: ../../godmode/reporting/visual_console_builder.php:229
    +msgid "This file isn't image."
    +msgstr "Ce fichier n'est pas une image."
    +
    +#: ../../godmode/reporting/visual_console_builder.php:235
    +#: ../../godmode/reporting/visual_console_builder.php:238
    +msgid "File already are exists."
    +msgstr "Le fichier existe dƩjƠ."
    +
    +#: ../../godmode/reporting/visual_console_builder.php:246
    +#: ../../godmode/reporting/visual_console_builder.php:249
    +msgid "The file have not image extension."
    +msgstr "Le fichier n'a pas une extension d'image."
    +
    +#: ../../godmode/reporting/visual_console_builder.php:261
    +#: ../../godmode/reporting/visual_console_builder.php:264
    +#: ../../godmode/reporting/visual_console_builder.php:274
    +#: ../../godmode/reporting/visual_console_builder.php:280
    +msgid "Problems with move file to target."
    +msgstr "ProblĆØmes de dĆ©placement du fichier Ć  la cible"
    +
    +#: ../../godmode/reporting/visual_console_builder.php:317
    +msgid "Successfully update."
    +msgstr "Mis Ć  jour correctement"
    +
    +#: ../../godmode/reporting/visual_console_builder.php:336
    +msgid "Could not be update."
    +msgstr "Mise Ơ jour ƩchouƩe"
    +
    +#: ../../godmode/reporting/visual_console_builder.php:356
    +msgid "Successfully created."
    +msgstr "CrƩƩ correctement"
    +
    +#: ../../godmode/reporting/visual_console_builder.php:375
    +msgid "Could not be created."
    +msgstr "Erreur de crƩation"
    +
    +#: ../../godmode/reporting/visual_console_builder.php:423
    +msgid "Successfully multiple delete."
    +msgstr "Suppression multiple rƩussie"
    +
    +#: ../../godmode/reporting/visual_console_builder.php:424
    +msgid "Unsuccessful multiple delete."
    +msgstr "Suppression multiple ƩchouƩe"
    +
    +#: ../../godmode/reporting/visual_console_builder.php:544
    +msgid "Successfully delete."
    +msgstr "SupprimƩ correctement"
    +
    +#: ../../godmode/reporting/visual_console_builder.php:834
    +#: ../../operation/visual_console/view.php:178
    +#: ../../operation/visual_console/legacy_view.php:165
    +msgid "Services wizard"
    +msgstr "Assistant de services"
    +
    +#: ../../godmode/reporting/reporting_builder.list_items.php:706
    +#: ../../godmode/reporting/reporting_builder.list_items.php:710
    +#: ../../godmode/reporting/graph_builder.graph_editor.php:284
    +#: ../../godmode/reporting/graph_builder.graph_editor.php:288
    +msgid "Sort items"
    +msgstr "Classer les ƩlƩments"
    +
    +#: ../../godmode/reporting/reporting_builder.list_items.php:713
    +msgid "Sort selected items from position: "
    +msgstr "Classer les ƩlƩments sƩlectionnƩs Ơ partir de la position : "
    +
    +#: ../../godmode/reporting/reporting_builder.list_items.php:716
    +msgid "Move before to"
    +msgstr "DĆ©placer avant"
    +
    +#: ../../godmode/reporting/reporting_builder.list_items.php:717
    +msgid "Move after to"
    +msgstr "DĆ©placer aprĆØs"
    +
    +#: ../../godmode/reporting/reporting_builder.list_items.php:757
    +#: ../../godmode/reporting/reporting_builder.list_items.php:761
    +msgid "Delete items"
    +msgstr "Supprimer les ƩlƩments"
    +
    +#: ../../godmode/reporting/reporting_builder.list_items.php:764
    +msgid "Delete selected items from position: "
    +msgstr "Supprimer les ƩlƩments sƩlectionnƩs Ơ partir de la position : "
    +
    +#: ../../godmode/reporting/reporting_builder.list_items.php:767
    +msgid "Delete above to"
    +msgstr "Supprimer ce qui se trouve au-dessus de"
    +
    +#: ../../godmode/reporting/reporting_builder.list_items.php:768
    +msgid "Delete below to"
    +msgstr "Supprimer ce qui se trouve au-dessous de"
    +
    +#: ../../godmode/reporting/reporting_builder.list_items.php:824
    +msgid ""
    +"Are you sure to sort the items into the report?\\n. This action change the "
    +"sorting of items into data base."
    +msgstr ""
    +"Ɗtes-vous sĆ»r de trier les Ć©lĆ©ments dans le rapportĀ ?\\n. Cette action modifie le "
    +"tri des ƩlƩments dans la base de donnƩes."
    +
    +#: ../../godmode/reporting/reporting_builder.list_items.php:844
    +#: ../../godmode/reporting/graph_builder.graph_editor.php:407
    +msgid "Please select any item to order"
    +msgstr "Veuillez sƩlectionner un ƩlƩment Ơ organiser"
    +
    +#: ../../godmode/reporting/reporting_builder.list_items.php:874
    +msgid "Are you sure to delete the items into the report?\\n"
    +msgstr "Ɗtes-vous sĆ»r(e) de vouloir supprimer les Ć©lĆ©ments dans le rapport ?\\n"
    +
    +#: ../../godmode/reporting/reporting_builder.list_items.php:901
    +msgid "Please select any item to delete"
    +msgstr "Veuillez sƩlectionner un ƩlƩment Ơ supprimer"
    +
    +#: ../../godmode/reporting/create_container.php:155
    +msgid "Container name is missing."
    +msgstr "Le nom du conteneur est manquant."
    +
    +#: ../../godmode/reporting/create_container.php:196
    +#: ../../godmode/reporting/graph_container.php:134
    +msgid "Create container"
    +msgstr "CrƩer un conteneur"
    +
    +#: ../../godmode/reporting/create_container.php:205
    +msgid "Container stored successfully"
    +msgstr "Conteneur enregistrƩ correctement"
    +
    +#: ../../godmode/reporting/create_container.php:205
    +msgid "There was a problem storing container"
    +msgstr "ProblĆØme d'enregistrement du conteneur"
    +
    +#: ../../godmode/reporting/create_container.php:212
    +msgid "Update the container"
    +msgstr "Mettre Ć  jour le conteneur"
    +
    +#: ../../godmode/reporting/create_container.php:212
    +msgid "Bad update the container"
    +msgstr "Erreur de mise Ć  jour du conteneur"
    +
    +#: ../../godmode/reporting/create_container.php:287
    +msgid "Parent container"
    +msgstr "Conteneur parent"
    +
    +#: ../../godmode/reporting/create_container.php:345 ../../include/functions.php:2688
    +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:2700
    +#: ../../include/functions.php:2701 ../../include/ajax/graph.ajax.php:147
    +#: ../../include/ajax/graph.ajax.php:148 ../../include/ajax/graph.ajax.php:149
    +#, php-format
    +msgid "%s hours"
    +msgstr "%s heures"
    +
    +#: ../../godmode/reporting/create_container.php:351
    +#: ../../godmode/reporting/create_container.php:352
    +#: ../../include/ajax/graph.ajax.php:151 ../../include/ajax/graph.ajax.php:152
    +#, php-format
    +msgid "%s days"
    +msgstr "%s jours"
    +
    +#: ../../godmode/reporting/create_container.php:353 ../../include/functions.php:2703
    +#: ../../include/ajax/module.php:204 ../../include/ajax/graph.ajax.php:153
    +msgid "1 week"
    +msgstr "1 semaine"
    +
    +#: ../../godmode/reporting/create_container.php:355 ../../include/functions.php:2705
    +#: ../../include/ajax/module.php:206 ../../include/ajax/graph.ajax.php:155
    +msgid "1 month"
    +msgstr "1 mois"
    +
    +#: ../../godmode/reporting/create_container.php:365
    +#: ../../godmode/reporting/create_container.php:474
    +#: ../../godmode/reporting/create_container.php:528
    +msgid ""
    +"This is the interval or period of time with which the graph data will be "
    +"obtained. For example, a week means data from a week ago from now. "
    +msgstr ""
    +"PƩriode de temps pour laquelle les donnƩes seront obtenues. Par exemple, l'option "
    +"Ā« une semaine Ā» renvoie les donnĆ©es d'il y a une semaine jusqu'Ć  prĆ©sent. "
    +
    +#: ../../godmode/reporting/create_container.php:428
    +#: ../../godmode/reporting/create_container.php:583
    +#: ../../godmode/reporting/graph_builder.main.php:208
    +#: ../../include/functions_visual_map_editor.php:554
    +msgid "Type of graph"
    +msgstr "Type de graphique"
    +
    +#: ../../godmode/reporting/create_container.php:437
    +#: ../../godmode/reporting/create_container.php:494
    +#: ../../godmode/reporting/create_container.php:589
    +#: ../../godmode/reporting/graph_builder.main.php:285
    +#: ../../operation/agentes/stat_win.php:395
    +#: ../../operation/agentes/interface_traffic_graph_win.php:238
    +msgid "Show full scale graph (TIP)"
    +msgstr "Afficher graphique Ć  pleine Ć©chelle (TIP)"
    +
    +#: ../../godmode/reporting/create_container.php:448
    +#: ../../godmode/reporting/create_container.php:501
    +#: ../../godmode/reporting/create_container.php:596
    +msgid "Add item"
    +msgstr "Ajouter un ƩlƩment"
    +
    +#: ../../godmode/reporting/create_container.php:614
    +msgid "There are no items in this container."
    +msgstr "Il n'y a aucun ƩlƩment dans ce conteneur."
    +
    +#: ../../godmode/reporting/create_container.php:623
    +msgid "Agent/Module"
    +msgstr "Agent/Module"
    +
    +#: ../../godmode/reporting/create_container.php:626
    +msgid "M.Group"
    +msgstr "Groupe de modules"
    +
    +#: ../../godmode/reporting/map_builder.php:318
    +#: ../../godmode/reporting/map_builder.php:326
    +msgid "Not copied. Error copying data"
    +msgstr "Erreur de copie des donnƩes"
    +
    +#: ../../godmode/reporting/map_builder.php:368
    +#: ../../godmode/reporting/visual_console_favorite.php:185
    +msgid "Group Recursion"
    +msgstr "RĆ©cursion de groupe"
    +
    +#: ../../godmode/reporting/map_builder.php:384
    +msgid "Map name"
    +msgstr "Nom de la carte"
    +
    +#: ../../godmode/reporting/map_builder.php:386
    +msgid "Items"
    +msgstr "ƉlĆ©ments"
    +
    +#: ../../godmode/reporting/map_builder.php:462
    +#: ../../general/first_task/map_builder.php:23
    +msgid "There are no visual console defined yet."
    +msgstr "Aucune console visuelle dƩfinie jusqu'Ơ prƩsent"
    +
    +#: ../../godmode/reporting/graph_builder.php:309
    +#: ../../operation/reporting/graph_viewer.php:204
    +msgid "Graph editor"
    +msgstr "Ɖditeur de graphique"
    +
    +#: ../../godmode/reporting/graph_builder.php:320
    +#: ../../operation/reporting/graph_viewer.php:223
    +msgid "View graph"
    +msgstr "Afficher graphique"
    +
    +#: ../../godmode/reporting/graph_builder.php:336
    +msgid "Graph builder"
    +msgstr "Outil de conception de graphiques"
    +
    +#: ../../godmode/reporting/graph_builder.php:378
    +msgid "Graph stored successfully"
    +msgstr "Graphique sauvegardƩ correctement"
    +
    +#: ../../godmode/reporting/graph_builder.php:379
    +msgid "There was a problem storing Graph"
    +msgstr "ProblĆØme d'enregistrement du graphique"
    +
    +#: ../../godmode/reporting/graph_builder.php:387
    +msgid "There was a problem adding Module"
    +msgstr "ProblĆØme d'ajout du module"
    +
    +#: ../../godmode/reporting/graph_builder.php:394
    +msgid "Update the graph"
    +msgstr "Mettre Ć  jour le graphique"
    +
    +#: ../../godmode/reporting/graph_builder.php:395
    +msgid "Bad update the graph"
    +msgstr "Erreur de mise Ć  jour du graphique"
    +
    +#: ../../godmode/reporting/graph_builder.php:402
    +msgid "Graph deleted successfully"
    +msgstr "Graphique supprimƩ correctement"
    +
    +#: ../../godmode/reporting/graph_builder.php:403
    +msgid "There was a problem deleting Graph"
    +msgstr "ProblĆØme de suppression du graphique"
    +
    +#: ../../godmode/reporting/graphs.php:106
    +msgid "Graphs containers"
    +msgstr "Conteneurs de graphiques"
    +
    +#: ../../godmode/reporting/graphs.php:120
    +msgid "List of custom graphs"
    +msgstr "Liste des graphiques personnalisƩs"
    +
    +#: ../../godmode/reporting/graphs.php:235
    +#: ../../godmode/reporting/reporting_builder.php:780
    +msgid "Free text for search: "
    +msgstr "Texte libre pour la recherche : "
    +
    +#: ../../godmode/reporting/graphs.php:236
    +#: ../../godmode/reporting/reporting_builder.php:782
    +msgid "Search by report name or description, list matches."
    +msgstr "Rechercher par nom de rapport, description ou concordances de listes."
    +
    +#: ../../godmode/reporting/graphs.php:248
    +#: ../../godmode/reporting/reporting_builder.php:808
    +msgid "Show Option"
    +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
    +msgid "Graph name"
    +msgstr "Nom du graphique"
    +
    +#: ../../godmode/reporting/graphs.php:312 ../../include/functions_container.php:148
    +msgid "Number of Graphs"
    +msgstr "Nombre de graphiques"
    +
    +#: ../../godmode/reporting/graphs.php:402
    +msgid "Create graph"
    +msgstr "CrƩer une graphique"
    +
    +#: ../../godmode/reporting/visual_console_favorite.php:223
    +msgid "No favourite consoles defined"
    +msgstr "Aucune console favorite dƩfinie"
    +
    +#: ../../godmode/reporting/graph_builder.graph_editor.php:199
    +#, php-format
    +msgid ""
    +"The maximum number of items in a chart is %d. You have %d elements, only first %d "
    +"will be displayed."
    +msgstr ""
    +"Le nombre maximal d'ƩlƩments dans un graphique est %d. Vous avez %d ƩlƩments, "
    +"seul le premier %d sera affichƩ."
    +
    +#: ../../godmode/reporting/graph_builder.graph_editor.php:291
    +msgid "Sort selected items"
    +msgstr "Classer les ƩlƩments sƩlectionnƩs"
    +
    +#: ../../godmode/reporting/graph_builder.graph_editor.php:294
    +msgid "before to"
    +msgstr "avant"
    +
    +#: ../../godmode/reporting/graph_builder.graph_editor.php:295
    +msgid "after to"
    +msgstr "aprĆØs"
    +
    +#: ../../godmode/reporting/reporting_builder.item_editor.php:1046
    +msgid "Not valid"
    +msgstr "Non valide"
    +
    +#: ../../godmode/reporting/reporting_builder.item_editor.php:1054
    +msgid ""
    +"This type of report brings a lot of data loading, it is recommended to use it for "
    +"scheduled reports and not for real-time view."
    +msgstr ""
    +"Ce type de rapport implique un chargement ƩlevƩ de donnƩes. Il est conseillƩ de "
    +"l'utiliser pour des rapports programmƩs plutƓt que pour l'affichage en temps rƩel."
    +
    +#: ../../godmode/reporting/reporting_builder.item_editor.php:1250
    +msgid "Log number"
    +msgstr "Nombre de journaux"
    +
    +#: ../../godmode/reporting/reporting_builder.item_editor.php:1252
    +msgid ""
    +"Warning: this parameter limits the contents of the logs and affects the "
    +"performance."
    +msgstr ""
    +"Attention : ce paramĆØtre limite le contenu des journaux et affecte la performance."
    +
    +#: ../../godmode/reporting/reporting_builder.item_editor.php:1313
    +msgid ""
    +"This is the range, or period of time over which the report renders the "
    +"information for this report type. For example, a week means data from a week ago "
    +"from now. "
    +msgstr ""
    +"PĆ©riode de temps pour laquelle le rapport extrait l'information pour ce type de "
    +"rapport. Par exemple, l'option Ā« une semaine Ā» renvoie les donnĆ©es d'il y a une "
    +"semaine jusqu'Ơ prƩsent. "
    +
    +#: ../../godmode/reporting/reporting_builder.item_editor.php:1872
    +msgid "Show modules"
    +msgstr "Afficher les modules"
    +
    +#: ../../godmode/reporting/reporting_builder.item_editor.php:2253
    +msgid "Target server"
    +msgstr "Serveur cible"
    +
    +#: ../../godmode/reporting/reporting_builder.item_editor.php:2554
    +msgid "Macros definition"
    +msgstr "DĆ©finition des macros"
    +
    +#: ../../godmode/reporting/reporting_builder.item_editor.php:2565
    +msgid "Render definition"
    +msgstr "DĆ©finition du rendu"
    +
    +#: ../../godmode/reporting/reporting_builder.item_editor.php:2566
    +msgid "Please note that not all CSS styles are supported by PDF reports."
    +msgstr ""
    +"Veuillez noter que tous les styles CSS ne sont pas pris en charge par les "
    +"rapports PDF."
    +
    +#: ../../godmode/reporting/reporting_builder.item_editor.php:2663
    +msgid "Greater or equal (>=)"
    +msgstr "SupƩrieur ou Ʃgal (>=)"
    +
    +#: ../../godmode/reporting/reporting_builder.item_editor.php:2664
    +msgid "Less or equal (<=)"
    +msgstr "InfƩrieur ou Ʃgal (<=)"
    +
    +#: ../../godmode/reporting/reporting_builder.item_editor.php:2665
    +msgid "Less (<)"
    +msgstr "InfƩrieur (<)"
    +
    +#: ../../godmode/reporting/reporting_builder.item_editor.php:2666
    +msgid "Greater (>)"
    +msgstr "SupƩrieur (>)"
    +
    +#: ../../godmode/reporting/reporting_builder.item_editor.php:2667
    +msgid "Equal (=)"
    +msgstr "Ɖgal (=)"
    +
    +#: ../../godmode/reporting/reporting_builder.item_editor.php:2668
    +msgid "Not equal (!=)"
    +msgstr "Pas Ć©gal (!=)"
    +
    +#: ../../godmode/reporting/reporting_builder.item_editor.php:2793
    +msgid ""
    +"Show a summary chart with max, min and average number of total modules at the end "
    +"of the report and Checks."
    +msgstr ""
    +"Afficher un graphique rƩcapitulatif avec le nombre maximum, minimum, moyen de "
    +"modules au total Ơ la fin du rapport et des vƩrifications."
    +
    +#: ../../godmode/reporting/reporting_builder.item_editor.php:2848
    +msgid "Checks in Warning status"
    +msgstr "VĆ©rifie dans l'Ć©tat d'avertissement"
    +
    +#: ../../godmode/reporting/reporting_builder.item_editor.php:2918
    +msgid "Only data"
    +msgstr "DonnƩes uniquement"
    +
    +#: ../../godmode/reporting/reporting_builder.item_editor.php:3016
    +msgid "Include extended events"
    +msgstr "Inclure les ƩvƩnements prolongƩs"
    +
    +#: ../../godmode/reporting/reporting_builder.item_editor.php:3033
    +msgid "Show custom data"
    +msgstr "Afficher les donnƩes personnalisƩes"
    +
    +#: ../../godmode/reporting/reporting_builder.item_editor.php:3052
    +msgid "By agent "
    +msgstr "Par agent"
    +
    +#: ../../godmode/reporting/reporting_builder.item_editor.php:3062
    +msgid "By user validator "
    +msgstr "Par validateur dā€™utilisateur"
    +
    +#: ../../godmode/reporting/reporting_builder.item_editor.php:3072
    +msgid "By criticity "
    +msgstr "Par criticitƩ"
    +
    +#: ../../godmode/reporting/reporting_builder.item_editor.php:3082
    +msgid "Validated vs unvalidated "
    +msgstr "ValidƩ vs non validƩ"
    +
    +#: ../../godmode/reporting/reporting_builder.item_editor.php:3097
    +msgid ""
    +"With the token enabled the query will affect the Historical Database, which may "
    +"mean a small drop in performance."
    +msgstr ""
    +"Avec le jeton activĆ©, la requĆŖte affectera la base de donnĆ©es historique, ce qui "
    +"peut signifier une petite baisse des performances."
    +
    +#: ../../godmode/reporting/reporting_builder.item_editor.php:3282
    +msgid "Include filter"
    +msgstr "Inclure Filtre"
    +
    +#: ../../godmode/reporting/reporting_builder.item_editor.php:3286
    +#: ../../godmode/reporting/reporting_builder.item_editor.php:3295
    +msgid "Free text string search on event description"
    +msgstr "Recherche de chaƮne de texte libre sur la description de l'ƩvƩnement"
    +
    +#: ../../godmode/reporting/reporting_builder.item_editor.php:3291
    +msgid "Exclude filter"
    +msgstr "Exclure le filtre"
    +
    +#: ../../godmode/reporting/reporting_builder.item_editor.php:3421
    +#: ../../include/functions_reporting.php:4628
    +msgid "Unassigned group"
    +msgstr "Groupe non affectƩ"
    +
    +#: ../../godmode/reporting/reporting_builder.item_editor.php:3467
    +#: ../../include/functions_reporting.php:4622
    +msgid "Unnasigned group"
    +msgstr "Groupe non affectƩ"
    +
    +#: ../../godmode/reporting/reporting_builder.item_editor.php:3490
    +msgid "Select by group"
    +msgstr "SĆ©lectionner par groupe"
    +
    +#: ../../godmode/reporting/reporting_builder.item_editor.php:3578
    +msgid "Display options"
    +msgstr "Afficher les options"
    +
    +#: ../../godmode/reporting/reporting_builder.item_editor.php:3636
    +msgid "Agent group filter"
    +msgstr "Filtre de groupe d'agents"
    +
    +#: ../../godmode/reporting/reporting_builder.item_editor.php:3656
    +msgid "Agent OS filter"
    +msgstr "Filtre du systĆØme d'exploitation de l'agent"
    +
    +#: ../../godmode/reporting/reporting_builder.item_editor.php:3682
    +msgid "Agent custom field"
    +msgstr "Champ personnalisƩ de l'agent"
    +
    +#: ../../godmode/reporting/reporting_builder.item_editor.php:3704
    +msgid "Agent custom field filter"
    +msgstr "Filtre de champ personnalisƩ de l'agent"
    +
    +#: ../../godmode/reporting/reporting_builder.item_editor.php:3728
    +msgid "Agent status filter"
    +msgstr "Filtre d'Ć©tat de l'agent"
    +
    +#: ../../godmode/reporting/reporting_builder.item_editor.php:3766
    +msgid "Agent version filter"
    +msgstr "Filtre de version d'agent"
    +
    +#: ../../godmode/reporting/reporting_builder.item_editor.php:3790
    +msgid "Agent has remote configuration"
    +msgstr "L'agent a une configuration Ć  distance"
    +
    +#: ../../godmode/reporting/reporting_builder.item_editor.php:3791
    +msgid "Filter agents by remote configuration enabled."
    +msgstr "Filtrer les agents par configuration Ơ distance activƩe."
    +
    +#: ../../godmode/reporting/reporting_builder.item_editor.php:3802
    +msgid "Agent module filter"
    +msgstr "Filtre de module d'agent"
    +
    +#: ../../godmode/reporting/reporting_builder.item_editor.php:3908
    +#: ../../godmode/reporting/reporting_builder.item_editor.php:4423
    +msgid "Agent Failover"
    +msgstr "Basculement d'agent"
    +
    +#: ../../godmode/reporting/reporting_builder.item_editor.php:3913
    +#: ../../godmode/reporting/reporting_builder.item_editor.php:4426
    +msgid "Module Failover"
    +msgstr "Basculement de module"
    +
    +#: ../../godmode/reporting/reporting_builder.item_editor.php:3953
    +msgid "Please save the item before adding entries to this list."
    +msgstr "Veuillez enregistrer lā€™Ć©lĆ©ment avant dā€™ajouter des entrĆ©es Ć  cette liste."
    +
    +#: ../../godmode/reporting/reporting_builder.item_editor.php:4399
    +msgid "rate"
    +msgstr "taux"
    +
    +#: ../../godmode/reporting/reporting_builder.item_editor.php:4447
    +msgid ""
    +"Please be careful, when the module have diferent intervals in their life, the "
    +"summatory maybe get bad result."
    +msgstr ""
    +"Veuillez faire attention lorsque le module prƩsente des intervalles diffƩrents ; "
    +"la sommation pourrait obtenir des rƩsultats erronƩs."
    +
    +#: ../../godmode/reporting/reporting_builder.item_editor.php:4467
    +msgid "Please save the report to start adding items into the list."
    +msgstr "Veuillez sauvegarder le rapport pour ajouter des ƩlƩments Ơ la liste."
    +
    +#: ../../godmode/reporting/reporting_builder.item_editor.php:4733
    +#: ../../godmode/reporting/reporting_builder.item_editor.php:4737
    +#: ../../godmode/reporting/reporting_builder.item_editor.php:4741
    +#: ../../godmode/reporting/reporting_builder.item_editor.php:4745
    +#: ../../godmode/reporting/reporting_builder.item_editor.php:4749
    +#: ../../godmode/reporting/reporting_builder.item_editor.php:4753
    +#: ../../godmode/reporting/reporting_builder.item_editor.php:4757
    +#: ../../godmode/reporting/reporting_builder.item_editor.php:4761
    +msgid "Item Editor Information"
    +msgstr "Informations sur l'Ć©diteur dā€™Ć©lĆ©ments"
    +
    +#: ../../godmode/reporting/reporting_builder.item_editor.php:4734
    +msgid "Please select a name."
    +msgstr "Veuillez sƩlectionner un nom."
    +
    +#: ../../godmode/reporting/reporting_builder.item_editor.php:4738
    +msgid "Please select an agent."
    +msgstr "Veuillez sƩlectionner un agent"
    +
    +#: ../../godmode/reporting/reporting_builder.item_editor.php:4746
    +msgid "Please insert a SQL query."
    +msgstr "Veuillez insĆ©rer une requĆŖte SQL."
    +
    +#: ../../godmode/reporting/reporting_builder.item_editor.php:4750
    +msgid "Please insert a URL."
    +msgstr "Veuillez insƩrer une URL."
    +
    +#: ../../godmode/reporting/reporting_builder.item_editor.php:4754
    +msgid "Please checked a custom interval option."
    +msgstr "Veuillez cocher une option d'intervalle personnalisƩ."
    +
    +#: ../../godmode/reporting/reporting_builder.item_editor.php:4758
    +msgid "Please select a user."
    +msgstr "Veuillez sƩlectionner un utilisateur."
    +
    +#: ../../godmode/reporting/reporting_builder.item_editor.php:4762
    +msgid "Please select a group."
    +msgstr "SĆ©lectionnez un groupe."
    +
    +#: ../../godmode/reporting/visual_console_builder.elements.php:106
    +msgid "Width x Height
    Max value" +msgstr "Largeur x Hauteur
    Valeur max" + +#: ../../godmode/reporting/visual_console_builder.elements.php:108 +msgid "Map linked" +msgstr "Carte associĆ©e" + +#: ../../godmode/reporting/visual_console_builder.elements.php:194 +msgid "Percentile Bar" +msgstr "Barre centile" + +#: ../../godmode/reporting/visual_console_builder.elements.php:204 +msgid "Percentile Bubble" +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 +#: ../../operation/visual_console/view.php:306 +msgid "Module Graph" +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:4224 +#: ../../operation/visual_console/view.php:326 +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:4249 +#: ../../include/rest-api/models/VisualConsole/Item.php:2131 +#: ../../operation/visual_console/view.php:331 +msgid "Simple Value" +msgstr "Valeur simple" + +#: ../../godmode/reporting/visual_console_builder.elements.php:252 +msgid "Simple Value (Process Max)" +msgstr "Valeur simple (processus max)" + +#: ../../godmode/reporting/visual_console_builder.elements.php:263 +msgid "Simple Value (Process Min)" +msgstr "Valeur simple (processus min)" + +#: ../../godmode/reporting/visual_console_builder.elements.php:274 +msgid "Simple Value (Process Avg)" +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:4204 +#: ../../operation/visual_console/view.php:356 +msgid "Box" +msgstr "BoĆ®te" + +#: ../../godmode/reporting/visual_console_builder.elements.php:323 +#: ../../include/functions_visual_map_editor.php:1405 +#: ../../operation/visual_console/view.php:371 +msgid "Network link" +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:4264 +#: ../../include/rest-api/models/VisualConsole/Item.php:2143 +#: ../../operation/visual_console/view.php:366 +msgid "Color cloud" +msgstr "Nuage de couleur" + +#: ../../godmode/reporting/visual_console_builder.elements.php:352 +#: ../../include/rest-api/models/VisualConsole/Item.php:2155 +#: ../../operation/visual_console/view.php:311 +msgid "Basic chart" +msgstr "Graphique de base" + +#: ../../godmode/reporting/visual_console_builder.elements.php:360 +#: ../../include/rest-api/models/VisualConsole/Item.php:2151 +#: ../../operation/visual_console/view.php:376 +msgid "Odometer" +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:4214 +#: ../../include/rest-api/models/VisualConsole/Item.php:2103 +#: ../../include/lib/Dashboard/Widgets/clock.php:158 +#: ../../include/lib/Dashboard/Widgets/clock.php:310 +#: ../../operation/visual_console/view.php:346 +msgid "Clock" +msgstr "Horloge" + +#: ../../godmode/reporting/visual_console_builder.elements.php:395 +#: ../../godmode/reporting/visual_console_builder.elements.php:855 +msgid "Edit label" +msgstr "Modifier les Ć©tiquettes" + +#: ../../godmode/reporting/reporting_builder.main.php:146 +msgid "Only the group can view the report" +msgstr "Seulement le groupe peut voir le rapport" + +#: ../../godmode/reporting/reporting_builder.main.php:147 +msgid "The next group can edit the report" +msgstr "Le groupe suivant peut Ć©diter le rapport" + +#: ../../godmode/reporting/reporting_builder.main.php:148 +msgid "Only the user and admin user can edit the report" +msgstr "Seulement l'utilisateur et l'administrateur peuvent Ć©diter le rapport" + +#: ../../godmode/reporting/reporting_builder.main.php:150 +msgid "Write Access" +msgstr "AccĆØs en Ć©criture" + +#: ../../godmode/reporting/reporting_builder.main.php:152 +msgid "" +"For example, you want a report that the people of \"All\" groups can see but you " +"want to edit only for you or your group." +msgstr "" +"Par exemple, si vous voulez un rapport visible par Ā« Tous Ā» les groupes mais " +"uniquement modifiable par vous ou votre groupe." + +#: ../../godmode/reporting/reporting_builder.main.php:193 +msgid "Non interactive report" +msgstr "Rapport non interactif" + +#: ../../godmode/reporting/reporting_builder.php:210 +#: ../../operation/reporting/reporting_viewer.php:101 +msgid "Your report has been planned, and the system will email you a " +msgstr "Votre rapport a Ć©tĆ© planifiĆ© et le systĆØme en vous enverra par e-mail un" + +#: ../../godmode/reporting/reporting_builder.php:211 +#: ../../operation/reporting/reporting_viewer.php:102 +msgid "An error has ocurred" +msgstr "Une erreur est survenue" + +#: ../../godmode/reporting/reporting_builder.php:535 +#: ../../godmode/reporting/reporting_builder.php:3483 +#: ../../godmode/reporting/reporting_builder.php:3566 +#: ../../godmode/reporting/reporting_builder.php:3614 +msgid "Reports list" +msgstr "Liste de rapports" + +#: ../../godmode/reporting/reporting_builder.php:551 +#: ../../godmode/reporting/reporting_builder.php:3494 ../../operation/menu.php:318 +#: ../../operation/reporting/custom_reporting.php:23 +msgid "Custom reporting" +msgstr "Rapports personnalisĆ©s" + +#: ../../godmode/reporting/reporting_builder.php:583 +msgid "List of reports" +msgstr "Liste des rapports" + +#: ../../godmode/reporting/reporting_builder.php:1044 +msgid "This report exceeds the item limit for realtime operations" +msgstr "" +"Ce rapport dĆ©passe le nombre d'Ć©lĆ©ments limite pour les opĆ©rations en temps rĆ©el." + +#: ../../godmode/reporting/reporting_builder.php:1276 +msgid "Create report" +msgstr "CrĆ©er un rapport" + +#: ../../godmode/reporting/reporting_builder.php:3598 +#: ../../operation/reporting/reporting_viewer.php:173 +msgid "View report" +msgstr "Afficher le rapport" + +#: ../../godmode/reporting/reporting_builder.php:3617 +msgid "Create Custom Report" +msgstr "CrĆ©ez un rapport personnalisĆ©." + +#: ../../godmode/reporting/reporting_builder.php:3705 +msgid "Unsuccessful action

    " +msgstr "Action ƩchouƩe

    " + #: ../../godmode/reporting/visual_console_builder.wizard.php:127 +#: ../../include/functions_visual_map_editor.php:56 msgid "Static Graph" msgstr "Graphique statique" -#: ../../include/functions_visual_map_editor.php:60 +#: ../../godmode/reporting/visual_console_builder.wizard.php:128 +#: ../../include/functions_visual_map_editor.php:57 +#: ../../include/functions_visual_map_editor.php:1388 +#: ../../operation/visual_console/view.php:301 +msgid "Percentile Item" +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:4209 +#: ../../include/rest-api/models/VisualConsole/Item.php:2099 +msgid "Module graph" +msgstr "Graphique de module" + #: ../../godmode/reporting/visual_console_builder.wizard.php:130 +#: ../../include/functions_visual_map_editor.php:60 msgid "Simple value" msgstr "Valeur simple" +#: ../../godmode/reporting/visual_console_builder.wizard.php:165 +msgid "Range between elements (px)" +msgstr "Gamme entre Ć©lĆ©ments (px)" + +#: ../../godmode/reporting/visual_console_builder.wizard.php:178 +msgid "Size (px)" +msgstr "Taille (px)" + +#: ../../godmode/reporting/visual_console_builder.wizard.php:228 +#: ../../include/functions_config.php:1021 +msgid "Font size" +msgstr "Taille de la police" + +#: ../../godmode/reporting/visual_console_builder.wizard.php:256 +#: ../../include/functions_visual_map_editor.php:612 +#: ../../include/rest-api/models/VisualConsole/Items/SimpleValue.php:371 +msgid "Process" +msgstr "Processus" + +#: ../../godmode/reporting/visual_console_builder.wizard.php:259 +#: ../../include/functions_visual_map_editor.php:615 +msgid "Min value" +msgstr "Valeur minimale" + +#: ../../godmode/reporting/visual_console_builder.wizard.php:260 +#: ../../godmode/reporting/visual_console_builder.wizard.php:278 +#: ../../include/functions_visual_map_editor.php:616 +#: ../../include/functions_visual_map_editor.php:682 +msgid "Max value" +msgstr "Valeur maximale" + +#: ../../godmode/reporting/visual_console_builder.wizard.php:261 +#: ../../include/functions_visual_map_editor.php:617 +msgid "Avg value" +msgstr "Valeur moyenne" + +#: ../../godmode/reporting/visual_console_builder.wizard.php:273 +msgid "Width (px)" +msgstr "Largeur (px)" + +#: ../../godmode/reporting/visual_console_builder.wizard.php:295 +#: ../../include/functions_visual_map_editor.php:687 +#: ../../include/rest-api/models/VisualConsole/Items/Percentile.php:459 +msgid "Bubble" +msgstr "Bulle" + +#: ../../godmode/reporting/visual_console_builder.wizard.php:307 +#: ../../include/functions_visual_map_editor.php:711 +#: ../../include/functions_visual_map_editor.php:729 +#: ../../include/rest-api/models/VisualConsole/Items/Percentile.php:509 +msgid "Value to show" +msgstr "Valeur Ć  afficher" + +#: ../../godmode/reporting/visual_console_builder.wizard.php:309 +#: ../../include/functions_visual_map_editor.php:692 +#: ../../include/rest-api/models/VisualConsole/Items/Percentile.php:504 +msgid "Percent" +msgstr "Pourcentage" + +#: ../../godmode/reporting/visual_console_builder.wizard.php:378 +msgid "One item per agent" +msgstr "Un Ć©lĆ©ment par agent" + +#: ../../godmode/reporting/visual_console_builder.wizard.php:448 +#: ../../godmode/reporting/visual_console_builder.wizard.php:765 +msgid "Agent - Module" +msgstr "Agent - Module" + +#: ../../godmode/reporting/visual_console_builder.wizard.php:465 +msgid "Enable link agent" +msgstr "Activer agent de liaison" + +#: ../../godmode/reporting/visual_console_builder.wizard.php:476 +msgid "Set Parent" +msgstr "DĆ©finir le parent" + +#: ../../godmode/reporting/visual_console_builder.wizard.php:479 +msgid "Item created in the visualmap" +msgstr "ƉlĆ©ment crĆ©Ć© sur la carte visuelle" + +#: ../../godmode/reporting/visual_console_builder.wizard.php:480 +msgid "Use the agents relationship (from selected agents)" +msgstr "Utiliser la relation d'agents (Ć  partir des agents sĆ©lectionnĆ©s)" + +#: ../../godmode/reporting/visual_console_builder.wizard.php:489 +msgid "Item in the map" +msgstr "ƉlĆ©ment sur la carte" + +#: ../../godmode/reporting/visual_console_builder.wizard.php:490 +#, php-format +msgid "The parenting relationships in %s will be drawn on the map." +msgstr "Les relations parentales dans %s seront dessinĆ©es sur la carte." + +#: ../../godmode/reporting/visual_console_builder.wizard.php:510 +#: ../../godmode/reporting/visual_console_builder.wizard.php:514 +msgid "Are you sure to add many elements\\nin visual map?" +msgstr "" +"Ɗtes-vous sĆ»r(e) de vouloir ajouter plusieurs Ć©lĆ©ments\\nsur la carte visuelle ?" + +#: ../../godmode/reporting/visual_console_builder.wizard.php:686 +msgid "Please select any module or modules." +msgstr "Veuillez sĆ©lectionner un ou plusieurs modules." + +#: ../../godmode/reporting/visual_console_builder.editor.php:163 +msgid "Min allowed size is 1024x768" +msgstr "La taille minimale autorisĆ©e est 1024x768" + +#: ../../godmode/reporting/visual_console_builder.editor.php:167 +#: ../../godmode/reporting/visual_console_builder.editor.php:169 +#: ../../godmode/reporting/visual_console_builder.editor.php:171 +#: ../../operation/snmpconsole/snmp_browser.php:225 +msgid "Action in progress" +msgstr "Action en cours" + +#: ../../godmode/reporting/visual_console_builder.editor.php:167 +msgid "Loading in progress" +msgstr "Chargement en cours" + +#: ../../godmode/reporting/visual_console_builder.editor.php:169 +msgid "Saving in progress" +msgstr "Enregistrement en cours" + +#: ../../godmode/reporting/visual_console_builder.editor.php:171 +msgid "Deletion in progress" +msgstr "Suppression en cours" + +#: ../../godmode/reporting/graph_builder.main.php:218 +#: ../../include/lib/Dashboard/Widgets/custom_graph.php:319 +#: ../../operation/reporting/graph_viewer.php:374 +msgid "Bullet chart" +msgstr "Graphique Ć  puces" + +#: ../../godmode/reporting/graph_builder.main.php:219 +#: ../../include/lib/Dashboard/Widgets/custom_graph.php:320 +#: ../../operation/reporting/graph_viewer.php:375 +msgid "Gauge" +msgstr "Calibre" + +#: ../../godmode/reporting/graph_builder.main.php:222 +#: ../../include/lib/Dashboard/Widgets/custom_graph.php:323 +#: ../../operation/reporting/graph_viewer.php:378 +msgid "Pie" +msgstr "Diagramme circulaire" + +#: ../../godmode/reporting/graph_builder.main.php:230 +msgid "Equalize maximum thresholds" +msgstr "Ɖgaliser les seuils maximum" + +#: ../../godmode/reporting/graph_builder.main.php:258 +msgid "Add summatory series" +msgstr "Ajouter des sĆ©ries de sommation" + +#: ../../godmode/reporting/graph_builder.main.php:268 +msgid "Add average series" +msgstr "Ajouter des sĆ©ries moyennes" + +#: ../../godmode/reporting/graph_builder.main.php:279 +msgid "Modules and series" +msgstr "Modules et sĆ©ries" + +#: ../../godmode/um_client/index.php:96 +#, php-format +msgid "" +"You cannot use update manager %s. You are exceding monitoring limits by %s " +"elements. Please update your license or disable enterprise section by moving " +"enterprise directory to another location and try again." +msgstr "" +"Vous ne pouvez pas utiliser le gestionnaire de mise Ć  jour %s. Vous dĆ©passez les " +"limites de surveillance de %s Ć©lĆ©ments. Veuillez mettre Ć  jour votre licence ou " +"dĆ©sactiver la section Entreprise en dĆ©plaƧant le rĆ©pertoire d'entreprise vers un " +"autre emplacement et rĆ©essayer." + +#: ../../godmode/um_client/index.php:107 +#, php-format +msgid "" +"You cannot use update manager %s. This license has expired %d days ago. Please " +"update your license or disable enterprise section by moving enterprise directory " +"to another location and try again." +msgstr "" +"Vous ne pouvez pas utiliser le gestionnaire de mise Ć  jour %s. Cette licence a " +"expirĆ© il y a %d jours. Veuillez mettre Ć  jour votre licence ou dĆ©sactiver la " +"section Entreprise en dĆ©plaƧant le rĆ©pertoire Enterprise vers un autre " +"emplacement et rĆ©essayer." + +#: ../../godmode/um_client/index.php:120 +#, php-format +msgid "" +"You cannot use update manager %s. This license is a trial license to test all %s " +"features. Please update your license to unlock all %s features." +msgstr "" +"Vous ne pouvez pas utiliser le gestionnaire de mise Ć  jour %s. Cette licence est " +"une licence d'essai pour tester toutes les %s fonctionnalitĆ©s. Veuillez mettre Ć  " +"jour votre licence pour dĆ©verrouiller toutes les %s fonctionnalitĆ©s." + +#: ../../godmode/um_client/index.php:216 +#, php-format +msgid "Master server version %s does not match console version %s." +msgstr "" +"La version du serveur maĆ®tre %s ne correspond pas Ć  la version de la console %s." + +#: ../../godmode/um_client/index.php:229 +#, php-format +msgid "" +"'%s' recommended value is %s or greater. Please, change it on your PHP " +"configuration file (php.ini) or contact with administrator" +msgstr "" +"La valeur recommandĆ©e '%s' est %s ou supĆ©rieure. Veuillez le modifier sur votre " +"fichier de configuration PHP (php.ini) ou contactez l'administrateur" + +#: ../../godmode/um_client/index.php:318 +msgid "Update online requires registration." +msgstr "La mise Ć  jour en ligne nĆ©cessite une inscription." + +#: ../../godmode/um_client/index.php:323 +msgid "" +"Applying offline patches may make your console unusable, we recommend to " +"completely backup your files before applying any patch." +msgstr "" +"L'application de correctifs hors ligne peut rendre votre console inutilisable, " +"nous vous recommandons de sauvegarder complĆØtement vos fichiers avant d'appliquer " +"un correctif." + +#: ../../godmode/events/event_responses.editor.php:73 +msgid "Edit event responses" +msgstr "Modifier les rĆ©ponses d'Ć©vĆ©nements" + +#: ../../godmode/events/event_responses.editor.php:123 +msgid "For Command type Modal Window mode is enforced" +msgstr "Pour le type Commande, le mode fenĆŖtre modale est exĆ©cutĆ©" + +#: ../../godmode/events/event_responses.editor.php:125 +msgid "Modal window" +msgstr "FenĆŖtre modale" + +#: ../../godmode/events/event_responses.editor.php:126 +msgid "New window" +msgstr "Nouvelle fenĆŖtre" + +#: ../../godmode/events/event_responses.editor.php:175 +#: ../../include/class/AgentWizard.class.php:549 +#: ../../include/functions_snmp_browser.php:766 +msgid "Local console" +msgstr "Console locale" + +#: ../../godmode/events/event_responses.editor.php:192 +#: ../../include/class/AgentWizard.class.php:696 +msgid "Server to execute command" +msgstr "Serveur pour exĆ©cuter la commande" + +#: ../../godmode/events/event_responses.editor.php:198 +msgid "Command timeout (s)" +msgstr "Expiration(s) de commande" + +#: ../../godmode/events/event_responses.editor.php:204 +msgid "Display command" +msgstr "Afficher commande" + +#: ../../godmode/events/event_responses.editor.php:204 +msgid "" +"If enabled the command will be displayed to any user that can execute this event " +"response" +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:254 +msgid "Update Filter" +msgstr "Mise Ć  jour du filtre" + +#: ../../godmode/events/event_edit_filter.php:256 +msgid "Create Filter" +msgstr "CrĆ©er un filtre" + +#: ../../godmode/events/event_edit_filter.php:266 +#: ../../include/ajax/custom_fields.php:571 ../../include/ajax/custom_fields.php:618 +#: ../../include/ajax/custom_fields.php:662 ../../include/ajax/events.php:763 +msgid "Filter name" +msgstr "Nom du filtre" + +#: ../../godmode/events/event_edit_filter.php:269 +msgid "Save in group" +msgstr "Enregistrer dans le groupe" + +#: ../../godmode/events/event_edit_filter.php:269 +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:419 +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:441 +#: ../../operation/events/events.php:1627 +msgid "All events" +msgstr "Tous les Ć©vĆ©nements" + +#: ../../godmode/events/event_edit_filter.php:442 +#: ../../operation/events/events.php:1628 ../../operation/events/events.php:2231 +msgid "Group events" +msgstr "ƉvĆ©nements du groupe" + +#: ../../godmode/events/event_edit_filter.php:607 +#: ../../operation/events/events.php:1840 +msgid "Filter alert events" +msgstr "Filtrer les Ć©vĆ©nements d'alerte" + +#: ../../godmode/events/event_edit_filter.php:608 +#: ../../operation/events/events.php:1841 +msgid "Only alert events" +msgstr "Seulement les Ć©vĆ©nements d'alerte" + +#: ../../godmode/events/event_edit_filter.php:635 +#: ../../operation/events/events.php:1729 +msgid "Extra ID" +msgstr "Identifiant supplĆ©mentaire" + +#: ../../godmode/events/event_edit_filter.php:641 +msgid "Custom data filter type" +msgstr "Type de filtre de donnĆ©es personnalisĆ©" + +#: ../../godmode/events/event_edit_filter.php:644 +msgid "Filter custom data by name field" +msgstr "Filtrer les donnĆ©es personnalisĆ©es par champ de nom" + +#: ../../godmode/events/event_edit_filter.php:645 +msgid "Filter custom data by value field" +msgstr "Filtrer les donnĆ©es personnalisĆ©es par champ de valeur" + +#: ../../godmode/events/event_edit_filter.php:655 +#: ../../godmode/events/custom_events.php:119 +#: ../../include/functions_reporting_html.php:1065 +#: ../../include/functions_reporting_html.php:1326 +#: ../../include/functions_reporting_html.php:2431 +#: ../../include/ajax/events.php:1757 ../../include/functions_events.php:221 +#: ../../include/functions_events.php:323 +msgid "Custom data" +msgstr "DonnĆ©es personnalisĆ©es" + +#: ../../godmode/events/event_edit_filter.php:659 +msgid "Id souce event" +msgstr "Id source d'Ć©vĆ©nement" + +#: ../../godmode/events/event_responses.list.php:32 +msgid "No responses found" +msgstr "Aucune rĆ©ponse retrouvĆ©e" + +#: ../../godmode/events/event_responses.list.php:92 +msgid "Create response" +msgstr "CrĆ©er une rĆ©ponse" + +#: ../../godmode/events/custom_events.php:76 +msgid "Load the fields from previous events" +msgstr "Charger les champs des Ć©vĆ©nements prĆ©cĆ©dents" + +#: ../../godmode/events/custom_events.php:76 +msgid "Event fields will be loaded. Do you want to continue?" +msgstr "Les champs d'Ć©vĆ©nements seront chargĆ©s. Voulez-vous continuer ?" + +#: ../../godmode/events/custom_events.php:94 ../../include/functions_events.php:238 +msgid "Event Id" +msgstr "ID de lā€™Ć©vĆØnement" + +#: ../../godmode/events/custom_events.php:95 ../../mobile/operation/events.php:237 +#: ../../include/functions_events.php:241 +msgid "Event Name" +msgstr "Nom de lā€™Ć©vĆ©nement" + +#: ../../godmode/events/custom_events.php:97 +msgid "Agent Name" +msgstr "Nom de lā€™agent" + +#: ../../godmode/events/custom_events.php:98 ../../include/functions_events.php:320 +msgid "Agent IP" +msgstr "IP de l'agent" + +#: ../../godmode/events/custom_events.php:103 ../../include/functions_events.php:265 +msgid "Event Type" +msgstr "Type d'Ć©vĆ©nement" + +#: ../../godmode/events/custom_events.php:104 +#: ../../include/class/ModuleTemplates.class.php:1207 +#: ../../include/class/AgentWizard.class.php:1195 +#: ../../include/class/AgentWizard.class.php:4047 +#: ../../include/functions_events.php:268 +msgid "Module Name" +msgstr "Nom du module" + +#: ../../godmode/events/custom_events.php:110 ../../include/functions_events.php:286 +msgid "Extra Id" +msgstr "Id supplĆ©mentaire" + +#: ../../godmode/events/custom_events.php:114 ../../include/functions_events.php:298 +msgid "Server Name" +msgstr "Nom du serveur" + +#: ../../godmode/events/custom_events.php:117 ../../include/functions_events.php:316 +msgid "Severity mini" +msgstr "SĆ©vĆ©ritĆ© mini" + +#: ../../godmode/events/custom_events.php:118 ../../include/functions_events.php:307 +#: ../../include/functions_events.php:4697 +msgid "Module custom ID" +msgstr "ID personnalisĆ© du module" + +#: ../../godmode/events/custom_events.php:171 +msgid "Move up selected fields" +msgstr "DĆ©placer vers le haut les champs sĆ©lectionnĆ©s" + +#: ../../godmode/events/custom_events.php:179 +msgid "Move down selected fields" +msgstr "DĆ©placer vers le bas les champs sĆ©lectionnĆ©s" + +#: ../../godmode/events/event_responses.php:51 +msgid "Response added succesfully" +msgstr "RĆ©ponse ajoutĆ©e correctement" + +#: ../../godmode/events/event_responses.php:53 +msgid "Response cannot be added" +msgstr "Erreur d'ajout de la rĆ©ponse" + +#: ../../godmode/events/event_responses.php:77 +msgid "Response updated succesfully" +msgstr "RĆ©ponse mise Ć  jour correctement" + +#: ../../godmode/events/event_responses.php:79 +msgid "Response cannot be updated" +msgstr "Erreur de mise Ć  jour de la rĆ©ponse" + +#: ../../godmode/events/event_responses.php:89 +msgid "Response deleted succesfully" +msgstr "RĆ©ponse supprimĆ©e correctement" + +#: ../../godmode/events/event_responses.php:91 +msgid "Response cannot be deleted" +msgstr "Erreur de suppression de la rĆ©ponse" + +#: ../../godmode/wizards/HostDevices.class.php:152 +msgid "Net Scan" +msgstr "Net Scan" + +#: ../../godmode/wizards/HostDevices.class.php:172 +msgid "Custom NetScan" +msgstr "NetScan personnalisĆ©" + +#: ../../godmode/wizards/HostDevices.class.php:180 +msgid "Manage NetScan scripts" +msgstr "GĆ©rer les scripts NetScan" + +#: ../../godmode/wizards/HostDevices.class.php:325 +#, php-format +msgid "Invalid mimetype for csv file: %s" +msgstr "Mime type non valide pour le fichier csvĀ : %s" + +#: ../../godmode/wizards/HostDevices.class.php:348 +#, php-format +msgid "Invalid content readed from csv file: %s" +msgstr "Contenu non valide lu Ć  partir du fichier csvĀ : %s" + +#: ../../godmode/wizards/HostDevices.class.php:391 +msgid "" +"This network scan task has been already defined. Please edit it or create a new " +"one." +msgstr "" +"Cette tĆ¢che d'analyse du rĆ©seau a dĆ©jĆ  Ć©tĆ© dĆ©finie. Veuillez le modifier ou en " +"crĆ©er un nouveau." + +#: ../../godmode/wizards/HostDevices.class.php:433 +msgid "You must provide a valid network." +msgstr "Vous devez fournir un rĆ©seau valide." + +#: ../../godmode/wizards/HostDevices.class.php:483 +#: ../../godmode/wizards/HostDevices.class.php:595 +#: ../../include/class/CustomNetScan.class.php:222 +msgid "Failed to find network scan task." +msgstr "Ɖchec de la recherche de la tĆ¢che d'analyse du rĆ©seau." + +#: ../../godmode/wizards/HostDevices.class.php:700 +#, php-format +msgid "\"%s\" features" +msgstr "FonctionnalitĆ©s ā€œ%sā€" + +#: ../../godmode/wizards/HostDevices.class.php:728 +#: ../../include/class/CustomNetScan.class.php:403 +msgid "Internal error, please re-run this wizard." +msgstr "Erreur interne, veuillez rĆ©exĆ©cuter cet assistant." + +#: ../../godmode/wizards/HostDevices.class.php:813 +#: ../../include/class/CustomNetScan.class.php:545 +msgid "The minimum recomended interval for Recon Task is 5 minutes" +msgstr "L'intervalle minimal conseillĆ© pour les tĆ¢ches Recon est de 5 minutes." + +#: ../../godmode/wizards/HostDevices.class.php:868 +msgid "Use CSV file definition" +msgstr "Utiliser la dĆ©finition de fichier CSV" + +#: ../../godmode/wizards/HostDevices.class.php:869 +msgid "Define targets using csv o network definition." +msgstr "DĆ©finissez des cibles Ć  l'aide de la dĆ©finition de rĆ©seau csv ou." + +#: ../../godmode/wizards/HostDevices.class.php:887 +msgid "Networks (csv)" +msgstr "RĆ©seaux (csv)" + +#: ../../godmode/wizards/HostDevices.class.php:888 +msgid "" +"You can upload a CSV file. Each line must contain a network in IP/MASK format. " +"For instance: 192.168.1.1/32" +msgstr "" +"Vous pouvez tĆ©lĆ©charger un fichier CSV. Chaque ligne doit contenir un rĆ©seau au " +"format IP/MASK. Par exemple : 192.168.1.1/32" + +#: ../../godmode/wizards/HostDevices.class.php:900 +msgid "Networks (current)" +msgstr "RĆ©seaux (actuels)" + +#: ../../godmode/wizards/HostDevices.class.php:901 +msgid "Please upload a new file to overwrite this content." +msgstr "Veuillez tĆ©lĆ©charger un nouveau fichier pour Ć©craser ce contenu." + +#: ../../godmode/wizards/HostDevices.class.php:917 +msgid "" +"You can specify several networks, separated by commas, for example: " +"192.168.50.0/24,192.168.60.0/24" +msgstr "" +"Il est possible de dĆ©finir plusieurs rĆ©seaux sĆ©parĆ©s par des virgules. Par " +"exemple : 192.168.50.0/24,192.168.60.0/24" + +#: ../../godmode/wizards/HostDevices.class.php:1047 +msgid "Filter by opened ports" +msgstr "Filtrer par ports ouverts" + +#: ../../godmode/wizards/HostDevices.class.php:1049 +msgid "" +"Targets will be scanned if at least one of defined ports (comma separated) is " +"open." +msgstr "" +"Les cibles seront analysĆ©es si au moins un des ports dĆ©finis (sĆ©parĆ©s par des " +"virgules) est ouvert." + +#: ../../godmode/wizards/HostDevices.class.php:1062 +msgid "Auto discover known hardware" +msgstr "DĆ©couverte automatique du matĆ©riel connu" + +#: ../../godmode/wizards/HostDevices.class.php:1064 +msgid "" +"Targets will be monitorized based on its Private Enterprise Number. " +"Requires SNMP." +msgstr "" +"Les cibles seront surveillĆ©es en fonction de son numĆ©ro d'entreprise privĆ©e . NĆ©cessite SNMP." + +#: ../../godmode/wizards/HostDevices.class.php:1079 +msgid "Module Host Alive will be added to discovered agents by default." +msgstr "Le module Host Alive sera ajoutĆ© par dĆ©faut aux agents dĆ©couverts." + +#: ../../godmode/wizards/HostDevices.class.php:1127 +#, php-format +msgid "" +"Configured networks could generate %d agents, your license only allows %d, " +"'review results' is mandatory." +msgstr "" +"Les rĆ©seaux configurĆ©s peuvent gĆ©nĆ©rer %dĀ agents, votre licence n'autorise que " +"%d, Ā«Ā revoir les rĆ©sultatsĀ Ā» est obligatoire." + +#: ../../godmode/wizards/HostDevices.class.php:1135 +#: ../../godmode/wizards/DiscoveryTaskList.class.php:908 +msgid "Review results" +msgstr "RĆ©viser les rĆ©sultats" + +#: ../../godmode/wizards/HostDevices.class.php:1137 +msgid "Targets must be validated by user before create agents." +msgstr "" +"Les cibles doivent ĆŖtre validĆ©es par l'utilisateur avant de crĆ©er des agents." + +#: ../../godmode/wizards/HostDevices.class.php:1163 +msgid "Apply autoconfiguration rules" +msgstr "Appliquer les rĆØgles de configuration automatique" + +#: ../../godmode/wizards/HostDevices.class.php:1165 +msgid "" +"System is able to auto configure detected host & devices by applying your defined " +"configuration rules." +msgstr "" +"Le systĆØme est capable de configurer automatiquement l'hĆ“te et les pĆ©riphĆ©riques " +"dĆ©tectĆ©s en appliquant vos rĆØgles de configuration dĆ©finies." + +#: ../../godmode/wizards/HostDevices.class.php:1181 +msgid "SNMP enabled" +msgstr "SNMP activĆ©" + +#: ../../godmode/wizards/HostDevices.class.php:1223 +msgid "SNMP communities to try with" +msgstr "CommunautĆ©s SNMP Ć  essayer avec" + +#: ../../godmode/wizards/HostDevices.class.php:1225 +msgid "" +"You can specify several values, separated by commas, for example: public," +"mysecret,1234" +msgstr "" +"Vous pouvez dĆ©finir plusieurs valeurs sĆ©parĆ©es par des virgules. Par exemple : " +"public,mysecret,1234" + +#: ../../godmode/wizards/HostDevices.class.php:1353 +msgid "OS detection" +msgstr "DĆ©tection du systĆØme d'exploitation" + +#: ../../godmode/wizards/HostDevices.class.php:1365 +msgid "Name resolution" +msgstr "RĆ©solution du nom" + +#: ../../godmode/wizards/HostDevices.class.php:1376 +msgid "Parent detection" +msgstr "DĆ©tection de parents" + +#: ../../godmode/wizards/HostDevices.class.php:1387 +msgid "Parent recursion" +msgstr "RĆ©cursion de parents" + +#: ../../godmode/wizards/HostDevices.class.php:1398 +msgid "VLAN enabled" +msgstr "VLAN activĆ©" + +#: ../../godmode/wizards/HostDevices.class.php:1409 +msgid "WMI enabled" +msgstr "WMI activĆ©" + +#: ../../godmode/wizards/DiscoveryTaskList.class.php:254 +msgid "Task successfully deleted" +msgstr "TĆ¢che supprimĆ©e correctement" + +#: ../../godmode/wizards/DiscoveryTaskList.class.php:361 +#: ../../godmode/wizards/DiscoveryTaskList.class.php:488 +msgid "Task successfully enabled" +msgstr "TĆ¢che activĆ©e correctement" + +#: ../../godmode/wizards/DiscoveryTaskList.class.php:361 +msgid "Task succesfully disabled" +msgstr "TĆ¢che dĆ©sactivĆ©e avec succĆØs" + +#: ../../godmode/wizards/DiscoveryTaskList.class.php:401 +msgid "Console Task successfully deleted" +msgstr "TĆ¢che de console supprimĆ©e correctement" + +#: ../../godmode/wizards/DiscoveryTaskList.class.php:443 +msgid "Task successfully disabled" +msgstr "TĆ¢che dĆ©sactivĆ©e correctement" + +#: ../../godmode/wizards/DiscoveryTaskList.class.php:520 +msgid "Discovery Server is disabled" +msgstr "Le serveur Discovery est dĆ©sactivĆ©" + +#: ../../godmode/wizards/DiscoveryTaskList.class.php:603 +msgid "Task type" +msgstr "Type de tĆ¢che" + +#: ../../godmode/wizards/DiscoveryTaskList.class.php:665 +msgid "This action will rescan the target networks." +msgstr "Cette action rĆ©analysera les rĆ©seaux cibles." + +#: ../../godmode/wizards/DiscoveryTaskList.class.php:682 +msgid "This task has not been completely defined, please edit it" +msgstr "Cette tĆ¢che n'a pas Ć©tĆ© complĆØtement dĆ©finie, veuillez la modifier" + +#: ../../godmode/wizards/DiscoveryTaskList.class.php:732 +msgid "Discovery Cloud Azure Compute" +msgstr "Discovery Cloud Azure Compute" + +#: ../../godmode/wizards/DiscoveryTaskList.class.php:736 +msgid "Cloud.Azure.Compute" +msgstr "Cloud.Azure.Compute" + +#: ../../godmode/wizards/DiscoveryTaskList.class.php:745 +msgid "Discovery Cloud AWS EC2" +msgstr "Discovery Cloud AWS EC2" + +#: ../../godmode/wizards/DiscoveryTaskList.class.php:749 +msgid "Cloud.AWS.EC2" +msgstr "Cloud.AWS.EC2" + +#: ../../godmode/wizards/DiscoveryTaskList.class.php:758 +msgid "Discovery Cloud RDS" +msgstr "Discovery Cloud RDS" + +#: ../../godmode/wizards/DiscoveryTaskList.class.php:762 +msgid "Discovery.Cloud.Aws.RDS" +msgstr "Discovery.Cloud.Aws.RDS" + +#: ../../godmode/wizards/DiscoveryTaskList.class.php:771 +msgid "Discovery Cloud S3" +msgstr "Discovery Cloud S3" + +#: ../../godmode/wizards/DiscoveryTaskList.class.php:775 +msgid "Discovery.Cloud.Aws.S3" +msgstr "Discovery.Cloud.Aws.S3" + +#: ../../godmode/wizards/DiscoveryTaskList.class.php:784 +msgid "Discovery Applications MySQL" +msgstr "Discovery Applications MySQL" + +#: ../../godmode/wizards/DiscoveryTaskList.class.php:788 +msgid "Discovery.App.MySQL" +msgstr "Discovery.App.MySQL" + +#: ../../godmode/wizards/DiscoveryTaskList.class.php:797 +msgid "Discovery Applications Oracle" +msgstr "Discovery Applications Oracle" + +#: ../../godmode/wizards/DiscoveryTaskList.class.php:801 +msgid "Discovery.App.Oracle" +msgstr "Discovery.App.Oracle" + +#: ../../godmode/wizards/DiscoveryTaskList.class.php:810 +msgid "Discovery Applications DB2" +msgstr "Discovery Applications DB2" + +#: ../../godmode/wizards/DiscoveryTaskList.class.php:814 +msgid "Discovery.App.DB2" +msgstr "Discovery.App.DB2" + +#: ../../godmode/wizards/DiscoveryTaskList.class.php:825 +msgid "Discovery.Agent.Deployment" +msgstr "Discovery.Agent.Deployment" + +#: ../../godmode/wizards/DiscoveryTaskList.class.php:833 +msgid "Discovery Applications Microsoft SQL Server" +msgstr "Discovery Applications Microsoft SQL Server" + +#: ../../godmode/wizards/DiscoveryTaskList.class.php:835 +msgid "Discovery.App.Microsoft SQL Server" +msgstr "Discovery.App.Microsoft SQL Server" + +#: ../../godmode/wizards/DiscoveryTaskList.class.php:846 +msgid "Discovery NetScan" +msgstr "Discovery NetScan" + +#: ../../godmode/wizards/DiscoveryTaskList.class.php:850 +msgid "Discovery.NetScan" +msgstr "Discovery.NetScan" + +#: ../../godmode/wizards/DiscoveryTaskList.class.php:896 +msgid "Not executed yet" +msgstr "Pas encore exĆ©cutĆ©" + +#: ../../godmode/wizards/DiscoveryTaskList.class.php:920 +msgid "View summary" +msgstr "Voir le rĆ©sumĆ©" + +#: ../../godmode/wizards/DiscoveryTaskList.class.php:941 +msgid "View map" +msgstr "Voir la carte" + +#: ../../godmode/wizards/DiscoveryTaskList.class.php:965 +#: ../../godmode/wizards/DiscoveryTaskList.class.php:991 +msgid "Edit task" +msgstr "Modifier la tĆ¢che" + +#: ../../godmode/wizards/DiscoveryTaskList.class.php:975 +#: ../../godmode/wizards/DiscoveryTaskList.class.php:1001 +msgid "Delete task" +msgstr "Supprimer la tĆ¢che" + +#: ../../godmode/wizards/DiscoveryTaskList.class.php:1014 +msgid "enable task" +msgstr "activer la tĆ¢che" + +#: ../../godmode/wizards/DiscoveryTaskList.class.php:1043 +msgid "has no discovery tasks assigned" +msgstr "n'a aucune tĆ¢che de dĆ©couverte assignĆ©e" + +#: ../../godmode/wizards/DiscoveryTaskList.class.php:1050 +msgid "Server Tasks" +msgstr "TĆ¢ches du serveur" + +#: ../../godmode/wizards/DiscoveryTaskList.class.php:1197 +msgid "Overall Progress" +msgstr "Progression globale" + +#: ../../godmode/wizards/DiscoveryTaskList.class.php:1216 +msgid "Scanning network" +msgstr "DĆ©couvrant rĆ©seau" + +#: ../../godmode/wizards/DiscoveryTaskList.class.php:1220 +msgid "Checking" +msgstr "VĆ©rification" + +#: ../../godmode/wizards/DiscoveryTaskList.class.php:1224 +msgid "Finding AFT connectivity" +msgstr "Trouvant la connectivitĆ© AFT" + +#: ../../godmode/wizards/DiscoveryTaskList.class.php:1228 +msgid "Finding traceroute connectivity" +msgstr "Trouvant la connectivitĆ© traceroute" + +#: ../../godmode/wizards/DiscoveryTaskList.class.php:1232 +msgid "Finding gateway connectivity" +msgstr "Trouvant la connectivitĆ© de la passerelle" + +#: ../../godmode/wizards/DiscoveryTaskList.class.php:1236 +msgid "Searching for devices..." +msgstr "Recherche d'appareils..." + +#: ../../godmode/wizards/DiscoveryTaskList.class.php:1240 +msgid "Analyzing application..." +msgstr "Analyse des applications..." + +#: ../../godmode/wizards/DiscoveryTaskList.class.php:1244 +msgid "Executing custom queries..." +msgstr "ExĆ©cution des requĆŖtes personnalisĆ©es..." + +#: ../../godmode/wizards/DiscoveryTaskList.class.php:1248 +msgid "Testing modules..." +msgstr "Teste des modules..." + +#: ../../godmode/wizards/DiscoveryTaskList.class.php:1252 +msgid "Processing results..." +msgstr "Traitement des rĆ©sultats..." + +#: ../../godmode/wizards/DiscoveryTaskList.class.php:1256 +msgid "Processing..." +msgstr "Traitement en cours..." + +#: ../../godmode/wizards/DiscoveryTaskList.class.php:1289 +#: ../../godmode/wizards/DiscoveryTaskList.class.php:1853 +#: ../../operation/agentes/log_sources_status.php:57 +msgid "Review" +msgstr "RĆ©viser" + +#: ../../godmode/wizards/DiscoveryTaskList.class.php:1369 +msgid "Host&devices total" +msgstr "HĆ“te&pĆ©riphĆ©riques totales" + +#: ../../godmode/wizards/DiscoveryTaskList.class.php:1374 +msgid "Agents monitored" +msgstr "Agents supervisĆ©s" + +#: ../../godmode/wizards/DiscoveryTaskList.class.php:1379 +msgid "Agents pending" +msgstr "Agents en attente" + +#: ../../godmode/wizards/DiscoveryTaskList.class.php:1386 +msgid "Hosts discovered" +msgstr "HĆ“tes dĆ©couverts" + +#: ../../godmode/wizards/DiscoveryTaskList.class.php:1402 +msgid "Responding SNMP" +msgstr "RĆ©pliquant SNMP" + +#: ../../godmode/wizards/DiscoveryTaskList.class.php:1407 +msgid "Responding WMI" +msgstr "RĆ©pliquant WMI" + +#: ../../godmode/wizards/DiscoveryTaskList.class.php:1452 +msgid "Task completed." +msgstr "TĆ¢che terminĆ©e" + +#: ../../godmode/wizards/DiscoveryTaskList.class.php:1454 +msgid "This task has never executed" +msgstr "Cette tĆ¢che n'a jamais Ć©tĆ© exĆ©cutĆ©e" + +#: ../../godmode/wizards/DiscoveryTaskList.class.php:1466 +msgid "Task queued, please wait." +msgstr "TĆ¢che en file d'attente, veuillez patienter." + +#: ../../godmode/wizards/DiscoveryTaskList.class.php:1510 +msgid "" +"Please ensure instances or regions are being monitorized and 'scan and general " +"monitoring' is enabled." +msgstr "" +"Veuillez vous assurer que les instances ou les rĆ©gions sont surveillĆ©es et que " +"Ā«Ā analyse et surveillance gĆ©nĆ©raleĀ Ā» est activĆ©." + +#: ../../godmode/wizards/DiscoveryTaskList.class.php:1528 +#: ../../godmode/wizards/DiscoveryTaskList.class.php:1670 +msgid "Invalid task" +msgstr "TĆ¢che Invalide" + +#: ../../godmode/wizards/DiscoveryTaskList.class.php:1627 +msgid "Please select devices to be monitored" +msgstr "Veuillez sĆ©lectionner les appareils Ć  superviser" + +#: ../../godmode/wizards/DiscoveryTaskList.class.php:1630 +msgid "select all" +msgstr "sĆ©lectionner tout" + +#: ../../godmode/wizards/DiscoveryTaskList.class.php:1633 +msgid "deselect all" +msgstr "Tout dĆ©sĆ©lectionner" + +#: ../../godmode/wizards/DiscoveryTaskList.class.php:1636 +msgid "expand all" +msgstr "Tout montrer" + +#: ../../godmode/wizards/DiscoveryTaskList.class.php:1639 +msgid "collapse all" +msgstr "Effacer tout" + +#: ../../godmode/wizards/DiscoveryTaskList.class.php:1653 +msgid "No devices found in temporary resources, please re-launch." +msgstr "Aucun appareil trouvĆ© dans les ressources temporaires, veuillez relancer." + +#: ../../godmode/wizards/DiscoveryTaskList.class.php:1720 +#, php-format +msgid "Your selection exceeds the agents available on your license. Limit %d" +msgstr "Votre sĆ©lection dĆ©passe les agents disponibles sur votre licence. Limite %d" + +#: ../../godmode/wizards/DiscoveryTaskList.class.php:1744 +#: ../../godmode/wizards/DiscoveryTaskList.class.php:1763 +msgid "Removed" +msgstr "SupprimĆ©" + +#: ../../godmode/wizards/DiscoveryTaskList.class.php:1800 +msgid "No changes. Re-Scheduled" +msgstr "Aucun changement. ReprogrammĆ©" + +#: ../../godmode/wizards/DiscoveryTaskList.class.php:1802 +msgid "Scheduled for creation" +msgstr "PrĆ©vu pour la crĆ©ation" + +#: ../../godmode/wizards/DiscoveryTaskList.class.php:1829 +msgid "Cancelled" +msgstr "AnnulĆ©e" + +#: ../../godmode/wizards/DiscoveryTaskList.class.php:1830 +msgid "Server has been restarted while executing this task, please retry." +msgstr "" +"Le serveur a Ć©tĆ© redĆ©marrĆ© lors de l'exĆ©cution de cette tĆ¢che, veuillez rĆ©essayer." + +#: ../../godmode/wizards/DiscoveryTaskList.class.php:1837 +#: ../../godmode/wizards/DiscoveryTaskList.class.php:1843 +#: ../../include/help/clippy/operation_agentes_ver_agente.php:40 +#: ../../include/help/clippy/godmode_agentes_configurar_agente.php:119 +msgid "Done" +msgstr "TerminĆ©" + +#: ../../godmode/wizards/DiscoveryTaskList.class.php:1841 +#: ../../godmode/wizards/DiscoveryTaskList.class.php:1858 +msgid "Not started" +msgstr "Non dĆ©marrĆ©" + +#: ../../godmode/wizards/DiscoveryTaskList.class.php:1863 +msgid "Searching" +msgstr "Recherche" + +#: ../../godmode/servers/servers.build_table.php:118 +msgid "Server has crashed." +msgstr "Le serveur a Ć©chouĆ©." + +#: ../../godmode/servers/servers.build_table.php:126 +msgid "Server is stopped." +msgstr "Le serveur est arrĆŖtĆ©." + +#: ../../godmode/servers/servers.build_table.php:138 +msgid "Exec server enabled" +msgstr "Serveur d'exĆ©cution activĆ©" + +#: ../../godmode/servers/servers.build_table.php:196 +msgid "Manage Discovery tasks" +msgstr "GĆ©rer les tĆ¢ches de dĆ©couverte" + +#: ../../godmode/servers/servers.build_table.php:211 +msgid "Reset module status and fired alert counts" +msgstr "RĆ©initialiser l'Ć©tat du module et le nombre d'alertes dĆ©clenchĆ©es" + +#: ../../godmode/servers/servers.build_table.php:222 +msgid "Claim back SNMP modules" +msgstr "RĆ©clamer les modules SNMP" + +#: ../../godmode/servers/modificar_server.php:34 +msgid "Update Server" +msgstr "Mettre Ć  jour le serveur" + +#: ../../godmode/servers/modificar_server.php:40 +#: ../../godmode/servers/plugin.php:346 ../../godmode/servers/plugin.php:845 +msgid "Standard" +msgstr "Standard" + +#: ../../godmode/servers/modificar_server.php:77 +msgid "Exec Server" +msgstr "Serveur d'exĆ©cution" + +#: ../../godmode/servers/modificar_server.php:85 +msgid "Leave blank to use SSH default port (22)" +msgstr "Laissez vide pour utiliser le port SSH par dĆ©faut (22)" + +#: ../../godmode/servers/modificar_server.php:90 +msgid "Check Exec Server" +msgstr "VĆ©rifier le serveur d'exĆ©cution" + +#: ../../godmode/servers/modificar_server.php:106 +msgid "Credential boxes" +msgstr "Zones dā€™identifiants" + +#: ../../godmode/servers/modificar_server.php:130 +msgid "Standard editor" +msgstr "Editeur standard" + +#: ../../godmode/servers/modificar_server.php:134 +msgid "Advanced editor" +msgstr "Ɖditeur avancĆ©" + +#: ../../godmode/servers/modificar_server.php:141 +msgid "Remote Configuration" +msgstr "Configuration Ć  distance" + +#: ../../godmode/servers/modificar_server.php:150 +#, php-format +msgid "%s servers" +msgstr "Serveurs %s" + +#: ../../godmode/servers/modificar_server.php:159 +#: ../../godmode/servers/modificar_server.php:170 +msgid "Successfully action" +msgstr "Action rĆ©ussie" + +#: ../../godmode/servers/modificar_server.php:201 +msgid "Server updated successfully" +msgstr "Serveur mis Ć  jour correctement" + +#: ../../godmode/servers/modificar_server.php:203 +msgid "There was a problem updating the server" +msgstr "ProblĆØme de mise Ć  jour du serveur" + +#: ../../godmode/servers/plugin_registration.php:59 +#: ../../godmode/servers/plugin.php:290 ../../godmode/servers/plugin.php:617 +msgid "To manage plugin you must activate centralized management" +msgstr "Pour gĆ©rer le plugin dā€™inventaire, activez la gestion centralisĆ©e" + +#: ../../godmode/servers/plugin_registration.php:65 +msgid "PLUGIN REGISTRATION" +msgstr "ENREGISTREMENT DU PLUGIN" + +#: ../../godmode/servers/plugin_registration.php:76 +#, php-format +msgid "" +"This console is not manager of this environment, please manage this feature from " +"feature from %s." +msgstr "" +"Cette console n'est pas gestionnaire de cet environnement, veuillez gĆ©rer cette " +"fonctionnalitĆ© Ć  partir de la fonctionnalitĆ© de %s." + +#: ../../godmode/servers/plugin_registration.php:95 +msgid "Plugin Registration" +msgstr "Enregistrement du plugin" + +#: ../../godmode/servers/plugin_registration.php:103 +msgid "You can get more plugins in our" +msgstr "Vous pouvez obtenir plus de plugins dans notre" + +#: ../../godmode/servers/plugin_registration.php:105 +msgid "Public Resource Library" +msgstr "BibliothĆØque publique de ressources" + +#: ../../godmode/servers/plugin_registration.php:133 +msgid "Failed to create temporary directory" +msgstr "Impossible de crĆ©er un rĆ©pertoire temporaire" + +#: ../../godmode/servers/plugin_registration.php:152 +msgid "Cannot load INI file" +msgstr "Erreur de chargement du fichier INI" + +#: ../../godmode/servers/plugin_registration.php:177 +msgid "Plugin exec not found. Aborting!" +msgstr "Plugin d'exĆ©cution introuvable. Annulation en cours !" + +#: ../../godmode/servers/plugin_registration.php:188 +msgid "Plugin already registered. Aborting!" +msgstr "Plugin dĆ©jĆ  enregistrĆ©. Annulation en cours !" + +#: ../../godmode/servers/plugin_registration.php:355 +msgid "Plug-in Remote Registered unsuccessfull" +msgstr "Erreur d'enregistrement du plugin Ć  distance" + +#: ../../godmode/servers/plugin_registration.php:358 +msgid "Please check the syntax of file \"plugin_definition.ini\"" +msgstr "Veuillez vĆ©rifier la syntaxe du fichier Ā« plugin_definition.ini Ā»" + +#: ../../godmode/servers/plugin_registration.php:498 +msgid "Module plugin registered" +msgstr "Plugin du module enregistrĆ©" + +#: ../../godmode/servers/plugin_registration.php:503 +msgid "Registered successfully" +msgstr "EnregistrĆ© correctement" + +#: ../../godmode/servers/plugin_registration.php:516 +msgid "Unable to uncompress uploaded file" +msgstr "Impossible de dĆ©compresser le fichier" + +#: ../../godmode/servers/plugin_registration.php:534 +#, php-format +msgid "Cannot move uploaded file to %s." +msgstr "Impossible de dĆ©placer le fichier tĆ©lĆ©chargĆ© vers %s" + +#: ../../godmode/servers/plugin.php:73 +msgid "Network Components" +msgstr "Composants de rĆ©seau" + +#: ../../godmode/servers/plugin.php:303 +msgid "Plugin update" +msgstr "Mise Ć  jour du plugin" + +#: ../../godmode/servers/plugin.php:314 ../../godmode/servers/plugin.php:636 +msgid "" +"This console is not manager of this environment,\n" +" \t\tplease manage this feature from centralized manager console " +"(Metaconsole)." +msgstr "" +"Cette console n'est pas gestionnaire de cet environnement,\n" +" \t\tveuillez gĆ©rer cette fonctionnalitĆ© Ć  partir de la console de gestion " +"centralisĆ©e (Metaconsole)." + +#: ../../godmode/servers/plugin.php:345 +msgid "Plugin type" +msgstr "Type de plugin" + +#: ../../godmode/servers/plugin.php:347 ../../godmode/servers/plugin.php:847 +msgid "Nagios" +msgstr "Nagios" + +#: ../../godmode/servers/plugin.php:352 +msgid "Max. timeout" +msgstr "Interruption de session max." + +#: ../../godmode/servers/plugin.php:352 +msgid "" +"This value only will be applied if is minor than the server general configuration " +"plugin timeout" +msgstr "" +"Cette valeur s'appliquera uniquement si elle est infĆ©rieure au temps " +"d'interruption du plugin de configuration du serveur gĆ©nĆ©ral." + +#: ../../godmode/servers/plugin.php:352 +msgid "If you set a 0 seconds timeout, the server plugin timeout will be used" +msgstr "" +"Si vous dĆ©finissez un temps d'interruption de 0 secondes, le temps d'interruption " +"du plugin du serveur sera employĆ©." + +#: ../../godmode/servers/plugin.php:401 +msgid "Plugin command" +msgstr "Commande de plugin" + +#: ../../godmode/servers/plugin.php:401 +msgid "Specify interpreter and plugin path. The server needs permissions to run it." +msgstr "" +"SpĆ©cifiez l'interprĆ©teur et le chemin du plug-in. Le serveur a besoin " +"d'autorisations pour l'exĆ©cuter." + +#: ../../godmode/servers/plugin.php:413 +msgid "Plug-in parameters" +msgstr "ParamĆØtres des plugins" + +#: ../../godmode/servers/plugin.php:505 +#: ../../include/class/ManageNetScanScripts.class.php:667 +msgid "Hide value" +msgstr "Cacher la valeur" + +#: ../../godmode/servers/plugin.php:506 +#: ../../include/class/ManageNetScanScripts.class.php:669 +msgid "This field will show up as dots like a password" +msgstr "Ce champ sera affichĆ© sous forme de points, comme un mot de passe" + +#: ../../godmode/servers/plugin.php:581 ../../godmode/servers/plugin.php:586 +msgid "Parameters macros" +msgstr "Macros des paramĆØtres" + +#: ../../godmode/servers/plugin.php:623 +#, php-format +msgid "Plug-ins registered on %s" +msgstr "Plugins enregistrĆ©s sur %s" + +#: ../../godmode/servers/plugin.php:645 +msgid "You need to create your own plugins with Windows compatibility" +msgstr "Vous devez crĆ©er vos propres plugins compatibles avec Windows" + +#: ../../godmode/servers/plugin.php:711 +msgid "Problem updating plugin" +msgstr "ProblĆØme de mise Ć  jour du plugin" + +#: ../../godmode/servers/plugin.php:713 +msgid "Plugin updated successfully" +msgstr "Plugin mis Ć  jour correctement" + +#: ../../godmode/servers/plugin.php:771 +msgid "Problem creating plugin" +msgstr "ProblĆØme de crĆ©ation du plugin" + +#: ../../godmode/servers/plugin.php:773 +msgid "Plugin created successfully" +msgstr "Plugin crĆ©Ć© correctement" + +#: ../../godmode/servers/plugin.php:785 +msgid "Problem deleting plugin" +msgstr "ProblĆØme de suppression du plugin" + +#: ../../godmode/servers/plugin.php:787 ../../godmode/servers/plugin.php:799 +msgid "Plugin deleted successfully" +msgstr "Plugin supprimĆ© correctement" + +#: ../../godmode/servers/plugin.php:884 +msgid "All the modules that are using this plugin will be deleted" +msgstr "Tous les modules qui utilisent ce plugin seront supprimĆ©s" + +#: ../../godmode/servers/plugin.php:901 +msgid "There are no plugins in the system" +msgstr "Aucun plugin dans le systĆØme" + +#: ../../godmode/servers/plugin.php:915 +#, php-format +msgid "List of modules and components created by \"%s\" " +msgstr "Liste de modules et composants crĆ©Ć©s par Ā« %s Ā» " + +#: ../../godmode/servers/plugin.php:1021 ../../godmode/servers/plugin.php:1037 +msgid "Some modules or components are using the plugin" +msgstr "Certains modules ou composants utilisent le plugin." + +#: ../../godmode/servers/plugin.php:1022 +msgid "" +"The modules or components should be updated manually or using the bulk operations " +"for plugins after this change" +msgstr "" +"Les modules ou composants doivent ĆŖtre mis Ć  jour manuellement ou en utilisant " +"les opĆ©rations massives pour les plugins aprĆØs ce changement." + +#: ../../godmode/servers/plugin.php:1024 +msgid "Are you sure you want to perform this action?" +msgstr "Ɗtes-vous sĆ»r(e) de vouloir effectuer cette action ?" + +#: ../../godmode/servers/plugin.php:1038 +msgid "Are you sure you want to unlock this item?" +msgstr "Ɗtes-vous sĆ»r(e) de vouloir dĆ©verrouiller cet Ć©lĆ©ment ?" + +#: ../../godmode/servers/plugin.php:1058 +msgid "" +"The plugin command cannot be updated because some modules or components are using " +"the plugin." +msgstr "" +"La commande du plugin ne peut pas ĆŖtre mise Ć  jour parce que certains modules ou " +"composants utilisent le plugin." + +#: ../../godmode/servers/plugin.php:1064 +msgid "" +"The plugin macros cannot be updated because some modules or components are using " +"the plugin" +msgstr "" +"Les macros de ce plugin ne peuvent pas ĆŖtre mises Ć  jour parce que certains " +"modules ou composants utilisent le plugin" + +#: ../../godmode/servers/discovery.php:182 +msgid "You must create a task first" +msgstr "Vous devez d'abord crĆ©er une tĆ¢che" + +#: ../../godmode/tag/tag.php:117 +msgid "Number of modules" +msgstr "Nombre de modules" + +#: ../../godmode/tag/tag.php:119 +msgid "Number of policy modules" +msgstr "Nombre de modules de politiques" + +#: ../../godmode/tag/tag.php:140 ../../godmode/tag/edit_tag.php:57 +#: ../../godmode/tag/edit_tag.php:75 +msgid "List tags" +msgstr "Afficher liste d'Ć©tiquettes" + +#: ../../godmode/tag/tag.php:152 ../../godmode/tag/edit_tag.php:85 +msgid "Tags configuration" +msgstr "Configuration des Ć©tiquettes" + +#: ../../godmode/tag/tag.php:178 +msgid "Successfully deleted tag" +msgstr "Ɖtiquette supprimĆ©e correctement" + +#: ../../godmode/tag/tag.php:179 +msgid "Error deleting tag" +msgstr "Erreur de suppression de l'Ć©tiquette" + +#: ../../godmode/tag/tag.php:195 +#, php-format +msgid "" +"This node is configured with centralized mode. All tags information is read only. " +"Go to %s to manage it." +msgstr "" +"Ce nœud est configurĆ© en mode centralisĆ©. Toutes les informations des balises " +"sont en lecture seule. Allez vers %s pour le gĆ©rer." + +#: ../../godmode/tag/tag.php:277 +msgid "Tag name" +msgstr "Nom de l'Ć©tiquette" + +#: ../../godmode/tag/tag.php:279 +msgid "Detail information" +msgstr "Information detaillĆ©e" + +#: ../../godmode/tag/tag.php:280 +msgid "Number of modules affected" +msgstr "Nombre de modules affectĆ©s" + +#: ../../godmode/tag/tag.php:282 ../../godmode/tag/edit_tag.php:251 +msgid "Phone" +msgstr "TĆ©lĆ©phone" + +#: ../../godmode/tag/tag.php:311 +msgid "Tag details" +msgstr "DĆ©tails de l'Ć©tiquette" + +#: ../../godmode/tag/tag.php:344 +#, php-format +msgid "Emails for the tag: %s" +msgstr "Courriels pour l'Ć©tiquette : %s" + +#: ../../godmode/tag/tag.php:367 +#, php-format +msgid "Phones for the tag: %s" +msgstr "NumĆ©ros de tĆ©lĆ©phone pour l'Ć©tiquette : %s" + +#: ../../godmode/tag/tag.php:413 +msgid "No tags defined" +msgstr "Aucune Ć©tiquette dĆ©finie" + +#: ../../godmode/tag/tag.php:428 +msgid "Create tag" +msgstr "CrĆ©er une Ć©tiquette" + +#: ../../godmode/tag/edit_tag.php:128 +msgid "Successfully updated tag" +msgstr "Ɖtiquette mise a jour correctement" + +#: ../../godmode/tag/edit_tag.php:129 +msgid "Error updating tag" +msgstr "Erreur de mise Ć  jour de l'Ć©tiquette" + +#: ../../godmode/tag/edit_tag.php:169 +msgid "Successfully created tag" +msgstr "Ɖtiquette crĆ©Ć©e correctement" + +#: ../../godmode/tag/edit_tag.php:170 +msgid "Error creating tag" +msgstr "Erreur de crĆ©ation de l'Ć©tiquette" + +#: ../../godmode/tag/edit_tag.php:201 +msgid "Update Tag" +msgstr "Mettre Ć  jour l'Ć©tiquette" + +#: ../../godmode/tag/edit_tag.php:205 +msgid "Create Tag" +msgstr "CrĆ©er une Ć©tiquette" + +#: ../../godmode/tag/edit_tag.php:229 +msgid "Hyperlink to help information that has to exist previously." +msgstr "Hyperlien pour information qui doit exister prĆ©alablement" + +#: ../../godmode/tag/edit_tag.php:241 +msgid "Associated Email direction to use later in alerts associated to Tags." +msgstr "" +"Adresse courriel associĆ©e Ć  utiliser postĆ©rieurement avec les alertes associĆ©es " +"aux Ć©tiquettes." + +#: ../../godmode/tag/edit_tag.php:253 +msgid "Associated phone number to use later in alerts associated to Tags." +msgstr "" +"NumĆ©ro de tĆ©lĆ©phone associĆ© Ć  utiliser postĆ©rieurement avec les alertes associĆ©es " +"aux Ć©tiquettes." + +#: ../../godmode/category/category.php:63 ../../godmode/category/category.php:77 +#: ../../godmode/category/edit_category.php:47 +#: ../../godmode/category/edit_category.php:61 +msgid "List categories" +msgstr "Liste de catĆ©gories" + +#: ../../godmode/category/category.php:89 ../../godmode/category/category.php:91 +#: ../../godmode/category/edit_category.php:73 +#: ../../godmode/category/edit_category.php:75 +msgid "Categories configuration" +msgstr "Configuration de catĆ©gories" + +#: ../../godmode/category/category.php:108 +#, php-format +msgid "" +"This node is configured with centralized mode. All categories information is read " +"only. Go to %s to manage it." +msgstr "" +"Ce nœud est configurĆ© en mode centralisĆ©. Toutes les informations sur les " +"catĆ©gories sont en lecture seule. Allez vers %s pour le gĆ©rer." + +#: ../../godmode/category/category.php:123 +msgid "Error deleting category" +msgstr "Erreur de suppression de catĆ©gorie" + +#: ../../godmode/category/category.php:129 +msgid "Successfully deleted category" +msgstr "CatĆ©gorie supprimĆ©e correctement" + +#: ../../godmode/category/category.php:168 +msgid "Category name" +msgstr "Nom de la catĆ©gorie" + +#: ../../godmode/category/category.php:226 +msgid "No categories found" +msgstr "Aucune catĆ©gorie trouvĆ©e" + +#: ../../godmode/category/category.php:239 +#: ../../godmode/category/edit_category.php:171 +msgid "Create category" +msgstr "CrĆ©er une catĆ©gorie" + +#: ../../godmode/category/edit_category.php:73 +msgid "Editor" +msgstr "Ɖditeur" + +#: ../../godmode/category/edit_category.php:95 +msgid "Error updating category" +msgstr "Erreur de mise Ć  jour de la catĆ©gorie" + +#: ../../godmode/category/edit_category.php:101 +msgid "Successfully updated category" +msgstr "CatĆ©gorie mise Ć  jour correctement" + +#: ../../godmode/category/edit_category.php:123 +msgid "Error creating category" +msgstr "Erreur de crĆ©ation de la catĆ©gorie" + +#: ../../godmode/category/edit_category.php:131 +msgid "Successfully created category" +msgstr "CatĆ©gorie crĆ©Ć©e correctement" + +#: ../../godmode/category/edit_category.php:163 +msgid "Update category" +msgstr "Mise Ć  jour de la catĆ©gorie" + +#: ../../godmode/module_library/module_library_view.php:68 +msgid "Main view" +msgstr "Vue principale" + +#: ../../godmode/module_library/module_library_view.php:147 +msgid "View all categories" +msgstr "Voir toutes les catĆ©gories" + +#: ../../godmode/module_library/module_library_view.php:158 +msgid "More details" +msgstr "Plus de dĆ©tails" + +#: ../../godmode/module_library/module_library_view.php:160 +msgid "View in Module Library" +msgstr "Afficher dans la bibliothĆØque de modules" + +#: ../../godmode/module_library/module_library_view.php:161 +msgid "No module found" +msgstr "Aucun module trouvĆ©" + +#: ../../godmode/module_library/module_library_view.php:164 +msgid "Error loading Module Library" +msgstr "Erreur lors du chargement de la bibliothĆØque" + +#: ../../godmode/module_library/module_library_view.php:165 +msgid "Error loading category" +msgstr "Erreur de chargement de la catĆ©gorie" + +#: ../../godmode/module_library/module_library_view.php:166 +msgid "Error loading categories" +msgstr "Erreur de chargement des catĆ©gories" + +#: ../../godmode/module_library/module_library_view.php:167 +msgid "There is no such category" +msgstr "Il n'y a pas une telle catĆ©gorie" + +#: ../../godmode/module_library/module_library_view.php:168 +msgid "Error loading results" +msgstr "Erreur lors du chargement des rĆ©sultats" + +#: ../../mobile/include/functions_web.php:83 +#, php-format +msgid "Pandora FMS %s - Build %s" +msgstr "Pandora FMS %s - CrĆ©er %s" + +#: ../../mobile/include/system.class.php:156 +msgid "" +"Access to this page is restricted to authorized users only, please contact your " +"system administrator if you should need help." +msgstr "" +"AccĆØs Ć  cette page est limitĆ© aux utilisateurs autorisĆ©s seulement, veuillez " +"contacter votre administrateur systĆØme si vous avez besoin de l'aide." + +#: ../../mobile/include/system.class.php:156 +#, php-format +msgid "" +"Please remember that any attempts to access this page will be recorded on the %s " +"System Database." +msgstr "" +"Rappelez-vous que les essais d'accĆØs Ć  cette page seront enregistrĆ©s dans la base " +"du systĆØme %s." + +#: ../../mobile/include/ui.class.php:120 +#, php-format +msgid "%s mobile" +msgstr "%s portable" + +#: ../../mobile/include/ui.class.php:217 +#, php-format +msgid "%s : Mobile" +msgstr "%s : Portable" + +#: ../../mobile/include/ui.class.php:239 ../../mobile/operation/home.php:161 +msgid "Home" +msgstr "Accueil" + +#: ../../mobile/include/ui.class.php:327 +#, php-format +msgid "%s %s - Build %s" +msgstr "%s %s - Build %s" + +#: ../../mobile/include/ui.class.php:773 +msgid "Not found header." +msgstr "En-tĆŖte introuvable" + +#: ../../mobile/include/ui.class.php:775 +msgid "Not found content." +msgstr "Contenu introuvable" + +#: ../../mobile/include/ui.class.php:777 +msgid "Not found footer." +msgstr "Pied de page introuvable" + +#: ../../mobile/include/ui.class.php:779 +msgid "Incorrect form." +msgstr "Forme incorrecte" + +#: ../../mobile/include/ui.class.php:781 +msgid "Incorrect grid." +msgstr "Grille incorrecte" + +#: ../../mobile/include/ui.class.php:783 +msgid "Incorrect collapsible." +msgstr "Pliage incorrect" + +#: ../../mobile/include/user.class.php:171 +msgid "User cannot log in into this console, please contact administrator" +msgstr "" +"L'utilisateur ne peut pas entrer dans la console, veuillez contacter " +"l'administrateur" + +#: ../../mobile/include/user.class.php:287 ../../mobile/include/user.class.php:302 +#: ../../mobile/include/user.class.php:309 +msgid "Double authentication failed" +msgstr "Double authentification Ć©chouĆ©e" + +#: ../../mobile/include/user.class.php:288 +msgid "Secret code not found" +msgstr "Code secret introuvable" + +#: ../../mobile/include/user.class.php:288 +msgid "Please contact the administrator to reset your double authentication" +msgstr "" +"Veuillez communiquer avec l'administrateur pour rĆ©initialiser votre double " +"authentification." + +#: ../../mobile/include/user.class.php:310 +msgid "There was an error checking the code" +msgstr "Erreur de vĆ©rification du code" + +#: ../../mobile/include/user.class.php:351 +msgid "Login Failed" +msgstr "Connexion Ć©chouĆ©e" + +#: ../../mobile/include/user.class.php:355 +msgid "User not found in database or incorrect password." +msgstr "Utilisateur introuvable dans la base de donnĆ©es ou mot de passe incorrect." + +#: ../../mobile/include/user.class.php:364 +msgid "Login out" +msgstr "Fermer la session" + +#: ../../mobile/include/user.class.php:395 +msgid "user" +msgstr "utilisateur" + +#: ../../mobile/include/user.class.php:402 +msgid "password" +msgstr "mot de passe" + +#: ../../mobile/include/user.class.php:491 ../../mobile/include/user.class.php:492 +msgid "Authenticator code" +msgstr "Code d'authentification" + +#: ../../mobile/operation/agents.php:218 +#, php-format +msgid "Filter Agents by %s" +msgstr "Filtrer agents par %s" + +#: ../../mobile/operation/agents.php:260 ../../mobile/operation/modules.php:325 +#: ../../mobile/operation/alerts.php:266 ../../mobile/operation/events.php:1009 +msgid "Apply Filter" +msgstr "Appliquer le filtre" + +#: ../../mobile/operation/agents.php:454 +msgid "No agents" +msgstr "Aucun agent" + +#: ../../mobile/operation/agents.php:550 ../../mobile/operation/modules.php:885 +#: ../../mobile/operation/alerts.php:379 ../../mobile/operation/events.php:1450 +msgid "(Default)" +msgstr "(Par dĆ©faut)" + +#: ../../mobile/operation/agents.php:556 ../../mobile/operation/modules.php:891 +#: ../../mobile/operation/alerts.php:392 ../../mobile/operation/events.php:1483 +#, php-format +msgid "Group: %s" +msgstr "Groupe : %s" + +#: ../../mobile/operation/agents.php:563 ../../mobile/operation/modules.php:913 +#: ../../mobile/operation/alerts.php:399 ../../mobile/operation/events.php:1503 +#, php-format +msgid "Status: %s" +msgstr "Ɖtat : %s" + +#: ../../mobile/operation/agents.php:570 ../../mobile/operation/modules.php:920 +#: ../../mobile/operation/alerts.php:406 +#, php-format +msgid "Free Search: %s" +msgstr "Recherche libre : %s" + +#: ../../mobile/operation/modules.php:250 +#, php-format +msgid "Filter Modules by %s" +msgstr "Filtrer les modules par %s" + +#: ../../mobile/operation/modules.php:659 +msgid "Interval." +msgstr "Intervalle" + +#: ../../mobile/operation/modules.php:661 +msgid "Last update." +msgstr "DerniĆØre mise Ć  jour" + +#: ../../mobile/operation/modules.php:906 +#, php-format +msgid "Module group: %s" +msgstr "Groupe de module: %s" + +#: ../../mobile/operation/modules.php:928 +#, php-format +msgid "Tag: %s" +msgstr "Ɖtiquette : %s" + +#: ../../mobile/operation/home.php:66 ../../mobile/operation/visualmaps.php:184 +#: ../../operation/search_results.php:145 ../../operation/search_main.php:70 +msgid "Visual consoles" +msgstr "Consoles visuelles" + +#: ../../mobile/operation/agent.php:162 +msgid "No agent found" +msgstr "Aucun agent retrouvĆ©" + +#: ../../mobile/operation/agent.php:238 +msgid "Modules by status" +msgstr "Modules par Ć©tat" + +#: ../../mobile/operation/agent.php:268 ../../include/functions_treeview.php:831 +msgid "Events (24h)" +msgstr "ƉvĆ©nements (24h)" + +#: ../../mobile/operation/agent.php:369 +#, php-format +msgid "Last %s Events" +msgstr "Derniers %s Ć©vĆ©nements" + +#: ../../mobile/operation/alerts.php:208 +#, php-format +msgid "Filter Alerts by %s" +msgstr "Filtrer alertes par %s" + +#: ../../mobile/operation/alerts.php:346 +msgid "Last Fired" +msgstr "DĆ©clenchĆ©e pour la derniĆØre fois" + +#: ../../mobile/operation/alerts.php:357 ../../include/ajax/events.php:2434 +msgid "No alerts" +msgstr "Aucune alerte" + +#: ../../mobile/operation/alerts.php:385 +#, php-format +msgid "Standby: %s" +msgstr "En mode veille : %s" + +#: ../../mobile/operation/visualmaps.php:242 +msgid "All visual consoles" +msgstr "Toutes les consoles visuelles" + +#: ../../mobile/operation/visualmaps.php:254 +msgid "Favourite visual consoles" +msgstr "Consoles visuelles prĆ©fĆ©rĆ©es" + +#: ../../mobile/operation/visualmaps.php:263 +msgid "No maps defined" +msgstr "Aucune carte dĆ©finie" + +#: ../../mobile/operation/module_graph.php:359 +#: ../../mobile/operation/module_graph.php:372 +#, php-format +msgid "%s: %s" +msgstr "%s: %s" + +#: ../../mobile/operation/module_graph.php:405 +#, php-format +msgid "Options for %s : %s" +msgstr "Options pour %s : %s" + +#: ../../mobile/operation/module_graph.php:412 +msgid "Show Alerts" +msgstr "Afficher les alertes" + +#: ../../mobile/operation/module_graph.php:420 +msgid "Show Events" +msgstr "Afficher les Ć©vĆ©nements" + +#: ../../mobile/operation/module_graph.php:428 +#: ../../operation/agentes/stat_win.php:377 ../../operation/agentes/stat_win.php:439 +msgid "Time compare (Separated)" +msgstr "Comparaison de temps (sĆ©parĆ©ment)" + +#: ../../mobile/operation/module_graph.php:444 +#: ../../operation/agentes/stat_win.php:317 +msgid "Show unknown graph" +msgstr "Afficher le graphique inconnu" + +#: ../../mobile/operation/module_graph.php:449 +msgid "Time range (hours)" +msgstr "Intervalle de temps (heures)" + +#: ../../mobile/operation/module_graph.php:461 +#: ../../operation/agentes/stat_win.php:289 ../../operation/agentes/stat_win.php:408 +#: ../../operation/agentes/interface_traffic_graph_win.php:181 +#: ../../operation/agentes/graphs.php:207 ../../operation/agentes/exportdata.php:318 +msgid "Begin date" +msgstr "Date de dĆ©but" + +#: ../../mobile/operation/module_graph.php:468 +msgid "Update graph" +msgstr "Mettre Ć  jour le graphique" + +#: ../../mobile/operation/module_graph.php:478 +msgid "Error get the graph" +msgstr "Erreur d'obtention du graphique" + +#: ../../mobile/operation/events.php:450 +#: ../../include/functions_reporting_html.php:1104 +#: ../../include/functions_reporting_html.php:1355 +#: ../../include/functions_reporting_html.php:2456 +#: ../../include/functions_events.php:2404 ../../include/functions_events.php:4362 +#: ../../operation/events/events.php:689 +msgid "New event" +msgstr "Nouvel Ć©vĆ©nement" + +#: ../../mobile/operation/events.php:455 +#: ../../include/functions_reporting_html.php:1093 +#: ../../include/functions_reporting_html.php:1360 +#: ../../include/functions_reporting_html.php:2461 +#: ../../include/functions_events.php:2409 ../../include/functions_events.php:4368 +#: ../../operation/events/events.php:702 +msgid "Event validated" +msgstr "ƉvĆ©nement validĆ©" + +#: ../../mobile/operation/events.php:460 +#: ../../include/functions_reporting_html.php:1098 +#: ../../include/functions_reporting_html.php:1365 +#: ../../include/functions_reporting_html.php:2466 +#: ../../include/functions_events.php:2414 ../../include/functions_events.php:4374 +#: ../../operation/events/events.php:714 +msgid "Event in process" +msgstr "ƉvĆ©nement en cours" + +#: ../../mobile/operation/events.php:768 +msgid "ERROR: Event detail" +msgstr "ERREUR : dĆ©tails de l'Ć©vĆ©nement" + +#: ../../mobile/operation/events.php:769 +msgid "Error connecting to DB." +msgstr "Erreur lors de la connexions dans la base de donnĆ©es." + +#: ../../mobile/operation/events.php:789 +msgid "Event detail" +msgstr "DĆ©tails de l'Ć©vĆ©nement" + +#: ../../mobile/operation/events.php:800 ../../include/functions_events.php:4515 +msgid "Event ID" +msgstr "Identification de l'Ć©vĆ©nement" + +#: ../../mobile/operation/events.php:828 ../../include/functions_events.php:4617 +msgid "Acknowledged by" +msgstr "Reconnu par" + +#: ../../mobile/operation/events.php:878 +msgid "Sucessful validate" +msgstr "ValidĆ© correctement" + +#: ../../mobile/operation/events.php:880 +msgid "Fail validate" +msgstr "Validation Ć©chouĆ©e" + +#: ../../mobile/operation/events.php:924 +#, php-format +msgid "Filter Events by %s" +msgstr "Filtrer les Ć©vĆØnements par %s" + +#: ../../mobile/operation/events.php:934 ../../mobile/operation/events.php:935 +msgid "Preset Filters" +msgstr "Filtres prĆ©dĆ©finis" + +#: ../../mobile/operation/events.php:1144 +#: ../../include/functions_reporting_html.php:5976 +#: ../../include/functions_reporting_html.php:6135 +#: ../../include/functions_reporting.php:2131 +#: ../../include/functions_reporting.php:2421 +#: ../../include/functions_events.php:2328 ../../include/functions_events.php:2331 +msgid "No events" +msgstr "Aucun Ć©vĆ©nement" + +#: ../../mobile/operation/events.php:1455 +#, php-format +msgid "Filter: %s" +msgstr "Filtrer : %s" + +#: ../../mobile/operation/events.php:1467 +#, php-format +msgid "Severity: %s" +msgstr "SĆ©vĆ©ritĆ© : %s" + +#: ../../mobile/operation/events.php:1496 +#, php-format +msgid "Type: %s" +msgstr "Type : %s" + +#: ../../mobile/operation/events.php:1510 +#, php-format +msgid "Free search: %s" +msgstr "Recherche libre : %s" + +#: ../../mobile/operation/events.php:1517 +#, php-format +msgid "Hours: %s" +msgstr "Heures : %s" + +#: ../../mobile/operation/tactical.php:216 +msgid "Last activity" +msgstr "DerniĆØre activitĆ©" + #: ../../include/functions_visual_map_editor.php:62 msgid "" "To use 'label'field, you should write\n" @@ -13634,18 +40239,6 @@ msgstr "" "\t\t\t\t\tun texte pour remplacer Ā« (_VALUE_) Ā» et la valeur du module sera " "dessinĆ©e Ć  la fin." -#: ../../include/functions_visual_map_editor.php:97 -#: ../../include/functions_visual_map_editor.php:668 -#: ../../include/functions_reports.php:1248 -#: ../../include/rest-api/models/VisualConsole/Items/NetworkLink.php:926 -#: ../../include/rest-api/models/VisualConsole/Items/Line.php:475 -#: ../../enterprise/godmode/reporting/graph_template_editor.php:208 -#: ../../godmode/setup/gis_step_2.php:371 -#: ../../godmode/reporting/visual_console_builder.wizard.php:180 -#: ../../godmode/events/event_responses.editor.php:139 -msgid "Width" -msgstr "Largeur" - #: ../../include/functions_visual_map_editor.php:107 #: ../../include/functions_visual_map_editor.php:133 #: ../../include/rest-api/models/VisualConsole/Items/Box.php:299 @@ -13657,28 +40250,16 @@ msgid "Border width" msgstr "Largeur du bord" #: ../../include/functions_visual_map_editor.php:160 -#: ../../include/rest-api/models/VisualConsole/Items/Clock.php:364 #: ../../include/rest-api/models/VisualConsole/Items/Box.php:323 +#: ../../include/rest-api/models/VisualConsole/Items/Clock.php:364 msgid "Fill color" msgstr "Couleur de remplissage" #: ../../include/functions_visual_map_editor.php:239 -msgid "" -"Scroll the mouse wheel over the label editor to change the background color" +msgid "Scroll the mouse wheel over the label editor to change the background color" msgstr "" "Survolez la souris sur l'Ć©diteur d'Ć©tiquettes pour changer la couleur de fond" -#: ../../include/functions_visual_map_editor.php:250 -#: ../../include/functions_filemanager.php:641 -#: ../../include/rest-api/models/VisualConsole/Items/StaticGraph.php:336 -#: ../../include/rest-api/models/VisualConsole/Items/Icon.php:175 -#: ../../include/rest-api/models/VisualConsole/Items/Group.php:522 -#: ../../enterprise/include/rest-api/models/VisualConsole/Items/Service.php:236 -#: ../../godmode/reporting/visual_console_builder.elements.php:105 -#: ../../godmode/reporting/visual_console_builder.wizard.php:151 -msgid "Image" -msgstr "Image" - #: ../../include/functions_visual_map_editor.php:255 #: ../../include/rest-api/models/VisualConsole/Items/Clock.php:333 msgid "Clock animation" @@ -13709,94 +40290,6 @@ msgstr "Seulement l'heure" msgid "Time and date" msgstr "Heure et date" -#: ../../include/functions_visual_map_editor.php:290 -#: ../../include/functions_register.php:134 -#: ../../include/rest-api/models/VisualConsole/Items/Clock.php:271 -#: ../../enterprise/meta/advanced/metasetup.setup.php:162 -#: ../../godmode/setup/setup_general.php:249 -msgid "Africa" -msgstr "Afrique" - -#: ../../include/functions_visual_map_editor.php:291 -#: ../../include/functions_register.php:135 -#: ../../include/rest-api/models/VisualConsole/Items/Clock.php:272 -#: ../../enterprise/meta/advanced/metasetup.setup.php:163 -#: ../../godmode/setup/setup_general.php:250 -msgid "America" -msgstr "AmĆ©rique" - -#: ../../include/functions_visual_map_editor.php:292 -#: ../../include/functions_register.php:136 -#: ../../include/rest-api/models/VisualConsole/Items/Clock.php:273 -#: ../../enterprise/meta/advanced/metasetup.setup.php:164 -#: ../../godmode/setup/setup_general.php:251 -msgid "Antarctica" -msgstr "Antarctique" - -#: ../../include/functions_visual_map_editor.php:293 -#: ../../include/functions_register.php:137 -#: ../../include/rest-api/models/VisualConsole/Items/Clock.php:274 -#: ../../enterprise/meta/advanced/metasetup.setup.php:165 -#: ../../godmode/setup/setup_general.php:252 -msgid "Arctic" -msgstr "Arctique" - -#: ../../include/functions_visual_map_editor.php:294 -#: ../../include/functions_register.php:138 -#: ../../include/rest-api/models/VisualConsole/Items/Clock.php:275 -#: ../../enterprise/meta/advanced/metasetup.setup.php:166 -#: ../../godmode/setup/setup_general.php:253 -msgid "Asia" -msgstr "Asie" - -#: ../../include/functions_visual_map_editor.php:295 -#: ../../include/functions_register.php:139 -#: ../../include/rest-api/models/VisualConsole/Items/Clock.php:276 -#: ../../enterprise/meta/advanced/metasetup.setup.php:167 -#: ../../godmode/setup/setup_general.php:254 -msgid "Atlantic" -msgstr "Atlantique" - -#: ../../include/functions_visual_map_editor.php:296 -#: ../../include/functions_register.php:140 -#: ../../include/rest-api/models/VisualConsole/Items/Clock.php:277 -#: ../../enterprise/meta/advanced/metasetup.setup.php:168 -#: ../../godmode/setup/setup_general.php:255 -msgid "Australia" -msgstr "Australie" - -#: ../../include/functions_visual_map_editor.php:297 -#: ../../include/functions_register.php:141 -#: ../../include/rest-api/models/VisualConsole/Items/Clock.php:278 -#: ../../enterprise/meta/advanced/metasetup.setup.php:169 -#: ../../godmode/setup/setup_general.php:256 -msgid "Europe" -msgstr "Europe" - -#: ../../include/functions_visual_map_editor.php:298 -#: ../../include/functions_register.php:142 -#: ../../include/rest-api/models/VisualConsole/Items/Clock.php:279 -#: ../../enterprise/meta/advanced/metasetup.setup.php:170 -#: ../../godmode/setup/setup_general.php:257 -msgid "Indian" -msgstr "Indien" - -#: ../../include/functions_visual_map_editor.php:299 -#: ../../include/functions_register.php:143 -#: ../../include/rest-api/models/VisualConsole/Items/Clock.php:280 -#: ../../enterprise/meta/advanced/metasetup.setup.php:171 -#: ../../godmode/setup/setup_general.php:258 -msgid "Pacific" -msgstr "Pacifique" - -#: ../../include/functions_visual_map_editor.php:300 -#: ../../include/functions_register.php:144 -#: ../../include/rest-api/models/VisualConsole/Items/Clock.php:281 -#: ../../enterprise/meta/advanced/metasetup.setup.php:172 -#: ../../godmode/setup/setup_general.php:259 -msgid "UTC" -msgstr "UTC" - #: ../../include/functions_visual_map_editor.php:313 #: ../../include/rest-api/models/VisualConsole/Items/Clock.php:302 msgid "Time zone" @@ -13806,13 +40299,6 @@ msgstr "Fuseau horaire" msgid "Enable link" msgstr "Activer le lien" -#: ../../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 -#: ../../godmode/reporting/visual_console_builder.data.php:181 -msgid "Background color" -msgstr "Couleur de fond" - #: ../../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 @@ -13836,30 +40322,6 @@ msgstr "Transparent" msgid "Grid color" msgstr "Couleur de la grille" -#: ../../include/functions_visual_map_editor.php:397 -#: ../../include/functions_visual_map.php:4179 -#: ../../include/rest-api/models/VisualConsole/Item.php:2099 -#: ../../mobile/operation/home.php:102 -#: ../../godmode/reporting/visual_console_builder.wizard.php:129 -msgid "Module graph" -msgstr "Graphique de module" - -#: ../../include/functions_visual_map_editor.php:397 -#: ../../include/functions_visual_map_editor.php:400 -#: ../../include/functions_reports.php:561 -#: ../../include/functions_reports.php:648 -#: ../../include/functions_reports.php:654 -#: ../../include/functions_reporting.php:9852 -#: ../../include/rest-api/models/VisualConsole/Items/ModuleGraph.php:625 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2154 -#: ../../godmode/reporting/create_container.php:480 -#: ../../godmode/reporting/create_container.php:624 -#: ../../godmode/reporting/visual_console_builder.elements.php:105 -#: ../../godmode/reporting/visual_console_builder.elements.php:575 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2093 -msgid "Custom graph" -msgstr "Tableau personnalisĆ©" - #: ../../include/functions_visual_map_editor.php:498 msgid "Data image" msgstr "DonnĆ©es dans l'image" @@ -13894,49 +40356,10 @@ msgstr "1h" msgid "Max. Time" msgstr "Temp max." -#: ../../include/functions_visual_map_editor.php:554 -#: ../../godmode/reporting/create_container.php:428 -#: ../../godmode/reporting/create_container.php:583 -#: ../../godmode/reporting/graph_builder.main.php:208 -msgid "Type of graph" -msgstr "Type de graphique" - -#: ../../include/functions_visual_map_editor.php:612 -#: ../../include/rest-api/models/VisualConsole/Items/SimpleValue.php:371 -#: ../../godmode/reporting/visual_console_builder.wizard.php:256 -msgid "Process" -msgstr "Processus" - -#: ../../include/functions_visual_map_editor.php:615 -#: ../../godmode/reporting/visual_console_builder.wizard.php:259 -msgid "Min value" -msgstr "Valeur minimale" - -#: ../../include/functions_visual_map_editor.php:616 -#: ../../include/functions_visual_map_editor.php:682 -#: ../../godmode/reporting/visual_console_builder.wizard.php:260 -#: ../../godmode/reporting/visual_console_builder.wizard.php:278 -msgid "Max value" -msgstr "Valeur maximale" - -#: ../../include/functions_visual_map_editor.php:617 -#: ../../godmode/reporting/visual_console_builder.wizard.php:261 -msgid "Avg value" -msgstr "Valeur moyenne" - #: ../../include/functions_visual_map_editor.php:640 msgid "Original Size" msgstr "Taille originale" -#: ../../include/functions_visual_map_editor.php:641 -#: ../../enterprise/meta/advanced/policymanager.apply.php:213 -#: ../../enterprise/meta/advanced/policymanager.queue.php:311 -#: ../../enterprise/godmode/policies/policy_agents.php:854 -#: ../../enterprise/godmode/policies/policy_agents.php:1369 -#: ../../enterprise/godmode/policies/policy_queue.php:714 -msgid "Apply" -msgstr "Appliquer" - #: ../../include/functions_visual_map_editor.php:648 msgid "Aspect ratio" msgstr "Rapport hauteur/largeur" @@ -13949,93 +40372,18 @@ msgstr "Largeur proportionnelle" msgid "Height proportional" msgstr "Hauteur proportionnelle" -#: ../../include/functions_visual_map_editor.php:673 -#: ../../include/functions_reports.php:1264 -#: ../../include/functions_reports.php:1364 -#: ../../enterprise/godmode/reporting/graph_template_editor.php:212 -#: ../../godmode/setup/gis_step_2.php:378 -#: ../../godmode/reporting/visual_console_builder.wizard.php:181 -#: ../../godmode/events/event_responses.editor.php:141 -msgid "Height" -msgstr "Hauteur" - -#: ../../include/functions_visual_map_editor.php:686 -#: ../../include/rest-api/models/VisualConsole/Items/Percentile.php:458 -#: ../../enterprise/meta/include/functions_meta.php:1348 -#: ../../enterprise/meta/advanced/metasetup.visual.php:216 -#: ../../godmode/setup/setup_visuals.php:935 -#: ../../godmode/reporting/visual_console_builder.elements.php:212 -#: ../../godmode/reporting/visual_console_builder.wizard.php:285 -msgid "Percentile" -msgstr "Centile" - -#: ../../include/functions_visual_map_editor.php:687 -#: ../../include/rest-api/models/VisualConsole/Items/Percentile.php:459 -#: ../../godmode/reporting/visual_console_builder.wizard.php:295 -msgid "Bubble" -msgstr "Bulle" - #: ../../include/functions_visual_map_editor.php:688 #: ../../include/rest-api/models/VisualConsole/Items/Percentile.php:460 msgid "Circular porgress bar" msgstr "Barre de progression circulaire" #: ../../include/functions_visual_map_editor.php:689 -#: ../../include/functions_visual_map.php:4209 -#: ../../include/rest-api/models/VisualConsole/Item.php:2127 +#: ../../include/functions_visual_map.php:4239 #: ../../include/rest-api/models/VisualConsole/Items/Percentile.php:462 +#: ../../include/rest-api/models/VisualConsole/Item.php:2127 msgid "Circular progress bar (interior)" msgstr "Barre de progression circulaire (intĆ©rieur)" -#: ../../include/functions_visual_map_editor.php:692 -#: ../../include/rest-api/models/VisualConsole/Items/Percentile.php:504 -#: ../../godmode/reporting/visual_console_builder.wizard.php:309 -msgid "Percent" -msgstr "Pourcentage" - -#: ../../include/functions_visual_map_editor.php:693 -#: ../../include/functions_reports.php:1068 ../../include/ajax/events.php:2003 -#: ../../include/functions_netflow.php:212 ../../include/functions_graph.php:5453 -#: ../../include/functions_snmp_browser.php:560 -#: ../../include/rest-api/models/VisualConsole/Items/Percentile.php:505 -#: ../../include/functions_reporting_html.php:940 -#: ../../include/functions_reporting_html.php:2209 -#: ../../include/functions_reporting_html.php:4695 -#: ../../include/functions_reporting_html.php:5205 -#: ../../enterprise/operation/services/services.service.php:124 -#: ../../enterprise/operation/services/services.list.php:506 -#: ../../enterprise/include/functions_reporting_csv.php:1158 -#: ../../enterprise/include/functions_reporting_csv.php:1184 -#: ../../enterprise/include/functions_reporting_csv.php:1215 -#: ../../enterprise/include/functions_reporting_csv.php:1270 -#: ../../enterprise/include/functions_reporting_csv.php:1374 -#: ../../enterprise/include/functions_reporting_csv.php:2681 -#: ../../enterprise/meta/include/functions_autoprovision.php:643 -#: ../../enterprise/meta/advanced/metasetup.relations.php:430 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2519 -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:413 -#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:827 -#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:341 -#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:548 -#: ../../godmode/setup/setup_visuals.php:1288 -#: ../../godmode/setup/setup_visuals.php:1349 -#: ../../godmode/setup/setup_visuals.php:1369 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2530 -#: ../../godmode/reporting/visual_console_builder.wizard.php:319 -#: ../../godmode/snmpconsole/snmp_trap_generator.php:115 -#: ../../godmode/massive/massive_edit_modules.php:884 -#: ../../godmode/agentes/module_manager_editor_common.php:1214 -#: ../../godmode/alerts/configure_alert_template.php:816 -msgid "Value" -msgstr "Valeur" - -#: ../../include/functions_visual_map_editor.php:711 -#: ../../include/functions_visual_map_editor.php:729 -#: ../../include/rest-api/models/VisualConsole/Items/Percentile.php:509 -#: ../../godmode/reporting/visual_console_builder.wizard.php:307 -msgid "Value to show" -msgstr "Valeur Ć  afficher" - #: ../../include/functions_visual_map_editor.php:739 #: ../../include/rest-api/models/VisualConsole/Items/Percentile.php:522 msgid "Element color" @@ -14046,46 +40394,6 @@ msgstr "Couleur de l'Ć©lĆ©ment" msgid "Value color" msgstr "Couleur de la valeur" -#: ../../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 -#: ../../enterprise/include/functions_reporting_csv.php:483 -#: ../../enterprise/include/functions_reporting_csv.php:486 -#: ../../enterprise/include/functions_reporting_csv.php:710 -#: ../../enterprise/include/functions_reporting_csv.php:831 -#: ../../enterprise/include/functions_reporting_csv.php:914 -#: ../../enterprise/include/functions_reporting_csv.php:946 -#: ../../enterprise/include/functions_reporting_csv.php:1006 -#: ../../enterprise/include/functions_reporting_csv.php:1184 -#: ../../enterprise/include/functions_reporting_csv.php:1215 -#: ../../enterprise/include/functions_reporting_csv.php:1270 -#: ../../enterprise/include/functions_reporting_csv.php:1374 -#: ../../enterprise/include/functions_reporting_csv.php:1429 -#: ../../enterprise/include/functions_reporting_csv.php:1495 -#: ../../enterprise/include/functions_reporting_csv.php:1881 -#: ../../enterprise/include/functions_reporting_csv.php:1931 -#: ../../enterprise/include/functions_reporting_csv.php:2627 -#: ../../enterprise/include/functions_reporting_csv.php:2678 -#: ../../enterprise/include/functions_reporting_csv.php:2804 -#: ../../enterprise/godmode/reporting/graph_template_editor.php:235 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1765 -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:102 -#: ../../godmode/reporting/visual_console_builder.elements.php:107 -#: ../../godmode/reporting/reporting_builder.item_editor.php:1261 -#: ../../godmode/reporting/graph_builder.main.php:196 -#: ../../godmode/reporting/visual_console_builder.wizard.php:242 -#: ../../godmode/agentes/module_manager_editor_prediction.php:179 -msgid "Period" -msgstr "PĆ©riode" - -#: ../../include/functions_visual_map_editor.php:793 -#: ../../include/rest-api/models/VisualConsole/Items/Group.php:562 -#: ../../enterprise/tools/ipam/ipam_vlan_config.php:871 -#: ../../enterprise/tools/ipam/ipam_supernet_config.php:1377 -msgid "Show statistics" -msgstr "Afficher les statistiques" - #: ../../include/functions_visual_map_editor.php:801 msgid "Diameter" msgstr "DiamĆØtre" @@ -14097,13 +40405,13 @@ msgstr "Couleur par dĆ©faut" #: ../../include/functions_visual_map_editor.php:812 msgid "" -"The color of the element will be the one selected in the first range created " -"in which the value of the module is found (with the initial and final values " -"of the range included)" +"The color of the element will be the one selected in the first range created in " +"which the value of the module is found (with the initial and final values of the " +"range included)" msgstr "" -"La couleur de l'Ć©lĆ©ment sera celle sĆ©lectionnĆ©e dans la premiĆØre plage crĆ©Ć©e " -"dans laquelle se trouve la valeur du module (avec les valeurs initiale et " -"finale de la plage incluses)" +"La couleur de l'Ć©lĆ©ment sera celle sĆ©lectionnĆ©e dans la premiĆØre plage crĆ©Ć©e dans " +"laquelle se trouve la valeur du module (avec les valeurs initiale et finale de la " +"plage incluses)" #: ../../include/functions_visual_map_editor.php:815 msgid "Ranges" @@ -14121,8 +40429,8 @@ msgstr "ƀ la valeur" #: ../../include/rest-api/index.php:363 #: ../../include/rest-api/models/VisualConsole/Items/ColorCloud.php:471 #: ../../include/rest-api/models/VisualConsole/Items/ColorCloud.php:530 -#: ../../include/rest-api/models/VisualConsole/Items/NetworkLink.php:938 #: ../../include/rest-api/models/VisualConsole/Items/Line.php:487 +#: ../../include/rest-api/models/VisualConsole/Items/NetworkLink.php:938 msgid "Color" msgstr "Couleur" @@ -14138,59 +40446,19 @@ msgstr "" "Il permet de superposer l'Ć©lĆ©ment au reste des Ć©lĆ©ments de la console visuelle" #: ../../include/functions_visual_map_editor.php:824 -#: ../../include/rest-api/models/VisualConsole/Items/StaticGraph.php:396 +#: ../../include/rest-api/models/VisualConsole/Items/StaticGraph.php:404 msgid "Hide last value on boolean modules" msgstr "Masquer la derniĆØre valeur sur les modules boolĆ©ens" -#: ../../include/functions_visual_map_editor.php:825 -#: ../../include/rest-api/models/VisualConsole/Items/StaticGraph.php:398 -#: ../../include/functions_reporting_html.php:3401 -#: ../../enterprise/tools/ipam/ipam_ajax.php:419 -#: ../../enterprise/tools/ipam/ipam_massive.php:103 -#: ../../enterprise/tools/ipam/ipam_network.php:402 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3220 -#: ../../enterprise/include/class/DatabaseHA.class.php:205 -#: ../../godmode/modules/manage_network_components_form_wizard.php:247 -#: ../../godmode/massive/massive_edit_agents.php:1016 -#: ../../godmode/agentes/module_manager_editor_common.php:1061 -#: ../../godmode/agentes/module_manager_editor_common.php:1071 -#: ../../godmode/alerts/configure_alert_template.php:900 -#: ../../godmode/groups/group_list.php:908 -msgid "Enabled" -msgstr "ActivĆ©" - #: ../../include/functions_visual_map_editor.php:830 msgid "Show last value" msgstr "Afficher la derniĆØre valeur" -#: ../../include/functions_visual_map_editor.php:843 -#: ../../include/rest-api/models/VisualConsole/Items/BarsGraph.php:483 -#: ../../enterprise/godmode/reporting/reporting_builder.advanced.php:105 -msgid "Vertical" -msgstr "Vertical" - -#: ../../include/functions_visual_map_editor.php:844 -#: ../../include/rest-api/models/VisualConsole/Items/BarsGraph.php:482 -#: ../../enterprise/godmode/reporting/reporting_builder.advanced.php:114 -msgid "Horizontal" -msgstr "Horizontal" - -#: ../../include/functions_visual_map_editor.php:922 -#: ../../include/rest-api/models/VisualConsole/Item.php:2023 -#: ../../include/rest-api/models/VisualConsole/Items/Box.php:246 -#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:332 -#: ../../godmode/reporting/reporting_builder.list_items.php:371 -#: ../../godmode/reporting/visual_console_builder.elements.php:107 -#: ../../godmode/snmpconsole/snmp_alert.php:1126 -#: ../../godmode/snmpconsole/snmp_alert.php:1254 -msgid "Position" -msgstr "Position" - #: ../../include/functions_visual_map_editor.php:934 msgid "For use the original image file size, set 0 width and 0 height." msgstr "" -"Pour utiliser les dimensions originales du fichier d'image, rĆ©glez la largeur " -"et la hauteur Ć  0." +"Pour utiliser les dimensions originales du fichier d'image, rĆ©glez la largeur et " +"la hauteur Ć  0." #: ../../include/functions_visual_map_editor.php:974 #: ../../include/rest-api/models/VisualConsole/Item.php:2433 @@ -14222,22 +40490,6 @@ msgstr "Par dĆ©faut" msgid "Linked visual console weight" msgstr "Poids de la console visuelle liĆ©e" -#: ../../include/functions_visual_map_editor.php:1148 -#: ../../include/rest-api/models/VisualConsole/Item.php:2522 -#: ../../enterprise/godmode/massive/massive_edit_service_elements.php:265 -#: ../../enterprise/godmode/massive/massive_add_service_elements.php:509 -#: ../../enterprise/godmode/massive/massive_create_services.php:1151 -msgid "Critical weight" -msgstr "Poids critique" - -#: ../../include/functions_visual_map_editor.php:1174 -#: ../../include/rest-api/models/VisualConsole/Item.php:2536 -#: ../../enterprise/godmode/massive/massive_edit_service_elements.php:278 -#: ../../enterprise/godmode/massive/massive_add_service_elements.php:522 -#: ../../enterprise/godmode/massive/massive_create_services.php:1164 -msgid "Warning weight" -msgstr "Poids d'alerte" - #: ../../include/functions_visual_map_editor.php:1189 msgid "Lines haven't advanced options" msgstr "Les lignes n'ont pas d'options avancĆ©es" @@ -14249,68 +40501,19 @@ msgstr "Limiter l'accĆØs au groupe" #: ../../include/functions_visual_map_editor.php:1217 msgid "" -"If selected, restrict visualization of this item in the visual console to " -"users who have access to selected group. This is also used on calculating " -"child visual consoles." +"If selected, restrict visualization of this item in the visual console to users " +"who have access to selected group. This is also used on calculating child visual " +"consoles." msgstr "" "Si sĆ©lectionnĆ©, le visionnement de cet Ć©lĆ©ment dans la console visuelle sera " "limitĆ© aux utilisateurs qui ont accĆØs au groupe sĆ©lectionnĆ©. Ceci est aussi " "utilisĆ© pour calculer les consoles visuelles des enfants." -#: ../../include/functions_visual_map_editor.php:1223 -#: ../../include/functions_visual_map_editor.php:1224 -#: ../../include/class/AgentsAlerts.class.php:387 -#: ../../include/functions_html.php:2107 ../../include/functions.php:499 -#: ../../include/functions.php:630 -#: ../../enterprise/include/ajax/log_viewer.ajax.php:274 -#: ../../enterprise/meta/advanced/metasetup.visual.php:382 -#: ../../enterprise/meta/advanced/metasetup.visual.php:849 -#: ../../enterprise/meta/advanced/metasetup.visual.php:850 -#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:327 -#: ../../godmode/setup/setup_visuals.php:1030 -#: ../../godmode/setup/setup_visuals.php:1031 -#: ../../godmode/setup/setup_visuals.php:1342 -#: ../../godmode/snmpconsole/snmp_alert.php:1102 -msgid "seconds" -msgstr "secondes" - -#: ../../include/functions_visual_map_editor.php:1225 -#: ../../include/functions_visual_map_editor.php:1226 -#: ../../include/functions_visual_map_editor.php:1227 -#: ../../include/functions_visual_map_editor.php:1228 -#: ../../include/functions_html.php:2108 ../../include/functions.php:503 -#: ../../include/functions.php:634 -#: ../../enterprise/include/ajax/log_viewer.ajax.php:276 -#: ../../enterprise/meta/advanced/metasetup.visual.php:383 -#: ../../enterprise/meta/advanced/metasetup.visual.php:851 -#: ../../enterprise/meta/advanced/metasetup.visual.php:852 -#: ../../enterprise/meta/advanced/metasetup.visual.php:853 -#: ../../enterprise/meta/advanced/metasetup.visual.php:854 -#: ../../godmode/setup/setup_visuals.php:1032 -#: ../../godmode/setup/setup_visuals.php:1033 -#: ../../godmode/setup/setup_visuals.php:1034 -#: ../../godmode/setup/setup_visuals.php:1035 -#: ../../godmode/setup/setup_visuals.php:1343 -msgid "minutes" -msgstr "minutes" - -#: ../../include/functions_visual_map_editor.php:1229 -#: ../../enterprise/meta/advanced/metasetup.visual.php:855 -#: ../../godmode/setup/setup_visuals.php:1036 -msgid "hour" -msgstr "heure" - #: ../../include/functions_visual_map_editor.php:1248 #: ../../include/rest-api/models/VisualConsole/Item.php:2201 msgid "Cache expiration" msgstr "Expiration du cache" -#: ../../include/functions_visual_map_editor.php:1255 -#: ../../enterprise/meta/advanced/metasetup.visual.php:862 -#: ../../godmode/setup/setup_visuals.php:1043 -msgid "No cache" -msgstr "Pas de cache" - #: ../../include/functions_visual_map_editor.php:1287 msgid "Click start point
    of the line" msgstr "Cliquez sur le point de dƩpart
    de la ligne." @@ -14319,17 +40522,20 @@ msgstr "Cliquez sur le point de dƩpart
    de la ligne." msgid "Click end point
    of the line" msgstr "Cliquez sur le point final
    de la ligne." +#: ../../include/functions_visual_map_editor.php:1390 +#: ../../operation/visual_console/view.php:316 +msgid "Serialized pie graph" +msgstr "Diagramme circulaire sĆ©rialisĆ©" + +#: ../../include/functions_visual_map_editor.php:1391 +#: ../../operation/visual_console/view.php:321 +msgid "Bars Graph" +msgstr "Graphique Ć  barres" + #: ../../include/functions_visual_map_editor.php:1420 msgid "Show grid" msgstr "Afficher la grille" -#: ../../include/functions_visual_map_editor.php:1421 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3460 -#: ../../extensions/agents_modules.php:448 -#: ../../godmode/reporting/reporting_builder.item_editor.php:3726 -msgid "Update item" -msgstr "Mettre Ć  jour l'Ć©lĆ©ment" - #: ../../include/functions_visual_map_editor.php:1422 msgid "Delete item" msgstr "Supprimer l'Ć©lĆ©ment" @@ -14435,659 +40641,1035 @@ msgstr "Modifications enregistrĆ©es correctement" msgid "Could not be save." msgstr "Impossible de sauvegarder." -#: ../../include/functions_plugins.php:58 -#, php-format -msgid "Failed to erase module %d: %s" -msgstr "Ɖchec de l'effacement du module %dĀ : %s" +#: ../../include/graphs/export_data.php:88 ../../include/graphs/export_data.php:154 +msgid "An error occured exporting the data" +msgstr "Erreur d'exportation des donnĆ©es" -#: ../../include/functions_plugins.php:72 -#, php-format -msgid "Failed to erase policy module: %d" -msgstr "Ɖchec de l'effacement du module de politiqueĀ : %d" +#: ../../include/graphs/functions_gd.php:183 +#: ../../include/graphs/functions_gd.php:466 ../../include/functions_graph.php:2903 +#: ../../include/functions_graph.php:2951 +msgid "Out of limits" +msgstr "Hors limites" -#: ../../include/functions_reports.php:639 -#: ../../include/functions_reports.php:1083 -#: ../../include/functions_reporting.php:9926 -#: ../../include/functions_reporting.php:10086 -msgid "Simple graph" -msgstr "Graphique simple" +#: ../../include/graphs/functions_flot.php:365 +msgid "Cancel zoom" +msgstr "Annuler zoom" -#: ../../include/functions_reports.php:643 -#: ../../enterprise/include/functions_reporting.php:8347 -msgid "Simple baseline graph" -msgstr "Graphique simple de rĆ©fĆ©rence" +#: ../../include/graphs/functions_flot.php:367 +msgid "Warning and Critical thresholds" +msgstr "Seuils d'Ć©tat d'alerte et critique" -#: ../../include/functions_reports.php:661 -#: ../../enterprise/include/functions_reporting_csv.php:1137 -msgid "SQL vertical bar graph" -msgstr "Graphique Ć  barres verticales SQL" +#: ../../include/graphs/functions_flot.php:372 +msgid "Overview graph" +msgstr "AperƧu du graphique" -#: ../../include/functions_reports.php:665 -#: ../../enterprise/include/functions_reporting_csv.php:1141 -msgid "SQL pie graph" -msgstr "Diagramme circulaire SQL" +#: ../../include/graphs/functions_flot.php:509 +#: ../../include/functions_reporting_html.php:655 +#: ../../include/functions_reporting_html.php:4461 +#: ../../include/functions_treeview.php:315 +msgid "No data" +msgstr "Aucune donnĆ©e" -#: ../../include/functions_reports.php:669 -#: ../../enterprise/include/functions_reporting_csv.php:1139 -msgid "SQL horizontal bar graph" -msgstr "Graphique Ć  barres horizontales SQL" +#: ../../include/functions_servers.php:582 +msgid "SNMP Trap server" +msgstr "Serveur de dĆ©routements SNMP" -#: ../../include/functions_reports.php:676 -msgid "Automatic combined Graph" -msgstr "Graphique automatique combinĆ©" +#: ../../include/functions_servers.php:699 +msgid "Correlation server" +msgstr "Serveur de corrĆ©lation" -#: ../../include/functions_reports.php:682 -msgid "Availability graph" -msgstr "Graphique de disponibilitĆ©" +#: ../../include/functions_servers.php:712 ../../include/functions_servers.php:1314 +msgid "Enterprise ICMP server" +msgstr "Serveur ICMP Enterprise" -#: ../../include/functions_reports.php:687 -msgid "Module Histogram graph" -msgstr "Graphique de registres du module" +#: ../../include/functions_servers.php:725 ../../include/functions_servers.php:1317 +msgid "Enterprise SNMP server" +msgstr "Serveur SNMP Enterprise" -#: ../../include/functions_reports.php:692 -#: ../../enterprise/tools/ipam/ipam.php:453 ../../enterprise/godmode/menu.php:322 -msgid "IPAM" -msgstr "IPAM" +#: ../../include/functions_servers.php:738 +#: ../../include/class/AgentWizard.class.php:1267 +msgid "Enterprise Satellite server" +msgstr "Serveur Satellite Enterprise" -#: ../../include/functions_reports.php:693 -msgid "IPAM networks" -msgstr "RĆ©seaux IPAM" +#: ../../include/functions_servers.php:751 +msgid "Enterprise Transactional server" +msgstr "Serveur de Transaction Enterprise" -#: ../../include/functions_reports.php:698 -#: ../../include/functions_reports.php:703 -#: ../../include/functions_reports.php:707 -#: ../../include/functions_reports.php:711 -#: ../../include/functions_reports.php:717 -#: ../../enterprise/operation/services/services.service.php:128 -#: ../../enterprise/operation/services/services.list.php:508 -#: ../../enterprise/include/functions_reporting_csv.php:1991 -msgid "SLA" -msgstr "SLA" +#: ../../include/functions_servers.php:764 +msgid "Mainframe server" +msgstr "Serveur central" -#: ../../include/functions_reports.php:699 -#: ../../include/functions_reporting.php:950 -#: ../../enterprise/include/functions_reporting_csv.php:1481 -#: ../../enterprise/godmode/services/services.service.php:832 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:221 -msgid "S.L.A." -msgstr "SLA" +#: ../../include/functions_servers.php:777 +msgid "Sync server" +msgstr "Serveur sync" -#: ../../include/functions_reports.php:704 -#: ../../enterprise/include/functions_reporting.php:2371 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:222 -msgid "Monthly S.L.A." -msgstr "SLA mensuel" +#: ../../include/functions_servers.php:790 +msgid "Wux server" +msgstr "Serveur WUX" -#: ../../include/functions_reports.php:708 -#: ../../enterprise/include/functions_reporting.php:3323 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:223 -msgid "Weekly S.L.A." -msgstr "SLA hebdomadaire" +#: ../../include/functions_servers.php:803 ../../include/functions_servers.php:1344 +msgid "Log server" +msgstr "Serveur de journaux" -#: ../../include/functions_reports.php:712 -#: ../../enterprise/include/functions_reporting.php:4301 -msgid "Hourly S.L.A." -msgstr "SLA chaque heure" +#: ../../include/functions_servers.php:829 +msgid "Autoprovision server" +msgstr "Serveur de provisionnement automatique" -#: ../../include/functions_reports.php:718 -#: ../../enterprise/include/functions_reporting.php:5566 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:226 -msgid "Services S.L.A." -msgstr "SLA de services" +#: ../../include/functions_servers.php:842 +msgid "Migration server" +msgstr "Serveur de migration" -#: ../../include/functions_reports.php:724 -#: ../../include/functions_reports.php:728 -msgid "Forecasting" -msgstr "PrĆ©diction" +#: ../../include/functions_servers.php:1323 +msgid "Prediction Server" +msgstr "Serveur de prĆ©diction" -#: ../../include/functions_reports.php:725 -#: ../../enterprise/include/functions_reporting_csv.php:768 -msgid "Prediction date" -msgstr "Date de prĆ©diction" +#: ../../include/functions_servers.php:1350 +msgid "Satellite server" +msgstr "Serveur Satellite" -#: ../../include/functions_reports.php:729 -msgid "Projection graph" -msgstr "Graphique de projection" +#: ../../include/functions_servers.php:1353 +msgid "Transactional server" +msgstr "Serveur transactionnel" -#: ../../include/functions_reports.php:734 -msgid "Avg. value" -msgstr "Valeur moyenne" +#: ../../include/functions_reporting_html.php:109 +msgid "Label: " +msgstr "Ɖtiquette : " -#: ../../include/functions_reports.php:738 -msgid "Max. value" -msgstr "Valeur maximale" +#: ../../include/functions_reporting_html.php:580 +msgid "Time Failed" +msgstr "Temps d'Ć©chec" -#: ../../include/functions_reports.php:742 -msgid "Min. value" +#: ../../include/functions_reporting_html.php:584 +msgid "Downtime" +msgstr "Temps d'arrĆŖt" + +#: ../../include/functions_reporting_html.php:995 +#: ../../include/functions_reporting_html.php:2298 +#: ../../include/functions_reporting_html.php:4343 +#: ../../include/functions_reporting_html.php:4880 +#: ../../include/rest-api/models/VisualConsole/Items/SimpleValue.php:367 +msgid "Min Value" msgstr "Valeur minimale" -#: ../../include/functions_reports.php:746 -msgid "Monitor report" -msgstr "Rapport du moniteur" +#: ../../include/functions_reporting_html.php:996 +#: ../../include/functions_reporting_html.php:2299 +#: ../../include/functions_reporting_html.php:4344 +#: ../../include/functions_reporting_html.php:4881 +msgid "Average Value" +msgstr "Valeur moyenne" -#: ../../include/functions_reports.php:750 -msgid "Serialize data" -msgstr "SĆ©rialiser les donnĆ©es" +#: ../../include/functions_reporting_html.php:997 +#: ../../include/functions_reporting_html.php:2300 +#: ../../include/functions_reporting_html.php:4341 +#: ../../include/functions_reporting_html.php:4883 +#: ../../include/rest-api/models/VisualConsole/Items/SimpleValue.php:366 +msgid "Max Value" +msgstr "Valeur maximale" -#: ../../include/functions_reports.php:754 -#: ../../include/functions_reporting.php:6442 -#: ../../include/functions_reporting.php:9742 -#: ../../enterprise/include/functions_reporting_csv.php:1170 -#: ../../enterprise/include/functions_reporting_csv.php:1188 -#: ../../enterprise/include/functions_reporting_csv.php:1190 -msgid "Summatory" -msgstr "Sommation" +#: ../../include/functions_reporting_html.php:1052 +#: ../../include/functions_reporting_html.php:1060 +#: ../../include/functions_reporting_html.php:2428 +msgid "Val. by" +msgstr "Valeur par" -#: ../../include/functions_reports.php:758 -msgid "Historical Data" -msgstr "Historique des donnĆ©es" - -#: ../../include/functions_reports.php:762 -#: ../../include/functions_reporting.php:9259 -#: ../../include/functions_reporting_html.php:3754 -#: ../../enterprise/include/functions_reporting_csv.php:1311 -#: ../../enterprise/include/functions_reporting_csv.php:1325 -#: ../../enterprise/include/functions_reporting_csv.php:1329 -#: ../../enterprise/include/functions_reporting_csv.php:1340 -msgid "Increment" -msgstr "IncrĆ©ment" - -#: ../../include/functions_reports.php:766 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1742 -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:196 -#: ../../godmode/reporting/reporting_builder.item_editor.php:1238 -msgid "Last value" -msgstr "DerniĆØre valeur" - -#: ../../include/functions_reports.php:770 -#: ../../include/functions_reports.php:776 -#: ../../include/functions_reports.php:782 -#: ../../include/functions_reports.php:788 -#: ../../include/functions_reports.php:794 -#: ../../include/functions_reports.php:801 -#: ../../include/functions_reports.php:808 -#: ../../include/functions_reports.php:814 -#: ../../include/functions_reports.php:818 -#: ../../include/functions_reports.php:823 -#: ../../include/functions_reports.php:829 -msgid "Grouped" -msgstr "RegroupĆ©s" - -#: ../../include/functions_reports.php:771 ../../include/ajax/events.php:1494 -#: ../../include/functions_reporting.php:9404 -#: ../../enterprise/include/functions_reporting_csv.php:992 -#: ../../enterprise/include/class/Aws.cloud.php:345 -#: ../../enterprise/meta/include/functions_wizard_meta.php:248 -#: ../../enterprise/meta/include/functions_wizard_meta.php:533 -#: ../../enterprise/meta/include/functions_wizard_meta.php:605 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1153 -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:48 -#: ../../godmode/setup/setup.php:96 ../../godmode/setup/setup.php:249 -#: ../../godmode/servers/plugin.php:367 ../../godmode/servers/plugin.php:372 -#: ../../godmode/alerts/configure_alert_template.php:229 -#: ../../godmode/alerts/configure_alert_template.php:233 -msgid "General" -msgstr "GĆ©nĆ©ral" - -#: ../../include/functions_reports.php:777 -#: ../../include/functions_reports.php:783 -#: ../../enterprise/include/functions_reporting_csv.php:986 -msgid "Group report" -msgstr "Rapport du groupe" - -#: ../../include/functions_reports.php:789 -#: ../../include/functions_reporting.php:3052 -#: ../../enterprise/include/functions_reporting_csv.php:900 -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:47 -msgid "Exception" -msgstr "Exception" - -#: ../../include/functions_reports.php:795 -#: ../../extensions/agents_modules.php:465 -msgid "Agents/Modules" -msgstr "Agents/Modules" - -#: ../../include/functions_reports.php:802 -msgid "Agents/Modules status" -msgstr "Ɖtat des agents/modules" - -#: ../../include/functions_reports.php:809 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2251 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:438 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2225 -msgid "SQL query" -msgstr "RequĆŖte SQL" - -#: ../../include/functions_reports.php:815 -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:46 -msgid "Top n" -msgstr "Top N" - -#: ../../include/functions_reports.php:819 -msgid "Network interfaces" -msgstr "Interfaces de rĆ©seau" - -#: ../../include/functions_reports.php:824 -msgid "Custom Render" -msgstr "Rendu personnalisĆ©" - -#: ../../include/functions_reports.php:830 -#: ../../include/functions_reporting.php:8129 -#: ../../include/functions_reporting.php:8521 -#: ../../enterprise/include/functions_reporting_csv.php:473 -#: ../../enterprise/include/functions_reporting.php:1227 -msgid "Availability" -msgstr "DisponibilitĆ©" - -#: ../../include/functions_reports.php:834 -#: ../../include/functions_reports.php:838 -msgid "Text/HTML " -msgstr "Texte/HTML " - -#: ../../include/functions_reports.php:835 -#: ../../include/lib/Dashboard/Widgets/post.php:214 -#: ../../include/functions_reporting.php:6831 -#: ../../enterprise/include/functions_reporting_csv.php:2387 -#: ../../enterprise/include/functions_reporting_csv.php:2401 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2189 -#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor_form.php:74 -#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:385 -#: ../../godmode/setup/setup_visuals.php:1289 ../../godmode/setup/news.php:205 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2189 -msgid "Text" -msgstr "Texte" - -#: ../../include/functions_reports.php:839 -msgid "Import text from URL" -msgstr "Importer texte Ć  partir de l'URL" - -#: ../../include/functions_reports.php:844 -msgid "Module alert report" -msgstr "Rapport d'alerte de module" - -#: ../../include/functions_reports.php:848 -msgid "Agent alert report " -msgstr "Rapport d'alerte de l'agent" - -#: ../../include/functions_reports.php:854 -msgid "Group alert report" -msgstr "Rapport d'alerte groupe" - -#: ../../include/functions_reports.php:860 -msgid "Actions alert report " -msgstr "Rapport dā€™alerte dā€™actions " - -#: ../../include/functions_reports.php:865 -msgid "Module event report" -msgstr "Rapport d'Ć©vĆ©nement du module" - -#: ../../include/functions_reports.php:869 -msgid "Agent event report" -msgstr "Rapport d'Ć©vĆ©nement de l'agent" - -#: ../../include/functions_reports.php:873 -msgid "Group event report" -msgstr "Rapport d'Ć©vĆ©nement de groupe" - -#: ../../include/functions_reports.php:878 -#: ../../include/functions_reports.php:885 -#: ../../include/functions_reports.php:886 -#: ../../include/functions_reports.php:890 -#: ../../include/functions_reporting.php:2616 -#: ../../enterprise/operation/menu.php:19 -#: ../../enterprise/operation/snmpconsole/snmp_view.php:23 -#: ../../enterprise/operation/agentes/ver_agente.php:192 -#: ../../enterprise/operation/inventory/inventory.php:137 -#: ../../enterprise/include/functions_reporting_csv.php:754 -#: ../../enterprise/meta/general/main_menu.php:229 -#: ../../enterprise/godmode/agentes/configurar_agente.php:88 -#: ../../enterprise/godmode/policies/policies.php:539 -#: ../../godmode/setup/setup_integria.php:314 -#: ../../godmode/agentes/configurar_agente.php:712 -msgid "Inventory" -msgstr "Inventaire" - -#: ../../include/functions_reports.php:879 -#: ../../enterprise/include/functions_reporting_csv.php:696 -msgid "Agents inventory" -msgstr "inventaire d'agents" - -#: ../../include/functions_reports.php:891 -msgid "Inventory changes" -msgstr "Changements d'inventaire" - -#: ../../include/functions_reports.php:898 -#: ../../include/functions_reports.php:902 -#: ../../include/class/ModuleTemplates.class.php:195 -#: ../../include/class/ModuleTemplates.class.php:213 -#: ../../include/class/ConfigPEN.class.php:327 -#: ../../enterprise/views/ncm/agent/details.php:600 -#: ../../enterprise/meta/monitoring/wizard/wizard.module.web.php:100 -#: ../../enterprise/meta/monitoring/wizard/wizard.module.local.php:107 -#: ../../enterprise/meta/monitoring/wizard/wizard.agent.php:64 -#: ../../enterprise/meta/monitoring/wizard/wizard.module.network.php:119 -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:351 -#: ../../enterprise/godmode/modules/configure_local_component.php:483 -#: ../../enterprise/godmode/agentes/agent_disk_conf_editor.php:251 -#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:652 -#: ../../godmode/setup/setup.php:330 ../../godmode/menu.php:210 -#: ../../godmode/agentes/planned_downtime.list.php:615 -msgid "Configuration" -msgstr "Configuration" - -#: ../../include/functions_reports.php:899 -#: ../../include/functions_reporting.php:6257 -msgid "Agent configuration" -msgstr "Configuration des agents" - -#: ../../include/functions_reports.php:903 -#: ../../include/functions_reporting.php:4518 -msgid "Group configuration" -msgstr "Configuration du groupe" - -#: ../../include/functions_reports.php:906 -#: ../../include/functions_reports.php:910 -#: ../../include/functions_reports.php:914 -#: ../../include/functions_reports.php:918 -#: ../../enterprise/include/functions_enterprise.php:452 -#: ../../enterprise/meta/general/main_menu.php:381 -#: ../../enterprise/meta/general/logon_ok.php:37 -#: ../../enterprise/meta/general/main_header.php:275 -#: ../../godmode/setup/setup.php:151 ../../godmode/setup/setup.php:271 -#: ../../godmode/menu.php:342 -msgid "Netflow" -msgstr "Netflow" - -#: ../../include/functions_reports.php:907 -#: ../../enterprise/include/functions_reporting_csv.php:2607 -msgid "Netflow area chart" -msgstr "Carte de zone Netflow" - -#: ../../include/functions_reports.php:911 -msgid "Netflow data table" -msgstr "Tableau de donnĆ©es Netflow" - -#: ../../include/functions_reports.php:915 -msgid "Netflow summary table" -msgstr "Tableau rĆ©capitulatif Netflow" - -#: ../../include/functions_reports.php:919 -#: ../../include/functions_reporting.php:5933 -#: ../../enterprise/include/functions_reporting_csv.php:2786 -msgid "Netflow top-N connections" -msgstr "Connexions Netflow top-N" - -#: ../../include/functions_reports.php:925 -#: ../../enterprise/include/functions_reporting.php:2144 -msgid "Log" -msgstr "Journal" - -#: ../../include/functions_reports.php:926 -#: ../../enterprise/include/functions_reporting.php:2131 -msgid "Log report" -msgstr "Rapport de journaux" - -#: ../../include/functions_reports.php:932 -#: ../../include/functions_reports.php:933 -#: ../../include/functions_reporting.php:4396 -#: ../../enterprise/include/functions_reporting_csv.php:2531 -msgid "Permissions report" -msgstr "Rapport de permissions" - -#: ../../include/functions_reports.php:938 -#: ../../enterprise/views/ncm/devices/list.php:64 -msgid "NCM" -msgstr "NCM" - -#: ../../include/functions_reports.php:939 -msgid "Network configuration changes" -msgstr "Modifications de la configuration rĆ©seau" - -#: ../../include/functions_reports.php:956 -#: ../../enterprise/godmode/policies/policy_modules.php:1363 -#: ../../godmode/agentes/configurar_agente.php:2114 +#: ../../include/functions_reporting_html.php:1140 #, php-format -msgid "copy of %s" -msgstr "copie de %s" +msgid "%s System" +msgstr "SystĆØme %s" -#: ../../include/functions_reports.php:1066 -msgid "Macro" -msgstr "Macro" +#: ../../include/functions_reporting_html.php:1209 +#: ../../include/functions_reporting_html.php:1431 +msgid "Events by agent" +msgstr "ƉvĆ©nements par agent" -#: ../../include/functions_reports.php:1080 -#: ../../include/functions_reports.php:1210 -#: ../../enterprise/meta/monitoring/wizard/wizard.php:152 -#: ../../godmode/modules/manage_network_components_form_wizard.php:393 -#: ../../godmode/modules/manage_network_components_form_wizard.php:435 -msgid "String" -msgstr "ChaĆ®ne" +#: ../../include/functions_reporting_html.php:1226 +#: ../../include/functions_reporting_html.php:1448 +msgid "Events by user validator" +msgstr "ƉvĆ©nements par utilisateur validateur" -#: ../../include/functions_reports.php:1081 -#: ../../include/functions_reports.php:1210 -#: ../../include/functions_reports.php:1230 -msgid "Sql" -msgstr "SQL" +#: ../../include/functions_reporting_html.php:1243 +#: ../../include/functions_reporting_html.php:1465 +msgid "Events by Severity" +msgstr "ƉvĆ©nements par sĆ©vĆ©ritĆ©" -#: ../../include/functions_reports.php:1082 -msgid "Graph Sql" -msgstr "Graphe SQL" +#: ../../include/functions_reporting_html.php:1260 +#: ../../include/functions_reporting_html.php:1482 +msgid "Events validated vs unvalidated" +msgstr "ƉvĆ©nements validĆ©s vs non validĆ©s" -#: ../../include/functions_reports.php:1380 -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:759 -msgid "Period " -msgstr "PĆ©riode " +#: ../../include/functions_reporting_html.php:1573 +msgid "Sec. groups" +msgstr "Groupes secondaires" -#: ../../include/ajax/module.php:199 ../../include/functions.php:3359 +#: ../../include/functions_reporting_html.php:1593 +msgid "Remote conf." +msgstr "Configuration Ć  distance" + +#: ../../include/functions_reporting_html.php:2074 +msgid "Cell turns grey when the module is in 'not initialize' status" +msgstr "" +"La cellule devient grise lorsque le module se trouve dans un Ć©tat Ā« non " +"initialisĆ© Ā»." + +#: ../../include/functions_reporting_html.php:2364 +#: ../../include/functions_reporting_html.php:5450 +msgid "Monitors" +msgstr "Moniteurs" + +#: ../../include/functions_reporting_html.php:2383 +msgid "Events (not validated)" +msgstr "EvĆ©nements (non validĆ©s)" + +#: ../../include/functions_reporting_html.php:2549 +msgid "Events validated by user" +msgstr "ƉvĆ©nements validĆ©s par l'utilisateur" + +#: ../../include/functions_reporting_html.php:2566 +#: ../../include/functions_reporting_html.php:5739 +msgid "Events by severity" +msgstr "ƉvĆ©nements par sĆ©vĆ©ritĆ©" + +#: ../../include/functions_reporting_html.php:2583 +msgid "Amount events validated" +msgstr "Nombre d'Ć©vĆ©nements validĆ©s" + +#: ../../include/functions_reporting_html.php:3007 +msgid "Total summary" +msgstr "RĆ©sumĆ© total" + +#: ../../include/functions_reporting_html.php:3014 +msgid "No alerts fired" +msgstr "Aucune alerte dĆ©clenchĆ©e" + +#: ../../include/functions_reporting_html.php:3105 +#, php-format +msgid "Interface '%s' throughput graph" +msgstr "Interface Ā« %s Ā» graphique de rendement" + +#: ../../include/functions_reporting_html.php:3109 +msgid "Mac" +msgstr "Mac" + +#: ../../include/functions_reporting_html.php:3110 +msgid "Actual status" +msgstr "Ɖtat actuel" + +#: ../../include/functions_reporting_html.php:3474 +#: ../../include/functions_reporting_html.php:3476 +msgid "Empty modules" +msgstr "Modules vides" + +#: ../../include/functions_reporting_html.php:3483 +msgid "Warning
    Critical" +msgstr "Alerte
    Critique" + +#: ../../include/functions_reporting_html.php:3956 +msgid "Time Not Init Module" +msgstr "Temps dans le module non initialisĆ©" + +#: ../../include/functions_reporting_html.php:3967 +msgid "% Ok" +msgstr "% OK" + +#: ../../include/functions_reporting_html.php:4044 +msgid "Checks Uknown" +msgstr "VĆ©rifications inconnues" + +#: ../../include/functions_reporting_html.php:4083 +#: ../../include/functions_reporting_html.php:4230 +#: ../../include/functions_reporting_html.php:4555 +#: ../../include/functions_reporting_html.php:4561 +msgid "Primary" +msgstr "Primaire" + +#: ../../include/functions_reporting_html.php:4995 +#: ../../include/functions_reporting.php:11435 +#: ../../include/functions_reporting.php:11456 +msgid "Alert level" +msgstr "Niveau d'alerte" + +#: ../../include/functions_reporting_html.php:5224 +#, php-format +msgid "Agents in group: %s" +msgstr "Agents du groupe : %s" + +#: ../../include/functions_reporting_html.php:5326 +msgid "Last failure" +msgstr "Dernier Ć©chec" + +#: ../../include/functions_reporting_html.php:5416 +msgid "N/A(*)" +msgstr "S/O(*)" + +#: ../../include/functions_reporting_html.php:5664 +#: ../../include/functions_reporting.php:11667 +msgid "Monitor checks" +msgstr "VĆ©rifications de moniteurs" + +#: ../../include/functions_reporting_html.php:5671 +#: ../../include/functions_reporting.php:11686 +msgid "Total agents and monitors" +msgstr "Nombre total d'agents et de moniteurs" + +#: ../../include/functions_reporting_html.php:5690 +#: ../../include/functions_reporting_html.php:5695 +msgid "Node overview" +msgstr "AperƧu des nœuds" + +#: ../../include/functions_reporting_html.php:5715 +#: ../../include/functions_reporting_html.php:5727 +msgid "Critical events" +msgstr "ƉvĆ©nements en Ć©tat critique" + +#: ../../include/functions_reporting_html.php:5718 +#: ../../include/functions_reporting_html.php:5729 +msgid "Warning events" +msgstr "ƉvĆ©nements en Ć©tat d'alerte" + +#: ../../include/functions_reporting_html.php:5721 +#: ../../include/functions_reporting_html.php:5731 +msgid "OK events" +msgstr "ƉvĆ©nements en Ć©tat OK" + +#: ../../include/functions_reporting_html.php:5724 +#: ../../include/functions_reporting_html.php:5733 +msgid "Unknown events" +msgstr "ƉvĆ©nements en Ć©tat inconnu" + +#: ../../include/functions_reporting_html.php:5749 +msgid "Important Events by Criticity" +msgstr "ƉvĆ©nements importants par sĆ©vĆ©ritĆ©" + +#: ../../include/functions_reporting_html.php:5775 +#, php-format +msgid "Last activity in %s console" +msgstr "DerniĆØre activitĆ© dans la console %s" + +#: ../../include/functions_reporting_html.php:5866 +#: ../../include/functions_reporting_html.php:6008 +msgid "Events info (1hr.)" +msgstr "Information des Ć©vĆ©nements (1h)" + +#: ../../include/functions_reporting_html.php:6165 +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:6166 +msgid "" +"If the duration of the scheduled downtime is less than 5 minutes it will not be " +"represented in the graph" +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:6173 +#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:380 +msgid "Dates" +msgstr "Dates" + +#: ../../include/functions_reporting_html.php:6204 +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:6204 +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:231 +msgid "." +msgstr "." + +#: ../../include/functions.php:233 +msgid "," +msgstr "," + +#: ../../include/functions.php:488 ../../include/functions.php:640 +msgid "s" +msgstr "s" + +#: ../../include/functions.php:489 ../../include/functions.php:641 +msgid "d" +msgstr "d" + +#: ../../include/functions.php:490 ../../include/functions.php:642 +msgid "M" +msgstr "M" + +#: ../../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 +msgid "Y" +msgstr "Y" + +#: ../../include/functions.php:492 ../../include/functions.php:644 +msgid "m" +msgstr "m" + +#: ../../include/functions.php:493 ../../include/functions.php:645 +msgid "h" +msgstr "h" + +#: ../../include/functions.php:494 ../../include/functions.php:646 +msgid "N" +msgstr "N" + +#: ../../include/functions.php:1023 ../../include/functions.php:1269 +#: ../../include/functions.php:1303 ../../include/functions_graph.php:3473 +#: ../../include/functions_graph.php:3474 ../../include/functions_graph.php:5056 +#: ../../include/functions_incidents.php:34 ../../include/functions_incidents.php:75 +#: ../../include/functions_events.php:2925 +msgid "Maintenance" +msgstr "Entretien" + +#: ../../include/functions.php:1027 ../../include/functions.php:1270 +#: ../../include/functions.php:1307 ../../include/functions_graph.php:3478 +#: ../../include/functions_graph.php:3479 ../../include/functions_graph.php:5060 +#: ../../include/functions_events.php:2929 +msgid "Informational" +msgstr "Informatif" + +#: ../../include/functions.php:1043 ../../include/functions.php:1272 +#: ../../include/functions.php:1323 ../../include/functions_graph.php:3488 +#: ../../include/functions_graph.php:3489 ../../include/functions_graph.php:5076 +msgid "Minor" +msgstr "Mineur" + +#: ../../include/functions.php:1047 ../../include/functions.php:1274 +#: ../../include/functions.php:1327 ../../include/functions_graph.php:3498 +#: ../../include/functions_graph.php:3499 ../../include/functions_graph.php:5080 +msgid "Major" +msgstr "Majeure" + +#: ../../include/functions.php:1222 ../../include/functions_events.php:2845 +msgid "Monitor Critical" +msgstr "Moniteur en Ć©tat critique" + +#: ../../include/functions.php:1223 ../../include/functions_events.php:2849 +msgid "Monitor Warning" +msgstr "Moniteur en Ć©tat d'alerte" + +#: ../../include/functions.php:1224 ../../include/functions_events.php:2853 +msgid "Monitor Normal" +msgstr "Moniteur en Ć©tat normal" + +#: ../../include/functions.php:1226 +msgid "Monitor Unknown" +msgstr "Moniteur inconnu" + +#: ../../include/functions.php:1229 ../../include/functions_events.php:2629 +#: ../../include/functions_events.php:2861 +msgid "Alert recovered" +msgstr "Alertes rĆ©cupĆ©rĆ©es" + +#: ../../include/functions.php:1230 ../../include/functions_events.php:2677 +#: ../../include/functions_events.php:2865 +msgid "Alert ceased" +msgstr "Alerte arrĆŖtĆ©e" + +#: ../../include/functions.php:1231 ../../include/functions_events.php:2869 +msgid "Alert manual validation" +msgstr "Validation manuelle de la alerte" + +#: ../../include/functions.php:1233 +msgid "Agent created" +msgstr "Agent crĆ©Ć©" + +#: ../../include/functions.php:1234 ../../include/functions_events.php:2873 +msgid "Recon host detected" +msgstr "HĆ“te de reconnaissance dĆ©tectĆ©" + +#: ../../include/functions.php:1237 ../../include/functions_events.php:2673 +#: ../../include/functions_events.php:2885 +msgid "Configuration change" +msgstr "Modification de la configuration" + +#: ../../include/functions.php:1354 ../../include/functions.php:1384 +msgid "ALERT FIRED" +msgstr "ALETE DƉCLENCHƉE" + +#: ../../include/functions.php:1357 ../../include/functions.php:1394 +#: ../../include/functions_modules.php:4126 ../../include/class/Tree.class.php:646 +#: ../../include/lib/Module.php:567 ../../operation/agentes/status_monitor.php:1641 +#: ../../operation/agentes/status_monitor.php:1649 +msgid "NO DATA" +msgstr "PAS DE DONNƉES" + +#: ../../include/functions.php:2694 +#, php-format +msgid "%s seconds" +msgstr "%s secondes" + +#: ../../include/functions.php:2697 ../../include/functions.php:2698 +#, php-format +msgid "%s minutes" +msgstr "%s minutes" + +#: ../../include/functions.php:2706 ../../include/functions.php:2707 +#, php-format +msgid "%s months" +msgstr "%s mois" + +#: ../../include/functions.php:2709 ../../include/functions.php:2710 +#, php-format +msgid "%s years" +msgstr "%s ans" + +#: ../../include/functions.php:2712 +msgid "Default values will be used" +msgstr "Les valeurs par dĆ©faut seront utilisĆ©es." + +#: ../../include/functions.php:2897 ../../include/functions.php:2902 +msgid "The file exceeds the maximum size" +msgstr "Le fichier dĆ©passe la taille maximale" + +#: ../../include/functions.php:2898 +msgid "" +"Please check this PHP runtime variable values:
      upload_max_filesize "
    +"(currently "
    +msgstr ""
    +"Veuillez vĆ©rifier les valeurs de cette variable dā€™exĆ©cution PHP : 
      "
    +"upload_max_filesize (actuellement "
    +
    +#: ../../include/functions.php:2906
    +msgid "The uploaded file was only partially uploaded"
    +msgstr "Le fichier n'a ƩtƩ que partiellement tƩlƩversƩ."
    +
    +#: ../../include/functions.php:2910
    +msgid "No file was uploaded"
    +msgstr "Aucun fichier n'a ƩtƩ tƩlƩversƩ."
    +
    +#: ../../include/functions.php:2914
    +msgid "Missing a temporary folder"
    +msgstr "Dossier temporaire manquant"
    +
    +#: ../../include/functions.php:2918
    +msgid "Failed to write file to disk"
    +msgstr "Impossible d'Ć©crire le fichier sur le disque"
    +
    +#: ../../include/functions.php:2922
    +msgid "File upload stopped by extension"
    +msgstr "TƩlƩversement du fichier interrompu par l'extension"
    +
    +#: ../../include/functions.php:2926
    +msgid "Unknown upload error"
    +msgstr "Erreur inconnue de tƩlƩversement"
    +
    +#: ../../include/functions.php:3037
    +msgid "No data found to export"
    +msgstr "Aucune donnƩe Ơ exporter"
    +
    +#: ../../include/functions.php:3358 ../../operation/gis_maps/render_view.php:149
    +msgid "5 seconds"
    +msgstr "5 secondes"
    +
    +#: ../../include/functions.php:3359 ../../operation/gis_maps/render_view.php:150
    +msgid "10 seconds"
    +msgstr "10 secondes"
    +
    +#: ../../include/functions.php:3360
    +msgid "15 seconds"
    +msgstr "15 secondes"
    +
    +#: ../../include/functions.php:3361 ../../include/ajax/heatmap.ajax.php:50
    +#: ../../include/class/AgentsAlerts.class.php:804 ../../operation/heatmap.php:171
    +#: ../../operation/gis_maps/render_view.php:151
    +msgid "30 seconds"
    +msgstr "30 secondes"
    +
    +#: ../../include/functions.php:3362 ../../include/ajax/heatmap.ajax.php:51
    +#: ../../include/class/AgentsAlerts.class.php:805 ../../operation/heatmap.php:172
    +#: ../../operation/gis_maps/render_view.php:152
    +msgid "1 minute"
    +msgstr "1 minute"
    +
    +#: ../../include/functions.php:3363 ../../include/class/AgentsAlerts.class.php:806
    +#: ../../operation/gis_maps/render_view.php:153
    +msgid "2 minutes"
    +msgstr "2 minutes"
    +
    +#: ../../include/functions.php:3364 ../../include/ajax/heatmap.ajax.php:53
    +#: ../../include/ajax/module.php:198 ../../include/class/AgentsAlerts.class.php:807
    +#: ../../operation/heatmap.php:174 ../../operation/gis_maps/render_view.php:154
    +msgid "5 minutes"
    +msgstr "5 minutes"
    +
    +#: ../../include/functions.php:3365
    +msgid "15 minutes"
    +msgstr "15 minutes"
    +
    +#: ../../include/functions.php:3366 ../../include/ajax/module.php:199
     msgid "30 minutes"
     msgstr "30 minutes"
     
    -#: ../../include/ajax/module.php:201
    -#: ../../enterprise/godmode/reporting/graph_template_editor.php:220
    -msgid "6 hours"
    -msgstr "6 heures"
    +#: ../../include/functions.php:3881
    +msgid "Summatory series"
    +msgstr "SƩrie rƩcapitulative"
     
    -#: ../../include/ajax/module.php:202
    -#: ../../enterprise/godmode/reporting/graph_template_editor.php:221
    -#: ../../godmode/setup/performance.php:532
    -msgid "12 hours"
    -msgstr "12 heures"
    +#: ../../include/functions.php:3885
    +msgid "Average series"
    +msgstr "SĆ©rie moyenne"
     
    -#: ../../include/ajax/module.php:203 ../../include/ajax/graph.ajax.php:150
    -#: ../../include/functions.php:2695
    -#: ../../enterprise/godmode/reporting/graph_template_editor.php:222
    -#: ../../godmode/reporting/create_container.php:350
    -msgid "1 day"
    -msgstr "1 jour"
    +#: ../../include/functions.php:3913 ../../include/functions.php:3932
    +#: ../../include/functions.php:3946 ../../include/functions.php:3968
    +#: ../../include/functions.php:4049 ../../include/functions.php:4121
    +msgid "Unit "
    +msgstr "UnitƩ"
     
    -#: ../../include/ajax/module.php:204 ../../include/ajax/graph.ajax.php:153
    -#: ../../include/functions.php:2696
    -#: ../../godmode/reporting/create_container.php:353
    -msgid "1 week"
    -msgstr "1 semaine"
    +#: ../../include/functions.php:3994 ../../include/functions.php:4059
    +msgid "Min:"
    +msgstr "Min :"
     
    -#: ../../include/ajax/module.php:205 ../../include/ajax/graph.ajax.php:154
    -#: ../../include/functions.php:2697
    -#: ../../enterprise/godmode/reporting/graph_template_editor.php:226
    -#: ../../godmode/reporting/create_container.php:354
    -msgid "15 days"
    -msgstr "15 jours"
    +#: ../../include/functions.php:4001 ../../include/functions.php:4066
    +msgid "Max:"
    +msgstr "Max :"
     
    -#: ../../include/ajax/module.php:206 ../../include/ajax/graph.ajax.php:155
    -#: ../../include/functions.php:2698
    -#: ../../godmode/reporting/create_container.php:355
    -msgid "1 month"
    -msgstr "1 mois"
    +#: ../../include/functions.php:4008 ../../include/functions.php:4073
    +msgid "Avg:"
    +msgstr "Moy :"
     
    -#: ../../include/ajax/module.php:207
    -msgid "3 months"
    -msgstr "3 mois"
    +#: ../../include/functions.php:4118 ../../include/functions.php:4126
    +msgid "of module"
    +msgstr "du module"
     
    -#: ../../include/ajax/module.php:208
    -#: ../../enterprise/godmode/reporting/graph_template_editor.php:229
    -msgid "6 months"
    -msgstr "6 mois"
    +#: ../../include/functions.php:4143
    +msgid "Projection"
    +msgstr "Projection"
     
    -#: ../../include/ajax/module.php:209 ../../include/functions.php:2701
    -#: ../../enterprise/godmode/reporting/graph_template_editor.php:230
    -msgid "1 year"
    -msgstr "1 an"
    +#: ../../include/functions.php:5963
    +msgid "Testing Pandora FMS email"
    +msgstr "Tester lā€™email Pandora FMS"
     
    -#: ../../include/ajax/module.php:210
    -msgid "2 years"
    -msgstr "2 ans"
    +#: ../../include/functions.php:5976
    +msgid ""
    +"This is an email test sent from Pandora FMS. If you can read this, your "
    +"configuration works."
    +msgstr ""
    +"Il s'agit d'un test par e-mail envoyƩ par Pandora FMS. Si vous pouvez lire ceci, "
    +"votre configuration fonctionne."
     
    -#: ../../include/ajax/module.php:211
    -msgid "3 years"
    -msgstr "3 ans"
    +#: ../../include/functions_cron.php:455
    +msgid "Scheduled jobs"
    +msgstr "TĆ¢ches planifiĆ©es"
     
    -#: ../../include/ajax/module.php:307
    -msgid "Exact phrase"
    -msgstr "Phrase exacte"
    +#: ../../include/functions_api.php:118
    +msgid "Not `set`, `get` or `help` operation selected."
    +msgstr "Aucune opƩration `set`, `get` ou `help` sƩlectionnƩe."
     
    -#: ../../include/ajax/module.php:981
    -#: ../../enterprise/meta/include/functions_wizard_meta.php:999
    -#: ../../enterprise/meta/include/functions_wizard_meta.php:1084
    -#: ../../enterprise/meta/include/functions_wizard_meta.php:1317
    -msgid "Thresholds"
    -msgstr "Seuils"
    +#: ../../include/functions_api.php:128
    +msgid "This operation does not exist."
    +msgstr "Cette opƩration n'existe pas."
     
    -#: ../../include/ajax/module.php:1084 ../../include/ajax/module.php:1092
    -#: ../../godmode/agentes/module_manager.php:1042
    -#: ../../godmode/agentes/module_manager.php:1050
    -msgid "Adopted"
    -msgstr "AdoptƩ"
    +#: ../../include/functions_api.php:138
    +msgid "The Id does not exist in database."
    +msgstr "Lā€™ID n'existe pas dans la base de donnĆ©es."
     
    -#: ../../include/ajax/module.php:1092 ../../include/ajax/module.php:1095
    -#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:991
    -#: ../../godmode/massive/massive_edit_modules.php:1067
    -#: ../../godmode/agentes/module_manager.php:1050
    -#: ../../godmode/agentes/module_manager.php:1053
    -msgid "Unlinked"
    -msgstr "DissociƩs"
    +#: ../../include/functions_api.php:148
    +msgid "This operation can not be used in cluster elements."
    +msgstr "Cette opĆ©ration ne peut pas ĆŖtre utilisĆ©e dans les Ć©lĆ©ments de grappe."
     
    -#: ../../include/ajax/module.php:1304
    -msgid "Any monitors aren't with this filter."
    -msgstr "Pas tous les moniteurs possĆØdent ce filtre"
    +#: ../../include/functions_api.php:158
    +msgid "The user has not enough permissions for perform this action."
    +msgstr "L'utilisateur n'a pas assez d'autorisations pour effectuer cette action."
     
    -#: ../../include/ajax/module.php:1306
    -msgid "This agent doesn't have any active monitors."
    -msgstr "Cet agent n'a pas de moniteurs actifs."
    +#: ../../include/functions_api.php:178
    +msgid ""
    +"This console is not the environment administrator. Please, manage this feature "
    +"from centralized manager console (Metaconsole)."
    +msgstr ""
    +"Cette console n'est pas l'administrateur de l'environnement. Veuillez gƩrer cette "
    +"fonctionnalitƩ Ơ partir de la console de gestion centralisƩe (MƩtaconsole)."
     
    -#: ../../include/ajax/visual_console_builder.ajax.php:343
    -#: ../../include/functions_visual_map.php:2833
    -#: ../../enterprise/operation/agentes/wux_console_view.php:593
    -#: ../../enterprise/godmode/setup/setup_acl.php:791
    -#: ../../enterprise/godmode/reporting/visual_console_template.php:305
    -msgid "No data to show"
    -msgstr "Aucune donnƩe Ơ afficher"
    +#: ../../include/functions_api.php:188
    +msgid "Auth error"
    +msgstr "Erreur d'authentification"
     
    -#: ../../include/ajax/graph.ajax.php:147 ../../include/ajax/graph.ajax.php:148
    -#: ../../include/ajax/graph.ajax.php:149 ../../include/functions.php:2693
    -#: ../../include/functions.php:2694
    -#: ../../godmode/reporting/create_container.php:347
    -#: ../../godmode/reporting/create_container.php:348
    -#: ../../godmode/reporting/create_container.php:349
    +#: ../../include/functions_api.php:1456
    +msgid ""
    +"The agent could not be modified. For security reasons, use a group other than 0."
    +msgstr ""
    +"L'agent n'a pas pu ĆŖtre modifiĆ©. Pour des raisons de sĆ©curitĆ©, utilisez un groupe "
    +"autre que 0."
    +
    +#: ../../include/functions_api.php:1811
     #, php-format
    -msgid "%s hours"
    -msgstr "%s heures"
    +msgid "Updated %d/%d agents"
    +msgstr "Agents %d/%d mis Ć  jour"
     
    -#: ../../include/ajax/graph.ajax.php:151 ../../include/ajax/graph.ajax.php:152
    -#: ../../godmode/reporting/create_container.php:351
    -#: ../../godmode/reporting/create_container.php:352
    +#: ../../include/functions_api.php:1819
    +msgid "Agent updated."
    +msgstr "Agent mis Ć  jour."
    +
    +#: ../../include/functions_api.php:2010
    +msgid "Could not create OS"
    +msgstr "Impossible de crĆ©er le systĆØme d'exploitation"
    +
    +#: ../../include/functions_api.php:2049
    +msgid "Could not update OS"
    +msgstr "Impossible de mettre Ć  jour le systĆØme dā€™exploitation"
    +
    +#: ../../include/functions_api.php:2250
    +msgid "The agent was successfully deleted"
    +msgstr "L'agent a ƩtƩ supprimƩ correctement"
    +
    +#: ../../include/functions_api.php:3745
    +msgid "Network module updated."
    +msgstr "Module de rƩseau mis Ơ jour."
    +
    +#: ../../include/functions_api.php:4041
    +msgid "Plugin module updated."
    +msgstr "Module plugin mis Ć  jour."
    +
    +#: ../../include/functions_api.php:4397
     #, php-format
    -msgid "%s days"
    -msgstr "%s jours"
    +msgid "Synthetic module created ID: %s"
    +msgstr "ID de crĆ©ation du module synthĆ©tiqueĀ : %s"
     
    -#: ../../include/ajax/graph.ajax.php:161
    -msgid "Time container lapse"
    -msgstr "Intervalle du conteneur de temps"
    +#: ../../include/functions_api.php:4550
    +msgid "Synthetic module created ID: "
    +msgstr "Identifiant du module synthƩtique crƩƩ correctement : "
     
    -#: ../../include/ajax/alert_list.ajax.php:345
    -#: ../../enterprise/meta/advanced/metasetup.consoles.php:387
    -#: ../../enterprise/godmode/setup/setup_metaconsole.php:147
    -#: ../../enterprise/godmode/policies/policy_modules.php:517
    -#: ../../enterprise/godmode/policies/policy_alerts.php:126
    -#: ../../godmode/massive/massive_enable_disable_alerts.php:102
    -#: ../../godmode/agentes/configurar_agente.php:2175
    -#: ../../godmode/agentes/modificar_agente.php:234
    -#: ../../godmode/alerts/alert_list.php:366 ../../godmode/users/user_list.php:372
    -msgid "Successfully enabled"
    -msgstr "ActivƩ correctement"
    +#: ../../include/functions_api.php:4667
    +msgid "Data module updated."
    +msgstr "DonnƩes de module mises Ơ jour correctement"
     
    -#: ../../include/ajax/alert_list.ajax.php:347
    -#: ../../enterprise/meta/advanced/metasetup.consoles.php:388
    -#: ../../enterprise/godmode/setup/setup_metaconsole.php:148
    -#: ../../enterprise/godmode/policies/policy_modules.php:518
    -#: ../../enterprise/godmode/policies/policy_alerts.php:127
    -#: ../../godmode/massive/massive_enable_disable_alerts.php:102
    -#: ../../godmode/agentes/configurar_agente.php:2176
    -#: ../../godmode/agentes/modificar_agente.php:235
    -#: ../../godmode/alerts/alert_list.php:367
    -msgid "Could not be enabled"
    -msgstr "Erreur d'activation"
    +#: ../../include/functions_api.php:5040
    +msgid "SNMP module updated."
    +msgstr "Module SNMP mis Ć  jour correctement"
     
    -#: ../../include/ajax/alert_list.ajax.php:366
    -#: ../../enterprise/meta/advanced/metasetup.consoles.php:412
    -#: ../../enterprise/godmode/setup/setup_metaconsole.php:156
    -#: ../../enterprise/godmode/policies/policy_modules.php:534
    -#: ../../enterprise/godmode/policies/policy_alerts.php:152
    -#: ../../godmode/massive/massive_enable_disable_alerts.php:124
    -#: ../../godmode/agentes/configurar_agente.php:2200
    -#: ../../godmode/agentes/modificar_agente.php:277
    -#: ../../godmode/alerts/alert_list.php:393 ../../godmode/users/user_list.php:366
    -msgid "Successfully disabled"
    -msgstr "DƩsactivƩ correctement"
    +#: ../../include/functions_api.php:5647
    +msgid "Error creating alert template. Id_group cannot be left blank."
    +msgstr ""
    +"Erreur lors de la crĆ©ation du modĆØle d'alerte. Id_group ne peut pas ĆŖtre laissĆ© "
    +"vide."
     
    -#: ../../include/ajax/alert_list.ajax.php:368
    -#: ../../enterprise/godmode/setup/setup_metaconsole.php:157
    -#: ../../enterprise/godmode/policies/policy_modules.php:535
    -#: ../../enterprise/godmode/policies/policy_alerts.php:153
    -#: ../../godmode/massive/massive_enable_disable_alerts.php:124
    -#: ../../godmode/agentes/configurar_agente.php:2201
    -#: ../../godmode/agentes/modificar_agente.php:278
    -#: ../../godmode/alerts/alert_list.php:394
    -msgid "Could not be disabled"
    -msgstr "Erreur de dƩsactivation"
    +#: ../../include/functions_api.php:5661
    +msgid ""
    +"Error creating alert template. Invalid id_group or the user has not enough "
    +"permission to make this action."
    +msgstr ""
    +"Erreur lors de la crĆ©ation du modĆØle d'alerte. id_group non valide ou "
    +"l'utilisateur n'a pas assez d'autorisation pour effectuer cette action."
     
    -#: ../../include/ajax/alert_list.ajax.php:503
    -#: ../../include/class/AgentsAlerts.class.php:314
    -#: ../../enterprise/godmode/policies/policy_external_alerts.php:600
    -#: ../../enterprise/godmode/policies/policy_alerts.php:596
    -#: ../../godmode/massive/massive_add_action_alerts.php:252
    -#: ../../godmode/alerts/alert_list.list.php:753
    -#: ../../godmode/alerts/alert_list.builder.php:127
    -msgid "Number of alerts match from"
    -msgstr "Nombre d'alertes qui concordent avec"
    +#: ../../include/functions_api.php:5807
    +msgid ""
    +"Error updating alert template. Invalid id_group or the user has not enough "
    +"permission to make this action."
    +msgstr ""
    +"Erreur lors de la mise Ć  jour du modĆØle d'alerte. id_group non valide ou "
    +"l'utilisateur n'a pas assez d'autorisation pour effectuer cette action."
     
    -#: ../../include/ajax/alert_list.ajax.php:527
    -#: ../../include/class/AgentsAlerts.class.php:385
    -#: ../../include/functions_reporting_html.php:3439
    -#: ../../include/functions_reporting_html.php:5206
    -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2298
    -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2510
    -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3345
    -#: ../../enterprise/meta/monitoring/wizard/wizard.manage_alert.php:290
    -#: ../../godmode/alerts/alert_list.list.php:651
    -#: ../../godmode/alerts/alert_list.list.php:777
    -#: ../../godmode/alerts/alert_list.builder.php:173
    -#: ../../godmode/alerts/alert_view.php:361
    -#: ../../godmode/alerts/configure_alert_action.php:284
    -msgid "Threshold"
    -msgstr "Seuil"
    +#: ../../include/functions_api.php:5891
    +msgid "Successful update of the alert template"
    +msgstr "Mise Ć  jour rĆ©ussie du modĆØle d'alerte"
     
    -#: ../../include/ajax/alert_list.ajax.php:579
    -#: ../../include/functions_reporting_html.php:86
    -#: ../../include/functions_reporting_html.php:5536
    -#: ../../godmode/agentes/planned_downtime.editor.php:634
    -msgid "From:"
    -msgstr "De :"
    +#: ../../include/functions_api.php:5939
    +msgid "Error deleting alert template. Id_template doesn't exist."
    +msgstr "Erreur lors de la suppression du modĆØle d'alerte. Id_template n'existe pas."
     
    -#: ../../include/ajax/alert_list.ajax.php:593
    -#: ../../include/functions_reporting_html.php:86
    -#: ../../include/functions_reporting_html.php:5536
    -#: ../../godmode/agentes/planned_downtime.editor.php:638
    -msgid "To:"
    -msgstr "ƀ :"
    +#: ../../include/functions_api.php:5968
    +msgid "Successful delete of alert template."
    +msgstr "Suppression rĆ©ussie du modĆØle d'alerte."
    +
    +#: ../../include/functions_api.php:6388 ../../include/functions_api.php:12215
    +#: ../../include/functions_api.php:12281 ../../include/functions_api.php:12562
    +#: ../../include/functions_api.php:12642
    +#, php-format
    +msgid "%d agents affected"
    +msgstr "%dĀ agents concernĆ©s"
    +
    +#: ../../include/functions_api.php:6534
    +msgid "Correct deleting of module template."
    +msgstr "ModĆØle de module supprimĆ© correctement"
    +
    +#: ../../include/functions_api.php:6642
    +msgid "Successful delete of module template."
    +msgstr "Suppression rĆ©ussie du modĆØle de module."
    +
    +#: ../../include/functions_api.php:6675
    +msgid "Error validating alert. Id_template cannot be left blank."
    +msgstr ""
    +"Erreur lors de la validation de l'alerte. Id_template ne peut pas ĆŖtre laissĆ© "
    +"vide."
    +
    +#: ../../include/functions_api.php:6683
    +msgid "Error validating alert. Id_agent cannot be left blank."
    +msgstr ""
    +"Erreur lors de la validation de l'alerte. Id_agent ne peut pas ĆŖtre laissĆ© vide."
    +
    +#: ../../include/functions_api.php:6691
    +msgid "Error validating alert. Id_module cannot be left blank."
    +msgstr ""
    +"Erreur lors de la validation de l'alerte. Id_module ne peut pas ĆŖtre laissĆ© vide."
    +
    +#: ../../include/functions_api.php:6762
    +msgid "Error validating alert. Specified alert does not exist."
    +msgstr "Erreur lors de la validation de l'alerte. L'alerte spƩcifiƩe n'existe pas."
    +
    +#: ../../include/functions_api.php:6773
    +msgid "Error validating alert"
    +msgstr "Erreur lors de la validation de l'alerte"
    +
    +#: ../../include/functions_api.php:6847
    +#, php-format
    +msgid "Correct validation of all alerts (total %d)."
    +msgstr "Validation correcte de toutes les alertes (total %d)."
    +
    +#: ../../include/functions_api.php:6941
    +msgid "Correct validation of all policy alerts."
    +msgstr "Validation correcte de toutes les alertes de politique."
    +
    +#: ../../include/functions_api.php:6983
    +msgid ""
    +"Error stopping downtime. Periodical and running scheduled downtime cannot be "
    +"stopped."
    +msgstr ""
    +"Erreur lors de l'arrĆŖt du temps d'arrĆŖt. Les temps d'arrĆŖt pĆ©riodiques et en "
    +"cours d'exĆ©cution ne peuvent pas ĆŖtre arrĆŖtĆ©s."
    +
    +#: ../../include/functions_api.php:6996
    +msgid "Downtime stopped."
    +msgstr "Temps d'arrĆŖt interrompu"
    +
    +#: ../../include/functions_api.php:7478
    +msgid "and this modules are doesn't exists or not applicable a this agents: "
    +msgstr "et ce module n'existe pas ou n'est pas applicable Ć  ces agents : "
    +
    +#: ../../include/functions_api.php:7482
    +msgid "and this agents are generate problems: "
    +msgstr "et ces agents gĆ©nĆØrent des problĆØmes : "
    +
    +#: ../../include/functions_api.php:7486
    +msgid "and this agents with ids are doesn't exists: "
    +msgstr "et ces agents avec des identifiants n'existent pas : "
    +
    +#: ../../include/functions_api.php:7634
    +msgid "Planned downtime updated"
    +msgstr "Temps d'arrĆŖt planifiĆ© mis Ć  jour"
    +
    +#: ../../include/functions_api.php:7710
    +msgid " Agents deleted"
    +msgstr " Agents supprimƩs"
    +
    +#: ../../include/functions_api.php:7791
    +msgid " Agents added"
    +msgstr " Agents ajoutƩs"
    +
    +#: ../../include/functions_api.php:7911
    +msgid "Data policy module updated."
    +msgstr "Politique de module de donnƩes mise Ơ jour"
    +
    +#: ../../include/functions_api.php:8144
    +msgid "Network policy module updated."
    +msgstr "Module de politique de rƩseau mis Ơ jour correctement"
    +
    +#: ../../include/functions_api.php:8401
    +msgid "Plugin policy module updated."
    +msgstr "Module de politique de plugin mis Ć  jour correctement"
    +
    +#: ../../include/functions_api.php:8910
    +msgid "SNMP policy module updated."
    +msgstr "Module de politique SNMP mis Ć  jour correctement"
    +
    +#: ../../include/functions_api.php:9255
    +msgid "Successful deletion"
    +msgstr "Suppression rƩussie"
    +
    +#: ../../include/functions_api.php:9571
    +msgid "User created."
    +msgstr "Utilisateur crƩƩ."
    +
    +#: ../../include/functions_api.php:9666
    +msgid "User updated."
    +msgstr "Utilisateur mis Ć  jour."
    +
    +#: ../../include/functions_api.php:9745
    +msgid "Enabled user."
    +msgstr "Utilisateur activƩ"
    +
    +#: ../../include/functions_api.php:9753
    +msgid "Disabled user."
    +msgstr "Utilisateur dƩsactivƩ"
    +
    +#: ../../include/functions_api.php:10050
    +#, 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:10222
    +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:10362
    +#, php-format
    +msgid "Module has been created in %d agents."
    +msgstr "Le module a Ć©tĆ© crĆ©Ć© dans %dĀ agents."
    +
    +#: ../../include/functions_api.php:10492
    +#, php-format
    +msgid "Action has been set for %d agents."
    +msgstr "Une action a Ć©tĆ© dĆ©finie pour %dĀ agents."
    +
    +#: ../../include/functions_api.php:11805
    +msgid "User deleted."
    +msgstr "Utilisateur supprimƩ."
    +
    +#: ../../include/functions_api.php:11866
    +msgid "User profile added."
    +msgstr "Profil dā€™utilisateur ajoutĆ©."
    +
    +#: ../../include/functions_api.php:11933
    +msgid "User profile deleted."
    +msgstr "Profil dā€™utilisateur supprimĆ©."
    +
    +#: ../../include/functions_api.php:12222
    +msgid "Module disabled successfully."
    +msgstr "Module dƩsactivƩ correctement."
    +
    +#: ../../include/functions_api.php:12224
    +msgid "The module could not be disabled."
    +msgstr "Erreur de dƩsactivation du module."
    +
    +#: ../../include/functions_api.php:12288
    +msgid "Module enabled successfully."
    +msgstr "Module activƩ correctement."
    +
    +#: ../../include/functions_api.php:12290
    +msgid "The module could not be enabled."
    +msgstr "Erreur d'activation du module."
    +
    +#: ../../include/functions_api.php:12338 ../../include/functions_api.php:12391
    +msgid "The alert could not be disabled."
    +msgstr "Erreur de dĆ©sactivation de lā€™alerte."
    +
    +#: ../../include/functions_api.php:12438 ../../include/functions_api.php:12491
    +msgid "The alert could not be enabled."
    +msgstr "L'alerte n'a pas pu ĆŖtre activĆ©e."
    +
    +#: ../../include/functions_api.php:13754
    +msgid "Enabled agent."
    +msgstr "Agent activƩ"
    +
    +#: ../../include/functions_api.php:13762
    +msgid "Disabled agent."
    +msgstr "Agent dƩsactivƩ"
    +
    +#: ../../include/functions_api.php:14741
    +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:14743
    +#, 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:14746
    +msgid "This function is for metaconsole only."
    +msgstr "Cette fonction est rƩservƩe Ơ la MƩtaconsole."
    +
    +#: ../../include/functions_api.php:15131 ../../include/functions_api.php:15202
    +msgid "Successfully deleted."
    +msgstr "SupprimƩ correctement"
    +
    +#: ../../include/functions_api.php:15161
    +msgid "The user cannot access the cluster."
    +msgstr "L'utilisateur ne peut pas accƩder au grappe."
    +
    +#: ../../include/functions_api.php:16047
    +msgid "Event filter successfully created."
    +msgstr "Filtre d'ƩvƩnement crƩƩ correctement."
    +
    +#: ../../include/functions_api.php:16280
    +msgid "Event filter successfully updated."
    +msgstr "Filtre d'ƩvƩnement mis Ơ jour correctement."
    +
    +#: ../../include/functions_api.php:16321
    +msgid "Event filter successfully deleted."
    +msgstr "Filtre d'ƩvƩnement supprimƩ correctement."
    +
    +#: ../../include/functions_api.php:16637
    +msgid "Validated traps."
    +msgstr "Traps validƩs."
    +
    +#: ../../include/functions_api.php:16664
    +msgid "Deleted traps."
    +msgstr "Traps supprimƩs."
    +
    +#: ../../include/functions_api.php:16857
    +#, 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:16859
    +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:17311
    +#, 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:17500
    +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:17508
    +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:17533
    +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:17541
    +msgid "Enabled discovery task."
    +msgstr "TĆ¢che de dĆ©couverte activĆ©e."
    +
    +#: ../../include/functions_api.php:17549
    +msgid "Disabled discovery task."
    +msgstr "TĆ¢che de dĆ©couverte dĆ©sactivĆ©e."
    +
    +#: ../../include/functions_networkmap.php:1303
    +msgid "Radial dynamic"
    +msgstr "Dynamique radiale"
    +
    +#: ../../include/functions_networkmap.php:1307 ../../include/functions_maps.php:38
    +msgid "Topology"
    +msgstr "Topologie"
    +
    +#: ../../include/functions_networkmap.php:1332
    +msgid "Create a new topology map"
    +msgstr "CrƩer une nouvelle carte de topologie"
    +
    +#: ../../include/functions_networkmap.php:1333
    +msgid "Create a new group map"
    +msgstr "CrƩer une nouvelle carte de groupe"
    +
    +#: ../../include/functions_networkmap.php:1334
    +msgid "Create a new dynamic map"
    +msgstr "CrƩer une nouvelle carte dynamique"
    +
    +#: ../../include/functions_networkmap.php:1336
    +msgid "Create a new radial dynamic map"
    +msgstr "CrƩer une nouvelle carte dynamique radiale"
    +
    +#: ../../include/functions_networkmap.php:2068 ../../include/functions_maps.php:73
    +#: ../../include/functions_planned_downtimes.php:949
    +msgid "Copy of "
    +msgstr "Copie de "
    +
    +#: ../../include/functions_networkmap.php:3404
    +msgid "Map not found."
    +msgstr "Carte introuvable."
     
     #: ../../include/ajax/double_auth.ajax.php:144
     msgid "This is the private code that you should use with your authenticator app"
    @@ -15097,17 +41679,10 @@ msgstr ""
     
     #: ../../include/ajax/double_auth.ajax.php:145
     #: ../../include/ajax/double_auth.ajax.php:288
    -msgid ""
    -"You could enter the code manually or use the QR code to add it automatically"
    +msgid "You could enter the code manually or use the QR code to add it automatically"
     msgstr ""
    -"Vous pouvez introduire le code manuellement ou utiliser le code QR pour "
    -"l'ajouter automatiquement"
    -
    -#: ../../include/ajax/double_auth.ajax.php:149
    -#: ../../include/ajax/double_auth.ajax.php:292
    -#: ../../enterprise/godmode/modules/manage_inventory_modules_form.php:125
    -msgid "Code"
    -msgstr "Code"
    +"Vous pouvez introduire le code manuellement ou utiliser le code QR pour l'ajouter "
    +"automatiquement"
     
     #: ../../include/ajax/double_auth.ajax.php:151
     #: ../../include/ajax/double_auth.ajax.php:294
    @@ -15121,8 +41696,7 @@ msgstr "Vous ĆŖtes sur le point d'activer la double authentification"
     #: ../../include/ajax/double_auth.ajax.php:192
     msgid ""
     "With this option enabled, your account access will be more secure, \n"
    -"\t\tcause a code generated by other application will be required after the "
    -"login"
    +"\t\tcause a code generated by other application will be required after the login"
     msgstr ""
     "Si vous activez cette option, l'accĆØs Ć  votre compte sera plus sĆ©curisĆ©, \n"
     "\t\tparce qu'un code gĆ©nĆ©rĆ© par une autre application sera nĆ©cessaire aprĆØs la "
    @@ -15131,8 +41705,7 @@ msgstr ""
     #: ../../include/ajax/double_auth.ajax.php:197
     msgid "You will need to install the app from the following link before continue"
     msgstr ""
    -"Vous devrez installer l'application Ć  partir du lien ci-dessous avant de "
    -"continuer"
    +"Vous devrez installer l'application Ć  partir du lien ci-dessous avant de continuer"
     
     #: ../../include/ajax/double_auth.ajax.php:202
     msgid "Download the app"
    @@ -15182,15 +41755,18 @@ msgstr "Valider le code"
     msgid "The code is valid, you can exit now"
     msgstr "Le code est valide, vous pouvez sortir maintenant."
     
    -#: ../../include/ajax/double_auth.ajax.php:500 ../../index.php:333
    -#: ../../enterprise/meta/index.php:295 ../../mobile/include/user.class.php:280
    -msgid "Invalid code"
    -msgstr "Code non valide"
    -
     #: ../../include/ajax/double_auth.ajax.php:508
     msgid "The code is valid, but it was an error saving the data"
     msgstr "Le code est valide, mais il y a une erreur de sauvegarde des donnƩes"
     
    +#: ../../include/ajax/heatmap.ajax.php:52 ../../operation/heatmap.php:173
    +msgid "3 minutes"
    +msgstr "3 minutes"
    +
    +#: ../../include/ajax/heatmap.ajax.php:78 ../../operation/events/events.php:1629
    +msgid "Group agents"
    +msgstr "Groupes d'agents"
    +
     #: ../../include/ajax/heatmap.ajax.php:79
     msgid "Group modules by tag"
     msgstr "Regrouper les modules par balise"
    @@ -15203,102 +41779,27 @@ msgstr "Regrouper les modules par groupe de modules"
     msgid "Show groups"
     msgstr "Afficher les groupes"
     
    -#: ../../include/ajax/custom_fields.php:413
    -#: ../../include/class/AgentWizard.class.php:1184
    -msgid "Treshold"
    -msgstr "Seuil"
    +#: ../../include/ajax/alert_list.ajax.php:289
    +#: ../../include/ajax/alert_list.ajax.php:314 ../../include/ajax/module.php:970
    +msgid "Force execution"
    +msgstr "Forcer l'exƩcution"
     
    -#: ../../include/ajax/custom_fields.php:414
    -msgid "Current interval"
    -msgstr "Intervalle actuel"
    +#: ../../include/ajax/alert_list.ajax.php:289
    +#: ../../include/ajax/alert_list.ajax.php:314 ../../include/ajax/module.php:970
    +msgid "F."
    +msgstr "F."
     
    -#: ../../include/ajax/custom_fields.php:460
    -#: ../../include/ajax/custom_fields.php:513
    -msgid "Modules normal"
    -msgstr "Modules normaux"
    +#: ../../include/ajax/alert_list.ajax.php:341
    +#: ../../operation/agentes/alerts_status.php:365
    +#: ../../operation/agentes/alerts_status.php:366
    +#: ../../operation/agentes/alerts_status.php:406
    +#: ../../operation/agentes/alerts_status.php:407
    +msgid "No alerts found"
    +msgstr "Aucune alerte retrouvƩe"
     
    -#: ../../include/ajax/custom_fields.php:471
    -msgid "Modules critical"
    -msgstr "Modules critiques"
    -
    -#: ../../include/ajax/custom_fields.php:482
    -msgid "Modules warning"
    -msgstr "Modules en avertissement"
    -
    -#: ../../include/ajax/custom_fields.php:492
    -msgid "Modules unknown"
    -msgstr "Modules inconnus"
    -
    -#: ../../include/ajax/custom_fields.php:503
    -msgid "Modules no init"
    -msgstr "Modules non initialisƩs"
    -
    -#: ../../include/ajax/custom_fields.php:545
    -msgid "New Filter"
    -msgstr "Nouveau filtre"
    -
    -#: ../../include/ajax/custom_fields.php:552
    -msgid "Existing Filter"
    -msgstr "Filtre existant"
    -
    -#: ../../include/ajax/custom_fields.php:652
    -#: ../../enterprise/meta/event/custom_events.php:44
    -#: ../../godmode/snmpconsole/snmp_filters.php:37
    -#: ../../godmode/events/event_filter.php:225
    -#: ../../godmode/netflow/nf_edit.php:217
    -#: ../../godmode/netflow/nf_edit_form.php:190
    -msgid "Create filter"
    -msgstr "CrƩer un filtre"
    -
    -#: ../../include/ajax/custom_fields.php:700
    -msgid "Delete filter"
    -msgstr "Supprimer le filtre"
    -
    -#: ../../include/ajax/custom_fields.php:737
    -#: ../../godmode/agentes/fields_manager.php:46
    -msgid "The name must not be empty"
    -msgstr "Saisie de nom obligatoire"
    -
    -#: ../../include/ajax/custom_fields.php:750
    -msgid "Filter name already exists in the bbdd"
    -msgstr "Le nom du filtre existe dƩjƠ dans la base de donnƩes"
    -
    -#: ../../include/ajax/custom_fields.php:762
    -msgid "Please, select a custom field"
    -msgstr "Veuillez sƩlectionner un champ personnalisƩ"
    -
    -#: ../../include/ajax/custom_fields.php:790
    -msgid "Success create filter."
    -msgstr "Filtre de crƩation rƩussi."
    -
    -#: ../../include/ajax/custom_fields.php:797
    -msgid "Error create filter."
    -msgstr "Erreur de crƩation de filtre."
    -
    -#: ../../include/ajax/custom_fields.php:822
    -#: ../../include/ajax/custom_fields.php:895
    -msgid "please, select a filter"
    -msgstr "SĆ©lectionnez un filtre"
    -
    -#: ../../include/ajax/custom_fields.php:838
    -msgid "please, select a custom field"
    -msgstr "SƩlectionnez un champ personnalisƩ"
    -
    -#: ../../include/ajax/custom_fields.php:864
    -msgid "Success update filter."
    -msgstr "Filtre de mise Ơ jour rƩussie."
    -
    -#: ../../include/ajax/custom_fields.php:871
    -msgid "Error update filter."
    -msgstr "Erreur de mise Ć  jour du filtre."
    -
    -#: ../../include/ajax/custom_fields.php:914
    -msgid "Success delete filter."
    -msgstr "Filtre supprimƩe correctement"
    -
    -#: ../../include/ajax/custom_fields.php:921
    -msgid "Error delete filter."
    -msgstr "Erreur de suppression du filtre."
    +#: ../../include/ajax/alert_list.ajax.php:633
    +msgid "Insufficient permissions to validate alerts"
    +msgstr "Autorisations insuffisantes pour valider les alertes"
     
     #: ../../include/ajax/snmp_browser.ajax.php:113
     #: ../../include/ajax/snmp_browser.ajax.php:124
    @@ -15326,328 +41827,2572 @@ msgstr "Ɖchec de la crĆ©ation de la politique"
     msgid "Policy created succesfully"
     msgstr "Politique crƩƩe correctement"
     
    -#: ../../include/ajax/events.php:97
    +#: ../../include/ajax/module.php:207
    +msgid "3 months"
    +msgstr "3 mois"
    +
    +#: ../../include/ajax/module.php:210
    +msgid "2 years"
    +msgstr "2 ans"
    +
    +#: ../../include/ajax/module.php:211
    +msgid "3 years"
    +msgstr "3 ans"
    +
    +#: ../../include/ajax/module.php:223 ../../operation/agentes/datos_agente.php:194
    +msgid "Choose a time from now"
    +msgstr "Choisir un temps Ć  partir de maintenant"
    +
    +#: ../../include/ajax/module.php:249 ../../operation/agentes/datos_agente.php:197
    +msgid "Specify time range"
    +msgstr "SpƩcifier l'intervalle de temps"
    +
    +#: ../../include/ajax/module.php:307
    +msgid "Exact phrase"
    +msgstr "Phrase exacte"
    +
    +#: ../../include/ajax/module.php:399 ../../operation/agentes/stat_win.php:491
    +#: ../../operation/agentes/interface_traffic_graph_win.php:308
    +msgid ""
    +"In Pandora FMS, data is stored compressed. The data visualization in database, "
    +"charts or CSV exported data won't match, because is interpreted at runtime. "
    +"Please check 'Pandora FMS Engineering' chapter from documentation."
    +msgstr ""
    +"Dans Pandora FMS, les donnƩes sont stockƩes compressƩes. La visualisation des "
    +"donnƩes dans la base de donnƩes, les graphiques ou les donnƩes exportƩes CSV ne "
    +"correspondront pas, car elles sont interprƩtƩes au moment de l'exƩcution. "
    +"Veuillez consulter le chapitre Ā«Ā Pandora FMS IngĆ©nierieĀ Ā» de la documentation."
    +
    +#: ../../include/ajax/module.php:1304
    +msgid "Any monitors aren't with this filter."
    +msgstr "Pas tous les moniteurs possĆØdent ce filtre"
    +
    +#: ../../include/ajax/module.php:1306
    +msgid "This agent doesn't have any active monitors."
    +msgstr "Cet agent n'a pas de moniteurs actifs."
    +
    +#: ../../include/ajax/custom_fields.php:414
    +msgid "Current interval"
    +msgstr "Intervalle actuel"
    +
    +#: ../../include/ajax/custom_fields.php:460 ../../include/ajax/custom_fields.php:513
    +msgid "Modules normal"
    +msgstr "Modules normaux"
    +
    +#: ../../include/ajax/custom_fields.php:471
    +msgid "Modules critical"
    +msgstr "Modules critiques"
    +
    +#: ../../include/ajax/custom_fields.php:482
    +msgid "Modules warning"
    +msgstr "Modules en avertissement"
    +
    +#: ../../include/ajax/custom_fields.php:492
    +msgid "Modules unknown"
    +msgstr "Modules inconnus"
    +
    +#: ../../include/ajax/custom_fields.php:503
    +msgid "Modules no init"
    +msgstr "Modules non initialisƩs"
    +
    +#: ../../include/ajax/custom_fields.php:545
    +msgid "New Filter"
    +msgstr "Nouveau filtre"
    +
    +#: ../../include/ajax/custom_fields.php:552
    +msgid "Existing Filter"
    +msgstr "Filtre existant"
    +
    +#: ../../include/ajax/custom_fields.php:700
    +msgid "Delete filter"
    +msgstr "Supprimer le filtre"
    +
    +#: ../../include/ajax/custom_fields.php:750
    +msgid "Filter name already exists in the bbdd"
    +msgstr "Le nom du filtre existe dƩjƠ dans la base de donnƩes"
    +
    +#: ../../include/ajax/custom_fields.php:762
    +msgid "Please, select a custom field"
    +msgstr "Veuillez sƩlectionner un champ personnalisƩ"
    +
    +#: ../../include/ajax/custom_fields.php:790
    +msgid "Success create filter."
    +msgstr "Filtre de crƩation rƩussi."
    +
    +#: ../../include/ajax/custom_fields.php:797
    +msgid "Error create filter."
    +msgstr "Erreur de crƩation de filtre."
    +
    +#: ../../include/ajax/custom_fields.php:822 ../../include/ajax/custom_fields.php:895
    +msgid "please, select a filter"
    +msgstr "SĆ©lectionnez un filtre"
    +
    +#: ../../include/ajax/custom_fields.php:838
    +msgid "please, select a custom field"
    +msgstr "SƩlectionnez un champ personnalisƩ"
    +
    +#: ../../include/ajax/custom_fields.php:864
    +msgid "Success update filter."
    +msgstr "Filtre de mise Ơ jour rƩussie."
    +
    +#: ../../include/ajax/custom_fields.php:871
    +msgid "Error update filter."
    +msgstr "Erreur de mise Ć  jour du filtre."
    +
    +#: ../../include/ajax/custom_fields.php:914
    +msgid "Success delete filter."
    +msgstr "Filtre supprimƩe correctement"
    +
    +#: ../../include/ajax/custom_fields.php:921
    +msgid "Error delete filter."
    +msgstr "Erreur de suppression du filtre."
    +
    +#: ../../include/ajax/events.php:95
     msgid "Failed to retrieve comments"
     msgstr "Ɖchec de la rĆ©cupĆ©ration des commentaires"
     
    -#: ../../include/ajax/events.php:1176
    +#: ../../include/ajax/events.php:748
    +msgid "New filter"
    +msgstr "Nouveau filtre"
    +
    +#: ../../include/ajax/events.php:766
    +msgid "Save in Group"
    +msgstr "Enregistrer dans le groupe"
    +
    +#: ../../include/ajax/events.php:802
    +msgid "Overwrite filter"
    +msgstr "Ɖcraser le filtre"
    +
    +#: ../../include/ajax/events.php:873
    +msgid "Filter name cannot be left blank"
    +msgstr "Le nom du filtre ne peut pas ĆŖtre laissĆ© en blanc"
    +
    +#: ../../include/ajax/events.php:1328
     msgid "Error executing response"
     msgstr "Erreur lors de l'exƩcution de la rƩponse"
     
    -#: ../../include/ajax/events.php:1213
    -#: ../../enterprise/tools/ipam/ipam_ajax.php:540
    -#, php-format
    -msgid "Executing command: %s"
    -msgstr "ExƩcution de la commande : %s"
    -
    -#: ../../include/ajax/events.php:1230 ../../include/ajax/events.php:1254
    -#: ../../enterprise/tools/ipam/ipam_ajax.php:551
    -msgid "Execute again"
    -msgstr "ExƩcuter Ơ nouveau"
    -
    -#: ../../include/ajax/events.php:1500
    +#: ../../include/ajax/events.php:1705
     msgid "Related"
     msgstr "AssociƩ"
     
    -#: ../../include/ajax/events.php:1512
    +#: ../../include/ajax/events.php:1717
     msgid "Agent fields"
     msgstr "Champs d'agent"
     
    -#: ../../include/ajax/events.php:1544
    -#: ../../enterprise/meta/event/custom_events.php:79
    -#: ../../godmode/events/events.php:100
    -msgid "Responses"
    -msgstr "RĆ©ponses"
    -
    -#: ../../include/ajax/events.php:1650
    +#: ../../include/ajax/events.php:1855
     msgid "Error adding comment"
     msgstr "Erreur d'ajout du commentaire"
     
    -#: ../../include/ajax/events.php:1651
    +#: ../../include/ajax/events.php:1862
     msgid "Comment added successfully"
     msgstr "Commentaire ajoutƩ correctement"
     
    -#: ../../include/ajax/events.php:1652
    +#: ../../include/ajax/events.php:1869
     msgid "Error changing event status"
     msgstr "Erreur de modification de l'Ʃtat de l'ƩvƩnement"
     
    -#: ../../include/ajax/events.php:1653
    +#: ../../include/ajax/events.php:1876
     msgid "Event status changed successfully"
     msgstr "Ɖtat de l'Ć©vĆ©nement modifiĆ© correctement"
     
    -#: ../../include/ajax/events.php:1654
    +#: ../../include/ajax/events.php:1883
     msgid "Error changing event owner"
     msgstr "Erreur de modification du propriƩtaire de l'ƩvƩnement"
     
    -#: ../../include/ajax/events.php:1655
    +#: ../../include/ajax/events.php:1890
     msgid "Event owner changed successfully"
     msgstr "PropriƩtaire de l'ƩvƩnement modifiƩ correctement"
     
    -#: ../../include/ajax/events.php:1656
    +#: ../../include/ajax/events.php:1897
     msgid "Error deleting event"
     msgstr "Erreur de suppression de l'ƩvƩnement"
     
    -#: ../../include/ajax/events.php:1824
    -#: ../../enterprise/meta/include/functions_wizard_meta.php:495
    -#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:753
    -#: ../../godmode/massive/massive_edit_modules.php:817
    -#: ../../godmode/agentes/module_manager_editor_wmi.php:59
    -#: ../../godmode/agentes/module_manager_editor_network.php:94
    -msgid "Auto"
    -msgstr "Automatique"
    -
    -#: ../../include/ajax/events.php:1863
    +#: ../../include/ajax/events.php:2023
     msgid "Show all Events 24h"
     msgstr "Afficher tous les Ć©vĆ©nements des derniĆØres 24h"
     
    -#: ../../include/ajax/events.php:2000
    +#: ../../include/ajax/events.php:2113
     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:2029
    -#: ../../include/class/ExternalTools.class.php:581
    -#: ../../include/functions_events.php:3836
    -#: ../../enterprise/views/ncm/agent/details.php:689
    -msgid "Execute"
    -msgstr "ExƩcuter"
    +#: ../../include/ajax/events.php:2175
    +msgid "Total number of events in this node reached"
    +msgstr "Nombre total dā€™Ć©vĆ©nements dans ce nœud atteint"
     
    -#: ../../include/ajax/events.php:2108
    -msgid "Alert fired in module "
    -msgstr "Alerte dƩclenchƩe dans le module "
    +#: ../../include/ajax/events.php:2209
    +msgid "Total Events per node"
    +msgstr "Nombre total dā€™Ć©vĆ©nements par nœud"
     
    -#: ../../include/ajax/events.php:2122 ../../include/ajax/events.php:2136
    -#: ../../include/ajax/events.php:2150
    -#: ../../enterprise/godmode/massive/massive_add_modules_policy.php:82
    -msgid "Module "
    -msgstr "Le module "
    +#: ../../include/ajax/events.php:2263 ../../operation/events/events.php:1468
    +msgid "Events list"
    +msgstr "Liste des ƩvƩnements"
     
    -#: ../../include/ajax/events.php:2123
    -msgid " is going to critical"
    -msgstr " est en train de changer Ć  l'Ć©tat critique"
    +#: ../../include/ajax/events.php:2274
    +msgid "Console configuration"
    +msgstr "Configuration de la console"
     
    -#: ../../include/ajax/events.php:2137
    -msgid " is going to warning"
    -msgstr " est en train de changer Ć  l'Ć©tat d'alerte"
    +#: ../../include/ajax/events.php:2281
    +msgid "Set condition"
    +msgstr "DĆ©finir la condition"
     
    -#: ../../include/ajax/events.php:2151
    -msgid " is going to unknown"
    -msgstr " est en train de changer Ć  l'Ć©tat inconnu"
    +#: ../../include/ajax/events.php:2288 ../../operation/events/sound_events.php:192
    +msgid "All new events"
    +msgstr "Tous les nouveaux ƩvƩnements"
    +
    +#: ../../include/ajax/events.php:2325 ../../operation/events/sound_events.php:229
    +msgid "Time Sound"
    +msgstr "CronomƩtrer mƩlodie"
    +
    +#: ../../include/ajax/events.php:2356
    +msgid "Sound melody"
    +msgstr "MĆ©lodie sonore"
    +
    +#: ../../include/ajax/events.php:2370
    +msgid "Test sound"
    +msgstr "Tester mƩlodie"
    +
    +#: ../../include/ajax/events.php:2394
    +msgid "Discovered alerts"
    +msgstr "Alertes dƩcouvertes"
    +
    +#: ../../include/ajax/events.php:2401
    +msgid "No alerts discovered"
    +msgstr "Aucune alerte dƩcouverte"
    +
    +#: ../../include/ajax/events.php:2406
    +msgid "Congrats! thereĆ¢Ā€Ā™s nothing to show"
    +msgstr "FĆ©licitations! il nā€™y a rien Ć  montrer"
    +
    +#: ../../include/ajax/graph.ajax.php:161
    +msgid "Time container lapse"
    +msgstr "Intervalle du conteneur de temps"
    +
    +#: ../../include/functions_agents.php:1009
    +msgid ""
    +"There was an error copying the agent configuration, the copy has been cancelled"
    +msgstr "Erreur de copie de la configuration de l'agent, la copie a ƩtƩ annulƩe."
    +
    +#: ../../include/functions_agents.php:2966 ../../include/functions_agents.php:3005
    +#: ../../include/functions_agents.php:3076
    +msgid "No Monitors"
    +msgstr "Aucun moniteur"
    +
    +#: ../../include/functions_agents.php:2974 ../../include/functions_agents.php:3029
    +#: ../../include/functions_agents.php:3084
    +#: ../../include/functions_reporting.php:12456
    +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:12463
    +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:12470
    +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:12477
    +msgid "All Monitors OK"
    +msgstr "Tous les moniteurs OK"
    +
    +#: ../../include/functions_agents.php:3017
    +msgid "Alert fired on agent"
    +msgstr "Alerte dĆ©clenchĆ©e dans lā€™agent"
    +
    +#: ../../include/functions_agents.php:4010
    +msgid "Dialog response time"
    +msgstr "Temps de rƩponse du dialogue"
    +
    +#: ../../include/functions_plugins.php:58
    +#, php-format
    +msgid "Failed to erase module %d: %s"
    +msgstr "Ɖchec de l'effacement du module %dĀ : %s"
    +
    +#: ../../include/functions_plugins.php:72
    +#, php-format
    +msgid "Failed to erase policy module: %d"
    +msgstr "Ɖchec de l'effacement du module de politiqueĀ : %d"
    +
    +#: ../../include/functions_integriaims.php:42
    +msgid "Configure Integria IMS"
    +msgstr "Configurer Integria IMS"
    +
    +#: ../../include/functions_integriaims.php:43
    +msgid "Ticket list"
    +msgstr "Liste des Tickets"
    +
    +#: ../../include/functions_integriaims.php:44
    +msgid "New ticket"
    +msgstr "Nouveau ticket"
    +
    +#: ../../include/functions_integriaims.php:73
    +msgid "Edit ticket"
    +msgstr "Modifier le ticket"
    +
    +#: ../../include/functions_integriaims.php:74
    +msgid "View ticket"
    +msgstr "Voir le ticket"
    +
    +#: ../../include/functions_integriaims.php:307
    +msgid ""
    +"API request failed. Please check Integria IMS' access credentials in Pandora "
    +"setup."
    +msgstr ""
    +"Ɖchec de la requĆŖte d'API. Veuillez vĆ©rifier les identifiants d'accĆØs d'Integria "
    +"IMS dans la configuration de Pandora FMS."
    +
    +#: ../../include/functions_integriaims.php:557
    +msgid "File successfully added"
    +msgstr "Fichier ajoutƩ correctement"
    +
    +#: ../../include/functions_integriaims.php:558
    +msgid "File could not be added"
    +msgstr "Impossible d'ajouter le fichier"
    +
    +#: ../../include/functions_integriaims.php:561
    +msgid "File has an invalid extension"
    +msgstr "Le fichier a une extension invalide"
    +
    +#: ../../include/functions_modules.php:4053
    +msgid "Realtime SNMP graph"
    +msgstr "Graphique SNMP en temps rƩel"
    +
    +#: ../../include/functions_modules.php:4118
    +msgid "ALL"
    +msgstr "TOUT"
    +
    +#: ../../include/functions_modules.php:4134
    +msgid "NOT NORMAL"
    +msgstr "PAS NORMAL"
    +
    +#: ../../include/auth/mysql.php:319 ../../include/auth/mysql.php:347
    +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:334 ../../include/auth/mysql.php:397
    +#: ../../include/auth/mysql.php:412 ../../include/auth/mysql.php:443
    +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:360
    +msgid ""
    +"Ooops User not found in \n"
    +"\t\t\t\tdatabase or incorrect password"
    +msgstr ""
    +"Oups, utilisateur introuvable dans \n"
    +"\t\t\t\tla base de donnƩes ou mot de passe incorrect"
    +
    +#: ../../include/auth/mysql.php:718
    +msgid "Could not changes password on remote pandora"
    +msgstr "Erreur de modification du mot de passe sur Pandora  FMS Ć  distance"
    +
    +#: ../../include/auth/mysql.php:766
    +msgid "Your installation of PHP does not support LDAP"
    +msgstr "Votre installation de PHP ne prend pas en charge LDAP"
    +
    +#: ../../include/api.php:237
    +msgid "User or group not specified"
    +msgstr "Utilisateur ou groupe non spƩcifiƩ"
    +
    +#: ../../include/api.php:238
    +msgid "User, group not specified"
    +msgstr "Utilisateur, groupe non spƩcifiƩ"
    +
    +#: ../../include/api.php:269
    +msgid "User, group or profile not specified"
    +msgstr "Utilisateur, groupe ou profil non spƩcifiƩ"
    +
    +#: ../../include/api.php:270
    +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:4510
    +#: ../../include/functions_reporting.php:4553
    +msgid "No data to display within the selected interval"
    +msgstr "Aucune donnƩe Ơ afficher dans l'intervalle sƩlectionnƩ"
    +
    +#: ../../include/functions_graph.php:2635
    +msgid "Not fired alerts"
    +msgstr "Aucune alerte dƩclenchƩe"
    +
    +#: ../../include/functions_graph.php:2654 ../../include/functions_graph.php:2790
    +#: ../../include/functions_graph.php:2888 ../../include/functions_graph.php:3858
    +#: ../../include/functions_reporting.php:1924
    +#: ../../include/functions_reporting.php:2179
    +#: ../../include/functions_reporting.php:2194
    +#: ../../include/functions_reporting.php:2222
    +#: ../../include/functions_reporting.php:2254
    +#: ../../include/functions_reporting.php:3665
    +#: ../../include/functions_reporting.php:4033
    +#: ../../include/functions_reporting.php:4061
    +#: ../../include/functions_reporting.php:4093
    +#: ../../include/functions_reporting.php:5066
    +#: ../../include/functions_reporting.php:10702
    +#: ../../include/functions_reporting.php:10730
    +#: ../../include/functions_reporting.php:10762
    +#: ../../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:3395 ../../include/functions_ui.php:3815
    +#: ../../include/functions_events.php:108 ../../include/functions_events.php:2661
    +#: ../../operation/events/events.php:608
    +msgid "SYSTEM"
    +msgstr "SYSTƈME"
    +
    +#: ../../include/functions_graph.php:5459
    +msgid "Main node"
    +msgstr "Nœud principal"
    +
    +#: ../../include/functions_gis.php:27 ../../include/functions_gis.php:31
    +#: ../../include/functions_gis.php:36
    +msgid "Hierarchy of agents"
    +msgstr "HiƩrarchie des agents"
    +
    +#: ../../include/functions_treeview.php:52
    +msgid "There was a problem loading module"
    +msgstr "Erreur de chargement du module"
    +
    +#: ../../include/functions_treeview.php:342
    +msgid "Go to module edition"
    +msgstr "AccƩder Ơ l'Ʃdition de modules"
    +
    +#: ../../include/functions_treeview.php:393
    +msgid "There was a problem loading alerts"
    +msgstr "Erreur de chargement des alertes"
    +
    +#: ../../include/functions_treeview.php:478
    +msgid "Go to alerts edition"
    +msgstr "AccƩder Ơ l'Ʃdition d'alertes"
    +
    +#: ../../include/functions_treeview.php:564
    +#: ../../operation/agentes/agent_fields.php:24
    +#: ../../operation/agentes/custom_fields.php:24
    +#: ../../operation/agentes/estado_generalagente.php:62
    +msgid "There was a problem loading agent"
    +msgstr "Erreur de chargement de l'agent"
    +
    +#: ../../include/functions_treeview.php:634
    +#: ../../operation/agentes/estado_generalagente.php:505
    +msgid "Other IP addresses"
    +msgstr "Autres adresses IP"
    +
    +#: ../../include/functions_treeview.php:676
    +msgid "Next agent contact"
    +msgstr "Suivant contact avec l'agent"
    +
    +#: ../../include/functions_treeview.php:703
    +msgid "Edit cluster"
    +msgstr "Modifier le cluster"
    +
    +#: ../../include/functions_treeview.php:707
    +msgid "Go to agent edition"
    +msgstr "AccƩder Ơ l'Ʃdition de l'agent"
    +
    +#: ../../include/functions_treeview.php:719
    +msgid "Agent data"
    +msgstr "DonnƩes de l'agent"
    +
    +#: ../../include/functions_treeview.php:750
    +#: ../../operation/agentes/estado_generalagente.php:471
    +msgid "Position (Long, Lat)"
    +msgstr "Position (Long, Lat)"
    +
    +#: ../../include/functions_treeview.php:767
    +#: ../../operation/agentes/estado_generalagente.php:513
    +msgid "Timezone Offset"
    +msgstr "Fuseau horaire dƩsactivƩ"
    +
    +#: ../../include/functions_treeview.php:799
    +msgid "Advanced information"
    +msgstr "Informations avancƩes"
    +
    +#: ../../include/functions_treeview.php:812
    +msgid "Agent access rate (24h)"
    +msgstr "AccessibilitƩ de l'agent (24h)"
    +
    +#: ../../include/functions_treeview.php:878
    +#: ../../operation/agentes/pandora_networkmap.view.php:1234
    +#: ../../operation/agentes/estado_generalagente.php:720
    +msgid "Interface traffic"
    +msgstr "Trafic d'interface"
    +
    +#: ../../include/functions_treeview.php:901
    +msgid "Interface information"
    +msgstr "Informations d'interface"
    +
    +#: ../../include/functions_menu.php:486
    +msgid "Configure user"
    +msgstr "Configurer l'utilisateur"
    +
    +#: ../../include/functions_menu.php:487
    +msgid "Configure profile"
    +msgstr "Configurer le profil"
    +
    +#: ../../include/functions_menu.php:489
    +msgid "Module templates management"
    +msgstr "Gestion des modĆØles de module"
    +
    +#: ../../include/functions_menu.php:490
    +msgid "Inventory modules management"
    +msgstr "Gestion des modules d'inventaire"
    +
    +#: ../../include/functions_menu.php:497
    +msgid "Builder visual console"
    +msgstr "Outil de conception de la console visuelle"
    +
    +#: ../../include/functions_menu.php:499
    +msgid "View reporting"
    +msgstr "Afficher le rapport"
    +
    +#: ../../include/functions_menu.php:500
    +msgid "Graph viewer"
    +msgstr "Visualiseur de graphique"
    +
    +#: ../../include/functions_menu.php:502
    +msgid "Manage custom graphs"
    +msgstr "GƩrer les graphiques personnalisƩs"
    +
    +#: ../../include/functions_menu.php:503
    +msgid "View graph containers"
    +msgstr "Afficher conteneurs de graphiques"
    +
    +#: ../../include/functions_menu.php:504
    +msgid "Manage graph containers"
    +msgstr "GĆ©rer conteneurs de graphiques"
    +
    +#: ../../include/functions_menu.php:505
    +msgid "View graph templates"
    +msgstr "Afficher modĆØles de graphiques"
    +
    +#: ../../include/functions_menu.php:506
    +msgid "Manage graph templates"
    +msgstr "GĆ©rer les modĆØles de graphiques"
    +
    +#: ../../include/functions_menu.php:507
    +msgid "Graph template items"
    +msgstr "ƉlĆ©ments du modĆØle de graphiques"
    +
    +#: ../../include/functions_menu.php:508
    +msgid "Graph template wizard"
    +msgstr "Assistant de modĆØles de graphiques"
    +
    +#: ../../include/functions_menu.php:512
    +msgid "Manage GIS Maps"
    +msgstr "GĆ©rer cartes GIS"
    +
    +#: ../../include/functions_menu.php:515
    +msgid "Manage messages"
    +msgstr "GĆ©rer les messages"
    +
    +#: ../../include/functions_menu.php:517
    +msgid "Manage module groups"
    +msgstr "GĆ©rer les groupes de modules"
    +
    +#: ../../include/functions_menu.php:518
    +msgid "Manage custom field"
    +msgstr "GƩrer champ personnalisƩ"
    +
    +#: ../../include/functions_menu.php:520
    +msgid "Manage alert actions"
    +msgstr "GĆ©rer les actions d'alerte"
    +
    +#: ../../include/functions_menu.php:521
    +msgid "Manage commands"
    +msgstr "GĆ©rer les commandes"
    +
    +#: ../../include/functions_menu.php:523
    +msgid "Manage export targets"
    +msgstr "GĆ©rer les objectifs d'exportation"
    +
    +#: ../../include/functions_menu.php:525 ../../operation/menu.php:136
    +msgid "SNMP trap generator"
    +msgstr "GƩnƩrateur de dƩroutements SNMP"
    +
    +#: ../../include/functions_menu.php:528
    +msgid "Manage incident"
    +msgstr "GĆ©rer l'incident"
    +
    +#: ../../include/functions_menu.php:530
    +msgid "Manage groups"
    +msgstr "GĆ©rer les groupes"
    +
    +#: ../../include/functions_menu.php:590
    +msgid "Administration"
    +msgstr "Administration"
    +
    +#: ../../include/functions_incidents.php:29 ../../include/functions_incidents.php:55
    +msgid "Informative"
    +msgstr "Informatif"
    +
    +#: ../../include/functions_incidents.php:30 ../../include/functions_incidents.php:59
    +#: ../../include/functions_netflow.php:1845
    +msgid "Low"
    +msgstr "Faible"
    +
    +#: ../../include/functions_incidents.php:31 ../../include/functions_incidents.php:63
    +#: ../../include/functions_netflow.php:1846
    +msgid "Medium"
    +msgstr "Moyenne"
    +
    +#: ../../include/functions_incidents.php:32 ../../include/functions_incidents.php:67
    +msgid "Serious"
    +msgstr "Grave"
    +
    +#: ../../include/functions_incidents.php:33 ../../include/functions_incidents.php:71
    +msgid "Very serious"
    +msgstr "TrĆØs grave"
    +
    +#: ../../include/functions_incidents.php:95
    +#: ../../include/functions_incidents.php:116
    +msgid "Active incidents"
    +msgstr "Incidents actifs"
    +
    +#: ../../include/functions_incidents.php:96
    +#: ../../include/functions_incidents.php:120
    +msgid "Active incidents, with comments"
    +msgstr "Incidents actifs, avec commentaires"
    +
    +#: ../../include/functions_incidents.php:97
    +#: ../../include/functions_incidents.php:124
    +msgid "Rejected incidents"
    +msgstr "Incidents refusƩs"
    +
    +#: ../../include/functions_incidents.php:98
    +#: ../../include/functions_incidents.php:128
    +msgid "Expired incidents"
    +msgstr "Incidents expirƩs"
    +
    +#: ../../include/functions_incidents.php:99
    +#: ../../include/functions_incidents.php:132
    +msgid "Closed incidents"
    +msgstr "Incidents fermƩs"
    +
    +#: ../../include/help/clippy/topology_group.php:35
    +msgid "Topology Group"
    +msgstr "Groupe topologie"
    +
    +#: ../../include/help/clippy/topology_group.php:35
    +msgid ""
    +"Please note that group topology maps do not show the parent relationship between "
    +"nodes, it only shows the group parentship and the agent distribution inside them. "
    +msgstr ""
    +"Sachez que le groupe de cartes de topologie n'affiche pas la relation parents "
    +"entre les nœuds ; il affiche seulement la relation des groupes et la distribution "
    +"des agents. "
    +
    +#: ../../include/help/clippy/homepage.php:75
    +msgid "Hi, can I help you?"
    +msgstr "Bonjour, je peux vous aider ?"
    +
    +#: ../../include/help/clippy/homepage.php:75
    +#, php-format
    +msgid ""
    +"Let me introduce my self: I am Pandorin, the annoying assistant of %s. You can "
    +"follow my steps to do basic tasks in %s or you can close me and never see me "
    +"again."
    +msgstr ""
    +"Permettez-moi de me prĆ©senterĀ : je suis Pandorin, l'assistant ennuyeux de %s. "
    +"Vous pouvez suivre mes Ć©tapes pour effectuer des tĆ¢ches de base dans %s ou vous "
    +"pouvez me fermer et ne plus jamais me revoir."
    +
    +#: ../../include/help/clippy/homepage.php:75
    +msgid "Close this wizard and don't open it again."
    +msgstr "Fermer cet assistant et ne plus jamais l'ouvrir."
    +
    +#: ../../include/help/clippy/homepage.php:79
    +msgid "Which task would you like to do first?"
    +msgstr "Quelle tĆ¢che voulez-vous effectuer en premier ?"
    +
    +#: ../../include/help/clippy/homepage.php:79
    +#, php-format
    +msgid "Ping a Linux or Windows server using a %s agent."
    +msgstr "Pingez un serveur Linux ou Windows Ć  l'aide d'un agent %s."
    +
    +#: ../../include/help/clippy/homepage.php:79
    +msgid "Create a alert by email in a critical module."
    +msgstr "CrƩer une alerte par courriel dans un module critique."
    +
    +#: ../../include/help/clippy/homepage.php:190
    +#, php-format
    +msgid ""
    +"The first thing you have to do is to setup the e-mail config on the %s Server."
    +msgstr ""
    +"La premiĆØre chose Ć  faire est de configurer la configuration de la messagerie sur "
    +"le serveur %s."
    +
    +#: ../../include/help/clippy/homepage.php:190
    +msgid "If you have it already configured you can go to the next step."
    +msgstr "Si vous l'avez dƩjƠ configurƩ, vous pouvez passer Ơ l'Ʃtape suivante."
    +
    +#: ../../include/help/clippy/homepage.php:195
    +msgid "Now, pull down the Manage alerts menu and click on Actions. "
    +msgstr ""
    +"Maintenant, dĆ©roulez le menu Ā« GĆ©rer les alertes Ā» et cliquez sur Ā« Actions Ā». "
    +
    +#: ../../include/help/clippy/module_unknow.php:35
    +msgid "You have unknown modules in this agent."
    +msgstr "Vous avez des modules inconnus dans cet agent."
    +
    +#: ../../include/help/clippy/module_unknow.php:35
    +msgid ""
    +"Unknown modules are modules which receive data normally at least in one "
    +"occassion, but at this time are not receving data. Please check our troubleshoot "
    +"help page to help you determine why you have unknown modules."
    +msgstr ""
    +"Les modules inconnus sont des modules qui reƧoivent des donnƩes au moins une "
    +"fois. Cependant, ils ne reƧoivent pas de donnƩes en ce moment. Veuillez vƩrifier "
    +"notre page d'aide au dƩpannage pour vous aider Ơ dƩterminer pourquoi vous avez "
    +"des modules inconnus."
    +
    +#: ../../include/help/clippy/modules_not_learning_mode.php:46
    +msgid ""
    +"Please note that you have your agent setup to do not add new modules coming from "
    +"the data XML."
    +msgstr ""
    +"Sachez que si le mode apprentissage n'est pas activƩ, vous ne pourrez pas ajouter "
    +"de nouveaux modules provenant des donnƩes XML."
    +
    +#: ../../include/help/clippy/modules_not_learning_mode.php:46
    +msgid ""
    +"That means if you have a local plugin or add manually new modules to the "
    +"configuration file, you won't have it in your agent, unless you first create "
    +"manually in the interface (with the exact name and type as coming in the XML "
    +"file)."
    +msgstr ""
    +"Ceci veut dire que si vous avez un plugin local ou que vous ajoutez manuellement "
    +"de nouveaux modules au fichier de configuration, il ne se trouveront pas dans "
    +"votre agent, sauf si vous les crƩez d'abord manuellement dans l'interface (avec "
    +"le nom et le type identique Ć  celui sur le fichier XML)."
    +
    +#: ../../include/help/clippy/modules_not_learning_mode.php:46
    +msgid ""
    +"You should use the \"normal\" mode (non learn) only when you don't intend to add "
    +"more modules to the agent."
    +msgstr ""
    +"Vous devriez utiliser le mode Ā« normal Ā» (non apprentissage) seulement quand vous "
    +"n'avez pas l'intention d'ajouter plus de modules Ć  l'agent."
    +
    +#: ../../include/help/clippy/operation_agentes_ver_agente.php:35
    +msgid ""
    +"The last step is to check the alert created. Click on the round icon to force the "
    +"action execution and after a few minutes you will receive the alert in your email."
    +msgstr ""
    +"Pour la derniĆØre Ć©tape, il faut vĆ©rifier l'alerte crĆ©Ć©e. Cliquez sur l'icĆ“ne "
    +"ronde pour forcer l'exĆ©cution de l'action et aprĆØs quelques minutes vous recevrez "
    +"l'alerte dans votre courriel."
    +
    +#: ../../include/help/clippy/operation_agentes_ver_agente.php:35
    +msgid "And restart your pandora server to read again general configuration tokens."
    +msgstr ""
    +"RedƩmarrez votre serveur Pandora FMS pour relire les tokens gƩnƩraux de "
    +"configuration."
    +
    +#: ../../include/help/clippy/godmode_alerts_alert_actions.php:35
    +msgid ""
    +"Let me show you how to create an email action: Click on Create button and fill "
    +"the form showed in the following screen."
    +msgstr ""
    +"Laissez-moi vous montrer comment crƩer une action courriel : cliquez sur le "
    +"bouton Ā« CrĆ©er Ā» et remplissez le formulaire affichĆ© sur l'Ć©cran suivant."
    +
    +#: ../../include/help/clippy/godmode_alerts_alert_actions.php:49
    +msgid ""
    +"Now, you have to go to the monitors list and look for a critical module to apply "
    +"the alert."
    +msgstr ""
    +"Maintenant il faut aller Ć  la liste de moniteurs et rechercher un module en Ć©tat "
    +"critique pour appliquer l'alerte."
    +
    +#: ../../include/help/clippy/godmode_alerts_alert_actions.php:54
    +msgid ""
    +"Click on the arrow to drop down the Monitoring submenu and select Monitor Detail."
    +msgstr ""
    +"Cliquez sur la flĆØche pour dĆ©rouler le sous-menu de Surveillance et sĆ©lectionnez "
    +"sur DĆ©tail du moniteur."
    +
    +#: ../../include/help/clippy/agent_out_of_limits.php:35
    +msgid "Agent contact date passed it's ETA!."
    +msgstr "La date de contact de l'agent a dƩpassƩ le dƩlai estimƩ !"
    +
    +#: ../../include/help/clippy/agent_out_of_limits.php:35
    +msgid ""
    +"This happen when your agent stopped reporting or the server have any problem (too "
    +"load or just down). Check also connectivity between the agent and the server."
    +msgstr ""
    +"Ceci arrive lorsque votre agent cesse de gƩnƩrer des rapports ou le serveur a un "
    +"problĆØme (trop de chargements ou il n'est pas fonctionnel). VĆ©rifiez aussi la "
    +"connexion entre l'agent et le serveur."
    +
    +#: ../../include/help/clippy/godmode_agentes_modificar_agente.php:34
    +msgid "I'm going to show you how to monitor a server."
    +msgstr "Je vais vous montrer comment surveiller un serveur."
    +
    +#: ../../include/help/clippy/godmode_agentes_modificar_agente.php:38
    +msgid "Please, type an agent to save the modules for monitoring a server."
    +msgstr ""
    +"Veuillez Ć©crire un agent afin de sauvegarder les modules pour surveiller un "
    +"serveur."
    +
    +#: ../../include/help/clippy/godmode_agentes_modificar_agente.php:43
    +msgid "If you have typed the name correctly you will see the agent."
    +msgstr "Si vous avez bien Ʃcrit le nom, l'agent sera affichƩ."
    +
    +#: ../../include/help/clippy/godmode_agentes_modificar_agente.php:57
    +msgid "Now, please choose the agent you searched."
    +msgstr "Maintenant veuillez choisir l'agent que vous avez recherchƩ."
    +
    +#: ../../include/help/clippy/godmode_agentes_modificar_agente.php:62
    +msgid "Choose the agent and click on the name."
    +msgstr "Choisissez l'agent et cliquez sur le nom."
    +
    +#: ../../include/help/clippy/modules_not_init.php:35
    +msgid "You have non initialized modules"
    +msgstr "Vous avez des modules non initialisƩs."
    +
    +#: ../../include/help/clippy/modules_not_init.php:35
    +msgid ""
    +"This happen when you have just created a module and it's not executed at first "
    +"time. Usually in a few seconds should be initialized and you will be able to see "
    +"in main view. If you keep non-init modules for more than 24hr (due a problem in "
    +"it's execution or configuration) they will be automatically deleted by the "
    +"system. Non-init are not visible in the Ć¢Ā€Āœmain viewĆ¢Ā€Ā, you can see/edit them in the "
    +"module administration section, in the agent administrator."
    +msgstr ""
    +"Ceci arrive quand vous avez crƩƩ un module et il n'a pas encore ƩtƩ exƩcutƩ pour "
    +"la premiĆØre fois. Normalement, il devrait ĆŖtre initialisĆ© dans quelques secondes "
    +"pour que vous puissiez voir le menu principal. Si vous gardez des modules non "
    +"initialisĆ©s pendant plus de 24h (dĆ» Ć  un problĆØme d'exĆ©cution ou de "
    +"configuration), ils seront supprimĆ©s automatiquement du systĆØme. Les modules non "
    +"initialisƩs ne sont pas visibles sur la page principale ; vous pouvez les voir ou "
    +"les Ć©diter dans la section d'administration de modules, dans l'administrateur "
    +"d'agents."
    +
    +#: ../../include/help/clippy/godmode_alerts_configure_alert_action.php:34
    +msgid "Fill the name of your action."
    +msgstr "Introduisez le nom de votre action."
    +
    +#: ../../include/help/clippy/godmode_alerts_configure_alert_action.php:38
    +msgid ""
    +"Select the group in the drop-down list and filter for ACL (the user in this group "
    +"can use your action to create an alert)."
    +msgstr ""
    +"SƩlectionnez le groupe dans la liste du menu dƩroulant et filtrez pour ACL "
    +"(l'utilisateur dans ce groupe peut utiliser votre action pour une alerte)."
    +
    +#: ../../include/help/clippy/godmode_alerts_configure_alert_action.php:42
    +msgid "In the command field select \"email\"."
    +msgstr "Dans le champ de commande sĆ©lectionnez Ā« courriel Ā»."
    +
    +#: ../../include/help/clippy/godmode_alerts_configure_alert_action.php:46
    +msgid ""
    +"In the threshold field enter the seconds. The help icon show more information."
    +msgstr ""
    +"Dans le champ seuil, introduisez les secondes. L'icƓne d'aide montre plus "
    +"d'informations."
    +
    +#: ../../include/help/clippy/godmode_alerts_configure_alert_action.php:51
    +msgid ""
    +"In the first field enter the email address/addresses where you want to receive "
    +"the email alerts separated with comas ( , ) or white spaces."
    +msgstr ""
    +"Dans le premier champ introduisez l'adresse ou les adresses courriel oĆ¹ vous "
    +"voulez recevoir les alertes courriel, sƩparƩes par des virgules (,) ou des "
    +"espaces."
    +
    +#: ../../include/help/clippy/godmode_alerts_configure_alert_action.php:56
    +msgid ""
    +"In the \"Subject\"  field  you can use the macros _agent_ or _module_ for each "
    +"name."
    +msgstr ""
    +"Dans le champ Ā« Objet Ā», vous pouvez utiliser les macros _agent_ ou _module_ pour "
    +"chaque nom."
    +
    +#: ../../include/help/clippy/godmode_alerts_configure_alert_action.php:61
    +msgid ""
    +"In the text field, you can also use macros. Get more information about the macros "
    +"by clicking on the help icon."
    +msgstr ""
    +"Dans le champ suivant, vous pouvez aussi utiliser des macros. Vous pouvez obtenir "
    +"plus d'information sur les macros en cliquant sur l'icƓne d'aide."
    +
    +#: ../../include/help/clippy/godmode_alerts_configure_alert_action.php:66
    +msgid "Click on Create button to create the action."
    +msgstr "Cliquez sur le bouton Ā« CrĆ©er Ā» pour crĆ©er une action."
    +
    +#: ../../include/help/clippy/data_configuration_module.php:35
    +msgid "Data Configuration Module."
    +msgstr "DonnƩes de configuration de modules"
    +
    +#: ../../include/help/clippy/data_configuration_module.php:35
    +msgid ""
    +"Please note that information provided here affects how the agent collect "
    +"information and generate the data XML. Any data/configuration reported by the "
    +"agent, different from data or description is discarded, and the configuration "
    +"shown in the console prevails over any configuration coming from the agent, this "
    +"applies for example for crit/warn thresholds, interval, module group, min/max "
    +"value, tags, etc."
    +msgstr ""
    +"Sachez que l'information fournie ici affecte comment l'agent recueille "
    +"l'information et gĆ©nĆØre des donnĆ©es XML. N'importe quelle donnĆ©e/configuration "
    +"signalƩe par l'agent diffƩrente des donnƩes ou de la description sera rejetƩe, et "
    +"la configuration affichƩe dans la console l'emportera sur toute configuration "
    +"provenant de l'agent. Ceci s'applique aux seuils critique/alerte, intervalles, "
    +"groupes de modules, valeur min/max, Ć©tiquettes, etc."
    +
    +#: ../../include/help/clippy/data_configuration_module.php:35
    +msgid ""
    +"Information imported FIRST time from the XML will fill the information you can "
    +"see in the console, but after the first import, system will ignore any update "
    +"coming from the XML/Agent."
    +msgstr ""
    +"L'information importƩe pour la PREMIƈRE fois Ơ partir de XML remplit "
    +"l'information que vous pouvez voir sur la console, mais aprĆØs la premiĆØre "
    +"importation, le systĆØme ignore toute mise Ć  jour provenant de XML/agent."
    +
    +#: ../../include/help/clippy/godmode_agentes_configurar_agente.php:34
    +msgid "Now you must go to Modules. Don't worry I'll lead you."
    +msgstr "Veuillez vous diriger vers les Modules. Pas de soucis, je vais vous guider."
    +
    +#: ../../include/help/clippy/godmode_agentes_configurar_agente.php:39
    +msgid "Click in this tab.."
    +msgstr "Cliquez sur cet onglet..."
    +
    +#: ../../include/help/clippy/godmode_agentes_configurar_agente.php:53
    +msgid "Now you must create the module. Don't worry, i'll teach you."
    +msgstr ""
    +"Maintenant vous devez crƩer le module. Pas de soucis, je vous montre comment "
    +"faire."
    +
    +#: ../../include/help/clippy/godmode_agentes_configurar_agente.php:57
    +msgid "Choose the network server module."
    +msgstr "Choisissez le module du serveur du rƩseau"
    +
    +#: ../../include/help/clippy/godmode_agentes_configurar_agente.php:61
    +msgid "And click the button."
    +msgstr "et cliquez sur le bouton."
    +
    +#: ../../include/help/clippy/godmode_agentes_configurar_agente.php:75
    +msgid "Now you must create the module. Don't worry, i'll teach you ."
    +msgstr ""
    +"Maintenant vous devez crƩer le module. Pas de soucis, je vous montre comment "
    +"faire."
    +
    +#: ../../include/help/clippy/godmode_agentes_configurar_agente.php:79
    +msgid "Now we are going to fill the form."
    +msgstr "Maintenant, nous allons remplir le formulaire."
    +
    +#: ../../include/help/clippy/godmode_agentes_configurar_agente.php:83
    +msgid "Please choose Network Management."
    +msgstr "Veuillez sƩlectionner Gestionnaire de rƩseau."
    +
    +#: ../../include/help/clippy/godmode_agentes_configurar_agente.php:87
    +msgid "Choose the component named \"Host alive\"."
    +msgstr "Choisissez le composant appelĆ© Ā« Host alive Ā»."
    +
    +#: ../../include/help/clippy/godmode_agentes_configurar_agente.php:91
    +msgid "You can change the name if you want."
    +msgstr "Vous pouvez modifier le nom si vous voulez."
    +
    +#: ../../include/help/clippy/godmode_agentes_configurar_agente.php:95
    +msgid "Check if the IP showed is the IP of your machine."
    +msgstr "VƩrifiez que l'adresse IP affichƩe soit celle de votre machine."
    +
    +#: ../../include/help/clippy/godmode_agentes_configurar_agente.php:99
    +msgid "And only to finish it is clicking this button."
    +msgstr "Et pour terminer, cliquez sur ce bouton."
    +
    +#: ../../include/help/clippy/godmode_agentes_configurar_agente.php:114
    +msgid ""
    +"Congrats! Your module has been created. 
    and the status color is blue.
    That color means that the module hasn't been executed for the first " +"time. In the next seconds, if there is no problem, the status color will turn " +"into red or green." +msgstr "" +"FƩlicitations ! Votre module a ƩtƩ crƩƩ
    et la couleur de l'Ć©tat est " +"bleu.
    Cette couleur veut dire que le module n'a pas encore Ć©tĆ© " +"exĆ©cutĆ© pour la premiĆØre fois ; s'il y a un problĆØme, la couleur devient " +"rouge ou vert." + +#: ../../include/help/clippy/godmode_agentes_configurar_agente.php:129 +msgid "Click on alerts tab and then fill the form to add an alert." +msgstr "" +"Cliquez sur l'onglet alertes et remplissez le formulaire pour ajouter une alerte." + +#: ../../include/help/clippy/godmode_agentes_configurar_agente.php:143 +msgid "Select the critical module." +msgstr "SĆ©lectionnez le module en Ć©tat critique." + +#: ../../include/help/clippy/godmode_agentes_configurar_agente.php:147 +msgid "In template select \"Critical Condition\"." +msgstr "Dans le modĆØle, sĆ©lectionnez Ā« Ɖtat critique Ā»." + +#: ../../include/help/clippy/godmode_agentes_configurar_agente.php:151 +msgid "Now, select the action created before." +msgstr "Maintenant, sĆ©lectionnez l'action crĆ©Ć©e prĆ©cĆ©demment." + +#: ../../include/help/clippy/godmode_agentes_configurar_agente.php:156 +msgid "Click on Add Alert button to create the alert." +msgstr "Cliquez sur le bouton Ā« Ajouter alerte Ā» pour crĆ©er l'alerte." + +#: ../../include/help/clippy/godmode_agentes_configurar_agente.php:171 +msgid "" +"To test the alert you've just created go to the main view by clicking on the eye " +"tab." +msgstr "" +"Pour tester l'alerte que vous venez de crĆ©er, allez Ć  la page principale en " +"cliquant sur l'icĆ“ne en forme dā€™Å“il." + +#: ../../include/help/clippy/server_queued_modules.php:35 +msgid "Excesive Queued." +msgstr "File d'attente de modules excessive" + +#: ../../include/help/clippy/server_queued_modules.php:35 +msgid "" +"You have too much items in the processing queue. This can happen if your server " +"is too loaded and/or not properly configured. This could be something temporal, " +"or a bottleneck. One possible solution is increase number of server threads, but " +"you should consider getting support about this." +msgstr "" +"Vous avez trop d'articles dans la file d'attente de traitement. Cela peut se " +"produire si votre serveur est trop chargĆ© et/ou pas configurĆ© correctement. Il " +"pourrait s'agir d'un problĆØme temporaire ou un engorgement. Une solution possible " +"c'est d'augmenter le nombre de threads du serveur, mais vous devriez penser Ć  " +"chercher de l'aide." + +#: ../../include/help/clippy/servers_down.php:35 +msgid "All servers down" +msgstr "Tous les serveurs en panne" + +#: ../../include/help/clippy/servers_down.php:35 +msgid "" +"Can you up all servers. You go to terminal in linux and execute the next command: " +"\"sudo /etc/init.d/pandora_server restart\". It's possible need introduce root " +"pass." +msgstr "" +"Vous pouvez activer tous les serveurs. Vous devez aller au terminal de Linux et " +"exĆ©cuter la commande suivante : \"sudo /etc/init.d/pandora_server restart\". Vous " +"aurez peut-ĆŖtre besoin d'introduire le mot de passe du segment racine." + +#: ../../include/help/clippy/interval_agent_min.php:35 +msgid "Interval Agent." +msgstr "Intervalle de l'agent." + +#: ../../include/help/clippy/interval_agent_min.php:35 +msgid "" +"Please note that having agents with a monitoring interval below 300 seconds is " +"not recommended. This will impact seriously in the performance of the server. For " +"example, having 200 agents with one minute interval, is the same than having 1000 " +"agents with a 5 minute interval. The probability of getting unknown modules is " +"higher, and the impact on the server is higher because it requires a shorter " +"response time." +msgstr "" +"Sachez qu'il n'est pas conseillĆ© d'avoir des agents avec un intervalle de " +"surveillance infĆ©rieur Ć  300 secondes. Ceci pourrait affecter sĆ©rieusement la " +"performance du serveur. Par exemple, avoir 200 agents avec un intervalle d'une " +"minute Ć©quivaut Ć  avoir 1000 agents avec un intervalle de 5 minutes. La " +"probabilitĆ© d'obtenir des modules inconnus est plus Ć©levĆ©e et l'impact sur le " +"serveur est plus sĆ©rieux parce qu'il nĆ©cessite un temps de rĆ©ponse plus court." + +#: ../../include/help/clippy/operation_agentes_status_monitor.php:34 +msgid "" +"Now, you have to go to the monitors list and look for a \"critical\" module to " +"apply the alert." +msgstr "" +"Maintenant vous devez vous rendre Ć  la liste de moniteurs et rechercher un module " +"en Ć©tat critique sur lequel appliquer l'alerte." + +#: ../../include/help/clippy/operation_agentes_status_monitor.php:38 +msgid "" +"If you know the name of the agent or the name of the module in critical status, " +"type it in this field to make the module list shorter. You can write the entire " +"name or just a part of it." +msgstr "" +"Si vous connaissez le nom de l'agent ou le nom du module en Ć©tat critique, " +"introduisez-le dans ce champ pour raccourcir la liste de modules. Vous pouvez " +"Ć©crire le nom au complet ou seulement une partie du nom." + +#: ../../include/help/clippy/operation_agentes_status_monitor.php:43 +msgid "Click on Show button to get the modules list filtered." +msgstr "Cliquez sur le bouton Ā« Afficher Ā» pour filtrer la liste de modules." + +#: ../../include/help/clippy/operation_agentes_status_monitor.php:58 +msgid "" +"Now, to edit the module, click on the wrench that appears in the type column." +msgstr "" +"Maintenant, pour Ć©diter le module, cliquez sur la clĆ© Ć  molette qui apparaĆ®t dans " +"la colonne du type." + +#: ../../include/help/clippy/extension_cron_send_email.php:35 +msgid "The configuration of email for the task email is in the enterprise setup:" +msgstr "" +"La configuration du courriel pour la tĆ¢che courriel se trouve dans la " +"configuration Enterprise :" + +#: ../../include/help/clippy/extension_cron_send_email.php:35 +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:787 +#: ../../operation/users/user_edit.php:796 +msgid "Profiles/Groups assigned to this user" +msgstr "Profils/Groupes assignĆ©s Ć  cet utilisateur" + +#: ../../include/functions_network.php:34 +msgid "Top listeners" +msgstr "Top dā€™auditeurs" + +#: ../../include/functions_network.php:35 +msgid "Top talkers" +msgstr "Top dā€™appelants" + +#: ../../include/functions_network.php:45 +msgid "Top TCP protocols" +msgstr "Top de protocoles TCP" + +#: ../../include/functions_network.php:46 +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" + +#: ../../include/functions_ui.php:469 +msgid "Error processing request" +msgstr "Erreur de traitement de requĆŖtes" + +#: ../../include/functions_ui.php:625 +msgid "" +"Is possible that this view uses part of information which your user has not access" +msgstr "" +"Il est possible que ce mode de visionnement utilise une partie de l'information " +"dont votre utilisateur n'a pas accĆØs." + +#: ../../include/functions_ui.php:874 +msgid "Software" +msgstr "Logiciel" + +#: ../../include/functions_ui.php:1361 +msgid "The alert would fire when the value is over " +msgstr "" +"L'alerte sera dĆ©clenchĆ©e quand la valeur soit supĆ©rieure Ć  " + +#: ../../include/functions_ui.php:1366 +msgid "The alert would fire when the value is under " +msgstr "" +"L'alerte sera dĆ©clenchĆ©e quand la valeur soit infĆ©rieure Ć  " + +#: ../../include/functions_ui.php:1381 +msgid "Unknown option." +msgstr "Option inconnue." + +#: ../../include/functions_ui.php:1735 ../../include/functions_config.php:2384 +msgid "the Flexible Monitoring System" +msgstr "SystĆØme de surveillance flexible" + +#: ../../include/functions_ui.php:2113 ../../include/functions_ui.php:2139 +#, php-format +msgid "Total items: %s" +msgstr "Nombre total d'Ć©lĆ©ments : %s" + +#: ../../include/functions_ui.php:2540 +msgid "Unknown type" +msgstr "Type inconnu" + +#: ../../include/functions_ui.php:3443 +msgid "No matching records found" +msgstr "Aucun enregistrements correspondants trouvĆ©s" + +#: ../../include/functions_ui.php:3444 +msgid "No data available in table" +msgstr "Aucune donnĆ©e disponible dans le tableau" + +#: ../../include/functions_ui.php:3536 ../../include/functions_ui.php:3537 +msgid "Export current page to CSV" +msgstr "Exporter la page actuelle au format CSV" + +#: ../../include/functions_ui.php:3806 ../../include/functions_events.php:75 +#: ../../include/functions_events.php:101 ../../operation/events/events.php:599 +#: ../../operation/events/events.php:663 +msgid "ALERT" +msgstr "ALERTE" + +#: ../../include/functions_ui.php:3884 ../../include/functions_events.php:167 +#: ../../operation/events/events.php:523 +msgid "MAINTENANCE" +msgstr "ENTRETIEN" + +#: ../../include/functions_ui.php:3889 ../../include/functions_events.php:170 +#: ../../operation/events/events.php:528 +msgid "INFORMATIONAL" +msgstr "INFORMATIF" + +#: ../../include/functions_ui.php:3909 ../../include/functions_events.php:176 +#: ../../operation/events/events.php:538 +msgid "MINOR" +msgstr "MINEUR" + +#: ../../include/functions_ui.php:3914 ../../include/functions_events.php:173 +#: ../../operation/events/events.php:533 +msgid "MAJOR" +msgstr "MAJEUR" + +#: ../../include/functions_ui.php:4725 ../../include/functions_html.php:930 +#: ../../include/functions_html.php:3313 ../../include/functions_html.php:3805 +#: ../../include/functions_reporting.php:11507 +#: ../../include/functions_reporting.php:11664 +#: ../../include/functions_reporting.php:11678 +#: ../../include/functions_reporting.php:14017 +#: ../../include/functions_reporting.php:14092 +msgid "Enterprise version not installed" +msgstr "Version Enterprise non installĆ©e" + +#: ../../include/functions_ui.php:5107 +msgid "Type at least two characters to search." +msgstr "Ɖcrivez un minimum de deux caractĆØres pour rechercher" + +#: ../../include/functions_ui.php:6046 +msgid "Unhandled error" +msgstr "Erreur non traitĆ©e" + +#: ../../include/functions_ui.php:6047 +msgid "An unhandled error occurs" +msgstr "Une erreur non gĆ©rĆ©e se produit" + +#: ../../include/functions_ui.php:6318 +#, 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 "" +"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:6639 +msgid "Execute query" +msgstr "ExĆ©cute la requĆŖte" + +#: ../../include/functions_ui.php:6661 +msgid "Results" +msgstr "RĆ©sultats" + +#: ../../include/functions_ui.php:6725 +msgid "Show password" +msgstr "Afficher le mot de passe" + +#: ../../include/functions_visual_map.php:1746 +#: ../../include/functions_visual_map.php:1748 +#: ../../include/rest-api/models/VisualConsole/Items/StaticGraph.php:283 +#: ../../include/rest-api/models/VisualConsole/Items/StaticGraph.php:287 +msgid "Last value: " +msgstr "DerniĆØre valeur : " + +#: ../../include/functions_visual_map.php:2632 +msgid "Agent successfully added to layout" +msgstr "Agent ajoutĆ© au layout correctement" + +#: ../../include/functions_visual_map.php:2824 +msgid "Modules successfully added to layout" +msgstr "Modules ajoutĆ©s au layout correctement" + +#: ../../include/functions_visual_map.php:3157 +msgid "Agents successfully added to layout" +msgstr "Agents ajoutĆ©s correctement" + +#: ../../include/functions_visual_map.php:3553 +msgid "Cannot load the visualmap" +msgstr "Erreur de chargement de la carte visuelle" + +#: ../../include/functions_visual_map.php:4219 +#: ../../include/rest-api/models/VisualConsole/Item.php:2107 +msgid "Bars graph" +msgstr "Graphique Ć  barres" + +#: ../../include/functions_visual_map.php:4229 +#: ../../include/rest-api/models/VisualConsole/Item.php:2115 +msgid "Percentile bar" +msgstr "Barre de centile" + +#: ../../include/functions_visual_map.php:4234 +#: ../../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" +msgstr "Assistant %s" + +#: ../../include/functions_clippy.php:189 ../../include/functions_clippy.php:194 +msgid "End wizard" +msgstr "Fermer l'assistant logiciel" + +#: ../../include/functions_clippy.php:227 +msgid "Next →" +msgstr "Suivant &rarr ;" + +#: ../../include/functions_clippy.php:228 +msgid "← Back" +msgstr "&larr ; PrĆ©cĆ©dent" + +#: ../../include/functions_clippy.php:240 +msgid "Do you want to exit the help tour?" +msgstr "Voulez-vous quitter la visite d'aide ?" + +#: ../../include/functions_alerts.php:674 +msgid "Max and min" +msgstr "Max et min" + +#: ../../include/functions_alerts.php:677 +msgid "Equal to" +msgstr "Ɖgal Ć " + +#: ../../include/functions_alerts.php:678 +msgid "Not equal to" +msgstr "Pas Ć©gal Ć " + +#: ../../include/functions_alerts.php:682 +msgid "On Change" +msgstr "Changement en cours" + +#: ../../include/functions_alerts.php:684 +msgid "Not normal status" +msgstr "Ɖtat pas normal" + +#: ../../include/functions_alerts.php:1685 +msgid "No actions defined" +msgstr "Aucune action dĆ©finie" + +#: ../../include/functions_alerts.php:2658 +msgid "Alert and command group does not match" +msgstr "Le groupe d'alerte et de commande ne correspond pas" + +#: ../../include/functions_snmp.php:65 +msgid "Load Average (Last minute)" +msgstr "Chargement moyen (derniĆØre minute)" + +#: ../../include/functions_snmp.php:69 +msgid "Load Average (Last 5 minutes)" +msgstr "Chargement moyen (derniĆØres 5 minutes)" + +#: ../../include/functions_snmp.php:73 +msgid "Load Average (Last 15 minutes)" +msgstr "Chargement moyen (derniĆØres 15 minutes)" + +#: ../../include/functions_snmp.php:77 +msgid "Total Swap Size configured for the host" +msgstr "Taille d'Ć©change total configurĆ©e pour l'hĆ“te" + +#: ../../include/functions_snmp.php:81 +msgid "Available Swap Space on the host" +msgstr "Espace d'Ć©change disponible pour l'hĆ“te" + +#: ../../include/functions_snmp.php:85 +msgid "Total Real/Physical Memory Size on the host" +msgstr "Taille de la mĆ©moire physique/rĆ©elle totale dans l'hĆ“te" + +#: ../../include/functions_snmp.php:89 +msgid "Available Real/Physical Memory Space on the host" +msgstr "Espace de la mĆ©moire physique/rĆ©elle totale dans l'hĆ“te" + +#: ../../include/functions_snmp.php:93 +msgid "Total Available Memory on the host" +msgstr "MĆ©moire disponible totale dans l'hĆ“te" + +#: ../../include/functions_snmp.php:97 +msgid "Total Cached Memory" +msgstr "MĆ©moire cachĆ©e totale" + +#: ../../include/functions_snmp.php:101 +msgid "Total Buffered Memory" +msgstr "MĆ©moire tampon totale" + +#: ../../include/functions_snmp.php:105 +msgid "Amount of memory swapped in from disk (kB/s)" +msgstr "QuantitĆ© de mĆ©moire Ć©changĆ©e Ć  partir du disque (ko/s)" + +#: ../../include/functions_snmp.php:109 +msgid "Amount of memory swapped to disk (kB/s)" +msgstr "QuantitĆ© de mĆ©moire Ć©changĆ©e au disque (ko/s)" + +#: ../../include/functions_snmp.php:113 +msgid "Number of blocks sent to a block device" +msgstr "Nombre de blocs envoyĆ©s Ć  un appareil" + +#: ../../include/functions_snmp.php:117 +msgid "Number of blocks received from a block device" +msgstr "Nombre de blocs reƧus Ć  partir d'un appareil" + +#: ../../include/functions_snmp.php:121 +msgid "Number of interrupts processed" +msgstr "Nombre d'interruptions traitĆ©es" + +#: ../../include/functions_snmp.php:125 +msgid "Number of context switches" +msgstr "Nombre de changements de contexte" + +#: ../../include/functions_snmp.php:129 +msgid "user CPU time" +msgstr "Temps d'UC de l'utilisateur" + +#: ../../include/functions_snmp.php:133 +msgid "system CPU time" +msgstr "Temps d'UC du systĆØme" + +#: ../../include/functions_snmp.php:137 +msgid "idle CPU time" +msgstr "Temps d'inactivitĆ© de l'UC" + +#: ../../include/functions_snmp.php:141 +msgid "system Up time" +msgstr "Temps d'activitĆ© de l'UC" + +#: ../../include/functions_snmp.php:349 +msgid "Pagination" +msgstr "Pagination" + +#: ../../include/functions_snmp.php:381 ../../include/functions_snmp.php:389 +msgid "Group by Enterprise String / IP" +msgstr "Regrouper par chaĆ®ne Enterprise / Adresse IP" + +#: ../../include/functions_db.php:147 +#, php-format +msgid "Error connecting to database %s at %s." +msgstr "Erreur de connexion Ć  la base de donnĆ©es %s Ć  %s ." + +#: ../../include/functions_db.php:1900 +msgid "Database debug" +msgstr "DĆ©boguer la base de donnĆ©es" + +#: ../../include/functions_db.php:1917 +msgid "SQL sentence" +msgstr "Phrase SQL" + +#: ../../include/functions_db.php:1919 +msgid "Rows" +msgstr "RangĆ©es" + +#: ../../include/functions_db.php:1920 +msgid "Saved" +msgstr "SauvegardĆ©" + +#: ../../include/functions_db.php:1921 +msgid "Time (ms)" +msgstr "Temps (ms)" + +#: ../../include/rest-api/models/VisualConsole/Items/ColorCloud.php:438 +msgid "Add new range" +msgstr "Ajouter une nouvelle plage" + +#: ../../include/rest-api/models/VisualConsole/Items/ColorCloud.php:495 +msgid "Current ranges" +msgstr "Gammes actuelles" + +#: ../../include/rest-api/models/VisualConsole/Items/Box.php:217 +#: ../../include/rest-api/models/VisualConsole/Item.php:1994 +msgid "width" +msgstr "largeur" + +#: ../../include/rest-api/models/VisualConsole/Items/Box.php:227 +#: ../../include/rest-api/models/VisualConsole/Item.php:2004 +msgid "height" +msgstr "hauteur" + +#: ../../include/rest-api/models/VisualConsole/Items/Box.php:249 +#: ../../include/rest-api/models/VisualConsole/Item.php:2026 +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 +msgid "Show on top" +msgstr "Afficher en haut" + +#: ../../include/rest-api/models/VisualConsole/Items/Box.php:311 +msgid "Border Width" +msgstr "Largeur de la bordure" + +#: ../../include/rest-api/models/VisualConsole/Items/Box.php:335 +msgid "Fill transparent" +msgstr "Remplissage transparent" + +#: ../../include/rest-api/models/VisualConsole/Items/BasicChart.php:325 +msgid "Module name color" +msgstr "Couleur du nom du module" + +#: ../../include/rest-api/models/VisualConsole/Items/StaticGraph.php:410 +msgid "Show Last Value" +msgstr "Afficher la derniĆØre valeur" + +#: ../../include/rest-api/models/VisualConsole/Items/SimpleValue.php:365 +msgid "Avg Value" +msgstr "Valeur moyenne" + +#: ../../include/rest-api/models/VisualConsole/Items/BarsGraph.php:487 +#: ../../include/rest-api/models/VisualConsole/Items/ModuleGraph.php:658 +msgid "Graph Type" +msgstr "Type de graphique" + +#: ../../include/rest-api/models/VisualConsole/Items/EventsHistory.php:270 +msgid "12h" +msgstr "12h" + +#: ../../include/rest-api/models/VisualConsole/Items/EventsHistory.php:290 +msgid "Legend color" +msgstr "Couleur de la lĆ©gende" + +#: ../../include/rest-api/models/VisualConsole/Items/ModuleGraph.php:672 +#: ../../include/lib/Dashboard/Widgets/custom_graph.php:339 +#: ../../include/lib/Dashboard/Widgets/single_graph.php:294 +msgid "Show legend" +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 +msgid "Failed to connect to node" +msgstr "Ɖchec de la connexion au nœud" + +#: ../../include/rest-api/models/VisualConsole/Items/Odometer.php:416 +msgid "Title color" +msgstr "Couleur du titre" + +#: ../../include/rest-api/models/VisualConsole/View.php:66 +msgid "Label settings" +msgstr "ParamĆØtres d'Ć©tiquette" + +#: ../../include/rest-api/models/VisualConsole/View.php:72 +#: ../../include/rest-api/models/VisualConsole/View.php:104 +msgid "General settings" +msgstr "ParamĆØtres gĆ©nĆ©raux" + +#: ../../include/rest-api/models/VisualConsole/View.php:78 +#: ../../include/rest-api/models/VisualConsole/View.php:94 +#: ../../include/rest-api/models/VisualConsole/View.php:110 +msgid "Specific settings" +msgstr "ParamĆØtres spĆ©cifiques" + +#: ../../include/rest-api/models/VisualConsole/View.php:213 +msgid "Item type not valid [" +msgstr "Type dā€™Ć©lĆ©ment non valide [" + +#: ../../include/rest-api/models/VisualConsole/View.php:218 +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 +msgid "NetworkLink from" +msgstr "NetworkLink de" + +#: ../../include/rest-api/models/VisualConsole/View.php:733 +#: ../../include/rest-api/models/VisualConsole/View.php:812 +#, 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 +#: ../../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 +#: ../../operation/agentes/interface_traffic_graph_win.php:79 +msgid "Out" +msgstr "ƀ l'extĆ©rieur de" + +#: ../../include/rest-api/models/VisualConsole/View.php:808 +msgid "NetworkLink to" +msgstr "NetworkLink vers" + +#: ../../include/rest-api/models/VisualConsole/View.php:860 +#, 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 +msgid "Label position" +msgstr "Position de lā€™Ć©tiquette" + +#: ../../include/rest-api/models/VisualConsole/Item.php:2051 +msgid "Link enabled" +msgstr "Lien activĆ©" + +#: ../../include/rest-api/models/VisualConsole/Item.php:2093 +msgid "Static graph" +msgstr "Graphique statique" + +#: ../../include/rest-api/models/VisualConsole/Item.php:2111 +msgid "Event History Graph" +msgstr "Graphique de l'historique des Ć©vĆ©nements" + +#: ../../include/rest-api/models/VisualConsole/Item.php:2119 +msgid "Percentile bubble" +msgstr "Bulle de centile" + +#: ../../include/rest-api/models/VisualConsole/Item.php:2584 +#: ../../include/rest-api/models/VisualConsole/Item.php:2585 +msgid "Image Vc" +msgstr "Image Vc" + +#: ../../include/functions_notifications.php:807 +msgid "Subtype customization" +msgstr "Personnalisation des sous-types" + +#: ../../include/functions_notifications.php:834 +msgid "Notified users" +msgstr "Utilisateurs notifiĆ©s" + +#: ../../include/functions_notifications.php:834 +msgid "Notified groups" +msgstr "Groupes notifiĆ©s" + +#: ../../include/functions_notifications.php:835 +msgid "Add users" +msgstr "Ajouter des utilisateurs" + +#: ../../include/functions_notifications.php:835 +msgid "Add groups" +msgstr "Ajouter des groupes" + +#: ../../include/functions_notifications.php:836 +msgid "Delete users" +msgstr "Supprimer des utilisateurs" + +#: ../../include/functions_notifications.php:836 +msgid "Delete groups" +msgstr "Effacer des groups" + +#: ../../include/functions_notifications.php:941 +msgid "Remove elements" +msgstr "Supprimer des Ć©lĆ©ments" + +#: ../../include/functions_notifications.php:1058 +msgid "Click here to get more information" +msgstr "Cliquez ici pour obtenir plus dā€™informationā€¦" + +#: ../../include/functions_reports.php:638 ../../include/functions_reports.php:642 +#: ../../include/functions_reports.php:647 ../../include/functions_reports.php:653 +#: ../../include/functions_reports.php:660 ../../include/functions_reports.php:664 +#: ../../include/functions_reports.php:668 ../../include/functions_reports.php:675 +#: ../../include/functions_reports.php:681 ../../include/functions_reports.php:686 +#: ../../include/functions_groups.php:123 ../../include/functions_groups.php:187 +#: ../../operation/search_results.php:119 +#: ../../operation/agentes/ver_agente.php:1560 +msgid "Graphs" +msgstr "Graphiques" + +#: ../../include/functions_reports.php:639 ../../include/functions_reports.php:1083 +#: ../../include/functions_reporting.php:10138 +#: ../../include/functions_reporting.php:10298 +msgid "Simple graph" +msgstr "Graphique simple" + +#: ../../include/functions_reports.php:676 +msgid "Automatic combined Graph" +msgstr "Graphique automatique combinĆ©" + +#: ../../include/functions_reports.php:682 +msgid "Availability graph" +msgstr "Graphique de disponibilitĆ©" + +#: ../../include/functions_reports.php:687 +msgid "Module Histogram graph" +msgstr "Graphique de registres du module" + +#: ../../include/functions_reports.php:693 +msgid "IPAM networks" +msgstr "RĆ©seaux IPAM" + +#: ../../include/functions_reports.php:724 ../../include/functions_reports.php:728 +msgid "Forecasting" +msgstr "PrĆ©diction" + +#: ../../include/functions_reports.php:729 +msgid "Projection graph" +msgstr "Graphique de projection" + +#: ../../include/functions_reports.php:734 +msgid "Avg. value" +msgstr "Valeur moyenne" + +#: ../../include/functions_reports.php:738 +msgid "Max. value" +msgstr "Valeur maximale" + +#: ../../include/functions_reports.php:742 +msgid "Min. value" +msgstr "Valeur minimale" + +#: ../../include/functions_reports.php:746 +msgid "Monitor report" +msgstr "Rapport du moniteur" + +#: ../../include/functions_reports.php:750 +msgid "Serialize data" +msgstr "SĆ©rialiser les donnĆ©es" + +#: ../../include/functions_reports.php:758 +msgid "Historical Data" +msgstr "Historique des donnĆ©es" + +#: ../../include/functions_reports.php:770 ../../include/functions_reports.php:776 +#: ../../include/functions_reports.php:782 ../../include/functions_reports.php:788 +#: ../../include/functions_reports.php:794 ../../include/functions_reports.php:801 +#: ../../include/functions_reports.php:808 ../../include/functions_reports.php:814 +#: ../../include/functions_reports.php:818 ../../include/functions_reports.php:823 +#: ../../include/functions_reports.php:829 +msgid "Grouped" +msgstr "RegroupĆ©s" + +#: ../../include/functions_reports.php:802 +msgid "Agents/Modules status" +msgstr "Ɖtat des agents/modules" + +#: ../../include/functions_reports.php:819 +msgid "Network interfaces" +msgstr "Interfaces de rĆ©seau" + +#: ../../include/functions_reports.php:824 +msgid "Custom Render" +msgstr "Rendu personnalisĆ©" + +#: ../../include/functions_reports.php:834 ../../include/functions_reports.php:838 +msgid "Text/HTML " +msgstr "Texte/HTML " + +#: ../../include/functions_reports.php:839 +msgid "Import text from URL" +msgstr "Importer texte Ć  partir de l'URL" + +#: ../../include/functions_reports.php:844 +msgid "Module alert report" +msgstr "Rapport d'alerte de module" + +#: ../../include/functions_reports.php:848 +msgid "Agent alert report " +msgstr "Rapport d'alerte de l'agent" + +#: ../../include/functions_reports.php:854 +msgid "Group alert report" +msgstr "Rapport d'alerte groupe" + +#: ../../include/functions_reports.php:860 +msgid "Actions alert report " +msgstr "Rapport dā€™alerte dā€™actions " + +#: ../../include/functions_reports.php:865 +msgid "Module event report" +msgstr "Rapport d'Ć©vĆ©nement du module" + +#: ../../include/functions_reports.php:869 +msgid "Agent event report" +msgstr "Rapport d'Ć©vĆ©nement de l'agent" + +#: ../../include/functions_reports.php:873 +msgid "Group event report" +msgstr "Rapport d'Ć©vĆ©nement de groupe" + +#: ../../include/functions_reports.php:891 +msgid "Inventory changes" +msgstr "Changements d'inventaire" + +#: ../../include/functions_reports.php:899 +#: ../../include/functions_reporting.php:6434 +msgid "Agent configuration" +msgstr "Configuration des agents" + +#: ../../include/functions_reports.php:903 +#: ../../include/functions_reporting.php:4695 +msgid "Group configuration" +msgstr "Configuration du groupe" + +#: ../../include/functions_reports.php:911 +msgid "Netflow data table" +msgstr "Tableau de donnĆ©es Netflow" + +#: ../../include/functions_reports.php:915 +msgid "Netflow summary table" +msgstr "Tableau rĆ©capitulatif Netflow" + +#: ../../include/functions_reports.php:939 +msgid "Network configuration changes" +msgstr "Modifications de la configuration rĆ©seau" + +#: ../../include/functions_reports.php:1066 +msgid "Macro" +msgstr "Macro" + +#: ../../include/functions_reports.php:1081 ../../include/functions_reports.php:1210 +#: ../../include/functions_reports.php:1230 +msgid "Sql" +msgstr "SQL" + +#: ../../include/functions_reports.php:1082 +msgid "Graph Sql" +msgstr "Graphe SQL" + +#: ../../include/functions_html.php:595 ../../include/functions_html.php:969 +msgid "Please select an item from this list." +msgstr "Veuillez sĆ©lectionner un Ć©lĆ©ment dans cette liste." + +#: ../../include/functions_html.php:621 ../../include/functions_html.php:5910 +msgid "Please select..." +msgstr "Veuillez sĆ©lectionner..." + +#: ../../include/functions_html.php:1592 +msgid "Type to search agents" +msgstr "Tapez pour rechercher des agents" + +#: ../../include/functions_html.php:1606 +msgid "Type to search modules" +msgstr "Tapez pour rechercher des modules" + +#: ../../include/functions_html.php:1677 +msgid "Only common modules" +msgstr "Seuls les modules communes" + +#: ../../include/functions_html.php:2123 +msgid "weeks" +msgstr "semaines" + +#: ../../include/functions_html.php:2285 +msgid "Month day" +msgstr "Jour du mois" + +#: ../../include/functions_html.php:2287 +msgid "Week day" +msgstr "Jour de la semaine" + +#: ../../include/functions_html.php:4578 +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:4739 ../../index.php:487 ../../index.php:764 +#: ../../index.php:838 +#, php-format +msgid "%s cannot verify the origin of the request. Try again, please." +msgstr "%s ne peut pas vĆ©rifier l'origine de requĆŖte. Veuillez essayer Ć  nouveau." + +#: ../../include/functions_html.php:5665 +msgid "Type at least two characters to search the user." +msgstr "Tapez au moins deux caractĆØres pour rechercher l'utilisateur." + +#: ../../include/functions_html.php:6054 +msgid "Primary group cannot be secondary too." +msgstr "Le groupe principal ne peut pas non plus ĆŖtre secondaire." + +#: ../../include/functions_register.php:105 +#, php-format +msgid "%s configuration wizard" +msgstr "Assistant de configuration %s" + +#: ../../include/functions_register.php:108 +#, php-format +msgid "" +"Please fill the following information in order to configure your %s instance " +"successfully" +msgstr "" +"Veuillez remplir les informations suivantes afin de configurer votre instance %s " +"correctement" + +#: ../../include/functions_register.php:165 +msgid "" +"Must have the same time zone as the system or database to avoid mismatches of " +"time." +msgstr "" +"Doit avoir le mĆŖme fuseau horaire que le systĆØme ou la base de donnĆ©es pour " +"Ć©viter les dĆ©calages de temps." + +#: ../../include/functions_register.php:171 +msgid "E-mail for receiving alerts" +msgstr "Courriel pour recevoir des alertes" + +#: ../../include/functions_register.php:196 +msgid "All fields required" +msgstr "Tous les champs sont obligatoires" + +#: ../../include/functions_register.php:205 +msgid "Are you sure you don't want to configure a base email?" +msgstr "Ɗtes-vous sĆ»r de ne pas vouloir configurer un e-mail de baseĀ ?" + +#: ../../include/functions_register.php:207 +msgid "" +"You could change this options later in \"alert actions\" and setting your account." +msgstr "" +"Vous pouvez modifier ces options plus tard dans Ā«Ā actions d'alerteĀ Ā» et dans la " +"configuration de votre compte." + +#: ../../include/functions_config.php:144 +msgid "Failed updated: User did not login." +msgstr "Erreur de mise Ć  jour : l'utilisateur ne s'est pas connectĆ©." + +#: ../../include/functions_config.php:152 +msgid "Failed updated: User is not admin." +msgstr "Erreur de mise Ć  jour : l'utilisateur n'est pas un administrateur." + +#: ../../include/functions_config.php:186 +msgid "phantomjs config directory" +msgstr "rĆ©pertoire de configuration de phantomjs" + +#: ../../include/functions_config.php:202 +msgid "SSL cert path" +msgstr "Chemin du certificat SSL" + +#: ../../include/functions_config.php:210 +msgid "Use cert." +msgstr "Utiliser le certificat" + +#: ../../include/functions_config.php:242 +msgid "Integria inventory" +msgstr "Inventaire d'Integria IMS" + +#: ../../include/functions_config.php:246 ../../include/functions_config.php:1717 +msgid "Integria API password" +msgstr "Mot de passe de l'API d'Integria IMS" + +#: ../../include/functions_config.php:250 +msgid "Integria URL" +msgstr "URL d'Integria IMS" + +#: ../../include/functions_config.php:263 +#: ../../include/class/ExternalTools.class.php:213 +msgid "Sound for Alert fired" +msgstr "Son quand une alerte est declenchĆ©e" + +#: ../../include/functions_config.php:267 +#: ../../include/class/ExternalTools.class.php:243 +msgid "Sound for Monitor critical" +msgstr "Son pour Ć©tat critique du moniteur" + +#: ../../include/functions_config.php:271 +#: ../../include/class/ExternalTools.class.php:273 +msgid "Sound for Monitor warning" +msgstr "Son pour les alertes du moniteur" + +#: ../../include/functions_config.php:284 +msgid "License information" +msgstr "Information de la licence" + +#: ../../include/functions_config.php:314 +msgid "Use custom encoding" +msgstr "Utiliser un encodage personnalisĆ©" + +#: ../../include/functions_config.php:334 +msgid "Limit parameters bulk" +msgstr "Limite d'opĆ©rations massives" + +#: ../../include/functions_config.php:338 +msgid "Identification_reminder" +msgstr "Rappel d'identification" + +#: ../../include/functions_config.php:342 +msgid "Include_agents" +msgstr "Inclure des agents" + +#: ../../include/functions_config.php:346 +msgid "alias_as_name" +msgstr "Alias comme nom" + +#: ../../include/functions_config.php:350 +msgid "Console log enabled" +msgstr "Journal de la console activĆ©" + +#: ../../include/functions_config.php:354 +msgid "Audit log enabled" +msgstr "Journal d'audit activĆ©" + +#: ../../include/functions_config.php:358 +msgid "Module Custom ID read only" +msgstr "ID personnalisĆ© du module en lecture seule" + +#: ../../include/functions_config.php:413 +msgid "Replication DB host" +msgstr "HĆ“te de BD de rĆ©plication" + +#: ../../include/functions_config.php:417 +msgid "Replication DB database" +msgstr "Nom de la BD de rĆ©plication" + +#: ../../include/functions_config.php:421 +msgid "Replication DB user" +msgstr "Utilisateur de BD de rĆ©plication" + +#: ../../include/functions_config.php:425 +msgid "Replication DB password" +msgstr "Mot de passe de BD de rĆ©plication" + +#: ../../include/functions_config.php:429 +msgid "Replication DB port" +msgstr "Port de BD de rĆ©plication" + +#: ../../include/functions_config.php:433 +msgid "Metaconsole agent cache" +msgstr "Cache de l'agent de la MĆ©taconsole" + +#: ../../include/functions_config.php:441 +msgid "Enable Update Manager" +msgstr "Activer le Update Manager" + +#: ../../include/functions_config.php:445 +msgid "Ipam Ocuppied Manager Critical" +msgstr "Ipam OccupĆ© Manager Critique" + +#: ../../include/functions_config.php:449 +msgid "Ipam Ocuppied Manager Warning" +msgstr "Avertissement du gestionnaire occupĆ© par Ipam" + +#: ../../include/functions_config.php:622 +msgid "Secontary start TLS" +msgstr "DĆ©marrage secondaire TLS" + +#: ../../include/functions_config.php:738 +msgid "Saml profile parameters" +msgstr "ParamĆØtres de profils SAML" + +#: ../../include/functions_config.php:754 +msgid "2FA all users" +msgstr "2FA tous les utilisateurs" + +#: ../../include/functions_config.php:761 +msgid "Session timeout forced to 90 minutes" +msgstr "DĆ©lai d'expiration de la session forcĆ© Ć  90 minutes" + +#: ../../include/functions_config.php:820 +msgid "Max. days before autodisable deletion" +msgstr "Nombre de jours maximum avant suppression d'Ć©lĆ©ments dĆ©sactivĆ©s" + +#: ../../include/functions_config.php:824 +msgid "Item limit for realtime reports)" +msgstr "Limite d'Ć©lĆ©ments pour rapports en temps rĆ©el" + +#: ../../include/functions_config.php:856 +msgid "Big Operatiopn Step to purge old data" +msgstr "Ɖtape majeure pour nettoyer les donnĆ©es anciennes" + +#: ../../include/functions_config.php:890 +msgid "Max execution event response" +msgstr "RĆ©ponse maximale Ć  l'Ć©vĆ©nement d'exĆ©cution" + +#: ../../include/functions_config.php:898 +msgid "SNMP walk binary path" +msgstr "Chemin binaire de SNMP walk" + +#: ../../include/functions_config.php:902 +msgid "SNMP walk binary path (fallback for v1)" +msgstr "Chemin binaire SNMP walk (repli pour v1)" + +#: ../../include/functions_config.php:906 +msgid "Default WMI Binary" +msgstr "Binaire WMI par dĆ©faut" + +#: ../../include/functions_config.php:1009 +msgid "Show QR code header" +msgstr "Afficher code QR dans l'en-tĆŖte" + +#: ../../include/functions_config.php:1037 +msgid "Custom logo white background" +msgstr "Logo personnalisĆ© (fond blanc)" + +#: ../../include/functions_config.php:1065 +msgid "Custom title header" +msgstr "En-tĆŖte de titre personnalisĆ©" + +#: ../../include/functions_config.php:1069 +msgid "Custom subtitle header" +msgstr "En-tĆŖte de sous-titre personnalisĆ©" + +#: ../../include/functions_config.php:1093 ../../include/functions_config.php:1133 +msgid "Custom Docs url" +msgstr "URL de documents personnalisĆ©e" + +#: ../../include/functions_config.php:1097 ../../include/functions_config.php:1137 +msgid "Custom support url" +msgstr "URL d'assistance personnalisĆ©e" + +#: ../../include/functions_config.php:1109 +msgid "Custom logo metaconsole (white background)" +msgstr "Logo personnalisĆ© de la MĆ©taconsole (fond blanc dā€™en-tĆŖte)" + +#: ../../include/functions_config.php:1113 +msgid "Custom logo login metaconsole" +msgstr "Logo personnalisĆ© pour Ć©cran de connexion de la MĆ©taconsole" + +#: ../../include/functions_config.php:1117 +msgid "Custom splash login metaconsole" +msgstr "Splash personnalisĆ© pour Ć©cran de connexion de la MĆ©taconsole" + +#: ../../include/functions_config.php:1121 +msgid "Custom title1 login metaconsole" +msgstr "Titre1 personnalisĆ© pour Ć©cran de connexion de la MĆ©taconsole" + +#: ../../include/functions_config.php:1125 +msgid "Custom title2 login metaconsole" +msgstr "Titre2 personnalisĆ© pour Ć©cran de connexion de la MĆ©taconsole" + +#: ../../include/functions_config.php:1129 +msgid "Login background metaconsole" +msgstr "Fond d'Ć©cran de connexion Ć  la MĆ©taconsole" + +#: ../../include/functions_config.php:1153 +msgid "Default line favourite_view for the Visual Console" +msgstr "Ligne par dĆ©faut favourite_view pour la console visuelle" + +#: ../../include/functions_config.php:1157 +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:1169 +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:1201 +msgid "Show units in values report" +msgstr "Afficher unitĆ©s dans les valeurs du rapport" + +#: ../../include/functions_config.php:1209 +msgid "Autohidden menu" +msgstr "Menu cachĆ© automatiquement" + +#: ../../include/functions_config.php:1213 +msgid "visual_animation" +msgstr "visual_animation" + +#: ../../include/functions_config.php:1221 +msgid "Fixed graph" +msgstr "Graphique fixe" + +#: ../../include/functions_config.php:1229 +msgid "Paginate module" +msgstr "Paginer module" + +#: ../../include/functions_config.php:1233 +#: ../../include/class/ExternalTools.class.php:303 +msgid "Custom graphviz directory" +msgstr "RĆ©pertoire personnalisĆ© graphviz" + +#: ../../include/functions_config.php:1241 +msgid "Shortened module graph data" +msgstr "Graphique de module de donnĆ©es raccourcies" + +#: ../../include/functions_config.php:1249 +msgid "Show empty groups in group view." +msgstr "Afficher les groupes vides dans la vue de groupe." + +#: ../../include/functions_config.php:1257 +msgid "Default type of module charts." +msgstr "Type de graphiques de modules par dĆ©faut" + +#: ../../include/functions_config.php:1261 +msgid "Default Number of elements in Custom Graph." +msgstr "Nombre d'Ć©lĆ©ments par dĆ©faut dans le graphique personnalisĆ©." + +#: ../../include/functions_config.php:1265 +msgid "Default type of interface charts." +msgstr "Type de graphiques d'interface par dĆ©faut" + +#: ../../include/functions_config.php:1281 +msgid "Display lateral menus with left click" +msgstr "Afficher menus latĆ©raux en faisant clic gauche" + +#: ../../include/functions_config.php:1290 +msgid "Service item padding size" +msgstr "Espace entre les nœuds de la carte de service" + +#: ../../include/functions_config.php:1295 +msgid "Default percentil" +msgstr "Centile par dĆ©faut" + +#: ../../include/functions_config.php:1299 +msgid "Default full scale (TIP)" +msgstr "Pleine Ć©chelle par dĆ©faut (TIP)" + +#: ../../include/functions_config.php:1303 +msgid "Default soft graphs" +msgstr "Graphiques logiciels par dĆ©faut" + +#: ../../include/functions_config.php:1307 +msgid "Default zoom graphs" +msgstr "Graphiques de zoom par dĆ©faut" + +#: ../../include/functions_config.php:1316 +msgid "Default height of the chart image" +msgstr "Hauteur par dĆ©faut de l'image du graphique" + +#: ../../include/functions_config.php:1338 +msgid "Add the custom post process" +msgstr "Ajouter personnalisation au processus postĆ©rieur" + +#: ../../include/functions_config.php:1346 +msgid "Delete the custom post process" +msgstr "Supprimer personnalisation du processus postĆ©rieur" + +#: ../../include/functions_config.php:1400 +msgid "Add custom module unit" +msgstr "Ajouter une unitĆ© de module personnalisĆ©e" + +#: ../../include/functions_config.php:1406 +msgid "Delete custom module unit" +msgstr "Supprimer l'unitĆ© de module personnalisĆ©" + +#: ../../include/functions_config.php:1499 +msgid "IP ElasticSearch server" +msgstr "IP du serveur ElasticSearch" + +#: ../../include/functions_config.php:1503 +msgid "Port ElasticSearch server" +msgstr "Port du serveur ElasticSearch" + +#: ../../include/functions_config.php:1524 +msgid "Active and historical database cannot be the same." +msgstr "Les bases de donnĆ©es actives et historiques ne peuvent pas ĆŖtre identiques." + +#: ../../include/functions_config.php:1542 +msgid "Enable history database" +msgstr "Activer la base de donnĆ©es de l'historique" + +#: ../../include/functions_config.php:1546 +msgid "Enable history event" +msgstr "Activer historique d'Ć©vĆ©nements" + +#: ../../include/functions_config.php:1570 +msgid "Event Days" +msgstr "Jours d'Ć©vĆ©nements" + +#: ../../include/functions_config.php:1586 +msgid "Delay" +msgstr "Retard" + +#: ../../include/functions_config.php:1618 +msgid "Historical database purge" +msgstr "Purge de la base de donnĆ©es historique" + +#: ../../include/functions_config.php:1626 +msgid "Historical database partitions" +msgstr "Partitions de base de donnĆ©es historiques" + +#: ../../include/functions_config.php:1634 +msgid "Historical database events purge" +msgstr "Purge des Ć©vĆ©nements de base de donnĆ©es historiques" + +#: ../../include/functions_config.php:1642 +msgid "Historical database string purge" +msgstr "Purge de la chaĆ®ne de la base de donnĆ©es historique" + +#: ../../include/functions_config.php:1657 +msgid "eHorus user login" +msgstr "Connexion utilisateur eHorus" + +#: ../../include/functions_config.php:1669 +msgid "eHorus API hostname" +msgstr "Nom d'hĆ“te API eHorus" + +#: ../../include/functions_config.php:1673 +msgid "eHorus API port" +msgstr "Port API eHorus" + +#: ../../include/functions_config.php:1677 +msgid "eHorus request timeout" +msgstr "DĆ©lai de requĆŖte eHorus" + +#: ../../include/functions_config.php:1681 +msgid "eHorus id custom field" +msgstr "Identifiant du champ personnalisĆ© eHorus" + +#: ../../include/functions_config.php:1687 +msgid "Integria user login" +msgstr "Connexion utilisateur Integria" + +#: ../../include/functions_config.php:1695 +msgid "Integria user" +msgstr "Utilisateur dā€™Integria" + +#: ../../include/functions_config.php:1699 +msgid "Integria password" +msgstr "Mot de passe dā€™Integria" + +#: ../../include/functions_config.php:1713 +msgid "integria API hostname" +msgstr "nom d'hĆ“te de l'API dā€™Integria" + +#: ../../include/functions_config.php:1721 +msgid "Integria request timeout" +msgstr "DĆ©lai d'expiration de la requĆŖte dā€™Integria" + +#: ../../include/functions_config.php:1725 +msgid "Integria default group" +msgstr "Groupe par dĆ©faut dā€™Integria" + +#: ../../include/functions_config.php:1729 +msgid "Integria custom response default group" +msgstr "Groupe par dĆ©faut de rĆ©ponse personnalisĆ©e dā€™Integria" + +#: ../../include/functions_config.php:1733 +msgid "Integria default priority" +msgstr "PrioritĆ© par dĆ©faut dā€™Integria" + +#: ../../include/functions_config.php:1737 +msgid "Integria custom response default priority" +msgstr "PrioritĆ© par dĆ©faut de la rĆ©ponse personnalisĆ©e dā€™Integria" + +#: ../../include/functions_config.php:1741 +msgid "Integria default creator" +msgstr "CrĆ©ateur par dĆ©faut dā€™Integria" + +#: ../../include/functions_config.php:1745 +msgid "Integria default owner" +msgstr "PropriĆ©taire par dĆ©faut dā€™Integria" + +#: ../../include/functions_config.php:1749 +msgid "Integria custom response default owner" +msgstr "PropriĆ©taire par dĆ©faut de la rĆ©ponse personnalisĆ©e dā€™Integria" + +#: ../../include/functions_config.php:1753 +msgid "Integria default ticket type" +msgstr "Type de ticket par dĆ©faut dā€™Integria" + +#: ../../include/functions_config.php:1757 +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:1761 +msgid "Integria default ticket status" +msgstr "Ɖtat du ticket par dĆ©faut d'Integria" + +#: ../../include/functions_config.php:1765 +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:1769 +msgid "Integria default ticket title" +msgstr "Titre du ticket par dĆ©faut dā€™Integria" + +#: ../../include/functions_config.php:1773 +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:1777 +msgid "Integria default ticket content" +msgstr "Contenu du ticket par dĆ©faut d'Integria" + +#: ../../include/functions_config.php:1781 +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:1787 +msgid "Module Library User" +msgstr "Utilisateur de la bibliothĆØque de modules" + +#: ../../include/functions_config.php:1791 +msgid "Module Library Password" +msgstr "Mot de passe de la bibliothĆØque de modules" + +#: ../../include/functions_config.php:1797 +msgid "WebSocket bind address" +msgstr "Adresse de liaison WebSocket" + +#: ../../include/functions_config.php:1801 +msgid "WebSocket port" +msgstr "Port WebSocket" + +#: ../../include/functions_config.php:1824 +#, php-format +msgid "Failed updated: the next values cannot update:
    -%s" +msgstr "" +"Ɖchec de la mise Ć  jour : les valeurs suivantes ne peuvent pas ĆŖtre mises Ć  " +"jour :
    -%s" + +#: ../../include/functions_config.php:2380 +#: ../../operation/agentes/networkmap.dinamic.php:226 +msgid "Pandora FMS" +msgstr "Pandora FMS" + +#: ../../include/functions_config.php:2388 +msgid "PandoraFMS Metaconsole" +msgstr "MĆ©taconsole PandoraFMS" + +#: ../../include/functions_config.php:2392 +msgid "Centralized operation console" +msgstr "Console d'exploitation centralisĆ©e" + +#: ../../include/functions_config.php:2396 +msgid "PANDORA FMS" +msgstr "PANDORA FMS" + +#: ../../include/get_file.php:57 +msgid "Security error. Please contact the administrator." +msgstr "Erreur de sĆ©curitĆ©. Veuillez communiquer avec l'administrateur." + +#: ../../include/get_file.php:92 +msgid "File is missing in disk storage. Please contact the administrator." +msgstr "" +"Fichier manquant dans le disque. Veuillez communiquer avec l'administrateur." + +#: ../../include/functions_netflow.php:351 +msgid "Avg. Throughput" +msgstr "DĆ©bit moyen" + +#: ../../include/functions_netflow.php:431 +msgid "Average bits per second" +msgstr "Moyenne de bits par seconde" + +#: ../../include/functions_netflow.php:436 +msgid "Average packets per second" +msgstr "Moyenne de progiciels par seconde" + +#: ../../include/functions_netflow.php:441 +msgid "Average bytes per packet" +msgstr "Moyenne d'octets par progiciel" + +#: ../../include/functions_netflow.php:1182 +msgid "Area graph" +msgstr "Graphique de zone" + +#: ../../include/functions_netflow.php:1184 +#: ../../operation/agentes/exportdata.php:378 +msgid "Data table" +msgstr "Tableau de donnĆ©es" + +#: ../../include/functions_netflow.php:1185 +msgid "Top-N connections" +msgstr "Connexions Top-N" + +#: ../../include/functions_netflow.php:1186 +msgid "Circular mesh" +msgstr "Maille circulaire" + +#: ../../include/functions_netflow.php:1187 ../../include/functions_netflow.php:1452 +msgid "Host detailed traffic" +msgstr "Trafic dĆ©taillĆ© de la machine" + +#: ../../include/functions_netflow.php:1439 +msgid "Sent" +msgstr "EnvoyĆ©" + +#: ../../include/functions_netflow.php:1447 +msgid "Received" +msgstr "ReƧu" + +#: ../../include/functions_netflow.php:1628 +msgid "Dst port" +msgstr "Port de destination" + +#: ../../include/functions_netflow.php:1631 +msgid "Dst IP" +msgstr "Adresse IP de destination" + +#: ../../include/functions_netflow.php:1634 +msgid "Src IP" +msgstr "Adresse IP source" + +#: ../../include/functions_netflow.php:1637 +msgid "Src port" +msgstr "Port source" + +#: ../../include/functions_netflow.php:1823 +#, php-format +msgid "nfdump binary (%s) not found!" +msgstr "nfdump binary (%s) non retrouvĆ©" + +#: ../../include/functions_netflow.php:1830 +msgid "Make sure nfdump version 1.6.8 or newer is installed!" +msgstr "" +"Assurez-vous que la version nfdump 1.6.8 ou une plus rĆ©cente est installĆ©e !" + +#: ../../include/functions_netflow.php:1847 +msgid "High" +msgstr "ƉlevĆ©" + +#: ../../include/functions_netflow.php:1848 +msgid "Ultra High" +msgstr "TrĆØs Ć©levĆ©" + +#: ../../include/functions_netflow.php:1881 +#, php-format +msgid "Agregate by %s" +msgstr "AgrĆ©ger par %s" + +#: ../../include/functions_netflow.php:1889 +#, php-format +msgid "Resolution %s" +msgstr "RĆ©solution %s" #: ../../include/class/Tree.class.php:775 ../../include/class/Tree.class.php:777 msgid "Module alerts" msgstr "Alertes des modules" -#: ../../include/class/ModuleTemplates.class.php:196 -#: ../../include/class/ModuleTemplates.class.php:214 -#: ../../include/class/ConfigPEN.class.php:332 -#: ../../include/functions_menu.php:515 -#: ../../enterprise/views/ncm/templates/list.php:32 -#: ../../enterprise/include/functions_reporting.php:146 -#: ../../enterprise/include/functions_reporting.php:7983 -#: ../../enterprise/include/functions_reporting.php:8011 -#: ../../enterprise/include/functions_reporting.php:8082 -#: ../../enterprise/meta/include/functions_alerts_meta.php:129 -#: ../../enterprise/meta/include/functions_alerts_meta.php:160 -#: ../../enterprise/godmode/reporting/visual_console_template.php:109 -#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:191 -#: ../../enterprise/godmode/reporting/graph_template_wizard.php:192 -#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:261 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2094 -#: ../../godmode/reporting/reporting_builder.item_editor.php:1884 -#: ../../godmode/menu.php:144 ../../godmode/menu.php:230 -#: ../../godmode/agentes/configurar_agente.php:740 -msgid "Templates" -msgstr "ModĆØles" - -#: ../../include/class/ModuleTemplates.class.php:199 -#: ../../include/class/ModuleTemplates.class.php:217 -#: ../../include/class/ModuleTemplates.class.php:227 -#: ../../godmode/modules/manage_network_templates.php:39 -#: ../../godmode/modules/manage_network_templates_form.php:32 -msgid "Module template management" -msgstr "Gestion de modĆØle de module" - -#: ../../include/class/ModuleTemplates.class.php:353 -#, php-format -msgid "Template %s successfully updated" -msgstr "Le modĆØle %s a Ć©tĆ© mis Ć  jour correctement" - -#: ../../include/class/ModuleTemplates.class.php:355 -#: ../../enterprise/godmode/reporting/graph_template_editor.php:174 -msgid "Error updating template" -msgstr "Erreur mise Ć  jour du modĆØle" - -#: ../../include/class/ModuleTemplates.class.php:400 -#, php-format -msgid "Template %s successfully created" -msgstr "ModĆØle %s crĆ©Ć© correctement." - -#: ../../include/class/ModuleTemplates.class.php:402 -msgid "Error creating template" -msgstr "Erreur lors de la crĆ©ation du modĆØle." - -#: ../../include/class/ModuleTemplates.class.php:410 -#, php-format -msgid "Template %s successfully deleted" -msgstr "ModĆØle %s supprimĆ© correctement" - -#: ../../include/class/ModuleTemplates.class.php:412 -#, php-format -msgid "Error deleting %s template" -msgstr "Erreur de suppression du modĆØle %s" - -#: ../../include/class/ModuleTemplates.class.php:559 -msgid "Module successfully deleted" -msgstr "Module supprimĆ© correctement" - -#: ../../include/class/ModuleTemplates.class.php:561 -msgid "Error deleting module" -msgstr "Erreur lors de la suppression du module" - -#: ../../include/class/ModuleTemplates.class.php:572 -msgid "Block successfully deleted" -msgstr "Bloc supprimĆ© correctement" - -#: ../../include/class/ModuleTemplates.class.php:574 -msgid "Error deleting block" -msgstr "Erreur lors de la suppression du bloc" - -#: ../../include/class/ModuleTemplates.class.php:586 -msgid "All templates deleted" -msgstr "Tous les modĆØles supprimĆ©s" - -#: ../../include/class/ModuleTemplates.class.php:588 -msgid "Error deleting all templates" -msgstr "Erreur lors de la suppression de tous les modĆØles" - -#: ../../include/class/ModuleTemplates.class.php:597 -msgid "Selected templates deleted" -msgstr "ModĆØles sĆ©lectionnĆ©s supprimĆ©s" - -#: ../../include/class/ModuleTemplates.class.php:599 -msgid "Error deleting selected templates" -msgstr "Erreur lors de la suppression des modĆØles sĆ©lectionnĆ©s" - -#: ../../include/class/ModuleTemplates.class.php:611 -msgid "Something gone wrong. Please, try again" -msgstr "Un problĆØme est survenu, merci dā€™essayer Ć  nouveau." - -#: ../../include/class/ModuleTemplates.class.php:662 -msgid "The modules is already added" -msgstr "Les modules sont dĆ©jĆ  ajoutĆ©s" - -#: ../../include/class/ModuleTemplates.class.php:804 -#: ../../enterprise/meta/include/functions_wizard_meta.php:309 -#: ../../godmode/modules/manage_network_templates_form.php:341 -msgid "Components" -msgstr "Composants" - -#: ../../include/class/ModuleTemplates.class.php:1074 #: ../../include/class/ConfigPEN.class.php:428 #: ../../include/class/ConfigPEN.class.php:597 +#: ../../include/class/ModuleTemplates.class.php:1074 msgid "PEN" msgstr "PEN" -#: ../../include/class/ModuleTemplates.class.php:1111 -#: ../../include/class/ModuleTemplates.class.php:1383 -msgid "Add components" -msgstr "Ajouter des composants" +#: ../../include/class/ConfigPEN.class.php:435 +#: ../../include/class/ConfigPEN.class.php:598 +msgid "Manufacturer" +msgstr "Fabricant" -#: ../../include/class/ModuleTemplates.class.php:1163 -#: ../../include/class/ModuleTemplates.class.php:1298 -msgid "No module blocks for this profile" -msgstr "Aucun bloc de module pour ce profil" +#: ../../include/class/ConfigPEN.class.php:483 +msgid "PEN is required" +msgstr "PEN est requis" -#: ../../include/class/ModuleTemplates.class.php:1186 -msgid "Delete this block" -msgstr "Supprimer ce bloc" +#: ../../include/class/ConfigPEN.class.php:509 +msgid "PEN is required." +msgstr "PEN est requis." -#: ../../include/class/ModuleTemplates.class.php:1188 -msgid "Do you want delete this block?" -msgstr "Voulez-vous supprimer ce blocĀ ?" +#: ../../include/class/ConfigPEN.class.php:513 +msgid "Manufacturer is required" +msgstr "Le fabricant est requis" -#: ../../include/class/ModuleTemplates.class.php:1208 -#: ../../enterprise/godmode/modules/manage_inventory_modules_form.php:121 -#: ../../godmode/massive/massive_standby_alerts.php:223 -#: ../../godmode/massive/massive_standby_alerts.php:258 -#: ../../godmode/massive/massive_enable_disable_alerts.php:195 -#: ../../godmode/massive/massive_enable_disable_alerts.php:230 -msgid "Format" -msgstr "Format" +#: ../../include/class/ConfigPEN.class.php:530 +msgid "This PEN definition does not exist" +msgstr "Cette dĆ©finition PEN n'existe pas" -#: ../../include/class/ModuleTemplates.class.php:1234 -#: ../../godmode/modules/manage_network_components.php:804 -msgid "Network module" -msgstr "Module de rĆ©seau" +#: ../../include/class/ConfigPEN.class.php:544 +msgid "created" +msgstr "crĆ©Ć©" -#: ../../include/class/ModuleTemplates.class.php:1245 -#: ../../godmode/modules/manage_network_components.php:815 -msgid "WMI module" -msgstr "Module WMI" +#: ../../include/class/ConfigPEN.class.php:550 +msgid "This PEN definition already exists" +msgstr "Cette dĆ©finition PEN existe dĆ©jĆ " -#: ../../include/class/ModuleTemplates.class.php:1256 -#: ../../godmode/modules/manage_network_components.php:826 -msgid "Plug-in module" -msgstr "Module de plugin" - -#: ../../include/class/ModuleTemplates.class.php:1283 -msgid "Delete this module" -msgstr "Supprimer ce module" - -#: ../../include/class/ModuleTemplates.class.php:1285 -msgid "Do you want delete this module?" -msgstr "Voulez-vous supprimer ce moduleĀ ?" - -#: ../../include/class/ModuleTemplates.class.php:1476 -msgid "Do you want delete all templates?" -msgstr "Voulez-vous supprimer tous les modĆØlesĀ ?" - -#: ../../include/class/ModuleTemplates.class.php:1479 -msgid "Do you want delete the selected templates?" -msgstr "Voulez-vous supprimer les modĆØles sĆ©lectionnĆ©sĀ ?" - -#: ../../include/class/AuditLog.class.php:128 -#: ../../enterprise/godmode/admin_access_logs.php:54 -#: ../../enterprise/godmode/policies/policy_agents.php:854 -#: ../../enterprise/godmode/policies/policy_agents.php:1369 -#: ../../mobile/operation/agents.php:407 -#: ../../godmode/reporting/visual_console_builder.elements.php:118 -msgid "A." -msgstr "A." - -#: ../../include/class/AuditLog.class.php:136 +#: ../../include/class/ConfigPEN.class.php:571 #, php-format -msgid "%s audit" -msgstr "Audit %s" +msgid "Succesfully %s" +msgstr "Correctement %s" -#: ../../include/class/AuditLog.class.php:136 -msgid "Review Logs" -msgstr "RĆ©viser les journaux" +#: ../../include/class/ConfigPEN.class.php:651 +msgid "Register manufacturer" +msgstr "Enregistrer le fabricant" -#: ../../include/class/AuditLog.class.php:145 -#: ../../enterprise/include/class/ManageBackups.class.php:117 -msgid "Admin Tools" -msgstr "Outils dā€™administration" +#: ../../include/class/ConfigPEN.class.php:667 +msgid "Are you sure you want to delete this PEN?" +msgstr "Etes-vous sĆ»r de vouloir supprimer ceci ?" -#: ../../include/class/AuditLog.class.php:149 -msgid "System Audit log" -msgstr "Journaux d'audit du systĆØme" - -#: ../../include/class/AuditLog.class.php:376 -#: ../../enterprise/include/class/ManageBackups.class.php:424 -msgid "There is no additional information to display" -msgstr "Il nā€™y a pas dā€™informations supplĆ©mentaires Ć  afficher" - -#: ../../include/class/Heatmap.class.php:743 -#: ../../enterprise/include/class/CommandCenter.class.php:454 -msgid "Info" -msgstr "Information" - -#: ../../include/class/HelpFeedBack.class.php:99 -#: ../../enterprise/include/class/Omnishell.class.php:319 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:719 -msgid "Page not found" -msgstr "Page non trouvĆ©e" +#: ../../include/class/ConfigPEN.class.php:694 +msgid "Register new manufacturer" +msgstr "Enregistrer un nouveau fabricant" #: ../../include/class/HelpFeedBack.class.php:104 msgid "Browser not compatible." @@ -15674,6 +44419,12 @@ msgstr "Votre Email" msgid "Submit" msgstr "Envoyer" +#: ../../include/class/HelpFeedBack.class.php:213 +#: ../../include/class/Diagnostics.class.php:1967 ../../general/header.php:356 +#: ../../general/header.php:358 +msgid "Feedback" +msgstr "Commentaires" + #: ../../include/class/HelpFeedBack.class.php:253 msgid "[pandorafms wiki] New suggestion" msgstr "[wiki pandorafms] Nouvelle suggestion" @@ -15685,8 +44436,7 @@ msgstr "[wiki pandorafms] Nouveau rapport" #: ../../include/class/HelpFeedBack.class.php:261 msgid "Please provide your email address, we promise not to bother you" msgstr "" -"Veuillez fournir votre adresse e-mail, nous nous engageons Ć  ne pas vous " -"dĆ©ranger" +"Veuillez fournir votre adresse e-mail, nous nous engageons Ć  ne pas vous dĆ©ranger" #: ../../include/class/HelpFeedBack.class.php:309 msgid "Something went wrong while sending the report." @@ -15700,613 +44450,6 @@ msgstr "Votre rapport a Ć©tĆ© envoyĆ© correctement Ć  Artica." msgid "Thank you!" msgstr "Merci !" -#: ../../include/class/ManageNetScanScripts.class.php:104 -#: ../../include/class/CustomNetScan.class.php:352 -#: ../../enterprise/include/class/CSVImportAgents.class.php:98 -#: ../../enterprise/include/class/DeploymentCenter.class.php:594 -#: ../../godmode/wizards/HostDevices.class.php:196 -msgid "Host & Devices" -msgstr "HĆ“te et appareils" - -#: ../../include/class/ManageNetScanScripts.class.php:122 -msgid "Net scan scripts" -msgstr "Scripts d'analyse rĆ©seau" - -#: ../../include/class/ManageNetScanScripts.class.php:223 -msgid "Problem creating" -msgstr "ProblĆØme de crĆ©ation" - -#: ../../include/class/ManageNetScanScripts.class.php:228 -#: ../../enterprise/godmode/modules/local_components.php:326 -#: ../../godmode/modules/manage_network_components.php:438 -msgid "Created successfully" -msgstr "CrĆ©Ć© correctement" - -#: ../../include/class/ManageNetScanScripts.class.php:234 -#: ../../include/class/ManageNetScanScripts.class.php:321 -msgid "Name or Script fullpath they can not be empty" -msgstr "Nom ou chemin complet du script, ils ne peuvent pas ĆŖtre vides" - -#: ../../include/class/ManageNetScanScripts.class.php:255 -#: ../../include/class/ManageNetScanScripts.class.php:342 -msgid "Problem deleting Net scan Scripts, Not selected script" -msgstr "ProblĆØme de suppression des scripts Net scan, script non sĆ©lectionnĆ©" - -#: ../../include/class/ManageNetScanScripts.class.php:310 -msgid "Problem updating" -msgstr "ProblĆØme de mise Ć  jour" - -#: ../../include/class/ManageNetScanScripts.class.php:315 -#: ../../enterprise/godmode/modules/local_components.php:401 -#: ../../godmode/modules/manage_network_components.php:534 -msgid "Updated successfully" -msgstr "Mis Ć  jour correctement" - -#: ../../include/class/ManageNetScanScripts.class.php:361 -msgid "Problem deleting Net scan Scripts" -msgstr "ProblĆØme de suppression des scripts Net scan" - -#: ../../include/class/ManageNetScanScripts.class.php:366 -msgid "Deleted successfully" -msgstr "SupprimĆ© correctement" - -#: ../../include/class/ManageNetScanScripts.class.php:434 -#: ../../include/class/ExternalTools.class.php:353 -#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:1103 -#: ../../godmode/servers/plugin.php:429 ../../godmode/servers/plugin.php:434 -#: ../../godmode/servers/plugin.php:817 -#: ../../godmode/modules/manage_network_components_form_network.php:223 -#: ../../godmode/events/event_responses.editor.php:157 -#: ../../godmode/events/event_responses.editor.php:164 -#: ../../godmode/massive/massive_edit_plugins.php:480 -#: ../../godmode/massive/massive_edit_modules.php:1181 -#: ../../godmode/agentes/module_manager_editor_network.php:433 -#: ../../godmode/alerts/alert_actions.php:272 -#: ../../godmode/alerts/alert_actions.php:327 -#: ../../godmode/alerts/configure_alert_command.php:246 -#: ../../godmode/alerts/configure_alert_action.php:247 -msgid "Command" -msgstr "Commande" - -#: ../../include/class/ManageNetScanScripts.class.php:439 -msgid "Are you sure delete script?" -msgstr "Ɗtes-vous sĆ»r de supprimer le scriptĀ ?" - -#: ../../include/class/ManageNetScanScripts.class.php:459 -msgid "Delete Script" -msgstr "Supprimer le script" - -#: ../../include/class/ManageNetScanScripts.class.php:478 -msgid "There are no net scan scripts in the system" -msgstr "Il n'y a pas de scripts net scan dans le systĆØme" - -#: ../../include/class/ManageNetScanScripts.class.php:552 -msgid "Script fullpath" -msgstr "Chemin complet du script" - -#: ../../include/class/ManageNetScanScripts.class.php:636 -#: ../../enterprise/godmode/modules/configure_local_component.php:639 -#: ../../godmode/servers/plugin.php:492 -msgid "Default value" -msgstr "Valeur par dĆ©faut" - -#: ../../include/class/ManageNetScanScripts.class.php:667 -#: ../../godmode/servers/plugin.php:505 -msgid "Hide value" -msgstr "Cacher la valeur" - -#: ../../include/class/ManageNetScanScripts.class.php:669 -#: ../../godmode/servers/plugin.php:506 -msgid "This field will show up as dots like a password" -msgstr "Ce champ sera affichĆ© sous forme de points, comme un mot de passe" - -#: ../../include/class/ManageNetScanScripts.class.php:690 -#: ../../include/functions_ui.php:1446 -#: ../../enterprise/meta/general/login_page.php:75 -#: ../../enterprise/meta/include/reset_pass.php:58 -#: ../../enterprise/meta/include/process_reset_pass.php:58 -#: ../../enterprise/godmode/modules/configure_local_component.php:645 -#: ../../godmode/servers/plugin.php:526 -msgid "Help" -msgstr "Aide" - -#: ../../include/class/ManageNetScanScripts.class.php:724 -#: ../../enterprise/godmode/modules/configure_local_component.php:655 -#: ../../godmode/servers/plugin.php:554 -msgid "Add macro" -msgstr "Ajouter une macro" - -#: ../../include/class/ManageNetScanScripts.class.php:742 -#: ../../enterprise/godmode/modules/configure_local_component.php:663 -#: ../../godmode/servers/plugin.php:568 -msgid "Delete macro" -msgstr "Effacer une macro" - -#: ../../include/class/AgentsAlerts.class.php:304 -#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:441 -#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:548 -#: ../../enterprise/meta/monitoring/wizard/wizard.manage_alert.php:263 -#: ../../godmode/alerts/configure_alert_template.php:758 -#: ../../godmode/alerts/alert_list.builder.php:117 -msgid "Default action" -msgstr "Action par dĆ©faut" - -#: ../../include/class/AgentsAlerts.class.php:332 -#: ../../godmode/alerts/alert_list.builder.php:136 -#: ../../godmode/alerts/configure_alert_action.php:169 -msgid "Create Action" -msgstr "CrĆ©er une action" - -#: ../../include/class/AgentsAlerts.class.php:379 -#: ../../godmode/alerts/configure_alert_template.php:607 -#: ../../godmode/alerts/alert_list.builder.php:169 -msgid "Create Template" -msgstr "CrĆ©er un modĆØle" - -#: ../../include/class/AgentsAlerts.class.php:396 -#: ../../enterprise/godmode/alerts/alert_inventory_builder.php:282 -#: ../../godmode/alerts/alert_list.builder.php:204 -msgid "Add alert" -msgstr "Ajouter alertes" - -#: ../../include/class/AgentsAlerts.class.php:502 -msgid "There are no agents with alerts" -msgstr "Il n'y a pas d'agents avec des alertes" - -#: ../../include/class/AgentsAlerts.class.php:580 -msgid "Previous alerts" -msgstr "Alertes prĆ©cĆ©dentes" - -#: ../../include/class/AgentsAlerts.class.php:644 -msgid "More alerts" -msgstr "Plus d'alertes" - -#: ../../include/class/AgentsAlerts.class.php:729 -msgid "Agents/Alerts" -msgstr "Agents / Alertes" - -#: ../../include/class/AgentsAlerts.class.php:778 -msgid "Show modules without alerts" -msgstr "Afficher les modules sans alertes" - -#: ../../include/class/AgentsAlerts.class.php:937 -#: ../../include/functions_ui.php:1247 -#: ../../enterprise/operation/agentes/policy_view.php:345 -#: ../../mobile/operation/alerts.php:324 -#: ../../godmode/alerts/alert_list.list.php:559 -#: ../../godmode/alerts/alert_view.php:105 -msgid "time(s)" -msgstr "foi(s)" - -#: ../../include/class/AgentsAlerts.class.php:940 -#: ../../include/functions_reporting.php:12344 -#: ../../include/functions_ui.php:1250 -#: ../../enterprise/operation/agentes/policy_view.php:348 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3186 -#: ../../enterprise/godmode/alerts/alert_inventory_list.php:261 -#: ../../mobile/operation/alerts.php:327 -#: ../../godmode/alerts/alert_list.list.php:562 -#: ../../godmode/alerts/alert_view.php:108 -msgid "Alert disabled" -msgstr "Alerte dĆ©sactivĆ©e" - -#: ../../include/class/WebServerModuleDebug.class.php:143 -msgid "Performing query. Please wait." -msgstr "ExĆ©cution de la requĆŖte. S'il vous plaĆ®t, attendez." - -#: ../../include/class/WebServerModuleDebug.class.php:174 -msgid "No results" -msgstr "Aucun rĆ©sultat" - -#: ../../include/class/WebServerModuleDebug.class.php:197 -msgid "Error performing execution" -msgstr "Erreur lors de l'exĆ©cution" - -#: ../../include/class/WebServerModuleDebug.class.php:229 -msgid "Please, wait for a first execution of module" -msgstr "Veuillez attendre une premiĆØre exĆ©cution du module" - -#: ../../include/class/WebServerModuleDebug.class.php:325 -#: ../../godmode/agentes/module_manager_editor_web.php:180 -msgid "Debug" -msgstr "DĆ©bogage" - -#: ../../include/class/OrderInterpreter.class.php:105 -#: ../../enterprise/meta/monitoring/tactical.php:40 -msgid "Tactical View" -msgstr "Vue tactique" - -#: ../../include/class/OrderInterpreter.class.php:123 -msgid "Agent Management" -msgstr "Gestion des agents" - -#: ../../include/class/OrderInterpreter.class.php:141 ../../godmode/menu.php:322 -msgid "General Setup" -msgstr "Configuration gĆ©nĆ©rale" - -#: ../../include/class/OrderInterpreter.class.php:157 -msgid "Manage Policies" -msgstr "GĆ©rer les politiques" - -#: ../../include/class/OrderInterpreter.class.php:171 -msgid "List Alerts" -msgstr "Liste d'alertes" - -#: ../../include/class/OrderInterpreter.class.php:195 -msgid "View Events" -msgstr "Voir les Ć©vĆØnements" - -#: ../../include/class/OrderInterpreter.class.php:247 -msgid "Manage Servers" -msgstr "GĆ©rer les serveurs" - -#: ../../include/class/OrderInterpreter.class.php:261 -msgid "Edit User" -msgstr "Modifier l'utilisateur" - -#: ../../include/class/OrderInterpreter.class.php:271 -msgid "Tree View" -msgstr "Vue arborescente" - -#: ../../include/class/OrderInterpreter.class.php:281 -msgid "Network Component" -msgstr "Composant rĆ©seau" - -#: ../../include/class/OrderInterpreter.class.php:295 -msgid "Task List" -msgstr "Liste de tĆ¢ches" - -#: ../../include/class/OrderInterpreter.class.php:339 ../../godmode/menu.php:528 -msgid "Warp Update" -msgstr "Warp Update" - -#: ../../include/class/OrderInterpreter.class.php:353 -msgid "Manage Agent Groups" -msgstr "GĆ©rer les groupes dā€™agents" - -#: ../../include/class/OrderInterpreter.class.php:394 -msgid "GO TO " -msgstr "ALLER ƀ" - -#: ../../include/class/OrderInterpreter.class.php:423 -msgid "results found" -msgstr "rĆ©sultats trouvĆ©s" - -#: ../../include/class/OrderInterpreter.class.php:427 -msgid "Press enter to search" -msgstr "Cliquez enter pour rechercher" - -#: ../../include/class/AgentWizard.class.php:448 -msgid "There are not defined Remote components for this performance." -msgstr "Il n'y a pas de composants distants dĆ©finis pour cette performance." - -#: ../../include/class/AgentWizard.class.php:541 -#: ../../include/functions_snmp_browser.php:766 -#: ../../godmode/events/event_responses.editor.php:175 -msgid "Local console" -msgstr "Console locale" - -#: ../../include/class/AgentWizard.class.php:567 -msgid "SNMP Walk" -msgstr "Chemin SNMP" - -#: ../../include/class/AgentWizard.class.php:572 -msgid "WMI Explorer" -msgstr "Explorateur WMI" - -#: ../../include/class/AgentWizard.class.php:615 -#: ../../include/functions_snmp_browser.php:702 -#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:757 -#: ../../godmode/massive/massive_edit_modules.php:821 -#: ../../godmode/agentes/module_manager_editor_wmi.php:45 -#: ../../godmode/agentes/module_manager_editor_network.php:80 -msgid "Target IP" -msgstr "Adresse IP cible" - -#: ../../include/class/AgentWizard.class.php:630 -#: ../../include/functions_config.php:1547 -#: ../../include/functions_snmp_browser.php:714 -#: ../../enterprise/views/ncm/agent/manage.php:118 -#: ../../enterprise/include/class/Aws.cloud.php:556 -#: ../../enterprise/include/class/Aws.S3.php:574 -#: ../../enterprise/include/class/VMware.app.php:632 -#: ../../enterprise/include/class/Azure.cloud.php:813 -#: ../../enterprise/godmode/setup/setup_history.php:174 -#: ../../enterprise/godmode/servers/manage_export_form.php:121 -#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:1063 -#: ../../extensions/quick_shell.php:181 -#: ../../godmode/servers/modificar_server.php:84 -#: ../../godmode/modules/manage_network_components_form_network.php:53 -#: ../../godmode/massive/massive_edit_modules.php:1145 -#: ../../godmode/agentes/module_manager_editor_network.php:126 -msgid "Port" -msgstr "Port" - -#: ../../include/class/AgentWizard.class.php:646 -msgid "namespace" -msgstr "Espace de nommage" - -#: ../../include/class/AgentWizard.class.php:659 -#: ../../include/class/CredentialStore.class.php:957 -#: ../../enterprise/include/functions_ui.php:102 -#: ../../enterprise/godmode/setup/setup_module_library.php:49 -#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:849 -#: ../../extensions/quick_shell.php:174 -#: ../../godmode/modules/manage_network_components_form_wmi.php:47 -#: ../../godmode/massive/massive_edit_modules.php:906 -#: ../../godmode/agentes/module_manager_editor_wmi.php:103 -msgid "Username" -msgstr "Nom d'utilisateur" - -#: ../../include/class/AgentWizard.class.php:688 -#: ../../godmode/events/event_responses.editor.php:192 -msgid "Server to execute command" -msgstr "Serveur pour exĆ©cuter la commande" - -#: ../../include/class/AgentWizard.class.php:704 -#: ../../enterprise/tools/ipam/ipam_vlan_wizard.php:263 -#: ../../godmode/modules/manage_network_components_form_network.php:82 -#: ../../godmode/agentes/module_manager_editor_network.php:149 -msgid "SNMP community" -msgstr "CommunautĆ© SNMP" - -#: ../../include/class/AgentWizard.class.php:726 -#: ../../enterprise/tools/ipam/ipam_vlan_wizard.php:272 -#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:780 -#: ../../godmode/modules/manage_network_components_form_network.php:55 -#: ../../godmode/massive/massive_edit_modules.php:839 -#: ../../godmode/wizards/HostDevices.class.php:1199 -#: ../../godmode/agentes/module_manager_editor_network.php:180 -msgid "SNMP version" -msgstr "Version SNMP" - -#: ../../include/class/AgentWizard.class.php:801 -#: ../../include/functions_snmp_browser.php:890 -#: ../../enterprise/tools/ipam/ipam_vlan_wizard.php:360 -#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:812 -#: ../../godmode/modules/manage_network_components_form_network.php:161 -#: ../../godmode/massive/massive_edit_modules.php:869 -#: ../../godmode/wizards/HostDevices.class.php:1332 -#: ../../godmode/agentes/module_manager_editor_network.php:408 -msgid "Security level" -msgstr "Niveau de sĆ©curitĆ©" - -#: ../../include/class/AgentWizard.class.php:816 -msgid "User authentication" -msgstr "Authentification de l'utilisateur" - -#: ../../include/class/AgentWizard.class.php:831 -#: ../../include/functions_config.php:544 -#: ../../enterprise/meta/include/functions_meta.php:502 -#: ../../godmode/setup/setup_auth.php:440 -msgid "Authentication method" -msgstr "MĆ©thode d'authentification" - -#: ../../include/class/AgentWizard.class.php:845 -msgid "Password authentication" -msgstr "Authentification par mot de passe" - -#: ../../include/class/AgentWizard.class.php:860 -#: ../../include/functions_snmp_browser.php:853 -#: ../../enterprise/tools/ipam/ipam_vlan_wizard.php:324 -#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:806 -#: ../../godmode/modules/manage_network_components_form_network.php:123 -#: ../../godmode/massive/massive_edit_modules.php:863 -#: ../../godmode/wizards/HostDevices.class.php:1286 -#: ../../godmode/agentes/module_manager_editor_network.php:369 -msgid "Privacy method" -msgstr "MĆ©thode de confidentialitĆ©" - -#: ../../include/class/AgentWizard.class.php:874 -#: ../../include/functions_snmp_browser.php:867 -#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:808 -#: ../../godmode/modules/manage_network_components_form_network.php:136 -#: ../../godmode/massive/massive_edit_modules.php:865 -#: ../../godmode/wizards/HostDevices.class.php:1301 -#: ../../godmode/agentes/module_manager_editor_network.php:371 -msgid "Privacy pass" -msgstr "Mot de passe privĆ©" - -#: ../../include/class/AgentWizard.class.php:998 -#, php-format -msgid "The PEN (%s) is not registered." -msgstr "Le PEN (%s) n'est pas enregistrĆ©." - -#: ../../include/class/AgentWizard.class.php:1065 -msgid "The SNMP Walk does not return anything with the received arguments." -msgstr "Le SNMP Walk ne renvoie rien avec les arguments reƧus." - -#: ../../include/class/AgentWizard.class.php:1118 -#, php-format -msgid "The target host response with an error: %s" -msgstr "La rĆ©ponse de l'hĆ“te cible avec une erreurĀ : %s" - -#: ../../include/class/AgentWizard.class.php:1168 -msgid "No selected modules" -msgstr "Aucun module sĆ©lectionnĆ©" - -#: ../../include/class/AgentWizard.class.php:1205 -msgid "Module exists in policy" -msgstr "Le module existe dans la politique" - -#: ../../include/class/AgentWizard.class.php:1215 -msgid "Module exists in agent" -msgstr "Le module existe dans l'agent" - -#: ../../include/class/AgentWizard.class.php:1222 -msgid "Module with the same name in the module creation list" -msgstr "Module avec le mĆŖme nom dans la liste de crĆ©ation de module" - -#: ../../include/class/AgentWizard.class.php:1252 -#: ../../include/functions_servers.php:738 -msgid "Enterprise Satellite server" -msgstr "Serveur Satellite Enterprise" - -#: ../../include/class/AgentWizard.class.php:1262 -#: ../../include/functions_servers.php:608 -#: ../../include/functions_servers.php:1320 -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:446 -msgid "Plugin server" -msgstr "Serveur de plugin" - -#: ../../include/class/AgentWizard.class.php:1272 -#: ../../include/functions_servers.php:634 -#: ../../include/functions_servers.php:1326 -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:491 -msgid "WMI server" -msgstr "Serveur WMI" - -#: ../../include/class/AgentWizard.class.php:1281 -#: ../../include/functions_servers.php:569 -#: ../../include/functions_servers.php:1308 -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:401 -msgid "Network server" -msgstr "Serveur de rĆ©seau" - -#: ../../include/class/AgentWizard.class.php:1625 -#, php-format -msgid "Module \"%s\" exits in this policy" -msgstr "Le module \"%s\" existe dans cette politique" - -#: ../../include/class/AgentWizard.class.php:1727 -#: ../../include/class/AgentWizard.class.php:2155 -#, php-format -msgid "Module %s module_exec not configuration" -msgstr "Module %s module_exec non configurĆ©" - -#: ../../include/class/AgentWizard.class.php:1883 -#: ../../include/class/AgentWizard.class.php:2330 -#, php-format -msgid "Module %s satellite execution not configuration" -msgstr "Module %s exĆ©cution satellite non configurĆ©" - -#: ../../include/class/AgentWizard.class.php:1975 -#, php-format -msgid "Module \"%s\" problems insert in bbdd" -msgstr "Module \"%s\" problĆØmes d'insertion dans la base de donnĆ©es" - -#: ../../include/class/AgentWizard.class.php:1983 -#: ../../include/class/AgentWizard.class.php:2413 -msgid "Modules created" -msgstr "Modules crĆ©Ć©s" - -#: ../../include/class/AgentWizard.class.php:2013 -#, php-format -msgid "Module \"%s\" exists in this agent" -msgstr "Le module \"%s\" existe dans cet agent" - -#: ../../include/class/AgentWizard.class.php:2495 -#: ../../include/functions.php:2705 -#: ../../enterprise/operation/agentes/policy_view.php:184 -#: ../../enterprise/operation/agentes/policy_view.php:277 -#: ../../enterprise/operation/agentes/policy_view.php:570 -#: ../../enterprise/meta/monitoring/wizard/wizard.php:138 -#: ../../godmode/modules/manage_network_components_form_plugin.php:54 -#: ../../godmode/modules/manage_network_components_form_wmi.php:60 -#: ../../godmode/alerts/configure_alert_template.php:1288 -#: ../../godmode/alerts/alert_list.builder.php:293 -msgid "Empty" -msgstr "Vide" - -#: ../../include/class/AgentWizard.class.php:2604 -msgid "Select all filtered interfaces" -msgstr "SĆ©lectionnez toutes les interfaces filtrĆ©es" - -#: ../../include/class/AgentWizard.class.php:2627 -msgid "OperStatus UP" -msgstr "OperStatus UP" - -#: ../../include/class/AgentWizard.class.php:2638 -msgid "AdminStatus UP" -msgstr "AdminStatus UP" - -#: ../../include/class/AgentWizard.class.php:3324 -msgid "No information could be retrieved." -msgstr "Aucune information n'a pu ĆŖtre rĆ©cupĆ©rĆ©e." - -#: ../../include/class/AgentWizard.class.php:3614 -msgid "Create modules" -msgstr "CrĆ©er des modules" - -#: ../../include/class/AgentWizard.class.php:3923 -msgid "Add general monitoring for all selected interfaces" -msgstr "" -"Ajouter une supervision gĆ©nĆ©rale pour toutes les interfaces sĆ©lectionnĆ©es" - -#: ../../include/class/AgentWizard.class.php:3944 -#: ../../include/class/AgentWizard.class.php:3945 -#: ../../include/class/AgentWizard.class.php:3964 -#: ../../include/class/AgentWizard.class.php:3965 -msgid "Modules selected" -msgstr "Modules sĆ©lectionnĆ©s" - -#: ../../include/class/AgentWizard.class.php:4033 -msgid "Module info" -msgstr "Informations sur les modules" - -#: ../../include/class/AgentWizard.class.php:4062 -msgid "Current value" -msgstr "Valeur actuelle" - -#: ../../include/class/AgentWizard.class.php:5548 -#, php-format -msgid "The operation '%s' is not permitted. Review for remote components." -msgstr "L'opĆ©ration '%s' n'est pas autorisĆ©e. Examen des composants distants." - -#: ../../include/class/AgentWizard.class.php:5963 -msgid "Modules about to be created" -msgstr "Modules sur le point d'ĆŖtre crĆ©Ć©s" - -#: ../../include/class/WelcomeWindow.class.php:157 -msgid "Welcome to" -msgstr "Bienvenue Ć " - -#: ../../include/class/WelcomeWindow.class.php:158 -msgid "Do not show anymore" -msgstr "Ne plus afficher." - -#: ../../include/class/WelcomeWindow.class.php:167 -msgid "Cancel Configuration Window" -msgstr "FenĆŖtre dā€™annulation de la configuration" - -#: ../../include/class/WelcomeWindow.class.php:172 -msgid "Are you sure you want to cancel this tutorial?" -msgstr "Vous ĆŖtes sĆ»r de vouloir annuler ce tutoriel ?" - -#: ../../include/class/WelcomeWindow.class.php:428 -msgid "Please ensure mail configuration matches your needs" -msgstr "" -"Veuillez vous assurer que la configuration de la messagerie correspond Ć  vos " -"besoins" - -#: ../../include/class/WelcomeWindow.class.php:462 -msgid "Create an agent" -msgstr "CrĆ©er un agent" - -#: ../../include/class/WelcomeWindow.class.php:487 -msgid "Create a module to check if an agent is online" -msgstr "CrĆ©er un module pour vĆ©rifier si un agent est en ligne" - -#: ../../include/class/WelcomeWindow.class.php:512 -msgid "Be warned if something is wrong, create an alert on the module" -msgstr "Soyez prĆ©venu si quelque chose ne va pas, crĆ©ez une alerte sur le module" - -#: ../../include/class/WelcomeWindow.class.php:537 -msgid "Discover hosts and devices in your network" -msgstr "DĆ©couvrez les hĆ“tes et les appareils de votre rĆ©seau" - -#: ../../include/class/WelcomeWindow.class.php:565 -msgid "If something is not working as expected, look for this icon and report!" -msgstr "" -"Si quelque chose ne fonctionne pas comme prĆ©vu, recherchez cette icĆ“ne et " -"signalez-leĀ !" - -#: ../../include/class/Diagnostics.class.php:144 -#: ../../enterprise/operation/reporting/custom_reporting.php:64 -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:581 -msgid "Export to PDF" -msgstr "Exporter au format PDF" - #: ../../include/class/Diagnostics.class.php:157 #, php-format msgid "%s Diagnostic tool" @@ -16321,10 +44464,6 @@ msgstr "Ɖtat des informations %s" msgid "PHP setup" msgstr "Installation PHP" -#: ../../include/class/Diagnostics.class.php:230 ../../godmode/db/db_main.php:98 -msgid "Database size stats" -msgstr "Statistiques sur la taille de la base de donnĆ©es" - #: ../../include/class/Diagnostics.class.php:234 msgid "Database health status" msgstr "Ɖtat de santĆ© de la base de donnĆ©es" @@ -16488,11 +44627,6 @@ msgstr "Total des enregistrements de donnĆ©es du module" msgid "Total agent access record" msgstr "Enregistrement total des accĆØs des agents" -#: ../../include/class/Diagnostics.class.php:569 -#: ../../include/functions_reporting.php:13932 ../../godmode/db/db_main.php:108 -msgid "Total events" -msgstr "Nombre total d'Ć©vĆ©nements" - #: ../../include/class/Diagnostics.class.php:573 msgid "Total traps" msgstr "Traps totales" @@ -16541,11 +44675,6 @@ msgstr "CrĆ©ation de schĆ©ma de base de donnĆ©es" msgid "DB Size" msgstr "Taille de la base de donnĆ©es" -#: ../../include/class/Diagnostics.class.php:722 -#: ../../enterprise/godmode/reporting/aws_view.php:54 -msgid "CPU" -msgstr "UCT" - #: ../../include/class/Diagnostics.class.php:726 msgid "RAM" msgstr "RAM" @@ -16554,16 +44683,6 @@ msgstr "RAM" msgid "Os" msgstr "SystĆØme d'exploitation" -#: ../../include/class/Diagnostics.class.php:734 -#: ../../include/class/Diagnostics.class.php:752 -#: ../../enterprise/tools/ipam/ipam_ajax.php:364 -#: ../../enterprise/tools/ipam/ipam_network.php:396 -#: ../../enterprise/include/functions_ipam.php:1648 -#: ../../enterprise/include/functions_ipam.php:1649 -#: ../../enterprise/include/functions_ipam.php:2037 -msgid "Hostname" -msgstr "Nom d'hĆ“te" - #: ../../include/class/Diagnostics.class.php:738 #: ../../include/class/Diagnostics.class.php:756 #: ../../include/class/NetworkMap.class.php:2909 @@ -16576,8 +44695,7 @@ msgstr "Taille du pool de mĆ©moire tampon InnoDB" #: ../../include/class/Diagnostics.class.php:788 #, php-format -msgid "" -"It has to be 40% of the server memory not recommended to be greater or less" +msgid "It has to be 40% of the server memory not recommended to be greater or less" msgstr "" "Il doit ĆŖtre 40% de la mĆ©moire du serveur, il n'est pas recommandĆ©e dā€™ĆŖtre " "supĆ©rieure ou infĆ©rieure" @@ -16685,8 +44803,7 @@ msgid "Thread stack" msgstr "Pile de threads" #: ../../include/class/Diagnostics.class.php:970 -msgid "" -"Table fragmentation is higher than recommended. They should be defragmented." +msgid "Table fragmentation is higher than recommended. They should be defragmented." msgstr "" "La fragmentation des tables est plus Ć©levĆ©e que recommandĆ©e. Ils doivent ĆŖtre " "dĆ©fragmentĆ©s." @@ -16755,71 +44872,15 @@ msgstr "La moyenne des modules par agent est infĆ©rieure Ć  40" msgid "The system has no load" msgstr "Le systĆØme n'a pas de charge" -#: ../../include/class/Diagnostics.class.php:1152 -#: ../../godmode/setup/license.php:129 -msgid "Customer key" -msgstr "Mot de passe du client" - -#: ../../include/class/Diagnostics.class.php:1156 -#: ../../enterprise/include/functions_license.php:120 -msgid "Support expires" -msgstr "Le support expire" - -#: ../../include/class/Diagnostics.class.php:1160 -#: ../../godmode/setup/license.php:135 -msgid "Platform Limit" -msgstr "Limite de la plateforme" - -#: ../../include/class/Diagnostics.class.php:1164 -#: ../../godmode/setup/license.php:138 -msgid "Current Platform Count" -msgstr "Nombre de plateformes actuelles" - -#: ../../include/class/Diagnostics.class.php:1168 -#: ../../godmode/setup/license.php:141 -msgid "Current Platform Count (enabled: items)" -msgstr "Nombre de plateformes actuelles (activĆ©s : Ć©lĆ©ments)" - -#: ../../include/class/Diagnostics.class.php:1172 -#: ../../godmode/setup/license.php:144 -msgid "Current Platform Count (disabled: items)" -msgstr "Nombre de plateformes actuelles (dĆ©sactivĆ©s : Ć©lĆ©ments)" - -#: ../../include/class/Diagnostics.class.php:1176 -#: ../../godmode/setup/license.php:147 -msgid "License Mode" -msgstr "Mode licence" - #: ../../include/class/Diagnostics.class.php:1180 msgid "Network Management System" msgstr "SystĆØme de gestion rĆ©seau" -#: ../../include/class/Diagnostics.class.php:1181 -#: ../../include/class/Diagnostics.class.php:1185 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3330 -#: ../../enterprise/godmode/policies/policy_external_alerts.php:461 -#: ../../enterprise/godmode/policies/policy_alerts.php:430 -#: ../../godmode/alerts/alert_list.list.php:638 -msgid "On" -msgstr "Actif" - #: ../../include/class/Diagnostics.class.php:1181 #: ../../include/class/Diagnostics.class.php:1185 msgid "Off" msgstr "Off" -#: ../../include/class/Diagnostics.class.php:1184 -#: ../../include/functions_ui.php:866 ../../godmode/setup/license.php:153 -#: ../../godmode/servers/modificar_server.php:42 -#: ../../godmode/agentes/agent_manager.php:452 -msgid "Satellite" -msgstr "Satellite" - -#: ../../include/class/Diagnostics.class.php:1188 -#: ../../godmode/setup/license.php:156 -msgid "Licensed to" -msgstr "Sous licence pour" - #: ../../include/class/Diagnostics.class.php:1192 msgid "Status of agents capacity" msgstr "Ɖtat de la capacitĆ© des agents" @@ -16849,8 +44910,8 @@ msgid "" "The tagente_datos table contains too much data. A historical database is " "recommended." msgstr "" -"La table tagent_donnĆ©es contient trop de donnĆ©es. Une base de donnĆ©es " -"historique est recommandĆ©e." +"La table tagent_donnĆ©es contient trop de donnĆ©es. Une base de donnĆ©es historique " +"est recommandĆ©e." #: ../../include/class/Diagnostics.class.php:1282 msgid "The tagente_datos table contains an acceptable amount of data." @@ -16889,14 +44950,13 @@ msgid "" "Please check your Pandora Server setup and make sure that the database " "maintenance daemon is running." msgstr "" -"Veuillez vĆ©rifier la configuration de votre serveur Pandora FMS et vous " -"assurer que le dĆ©mon de maintenance de la base de donnĆ©es est en cours " -"d'exĆ©cution." +"Veuillez vĆ©rifier la configuration de votre serveur Pandora FMS et vous assurer " +"que le dĆ©mon de maintenance de la base de donnĆ©es est en cours d'exĆ©cution." #: ../../include/class/Diagnostics.class.php:1490 msgid "" -"It' is very important to keep the database up-to-date to get the best " -"performance and results in Pandora" +"It' is very important to keep the database up-to-date to get the best performance " +"and results in Pandora" 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" @@ -16909,17 +44969,6 @@ msgstr "Vous avez plus de 10 Mo de journaux" msgid "You have less than 10 MB of logs" msgstr "Vous avez moins de 10 Mo de journaux" -#: ../../include/class/Diagnostics.class.php:1818 -#: ../../enterprise/include/class/CommandCenter.class.php:461 -#: ../../enterprise/include/functions_login.php:145 -msgid "Successfully" -msgstr "Correctement" - -#: ../../include/class/Diagnostics.class.php:1910 -#: ../../update_manager_client/views/register.php:78 -msgid "Your email" -msgstr "Votre email" - #: ../../include/class/Diagnostics.class.php:1922 msgid "Include installation data" msgstr "Inclure les donnĆ©es d'installation" @@ -16953,11 +45002,11 @@ msgstr "CSV contient les Ć©tats de chaque fiche produit" #: ../../include/class/Diagnostics.class.php:1993 #, php-format msgid "" -"If you think this report must be escalated, feel free to forward this mail to " -"\"%s\"" +"If you think this report must be escalated, feel free to forward this mail to \"%s" +"\"" msgstr "" -"Si vous pensez que ce rapport doit ĆŖtre escaladĆ©, n'hĆ©sitez pas Ć  transmettre " -"ce courrier Ć  \"%s\"" +"Si vous pensez que ce rapport doit ĆŖtre escaladĆ©, n'hĆ©sitez pas Ć  transmettre ce " +"courrier Ć  \"%s\"" #: ../../include/class/Diagnostics.class.php:1997 msgid "LEGAL WARNING" @@ -16969,17 +45018,17 @@ msgid "" "information intended only for the use of the individual or entity named above" msgstr "" "Les informations contenues dans cette transmission sont des informations " -"privilĆ©giĆ©es et confidentielles destinĆ©es uniquement Ć  l'usage de la personne " -"ou de l'entitĆ© nommĆ©e ci-dessus." +"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:2003 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" +"notified that any dissemination, distribution or copying of this communication is " +"strictly prohibited" msgstr "" -"Si le lecteur de ce message n'est pas le destinataire de ces documents, nous " -"vous informons que toute diffusion, distribution ou copie de ces documents est " +"Si le lecteur de ce message n'est pas le destinataire de ces documents, nous vous " +"informons que toute diffusion, distribution ou copie de ces documents est " "strictement interdite." #: ../../include/class/Diagnostics.class.php:2007 @@ -16988,8 +45037,8 @@ msgstr "Si vous avez reƧu cette transmission par erreur, ne la lisez pas" #: ../../include/class/Diagnostics.class.php:2011 msgid "" -"Please immediately reply to the sender that you have received this " -"communication in error and then delete it" +"Please immediately reply to the sender that you have received this communication " +"in error and then delete it" msgstr "" "Veuillez rĆ©pondre immĆ©diatement Ć  l'expĆ©diteur que vous avez reƧu cette " "communication par erreur, puis la supprimer" @@ -17007,29 +45056,568 @@ msgstr "L'envoi des informations a Ć©tĆ© traitĆ©" msgid "Diagnostics Info" msgstr "Informations de diagnostic" -#: ../../include/class/Diagnostics.class.php:2130 -#: ../../include/class/Diagnostics.class.php:2248 -#: ../../enterprise/include/functions_reporting_pdf.php:72 -#, php-format -msgid "Automated %s report for user defined report" -msgstr "Rapport %s automatisĆ© pour le port dĆ©fini par l'utilisateur" - -#: ../../include/class/Diagnostics.class.php:2175 -#: ../../include/functions_snmp_browser.php:880 -#: ../../enterprise/tools/ipam/ipam_vlan_wizard.php:350 -#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:811 -#: ../../godmode/modules/manage_network_components_form_network.php:151 -#: ../../godmode/massive/massive_edit_modules.php:868 -#: ../../godmode/wizards/HostDevices.class.php:1322 -#: ../../godmode/agentes/module_manager_editor_network.php:394 -msgid "MD5" -msgstr "MD5" - #: ../../include/class/Diagnostics.class.php:2244 #: ../../include/class/Diagnostics.class.php:2254 msgid "PHP Info" msgstr "Info PHP" +#: ../../include/class/NetworkMap.class.php:2317 +msgid "Failed to generate dotmap, please select different layout schema" +msgstr "" +"Ɖchec de la gĆ©nĆ©ration de dotmap, veuillez sĆ©lectionner un schĆ©ma de mise en page " +"diffĆ©rent" + +#: ../../include/class/NetworkMap.class.php:2452 +msgid "Failed to retrieve graph data." +msgstr "Ɖchec de la rĆ©cupĆ©ration des donnĆ©es du graphique." + +#: ../../include/class/NetworkMap.class.php:2663 +msgid "Holding Area" +msgstr "Zone d'attente" + +#: ../../include/class/NetworkMap.class.php:2790 +#, php-format +msgid "Edit node %s" +msgstr "Modifier le nœud %s" + +#: ../../include/class/NetworkMap.class.php:2792 +msgid "Show details and options" +msgstr "Afficher les dĆ©tails et les options" + +#: ../../include/class/NetworkMap.class.php:2793 +msgid "Add a interface link" +msgstr "Ajouter lien d'interface" + +#: ../../include/class/NetworkMap.class.php:2794 +msgid "Set parent interface" +msgstr "Configurer parent d'interface" + +#: ../../include/class/NetworkMap.class.php:2795 +msgid "Set as children" +msgstr "Configurer comme enfants" + +#: ../../include/class/NetworkMap.class.php:2796 +msgid "Set parent" +msgstr "Configurer parent" + +#: ../../include/class/NetworkMap.class.php:2797 +#: ../../include/class/NetworkMap.class.php:2810 +msgid "Abort the action of set relationship" +msgstr "Abandonner l'action de configuration de relations" + +#: ../../include/class/NetworkMap.class.php:2799 +#: ../../include/class/NetworkMap.class.php:3155 +msgid "Add node" +msgstr "Ajouter un nœud" + +#: ../../include/class/NetworkMap.class.php:2800 +msgid "Set center" +msgstr "Configurer le centre" + +#: ../../include/class/NetworkMap.class.php:2802 +msgid "Refresh Holding area" +msgstr "Mettre Ć  jour la zone d'attente" + +#: ../../include/class/NetworkMap.class.php:2803 +#: ../../include/class/NetworkMap.class.php:2806 +msgid "Proceed" +msgstr "Continuer" + +#: ../../include/class/NetworkMap.class.php:2804 +msgid "" +"Resetting the map will delete all customizations you have done, including manual " +"relationships between elements, new items, etc." +msgstr "" +"Si vous rĆ©initialisez la carte, tous vos rĆ©glages personnalisĆ©s, y compris les " +"relations manuelles entre Ć©lĆ©ments, nouveaux Ć©lĆ©ments, etc. seront supprimĆ©s." + +#: ../../include/class/NetworkMap.class.php:2808 +msgid "Restart map" +msgstr "RĆ©initialiser la carte" + +#: ../../include/class/NetworkMap.class.php:2809 +msgid "Abort the interface relationship" +msgstr "Annuler la relation d'interface" + +#: ../../include/class/NetworkMap.class.php:2827 +#: ../../include/class/NetworkMap.class.php:2876 +msgid "Edit node" +msgstr "Modifier le nœud" + +#: ../../include/class/NetworkMap.class.php:2837 +#: ../../include/class/NetworkMap.class.php:2886 +msgid "Adresses" +msgstr "Adresses" + +#: ../../include/class/NetworkMap.class.php:2839 +#: ../../include/class/NetworkMap.class.php:2888 +msgid "OS type" +msgstr "Type de systĆØme dā€™exploitation" + +#: ../../include/class/NetworkMap.class.php:2846 +#: ../../include/class/NetworkMap.class.php:2847 +#: ../../include/class/NetworkMap.class.php:2895 +#: ../../include/class/NetworkMap.class.php:2896 +msgid "Node Details" +msgstr "DĆ©tails du nœud" + +#: ../../include/class/NetworkMap.class.php:2921 +#: ../../include/class/NetworkMap.class.php:2922 +msgid "Interface Information (SNMP)" +msgstr "Information de l'interface (SNMP)" + +#: ../../include/class/NetworkMap.class.php:2933 +msgid "Shape" +msgstr "Forme" + +#: ../../include/class/NetworkMap.class.php:2936 +msgid "Circle" +msgstr "Cercle" + +#: ../../include/class/NetworkMap.class.php:2937 +msgid "Square" +msgstr "CarrĆ©" + +#: ../../include/class/NetworkMap.class.php:2938 +msgid "Rhombus" +msgstr "Losange" + +#: ../../include/class/NetworkMap.class.php:2951 +msgid "name node" +msgstr "Nommer le nœud" + +#: ../../include/class/NetworkMap.class.php:2969 +#: ../../include/class/NetworkMap.class.php:3272 +msgid "name fictional node" +msgstr "Nom du nœud fictif" + +#: ../../include/class/NetworkMap.class.php:2974 +#: ../../include/class/NetworkMap.class.php:3277 +msgid "Networkmap to link" +msgstr "Lien Ć  la carte de rĆ©seau" + +#: ../../include/class/NetworkMap.class.php:2986 +msgid "Update fictional node" +msgstr "Mettre Ć  jour le nœud fictif" + +#: ../../include/class/NetworkMap.class.php:2996 +#: ../../include/class/NetworkMap.class.php:2997 +msgid "Node options" +msgstr "Options du nœud" + +#: ../../include/class/NetworkMap.class.php:3008 +#: ../../include/class/NetworkMap.class.php:3101 +msgid "Node source" +msgstr "Source du nœud" + +#: ../../include/class/NetworkMap.class.php:3009 +#: ../../include/class/NetworkMap.class.php:3102 +msgid "Interface source" +msgstr "Source de l'interface" + +#: ../../include/class/NetworkMap.class.php:3010 +#: ../../include/class/NetworkMap.class.php:3103 +msgid "Interface Target" +msgstr "Cible de l'interface" + +#: ../../include/class/NetworkMap.class.php:3012 +#: ../../include/class/NetworkMap.class.php:3104 +msgid "Node target" +msgstr "Cible du nœud" + +#: ../../include/class/NetworkMap.class.php:3013 +msgid "E." +msgstr "E." + +#: ../../include/class/NetworkMap.class.php:3075 +msgid "There are not relations" +msgstr "Aucune relation" + +#: ../../include/class/NetworkMap.class.php:3143 +msgid "Add interface link" +msgstr "Ajouter lien d'interface" + +#: ../../include/class/NetworkMap.class.php:3174 +#: ../../include/class/NetworkMap.class.php:3196 +#: ../../include/class/NetworkMap.class.php:3197 +#: ../../include/class/NetworkMap.class.php:3247 +#: ../../include/class/NetworkMap.class.php:3259 +#: ../../include/class/NetworkMap.class.php:3300 +msgid "Add agent node" +msgstr "Ajouter nœud d'agent" + +#: ../../include/class/NetworkMap.class.php:3258 +msgid "Add agent node (filter by group)" +msgstr "Ajouter nœud d'agent (filtrer par groupe)" + +#: ../../include/class/NetworkMap.class.php:3289 +msgid "Add fictional node" +msgstr "Ajouter nœud fictif" + +#: ../../include/class/NetworkMap.class.php:3299 +msgid "Add fictional point" +msgstr "Ajouter un point fictif" + +#: ../../include/class/NetworkMap.class.php:3513 +msgid "Open Minimap" +msgstr "Ouvrir minicarte" + +#: ../../include/class/NetworkMap.class.php:3519 +msgid "Hide Labels" +msgstr "Cacher les Ć©tiquettes" + +#: ../../include/class/AgentsAlerts.class.php:502 +msgid "There are no agents with alerts" +msgstr "Il n'y a pas d'agents avec des alertes" + +#: ../../include/class/AgentsAlerts.class.php:580 +msgid "Previous alerts" +msgstr "Alertes prĆ©cĆ©dentes" + +#: ../../include/class/AgentsAlerts.class.php:644 +msgid "More alerts" +msgstr "Plus d'alertes" + +#: ../../include/class/AgentsAlerts.class.php:729 +msgid "Agents/Alerts" +msgstr "Agents / Alertes" + +#: ../../include/class/AgentsAlerts.class.php:778 +msgid "Show modules without alerts" +msgstr "Afficher les modules sans alertes" + +#: ../../include/class/AgentsAlerts.class.php:808 +#: ../../operation/gis_maps/render_view.php:155 +msgid "10 minutes" +msgstr "10 minutes" + +#: ../../include/class/ManageNetScanScripts.class.php:122 +msgid "Net scan scripts" +msgstr "Scripts d'analyse rĆ©seau" + +#: ../../include/class/ManageNetScanScripts.class.php:223 +msgid "Problem creating" +msgstr "ProblĆØme de crĆ©ation" + +#: ../../include/class/ManageNetScanScripts.class.php:234 +#: ../../include/class/ManageNetScanScripts.class.php:321 +msgid "Name or Script fullpath they can not be empty" +msgstr "Nom ou chemin complet du script, ils ne peuvent pas ĆŖtre vides" + +#: ../../include/class/ManageNetScanScripts.class.php:255 +#: ../../include/class/ManageNetScanScripts.class.php:342 +msgid "Problem deleting Net scan Scripts, Not selected script" +msgstr "ProblĆØme de suppression des scripts Net scan, script non sĆ©lectionnĆ©" + +#: ../../include/class/ManageNetScanScripts.class.php:310 +msgid "Problem updating" +msgstr "ProblĆØme de mise Ć  jour" + +#: ../../include/class/ManageNetScanScripts.class.php:361 +msgid "Problem deleting Net scan Scripts" +msgstr "ProblĆØme de suppression des scripts Net scan" + +#: ../../include/class/ManageNetScanScripts.class.php:366 +msgid "Deleted successfully" +msgstr "SupprimĆ© correctement" + +#: ../../include/class/ManageNetScanScripts.class.php:439 +msgid "Are you sure delete script?" +msgstr "Ɗtes-vous sĆ»r de supprimer le scriptĀ ?" + +#: ../../include/class/ManageNetScanScripts.class.php:459 +msgid "Delete Script" +msgstr "Supprimer le script" + +#: ../../include/class/ManageNetScanScripts.class.php:478 +msgid "There are no net scan scripts in the system" +msgstr "Il n'y a pas de scripts net scan dans le systĆØme" + +#: ../../include/class/ManageNetScanScripts.class.php:552 +msgid "Script fullpath" +msgstr "Chemin complet du script" + +#: ../../include/class/CredentialStore.class.php:611 +#, php-format +msgid "Not a valid JSON: %s" +msgstr "Pas un JSON valideĀ : %s" + +#: ../../include/class/CredentialStore.class.php:621 +msgid "Key identifier is required" +msgstr "Un identifiant clĆ© est requis." + +#: ../../include/class/CredentialStore.class.php:623 +msgid "You must select a group where store this key!" +msgstr "SĆ©lectionnez un groupe oĆ¹ stockez cette clĆ©Ā !" + +#: ../../include/class/CredentialStore.class.php:625 +msgid "You must specify a product type" +msgstr "SpĆ©cifiez un type de produit" + +#: ../../include/class/CredentialStore.class.php:627 +msgid "You must specify a username and/or password" +msgstr "SpĆ©cifiez un nom d'utilisateur et/ou un mot de passe" + +#: ../../include/class/CredentialStore.class.php:629 +msgid "Identifier with forbidden characters. Check the documentation." +msgstr "Identificateur avec des caractĆØres interdits. Consultez la documentation." + +#: ../../include/class/CredentialStore.class.php:742 +msgid "identifier cannot be empty" +msgstr "l'identifiant ne peut pas ĆŖtre vide" + +#: ../../include/class/CredentialStore.class.php:785 +#, php-format +msgid "" +"Database encryption is not enabled. Credentials will be stored in plaintext. %s" +msgstr "" +"Le chiffrement de la base de donnĆ©es n'est pas activĆ©. Les informations " +"d'identification seront stockĆ©es en clair. %s" + +#: ../../include/class/CredentialStore.class.php:804 +#: ../../include/class/CredentialStore.class.php:937 +msgid "Product" +msgstr "Produit" + +#: ../../include/class/CredentialStore.class.php:869 +msgid "Add key" +msgstr "Ajouter une clĆ©" + +#: ../../include/class/CredentialStore.class.php:960 +msgid "Extra (2)" +msgstr "SupplĆ©ment (2)" + +#: ../../include/class/CredentialStore.class.php:970 +#: ../../include/class/CredentialStore.class.php:1141 +msgid "Access key ID" +msgstr "ID de clĆ© dā€™accĆØs :" + +#: ../../include/class/CredentialStore.class.php:971 +#: ../../include/class/CredentialStore.class.php:1142 +msgid "Secret access key" +msgstr "ClĆ© d'accĆØs secrĆØte" + +#: ../../include/class/CredentialStore.class.php:977 +#: ../../include/class/CredentialStore.class.php:994 +msgid "Account ID" +msgstr "ID de compte" + +#: ../../include/class/CredentialStore.class.php:978 +#: ../../include/class/CredentialStore.class.php:1149 +msgid "Application secret" +msgstr "Application secret" + +#: ../../include/class/CredentialStore.class.php:979 +#: ../../include/class/CredentialStore.class.php:1150 +msgid "Tenant or domain name" +msgstr "Locataire ou nom de domaine" + +#: ../../include/class/CredentialStore.class.php:980 +#: ../../include/class/CredentialStore.class.php:1151 +msgid "Subscription id" +msgstr "ID Abonnement" + +#: ../../include/class/CredentialStore.class.php:984 +#: ../../include/class/CredentialStore.class.php:1167 +msgid "Auth JSON" +msgstr "Authentification JSON" + +#: ../../include/class/CredentialStore.class.php:1148 +msgid "Client ID" +msgstr "ID Client" + +#: ../../include/class/CredentialStore.class.php:1157 +msgid "Account ID." +msgstr "ID de compte" + +#: ../../include/class/CredentialStore.class.php:1243 +msgid "Register new key into keystore" +msgstr "Enregistrer une nouvelle clĆ© dans le magasin de clĆ©s" + +#: ../../include/class/CredentialStore.class.php:1247 +msgid "Update key" +msgstr "Mettre Ć  jour la clĆ©" + +#: ../../include/class/AuditLog.class.php:136 +#, php-format +msgid "%s audit" +msgstr "Audit %s" + +#: ../../include/class/AuditLog.class.php:136 +msgid "Review Logs" +msgstr "RĆ©viser les journaux" + +#: ../../include/class/AuditLog.class.php:149 +msgid "System Audit log" +msgstr "Journaux d'audit du systĆØme" + +#: ../../include/class/OrderInterpreter.class.php:123 +msgid "Agent Management" +msgstr "Gestion des agents" + +#: ../../include/class/OrderInterpreter.class.php:157 +msgid "Manage Policies" +msgstr "GĆ©rer les politiques" + +#: ../../include/class/OrderInterpreter.class.php:171 +msgid "List Alerts" +msgstr "Liste d'alertes" + +#: ../../include/class/OrderInterpreter.class.php:195 +msgid "View Events" +msgstr "Voir les Ć©vĆØnements" + +#: ../../include/class/OrderInterpreter.class.php:247 +msgid "Manage Servers" +msgstr "GĆ©rer les serveurs" + +#: ../../include/class/OrderInterpreter.class.php:261 +msgid "Edit User" +msgstr "Modifier l'utilisateur" + +#: ../../include/class/OrderInterpreter.class.php:271 +msgid "Tree View" +msgstr "Vue arborescente" + +#: ../../include/class/OrderInterpreter.class.php:281 +msgid "Network Component" +msgstr "Composant rĆ©seau" + +#: ../../include/class/OrderInterpreter.class.php:295 +msgid "Task List" +msgstr "Liste de tĆ¢ches" + +#: ../../include/class/OrderInterpreter.class.php:353 +msgid "Manage Agent Groups" +msgstr "GĆ©rer les groupes dā€™agents" + +#: ../../include/class/OrderInterpreter.class.php:394 +msgid "GO TO " +msgstr "ALLER ƀ" + +#: ../../include/class/OrderInterpreter.class.php:423 +msgid "results found" +msgstr "rĆ©sultats trouvĆ©s" + +#: ../../include/class/OrderInterpreter.class.php:427 +msgid "Press enter to search" +msgstr "Cliquez enter pour rechercher" + +#: ../../include/class/CustomNetScan.class.php:369 +#: ../../include/class/CustomNetScan.class.php:394 +msgid "NetScan Custom" +msgstr "NetScan personnalisĆ©" + +#: ../../include/class/CustomNetScan.class.php:611 +msgid "Recon script" +msgstr "Script Recon" + +#: ../../include/class/CustomNetScan.class.php:652 +msgid "Explanation" +msgstr "Explication" + +#: ../../include/class/CustomNetScan.class.php:668 +msgid "macro_desc" +msgstr "macro_desc" + +#: ../../include/class/ModuleTemplates.class.php:353 +#, php-format +msgid "Template %s successfully updated" +msgstr "Le modĆØle %s a Ć©tĆ© mis Ć  jour correctement" + +#: ../../include/class/ModuleTemplates.class.php:400 +#, php-format +msgid "Template %s successfully created" +msgstr "ModĆØle %s crĆ©Ć© correctement." + +#: ../../include/class/ModuleTemplates.class.php:402 +msgid "Error creating template" +msgstr "Erreur lors de la crĆ©ation du modĆØle." + +#: ../../include/class/ModuleTemplates.class.php:410 +#, php-format +msgid "Template %s successfully deleted" +msgstr "ModĆØle %s supprimĆ© correctement" + +#: ../../include/class/ModuleTemplates.class.php:412 +#, php-format +msgid "Error deleting %s template" +msgstr "Erreur de suppression du modĆØle %s" + +#: ../../include/class/ModuleTemplates.class.php:559 +msgid "Module successfully deleted" +msgstr "Module supprimĆ© correctement" + +#: ../../include/class/ModuleTemplates.class.php:561 +msgid "Error deleting module" +msgstr "Erreur lors de la suppression du module" + +#: ../../include/class/ModuleTemplates.class.php:572 +msgid "Block successfully deleted" +msgstr "Bloc supprimĆ© correctement" + +#: ../../include/class/ModuleTemplates.class.php:574 +msgid "Error deleting block" +msgstr "Erreur lors de la suppression du bloc" + +#: ../../include/class/ModuleTemplates.class.php:586 +msgid "All templates deleted" +msgstr "Tous les modĆØles supprimĆ©s" + +#: ../../include/class/ModuleTemplates.class.php:588 +msgid "Error deleting all templates" +msgstr "Erreur lors de la suppression de tous les modĆØles" + +#: ../../include/class/ModuleTemplates.class.php:597 +msgid "Selected templates deleted" +msgstr "ModĆØles sĆ©lectionnĆ©s supprimĆ©s" + +#: ../../include/class/ModuleTemplates.class.php:599 +msgid "Error deleting selected templates" +msgstr "Erreur lors de la suppression des modĆØles sĆ©lectionnĆ©s" + +#: ../../include/class/ModuleTemplates.class.php:611 +msgid "Something gone wrong. Please, try again" +msgstr "Un problĆØme est survenu, merci dā€™essayer Ć  nouveau." + +#: ../../include/class/ModuleTemplates.class.php:662 +msgid "The modules is already added" +msgstr "Les modules sont dĆ©jĆ  ajoutĆ©s" + +#: ../../include/class/ModuleTemplates.class.php:1111 +#: ../../include/class/ModuleTemplates.class.php:1383 +msgid "Add components" +msgstr "Ajouter des composants" + +#: ../../include/class/ModuleTemplates.class.php:1163 +#: ../../include/class/ModuleTemplates.class.php:1298 +msgid "No module blocks for this profile" +msgstr "Aucun bloc de module pour ce profil" + +#: ../../include/class/ModuleTemplates.class.php:1186 +msgid "Delete this block" +msgstr "Supprimer ce bloc" + +#: ../../include/class/ModuleTemplates.class.php:1188 +msgid "Do you want delete this block?" +msgstr "Voulez-vous supprimer ce blocĀ ?" + +#: ../../include/class/ModuleTemplates.class.php:1283 +msgid "Delete this module" +msgstr "Supprimer ce module" + +#: ../../include/class/ModuleTemplates.class.php:1285 +msgid "Do you want delete this module?" +msgstr "Voulez-vous supprimer ce moduleĀ ?" + +#: ../../include/class/ModuleTemplates.class.php:1476 +msgid "Do you want delete all templates?" +msgstr "Voulez-vous supprimer tous les modĆØlesĀ ?" + +#: ../../include/class/ModuleTemplates.class.php:1479 +msgid "Do you want delete the selected templates?" +msgstr "Voulez-vous supprimer les modĆØles sĆ©lectionnĆ©sĀ ?" + #: ../../include/class/ConsoleSupervisor.php:839 msgid "Limited mode." msgstr "Mode limitĆ©." @@ -17066,8 +45654,7 @@ msgstr "Le rĆ©pertoire des attachements n'est pas accessible en Ć©criture" #: ../../include/class/ConsoleSupervisor.php:959 #, php-format -msgid "" -"Directory %s is not writable. Please, configure corresponding permissions." +msgid "Directory %s is not writable. Please, configure corresponding permissions." msgstr "" "Le rĆ©pertoire %s n'est pas accessible en Ć©criture. Veuillez configurer les " "autorisations correspondantes." @@ -17082,8 +45669,8 @@ msgid "" "There are more than %d files in attachment, consider cleaning up attachment " "directory manually." msgstr "" -"Il y a plus de %d fichiers attachĆ©s, pensez Ć  Ć©liminer le rĆ©pertoire des " -"piĆØces jointes manuellement." +"Il y a plus de %d fichiers attachĆ©s, pensez Ć  Ć©liminer le rĆ©pertoire des piĆØces " +"jointes manuellement." #: ../../include/class/ConsoleSupervisor.php:1013 msgid "Remote configuration directory is not readable" @@ -17092,22 +45679,19 @@ msgstr "Le rĆ©pertoire de configuration Ć  distance n'est pas lisible" #: ../../include/class/ConsoleSupervisor.php:1015 #, php-format msgid "" -"Remote configuration directory %s is not readable. Please, adjust " -"configuration." +"Remote configuration directory %s is not readable. Please, adjust configuration." msgstr "" -"Le rĆ©pertoire de configuration Ć  distance %s n'est pas lisible. Veuillez " -"ajuster la configuration." +"Le rĆ©pertoire de configuration Ć  distance %s n'est pas lisible. Veuillez ajuster " +"la configuration." #: ../../include/class/ConsoleSupervisor.php:1032 msgid "Remote configuration directory is not writable" -msgstr "" -"Le rĆ©pertoire de configuration Ć  distance n'est pas accessible en Ć©criture" +msgstr "Le rĆ©pertoire de configuration Ć  distance n'est pas accessible en Ć©criture" #: ../../include/class/ConsoleSupervisor.php:1034 #, php-format msgid "" -"Remote configuration directory %s is not writable. Please, adjust " -"configuration." +"Remote configuration directory %s is not writable. Please, adjust configuration." msgstr "" "Le rĆ©pertoire de configuration Ć  distance %s n'est pas accessible en Ć©criture. " "Veuillez ajuster la configuration." @@ -17140,8 +45724,7 @@ msgstr "Il y a trop de fichiers dans le spool" #: ../../include/class/ConsoleSupervisor.php:1100 #, php-format -msgid "" -"There are more than %d files in %s. Consider checking DataServer performance" +msgid "There are more than %d files in %s. Consider checking DataServer performance" msgstr "" "Il y a plus de %d fichiers dans %s. Pensez Ć  vĆ©rifier les performances de " "DataServer" @@ -17153,8 +45736,7 @@ msgstr "Il y a trop de fichiers BADXML dans le spool" #: ../../include/class/ConsoleSupervisor.php:1123 #, 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." +msgstr "Il y a plus de %d fichiers dans %s. Pensez Ć  vĆ©rifier les agents logiciels." #: ../../include/class/ConsoleSupervisor.php:1210 #, php-format @@ -17167,11 +45749,10 @@ msgstr "Aucuns serveurs ne sont disponibles." #: ../../include/class/ConsoleSupervisor.php:1279 msgid "" -"There are no servers registered in this console. Please, check installation " -"guide." +"There are no servers registered in this console. Please, check installation guide." msgstr "" -"Il n'y a aucun serveur enregistrĆ© dans cette console. Veuillez consulter le " -"guide d'installation." +"Il n'y a aucun serveur enregistrĆ© dans cette console. Veuillez consulter le guide " +"d'installation." #: ../../include/class/ConsoleSupervisor.php:1324 #, php-format @@ -17203,8 +45784,7 @@ msgstr "Aucun serveur maĆ®tre trouvĆ©." #: ../../include/class/ConsoleSupervisor.php:1395 msgid "" -"At least one server must be defined to run as master. Please, check " -"documentation." +"At least one server must be defined to run as master. Please, check documentation." 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." @@ -17221,8 +45801,8 @@ msgid "" "Off (Do not forget to restart apache process after changes)" msgstr "" "Pour le dĆ©sactiver, allez dans votre fichier de configuration PHP (php.ini) et " -"mettez safe_mode = Off (N'oubliez pas de redĆ©marrer le processus Apache aprĆØs " -"les modifications)" +"mettez safe_mode = Off (N'oubliez pas de redĆ©marrer le processus Apache aprĆØs les " +"modifications)" #: ../../include/class/ConsoleSupervisor.php:1469 #, php-format @@ -17245,8 +45825,7 @@ msgid "" "administrator (Do not forget to restart Apache process after)" msgstr "" "Veuillez le modifier sur votre fichier de configuration PHP (php.ini) ou " -"contactez l'administrateur (N'oubliez pas de redĆ©marrer le processus Apache " -"aprĆØs)" +"contactez l'administrateur (N'oubliez pas de redĆ©marrer le processus Apache aprĆØs)" #: ../../include/class/ConsoleSupervisor.php:1493 #: ../../include/class/ConsoleSupervisor.php:1517 @@ -17299,8 +45878,8 @@ msgid "" "The variable disable_functions contains functions system() or exec() in PHP " "configuration file (php.ini)" msgstr "" -"La variable disable_functions contient les fonctions system() ou exec() dans " -"le fichier de configuration PHP (php.ini)" +"La variable disable_functions contient les fonctions system() ou exec() dans le " +"fichier de configuration PHP (php.ini)" #: ../../include/class/ConsoleSupervisor.php:1587 msgid "PhantomJS is not installed" @@ -17308,8 +45887,8 @@ msgstr "PhantomJS n'est pas installĆ©" #: ../../include/class/ConsoleSupervisor.php:1588 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:" +"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:" msgstr "" "Pour pouvoir crĆ©er des images des graphiques pour les PDF, veuillez installer " "l'extension PhantomJS. Pour cela, il faut suivre ces Ć©tapes :" @@ -17318,6 +45897,30 @@ msgstr "" msgid "PHP UPDATE REQUIRED" msgstr "MISE ƀ JOUR PHP REQUISE" +#: ../../include/class/ConsoleSupervisor.php:1606 ../../general/php7_message.php:30 +msgid "" +"For a correct operation of PandoraFMS, PHP must be updated to version 7.0 or " +"higher." +msgstr "" +"Pour la correcte opĆ©ration de Pandora FMS, PHP doit ĆŖtre mis Ć  jour Ć  une version " +"7.0 ou plus haute." + +#: ../../include/class/ConsoleSupervisor.php:1606 ../../general/php7_message.php:31 +msgid "Otherwise, functionalities will be lost." +msgstr "Autrement, les fonctionnalitĆ©s seront perdues." + +#: ../../include/class/ConsoleSupervisor.php:1606 ../../general/php7_message.php:33 +msgid "Report download in PDF format" +msgstr "Rapport tĆ©lĆ©chargement en format PDF" + +#: ../../include/class/ConsoleSupervisor.php:1606 ../../general/php7_message.php:34 +msgid "Emails Sending" +msgstr "Envoy d'emails" + +#: ../../include/class/ConsoleSupervisor.php:1606 ../../general/php7_message.php:35 +msgid "Metaconsole Collections" +msgstr "Collections de MĆ©taconsole" + #: ../../include/class/ConsoleSupervisor.php:1672 msgid "Historical database not available" msgstr "Base de donnĆ©es historique non disponible" @@ -17338,12 +45941,12 @@ msgstr "ProblĆØme de maintenance de la base de donnĆ©es" #, php-format msgid "" "Your database hasn't been through maintenance for 48hrs. Please, check " -"documentation on how to perform this maintenance process on %s and enable it " -"as soon as possible." +"documentation on how to perform this maintenance process on %s and enable it as " +"soon as possible." msgstr "" "Votre base de donnĆ©es n'a pas subi de maintenance depuis 48 heures. Veuillez " -"consulter la documentation sur la faƧon d'effectuer ce processus de " -"maintenance sur %s et l'activer dĆØs que possible." +"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:1778 msgid "Historical database maintenance problem." @@ -17352,9 +45955,9 @@ msgstr "ProblĆØme de maintenance de la base de donnĆ©es historique." #: ../../include/class/ConsoleSupervisor.php:1780 #, php-format msgid "" -"Your historical database hasn't been through maintenance for 48hrs. Please, " -"check documentation on how to perform this maintenance process on %s and " -"enable it as soon as possible." +"Your historical database hasn't been through maintenance for 48hrs. Please, check " +"documentation on how to perform this maintenance process on %s and enable it as " +"soon as possible." msgstr "" "Votre base de donnĆ©es historique n'a pas subi de maintenance depuis 48 heures. " "Veuillez consulter la documentation sur la faƧon d'effectuer ce processus de " @@ -17366,8 +45969,8 @@ msgstr "Non-concordance de la base de donnĆ©es historique MR" #: ../../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." +"Your historical database is not using the same schema as the main DB. This could " +"produce anomalies while storing historical data." msgstr "" "Votre base de donnĆ©es historique n'utilise pas le mĆŖme schĆ©ma que la base de " "donnĆ©es principale. Cela pourrait produire des anomalies lors du stockage des " @@ -17388,8 +45991,8 @@ msgstr "La base de donnĆ©es Metaconsole n'est pas disponible." #: ../../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." +"Impossible de se connecter avec la base de donnĆ©es de la MĆ©taconsole en utilisant " +"la configuration actuelle." #: ../../include/class/ConsoleSupervisor.php:1958 msgid "Scheduled downtime running." @@ -17410,8 +46013,8 @@ msgstr "Temps d'arrĆŖt prĆ©vu prochainement." #: ../../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." +"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 "" "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." @@ -17419,8 +46022,7 @@ msgstr "" #: ../../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" +"Cette instance n'est pas enregistrĆ©e dans la section Gestionnaire de mise Ć  jour" #: ../../include/class/ConsoleSupervisor.php:2148 msgid "Click here to start the registration process" @@ -17428,13 +46030,11 @@ msgstr "Cliquez ici pour commencer le processus dā€™enregistrement" #: ../../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Ć©" +msgstr "Le mot de passe par dĆ©faut de l'utilisateur \"Admin\" n'a pas Ć©tĆ© modifiĆ©" #: ../../include/class/ConsoleSupervisor.php:2181 msgid "" -"Please, change the default password since it is a commonly reported " -"vulnerability." +"Please, change the default password since it is a commonly reported vulnerability." msgstr "" "Veuillez modifier le mot de passe par dĆ©faut car il s'agit d'une vulnĆ©rabilitĆ© " "couramment signalĆ©e." @@ -17445,11 +46045,11 @@ msgstr "La police par dĆ©faut n'existe pas" #: ../../include/class/ConsoleSupervisor.php:2217 msgid "" -"Your defined font doesn't exist or is not defined. Please, check font " -"parameters in your config" +"Your defined font doesn't exist or is not defined. Please, check font parameters " +"in your config" 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" +"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:2240 msgid "Developer mode is enabled" @@ -17459,12 +46059,12 @@ msgstr "Mode dĆ©veloppeur activĆ©" #, php-format msgid "" "Your %s has the \"develop_bypass\" mode enabled. This is a developer mode and " -"should be disabled in a production environment. This value is located in the " -"main index.php file" +"should be disabled in a production environment. This value is located in the main " +"index.php file" msgstr "" -"Votre %s a le mode \"develop_bypass\" activĆ©. Il s'agit d'un mode dĆ©veloppeur " -"et doit ĆŖtre dĆ©sactivĆ© dans un environnement de production. Cette valeur se " -"trouve dans le fichier principal index.php" +"Votre %s a le mode \"develop_bypass\" activĆ©. Il s'agit d'un mode dĆ©veloppeur et " +"doit ĆŖtre dĆ©sactivĆ© dans un environnement de production. Cette valeur se trouve " +"dans le fichier principal index.php" #: ../../include/class/ConsoleSupervisor.php:2266 msgid "Event storm protection is enabled." @@ -17472,16 +46072,15 @@ msgstr "La protection contre les tempĆŖtes d'Ć©vĆ©nements est activĆ©e." #: ../../include/class/ConsoleSupervisor.php:2267 msgid "" -"Some events may get lost while this mode is enabled. The server must be " -"restarted after altering this setting." +"Some events may get lost while this mode is enabled. The server must be restarted " +"after altering this setting." 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:2293 msgid "Failed to retrieve updates, please configure utility" -msgstr "" -"Ɖchec de la rĆ©cupĆ©ration des mises Ć  jour, veuillez configurer l'utilitaire" +msgstr "Ɖchec de la rĆ©cupĆ©ration des mises Ć  jour, veuillez configurer l'utilitaire" #: ../../include/class/ConsoleSupervisor.php:2311 #, php-format @@ -17491,8 +46090,7 @@ msgstr "Nouvelle %s mise Ć  jour de la console" #: ../../include/class/ConsoleSupervisor.php:2314 msgid "There is a new update available. Please
    .About minor release update." +"There is one or more minor releases available. .About minor release update." msgstr "" "Une ou plusieurs versions mineures sont disponibles. .ƀ propos de la mise Ć  jour mineure ." -#: ../../include/class/ConsoleSupervisor.php:2376 -#: ../../enterprise/include/functions_tasklist.php:56 -msgid "DiscoveryConsoleTasks is not running properly" -msgstr "DiscoveryConsoleTasks n'est pas exĆ©cutĆ© correctement" - #: ../../include/class/ConsoleSupervisor.php:2378 msgid "Discovery relies on an appropriate cron setup." msgstr "La dĆ©couverte repose sur une configuration cron appropriĆ©e." -#: ../../include/class/ConsoleSupervisor.php:2379 -#: ../../enterprise/include/functions_tasklist.php:59 -msgid "Please, add the following line to your crontab file:" -msgstr "Veuillez ajouter la ligne suivante Ć  votre fichier crontab :" - -#: ../../include/class/ConsoleSupervisor.php:2392 -#: ../../enterprise/include/functions_tasklist.php:74 -msgid "Last execution" -msgstr "DerniĆØre exĆ©cution" - #: ../../include/class/ConsoleSupervisor.php:2394 msgid "Please, make sure process is not locked." msgstr "Veuillez vous assurer que le processus n'est pas verrouillĆ©." @@ -17534,115 +46117,359 @@ msgstr "Veuillez vous assurer que le processus n'est pas verrouillĆ©." msgid "DiscoveryConsoleTasks is not configured." msgstr "DiscoveryConsoleTasks n'est pas configurĆ©." -#: ../../include/class/ConsoleSupervisor.php:2498 +#: ../../include/class/ConsoleSupervisor.php:2496 #, php-format msgid "%s version misaligned with Console" msgstr "%s version mal alignĆ©e avec la Console" -#: ../../include/class/ConsoleSupervisor.php:2502 +#: ../../include/class/ConsoleSupervisor.php:2500 #, php-format msgid "" "Server %s and this console have different versions. This might cause several " "malfunctions. Please, update this server." msgstr "" -"Le serveur %s et cette console ont des versions diffĆ©rentes. Cela peut " -"provoquer plusieurs dysfonctionnements. Veuillez mettre Ć  jour ce serveur." +"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:2565 +#: ../../include/class/ConsoleSupervisor.php:2563 msgid "AllowOverride is disabled" msgstr "AllowOverride est dĆ©sactivĆ©" -#: ../../include/class/ConsoleSupervisor.php:2611 +#: ../../include/class/ConsoleSupervisor.php:2609 msgid "Desynchronized operation on the node " msgstr "OpĆ©ration dĆ©synchronisĆ©e sur le nœud" -#: ../../include/class/ConsoleSupervisor.php:2634 +#: ../../include/class/ConsoleSupervisor.php:2632 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:2638 +#: ../../include/class/ConsoleSupervisor.php:2636 #, php-format msgid "" -"Pandora FMS console log file has been moved to new location %s/log. Currently " -"you have an outdated and inoperative version of this file at %s. Please, " -"consider deleting it." +"Pandora FMS console log file has been moved to new location %s/log. Currently you " +"have an outdated and inoperative version of this file at %s. Please, consider " +"deleting it." msgstr "" "Le fichier journal de la console Pandora FMS a Ć©tĆ© dĆ©placĆ© vers le nouvel " "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:2673 +#: ../../include/class/ConsoleSupervisor.php:2671 msgid "Pandora FMS audit log file changed location" msgstr "Le fichier journal d'audit Pandora FMS a changĆ© d'emplacement" -#: ../../include/class/ConsoleSupervisor.php:2677 +#: ../../include/class/ConsoleSupervisor.php:2675 #, php-format msgid "" -"Pandora FMS audit log file has been moved to new location %s/log. Currently " -"you have an outdated and inoperative version of this file at %s. Please, " -"consider deleting it." +"Pandora FMS audit log file has been moved to new location %s/log. Currently you " +"have an outdated and inoperative version of this file at %s. Please, consider " +"deleting it." msgstr "" -"Le fichier journal d'audit Pandora FMS a Ć©tĆ© dĆ©placĆ© vers le nouvel " -"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." +"Le fichier journal d'audit Pandora FMS a Ć©tĆ© dĆ©placĆ© vers le nouvel 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:2763 +#: ../../include/class/ConsoleSupervisor.php:2761 #, 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:2765 +#: ../../include/class/ConsoleSupervisor.php:2763 #, 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." +"Synchronization queue lenght for node %s is %d items, this value should be 0 or " +"lower than %d, please check the queue status." msgstr "" "La longueur de la file dā€™attente de synchronisation pour le nœud %s est %d " -"Ć©lĆ©ments, cette valeur doit ĆŖtre 0 ou infĆ©rieure Ć  %d, veuillez vĆ©rifier " -"lā€™Ć©tat de la file dā€™attente." +"Ć©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:2818 +#: ../../include/class/ConsoleSupervisor.php:2816 #, 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:2820 +#: ../../include/class/ConsoleSupervisor.php:2818 #, php-format msgid "" "Node %s cannot process synchronization queue due %s, please check the queue " "status." msgstr "" -"Le nœud %s ne peut pas traiter la file dā€™attente de synchronisation en raison " -"de %s, veuillez vĆ©rifier lā€™Ć©tat de la file dā€™attente." +"Le nœud %s ne peut pas traiter la file dā€™attente de synchronisation en raison de " +"%s, veuillez vĆ©rifier lā€™Ć©tat de la file dā€™attente." -#: ../../include/class/HTML.class.php:419 -#: ../../include/class/CustomNetScan.class.php:314 -#: ../../include/class/CustomNetScan.class.php:422 -#: ../../enterprise/include/class/MicrosoftSQLServer.app.php:356 -#: ../../enterprise/include/class/Aws.cloud.php:1126 -#: ../../enterprise/include/class/MySQL.app.php:371 -#: ../../enterprise/include/class/Oracle.app.php:361 -#: ../../enterprise/include/class/DB2.app.php:354 -#: ../../enterprise/include/class/SAP.app.php:401 -#: ../../enterprise/include/class/Omnishell.class.php:630 -#: ../../enterprise/include/class/Omnishell.class.php:980 -#: ../../enterprise/include/class/Omnishell.class.php:1349 -#: ../../enterprise/include/class/VMware.app.php:455 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:285 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:339 -#: ../../enterprise/include/class/Azure.cloud.php:689 -#: ../../enterprise/include/class/Google.cloud.php:686 -#: ../../enterprise/include/lib/ClusterViewer/ClusterWizard.php:349 -#: ../../enterprise/include/lib/ClusterViewer/ClusterManager.php:752 -#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:469 -#: ../../godmode/modules/manage_network_components_form.php:367 -#: ../../godmode/reporting/graph_builder.main.php:308 -#: ../../godmode/wizards/HostDevices.class.php:648 -#: ../../godmode/wizards/HostDevices.class.php:747 -#: ../../godmode/wizards/Wizard.main.php:416 -#: ../../godmode/wizards/DiscoveryTaskList.class.php:181 -msgid "Go back" -msgstr "Revenir" +#: ../../include/class/CalendarManager.class.php:161 +msgid "Alert calendar list" +msgstr "Liste du calendrier des alertes" + +#: ../../include/class/CalendarManager.class.php:183 +msgid "Edit calendar" +msgstr "Modifier le calendrier" + +#: ../../include/class/CalendarManager.class.php:197 +msgid "Alert special days" +msgstr "Alerte jours spĆ©ciaux" + +#: ../../include/class/CalendarManager.class.php:274 +#: ../../include/class/CalendarManager.class.php:491 +#, php-format +msgid "Calendar not found: %s" +msgstr "Calendrier introuvable : %s" + +#: ../../include/class/CalendarManager.class.php:302 +msgid "Calendar successfully deleted" +msgstr "Calendrier supprimĆ© correctement" + +#: ../../include/class/CalendarManager.class.php:325 +#, php-format +msgid "Special day not found: %s" +msgstr "Jour spĆ©cial introuvable: %s" + +#: ../../include/class/CalendarManager.class.php:337 +msgid "Special day successfully deleted" +msgstr "Jour spĆ©cial supprimĆ© correctement" + +#: ../../include/class/CalendarManager.class.php:410 +msgid "Skipped dates: " +msgstr "Dates omises : " + +#: ../../include/class/CalendarManager.class.php:448 +msgid "Success to upload iCalendar" +msgstr "iCalendar tĆ©lĆ©versĆ© correctement" + +#: ../../include/class/CalendarManager.class.php:449 +msgid "Fail to upload iCalendar" +msgstr "Erreur, iCalendar non tĆ©lĆ©versĆ©" + +#: ../../include/class/CalendarManager.class.php:554 +msgid "Failed saving calendar: name exists" +msgstr "Ɖchec de lā€™enregistrement du calendrier : le nom existe" + +#: ../../include/class/CalendarManager.class.php:563 +msgid "Failed saving calendar: " +msgstr "Ɖchec de lā€™enregistrement du calendrier : " + +#: ../../include/class/CalendarManager.class.php:834 +#, php-format +msgid "Special days not found: %s" +msgstr "Jours spĆ©ciaux introuvables: %s" + +#: ../../include/class/CalendarManager.class.php:877 +#, php-format +msgid "SpecialDay not found: %s" +msgstr "JourSpecial introuvable: %s" + +#: ../../include/class/CalendarManager.class.php:930 +msgid "Failed saving calendar: already exists" +msgstr "Ɖchec de lā€™enregistrement du calendrier : il existe dĆ©jĆ " + +#: ../../include/class/CalendarManager.class.php:939 +msgid "Failed saving special day: " +msgstr "Ɖchec de lā€™enregistrement dā€™une journĆ©e spĆ©ciale : " + +#: ../../include/class/CalendarManager.class.php:1007 +#, php-format +msgid "Same as %s" +msgstr "Identique Ć  %s" + +#: ../../include/class/CalendarManager.class.php:1009 +msgid "Templates not being fired" +msgstr "ModĆØles non dĆ©clenchĆ©s" + +#: ../../include/class/WelcomeWindow.class.php:157 +msgid "Welcome to" +msgstr "Bienvenue Ć " + +#: ../../include/class/WelcomeWindow.class.php:158 +msgid "Do not show anymore" +msgstr "Ne plus afficher." + +#: ../../include/class/WelcomeWindow.class.php:167 +msgid "Cancel Configuration Window" +msgstr "FenĆŖtre dā€™annulation de la configuration" + +#: ../../include/class/WelcomeWindow.class.php:172 +msgid "Are you sure you want to cancel this tutorial?" +msgstr "Vous ĆŖtes sĆ»r de vouloir annuler ce tutoriel ?" + +#: ../../include/class/WelcomeWindow.class.php:428 +msgid "Please ensure mail configuration matches your needs" +msgstr "" +"Veuillez vous assurer que la configuration de la messagerie correspond Ć  vos " +"besoins" + +#: ../../include/class/WelcomeWindow.class.php:462 +msgid "Create an agent" +msgstr "CrĆ©er un agent" + +#: ../../include/class/WelcomeWindow.class.php:487 +msgid "Create a module to check if an agent is online" +msgstr "CrĆ©er un module pour vĆ©rifier si un agent est en ligne" + +#: ../../include/class/WelcomeWindow.class.php:512 +msgid "Be warned if something is wrong, create an alert on the module" +msgstr "Soyez prĆ©venu si quelque chose ne va pas, crĆ©ez une alerte sur le module" + +#: ../../include/class/WelcomeWindow.class.php:537 +msgid "Discover hosts and devices in your network" +msgstr "DĆ©couvrez les hĆ“tes et les appareils de votre rĆ©seau" + +#: ../../include/class/WelcomeWindow.class.php:565 +msgid "If something is not working as expected, look for this icon and report!" +msgstr "" +"Si quelque chose ne fonctionne pas comme prĆ©vu, recherchez cette icĆ“ne et " +"signalez-leĀ !" + +#: ../../include/class/WebServerModuleDebug.class.php:143 +msgid "Performing query. Please wait." +msgstr "ExĆ©cution de la requĆŖte. S'il vous plaĆ®t, attendez." + +#: ../../include/class/WebServerModuleDebug.class.php:174 +msgid "No results" +msgstr "Aucun rĆ©sultat" + +#: ../../include/class/WebServerModuleDebug.class.php:197 +msgid "Error performing execution" +msgstr "Erreur lors de l'exĆ©cution" + +#: ../../include/class/WebServerModuleDebug.class.php:229 +msgid "Please, wait for a first execution of module" +msgstr "Veuillez attendre une premiĆØre exĆ©cution du module" + +#: ../../include/class/AgentWizard.class.php:456 +msgid "There are not defined Remote components for this performance." +msgstr "Il n'y a pas de composants distants dĆ©finis pour cette performance." + +#: ../../include/class/AgentWizard.class.php:575 +msgid "SNMP Walk" +msgstr "Chemin SNMP" + +#: ../../include/class/AgentWizard.class.php:580 +msgid "WMI Explorer" +msgstr "Explorateur WMI" + +#: ../../include/class/AgentWizard.class.php:654 +msgid "namespace" +msgstr "Espace de nommage" + +#: ../../include/class/AgentWizard.class.php:824 +msgid "User authentication" +msgstr "Authentification de l'utilisateur" + +#: ../../include/class/AgentWizard.class.php:853 +msgid "Password authentication" +msgstr "Authentification par mot de passe" + +#: ../../include/class/AgentWizard.class.php:1006 +#, php-format +msgid "The PEN (%s) is not registered." +msgstr "Le PEN (%s) n'est pas enregistrĆ©." + +#: ../../include/class/AgentWizard.class.php:1073 +msgid "The SNMP Walk does not return anything with the received arguments." +msgstr "Le SNMP Walk ne renvoie rien avec les arguments reƧus." + +#: ../../include/class/AgentWizard.class.php:1133 +#, php-format +msgid "The target host response with an error: %s" +msgstr "La rĆ©ponse de l'hĆ“te cible avec une erreurĀ : %s" + +#: ../../include/class/AgentWizard.class.php:1183 +msgid "No selected modules" +msgstr "Aucun module sĆ©lectionnĆ©" + +#: ../../include/class/AgentWizard.class.php:1220 +msgid "Module exists in policy" +msgstr "Le module existe dans la politique" + +#: ../../include/class/AgentWizard.class.php:1230 +msgid "Module exists in agent" +msgstr "Le module existe dans l'agent" + +#: ../../include/class/AgentWizard.class.php:1237 +msgid "Module with the same name in the module creation list" +msgstr "Module avec le mĆŖme nom dans la liste de crĆ©ation de module" + +#: ../../include/class/AgentWizard.class.php:1640 +#, php-format +msgid "Module \"%s\" exits in this policy" +msgstr "Le module \"%s\" existe dans cette politique" + +#: ../../include/class/AgentWizard.class.php:1742 +#: ../../include/class/AgentWizard.class.php:2170 +#, php-format +msgid "Module %s module_exec not configuration" +msgstr "Module %s module_exec non configurĆ©" + +#: ../../include/class/AgentWizard.class.php:1898 +#: ../../include/class/AgentWizard.class.php:2345 +#, php-format +msgid "Module %s satellite execution not configuration" +msgstr "Module %s exĆ©cution satellite non configurĆ©" + +#: ../../include/class/AgentWizard.class.php:1990 +#, php-format +msgid "Module \"%s\" problems insert in bbdd" +msgstr "Module \"%s\" problĆØmes d'insertion dans la base de donnĆ©es" + +#: ../../include/class/AgentWizard.class.php:1998 +#: ../../include/class/AgentWizard.class.php:2428 +msgid "Modules created" +msgstr "Modules crĆ©Ć©s" + +#: ../../include/class/AgentWizard.class.php:2028 +#, php-format +msgid "Module \"%s\" exists in this agent" +msgstr "Le module \"%s\" existe dans cet agent" + +#: ../../include/class/AgentWizard.class.php:2619 +msgid "Select all filtered interfaces" +msgstr "SĆ©lectionnez toutes les interfaces filtrĆ©es" + +#: ../../include/class/AgentWizard.class.php:2642 +msgid "OperStatus UP" +msgstr "OperStatus UP" + +#: ../../include/class/AgentWizard.class.php:2653 +msgid "AdminStatus UP" +msgstr "AdminStatus UP" + +#: ../../include/class/AgentWizard.class.php:3046 +#: ../../include/class/AgentWizard.class.php:3350 +msgid "No information could be retrieved." +msgstr "Aucune information n'a pu ĆŖtre rĆ©cupĆ©rĆ©e." + +#: ../../include/class/AgentWizard.class.php:3640 +msgid "Create modules" +msgstr "CrĆ©er des modules" + +#: ../../include/class/AgentWizard.class.php:3949 +msgid "Add general monitoring for all selected interfaces" +msgstr "Ajouter une supervision gĆ©nĆ©rale pour toutes les interfaces sĆ©lectionnĆ©es" + +#: ../../include/class/AgentWizard.class.php:3970 +#: ../../include/class/AgentWizard.class.php:3971 +#: ../../include/class/AgentWizard.class.php:3990 +#: ../../include/class/AgentWizard.class.php:3991 +msgid "Modules selected" +msgstr "Modules sĆ©lectionnĆ©s" + +#: ../../include/class/AgentWizard.class.php:4059 +msgid "Module info" +msgstr "Informations sur les modules" + +#: ../../include/class/AgentWizard.class.php:4088 +msgid "Current value" +msgstr "Valeur actuelle" + +#: ../../include/class/AgentWizard.class.php:5575 +#, php-format +msgid "The operation '%s' is not permitted. Review for remote components." +msgstr "L'opĆ©ration '%s' n'est pas autorisĆ©e. Examen des composants distants." + +#: ../../include/class/AgentWizard.class.php:5989 +msgid "Modules about to be created" +msgstr "Modules sur le point d'ĆŖtre crĆ©Ć©s" #: ../../include/class/ExternalTools.class.php:185 msgid "Changes successfully saved." @@ -17652,32 +46479,12 @@ msgstr "Modifications enregistrĆ©es correctement." msgid "Changes not saved." msgstr "Modifications non enregistrĆ©es " -#: ../../include/class/ExternalTools.class.php:213 -#: ../../include/functions_config.php:263 -msgid "Sound for Alert fired" -msgstr "Son quand une alerte est declenchĆ©e" - #: ../../include/class/ExternalTools.class.php:233 #: ../../include/class/ExternalTools.class.php:263 #: ../../include/class/ExternalTools.class.php:293 msgid "Play sound" msgstr "Reproduire le son" -#: ../../include/class/ExternalTools.class.php:243 -#: ../../include/functions_config.php:267 -msgid "Sound for Monitor critical" -msgstr "Son pour Ć©tat critique du moniteur" - -#: ../../include/class/ExternalTools.class.php:273 -#: ../../include/functions_config.php:271 -msgid "Sound for Monitor warning" -msgstr "Son pour les alertes du moniteur" - -#: ../../include/class/ExternalTools.class.php:303 -#: ../../include/functions_config.php:1251 -msgid "Custom graphviz directory" -msgstr "RĆ©pertoire personnalisĆ© graphviz" - #: ../../include/class/ExternalTools.class.php:313 msgid "Traceroute path" msgstr "Chemin du traceroute" @@ -17740,41 +46547,6 @@ msgstr "Port Scan TCP de base" msgid "DiG/Whois Lookup" msgstr "Recherche DiG/WHOIS" -#: ../../include/class/ExternalTools.class.php:530 -#: ../../include/functions_menu.php:597 -#: ../../include/functions_reporting_html.php:2208 -#: ../../include/functions_reporting_html.php:4692 -#: ../../enterprise/include/functions_reporting_csv.php:1014 -#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:155 -#: ../../enterprise/include/class/CommandCenter.class.php:451 -#: ../../enterprise/meta/include/functions_autoprovision.php:641 -#: ../../enterprise/meta/advanced/policymanager.queue.php:214 -#: ../../enterprise/meta/advanced/policymanager.queue.php:259 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3740 -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:231 -#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:339 -#: ../../enterprise/godmode/policies/policy_queue.php:605 -#: ../../enterprise/godmode/policies/policy_queue.php:649 -#: ../../extensions/api_checker.php:156 ../../godmode/extensions.php:148 -#: ../../godmode/reporting/reporting_builder.item_editor.php:4332 -msgid "Operation" -msgstr "OpĆ©ration" - -#: ../../include/class/ExternalTools.class.php:537 -#: ../../enterprise/views/ncm/agent/details.php:256 -#: ../../enterprise/views/ncm/agent/manage.php:135 -#: ../../enterprise/views/ncm/agent/manage.php:148 -#: ../../enterprise/views/ncm/agent/manage.php:181 -#: ../../enterprise/views/ncm/agent/manage.php:274 -#: ../../enterprise/views/ncm/agent/manage.php:309 -#: ../../enterprise/views/ncm/snippets/edit.php:138 -#: ../../enterprise/views/ncm/templates/edit.php:347 -#: ../../enterprise/godmode/massive/massive_edit_service_elements.php:230 -#: ../../enterprise/godmode/massive/massive_delete_service_elements.php:188 -#: ../../enterprise/godmode/massive/massive_add_service_elements.php:329 -msgid "Please select" -msgstr "SĆ©lectionnez" - #: ../../include/class/ExternalTools.class.php:542 msgid "IP Adress" msgstr "Adresse IP" @@ -17783,12 +46555,6 @@ msgstr "Adresse IP" msgid "SNMP Version" msgstr "Version SNMP" -#: ../../include/class/ExternalTools.class.php:570 -#: ../../enterprise/meta/include/functions_wizard_meta.php:967 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1484 -msgid "SNMP Community" -msgstr "CommunautĆ© SNMP" - #: ../../include/class/ExternalTools.class.php:707 msgid "Command not response" msgstr "Commande pas de rĆ©ponse" @@ -17799,17 +46565,9 @@ msgstr "La commande a Ć©chouĆ© et a obtenu le code retourĀ :" #: ../../include/class/ExternalTools.class.php:726 msgid "" -"Something went wrong while perform the execution. Please check the " -"configuration." +"Something went wrong while perform the execution. Please check the configuration." msgstr "" -"Une erreur s'est produite lors de l'exĆ©cution. Veuillez vĆ©rifier la " -"configuration." - -#: ../../include/class/ExternalTools.class.php:750 -#: ../../godmode/agentes/configurar_agente.php:886 -#: ../../godmode/agentes/configurar_agente.php:1037 -msgid "The ip or dns name entered cannot be resolved" -msgstr "L'adresse IP ou le nom DNS ne peuvent pas ĆŖtre rĆ©solus" +"Une erreur s'est produite lors de l'exĆ©cution. Veuillez vĆ©rifier la configuration." #: ../../include/class/ExternalTools.class.php:763 msgid "SNMP information for " @@ -17881,5220 +46639,485 @@ msgstr "ExĆ©cution de %s sur %s" msgid "Performing %s execution" msgstr "ExĆ©cution de %s" -#: ../../include/class/ConfigPEN.class.php:337 -#: ../../include/class/ConfigPEN.class.php:345 ../../godmode/menu.php:151 -msgid "Private Enterprise Numbers" -msgstr "NumĆ©ros d'entreprise privĆ©e" +#: ../../include/functions_reporting.php:366 +msgid " agents" +msgstr " agents" -#: ../../include/class/ConfigPEN.class.php:435 -#: ../../include/class/ConfigPEN.class.php:598 -msgid "Manufacturer" -msgstr "Fabricant" +#: ../../include/functions_reporting.php:376 +msgid " modules" +msgstr " modules" -#: ../../include/class/ConfigPEN.class.php:483 -msgid "PEN is required" -msgstr "PEN est requis" +#: ../../include/functions_reporting.php:1512 +msgid "Top N" +msgstr "Top N" -#: ../../include/class/ConfigPEN.class.php:509 -msgid "PEN is required." -msgstr "PEN est requis." +#: ../../include/functions_reporting.php:1698 +msgid "Insuficient data" +msgstr "DonnĆ©es insuffisantes" -#: ../../include/class/ConfigPEN.class.php:513 -msgid "Manufacturer is required" -msgstr "Le fabricant est requis" +#: ../../include/functions_reporting.php:2011 +msgid "Event Report Group" +msgstr "Rapport d'Ć©vĆ©nements de groupes" -#: ../../include/class/ConfigPEN.class.php:530 -msgid "This PEN definition does not exist" -msgstr "Cette dĆ©finition PEN n'existe pas" +#: ../../include/functions_reporting.php:2059 +msgid "Exclude " +msgstr "Exclure" -#: ../../include/class/ConfigPEN.class.php:544 -msgid "created" -msgstr "crĆ©Ć©" +#: ../../include/functions_reporting.php:2237 +#: ../../include/functions_reporting.php:4076 +#: ../../include/functions_reporting.php:10745 +#: ../../include/functions_events.php:2381 ../../include/functions_events.php:2984 +#: ../../include/functions_events.php:3265 ../../include/functions_events.php:3274 +#: ../../include/functions_events.php:3281 ../../include/functions_events.php:3288 +#: ../../operation/snmpconsole/snmp_view.php:588 +#: ../../operation/snmpconsole/snmp_view.php:941 +#: ../../operation/snmpconsole/snmp_view.php:1234 +msgid "Validated" +msgstr "ValidĆ©" -#: ../../include/class/ConfigPEN.class.php:550 -msgid "This PEN definition already exists" -msgstr "Cette dĆ©finition PEN existe dĆ©jĆ " +#: ../../include/functions_reporting.php:2238 +#: ../../include/functions_reporting.php:4077 +#: ../../include/functions_reporting.php:10746 +#: ../../operation/snmpconsole/snmp_view.php:587 +#: ../../operation/snmpconsole/snmp_view.php:931 +#: ../../operation/snmpconsole/snmp_view.php:1243 +msgid "Not validated" +msgstr "Non validĆ©" -#: ../../include/class/ConfigPEN.class.php:564 -#: ../../enterprise/godmode/massive/massive_edit_service_elements.php:172 -msgid "updated" -msgstr "mis Ć  jour" +#: ../../include/functions_reporting.php:2305 +msgid "Event Report Module" +msgstr "Module de rapports d'Ć©vĆ©nements" -#: ../../include/class/ConfigPEN.class.php:571 +#: ../../include/functions_reporting.php:2945 +msgid "Agent/Modules" +msgstr "Agent/Modules" + +#: ../../include/functions_reporting.php:3042 +msgid "Agent/Modules Status" +msgstr "Ɖtat de lā€™agent/des modules" + +#: ../../include/functions_reporting.php:3191 +msgid "Exception - Everything" +msgstr "Exception - Tout" + +#: ../../include/functions_reporting.php:3197 #, php-format -msgid "Succesfully %s" -msgstr "Correctement %s" +msgid "Exception - Modules over or equal to %s" +msgstr "Exception - Modules supĆ©rieurs ou Ć©gaux Ć  %s" -#: ../../include/class/ConfigPEN.class.php:651 -msgid "Register manufacturer" -msgstr "Enregistrer le fabricant" - -#: ../../include/class/ConfigPEN.class.php:667 -msgid "Are you sure you want to delete this PEN?" -msgstr "Etes-vous sĆ»r de vouloir supprimer ceci ?" - -#: ../../include/class/ConfigPEN.class.php:694 -msgid "Register new manufacturer" -msgstr "Enregistrer un nouveau fabricant" - -#: ../../include/class/CredentialStore.class.php:611 +#: ../../include/functions_reporting.php:3200 #, php-format -msgid "Not a valid JSON: %s" -msgstr "Pas un JSON valideĀ : %s" +msgid "Modules over or equal to %s" +msgstr "Modules supĆ©rieurs ou Ć©gaux Ć  %s" -#: ../../include/class/CredentialStore.class.php:621 -msgid "Key identifier is required" -msgstr "Un identifiant clĆ© est requis." - -#: ../../include/class/CredentialStore.class.php:623 -msgid "You must select a group where store this key!" -msgstr "SĆ©lectionnez un groupe oĆ¹ stockez cette clĆ©Ā !" - -#: ../../include/class/CredentialStore.class.php:625 -msgid "You must specify a product type" -msgstr "SpĆ©cifiez un type de produit" - -#: ../../include/class/CredentialStore.class.php:627 -msgid "You must specify a username and/or password" -msgstr "SpĆ©cifiez un nom d'utilisateur et/ou un mot de passe" - -#: ../../include/class/CredentialStore.class.php:629 -msgid "Identifier with forbidden characters. Check the documentation." -msgstr "" -"Identificateur avec des caractĆØres interdits. Consultez la documentation." - -#: ../../include/class/CredentialStore.class.php:742 -msgid "identifier cannot be empty" -msgstr "l'identifiant ne peut pas ĆŖtre vide" - -#: ../../include/class/CredentialStore.class.php:747 -#: ../../enterprise/include/class/LogSource.class.php:567 -msgid "Not allowed" -msgstr "Non autorisĆ©" - -#: ../../include/class/CredentialStore.class.php:786 -#: ../../enterprise/include/class/LogSource.class.php:611 -msgid "How to configure encryption." -msgstr "Comment configurer cryptage" - -#: ../../include/class/CredentialStore.class.php:785 +#: ../../include/functions_reporting.php:3205 #, php-format -msgid "" -"Database encryption is not enabled. Credentials will be stored in plaintext. %s" -msgstr "" -"Le chiffrement de la base de donnĆ©es n'est pas activĆ©. Les informations " -"d'identification seront stockĆ©es en clair. %s" +msgid "Exception - Modules under or equal to %s" +msgstr "Exception - Modules infĆ©rieurs ou Ć©gaux Ć  %s" -#: ../../include/class/CredentialStore.class.php:803 -#: ../../include/class/CredentialStore.class.php:911 -#: ../../enterprise/views/ncm/firmwares/list.php:74 -#: ../../enterprise/include/class/Omnishell.class.php:398 -msgid "Identifier" -msgstr "Identificateur" - -#: ../../include/class/CredentialStore.class.php:804 -#: ../../include/class/CredentialStore.class.php:937 -msgid "Product" -msgstr "Produit" - -#: ../../include/class/CredentialStore.class.php:869 -msgid "Add key" -msgstr "Ajouter une clĆ©" - -#: ../../include/class/CredentialStore.class.php:946 -#: ../../enterprise/include/class/Aws.cloud.php:118 -msgid "Aws" -msgstr "AWS" - -#: ../../include/class/CredentialStore.class.php:947 -#: ../../enterprise/include/class/Azure.cloud.php:153 -msgid "Azure" -msgstr "Azure" - -#: ../../include/class/CredentialStore.class.php:948 -#: ../../enterprise/include/class/SAPView.class.php:621 -#: ../../enterprise/include/class/SAPView.class.php:624 -#: ../../enterprise/godmode/menu.php:177 -msgid "SAP" -msgstr "SAP" - -#: ../../include/class/CredentialStore.class.php:949 -#: ../../enterprise/include/class/Google.cloud.php:147 -msgid "Google" -msgstr "Google" - -#: ../../include/class/CredentialStore.class.php:959 -#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:342 -msgid "Extra" -msgstr "Extra" - -#: ../../include/class/CredentialStore.class.php:960 -msgid "Extra (2)" -msgstr "SupplĆ©ment (2)" - -#: ../../include/class/CredentialStore.class.php:970 -#: ../../include/class/CredentialStore.class.php:1141 -msgid "Access key ID" -msgstr "ID de clĆ© dā€™accĆØs :" - -#: ../../include/class/CredentialStore.class.php:971 -#: ../../include/class/CredentialStore.class.php:1142 -msgid "Secret access key" -msgstr "ClĆ© d'accĆØs secrĆØte" - -#: ../../include/class/CredentialStore.class.php:977 -#: ../../include/class/CredentialStore.class.php:994 -msgid "Account ID" -msgstr "ID de compte" - -#: ../../include/class/CredentialStore.class.php:978 -#: ../../include/class/CredentialStore.class.php:1149 -msgid "Application secret" -msgstr "Application secret" - -#: ../../include/class/CredentialStore.class.php:979 -#: ../../include/class/CredentialStore.class.php:1150 -msgid "Tenant or domain name" -msgstr "Locataire ou nom de domaine" - -#: ../../include/class/CredentialStore.class.php:980 -#: ../../include/class/CredentialStore.class.php:1151 -msgid "Subscription id" -msgstr "ID Abonnement" - -#: ../../include/class/CredentialStore.class.php:984 -#: ../../include/class/CredentialStore.class.php:1167 -msgid "Auth JSON" -msgstr "Authentification JSON" - -#: ../../include/class/CredentialStore.class.php:1148 -msgid "Client ID" -msgstr "ID Client" - -#: ../../include/class/CredentialStore.class.php:1157 -msgid "Account ID." -msgstr "ID de compte" - -#: ../../include/class/CredentialStore.class.php:1243 -msgid "Register new key into keystore" -msgstr "Enregistrer une nouvelle clĆ© dans le magasin de clĆ©s" - -#: ../../include/class/CredentialStore.class.php:1247 -msgid "Update key" -msgstr "Mettre Ć  jour la clĆ©" - -#: ../../include/class/CustomNetScan.class.php:134 -#: ../../enterprise/include/class/Aws.cloud.php:886 -#: ../../enterprise/include/class/Aws.S3.php:166 -msgid "This task has been already defined. Please edit it or create a new one." -msgstr "" -"Cette tache a Ć©tĆ© dĆ©jĆ  dĆ©finie. Veuillez l'Ć©diter ou en crĆ©er une nouvelle." - -#: ../../include/class/CustomNetScan.class.php:158 -#: ../../enterprise/include/class/MicrosoftSQLServer.app.php:193 -#: ../../enterprise/include/class/Aws.cloud.php:907 -#: ../../enterprise/include/class/MySQL.app.php:196 -#: ../../enterprise/include/class/Oracle.app.php:194 -#: ../../enterprise/include/class/DB2.app.php:187 -#: ../../enterprise/include/class/SAP.app.php:175 -#: ../../enterprise/include/class/VMware.app.php:254 -#: ../../enterprise/include/class/Azure.cloud.php:420 -#: ../../enterprise/include/class/Google.cloud.php:423 -#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:139 -#: ../../godmode/wizards/HostDevices.class.php:412 -msgid "You have no access to edit this task." -msgstr "vous n'avez de permissions pour accĆ©der Ć  cette tache." - -#: ../../include/class/CustomNetScan.class.php:168 -#: ../../enterprise/include/class/MicrosoftSQLServer.app.php:203 -#: ../../enterprise/include/class/Aws.cloud.php:917 -#: ../../enterprise/include/class/Aws.S3.php:183 -#: ../../enterprise/include/class/MySQL.app.php:206 -#: ../../enterprise/include/class/Oracle.app.php:204 -#: ../../enterprise/include/class/DB2.app.php:197 -#: ../../enterprise/include/class/SAP.app.php:185 -#: ../../enterprise/include/class/VMware.app.php:264 -#: ../../godmode/wizards/HostDevices.class.php:422 -msgid "You must provide a task name." -msgstr "Vous devez fournir un nom de tache." - -#: ../../include/class/CustomNetScan.class.php:173 -#: ../../enterprise/include/class/MicrosoftSQLServer.app.php:208 -#: ../../enterprise/include/class/Aws.cloud.php:922 -#: ../../enterprise/include/class/Aws.S3.php:188 -#: ../../enterprise/include/class/MySQL.app.php:211 -#: ../../enterprise/include/class/Oracle.app.php:209 -#: ../../enterprise/include/class/DB2.app.php:202 -#: ../../enterprise/include/class/SAP.app.php:190 -#: ../../enterprise/include/class/VMware.app.php:269 -#: ../../godmode/wizards/HostDevices.class.php:427 -msgid "You must select a Discovery Server." -msgstr "Vos devez sĆ©lectionner un Serveur Discovery." - -#: ../../include/class/CustomNetScan.class.php:178 -#: ../../enterprise/include/class/MicrosoftSQLServer.app.php:218 -#: ../../enterprise/include/class/Aws.cloud.php:927 -#: ../../enterprise/include/class/Aws.S3.php:193 -#: ../../enterprise/include/class/MySQL.app.php:226 -#: ../../enterprise/include/class/Oracle.app.php:219 -#: ../../enterprise/include/class/DB2.app.php:212 -#: ../../enterprise/include/class/SAP.app.php:200 -#: ../../enterprise/include/class/VMware.app.php:279 -#: ../../godmode/wizards/HostDevices.class.php:438 -msgid "You must select a valid group." -msgstr "Vous devez sĆ©lectionner un groupe valide." - -#: ../../include/class/CustomNetScan.class.php:222 -#: ../../godmode/wizards/HostDevices.class.php:483 -#: ../../godmode/wizards/HostDevices.class.php:595 -msgid "Failed to find network scan task." -msgstr "Ɖchec de la recherche de la tĆ¢che d'analyse du rĆ©seau." - -#: ../../include/class/CustomNetScan.class.php:369 -#: ../../include/class/CustomNetScan.class.php:394 -msgid "NetScan Custom" -msgstr "NetScan personnalisĆ©" - -#: ../../include/class/CustomNetScan.class.php:403 -#: ../../godmode/wizards/HostDevices.class.php:728 -msgid "Internal error, please re-run this wizard." -msgstr "Erreur interne, veuillez rĆ©exĆ©cuter cet assistant." - -#: ../../include/class/CustomNetScan.class.php:446 -#: ../../enterprise/include/class/MicrosoftSQLServer.app.php:439 -#: ../../enterprise/include/class/Aws.cloud.php:1201 -#: ../../enterprise/include/class/Aws.S3.php:401 -#: ../../enterprise/include/class/MySQL.app.php:442 -#: ../../enterprise/include/class/Oracle.app.php:444 -#: ../../enterprise/include/class/DB2.app.php:437 -#: ../../enterprise/include/class/SAP.app.php:469 -#: ../../enterprise/include/class/VMware.app.php:583 -#: ../../enterprise/include/class/Azure.cloud.php:771 -#: ../../enterprise/include/class/Google.cloud.php:759 -#: ../../godmode/wizards/HostDevices.class.php:838 -#: ../../godmode/wizards/DiscoveryTaskList.class.php:588 -msgid "Task name" -msgstr "Nom de la tĆ¢che" - -#: ../../include/class/CustomNetScan.class.php:480 -#: ../../enterprise/include/class/MicrosoftSQLServer.app.php:451 -#: ../../enterprise/include/class/Aws.cloud.php:1213 -#: ../../enterprise/include/class/Aws.S3.php:413 -#: ../../enterprise/include/class/MySQL.app.php:454 -#: ../../enterprise/include/class/Oracle.app.php:456 -#: ../../enterprise/include/class/DB2.app.php:449 -#: ../../enterprise/include/class/SAP.app.php:482 -#: ../../enterprise/include/class/VMware.app.php:594 -#: ../../godmode/wizards/HostDevices.class.php:849 -msgid "" -"You must select a Discovery Server to run the Task, otherwise the Recon Task " -"will never run" -msgstr "" -"Vous devez sĆ©lectionner un Serveur Discovery pour exĆ©cuter la la Tache, " -"autrement la Tache Recon ne s'exĆ©cutera jamais" - -#: ../../include/class/CustomNetScan.class.php:521 -#: ../../enterprise/include/class/MicrosoftSQLServer.app.php:538 -#: ../../enterprise/include/class/Aws.cloud.php:1319 -#: ../../enterprise/include/class/Aws.S3.php:507 -#: ../../enterprise/include/class/MySQL.app.php:559 -#: ../../enterprise/include/class/Oracle.app.php:544 -#: ../../enterprise/include/class/DB2.app.php:537 -#: ../../enterprise/include/class/SAP.app.php:514 -#: ../../enterprise/include/class/VMware.app.php:668 -#: ../../godmode/wizards/HostDevices.class.php:799 -msgid "Manual interval means that it will be executed only On-demand" -msgstr "Avec l'intervalle manuel il sera exĆ©cutĆ© uniquement sur demande" - -#: ../../include/class/CustomNetScan.class.php:528 -#: ../../include/functions_reporting_html.php:2338 -#: ../../enterprise/include/class/MicrosoftSQLServer.app.php:545 -#: ../../enterprise/include/class/Aws.cloud.php:1326 -#: ../../enterprise/include/class/Aws.S3.php:514 -#: ../../enterprise/include/class/MySQL.app.php:566 -#: ../../enterprise/include/class/Oracle.app.php:551 -#: ../../enterprise/include/class/DB2.app.php:544 -#: ../../enterprise/include/class/SAP.app.php:521 -#: ../../enterprise/include/class/VMware.app.php:675 -#: ../../enterprise/include/class/VMware.app.php:887 -#: ../../godmode/wizards/HostDevices.class.php:806 -msgid "Defined" -msgstr "DĆ©fini" - -#: ../../include/class/CustomNetScan.class.php:529 -#: ../../enterprise/tools/ipam/ipam_list.php:670 -#: ../../enterprise/operation/services/services.list.php:275 -#: ../../enterprise/operation/services/services.table_services.php:197 -#: ../../enterprise/include/class/MicrosoftSQLServer.app.php:546 -#: ../../enterprise/include/class/Aws.cloud.php:1327 -#: ../../enterprise/include/class/Aws.S3.php:515 -#: ../../enterprise/include/class/MySQL.app.php:567 -#: ../../enterprise/include/class/Oracle.app.php:552 -#: ../../enterprise/include/class/DB2.app.php:545 -#: ../../enterprise/include/class/SAP.app.php:522 -#: ../../enterprise/include/class/VMware.app.php:676 -#: ../../enterprise/include/functions_ipam.php:1356 -#: ../../enterprise/godmode/services/services.service.php:658 -#: ../../enterprise/godmode/massive/massive_create_services.php:698 -#: ../../godmode/wizards/HostDevices.class.php:807 -#: ../../godmode/wizards/DiscoveryTaskList.class.php:712 -msgid "Manual" -msgstr "Manuel" - -#: ../../include/class/CustomNetScan.class.php:545 -#: ../../godmode/wizards/HostDevices.class.php:813 -msgid "The minimum recomended interval for Recon Task is 5 minutes" -msgstr "L'intervalle minimal conseillĆ© pour les tĆ¢ches Recon est de 5 minutes." - -#: ../../include/class/CustomNetScan.class.php:553 -#: ../../enterprise/include/class/MicrosoftSQLServer.app.php:570 -#: ../../enterprise/include/class/MySQL.app.php:591 -#: ../../enterprise/include/class/Oracle.app.php:576 -#: ../../enterprise/include/class/DB2.app.php:569 -#: ../../enterprise/include/class/SAP.app.php:444 -#: ../../enterprise/include/class/VMware.app.php:536 -#: ../../enterprise/include/lib/ClusterViewer/ClusterWizard.php:1202 -#: ../../godmode/setup/setup_integria.php:636 -#: ../../godmode/wizards/HostDevices.class.php:772 -msgid "Update and continue" -msgstr "Mettre Ć  jour et continuer" - -#: ../../include/class/CustomNetScan.class.php:611 -msgid "Recon script" -msgstr "Script Recon" - -#: ../../include/class/CustomNetScan.class.php:652 -msgid "Explanation" -msgstr "Explication" - -#: ../../include/class/CustomNetScan.class.php:668 -msgid "macro_desc" -msgstr "macro_desc" - -#: ../../include/class/CustomNetScan.class.php:725 -#: ../../enterprise/include/class/MicrosoftSQLServer.app.php:793 -#: ../../enterprise/include/class/Aws.cloud.php:1423 -#: ../../enterprise/include/class/MySQL.app.php:908 -#: ../../enterprise/include/class/Oracle.app.php:949 -#: ../../enterprise/include/class/DB2.app.php:840 -#: ../../enterprise/include/class/SAP.app.php:802 -#: ../../enterprise/include/class/Omnishell.class.php:852 -#: ../../enterprise/include/class/VMware.app.php:863 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2138 -#: ../../enterprise/include/lib/ClusterViewer/ClusterWizard.php:1206 -#: ../../enterprise/meta/monitoring/wizard/wizard.php:133 -#: ../../enterprise/godmode/wizards/Cloud.class.php:579 -#: ../../godmode/wizards/HostDevices.class.php:1569 -#: ../../godmode/alerts/configure_alert_template.php:1171 -msgid "Finish" -msgstr "Terminer" - -#: ../../include/class/CustomNetScan.class.php:758 -#: ../../enterprise/include/class/MicrosoftSQLServer.app.php:821 -#: ../../enterprise/include/class/Aws.cloud.php:1590 -#: ../../enterprise/include/class/Aws.S3.php:658 -#: ../../enterprise/include/class/MySQL.app.php:944 -#: ../../enterprise/include/class/Oracle.app.php:977 -#: ../../enterprise/include/class/DB2.app.php:868 -#: ../../enterprise/include/class/SAP.app.php:924 -#: ../../enterprise/include/class/VMware.app.php:1014 -#: ../../enterprise/include/class/Azure.cloud.php:990 -#: ../../enterprise/include/class/Google.cloud.php:952 -#: ../../godmode/wizards/HostDevices.class.php:1589 -msgid "Task configured." -msgstr "Tache configurĆ©e." - -#: ../../include/class/CustomNetScan.class.php:762 -#: ../../enterprise/include/class/MicrosoftSQLServer.app.php:825 -#: ../../enterprise/include/class/MySQL.app.php:948 -#: ../../enterprise/include/class/Oracle.app.php:981 -#: ../../enterprise/include/class/DB2.app.php:872 -#: ../../enterprise/include/class/SAP.app.php:928 -#: ../../enterprise/include/class/VMware.app.php:1018 -#: ../../enterprise/include/class/Azure.cloud.php:994 -#: ../../enterprise/include/class/Google.cloud.php:956 -#: ../../godmode/wizards/HostDevices.class.php:1593 -msgid "Wizard failed. Cannot configure task." -msgstr "Ɖchec de l'assistant. La tache ne peut pas se configurer." - -#: ../../include/class/CalendarManager.class.php:161 -msgid "Alert calendar list" -msgstr "Liste du calendrier des alertes" - -#: ../../include/class/CalendarManager.class.php:183 -msgid "Edit calendar" -msgstr "Modifier le calendrier" - -#: ../../include/class/CalendarManager.class.php:197 -msgid "Alert special days" -msgstr "Alerte jours spĆ©ciaux" - -#: ../../include/class/CalendarManager.class.php:272 -#: ../../include/class/CalendarManager.class.php:473 +#: ../../include/functions_reporting.php:3208 #, php-format -msgid "Calendar not found: %s" -msgstr "Calendrier introuvable : %s" +msgid "Modules under or equal to %s" +msgstr "Modules infĆ©rieurs ou Ć©gaux Ć  %s" -#: ../../include/class/CalendarManager.class.php:284 -msgid "Calendar successfully deleted" -msgstr "Calendrier supprimĆ© correctement" - -#: ../../include/class/CalendarManager.class.php:307 +#: ../../include/functions_reporting.php:3213 #, php-format -msgid "Special day not found: %s" -msgstr "Jour spĆ©cial introuvable: %s" +msgid "Exception - Modules under %s" +msgstr "Exception - Modules infĆ©rieurs Ć  %s" -#: ../../include/class/CalendarManager.class.php:319 -msgid "Special day successfully deleted" -msgstr "Jour spĆ©cial supprimĆ© correctement" - -#: ../../include/class/CalendarManager.class.php:392 -msgid "Skipped dates: " -msgstr "Dates omises : " - -#: ../../include/class/CalendarManager.class.php:430 -msgid "Success to upload iCalendar" -msgstr "iCalendar tĆ©lĆ©versĆ© correctement" - -#: ../../include/class/CalendarManager.class.php:431 -msgid "Fail to upload iCalendar" -msgstr "Erreur, iCalendar non tĆ©lĆ©versĆ©" - -#: ../../include/class/CalendarManager.class.php:488 -#: ../../include/class/CalendarManager.class.php:841 -#: ../../enterprise/include/class/NetworkConfigManager.class.php:1785 -#: ../../enterprise/include/class/NetworkConfigManager.class.php:1875 -#: ../../enterprise/include/class/NetworkConfigManager.class.php:1970 -#: ../../enterprise/include/class/NetworkConfigManager.class.php:2064 -#: ../../enterprise/include/class/DatabaseHA.class.php:796 -msgid "Failed to update" -msgstr "Erreur de mise Ć  jour" - -#: ../../include/class/CalendarManager.class.php:490 -#: ../../include/class/CalendarManager.class.php:843 -#: ../../include/functions_alerts.php:2747 -#: ../../include/functions_planned_downtimes.php:114 -#: ../../include/functions_planned_downtimes.php:832 -#: ../../enterprise/tools/ipam/ipam_network_location_config.php:50 -#: ../../enterprise/tools/ipam/ipam_action.php:214 -#: ../../enterprise/operation/agentes/transactional_map.php:134 -#: ../../enterprise/include/ajax/servers.ajax.php:197 -#: ../../enterprise/include/ajax/servers.ajax.php:330 -#: ../../enterprise/include/class/NetworkConfigManager.class.php:1787 -#: ../../enterprise/include/class/NetworkConfigManager.class.php:1877 -#: ../../enterprise/include/class/NetworkConfigManager.class.php:1972 -#: ../../enterprise/include/class/NetworkConfigManager.class.php:2066 -#: ../../enterprise/meta/advanced/cron_main.php:158 -#: ../../enterprise/meta/advanced/cron_main.php:202 -#: ../../enterprise/meta/advanced/cron_main.php:295 -#: ../../enterprise/meta/advanced/links.php:49 -#: ../../enterprise/godmode/setup/setup_metaconsole.php:125 -#: ../../enterprise/godmode/servers/credential_boxes_satellite.php:80 -#: ../../enterprise/godmode/servers/credential_boxes_satellite.php:111 -#: ../../enterprise/godmode/servers/manage_export.php:112 -#: ../../enterprise/godmode/servers/manage_export.php:119 -#: ../../enterprise/godmode/reporting/reporting_builder.template_editor.php:47 -#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:221 -#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:234 -#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:283 -#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:302 -#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:382 -#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:399 -#: ../../enterprise/godmode/alerts/alert_inventory_builder.php:76 -#: ../../godmode/setup/news.php:66 ../../godmode/setup/gis.php:47 -#: ../../godmode/setup/links.php:44 ../../godmode/modules/manage_nc_groups.php:84 -#: ../../godmode/snmpconsole/snmp_alert.php:302 -#: ../../godmode/snmpconsole/snmp_filters.php:164 -#: ../../godmode/agentes/configurar_agente.php:881 -#: ../../godmode/agentes/planned_downtime.editor.php:416 -#: ../../godmode/alerts/configure_alert_template.php:536 -#: ../../godmode/alerts/alert_commands.php:572 -#: ../../godmode/alerts/alert_list.php:178 -#: ../../godmode/users/configure_user.php:474 -#: ../../godmode/users/profile_list.php:269 -msgid "Successfully created" -msgstr "CrĆ©Ć© correctement" - -#: ../../include/class/CalendarManager.class.php:491 -#: ../../include/class/CalendarManager.class.php:844 -#: ../../enterprise/include/class/NetworkConfigManager.class.php:1788 -#: ../../enterprise/include/class/NetworkConfigManager.class.php:1878 -#: ../../enterprise/include/class/NetworkConfigManager.class.php:1973 -#: ../../enterprise/include/class/NetworkConfigManager.class.php:2067 -msgid "Failed to create" -msgstr "Erreur de crĆ©ation" - -#: ../../include/class/CalendarManager.class.php:507 -msgid "Failed saving calendar: name exists" -msgstr "Ɖchec de lā€™enregistrement du calendrier : le nom existe" - -#: ../../include/class/CalendarManager.class.php:516 -msgid "Failed saving calendar: " -msgstr "Ɖchec de lā€™enregistrement du calendrier : " - -#: ../../include/class/CalendarManager.class.php:523 -#: ../../include/class/CalendarManager.class.php:895 -#: ../../include/functions_reporting.php:4750 -#: ../../include/functions_reporting.php:4778 -#: ../../enterprise/include/class/NetworkConfigManager.class.php:1725 -#: ../../enterprise/include/class/NetworkConfigManager.class.php:1807 -#: ../../enterprise/include/class/NetworkConfigManager.class.php:1901 -#: ../../enterprise/include/class/NetworkConfigManager.class.php:1992 -#: ../../enterprise/include/class/NetworkConfigManager.class.php:2131 -#: ../../enterprise/include/class/NetworkConfigManager.class.php:2792 -#: ../../enterprise/include/lib/Metaconsole/Node.php:1514 +#: ../../include/functions_reporting.php:3216 #, php-format -msgid "Error: %s" -msgstr "Erreur : %s" +msgid "Modules under %s" +msgstr "Modules infĆ©rieurs Ć  %s" -#: ../../include/class/CalendarManager.class.php:783 +#: ../../include/functions_reporting.php:3221 #, php-format -msgid "Special days not found: %s" -msgstr "Jours spĆ©ciaux introuvables: %s" +msgid "Exception - Modules over %s" +msgstr "Exception - Modules supĆ©rieurs Ć  %s" -#: ../../include/class/CalendarManager.class.php:826 +#: ../../include/functions_reporting.php:3224 #, php-format -msgid "SpecialDay not found: %s" -msgstr "JourSpecial introuvable: %s" +msgid "Modules over %s" +msgstr "Modules supĆ©rieurs Ć  %s" -#: ../../include/class/CalendarManager.class.php:879 -msgid "Failed saving calendar: already exists" -msgstr "Ɖchec de lā€™enregistrement du calendrier : il existe dĆ©jĆ " - -#: ../../include/class/CalendarManager.class.php:888 -msgid "Failed saving special day: " -msgstr "Ɖchec de lā€™enregistrement dā€™une journĆ©e spĆ©ciale : " - -#: ../../include/class/CalendarManager.class.php:956 +#: ../../include/functions_reporting.php:3229 #, php-format -msgid "Same as %s" -msgstr "Identique Ć  %s" +msgid "Exception - Equal to %s" +msgstr "Exception - Ɖgal Ć  %s" -#: ../../include/class/CalendarManager.class.php:958 -msgid "Templates not being fired" -msgstr "ModĆØles non dĆ©clenchĆ©s" - -#: ../../include/class/NetworkMap.class.php:2317 -msgid "Failed to generate dotmap, please select different layout schema" -msgstr "" -"Ɖchec de la gĆ©nĆ©ration de dotmap, veuillez sĆ©lectionner un schĆ©ma de mise en " -"page diffĆ©rent" - -#: ../../include/class/NetworkMap.class.php:2452 -msgid "Failed to retrieve graph data." -msgstr "Ɖchec de la rĆ©cupĆ©ration des donnĆ©es du graphique." - -#: ../../include/class/NetworkMap.class.php:2663 -msgid "Holding Area" -msgstr "Zone d'attente" - -#: ../../include/class/NetworkMap.class.php:2790 +#: ../../include/functions_reporting.php:3232 #, php-format -msgid "Edit node %s" -msgstr "Modifier le nœud %s" +msgid "Equal to %s" +msgstr "Ɖgal Ć  %s" -#: ../../include/class/NetworkMap.class.php:2792 -msgid "Show details and options" -msgstr "Afficher les dĆ©tails et les options" - -#: ../../include/class/NetworkMap.class.php:2793 -msgid "Add a interface link" -msgstr "Ajouter lien d'interface" - -#: ../../include/class/NetworkMap.class.php:2794 -msgid "Set parent interface" -msgstr "Configurer parent d'interface" - -#: ../../include/class/NetworkMap.class.php:2795 -msgid "Set as children" -msgstr "Configurer comme enfants" - -#: ../../include/class/NetworkMap.class.php:2796 -msgid "Set parent" -msgstr "Configurer parent" - -#: ../../include/class/NetworkMap.class.php:2797 -#: ../../include/class/NetworkMap.class.php:2810 -msgid "Abort the action of set relationship" -msgstr "Abandonner l'action de configuration de relations" - -#: ../../include/class/NetworkMap.class.php:2799 -#: ../../include/class/NetworkMap.class.php:3155 -msgid "Add node" -msgstr "Ajouter un nœud" - -#: ../../include/class/NetworkMap.class.php:2800 -msgid "Set center" -msgstr "Configurer le centre" - -#: ../../include/class/NetworkMap.class.php:2802 -msgid "Refresh Holding area" -msgstr "Mettre Ć  jour la zone d'attente" - -#: ../../include/class/NetworkMap.class.php:2803 -#: ../../include/class/NetworkMap.class.php:2806 -msgid "Proceed" -msgstr "Continuer" - -#: ../../include/class/NetworkMap.class.php:2804 -msgid "" -"Resetting the map will delete all customizations you have done, including " -"manual relationships between elements, new items, etc." -msgstr "" -"Si vous rĆ©initialisez la carte, tous vos rĆ©glages personnalisĆ©s, y compris les " -"relations manuelles entre Ć©lĆ©ments, nouveaux Ć©lĆ©ments, etc. seront supprimĆ©s." - -#: ../../include/class/NetworkMap.class.php:2808 -msgid "Restart map" -msgstr "RĆ©initialiser la carte" - -#: ../../include/class/NetworkMap.class.php:2809 -msgid "Abort the interface relationship" -msgstr "Annuler la relation d'interface" - -#: ../../include/class/NetworkMap.class.php:2827 -#: ../../include/class/NetworkMap.class.php:2876 -msgid "Edit node" -msgstr "Modifier le nœud" - -#: ../../include/class/NetworkMap.class.php:2837 -#: ../../include/class/NetworkMap.class.php:2886 -msgid "Adresses" -msgstr "Adresses" - -#: ../../include/class/NetworkMap.class.php:2839 -#: ../../include/class/NetworkMap.class.php:2888 -msgid "OS type" -msgstr "Type de systĆØme dā€™exploitation" - -#: ../../include/class/NetworkMap.class.php:2846 -#: ../../include/class/NetworkMap.class.php:2847 -#: ../../include/class/NetworkMap.class.php:2895 -#: ../../include/class/NetworkMap.class.php:2896 -msgid "Node Details" -msgstr "DĆ©tails du nœud" - -#: ../../include/class/NetworkMap.class.php:2910 -#: ../../enterprise/tools/ipam/ipam_ajax.php:473 -msgid "MAC" -msgstr "MAC" - -#: ../../include/class/NetworkMap.class.php:2921 -#: ../../include/class/NetworkMap.class.php:2922 -msgid "Interface Information (SNMP)" -msgstr "Information de l'interface (SNMP)" - -#: ../../include/class/NetworkMap.class.php:2933 -msgid "Shape" -msgstr "Forme" - -#: ../../include/class/NetworkMap.class.php:2936 -msgid "Circle" -msgstr "Cercle" - -#: ../../include/class/NetworkMap.class.php:2937 -msgid "Square" -msgstr "CarrĆ©" - -#: ../../include/class/NetworkMap.class.php:2938 -msgid "Rhombus" -msgstr "Losange" - -#: ../../include/class/NetworkMap.class.php:2951 -msgid "name node" -msgstr "Nommer le nœud" - -#: ../../include/class/NetworkMap.class.php:2957 -#: ../../enterprise/include/functions_HA_cluster.php:496 -msgid "Update node" -msgstr "Mettre Ć  jour le nœud" - -#: ../../include/class/NetworkMap.class.php:2969 -#: ../../include/class/NetworkMap.class.php:3272 -msgid "name fictional node" -msgstr "Nom du nœud fictif" - -#: ../../include/class/NetworkMap.class.php:2974 -#: ../../include/class/NetworkMap.class.php:3277 -msgid "Networkmap to link" -msgstr "Lien Ć  la carte de rĆ©seau" - -#: ../../include/class/NetworkMap.class.php:2986 -msgid "Update fictional node" -msgstr "Mettre Ć  jour le nœud fictif" - -#: ../../include/class/NetworkMap.class.php:2996 -#: ../../include/class/NetworkMap.class.php:2997 -msgid "Node options" -msgstr "Options du nœud" - -#: ../../include/class/NetworkMap.class.php:3008 -#: ../../include/class/NetworkMap.class.php:3101 -msgid "Node source" -msgstr "Source du nœud" - -#: ../../include/class/NetworkMap.class.php:3009 -#: ../../include/class/NetworkMap.class.php:3102 -msgid "Interface source" -msgstr "Source de l'interface" - -#: ../../include/class/NetworkMap.class.php:3010 -#: ../../include/class/NetworkMap.class.php:3103 -msgid "Interface Target" -msgstr "Cible de l'interface" - -#: ../../include/class/NetworkMap.class.php:3012 -#: ../../include/class/NetworkMap.class.php:3104 -msgid "Node target" -msgstr "Cible du nœud" - -#: ../../include/class/NetworkMap.class.php:3013 -msgid "E." -msgstr "E." - -#: ../../include/class/NetworkMap.class.php:3075 -msgid "There are not relations" -msgstr "Aucune relation" - -#: ../../include/class/NetworkMap.class.php:3086 -#: ../../include/class/NetworkMap.class.php:3087 -#: ../../enterprise/meta/advanced/metasetup.relations.php:330 -msgid "Relations" -msgstr "Relations" - -#: ../../include/class/NetworkMap.class.php:3143 -msgid "Add interface link" -msgstr "Ajouter lien d'interface" - -#: ../../include/class/NetworkMap.class.php:3174 -#: ../../include/class/NetworkMap.class.php:3196 -#: ../../include/class/NetworkMap.class.php:3197 -#: ../../include/class/NetworkMap.class.php:3247 -#: ../../include/class/NetworkMap.class.php:3259 -#: ../../include/class/NetworkMap.class.php:3300 -msgid "Add agent node" -msgstr "Ajouter nœud d'agent" - -#: ../../include/class/NetworkMap.class.php:3258 -msgid "Add agent node (filter by group)" -msgstr "Ajouter nœud d'agent (filtrer par groupe)" - -#: ../../include/class/NetworkMap.class.php:3289 -msgid "Add fictional node" -msgstr "Ajouter nœud fictif" - -#: ../../include/class/NetworkMap.class.php:3299 -msgid "Add fictional point" -msgstr "Ajouter un point fictif" - -#: ../../include/class/NetworkMap.class.php:3513 -msgid "Open Minimap" -msgstr "Ouvrir minicarte" - -#: ../../include/class/NetworkMap.class.php:3519 -msgid "Hide Labels" -msgstr "Cacher les Ć©tiquettes" - -#: ../../include/class/TreeGroupEdition.class.php:164 -#: ../../enterprise/meta/event/custom_events.php:249 -#: ../../enterprise/meta/monitoring/custom_fields_view.php:1151 -#: ../../godmode/events/custom_events.php:204 -#: ../../godmode/agentes/status_monitor_custom_fields.php:241 -msgid "Confirm" -msgstr "Confirmer " - -#: ../../include/functions_network_components.php:590 -#: ../../include/functions_alerts.php:1124 -#: ../../enterprise/include/functions_local_components.php:354 -msgid "Copy of" -msgstr "Copie de" - -#: ../../include/lib/Group.php:299 +#: ../../include/functions_reporting.php:3237 #, php-format -msgid "Failed to save group %s" -msgstr "Ɖchec de l'enregistrement du groupe %s" +msgid "Exception - Not equal to %s" +msgstr "Exception - Pas Ć©gal Ć  %s" -#: ../../include/lib/View.php:69 +#: ../../include/functions_reporting.php:3240 #, php-format -msgid "View %s not found" -msgstr "Affichage %s introuvable" +msgid "Not equal to %s" +msgstr "Pas Ć©gal Ć  %s" -#: ../../include/lib/Agent.php:349 ../../include/lib/Module.php:1170 -#: ../../include/lib/Entity.php:303 ../../enterprise/include/lib/Service.php:397 -#: ../../enterprise/include/lib/Service.php:736 -#: ../../enterprise/include/lib/Service.php:917 -#: ../../enterprise/include/lib/Metaconsole/Node.php:1414 -#: ../../enterprise/include/lib/Metaconsole/Synchronizer.php:402 -#: ../../enterprise/include/lib/ServiceElement.php:390 -#: ../../enterprise/include/lib/ServiceElement.php:921 -#: ../../enterprise/include/lib/ServiceElement.php:963 -#: ../../enterprise/include/lib/ServiceElement.php:1005 -#: ../../enterprise/include/lib/ServiceElement.php:1111 -#: ../../enterprise/include/lib/ServiceElement.php:1153 -#, php-format -msgid "Cannot connect to node %d" -msgstr "Connexion avec le node %d Ć©chouĆ©e" +#: ../../include/functions_reporting.php:3244 +msgid "Exception - Modules at normal status" +msgstr "Exception - Modules en Ć©tat normal" -#: ../../include/lib/Module.php:256 -msgid " error: Module has no agent assigned." -msgstr "erreurĀ : aucun agent n'est affectĆ© au module." - -#: ../../include/lib/Module.php:803 ../../enterprise/include/lib/Policy.php:1196 -#: ../../enterprise/include/lib/Policy/Module.php:201 -#, php-format -msgid "Module already exists: \"%s\"" -msgstr "Le module existe dĆ©jĆ  : Ā« %s Ā»" - -#: ../../include/lib/Module.php:1037 -msgid "Module name empty." -msgstr "Nom du module vide." - -#: ../../include/lib/Module.php:1043 -msgid "Invalid characters in module name" -msgstr "CaractĆØres invalides dans le nom du module" - -#: ../../include/lib/Module.php:1049 -msgid "Module already exists please select another name or agent." -msgstr "Le module existe dĆ©jĆ , veuillez sĆ©lectionner un autre nom ou agent." - -#: ../../include/lib/Module.php:1055 -msgid "Insufficent permissions to perform this action" -msgstr "Autorisations insuffisantes pour effectuer cette action" - -#: ../../include/lib/Module.php:1062 -#, php-format -msgid "Error while processing: %s" -msgstr "Erreur lors du traitementĀ : %s" - -#: ../../include/lib/Dashboard/Manager.php:599 -#, php-format -msgid "Copy of %s" -msgstr "Copie de %s" - -#: ../../include/lib/Dashboard/Manager.php:988 -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:1461 -msgid "Icon image dashboard" -msgstr "Tableau de bord des images d'icĆ“nes" - -#: ../../include/lib/Dashboard/Widgets/sla_percent.php:174 -#: ../../include/lib/Dashboard/Widgets/sla_percent.php:482 -msgid "SLA percentage" -msgstr "Pourcentage SLA" - -#: ../../include/lib/Dashboard/Widgets/sla_percent.php:344 -#: ../../include/lib/Dashboard/Widgets/module_value.php:325 -#: ../../include/lib/Dashboard/Widgets/module_icon.php:411 -msgid "Text size of value in px" -msgstr "Taille du texte de la valeur en px" - -#: ../../include/lib/Dashboard/Widgets/sla_percent.php:356 -#: ../../include/lib/Dashboard/Widgets/module_table_value.php:301 -#: ../../include/lib/Dashboard/Widgets/module_value.php:337 -#: ../../include/lib/Dashboard/Widgets/module_status.php:401 -#: ../../include/lib/Dashboard/Widgets/graph_module_histogram.php:335 -#: ../../include/lib/Dashboard/Widgets/module_icon.php:423 -msgid "Text size of label in px" -msgstr "Taille du texte de l'Ć©tiquette en px" - -#: ../../include/lib/Dashboard/Widgets/sla_percent.php:413 -#: ../../include/lib/Dashboard/Widgets/sla_percent.php:424 -#: ../../include/lib/Dashboard/Widgets/agent_module.php:665 -#: ../../include/lib/Dashboard/Widgets/events_list.php:518 -msgid "You don't have access" -msgstr "Vous n'avez pas accĆØs." - -#: ../../include/lib/Dashboard/Widgets/module_table_value.php:175 -msgid "Show module value in a table" -msgstr "Afficher la valeur d'un module dans le tableau" - -#: ../../include/lib/Dashboard/Widgets/module_table_value.php:312 -msgid "Carriage Return" -msgstr "Retour chariot" - -#: ../../include/lib/Dashboard/Widgets/module_table_value.php:313 -msgid "Vertical Bar" -msgstr "Barre verticale" - -#: ../../include/lib/Dashboard/Widgets/module_table_value.php:314 -msgid "Semicolon" -msgstr "Point-virgule" - -#: ../../include/lib/Dashboard/Widgets/module_table_value.php:315 -msgid "Colon" -msgstr "Deux-points" - -#: ../../include/lib/Dashboard/Widgets/module_table_value.php:316 -msgid "Commas" -msgstr "Virgules" - -#: ../../include/lib/Dashboard/Widgets/module_table_value.php:317 -msgid "Blank" -msgstr "Vide" - -#: ../../include/lib/Dashboard/Widgets/module_table_value.php:321 -msgid "Data separator" -msgstr "SĆ©parateur de donnĆ©es" - -#: ../../include/lib/Dashboard/Widgets/module_table_value.php:397 -msgid "Module in a table" -msgstr "Module dans un tableau" - -#: ../../include/lib/Dashboard/Widgets/module_value.php:173 -#: ../../include/lib/Dashboard/Widgets/module_value.php:433 -msgid "Module value" -msgstr "Valeur du module" - -#: ../../include/lib/Dashboard/Widgets/top_n_events_by_group.php:163 -#: ../../include/lib/Dashboard/Widgets/top_n_events_by_group.php:506 -msgid "Top N events by agent" -msgstr "Top N des Ć©vĆ©nements par agent" - -#: ../../include/lib/Dashboard/Widgets/top_n_events_by_group.php:258 -#: ../../include/lib/Dashboard/Widgets/top_n_events_by_module.php:258 -msgid "Amount to show" -msgstr "Montant Ć  montrer" - -#: ../../include/lib/Dashboard/Widgets/top_n_events_by_group.php:317 -#: ../../include/lib/Dashboard/Widgets/top_n_events_by_module.php:317 -#: ../../include/rest-api/models/VisualConsole/Item.php:1957 -#: ../../godmode/setup/gis_step_2.php:350 -msgid "Bottom" -msgstr "En bas" - -#: ../../include/lib/Dashboard/Widgets/top_n_events_by_group.php:318 -#: ../../include/lib/Dashboard/Widgets/top_n_events_by_module.php:318 -msgid "No legend" -msgstr "Aucune lĆ©gende" - -#: ../../include/lib/Dashboard/Widgets/top_n_events_by_group.php:322 -#: ../../include/lib/Dashboard/Widgets/top_n_events_by_module.php:322 -msgid "Legend Position" -msgstr "Position de la lĆ©gende" - -#: ../../include/lib/Dashboard/Widgets/top_n_events_by_group.php:375 -#: ../../include/lib/Dashboard/Widgets/top_n_events_by_module.php:373 -msgid "Please select one or more groups." -msgstr "Veuillez sĆ©lectionner un ou plusieurs groupes." - -#: ../../include/lib/Dashboard/Widgets/top_n_events_by_group.php:423 -#: ../../include/lib/Dashboard/Widgets/top_n_events_by_module.php:427 -msgid "There is not data to show." -msgstr "Aucune donnĆ©e Ć  afficher" - -#: ../../include/lib/Dashboard/Widgets/top_n_events_by_group.php:483 -#: ../../include/lib/Dashboard/Widgets/top_n_events_by_module.php:518 -#: ../../include/functions_graph.php:2649 ../../include/functions_graph.php:2785 -#: ../../include/functions_graph.php:2883 ../../include/functions_graph.php:3344 -#: ../../include/functions_graph.php:3918 -#: ../../include/functions_reporting.php:1802 -#: ../../include/functions_reporting.php:2051 -#: ../../include/functions_reporting.php:2077 -#: ../../include/functions_reporting.php:2104 -#: ../../include/functions_reporting.php:2132 -#: ../../include/functions_reporting.php:3486 -#: ../../include/functions_reporting.php:3860 -#: ../../include/functions_reporting.php:3888 -#: ../../include/functions_reporting.php:3916 -#: ../../include/functions_reporting.php:4889 -#: ../../include/functions_reporting.php:10495 -#: ../../include/functions_reporting.php:10523 -#: ../../include/functions_reporting.php:10551 -msgid "other" -msgstr "autre" - -#: ../../include/lib/Dashboard/Widgets/top_n_events_by_module.php:163 -#: ../../include/lib/Dashboard/Widgets/top_n_events_by_module.php:541 -msgid "Top N events by module" -msgstr "Top N des Ć©vĆ©nements par module" - -#: ../../include/lib/Dashboard/Widgets/maps_status.php:158 -#: ../../include/lib/Dashboard/Widgets/maps_status.php:388 -msgid "General visual maps report" -msgstr "Rapport gĆ©nĆ©ral des cartes visuelles" - -#: ../../include/lib/Dashboard/Widgets/maps_status.php:263 -msgid "Maps" -msgstr "Cartes" - -#: ../../include/lib/Dashboard/Widgets/maps_status.php:360 -#: ../../godmode/massive/massive_edit_agents.php:981 -msgid "Bad" -msgstr "Mauvais" - -#: ../../include/lib/Dashboard/Widgets/os_quick_report.php:173 -#: ../../include/lib/Dashboard/Widgets/os_quick_report.php:335 -msgid "OS quick report" -msgstr "Rapport rapide sur le systĆØme dā€™exploitation" - -#: ../../include/lib/Dashboard/Widgets/os_quick_report.php:284 -#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:118 -msgid "OS name" -msgstr "Nom du systĆØme d'exploitation" - -#: ../../include/lib/Dashboard/Widgets/os_quick_report.php:285 -msgid "total agents" -msgstr "total des agents" - -#: ../../include/lib/Dashboard/Widgets/os_quick_report.php:286 -msgid "normal agents" -msgstr "agents normaux" - -#: ../../include/lib/Dashboard/Widgets/os_quick_report.php:287 -msgid "critical agents" -msgstr "agents critiques" - -#: ../../include/lib/Dashboard/Widgets/os_quick_report.php:288 -msgid "unknown agents" -msgstr "agents inconnus" - -#: ../../include/lib/Dashboard/Widgets/url.php:158 -#: ../../include/lib/Dashboard/Widgets/url.php:286 -msgid "URL content" -msgstr "Contenu de l'URL" - -#: ../../include/lib/Dashboard/Widgets/url.php:216 -#: ../../include/functions_reporting.php:6792 -#: ../../enterprise/meta/include/functions_wizard_meta.php:645 -#: ../../enterprise/meta/monitoring/wizard/wizard.php:151 -#: ../../godmode/tag/edit_tag.php:227 -msgid "Url" -msgstr "URL" - -#: ../../include/lib/Dashboard/Widgets/url.php:263 -msgid "Please, configure this widget before use" -msgstr "Veuillez configurer ce widget avant de l'utiliser." - -#: ../../include/lib/Dashboard/Widgets/wux_transaction.php:169 -#: ../../include/lib/Dashboard/Widgets/wux_transaction.php:418 -msgid "Agent WUX transaction" -msgstr "Transaction dā€™agent WUX" - -#: ../../include/lib/Dashboard/Widgets/wux_transaction.php:259 -#: ../../include/lib/Dashboard/Widgets/wux_transaction_stats.php:270 -msgid "Wux transaction" -msgstr "Transaction WUX" - -#: ../../include/lib/Dashboard/Widgets/wux_transaction.php:320 -#: ../../enterprise/operation/agentes/wux_console_view.php:75 -msgid "No wux transaction selected." -msgstr "Aucune transaction WUX sĆ©lectionnĆ©e" - -#: ../../include/lib/Dashboard/Widgets/wux_transaction.php:370 -#: ../../include/lib/Dashboard/Widgets/wux_transaction.php:375 -msgid "Global status" -msgstr "Ɖtat gĆ©nĆ©ral" - -#: ../../include/lib/Dashboard/Widgets/wux_transaction.php:398 -#: ../../enterprise/operation/agentes/wux_console_view.php:149 -msgid "Phase modules not found" -msgstr "Modules de phases introuvables" - -#: ../../include/lib/Dashboard/Widgets/reports.php:164 -#: ../../include/lib/Dashboard/Widgets/reports.php:441 -msgid "Custom report" -msgstr "Rapport personnalisĆ©" - -#: ../../include/lib/Dashboard/Widgets/reports.php:274 -#: ../../include/lib/Dashboard/Widgets/maps_made_by_user.php:227 -#: ../../include/lib/Dashboard/Widgets/maps_made_by_user.php:311 -#: ../../include/lib/Dashboard/Widget.php:454 -#, php-format -msgid "Failed to connect to node %d" -msgstr "Ɖchec de la connexion au nœud %d" - -#: ../../include/lib/Dashboard/Widgets/custom_graph.php:168 -#: ../../include/lib/Dashboard/Widgets/custom_graph.php:521 -msgid "Defined custom graph" -msgstr "Graphique personnalisĆ© dĆ©fini" - -#: ../../include/lib/Dashboard/Widgets/custom_graph.php:294 -msgid "This graph has been deleted." -msgstr "Ce graphique a Ć©tĆ© supprimĆ©." - -#: ../../include/lib/Dashboard/Widgets/custom_graph.php:339 -#: ../../include/lib/Dashboard/Widgets/single_graph.php:295 -#: ../../include/rest-api/models/VisualConsole/Items/ModuleGraph.php:672 -msgid "Show legend" -msgstr "Afficher la lĆ©gende" - -#: ../../include/lib/Dashboard/Widgets/monitor_health.php:158 -#: ../../include/lib/Dashboard/Widgets/monitor_health.php:337 -msgid "Global health info" -msgstr "Information gĆ©nĆ©rale de santĆ©" - -#: ../../include/lib/Dashboard/Widgets/system_group_status.php:158 -#: ../../include/lib/Dashboard/Widgets/system_group_status.php:622 -msgid "Groups status" -msgstr "Ɖtats des groupes" - -#: ../../include/lib/Dashboard/Widgets/system_group_status.php:314 -msgid "Alert Fired" -msgstr "Alerte dĆ©clenchĆ©e" - -#: ../../include/lib/Dashboard/Widgets/system_group_status.php:522 -msgid "Modules in normal status" +#: ../../include/functions_reporting.php:3245 +msgid "Modules at normal status" msgstr "Modules en Ć©tat normal" -#: ../../include/lib/Dashboard/Widgets/system_group_status.php:538 -msgid "Modules in warning status" -msgstr "Modules en Ć©tat d'alerte" +#: ../../include/functions_reporting.php:3249 +msgid "Exception - Modules at critical or warning status" +msgstr "Exception - Modules en Ć©tat critique ou d'alerte" -#: ../../include/lib/Dashboard/Widgets/system_group_status.php:555 -msgid "Modules in critical status" -msgstr "Modules en Ć©tat critique" +#: ../../include/functions_reporting.php:3250 +msgid "Modules at critical or warning status" +msgstr "Modules en Ć©tat critique ou d'alerte" -#: ../../include/lib/Dashboard/Widgets/system_group_status.php:601 -msgid "No modules in selected groups" -msgstr "Aucun module dans les groupes sĆ©lectionnĆ©s" +#: ../../include/functions_reporting.php:3530 +msgid "There are no Modules under those conditions." +msgstr "Aucun module sous ces conditions" -#: ../../include/lib/Dashboard/Widgets/single_graph.php:170 -#: ../../include/lib/Dashboard/Widgets/single_graph.php:394 -msgid "Agent module graph" -msgstr "Graphique du module d'agent" +#: ../../include/functions_reporting.php:3534 +#, php-format +msgid "There are no Modules over or equal to %s." +msgstr "Aucun module supĆ©rieur ou Ć©gal Ć  %s" -#: ../../include/lib/Dashboard/Widgets/tactical.php:262 -msgid "Status and Monitor checks" -msgstr "VĆ©rifications dā€™Ć©tat et du moniteur" +#: ../../include/functions_reporting.php:3538 +#, php-format +msgid "There are no Modules less or equal to %s." +msgstr "Aucun module infĆ©rieur ou Ć©gal Ć  %s" -#: ../../include/lib/Dashboard/Widgets/tactical.php:274 -#: ../../include/functions_reporting.php:13949 +#: ../../include/functions_reporting.php:3542 +#, php-format +msgid "There are no Modules less %s." +msgstr "Aucun module infĆ©rieur Ć  %s" + +#: ../../include/functions_reporting.php:3546 +#, php-format +msgid "There are no Modules over %s." +msgstr "Aucun module supĆ©rieur Ć  %s" + +#: ../../include/functions_reporting.php:3550 +#, php-format +msgid "There are no Modules equal to %s" +msgstr "Aucun module Ć©gal Ć  %s" + +#: ../../include/functions_reporting.php:3554 +#, php-format +msgid "There are no Modules not equal to %s" +msgstr "Aucun module pas Ć©gal Ć  %s" + +#: ../../include/functions_reporting.php:3558 +msgid "There are no Modules normal status" +msgstr "Aucun module en Ć©tat normal" + +#: ../../include/functions_reporting.php:3562 +msgid "There are no Modules at critial or warning status" +msgstr "Aucun module en Ć©tat critique ou d'alerte" + +#: ../../include/functions_reporting.php:3913 +msgid "Event Report Agent" +msgstr "Agent de rapport d'Ć©vĆ©nement" + +#: ../../include/functions_reporting.php:4264 +msgid "Database Serialized" +msgstr "Base de donnĆ©es sĆ©rialisĆ©e" + +#: ../../include/functions_reporting.php:4460 +msgid "Last Value" +msgstr "DerniĆØre valeur" + +#: ../../include/functions_reporting.php:4784 +msgid "Network interfaces report" +msgstr "Rapport des interfaces du rĆ©seau" + +#: ../../include/functions_reporting.php:4878 +msgid "Custom render report" +msgstr "Rapport de rendu personnalisĆ©" + +#: ../../include/functions_reporting.php:4918 +#: ../../include/functions_reporting.php:4944 +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:5175 +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:5196 +msgid "bytes/s" +msgstr "octets/s" + +#: ../../include/functions_reporting.php:5403 +#: ../../include/functions_reporting.php:5420 +#: ../../include/functions_reporting.php:5437 +msgid "Not triggered" +msgstr "Non dĆ©clenchĆ©" + +#: ../../include/functions_reporting.php:5863 +msgid "SQL Graph Vertical Bars" +msgstr "Barres verticales du graphique SQL" + +#: ../../include/functions_reporting.php:5867 +msgid "SQL Graph Horizontal Bars" +msgstr "Barres horizontales du graphique SQL" + +#: ../../include/functions_reporting.php:5871 +msgid "SQL Graph Pie" +msgstr "Diagramme circulaire SQL" + +#: ../../include/functions_reporting.php:6098 +msgid "Netflow Area" +msgstr "Zone Netflow" + +#: ../../include/functions_reporting.php:6102 +msgid "Netflow Summary" +msgstr "RĆ©sumĆ© Netflow" + +#: ../../include/functions_reporting.php:6106 +msgid "Netflow Data" +msgstr "DonnĆ©es Netflow" + +#: ../../include/functions_reporting.php:6114 +msgid "Unknown report" +msgstr "Rapport inconnu" + +#: ../../include/functions_reporting.php:6208 +msgid "Prediction Date" +msgstr "Date de prĆ©diction" + +#: ../../include/functions_reporting.php:7113 +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 "" +"RequĆŖte illĆ©gale : pour des raisons de sĆ©curitĆ©, certains tokens ou mots ne " +"peuvent pas ĆŖtre employĆ©s : *, supprimer, dĆ©poser, altĆ©rer, modifier, mot de " +"passe, passe, introduire ou mettre Ć  jour." + +#: ../../include/functions_reporting.php:8527 +#: ../../include/functions_reporting.php:9245 +msgid "No Address" +msgstr "Aucune adresse" + +#: ../../include/functions_reporting.php:9544 +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:9562 +msgid "The monitor type is not numeric" +msgstr "Le type de moniteur n'est pas numĆ©rique." + +#: ../../include/functions_reporting.php:9988 +msgid "Maximum" +msgstr "Maximum" + +#: ../../include/functions_reporting.php:10066 +msgid "Automatic combined graph" +msgstr "Graphique automatique combinĆ©" + +#: ../../include/functions_reporting.php:11420 +#: ../../include/functions_reporting.php:11444 +msgid "Server health" +msgstr "Ɖtat du serveur" + +#: ../../include/functions_reporting.php:11420 +#, php-format +msgid "%d Downed servers" +msgstr "%d serveurs hors service" + +#: ../../include/functions_reporting.php:11425 +#: ../../include/functions_reporting.php:11448 +msgid "Monitor health" +msgstr "Ɖtat du moniteur" + +#: ../../include/functions_reporting.php:11425 +#, php-format +msgid "%d Not Normal monitors" +msgstr "%d Moniteurs anormaux" + +#: ../../include/functions_reporting.php:11425 +#: ../../include/functions_reporting.php:11449 +msgid "of monitors up" +msgstr "de moniteurs actifs" + +#: ../../include/functions_reporting.php:11430 +#: ../../include/functions_reporting.php:11452 +msgid "Module sanity" +msgstr "Ɖtat des modules" + +#: ../../include/functions_reporting.php:11430 +#, php-format +msgid "%d Not inited monitors" +msgstr "%d moniteurs non initialisĆ©s" + +#: ../../include/functions_reporting.php:11430 +#: ../../include/functions_reporting.php:11453 +msgid "of total modules inited" +msgstr "du total de modules initialisĆ©s" + +#: ../../include/functions_reporting.php:11435 +#: ../../include/functions_reporting.php:12547 +#: ../../include/functions_reporting.php:12557 +#, php-format +msgid "%d Fired alerts" +msgstr "%d alertes dĆ©clenchĆ©es" + +#: ../../include/functions_reporting.php:11435 +#: ../../include/functions_reporting.php:11457 +msgid "of defined alerts not fired" +msgstr "d'alertes dĆ©finies non dĆ©clenchĆ©es" + +#: ../../include/functions_reporting.php:11529 +msgid "Defined and fired alerts" +msgstr "Alertes dĆ©finies et dĆ©clenchĆ©es" + +#: ../../include/functions_reporting.php:11708 +msgid "Defined users" +msgstr "Utilisateurs dĆ©finis" + +#: ../../include/functions_reporting.php:12404 +msgid "Agent without data" +msgstr "Agent sans donnĆ©es" + +#: ../../include/functions_reporting.php:12543 +#, php-format +msgid "%d Normal modules" +msgstr "%d modules normaux" + +#: ../../include/functions_reporting.php:12544 +#, php-format +msgid "%d Critical modules" +msgstr "%d modules critiques" + +#: ../../include/functions_reporting.php:12545 +#, php-format +msgid "%d Warning modules" +msgstr "%d modules en Ć©tat d'alerte" + +#: ../../include/functions_reporting.php:12546 +#, php-format +msgid "%d Unknown modules" +msgstr "%d modules inconnus" + +#: ../../include/functions_reporting.php:12551 +#, php-format +msgid "%d Total agents" +msgstr "%d agents au total" + +#: ../../include/functions_reporting.php:12552 +#, php-format +msgid "%d Normal agents" +msgstr "%d agents normaux" + +#: ../../include/functions_reporting.php:12553 +#, php-format +msgid "%d Critical agents" +msgstr "%d agents critiques" + +#: ../../include/functions_reporting.php:12554 +#, php-format +msgid "%d Warning agents" +msgstr "%d agents en Ć©tat d'alerte" + +#: ../../include/functions_reporting.php:12555 +#, php-format +msgid "%d Unknown agents" +msgstr "%d agents inconnus" + +#: ../../include/functions_reporting.php:12556 +#, php-format +msgid "%d not init agents" +msgstr "%d agents non initialisĆ©s" + +#: ../../include/functions_reporting.php:13984 +msgid "Total running modules" +msgstr "Nombre total de modules en fonctionnement" + +#: ../../include/functions_reporting.php:13987 +#: ../../include/functions_reporting.php:14002 +#: ../../include/functions_reporting.php:14014 +#: ../../include/functions_reporting.php:14032 +#: ../../include/functions_reporting.php:14044 +#: ../../include/functions_reporting.php:14056 +#: ../../include/functions_reporting.php:14068 +msgid "Ratio" +msgstr "Ratio" + +#: ../../include/functions_reporting.php:13987 +#: ../../include/functions_reporting.php:14002 +#: ../../include/functions_reporting.php:14014 +#: ../../include/functions_reporting.php:14032 +#: ../../include/functions_reporting.php:14044 +#: ../../include/functions_reporting.php:14056 +#: ../../include/functions_reporting.php:14068 +msgid "Modules by second" +msgstr "Modules par seconde" + +#: ../../include/functions_reporting.php:13999 +msgid "Local modules" +msgstr "Modules locaux" + +#: ../../include/functions_reporting.php:14009 +msgid "Network modules" +msgstr "Modules de rĆ©seau" + +#: ../../include/functions_reporting.php:14028 +msgid "Plugin modules" +msgstr "Modules plugin" + +#: ../../include/functions_reporting.php:14040 +msgid "Prediction modules" +msgstr "Modules de prĆ©diction" + +#: ../../include/functions_reporting.php:14052 +msgid "WMI modules" +msgstr "Modules WMI" + +#: ../../include/functions_reporting.php:14064 +msgid "Web modules" +msgstr "Modules Web" + +#: ../../include/functions_reporting.php:14102 +#: ../../include/lib/Dashboard/Widgets/tactical.php:287 msgid "Server performance" msgstr "Performance du serveur" -#: ../../include/lib/Dashboard/Widgets/tactical.php:286 -#: ../../include/functions_netflow.php:1183 -#: ../../include/functions_reporting_html.php:4579 -#: ../../include/functions_reporting_html.php:4849 -#: ../../include/functions_reporting_html.php:4986 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:467 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3083 -#: ../../godmode/reporting/reporting_builder.item_editor.php:3150 -#: ../../godmode/wizards/DiscoveryTaskList.class.php:1417 -msgid "Summary" -msgstr "RĆ©sumĆ©" +#: ../../include/functions_reporting.php:14221 +msgid "Weekly:" +msgstr "Hebdomadaire :" -#: ../../include/lib/Dashboard/Widgets/groups_status.php:158 -#: ../../include/lib/Dashboard/Widgets/groups_status.php:481 -msgid "General group status" -msgstr "Ɖtat gĆ©nĆ©ral du groupe" +#: ../../include/functions_reporting.php:14263 +msgid "Monthly:" +msgstr "Mensuel :" -#: ../../include/lib/Dashboard/Widgets/groups_status.php:435 -msgid "Not agents in this group" -msgstr "Aucun agent dans ce groupe" +#: ../../include/functions_reporting.php:14264 +msgid "From day" +msgstr "ƀ partir du jour" -#: ../../include/lib/Dashboard/Widgets/example.php:158 -#: ../../include/lib/Dashboard/Widgets/example.php:277 -#, php-format -msgid "Welcome message to %s" -msgstr "Message de bienvenue Ć  %s" +#: ../../include/functions_reporting.php:14265 +msgid "To day" +msgstr "Jusqu'au jour" -#: ../../include/lib/Dashboard/Widgets/example.php:249 -msgid "This is an example of a dashboard widget. A widget may contain elements" -msgstr "" -"Ceci est un exemple de widget de panneau de configuration. Un widget peut " -"contenir des Ć©lĆ©ments." +#: ../../include/functions_reporting.php:14799 +msgid "Module Histogram Graph" +msgstr "Graphique de registres du module" -#: ../../include/lib/Dashboard/Widgets/example.php:250 -msgid "" -"To add more elements, click on \"Add widgets\" on the top of this " -"page." -msgstr "" -"Pour ajouter d'autres Ć©lĆ©ments, cliquez sur Ā« Ajouter les widgets Ā» " -"en haut de cette page." +#: ../../include/functions_reporting.php:15191 +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/lib/Dashboard/Widgets/example.php:251 -#: ../../include/lib/Dashboard/Widgets/example.php:253 -msgid "" -"To delete this message, click on the delete button on top right corner of this " -"element." -msgstr "" -"Pour effacer ce message, cliquez sur le bouton Supprimer en haut Ć  droite de " -"cet Ć©lĆ©ment." - -#: ../../include/lib/Dashboard/Widgets/example.php:252 -msgid "" -"To do so, just click on the title and drag and drop it to the desired place." -msgstr "" -"Pour ce faire, il suffit de cliquer sur le titre et de le glisser Ć  l'endroit " -"dĆ©sirĆ©." - -#: ../../include/lib/Dashboard/Widgets/example.php:254 -#, php-format -msgid "Thanks for using %s." -msgstr "Merci d'utiliser %s." - -#: ../../include/lib/Dashboard/Widgets/post.php:158 -#: ../../include/lib/Dashboard/Widgets/post.php:276 -msgid "Panel with a message" -msgstr "Panneau avec un message" - -#: ../../include/lib/Dashboard/Widgets/clock.php:216 -msgid "Analogic" -msgstr "Analogique" - -#: ../../include/lib/Dashboard/Widgets/clock.php:217 -msgid "Digital" -msgstr "NumĆ©rique" - -#: ../../include/lib/Dashboard/Widgets/module_status.php:413 -#: ../../include/lib/Dashboard/Widgets/module_icon.php:435 -msgid "Size of icon" -msgstr "Taille de l'icĆ“ne" - -#: ../../include/lib/Dashboard/Widgets/graph_module_histogram.php:175 -#: ../../include/lib/Dashboard/Widgets/graph_module_histogram.php:431 -msgid "Module histogram" -msgstr "Histogramme du module" - -#: ../../include/lib/Dashboard/Widgets/alerts_fired.php:162 -#: ../../include/lib/Dashboard/Widgets/alerts_fired.php:360 -msgid "Triggered alerts report" -msgstr "Rapport d'alertes dĆ©clenchĆ©es" - -#: ../../include/lib/Dashboard/Widgets/alerts_fired.php:333 -msgid "Not alert fired" -msgstr "Pas d'alerte dĆ©clenchĆ©e" - -#: ../../include/lib/Dashboard/Widgets/alerts_fired.php:342 -#: ../../include/lib/Dashboard/Widgets/events_list.php:511 -msgid "You must select some group" -msgstr "SĆ©lectionnez un groupe" - -#: ../../include/lib/Dashboard/Widgets/agent_module.php:173 -#: ../../include/lib/Dashboard/Widgets/agent_module.php:840 -msgid "Agent/Module View" -msgstr "Vue Agent/Module" - -#: ../../include/lib/Dashboard/Widgets/agent_module.php:250 -#: ../../include/lib/Dashboard/Widgets/tree_view.php:439 -msgid "Filter modules" -msgstr "Filtrer les modules" - -#: ../../include/lib/Dashboard/Widgets/agent_module.php:255 -#: ../../extensions/agents_modules.php:396 -#: ../../godmode/reporting/reporting_builder.item_editor.php:1857 -msgid "Show module status" -msgstr "Afficher lā€™Ć©tat du module" - -#: ../../include/lib/Dashboard/Widgets/agent_module.php:256 -#: ../../extensions/agents_modules.php:397 -#: ../../godmode/reporting/reporting_builder.item_editor.php:1858 -msgid "Show module data" -msgstr "Afficher les donnĆ©es du module" - -#: ../../include/lib/Dashboard/Widgets/agent_module.php:265 -#: ../../extensions/agents_modules.php:400 -#: ../../godmode/reporting/reporting_builder.item_editor.php:1853 -msgid "Information to be shown" -msgstr "Informations Ć  afficher" - -#: ../../include/lib/Dashboard/Widgets/agent_module.php:536 -#: ../../include/functions_reporting_html.php:2007 -#: ../../enterprise/include/functions_reporting_pdf.php:946 -#, php-format -msgid "%s in %s : NORMAL" -msgstr "%s en %s : NORMAL" - -#: ../../include/lib/Dashboard/Widgets/agent_module.php:552 -#: ../../include/functions_reporting_html.php:1919 -#: ../../enterprise/include/functions_reporting_pdf.php:963 -#, php-format -msgid "%s in %s : CRITICAL" -msgstr "%s en %s : CRITIQUE" - -#: ../../include/lib/Dashboard/Widgets/agent_module.php:568 -#: ../../include/functions_reporting_html.php:1936 -#: ../../enterprise/include/functions_reporting_pdf.php:980 -#, php-format -msgid "%s in %s : WARNING" -msgstr "%s en %s : ALERTE" - -#: ../../include/lib/Dashboard/Widgets/agent_module.php:584 -#: ../../include/functions_reporting_html.php:1953 -#: ../../enterprise/include/functions_reporting_pdf.php:997 -#, php-format -msgid "%s in %s : UNKNOWN" -msgstr "%s in %s : INCONNU" - -#: ../../include/lib/Dashboard/Widgets/agent_module.php:600 -#: ../../include/functions_reporting_html.php:1989 -#: ../../enterprise/include/functions_reporting_pdf.php:1014 -#, php-format -msgid "%s in %s : Not initialize" -msgstr "%s in %s : Non initialisĆ©es" - -#: ../../include/lib/Dashboard/Widgets/agent_module.php:617 -#: ../../include/functions_reporting_html.php:1972 -#: ../../enterprise/include/functions_reporting_pdf.php:1031 -#, php-format -msgid "%s in %s : ALERTS FIRED" -msgstr "%s in %s : ALERTES DƉCLENCHƉES" - -#: ../../include/lib/Dashboard/Widgets/agent_module.php:640 -#: ../../include/lib/Dashboard/Widget.php:469 -msgid "Please configure this widget before usage" -msgstr "Veuillez configurer le widget avant de l'utiliser" - -#: ../../include/lib/Dashboard/Widgets/wux_transaction_stats.php:172 -#: ../../include/lib/Dashboard/Widgets/wux_transaction_stats.php:378 -msgid "WUX transaction stats" -msgstr "Statistiques des transactions WUX" - -#: ../../include/lib/Dashboard/Widgets/wux_transaction_stats.php:288 -msgid "View all statistics" -msgstr "Voir toutes les statistiques" - -#: ../../include/lib/Dashboard/Widgets/service_view.php:190 -msgid "Service View" -msgstr "Vue de service" - -#: ../../include/lib/Dashboard/Widgets/service_view.php:246 -msgid "Tree" -msgstr "Arbre" - -#: ../../include/lib/Dashboard/Widgets/service_view.php:247 -#: ../../enterprise/include/class/CommandCenter.class.php:453 -msgid "Table" -msgstr "Table" - -#: ../../include/lib/Dashboard/Widgets/service_view.php:298 -#: ../../include/lib/Dashboard/Widgets/service_map.php:364 -msgid "The user doesn't have permission to read agents" -msgstr "L'utilisateur n'a pas accĆØs en lecture aux agents." - -#: ../../include/lib/Dashboard/Widgets/service_view.php:456 -msgid "Services view" -msgstr "Vue des Services" - -#: ../../include/lib/Dashboard/Widgets/network_map.php:258 -msgid "It is recommended to have only one such widget in the control panel." -msgstr "" -"Il est recommandĆ© de nā€™avoir quā€™un seul widget de ce type dans le panneau de " -"configuration." - -#: ../../include/lib/Dashboard/Widgets/network_map.php:335 -msgid "Introduce x-axis data. Right=positive Left=negative" -msgstr "Introduire les donnĆ©es sur l'axe X. Droite = positif Gauche = nĆ©gatif." - -#: ../../include/lib/Dashboard/Widgets/network_map.php:339 -msgid "X offset" -msgstr "Offset en X" - -#: ../../include/lib/Dashboard/Widgets/network_map.php:350 -msgid "Introduce Y-axis data. Top=positive Bottom=negative" -msgstr "Introduire les donnĆ©es sur l'axe Y. En haut = positif En bas = nĆ©gatif." - -#: ../../include/lib/Dashboard/Widgets/network_map.php:354 -msgid "Y offset" -msgstr "Offset en Y" - -#: ../../include/lib/Dashboard/Widgets/network_map.php:378 -msgid "Zoom level" -msgstr "Niveau de zoom" - -#: ../../include/lib/Dashboard/Widgets/service_map.php:192 -#: ../../enterprise/operation/services/services.service.php:63 -#: ../../enterprise/operation/services/services.service_map.php:78 -msgid "Service Map" -msgstr "Carte de service" - -#: ../../include/lib/Dashboard/Widgets/service_map.php:297 -msgid "" -"ZOOM functionality is only available when there is only one such widget in the " -"dashboard" -msgstr "" -"La fonctionnalitĆ© ZOOM n'est disponible que lorsqu'il n'y a qu'un seul widget " -"de ce type dans le tableau de bord" - -#: ../../include/lib/Dashboard/Widgets/service_map.php:304 -#: ../../enterprise/include/functions_visual_map_editor.php:30 -#: ../../enterprise/include/functions_visual_map_editor.php:41 -#: ../../enterprise/include/functions_visual_map_editor.php:54 -#: ../../enterprise/include/functions_visual_map_editor.php:85 -#: ../../enterprise/include/functions_services.php:1712 -#: ../../enterprise/include/functions_reporting.php:6136 -#: ../../enterprise/include/functions_visual_map.php:539 -#: ../../enterprise/include/rest-api/models/VisualConsole/Items/Service.php:288 -#: ../../enterprise/godmode/services/services.elements.php:95 -#: ../../enterprise/godmode/services/services.elements.php:181 -#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:25 -#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:166 -#: ../../godmode/reporting/reporting_builder.item_editor.php:3808 -msgid "Service" -msgstr "Service" - -#: ../../include/lib/Dashboard/Widgets/service_map.php:317 -msgid "Enable sunburst" -msgstr "Activer sunburst" - -#: ../../include/lib/Dashboard/Widgets/service_map.php:375 -msgid "Missing Service id" -msgstr "ID de service manquant" - -#: ../../include/lib/Dashboard/Widgets/service_map.php:437 -#: ../../enterprise/operation/services/services.php:164 -#: ../../enterprise/godmode/services/services.elements.php:766 -#: ../../enterprise/godmode/services/services.service.php:465 -msgid "Service map" -msgstr "Carte de services" - -#: ../../include/lib/Dashboard/Widgets/events_list.php:175 -#: ../../include/lib/Dashboard/Widgets/events_list.php:810 -msgid "List of latest events" -msgstr "Liste des derniers Ć©vĆ©nements" - -#: ../../include/lib/Dashboard/Widgets/events_list.php:294 -msgid "Custom filters" -msgstr "Filtres personnalisĆ©s" - -#: ../../include/lib/Dashboard/Widgets/events_list.php:359 -msgid "Limit" -msgstr "Limite" - -#: ../../include/lib/Dashboard/Widgets/events_list.php:372 -#: ../../include/functions_events.php:3379 -#: ../../include/functions_events.php:3385 -#: ../../include/functions_events.php:3407 -msgid "All event" -msgstr "Tous les Ć©vĆ©nements" - -#: ../../include/lib/Dashboard/Widgets/events_list.php:373 -#: ../../include/functions_events.php:3381 -#: ../../include/functions_events.php:3415 -msgid "Only validated" -msgstr "Seulement les Ć©vĆ©nements validĆ©s" - -#: ../../include/lib/Dashboard/Widgets/events_list.php:374 -msgid "Only pending" -msgstr "Seulement ceux en attente" - -#: ../../include/lib/Dashboard/Widgets/events_list.php:436 -#: ../../include/functions_html.php:1248 ../../include/functions_html.php:1400 -#: ../../enterprise/godmode/massive/massive_add_modules_policy.php:115 -#: ../../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 -#: ../../godmode/massive/massive_add_alerts.php:228 -#: ../../godmode/massive/massive_delete_modules.php:386 -#: ../../godmode/massive/massive_copy_modules.php:112 -#: ../../godmode/massive/massive_copy_modules.php:265 -#: ../../godmode/massive/massive_standby_alerts.php:200 -#: ../../godmode/massive/massive_add_action_alerts.php:209 -#: ../../godmode/massive/massive_edit_agents.php:520 -#: ../../godmode/massive/massive_delete_action_alerts.php:221 -#: ../../godmode/massive/massive_delete_alerts.php:311 -#: ../../godmode/massive/massive_delete_agents.php:199 -#: ../../godmode/massive/massive_enable_disable_alerts.php:171 -#: ../../godmode/massive/massive_edit_modules.php:370 -msgid "Group recursion" -msgstr "RĆ©cursion du groupe" - -#: ../../include/lib/Dashboard/Widgets/events_list.php:792 -msgid "There are no events matching selected search filters" -msgstr "" -"Il n'y a aucun Ć©vĆ©nement correspondant aux filtres de recherche sĆ©lectionnĆ©s" - -#: ../../include/lib/Dashboard/Widgets/tree_view.php:341 -msgid "Type tree" -msgstr "Type d'arbre" - -#: ../../include/lib/Dashboard/Widgets/tree_view.php:373 -msgid "Open all groups" -msgstr "Ouvrir tous les groupes" - -#: ../../include/lib/Dashboard/Widgets/tree_view.php:393 -msgid "Agents status" -msgstr "Ɖtat des agents" - -#: ../../include/lib/Dashboard/Widgets/tree_view.php:405 -#: ../../godmode/massive/massive_edit_modules.php:506 -msgid "Filter agents" -msgstr "Filtrer les agents" - -#: ../../include/lib/Dashboard/Widgets/tree_view.php:427 -msgid "Modules status" -msgstr "Ɖtat des modules" - -#: ../../include/lib/Dashboard/Widgets/tree_view.php:493 -#, php-format -msgid "" -"The user doesn't have permission to read agents. Please contact with your %s " -"administrator." -msgstr "" -"L'utilisateur n'est pas autorisĆ© Ć  lire les agents. Veuillez contacter votre " -"administrateur %s." - -#: ../../include/lib/Dashboard/Widgets/module_icon.php:178 -#: ../../include/lib/Dashboard/Widgets/module_icon.php:540 -msgid "Icon and module value" -msgstr "IcĆ“ne et valeur du module" - -#: ../../include/lib/Dashboard/Widgets/top_n.php:163 -#: ../../include/lib/Dashboard/Widgets/top_n.php:528 -msgid "Top N of agent modules" -msgstr "Top N des modules d'agent" - -#: ../../include/lib/Dashboard/Widgets/top_n.php:207 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2032 -msgid "" -"Case insensitive regular expression for agent name. For example: Network.* " -"will match with the following agent names: network_agent1, NetworK CHECKS" -msgstr "" -"Expression rĆ©guliĆØre non sensible Ć  la casse pour le nom de l'agent. Par " -"exemple : Network.* concordera avec les noms d'agents suivants : " -"network_agent1, NetworK CHECKS" - -#: ../../include/lib/Dashboard/Widgets/top_n.php:222 -msgid "" -"Case insensitive regular expression or string for module name. For example: ." -"*usage.* will match: cpu_usage, vram usage." -msgstr "" -"Expression rĆ©guliĆØre ou chaĆ®ne insensible Ć  la casse pour le nom du module. " -"Par exemple : .*usage.* correspondra Ć  : cpu_usage, vram usage." - -#: ../../include/lib/Dashboard/Widgets/top_n.php:249 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2424 -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:363 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2374 -msgid "Quantity (n)" -msgstr "QuantitĆ© (n)" - -#: ../../include/lib/Dashboard/Widgets/top_n.php:261 -#: ../../enterprise/operation/log/log_viewer.php:497 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:63 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:202 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2398 -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:351 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:317 -#: ../../godmode/reporting/reporting_builder.item_editor.php:64 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2348 -msgid "Ascending" -msgstr "Croissant" - -#: ../../include/lib/Dashboard/Widgets/top_n.php:262 -#: ../../enterprise/operation/log/log_viewer.php:496 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:64 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:203 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2405 -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:353 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:324 -#: ../../godmode/reporting/reporting_builder.item_editor.php:65 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2355 -msgid "Descending" -msgstr "DĆ©croissant" - -#: ../../include/lib/Dashboard/Widgets/top_n.php:263 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2412 -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:355 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:331 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2362 -msgid "By agent name" -msgstr "Par nom d'agent" - -#: ../../include/lib/Dashboard/Widgets/top_n.php:267 -#: ../../enterprise/operation/log/log_viewer.php:500 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:450 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2395 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2964 -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:346 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2345 -#: ../../godmode/reporting/reporting_builder.item_editor.php:3041 -#: ../../godmode/netflow/nf_item_list.php:173 -msgid "Order" -msgstr "Ordre" - -#: ../../include/lib/Dashboard/Widgets/top_n.php:280 -msgid "Avg." -msgstr "Moyenne" - -#: ../../include/lib/Dashboard/Widgets/top_n.php:281 -#: ../../include/functions_alerts.php:675 ../../include/functions_treeview.php:92 -#: ../../include/functions_treeview.php:104 -#: ../../include/functions_reporting_html.php:5242 -#: ../../enterprise/godmode/modules/configure_local_component.php:320 -#: ../../enterprise/godmode/modules/configure_local_component.php:363 -#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:517 -#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:608 -#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:830 -#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:308 -#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:357 -#: ../../godmode/modules/manage_network_components_form_wizard.php:389 -#: ../../godmode/modules/manage_network_components_form_wizard.php:424 -#: ../../godmode/modules/manage_network_components_form_common.php:174 -#: ../../godmode/modules/manage_network_components_form_common.php:215 -#: ../../godmode/massive/massive_edit_modules.php:580 -#: ../../godmode/massive/massive_edit_modules.php:671 -#: ../../godmode/massive/massive_edit_modules.php:887 -#: ../../godmode/agentes/module_manager_editor_common.php:428 -#: ../../godmode/agentes/module_manager_editor_common.php:489 -#: ../../godmode/alerts/configure_alert_template.php:862 -msgid "Max." -msgstr "Max." - -#: ../../include/lib/Dashboard/Widgets/top_n.php:282 -#: ../../include/functions_alerts.php:676 ../../include/functions_treeview.php:92 -#: ../../include/functions_treeview.php:104 -#: ../../include/functions_reporting_html.php:5241 -#: ../../enterprise/godmode/modules/configure_local_component.php:311 -#: ../../enterprise/godmode/modules/configure_local_component.php:354 -#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:502 -#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:593 -#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:828 -#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:293 -#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:342 -#: ../../godmode/modules/manage_network_components_form_wizard.php:387 -#: ../../godmode/modules/manage_network_components_form_wizard.php:415 -#: ../../godmode/modules/manage_network_components_form_common.php:165 -#: ../../godmode/modules/manage_network_components_form_common.php:206 -#: ../../godmode/massive/massive_edit_modules.php:565 -#: ../../godmode/massive/massive_edit_modules.php:656 -#: ../../godmode/massive/massive_edit_modules.php:885 -#: ../../godmode/alerts/configure_alert_template.php:850 -msgid "Min." -msgstr "Min." - -#: ../../include/lib/Dashboard/Widgets/top_n.php:448 -msgid "There are no agents/modules found matching filter set" -msgstr "Aucun agent/module trouvĆ© correspondant Ć  l'ensemble de filtres" - -#: ../../include/lib/Dashboard/Widget.php:477 -msgid "Widget cannot be loaded" -msgstr "Le widget ne peut pas ĆŖtre chargĆ©" - -#: ../../include/lib/Dashboard/Widget.php:481 -msgid "Please, configure the widget again to recover it" -msgstr "Veuillez reconfigurer le widget pour le rĆ©cupĆ©rer" - -#: ../../include/lib/Dashboard/Widget.php:588 -#: ../../include/functions_events.php:4992 -#: ../../enterprise/godmode/policies/policy_queue.php:670 -#: ../../enterprise/godmode/policies/policy_linking.php:153 -#: ../../godmode/massive/massive_delete_agents.php:252 -msgid "Node" -msgstr "Noeud" - -#: ../../include/lib/Dashboard/Widget.php:595 -#: ../../enterprise/meta/advanced/policymanager.sync.php:308 -#: ../../extensions/dbmanager.php:204 -msgid "This metaconsole" -msgstr "Cette MĆ©taconsole" - -#: ../../include/functions_tags.php:712 -msgid "Click here to open a popup window with URL tag" -msgstr "Cliquez ici pour ouvrir une fenĆŖtre pop-up avec l'Ć©tiquette de l'URL" - -#: ../../include/auth/mysql.php:319 ../../include/auth/mysql.php:347 -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:334 ../../include/auth/mysql.php:397 -#: ../../include/auth/mysql.php:412 ../../include/auth/mysql.php:443 -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:360 -msgid "" -"Ooops User not found in \n" -"\t\t\t\tdatabase or incorrect password" -msgstr "" -"Oups, utilisateur introuvable dans \n" -"\t\t\t\tla base de donnĆ©es ou mot de passe incorrect" - -#: ../../include/auth/mysql.php:372 ../../include/auth/mysql.php:402 -#: ../../include/auth/mysql.php:437 ../../enterprise/include/auth/saml.php:241 -msgid "Please, login into metaconsole first" -msgstr "Veuillez d'abord vous connecter Ć  la MĆ©taconsole" - -#: ../../include/auth/mysql.php:718 -msgid "Could not changes password on remote pandora" -msgstr "Erreur de modification du mot de passe sur Pandora FMS Ć  distance" - -#: ../../include/auth/mysql.php:766 -msgid "Your installation of PHP does not support LDAP" -msgstr "Votre installation de PHP ne prend pas en charge LDAP" - -#: ../../include/functions_events.php:134 -msgid "NEW" -msgstr "NOUVEAU" - -#: ../../include/functions_events.php:137 -msgid "IN PROCESS" -msgstr "EN COURS" - -#: ../../include/functions_events.php:140 -msgid "VALIDATED" -msgstr "VALIDƉ" - -#: ../../include/functions_events.php:191 -#: ../../enterprise/meta/include/functions_events_meta.php:58 -msgid "Event id" -msgstr "Identifiant de l'Ć©vĆ©nement" - -#: ../../include/functions_events.php:192 ../../include/functions_events.php:2611 -#: ../../include/functions_events.php:4985 -#: ../../include/functions_reporting_html.php:1282 -#: ../../include/functions_reporting_html.php:1290 -#: ../../include/functions_reporting_html.php:5017 -#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:419 -#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:479 -#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:526 -#: ../../enterprise/meta/include/functions_events_meta.php:62 -msgid "Event name" -msgstr "Nom de l'Ć©vĆ©nement" - -#: ../../include/functions_events.php:199 -msgid "Agent module" -msgstr "Module de l'agent" - -#: ../../include/functions_events.php:205 ../../include/functions_events.php:4704 -#: ../../enterprise/meta/include/functions_events_meta.php:114 -msgid "Extra id" -msgstr "Identifiant supplĆ©mentaire" - -#: ../../include/functions_events.php:209 -#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:69 -#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:252 -#: ../../enterprise/meta/include/functions_events_meta.php:130 -#: ../../enterprise/godmode/setup/setup_metaconsole.php:198 -#: ../../enterprise/godmode/setup/setup_metaconsole.php:273 -#: ../../godmode/wizards/DiscoveryTaskList.class.php:591 -msgid "Server name" -msgstr "Nom du serveur" - -#: ../../include/functions_events.php:212 -msgid "Module custom id" -msgstr "ID personnalisĆ© du module" - -#: ../../include/functions_events.php:230 -#: ../../godmode/events/custom_events.php:94 -msgid "Event Id" -msgstr "ID de lā€™Ć©vĆØnement" - -#: ../../include/functions_events.php:242 -#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:123 -#: ../../enterprise/include/functions_inventory.php:142 -#: ../../enterprise/include/functions_inventory.php:176 -#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:461 -msgid "Agent alias" -msgstr "Alias de l'agent" - -#: ../../include/functions_events.php:278 -#: ../../godmode/events/custom_events.php:110 -msgid "Extra Id" -msgstr "Id supplĆ©mentaire" - -#: ../../include/functions_events.php:290 -#: ../../godmode/events/custom_events.php:114 -msgid "Server Name" -msgstr "Nom du serveur" - -#: ../../include/functions_events.php:299 ../../include/functions_events.php:5161 -#: ../../godmode/events/custom_events.php:118 -msgid "Module custom ID" -msgstr "ID personnalisĆ© du module" - -#: ../../include/functions_events.php:308 -#: ../../godmode/events/custom_events.php:117 -msgid "Severity mini" -msgstr "SĆ©vĆ©ritĆ© mini" - -#: ../../include/functions_events.php:312 -#: ../../godmode/events/custom_events.php:98 -msgid "Agent IP" -msgstr "IP de l'agent" - -#: ../../include/functions_events.php:2629 -#: ../../enterprise/operation/agentes/policy_view.php:70 -msgid "V." -msgstr "V." - -#: ../../include/functions_events.php:2726 -msgid "Events -by module-" -msgstr "ƉvĆ©nements par module" - -#: ../../include/functions_events.php:2873 -msgid "Going to unknown" -msgstr "Changement Ć  Ć©tat inconnu" - -#: ../../include/functions_events.php:2877 -#: ../../include/functions_events.php:3264 ../../include/functions.php:1229 -msgid "Alert recovered" -msgstr "Alertes rĆ©cupĆ©rĆ©es" - -#: ../../include/functions_events.php:2881 -msgid "Alert manually validated" -msgstr "Alerte validĆ©e manuellement" - -#: ../../include/functions_events.php:2885 -msgid "Going from critical to warning" -msgstr "Changement de l'Ć©tat critique Ć  l'Ć©tat d'alerte" - -#: ../../include/functions_events.php:2891 -msgid "Going up to critical state" -msgstr "Passage Ć  l'Ć©tat critique" - -#: ../../include/functions_events.php:2897 -msgid "Going up to normal state" -msgstr "Passage Ć  l'Ć©tat normal" - -#: ../../include/functions_events.php:2901 -msgid "Going down from normal to warning" -msgstr "Passage de l'Ć©tat normal Ć  l'Ć©tat d'alerte" - -#: ../../include/functions_events.php:2913 -msgid "Discovery server detected a new host" -msgstr "Le serveur Discovery a dĆ©tectĆ© un nouvel hĆ“te" - -#: ../../include/functions_events.php:2917 -msgid "New agent created" -msgstr "Nouvel agent crĆ©Ć©" - -#: ../../include/functions_events.php:2921 -#: ../../include/functions_events.php:3288 ../../include/functions.php:1237 -msgid "Configuration change" -msgstr "Modification de la configuration" - -#: ../../include/functions_events.php:2925 -#: ../../include/functions_events.php:3268 ../../include/functions.php:1230 -msgid "Alert ceased" -msgstr "Alerte arrĆŖtĆ©e" - -#: ../../include/functions_events.php:2934 -msgid "Unknown type:" -msgstr "Type inconnu :" - -#: ../../include/functions_events.php:3248 ../../include/functions.php:1222 -msgid "Monitor Critical" -msgstr "Moniteur en Ć©tat critique" - -#: ../../include/functions_events.php:3252 ../../include/functions.php:1223 -msgid "Monitor Warning" -msgstr "Moniteur en Ć©tat d'alerte" - -#: ../../include/functions_events.php:3256 ../../include/functions.php:1224 -msgid "Monitor Normal" -msgstr "Moniteur en Ć©tat normal" - -#: ../../include/functions_events.php:3272 ../../include/functions.php:1231 -msgid "Alert manual validation" -msgstr "Validation manuelle de la alerte" - -#: ../../include/functions_events.php:3276 ../../include/functions.php:1234 -msgid "Recon host detected" -msgstr "HĆ“te de reconnaissance dĆ©tectĆ©" - -#: ../../include/functions_events.php:3296 ../../include/functions.php:1238 -#: ../../enterprise/views/ncm/snippets/edit.php:42 -#: ../../enterprise/views/ncm/snippets/list.php:32 -#: ../../enterprise/views/ncm/firmwares/edit.php:41 -#: ../../enterprise/views/ncm/firmwares/list.php:32 -#: ../../enterprise/views/ncm/vendors/edit.php:35 -#: ../../enterprise/views/ncm/vendors/list.php:32 -#: ../../enterprise/views/ncm/devices/list.php:32 -#: ../../enterprise/views/ncm/devices/list.php:67 -#: ../../enterprise/views/ncm/templates/edit.php:42 -#: ../../enterprise/views/ncm/templates/list.php:32 -#: ../../enterprise/views/ncm/models/edit.php:37 -#: ../../enterprise/views/ncm/models/list.php:32 -msgid "Network configuration manager" -msgstr "Gestionnaire de configuration rĆ©seau" - -#: ../../include/functions_events.php:3332 ../../include/functions_graph.php:3538 -#: ../../include/functions_graph.php:3539 ../../include/functions_graph.php:5119 -#: ../../include/functions.php:1027 ../../include/functions.php:1270 -#: ../../include/functions.php:1307 -msgid "Informational" -msgstr "Informatif" - -#: ../../include/functions_events.php:3380 -#: ../../include/functions_events.php:3411 -msgid "Only new" -msgstr "Uniquement les nouveaux" - -#: ../../include/functions_events.php:3382 -#: ../../include/functions_events.php:3419 -msgid "Only in process" -msgstr "Uniquement ceux en cours" - -#: ../../include/functions_events.php:3383 -#: ../../include/functions_events.php:3423 -msgid "Only not validated" -msgstr "Uniquement les non validĆ©s" - -#: ../../include/functions_events.php:3386 -#: ../../include/functions_events.php:3674 -#: ../../enterprise/meta/monitoring/wizard/wizard.php:139 -msgid "New" -msgstr "Nouveau" - -#: ../../include/functions_events.php:3388 -#: ../../include/functions_events.php:3675 -#: ../../include/functions_events.php:3684 -msgid "In process" -msgstr "En cours" - -#: ../../include/functions_events.php:3389 -msgid "Not Validated" -msgstr "Non validĆ©s" - -#: ../../include/functions_events.php:3578 -msgid "Change owner" -msgstr "Changer de propriĆ©taire" - -#: ../../include/functions_events.php:3659 -msgid "Change status" -msgstr "Modifier l'Ć©tat" - -#: ../../include/functions_events.php:3801 -msgid "Custom responses" -msgstr "RĆ©ponses personnalisĆ©es" - -#: ../../include/functions_events.php:4379 -msgid "Extended information" -msgstr "Informations Ć©tendues" - -#: ../../include/functions_events.php:4407 -msgid "There was an error connecting to the node" -msgstr "Erreur de connexion au nœud" - -#: ../../include/functions_events.php:4446 -msgid "Agent details" -msgstr "DĆ©tails de l'agent" - -#: ../../include/functions_events.php:4460 -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:4511 -msgid "View custom fields" -msgstr "Afficher les champs personnalisĆ©s" - -#: ../../include/functions_events.php:4534 -msgid "Module details" -msgstr "DĆ©tails du module" - -#: ../../include/functions_events.php:4550 -msgid "No assigned" -msgstr "Non attribuĆ©" - -#: ../../include/functions_events.php:4627 ../../godmode/alerts/alert_view.php:65 -#: ../../godmode/alerts/alert_view.php:280 -msgid "Alert details" -msgstr "DĆ©tails de l'alerte" - -#: ../../include/functions_events.php:4641 -#: ../../include/functions_events.php:4650 -msgid "Go to data overview" -msgstr "AccĆ©der Ć  l'aperƧu de donnĆ©es" - -#: ../../include/functions_events.php:4766 -#, php-format -msgid "Invalid custom data: %s" -msgstr "DonnĆ©es personnalisĆ©es non valides : %s" - -#: ../../include/functions_events.php:5001 -msgid "First event" -msgstr "Premier Ć©vĆ©nement" - -#: ../../include/functions_events.php:5001 -msgid "Last event" -msgstr "Dernier Ć©vĆ©nement" - -#: ../../include/functions_events.php:5081 ../../mobile/operation/events.php:540 -msgid "Acknowledged by" -msgstr "Reconnu par" - -#: ../../include/functions_events.php:5085 -msgid "Autovalidated" -msgstr "AutovalidĆ©" - -#: ../../include/functions_events.php:5126 -#: ../../godmode/groups/configure_group.php:246 -msgid "Contact" -msgstr "Contact" - -#: ../../include/functions_events.php:5151 -msgid "ID extra" -msgstr "Identifiant supplĆ©mentaire" - -#: ../../include/functions_events.php:5216 -msgid "There are no comments" -msgstr "Aucun commentaire" - -#: ../../include/functions_events.php:5373 -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 " -"operate with them. The operation, when event replication is enabled, must be " -"done only in the Metaconsole." -msgstr "" -"Si la rĆ©plication d'Ć©vĆ©nement est en cours, il ne sera pas possible d'entrer " -"des commentaires ici. Cette option permet uniquement aux utilisateurs locaux " -"de Pandora FMS de voir les commentaires, mais pas d'opĆ©rer avec eux. " -"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:5577 -msgid "Pandora System" -msgstr "SystĆØme Pandora FMS" - -#: ../../include/functions_events.php:5776 -msgid "Validated but not assigned" -msgstr "ValidĆ© mais non attribuĆ©" - -#: ../../include/functions_events.php:6723 -msgid "Agent Module" -msgstr "Module de l'agent" - -#: ../../include/functions_db.php:147 -#, php-format -msgid "Error connecting to database %s at %s." -msgstr "Erreur de connexion Ć  la base de donnĆ©es %s Ć  %s ." - -#: ../../include/functions_db.php:1900 -msgid "Database debug" -msgstr "DĆ©boguer la base de donnĆ©es" - -#: ../../include/functions_db.php:1917 -msgid "SQL sentence" -msgstr "Phrase SQL" - -#: ../../include/functions_db.php:1918 -#: ../../include/functions_reporting_html.php:4046 -#: ../../include/functions_reporting_html.php:4193 -#: ../../include/functions_reporting_html.php:4534 -#: ../../include/functions_reporting_html.php:4545 -#: ../../enterprise/views/ncm/agent/details.php:90 -#: ../../enterprise/include/class/CommandCenter.class.php:468 -#: ../../extensions/api_checker.php:219 ../../extensions/api_checker.php:226 -msgid "Result" -msgstr "RĆ©sultat" - -#: ../../include/functions_db.php:1919 -msgid "Rows" -msgstr "RangĆ©es" - -#: ../../include/functions_db.php:1920 -msgid "Saved" -msgstr "SauvegardĆ©" - -#: ../../include/functions_db.php:1921 -msgid "Time (ms)" -msgstr "Temps (ms)" - -#: ../../include/functions_groups.php:75 -msgid "Alert Actions" -msgstr "Actions d'alerte" - -#: ../../include/functions_groups.php:91 -msgid "Alert Templates" -msgstr "ModĆØles d'alerte" - -#: ../../include/functions_groups.php:155 -msgid "Layout visual console" -msgstr "Layout de la console visuelle" - -#: ../../include/functions_groups.php:171 -msgid "Plannet down time" -msgstr "Temps d'arrĆŖt planifiĆ©" - -#: ../../include/functions_groups.php:203 -msgid "GIS maps" -msgstr "Cartes GIS" - -#: ../../include/functions_groups.php:219 -msgid "GIS connections" -msgstr "Connexions GIS" - -#: ../../include/functions_groups.php:235 -msgid "GIS map layers" -msgstr "Couches de carte GIS" - -#: ../../include/functions_groups.php:251 -msgid "Network maps" -msgstr "Cartes de rĆ©seau" - -#: ../../include/functions_config.php:144 -msgid "Failed updated: User did not login." -msgstr "Erreur de mise Ć  jour : l'utilisateur ne s'est pas connectĆ©." - -#: ../../include/functions_config.php:152 -msgid "Failed updated: User is not admin." -msgstr "Erreur de mise Ć  jour : l'utilisateur n'est pas un administrateur." - -#: ../../include/functions_config.php:178 -#: ../../enterprise/meta/include/functions_meta.php:77 -#: ../../enterprise/meta/advanced/metasetup.setup.php:113 -msgid "Language settings" -msgstr "Configuration de Langage" - -#: ../../include/functions_config.php:182 -#: ../../enterprise/meta/include/functions_meta.php:138 -#: ../../enterprise/meta/advanced/metasetup.setup.php:155 -#: ../../godmode/setup/setup_general.php:88 -msgid "Remote config directory" -msgstr "RĆ©pertoire de configuration Ć  distance" - -#: ../../include/functions_config.php:186 -msgid "phantomjs config directory" -msgstr "rĆ©pertoire de configuration de phantomjs" - -#: ../../include/functions_config.php:190 -#: ../../enterprise/meta/include/functions_meta.php:82 -#: ../../enterprise/meta/advanced/metasetup.setup.php:126 -#: ../../godmode/setup/setup_general.php:110 -msgid "Auto login (hash) password" -msgstr "Mot de passe de connexion automatique (hash)" - -#: ../../include/functions_config.php:194 -#: ../../enterprise/meta/include/functions_meta.php:92 -#: ../../enterprise/meta/advanced/metasetup.setup.php:142 -#: ../../godmode/setup/setup_general.php:124 -msgid "Time source" -msgstr "Temps de rĆ©fĆ©rence" - -#: ../../include/functions_config.php:198 -#: ../../godmode/setup/setup_general.php:137 -msgid "Automatic check for updates" -msgstr "VĆ©rification automatique de mises Ć  jour" - -#: ../../include/functions_config.php:202 -msgid "SSL cert path" -msgstr "Chemin du certificat SSL" - -#: ../../include/functions_config.php:206 -#: ../../enterprise/meta/include/functions_meta.php:102 -#: ../../enterprise/meta/advanced/metasetup.setup.php:148 -#: ../../godmode/setup/setup_general.php:149 -msgid "Enforce https" -msgstr "ExĆ©cuter https" - -#: ../../include/functions_config.php:210 -msgid "Use cert." -msgstr "Utiliser le certificat" - -#: ../../include/functions_config.php:217 -#: ../../enterprise/meta/include/functions_meta.php:127 -#: ../../enterprise/meta/advanced/metasetup.setup.php:152 -#: ../../godmode/setup/setup_general.php:183 -msgid "Attachment store" -msgstr "Stockage de fichiers" - -#: ../../include/functions_config.php:219 -#: ../../enterprise/meta/include/functions_meta.php:122 -#: ../../enterprise/meta/advanced/cron_main.php:159 -#: ../../enterprise/meta/advanced/cron_main.php:203 -#: ../../enterprise/meta/advanced/cron_main.php:296 -#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:213 -#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:276 -#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:371 -msgid "Path doesn't exists or is not writable" -msgstr "Le chemin n'existe pas ou n'est pas accessible en Ć©criture" - -#: ../../include/functions_config.php:224 -#: ../../enterprise/meta/include/functions_meta.php:120 -msgid "Attachment store." -msgstr "EntrepĆ“t dā€™attachement." - -#: ../../include/functions_config.php:230 -#: ../../enterprise/meta/include/functions_meta.php:238 -#: ../../enterprise/meta/advanced/metasetup.setup.php:272 -#: ../../godmode/setup/setup_general.php:193 -msgid "IP list with API access" -msgstr "Liste d'adresses IP avec accĆØs API" - -#: ../../include/functions_config.php:234 -#: ../../enterprise/meta/include/functions_meta.php:218 -#: ../../enterprise/meta/include/functions_meta.php:228 -#: ../../enterprise/meta/advanced/metasetup.setup.php:267 -#: ../../enterprise/meta/advanced/metasetup.consoles.php:533 -#: ../../enterprise/godmode/setup/setup_metaconsole.php:210 -#: ../../godmode/setup/setup_general.php:212 -msgid "API password" -msgstr "Mot de passe de l'API" - -#: ../../include/functions_config.php:238 -#: ../../godmode/setup/setup_general.php:223 -msgid "Enable GIS features" -msgstr "Activer les fonctionnalitĆ©s SIG" - -#: ../../include/functions_config.php:242 -msgid "Integria inventory" -msgstr "Inventaire d'Integria IMS" - -#: ../../include/functions_config.php:246 ../../include/functions_config.php:1731 -msgid "Integria API password" -msgstr "Mot de passe de l'API d'Integria IMS" - -#: ../../include/functions_config.php:250 -msgid "Integria URL" -msgstr "URL d'Integria IMS" - -#: ../../include/functions_config.php:254 -#: ../../godmode/setup/setup_general.php:231 -msgid "Enable Netflow" -msgstr "Activer Netflow" - -#: ../../include/functions_config.php:259 -#: ../../include/functions_register.php:164 -#: ../../enterprise/meta/include/functions_meta.php:158 -#: ../../enterprise/meta/advanced/metasetup.setup.php:191 -#: ../../godmode/setup/setup_general.php:279 -msgid "Timezone setup" -msgstr "Configuration du fuseau horaire" - -#: ../../include/functions_config.php:284 -msgid "License information" -msgstr "Information de la licence" - -#: ../../include/functions_config.php:290 -#: ../../enterprise/meta/include/functions_meta.php:168 -#: ../../enterprise/meta/advanced/metasetup.setup.php:197 -#: ../../godmode/setup/setup_general.php:319 -msgid "Public URL" -msgstr "URL publique" - -#: ../../include/functions_config.php:294 -#: ../../enterprise/meta/include/functions_meta.php:178 -#: ../../enterprise/meta/advanced/metasetup.setup.php:201 -#: ../../godmode/setup/setup_general.php:329 -msgid "Force use Public URL" -msgstr "Forcer l'utilisation de l'URL publique" - -#: ../../include/functions_config.php:298 -#: ../../enterprise/meta/include/functions_meta.php:188 -#: ../../enterprise/meta/advanced/metasetup.setup.php:215 -#: ../../godmode/setup/setup_general.php:343 -msgid "Public URL host exclusions" -msgstr "Exclusions dā€™hĆ“te dā€™URL publique" - -#: ../../include/functions_config.php:302 -#: ../../godmode/setup/setup_general.php:353 -msgid "Referer security" -msgstr "SĆ©curitĆ© du rĆ©fĆ©rent" - -#: ../../include/functions_config.php:306 -#: ../../godmode/setup/setup_general.php:361 -msgid "Event storm protection" -msgstr "Protection Event Storm" - -#: ../../include/functions_config.php:310 -#: ../../enterprise/meta/include/functions_meta.php:208 -#: ../../enterprise/meta/advanced/metasetup.setup.php:222 -#: ../../godmode/setup/setup_general.php:370 -msgid "Command Snapshot" -msgstr "InstantanĆ© de commande" - -#: ../../include/functions_config.php:314 -msgid "Use custom encoding" -msgstr "Utiliser un encodage personnalisĆ©" - -#: ../../include/functions_config.php:318 -#: ../../godmode/setup/setup_general.php:386 -msgid "Server logs directory" -msgstr "RĆ©pertoire des journaux du serveur" - -#: ../../include/functions_config.php:322 -#: ../../godmode/setup/setup_general.php:396 -msgid "Log size limit in system logs viewer extension" -msgstr "" -"Taille limite des journaux dans l'extension du visualiseur de journaux du " -"systĆØme" - -#: ../../include/functions_config.php:326 -#: ../../godmode/setup/setup_general.php:411 -msgid "Tutorial mode" -msgstr "Mode tutoriel" - -#: ../../include/functions_config.php:330 -#: ../../godmode/setup/setup_general.php:425 -msgid "Allow create scheduled downtimes in the past" -msgstr "Autoriser la crĆ©ation de temps d'arrĆŖt planifiĆ©s dans le passĆ©" - -#: ../../include/functions_config.php:334 -msgid "Limit parameters bulk" -msgstr "Limite d'opĆ©rations massives" - -#: ../../include/functions_config.php:338 -msgid "Identification_reminder" -msgstr "Rappel d'identification" - -#: ../../include/functions_config.php:342 -msgid "Include_agents" -msgstr "Inclure des agents" - -#: ../../include/functions_config.php:346 -msgid "alias_as_name" -msgstr "Alias comme nom" - -#: ../../include/functions_config.php:350 -msgid "Console log enabled" -msgstr "Journal de la console activĆ©" - -#: ../../include/functions_config.php:354 -msgid "Audit log enabled" -msgstr "Journal d'audit activĆ©" - -#: ../../include/functions_config.php:358 -msgid "Module Custom ID read only" -msgstr "ID personnalisĆ© du module en lecture seule" - -#: ../../include/functions_config.php:362 -#: ../../godmode/setup/setup_general.php:459 -#: ../../godmode/agentes/agent_manager.php:304 -msgid "Unique IP" -msgstr "IP unique" - -#: ../../include/functions_config.php:366 -#: ../../enterprise/meta/advanced/metasetup.mail.php:115 -msgid "Server SMTP" -msgstr "Serveur SMTP" - -#: ../../include/functions_config.php:370 -#: ../../enterprise/meta/advanced/metasetup.mail.php:109 -msgid "From dir" -msgstr "ƀ partir du rĆ©pertoire" - -#: ../../include/functions_config.php:374 -#: ../../enterprise/meta/advanced/metasetup.mail.php:112 -#: ../../godmode/setup/setup_general.php:538 -msgid "From name" -msgstr "ƀ partir d'un nom" - -#: ../../include/functions_config.php:378 -#: ../../enterprise/meta/advanced/metasetup.mail.php:118 -msgid "Port SMTP" -msgstr "Port SMTP" - -#: ../../include/functions_config.php:382 -#: ../../godmode/setup/setup_general.php:568 -msgid "Encryption" -msgstr "Encodage" - -#: ../../include/functions_config.php:386 -#: ../../enterprise/meta/advanced/metasetup.mail.php:121 -#: ../../godmode/setup/setup_general.php:579 -msgid "Email user" -msgstr "Utilisateur du courriel" - -#: ../../include/functions_config.php:390 -#: ../../enterprise/meta/advanced/metasetup.mail.php:124 -#: ../../godmode/setup/setup_general.php:589 -msgid "Email password" -msgstr "Mot de passe du courriel" - -#: ../../include/functions_config.php:397 -#: ../../enterprise/godmode/setup/setup.php:47 -msgid "Forward SNMP traps to agent (if exist)" -msgstr "TransfĆ©rer les dĆ©routements SNMP vers l'agent (s'il existe)" - -#: ../../include/functions_config.php:401 -#: ../../enterprise/godmode/setup/setup.php:77 -msgid "Use Enterprise ACL System" -msgstr "Utiliser le SystĆØme ACL Enterprise" - -#: ../../include/functions_config.php:405 -#: ../../enterprise/meta/include/functions_meta.php:68 -msgid "Activate Metaconsole" -msgstr "Activer la MĆ©taconsole" - -#: ../../include/functions_config.php:409 -#: ../../enterprise/meta/include/functions_meta.php:273 -#: ../../enterprise/meta/advanced/metasetup.setup.php:288 -#: ../../enterprise/godmode/setup/setup.php:90 -msgid "Size of collection" -msgstr "Taille de la collection" - -#: ../../include/functions_config.php:413 -#: ../../enterprise/godmode/setup/setup.php:104 -msgid "Events replication" -msgstr "RĆ©plication d'Ć©vĆ©nements" - -#: ../../include/functions_config.php:418 -#: ../../enterprise/godmode/setup/setup.php:116 -msgid "Replication interval" -msgstr "Intervalle de rĆ©plication" - -#: ../../include/functions_config.php:422 -#: ../../enterprise/godmode/setup/setup.php:130 -msgid "Replication limit" -msgstr "Limite de rĆ©plication" - -#: ../../include/functions_config.php:426 -#: ../../enterprise/godmode/setup/setup.php:157 -msgid "Replication mode" -msgstr "Mode de rĆ©plication" - -#: ../../include/functions_config.php:430 -#: ../../enterprise/godmode/setup/setup.php:264 -msgid "Show events list in local console (read only)" -msgstr "" -"Afficher la liste d'Ć©vĆ©nements dans la console locale (lecture seulement)" - -#: ../../include/functions_config.php:435 -msgid "Replication DB engine" -msgstr "Moteur de BD de rĆ©plication" - -#: ../../include/functions_config.php:439 -msgid "Replication DB host" -msgstr "HĆ“te de BD de rĆ©plication" - -#: ../../include/functions_config.php:443 -msgid "Replication DB database" -msgstr "Nom de la BD de rĆ©plication" - -#: ../../include/functions_config.php:447 -msgid "Replication DB user" -msgstr "Utilisateur de BD de rĆ©plication" - -#: ../../include/functions_config.php:451 -msgid "Replication DB password" -msgstr "Mot de passe de BD de rĆ©plication" - -#: ../../include/functions_config.php:455 -msgid "Replication DB port" -msgstr "Port de BD de rĆ©plication" - -#: ../../include/functions_config.php:459 -msgid "Metaconsole agent cache" -msgstr "Cache de l'agent de la MĆ©taconsole" - -#: ../../include/functions_config.php:463 -#: ../../enterprise/godmode/setup/setup.php:366 -msgid "Activate Log Collector" -msgstr "Activer le collecteur de journaux" - -#: ../../include/functions_config.php:467 -msgid "Enable Update Manager" -msgstr "Activer le Update Manager" - -#: ../../include/functions_config.php:471 -msgid "Ipam Ocuppied Manager Critical" -msgstr "Ipam OccupĆ© Manager Critique" - -#: ../../include/functions_config.php:475 -msgid "Ipam Ocuppied Manager Warning" -msgstr "Avertissement du gestionnaire occupĆ© par Ipam" - -#: ../../include/functions_config.php:479 -#: ../../enterprise/godmode/setup/setup.php:413 -msgid "SAP/R3 Plugin Licence" -msgstr "Licence de plugin SAP/R3" - -#: ../../include/functions_config.php:484 -#: ../../enterprise/godmode/setup/setup.php:282 -msgid "Inventory changes blacklist" -msgstr "Liste noire des changements d'inventaire" - -#: ../../include/functions_config.php:492 -#: ../../enterprise/meta/include/functions_meta.php:344 -#: ../../enterprise/meta/advanced/metasetup.password.php:79 -#: ../../enterprise/godmode/setup/setup.php:467 -msgid "Enable password policy" -msgstr "Activer la politique de mot de passe" - -#: ../../include/functions_config.php:496 -#: ../../enterprise/meta/include/functions_meta.php:354 -#: ../../enterprise/meta/advanced/metasetup.password.php:101 -#: ../../enterprise/godmode/setup/setup.php:476 -msgid "Min. size password" -msgstr "Taille minimale du mot de passe" - -#: ../../include/functions_config.php:500 -#: ../../enterprise/meta/include/functions_meta.php:384 -#: ../../enterprise/meta/advanced/metasetup.password.php:105 -#: ../../enterprise/godmode/setup/setup.php:505 -msgid "Password expiration" -msgstr "Expiration du mot de passe" - -#: ../../include/functions_config.php:504 -#: ../../enterprise/meta/include/functions_meta.php:394 -#: ../../enterprise/meta/advanced/metasetup.password.php:132 -#: ../../enterprise/godmode/setup/setup.php:516 -msgid "Force change password on first login" -msgstr "Forcer le changement mot de passe lors de la premiĆØre connexion" - -#: ../../include/functions_config.php:508 -#: ../../enterprise/meta/include/functions_meta.php:404 -#: ../../enterprise/meta/advanced/metasetup.password.php:109 -#: ../../enterprise/godmode/setup/setup.php:525 -msgid "User blocked if login fails" -msgstr "Utilisateur bloquĆ© en cas d'erreur de connexion" - -#: ../../include/functions_config.php:512 -#: ../../enterprise/meta/include/functions_meta.php:414 -#: ../../enterprise/meta/advanced/metasetup.password.php:113 -#: ../../enterprise/godmode/setup/setup.php:536 -msgid "Number of failed login attempts" -msgstr "Nombre de tentatives de connexion infructueuses" - -#: ../../include/functions_config.php:516 -#: ../../enterprise/meta/include/functions_meta.php:364 -#: ../../enterprise/meta/advanced/metasetup.password.php:138 -#: ../../enterprise/godmode/setup/setup.php:487 -msgid "Password must have numbers" -msgstr "Le mot de passe doit contenir des chiffres" - -#: ../../include/functions_config.php:520 -#: ../../enterprise/meta/include/functions_meta.php:374 -#: ../../enterprise/meta/advanced/metasetup.password.php:142 -#: ../../enterprise/godmode/setup/setup.php:496 -msgid "Password must have symbols" -msgstr "Le mot de passe doit contenir des symboles" - -#: ../../include/functions_config.php:524 -#: ../../enterprise/meta/include/functions_meta.php:447 -#: ../../enterprise/meta/advanced/metasetup.password.php:126 -#: ../../enterprise/godmode/setup/setup.php:547 -msgid "Apply password policy to admin users" -msgstr "Appliquer la politique de mot de passe aux administrateurs" - -#: ../../include/functions_config.php:528 -#: ../../enterprise/meta/include/functions_meta.php:424 -#: ../../enterprise/meta/advanced/metasetup.password.php:121 -#: ../../enterprise/godmode/setup/setup.php:556 -msgid "Enable password history" -msgstr "Activer historique de mot de passe" - -#: ../../include/functions_config.php:532 -#: ../../enterprise/meta/include/functions_meta.php:436 -#: ../../enterprise/meta/advanced/metasetup.password.php:117 -#: ../../enterprise/godmode/setup/setup.php:565 -msgid "Compare previous password" -msgstr "Comparer mot de passe prĆ©cĆ©dent" - -#: ../../include/functions_config.php:536 -#: ../../enterprise/meta/include/functions_meta.php:458 -#: ../../enterprise/meta/advanced/metasetup.password.php:146 -#: ../../enterprise/godmode/setup/setup.php:577 -msgid "Activate reset password" -msgstr "Activer la rĆ©initialisation du mot de passe" - -#: ../../include/functions_config.php:548 -#: ../../enterprise/meta/include/functions_meta.php:522 -#: ../../enterprise/meta/include/functions_meta.php:741 -#: ../../godmode/setup/setup_auth.php:69 -msgid "Autocreate remote users" -msgstr "CrĆ©er des utilisateurs Ć  distance" - -#: ../../include/functions_config.php:552 -#: ../../enterprise/meta/include/functions_meta.php:532 -#: ../../enterprise/godmode/setup/setup_auth.php:55 -#: ../../enterprise/godmode/setup/setup_auth.php:303 -#: ../../enterprise/godmode/setup/setup_auth.php:364 -#: ../../enterprise/godmode/setup/setup_auth.php:1159 -msgid "Autocreate profile" -msgstr "CrĆ©er profil automatiquement" - -#: ../../include/functions_config.php:556 -#: ../../enterprise/meta/include/functions_meta.php:542 -#: ../../enterprise/godmode/setup/setup_auth.php:61 -#: ../../enterprise/godmode/setup/setup_auth.php:309 -#: ../../enterprise/godmode/setup/setup_auth.php:370 -#: ../../enterprise/godmode/setup/setup_auth.php:1165 -msgid "Autocreate profile group" -msgstr "CrĆ©er groupe de profil automatiquement" - -#: ../../include/functions_config.php:560 -#: ../../enterprise/meta/include/functions_meta.php:552 -#: ../../enterprise/godmode/setup/setup_auth.php:68 -#: ../../enterprise/godmode/setup/setup_auth.php:318 -#: ../../enterprise/godmode/setup/setup_auth.php:379 -#: ../../enterprise/godmode/setup/setup_auth.php:1174 -msgid "Autocreate profile tags" -msgstr "CrĆ©er Ć©tiquettes de profil automatiquement" - -#: ../../include/functions_config.php:564 -#: ../../enterprise/meta/include/functions_meta.php:562 -#: ../../enterprise/godmode/setup/setup_auth.php:324 -msgid "Automatically assigned no hierarchy" -msgstr "Pas de hiĆ©rarchie attribuĆ© automatiquement" - -#: ../../include/functions_config.php:568 -#: ../../enterprise/meta/include/functions_meta.php:572 -#: ../../enterprise/godmode/setup/setup_auth.php:569 -#: ../../enterprise/godmode/setup/setup_auth.php:1371 -msgid "Autocreate blacklist" -msgstr "CrĆ©er liste noire automatiquement" - -#: ../../include/functions_config.php:572 -#: ../../enterprise/meta/include/functions_meta.php:635 -#: ../../enterprise/godmode/setup/setup_auth.php:577 -#: ../../enterprise/godmode/setup/setup_auth.php:1379 -msgid "Active directory server" -msgstr "Serveur de rĆ©pertoire actif" - -#: ../../include/functions_config.php:576 -#: ../../enterprise/meta/include/functions_meta.php:645 -#: ../../enterprise/godmode/setup/setup_auth.php:583 -#: ../../enterprise/godmode/setup/setup_auth.php:1385 -msgid "Active directory port" -msgstr "Port de rĆ©pertoire actif" - -#: ../../include/functions_config.php:580 ../../include/functions_config.php:616 -#: ../../enterprise/meta/include/functions_meta.php:655 -#: ../../enterprise/meta/include/functions_meta.php:939 -#: ../../enterprise/godmode/setup/setup_auth.php:589 -#: ../../enterprise/godmode/setup/setup_auth.php:1391 -#: ../../godmode/setup/setup_auth.php:137 -msgid "Start TLS" -msgstr "Lancer TLS" - -#: ../../include/functions_config.php:584 -#: ../../enterprise/meta/include/functions_meta.php:665 -#: ../../enterprise/godmode/setup/setup_auth.php:353 -#: ../../enterprise/godmode/setup/setup_auth.php:1148 -msgid "Advanced Config AD" -msgstr "Configuration AD avancĆ©e" - -#: ../../include/functions_config.php:588 -#: ../../enterprise/meta/include/functions_meta.php:705 -#: ../../enterprise/godmode/setup/setup_auth.php:106 -msgid "Advanced Config LDAP" -msgstr "Configuration LDAP avancĆ©e" - -#: ../../include/functions_config.php:592 -#: ../../enterprise/meta/include/functions_meta.php:675 -#: ../../enterprise/godmode/setup/setup_auth.php:595 -#: ../../enterprise/godmode/setup/setup_auth.php:1397 -msgid "Domain" -msgstr "Domaine" - -#: ../../include/functions_config.php:596 -#: ../../enterprise/meta/include/functions_meta.php:685 -#: ../../enterprise/godmode/setup/setup_auth.php:413 -#: ../../enterprise/godmode/setup/setup_auth.php:1208 -msgid "Advanced Permisions AD" -msgstr "Permissions AD avancĆ©es" - -#: ../../include/functions_config.php:600 -#: ../../enterprise/meta/include/functions_meta.php:695 -#: ../../enterprise/godmode/setup/setup_auth.php:129 -msgid "Advanced Permissions LDAP" -msgstr "Permissions LDAP avancĆ©es" - -#: ../../include/functions_config.php:604 -#: ../../enterprise/meta/include/functions_meta.php:909 -#: ../../godmode/setup/setup_auth.php:92 -msgid "LDAP server" -msgstr "Serveur LDAP" - -#: ../../include/functions_config.php:608 -#: ../../enterprise/meta/include/functions_meta.php:919 -#: ../../godmode/setup/setup_auth.php:105 -msgid "LDAP port" -msgstr "Port LDAP" - -#: ../../include/functions_config.php:612 -#: ../../enterprise/meta/include/functions_meta.php:929 -#: ../../godmode/setup/setup_auth.php:123 -msgid "LDAP version" -msgstr "Version LDAP" - -#: ../../include/functions_config.php:620 -#: ../../enterprise/meta/include/functions_meta.php:949 -#: ../../godmode/setup/setup_auth.php:148 -msgid "Base DN" -msgstr "Base DN" - -#: ../../include/functions_config.php:624 -#: ../../enterprise/meta/include/functions_meta.php:959 -#: ../../godmode/setup/setup_auth.php:161 -msgid "Login attribute" -msgstr "Attribut de connexion" - -#: ../../include/functions_config.php:628 -#: ../../enterprise/meta/include/functions_meta.php:969 -#: ../../godmode/setup/setup_auth.php:174 -msgid "Admin LDAP login" -msgstr "Connexion LDAP administrateur" - -#: ../../include/functions_config.php:632 -#: ../../enterprise/meta/include/functions_meta.php:979 -#: ../../godmode/setup/setup_auth.php:187 -msgid "Admin LDAP password" -msgstr "Mot de passe LDAP administrateur" - -#: ../../include/functions_config.php:636 -#: ../../enterprise/meta/include/functions_meta.php:999 -#: ../../godmode/setup/setup_auth.php:222 -msgid "Secondary LDAP server" -msgstr "Serveur LDAP secondaire" - -#: ../../include/functions_config.php:640 -#: ../../enterprise/meta/include/functions_meta.php:1009 -#: ../../godmode/setup/setup_auth.php:235 -msgid "Secondary LDAP port" -msgstr "Port LDAP secondaire" - -#: ../../include/functions_config.php:644 -#: ../../enterprise/meta/include/functions_meta.php:1019 -#: ../../godmode/setup/setup_auth.php:253 -msgid "Secondary LDAP version" -msgstr "Version LDAP secondaire" - -#: ../../include/functions_config.php:648 -msgid "Secontary start TLS" -msgstr "DĆ©marrage secondaire TLS" - -#: ../../include/functions_config.php:652 -#: ../../enterprise/meta/include/functions_meta.php:1039 -msgid "Secondary base DN" -msgstr "DN de base secondaire" - -#: ../../include/functions_config.php:656 -#: ../../enterprise/meta/include/functions_meta.php:1049 -msgid "Secondary login attribute" -msgstr "Attribut de connexion secondaire" - -#: ../../include/functions_config.php:660 -#: ../../enterprise/meta/include/functions_meta.php:1059 -#: ../../godmode/setup/setup_auth.php:304 -msgid "Admin secondary LDAP login" -msgstr "Connexion LDAP secondaire dā€™administrateur" - -#: ../../include/functions_config.php:664 -#: ../../enterprise/meta/include/functions_meta.php:1069 -#: ../../godmode/setup/setup_auth.php:317 -msgid "Admin secondary LDAP password" -msgstr "Mot de passe LDAP secondaire dā€™administrateur" - -#: ../../include/functions_config.php:668 -#: ../../enterprise/meta/include/functions_meta.php:512 -#: ../../godmode/setup/setup_auth.php:56 -msgid "Fallback to local authentication" -msgstr "Repli Ć  l'authentification locale" - -#: ../../include/functions_config.php:672 -#: ../../enterprise/meta/include/functions_meta.php:1102 -#: ../../enterprise/godmode/setup/setup_auth.php:101 -msgid "Login user attribute" -msgstr "Identifier attribut d'utilisateur" - -#: ../../include/functions_config.php:676 -#: ../../enterprise/meta/include/functions_meta.php:1123 -#: ../../enterprise/godmode/setup/setup_auth.php:94 -msgid "LDAP function" -msgstr "Fonction LDAP" - -#: ../../include/functions_config.php:681 ../../include/functions_config.php:797 -#: ../../enterprise/meta/include/functions_meta.php:618 -#: ../../enterprise/meta/include/functions_meta.php:1082 -#: ../../enterprise/godmode/setup/setup_auth.php:82 -#: ../../enterprise/godmode/setup/setup_auth.php:348 -msgid "Save Password" -msgstr "Enregistrer le mot de passe" - -#: ../../include/functions_config.php:688 -#: ../../enterprise/meta/include/functions_meta.php:1112 -msgid "Save profile" -msgstr "Enregistrer le profil" - -#: ../../include/functions_config.php:692 -#: ../../enterprise/meta/include/functions_meta.php:990 -msgid "LDAP secondary enabled" -msgstr "LDAP secondaire activĆ©" - -#: ../../include/functions_config.php:696 -#: ../../enterprise/godmode/setup/setup_auth.php:1021 -msgid "MySQL host" -msgstr "HĆ“te MySQL" - -#: ../../include/functions_config.php:700 ../../include/functions_config.php:720 -#: ../../enterprise/meta/include/functions_meta.php:1145 -#: ../../enterprise/meta/include/functions_meta.php:1199 -#: ../../enterprise/meta/include/functions_meta.php:1253 -#: ../../enterprise/godmode/setup/setup_auth.php:1027 -#: ../../enterprise/godmode/setup/setup_auth.php:1059 -msgid "MySQL port" -msgstr "Port MySQL" - -#: ../../include/functions_config.php:704 ../../include/functions_config.php:724 -#: ../../include/functions_config.php:1551 -#: ../../enterprise/meta/include/functions_meta.php:1155 -#: ../../enterprise/meta/include/functions_meta.php:1209 -#: ../../enterprise/meta/include/functions_meta.php:1263 -#: ../../enterprise/godmode/setup/setup_history.php:189 -#: ../../enterprise/godmode/setup/setup_auth.php:1033 -#: ../../enterprise/godmode/setup/setup_auth.php:1065 -msgid "Database name" -msgstr "Nom de la base de donnĆ©es" - -#: ../../include/functions_config.php:716 -#: ../../enterprise/meta/include/functions_meta.php:1243 -#: ../../enterprise/godmode/setup/setup_auth.php:1053 -msgid "Integria host" -msgstr "HĆ“te d'Integria IMS" - -#: ../../include/functions_config.php:736 -#: ../../enterprise/meta/include/functions_meta.php:754 -msgid "Saml path" -msgstr "Chemin SAML" - -#: ../../include/functions_config.php:740 -#: ../../enterprise/meta/include/functions_meta.php:767 -msgid "Saml source" -msgstr "Source Saml" - -#: ../../include/functions_config.php:744 -#: ../../enterprise/meta/include/functions_meta.php:780 -msgid "Saml user id parameter" -msgstr "ParamĆØtre de l'ID de l'utilisateur Saml" - -#: ../../include/functions_config.php:748 -#: ../../enterprise/meta/include/functions_meta.php:793 -msgid "Saml mail parameter" -msgstr "ParamĆØtre email Saml" - -#: ../../include/functions_config.php:752 -#: ../../enterprise/meta/include/functions_meta.php:806 -msgid "Saml group name parameter" -msgstr "ParamĆØtre nom de group Saml" - -#: ../../include/functions_config.php:756 -#: ../../enterprise/meta/include/functions_meta.php:819 -msgid "Saml attr type parameter" -msgstr "ParamĆØtre type attr Saml" - -#: ../../include/functions_config.php:760 -#: ../../enterprise/meta/include/functions_meta.php:832 -msgid "Saml profiles and tags parameter" -msgstr "ParamĆØtre d'Ć©tiquettes et profils Saml" - -#: ../../include/functions_config.php:764 -msgid "Saml profile parameters" -msgstr "ParamĆØtres de profils SAML" - -#: ../../include/functions_config.php:768 -#: ../../enterprise/meta/include/functions_meta.php:871 -msgid "Saml tag parameter" -msgstr "ParamĆØtre d'etiquettes Saml" - -#: ../../include/functions_config.php:772 -#: ../../enterprise/meta/include/functions_meta.php:845 -msgid "Saml profile and tag separator" -msgstr "SĆ©parateur d'etiquettes et profils Saml" - -#: ../../include/functions_config.php:780 -msgid "2FA all users" -msgstr "2FA tous les utilisateurs" - -#: ../../include/functions_config.php:784 ../../include/functions_config.php:790 -#: ../../enterprise/meta/include/functions_meta.php:604 -#: ../../enterprise/meta/include/functions_meta.php:897 -msgid "Session timeout" -msgstr "Session expirĆ©e" - -#: ../../include/functions_config.php:787 -msgid "Session timeout forced to 90 minutes" -msgstr "DĆ©lai d'expiration de la session forcĆ© Ć  90 minutes" - -#: ../../include/functions_config.php:813 -#: ../../enterprise/meta/include/functions_meta.php:1919 -#: ../../enterprise/meta/advanced/metasetup.performance.php:79 -#: ../../godmode/setup/performance.php:259 -#: ../../godmode/setup/performance.php:449 -msgid "Max. days before delete events" -msgstr "Nombre de jours maximum avant la suppression des Ć©vĆ©nements" - -#: ../../include/functions_config.php:818 ../../godmode/setup/performance.php:273 -msgid "Max. days before delete traps" -msgstr "Nombre de jours maximum avant la suppression de dĆ©routements" - -#: ../../include/functions_config.php:822 ../../godmode/setup/performance.php:293 -#: ../../godmode/setup/performance.php:459 -msgid "Max. days before delete string data" -msgstr "Nombre de jours maximum avant la suppression de chaĆ®nes de donnĆ©es" - -#: ../../include/functions_config.php:826 -#: ../../enterprise/meta/include/functions_meta.php:1944 -#: ../../enterprise/meta/advanced/metasetup.performance.php:92 -#: ../../godmode/setup/performance.php:283 -msgid "Max. days before delete audit events" -msgstr "Nombre de jours maximum avant la suppression d'Ć©vĆ©nements d'audit" - -#: ../../include/functions_config.php:830 ../../godmode/setup/performance.php:303 -msgid "Max. days before delete GIS data" -msgstr "Nombre de jours maximum avant la suppression de donnĆ©es GIS" - -#: ../../include/functions_config.php:834 ../../godmode/setup/performance.php:313 -#: ../../godmode/setup/performance.php:419 -msgid "Max. days before purge" -msgstr "Nombre de jours maximum avant le nettoyage" - -#: ../../include/functions_config.php:838 ../../godmode/setup/performance.php:333 -msgid "Max. days before delete unknown modules" -msgstr "Nombre de jours maximum avant la suppression de modules inconnus" - -#: ../../include/functions_config.php:842 ../../godmode/setup/performance.php:323 -#: ../../godmode/setup/performance.php:429 -msgid "Max. days before compact data" -msgstr "Nombre de jours maximum avant la compression de donnĆ©es" - -#: ../../include/functions_config.php:846 -msgid "Max. days before autodisable deletion" -msgstr "Nombre de jours maximum avant suppression d'Ć©lĆ©ments dĆ©sactivĆ©s" - -#: ../../include/functions_config.php:850 -msgid "Item limit for realtime reports)" -msgstr "Limite d'Ć©lĆ©ments pour rapports en temps rĆ©el" - -#: ../../include/functions_config.php:854 ../../godmode/setup/performance.php:439 -#: ../../godmode/setup/performance.php:520 -msgid "Compact interpolation in hours (1 Fine-20 bad)" -msgstr "Interpolation de compression en heures (1 Optimale-20 Mauvaise)" - -#: ../../include/functions_config.php:858 -#: ../../enterprise/meta/include/functions_meta.php:1954 -#: ../../enterprise/meta/advanced/metasetup.performance.php:95 -#: ../../godmode/setup/performance.php:540 -msgid "Default hours for event view" -msgstr "Heures par dĆ©faut pour la visualisation des Ć©vĆ©nements" - -#: ../../include/functions_config.php:862 ../../godmode/setup/performance.php:550 -msgid "Use realtime statistics" -msgstr "Utiliser des statistiques en temps rĆ©el" - -#: ../../include/functions_config.php:866 ../../godmode/setup/performance.php:558 -msgid "Batch statistics period (secs)" -msgstr "PĆ©riode de statistiques par lot (en secondes)" - -#: ../../include/functions_config.php:870 -#: ../../enterprise/meta/include/functions_meta.php:1964 -#: ../../godmode/setup/performance.php:568 -msgid "Use agent access graph" -msgstr "Utiliser le graphique d'accĆØs pour agent" - -#: ../../include/functions_config.php:874 ../../godmode/setup/performance.php:571 -msgid "Max. recommended number of files in attachment directory" -msgstr "" -"Nombre maximum de fichiers recommandĆ© dans le rĆ©pertoire des piĆØces jointes" - -#: ../../include/functions_config.php:878 ../../godmode/setup/performance.php:581 -msgid "Delete not init modules" -msgstr "Supprimer les modules non initialisĆ©s" - -#: ../../include/functions_config.php:882 -msgid "Big Operatiopn Step to purge old data" -msgstr "Ɖtape majeure pour nettoyer les donnĆ©es anciennes" - -#: ../../include/functions_config.php:886 ../../godmode/setup/performance.php:594 -msgid "Small Operation Step to purge old data" -msgstr "Ɖtape mineure pour nettoyer les donnĆ©es anciennes" - -#: ../../include/functions_config.php:890 ../../godmode/setup/performance.php:353 -msgid "Retention period of past special days" -msgstr "PĆ©riode de rĆ©tention de jours spĆ©ciaux passĆ©s" - -#: ../../include/functions_config.php:894 -#: ../../enterprise/meta/include/functions_meta.php:2007 -#: ../../enterprise/meta/advanced/metasetup.performance.php:131 -#: ../../godmode/setup/performance.php:363 -msgid "Max. macro data fields" -msgstr "Nombre maximum de champs macro de donnĆ©es" - -#: ../../include/functions_config.php:899 ../../godmode/setup/performance.php:377 -msgid "Max. days before delete inventory data" -msgstr "Nombre de jours maximum avant la suppression de donnĆ©es d'inventaire" - -#: ../../include/functions_config.php:904 ../../godmode/setup/performance.php:477 -msgid "Max. days before delete old messages" -msgstr "Max. jours avant de supprimer les anciens messages" - -#: ../../include/functions_config.php:908 ../../godmode/setup/performance.php:490 -msgid "Max. days before delete old network matrix data" -msgstr "Max. jours avant de supprimer les anciennes donnĆ©es de la matrice rĆ©seau" - -#: ../../include/functions_config.php:912 ../../godmode/setup/performance.php:604 -msgid "Graph container - Max. Items" -msgstr "Conteneur de graphiques - Nombre maximal d'Ć©lĆ©ments" - -#: ../../include/functions_config.php:916 -msgid "Max execution event response" -msgstr "RĆ©ponse maximale Ć  l'Ć©vĆ©nement d'exĆ©cution" - -#: ../../include/functions_config.php:920 -#: ../../enterprise/meta/advanced/metasetup.performance.php:122 -#: ../../godmode/setup/performance.php:624 -msgid "Row limit in csv log" -msgstr "Limite de ligne dans le journal csv" - -#: ../../include/functions_config.php:924 -msgid "SNMP walk binary path" -msgstr "Chemin binaire de SNMP walk" - -#: ../../include/functions_config.php:928 -msgid "SNMP walk binary path (fallback for v1)" -msgstr "Chemin binaire SNMP walk (repli pour v1)" - -#: ../../include/functions_config.php:947 -#: ../../enterprise/meta/include/functions_meta.php:2027 -msgid "PhantomJS cache interval" -msgstr "Intervalle de cache PhantomJS" - -#: ../../include/functions_config.php:954 -#: ../../enterprise/meta/include/functions_meta.php:1298 -#: ../../enterprise/meta/advanced/metasetup.visual.php:105 -#: ../../godmode/setup/setup_visuals.php:1256 -msgid "Date format string" -msgstr "Format de la date" - -#: ../../include/functions_config.php:958 -#: ../../enterprise/meta/include/functions_meta.php:1308 -msgid "Timestamp or time comparation" -msgstr "Horodatage ou comparaison temporelle" - -#: ../../include/functions_config.php:962 -#: ../../enterprise/meta/advanced/metasetup.visual.php:166 -#: ../../godmode/setup/setup_visuals.php:698 -msgid "Graph color #1" -msgstr "Couleur du graphique #1" - -#: ../../include/functions_config.php:966 -#: ../../enterprise/meta/advanced/metasetup.visual.php:176 -#: ../../godmode/setup/setup_visuals.php:709 -msgid "Graph color #2" -msgstr "Couleur du graphique #2" - -#: ../../include/functions_config.php:970 -#: ../../enterprise/meta/advanced/metasetup.visual.php:186 -#: ../../godmode/setup/setup_visuals.php:720 -msgid "Graph color #3" -msgstr "Couleur du graphique #3" - -#: ../../include/functions_config.php:974 -#: ../../godmode/setup/setup_visuals.php:731 -msgid "Graph color #4" -msgstr "Couleur du graphique #4" - -#: ../../include/functions_config.php:978 -#: ../../godmode/setup/setup_visuals.php:742 -msgid "Graph color #5" -msgstr "Couleur du graphique #5" - -#: ../../include/functions_config.php:982 -#: ../../godmode/setup/setup_visuals.php:753 -msgid "Graph color #6" -msgstr "Couleur du graphique #6" - -#: ../../include/functions_config.php:986 -#: ../../godmode/setup/setup_visuals.php:764 -msgid "Graph color #7" -msgstr "Couleur du graphique #7" - -#: ../../include/functions_config.php:990 -#: ../../godmode/setup/setup_visuals.php:775 -msgid "Graph color #8" -msgstr "Couleur du graphique #8" - -#: ../../include/functions_config.php:994 -#: ../../godmode/setup/setup_visuals.php:786 -msgid "Graph color #9" -msgstr "Couleur du graphique #9" - -#: ../../include/functions_config.php:998 -#: ../../godmode/setup/setup_visuals.php:797 -msgid "Graph color #10" -msgstr "Couleur du graphique #10" - -#: ../../include/functions_config.php:1002 -#: ../../enterprise/meta/include/functions_meta.php:1433 -#: ../../enterprise/meta/advanced/metasetup.visual.php:232 -#: ../../godmode/setup/setup_visuals.php:808 -msgid "Value to interface graphics" -msgstr "Valeur pour l'interface graphique" - -#: ../../include/functions_config.php:1006 -#: ../../enterprise/meta/include/functions_meta.php:1373 -msgid "Data precision for reports" -msgstr "PrĆ©cision de donnĆ©es pour rapports" - -#: ../../include/functions_config.php:1015 -#: ../../godmode/setup/setup_visuals.php:137 -msgid "Style template" -msgstr "ModĆØle de style" - -#: ../../include/functions_config.php:1023 -#: ../../enterprise/meta/include/functions_meta.php:1456 -#: ../../enterprise/meta/advanced/metasetup.visual.php:265 -#: ../../godmode/setup/setup_visuals.php:883 -msgid "Use round corners" -msgstr "Utiliser des coins arrondis" - -#: ../../include/functions_config.php:1027 -#: ../../enterprise/meta/include/functions_meta.php:1467 -#: ../../enterprise/meta/advanced/metasetup.visual.php:273 -#: ../../godmode/setup/setup_visuals.php:892 -msgid "Chart fit to content" -msgstr "Table adaptĆ© au contenu" - -#: ../../include/functions_config.php:1031 -msgid "Show QR code header" -msgstr "Afficher code QR dans l'en-tĆŖte" - -#: ../../include/functions_config.php:1035 -#: ../../godmode/setup/setup_visuals.php:150 -msgid "Status icon set" -msgstr "DĆ©finir icĆ“ne d'Ć©tat" - -#: ../../include/functions_config.php:1039 -#: ../../enterprise/meta/include/functions_meta.php:1777 -msgid "Font path" -msgstr "Chemin de la police" - -#: ../../include/functions_config.php:1043 -#: ../../godmode/reporting/visual_console_builder.wizard.php:228 -msgid "Font size" -msgstr "Taille de la police" - -#: ../../include/functions_config.php:1047 -#: ../../enterprise/meta/include/functions_meta.php:1598 -#: ../../enterprise/meta/advanced/metasetup.visual.php:503 -#: ../../godmode/setup/setup_visuals.php:190 -msgid "Custom favicon" -msgstr "Favicon personnalisĆ©" - -#: ../../include/functions_config.php:1051 -#: ../../include/functions_config.php:1445 -#: ../../enterprise/meta/include/functions_meta.php:1568 -#: ../../enterprise/meta/include/functions_meta.php:1819 -#: ../../enterprise/meta/advanced/metasetup.visual.php:1053 -#: ../../enterprise/godmode/reporting/reporting_builder.advanced.php:127 -#: ../../enterprise/godmode/reporting/reporting_builder.template_advanced.php:130 -#: ../../godmode/setup/setup_visuals.php:1149 -msgid "Custom logo" -msgstr "Logo personnalisĆ©" - -#: ../../include/functions_config.php:1055 -#: ../../enterprise/meta/include/functions_meta.php:1578 -msgid "Custom logo collapsed" -msgstr "Le logo personnalisĆ© s'est effondrĆ©" - -#: ../../include/functions_config.php:1059 -msgid "Custom logo white background" -msgstr "Logo personnalisĆ© (fond blanc)" - -#: ../../include/functions_config.php:1063 -#: ../../enterprise/meta/include/functions_meta.php:1608 -msgid "Custom logo login" -msgstr "Logo personnalisĆ© sur Ć©cran de connexion" - -#: ../../include/functions_config.php:1067 -#: ../../enterprise/meta/include/functions_meta.php:1618 -msgid "Custom splash login" -msgstr "Splash personnalisĆ© sur Ć©cran de connexion" - -#: ../../include/functions_config.php:1071 -#: ../../godmode/setup/setup_visuals.php:393 -msgid "Custom documentation logo" -msgstr "Logo de documentation personnalisĆ©" - -#: ../../include/functions_config.php:1075 -#: ../../godmode/setup/setup_visuals.php:413 -msgid "Custom support logo" -msgstr "Logo d'assistance personnalisĆ©" - -#: ../../include/functions_config.php:1079 -#: ../../include/functions_config.php:1083 -#: ../../godmode/setup/setup_visuals.php:432 -msgid "Custom networkmap center logo" -msgstr "Logo du centre de carte rĆ©seau personnalisĆ©" - -#: ../../include/functions_config.php:1087 -msgid "Custom title header" -msgstr "En-tĆŖte de titre personnalisĆ©" - -#: ../../include/functions_config.php:1091 -msgid "Custom subtitle header" -msgstr "En-tĆŖte de sous-titre personnalisĆ©" - -#: ../../include/functions_config.php:1095 -#: ../../enterprise/meta/include/functions_meta.php:1668 -msgid "Meta custom title header" -msgstr "EntĆŖte du titre personnalisĆ© Meta" - -#: ../../include/functions_config.php:1099 -#: ../../enterprise/meta/include/functions_meta.php:1678 -msgid "Meta custom subtitle header" -msgstr "EntĆŖte du sous-titre personnalisĆ© Meta" - -#: ../../include/functions_config.php:1103 -#: ../../enterprise/meta/include/functions_meta.php:1648 -msgid "Custom title1 login" -msgstr "Titre1 personnalisĆ© sur Ć©cran de connexion" - -#: ../../include/functions_config.php:1107 -#: ../../enterprise/meta/include/functions_meta.php:1658 -msgid "Custom title2 login" -msgstr "Titre2 personnalisĆ© sur Ć©cran de connexion" - -#: ../../include/functions_config.php:1111 -#: ../../godmode/setup/setup_visuals.php:176 -msgid "Login background" -msgstr "Fond d'Ć©cran de connexion" - -#: ../../include/functions_config.php:1115 -#: ../../include/functions_config.php:1155 -msgid "Custom Docs url" -msgstr "URL de documents personnalisĆ©e" - -#: ../../include/functions_config.php:1119 -#: ../../include/functions_config.php:1159 -msgid "Custom support url" -msgstr "URL d'assistance personnalisĆ©e" - -#: ../../include/functions_config.php:1123 -#: ../../enterprise/meta/include/functions_meta.php:1628 -#: ../../enterprise/meta/advanced/metasetup.visual.php:724 -#: ../../enterprise/meta/advanced/metasetup.visual.php:795 -#: ../../godmode/setup/setup_visuals.php:507 -msgid "Product name" -msgstr "Nom du produit" - -#: ../../include/functions_config.php:1127 -#: ../../enterprise/meta/include/functions_meta.php:1638 -#: ../../enterprise/meta/advanced/metasetup.visual.php:735 -#: ../../enterprise/meta/advanced/metasetup.visual.php:805 -#: ../../godmode/setup/setup_visuals.php:513 -msgid "Copyright notice" -msgstr "Mention de copyright" - -#: ../../include/functions_config.php:1131 -msgid "Custom logo metaconsole (white background)" -msgstr "Logo personnalisĆ© de la MĆ©taconsole (fond blanc dā€™en-tĆŖte)" - -#: ../../include/functions_config.php:1135 -msgid "Custom logo login metaconsole" -msgstr "Logo personnalisĆ© pour Ć©cran de connexion de la MĆ©taconsole" - -#: ../../include/functions_config.php:1139 -msgid "Custom splash login metaconsole" -msgstr "Splash personnalisĆ© pour Ć©cran de connexion de la MĆ©taconsole" - -#: ../../include/functions_config.php:1143 -msgid "Custom title1 login metaconsole" -msgstr "Titre1 personnalisĆ© pour Ć©cran de connexion de la MĆ©taconsole" - -#: ../../include/functions_config.php:1147 -msgid "Custom title2 login metaconsole" -msgstr "Titre2 personnalisĆ© pour Ć©cran de connexion de la MĆ©taconsole" - -#: ../../include/functions_config.php:1151 -msgid "Login background metaconsole" -msgstr "Fond d'Ć©cran de connexion Ć  la MĆ©taconsole" - -#: ../../include/functions_config.php:1163 -#: ../../enterprise/meta/include/functions_meta.php:1884 -msgid "Use the legacy Visual Console" -msgstr "utiliser la Console visuelle Legacy" - -#: ../../include/functions_config.php:1167 -#: ../../enterprise/meta/include/functions_meta.php:1895 -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" - -#: ../../include/functions_config.php:1171 -#: ../../enterprise/meta/include/functions_meta.php:1906 -#: ../../enterprise/meta/advanced/metasetup.visual.php:874 -#: ../../godmode/setup/setup_visuals.php:1055 -msgid "Default interval for refresh on Visual Console" -msgstr "Intervalle de rafraĆ®chissement par dĆ©faut sur la console visuelle" - -#: ../../include/functions_config.php:1175 -msgid "Default line favourite_view for the Visual Console" -msgstr "Ligne par dĆ©faut favourite_view pour la console visuelle" - -#: ../../include/functions_config.php:1179 -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:1183 -#: ../../godmode/setup/setup_visuals.php:1069 -msgid "Default line thickness for the Visual Console" -msgstr "Ɖpaisseur de ligne par dĆ©faut pour la console visuelle" - -#: ../../include/functions_config.php:1187 -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:1191 -#: ../../include/functions_config.php:1195 -#: ../../godmode/setup/setup_visuals.php:653 -msgid "Agent size text" -msgstr "Taille du texte de l'agent" - -#: ../../include/functions_config.php:1199 -#: ../../godmode/setup/setup_visuals.php:658 -msgid "Module size text" -msgstr "Taille du texte du module" - -#: ../../include/functions_config.php:1203 -#: ../../include/functions_config.php:1207 -#: ../../godmode/setup/setup_visuals.php:663 -msgid "Description size text" -msgstr "Taille du texte de description" - -#: ../../include/functions_config.php:1211 -#: ../../godmode/setup/setup_visuals.php:667 -msgid "Item title size text" -msgstr "Taille du texte du titre de l'Ć©lĆ©ment" - -#: ../../include/functions_config.php:1215 -#: ../../godmode/setup/setup_visuals.php:583 -msgid "GIS Labels" -msgstr "Ɖtiquettes GIS" - -#: ../../include/functions_config.php:1219 -msgid "Show units in values report" -msgstr "Afficher unitĆ©s dans les valeurs du rapport" - -#: ../../include/functions_config.php:1223 -#: ../../godmode/setup/setup_visuals.php:598 -msgid "Default icon in GIS" -msgstr "IcĆ“ne par dĆ©faut sur GIS" - -#: ../../include/functions_config.php:1227 -msgid "Autohidden menu" -msgstr "Menu cachĆ© automatiquement" - -#: ../../include/functions_config.php:1231 -msgid "visual_animation" -msgstr "visual_animation" - -#: ../../include/functions_config.php:1235 -#: ../../enterprise/meta/include/functions_meta.php:1478 -#: ../../enterprise/meta/advanced/metasetup.visual.php:281 -msgid "Disable help" -msgstr "DĆ©sactiver l'aide" - -#: ../../include/functions_config.php:1239 -msgid "Fixed graph" -msgstr "Graphique fixe" - -#: ../../include/functions_config.php:1243 -#: ../../godmode/setup/setup_visuals.php:544 -msgid "Fixed header" -msgstr "En-tĆŖte fixe" - -#: ../../include/functions_config.php:1247 -msgid "Paginate module" -msgstr "Paginer module" - -#: ../../include/functions_config.php:1255 -#: ../../godmode/setup/setup_visuals.php:1236 -msgid "Networkmap max width" -msgstr "Largeur maximale de la carte de rĆ©seau" - -#: ../../include/functions_config.php:1259 -msgid "Shortened module graph data" -msgstr "Graphique de module de donnĆ©es raccourcies" - -#: ../../include/functions_config.php:1263 -#: ../../enterprise/meta/advanced/metasetup.visual.php:456 -msgid "Show the group name instead the group icon." -msgstr "Afficher le nom du groupe au lieu de l'icĆ“ne du groupe" - -#: ../../include/functions_config.php:1267 -#: ../../godmode/setup/setup_visuals.php:857 -msgid "Default line thickness for the Custom Graph." -msgstr "Ɖpaisseur de ligne par dĆ©faut pour le graphique personnalisĆ©" - -#: ../../include/functions_config.php:1271 -msgid "Default type of module charts." -msgstr "Type de graphiques de modules par dĆ©faut" - -#: ../../include/functions_config.php:1275 -msgid "Default Number of elements in Custom Graph." -msgstr "Nombre d'Ć©lĆ©ments par dĆ©faut dans le graphique personnalisĆ©." - -#: ../../include/functions_config.php:1279 -msgid "Default type of interface charts." -msgstr "Type de graphiques d'interface par dĆ©faut" - -#: ../../include/functions_config.php:1283 -#: ../../enterprise/meta/include/functions_meta.php:1859 -#: ../../enterprise/meta/advanced/metasetup.visual.php:466 -#: ../../godmode/setup/setup_visuals.php:88 -msgid "Display data of proc modules in other format" -msgstr "Affichage des donnĆ©es des modules proc sous un format diffĆ©rent" - -#: ../../include/functions_config.php:1287 -#: ../../enterprise/meta/include/functions_meta.php:1869 -#: ../../enterprise/meta/advanced/metasetup.visual.php:474 -#: ../../godmode/setup/setup_visuals.php:97 -msgid "Display text proc modules have state is ok" -msgstr "Texte Ć  afficher lorsque l'Ć©tat du module proc est OK" - -#: ../../include/functions_config.php:1290 -#: ../../include/functions_config.php:3185 -#: ../../include/functions_reporting_html.php:662 -#: ../../enterprise/include/functions_reporting_csv.php:1541 -#: ../../enterprise/include/functions_reporting_csv.php:1587 -#: ../../enterprise/include/functions_reporting_csv.php:1905 -#: ../../enterprise/include/functions_reporting.php:1875 -#: ../../enterprise/include/functions_reporting.php:1916 -#: ../../enterprise/include/functions_reporting.php:2919 -#: ../../enterprise/include/functions_reporting.php:2978 -#: ../../enterprise/include/functions_reporting.php:3907 -#: ../../enterprise/include/functions_reporting.php:3966 -#: ../../enterprise/include/functions_reporting.php:6161 -msgid "Fail" -msgstr "Ɖchec" - -#: ../../include/functions_config.php:1291 -#: ../../enterprise/meta/include/functions_meta.php:1879 -#: ../../enterprise/meta/advanced/metasetup.visual.php:484 -#: ../../godmode/setup/setup_visuals.php:101 -msgid "Display text when proc modules have state critical" -msgstr "Texte Ć  afficher lorsque l'Ć©tat du module proc est critique" - -#: ../../include/functions_config.php:1295 -msgid "Display lateral menus with left click" -msgstr "Afficher menus latĆ©raux en faisant clic gauche" - -#: ../../include/functions_config.php:1300 -#: ../../godmode/setup/setup_visuals.php:116 -msgid "Service label font size" -msgstr "Taille de la police de l'Ć©tiquette de service" - -#: ../../include/functions_config.php:1304 -msgid "Service item padding size" -msgstr "Espace entre les nœuds de la carte de service" - -#: ../../include/functions_config.php:1309 -msgid "Default percentil" -msgstr "Centile par dĆ©faut" - -#: ../../include/functions_config.php:1313 -msgid "Default full scale (TIP)" -msgstr "Pleine Ć©chelle par dĆ©faut (TIP)" - -#: ../../include/functions_config.php:1317 -msgid "Default soft graphs" -msgstr "Graphiques logiciels par dĆ©faut" - -#: ../../include/functions_config.php:1321 -msgid "Default zoom graphs" -msgstr "Graphiques de zoom par dĆ©faut" - -#: ../../include/functions_config.php:1330 -msgid "Default height of the chart image" -msgstr "Hauteur par dĆ©faut de l'image du graphique" - -#: ../../include/functions_config.php:1352 -msgid "Add the custom post process" -msgstr "Ajouter personnalisation au processus postĆ©rieur" - -#: ../../include/functions_config.php:1360 -msgid "Delete the custom post process" -msgstr "Supprimer personnalisation du processus postĆ©rieur" - -#: ../../include/functions_config.php:1402 -#: ../../enterprise/meta/include/functions_meta.php:1767 -#: ../../enterprise/meta/advanced/metasetup.visual.php:420 -#: ../../godmode/setup/setup_visuals.php:1357 -msgid "Delete interval" -msgstr "Supprimer intervalle" - -#: ../../include/functions_config.php:1414 -msgid "Add custom module unit" -msgstr "Ajouter une unitĆ© de module personnalisĆ©e" - -#: ../../include/functions_config.php:1420 -msgid "Delete custom module unit" -msgstr "Supprimer l'unitĆ© de module personnalisĆ©" - -#: ../../include/functions_config.php:1425 -#: ../../enterprise/meta/include/functions_meta.php:1799 -msgid "Custom report info" -msgstr "Information du rapport personnalisĆ©" - -#: ../../include/functions_config.php:1429 -#: ../../enterprise/meta/include/functions_meta.php:1383 -#: ../../enterprise/meta/advanced/metasetup.visual.php:966 -#: ../../godmode/setup/setup_visuals.php:1121 -msgid "HTML font size for SLA (em)" -msgstr "Taille de la police HTML pour SLA (em)" - -#: ../../include/functions_config.php:1433 -#: ../../enterprise/meta/include/functions_meta.php:1393 -#: ../../enterprise/meta/advanced/metasetup.visual.php:963 -#: ../../godmode/setup/setup_visuals.php:1116 -msgid "PDF font size (px)" -msgstr "Taille de la police PDF (px)" - -#: ../../include/functions_config.php:1437 -#: ../../include/functions_config.php:1441 -#: ../../include/functions_config.php:1445 -#: ../../include/functions_config.php:1449 -#: ../../include/functions_config.php:1453 -#: ../../include/functions_config.php:1457 -#: ../../enterprise/meta/include/functions_meta.php:1793 -#: ../../enterprise/meta/include/functions_meta.php:1809 -#: ../../enterprise/meta/include/functions_meta.php:1819 -#: ../../enterprise/meta/include/functions_meta.php:1829 -#: ../../enterprise/meta/include/functions_meta.php:1839 -#: ../../enterprise/meta/include/functions_meta.php:1849 -#: ../../enterprise/meta/advanced/metasetup.visual.php:1053 -#: ../../enterprise/meta/advanced/metasetup.visual.php:1066 -#: ../../enterprise/meta/advanced/metasetup.visual.php:1077 -#: ../../enterprise/meta/advanced/metasetup.visual.php:1087 -#: ../../godmode/setup/setup_visuals.php:1149 -#: ../../godmode/setup/setup_visuals.php:1164 -#: ../../godmode/setup/setup_visuals.php:1172 -#: ../../godmode/setup/setup_visuals.php:1192 -#: ../../godmode/setup/setup_visuals.php:1208 -msgid "Custom report front" -msgstr "Page de couverture du rapport personnalisĆ©" - -#: ../../include/functions_config.php:1441 -#: ../../enterprise/meta/include/functions_meta.php:1809 -#: ../../enterprise/godmode/reporting/reporting_builder.advanced.php:116 -#: ../../enterprise/godmode/reporting/reporting_builder.template_advanced.php:127 -msgid "Font family" -msgstr "Type de police" - -#: ../../include/functions_config.php:1449 -#: ../../enterprise/meta/include/functions_meta.php:1829 -#: ../../enterprise/meta/advanced/metasetup.visual.php:1077 -#: ../../enterprise/godmode/reporting/reporting_builder.advanced.php:153 -#: ../../enterprise/godmode/reporting/reporting_builder.template_advanced.php:142 -#: ../../godmode/setup/setup_visuals.php:1172 -msgid "Header" -msgstr "En-tĆŖte" - -#: ../../include/functions_config.php:1453 -#: ../../enterprise/meta/include/functions_meta.php:1839 -#: ../../enterprise/meta/advanced/metasetup.visual.php:1087 -#: ../../enterprise/godmode/reporting/reporting_builder.advanced.php:163 -#: ../../enterprise/godmode/reporting/reporting_builder.template_advanced.php:152 -#: ../../godmode/setup/setup_visuals.php:1192 -msgid "First page" -msgstr "PremiĆØre page" - -#: ../../include/functions_config.php:1457 -#: ../../enterprise/meta/include/functions_meta.php:1849 -#: ../../enterprise/godmode/reporting/reporting_builder.advanced.php:173 -#: ../../enterprise/godmode/reporting/reporting_builder.template_advanced.php:162 -#: ../../godmode/setup/setup_visuals.php:1208 -msgid "Footer" -msgstr "Pied de page" - -#: ../../include/functions_config.php:1461 -#: ../../enterprise/meta/include/functions_meta.php:1413 -#: ../../enterprise/meta/advanced/metasetup.visual.php:988 -#: ../../godmode/setup/setup_visuals.php:1400 -msgid "CSV divider" -msgstr "SĆ©parateur CSV" - -#: ../../include/functions_config.php:1465 -#: ../../enterprise/meta/include/functions_meta.php:1423 -#: ../../enterprise/meta/advanced/metasetup.visual.php:1028 -#: ../../godmode/setup/setup_visuals.php:1446 -msgid "CSV decimal separator" -msgstr "SĆ©parateur dĆ©cimale CSV" - -#: ../../include/functions_config.php:1469 -#: ../../enterprise/meta/include/functions_meta.php:1787 -msgid "Use data multiplier" -msgstr "Utiliser de mutiplicateur de donnĆ©es" - -#: ../../include/functions_config.php:1475 -#: ../../godmode/setup/setup_netflow.php:47 -msgid "Data storage path" -msgstr "Chemin de stockage de donnĆ©es" - -#: ../../include/functions_config.php:1479 -#: ../../godmode/setup/setup_netflow.php:50 -msgid "Daemon interval" -msgstr "Intervalle de dĆ©mon" - -#: ../../include/functions_config.php:1483 -#: ../../godmode/setup/setup_netflow.php:53 -msgid "Daemon binary path" -msgstr "Chemin binaire dĆ©mon" - -#: ../../include/functions_config.php:1487 -#: ../../godmode/setup/setup_netflow.php:56 -msgid "Nfdump binary path" -msgstr "Chemin binaire nfdump" - -#: ../../include/functions_config.php:1491 -#: ../../godmode/setup/setup_netflow.php:59 -msgid "Nfexpire binary path" -msgstr "Chemin binaire Nfexpire" - -#: ../../include/functions_config.php:1495 -#: ../../godmode/setup/setup_netflow.php:62 -msgid "Maximum chart resolution" -msgstr "RĆ©solution maximale du graphique" - -#: ../../include/functions_config.php:1499 -#: ../../enterprise/meta/advanced/metasetup.setup.php:218 -#: ../../godmode/setup/setup_netflow.php:65 -msgid "Disable custom live view filters" -msgstr "DĆ©sactiver les filtres personnalisĆ©s d'affichage en temps rĆ©el" - -#: ../../include/functions_config.php:1503 -#: ../../godmode/setup/setup_netflow.php:67 -msgid "Netflow max lifetime" -msgstr "DurĆ©e de vie maximale du Netflow" - -#: ../../include/functions_config.php:1507 -#: ../../godmode/setup/setup_netflow.php:70 -msgid "Name resolution for IP address" -msgstr "RĆ©solution du nom pour l'adresse IP" - -#: ../../include/functions_config.php:1513 -msgid "IP ElasticSearch server" -msgstr "IP du serveur ElasticSearch" - -#: ../../include/functions_config.php:1517 -msgid "Port ElasticSearch server" -msgstr "Port du serveur ElasticSearch" - -#: ../../include/functions_config.php:1521 -#: ../../enterprise/meta/include/functions_meta.php:490 -#: ../../enterprise/godmode/setup/setup_log_collector.php:41 -msgid "Number of logs viewed" -msgstr "Nombre de journaux visionnĆ©s" - -#: ../../include/functions_config.php:1525 -#: ../../enterprise/godmode/setup/setup_log_collector.php:44 -msgid "Days to purge old information" -msgstr "Nombre de jours avant nettoyage d'information ancienne" - -#: ../../include/functions_config.php:1538 -msgid "Active and historical database cannot be the same." -msgstr "" -"Les bases de donnĆ©es actives et historiques ne peuvent pas ĆŖtre identiques." - -#: ../../include/functions_config.php:1543 -#: ../../enterprise/godmode/setup/setup_history.php:159 -msgid "Host" -msgstr "HĆ“te" - -#: ../../include/functions_config.php:1556 -msgid "Enable history database" -msgstr "Activer la base de donnĆ©es de l'historique" - -#: ../../include/functions_config.php:1560 -msgid "Enable history event" -msgstr "Activer historique d'Ć©vĆ©nements" - -#: ../../include/functions_config.php:1564 -#: ../../enterprise/godmode/setup/setup_history.php:204 -msgid "Database user" -msgstr "Utilisateur de la base de donnĆ©es" - -#: ../../include/functions_config.php:1568 -#: ../../enterprise/godmode/setup/setup_history.php:219 -msgid "Database password" -msgstr "Mot de passe de la base de donnĆ©es" - -#: ../../include/functions_config.php:1576 -#: ../../enterprise/tools/ipam/ipam_editor.php:327 -#: ../../enterprise/include/ajax/ipam.ajax.php:521 -#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:104 -#: ../../godmode/alerts/alert_templates.php:73 -msgid "Days" -msgstr "Jours" - -#: ../../include/functions_config.php:1584 -msgid "Event Days" -msgstr "Jours d'Ć©vĆ©nements" - -#: ../../include/functions_config.php:1592 -#: ../../enterprise/include/class/CommandCenter.class.php:456 -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:746 -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:1051 -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:1146 -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:1496 -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:1781 -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2106 -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2537 -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2550 -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2878 -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:3055 -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:3145 -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:3184 -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:3249 -#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:465 -#: ../../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 -msgid "Step" -msgstr "Ɖtape" - -#: ../../include/functions_config.php:1600 -msgid "Delay" -msgstr "Retard" - -#: ../../include/functions_config.php:1632 -msgid "Historical database purge" -msgstr "Purge de la base de donnĆ©es historique" - -#: ../../include/functions_config.php:1640 -msgid "Historical database partitions" -msgstr "Partitions de base de donnĆ©es historiques" - -#: ../../include/functions_config.php:1648 -msgid "Historical database events purge" -msgstr "Purge des Ć©vĆ©nements de base de donnĆ©es historiques" - -#: ../../include/functions_config.php:1656 -msgid "Historical database string purge" -msgstr "Purge de la chaĆ®ne de la base de donnĆ©es historique" - -#: ../../include/functions_config.php:1667 -#: ../../godmode/setup/setup_ehorus.php:58 -msgid "Enable eHorus" -msgstr "Activer eHorus" - -#: ../../include/functions_config.php:1671 -msgid "eHorus user login" -msgstr "Connexion utilisateur eHorus" - -#: ../../include/functions_config.php:1675 -#: ../../godmode/users/configure_user.php:1308 -msgid "eHorus user" -msgstr "Utilisateur eHorus" - -#: ../../include/functions_config.php:1679 -#: ../../godmode/users/configure_user.php:1317 -msgid "eHorus password" -msgstr "Mot de passe eHorus" - -#: ../../include/functions_config.php:1683 -msgid "eHorus API hostname" -msgstr "Nom d'hĆ“te API eHorus" - -#: ../../include/functions_config.php:1687 -msgid "eHorus API port" -msgstr "Port API eHorus" - -#: ../../include/functions_config.php:1691 -msgid "eHorus request timeout" -msgstr "DĆ©lai de requĆŖte eHorus" - -#: ../../include/functions_config.php:1695 -msgid "eHorus id custom field" -msgstr "Identifiant du champ personnalisĆ© eHorus" - -#: ../../include/functions_config.php:1701 -msgid "Integria user login" -msgstr "Connexion utilisateur Integria" - -#: ../../include/functions_config.php:1705 -#: ../../godmode/setup/setup_integria.php:261 -msgid "Enable Integria IMS" -msgstr "Activer Integria IMS" - -#: ../../include/functions_config.php:1709 -msgid "Integria user" -msgstr "Utilisateur dā€™Integria" - -#: ../../include/functions_config.php:1713 -msgid "Integria password" -msgstr "Mot de passe dā€™Integria" - -#: ../../include/functions_config.php:1727 -msgid "integria API hostname" -msgstr "nom d'hĆ“te de l'API dā€™Integria" - -#: ../../include/functions_config.php:1735 -msgid "Integria request timeout" -msgstr "DĆ©lai d'expiration de la requĆŖte dā€™Integria" - -#: ../../include/functions_config.php:1739 -msgid "Integria default group" -msgstr "Groupe par dĆ©faut dā€™Integria" - -#: ../../include/functions_config.php:1743 -msgid "Integria custom response default group" -msgstr "Groupe par dĆ©faut de rĆ©ponse personnalisĆ©e dā€™Integria" - -#: ../../include/functions_config.php:1747 -msgid "Integria default priority" -msgstr "PrioritĆ© par dĆ©faut dā€™Integria" - -#: ../../include/functions_config.php:1751 -msgid "Integria custom response default priority" -msgstr "PrioritĆ© par dĆ©faut de la rĆ©ponse personnalisĆ©e dā€™Integria" - -#: ../../include/functions_config.php:1755 -msgid "Integria default creator" -msgstr "CrĆ©ateur par dĆ©faut dā€™Integria" - -#: ../../include/functions_config.php:1759 -msgid "Integria default owner" -msgstr "PropriĆ©taire par dĆ©faut dā€™Integria" - -#: ../../include/functions_config.php:1763 -msgid "Integria custom response default owner" -msgstr "PropriĆ©taire par dĆ©faut de la rĆ©ponse personnalisĆ©e dā€™Integria" - -#: ../../include/functions_config.php:1767 -msgid "Integria default ticket type" -msgstr "Type de ticket par dĆ©faut dā€™Integria" - -#: ../../include/functions_config.php:1771 -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:1775 -msgid "Integria default ticket status" -msgstr "Ɖtat du ticket par dĆ©faut d'Integria" - -#: ../../include/functions_config.php:1779 -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:1783 -msgid "Integria default ticket title" -msgstr "Titre du ticket par dĆ©faut dā€™Integria" - -#: ../../include/functions_config.php:1787 -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:1791 -msgid "Integria default ticket content" -msgstr "Contenu du ticket par dĆ©faut d'Integria" - -#: ../../include/functions_config.php:1795 -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:1801 -msgid "Module Library User" -msgstr "Utilisateur de la bibliothĆØque de modules" - -#: ../../include/functions_config.php:1805 -msgid "Module Library Password" -msgstr "Mot de passe de la bibliothĆØque de modules" - -#: ../../include/functions_config.php:1811 -msgid "WebSocket bind address" -msgstr "Adresse de liaison WebSocket" - -#: ../../include/functions_config.php:1815 -msgid "WebSocket port" -msgstr "Port WebSocket" - -#: ../../include/functions_config.php:1819 -#: ../../godmode/setup/setup_websocket_engine.php:67 -msgid "WebSocket proxy url" -msgstr "URL du proxy WebSocket" - -#: ../../include/functions_config.php:1838 -#, php-format -msgid "Failed updated: the next values cannot update:
    -%s" -msgstr "" -"Ɖchec de la mise Ć  jour : les valeurs suivantes ne peuvent pas ĆŖtre mises Ć  " -"jour :
    -%s" - -#: ../../include/functions_config.php:2414 ../../include/functions_ui.php:1729 -msgid "the Flexible Monitoring System" -msgstr "SystĆØme de surveillance flexible" - -#: ../../include/functions_config.php:2418 -msgid "PandoraFMS Metaconsole" -msgstr "MĆ©taconsole PandoraFMS" - -#: ../../include/functions_config.php:2422 -msgid "Centralized operation console" -msgstr "Console d'exploitation centralisĆ©e" - -#: ../../include/functions_config.php:2426 -msgid "PANDORA FMS" -msgstr "PANDORA FMS" - -#: ../../include/functions_config.php:2430 -#: ../../enterprise/include/reset_pass.php:146 -#: ../../enterprise/include/reset_pass.php:149 -#: ../../enterprise/include/process_reset_pass.php:159 -#: ../../enterprise/include/process_reset_pass.php:162 -msgid "ONE TOOL TO MONITOR THEM ALL" -msgstr "UN OUTIL POUR LES GOUVERNER TOUS" - -#: ../../include/functions_config.php:2470 -#: ../../enterprise/meta/general/login_page.php:209 -msgid "PANDORA FMS NEXT GENERATION" -msgstr "PANDORA FMS NEXT GENERATION" - -#: ../../include/functions_config.php:2474 -#: ../../enterprise/meta/general/login_page.php:217 -#: ../../enterprise/meta/include/reset_pass.php:147 -#: ../../enterprise/meta/include/process_reset_pass.php:150 -msgid "METACONSOLE" -msgstr "MƉTACONSOLE" - -#: ../../include/functions_alerts.php:477 -#: ../../enterprise/include/functions_policies.php:423 -#: ../../enterprise/include/functions_policies.php:438 -msgid "copy" -msgstr "copier" - -#: ../../include/functions_alerts.php:673 -#: ../../enterprise/godmode/massive/massive_delete_alerts_policy.php:138 -#: ../../enterprise/godmode/massive/massive_delete_alerts_policy.php:139 -#: ../../enterprise/godmode/massive/massive_add_alerts_policy.php:128 -#: ../../enterprise/godmode/massive/massive_add_alerts_policy.php:129 -msgid "Regular expression" -msgstr "Expression rĆ©guliĆØre" - -#: ../../include/functions_alerts.php:674 -msgid "Max and min" -msgstr "Max et min" - -#: ../../include/functions_alerts.php:677 -msgid "Equal to" -msgstr "Ɖgal Ć " - -#: ../../include/functions_alerts.php:678 -msgid "Not equal to" -msgstr "Pas Ć©gal Ć " - -#: ../../include/functions_alerts.php:679 ../../include/functions_treeview.php:96 -#: ../../enterprise/godmode/modules/configure_local_component.php:310 -#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:498 -#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:289 -#: ../../godmode/modules/manage_network_components_form_common.php:164 -#: ../../godmode/massive/massive_edit_modules.php:561 -msgid "Warning status" -msgstr "Ɖtat d'alerte" - -#: ../../include/functions_alerts.php:680 -#: ../../include/functions_treeview.php:108 -#: ../../enterprise/godmode/modules/configure_local_component.php:353 -#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:589 -#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:338 -#: ../../godmode/modules/manage_network_components_form_common.php:205 -#: ../../godmode/massive/massive_edit_modules.php:652 -msgid "Critical status" -msgstr "Ɖtat critique" - -#: ../../include/functions_alerts.php:681 -#: ../../enterprise/operation/agentes/wux_console_view.php:369 -#: ../../enterprise/operation/agentes/wux_console_view.php:373 -msgid "Unknown status" -msgstr "Ɖtat inconnu" - -#: ../../include/functions_alerts.php:682 -msgid "On Change" -msgstr "Changement en cours" - -#: ../../include/functions_alerts.php:683 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2360 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3328 -#: ../../enterprise/godmode/policies/policy_external_alerts.php:459 -#: ../../enterprise/godmode/policies/policy_alerts.php:428 -#: ../../godmode/alerts/alert_list.list.php:636 -#: ../../godmode/alerts/alert_view.php:234 -msgid "Always" -msgstr "Toujours" - -#: ../../include/functions_alerts.php:684 -msgid "Not normal status" -msgstr "Ɖtat pas normal" - -#: ../../include/functions_alerts.php:1685 -msgid "No actions defined" -msgstr "Aucune action dĆ©finie" - -#: ../../include/functions_alerts.php:2647 -#: ../../godmode/alerts/alert_commands.php:567 -msgid "No command specified" -msgstr "Aucune commande spĆ©cifiĆ©e." - -#: ../../include/functions_alerts.php:2652 -#: ../../godmode/alerts/alert_commands.php:563 -msgid "No name specified" -msgstr "Aucun nom indiquĆ©" - -#: ../../include/functions_alerts.php:2658 -msgid "Alert and command group does not match" -msgstr "Le groupe d'alerte et de commande ne correspond pas" - -#: ../../include/functions_snmp.php:65 -msgid "Load Average (Last minute)" -msgstr "Chargement moyen (derniĆØre minute)" - -#: ../../include/functions_snmp.php:69 -msgid "Load Average (Last 5 minutes)" -msgstr "Chargement moyen (derniĆØres 5 minutes)" - -#: ../../include/functions_snmp.php:73 -msgid "Load Average (Last 15 minutes)" -msgstr "Chargement moyen (derniĆØres 15 minutes)" - -#: ../../include/functions_snmp.php:77 -msgid "Total Swap Size configured for the host" -msgstr "Taille d'Ć©change total configurĆ©e pour l'hĆ“te" - -#: ../../include/functions_snmp.php:81 -msgid "Available Swap Space on the host" -msgstr "Espace d'Ć©change disponible pour l'hĆ“te" - -#: ../../include/functions_snmp.php:85 -msgid "Total Real/Physical Memory Size on the host" -msgstr "Taille de la mĆ©moire physique/rĆ©elle totale dans l'hĆ“te" - -#: ../../include/functions_snmp.php:89 -msgid "Available Real/Physical Memory Space on the host" -msgstr "Espace de la mĆ©moire physique/rĆ©elle totale dans l'hĆ“te" - -#: ../../include/functions_snmp.php:93 -msgid "Total Available Memory on the host" -msgstr "MĆ©moire disponible totale dans l'hĆ“te" - -#: ../../include/functions_snmp.php:97 -msgid "Total Cached Memory" -msgstr "MĆ©moire cachĆ©e totale" - -#: ../../include/functions_snmp.php:101 -msgid "Total Buffered Memory" -msgstr "MĆ©moire tampon totale" - -#: ../../include/functions_snmp.php:105 -msgid "Amount of memory swapped in from disk (kB/s)" -msgstr "QuantitĆ© de mĆ©moire Ć©changĆ©e Ć  partir du disque (ko/s)" - -#: ../../include/functions_snmp.php:109 -msgid "Amount of memory swapped to disk (kB/s)" -msgstr "QuantitĆ© de mĆ©moire Ć©changĆ©e au disque (ko/s)" - -#: ../../include/functions_snmp.php:113 -msgid "Number of blocks sent to a block device" -msgstr "Nombre de blocs envoyĆ©s Ć  un appareil" - -#: ../../include/functions_snmp.php:117 -msgid "Number of blocks received from a block device" -msgstr "Nombre de blocs reƧus Ć  partir d'un appareil" - -#: ../../include/functions_snmp.php:121 -msgid "Number of interrupts processed" -msgstr "Nombre d'interruptions traitĆ©es" - -#: ../../include/functions_snmp.php:125 -msgid "Number of context switches" -msgstr "Nombre de changements de contexte" - -#: ../../include/functions_snmp.php:129 -msgid "user CPU time" -msgstr "Temps d'UC de l'utilisateur" - -#: ../../include/functions_snmp.php:133 -msgid "system CPU time" -msgstr "Temps d'UC du systĆØme" - -#: ../../include/functions_snmp.php:137 -msgid "idle CPU time" -msgstr "Temps d'inactivitĆ© de l'UC" - -#: ../../include/functions_snmp.php:141 -msgid "system Up time" -msgstr "Temps d'activitĆ© de l'UC" - -#: ../../include/functions_snmp.php:349 -msgid "Pagination" -msgstr "Pagination" - -#: ../../include/functions_snmp.php:381 ../../include/functions_snmp.php:389 -msgid "Group by Enterprise String / IP" -msgstr "Regrouper par chaĆ®ne Enterprise / Adresse IP" - -#: ../../include/functions_snmp.php:402 ../../include/functions_html.php:2109 -#: ../../include/functions.php:504 ../../include/functions.php:635 -#: ../../enterprise/include/ajax/log_viewer.ajax.php:278 -#: ../../enterprise/meta/advanced/metasetup.visual.php:384 -#: ../../godmode/setup/setup_visuals.php:1344 -msgid "hours" -msgstr "heures" - -#: ../../include/functions_snmp.php:441 -#: ../../enterprise/include/functions_events.php:291 -msgid "Active filter" -msgstr "Filtre actif" - -#: ../../include/functions_snmp.php:441 -#: ../../enterprise/include/functions_events.php:291 -msgid "Active filters" -msgstr "Filtres actifs" - -#: ../../include/functions_menu.php:491 -msgid "Configure user" -msgstr "Configurer l'utilisateur" - -#: ../../include/functions_menu.php:492 -msgid "Configure profile" -msgstr "Configurer le profil" - -#: ../../include/functions_menu.php:494 -msgid "Module templates management" -msgstr "Gestion des modĆØles de module" - -#: ../../include/functions_menu.php:495 -msgid "Inventory modules management" -msgstr "Gestion des modules d'inventaire" - -#: ../../include/functions_menu.php:497 -#: ../../enterprise/meta/include/functions_agents_meta.php:614 -#: ../../enterprise/meta/include/functions_agents_meta.php:619 -#: ../../enterprise/extensions/disabled/check_acls.php:50 -#: ../../enterprise/extensions/disabled/check_acls.php:137 -msgid "Agents management" -msgstr "Gestion des agents" - -#: ../../include/functions_menu.php:499 -#: ../../godmode/alerts/configure_alert_template.php:99 -#: ../../godmode/alerts/configure_alert_template.php:123 -#: ../../godmode/alerts/configure_alert_template.php:155 -msgid "Configure alert template" -msgstr "Configurer le modĆØle d'alerte" - -#: ../../include/functions_menu.php:501 -#: ../../godmode/users/configure_profile.php:343 -msgid "View visual console" -msgstr "Afficher la console visuelle" - -#: ../../include/functions_menu.php:502 -msgid "Builder visual console" -msgstr "Outil de conception de la console visuelle" - -#: ../../include/functions_menu.php:504 -msgid "View reporting" -msgstr "Afficher le rapport" - -#: ../../include/functions_menu.php:505 -msgid "Graph viewer" -msgstr "Visualiseur de graphique" - -#: ../../include/functions_menu.php:507 -msgid "Manage custom graphs" -msgstr "GĆ©rer les graphiques personnalisĆ©s" - -#: ../../include/functions_menu.php:508 -msgid "View graph containers" -msgstr "Afficher conteneurs de graphiques" - -#: ../../include/functions_menu.php:509 -msgid "Manage graph containers" -msgstr "GĆ©rer conteneurs de graphiques" - -#: ../../include/functions_menu.php:510 -msgid "View graph templates" -msgstr "Afficher modĆØles de graphiques" - -#: ../../include/functions_menu.php:511 -msgid "Manage graph templates" -msgstr "GĆ©rer les modĆØles de graphiques" - -#: ../../include/functions_menu.php:512 -msgid "Graph template items" -msgstr "ƉlĆ©ments du modĆØle de graphiques" - -#: ../../include/functions_menu.php:513 -msgid "Graph template wizard" -msgstr "Assistant de modĆØles de graphiques" - -#: ../../include/functions_menu.php:514 -#: ../../enterprise/include/functions_reporting.php:124 -#: ../../enterprise/meta/general/main_menu.php:296 -#: ../../enterprise/meta/general/main_header.php:200 -msgid "Templates wizard" -msgstr "Assistant de modĆØles" - -#: ../../include/functions_menu.php:517 -msgid "Manage GIS Maps" -msgstr "GĆ©rer cartes GIS" - -#: ../../include/functions_menu.php:520 -msgid "Manage messages" -msgstr "GĆ©rer les messages" - -#: ../../include/functions_menu.php:522 -msgid "Manage module groups" -msgstr "GĆ©rer les groupes de modules" - -#: ../../include/functions_menu.php:523 -msgid "Manage custom field" -msgstr "GĆ©rer champ personnalisĆ©" - -#: ../../include/functions_menu.php:525 -msgid "Manage alert actions" -msgstr "GĆ©rer les actions d'alerte" - -#: ../../include/functions_menu.php:526 -msgid "Manage commands" -msgstr "GĆ©rer les commandes" - -#: ../../include/functions_menu.php:528 -msgid "Manage export targets" -msgstr "GĆ©rer les objectifs d'exportation" - -#: ../../include/functions_menu.php:533 -msgid "Manage incident" -msgstr "GĆ©rer l'incident" - -#: ../../include/functions_menu.php:535 -msgid "Manage groups" -msgstr "GĆ©rer les groupes" - -#: ../../include/functions_menu.php:536 -#: ../../enterprise/meta/advanced/component_management.php:52 -msgid "Tags management" -msgstr "Gestion des Ć©tiquettes" - -#: ../../include/functions_menu.php:595 -msgid "Administration" -msgstr "Administration" - -#: ../../include/functions_agents.php:836 -#: ../../enterprise/godmode/massive/massive_add_modules_policy.php:366 -#: ../../godmode/massive/massive_copy_modules.php:551 -msgid "No source agent to copy" -msgstr "Aucun agent source Ć  copier" - -#: ../../include/functions_agents.php:841 -#: ../../godmode/massive/massive_copy_modules.php:569 -msgid "No destiny agent(s) to copy" -msgstr "Aucun agent de destination Ć  copier" - -#: ../../include/functions_agents.php:867 -#: ../../enterprise/godmode/massive/massive_add_modules_policy.php:371 -#: ../../godmode/massive/massive_copy_modules.php:564 -msgid "No modules have been selected" -msgstr "Aucun module sĆ©lectionnĆ©" - -#: ../../include/functions_agents.php:1005 -msgid "" -"There was an error copying the agent configuration, the copy has been cancelled" -msgstr "Erreur de copie de la configuration de l'agent, la copie a Ć©tĆ© annulĆ©e." - -#: ../../include/functions_agents.php:1018 -#: ../../include/functions_planned_downtimes.php:961 -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:455 -#: ../../enterprise/godmode/policies/policies.php:235 -#: ../../godmode/reporting/map_builder.php:315 -#: ../../godmode/reporting/map_builder.php:322 -#: ../../godmode/reporting/reporting_builder.php:737 -#: ../../godmode/alerts/alert_actions.php:129 -#: ../../godmode/alerts/alert_commands.php:625 -msgid "Successfully copied" -msgstr "CopiĆ© correctement" - -#: ../../include/functions_agents.php:2963 -#: ../../include/functions_agents.php:3002 -#: ../../include/functions_agents.php:3073 -msgid "No Monitors" -msgstr "Aucun moniteur" - -#: ../../include/functions_agents.php:2971 -#: ../../include/functions_agents.php:3026 -#: ../../include/functions_agents.php:3081 -#: ../../include/functions_reporting.php:12303 -msgid "At least one module in CRITICAL status" -msgstr "Au moins un module en Ć©tat CRITIQUE" - -#: ../../include/functions_agents.php:2977 -#: ../../include/functions_agents.php:3036 -#: ../../include/functions_agents.php:3089 -#: ../../include/functions_reporting.php:12310 -msgid "At least one module in WARNING status" -msgstr "Au moins un module en Ć©tat d'ALERTE" - -#: ../../include/functions_agents.php:2983 -#: ../../include/functions_agents.php:3046 -#: ../../include/functions_agents.php:3097 -#: ../../include/functions_reporting.php:12317 -msgid "At least one module is in UKNOWN status" -msgstr "Au moins un module en Ć©tat INCONNU" - -#: ../../include/functions_agents.php:2989 -#: ../../include/functions_agents.php:3056 -#: ../../include/functions_agents.php:3105 -#: ../../include/functions_reporting.php:12324 -msgid "All Monitors OK" -msgstr "Tous les moniteurs OK" - -#: ../../include/functions_agents.php:3014 -msgid "Alert fired on agent" -msgstr "Alerte dĆ©clenchĆ©e dans lā€™agent" - -#: ../../include/functions_agents.php:3847 -#: ../../include/functions_agents.php:3901 -#: ../../include/functions_reporting_html.php:5565 -#: ../../enterprise/meta/monitoring/custom_fields_view.php:400 -msgid "Agents ok" -msgstr "Agents en Ć©tat OK" - -#: ../../include/functions_agents.php:3857 -#: ../../include/functions_reporting_html.php:5556 -#: ../../enterprise/meta/monitoring/custom_fields_view.php:374 -#: ../../mobile/operation/groups.php:153 -msgid "Agents critical" -msgstr "Agents en Ć©tat critique" - -#: ../../include/functions_agents.php:3867 -#: ../../include/functions_reporting_html.php:5559 -#: ../../enterprise/meta/monitoring/custom_fields_view.php:387 -msgid "Agents warning" -msgstr "Agents en Ć©tat d'alerte" - -#: ../../include/functions_agents.php:3877 -#: ../../include/functions_reporting_html.php:5568 -#: ../../enterprise/meta/monitoring/custom_fields_view.php:413 -#: ../../mobile/operation/groups.php:156 -msgid "Agents unknown" -msgstr "Agents inconnus" - -#: ../../include/functions_agents.php:3891 -#: ../../include/functions_reporting_html.php:5574 -#: ../../enterprise/meta/monitoring/custom_fields_view.php:426 -#: ../../mobile/operation/groups.php:150 -msgid "Agents not init" -msgstr "Agents non initialisĆ©s" - -#: ../../include/functions_agents.php:3997 -#: ../../enterprise/include/class/SAP.app.php:727 -msgid "SAP Login OK" -msgstr "Connexion SAP OK" - -#: ../../include/functions_agents.php:3998 -#: ../../enterprise/include/class/SAP.app.php:728 -msgid "SAP Dumps" -msgstr "Vidage SAP" - -#: ../../include/functions_agents.php:3999 -#: ../../enterprise/include/class/SAP.app.php:729 -msgid "SAP lock entry list" -msgstr "Liste des entrĆ©es de verrouillage SAP" - -#: ../../include/functions_agents.php:4000 -#: ../../enterprise/include/class/SAP.app.php:730 -msgid "SAP canceled Jobs" -msgstr "Travaux SAP annulĆ©s" - -#: ../../include/functions_agents.php:4001 -#: ../../enterprise/include/class/SAP.app.php:731 -msgid "SAP Batch inputs erroneous" -msgstr "EntrĆ©es par lot SAP erronĆ©es" - -#: ../../include/functions_agents.php:4002 -#: ../../enterprise/include/class/SAP.app.php:732 -msgid "SAP IDOC erroneous" -msgstr "IDOC SAP erronĆ©" - -#: ../../include/functions_agents.php:4003 -#: ../../enterprise/include/class/SAP.app.php:733 -msgid "SAP IDOC OK" -msgstr "IDOC SAP OK" - -#: ../../include/functions_agents.php:4004 -#: ../../enterprise/include/class/SAP.app.php:734 -msgid "SAP WP without active restart" -msgstr "SAP WB sans redĆ©marrage active" - -#: ../../include/functions_agents.php:4005 -#: ../../enterprise/include/class/SAP.app.php:735 -msgid "SAP WP stopped" -msgstr "SAP WP arrĆŖtĆ©" - -#: ../../include/functions_agents.php:4006 -#: ../../enterprise/include/class/SAP.app.php:736 -msgid "Average time of SAPGUI response" -msgstr "Moyenne de temps de rĆ©ponse de SAPGUI" - -#: ../../include/functions_agents.php:4007 -msgid "Dialog response time" -msgstr "Temps de rĆ©ponse du dialogue" - -#: ../../include/functions_agents.php:4008 -#: ../../enterprise/include/class/SAP.app.php:737 -msgid "Dialog Logged users" -msgstr "Utilisateurs connectĆ©s de dialogue" - -#: ../../include/functions_agents.php:4009 -#: ../../enterprise/include/class/SAP.app.php:738 -msgid "TRFC in error" -msgstr "TRFC en erreur" - -#: ../../include/functions_agents.php:4010 -#: ../../enterprise/include/class/SAP.app.php:739 -msgid "QRFC in error SMQ2" -msgstr "QRFC en erreur SMQ2" - -#: ../../include/functions_agents.php:4011 -#: ../../enterprise/include/class/SAP.app.php:740 -msgid "Number of Update WPs in error" -msgstr "Nombre de WPs de mise Ć  jour en erreur" - -#: ../../include/functions_network.php:34 -msgid "Top listeners" -msgstr "Top dā€™auditeurs" - -#: ../../include/functions_network.php:35 -msgid "Top talkers" -msgstr "Top dā€™appelants" - -#: ../../include/functions_network.php:45 -msgid "Top TCP protocols" -msgstr "Top de protocoles TCP" - -#: ../../include/functions_network.php:46 -msgid "Top UDP protocols" -msgstr "Top de protocoles UDP" - -#: ../../include/functions_notifications.php:807 -msgid "Subtype customization" -msgstr "Personnalisation des sous-types" - -#: ../../include/functions_notifications.php:834 -msgid "Notified users" -msgstr "Utilisateurs notifiĆ©s" - -#: ../../include/functions_notifications.php:834 -msgid "Notified groups" -msgstr "Groupes notifiĆ©s" - -#: ../../include/functions_notifications.php:835 -msgid "Add users" -msgstr "Ajouter des utilisateurs" - -#: ../../include/functions_notifications.php:835 -msgid "Add groups" -msgstr "Ajouter des groupes" - -#: ../../include/functions_notifications.php:836 -msgid "Delete users" -msgstr "Supprimer des utilisateurs" - -#: ../../include/functions_notifications.php:836 -msgid "Delete groups" -msgstr "Effacer des groups" - -#: ../../include/functions_notifications.php:928 -#: ../../enterprise/godmode/massive/massive_add_service_elements.php:616 -msgid "Add elements" -msgstr "Ajouter des Ć©lĆ©ments" - -#: ../../include/functions_notifications.php:941 -msgid "Remove elements" -msgstr "Supprimer des Ć©lĆ©ments" - -#: ../../include/functions_notifications.php:1058 -msgid "Click here to get more information" -msgstr "Cliquez ici pour obtenir plus dā€™informationā€¦" - -#: ../../include/functions_netflow.php:348 -#: ../../enterprise/include/functions_reporting_csv.php:2808 -msgid "Destination IP" -msgstr "IP Destination" - -#: ../../include/functions_netflow.php:350 -#: ../../enterprise/include/functions_reporting_csv.php:2808 -msgid "% Traffic" -msgstr "Trafic %" - -#: ../../include/functions_netflow.php:351 -msgid "Avg. Throughput" -msgstr "DĆ©bit moyen" - -#: ../../include/functions_netflow.php:416 -#: ../../enterprise/include/functions_reporting_csv.php:2680 -msgid "Total flows" -msgstr "Flux au total" - -#: ../../include/functions_netflow.php:421 -#: ../../enterprise/include/functions_reporting_csv.php:2680 -msgid "Total bytes" -msgstr "Octets au total :" - -#: ../../include/functions_netflow.php:426 -#: ../../enterprise/include/functions_reporting_csv.php:2680 -msgid "Total packets" -msgstr "Nombre total de progiciels" - -#: ../../include/functions_netflow.php:431 -msgid "Average bits per second" -msgstr "Moyenne de bits par seconde" - -#: ../../include/functions_netflow.php:436 -msgid "Average packets per second" -msgstr "Moyenne de progiciels par seconde" - -#: ../../include/functions_netflow.php:441 -msgid "Average bytes per packet" -msgstr "Moyenne d'octets par progiciel" - -#: ../../include/functions_netflow.php:1182 -msgid "Area graph" -msgstr "Graphique de zone" - -#: ../../include/functions_netflow.php:1185 -msgid "Top-N connections" -msgstr "Connexions Top-N" - -#: ../../include/functions_netflow.php:1186 -msgid "Circular mesh" -msgstr "Maille circulaire" - -#: ../../include/functions_netflow.php:1187 -#: ../../include/functions_netflow.php:1452 -msgid "Host detailed traffic" -msgstr "Trafic dĆ©taillĆ© de la machine" - -#: ../../include/functions_netflow.php:1439 -msgid "Sent" -msgstr "EnvoyĆ©" - -#: ../../include/functions_netflow.php:1447 -msgid "Received" -msgstr "ReƧu" - -#: ../../include/functions_netflow.php:1628 -msgid "Dst port" -msgstr "Port de destination" - -#: ../../include/functions_netflow.php:1631 -msgid "Dst IP" -msgstr "Adresse IP de destination" - -#: ../../include/functions_netflow.php:1634 -msgid "Src IP" -msgstr "Adresse IP source" - -#: ../../include/functions_netflow.php:1637 -msgid "Src port" -msgstr "Port source" - -#: ../../include/functions_netflow.php:1823 -#, php-format -msgid "nfdump binary (%s) not found!" -msgstr "nfdump binary (%s) non retrouvĆ©" - -#: ../../include/functions_netflow.php:1830 -msgid "Make sure nfdump version 1.6.8 or newer is installed!" -msgstr "" -"Assurez-vous que la version nfdump 1.6.8 ou une plus rĆ©cente est installĆ©e !" - -#: ../../include/functions_netflow.php:1847 -msgid "High" -msgstr "ƉlevĆ©" - -#: ../../include/functions_netflow.php:1848 -msgid "Ultra High" -msgstr "TrĆØs Ć©levĆ©" - -#: ../../include/functions_netflow.php:1849 -#: ../../enterprise/include/functions_cron.php:500 -msgid "Hourly" -msgstr "Toutes les heures" - -#: ../../include/functions_netflow.php:1850 -#: ../../enterprise/include/functions_cron.php:501 -#: ../../enterprise/include/lib/NetworkManager.php:178 -#: ../../godmode/agentes/module_manager_editor_prediction.php:183 -msgid "Daily" -msgstr "Tous les jours" - -#: ../../include/functions_netflow.php:1881 -#, php-format -msgid "Agregate by %s" -msgstr "AgrĆ©ger par %s" - -#: ../../include/functions_netflow.php:1889 -#, php-format -msgid "Resolution %s" -msgstr "RĆ©solution %s" - -#: ../../include/functions_servers.php:556 -#: ../../include/functions_servers.php:1305 -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:386 -msgid "Data server" -msgstr "Serveur de donnĆ©es" - -#: ../../include/functions_servers.php:582 -msgid "SNMP Trap server" -msgstr "Serveur de dĆ©routements SNMP" - -#: ../../include/functions_servers.php:621 -#: ../../enterprise/include/lib/ClusterViewer/ClusterWizard.php:840 -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:476 -msgid "Prediction server" -msgstr "Serveur de prĆ©diction" - -#: ../../include/functions_servers.php:647 -#: ../../include/functions_servers.php:1332 -#: ../../enterprise/godmode/servers/manage_export_form.php:79 -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:537 -msgid "Export server" -msgstr "Exporter le serveur" - -#: ../../include/functions_servers.php:660 -#: ../../include/functions_servers.php:1335 -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:522 -msgid "Inventory server" -msgstr "Serveur d'inventaire" - -#: ../../include/functions_servers.php:673 -#: ../../include/functions_servers.php:1329 -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:507 -msgid "Web server" -msgstr "Serveur web" - -#: ../../include/functions_servers.php:686 -#: ../../include/functions_servers.php:1338 -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:552 -msgid "Event server" -msgstr "Serveur d'Ć©vĆ©nements" - -#: ../../include/functions_servers.php:699 -msgid "Correlation server" -msgstr "Serveur de corrĆ©lation" - -#: ../../include/functions_servers.php:712 -#: ../../include/functions_servers.php:1314 -msgid "Enterprise ICMP server" -msgstr "Serveur ICMP Enterprise" - -#: ../../include/functions_servers.php:725 -#: ../../include/functions_servers.php:1317 -msgid "Enterprise SNMP server" -msgstr "Serveur SNMP Enterprise" - -#: ../../include/functions_servers.php:751 -msgid "Enterprise Transactional server" -msgstr "Serveur de Transaction Enterprise" - -#: ../../include/functions_servers.php:764 -msgid "Mainframe server" -msgstr "Serveur central" - -#: ../../include/functions_servers.php:777 -msgid "Sync server" -msgstr "Serveur sync" - -#: ../../include/functions_servers.php:790 -msgid "Wux server" -msgstr "Serveur WUX" - -#: ../../include/functions_servers.php:803 -#: ../../include/functions_servers.php:1344 -msgid "Log server" -msgstr "Serveur de journaux" - -#: ../../include/functions_servers.php:816 -#: ../../include/functions_servers.php:1359 -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:612 -msgid "NCM server" -msgstr "serveur NCM" - -#: ../../include/functions_servers.php:829 -msgid "Autoprovision server" -msgstr "Serveur de provisionnement automatique" - -#: ../../include/functions_servers.php:842 -msgid "Migration server" -msgstr "Serveur de migration" - -#: ../../include/functions_servers.php:855 -#: ../../include/functions_servers.php:1356 -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:416 -msgid "Alert server" -msgstr "Serveur dā€™alertes" - -#: ../../include/functions_servers.php:1311 -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:582 -msgid "SNMP server" -msgstr "Serveur SNMP" - -#: ../../include/functions_servers.php:1323 -msgid "Prediction Server" -msgstr "Serveur de prĆ©diction" - -#: ../../include/functions_servers.php:1347 -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:597 -msgid "WUX server" -msgstr "Serveur WUX" - -#: ../../include/functions_servers.php:1350 -msgid "Satellite server" -msgstr "Serveur Satellite" - -#: ../../include/functions_servers.php:1353 -msgid "Transactional server" -msgstr "Serveur transactionnel" - -#: ../../include/functions_clippy.php:152 -#, php-format -msgid "%s assistant" -msgstr "Assistant %s" - -#: ../../include/functions_clippy.php:189 ../../include/functions_clippy.php:194 -msgid "End wizard" -msgstr "Fermer l'assistant logiciel" - -#: ../../include/functions_clippy.php:227 -msgid "Next →" -msgstr "Suivant &rarr ;" - -#: ../../include/functions_clippy.php:228 -msgid "← Back" -msgstr "&larr ; PrĆ©cĆ©dent" - -#: ../../include/functions_clippy.php:240 -msgid "Do you want to exit the help tour?" -msgstr "Voulez-vous quitter la visite d'aide ?" - -#: ../../include/functions_api.php:118 -msgid "Not `set`, `get` or `help` operation selected." -msgstr "Aucune opĆ©ration `set`, `get` ou `help` sĆ©lectionnĆ©e." - -#: ../../include/functions_api.php:128 -msgid "This operation does not exist." -msgstr "Cette opĆ©ration n'existe pas." - -#: ../../include/functions_api.php:138 -msgid "The Id does not exist in database." -msgstr "Lā€™ID n'existe pas dans la base de donnĆ©es." - -#: ../../include/functions_api.php:148 -msgid "This operation can not be used in cluster elements." -msgstr "Cette opĆ©ration ne peut pas ĆŖtre utilisĆ©e dans les Ć©lĆ©ments de grappe." - -#: ../../include/functions_api.php:158 -msgid "The user has not enough permissions for perform this action." -msgstr "L'utilisateur n'a pas assez d'autorisations pour effectuer cette action." - -#: ../../include/functions_api.php:168 -#: ../../enterprise/meta/monitoring/custom_fields_view.php:719 -msgid "No data to show." -msgstr "Aucune donnĆ©e Ć  afficher." - -#: ../../include/functions_api.php:178 -msgid "" -"This console is not the environment administrator. Please, manage this feature " -"from centralized manager console (Metaconsole)." -msgstr "" -"Cette console n'est pas l'administrateur de l'environnement. Veuillez gĆ©rer " -"cette fonctionnalitĆ© Ć  partir de la console de gestion centralisĆ©e " -"(MĆ©taconsole)." - -#: ../../include/functions_api.php:188 -msgid "Auth error" -msgstr "Erreur d'authentification" - -#: ../../include/functions_api.php:1473 -msgid "" -"The agent could not be modified. For security reasons, use a group other than " -"0." -msgstr "" -"L'agent n'a pas pu ĆŖtre modifiĆ©. Pour des raisons de sĆ©curitĆ©, utilisez un " -"groupe autre que 0." - -#: ../../include/functions_api.php:1828 -#, php-format -msgid "Updated %d/%d agents" -msgstr "Agents %d/%d mis Ć  jour" - -#: ../../include/functions_api.php:1836 -msgid "Agent updated." -msgstr "Agent mis Ć  jour." - -#: ../../include/functions_api.php:2025 ../../godmode/setup/os.php:238 -msgid "Success creating OS" -msgstr "SystĆØme d'exploitation dĆ©fini correctement" - -#: ../../include/functions_api.php:2027 -msgid "Could not create OS" -msgstr "Impossible de crĆ©er le systĆØme d'exploitation" - -#: ../../include/functions_api.php:2064 ../../godmode/setup/os.php:246 -msgid "Success updating OS" -msgstr "Mise Ć  jour rĆ©ussie du systĆØme d'exploitation" - -#: ../../include/functions_api.php:2066 -msgid "Could not update OS" -msgstr "Impossible de mettre Ć  jour le systĆØme dā€™exploitation" - -#: ../../include/functions_api.php:2267 -msgid "The agent was successfully deleted" -msgstr "L'agent a Ć©tĆ© supprimĆ© correctement" - -#: ../../include/functions_api.php:3762 -msgid "Network module updated." -msgstr "Module de rĆ©seau mis Ć  jour." - -#: ../../include/functions_api.php:4058 -msgid "Plugin module updated." -msgstr "Module plugin mis Ć  jour." - -#: ../../include/functions_api.php:4414 -#, php-format -msgid "Synthetic module created ID: %s" -msgstr "ID de crĆ©ation du module synthĆ©tiqueĀ : %s" - -#: ../../include/functions_api.php:4567 -msgid "Synthetic module created ID: " -msgstr "Identifiant du module synthĆ©tique crĆ©Ć© correctement : " - -#: ../../include/functions_api.php:4684 -msgid "Data module updated." -msgstr "DonnĆ©es de module mises Ć  jour correctement" - -#: ../../include/functions_api.php:5057 -msgid "SNMP module updated." -msgstr "Module SNMP mis Ć  jour correctement" - -#: ../../include/functions_api.php:5664 -msgid "Error creating alert template. Id_group cannot be left blank." -msgstr "" -"Erreur lors de la crĆ©ation du modĆØle d'alerte. Id_group ne peut pas ĆŖtre " -"laissĆ© vide." - -#: ../../include/functions_api.php:5678 -msgid "" -"Error creating alert template. Invalid id_group or the user has not enough " -"permission to make this action." -msgstr "" -"Erreur lors de la crĆ©ation du modĆØle d'alerte. id_group non valide ou " -"l'utilisateur n'a pas assez d'autorisation pour effectuer cette action." - -#: ../../include/functions_api.php:5824 -msgid "" -"Error updating alert template. Invalid id_group or the user has not enough " -"permission to make this action." -msgstr "" -"Erreur lors de la mise Ć  jour du modĆØle d'alerte. id_group non valide ou " -"l'utilisateur n'a pas assez d'autorisation pour effectuer cette action." - -#: ../../include/functions_api.php:5908 -msgid "Successful update of the alert template" -msgstr "Mise Ć  jour rĆ©ussie du modĆØle d'alerte" - -#: ../../include/functions_api.php:5956 -msgid "Error deleting alert template. Id_template doesn't exist." -msgstr "" -"Erreur lors de la suppression du modĆØle d'alerte. Id_template n'existe pas." - -#: ../../include/functions_api.php:5985 -msgid "Successful delete of alert template." -msgstr "Suppression rĆ©ussie du modĆØle d'alerte." - -#: ../../include/functions_api.php:6405 ../../include/functions_api.php:12354 -#: ../../include/functions_api.php:12420 ../../include/functions_api.php:12701 -#: ../../include/functions_api.php:12781 -#, php-format -msgid "%d agents affected" -msgstr "%dĀ agents concernĆ©s" - -#: ../../include/functions_api.php:6551 -msgid "Correct deleting of module template." -msgstr "ModĆØle de module supprimĆ© correctement" - -#: ../../include/functions_api.php:6659 -msgid "Successful delete of module template." -msgstr "Suppression rĆ©ussie du modĆØle de module." - -#: ../../include/functions_api.php:6692 -msgid "Error validating alert. Id_template cannot be left blank." -msgstr "" -"Erreur lors de la validation de l'alerte. Id_template ne peut pas ĆŖtre laissĆ© " -"vide." - -#: ../../include/functions_api.php:6700 -msgid "Error validating alert. Id_agent cannot be left blank." -msgstr "" -"Erreur lors de la validation de l'alerte. Id_agent ne peut pas ĆŖtre laissĆ© " -"vide." - -#: ../../include/functions_api.php:6708 -msgid "Error validating alert. Id_module cannot be left blank." -msgstr "" -"Erreur lors de la validation de l'alerte. Id_module ne peut pas ĆŖtre laissĆ© " -"vide." - -#: ../../include/functions_api.php:6779 -msgid "Error validating alert. Specified alert does not exist." -msgstr "" -"Erreur lors de la validation de l'alerte. L'alerte spĆ©cifiĆ©e n'existe pas." - -#: ../../include/functions_api.php:6790 -msgid "Error validating alert" -msgstr "Erreur lors de la validation de l'alerte" - -#: ../../include/functions_api.php:6864 -#, php-format -msgid "Correct validation of all alerts (total %d)." -msgstr "Validation correcte de toutes les alertes (total %d)." - -#: ../../include/functions_api.php:6958 -msgid "Correct validation of all policy alerts." -msgstr "Validation correcte de toutes les alertes de politique." - -#: ../../include/functions_api.php:7000 -msgid "" -"Error stopping downtime. Periodical and running scheduled downtime cannot be " -"stopped." -msgstr "" -"Erreur lors de l'arrĆŖt du temps d'arrĆŖt. Les temps d'arrĆŖt pĆ©riodiques et en " -"cours d'exĆ©cution ne peuvent pas ĆŖtre arrĆŖtĆ©s." - -#: ../../include/functions_api.php:7013 -msgid "Downtime stopped." -msgstr "Temps d'arrĆŖt interrompu" - -#: ../../include/functions_api.php:7495 -msgid "and this modules are doesn't exists or not applicable a this agents: " -msgstr "et ce module n'existe pas ou n'est pas applicable Ć  ces agents : " - -#: ../../include/functions_api.php:7499 -msgid "and this agents are generate problems: " -msgstr "et ces agents gĆ©nĆØrent des problĆØmes : " - -#: ../../include/functions_api.php:7503 -msgid "and this agents with ids are doesn't exists: " -msgstr "et ces agents avec des identifiants n'existent pas : " - -#: ../../include/functions_api.php:7651 -msgid "Planned downtime updated" -msgstr "Temps d'arrĆŖt planifiĆ© mis Ć  jour" - -#: ../../include/functions_api.php:7727 -msgid " Agents deleted" -msgstr " Agents supprimĆ©s" - -#: ../../include/functions_api.php:7808 -msgid " Agents added" -msgstr " Agents ajoutĆ©s" - -#: ../../include/functions_api.php:7928 -msgid "Data policy module updated." -msgstr "Politique de module de donnĆ©es mise Ć  jour" - -#: ../../include/functions_api.php:8161 -msgid "Network policy module updated." -msgstr "Module de politique de rĆ©seau mis Ć  jour correctement" - -#: ../../include/functions_api.php:8418 -msgid "Plugin policy module updated." -msgstr "Module de politique de plugin mis Ć  jour correctement" - -#: ../../include/functions_api.php:8927 -msgid "SNMP policy module updated." -msgstr "Module de politique SNMP mis Ć  jour correctement" - -#: ../../include/functions_api.php:9272 -msgid "Successful deletion" -msgstr "Suppression rĆ©ussie" - -#: ../../include/functions_api.php:9588 -msgid "User created." -msgstr "Utilisateur crĆ©Ć©." - -#: ../../include/functions_api.php:9683 -msgid "User updated." -msgstr "Utilisateur mis Ć  jour." - -#: ../../include/functions_api.php:9762 -msgid "Enabled user." -msgstr "Utilisateur activĆ©" - -#: ../../include/functions_api.php:9770 -msgid "Disabled user." -msgstr "Utilisateur dĆ©sactivĆ©" - -#: ../../include/functions_api.php:10067 -#, 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:10239 -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:10379 -#, php-format -msgid "Module has been created in %d agents." -msgstr "Le module a Ć©tĆ© crĆ©Ć© dans %dĀ agents." - -#: ../../include/functions_api.php:10509 -#, php-format -msgid "Action has been set for %d agents." -msgstr "Une action a Ć©tĆ© dĆ©finie pour %dĀ agents." - -#: ../../include/functions_api.php:11165 -#: ../../godmode/agentes/configurar_agente.php:2236 -#, php-format -msgid "Save by %s Console" -msgstr "Enregistrer par Console %s" - -#: ../../include/functions_api.php:11166 -#: ../../godmode/agentes/configurar_agente.php:2254 -#, php-format -msgid "Update by %s Console" -msgstr "Mise Ć  jour parĀ Console %s" - -#: ../../include/functions_api.php:11167 -#: ../../godmode/agentes/configurar_agente.php:2270 -#, php-format -msgid "Insert by %s Console" -msgstr "InsĆ©rer par Console %s" - -#: ../../include/functions_api.php:11944 -msgid "User deleted." -msgstr "Utilisateur supprimĆ©." - -#: ../../include/functions_api.php:12005 -msgid "User profile added." -msgstr "Profil dā€™utilisateur ajoutĆ©." - -#: ../../include/functions_api.php:12072 -msgid "User profile deleted." -msgstr "Profil dā€™utilisateur supprimĆ©." - -#: ../../include/functions_api.php:12361 -msgid "Module disabled successfully." -msgstr "Module dĆ©sactivĆ© correctement." - -#: ../../include/functions_api.php:12363 -msgid "The module could not be disabled." -msgstr "Erreur de dĆ©sactivation du module." - -#: ../../include/functions_api.php:12427 -msgid "Module enabled successfully." -msgstr "Module activĆ© correctement." - -#: ../../include/functions_api.php:12429 -msgid "The module could not be enabled." -msgstr "Erreur d'activation du module." - -#: ../../include/functions_api.php:12477 ../../include/functions_api.php:12530 -msgid "The alert could not be disabled." -msgstr "Erreur de dĆ©sactivation de lā€™alerte." - -#: ../../include/functions_api.php:12577 ../../include/functions_api.php:12630 -msgid "The alert could not be enabled." -msgstr "L'alerte n'a pas pu ĆŖtre activĆ©e." - -#: ../../include/functions_api.php:13902 -msgid "Enabled agent." -msgstr "Agent activĆ©" - -#: ../../include/functions_api.php:13910 -msgid "Disabled agent." -msgstr "Agent dĆ©sactivĆ©" - -#: ../../include/functions_api.php:14889 -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:14891 -#, 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:14894 -msgid "This function is for metaconsole only." -msgstr "Cette fonction est rĆ©servĆ©e Ć  la MĆ©taconsole." - -#: ../../include/functions_api.php:15279 ../../include/functions_api.php:15350 -msgid "Successfully deleted." -msgstr "SupprimĆ© correctement" - -#: ../../include/functions_api.php:15309 -msgid "The user cannot access the cluster." -msgstr "L'utilisateur ne peut pas accĆ©der au grappe." - -#: ../../include/functions_api.php:15403 -#: ../../godmode/agentes/agent_template.php:67 -msgid "Created by template " -msgstr "CrĆ©Ć© par modĆØle " - -#: ../../include/functions_api.php:15497 -#: ../../godmode/agentes/agent_template.php:163 -msgid "Modules successfully added" -msgstr "Modules ajoutĆ©s correctement" - -#: ../../include/functions_api.php:16195 -msgid "Event filter successfully created." -msgstr "Filtre d'Ć©vĆ©nement crĆ©Ć© correctement." - -#: ../../include/functions_api.php:16428 -msgid "Event filter successfully updated." -msgstr "Filtre d'Ć©vĆ©nement mis Ć  jour correctement." - -#: ../../include/functions_api.php:16469 -msgid "Event filter successfully deleted." -msgstr "Filtre d'Ć©vĆ©nement supprimĆ© correctement." - -#: ../../include/functions_api.php:16785 -msgid "Validated traps." -msgstr "Traps validĆ©s." - -#: ../../include/functions_api.php:16812 -msgid "Deleted traps." -msgstr "Traps supprimĆ©s." - -#: ../../include/functions_api.php:17005 -#, 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:17007 -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:17459 -#, 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:17619 -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:17627 -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:17652 -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:17660 -msgid "Enabled discovery task." -msgstr "TĆ¢che de dĆ©couverte activĆ©e." - -#: ../../include/functions_api.php:17668 -msgid "Disabled discovery task." -msgstr "TĆ¢che de dĆ©couverte dĆ©sactivĆ©e." +#: ../../include/functions_reporting.php:15192 +msgid "report" +msgstr "rapport" #: ../../include/functions_filemanager.php:135 #: ../../include/functions_filemanager.php:192 @@ -23142,12 +47165,6 @@ msgstr "Erreur de crĆ©ation du fichier" msgid "Error creating file with empty name" msgstr "Erreur de crĆ©ation du fichier avec un nom vide" -#: ../../include/functions_filemanager.php:296 -#: ../../enterprise/meta/advanced/collections.editor.php:167 -#: ../../enterprise/godmode/agentes/collections.editor.php:198 -msgid "Security error." -msgstr "Erreur de sĆ©curitĆ©" - #: ../../include/functions_filemanager.php:311 msgid "Directory created" msgstr "RĆ©pertoire crĆ©Ć© correctement" @@ -23156,14 +47173,6 @@ msgstr "RĆ©pertoire crĆ©Ć© correctement" msgid "Something gone wrong creating directory" msgstr "Une erreur s'est produite lors de la crĆ©ation du rĆ©pertoire" -#: ../../include/functions_filemanager.php:342 -#: ../../include/functions_filemanager.php:359 -#: ../../include/functions_reporting_html.php:1691 -#: ../../enterprise/include/functions_inventory.php:891 -#: ../../enterprise/include/functions_inventory.php:956 -msgid "Deleted" -msgstr "SupprimĆ©" - #: ../../include/functions_filemanager.php:539 #: ../../include/functions_filemanager.php:775 msgid "Create a Directory" @@ -23186,17 +47195,6 @@ msgstr "TĆ©lĆ©charger des fichiers" msgid "Directory %s doesn't exist!" msgstr "Le rĆ©pertoire %s n'existe pas !" -#: ../../include/functions_filemanager.php:590 -#: ../../godmode/setup/file_manager.php:66 ../../godmode/servers/plugin.php:235 -#, php-format -msgid "Index of %s" -msgstr "Index de %s" - -#: ../../include/functions_filemanager.php:605 -#: ../../extensions/files_repo/files_repo_list.php:58 -msgid "Last modification" -msgstr "DerniĆØre modification" - #: ../../include/functions_filemanager.php:623 msgid "Parent directory" msgstr "RĆ©pertoire parent" @@ -23222,15 +47220,6 @@ msgstr "Ce fichier peut ĆŖtre exĆ©cutĆ© par n'importe quel utilisateur" msgid "Make sure it can't perform dangerous tasks" msgstr "Assurez-vous qu'il ne peut pas effectuer des tĆ¢ches dangereuses." -#: ../../include/functions_filemanager.php:737 -#: ../../enterprise/meta/advanced/collections.editor.php:125 -#: ../../enterprise/meta/advanced/collections.editor.php:193 -#: ../../enterprise/godmode/agentes/collections.editor.php:158 -#: ../../enterprise/godmode/agentes/collections.editor.php:224 -#: ../../godmode/servers/plugin.php:173 -msgid "Edit file" -msgstr "Modifier le fichier" - #: ../../include/functions_filemanager.php:758 msgid "No files or directories to show." msgstr "Aucun fichier ou rĆ©pertoire Ć  afficher." @@ -23249,12 +47238,6 @@ msgstr "" msgid "Decompress" msgstr "DĆ©compresser" -#: ../../include/functions_filemanager.php:853 -#: ../../enterprise/include/class/CSVImportAgents.class.php:198 -#: ../../enterprise/extensions/csv_import_group/main.php:105 -msgid "Go" -msgstr "ExĆ©cuter" - #: ../../include/functions_filemanager.php:910 msgid "Create text" msgstr "CrĆ©er un texte" @@ -23267,619 +47250,614 @@ msgstr "TĆ©lĆ©verser fichier(s)" msgid "The directory is read-only" msgstr "Ce rĆ©pertoire est seulement accessible en lecture." -#: ../../include/functions_treeview.php:52 -msgid "There was a problem loading module" -msgstr "Erreur de chargement du module" +#: ../../include/functions_tags.php:712 +msgid "Click here to open a popup window with URL tag" +msgstr "Cliquez ici pour ouvrir une fenĆŖtre pop-up avec l'Ć©tiquette de l'URL" -#: ../../include/functions_treeview.php:90 -#: ../../include/functions_treeview.php:102 -#: ../../enterprise/godmode/modules/configure_local_component.php:329 -#: ../../enterprise/godmode/modules/configure_local_component.php:372 -#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:532 -#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:623 -#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:323 -#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:372 -#: ../../godmode/modules/manage_network_components_form_common.php:183 -#: ../../godmode/modules/manage_network_components_form_common.php:224 -#: ../../godmode/massive/massive_edit_modules.php:595 -#: ../../godmode/massive/massive_edit_modules.php:686 -#: ../../godmode/agentes/module_manager_editor_common.php:444 -#: ../../godmode/agentes/module_manager_editor_common.php:505 -msgid "Str." -msgstr "ChaĆ®ne" - -#: ../../include/functions_treeview.php:315 -#: ../../include/graphs/functions_flot.php:509 -#: ../../include/functions_reporting_html.php:655 -#: ../../include/functions_reporting_html.php:4416 -msgid "No data" -msgstr "Aucune donnĆ©e" - -#: ../../include/functions_treeview.php:342 -msgid "Go to module edition" -msgstr "AccĆ©der Ć  l'Ć©dition de modules" - -#: ../../include/functions_treeview.php:393 -msgid "There was a problem loading alerts" -msgstr "Erreur de chargement des alertes" - -#: ../../include/functions_treeview.php:454 -#: ../../include/functions_reporting_html.php:5086 -#: ../../include/functions_reporting_html.php:5208 -#: ../../godmode/snmpconsole/snmp_alert.php:1271 -msgid "Times fired" -msgstr "Nombre de fois dĆ©clenchĆ©e" - -#: ../../include/functions_treeview.php:478 -msgid "Go to alerts edition" -msgstr "AccĆ©der Ć  l'Ć©dition d'alertes" - -#: ../../include/functions_treeview.php:676 -msgid "Next agent contact" -msgstr "Suivant contact avec l'agent" - -#: ../../include/functions_treeview.php:703 -msgid "Edit cluster" -msgstr "Modifier le cluster" - -#: ../../include/functions_treeview.php:707 -msgid "Go to agent edition" -msgstr "AccĆ©der Ć  l'Ć©dition de l'agent" - -#: ../../include/functions_treeview.php:719 -msgid "Agent data" -msgstr "DonnĆ©es de l'agent" - -#: ../../include/functions_treeview.php:799 -msgid "Advanced information" -msgstr "Informations avancĆ©es" - -#: ../../include/functions_treeview.php:812 -msgid "Agent access rate (24h)" -msgstr "AccessibilitĆ© de l'agent (24h)" - -#: ../../include/functions_treeview.php:831 ../../mobile/operation/agent.php:268 -msgid "Events (24h)" -msgstr "ƉvĆ©nements (24h)" - -#: ../../include/functions_treeview.php:901 -msgid "Interface information" -msgstr "Informations d'interface" - -#: ../../include/functions_container.php:148 -#: ../../godmode/reporting/graphs.php:312 -msgid "Number of Graphs" -msgstr "Nombre de graphiques" - -#: ../../include/help/clippy/godmode_alerts_alert_actions.php:35 -msgid "" -"Let me show you how to create an email action: Click on Create button and fill " -"the form showed in the following screen." -msgstr "" -"Laissez-moi vous montrer comment crĆ©er une action courriel : cliquez sur le " -"bouton Ā« CrĆ©er Ā» et remplissez le formulaire affichĆ© sur l'Ć©cran suivant." - -#: ../../include/help/clippy/godmode_alerts_alert_actions.php:49 -msgid "" -"Now, you have to go to the monitors list and look for a critical module to " -"apply the alert." -msgstr "" -"Maintenant il faut aller Ć  la liste de moniteurs et rechercher un module en " -"Ć©tat critique pour appliquer l'alerte." - -#: ../../include/help/clippy/godmode_alerts_alert_actions.php:54 -msgid "" -"Click on the arrow to drop down the Monitoring submenu and select Monitor " -"Detail." -msgstr "" -"Cliquez sur la flĆØche pour dĆ©rouler le sous-menu de Surveillance et " -"sĆ©lectionnez sur DĆ©tail du moniteur." - -#: ../../include/help/clippy/topology_group.php:35 -msgid "Topology Group" -msgstr "Groupe topologie" - -#: ../../include/help/clippy/topology_group.php:35 -msgid "" -"Please note that group topology maps do not show the parent relationship " -"between nodes, it only shows the group parentship and the agent distribution " -"inside them. " -msgstr "" -"Sachez que le groupe de cartes de topologie n'affiche pas la relation parents " -"entre les nœuds ; il affiche seulement la relation des groupes et la " -"distribution des agents. " - -#: ../../include/help/clippy/data_configuration_module.php:35 -msgid "Data Configuration Module." -msgstr "DonnĆ©es de configuration de modules" - -#: ../../include/help/clippy/data_configuration_module.php:35 -msgid "" -"Please note that information provided here affects how the agent collect " -"information and generate the data XML. Any data/configuration reported by the " -"agent, different from data or description is discarded, and the configuration " -"shown in the console prevails over any configuration coming from the agent, " -"this applies for example for crit/warn thresholds, interval, module group, min/" -"max value, tags, etc." -msgstr "" -"Sachez que l'information fournie ici affecte comment l'agent recueille " -"l'information et gĆ©nĆØre des donnĆ©es XML. N'importe quelle donnĆ©e/configuration " -"signalĆ©e par l'agent diffĆ©rente des donnĆ©es ou de la description sera rejetĆ©e, " -"et la configuration affichĆ©e dans la console l'emportera sur toute " -"configuration provenant de l'agent. Ceci s'applique aux seuils critique/" -"alerte, intervalles, groupes de modules, valeur min/max, Ć©tiquettes, etc." - -#: ../../include/help/clippy/data_configuration_module.php:35 -msgid "" -"Information imported FIRST time from the XML will fill the information you can " -"see in the console, but after the first import, system will ignore any update " -"coming from the XML/Agent." -msgstr "" -"L'information importĆ©e pour la PREMIƈRE fois Ć  partir de XML remplit " -"l'information que vous pouvez voir sur la console, mais aprĆØs la premiĆØre " -"importation, le systĆØme ignore toute mise Ć  jour provenant de XML/agent." - -#: ../../include/help/clippy/homepage.php:75 -msgid "Hi, can I help you?" -msgstr "Bonjour, je peux vous aider ?" - -#: ../../include/help/clippy/homepage.php:75 +#: ../../include/lib/Dashboard/Manager.php:600 #, php-format -msgid "" -"Let me introduce my self: I am Pandorin, the annoying assistant of %s. You can " -"follow my steps to do basic tasks in %s or you can close me and never see me " -"again." -msgstr "" -"Permettez-moi de me prĆ©senterĀ : je suis Pandorin, l'assistant ennuyeux de %s. " -"Vous pouvez suivre mes Ć©tapes pour effectuer des tĆ¢ches de base dans %s ou " -"vous pouvez me fermer et ne plus jamais me revoir." +msgid "Copy of %s" +msgstr "Copie de %s" -#: ../../include/help/clippy/homepage.php:75 -msgid "Close this wizard and don't open it again." -msgstr "Fermer cet assistant et ne plus jamais l'ouvrir." +#: ../../include/lib/Dashboard/Manager.php:989 +msgid "Error create or update dashboard" +msgstr "Erreur lors de la crĆ©ation ou de la mise Ć  jour du tableau de bord" -#: ../../include/help/clippy/homepage.php:79 -msgid "Which task would you like to do first?" -msgstr "Quelle tĆ¢che voulez-vous effectuer en premier ?" +#: ../../include/lib/Dashboard/Manager.php:1470 +msgid "Icon image dashboard" +msgstr "Tableau de bord des images d'icĆ“nes" -#: ../../include/help/clippy/homepage.php:79 +#: ../../include/lib/Dashboard/Widget.php:459 +#: ../../include/lib/Dashboard/Widgets/maps_made_by_user.php:238 +#: ../../include/lib/Dashboard/Widgets/maps_made_by_user.php:322 +#: ../../include/lib/Dashboard/Widgets/reports.php:285 #, php-format -msgid "Ping a Linux or Windows server using a %s agent." -msgstr "Pingez un serveur Linux ou Windows Ć  l'aide d'un agent %s." +msgid "Failed to connect to node %d" +msgstr "Ɖchec de la connexion au nœud %d" -#: ../../include/help/clippy/homepage.php:79 -msgid "Create a alert by email in a critical module." -msgstr "CrĆ©er une alerte par courriel dans un module critique." +#: ../../include/lib/Dashboard/Widget.php:474 +#: ../../include/lib/Dashboard/Widgets/agent_module.php:640 +msgid "Please configure this widget before usage" +msgstr "Veuillez configurer le widget avant de l'utiliser" -#: ../../include/help/clippy/homepage.php:190 +#: ../../include/lib/Dashboard/Widget.php:482 +msgid "Widget cannot be loaded" +msgstr "Le widget ne peut pas ĆŖtre chargĆ©" + +#: ../../include/lib/Dashboard/Widget.php:482 +msgid "Please, configure the widget again to recover it" +msgstr "Veuillez le reconfigurer encore une fois" + +#: ../../include/lib/Dashboard/Widgets/groups_status.php:158 +#: ../../include/lib/Dashboard/Widgets/groups_status.php:499 +msgid "General group status" +msgstr "Ɖtat gĆ©nĆ©ral du groupe" + +#: ../../include/lib/Dashboard/Widgets/groups_status.php:453 +msgid "Not agents in this group" +msgstr "Aucun agent dans ce groupe" + +#: ../../include/lib/Dashboard/Widgets/system_group_status.php:158 +#: ../../include/lib/Dashboard/Widgets/system_group_status.php:622 +msgid "Groups status" +msgstr "Ɖtats des groupes" + +#: ../../include/lib/Dashboard/Widgets/system_group_status.php:314 +msgid "Alert Fired" +msgstr "Alerte dĆ©clenchĆ©e" + +#: ../../include/lib/Dashboard/Widgets/system_group_status.php:522 +msgid "Modules in normal status" +msgstr "Modules en Ć©tat normal" + +#: ../../include/lib/Dashboard/Widgets/system_group_status.php:538 +msgid "Modules in warning status" +msgstr "Modules en Ć©tat d'alerte" + +#: ../../include/lib/Dashboard/Widgets/system_group_status.php:555 +msgid "Modules in critical status" +msgstr "Modules en Ć©tat critique" + +#: ../../include/lib/Dashboard/Widgets/system_group_status.php:601 +msgid "No modules in selected groups" +msgstr "Aucun module dans les groupes sĆ©lectionnĆ©s" + +#: ../../include/lib/Dashboard/Widgets/sla_percent.php:174 +#: ../../include/lib/Dashboard/Widgets/sla_percent.php:482 +msgid "SLA percentage" +msgstr "Pourcentage SLA" + +#: ../../include/lib/Dashboard/Widgets/sla_percent.php:344 +#: ../../include/lib/Dashboard/Widgets/module_icon.php:411 +#: ../../include/lib/Dashboard/Widgets/module_value.php:325 +msgid "Text size of value in px" +msgstr "Taille du texte de la valeur en px" + +#: ../../include/lib/Dashboard/Widgets/sla_percent.php:356 +#: ../../include/lib/Dashboard/Widgets/module_icon.php:423 +#: ../../include/lib/Dashboard/Widgets/module_value.php:337 +#: ../../include/lib/Dashboard/Widgets/module_table_value.php:301 +#: ../../include/lib/Dashboard/Widgets/graph_module_histogram.php:335 +#: ../../include/lib/Dashboard/Widgets/module_status.php:401 +msgid "Text size of label in px" +msgstr "Taille du texte de l'Ć©tiquette en px" + +#: ../../include/lib/Dashboard/Widgets/sla_percent.php:413 +#: ../../include/lib/Dashboard/Widgets/sla_percent.php:424 +#: ../../include/lib/Dashboard/Widgets/events_list.php:528 +#: ../../include/lib/Dashboard/Widgets/agent_module.php:665 +msgid "You don't have access" +msgstr "Vous n'avez pas accĆØs." + +#: ../../include/lib/Dashboard/Widgets/post.php:158 +#: ../../include/lib/Dashboard/Widgets/post.php:276 +msgid "Panel with a message" +msgstr "Panneau avec un message" + +#: ../../include/lib/Dashboard/Widgets/BlockHistogram.php:172 +#: ../../include/lib/Dashboard/Widgets/BlockHistogram.php:632 +msgid "Block histogram" +msgstr "Histogramme de bloc" + +#: ../../include/lib/Dashboard/Widgets/BlockHistogram.php:266 +msgid "Font color" +msgstr "Couleur de la police" + +#: ../../include/lib/Dashboard/Widgets/BlockHistogram.php:280 +#: ../../include/lib/Dashboard/Widgets/ColorModuleTabs.php:256 +msgid "Agent / module" +msgstr "Agent / module" + +#: ../../include/lib/Dashboard/Widgets/BlockHistogram.php:457 +#: ../../include/lib/Dashboard/Widgets/ColorModuleTabs.php:408 +msgid "Not found modules" +msgstr "Modules introuvables" + +#: ../../include/lib/Dashboard/Widgets/service_view.php:190 +msgid "Service View" +msgstr "Vue de service" + +#: ../../include/lib/Dashboard/Widgets/service_view.php:246 +msgid "Tree" +msgstr "Arbre" + +#: ../../include/lib/Dashboard/Widgets/service_view.php:298 +#: ../../include/lib/Dashboard/Widgets/service_map.php:368 +msgid "The user doesn't have permission to read agents" +msgstr "L'utilisateur n'a pas accĆØs en lecture aux agents." + +#: ../../include/lib/Dashboard/Widgets/service_view.php:456 +msgid "Services view" +msgstr "Vue des Services" + +#: ../../include/lib/Dashboard/Widgets/maps_status.php:158 +#: ../../include/lib/Dashboard/Widgets/maps_status.php:388 +msgid "General visual maps report" +msgstr "Rapport gĆ©nĆ©ral des cartes visuelles" + +#: ../../include/lib/Dashboard/Widgets/maps_status.php:263 +msgid "Maps" +msgstr "Cartes" + +#: ../../include/lib/Dashboard/Widgets/example.php:158 +#: ../../include/lib/Dashboard/Widgets/example.php:277 #, php-format +msgid "Welcome message to %s" +msgstr "Message de bienvenue Ć  %s" + +#: ../../include/lib/Dashboard/Widgets/example.php:245 +#: ../../general/login_help_dialog.php:39 +#, php-format +msgid "Welcome to %s" +msgstr "Bienvenue Ć  %s" + +#: ../../include/lib/Dashboard/Widgets/example.php:249 +msgid "This is an example of a dashboard widget. A widget may contain elements" +msgstr "" +"Ceci est un exemple de widget de panneau de configuration. Un widget peut " +"contenir des Ć©lĆ©ments." + +#: ../../include/lib/Dashboard/Widgets/example.php:250 msgid "" -"The first thing you have to do is to setup the e-mail config on the %s Server." +"To add more elements, click on \"Add widgets\" on the top of this page." msgstr "" -"La premiĆØre chose Ć  faire est de configurer la configuration de la messagerie " -"sur le serveur %s." +"Pour ajouter d'autres Ć©lĆ©ments, cliquez sur Ā« Ajouter les widgets Ā» en " +"haut de cette page." -#: ../../include/help/clippy/homepage.php:190 -msgid "If you have it already configured you can go to the next step." -msgstr "Si vous l'avez dĆ©jĆ  configurĆ©, vous pouvez passer Ć  l'Ć©tape suivante." - -#: ../../include/help/clippy/homepage.php:195 -msgid "Now, pull down the Manage alerts menu and click on Actions. " -msgstr "" -"Maintenant, dĆ©roulez le menu Ā« GĆ©rer les alertes Ā» et cliquez sur Ā« Actions Ā». " - -#: ../../include/help/clippy/godmode_agentes_configurar_agente.php:34 -msgid "Now you must go to Modules. Don't worry I'll lead you." -msgstr "" -"Veuillez vous diriger vers les Modules. Pas de soucis, je vais vous guider." - -#: ../../include/help/clippy/godmode_agentes_configurar_agente.php:39 -msgid "Click in this tab.." -msgstr "Cliquez sur cet onglet..." - -#: ../../include/help/clippy/godmode_agentes_configurar_agente.php:53 -msgid "Now you must create the module. Don't worry, i'll teach you." -msgstr "" -"Maintenant vous devez crĆ©er le module. Pas de soucis, je vous montre comment " -"faire." - -#: ../../include/help/clippy/godmode_agentes_configurar_agente.php:57 -msgid "Choose the network server module." -msgstr "Choisissez le module du serveur du rĆ©seau" - -#: ../../include/help/clippy/godmode_agentes_configurar_agente.php:61 -msgid "And click the button." -msgstr "et cliquez sur le bouton." - -#: ../../include/help/clippy/godmode_agentes_configurar_agente.php:75 -msgid "Now you must create the module. Don't worry, i'll teach you ." -msgstr "" -"Maintenant vous devez crĆ©er le module. Pas de soucis, je vous montre comment " -"faire." - -#: ../../include/help/clippy/godmode_agentes_configurar_agente.php:79 -msgid "Now we are going to fill the form." -msgstr "Maintenant, nous allons remplir le formulaire." - -#: ../../include/help/clippy/godmode_agentes_configurar_agente.php:83 -msgid "Please choose Network Management." -msgstr "Veuillez sĆ©lectionner Gestionnaire de rĆ©seau." - -#: ../../include/help/clippy/godmode_agentes_configurar_agente.php:87 -msgid "Choose the component named \"Host alive\"." -msgstr "Choisissez le composant appelĆ© Ā« Host alive Ā»." - -#: ../../include/help/clippy/godmode_agentes_configurar_agente.php:91 -msgid "You can change the name if you want." -msgstr "Vous pouvez modifier le nom si vous voulez." - -#: ../../include/help/clippy/godmode_agentes_configurar_agente.php:95 -msgid "Check if the IP showed is the IP of your machine." -msgstr "VĆ©rifiez que l'adresse IP affichĆ©e soit celle de votre machine." - -#: ../../include/help/clippy/godmode_agentes_configurar_agente.php:99 -msgid "And only to finish it is clicking this button." -msgstr "Et pour terminer, cliquez sur ce bouton." - -#: ../../include/help/clippy/godmode_agentes_configurar_agente.php:114 +#: ../../include/lib/Dashboard/Widgets/example.php:251 +#: ../../include/lib/Dashboard/Widgets/example.php:253 msgid "" -"Congrats! Your module has been created.
    and the status color is blue." -"
    That color means that the module hasn't been executed for the first " -"time. In the next seconds, if there is no problem, the status color will turn " -"into red or green." +"To delete this message, click on the delete button on top right corner of this " +"element." msgstr "" -"FƩlicitations ! Votre module a ƩtƩ crƩƩ
    et la couleur de l'Ć©tat est " -"bleu.
    Cette couleur veut dire que le module n'a pas encore Ć©tĆ© " -"exĆ©cutĆ© pour la premiĆØre fois ; s'il y a un problĆØme, la couleur devient " -"rouge ou vert." +"Pour effacer ce message, cliquez sur le bouton Supprimer en haut Ć  droite de cet " +"Ć©lĆ©ment." -#: ../../include/help/clippy/godmode_agentes_configurar_agente.php:119 -#: ../../include/help/clippy/operation_agentes_ver_agente.php:40 -#: ../../godmode/wizards/DiscoveryTaskList.class.php:1837 -#: ../../godmode/wizards/DiscoveryTaskList.class.php:1843 -msgid "Done" -msgstr "TerminĆ©" - -#: ../../include/help/clippy/godmode_agentes_configurar_agente.php:129 -msgid "Click on alerts tab and then fill the form to add an alert." +#: ../../include/lib/Dashboard/Widgets/example.php:252 +msgid "To do so, just click on the title and drag and drop it to the desired place." msgstr "" -"Cliquez sur l'onglet alertes et remplissez le formulaire pour ajouter une " -"alerte." +"Pour ce faire, il suffit de cliquer sur le titre et de le glisser Ć  l'endroit " +"dĆ©sirĆ©." -#: ../../include/help/clippy/godmode_agentes_configurar_agente.php:143 -msgid "Select the critical module." -msgstr "SĆ©lectionnez le module en Ć©tat critique." +#: ../../include/lib/Dashboard/Widgets/example.php:254 +#, php-format +msgid "Thanks for using %s." +msgstr "Merci d'utiliser %s." -#: ../../include/help/clippy/godmode_agentes_configurar_agente.php:147 -msgid "In template select \"Critical Condition\"." -msgstr "Dans le modĆØle, sĆ©lectionnez Ā« Ɖtat critique Ā»." +#: ../../include/lib/Dashboard/Widgets/monitor_health.php:158 +#: ../../include/lib/Dashboard/Widgets/monitor_health.php:337 +msgid "Global health info" +msgstr "Information gĆ©nĆ©rale de santĆ©" -#: ../../include/help/clippy/godmode_agentes_configurar_agente.php:151 -msgid "Now, select the action created before." -msgstr "Maintenant, sĆ©lectionnez l'action crĆ©Ć©e prĆ©cĆ©demment." +#: ../../include/lib/Dashboard/Widgets/network_map.php:172 +#: ../../include/lib/Dashboard/Widgets/network_map.php:478 +#: ../../operation/menu.php:165 +msgid "Network map" +msgstr "Carte de rĆ©seau" -#: ../../include/help/clippy/godmode_agentes_configurar_agente.php:156 -msgid "Click on Add Alert button to create the alert." -msgstr "Cliquez sur le bouton Ā« Ajouter alerte Ā» pour crĆ©er l'alerte." - -#: ../../include/help/clippy/godmode_agentes_configurar_agente.php:171 -msgid "" -"To test the alert you've just created go to the main view by clicking on the " -"eye tab." +#: ../../include/lib/Dashboard/Widgets/network_map.php:258 +msgid "It is recommended to have only one such widget in the control panel." msgstr "" -"Pour tester l'alerte que vous venez de crĆ©er, allez Ć  la page principale en " -"cliquant sur l'icĆ“ne en forme dā€™Å“il." - -#: ../../include/help/clippy/servers_down.php:35 -msgid "All servers down" -msgstr "Tous les serveurs en panne" - -#: ../../include/help/clippy/servers_down.php:35 -msgid "" -"Can you up all servers. You go to terminal in linux and execute the next " -"command: \"sudo /etc/init.d/pandora_server restart\". It's possible need " -"introduce root pass." -msgstr "" -"Vous pouvez activer tous les serveurs. Vous devez aller au terminal de Linux " -"et exĆ©cuter la commande suivante : \"sudo /etc/init.d/pandora_server restart" -"\". Vous aurez peut-ĆŖtre besoin d'introduire le mot de passe du segment racine." - -#: ../../include/help/clippy/extension_cron_send_email.php:35 -msgid "The configuration of email for the task email is in the enterprise setup:" -msgstr "" -"La configuration du courriel pour la tĆ¢che courriel se trouve dans la " -"configuration Enterprise :" - -#: ../../include/help/clippy/extension_cron_send_email.php:35 -msgid "Please check if the email configuration is correct." -msgstr "Veuillez vĆ©rifier que la configuration du courriel est correcte." - -#: ../../include/help/clippy/module_unknow.php:35 -msgid "You have unknown modules in this agent." -msgstr "Vous avez des modules inconnus dans cet agent." - -#: ../../include/help/clippy/module_unknow.php:35 -msgid "" -"Unknown modules are modules which receive data normally at least in one " -"occassion, but at this time are not receving data. Please check our " -"troubleshoot help page to help you determine why you have unknown modules." -msgstr "" -"Les modules inconnus sont des modules qui reƧoivent des donnĆ©es au moins une " -"fois. Cependant, ils ne reƧoivent pas de donnĆ©es en ce moment. Veuillez " -"vĆ©rifier notre page d'aide au dĆ©pannage pour vous aider Ć  dĆ©terminer pourquoi " -"vous avez des modules inconnus." - -#: ../../include/help/clippy/modules_not_init.php:35 -msgid "You have non initialized modules" -msgstr "Vous avez des modules non initialisĆ©s." - -#: ../../include/help/clippy/modules_not_init.php:35 -msgid "" -"This happen when you have just created a module and it's not executed at first " -"time. Usually in a few seconds should be initialized and you will be able to " -"see in main view. If you keep non-init modules for more than 24hr (due a " -"problem in it's execution or configuration) they will be automatically deleted " -"by the system. Non-init are not visible in the Ć¢Ā€Āœmain viewĆ¢Ā€Ā, you can see/edit " -"them in the module administration section, in the agent administrator." -msgstr "" -"Ceci arrive quand vous avez crĆ©Ć© un module et il n'a pas encore Ć©tĆ© exĆ©cutĆ© " -"pour la premiĆØre fois. Normalement, il devrait ĆŖtre initialisĆ© dans quelques " -"secondes pour que vous puissiez voir le menu principal. Si vous gardez des " -"modules non initialisĆ©s pendant plus de 24h (dĆ» Ć  un problĆØme d'exĆ©cution ou " -"de configuration), ils seront supprimĆ©s automatiquement du systĆØme. Les " -"modules non initialisĆ©s ne sont pas visibles sur la page principale ; vous " -"pouvez les voir ou les Ć©diter dans la section d'administration de modules, " -"dans l'administrateur d'agents." - -#: ../../include/help/clippy/godmode_alerts_configure_alert_action.php:34 -msgid "Fill the name of your action." -msgstr "Introduisez le nom de votre action." - -#: ../../include/help/clippy/godmode_alerts_configure_alert_action.php:38 -msgid "" -"Select the group in the drop-down list and filter for ACL (the user in this " -"group can use your action to create an alert)." -msgstr "" -"SĆ©lectionnez le groupe dans la liste du menu dĆ©roulant et filtrez pour ACL " -"(l'utilisateur dans ce groupe peut utiliser votre action pour une alerte)." - -#: ../../include/help/clippy/godmode_alerts_configure_alert_action.php:42 -msgid "In the command field select \"email\"." -msgstr "Dans le champ de commande sĆ©lectionnez Ā« courriel Ā»." - -#: ../../include/help/clippy/godmode_alerts_configure_alert_action.php:46 -msgid "" -"In the threshold field enter the seconds. The help icon show more information." -msgstr "" -"Dans le champ seuil, introduisez les secondes. L'icĆ“ne d'aide montre plus " -"d'informations." - -#: ../../include/help/clippy/godmode_alerts_configure_alert_action.php:51 -msgid "" -"In the first field enter the email address/addresses where you want to receive " -"the email alerts separated with comas ( , ) or white spaces." -msgstr "" -"Dans le premier champ introduisez l'adresse ou les adresses courriel oĆ¹ vous " -"voulez recevoir les alertes courriel, sĆ©parĆ©es par des virgules (,) ou des " -"espaces." - -#: ../../include/help/clippy/godmode_alerts_configure_alert_action.php:56 -msgid "" -"In the \"Subject\" field you can use the macros _agent_ or _module_ for each " -"name." -msgstr "" -"Dans le champ Ā« Objet Ā», vous pouvez utiliser les macros _agent_ ou _module_ " -"pour chaque nom." - -#: ../../include/help/clippy/godmode_alerts_configure_alert_action.php:61 -msgid "" -"In the text field, you can also use macros. Get more information about the " -"macros by clicking on the help icon." -msgstr "" -"Dans le champ suivant, vous pouvez aussi utiliser des macros. Vous pouvez " -"obtenir plus d'information sur les macros en cliquant sur l'icĆ“ne d'aide." - -#: ../../include/help/clippy/godmode_alerts_configure_alert_action.php:66 -msgid "Click on Create button to create the action." -msgstr "Cliquez sur le bouton Ā« CrĆ©er Ā» pour crĆ©er une action." - -#: ../../include/help/clippy/interval_agent_min.php:35 -msgid "Interval Agent." -msgstr "Intervalle de l'agent." - -#: ../../include/help/clippy/interval_agent_min.php:35 -msgid "" -"Please note that having agents with a monitoring interval below 300 seconds is " -"not recommended. This will impact seriously in the performance of the server. " -"For example, having 200 agents with one minute interval, is the same than " -"having 1000 agents with a 5 minute interval. The probability of getting " -"unknown modules is higher, and the impact on the server is higher because it " -"requires a shorter response time." -msgstr "" -"Sachez qu'il n'est pas conseillĆ© d'avoir des agents avec un intervalle de " -"surveillance infĆ©rieur Ć  300 secondes. Ceci pourrait affecter sĆ©rieusement la " -"performance du serveur. Par exemple, avoir 200 agents avec un intervalle d'une " -"minute Ć©quivaut Ć  avoir 1000 agents avec un intervalle de 5 minutes. La " -"probabilitĆ© d'obtenir des modules inconnus est plus Ć©levĆ©e et l'impact sur le " -"serveur est plus sĆ©rieux parce qu'il nĆ©cessite un temps de rĆ©ponse plus court." - -#: ../../include/help/clippy/server_queued_modules.php:35 -msgid "Excesive Queued." -msgstr "File d'attente de modules excessive" - -#: ../../include/help/clippy/server_queued_modules.php:35 -msgid "" -"You have too much items in the processing queue. This can happen if your " -"server is too loaded and/or not properly configured. This could be something " -"temporal, or a bottleneck. One possible solution is increase number of server " -"threads, but you should consider getting support about this." -msgstr "" -"Vous avez trop d'articles dans la file d'attente de traitement. Cela peut se " -"produire si votre serveur est trop chargĆ© et/ou pas configurĆ© correctement. Il " -"pourrait s'agir d'un problĆØme temporaire ou un engorgement. Une solution " -"possible c'est d'augmenter le nombre de threads du serveur, mais vous devriez " -"penser Ć  chercher de l'aide." - -#: ../../include/help/clippy/modules_not_learning_mode.php:46 -msgid "" -"Please note that you have your agent setup to do not add new modules coming " -"from the data XML." -msgstr "" -"Sachez que si le mode apprentissage n'est pas activĆ©, vous ne pourrez pas " -"ajouter de nouveaux modules provenant des donnĆ©es XML." - -#: ../../include/help/clippy/modules_not_learning_mode.php:46 -msgid "" -"That means if you have a local plugin or add manually new modules to the " -"configuration file, you won't have it in your agent, unless you first create " -"manually in the interface (with the exact name and type as coming in the XML " -"file)." -msgstr "" -"Ceci veut dire que si vous avez un plugin local ou que vous ajoutez " -"manuellement de nouveaux modules au fichier de configuration, il ne se " -"trouveront pas dans votre agent, sauf si vous les crĆ©ez d'abord manuellement " -"dans l'interface (avec le nom et le type identique Ć  celui sur le fichier XML)." - -#: ../../include/help/clippy/modules_not_learning_mode.php:46 -msgid "" -"You should use the \"normal\" mode (non learn) only when you don't intend to " -"add more modules to the agent." -msgstr "" -"Vous devriez utiliser le mode Ā« normal Ā» (non apprentissage) seulement quand " -"vous n'avez pas l'intention d'ajouter plus de modules Ć  l'agent." - -#: ../../include/help/clippy/operation_agentes_ver_agente.php:35 -msgid "" -"The last step is to check the alert created. Click on the round icon to force " -"the action execution and after a few minutes you will receive the alert in " -"your email." -msgstr "" -"Pour la derniĆØre Ć©tape, il faut vĆ©rifier l'alerte crĆ©Ć©e. Cliquez sur l'icĆ“ne " -"ronde pour forcer l'exĆ©cution de l'action et aprĆØs quelques minutes vous " -"recevrez l'alerte dans votre courriel." - -#: ../../include/help/clippy/operation_agentes_ver_agente.php:35 -msgid "" -"And restart your pandora server to read again general configuration tokens." -msgstr "" -"RedĆ©marrez votre serveur Pandora FMS pour relire les tokens gĆ©nĆ©raux de " +"Il est recommandĆ© de nā€™avoir quā€™un seul widget de ce type dans le panneau de " "configuration." -#: ../../include/help/clippy/agent_out_of_limits.php:35 -msgid "Agent contact date passed it's ETA!." -msgstr "La date de contact de l'agent a dĆ©passĆ© le dĆ©lai estimĆ© !" +#: ../../include/lib/Dashboard/Widgets/network_map.php:335 +msgid "Introduce x-axis data. Right=positive Left=negative" +msgstr "Introduire les donnĆ©es sur l'axe X. Droite = positif Gauche = nĆ©gatif." -#: ../../include/help/clippy/agent_out_of_limits.php:35 +#: ../../include/lib/Dashboard/Widgets/network_map.php:339 +msgid "X offset" +msgstr "Offset en X" + +#: ../../include/lib/Dashboard/Widgets/network_map.php:350 +msgid "Introduce Y-axis data. Top=positive Bottom=negative" +msgstr "Introduire les donnĆ©es sur l'axe Y. En haut = positif En bas = nĆ©gatif." + +#: ../../include/lib/Dashboard/Widgets/network_map.php:354 +msgid "Y offset" +msgstr "Offset en Y" + +#: ../../include/lib/Dashboard/Widgets/network_map.php:378 +msgid "Zoom level" +msgstr "Niveau de zoom" + +#: ../../include/lib/Dashboard/Widgets/alerts_fired.php:162 +#: ../../include/lib/Dashboard/Widgets/alerts_fired.php:360 +msgid "Triggered alerts report" +msgstr "Rapport d'alertes dĆ©clenchĆ©es" + +#: ../../include/lib/Dashboard/Widgets/alerts_fired.php:333 +msgid "Not alert fired" +msgstr "Pas d'alerte dĆ©clenchĆ©e" + +#: ../../include/lib/Dashboard/Widgets/alerts_fired.php:342 +#: ../../include/lib/Dashboard/Widgets/events_list.php:521 +msgid "You must select some group" +msgstr "SĆ©lectionnez un groupe" + +#: ../../include/lib/Dashboard/Widgets/events_list.php:175 +#: ../../include/lib/Dashboard/Widgets/events_list.php:702 +msgid "List of latest events" +msgstr "Liste des derniers Ć©vĆ©nements" + +#: ../../include/lib/Dashboard/Widgets/events_list.php:305 +msgid "Custom filters" +msgstr "Filtres personnalisĆ©s" + +#: ../../include/lib/Dashboard/Widgets/events_list.php:370 +msgid "Limit" +msgstr "Limite" + +#: ../../include/lib/Dashboard/Widgets/events_list.php:383 +#: ../../include/functions_events.php:2976 ../../include/functions_events.php:2982 +#: ../../include/functions_events.php:3004 +msgid "All event" +msgstr "Tous les Ć©vĆ©nements" + +#: ../../include/lib/Dashboard/Widgets/events_list.php:384 +#: ../../include/functions_events.php:2978 ../../include/functions_events.php:3012 +msgid "Only validated" +msgstr "Seulement les Ć©vĆ©nements validĆ©s" + +#: ../../include/lib/Dashboard/Widgets/events_list.php:385 +msgid "Only pending" +msgstr "Seulement ceux en attente" + +#: ../../include/lib/Dashboard/Widgets/wux_transaction_stats.php:172 +#: ../../include/lib/Dashboard/Widgets/wux_transaction_stats.php:378 +msgid "WUX transaction stats" +msgstr "Statistiques des transactions WUX" + +#: ../../include/lib/Dashboard/Widgets/wux_transaction_stats.php:270 +#: ../../include/lib/Dashboard/Widgets/wux_transaction.php:259 +msgid "Wux transaction" +msgstr "Transaction WUX" + +#: ../../include/lib/Dashboard/Widgets/wux_transaction_stats.php:288 +msgid "View all statistics" +msgstr "Voir toutes les statistiques" + +#: ../../include/lib/Dashboard/Widgets/module_icon.php:178 +#: ../../include/lib/Dashboard/Widgets/module_icon.php:540 +msgid "Icon and module value" +msgstr "IcĆ“ne et valeur du module" + +#: ../../include/lib/Dashboard/Widgets/module_icon.php:435 +#: ../../include/lib/Dashboard/Widgets/module_status.php:413 +msgid "Size of icon" +msgstr "Taille de l'icĆ“ne" + +#: ../../include/lib/Dashboard/Widgets/url.php:158 +#: ../../include/lib/Dashboard/Widgets/url.php:286 +msgid "URL content" +msgstr "Contenu de l'URL" + +#: ../../include/lib/Dashboard/Widgets/url.php:263 +msgid "Please, configure this widget before use" +msgstr "Veuillez configurer ce widget avant de l'utiliser." + +#: ../../include/lib/Dashboard/Widgets/module_value.php:173 +#: ../../include/lib/Dashboard/Widgets/module_value.php:433 +msgid "Module value" +msgstr "Valeur du module" + +#: ../../include/lib/Dashboard/Widgets/wux_transaction.php:169 +#: ../../include/lib/Dashboard/Widgets/wux_transaction.php:418 +msgid "Agent WUX transaction" +msgstr "Transaction dā€™agent WUX" + +#: ../../include/lib/Dashboard/Widgets/wux_transaction.php:370 +#: ../../include/lib/Dashboard/Widgets/wux_transaction.php:375 +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 +msgid "Top N events by module" +msgstr "Top N des Ć©vĆ©nements par module" + +#: ../../include/lib/Dashboard/Widgets/top_n_events_by_module.php:258 +#: ../../include/lib/Dashboard/Widgets/top_n_events_by_group.php:258 +msgid "Amount to show" +msgstr "Montant Ć  montrer" + +#: ../../include/lib/Dashboard/Widgets/top_n_events_by_module.php:318 +#: ../../include/lib/Dashboard/Widgets/top_n_events_by_group.php:318 +msgid "No legend" +msgstr "Aucune lĆ©gende" + +#: ../../include/lib/Dashboard/Widgets/top_n_events_by_module.php:322 +#: ../../include/lib/Dashboard/Widgets/top_n_events_by_group.php:322 +msgid "Legend Position" +msgstr "Position de la lĆ©gende" + +#: ../../include/lib/Dashboard/Widgets/top_n_events_by_module.php:371 +#: ../../include/lib/Dashboard/Widgets/top_n_events_by_group.php:373 +msgid "Please select one or more groups." +msgstr "Veuillez sĆ©lectionner un ou plusieurs groupes." + +#: ../../include/lib/Dashboard/Widgets/top_n_events_by_module.php:423 +#: ../../include/lib/Dashboard/Widgets/top_n_events_by_group.php:419 +msgid "There is not data to show." +msgstr "Aucune donnĆ©e Ć  afficher" + +#: ../../include/lib/Dashboard/Widgets/ColorModuleTabs.php:172 +#: ../../include/lib/Dashboard/Widgets/ColorModuleTabs.php:536 +msgid "Color tabs modules" +msgstr "Couleur des onglets des modules" + +#: ../../include/lib/Dashboard/Widgets/ColorModuleTabs.php:285 +msgid "Format Data" +msgstr "Mettre en forme les donnĆ©es" + +#: ../../include/lib/Dashboard/Widgets/module_table_value.php:175 +msgid "Show module value in a table" +msgstr "Afficher la valeur d'un module dans le tableau" + +#: ../../include/lib/Dashboard/Widgets/module_table_value.php:312 +msgid "Carriage Return" +msgstr "Retour chariot" + +#: ../../include/lib/Dashboard/Widgets/module_table_value.php:313 +msgid "Vertical Bar" +msgstr "Barre verticale" + +#: ../../include/lib/Dashboard/Widgets/module_table_value.php:314 +msgid "Semicolon" +msgstr "Point-virgule" + +#: ../../include/lib/Dashboard/Widgets/module_table_value.php:315 +msgid "Colon" +msgstr "Deux-points" + +#: ../../include/lib/Dashboard/Widgets/module_table_value.php:316 +msgid "Commas" +msgstr "Virgules" + +#: ../../include/lib/Dashboard/Widgets/module_table_value.php:317 +msgid "Blank" +msgstr "Vide" + +#: ../../include/lib/Dashboard/Widgets/module_table_value.php:321 +msgid "Data separator" +msgstr "SĆ©parateur de donnĆ©es" + +#: ../../include/lib/Dashboard/Widgets/module_table_value.php:397 +msgid "Module in a table" +msgstr "Module dans un tableau" + +#: ../../include/lib/Dashboard/Widgets/graph_module_histogram.php:175 +#: ../../include/lib/Dashboard/Widgets/graph_module_histogram.php:431 +msgid "Module histogram" +msgstr "Histogramme du module" + +#: ../../include/lib/Dashboard/Widgets/service_map.php:300 msgid "" -"This happen when your agent stopped reporting or the server have any problem " -"(too load or just down). Check also connectivity between the agent and the " -"server." +"ZOOM functionality is only available when there is only one such widget in the " +"dashboard" msgstr "" -"Ceci arrive lorsque votre agent cesse de gĆ©nĆ©rer des rapports ou le serveur a " -"un problĆØme (trop de chargements ou il n'est pas fonctionnel). VĆ©rifiez aussi " -"la connexion entre l'agent et le serveur." +"La fonctionnalitĆ© ZOOM n'est disponible que lorsqu'il n'y a qu'un seul widget de " +"ce type dans le tableau de bord" -#: ../../include/help/clippy/operation_agentes_status_monitor.php:34 +#: ../../include/lib/Dashboard/Widgets/service_map.php:320 +msgid "Enable sunburst" +msgstr "Activer sunburst" + +#: ../../include/lib/Dashboard/Widgets/service_map.php:379 +msgid "Missing Service id" +msgstr "ID de service manquant" + +#: ../../include/lib/Dashboard/Widgets/agent_module.php:173 +#: ../../include/lib/Dashboard/Widgets/agent_module.php:840 +msgid "Agent/Module View" +msgstr "Vue Agent/Module" + +#: ../../include/lib/Dashboard/Widgets/agent_module.php:250 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:439 +msgid "Filter modules" +msgstr "Filtrer les modules" + +#: ../../include/lib/Dashboard/Widgets/custom_graph.php:168 +#: ../../include/lib/Dashboard/Widgets/custom_graph.php:521 +msgid "Defined custom graph" +msgstr "Graphique personnalisĆ© dĆ©fini" + +#: ../../include/lib/Dashboard/Widgets/custom_graph.php:294 +msgid "This graph has been deleted." +msgstr "Ce graphique a Ć©tĆ© supprimĆ©." + +#: ../../include/lib/Dashboard/Widgets/custom_graph.php:321 +#: ../../operation/reporting/graph_viewer.php:376 +msgid "Horizontal Bars" +msgstr "Barres horizontales" + +#: ../../include/lib/Dashboard/Widgets/custom_graph.php:322 +#: ../../operation/reporting/graph_viewer.php:377 +msgid "Vertical Bars" +msgstr "Barres verticales" + +#: ../../include/lib/Dashboard/Widgets/single_graph.php:170 +#: ../../include/lib/Dashboard/Widgets/single_graph.php:393 +msgid "Agent module graph" +msgstr "Graphique du module d'agent" + +#: ../../include/lib/Dashboard/Widgets/reports.php:164 +#: ../../include/lib/Dashboard/Widgets/reports.php:452 +msgid "Custom report" +msgstr "Rapport personnalisĆ©" + +#: ../../include/lib/Dashboard/Widgets/os_quick_report.php:173 +#: ../../include/lib/Dashboard/Widgets/os_quick_report.php:335 +msgid "OS quick report" +msgstr "Rapport rapide sur le systĆØme dā€™exploitation" + +#: ../../include/lib/Dashboard/Widgets/os_quick_report.php:285 +msgid "total agents" +msgstr "total des agents" + +#: ../../include/lib/Dashboard/Widgets/os_quick_report.php:286 +msgid "normal agents" +msgstr "agents normaux" + +#: ../../include/lib/Dashboard/Widgets/os_quick_report.php:287 +msgid "critical agents" +msgstr "agents critiques" + +#: ../../include/lib/Dashboard/Widgets/os_quick_report.php:288 +msgid "unknown agents" +msgstr "agents inconnus" + +#: ../../include/lib/Dashboard/Widgets/tree_view.php:341 +msgid "Type tree" +msgstr "Type d'arbre" + +#: ../../include/lib/Dashboard/Widgets/tree_view.php:373 +msgid "Open all groups" +msgstr "Ouvrir tous les groupes" + +#: ../../include/lib/Dashboard/Widgets/tree_view.php:393 +msgid "Agents status" +msgstr "Ɖtat des agents" + +#: ../../include/lib/Dashboard/Widgets/tree_view.php:427 +msgid "Modules status" +msgstr "Ɖtat des modules" + +#: ../../include/lib/Dashboard/Widgets/tree_view.php:493 +#, php-format msgid "" -"Now, you have to go to the monitors list and look for a \"critical\" module to " -"apply the alert." +"The user doesn't have permission to read agents. Please contact with your %s " +"administrator." msgstr "" -"Maintenant vous devez vous rendre Ć  la liste de moniteurs et rechercher un " -"module en Ć©tat critique sur lequel appliquer l'alerte." +"L'utilisateur n'est pas autorisĆ© Ć  lire les agents. Veuillez contacter votre " +"administrateur %s." -#: ../../include/help/clippy/operation_agentes_status_monitor.php:38 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:605 +#: ../../operation/tree.php:423 +msgid "Operating systems found" +msgstr "SystĆØmes d'exploitation trouvĆ©s" + +#: ../../include/lib/Dashboard/Widgets/tree_view.php:609 +#: ../../operation/tree.php:426 +msgid "Tags found" +msgstr "Ɖtiquettes trouvĆ©es" + +#: ../../include/lib/Dashboard/Widgets/tree_view.php:613 +#: ../../operation/tree.php:429 +msgid "Module Groups found" +msgstr "Groupes de modules trouvĆ©s" + +#: ../../include/lib/Dashboard/Widgets/tree_view.php:617 +#: ../../operation/tree.php:432 ../../operation/search_main.php:56 +msgid "Modules found" +msgstr "Modules trouvĆ©s" + +#: ../../include/lib/Dashboard/Widgets/tree_view.php:622 +#: ../../operation/tree.php:436 +msgid "Groups found" +msgstr "Groupes trouvĆ©s" + +#: ../../include/lib/Dashboard/Widgets/top_n.php:163 +#: ../../include/lib/Dashboard/Widgets/top_n.php:528 +msgid "Top N of agent modules" +msgstr "Top N des modules d'agent" + +#: ../../include/lib/Dashboard/Widgets/top_n.php:222 msgid "" -"If you know the name of the agent or the name of the module in critical " -"status, type it in this field to make the module list shorter. You can write " -"the entire name or just a part of it." +"Case insensitive regular expression or string for module name. For example: ." +"*usage.* will match: cpu_usage, vram usage." msgstr "" -"Si vous connaissez le nom de l'agent ou le nom du module en Ć©tat critique, " -"introduisez-le dans ce champ pour raccourcir la liste de modules. Vous pouvez " -"Ć©crire le nom au complet ou seulement une partie du nom." +"Expression rĆ©guliĆØre ou chaĆ®ne insensible Ć  la casse pour le nom du module. Par " +"exemple : .*usage.* correspondra Ć  : cpu_usage, vram usage." -#: ../../include/help/clippy/operation_agentes_status_monitor.php:43 -msgid "Click on Show button to get the modules list filtered." -msgstr "Cliquez sur le bouton Ā« Afficher Ā» pour filtrer la liste de modules." +#: ../../include/lib/Dashboard/Widgets/top_n.php:280 +msgid "Avg." +msgstr "Moyenne" -#: ../../include/help/clippy/operation_agentes_status_monitor.php:58 -msgid "" -"Now, to edit the module, click on the wrench that appears in the type column." -msgstr "" -"Maintenant, pour Ć©diter le module, cliquez sur la clĆ© Ć  molette qui apparaĆ®t " -"dans la colonne du type." +#: ../../include/lib/Dashboard/Widgets/top_n.php:448 +msgid "There are no agents/modules found matching filter set" +msgstr "Aucun agent/module trouvĆ© correspondant Ć  l'ensemble de filtres" -#: ../../include/help/clippy/godmode_agentes_modificar_agente.php:34 -msgid "I'm going to show you how to monitor a server." -msgstr "Je vais vous montrer comment surveiller un serveur." +#: ../../include/lib/Dashboard/Widgets/tactical.php:275 +msgid "Status and Monitor checks" +msgstr "VĆ©rifications dā€™Ć©tat et du moniteur" -#: ../../include/help/clippy/godmode_agentes_modificar_agente.php:38 -msgid "Please, type an agent to save the modules for monitoring a server." -msgstr "" -"Veuillez Ć©crire un agent afin de sauvegarder les modules pour surveiller un " -"serveur." +#: ../../include/lib/Dashboard/Widgets/clock.php:216 +msgid "Analogic" +msgstr "Analogique" -#: ../../include/help/clippy/godmode_agentes_modificar_agente.php:43 -msgid "If you have typed the name correctly you will see the agent." -msgstr "Si vous avez bien Ć©crit le nom, l'agent sera affichĆ©." +#: ../../include/lib/Dashboard/Widgets/clock.php:217 +msgid "Digital" +msgstr "NumĆ©rique" -#: ../../include/help/clippy/godmode_agentes_modificar_agente.php:57 -msgid "Now, please choose the agent you searched." -msgstr "Maintenant veuillez choisir l'agent que vous avez recherchĆ©." +#: ../../include/lib/Dashboard/Widgets/top_n_events_by_group.php:163 +#: ../../include/lib/Dashboard/Widgets/top_n_events_by_group.php:502 +msgid "Top N events by agent" +msgstr "Top N des Ć©vĆ©nements par agent" -#: ../../include/help/clippy/godmode_agentes_modificar_agente.php:62 -msgid "Choose the agent and click on the name." -msgstr "Choisissez l'agent et cliquez sur le nom." +#: ../../include/lib/Core/DBMaintainer.php:173 +msgid "Connection problems" +msgstr "ProblĆØmes de connexion" -#: ../../include/functions_graph.php:1089 -#: ../../include/functions_reporting.php:4333 -#: ../../include/functions_reporting.php:4376 -msgid "No data to display within the selected interval" -msgstr "Aucune donnĆ©e Ć  afficher dans l'intervalle sĆ©lectionnĆ©" +#: ../../include/lib/View.php:69 +#, php-format +msgid "View %s not found" +msgstr "Affichage %s introuvable" -#: ../../include/functions_graph.php:1538 -#: ../../enterprise/godmode/reporting/reporting_builder.template_list_item.php:409 -#: ../../godmode/reporting/reporting_builder.list_items.php:445 -msgid "No items." -msgstr "Aucun Ć©lĆ©ment" +#: ../../include/lib/Module.php:258 +msgid " error: Module has no agent assigned." +msgstr "erreurĀ : aucun agent n'est affectĆ© au module." -#: ../../include/functions_graph.php:2630 -msgid "Not fired alerts" -msgstr "Aucune alerte dĆ©clenchĆ©e" +#: ../../include/lib/Module.php:1039 +msgid "Module name empty." +msgstr "Nom du module vide." -#: ../../include/functions_graph.php:2898 ../../include/functions_graph.php:2946 -#: ../../include/graphs/functions_gd.php:183 -#: ../../include/graphs/functions_gd.php:466 -msgid "Out of limits" -msgstr "Hors limites" +#: ../../include/lib/Module.php:1045 +msgid "Invalid characters in module name" +msgstr "CaractĆØres invalides dans le nom du module" -#: ../../include/functions_graph.php:3548 ../../include/functions_graph.php:3549 -#: ../../include/functions_graph.php:5135 ../../include/functions.php:1043 -#: ../../include/functions.php:1272 ../../include/functions.php:1323 -msgid "Minor" -msgstr "Mineur" +#: ../../include/lib/Module.php:1051 +msgid "Module already exists please select another name or agent." +msgstr "Le module existe dĆ©jĆ , veuillez sĆ©lectionner un autre nom ou agent." -#: ../../include/functions_graph.php:3558 ../../include/functions_graph.php:3559 -#: ../../include/functions_graph.php:5139 ../../include/functions.php:1047 -#: ../../include/functions.php:1274 ../../include/functions.php:1327 -msgid "Major" -msgstr "Majeure" +#: ../../include/lib/Module.php:1057 +msgid "Insufficent permissions to perform this action" +msgstr "Autorisations insuffisantes pour effectuer cette action" -#: ../../include/functions_graph.php:5518 -msgid "Main node" -msgstr "Nœud principal" +#: ../../include/lib/Module.php:1064 +#, php-format +msgid "Error while processing: %s" +msgstr "Erreur lors du traitementĀ : %s" + +#: ../../include/lib/Group.php:299 +#, php-format +msgid "Failed to save group %s" +msgstr "Ɖchec de l'enregistrement du groupe %s" #: ../../include/functions_snmp_browser.php:355 msgid "The server did not return any response." msgstr "Le serveur n'a renvoyĆ© aucune rĆ©ponse." -#: ../../include/functions_snmp_browser.php:556 -#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor_form.php:56 -#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:382 -#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:299 -#: ../../godmode/setup/snmp_wizard.php:42 -msgid "OID" -msgstr "OID" - #: ../../include/functions_snmp_browser.php:558 msgid "Numeric OID" msgstr "OID numĆ©rique" @@ -23900,40 +47878,14 @@ msgstr "AccĆØs max." msgid "OID Information" msgstr "Information OID" -#: ../../include/functions_snmp_browser.php:638 -#: ../../godmode/agentes/module_manager.php:1205 -msgid "Create network component" -msgstr "CrĆ©er un composant de rĆ©seau" - #: ../../include/functions_snmp_browser.php:647 msgid "Create agent module" msgstr "CrĆ©er un module d'agent" -#: ../../include/functions_snmp_browser.php:727 -#: ../../godmode/snmpconsole/snmp_trap_generator.php:95 -msgid "Community" -msgstr "CommunautĆ©" - #: ../../include/functions_snmp_browser.php:736 msgid "Starting OID" msgstr "Initier OID" -#: ../../include/functions_snmp_browser.php:746 -#: ../../include/functions_reporting_html.php:1553 -#: ../../enterprise/tools/ipam/ipam_calculator.php:52 -#: ../../enterprise/include/functions_reporting_csv.php:718 -#: ../../enterprise/include/class/AgentRepository.class.php:366 -#: ../../enterprise/include/class/AgentRepository.class.php:632 -#: ../../enterprise/meta/advanced/servers.build_table.php:63 -#: ../../enterprise/meta/advanced/metasetup.consoles.php:838 -#: ../../enterprise/godmode/servers/list_satellite.php:39 -#: ../../godmode/servers/servers.build_table.php:82 -#: ../../godmode/update_manager/update_manager.history.php:40 -#: ../../godmode/extensions.php:139 -#: ../../godmode/reporting/reporting_builder.item_editor.php:78 -msgid "Version" -msgstr "Version" - #: ../../include/functions_snmp_browser.php:786 msgid "Server to execute" msgstr "Serveur pour exĆ©cuter la commande" @@ -23942,96 +47894,6 @@ msgstr "Serveur pour exĆ©cuter la commande" msgid "Browse" msgstr "Naviguer" -#: ../../include/functions_snmp_browser.php:826 -#: ../../enterprise/tools/ipam/ipam_vlan_wizard.php:299 -#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:795 -#: ../../godmode/modules/manage_network_components_form_network.php:96 -#: ../../godmode/massive/massive_edit_modules.php:852 -#: ../../godmode/wizards/HostDevices.class.php:1259 -#: ../../godmode/agentes/module_manager_editor_network.php:336 -msgid "Auth user" -msgstr "Utilisateur de l'authentification" - -#: ../../include/functions_snmp_browser.php:836 -#: ../../enterprise/tools/ipam/ipam_vlan_wizard.php:308 -#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:804 -#: ../../godmode/modules/manage_network_components_form_network.php:105 -#: ../../godmode/massive/massive_edit_modules.php:861 -#: ../../godmode/wizards/HostDevices.class.php:1270 -#: ../../godmode/agentes/module_manager_editor_network.php:349 -msgid "Auth password" -msgstr "Authentification de mot de passe" - -#: ../../include/functions_snmp_browser.php:856 -#: ../../enterprise/tools/ipam/ipam_vlan_wizard.php:327 -#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:807 -#: ../../godmode/modules/manage_network_components_form_network.php:126 -#: ../../godmode/massive/massive_edit_modules.php:864 -#: ../../godmode/wizards/HostDevices.class.php:1291 -#: ../../godmode/agentes/module_manager_editor_network.php:370 -msgid "DES" -msgstr "DES" - -#: ../../include/functions_snmp_browser.php:857 -#: ../../enterprise/tools/ipam/ipam_vlan_wizard.php:328 -#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:807 -#: ../../godmode/modules/manage_network_components_form_network.php:127 -#: ../../godmode/massive/massive_edit_modules.php:864 -#: ../../godmode/wizards/HostDevices.class.php:1292 -#: ../../godmode/agentes/module_manager_editor_network.php:370 -msgid "AES" -msgstr "AES" - -#: ../../include/functions_snmp_browser.php:877 -#: ../../enterprise/tools/ipam/ipam_vlan_wizard.php:347 -#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:810 -#: ../../godmode/modules/manage_network_components_form_network.php:148 -#: ../../godmode/massive/massive_edit_modules.php:867 -#: ../../godmode/wizards/HostDevices.class.php:1317 -#: ../../godmode/agentes/module_manager_editor_network.php:391 -msgid "Auth method" -msgstr "MĆ©thode d'authentification" - -#: ../../include/functions_snmp_browser.php:881 -#: ../../enterprise/tools/ipam/ipam_vlan_wizard.php:351 -#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:811 -#: ../../godmode/modules/manage_network_components_form_network.php:152 -#: ../../godmode/massive/massive_edit_modules.php:868 -#: ../../godmode/wizards/HostDevices.class.php:1323 -#: ../../godmode/agentes/module_manager_editor_network.php:395 -msgid "SHA" -msgstr "SHA" - -#: ../../include/functions_snmp_browser.php:893 -#: ../../enterprise/tools/ipam/ipam_vlan_wizard.php:363 -#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:815 -#: ../../godmode/modules/manage_network_components_form_network.php:164 -#: ../../godmode/massive/massive_edit_modules.php:872 -#: ../../godmode/wizards/HostDevices.class.php:1337 -#: ../../godmode/agentes/module_manager_editor_network.php:411 -msgid "Not auth and not privacy method" -msgstr "MĆ©thode sans authentification ni confidentialitĆ©" - -#: ../../include/functions_snmp_browser.php:894 -#: ../../enterprise/tools/ipam/ipam_vlan_wizard.php:364 -#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:816 -#: ../../godmode/modules/manage_network_components_form_network.php:165 -#: ../../godmode/massive/massive_edit_modules.php:873 -#: ../../godmode/wizards/HostDevices.class.php:1338 -#: ../../godmode/agentes/module_manager_editor_network.php:412 -msgid "Auth and not privacy method" -msgstr "MĆ©thode avec authentification et sans confidentialitĆ©" - -#: ../../include/functions_snmp_browser.php:895 -#: ../../enterprise/tools/ipam/ipam_vlan_wizard.php:365 -#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:817 -#: ../../godmode/modules/manage_network_components_form_network.php:166 -#: ../../godmode/massive/massive_edit_modules.php:874 -#: ../../godmode/wizards/HostDevices.class.php:1339 -#: ../../godmode/agentes/module_manager_editor_network.php:413 -msgid "Auth and privacy method" -msgstr "MĆ©thode avec authentification et mĆ©thode de confidentialitĆ©" - #: ../../include/functions_snmp_browser.php:939 msgid "First match" msgstr "PremiĆØre correspondance" @@ -24080,1000 +47942,254 @@ msgstr "CrĆ©er des modules de politique" msgid "Create network components" msgstr "CrĆ©er des composants de rĆ©seau" -#: ../../include/functions_snmp_browser.php:1511 +#: ../../include/functions_snmp_browser.php:1519 msgid " available" msgstr " disponible" -#: ../../include/functions_snmp_browser.php:1511 -#: ../../include/functions_snmp_browser.php:1513 -#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:172 -#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:177 -#: ../../enterprise/godmode/reporting/graph_template_wizard.php:228 -#: ../../enterprise/godmode/reporting/graph_template_wizard.php:234 -#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:412 -#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:422 -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:832 -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:834 -msgid "Select all" -msgstr "Tout sĆ©lectionner" - -#: ../../include/functions_snmp_browser.php:1513 +#: ../../include/functions_snmp_browser.php:1521 msgid " to apply" msgstr " ƀ appliquer" -#: ../../include/functions_snmp_browser.php:1566 +#: ../../include/functions_snmp_browser.php:1542 +#: ../../operation/snmpconsole/snmp_browser.php:541 +msgid "Create new policy" +msgstr "CrĆ©er une nouvelle politique" + +#: ../../include/functions_snmp_browser.php:1574 msgid "Undo" msgstr "Annuler" -#: ../../include/functions_reporting.php:364 -msgid " agents" -msgstr " agents" - -#: ../../include/functions_reporting.php:374 -msgid " modules" -msgstr " modules" - -#: ../../include/functions_reporting.php:996 -#: ../../include/functions_reporting.php:8563 -#: ../../enterprise/include/functions_reporting.php:2493 -#: ../../enterprise/include/functions_reporting.php:3437 -#: ../../enterprise/include/functions_reporting.php:4412 -msgid "There are no SLAs defined" -msgstr "Aucun SLA dĆ©fini" - -#: ../../include/functions_reporting.php:1071 -#: ../../include/functions_reporting.php:8941 -#: ../../enterprise/include/functions_reporting.php:2546 -#: ../../enterprise/include/functions_reporting.php:3490 -#: ../../enterprise/include/functions_reporting.php:4465 -msgid "Inverse" -msgstr "Inverse" - -#: ../../include/functions_reporting.php:1510 -msgid "Top N" -msgstr "Top N" - -#: ../../include/functions_reporting.php:1520 ../../include/functions_ui.php:2604 -#: ../../include/functions_reporting_html.php:4740 -#: ../../enterprise/include/functions_reporting_csv.php:1030 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2208 -#: ../../enterprise/meta/include/functions_wizard_meta.php:983 -#: ../../enterprise/meta/include/functions_wizard_meta.php:992 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1068 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1077 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1271 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1280 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1508 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1517 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1593 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1602 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1713 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1722 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1808 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2442 -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:293 -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:386 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:759 -#: ../../godmode/reporting/reporting_builder.item_editor.php:1306 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2407 -#: ../../godmode/alerts/alert_view.php:266 -msgid "Max" -msgstr "Maximum" - -#: ../../include/functions_reporting.php:1524 ../../include/functions_ui.php:2604 -#: ../../include/functions_reporting_html.php:4741 -#: ../../enterprise/include/functions_reporting_csv.php:1030 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2208 -#: ../../enterprise/meta/include/functions_wizard_meta.php:981 -#: ../../enterprise/meta/include/functions_wizard_meta.php:990 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1066 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1075 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1269 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1278 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1506 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1515 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1591 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1600 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1711 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1720 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1810 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2449 -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:281 -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:393 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:751 -#: ../../godmode/reporting/reporting_builder.item_editor.php:1304 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2414 -#: ../../godmode/alerts/alert_view.php:266 -msgid "Min" -msgstr "Minimum" - -#: ../../include/functions_reporting.php:1530 -#: ../../include/functions_reporting_html.php:4739 -#: ../../enterprise/include/functions_reporting_csv.php:1030 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2456 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2421 -msgid "Avg" -msgstr "Moyenne" - -#: ../../include/functions_reporting.php:1582 -#: ../../include/functions_reporting.php:3166 -#: ../../include/functions_reporting_html.php:801 -#: ../../include/functions_reporting_html.php:4258 -#: ../../include/functions_reporting_html.php:4807 -#: ../../include/functions_reporting_html.php:4810 -#: ../../enterprise/include/functions_reporting.php:5146 -msgid "There are no Agent/Modules defined" -msgstr "Aucun Agent/Module dĆ©fini" - -#: ../../include/functions_reporting.php:1638 -msgid "Insuficient data" -msgstr "DonnĆ©es insuffisantes" - -#: ../../include/functions_reporting.php:1889 -msgid "Event Report Group" -msgstr "Rapport d'Ć©vĆ©nements de groupes" - -#: ../../include/functions_reporting.php:1937 -msgid "Exclude " -msgstr "Exclure" - -#: ../../include/functions_reporting.php:2187 -msgid "Event Report Module" -msgstr "Module de rapports d'Ć©vĆ©nements" - -#: ../../include/functions_reporting.php:2521 -#: ../../enterprise/include/functions_reporting_csv.php:740 -msgid "Inventory Changes" -msgstr "Modifications de l'inventaire" - -#: ../../include/functions_reporting.php:2594 -#: ../../enterprise/tools/ipam/ipam_action.php:385 -msgid "No changes found." -msgstr "Aucun changement retrouvĆ©." - -#: ../../include/functions_reporting.php:2691 -#: ../../enterprise/operation/log/log_viewer.php:1256 -#: ../../enterprise/operation/log/log_viewer.php:1264 -#: ../../enterprise/operation/agentes/agent_inventory.php:280 -#: ../../enterprise/operation/inventory/inventory.php:475 -#: ../../enterprise/operation/inventory/inventory.php:518 -#: ../../enterprise/godmode/agentes/collection_manager.php:196 -#: ../../godmode/reporting/reporting_builder.php:1262 -msgid "No data found." -msgstr "Aucune donnĆ©e retrouvĆ©e" - -#: ../../include/functions_reporting.php:2718 -#: ../../godmode/alerts/alert_actions.php:74 -msgid "Alert actions" +#: ../../include/functions_groups.php:75 +msgid "Alert Actions" msgstr "Actions d'alerte" -#: ../../include/functions_reporting.php:2827 -msgid "Agent/Modules" -msgstr "Agent/Modules" +#: ../../include/functions_groups.php:91 +msgid "Alert Templates" +msgstr "ModĆØles d'alerte" -#: ../../include/functions_reporting.php:2868 -#: ../../extensions/agents_modules.php:750 -msgid "There are no agents with modules" -msgstr "Aucun agent avec des modules" +#: ../../include/functions_groups.php:107 +#: ../../operation/agentes/pandora_networkmap.editor.php:337 +#: ../../operation/agentes/pandora_networkmap.view.php:137 +msgid "Discovery task" +msgstr "TĆ¢che de dĆ©couverte" -#: ../../include/functions_reporting.php:2924 -msgid "Agent/Modules Status" -msgstr "Ɖtat de lā€™agent/des modules" +#: ../../include/functions_groups.php:155 +msgid "Layout visual console" +msgstr "Layout de la console visuelle" -#: ../../include/functions_reporting.php:3073 -msgid "Exception - Everything" -msgstr "Exception - Tout" +#: ../../include/functions_groups.php:171 +msgid "Plannet down time" +msgstr "Temps d'arrĆŖt planifiĆ©" -#: ../../include/functions_reporting.php:3074 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2536 -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:430 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2549 -msgid "Everything" -msgstr "Tout" +#: ../../include/functions_groups.php:203 +msgid "GIS maps" +msgstr "Cartes GIS" -#: ../../include/functions_reporting.php:3079 +#: ../../include/functions_groups.php:219 +msgid "GIS connections" +msgstr "Connexions GIS" + +#: ../../include/functions_groups.php:235 +msgid "GIS map layers" +msgstr "Couches de carte GIS" + +#: ../../include/functions_groups.php:251 +msgid "Network maps" +msgstr "Cartes de rĆ©seau" + +#: ../../include/functions_events.php:142 +msgid "NEW" +msgstr "NOUVEAU" + +#: ../../include/functions_events.php:145 +msgid "IN PROCESS" +msgstr "EN COURS" + +#: ../../include/functions_events.php:148 +msgid "VALIDATED" +msgstr "VALIDƉ" + +#: ../../include/functions_events.php:207 +msgid "Agent module" +msgstr "Module de l'agent" + +#: ../../include/functions_events.php:220 +msgid "Module custom id" +msgstr "ID personnalisĆ© du module" + +#: ../../include/functions_events.php:1623 #, php-format -msgid "Exception - Modules over or equal to %s" -msgstr "Exception - Modules supĆ©rieurs ou Ć©gaux Ć  %s" +msgid "Could not connect: %s" +msgstr "Impossible de se connecter : %s" -#: ../../include/functions_reporting.php:3082 +#: ../../include/functions_events.php:2341 ../../operation/agentes/tactical.php:228 +msgid "Latest events" +msgstr "Derniers Ć©vĆ©nements" + +#: ../../include/functions_events.php:2478 +msgid "Events -by module-" +msgstr "ƉvĆ©nements par module" + +#: ../../include/functions_events.php:2484 ../../operation/agentes/tactical.php:245 +msgid "Event graph" +msgstr "Graphique de commandes" + +#: ../../include/functions_events.php:2486 ../../operation/agentes/tactical.php:248 +msgid "Event graph by agent" +msgstr "Graphique d'Ć©vĆ©nements par l'agent" + +#: ../../include/functions_events.php:2625 +msgid "Going to unknown" +msgstr "Changement Ć  Ć©tat inconnu" + +#: ../../include/functions_events.php:2633 +msgid "Alert manually validated" +msgstr "Alerte validĆ©e manuellement" + +#: ../../include/functions_events.php:2637 +msgid "Going from critical to warning" +msgstr "Changement de l'Ć©tat critique Ć  l'Ć©tat d'alerte" + +#: ../../include/functions_events.php:2643 +msgid "Going up to critical state" +msgstr "Passage Ć  l'Ć©tat critique" + +#: ../../include/functions_events.php:2649 +msgid "Going up to normal state" +msgstr "Passage Ć  l'Ć©tat normal" + +#: ../../include/functions_events.php:2653 +msgid "Going down from normal to warning" +msgstr "Passage de l'Ć©tat normal Ć  l'Ć©tat d'alerte" + +#: ../../include/functions_events.php:2665 +msgid "Discovery server detected a new host" +msgstr "Le serveur Discovery a dĆ©tectĆ© un nouvel hĆ“te" + +#: ../../include/functions_events.php:2669 +msgid "New agent created" +msgstr "Nouvel agent crĆ©Ć©" + +#: ../../include/functions_events.php:2686 +msgid "Unknown type:" +msgstr "Type inconnu :" + +#: ../../include/functions_events.php:2977 ../../include/functions_events.php:3008 +msgid "Only new" +msgstr "Uniquement les nouveaux" + +#: ../../include/functions_events.php:2979 ../../include/functions_events.php:3016 +msgid "Only in process" +msgstr "Uniquement ceux en cours" + +#: ../../include/functions_events.php:2980 ../../include/functions_events.php:3020 +msgid "Only not validated" +msgstr "Uniquement les non validĆ©s" + +#: ../../include/functions_events.php:2985 ../../include/functions_events.php:3264 +#: ../../include/functions_events.php:3273 +msgid "In process" +msgstr "En cours" + +#: ../../include/functions_events.php:2986 +msgid "Not Validated" +msgstr "Non validĆ©s" + +#: ../../include/functions_events.php:3178 +msgid "Change owner" +msgstr "Changer de propriĆ©taire" + +#: ../../include/functions_events.php:3249 +msgid "Change status" +msgstr "Modifier l'Ć©tat" + +#: ../../include/functions_events.php:3343 ../../include/functions_events.php:4912 +#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:314 +msgid "Add comment" +msgstr "Ajouter un commentaire" + +#: ../../include/functions_events.php:3363 ../../include/functions_events.php:3367 +#: ../../operation/events/events.php:886 +msgid "Delete event" +msgstr "Supprimer l'Ć©vĆ©nement" + +#: ../../include/functions_events.php:3387 +msgid "Custom responses" +msgstr "RĆ©ponses personnalisĆ©es" + +#: ../../include/functions_events.php:3943 +msgid "Extended information" +msgstr "Informations Ć©tendues" + +#: ../../include/functions_events.php:3974 +msgid "There was an error connecting to the node" +msgstr "Erreur de connexion au nœud" + +#: ../../include/functions_events.php:3995 +msgid "Agent details" +msgstr "DĆ©tails de l'agent" + +#: ../../include/functions_events.php:4009 +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:4060 +msgid "View custom fields" +msgstr "Afficher les champs personnalisĆ©s" + +#: ../../include/functions_events.php:4083 +msgid "Module details" +msgstr "DĆ©tails du module" + +#: ../../include/functions_events.php:4099 +msgid "No assigned" +msgstr "Non attribuĆ©" + +#: ../../include/functions_events.php:4183 ../../include/functions_events.php:4192 +msgid "Go to data overview" +msgstr "AccĆ©der Ć  l'aperƧu de donnĆ©es" + +#: ../../include/functions_events.php:4308 #, php-format -msgid "Modules over or equal to %s" -msgstr "Modules supĆ©rieurs ou Ć©gaux Ć  %s" +msgid "Invalid custom data: %s" +msgstr "DonnĆ©es personnalisĆ©es non valides : %s" -#: ../../include/functions_reporting.php:3087 -#, php-format -msgid "Exception - Modules under or equal to %s" -msgstr "Exception - Modules infĆ©rieurs ou Ć©gaux Ć  %s" +#: ../../include/functions_events.php:4537 +msgid "First event" +msgstr "Premier Ć©vĆ©nement" -#: ../../include/functions_reporting.php:3090 -#, php-format -msgid "Modules under or equal to %s" -msgstr "Modules infĆ©rieurs ou Ć©gaux Ć  %s" +#: ../../include/functions_events.php:4537 +msgid "Last event" +msgstr "Dernier Ć©vĆ©nement" -#: ../../include/functions_reporting.php:3095 -#, php-format -msgid "Exception - Modules under %s" -msgstr "Exception - Modules infĆ©rieurs Ć  %s" +#: ../../include/functions_events.php:4621 +msgid "Autovalidated" +msgstr "AutovalidĆ©" -#: ../../include/functions_reporting.php:3098 -#, php-format -msgid "Modules under %s" -msgstr "Modules infĆ©rieurs Ć  %s" +#: ../../include/functions_events.php:4687 +msgid "ID extra" +msgstr "Identifiant supplĆ©mentaire" -#: ../../include/functions_reporting.php:3103 -#, php-format -msgid "Exception - Modules over %s" -msgstr "Exception - Modules supĆ©rieurs Ć  %s" +#: ../../include/functions_events.php:4761 +msgid "There are no comments" +msgstr "Aucun commentaire" -#: ../../include/functions_reporting.php:3106 -#, php-format -msgid "Modules over %s" -msgstr "Modules supĆ©rieurs Ć  %s" +#: ../../include/functions_events.php:4825 ../../general/logon_ok.php:199 +msgid "by" +msgstr "par" -#: ../../include/functions_reporting.php:3111 -#, php-format -msgid "Exception - Equal to %s" -msgstr "Exception - Ɖgal Ć  %s" - -#: ../../include/functions_reporting.php:3114 -#, php-format -msgid "Equal to %s" -msgstr "Ɖgal Ć  %s" - -#: ../../include/functions_reporting.php:3119 -#, php-format -msgid "Exception - Not equal to %s" -msgstr "Exception - Pas Ć©gal Ć  %s" - -#: ../../include/functions_reporting.php:3122 -#, php-format -msgid "Not equal to %s" -msgstr "Pas Ć©gal Ć  %s" - -#: ../../include/functions_reporting.php:3126 -msgid "Exception - Modules at normal status" -msgstr "Exception - Modules en Ć©tat normal" - -#: ../../include/functions_reporting.php:3127 -msgid "Modules at normal status" -msgstr "Modules en Ć©tat normal" - -#: ../../include/functions_reporting.php:3131 -msgid "Exception - Modules at critical or warning status" -msgstr "Exception - Modules en Ć©tat critique ou d'alerte" - -#: ../../include/functions_reporting.php:3132 -msgid "Modules at critical or warning status" -msgstr "Modules en Ć©tat critique ou d'alerte" - -#: ../../include/functions_reporting.php:3351 -msgid "There are no Modules under those conditions." -msgstr "Aucun module sous ces conditions" - -#: ../../include/functions_reporting.php:3355 -#, php-format -msgid "There are no Modules over or equal to %s." -msgstr "Aucun module supĆ©rieur ou Ć©gal Ć  %s" - -#: ../../include/functions_reporting.php:3359 -#, php-format -msgid "There are no Modules less or equal to %s." -msgstr "Aucun module infĆ©rieur ou Ć©gal Ć  %s" - -#: ../../include/functions_reporting.php:3363 -#, php-format -msgid "There are no Modules less %s." -msgstr "Aucun module infĆ©rieur Ć  %s" - -#: ../../include/functions_reporting.php:3367 -#, php-format -msgid "There are no Modules over %s." -msgstr "Aucun module supĆ©rieur Ć  %s" - -#: ../../include/functions_reporting.php:3371 -#, php-format -msgid "There are no Modules equal to %s" -msgstr "Aucun module Ć©gal Ć  %s" - -#: ../../include/functions_reporting.php:3375 -#, php-format -msgid "There are no Modules not equal to %s" -msgstr "Aucun module pas Ć©gal Ć  %s" - -#: ../../include/functions_reporting.php:3379 -msgid "There are no Modules normal status" -msgstr "Aucun module en Ć©tat normal" - -#: ../../include/functions_reporting.php:3383 -msgid "There are no Modules at critial or warning status" -msgstr "Aucun module en Ć©tat critique ou d'alerte" - -#: ../../include/functions_reporting.php:3540 -#: ../../enterprise/include/functions_reporting_csv.php:969 -msgid "Group Report" -msgstr "Rapport du groupe" - -#: ../../include/functions_reporting.php:3720 -msgid "Event Report Agent" -msgstr "Agent de rapport d'Ć©vĆ©nement" - -#: ../../include/functions_reporting.php:3952 -#: ../../enterprise/include/functions_reporting_csv.php:2175 -#: ../../enterprise/godmode/modules/configure_local_component.php:447 -#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:966 -#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:318 -#: ../../godmode/modules/manage_network_components_form_common.php:305 -#: ../../godmode/massive/massive_edit_modules.php:1042 -#: ../../godmode/agentes/module_manager_editor_common.php:532 -msgid "Historical data" -msgstr "Historique des donnĆ©es" - -#: ../../include/functions_reporting.php:4087 -msgid "Database Serialized" -msgstr "Base de donnĆ©es sĆ©rialisĆ©e" - -#: ../../include/functions_reporting.php:4283 -msgid "Last Value" -msgstr "DerniĆØre valeur" - -#: ../../include/functions_reporting.php:4445 -#: ../../godmode/reporting/reporting_builder.item_editor.php:3354 -msgid "Unnasigned group" -msgstr "Groupe non affectĆ©" - -#: ../../include/functions_reporting.php:4451 -#: ../../godmode/reporting/reporting_builder.item_editor.php:3308 -msgid "Unassigned group" -msgstr "Groupe non affectĆ©" - -#: ../../include/functions_reporting.php:4607 -msgid "Network interfaces report" -msgstr "Rapport des interfaces du rĆ©seau" - -#: ../../include/functions_reporting.php:4701 -msgid "Custom render report" -msgstr "Rapport de rendu personnalisĆ©" - -#: ../../include/functions_reporting.php:4741 -#: ../../include/functions_reporting.php:4767 +#: ../../include/functions_events.php:4922 msgid "" -"This query is insecure, it could apply unwanted modiffications on the schema" +"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 " +"operate with them. The operation, when event replication is enabled, must be done " +"only in the Metaconsole." 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:4998 -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:5019 -msgid "bytes/s" -msgstr "octets/s" - -#: ../../include/functions_reporting.php:5139 -#: ../../enterprise/include/functions_reporting_csv.php:2447 -msgid "Alert Report Group" -msgstr "Rapport d'alertes de groupe" - -#: ../../include/functions_reporting.php:5226 -#: ../../include/functions_reporting.php:5243 -#: ../../include/functions_reporting.php:5260 -msgid "Not triggered" -msgstr "Non dĆ©clenchĆ©" - -#: ../../include/functions_reporting.php:5319 -#: ../../enterprise/include/functions_reporting_csv.php:2445 -msgid "Alert Report Agent" -msgstr "Agent de rapport d'alerte" - -#: ../../include/functions_reporting.php:5486 -#: ../../enterprise/include/functions_reporting_csv.php:2443 -msgid "Alert Report Module" -msgstr "Module de rapport d'alerte" - -#: ../../include/functions_reporting.php:5686 -msgid "SQL Graph Vertical Bars" -msgstr "Barres verticales du graphique SQL" - -#: ../../include/functions_reporting.php:5690 -msgid "SQL Graph Horizontal Bars" -msgstr "Barres horizontales du graphique SQL" - -#: ../../include/functions_reporting.php:5694 -msgid "SQL Graph Pie" -msgstr "Diagramme circulaire SQL" - -#: ../../include/functions_reporting.php:5778 -#: ../../enterprise/include/functions_reporting_csv.php:1415 -#: ../../enterprise/include/functions_reporting_csv.php:1433 -#: ../../enterprise/include/functions_reporting_csv.php:1435 -msgid "Monitor Report" -msgstr "Rapport du moniteur" - -#: ../../include/functions_reporting.php:5921 -msgid "Netflow Area" -msgstr "Zone Netflow" - -#: ../../include/functions_reporting.php:5925 -msgid "Netflow Summary" -msgstr "RĆ©sumĆ© Netflow" - -#: ../../include/functions_reporting.php:5929 -msgid "Netflow Data" -msgstr "DonnĆ©es Netflow" - -#: ../../include/functions_reporting.php:5937 -msgid "Unknown report" -msgstr "Rapport inconnu" - -#: ../../include/functions_reporting.php:6031 -msgid "Prediction Date" -msgstr "Date de prĆ©diction" - -#: ../../include/functions_reporting.php:6136 -#: ../../enterprise/include/functions_reporting_csv.php:788 -msgid "Projection Graph" -msgstr "Graphique de projection" - -#: ../../include/functions_reporting.php:6434 -#: ../../include/rest-api/models/VisualConsole/Items/Percentile.php:492 -#: ../../enterprise/include/functions_reporting_csv.php:1256 -#: ../../enterprise/godmode/modules/configure_local_component.php:466 -#: ../../godmode/modules/manage_network_components_form_common.php:310 -#: ../../godmode/agentes/module_manager_editor_common.php:668 -msgid "Max. Value" -msgstr "Valeur maximale" - -#: ../../include/functions_reporting.php:6438 -#: ../../include/rest-api/models/VisualConsole/Items/Percentile.php:480 -#: ../../enterprise/include/functions_reporting_csv.php:1201 -#: ../../enterprise/godmode/modules/configure_local_component.php:461 -#: ../../godmode/modules/manage_network_components_form_common.php:308 -#: ../../godmode/agentes/module_manager_editor_common.php:664 -msgid "Min. Value" -msgstr "Valeur minimale" - -#: ../../include/functions_reporting.php:6447 -#: ../../enterprise/include/functions_reporting_csv.php:1360 -#: ../../enterprise/include/functions_reporting_csv.php:1379 -#: ../../enterprise/include/functions_reporting_csv.php:1381 -#: ../../enterprise/include/functions_reporting_csv.php:1387 -#: ../../enterprise/include/functions_reporting_csv.php:1389 -msgid "AVG. Value" -msgstr "Valeur moyenne" - -#: ../../include/functions_reporting.php:6663 -#: ../../include/functions_reporting.php:6686 -#: ../../include/functions_reporting.php:6701 -#: ../../include/functions_reporting.php:6717 -#: ../../include/functions_reporting.php:6732 -#: ../../include/functions_reporting_html.php:3565 -#: ../../include/functions_reporting_html.php:3594 -#: ../../include/functions_reporting_html.php:3635 -#: ../../include/functions_reporting_html.php:3658 -#: ../../include/functions_reporting_html.php:3661 -#: ../../include/functions_reporting_html.php:3668 -#: ../../enterprise/include/functions_reporting_csv.php:1290 -#: ../../enterprise/include/functions_reporting_pdf.php:526 -#: ../../enterprise/include/functions_reporting_pdf.php:558 -#: ../../enterprise/include/functions_reporting_pdf.php:584 -#: ../../enterprise/include/functions_reporting_pdf.php:609 -#: ../../enterprise/include/functions_reporting_pdf.php:612 -#: ../../enterprise/include/functions_reporting_pdf.php:619 -msgid "Maximun" -msgstr "Maximun" - -#: ../../include/functions_reporting.php:6681 -#: ../../include/functions_reporting_html.php:3634 -#: ../../include/functions_reporting_html.php:3641 -#: ../../include/functions_reporting_html.php:3649 -#: ../../include/functions_reporting_html.php:3660 -#: ../../include/functions_reporting_html.php:3665 -#: ../../enterprise/include/functions_reporting_csv.php:1235 -#: ../../enterprise/include/functions_reporting_csv.php:1290 -#: ../../enterprise/include/functions_reporting_csv.php:1394 -#: ../../enterprise/include/functions_reporting_pdf.php:583 -#: ../../enterprise/include/functions_reporting_pdf.php:590 -#: ../../enterprise/include/functions_reporting_pdf.php:597 -#: ../../enterprise/include/functions_reporting_pdf.php:611 -#: ../../enterprise/include/functions_reporting_pdf.php:616 -msgid "Lapse" -msgstr "Intervalle" - -#: ../../include/functions_reporting.php:6854 -#: ../../enterprise/include/functions_reporting_csv.php:1084 -#: ../../enterprise/godmode/reporting/mysql_builder.php:232 -msgid "SQL" -msgstr "SQL" - -#: ../../include/functions_reporting.php:6932 -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 "" -"RequĆŖte illĆ©gale : pour des raisons de sĆ©curitĆ©, certains tokens ou mots ne " -"peuvent pas ĆŖtre employĆ©s : *, supprimer, dĆ©poser, altĆ©rer, modifier, mot de " -"passe, passe, introduire ou mettre Ć  jour." - -#: ../../include/functions_reporting.php:8346 -#: ../../include/functions_reporting.php:9064 -msgid "No Address" -msgstr "Aucune adresse" - -#: ../../include/functions_reporting.php:9363 -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:9381 -msgid "The monitor type is not numeric" -msgstr "Le type de moniteur n'est pas numĆ©rique." - -#: ../../include/functions_reporting.php:9746 -#: ../../enterprise/include/functions_reporting_csv.php:1235 -msgid "Minimum" -msgstr "Minimum" - -#: ../../include/functions_reporting.php:9750 -msgid "Maximum" -msgstr "Maximum" - -#: ../../include/functions_reporting.php:9755 -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:270 -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:400 -msgid "Rate" -msgstr "Taux" - -#: ../../include/functions_reporting.php:9854 -msgid "Automatic combined graph" -msgstr "Graphique automatique combinĆ©" - -#: ../../include/functions_reporting.php:10691 -msgid "Maximum of events shown" -msgstr "Nombre maximal d'Ć©vĆ©nements affichĆ©s" - -#: ../../include/functions_reporting.php:11267 -#: ../../include/functions_reporting.php:11291 -msgid "Server health" -msgstr "Ɖtat du serveur" - -#: ../../include/functions_reporting.php:11267 -#, php-format -msgid "%d Downed servers" -msgstr "%d serveurs hors service" - -#: ../../include/functions_reporting.php:11272 -#: ../../include/functions_reporting.php:11295 -msgid "Monitor health" -msgstr "Ɖtat du moniteur" - -#: ../../include/functions_reporting.php:11272 -#, php-format -msgid "%d Not Normal monitors" -msgstr "%d Moniteurs anormaux" - -#: ../../include/functions_reporting.php:11272 -#: ../../include/functions_reporting.php:11296 -msgid "of monitors up" -msgstr "de moniteurs actifs" - -#: ../../include/functions_reporting.php:11277 -#: ../../include/functions_reporting.php:11299 -msgid "Module sanity" -msgstr "Ɖtat des modules" - -#: ../../include/functions_reporting.php:11277 -#, php-format -msgid "%d Not inited monitors" -msgstr "%d moniteurs non initialisĆ©s" - -#: ../../include/functions_reporting.php:11277 -#: ../../include/functions_reporting.php:11300 -msgid "of total modules inited" -msgstr "du total de modules initialisĆ©s" - -#: ../../include/functions_reporting.php:11282 -#: ../../include/functions_reporting.php:11303 -#: ../../include/functions_reporting_html.php:4949 -msgid "Alert level" -msgstr "Niveau d'alerte" - -#: ../../include/functions_reporting.php:11282 -#: ../../include/functions_reporting.php:12394 -#: ../../include/functions_reporting.php:12404 -#, php-format -msgid "%d Fired alerts" -msgstr "%d alertes dĆ©clenchĆ©es" - -#: ../../include/functions_reporting.php:11282 -#: ../../include/functions_reporting.php:11304 -msgid "of defined alerts not fired" -msgstr "d'alertes dĆ©finies non dĆ©clenchĆ©es" - -#: ../../include/functions_reporting.php:11343 -#: ../../enterprise/include/functions_reporting_csv.php:983 -msgid "Defined alerts" -msgstr "Alertes definies" - -#: ../../include/functions_reporting.php:11354 -#: ../../include/functions_reporting.php:11511 -#: ../../include/functions_reporting.php:11525 -#: ../../include/functions_reporting.php:13864 -#: ../../include/functions_reporting.php:13939 -#: ../../include/functions_ui.php:4660 ../../include/functions_html.php:930 -#: ../../include/functions_html.php:3297 ../../include/functions_html.php:3789 -msgid "Enterprise version not installed" -msgstr "Version Enterprise non installĆ©e" - -#: ../../include/functions_reporting.php:11376 -msgid "Defined and fired alerts" -msgstr "Alertes dĆ©finies et dĆ©clenchĆ©es" - -#: ../../include/functions_reporting.php:11430 -#: ../../enterprise/meta/monitoring/custom_fields_view.php:474 -msgid "Monitor normal" -msgstr "Moniteur en Ć©tat normal" - -#: ../../include/functions_reporting.php:11441 -#: ../../enterprise/meta/monitoring/custom_fields_view.php:496 -msgid "Monitor not init" -msgstr "Moniteur non initialisĆ©" - -#: ../../include/functions_reporting.php:11461 -#: ../../include/functions_reporting.php:11467 -#: ../../enterprise/meta/monitoring/custom_fields_view.php:519 -msgid "Monitors by status" -msgstr "Moniteurs par Ć©tat" - -#: ../../include/functions_reporting.php:11514 -#: ../../include/functions_reporting_html.php:5618 -msgid "Monitor checks" -msgstr "VĆ©rifications de moniteurs" - -#: ../../include/functions_reporting.php:11533 -#: ../../include/functions_reporting_html.php:5625 -msgid "Total agents and monitors" -msgstr "Nombre total d'agents et de moniteurs" - -#: ../../include/functions_reporting.php:11555 -msgid "Defined users" -msgstr "Utilisateurs dĆ©finis" - -#: ../../include/functions_reporting.php:12251 -msgid "Agent without data" -msgstr "Agent sans donnĆ©es" - -#: ../../include/functions_reporting.php:12380 -#: ../../include/functions_reporting.php:12389 -#: ../../enterprise/operation/agentes/tag_view.php:1075 -#, php-format -msgid "%d Total modules" -msgstr "%d modules au total" - -#: ../../include/functions_reporting.php:12381 -#: ../../enterprise/operation/agentes/tag_view.php:1076 -#, php-format -msgid "%d Modules in normal status" -msgstr "%d modules en Ć©tat normal" - -#: ../../include/functions_reporting.php:12382 -#: ../../enterprise/operation/agentes/tag_view.php:1077 -#, php-format -msgid "%d Modules in critical status" -msgstr "%d modules en Ć©tat critique" - -#: ../../include/functions_reporting.php:12383 -#: ../../enterprise/operation/agentes/tag_view.php:1078 -#, php-format -msgid "%d Modules in warning status" -msgstr "%d modules en Ć©tat d'alerte" - -#: ../../include/functions_reporting.php:12384 -#: ../../enterprise/operation/agentes/tag_view.php:1079 -#, php-format -msgid "%d Modules in unknown status" -msgstr "%d modules en Ć©tat inconnu" - -#: ../../include/functions_reporting.php:12385 -#: ../../enterprise/operation/agentes/tag_view.php:1080 -#, php-format -msgid "%d Modules in not init status" -msgstr "%d modules en Ć©tat non initialisĆ©s" - -#: ../../include/functions_reporting.php:12390 -#, php-format -msgid "%d Normal modules" -msgstr "%d modules normaux" - -#: ../../include/functions_reporting.php:12391 -#, php-format -msgid "%d Critical modules" -msgstr "%d modules critiques" - -#: ../../include/functions_reporting.php:12392 -#, php-format -msgid "%d Warning modules" -msgstr "%d modules en Ć©tat d'alerte" - -#: ../../include/functions_reporting.php:12393 -#, php-format -msgid "%d Unknown modules" -msgstr "%d modules inconnus" - -#: ../../include/functions_reporting.php:12398 -#, php-format -msgid "%d Total agents" -msgstr "%d agents au total" - -#: ../../include/functions_reporting.php:12399 -#, php-format -msgid "%d Normal agents" -msgstr "%d agents normaux" - -#: ../../include/functions_reporting.php:12400 -#, php-format -msgid "%d Critical agents" -msgstr "%d agents critiques" - -#: ../../include/functions_reporting.php:12401 -#, php-format -msgid "%d Warning agents" -msgstr "%d agents en Ć©tat d'alerte" - -#: ../../include/functions_reporting.php:12402 -#, php-format -msgid "%d Unknown agents" -msgstr "%d agents inconnus" - -#: ../../include/functions_reporting.php:12403 -#, php-format -msgid "%d not init agents" -msgstr "%d agents non initialisĆ©s" - -#: ../../include/functions_reporting.php:13831 -msgid "Total running modules" -msgstr "Nombre total de modules en fonctionnement" - -#: ../../include/functions_reporting.php:13834 -#: ../../include/functions_reporting.php:13849 -#: ../../include/functions_reporting.php:13861 -#: ../../include/functions_reporting.php:13879 -#: ../../include/functions_reporting.php:13891 -#: ../../include/functions_reporting.php:13903 -#: ../../include/functions_reporting.php:13915 -msgid "Ratio" -msgstr "Ratio" - -#: ../../include/functions_reporting.php:13834 -#: ../../include/functions_reporting.php:13849 -#: ../../include/functions_reporting.php:13861 -#: ../../include/functions_reporting.php:13879 -#: ../../include/functions_reporting.php:13891 -#: ../../include/functions_reporting.php:13903 -#: ../../include/functions_reporting.php:13915 -msgid "Modules by second" -msgstr "Modules par seconde" - -#: ../../include/functions_reporting.php:13846 -msgid "Local modules" -msgstr "Modules locaux" - -#: ../../include/functions_reporting.php:13856 -msgid "Network modules" -msgstr "Modules de rĆ©seau" - -#: ../../include/functions_reporting.php:13875 -msgid "Plugin modules" -msgstr "Modules plugin" - -#: ../../include/functions_reporting.php:13887 -msgid "Prediction modules" -msgstr "Modules de prĆ©diction" - -#: ../../include/functions_reporting.php:13899 -msgid "WMI modules" -msgstr "Modules WMI" - -#: ../../include/functions_reporting.php:13911 -msgid "Web modules" -msgstr "Modules Web" - -#: ../../include/functions_reporting.php:14068 -msgid "Weekly:" -msgstr "Hebdomadaire :" - -#: ../../include/functions_reporting.php:14110 -msgid "Monthly:" -msgstr "Mensuel :" - -#: ../../include/functions_reporting.php:14111 -msgid "From day" -msgstr "ƀ partir du jour" - -#: ../../include/functions_reporting.php:14112 -msgid "To day" -msgstr "Jusqu'au jour" - -#: ../../include/functions_reporting.php:14646 -msgid "Module Histogram Graph" -msgstr "Graphique de registres du module" - -#: ../../include/functions_reporting.php:15027 -#: ../../enterprise/include/functions_cron.php:1776 -msgid "Greetings" -msgstr "Bonjour" - -#: ../../include/functions_reporting.php:15029 -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:15030 -msgid "report" -msgstr "rapport" - -#: ../../include/functions_reporting.php:15033 -#: ../../enterprise/include/functions_cron.php:1780 -#: ../../mobile/include/ui.class.php:327 -#: ../../mobile/include/functions_web.php:84 -msgid "Generated at" -msgstr "GĆ©nĆ©rĆ© le" - -#: ../../include/functions_reporting.php:15035 -#: ../../enterprise/include/functions_cron.php:1782 -msgid "Thanks for your time." -msgstr "Merci pour votre temps." - -#: ../../include/functions_reporting.php:15037 -#: ../../enterprise/include/functions_cron.php:1784 -msgid "Best regards, Pandora FMS" -msgstr "Cordialement, Pandora FMS" - -#: ../../include/functions_reporting.php:15039 -#: ../../enterprise/include/functions_cron.php:1786 -msgid "" -"This is an automatically generated email from Pandora FMS, please do not reply." -msgstr "" -"Ceci est un courriel gĆ©nĆ©rĆ© automatiquement de Pandora FMS. S'il vous plaĆ®t, " -"ne rĆ©pondez pas." - -#: ../../include/functions_visual_map.php:1746 -#: ../../include/functions_visual_map.php:1748 -#: ../../include/rest-api/models/VisualConsole/Items/StaticGraph.php:275 -#: ../../include/rest-api/models/VisualConsole/Items/StaticGraph.php:279 -msgid "Last value: " -msgstr "DerniĆØre valeur : " - -#: ../../include/functions_visual_map.php:2566 -#: ../../include/functions_visual_map.php:2947 -#: ../../enterprise/godmode/policies/policy_agents.php:1152 -#: ../../godmode/massive/massive_add_alerts.php:100 -#: ../../godmode/massive/massive_delete_modules.php:87 -#: ../../godmode/massive/massive_add_action_alerts.php:75 -#: ../../godmode/massive/massive_edit_agents.php:172 -#: ../../godmode/massive/massive_delete_alerts.php:113 -#: ../../godmode/massive/massive_delete_agents.php:61 -msgid "No agents selected" -msgstr "Aucun agent sĆ©lectionnĆ©" - -#: ../../include/functions_visual_map.php:2632 -msgid "Agent successfully added to layout" -msgstr "Agent ajoutĆ© au layout correctement" - -#: ../../include/functions_visual_map.php:2674 -#: ../../enterprise/include/functions_massive.php:54 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:896 -#: ../../godmode/massive/massive_add_action_alerts.php:163 -#: ../../godmode/massive/massive_delete_action_alerts.php:175 -#: ../../godmode/massive/massive_edit_modules.php:1999 -#: ../../godmode/agentes/module_manager.php:274 -msgid "No modules selected" -msgstr "Aucun module sĆ©lectionnĆ©" - -#: ../../include/functions_visual_map.php:2816 -msgid "Modules successfully added to layout" -msgstr "Modules ajoutĆ©s au layout correctement" - -#: ../../include/functions_visual_map.php:3141 -msgid "Agents successfully added to layout" -msgstr "Agents ajoutĆ©s correctement" - -#: ../../include/functions_visual_map.php:3537 -msgid "Cannot load the visualmap" -msgstr "Erreur de chargement de la carte visuelle" - -#: ../../include/functions_visual_map.php:4189 -#: ../../include/rest-api/models/VisualConsole/Item.php:2107 -msgid "Bars graph" -msgstr "Graphique Ć  barres" - -#: ../../include/functions_visual_map.php:4199 -#: ../../include/rest-api/models/VisualConsole/Item.php:2115 -msgid "Percentile bar" -msgstr "Barre de centile" - -#: ../../include/functions_visual_map.php:4204 -#: ../../include/rest-api/models/VisualConsole/Item.php:2123 -msgid "Circular progress bar" -msgstr "Barre de progression circulaire" - -#: ../../include/functions_modules.php:4015 -msgid "Realtime SNMP graph" -msgstr "Graphique SNMP en temps rĆ©el" - -#: ../../include/functions_modules.php:4080 -msgid "ALL" -msgstr "TOUT" - -#: ../../include/functions_modules.php:4096 -msgid "NOT NORMAL" -msgstr "PAS NORMAL" - -#: ../../include/functions_planned_downtimes.php:40 -#: ../../include/functions_planned_downtimes.php:742 -#: ../../godmode/agentes/planned_downtime.editor.php:241 -msgid "" -"Not created. Error inserting data. Start time must be higher than the current " -"time" -msgstr "" -"Erreur de crĆ©ation et d'insertion de donnĆ©es. L'heure de dĆ©but doit ĆŖtre " -"supĆ©rieure Ć  l'heure actuelle." - -#: ../../include/functions_planned_downtimes.php:42 -#: ../../include/functions_planned_downtimes.php:47 -#: ../../include/functions_planned_downtimes.php:49 -#: ../../include/functions_planned_downtimes.php:747 -#: ../../include/functions_planned_downtimes.php:754 -#: ../../include/functions_planned_downtimes.php:762 -#: ../../include/functions_planned_downtimes.php:770 -#: ../../include/functions_planned_downtimes.php:775 -#: ../../include/functions_planned_downtimes.php:780 -#: ../../include/functions_planned_downtimes.php:785 -#: ../../include/functions_planned_downtimes.php:790 -#: ../../include/functions_planned_downtimes.php:795 -#: ../../include/functions_planned_downtimes.php:800 -#: ../../godmode/agentes/planned_downtime.editor.php:245 -#: ../../godmode/agentes/planned_downtime.editor.php:249 -#: ../../godmode/agentes/planned_downtime.editor.php:257 -#: ../../godmode/agentes/planned_downtime.editor.php:261 -msgid "Not created. Error inserting data" -msgstr "Erreur de crĆ©ation : erreur d'insertion de donnĆ©es" - -#: ../../include/functions_planned_downtimes.php:42 -#: ../../include/functions_planned_downtimes.php:754 -#: ../../godmode/agentes/planned_downtime.editor.php:245 -msgid "The end date must be higher than the start date" -msgstr "La date finale doit ĆŖtre supĆ©rieure Ć  la date initiale" - -#: ../../include/functions_planned_downtimes.php:47 -#: ../../include/functions_planned_downtimes.php:762 -#: ../../godmode/agentes/planned_downtime.editor.php:257 -#: ../../godmode/agentes/planned_downtime.editor.php:722 -#: ../../godmode/agentes/planned_downtime.editor.php:735 -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" - -#: ../../include/functions_planned_downtimes.php:49 -#: ../../include/functions_planned_downtimes.php:770 -#: ../../godmode/agentes/planned_downtime.editor.php:261 -#: ../../godmode/agentes/planned_downtime.editor.php:707 -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" - -#: ../../include/functions_planned_downtimes.php:98 -#: ../../include/functions_planned_downtimes.php:814 -#: ../../godmode/agentes/planned_downtime.editor.php:313 -msgid "Each scheduled downtime must have a different name" -msgstr "Chaque temps d'arrĆŖt programmĆ© doit avoir un nom diffĆ©rent" - -#: ../../include/functions_planned_downtimes.php:103 -#: ../../include/functions_planned_downtimes.php:820 -#: ../../godmode/agentes/planned_downtime.editor.php:318 -#: ../../godmode/agentes/planned_downtime.editor.php:350 -msgid "Scheduled downtime must have a name" -msgstr "Les temps d'arrĆŖt programmĆ©s doivent avoir un nom" +"Si la rĆ©plication d'Ć©vĆ©nement est en cours, il ne sera pas possible d'entrer des " +"commentaires ici. Cette option permet uniquement aux utilisateurs locaux de " +"Pandora FMS de voir les commentaires, mais pas d'opĆ©rer avec eux. L'opĆ©ration, " +"lorsque la rĆ©plication d'Ć©vĆ©nement est activĆ©e, doit ĆŖtre effectuĆ©e uniquement " +"dans la MĆ©taconsole." #: ../../include/functions_planned_downtimes.php:575 msgid "Succesful stopped the Downtime" @@ -25088,11 +48204,6 @@ msgstr "Interruption d'arrĆŖt Ć©chouĆ©e" msgid "Enabled %s elements from the downtime" msgstr "Activer les Ć©lĆ©ments %s de l'arrĆŖt" -#: ../../include/functions_planned_downtimes.php:747 -#: ../../godmode/agentes/planned_downtime.editor.php:249 -msgid "The end date must be higher than the current time" -msgstr "La date finale doit ĆŖtre postĆ©rieure Ć  l'heure actuelle" - #: ../../include/functions_planned_downtimes.php:775 msgid "The downtime must be quiet, disable_agents or disable_agents_alerts" msgstr "" @@ -25121,8 +48232,8 @@ msgstr "La date est mal formatĆ©e" #: ../../include/functions_planned_downtimes.php:907 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." +"Ce temps d'arrĆŖt programmĆ© est exĆ©cutĆ© maintenant. Impossible de supprimer pour " +"le moment." #: ../../include/functions_planned_downtimes.php:914 msgid "Deleted this scheduled downtime successfully." @@ -25132,21 +48243,6 @@ msgstr "Ce temps d'arrĆŖt planifiĆ© a Ć©tĆ© supprimĆ© correctement." msgid "Problems for deleted this scheduled downtime." msgstr "ProblĆØmes pour supprimer ce temps d'arrĆŖt programmĆ©." -#: ../../include/functions_planned_downtimes.php:949 -#: ../../include/functions_maps.php:73 -#: ../../include/functions_networkmap.php:2068 -msgid "Copy of " -msgstr "Copie de " - -#: ../../include/functions_planned_downtimes.php:958 -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:456 -#: ../../enterprise/godmode/policies/policies.php:236 -#: ../../godmode/reporting/reporting_builder.php:738 -#: ../../godmode/alerts/alert_actions.php:130 -#: ../../godmode/alerts/alert_commands.php:626 -msgid "Could not be copied" -msgstr "Impossible de le copier" - #: ../../include/functions_planned_downtimes.php:976 msgid "Error adding agents to copied downtime" msgstr "Erreur lors de lā€™ajout dā€™agents aux temps dā€™arrĆŖt copiĆ©s" @@ -25155,27101 +48251,3315 @@ msgstr "Erreur lors de lā€™ajout dā€™agents aux temps dā€™arrĆŖt copiĆ©s" msgid "Error adding module to copied downtime" msgstr "Erreur lors de lā€™ajout dā€™un module Ć  un temps dā€™arrĆŖt copiĆ©" -#: ../../include/api.php:237 -msgid "User or group not specified" -msgstr "Utilisateur ou groupe non spĆ©cifiĆ©" - -#: ../../include/api.php:238 -msgid "User, group not specified" -msgstr "Utilisateur, groupe non spĆ©cifiĆ©" - -#: ../../include/api.php:269 -msgid "User, group or profile not specified" -msgstr "Utilisateur, groupe ou profil non spĆ©cifiĆ©" - -#: ../../include/api.php:270 -msgid "User, group or profile status not specified" -msgstr "Utilisateur, groupe ou Ć©tat du profil non spĆ©cifiĆ©" - -#: ../../include/graphs/functions_flot.php:365 -msgid "Cancel zoom" -msgstr "Annuler zoom" - -#: ../../include/graphs/functions_flot.php:367 -msgid "Warning and Critical thresholds" -msgstr "Seuils d'Ć©tat d'alerte et critique" - -#: ../../include/graphs/functions_flot.php:372 -msgid "Overview graph" -msgstr "AperƧu du graphique" - -#: ../../include/graphs/export_data.php:88 -#: ../../include/graphs/export_data.php:154 -msgid "An error occured exporting the data" -msgstr "Erreur d'exportation des donnĆ©es" - -#: ../../include/graphs/export_data.php:100 -#: ../../enterprise/godmode/reporting/visual_console_builder.wizard_services.php:141 -msgid "Selected" -msgstr "SĆ©lectionnĆ©s" - -#: ../../include/functions_register.php:105 -#, php-format -msgid "%s configuration wizard" -msgstr "Assistant de configuration %s" - -#: ../../include/functions_register.php:108 -#, php-format -msgid "" -"Please fill the following information in order to configure your %s instance " -"successfully" -msgstr "" -"Veuillez remplir les informations suivantes afin de configurer votre instance " -"%s correctement" - -#: ../../include/functions_register.php:122 -#: ../../godmode/setup/setup_general.php:77 -msgid "Language code" -msgstr "Code de la langue" - -#: ../../include/functions_register.php:165 -msgid "" -"Must have the same time zone as the system or database to avoid mismatches of " -"time." -msgstr "" -"Doit avoir le mĆŖme fuseau horaire que le systĆØme ou la base de donnĆ©es pour " -"Ć©viter les dĆ©calages de temps." - -#: ../../include/functions_register.php:171 -msgid "E-mail for receiving alerts" -msgstr "Courriel pour recevoir des alertes" - -#: ../../include/functions_register.php:196 -msgid "All fields required" -msgstr "Tous les champs sont obligatoires" - -#: ../../include/functions_register.php:205 -msgid "Are you sure you don't want to configure a base email?" -msgstr "Ɗtes-vous sĆ»r de ne pas vouloir configurer un e-mail de baseĀ ?" - -#: ../../include/functions_register.php:207 -msgid "" -"You could change this options later in \"alert actions\" and setting your " -"account." -msgstr "" -"Vous pouvez modifier ces options plus tard dans Ā«Ā actions d'alerteĀ Ā» et dans " -"la configuration de votre compte." - -#: ../../include/functions_maps.php:38 -#: ../../include/functions_networkmap.php:1307 -msgid "Topology" -msgstr "Topologie" - -#: ../../include/functions_profile.php:216 -#: ../../enterprise/godmode/setup/setup_auth.php:175 -#: ../../enterprise/godmode/setup/setup_auth.php:232 -msgid "No hierarchy" -msgstr "Pas de hiĆ©rarchie" - -#: ../../include/functions_ui.php:287 -msgid "Information" -msgstr "Information" - -#: ../../include/functions_ui.php:465 -msgid "Request successfully processed" -msgstr "RequĆŖte traitĆ©e correctement" - -#: ../../include/functions_ui.php:469 -msgid "Error processing request" -msgstr "Erreur de traitement de requĆŖtes" - -#: ../../include/functions_ui.php:625 -msgid "" -"Is possible that this view uses part of information which your user has not " -"access" -msgstr "" -"Il est possible que ce mode de visionnement utilise une partie de " -"l'information dont votre utilisateur n'a pas accĆØs." - -#: ../../include/functions_ui.php:874 -msgid "Software" -msgstr "Logiciel" - -#: ../../include/functions_ui.php:1323 -#: ../../godmode/alerts/configure_alert_template.php:1218 -#: ../../godmode/alerts/alert_view.php:175 -msgid "The alert would fire when the value is " -msgstr "L'alerte est dĆ©clenchĆ©e lorsque la valeur est " - -#: ../../include/functions_ui.php:1328 -#: ../../godmode/alerts/configure_alert_template.php:1219 -#: ../../godmode/alerts/alert_view.php:180 -msgid "The alert would fire when the value is not " -msgstr "" -"L'alerte est dĆ©clenchĆ©e lorsque la valeur n'est pas " - -#: ../../include/functions_ui.php:1334 -#: ../../godmode/alerts/configure_alert_template.php:1216 -#: ../../godmode/alerts/alert_view.php:166 -msgid "The alert would fire when the value matches " -msgstr "" -"L'alerte est dĆ©clenchĆ©e lorsque la valeur concorde avec " - -#: ../../include/functions_ui.php:1337 ../../godmode/alerts/alert_view.php:168 -msgid "" -"The alert would fire when the value doesn't match " -msgstr "" -"L'alerte est dĆ©clenchĆ©e lorsque la valeur ne concorde pas avec " - -#: ../../include/functions_ui.php:1346 -#: ../../godmode/alerts/configure_alert_template.php:1220 -#: ../../godmode/alerts/alert_view.php:187 -msgid "" -"The alert would fire when the value is between and " -"" -msgstr "" -"L'alerte est dĆ©clenchĆ©e lorsque la valeur se trouve entre et " - -#: ../../include/functions_ui.php:1349 ../../godmode/alerts/alert_view.php:191 -msgid "" -"The alert would fire when the value is not between " -"and " -msgstr "" -"L'alerte est dĆ©clenchĆ©e lorsque la valeur se trouve entre et " - -#: ../../include/functions_ui.php:1355 -msgid "The alert would fire when the value is over " -msgstr "" -"L'alerte sera dĆ©clenchĆ©e quand la valeur soit supĆ©rieure Ć  " - -#: ../../include/functions_ui.php:1360 -msgid "The alert would fire when the value is under " -msgstr "" -"L'alerte sera dĆ©clenchĆ©e quand la valeur soit infĆ©rieure Ć  " - -#: ../../include/functions_ui.php:1365 -#: ../../godmode/alerts/configure_alert_template.php:1224 -#: ../../godmode/alerts/alert_view.php:218 -msgid "The alert would fire when the module is in warning status" -msgstr "L'alerte est dĆ©clenchĆ©e lorsque le module se trouve en Ć©tat d'alerte" - -#: ../../include/functions_ui.php:1370 -#: ../../godmode/alerts/configure_alert_template.php:1225 -#: ../../godmode/alerts/alert_view.php:222 -msgid "The alert would fire when the module is in critical status" -msgstr "L'alerte est dĆ©clenchĆ©e lorsque le module se trouve en Ć©tat critique" - -#: ../../include/functions_ui.php:1375 -msgid "Unknown option." -msgstr "Option inconnue." - -#: ../../include/functions_ui.php:2107 ../../include/functions_ui.php:2133 -#, php-format -msgid "Total items: %s" -msgstr "Nombre total d'Ć©lĆ©ments : %s" - -#: ../../include/functions_ui.php:2534 -msgid "Unknown type" -msgstr "Type inconnu" - -#: ../../include/functions_ui.php:3414 -#: ../../enterprise/include/class/DatabaseHA.class.php:217 -#: ../../enterprise/meta/monitoring/custom_fields_view.php:347 -#: ../../enterprise/meta/monitoring/custom_fields_view.php:349 -#: ../../godmode/wizards/DiscoveryTaskList.class.php:1861 -msgid "Processing" -msgstr "Traitement en cours" - -#: ../../include/functions_ui.php:3502 ../../include/functions_ui.php:3503 -msgid "Export current page to CSV" -msgstr "Exporter la page actuelle au format CSV" - -#: ../../include/functions_ui.php:5042 -msgid "Type at least two characters to search." -msgstr "Ɖcrivez un minimum de deux caractĆØres pour rechercher" - -#: ../../include/functions_ui.php:5780 ../../include/functions_html.php:5341 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3678 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3930 -#: ../../godmode/reporting/create_container.php:418 -#: ../../godmode/reporting/reporting_builder.item_editor.php:1664 -#: ../../godmode/reporting/reporting_builder.item_editor.php:4047 -#: ../../godmode/reporting/reporting_builder.item_editor.php:4084 -#: ../../godmode/reporting/reporting_builder.item_editor.php:4253 -#: ../../godmode/reporting/reporting_builder.item_editor.php:4526 -#: ../../godmode/reporting/reporting_builder.item_editor.php:4560 -#: ../../godmode/reporting/reporting_builder.item_editor.php:4614 -msgid "Select an Agent first" -msgstr "SĆ©lectionnez d'abord un agent" - -#: ../../include/functions_ui.php:5981 -msgid "Unhandled error" -msgstr "Erreur non traitĆ©e" - -#: ../../include/functions_ui.php:5982 -msgid "An unhandled error occurs" -msgstr "Une erreur non gĆ©rĆ©e se produit" - -#: ../../include/functions_ui.php:6227 -#: ../../enterprise/operation/agentes/tag_view.php:873 -#: ../../enterprise/operation/agentes/tag_view.php:883 -#: ../../enterprise/operation/agentes/wux_console_view.php:352 -#: ../../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/include/functions_ux_console.php:507 -msgid "Snapshot view" -msgstr "Vue de l'instantanĆ©" - -#: ../../include/functions_ui.php:6253 -#, 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 "" -"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:6557 -#: ../../enterprise/include/class/CommandCenter.class.php:452 -msgid "Query" -msgstr "RequĆŖte" - -#: ../../include/functions_ui.php:6574 -msgid "Execute query" -msgstr "ExĆ©cute la requĆŖte" - -#: ../../include/functions_ui.php:6596 -msgid "Results" -msgstr "RĆ©sultats" - -#: ../../include/functions_ui.php:6660 -msgid "Show password" -msgstr "Afficher le mot de passe" - -#: ../../include/functions_integriaims.php:42 -msgid "Configure Integria IMS" -msgstr "Configurer Integria IMS" - -#: ../../include/functions_integriaims.php:43 -msgid "Ticket list" -msgstr "Liste des Tickets" - -#: ../../include/functions_integriaims.php:44 -msgid "New ticket" -msgstr "Nouveau ticket" - -#: ../../include/functions_integriaims.php:73 -msgid "Edit ticket" -msgstr "Modifier le ticket" - -#: ../../include/functions_integriaims.php:74 -msgid "View ticket" -msgstr "Voir le ticket" - -#: ../../include/functions_integriaims.php:307 -msgid "" -"API request failed. Please check Integria IMS' access credentials in Pandora " -"setup." -msgstr "" -"Ɖchec de la requĆŖte d'API. Veuillez vĆ©rifier les identifiants d'accĆØs " -"d'Integria IMS dans la configuration de Pandora FMS." - -#: ../../include/functions_integriaims.php:557 -msgid "File successfully added" -msgstr "Fichier ajoutĆ© correctement" - -#: ../../include/functions_integriaims.php:558 -msgid "File could not be added" -msgstr "Impossible d'ajouter le fichier" - -#: ../../include/functions_integriaims.php:561 -msgid "File has an invalid extension" -msgstr "Le fichier a une extension invalide" - -#: ../../include/rest-api/models/VisualConsole/Item.php:1958 -#: ../../godmode/setup/gis_step_2.php:364 -msgid "Top" -msgstr "En haut" - -#: ../../include/rest-api/models/VisualConsole/Item.php:1959 -#: ../../godmode/setup/gis_step_2.php:357 -msgid "Right" -msgstr "Droite" - -#: ../../include/rest-api/models/VisualConsole/Item.php:1960 -#: ../../godmode/setup/gis_step_2.php:343 -msgid "Left" -msgstr "Gauche" - -#: ../../include/rest-api/models/VisualConsole/Item.php:1964 -msgid "Label position" -msgstr "Position de lā€™Ć©tiquette" - -#: ../../include/rest-api/models/VisualConsole/Item.php:1994 -#: ../../include/rest-api/models/VisualConsole/Items/Box.php:217 -msgid "width" -msgstr "largeur" - -#: ../../include/rest-api/models/VisualConsole/Item.php:2004 -#: ../../include/rest-api/models/VisualConsole/Items/Box.php:227 -msgid "height" -msgstr "hauteur" - -#: ../../include/rest-api/models/VisualConsole/Item.php:2026 -#: ../../include/rest-api/models/VisualConsole/Items/Box.php:249 -msgid "X" -msgstr "X" - -#: ../../include/rest-api/models/VisualConsole/Item.php:2036 -#: ../../include/rest-api/models/VisualConsole/Items/Box.php:259 -#: ../../include/functions.php:491 ../../include/functions.php:643 -msgid "Y" -msgstr "Y" - -#: ../../include/rest-api/models/VisualConsole/Item.php:2051 -msgid "Link enabled" -msgstr "Lien activĆ©" - -#: ../../include/rest-api/models/VisualConsole/Item.php:2063 -#: ../../include/rest-api/models/VisualConsole/Items/NetworkLink.php:950 -#: ../../include/rest-api/models/VisualConsole/Items/Line.php:499 -#: ../../include/rest-api/models/VisualConsole/Items/Box.php:273 -msgid "Show on top" -msgstr "Afficher en haut" - -#: ../../include/rest-api/models/VisualConsole/Item.php:2093 -msgid "Static graph" -msgstr "Graphique statique" - -#: ../../include/rest-api/models/VisualConsole/Item.php:2111 -msgid "Event History Graph" -msgstr "Graphique de l'historique des Ć©vĆ©nements" - -#: ../../include/rest-api/models/VisualConsole/Item.php:2119 -msgid "Percentile bubble" -msgstr "Bulle de centile" - -#: ../../include/rest-api/models/VisualConsole/Item.php:2584 -#: ../../include/rest-api/models/VisualConsole/Item.php:2585 -msgid "Image Vc" -msgstr "Image Vc" - -#: ../../include/rest-api/models/VisualConsole/Items/BasicChart.php:325 -msgid "Module name color" -msgstr "Couleur du nom du module" - -#: ../../include/rest-api/models/VisualConsole/Items/StaticGraph.php:402 -msgid "Show Last Value" -msgstr "Afficher la derniĆØre valeur" - -#: ../../include/rest-api/models/VisualConsole/Items/ColorCloud.php:438 -msgid "Add new range" -msgstr "Ajouter une nouvelle plage" - -#: ../../include/rest-api/models/VisualConsole/Items/ColorCloud.php:495 -msgid "Current ranges" -msgstr "Gammes actuelles" - -#: ../../include/rest-api/models/VisualConsole/Items/SimpleValue.php:365 -msgid "Avg Value" -msgstr "Valeur moyenne" - -#: ../../include/rest-api/models/VisualConsole/Items/SimpleValue.php:366 -#: ../../include/functions_reporting_html.php:997 -#: ../../include/functions_reporting_html.php:2264 -#: ../../include/functions_reporting_html.php:4296 -#: ../../include/functions_reporting_html.php:4837 -msgid "Max Value" -msgstr "Valeur maximale" - -#: ../../include/rest-api/models/VisualConsole/Items/SimpleValue.php:367 -#: ../../include/functions_reporting_html.php:995 -#: ../../include/functions_reporting_html.php:2262 -#: ../../include/functions_reporting_html.php:4298 -#: ../../include/functions_reporting_html.php:4834 -msgid "Min Value" -msgstr "Valeur minimale" - -#: ../../include/rest-api/models/VisualConsole/Items/BarsGraph.php:487 -#: ../../include/rest-api/models/VisualConsole/Items/ModuleGraph.php:658 -msgid "Graph Type" -msgstr "Type de graphique" - -#: ../../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 -msgid "Failed to connect to node" -msgstr "Ɖchec de la connexion au nœud" - -#: ../../include/rest-api/models/VisualConsole/Items/ModuleGraph.php:567 -#: ../../enterprise/include/functions_reporting_csv.php:2298 -msgid "Custom Graph" -msgstr "Graphique personnalisĆ©e" - -#: ../../include/rest-api/models/VisualConsole/Items/Box.php:311 -msgid "Border Width" -msgstr "Largeur de la bordure" - -#: ../../include/rest-api/models/VisualConsole/Items/Box.php:335 -msgid "Fill transparent" -msgstr "Remplissage transparent" - -#: ../../include/rest-api/models/VisualConsole/Items/Odometer.php:416 -msgid "Title color" -msgstr "Couleur du titre" - -#: ../../include/rest-api/models/VisualConsole/Items/EventsHistory.php:270 -msgid "12h" -msgstr "12h" - -#: ../../include/rest-api/models/VisualConsole/Items/EventsHistory.php:290 -msgid "Legend color" -msgstr "Couleur de la lĆ©gende" - -#: ../../include/rest-api/models/VisualConsole/View.php:66 -msgid "Label settings" -msgstr "ParamĆØtres d'Ć©tiquette" - -#: ../../include/rest-api/models/VisualConsole/View.php:72 -#: ../../include/rest-api/models/VisualConsole/View.php:104 -msgid "General settings" -msgstr "ParamĆØtres gĆ©nĆ©raux" - -#: ../../include/rest-api/models/VisualConsole/View.php:78 -#: ../../include/rest-api/models/VisualConsole/View.php:94 -#: ../../include/rest-api/models/VisualConsole/View.php:110 -msgid "Specific settings" -msgstr "ParamĆØtres spĆ©cifiques" - -#: ../../include/rest-api/models/VisualConsole/View.php:213 -msgid "Item type not valid [" -msgstr "Type dā€™Ć©lĆ©ment non valide [" - -#: ../../include/rest-api/models/VisualConsole/View.php:218 -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 -msgid "NetworkLink from" -msgstr "NetworkLink de" - -#: ../../include/rest-api/models/VisualConsole/View.php:733 -#: ../../include/rest-api/models/VisualConsole/View.php:812 -#, php-format -msgid "Interface %s status" -msgstr "Ɖtat de l'interface %s" - -#: ../../include/rest-api/models/VisualConsole/View.php:808 -msgid "NetworkLink to" -msgstr "NetworkLink vers" - -#: ../../include/rest-api/models/VisualConsole/View.php:860 -#, php-format -msgid "Failed to generate charts: %s" -msgstr "Ɖchec de la gĆ©nĆ©ration des graphiquesĀ : %s" - -#: ../../include/functions_html.php:595 ../../include/functions_html.php:969 -msgid "Please select an item from this list." -msgstr "Veuillez sĆ©lectionner un Ć©lĆ©ment dans cette liste." - -#: ../../include/functions_html.php:621 ../../include/functions_html.php:5792 -msgid "Please select..." -msgstr "Veuillez sĆ©lectionner..." - -#: ../../include/functions_html.php:1582 -msgid "Type to search agents" -msgstr "Tapez pour rechercher des agents" - -#: ../../include/functions_html.php:1596 -msgid "Type to search modules" -msgstr "Tapez pour rechercher des modules" - -#: ../../include/functions_html.php:1659 ../../include/functions_html.php:1678 -#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:265 -#: ../../extensions/agents_modules.php:436 -#: ../../extensions/agents_modules.php:439 -#: ../../godmode/reporting/reporting_builder.item_editor.php:1780 -#: ../../godmode/massive/massive_add_alerts.php:264 -#: ../../godmode/massive/massive_delete_modules.php:555 -#: ../../godmode/massive/massive_add_action_alerts.php:224 -#: ../../godmode/massive/massive_delete_action_alerts.php:245 -#: ../../godmode/massive/massive_delete_alerts.php:345 -#: ../../godmode/massive/massive_edit_modules.php:528 -#: ../../godmode/agentes/planned_downtime.editor.php:817 -msgid "Show common modules" -msgstr "Afficher les modules communs" - -#: ../../include/functions_html.php:1660 -#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:266 -#: ../../extensions/agents_modules.php:437 -#: ../../godmode/reporting/reporting_builder.item_editor.php:1781 -#: ../../godmode/massive/massive_add_alerts.php:265 -#: ../../godmode/massive/massive_delete_modules.php:556 -#: ../../godmode/massive/massive_add_action_alerts.php:225 -#: ../../godmode/massive/massive_delete_action_alerts.php:246 -#: ../../godmode/massive/massive_delete_alerts.php:346 -#: ../../godmode/massive/massive_edit_modules.php:529 -#: ../../godmode/agentes/planned_downtime.editor.php:818 -msgid "Show all modules" -msgstr "Afficher tous les modules" - -#: ../../include/functions_html.php:1667 -msgid "Only common modules" -msgstr "Seuls les modules communes" - -#: ../../include/functions_html.php:1838 ../../include/functions_html.php:1939 -#: ../../include/functions_html.php:2077 -#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:552 -#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:573 -#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:643 -#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:664 -#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:695 -#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:704 -#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:763 -#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:786 -#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:807 -#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:811 -#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:822 -#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:842 -#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:867 -#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:883 -#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:944 -#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:967 -#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:985 -#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:991 -#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:1004 -#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:1032 -#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:1134 -#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:28 -#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:315 -#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:330 -#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:475 -#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:489 -#: ../../godmode/massive/massive_edit_agents.php:669 -#: ../../godmode/massive/massive_edit_agents.php:694 -#: ../../godmode/massive/massive_edit_agents.php:711 -#: ../../godmode/massive/massive_edit_agents.php:725 -#: ../../godmode/massive/massive_edit_agents.php:749 -#: ../../godmode/massive/massive_edit_agents.php:859 -#: ../../godmode/massive/massive_edit_agents.php:906 -#: ../../godmode/massive/massive_edit_agents.php:981 -#: ../../godmode/massive/massive_edit_agents.php:985 -#: ../../godmode/massive/massive_edit_agents.php:994 -#: ../../godmode/massive/massive_edit_agents.php:1022 -#: ../../godmode/massive/massive_edit_agents.php:1091 -#: ../../godmode/massive/massive_edit_modules.php:615 -#: ../../godmode/massive/massive_edit_modules.php:637 -#: ../../godmode/massive/massive_edit_modules.php:706 -#: ../../godmode/massive/massive_edit_modules.php:728 -#: ../../godmode/massive/massive_edit_modules.php:759 -#: ../../godmode/massive/massive_edit_modules.php:768 -#: ../../godmode/massive/massive_edit_modules.php:827 -#: ../../godmode/massive/massive_edit_modules.php:845 -#: ../../godmode/massive/massive_edit_modules.php:864 -#: ../../godmode/massive/massive_edit_modules.php:868 -#: ../../godmode/massive/massive_edit_modules.php:879 -#: ../../godmode/massive/massive_edit_modules.php:899 -#: ../../godmode/massive/massive_edit_modules.php:924 -#: ../../godmode/massive/massive_edit_modules.php:936 -#: ../../godmode/massive/massive_edit_modules.php:997 -#: ../../godmode/massive/massive_edit_modules.php:1043 -#: ../../godmode/massive/massive_edit_modules.php:1061 -#: ../../godmode/massive/massive_edit_modules.php:1067 -#: ../../godmode/massive/massive_edit_modules.php:1080 -#: ../../godmode/massive/massive_edit_modules.php:1108 -#: ../../godmode/massive/massive_edit_modules.php:1212 -msgid "No change" -msgstr "Aucune modification" - -#: ../../include/functions_html.php:2110 ../../include/functions.php:500 -#: ../../include/functions.php:631 -#: ../../enterprise/include/ajax/log_viewer.ajax.php:280 -#: ../../enterprise/meta/advanced/metasetup.visual.php:385 -#: ../../godmode/setup/setup_visuals.php:1345 ../../godmode/db/db_main.php:86 -#: ../../godmode/db/db_main.php:92 -msgid "days" -msgstr "jours" - -#: ../../include/functions_html.php:2111 -msgid "weeks" -msgstr "semaines" - -#: ../../include/functions_html.php:2112 ../../include/functions.php:501 -#: ../../include/functions.php:632 -#: ../../enterprise/meta/advanced/metasetup.visual.php:386 -#: ../../godmode/setup/setup_visuals.php:1346 -msgid "months" -msgstr "mois" - -#: ../../include/functions_html.php:2113 ../../include/functions.php:502 -#: ../../include/functions.php:633 -#: ../../enterprise/meta/advanced/metasetup.visual.php:387 -#: ../../godmode/setup/setup_visuals.php:1347 -msgid "years" -msgstr "annĆ©es" - -#: ../../include/functions_html.php:2273 -msgid "Month day" -msgstr "Jour du mois" - -#: ../../include/functions_html.php:2274 -#: ../../enterprise/include/functions_reporting_csv.php:1737 -#: ../../enterprise/include/functions_reporting_csv.php:2045 -msgid "Month" -msgstr "Mois" - -#: ../../include/functions_html.php:2275 -msgid "Week day" -msgstr "Jour de la semaine" - -#: ../../include/functions_html.php:4562 -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:4723 ../../index.php:484 ../../index.php:761 -#: ../../index.php:835 -#, php-format -msgid "%s cannot verify the origin of the request. Try again, please." -msgstr "" -"%s ne peut pas vĆ©rifier l'origine de requĆŖte. Veuillez essayer Ć  nouveau." - -#: ../../include/functions_html.php:5547 -msgid "Type at least two characters to search the user." -msgstr "Tapez au moins deux caractĆØres pour rechercher l'utilisateur." - -#: ../../include/functions_html.php:5936 -msgid "Primary group cannot be secondary too." -msgstr "Le groupe principal ne peut pas non plus ĆŖtre secondaire." - -#: ../../include/functions_html.php:5950 -#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:540 -#: ../../godmode/massive/massive_edit_agents.php:804 -msgid "Add secondary groups" -msgstr "Ajouter des groupes secondaires" - -#: ../../include/functions_html.php:5963 -#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:547 -#: ../../godmode/massive/massive_edit_agents.php:830 -msgid "Remove secondary groups" -msgstr "Supprimer des groupes secondaires" - -#: ../../include/functions_networkmap.php:1303 -msgid "Radial dynamic" -msgstr "Dynamique radiale" - -#: ../../include/functions_networkmap.php:1332 -msgid "Create a new topology map" -msgstr "CrĆ©er une nouvelle carte de topologie" - -#: ../../include/functions_networkmap.php:1333 -msgid "Create a new group map" -msgstr "CrĆ©er une nouvelle carte de groupe" - -#: ../../include/functions_networkmap.php:1334 -msgid "Create a new dynamic map" -msgstr "CrĆ©er une nouvelle carte dynamique" - -#: ../../include/functions_networkmap.php:1336 -msgid "Create a new radial dynamic map" -msgstr "CrĆ©er une nouvelle carte dynamique radiale" - -#: ../../include/functions_networkmap.php:3404 -msgid "Map not found." -msgstr "Carte introuvable." - -#: ../../include/functions.php:231 -msgid "." -msgstr "." - -#: ../../include/functions.php:233 -msgid "," -msgstr "," - -#: ../../include/functions.php:488 ../../include/functions.php:640 -msgid "s" -msgstr "s" - -#: ../../include/functions.php:489 ../../include/functions.php:641 -msgid "d" -msgstr "d" - -#: ../../include/functions.php:490 ../../include/functions.php:642 -msgid "M" -msgstr "M" - -#: ../../include/functions.php:492 ../../include/functions.php:644 -msgid "m" -msgstr "m" - -#: ../../include/functions.php:493 ../../include/functions.php:645 -msgid "h" -msgstr "h" - -#: ../../include/functions.php:494 ../../include/functions.php:646 -msgid "N" -msgstr "N" - -#: ../../include/functions.php:1226 -msgid "Monitor Unknown" -msgstr "Moniteur inconnu" - -#: ../../include/functions.php:1233 -msgid "Agent created" -msgstr "Agent crĆ©Ć©" - -#: ../../include/functions.php:1354 ../../include/functions.php:1384 -msgid "ALERT FIRED" -msgstr "ALETE DƉCLENCHƉE" - -#: ../../include/functions.php:2681 -#: ../../godmode/reporting/create_container.php:345 -msgid "custom" -msgstr "personnalisĆ©" - -#: ../../include/functions.php:2687 -#, php-format -msgid "%s seconds" -msgstr "%s secondes" - -#: ../../include/functions.php:2690 ../../include/functions.php:2691 -#, php-format -msgid "%s minutes" -msgstr "%s minutes" - -#: ../../include/functions.php:2699 ../../include/functions.php:2700 -#, php-format -msgid "%s months" -msgstr "%s mois" - -#: ../../include/functions.php:2702 ../../include/functions.php:2703 -#, php-format -msgid "%s years" -msgstr "%s ans" - -#: ../../include/functions.php:2705 -msgid "Default values will be used" -msgstr "Les valeurs par dĆ©faut seront utilisĆ©es." - -#: ../../include/functions.php:2890 ../../include/functions.php:2895 -msgid "The file exceeds the maximum size" -msgstr "Le fichier dĆ©passe la taille maximale" - -#: ../../include/functions.php:2891 -msgid "" -"Please check this PHP runtime variable values:
      upload_max_filesize "
    -"(currently "
    -msgstr ""
    -"Veuillez vĆ©rifier les valeurs de cette variable dā€™exĆ©cution PHP : 
      "
    -"upload_max_filesize (actuellement "
    -
    -#: ../../include/functions.php:2899
    -msgid "The uploaded file was only partially uploaded"
    -msgstr "Le fichier n'a ƩtƩ que partiellement tƩlƩversƩ."
    -
    -#: ../../include/functions.php:2903
    -msgid "No file was uploaded"
    -msgstr "Aucun fichier n'a ƩtƩ tƩlƩversƩ."
    -
    -#: ../../include/functions.php:2907
    -msgid "Missing a temporary folder"
    -msgstr "Dossier temporaire manquant"
    -
    -#: ../../include/functions.php:2911
    -msgid "Failed to write file to disk"
    -msgstr "Impossible d'Ć©crire le fichier sur le disque"
    -
    -#: ../../include/functions.php:2915
    -msgid "File upload stopped by extension"
    -msgstr "TƩlƩversement du fichier interrompu par l'extension"
    -
    -#: ../../include/functions.php:2919
    -msgid "Unknown upload error"
    -msgstr "Erreur inconnue de tƩlƩversement"
    -
    -#: ../../include/functions.php:3030
    -msgid "No data found to export"
    -msgstr "Aucune donnƩe Ơ exporter"
    -
    -#: ../../include/functions.php:3350
    -#: ../../enterprise/include/lib/Metaconsole/Node.php:1195
    -#: ../../enterprise/include/lib/Metaconsole/Node.php:1196
    -#: ../../enterprise/include/functions_HA_cluster.php:58
    -#: ../../enterprise/godmode/agentes/agent_autoconfiguration.php:170
    -#: ../../enterprise/godmode/agentes/plugins_manager.php:195
    -#: ../../enterprise/godmode/agentes/plugins_manager.php:271
    -#: ../../enterprise/godmode/policies/policy_alerts.php:714
    -#: ../../godmode/extensions.php:259 ../../godmode/alerts/alert_list.list.php:1003
    -#: ../../godmode/users/user_list.php:740
    -msgid "Disable"
    -msgstr "DĆ©sactiver"
    -
    -#: ../../include/functions.php:3353
    -msgid "15 seconds"
    -msgstr "15 secondes"
    -
    -#: ../../include/functions.php:3358
    -msgid "15 minutes"
    -msgstr "15 minutes"
    -
    -#: ../../include/functions.php:3874
    -msgid "Summatory series"
    -msgstr "SƩrie rƩcapitulative"
    -
    -#: ../../include/functions.php:3878
    -msgid "Average series"
    -msgstr "SĆ©rie moyenne"
    -
    -#: ../../include/functions.php:3906 ../../include/functions.php:3925
    -#: ../../include/functions.php:3939 ../../include/functions.php:3961
    -#: ../../include/functions.php:4042 ../../include/functions.php:4114
    -msgid "Unit "
    -msgstr "UnitƩ"
    -
    -#: ../../include/functions.php:3974
    -#: ../../enterprise/godmode/reporting/graph_template_item_editor.php:187
    -#: ../../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
    -msgid "Weight"
    -msgstr "Poids"
    -
    -#: ../../include/functions.php:3987 ../../include/functions.php:4052
    -msgid "Min:"
    -msgstr "Min :"
    -
    -#: ../../include/functions.php:3994 ../../include/functions.php:4059
    -msgid "Max:"
    -msgstr "Max :"
    -
    -#: ../../include/functions.php:4001 ../../include/functions.php:4066
    -msgid "Avg:"
    -msgstr "Moy :"
    -
    -#: ../../include/functions.php:4109 ../../include/functions.php:4117
    -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2502
    -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:590
    -#: ../../godmode/reporting/reporting_builder.item_editor.php:2525
    -#: ../../godmode/reporting/graph_builder.main.php:245
    -msgid "Percentil"
    -msgstr "Centile"
    -
    -#: ../../include/functions.php:4111 ../../include/functions.php:4119
    -msgid "of module"
    -msgstr "du module"
    -
    -#: ../../include/functions.php:4136
    -msgid "Projection"
    -msgstr "Projection"
    -
    -#: ../../include/functions.php:5954
    -msgid "Testing Pandora FMS email"
    -msgstr "Tester lā€™email Pandora FMS"
    -
    -#: ../../include/functions.php:5967
    -msgid ""
    -"This is an email test sent from Pandora FMS. If you can read this, your "
    -"configuration works."
    -msgstr ""
    -"Il s'agit d'un test par e-mail envoyƩ par Pandora FMS. Si vous pouvez lire "
    -"ceci, votre configuration fonctionne."
    -
    -#: ../../include/get_file.php:39
    -msgid "Security error. Please contact the administrator."
    -msgstr "Erreur de sƩcuritƩ. Veuillez communiquer avec l'administrateur."
    -
    -#: ../../include/get_file.php:74
    -msgid "File is missing in disk storage. Please contact the administrator."
    -msgstr ""
    -"Fichier manquant dans le disque. Veuillez communiquer avec l'administrateur."
    -
    -#: ../../include/functions_reporting_html.php:109
    -msgid "Label: "
    -msgstr "Ɖtiquette : "
    -
    -#: ../../include/functions_reporting_html.php:138
    -#: ../../enterprise/include/functions_reporting_csv.php:2220
    -#: ../../enterprise/include/functions_reporting_csv.php:2224
    -#: ../../enterprise/include/functions_reporting_pdf.php:1785
    -msgid "Generated"
    -msgstr "GƩnƩrƩ"
    -
    -#: ../../include/functions_reporting_html.php:141
    -#: ../../enterprise/include/functions_reporting_pdf.php:1789
    -msgid "Report date"
    -msgstr "Date du rapport"
    -
    -#: ../../include/functions_reporting_html.php:544
    -#: ../../enterprise/include/functions_reporting.php:1854
    -#: ../../enterprise/include/functions_reporting.php:2893
    -#: ../../enterprise/include/functions_reporting.php:3880
    -msgid "Max/Min Values"
    -msgstr "Valeurs max/min"
    -
    -#: ../../include/functions_reporting_html.php:545
    -#: ../../enterprise/include/functions_reporting_csv.php:1506
    -#: ../../enterprise/include/functions_reporting_csv.php:1552
    -#: ../../enterprise/include/functions_reporting_csv.php:1625
    -#: ../../enterprise/include/functions_reporting_csv.php:1744
    -#: ../../enterprise/include/functions_reporting_csv.php:2052
    -#: ../../enterprise/include/functions_reporting.php:1855
    -#: ../../enterprise/include/functions_reporting.php:2894
    -#: ../../enterprise/include/functions_reporting.php:3881
    -#: ../../enterprise/include/functions_reporting.php:6137
    -msgid "SLA Limit"
    -msgstr "Limite SLA"
    -
    -#: ../../include/functions_reporting_html.php:546
    -#: ../../enterprise/include/functions_reporting.php:1856
    -#: ../../enterprise/include/functions_reporting.php:2024
    -#: ../../enterprise/include/functions_reporting.php:2895
    -#: ../../enterprise/include/functions_reporting.php:3882
    -#: ../../enterprise/include/functions_reporting.php:6138
    -msgid "SLA Compliance"
    -msgstr "ConformitƩ SLA"
    -
    -#: ../../include/functions_reporting_html.php:578
    -#: ../../enterprise/include/functions_reporting.php:4965
    -msgid "Global Time"
    -msgstr "Temps global"
    -
    -#: ../../include/functions_reporting_html.php:579
    -#: ../../enterprise/include/functions_reporting_csv.php:1980
    -#: ../../enterprise/include/functions_reporting.php:4966
    -msgid "Time Total"
    -msgstr "Temps total"
    -
    -#: ../../include/functions_reporting_html.php:580
    -msgid "Time Failed"
    -msgstr "Temps d'Ć©chec"
    -
    -#: ../../include/functions_reporting_html.php:581
    -#: ../../include/functions_reporting_html.php:3893
    -#: ../../enterprise/include/functions_reporting_csv.php:1981
    -#: ../../enterprise/include/functions_reporting.php:4969
    -msgid "Time OK"
    -msgstr "Temps OK"
    -
    -#: ../../include/functions_reporting_html.php:582
    -#: ../../include/functions_reporting_html.php:3905
    -#: ../../enterprise/include/functions_reporting_csv.php:1983
    -#: ../../enterprise/include/functions_reporting.php:4970
    -msgid "Time Unknown"
    -msgstr "Temps inconnu"
    -
    -#: ../../include/functions_reporting_html.php:583
    -#: ../../enterprise/include/functions_reporting_csv.php:1984
    -#: ../../enterprise/include/functions_reporting.php:4971
    -msgid "Time Not Init"
    -msgstr "Temps non initialisƩ"
    -
    -#: ../../include/functions_reporting_html.php:584
    -msgid "Downtime"
    -msgstr "Temps d'arrĆŖt"
    -
    -#: ../../include/functions_reporting_html.php:611
    -#: ../../enterprise/include/functions_reporting.php:5060
    -msgid "Checks Time"
    -msgstr "Temps de vƩrifications"
    -
    -#: ../../include/functions_reporting_html.php:612
    -#: ../../enterprise/include/functions_reporting_csv.php:1986
    -#: ../../enterprise/include/functions_reporting.php:5061
    -msgid "Checks Total"
    -msgstr "VĆ©rifications totales"
    -
    -#: ../../include/functions_reporting_html.php:613
    -#: ../../enterprise/include/functions_reporting_csv.php:530
    -msgid "Checks Failed"
    -msgstr "VƩrifications ƩchouƩes"
    -
    -#: ../../include/functions_reporting_html.php:614
    -#: ../../include/functions_reporting_html.php:3987
    -#: ../../enterprise/include/functions_reporting_csv.php:1987
    -#: ../../enterprise/include/functions_reporting.php:5064
    -msgid "Checks OK"
    -msgstr "VĆ©rifications OK"
    -
    -#: ../../include/functions_reporting_html.php:615
    -#: ../../enterprise/include/functions_reporting_csv.php:1989
    -#: ../../enterprise/include/functions_reporting.php:5065
    -msgid "Checks Unknown"
    -msgstr "VĆ©rifications inconnues"
    -
    -#: ../../include/functions_reporting_html.php:633
    -#: ../../include/functions_reporting_html.php:672
    -#: ../../include/functions_reporting_html.php:743
    -#: ../../include/functions_reporting_html.php:821
    -#: ../../include/functions_reporting_html.php:4069
    -#: ../../include/functions_reporting_html.php:4216
    -#: ../../enterprise/include/functions_reporting.php:4925
    -msgid "24 x 7"
    -msgstr "24h/24 7j/7"
    -
    -#: ../../include/functions_reporting_html.php:864
    -#: ../../include/functions_reporting_html.php:4610
    -#: ../../enterprise/include/functions_services.php:1453
    -#: ../../enterprise/include/functions_reporting.php:3195
    -#: ../../enterprise/include/functions_reporting.php:4196
    -#: ../../enterprise/include/functions_reporting.php:6203
    -msgid "Unknow"
    -msgstr "Inconnu"
    -
    -#: ../../include/functions_reporting_html.php:869
    -#: ../../include/functions_reporting_html.php:4615
    -#: ../../enterprise/include/functions_reporting.php:1896
    -#: ../../enterprise/include/functions_reporting.php:2949
    -#: ../../enterprise/include/functions_reporting.php:3200
    -#: ../../enterprise/include/functions_reporting.php:3937
    -#: ../../enterprise/include/functions_reporting.php:4201
    -#: ../../enterprise/include/functions_reporting.php:4852
    -#: ../../enterprise/include/functions_reporting.php:6208
    -msgid "Not Init"
    -msgstr "Non initialisƩes"
    -
    -#: ../../include/functions_reporting_html.php:874
    -#: ../../include/functions_reporting_html.php:4620
    -#: ../../enterprise/include/functions_reporting.php:3205
    -#: ../../enterprise/include/functions_reporting.php:4206
    -#: ../../enterprise/include/functions_reporting.php:6213
    -msgid "Downtimes"
    -msgstr "ArrĆŖts"
    -
    -#: ../../include/functions_reporting_html.php:879
    -#: ../../include/functions_reporting_html.php:4625
    -#: ../../godmode/agentes/planned_downtime.editor.php:67
    -#: ../../godmode/agentes/planned_downtime.list.php:174
    -msgid "Scheduled Downtime"
    -msgstr "Temps d'arrĆŖt programmĆ©"
    -
    -#: ../../include/functions_reporting_html.php:996
    -#: ../../include/functions_reporting_html.php:2263
    -#: ../../include/functions_reporting_html.php:4299
    -#: ../../include/functions_reporting_html.php:4835
    -msgid "Average Value"
    -msgstr "Valeur moyenne"
    -
    -#: ../../include/functions_reporting_html.php:1052
    -#: ../../include/functions_reporting_html.php:1060
    -#: ../../include/functions_reporting_html.php:2392
    -msgid "Val. by"
    -msgstr "Valeur par"
    -
    -#: ../../include/functions_reporting_html.php:1123
    -#, php-format
    -msgid "%s System"
    -msgstr "SystĆØme %s"
    -
    -#: ../../include/functions_reporting_html.php:1181
    -#: ../../include/functions_reporting_html.php:1395
    -msgid "Events by agent"
    -msgstr "ƉvĆ©nements par agent"
    -
    -#: ../../include/functions_reporting_html.php:1198
    -#: ../../include/functions_reporting_html.php:1412
    -msgid "Events by user validator"
    -msgstr "ƉvĆ©nements par utilisateur validateur"
    -
    -#: ../../include/functions_reporting_html.php:1215
    -#: ../../include/functions_reporting_html.php:1429
    -msgid "Events by Severity"
    -msgstr "ƉvĆ©nements par sĆ©vĆ©ritĆ©"
    -
    -#: ../../include/functions_reporting_html.php:1232
    -#: ../../include/functions_reporting_html.php:1446
    -msgid "Events validated vs unvalidated"
    -msgstr "ƉvĆ©nements validĆ©s vs non validĆ©s"
    -
    -#: ../../include/functions_reporting_html.php:1517
    -#: ../../enterprise/include/functions_reporting_csv.php:718
    -#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:255
    -#: ../../enterprise/meta/include/functions_wizard_meta.php:189
    -#: ../../enterprise/meta/include/functions_wizard_meta.php:1804
    -#: ../../godmode/reporting/reporting_builder.item_editor.php:69
    -#: ../../godmode/agentes/agent_manager.php:292
    -msgid "Alias"
    -msgstr "Alias"
    -
    -#: ../../include/functions_reporting_html.php:1537
    -msgid "Sec. groups"
    -msgstr "Groupes secondaires"
    -
    -#: ../../include/functions_reporting_html.php:1557
    -msgid "Remote conf."
    -msgstr "Configuration Ć  distance"
    -
    -#: ../../include/functions_reporting_html.php:1680
    -#: ../../enterprise/include/functions_inventory.php:885
    -#: ../../enterprise/include/functions_inventory.php:948
    -msgid "Added"
    -msgstr "AjoutƩ"
    -
    -#: ../../include/functions_reporting_html.php:2033
    -#: ../../extensions/agents_modules.php:934
    -msgid "Orange cell when the module has fired alerts"
    -msgstr "Cellule orange quand le module contient des alertes dƩclenchƩes"
    -
    -#: ../../include/functions_reporting_html.php:2034
    -#: ../../extensions/agents_modules.php:936
    -msgid "Red cell when the module has a critical status"
    -msgstr "Cellule rouge quand le module se trouve en Ć©tat critique"
    -
    -#: ../../include/functions_reporting_html.php:2035
    -#: ../../extensions/agents_modules.php:939
    -msgid "Yellow cell when the module has a warning status"
    -msgstr "Cellule jaune quand le module se trouve en Ć©tat d'alerte"
    -
    -#: ../../include/functions_reporting_html.php:2036
    -#: ../../extensions/agents_modules.php:941
    -msgid "Green cell when the module has a normal status"
    -msgstr "Cellule verte quand le module se trouve en Ć©tat normal"
    -
    -#: ../../include/functions_reporting_html.php:2037
    -#: ../../extensions/agents_modules.php:943
    -msgid "Grey cell when the module has an unknown status"
    -msgstr "Cellule grise quand le module se trouve en Ć©tat inconnu"
    -
    -#: ../../include/functions_reporting_html.php:2038
    -msgid "Cell turns grey when the module is in 'not initialize' status"
    -msgstr ""
    -"La cellule devient grise lorsque le module se trouve dans un Ć©tat Ā« non "
    -"initialisĆ© Ā»."
    -
    -#: ../../include/functions_reporting_html.php:2065
    -#: ../../include/functions_reporting_html.php:2069
    -#: ../../extensions/files_repo/files_repo_list.php:164
    -msgid "No items"
    -msgstr "Aucun ƩlƩment"
    -
    -#: ../../include/functions_reporting_html.php:2109
    -#: ../../enterprise/include/functions_reporting_csv.php:2742
    -msgid "Last time"
    -msgstr "DerniĆØre fois"
    -
    -#: ../../include/functions_reporting_html.php:2328
    -#: ../../include/functions_reporting_html.php:5404
    -msgid "Monitors"
    -msgstr "Moniteurs"
    -
    -#: ../../include/functions_reporting_html.php:2347
    -msgid "Events (not validated)"
    -msgstr "EvƩnements (non validƩs)"
    -
    -#: ../../include/functions_reporting_html.php:2504
    -msgid "Events validated by user"
    -msgstr "ƉvĆ©nements validĆ©s par l'utilisateur"
    -
    -#: ../../include/functions_reporting_html.php:2521
    -#: ../../include/functions_reporting_html.php:5693
    -msgid "Events by severity"
    -msgstr "ƉvĆ©nements par sĆ©vĆ©ritĆ©"
    -
    -#: ../../include/functions_reporting_html.php:2538
    -msgid "Amount events validated"
    -msgstr "Nombre d'ƩvƩnements validƩs"
    -
    -#: ../../include/functions_reporting_html.php:2962
    -msgid "Total summary"
    -msgstr "RƩsumƩ total"
    -
    -#: ../../include/functions_reporting_html.php:2969
    -msgid "No alerts fired"
    -msgstr "Aucune alerte dƩclenchƩe"
    -
    -#: ../../include/functions_reporting_html.php:3060
    -#, php-format
    -msgid "Interface '%s' throughput graph"
    -msgstr "Interface Ā« %s Ā» graphique de rendement"
    -
    -#: ../../include/functions_reporting_html.php:3064
    -msgid "Mac"
    -msgstr "Mac"
    -
    -#: ../../include/functions_reporting_html.php:3065
    -msgid "Actual status"
    -msgstr "Ɖtat actuel"
    -
    -#: ../../include/functions_reporting_html.php:3174
    -#: ../../godmode/alerts/alert_list.list.php:946
    -msgid "No alerts defined"
    -msgstr "Aucune alerte dƩfinie"
    -
    -#: ../../include/functions_reporting_html.php:3312
    -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2564
    -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:438
    -#: ../../godmode/reporting/reporting_builder.item_editor.php:2557
    -msgid "Not OK"
    -msgstr "Pas OK"
    -
    -#: ../../include/functions_reporting_html.php:3429
    -#: ../../include/functions_reporting_html.php:3431
    -msgid "Empty modules"
    -msgstr "Modules vides"
    -
    -#: ../../include/functions_reporting_html.php:3438
    -msgid "Warning
    Critical" -msgstr "Alerte
    Critique" - -#: ../../include/functions_reporting_html.php:3443 -#: ../../enterprise/include/functions_reporting_csv.php:2741 -#: ../../enterprise/meta/include/functions_wizard_meta.php:927 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1044 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1225 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1528 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1613 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1750 -#: ../../enterprise/godmode/modules/configure_local_component.php:468 -#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:868 -#: ../../godmode/modules/manage_network_components_form_common.php:312 -#: ../../godmode/massive/massive_edit_modules.php:925 -#: ../../godmode/agentes/module_manager_editor_common.php:582 -msgid "Unit" -msgstr "UnitĆ©" - -#: ../../include/functions_reporting_html.php:3573 -#: ../../include/functions_reporting_html.php:3642 -#: ../../enterprise/include/functions_reporting_pdf.php:534 -#: ../../enterprise/include/functions_reporting_pdf.php:591 -msgid "Minimun" -msgstr "Minimum" - -#: ../../include/functions_reporting_html.php:3582 -#: ../../include/functions_reporting_html.php:3650 -#: ../../enterprise/include/ajax/log_viewer.ajax.php:85 -#: ../../enterprise/include/functions_reporting_pdf.php:542 -#: ../../enterprise/include/functions_reporting_pdf.php:598 -msgid "Average" -msgstr "Moyenne" - -#: ../../include/functions_reporting_html.php:3752 -#: ../../enterprise/include/functions_reporting_csv.php:1325 -msgid "From data" -msgstr "ƀ partir des donnĆ©es" - -#: ../../include/functions_reporting_html.php:3753 -#: ../../enterprise/include/functions_reporting_csv.php:1325 -msgid "To data" -msgstr "Aux donnĆ©es" - -#: ../../include/functions_reporting_html.php:3781 -#: ../../enterprise/include/functions_reporting_csv.php:1331 -#: ../../enterprise/include/functions_reporting_csv.php:1342 -msgid "Negative increase: " -msgstr "Croissance nĆ©gative : " - -#: ../../include/functions_reporting_html.php:3783 -#: ../../enterprise/include/functions_reporting_csv.php:1333 -#: ../../enterprise/include/functions_reporting_csv.php:1344 -msgid "Positive increase: " -msgstr "Croissance positive : " - -#: ../../include/functions_reporting_html.php:3785 -#: ../../enterprise/include/functions_reporting_csv.php:1335 -#: ../../enterprise/include/functions_reporting_csv.php:1346 -msgid "Neutral increase: " -msgstr "Croissance neutre : " - -#: ../../include/functions_reporting_html.php:3868 -#: ../../include/functions_reporting_html.php:3962 -#: ../../include/functions_reporting_html.php:4042 -#: ../../include/functions_reporting_html.php:4051 -#: ../../include/functions_reporting_html.php:4189 -#: ../../include/functions_reporting_html.php:4198 -#: ../../include/functions_reporting_html.php:4522 -#: ../../include/functions_reporting_html.php:4528 -#: ../../godmode/agentes/module_manager_editor_common.php:1265 -#: ../../godmode/agentes/module_manager_editor_common.php:1375 -msgid "Failover" -msgstr "Basculement" - -#: ../../include/functions_reporting_html.php:3881 -#: ../../enterprise/include/functions_reporting_csv.php:494 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2598 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2591 -msgid "Total time" -msgstr "DurĆ©e totale" - -#: ../../include/functions_reporting_html.php:3887 -#: ../../enterprise/include/functions_reporting_csv.php:498 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2606 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2599 -msgid "Time failed" -msgstr "Temps d'Ć©chec" - -#: ../../include/functions_reporting_html.php:3899 -#: ../../enterprise/include/functions_reporting_csv.php:506 -#: ../../enterprise/include/functions_reporting.php:4968 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2622 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2615 -msgid "Time in warning status" -msgstr "Temps en Ć©tat d'avertissement" - -#: ../../include/functions_reporting_html.php:3911 -msgid "Time Not Init Module" -msgstr "Temps dans le module non initialisĆ©" - -#: ../../include/functions_reporting_html.php:3917 -#: ../../enterprise/include/functions_reporting_csv.php:1985 -msgid "Time Downtime" -msgstr "Temps d'arrĆŖt" - -#: ../../include/functions_reporting_html.php:3922 -msgid "% Ok" -msgstr "% OK" - -#: ../../include/functions_reporting_html.php:3975 -#: ../../enterprise/include/functions_reporting_csv.php:526 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2716 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2707 -msgid "Total checks" -msgstr "VĆ©rifications totales" - -#: ../../include/functions_reporting_html.php:3981 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2724 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2715 -msgid "Checks failed" -msgstr "VĆ©rifications Ć©chouĆ©es" - -#: ../../include/functions_reporting_html.php:3993 -#: ../../enterprise/include/functions_reporting.php:5063 -msgid "Checks Warning" -msgstr "VĆ©rifications avertissement" - -#: ../../include/functions_reporting_html.php:3999 -msgid "Checks Uknown" -msgstr "VĆ©rifications inconnues" - -#: ../../include/functions_reporting_html.php:4038 -#: ../../include/functions_reporting_html.php:4185 -#: ../../include/functions_reporting_html.php:4510 -#: ../../include/functions_reporting_html.php:4516 -msgid "Primary" -msgstr "Primaire" - -#: ../../include/functions_reporting_html.php:4295 -#: ../../enterprise/include/functions_reporting_csv.php:661 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2764 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2767 -msgid "Agent max value" -msgstr "Valeur maximale de l'agent" - -#: ../../include/functions_reporting_html.php:4297 -#: ../../enterprise/include/functions_reporting_csv.php:666 -msgid "Agent min value" -msgstr "Valeur minimale de l'agent" - -#: ../../include/functions_reporting_html.php:4742 -#: ../../enterprise/include/functions_reporting_csv.php:1030 -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:258 -msgid "Sum" -msgstr "Total" - -#: ../../include/functions_reporting_html.php:5085 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1379 -msgid "Alert description" -msgstr "Description de l'alerte" - -#: ../../include/functions_reporting_html.php:5125 -#: ../../include/functions_reporting_html.php:5279 -#: ../../enterprise/meta/monitoring/wizard/wizard.create_module.php:148 -#: ../../mobile/include/functions_web.php:24 -msgid "Monitor" -msgstr "Moniteur" - -#: ../../include/functions_reporting_html.php:5178 -#, php-format -msgid "Agents in group: %s" -msgstr "Agents du groupe : %s" - -#: ../../include/functions_reporting_html.php:5280 -msgid "Last failure" -msgstr "Dernier Ć©chec" - -#: ../../include/functions_reporting_html.php:5370 -msgid "N/A(*)" -msgstr "S/O(*)" - -#: ../../include/functions_reporting_html.php:5583 -#: ../../include/functions_reporting_html.php:5588 -#: ../../enterprise/meta/monitoring/custom_fields_view.php:511 -msgid "Agents by status" -msgstr "Agents par Ć©tat" - -#: ../../include/functions_reporting_html.php:5644 -#: ../../include/functions_reporting_html.php:5649 -msgid "Node overview" -msgstr "AperƧu des nœuds" - -#: ../../include/functions_reporting_html.php:5669 -#: ../../include/functions_reporting_html.php:5681 -msgid "Critical events" -msgstr "ƉvĆ©nements en Ć©tat critique" - -#: ../../include/functions_reporting_html.php:5672 -#: ../../include/functions_reporting_html.php:5683 -msgid "Warning events" -msgstr "ƉvĆ©nements en Ć©tat d'alerte" - -#: ../../include/functions_reporting_html.php:5675 -#: ../../include/functions_reporting_html.php:5685 -msgid "OK events" -msgstr "ƉvĆ©nements en Ć©tat OK" - -#: ../../include/functions_reporting_html.php:5678 -#: ../../include/functions_reporting_html.php:5687 -msgid "Unknown events" -msgstr "ƉvĆ©nements en Ć©tat inconnu" - -#: ../../include/functions_reporting_html.php:5703 -msgid "Important Events by Criticity" -msgstr "ƉvĆ©nements importants par sĆ©vĆ©ritĆ©" - -#: ../../include/functions_reporting_html.php:5729 -#, php-format -msgid "Last activity in %s console" -msgstr "DerniĆØre activitĆ© dans la console %s" - -#: ../../include/functions_reporting_html.php:5820 -#: ../../include/functions_reporting_html.php:5962 -msgid "Events info (1hr.)" -msgstr "Information des Ć©vĆ©nements (1h)" - -#: ../../include/functions_reporting_html.php:6145 -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:6146 -msgid "" -"If the duration of the scheduled downtime is less than 5 minutes it will not " -"be represented in the graph" -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:6152 -#: ../../godmode/modules/manage_network_components_form_wizard.php:655 -#: ../../godmode/agentes/planned_downtime.editor.php:609 -#: ../../godmode/agentes/planned_downtime.list.php:614 -msgid "Execution" -msgstr "ExĆ©cution" - -#: ../../include/functions_reporting_html.php:6184 -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:6184 -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_reporting_html.php:6217 -#: ../../include/functions_reporting_html.php:6240 -#: ../../enterprise/include/functions_reporting_csv.php:2549 -#: ../../enterprise/include/functions_reporting_csv.php:2559 -msgid "Full name" -msgstr "Nom complet" - -#: ../../include/functions_reporting_html.php:6218 -#: ../../include/functions_reporting_html.php:6241 -#: ../../enterprise/include/functions_reporting_csv.php:2549 -#: ../../enterprise/include/functions_reporting_csv.php:2559 -msgid "Permissions" -msgstr "Permissions" - -#: ../../update_manager_client/views/register.php:47 -msgid "Register to Warp Update" -msgstr "Sā€™inscrire Ć  Warp Update" - -#: ../../update_manager_client/views/register.php:54 -#, php-format -msgid "Keep this %s console up to date with latest updates." -msgstr "Gardez cette %s console Ć  jour avec les derniĆØres mises Ć  jour." - -#: ../../update_manager_client/views/register.php:61 -#, php-format -msgid "" -"When you subscribe to the Warp update service for %s, you accept that we\n" -" register your %s instance as an identifier on a database owned by " -"%s. This data will solely be used to\n" -" provide you with information about %s and will not be conceded to " -"third parties. You can unregister from\n" -" said database at any time from the Warp update options." -msgstr "" -"Lorsque vous vous abonnez Ć  %s Update Manager service, vous acceptez que nous\n" -" registrons votre %s instance en tant quā€™identifiant dans la base " -"donnĆ©es propriĆ©tĆ© de %s. Ces donnĆ©es seront utilisĆ©es seulement pour vous\n" -" fournir de lā€™information sur %s et ne seront pas transmis aux " -"tierces. Vous pouvez vous dĆ©sabonner de\n" -" ladite base de donnĆ©es Ć  tout moment depuis les options de Update " -"Manager." - -#: ../../update_manager_client/views/register.php:74 -msgid "Visit our privacy policy for more information" -msgstr "Visitez notre politique de confidentialitĆ© pour plus d'informations" - -#: ../../update_manager_client/views/register.php:97 -msgid "OK!" -msgstr "OK !" - -#: ../../update_manager_client/views/register.php:112 -msgid "Are you sure you don't want to use Warp update?" -msgstr "Ɗtes-vous sĆ»r de ne pas vouloir utiliser Warp Update?" - -#: ../../update_manager_client/views/register.php:116 -msgid "" -"You will need to update your system manually, through source code or RPM\n" -" packages to be up to date with latest updates." -msgstr "" -"Vous devrez mettre Ć  jour votre systĆØme manuellement, via le code source ou " -"RPM packages pour ĆŖtre Ć  jour avec les derniĆØres mises Ć  jour." - -#: ../../update_manager_client/views/register.php:208 -msgid "Unsuccessful subscription" -msgstr "Abonnement infructueux" - -#: ../../update_manager_client/views/register.php:213 -msgid "Pandora successfully subscribed with UID: " -msgstr "Pandora FMS abonnĆ© correctement avec UID : " - -#: ../../update_manager_client/views/online.php:43 -msgid "The latest version of package installed is" -msgstr "La derniĆØre version du paquet installĆ© est" - -#: ../../update_manager_client/views/online.php:63 -msgid "Update to next version" -msgstr "Mettre Ć  jour vers la prochaine version" - -#: ../../update_manager_client/views/online.php:64 -msgid "Update to latest version" -msgstr "Mise Ć  jour vers la derniĆØre version" - -#: ../../update_manager_client/views/online.php:88 -#: ../../update_manager_client/views/offline.php:73 -msgid "Updating to" -msgstr "Mise Ć  jour vers" - -#: ../../update_manager_client/views/online.php:89 -#: ../../update_manager_client/views/offline.php:74 -msgid "Do you really want to leave our brilliant application?" -msgstr "Voulez-vous vraiment quitter notre brillante applicationĀ ?" - -#: ../../update_manager_client/views/online.php:90 -#: ../../update_manager_client/views/offline.php:75 -msgid "There are no updates available" -msgstr "Il nā€™y a pas de mises Ć  jour disponibles." - -#: ../../update_manager_client/views/online.php:91 -#: ../../update_manager_client/views/offline.php:76 -msgid "Searching for updates..." -msgstr "Recherche des mises Ć  jour..." - -#: ../../update_manager_client/views/online.php:92 -#: ../../update_manager_client/views/offline.php:77 -msgid "Package" -msgstr "Package" - -#: ../../update_manager_client/views/online.php:93 -#: ../../update_manager_client/views/offline.php:78 -#: ../../enterprise/tools/ipam/ipam_action.php:380 -msgid "Successfully updated." -msgstr "Mis Ć  jour correctement" - -#: ../../update_manager_client/views/online.php:122 -#: ../../update_manager_client/views/online.php:163 -#: ../../update_manager_client/views/offline.php:70 -msgid "This action will upgrade this console to version " -msgstr "Cette action mettra Ć  niveau cette console vers la version" - -#: ../../update_manager_client/views/online.php:123 -#: ../../update_manager_client/views/online.php:164 -msgid "Update to" -msgstr "Mettre Ć  jour vers" - -#: ../../update_manager_client/views/online.php:144 -#: ../../update_manager_client/views/online.php:148 -msgid "Failed to update to " -msgstr "Ɖchec lors de la mise Ć  jour" - -#: ../../update_manager_client/views/online.php:187 -msgid "Failed to update:" -msgstr "Ɖchec lors de la mise Ć  jour :" - -#: ../../update_manager_client/views/offline.php:65 -msgid "Drop the package here or" -msgstr "DĆ©poser le progiciel ici ou" - -#: ../../update_manager_client/views/offline.php:66 -msgid "Browse it" -msgstr "Naviguer" - -#: ../../update_manager_client/views/offline.php:67 -msgid "The package has been uploaded successfully." -msgstr "Le progiciel a Ć©tĆ© tĆ©lĆ©versĆ© correctement" - -#: ../../update_manager_client/views/offline.php:68 -#, php-format -msgid "" -"Please keep in mind that this package is going to override your actual %s " -"files and that it's recommended to conduct a backup before continuing the " -"updating process." -msgstr "" -"Veuillez garder Ć  l'esprit que ce package va remplacer vos fichiers %s rĆ©els " -"et qu'il est recommandĆ© d'effectuer une sauvegarde avant de poursuivre le " -"processus de mise Ć  jour." - -#: ../../update_manager_client/views/offline.php:69 -msgid "Click on the file below to begin." -msgstr "Cliquez sur le fichier ci-dessous pour commencer." - -#: ../../update_manager_client/views/offline.php:71 -msgid "This action will upgrade all servers to version " -msgstr "Cette action mettra Ć  niveau tous les serveurs vers la version" - -#: ../../update_manager_client/views/offline.php:79 -msgid "Package rejected. These package changes will not apply." -msgstr "Progiciel rejetĆ©. Ces changements de progiciel ne seront pas appliquĆ©s" - -#: ../../update_manager_client/views/offline.php:81 -#, php-format -msgid "" -"This update does not correspond with next version of %s. Are you sure you want " -"to install it?" -msgstr "" -"Cette mise Ć  jour ne correspond pas Ć  la prochaine version de %s. Ɗtes-vous " -"sĆ»r de vouloir l'installer ?" - -#: ../../update_manager_client/views/offline.php:82 -msgid "" -"This server update does not correspond with current console version. Are you " -"sure you want to install it?" -msgstr "" -"Cette mise Ć  jour du serveur ne correspond pas Ć  la version actuelle de la " -"console. Ɗtes-vous sĆ»r de vouloir l'installer ?" - -#: ../../update_manager_client/views/offline.php:83 -msgid "" -"File name does not match required format: package_NUMBER.oum or " -"pandorafms_server[_enterprise]-7.0NG.NUMBER_x86[_64].tar.gz, you can use " -"numbers with decimals." -msgstr "" -"Le nom de fichier ne correspond pas au format requisĀ : package_NUMBER.oum ou " -"pandorafms_server[_enterprise]-7.0NG.NUMBER_x86[_64].tar.gz, vous pouvez " -"utiliser des nombres avec des dĆ©cimales." - -#: ../../update_manager_client/views/offline.php:84 -msgid "Files included in this package" -msgstr "Fichiers inclus dans ce package" - -#: ../../update_manager_client/views/offline.php:85 -msgid "Ignore" -msgstr "Ignorer" - -#: ../../update_manager_client/views/offline.php:86 -msgid "Verify package signature" -msgstr "VĆ©rifier la signature du package" - -#: ../../update_manager_client/views/offline.php:87 -#, php-format -msgid "" -"Copy into the textarea the signature validation token you can retrieve from %s " -"and press OK to verify the package, press ignore to avoid signature " -"verification" -msgstr "" -"Copiez dans la zone de texte le jeton de validation de signature que vous " -"pouvez rĆ©cupĆ©rer Ć  partir de %s et appuyez sur OK pour vĆ©rifier le package, " -"cliquez ignorer pour Ć©viter la vĆ©rification de la signature" - -#: ../../update_manager_client/views/offline.php:88 -msgid "" -"This server update does not correspond with current console version and is not " -"going to be installed unless patches are allowed. Please enable patches in " -"update manager settings." -msgstr "" -"Cette mise Ć  jour du serveur ne correspond pas Ć  la version actuelle de la " -"console et ne sera pas installĆ©e Ć  moins que les correctifs ne soient " -"autorisĆ©s. Veuillez activer les correctifs dans les paramĆØtres du gestionnaire " -"de mises Ć  jour." - -#: ../../update_manager_client/views/offline.php:89 -#, php-format -msgid "" -"This update does not correspond with next version of %s and is not going to be " -"installed unless patches are allowed. Please enable patches in update manager " -"settings." -msgstr "" -"Cette mise Ć  jour ne correspond pas Ć  la prochaine version de %s et ne sera " -"pas installĆ©e Ć  moins que les correctifs ne soient autorisĆ©s. Veuillez activer " -"les correctifs dans les paramĆØtres du gestionnaire de mises Ć  jour." - -#: ../../update_manager_client/lib/UpdateManager/Client.php:712 -#, php-format -msgid "server update %d" -msgstr "Mise Ć  jour du serveur %d" - -#: ../../update_manager_client/lib/UpdateManager/Client.php:714 -#, php-format -msgid "console update %d" -msgstr "mise Ć  jour de la console %d" - -#: ../../update_manager_client/lib/UpdateManager/Client.php:734 -#, php-format -msgid "Downloading %s %.2f/ %.2f MB." -msgstr "TĆ©lĆ©chargement de %s %.2f/ %.2fĀ Mo." - -#: ../../update_manager_client/lib/UpdateManager/Client.php:745 -#, php-format -msgid "Downloading %.2f MB" -msgstr "TĆ©lĆ©chargement de %.2f" - -#: ../../update_manager_client/lib/UpdateManager/Client.php:1469 -#, php-format -msgid "Failed to analyze package: %s" -msgstr "Ɖchec de l'analyse du packageĀ : %s" - -#: ../../update_manager_client/lib/UpdateManager/Client.php:1560 -msgid "Searching update package" -msgstr "Recherche de package de mise Ć  jour" - -#: ../../update_manager_client/lib/UpdateManager/Client.php:1592 -msgid "Retrieving update" -msgstr "RĆ©cupĆ©ration de la mise Ć  jour" - -#: ../../update_manager_client/lib/UpdateManager/Client.php:1683 -msgid "Extracting package" -msgstr "RĆ©cupĆ©rant le package" - -#: ../../update_manager_client/lib/UpdateManager/Client.php:1750 -msgid "Testing files" -msgstr "Testant les fichiers" - -#: ../../update_manager_client/lib/UpdateManager/Client.php:1782 -#, php-format -msgid "Applying MR %s" -msgstr "Appliquant MR %s" - -#: ../../update_manager_client/lib/UpdateManager/Client.php:1819 -msgid "Applying file updates" -msgstr "Appliquant les mises Ć  jour de fichiers" - -#: ../../update_manager_client/lib/UpdateManager/Client.php:1841 -msgid "Retrieving server update" -msgstr "RĆ©cupĆ©rant la mise Ć  jour du serveur" - -#: ../../update_manager_client/lib/UpdateManager/Client.php:1856 -msgid "Cleaning" -msgstr "Nettoyage en cours" - -#: ../../update_manager_client/lib/UpdateManager/Client.php:1874 -#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:544 -msgid "Completed" -msgstr "TerminĆ©" - -#: ../../update_manager_client/lib/UpdateManager/Client.php:1969 -msgid "Updating to " -msgstr "Mise Ć  jour vers" - -#: ../../update_manager_client/lib/UpdateManager/UI/Manager.php:484 -msgid "Next update" -msgstr "Prochaine mise Ć  jour" - -#: ../../update_manager_client/lib/UpdateManager/UI/Manager.php:489 -msgid "Show details" -msgstr "Afficher les dĆ©tails" - -#: ../../update_manager_client/lib/UpdateManager/UI/Manager.php:514 -#, php-format -msgid "%s update(s) available more" -msgstr "%s mise Ć  jour(s) disponible(s) plus" - -#: ../../update_manager_client/lib/UpdateManager/UI/Manager.php:526 -msgid "details" -msgstr "dĆ©tails" - -#: ../../update_manager_client/lib/UpdateManager/UI/Manager.php:604 -msgid "Failed creating temporary directory." -msgstr "Ɖchec de la crĆ©ation du rĆ©pertoire temporaire." - -#: ../../update_manager_client/lib/UpdateManager/UI/Manager.php:614 -msgid "Failed storing uploaded file." -msgstr "Ɖchec du stockage du fichier tĆ©lĆ©chargĆ©." - -#: ../../update_manager_client/lib/UpdateManager/UI/Manager.php:646 -#, php-format -msgid "Invalid extension. The package needs to be in `%s` or `%s` format." -msgstr "Extension invalide. Le package doit ĆŖtre au format `%s` ou `%s`." - -#: ../../update_manager_client/lib/UpdateManager/UI/Manager.php:655 -msgid "Failed uploading file." -msgstr "Ɖchec du tĆ©lĆ©chargement du fichier." - -#: ../../update_manager_client/lib/UpdateManager/UI/Manager.php:690 -msgid "Signatures does not match." -msgstr "Les signatures ne correspondent pas." - -#: ../../update_manager_client/lib/UpdateManager/UI/Manager.php:749 -#, php-format -msgid "Update %s successfully installed." -msgstr "Mise Ć  jour %s installĆ©e correctement." - -#: ../../update_manager_client/lib/UpdateManager/UI/Manager.php:752 -#, php-format -msgid "Failed while updating: %s" -msgstr "Ɖchec lors de la mise Ć  jourĀ : %s" - -#: ../../index.php:345 ../../enterprise/meta/index.php:307 -msgid "The code shouldn't be empty" -msgstr "Le code ne doit pas ĆŖtre vide" - -#: ../../index.php:358 ../../enterprise/meta/index.php:320 -msgid "Expired login" -msgstr "Connexion expirĆ©e" - -#: ../../index.php:365 ../../index.php:371 ../../enterprise/meta/index.php:327 -#: ../../enterprise/meta/index.php:333 -msgid "Login error" -msgstr "Erreur de connexion" - -#: ../../index.php:789 ../../enterprise/meta/index.php:616 -msgid "Password changed successfully" -msgstr "Mot de passe changĆ© correctement" - -#: ../../index.php:795 ../../enterprise/meta/index.php:622 -msgid "Failed to change password" -msgstr "Erreur de modification du mot de passe" - -#: ../../index.php:800 ../../enterprise/include/process_reset_pass.php:127 -#: ../../enterprise/meta/include/process_reset_pass.php:123 -#: ../../enterprise/meta/index.php:625 -msgid "Passwords must be the same" -msgstr "Les mots de passe doivent ĆŖtre identiques." - -#: ../../index.php:812 ../../enterprise/meta/index.php:636 -msgid "Too much time since password change request" -msgstr "" -"Trop de temps s'est Ć©coulĆ© depuis la demande de changement du mot de passe" - -#: ../../index.php:819 ../../enterprise/meta/index.php:643 -msgid "This user has not requested a password change" -msgstr "Cet utilisateur n'a pas demandĆ© de changement de mot de passe" - -#: ../../index.php:846 ../../enterprise/meta/index.php:659 -msgid "Id user cannot be empty" -msgstr "L'identifiant de l'utilisateur ne peut pas ĆŖtre vide." - -#: ../../index.php:854 ../../enterprise/meta/index.php:667 -msgid "Error in reset password request" -msgstr "Erreur de rĆ©initialisation du mot de passe" - -#: ../../index.php:862 ../../enterprise/meta/index.php:675 -msgid "This user doesn't have a valid email address" -msgstr "Cet utilisateur n'a pas d'adresse courriel valide." - -#: ../../index.php:872 ../../enterprise/include/reset_pass.php:108 -#: ../../enterprise/meta/include/reset_pass.php:103 -#: ../../enterprise/meta/index.php:691 -msgid "Reset password" -msgstr "RĆ©initialiser le mot de passe" - -#: ../../index.php:873 ../../enterprise/meta/index.php:692 -msgid "This is an automatically sent message for user " -msgstr "Ceci est un message envoyĆ© automatiquement Ć  l'utilisateur " - -#: ../../index.php:876 ../../enterprise/meta/index.php:695 -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." - -#: ../../index.php:878 ../../enterprise/meta/index.php:697 -msgid "Reset your password" -msgstr "RĆ©initialiser le mot de passe" - -#: ../../index.php:882 ../../enterprise/meta/index.php:701 -msgid "Please do not reply to this email." -msgstr "Veuillez ne pas rĆ©pondre Ć  ce courriel." - -#: ../../index.php:887 ../../enterprise/meta/index.php:707 -msgid "Error at sending the email" -msgstr "Erreur lors de l'envoi du courriel" - -#: ../../index.php:947 +#: ../../index.php:950 msgid "User doesn\\'t exist." msgstr "L'utilisateur n'existe pas" -#: ../../index.php:969 +#: ../../index.php:972 msgid "User only can use the API." msgstr "L'utilisateur peut seulement utiliser l'API." -#: ../../index.php:1164 +#: ../../index.php:1167 #, 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)" -#: ../../index.php:1170 ../../enterprise/meta/index.php:925 -msgid "Please keep all environment updated to same version." -msgstr "Veuillez garder tout lā€™environnement Ć  jour vers la mĆŖme version." +#: ../../operation/search_users.php:23 ../../operation/search_agents.php:30 +#: ../../operation/search_alerts.php:24 ../../operation/search_reports.php:25 +#: ../../operation/search_graphs.php:21 ../../operation/search_modules.php:23 +#: ../../operation/search_policies.php:22 ../../operation/search_maps.php:19 +msgid "Zero results found" +msgstr "ZĆ©ro rĆ©sultats trouvĆ©s" -#: ../../index.php:1258 ../../enterprise/meta/index.php:982 -#: ../../enterprise/meta/index.php:1061 -msgid "Sorry! I can't find the page!" -msgstr "DĆ©solĆ© ! La page est introuvable !" +#: ../../operation/search_users.php:47 +msgid "Profile" +msgstr "Profil" -#: ../../enterprise/tools/ipam/ipam_excel.php:134 -#: ../../enterprise/tools/ipam/ipam_calculator.php:84 -#: ../../enterprise/tools/ipam/ipam_supernet_config.php:564 -msgid "Mask" -msgstr "Masque" +#: ../../operation/search_users.php:72 +msgid "Standard User" +msgstr "Utilisateur standard" -#: ../../enterprise/tools/ipam/ipam_excel.php:135 -msgid "Subneting Mask" -msgstr "Masque de sous-rĆ©seau" +#: ../../operation/heatmap.php:92 ../../operation/menu.php:69 +msgid "Heatmap view" +msgstr "Vue de carte de chaleur" -#: ../../enterprise/tools/ipam/ipam_excel.php:136 -#: ../../enterprise/tools/ipam/ipam_excel.php:202 -#: ../../enterprise/include/functions_ipam.php:1559 -#: ../../enterprise/include/functions_ipam.php:1989 -msgid "Total IPs" -msgstr "Adresses IP totales" - -#: ../../enterprise/tools/ipam/ipam_excel.php:137 -#: ../../enterprise/tools/ipam/ipam_excel.php:203 -#: ../../enterprise/include/functions_ipam.php:1990 -msgid "Alive IPs" -msgstr "IPs actives" - -#: ../../enterprise/tools/ipam/ipam_excel.php:138 -#: ../../enterprise/tools/ipam/ipam_excel.php:204 -#: ../../enterprise/include/functions_ipam.php:1991 -msgid "Occupied %" -msgstr "% occupĆ©" - -#: ../../enterprise/tools/ipam/ipam_excel.php:139 -#: ../../enterprise/tools/ipam/ipam_excel.php:205 -#: ../../enterprise/include/functions_ipam.php:1992 -msgid "Available %" -msgstr "% disponible" - -#: ../../enterprise/tools/ipam/ipam_excel.php:140 -#: ../../enterprise/tools/ipam/ipam_excel.php:206 -#: ../../enterprise/include/functions_ipam.php:1993 -msgid "Managed IPs" -msgstr "IPs gĆ©rĆ©s" - -#: ../../enterprise/tools/ipam/ipam_excel.php:141 -#: ../../enterprise/tools/ipam/ipam_excel.php:207 -#: ../../enterprise/include/functions_ipam.php:1994 -msgid "Managed %" -msgstr "% gĆ©rĆ©" - -#: ../../enterprise/tools/ipam/ipam_excel.php:142 -#: ../../enterprise/tools/ipam/ipam_excel.php:208 -#: ../../enterprise/include/functions_ipam.php:1995 -msgid "Unmanaged %" -msgstr "% non gĆ©rĆ©" - -#: ../../enterprise/tools/ipam/ipam_excel.php:143 -#: ../../enterprise/tools/ipam/ipam_excel.php:209 -#: ../../enterprise/include/functions_ipam.php:1996 -msgid "Reserved IPs" -msgstr "IPs rĆ©servĆ©es" - -#: ../../enterprise/tools/ipam/ipam_excel.php:144 -#: ../../enterprise/tools/ipam/ipam_excel.php:210 -#: ../../enterprise/include/functions_ipam.php:1997 -msgid "Reserved %" -msgstr "% rĆ©servĆ©" - -#: ../../enterprise/tools/ipam/ipam_excel.php:145 -#: ../../enterprise/tools/ipam/ipam_excel.php:211 -#: ../../enterprise/include/functions_ipam.php:1998 -msgid "Not reserved %" -msgstr "% non reservĆ©" - -#: ../../enterprise/tools/ipam/ipam_excel.php:212 -#: ../../enterprise/tools/ipam/ipam_vlan_config.php:342 -#: ../../enterprise/tools/ipam/ipam_vlan_config.php:674 -#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:398 -#: ../../godmode/massive/massive_edit_agents.php:798 -#: ../../godmode/agentes/module_manager_editor_common.php:567 -#: ../../godmode/agentes/agent_manager.php:198 -#: ../../godmode/groups/configure_group.php:238 -msgid "Custom ID" -msgstr "Identifiant personnalisĆ©" - -#: ../../enterprise/tools/ipam/ipam_vlan_config.php:45 -#: ../../enterprise/tools/ipam/ipam_vlan_config.php:268 -msgid "There is no VLAN name. Please introduce a name" -msgstr "Il n'y a pas de nom pour le VLAN. Entrez un nom" - -#: ../../enterprise/tools/ipam/ipam_vlan_config.php:49 -#: ../../enterprise/tools/ipam/ipam_vlan_config.php:87 -#: ../../enterprise/tools/ipam/ipam_vlan_config.php:272 -msgid "Custom ID is not valid" -msgstr "Lā€™ID personnalisĆ© nā€™est pas valide" - -#: ../../enterprise/tools/ipam/ipam_vlan_config.php:66 -msgid "Vlan created" -msgstr "Vlan crĆ©e" - -#: ../../enterprise/tools/ipam/ipam_vlan_config.php:68 -msgid "Vlan not created" -msgstr "Vlan non crĆ©e" - -#: ../../enterprise/tools/ipam/ipam_vlan_config.php:72 -#: ../../enterprise/tools/ipam/ipam_vlan_config.php:296 -msgid "VLAN name exists in database, please select another name" -msgstr "Le nom du VLAN existe dans la base de donnĆ©es, sĆ©lectionnez un autre nom" - -#: ../../enterprise/tools/ipam/ipam_vlan_config.php:83 -msgid "There is no vlan name. Please introduce a name" -msgstr "Il n'y a pas de nom du VLAN. Entrez un nom" - -#: ../../enterprise/tools/ipam/ipam_vlan_config.php:109 -msgid "Vlan updated" -msgstr "Vlan mis Ć  jour" - -#: ../../enterprise/tools/ipam/ipam_vlan_config.php:111 -msgid "Vlan not updated" -msgstr "Vlan non mis Ć  jour" - -#: ../../enterprise/tools/ipam/ipam_vlan_config.php:115 -msgid "Vlan name exists in database, please select other name" -msgstr "" -"Le nom du Vlan existe dĆ©jĆ  dans la base de donnĆ©es, sĆ©lectionnez un autre nom" - -#: ../../enterprise/tools/ipam/ipam_vlan_config.php:135 -msgid "Could not be deleted, please select vlan" -msgstr "Il n'a pas pue ĆŖtre Ć©liminĆ©, sĆ©lectionnez un vlan" - -#: ../../enterprise/tools/ipam/ipam_vlan_config.php:163 -msgid "Network name cannot be repeated in this Vlan" -msgstr "Le nom du rĆ©seau ne peut pas ĆŖtre rĆ©pĆ©tĆ© and ce Vlan" - -#: ../../enterprise/tools/ipam/ipam_vlan_config.php:170 -#: ../../enterprise/tools/ipam/ipam_supernet_config.php:436 -msgid "Successfully added networks" -msgstr "RĆ©seaux ajoutĆ©s correctement" - -#: ../../enterprise/tools/ipam/ipam_vlan_config.php:174 -#: ../../enterprise/tools/ipam/ipam_supernet_config.php:440 -msgid "Network could not be added" -msgstr "Le rĆ©seau n'a pas pu ĆŖtre ajoutĆ©" - -#: ../../enterprise/tools/ipam/ipam_vlan_config.php:179 -msgid "Network name could not be added, please select network" -msgstr "Nom du rĆ©seau n'a pas pu ĆŖtre ajoutĆ©, sĆ©lectionnez le rĆ©seau" - -#: ../../enterprise/tools/ipam/ipam_vlan_config.php:184 -msgid "Vlan name could not be added, please select vlan" -msgstr "Le nom du Vlan n'a pas pu ĆŖtre ajoutĆ©, sĆ©lectionnez clan" - -#: ../../enterprise/tools/ipam/ipam_vlan_config.php:212 -msgid "Could not be deleted, please select VLAN and network" -msgstr "Il n'as pas pu ĆŖtre Ć©liminĆ©, sĆ©lectionnez vlan et rĆ©seau" - -#: ../../enterprise/tools/ipam/ipam_vlan_config.php:219 -#, php-format -msgid "Failed to delete %d/%d networks from VLAN" -msgstr "Impossible de supprimer les rĆ©seaux %d/%d du VLAN" - -#: ../../enterprise/tools/ipam/ipam_vlan_config.php:223 -msgid "Successfully deleted network from VLAN" -msgstr "RĆ©seau supprimĆ© avec succĆØs du VLAN" - -#: ../../enterprise/tools/ipam/ipam_vlan_config.php:225 -#, php-format -msgid "Successfully deleted %d/%d networks from VLAN" -msgstr "Suppression rĆ©ussie des rĆ©seaux %d/%d du VLAN" - -#: ../../enterprise/tools/ipam/ipam_vlan_config.php:228 -#: ../../enterprise/tools/ipam/ipam_supernet_config.php:495 -msgid "No items selected" -msgstr "Aucun Ć©lĆ©ment sĆ©lectionnĆ©" - -#: ../../enterprise/tools/ipam/ipam_vlan_config.php:303 -#, php-format -msgid "%s VLAN networks have been created" -msgstr "Les rĆ©seaux VLAN %s ont Ć©tĆ© crĆ©es" - -#: ../../enterprise/tools/ipam/ipam_vlan_config.php:305 -msgid "Could not create VLAN networks" -msgstr "Les rĆ©seaux VLAN nĀ”ont pas pu ĆŖtre crĆ©Ć©s" - -#: ../../enterprise/tools/ipam/ipam_vlan_config.php:316 -#: ../../enterprise/tools/ipam/ipam_supernet_config.php:701 -#: ../../enterprise/tools/ipam/ipam_list.php:447 -#: ../../enterprise/extensions/csv_import_group/main.php:68 -msgid "The CSV file must have the fields in the following order: " -msgstr "Le fichier CSV doit avoir des champs dans l'ordre suivant: " - -#: ../../enterprise/tools/ipam/ipam_vlan_config.php:339 -#: ../../enterprise/tools/ipam/ipam_vlan_network.php:39 -#: ../../enterprise/tools/ipam/ipam_vlan_wizard.php:58 -#: ../../enterprise/tools/ipam/ipam_vlan_wizard.php:62 -#: ../../enterprise/tools/ipam/ipam_vlan_wizard.php:67 -#: ../../enterprise/tools/ipam/ipam_list.php:151 -#: ../../enterprise/tools/ipam/ipam_list.php:602 -msgid "Vlan" -msgstr "Vlan" - -#: ../../enterprise/tools/ipam/ipam_vlan_config.php:366 -#: ../../enterprise/tools/ipam/ipam_vlan_config.php:822 -msgid "Update Vlan" -msgstr "Mettre Ć  jour le Vlan" - -#: ../../enterprise/tools/ipam/ipam_vlan_config.php:373 -#: ../../enterprise/tools/ipam/ipam_vlan_config.php:917 -msgid "New Vlan" -msgstr "Nouveau Vlan" - -#: ../../enterprise/tools/ipam/ipam_vlan_config.php:393 -#: ../../enterprise/tools/ipam/ipam_network.php:115 -#: ../../enterprise/tools/ipam/ipam_supernet_config.php:719 -#: ../../enterprise/tools/ipam/ipam_list.php:50 -#: ../../enterprise/include/class/CSVImportAgents.class.php:146 -#: ../../enterprise/extensions/csv_import_group/main.php:84 -msgid "Upload file" -msgstr "Charger un fichier" - -#: ../../enterprise/tools/ipam/ipam_vlan_config.php:402 -#: ../../enterprise/tools/ipam/ipam_network.php:124 -#: ../../enterprise/tools/ipam/ipam_supernet_config.php:728 -#: ../../enterprise/tools/ipam/ipam_list.php:59 -#: ../../enterprise/include/class/CSVImportAgents.class.php:163 -#: ../../enterprise/include/class/DeploymentCenter.class.php:1400 -#: ../../enterprise/extensions/csv_import_group/main.php:87 -msgid "Separator" -msgstr "SĆ©parateur" - -#: ../../enterprise/tools/ipam/ipam_vlan_config.php:415 -#: ../../enterprise/tools/ipam/ipam_network.php:137 -#: ../../enterprise/tools/ipam/ipam_supernet_config.php:741 -#: ../../enterprise/tools/ipam/ipam_list.php:72 -#: ../../enterprise/extensions/csv_import_group/main.php:100 -msgid "Upload CSV file" -msgstr "TĆ©lĆ©verser un fichier CSV" - -#: ../../enterprise/tools/ipam/ipam_vlan_config.php:435 -msgid "Search filter by name" -msgstr "Chercher filtre par nom" - -#: ../../enterprise/tools/ipam/ipam_vlan_config.php:688 -#: ../../enterprise/tools/ipam/ipam_supernet_config.php:1071 -msgid "Networks" -msgstr "RĆ©seaux" - -#: ../../enterprise/tools/ipam/ipam_vlan_config.php:702 -#: ../../enterprise/tools/ipam/ipam_supernet_config.php:1176 -#: ../../enterprise/tools/ipam/ipam_supernet_config.php:1306 -#: ../../enterprise/include/ajax/ipam.ajax.php:691 -#: ../../enterprise/include/ajax/ipam.ajax.php:748 -#: ../../enterprise/include/ajax/ipam.ajax.php:779 -#: ../../enterprise/include/ajax/ipam.ajax.php:826 -msgid "No assigned networks" -msgstr "RĆ©seaux non-attribuĆ©s" - -#: ../../enterprise/tools/ipam/ipam_vlan_config.php:736 -msgid "Delete network to vlan" -msgstr "Ɖliminer rĆ©seau du vlan" - -#: ../../enterprise/tools/ipam/ipam_vlan_config.php:796 -msgid "Manage networks in VLAN" -msgstr "GĆ©rer les rĆ©seaux en VLAN" - -#: ../../enterprise/tools/ipam/ipam_vlan_config.php:816 -msgid "Not assigned networks" -msgstr "RĆ©seaux non-attribuĆ©s" - -#: ../../enterprise/tools/ipam/ipam_vlan_config.php:829 -#: ../../enterprise/tools/ipam/ipam_vlan_config.php:848 -msgid "Add network to Vlan" -msgstr "Ajouter rĆ©seau au Vlan" - -#: ../../enterprise/tools/ipam/ipam_vlan_config.php:832 -msgid "Create network" -msgstr "CrĆ©er rĆ©seau" - -#: ../../enterprise/tools/ipam/ipam_vlan_config.php:865 -msgid "Delete Vlan" -msgstr "Ɖliminer Vlan" - -#: ../../enterprise/tools/ipam/ipam_vlan_config.php:906 -#: ../../enterprise/tools/ipam/ipam_vlan_wizard.php:459 -msgid "No vlans found" -msgstr "Il n'a pas de vlans trouvĆ©s" - -#: ../../enterprise/tools/ipam/ipam_network_location_config.php:40 -#: ../../godmode/modules/manage_nc_groups.php:64 -msgid "Could not be created. Blank name" -msgstr "Erreur de crĆ©ation : nom en blanc." - -#: ../../enterprise/tools/ipam/ipam_network_location_config.php:61 -#: ../../enterprise/godmode/reporting/graph_template_editor.php:155 -#: ../../godmode/modules/manage_nc_groups.php:95 -#: ../../godmode/events/event_edit_filter.php:205 -#: ../../godmode/netflow/nf_edit_form.php:118 -msgid "Not updated. Blank name" -msgstr "Erreur de mise Ć  jour. Nom en blanc." - -#: ../../enterprise/tools/ipam/ipam_network_location_config.php:72 -#: ../../godmode/setup/news.php:108 -#: ../../godmode/modules/manage_nc_groups.php:119 -#: ../../godmode/events/event_edit_filter.php:216 -#: ../../godmode/netflow/nf_edit_form.php:140 -msgid "Not updated. Error updating data" -msgstr "Erreur de mise Ć  jour des donnĆ©es" - -#: ../../enterprise/tools/ipam/ipam_network_location_config.php:110 -#, php-format -msgid "%d/%d items deleted" -msgstr "%d/%d Ć©lĆ©ments supprimĆ©s" - -#: ../../enterprise/tools/ipam/ipam_network_location_config.php:112 -msgid "Failed to delete items" -msgstr "Impossible de supprimer des Ć©lĆ©ments" - -#: ../../enterprise/tools/ipam/ipam_network_location_config.php:167 -msgid "Search filter by name or network address" -msgstr "Chercher de filtre par nom ou adresse rĆ©seau" - -#: ../../enterprise/tools/ipam/ipam_network_location_config.php:273 -msgid "No locations found" -msgstr "Aucune destination trouvĆ©e" - -#: ../../enterprise/tools/ipam/ipam_network_location_config.php:309 -msgid "There are no defined network locations" -msgstr "Il nā€™y a pas dā€™emplacements rĆ©seau dĆ©finis" - -#: ../../enterprise/tools/ipam/ipam_supernet_network.php:82 -#: ../../enterprise/tools/ipam/ipam_supernet_config.php:536 -#: ../../enterprise/include/ajax/ipam.ajax.php:613 -msgid "Supernet" -msgstr "Super-rĆ©seau" - -#: ../../enterprise/tools/ipam/ipam_ajax.php:285 -msgid "There is not an available IP." -msgstr "Aucune adresse IP disponible" - -#: ../../enterprise/tools/ipam/ipam_ajax.php:287 -msgid "Next available IP Address is:" -msgstr "La suivante adresse IP disponible est :" - -#: ../../enterprise/tools/ipam/ipam_ajax.php:313 -msgid "Reserve this IP now" -msgstr "RĆ©server cette adresse IP maintenant" - -#: ../../enterprise/tools/ipam/ipam_ajax.php:329 -msgid "Manage this IP now" -msgstr "GĆ©rer cette adresse IP maintenant" - -#: ../../enterprise/tools/ipam/ipam_ajax.php:374 -msgid "Operating system" -msgstr "SystĆØme d'exploitation" - -#: ../../enterprise/tools/ipam/ipam_ajax.php:384 -msgid "This agent has other IPs" -msgstr "Cet agent a d'autres adresses IP." - -#: ../../enterprise/tools/ipam/ipam_ajax.php:393 -msgid "Generate events" -msgstr "GĆ©nĆ©rer des Ć©vĆ©nements" - -#: ../../enterprise/tools/ipam/ipam_ajax.php:406 -#: ../../enterprise/tools/ipam/ipam_massive.php:103 -#: ../../enterprise/tools/ipam/ipam_network.php:400 -#: ../../enterprise/include/functions_ipam.php:1571 -#: ../../enterprise/include/functions_ipam.php:2042 -msgid "Managed" -msgstr "GĆ©rĆ©" - -#: ../../enterprise/tools/ipam/ipam_ajax.php:432 -#: ../../enterprise/tools/ipam/ipam_massive.php:103 -#: ../../enterprise/tools/ipam/ipam_network.php:401 -#: ../../enterprise/include/functions_ipam.php:1577 -#: ../../enterprise/include/functions_ipam.php:1734 -#: ../../enterprise/include/functions_ipam.php:2043 -msgid "Reserved" -msgstr "RĆ©servĆ©" - -#: ../../enterprise/tools/ipam/ipam_ajax.php:445 -msgid "Leases Dhcp" -msgstr "Leases Dhcp" - -#: ../../enterprise/tools/ipam/ipam_ajax.php:455 -msgid "leased mode" -msgstr "mode leased" - -#: ../../enterprise/tools/ipam/ipam_ajax.php:468 -msgid "leased expiration" -msgstr "expiration louĆ©" - -#: ../../enterprise/tools/ipam/ipam_ajax.php:489 -#: ../../enterprise/tools/ipam/ipam_vlan_wizard.php:424 -msgid "Created" -msgstr "CrĆ©Ć©" - -#: ../../enterprise/tools/ipam/ipam_ajax.php:499 -msgid "Edited" -msgstr "ModifiĆ©" - -#: ../../enterprise/tools/ipam/ipam_ajax.php:509 -msgid "Tracking" -msgstr "Suivi" - -#: ../../enterprise/tools/ipam/ipam_ajax.php:524 -msgid "Ping" -msgstr "Ping" - -#: ../../enterprise/tools/ipam/ipam_ajax.php:565 -msgid "Ping to host" -msgstr "Ping Ć  un hĆ“te" - -#: ../../enterprise/tools/ipam/ipam_vlan_wizard.php:58 -msgid "succesfully created" -msgstr "crĆ©Ć© correctement" - -#: ../../enterprise/tools/ipam/ipam_vlan_wizard.php:62 -msgid "not created" -msgstr "non crĆ©Ć©" - -#: ../../enterprise/tools/ipam/ipam_vlan_wizard.php:67 -msgid "exists in bbdd, please select other name" -msgstr "Il existe dans la base de donnĆ©es, sĆ©lectionnez un autre nom" - -#: ../../enterprise/tools/ipam/ipam_vlan_wizard.php:72 -msgid "please, select VLAN to be created" -msgstr "Veuillez sĆ©lectionner le VLAN Ć  creer" - -#: ../../enterprise/tools/ipam/ipam_vlan_wizard.php:231 -msgid "Please enter adress, for search vlans" -msgstr "Veuillez entrer l'adresse pour chercher des vlans" - -#: ../../enterprise/tools/ipam/ipam_vlan_wizard.php:337 -msgid "privacy pass" -msgstr "Connexion privĆ©e" - -#: ../../enterprise/tools/ipam/ipam_vlan_wizard.php:374 -#: ../../godmode/wizards/HostDevices.class.php:1248 -msgid "Context" -msgstr "Contexte" - -#: ../../enterprise/tools/ipam/ipam_vlan_wizard.php:397 -msgid "Run" -msgstr "ExĆ©cuter" - -#: ../../enterprise/tools/ipam/ipam_vlan_wizard.php:409 -msgid "Vlan name" -msgstr "Nom de vlan" - -#: ../../enterprise/tools/ipam/ipam_massive.php:82 -msgid "Addresses" -msgstr "Adresses" - -#: ../../enterprise/tools/ipam/ipam_network.php:163 -msgid "No addresses found on this network" -msgstr "Aucune adresse trouvĆ©e sur ce rĆ©seau" - -#: ../../enterprise/tools/ipam/ipam_network.php:314 -msgid "Edit address" -msgstr "Modifier l'adresse" - -#: ../../enterprise/tools/ipam/ipam_network.php:327 -msgid "Disabled address" -msgstr "Adresse dĆ©sactivĆ©e" - -#: ../../enterprise/tools/ipam/ipam_network.php:327 -msgid "This address will not be updated by the server" -msgstr "Cette adresse ne sera pas mise Ć  jour par le serveur" - -#: ../../enterprise/tools/ipam/ipam_network.php:414 -#: ../../enterprise/include/functions_reporting_csv.php:1936 -#: ../../enterprise/include/functions_reporting.php:2318 -#: ../../enterprise/include/functions_ipam.php:2038 -#: ../../godmode/wizards/DiscoveryTaskList.class.php:1391 -msgid "Alive" -msgstr "Actif" - -#: ../../enterprise/tools/ipam/ipam_network.php:423 -#: ../../godmode/wizards/DiscoveryTaskList.class.php:1396 -msgid "Not alive" -msgstr "Inactif" - -#: ../../enterprise/tools/ipam/ipam_network.php:454 -#: ../../enterprise/tools/ipam/ipam_network.php:533 -#: ../../enterprise/tools/ipam/ipam_network.php:575 -msgid "Change to automatic mode" -msgstr "Changer au mode automatique" - -#: ../../enterprise/tools/ipam/ipam_network.php:463 -#: ../../enterprise/tools/ipam/ipam_network.php:542 -#: ../../enterprise/tools/ipam/ipam_network.php:584 -msgid "Change to manual mode" -msgstr "Changer au mode manuel" - -#: ../../enterprise/tools/ipam/ipam_network.php:663 -msgid "Add comments" -msgstr "Ajouter des commentaires" - -#: ../../enterprise/tools/ipam/ipam_network.php:691 -msgid "Update agent address" -msgstr "Mise Ć  jour de l'adresse de l'agent" - -#: ../../enterprise/tools/ipam/ipam_network.php:857 -msgid "Please, uncheck auto option to set manual agent." -msgstr "Veuillez dĆ©cocher l'option automatique pour rĆ©gler l'agent manuellement" - -#: ../../enterprise/tools/ipam/ipam_action.php:121 -#: ../../enterprise/tools/ipam/ipam_action.php:240 -#: ../../enterprise/tools/ipam/ipam_supernet_config.php:227 -#: ../../enterprise/tools/ipam/ipam_supernet_config.php:327 -#: ../../enterprise/tools/ipam/ipam_list.php:383 -msgid "The location is not filled, please add a location." -msgstr "L'emplacement n'a pas Ć©tĆ© indiquĆ©. Veuillez ajouter un emplacement." - -#: ../../enterprise/tools/ipam/ipam_action.php:138 -#: ../../enterprise/tools/ipam/ipam_action.php:270 -#: ../../enterprise/tools/ipam/ipam_list.php:400 -msgid "Incorrect format in Subnet field" -msgstr "Format incorrect dans le champ de sous-rĆ©seau" - -#: ../../enterprise/tools/ipam/ipam_action.php:198 -#, php-format -msgid "Network could not be added to supernet %s (%s)" -msgstr "Le rĆ©seau n'a pas pu ĆŖtre ajoutĆ© au super-rĆ©seau %s (%s)" - -#: ../../enterprise/tools/ipam/ipam_action.php:202 -#, php-format -msgid "Network added to supernet %s (%s)" -msgstr "RĆ©seau ajoutĆ© au super-rĆ©seau %s (%s)" - -#: ../../enterprise/tools/ipam/ipam_action.php:207 -#, php-format -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:219 -#: ../../enterprise/tools/ipam/ipam_list.php:425 -#, php-format -msgid "Could not be created: %s" -msgstr "N'a pas pu ĆŖtre crĆ©Ć© : %s" - -#: ../../enterprise/tools/ipam/ipam_calculator.php:64 -#: ../../enterprise/tools/ipam/ipam_calculator.php:66 -#: ../../enterprise/tools/ipam/ipam_calculator.php:87 -#: ../../enterprise/tools/ipam/ipam_calculator.php:90 -#: ../../enterprise/tools/ipam/ipam_calculator.php:93 -#: ../../enterprise/tools/ipam/ipam_calculator.php:96 -msgid "Example:" -msgstr "Exemple :" - -#: ../../enterprise/tools/ipam/ipam_calculator.php:70 -msgid "Bit mask" -msgstr "Masque de bit" - -#: ../../enterprise/tools/ipam/ipam_calculator.php:71 -msgid "Net mask" -msgstr "Masque de rĆ©seau" - -#: ../../enterprise/tools/ipam/ipam_calculator.php:74 -msgid "Mask format" -msgstr "Format du masque" - -#: ../../enterprise/tools/ipam/ipam_calculator.php:105 -msgid "Calculate" -msgstr "Calculer" - -#: ../../enterprise/tools/ipam/ipam_calculator.php:112 -msgid "Address field is empty" -msgstr "Le champ adresse est vide." - -#: ../../enterprise/tools/ipam/ipam_calculator.php:120 -msgid "Mask field is empty" -msgstr "Le champ masque est vide." - -#: ../../enterprise/tools/ipam/ipam_calculator.php:139 -#: ../../enterprise/tools/ipam/ipam_calculator.php:152 -msgid "Incorrect address format" -msgstr "Format d'adresse incorrect" - -#: ../../enterprise/tools/ipam/ipam_calculator.php:144 -#: ../../enterprise/tools/ipam/ipam_calculator.php:157 -#: ../../enterprise/tools/ipam/ipam_calculator.php:162 -msgid "Incorrect mask format" -msgstr "Format de masque incorrect" - -#: ../../enterprise/tools/ipam/ipam_calculator.php:190 -msgid "Network mask" -msgstr "Masque de rĆ©seau" - -#: ../../enterprise/tools/ipam/ipam_calculator.php:211 -msgid "Network wildcard" -msgstr "CaractĆØre de remplacement du rĆ©seau" - -#: ../../enterprise/tools/ipam/ipam_calculator.php:220 -msgid "Network address" -msgstr "Adresse du rĆ©seau" - -#: ../../enterprise/tools/ipam/ipam_calculator.php:229 -msgid "Broadcast address" -msgstr "Adresse de diffusion" - -#: ../../enterprise/tools/ipam/ipam_calculator.php:238 -msgid "First valid IP" -msgstr "PremiĆØre adresse IP valide" - -#: ../../enterprise/tools/ipam/ipam_calculator.php:247 -msgid "Last valid IP" -msgstr "DerniĆØre adresse IP valide" - -#: ../../enterprise/tools/ipam/ipam_calculator.php:257 -msgid "Hosts/Net" -msgstr "HĆ“tes/RĆ©seau" - -#: ../../enterprise/tools/ipam/ipam_supernet_config.php:52 -#: ../../enterprise/tools/ipam/ipam_supernet_config.php:100 -msgid "There is no supernet name. Please introduce a name" -msgstr "Il n'y a pas des noms de super-rĆ©seau. Entrez un nom" - -#: ../../enterprise/tools/ipam/ipam_supernet_config.php:56 -#: ../../enterprise/tools/ipam/ipam_supernet_config.php:104 -msgid "There is no supernet address. Please introduce a address" -msgstr "Il n'y a pas d'adresse super-rĆ©seau. Entrez une adresse" - -#: ../../enterprise/tools/ipam/ipam_supernet_config.php:60 -#: ../../enterprise/tools/ipam/ipam_supernet_config.php:108 -msgid "There is no supernet mask. Please introduce a mask" -msgstr "Il n'y a pas de masque de super-rĆ©seau. Veuillez entrer une maque" - -#: ../../enterprise/tools/ipam/ipam_supernet_config.php:64 -msgid "There is no valid address. Please introduce a address" -msgstr "Il n'y a pas d'adresse valide. Veuillez entrer une adresse" - -#: ../../enterprise/tools/ipam/ipam_supernet_config.php:68 -msgid "There is no valid mask. Please introduce a mask" -msgstr "Il n'y a pas de masque valide. Veuillez entrer une masque" - -#: ../../enterprise/tools/ipam/ipam_supernet_config.php:83 -msgid "Supernet created" -msgstr "Super-rĆ©seau crĆ©e" - -#: ../../enterprise/tools/ipam/ipam_supernet_config.php:85 -msgid "Supernet not created" -msgstr "Super-rĆ©seau non crĆ©e" - -#: ../../enterprise/tools/ipam/ipam_supernet_config.php:89 -#: ../../enterprise/tools/ipam/ipam_supernet_config.php:135 -msgid "Supernet name exists in bbdd, please select other name" -msgstr "" -"Le nom de super-rĆ©seau existe dans la base de donnĆ©es, sĆ©lectionnez un autre " -"nom" - -#: ../../enterprise/tools/ipam/ipam_supernet_config.php:129 -msgid "Supernet updated" -msgstr "Super-rĆ©seau mise Ć  jour" - -#: ../../enterprise/tools/ipam/ipam_supernet_config.php:131 -msgid "Supernet not updated" -msgstr "Super-rĆ©seau non mise Ć  jour" - -#: ../../enterprise/tools/ipam/ipam_supernet_config.php:156 -msgid "Could not be deleted, please select supernet" -msgstr "Il n'a pas Ć©tĆ© possible de l'Ć©liminer, sĆ©lectionnez un super-rĆ©seau" - -#: ../../enterprise/tools/ipam/ipam_supernet_config.php:395 -#, php-format -msgid "Successfully created %d networks" -msgstr "%d rĆ©seaux ajoutĆ©s correctement" - -#: ../../enterprise/tools/ipam/ipam_supernet_config.php:399 -msgid "Failed to create networks" -msgstr "Impossible de crĆ©er des rĆ©seaux" - -#: ../../enterprise/tools/ipam/ipam_supernet_config.php:402 -msgid "Entered range address is not valid" -msgstr "Lā€™adresse de plage saisie nā€™est pas valide" - -#: ../../enterprise/tools/ipam/ipam_supernet_config.php:429 -msgid "Network name cannot be repeated in this supernet" -msgstr "Le nom du rĆ©seau ne peut pas ĆŖtre rĆ©pĆ©tĆ© dans ce super-rĆ©seau" - -#: ../../enterprise/tools/ipam/ipam_supernet_config.php:445 -msgid "No networks to be added to supernet" -msgstr "Aucun rĆ©seau Ć  ajouter Ć  supernet" - -#: ../../enterprise/tools/ipam/ipam_supernet_config.php:450 -msgid "supernet name could not be added, please select supernet" -msgstr "le nom du super-rĆ©seau n'a pas pu ĆŖtre ajoutĆ©, sĆ©lectionnez super-rĆ©seau" - -#: ../../enterprise/tools/ipam/ipam_supernet_config.php:479 -msgid "Could not be deleted, please select supernet and network" -msgstr "Il n'a pas pu ĆŖtre Ć©liminĆ©, sĆ©lectionnez le super-rĆ©seau et le rĆ©seau" - -#: ../../enterprise/tools/ipam/ipam_supernet_config.php:486 -#, php-format -msgid "Failed to delete %d/%d networks from supernet" -msgstr "Impossible de supprimer les rĆ©seaux %d/%d de supernet" - -#: ../../enterprise/tools/ipam/ipam_supernet_config.php:490 -msgid "Successfully deleted network from supernet" -msgstr "RĆ©seau supprimĆ© avec succĆØs du supernet" - -#: ../../enterprise/tools/ipam/ipam_supernet_config.php:492 -#, php-format -msgid "Successfully deleted %d/%d networks from supernet" -msgstr "Suppression rĆ©ussie des rĆ©seaux %d/%d de supernet" - -#: ../../enterprise/tools/ipam/ipam_supernet_config.php:582 -msgid "Subnetting Mask" -msgstr "Masque de sous-rĆ©seau" - -#: ../../enterprise/tools/ipam/ipam_supernet_config.php:605 -#: ../../enterprise/tools/ipam/ipam_supernet_config.php:777 -#: ../../enterprise/tools/ipam/ipam_supernet_config.php:1064 -#: ../../enterprise/tools/ipam/ipam_list.php:129 -#: ../../enterprise/tools/ipam/ipam_list.php:595 -msgid "Site" -msgstr "Site" - -#: ../../enterprise/tools/ipam/ipam_supernet_config.php:640 -#: ../../enterprise/tools/ipam/ipam_supernet_config.php:1313 -msgid "Update Supernet" -msgstr "Mettre Ć  jour le super-rĆ©seau" - -#: ../../enterprise/tools/ipam/ipam_supernet_config.php:647 -#: ../../enterprise/tools/ipam/ipam_supernet_config.php:1451 -msgid "New Supernet" -msgstr "Nouveau super-rĆ©seau" - -#: ../../enterprise/tools/ipam/ipam_supernet_config.php:688 -#, php-format -msgid "%s supernets created" -msgstr "Super-rĆ©seaux %s crĆ©Ć©s" - -#: ../../enterprise/tools/ipam/ipam_supernet_config.php:690 -msgid "supernets creation failed" -msgstr "La crĆ©ation de super-rĆ©seaux a Ć©chouĆ©" - -#: ../../enterprise/tools/ipam/ipam_supernet_config.php:763 -#: ../../enterprise/tools/ipam/ipam_list.php:93 -msgid "Search filter by name, network address or description" -msgstr "Chercher de filtre par nom, adresse rĆ©seau ou description" - -#: ../../enterprise/tools/ipam/ipam_supernet_config.php:790 -msgid "Min. networks range" -msgstr "Ɖventail de rĆ©seaux minimale" - -#: ../../enterprise/tools/ipam/ipam_supernet_config.php:793 -msgid "Max. networks range" -msgstr "Ɖventail de rĆ©seaux maximale" - -#: ../../enterprise/tools/ipam/ipam_supernet_config.php:1060 -msgid "Address / Masks" -msgstr "Adresse / Masques" - -#: ../../enterprise/tools/ipam/ipam_supernet_config.php:1062 -msgid "Subnetting mask" -msgstr "Masque de sous-rĆ©seau" - -#: ../../enterprise/tools/ipam/ipam_supernet_config.php:1063 -msgid "Networks range" -msgstr "Ɖventail de rĆ©seaux" - -#: ../../enterprise/tools/ipam/ipam_supernet_config.php:1237 -msgid "Delete network in supernet" -msgstr "Ɖliminer rĆ©seau du super-rĆ©seau" - -#: ../../enterprise/tools/ipam/ipam_supernet_config.php:1286 -msgid "Manage networks in supernet" -msgstr "GĆ©rer les rĆ©seaux dans supernet" - -#: ../../enterprise/tools/ipam/ipam_supernet_config.php:1320 -msgid "Add network to supernet" -msgstr "Ajouter du rĆ©seau au super-rĆ©seau" - -#: ../../enterprise/tools/ipam/ipam_supernet_config.php:1323 -msgid "Next network" -msgstr "RĆ©seau suivant" - -#: ../../enterprise/tools/ipam/ipam_supernet_config.php:1355 -msgid "Delete Supernet" -msgstr "Ɖliminer du super-rĆ©seau" - -#: ../../enterprise/tools/ipam/ipam_supernet_config.php:1444 -msgid "No Supernet found" -msgstr "Aucune super-rĆ©seau trouvĆ©" - -#: ../../enterprise/tools/ipam/ipam.php:52 ../../extensions/files_repo.php:122 -#: ../../extensions/files_repo.php:210 -msgid "Operation view" -msgstr "Afficher opĆ©ration" - -#: ../../enterprise/tools/ipam/ipam.php:78 -#: ../../enterprise/tools/ipam/ipam.php:356 -msgid "Subnetworks calculator" -msgstr "Calculatrice de sous-rĆ©seaux" - -#: ../../enterprise/tools/ipam/ipam.php:96 -msgid "Vlan config" -msgstr "Configuration Vlan" - -#: ../../enterprise/tools/ipam/ipam.php:114 -msgid "Vlan wizard" -msgstr "Assistant Vlan" - -#: ../../enterprise/tools/ipam/ipam.php:133 -msgid "Supernet treeview" -msgstr "Vue d'arbre de super rĆ©seau" - -#: ../../enterprise/tools/ipam/ipam.php:152 -msgid "Network locations" -msgstr "Emplacements rĆ©seau" - -#: ../../enterprise/tools/ipam/ipam.php:171 -#: ../../enterprise/tools/ipam/ipam.php:411 -#: ../../enterprise/tools/ipam/ipam_editor.php:224 -#: ../../enterprise/include/ajax/ipam.ajax.php:418 -msgid "Sites" -msgstr "Sites" - -#: ../../enterprise/tools/ipam/ipam.php:196 -msgid "Vlan statistics" -msgstr "Statistiques de la VLan" - -#: ../../enterprise/tools/ipam/ipam.php:216 -#: ../../enterprise/tools/ipam/ipam.php:381 -msgid "Supernet config" -msgstr "Configuration de super-rĆ©seau" - -#: ../../enterprise/tools/ipam/ipam.php:237 -#: ../../enterprise/tools/ipam/ipam.php:396 -msgid "Supernet statistics" -msgstr "Statistiques de super-rĆ©seau" - -#: ../../enterprise/tools/ipam/ipam.php:257 -msgid "Supernet map" -msgstr "Carte super-rĆ©seau" - -#: ../../enterprise/tools/ipam/ipam.php:280 -#: ../../enterprise/tools/ipam/ipam_list.php:685 -msgid "Manage addresses" -msgstr "GĆ©rer les adresses" - -#: ../../enterprise/tools/ipam/ipam.php:300 -#: ../../enterprise/tools/ipam/ipam.php:361 -#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:692 -#: ../../godmode/massive/massive_operations.php:390 -#: ../../godmode/massive/massive_edit_plugins.php:921 -msgid "Massive operations" -msgstr "OpĆ©rations massives" - -#: ../../enterprise/tools/ipam/ipam.php:320 -#: ../../enterprise/tools/ipam/ipam_list.php:694 -msgid "Addresses view" -msgstr "Vue des adresses" - -#: ../../enterprise/tools/ipam/ipam.php:352 -msgid "/tools/ipam/ipam_network.php" -msgstr "/tools/ipam/ipam_network.php" - -#: ../../enterprise/tools/ipam/ipam.php:366 -msgid "VLAN Config" -msgstr "Configuration VLAN" - -#: ../../enterprise/tools/ipam/ipam.php:371 -msgid "VLAN Wizard" -msgstr "Assistant VLAN" - -#: ../../enterprise/tools/ipam/ipam.php:376 -msgid "VLAN Statistics" -msgstr "Statistiques VLAN" - -#: ../../enterprise/tools/ipam/ipam.php:386 -msgid "Network location config" -msgstr "Configuration de lā€™emplacement rĆ©seau" - -#: ../../enterprise/tools/ipam/ipam.php:391 -msgid "Supernet wizard" -msgstr "Assistante super-rĆ©seau" - -#: ../../enterprise/tools/ipam/ipam.php:401 -msgid "Supernet Map" -msgstr "Carte super-rĆ©seau" - -#: ../../enterprise/tools/ipam/ipam.php:406 -msgid "Supernet Treeview" -msgstr "Vue d'arbre super-rĆ©seau" - -#: ../../enterprise/tools/ipam/ipam.php:432 -msgid "Operation View" -msgstr "Vue d'opĆ©ration" - -#: ../../enterprise/tools/ipam/ipam.php:449 ../../godmode/menu.php:380 -msgid "Admin tools" -msgstr "Outils d'administration" - -#: ../../enterprise/tools/ipam/ipam_supernet_treeview.php:94 -msgid "Found supernets" -msgstr "Super-rĆ©seaux trouvĆ©s" - -#: ../../enterprise/tools/ipam/ipam_list.php:97 -#: ../../enterprise/tools/ipam/ipam_list.php:588 -#: ../../enterprise/tools/ipam/ipam_editor.php:191 -#: ../../enterprise/include/ajax/ipam.ajax.php:385 -#: ../../enterprise/include/functions_ipam.php:1369 -#: ../../enterprise/include/functions_ipam.php:1983 -#: ../../godmode/events/event_responses.editor.php:123 -msgid "Location" -msgstr "Emplacement" - -#: ../../enterprise/tools/ipam/ipam_list.php:434 -#, php-format -msgid "%s networks created" -msgstr "RĆ©seaux %s crĆ©es" - -#: ../../enterprise/tools/ipam/ipam_list.php:436 -msgid "Networks creation failed" -msgstr "La crĆ©ation de rĆ©seaux a Ć©chouĆ©" - -#: ../../enterprise/tools/ipam/ipam_list.php:501 -msgid "No networks found" -msgstr "Aucun rĆ©seau trouvĆ©" - -#: ../../enterprise/tools/ipam/ipam_list.php:609 -#: ../../enterprise/tools/ipam/ipam_editor.php:243 -#: ../../enterprise/include/ajax/ipam.ajax.php:437 -msgid "Vrf" -msgstr "Vrf" - -#: ../../enterprise/tools/ipam/ipam_list.php:625 -msgid "IPs" -msgstr "Adresses IP" - -#: ../../enterprise/tools/ipam/ipam_list.php:708 -msgid "Edit network" -msgstr "Ɖditer le rĆ©seau" - -#: ../../enterprise/tools/ipam/ipam_list.php:719 -msgid "Delete network" -msgstr "Supprimer le rĆ©seau" - -#: ../../enterprise/tools/ipam/ipam_sites.php:70 -msgid "Successfully saved" -msgstr "EnregistrĆ© correctement" - -#: ../../enterprise/tools/ipam/ipam_sites.php:76 -#, php-format -msgid "Failed to save site %s" -msgstr "Impossible dā€™enregistrer site %s" - -#: ../../enterprise/tools/ipam/ipam_sites.php:132 -#, php-format -msgid "Failed to delete site %s" -msgstr "Impossible de supprimer site %s" - -#: ../../enterprise/tools/ipam/ipam_editor.php:56 -msgid "Network not found" -msgstr "RĆ©seau introuvable" - -#: ../../enterprise/tools/ipam/ipam_editor.php:122 -msgid "Format: IP/Mask" -msgstr "Format : IP/Masque" - -#: ../../enterprise/tools/ipam/ipam_editor.php:136 -msgid "Examples" -msgstr "Exemples" - -#: ../../enterprise/tools/ipam/ipam_editor.php:192 -#: ../../enterprise/include/ajax/ipam.ajax.php:386 -msgid "For example: Central Data Center" -msgstr "Par exemple : Centre de donnĆ©es" - -#: ../../enterprise/tools/ipam/ipam_editor.php:225 -#: ../../enterprise/include/ajax/ipam.ajax.php:419 -msgid "For example: Pandora" -msgstr "Par exemple : Pandora" - -#: ../../enterprise/tools/ipam/ipam_editor.php:244 -#: ../../enterprise/include/ajax/ipam.ajax.php:438 -msgid "Virtual Routing and Forwarding" -msgstr "Routage et transfert virtuels" - -#: ../../enterprise/tools/ipam/ipam_editor.php:262 -#: ../../enterprise/include/ajax/ipam.ajax.php:456 -msgid "Include statistical monitors" -msgstr "Inclure des moniteurs statistiques" - -#: ../../enterprise/tools/ipam/ipam_editor.php:277 -#: ../../enterprise/include/ajax/ipam.ajax.php:471 -msgid "Lightweight mode" -msgstr "Mode lĆ©ger" - -#: ../../enterprise/tools/ipam/ipam_editor.php:278 -#: ../../enterprise/include/ajax/ipam.ajax.php:472 -msgid "Use quicker network scan" -msgstr "Utiliser des scans rĆ©seau" - -#: ../../enterprise/tools/ipam/ipam_editor.php:294 -#: ../../enterprise/include/ajax/ipam.ajax.php:488 -msgid "Target group for monitoring agent" -msgstr "Group cible pour l'agent de supervision" - -#: ../../enterprise/tools/ipam/ipam_editor.php:315 -#: ../../enterprise/include/ajax/ipam.ajax.php:509 -msgid "Scan interval" -msgstr "VĆ©rifier intervalle" - -#: ../../enterprise/tools/ipam/ipam_editor.php:316 -#: ../../enterprise/include/ajax/ipam.ajax.php:510 -msgid "0 for manually scan" -msgstr "0 pour vĆ©rification manuelle" - -#: ../../enterprise/tools/ipam/ipam_editor.php:330 -#: ../../enterprise/include/ajax/ipam.ajax.php:524 -msgid "The list of users can manage the networks in the IPAM." -msgstr "La liste des utilisateurs peut gĆ©rer les rĆ©seaux dans lā€™IPAM." - -#: ../../enterprise/tools/ipam/ipam_editor.php:331 -#: ../../enterprise/include/ajax/ipam.ajax.php:525 -msgid " Only the admin users can manage networks and edit the networks" -msgstr "" -" Seuls les utilisateurs administrateurs peuvent gĆ©rer les rĆ©seaux et modifier " -"les rĆ©seaux" - -#: ../../enterprise/tools/ipam/ipam_editor.php:332 -#: ../../enterprise/include/ajax/ipam.ajax.php:526 -msgid "Operator users" -msgstr "Utilisateurs de l'opĆ©rateur" - -#: ../../enterprise/tools/ipam/ipam_editor.php:338 -#: ../../enterprise/include/ajax/ipam.ajax.php:532 -msgid "All users" -msgstr "Tous les utilisateurs" - -#: ../../enterprise/views/ncm/agent/details.php:89 -msgid "Script type" -msgstr "Type de script" - -#: ../../enterprise/views/ncm/agent/details.php:91 -msgid "Execution last timestamp" -msgstr "Dernier horodatage dā€™exĆ©cution" - -#: ../../enterprise/views/ncm/agent/details.php:107 -msgid "Retrieve running configuration" -msgstr "RĆ©cupĆ©rer la configuration en cours dā€™exĆ©cution" - -#: ../../enterprise/views/ncm/agent/details.php:120 -#: ../../enterprise/views/ncm/agent/details.php:383 -msgid "Restore from backup" -msgstr "Restaurer Ć  partir de sauvegarde" - -#: ../../enterprise/views/ncm/agent/details.php:133 -#: ../../enterprise/views/ncm/agent/details.php:325 -#: ../../enterprise/include/lib/NetworkManager.php:85 -msgid "Retrieve firmware version" -msgstr "RĆ©cupĆ©rer version firmware" - -#: ../../enterprise/views/ncm/agent/details.php:172 -msgid "Running without a backup" -msgstr "ExĆ©cution sans sauvegarde" - -#: ../../enterprise/views/ncm/agent/details.php:181 -msgid "Latest configuration retrieved is different from backed one" -msgstr "La derniĆØre configuration rĆ©cupĆ©rĆ©e est diffĆ©rente de celle sauvegardĆ©e" - -#: ../../enterprise/views/ncm/agent/details.php:184 -msgid "Backup up to date with latest configuration" -msgstr "Sauvegarde Ć  jour avec la derniĆØre configuration" - -#: ../../enterprise/views/ncm/agent/details.php:208 -msgid "Configuration backup status" -msgstr "Ɖtat de sauvegarde de la configuration" - -#: ../../enterprise/views/ncm/agent/details.php:238 -msgid "Last on demand execution" -msgstr "DerniĆØre exĆ©cution Ć  la demande" - -#: ../../enterprise/views/ncm/agent/details.php:246 -#, php-format -msgid "Customize %s" -msgstr "Personnaliser %s" - -#: ../../enterprise/views/ncm/agent/details.php:250 -msgid "Execute snippet" -msgstr "ExĆ©cuter skipper" - -#: ../../enterprise/views/ncm/agent/details.php:265 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1542 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1635 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1760 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1835 -#: ../../enterprise/meta/monitoring/wizard/wizard.module.web.php:103 -#: ../../enterprise/meta/monitoring/wizard/wizard.module.local.php:110 -#: ../../enterprise/meta/monitoring/wizard/wizard.agent.php:66 -#: ../../enterprise/meta/monitoring/wizard/wizard.module.network.php:122 -msgid "Preview" -msgstr "AperƧu" - -#: ../../enterprise/views/ncm/agent/details.php:314 -#, php-format -msgid "Current firmware version: %s" -msgstr "Version du firmware actuelle : %s" - -#: ../../enterprise/views/ncm/agent/details.php:339 -#, php-format -msgid "Configuration backup present, %s" -msgstr "Sauvegarde de configuration prĆ©sent, %s" - -#: ../../enterprise/views/ncm/agent/details.php:346 -msgid "There is no configuration backup" -msgstr "Il n'y a pas de configuration de sauvegarde" - -#: ../../enterprise/views/ncm/agent/details.php:359 -msgid "Backup latest retrieved configuration" -msgstr "Sauvegarder la derniĆØre configuration rĆ©cupĆ©rĆ©e" - -#: ../../enterprise/views/ncm/agent/details.php:372 -#: ../../enterprise/include/class/ManageBackups.class.php:302 -#: ../../extensions/files_repo/files_repo_list.php:123 -msgid "Download" -msgstr "TĆ©lĆ©charger" - -#: ../../enterprise/views/ncm/agent/details.php:401 -#, php-format -msgid "Latest operation \"%s\" was executed %s ago with result: %s %s" -msgstr "" -"La derniĆØre opĆ©ration Ā«Ā %sĀ Ā» a Ć©tĆ© exĆ©cutĆ©e il y a %s avec le rĆ©sultat: %s %s" - -#: ../../enterprise/views/ncm/agent/details.php:414 -#, php-format -msgid "Script executions queued: %d" -msgstr "ExĆ©cutions de script en file dā€™attente : %d" - -#: ../../enterprise/views/ncm/agent/details.php:424 -#, php-format -msgid "Configuration backup schedule: %s" -msgstr "Planification de la sauvegarde de la configuration : %s" - -#: ../../enterprise/views/ncm/agent/details.php:441 -msgid "Device details" -msgstr "DĆ©tails de lā€™appareil" - -#: ../../enterprise/views/ncm/agent/details.php:483 -msgid "Configuration timestamp" -msgstr "Horodatage de configuration" - -#: ../../enterprise/views/ncm/agent/details.php:484 -msgid "Diff" -msgstr "DiffĆ©rences" - -#: ../../enterprise/views/ncm/agent/details.php:490 -msgid "No changes with current backup" -msgstr "Aucun changements par rapport Ć  la sauvegarde actuelle" - -#: ../../enterprise/views/ncm/agent/details.php:494 -msgid "This is the latest configuration retrieved" -msgstr "Cā€™est la derniĆØre configuration rĆ©cupĆ©rĆ©e" - -#: ../../enterprise/views/ncm/agent/details.php:507 -#: ../../enterprise/views/ncm/agent/details.php:511 -msgid "This is the current backup." -msgstr "Cā€™est la sauvegarde actuelle." - -#: ../../enterprise/views/ncm/agent/details.php:523 -msgid "Review this configuration" -msgstr "Passez en revue cette configuration" - -#: ../../enterprise/views/ncm/agent/details.php:534 -msgid "There is no backup to compare with" -msgstr "Il nā€™y a pas de sauvegarde avec laquelle comparer" - -#: ../../enterprise/views/ncm/agent/details.php:545 -msgid "Backup this configuration" -msgstr "Sauvegarder cette configuration" - -#: ../../enterprise/views/ncm/agent/details.php:563 -msgid "Configurations registry" -msgstr "Registre des configurations" - -#: ../../enterprise/views/ncm/agent/details.php:574 -msgid "Diff between: backup - selected" -msgstr "DiffĆ©rence entre : sauvegarde - sĆ©lectionnĆ©" - -#: ../../enterprise/views/ncm/agent/details.php:624 -msgid "Retrieve firmware version?" -msgstr "RĆ©cupĆ©rer version firmware ?" - -#: ../../enterprise/views/ncm/agent/details.php:625 -msgid "" -"This action will connect to the device to retrieve firmware version. Are you " -"sure?" -msgstr "" -"Cette action se connectera Ć  lā€™appareil pour rĆ©cupĆ©rer la version du firmware. " -"ĆŖtes-vous sĆ»r ?" - -#: ../../enterprise/views/ncm/agent/details.php:635 -msgid "Get running config?" -msgstr "Collecter configuration en exĆ©cution ?" - -#: ../../enterprise/views/ncm/agent/details.php:636 -msgid "" -"This action will connect to the device to retrieve latest configuration. Are " -"you sure?" -msgstr "" -"Cette action connectera avec l'appareil pour recueillir la derniĆØre " -"configuration. Ɗtes-vous sĆ»r ?" - -#: ../../enterprise/views/ncm/agent/details.php:647 -msgid "Backup latest config?" -msgstr "Sauvegarder la derniĆØre configuration ?" - -#: ../../enterprise/views/ncm/agent/details.php:648 -msgid "" -"This action will overwrite current backup to use latest retrieved " -"configuration. Are you sure?" -msgstr "" -"Cette action Ć©crasera la sauvegarde actuelle pour utiliser la derniĆØre " -"configuration recueilli. Ɗtes-vous sĆ»r ?" - -#: ../../enterprise/views/ncm/agent/details.php:656 -msgid "Backup target config?" -msgstr "Configuration de la cible de sauvegarde ?" - -#: ../../enterprise/views/ncm/agent/details.php:657 -msgid "" -"This action will overwrite current backup to use selected configuration. Are " -"you sure?" -msgstr "" -"Cette action remplacera la sauvegarde actuelle pour utiliser la configuration " -"sĆ©lectionnĆ©e. Ɗtes-vous sĆ»r ?" - -#: ../../enterprise/views/ncm/agent/details.php:668 -msgid "Restore device configuration?" -msgstr "Restaurer la configuration de l'appareil ?" - -#: ../../enterprise/views/ncm/agent/details.php:669 -msgid "" -"This action will overwrite device configuration with latest backup. Are you " -"sure?" -msgstr "" -"Cette action Ć©crasera la configuration de l'appareil avec la derniĆØre " -"sauvegarde. Ɗtes-vous sĆ»r ?" - -#: ../../enterprise/views/ncm/agent/details.php:688 -msgid "Customize script execution" -msgstr "Personnaliser lā€™exĆ©cution des scripts" - -#: ../../enterprise/views/ncm/agent/manage.php:57 -msgid "For instance Cisco" -msgstr "Par exemple Cisco" - -#: ../../enterprise/views/ncm/agent/manage.php:59 -msgid "Device manufacturer" -msgstr "Fabricant de l'appareil" - -#: ../../enterprise/views/ncm/agent/manage.php:87 -msgid "For instance Catalyst 9400" -msgstr "Par exemple Catalyst 9400" - -#: ../../enterprise/views/ncm/agent/manage.php:89 -msgid "Device model" -msgstr "ModĆØle d'appareil" - -#: ../../enterprise/views/ncm/agent/manage.php:102 -#: ../../godmode/agentes/module_manager_editor_network.php:482 -msgid "Connection method" -msgstr "MĆ©thode de connexion" - -#: ../../enterprise/views/ncm/agent/manage.php:107 -msgid "connect using SSH" -msgstr "Connecter utilisant SSH" - -#: ../../enterprise/views/ncm/agent/manage.php:108 -msgid "connect using telnet" -msgstr "Connecter utilisant telnet" - -#: ../../enterprise/views/ncm/agent/manage.php:131 -msgid "Credentials to access device" -msgstr "Identifiants pour accĆ©der Ć  l'appareil" - -#: ../../enterprise/views/ncm/agent/manage.php:144 -msgid "Credentials to administrate device" -msgstr "Identifiants pour gĆ©rer l'appareil" - -#: ../../enterprise/views/ncm/agent/manage.php:177 -msgid "NCM template to be used" -msgstr "ModĆØle NCM Ć  utiliser" - -#: ../../enterprise/views/ncm/agent/manage.php:190 -msgid "Backup schedule (if defined)" -msgstr "Planification de la sauvegarde (si dĆ©finie)" - -#: ../../enterprise/views/ncm/agent/manage.php:195 -msgid "No schedule" -msgstr "Aucune programmation" - -#: ../../enterprise/views/ncm/agent/manage.php:197 -msgid "Once a day" -msgstr "Une fois par jour" - -#: ../../enterprise/views/ncm/agent/manage.php:198 -msgid "Once a week" -msgstr "Une fois par semaine" - -#: ../../enterprise/views/ncm/agent/manage.php:199 -msgid "Once a month" -msgstr "Une fois par mois" - -#: ../../enterprise/views/ncm/agent/manage.php:218 -msgid "Launch event if configuration changes" -msgstr "ƉvĆ©nement de lancement si la configuration change" - -#: ../../enterprise/views/ncm/agent/manage.php:243 -msgid "NCM state" -msgstr "Ɖtat NCM" - -#: ../../enterprise/views/ncm/agent/modalOnDemandScript.php:63 -msgid "Select firmware file to update to" -msgstr "" -"SĆ©lectionnez le fichier du micrologiciel vers lequel effectuer la mise Ć  jour" - -#: ../../enterprise/views/ncm/agent/modalOnDemandScript.php:75 -msgid "Transfer from url" -msgstr "Transfert depuis lā€™url" - -#: ../../enterprise/views/ncm/agent/modalOnDemandScript.php:86 -msgid "Target file name" -msgstr "Nom du fichier cible" - -#: ../../enterprise/views/ncm/agent/modalOnDemandScript.php:105 -msgid "Customize execution" -msgstr "Personnaliser lā€™exĆ©cution" - -#: ../../enterprise/views/ncm/snippets/edit.php:42 -#: ../../enterprise/views/ncm/snippets/list.php:32 -msgid "Snippets" -msgstr "Snippets" - -#: ../../enterprise/views/ncm/snippets/edit.php:73 -#: ../../enterprise/views/ncm/firmwares/edit.php:72 -#: ../../enterprise/views/ncm/templates/edit.php:73 -msgid "Script not defined" -msgstr "Script pas dĆ©fini" - -#: ../../enterprise/views/ncm/snippets/edit.php:91 -#: ../../enterprise/views/ncm/templates/edit.php:160 -#: ../../enterprise/views/ncm/templates/edit.php:188 -#: ../../enterprise/views/ncm/templates/edit.php:216 -#: ../../enterprise/views/ncm/templates/edit.php:244 -#: ../../enterprise/views/ncm/templates/edit.php:271 -#: ../../enterprise/views/ncm/templates/edit.php:298 -msgid "Script details" -msgstr "DĆ©tails du script" - -#: ../../enterprise/views/ncm/firmwares/edit.php:41 -msgid "Firmware" -msgstr "Firmware" - -#: ../../enterprise/views/ncm/firmwares/edit.php:101 -msgid "" -"Comma separated, a vendors list compatible with scripts defined within " -"firmware." -msgstr "" -"SĆ©parĆ© par des virgules, une liste de fournisseurs compatible avec les scripts " -"dĆ©finis dans le firmware." - -#: ../../enterprise/views/ncm/firmwares/edit.php:106 -#: ../../enterprise/views/ncm/vendors/edit.php:35 -#: ../../enterprise/views/ncm/vendors/list.php:32 -#: ../../enterprise/views/ncm/templates/edit.php:107 -#: ../../enterprise/views/ncm/templates/list.php:74 -msgid "Vendors" -msgstr "Fournisseurs" - -#: ../../enterprise/views/ncm/firmwares/edit.php:129 -msgid "" -"Comma separated, a model list compatible with scripts defined within firmware." -msgstr "" -"SĆ©parĆ© par des virgules, une liste de modĆØles compatible avec les scripts " -"dĆ©finis dans le firmware." - -#: ../../enterprise/views/ncm/firmwares/edit.php:133 -#: ../../enterprise/views/ncm/firmwares/list.php:76 -#: ../../enterprise/views/ncm/templates/edit.php:134 -#: ../../enterprise/views/ncm/templates/list.php:75 -#: ../../enterprise/views/ncm/models/list.php:32 -msgid "Models" -msgstr "ModĆØles" - -#: ../../enterprise/views/ncm/firmwares/edit.php:149 -msgid "Current binary file will be overwritten, are you sure?" -msgstr "Le fichier binaire actuel sera Ć©crasĆ©, ĆŖtes-vous sĆ»r?" - -#: ../../enterprise/views/ncm/firmwares/edit.php:154 -msgid "Binary file" -msgstr "Fichier binaire" - -#: ../../enterprise/views/ncm/firmwares/list.php:32 -msgid "Firmwares" -msgstr "Firmwares" - -#: ../../enterprise/views/ncm/firmwares/list.php:75 -#: ../../enterprise/views/ncm/devices/list.php:118 -#: ../../enterprise/views/ncm/models/edit.php:88 -#: ../../enterprise/views/ncm/models/list.php:72 -msgid "Vendor" -msgstr "Fournisseur" - -#: ../../enterprise/views/ncm/vendors/edit.php:89 -msgid "icon" -msgstr "icĆ“ne" - -#: ../../enterprise/views/ncm/devices/list.php:32 -#: ../../enterprise/views/ncm/templates/edit.php:42 -#: ../../enterprise/views/ncm/models/edit.php:37 -msgid "Devices" -msgstr "Dispositifs" - -#: ../../enterprise/views/ncm/devices/list.php:69 -msgid "" -"WARNING: This is a new feature and is still at an early stage. It is available " -"with limited features, use it with caution and send us your feedback to " -"improve these current capabilities." -msgstr "" -"AVERTISSEMENT : C'est une nouvelle fonctionnalitĆ© et elle est dans une Ć©tape " -"prĆ©liminaire. C'est disponible avec des fonctionnalitĆ©s limitĆ©es, utilisez-le " -"avec prĆ©caution et envoyez-nous vos commentaires pour amĆ©liorer ses capacitĆ©s " -"actuelles." - -#: ../../enterprise/views/ncm/devices/list.php:72 -msgid "" -"Network configuration manager is used to keep configurations and software " -"versions of any network device in your infrastructure under your control." -msgstr "" -"Le gestionnaire de configuration rĆ©seau est utilisĆ© pour maintenir des " -"configurations et des versions de logiciel de n'importe quel appareil rĆ©seau " -"dans votre infrastructure sous contrĆ“le." - -#: ../../enterprise/views/ncm/devices/list.php:77 -msgid "" -"To start using it, navigatenavigate to your desired agent, tab Network Config " -"Manager, and enable the ncm features,\n" -" you will be asked for the vendor and model of the device." -msgstr "" -"Pour commencer Ć  l'utiliser, naviguez ver l'agent dĆ©sirĆ©, l'onglet " -"Gestionnaire de configuration rĆ©seau et habilitez les fonctionnalitĆ©s ncm\n" -" il vous demandera de entrer le fournisseur et le modĆØle d'appareil." - -#: ../../enterprise/views/ncm/devices/list.php:84 -msgid "Define a NCM template" -msgstr "DĆ©finissez un modĆØle NCM" - -#: ../../enterprise/views/ncm/devices/list.php:87 -msgid "Configure agents to use NCM templates" -msgstr "Configurez les agents pour l'utilisation de modĆØles NCM" - -#: ../../enterprise/views/ncm/devices/list.php:119 -msgid "Model" -msgstr "ModĆØle" - -#: ../../enterprise/views/ncm/devices/list.php:121 -msgid "Last queued task" -msgstr "DerniĆØre tĆ¢che en file dā€™attente" - -#: ../../enterprise/views/ncm/devices/list.php:123 -#: ../../enterprise/include/functions_tasklist.php:158 -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:520 -#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:136 -#: ../../enterprise/godmode/alerts/alert_inventory_list.php:224 -#: ../../enterprise/godmode/policies/policy_alerts.php:354 -#: ../../godmode/massive/massive_copy_modules.php:185 -#: ../../godmode/wizards/DiscoveryTaskList.class.php:612 -#: ../../godmode/alerts/alert_list.list.php:485 -msgid "Operations" -msgstr "OpĆ©rations" - -#: ../../enterprise/views/ncm/templates/edit.php:102 -msgid "" -"Comma separated, a vendors list compatible with scripts defined within " -"template." -msgstr "" -"SĆ©parĆ©s par virgules, une liste de fournisseurs compatible avec les scripts " -"dĆ©finis dans le modĆØle." - -#: ../../enterprise/views/ncm/templates/edit.php:130 -msgid "" -"Comma separated, a model list compatible with scripts defined within template." -msgstr "" -"SĆ©parĆ©s par virgules, une liste de modĆØles compatible avec les scripts dĆ©finis " -"dans le modĆØle." - -#: ../../enterprise/views/ncm/templates/edit.php:148 -msgid "This script will be used to test devices availability" -msgstr "Le script sera utilisĆ© our vĆ©rifier la disponibilitĆ© des appareils" - -#: ../../enterprise/views/ncm/templates/edit.php:153 -msgid "Script: Test" -msgstr "Script : Test" - -#: ../../enterprise/views/ncm/templates/edit.php:176 -msgid "This script will be used to retrieve configuration from devices" -msgstr "" -"Cet script sera utilisĆ© pour collecter de la configuration Ć  partir des " -"appareils" - -#: ../../enterprise/views/ncm/templates/edit.php:181 -msgid "Script: Get configuration" -msgstr "Script : Get configuration" - -#: ../../enterprise/views/ncm/templates/edit.php:204 -msgid "" -"This script will be used to apply configuration, previously backed up, to " -"devices" -msgstr "" -"Cet script sera utilisĆ© pour appliquer les configurations, prĆ©alablement " -"sauvegardĆ©s, aux appareils" - -#: ../../enterprise/views/ncm/templates/edit.php:209 -msgid "Script: set configuration" -msgstr "Script : set configuration" - -#: ../../enterprise/views/ncm/templates/edit.php:232 -msgid "This script will be used to retrieve firmware version from devices" -msgstr "Cet script sera utilisĆ© pour collecter la version firmware des appareils" - -#: ../../enterprise/views/ncm/templates/edit.php:237 -msgid "Script: get firmware" -msgstr "Script : get firmware" - -#: ../../enterprise/views/ncm/templates/edit.php:259 -msgid "This script will be used to upgrade firmware version of the devices" -msgstr "" -"Ce script sera utilisĆ© pour mettre Ć  niveau la version du firmware des " -"appareils" - -#: ../../enterprise/views/ncm/templates/edit.php:264 -msgid "Script: set firmware" -msgstr "Script : dĆ©finir le firmware" - -#: ../../enterprise/views/ncm/templates/edit.php:286 -msgid "This script will be executed on the devices when selecting CUSTOM task" -msgstr "" -"Cet script sera exĆ©cutĆ© dans les appareils lors de la selection de la tache " -"CUSTOM" - -#: ../../enterprise/views/ncm/templates/edit.php:291 -msgid "Script: custom task" -msgstr "Script : custom task" - -#: ../../enterprise/views/ncm/templates/list.php:76 -msgid "Scripts defined" -msgstr "Scripts dĆ©finis" - -#: ../../enterprise/views/cluster/edit.php:41 -#: ../../enterprise/views/cluster/edit.php:68 -#: ../../enterprise/views/cluster/view.php:44 -#: ../../enterprise/views/cluster/view.php:63 -msgid "Cluster list" -msgstr "Liste de grappes" - -#: ../../enterprise/views/cluster/edit.php:57 -msgid "cluster " -msgstr "grappe " - -#: ../../enterprise/views/cluster/edit.php:88 -msgid "View this cluster" -msgstr "Voir le grappe" - -#: ../../enterprise/views/cluster/view.php:50 -#: ../../enterprise/views/cluster/view.php:81 -msgid "Cluster details" -msgstr "DĆ©tails du grappe" - -#: ../../enterprise/views/cluster/view.php:74 -msgid "Edit this cluster" -msgstr "Ɖditer ce grappe" - -#: ../../enterprise/views/cluster/view.php:223 -msgid "Force cluster status calculation" -msgstr "Forcer calcule d'Ć©tat du grappe" - -#: ../../enterprise/views/cluster/view.php:314 -msgid "Cluster agent" -msgstr "Agent de grappe" - -#: ../../enterprise/views/cluster/list.php:122 -msgid "New cluster" -msgstr "Nouveau grappe" - -#: ../../enterprise/operation/log/elasticsearch_interface.php:31 -#: ../../enterprise/operation/log/log_viewer.php:377 -#: ../../enterprise/operation/log/log_viewer.php:417 -#: ../../enterprise/operation/menu.php:181 -#: ../../enterprise/meta/general/main_menu.php:247 -#: ../../enterprise/meta/general/main_header.php:143 -#: ../../enterprise/meta/include/functions_meta.php:293 -#: ../../enterprise/meta/advanced/metasetup.php:80 -#: ../../enterprise/meta/advanced/metasetup.php:223 -msgid "Log viewer" -msgstr "Visualiseur de journaux" - -#: ../../enterprise/operation/log/elasticsearch_interface.php:39 -#: ../../enterprise/operation/log/log_viewer.php:391 -#: ../../enterprise/operation/menu.php:211 -msgid "Elasticsearch Interface" -msgstr "Interface Elasticsearch" - -#: ../../enterprise/operation/log/elasticsearch_interface.php:49 -msgid "" -"This is a view to interface with Elasticsearch directly from WEB console. \n" -"Please note that you can damage your Elasticsearch if you don`t know exactly " -"what are you are doing. \n" -"This view is intended to be used only by users with a knowledge of " -"Elasticsearch" -msgstr "" -"Il sā€™agit dā€™une vue pour sā€™interfacer avec Elasticsearch directement Ć  partir " -"de la console WEB \n" -"Veuillez noter que vous pouvez endommager votre Elasticsearch si vous ne savez " -"pas exactement ce que vous faites. \n" -"Cette vue est destinĆ©e Ć  ĆŖtre utilisĆ©e uniquement par les utilisateurs ayant " -"une connaissance dā€™Elasticsearch" - -#: ../../enterprise/operation/log/log_viewer.php:405 -#: ../../enterprise/operation/log/log_viewer.php:424 -#: ../../enterprise/operation/log/log_viewer.php:435 -msgid "Log sources" -msgstr "Sources de journaux" - -#: ../../enterprise/operation/log/log_viewer.php:477 -#: ../../enterprise/godmode/reporting/graph_template_item_editor.php:189 -#: ../../enterprise/godmode/reporting/graph_template_item_editor.php:244 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3504 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3579 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3735 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3806 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:4240 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:4385 -msgid "Exact match" -msgstr "Concordance exacte" - -#: ../../enterprise/operation/log/log_viewer.php:478 -msgid "All words" -msgstr "Tous les mots" - -#: ../../enterprise/operation/log/log_viewer.php:479 -msgid "Any word" -msgstr "N'importe quel mot" - -#: ../../enterprise/operation/log/log_viewer.php:482 -msgid "Search mode" -msgstr "Mode recherche" - -#: ../../enterprise/operation/log/log_viewer.php:529 -msgid "Full context" -msgstr "Contexte complet" - -#: ../../enterprise/operation/log/log_viewer.php:667 -#: ../../enterprise/operation/log/log_viewer.php:668 -msgid "Edit sources" -msgstr "Modifier les sources" - -#: ../../enterprise/operation/log/log_viewer.php:711 -msgid "Show log entries" -msgstr "Afficher les entrĆ©es de journal" - -#: ../../enterprise/operation/log/log_viewer.php:712 -msgid "Graph log results" -msgstr "RĆ©sultats du journal graphique" - -#: ../../enterprise/operation/log/log_viewer.php:714 -msgid "Display mode" -msgstr "Mode d'affichage" - -#: ../../enterprise/operation/log/log_viewer.php:727 -msgid "Use capture model" -msgstr "Utiliser le modĆØle de capture" - -#: ../../enterprise/operation/log/log_viewer.php:757 -msgid "Create new model" -msgstr "CrĆ©ez un nouveau modĆØle" - -#: ../../enterprise/operation/log/log_viewer.php:761 -#: ../../godmode/reporting/graph_builder.main.php:220 -msgid "Horizontal bars" -msgstr "Barres horizontales" - -#: ../../enterprise/operation/log/log_viewer.php:762 -#: ../../godmode/reporting/graph_builder.main.php:221 -msgid "Vertical bars" -msgstr "Barres verticales" - -#: ../../enterprise/operation/log/log_viewer.php:764 -msgid "Graph type" -msgstr "Type de graphique" - -#: ../../enterprise/operation/log/log_viewer.php:779 -msgid "Advanced options " -msgstr "Options avancĆ©es" - -#: ../../enterprise/operation/log/log_viewer.php:899 -msgid "" -"The maximum limit of rows has been exceeded. Please enter an email to send the " -"csv file" -msgstr "" -"La limite maximale de lignes a Ć©tĆ© dĆ©passĆ©e. Veuillez entrer un e-mail pour " -"envoyer le fichier csv" - -#: ../../enterprise/operation/log/log_viewer.php:901 -msgid "e-mail address" -msgstr "adresse e-mail" - -#: ../../enterprise/operation/log/log_viewer.php:904 -msgid "" -"WARNING: If your email size exceeds your mail attachment size limit, the file " -"will be saved in the local attachment folder." -msgstr "" -"AVERTISSEMENT : Si la taille de votre e-mail dĆ©passe la limite de taille de " -"votre attachement, le fichier sera enregistrĆ© dans le dossier des attachements " -"local." - -#: ../../enterprise/operation/log/log_viewer.php:1022 -msgid "The start date cannot be greater than the end date" -msgstr "La date de dĆ©but ne peut pas ĆŖtre supĆ©rieure Ć  la date de fin." - -#: ../../enterprise/operation/log/log_viewer.php:1450 -msgid "Add new capture model" -msgstr "Ajouter un nouveau modĆØle de capture" - -#: ../../enterprise/operation/log/log_viewer.php:1453 -msgid "Edit capture model" -msgstr "Modifier le modĆØle de capture" - -#: ../../enterprise/operation/log/log_viewer.php:1536 -msgid "Error create new model" -msgstr "Erreur lors de la crĆ©ation dā€™un nouveau modĆØle" - -#: ../../enterprise/operation/log/log_viewer.php:1563 -msgid "Error delete model" -msgstr "Erreur en supprimant le modĆØle" - -#: ../../enterprise/operation/log/log_viewer.php:1609 -msgid "Error update model" -msgstr "Erreur lors de la mise Ć  jour du modĆØle" - -#: ../../enterprise/operation/services/services.treeview_services.php:111 -#: ../../enterprise/operation/services/services.list.php:284 -#: ../../enterprise/operation/services/services.table_services.php:206 -msgid "Show only favourites" -msgstr "Afficher uniquement les favoris" - -#: ../../enterprise/operation/services/services.treeview_services.php:151 -msgid "No favourite services defined." -msgstr "Aucun service favori dĆ©fini." - -#: ../../enterprise/operation/services/services.treeview_services.php:153 -#: ../../enterprise/operation/services/services.list.php:447 -#: ../../enterprise/operation/services/services.list.php:456 -#: ../../enterprise/operation/services/services.table_services.php:359 -#: ../../enterprise/operation/services/services.table_services.php:365 -msgid "No services defined." -msgstr "Aucun service dĆ©fini" - -#: ../../enterprise/operation/services/services.treeview_services.php:181 -#: ../../enterprise/operation/services/services.list.php:719 -#: ../../enterprise/operation/services/services.table_services.php:450 -msgid "Create Service" -msgstr "CrĆ©er un service" - -#: ../../enterprise/operation/services/services.treeview_services.php:247 -#: ../../godmode/groups/group_list.php:1035 -msgid "Found groups" -msgstr "Groupes trouvĆ©s" - -#: ../../enterprise/operation/services/services.service.php:55 -#: ../../enterprise/operation/services/services.service_map.php:62 -#: ../../enterprise/godmode/services/services.service.php:309 -#: ../../enterprise/godmode/services/services.service.php:354 -msgid "Not found" -msgstr "Introuvable" - -#: ../../enterprise/operation/services/services.service.php:90 -msgid "No Services" -msgstr "Aucun service" - -#: ../../enterprise/operation/services/services.service.php:203 -#: ../../enterprise/operation/services/services.list.php:586 -msgid "SLA graph" -msgstr "Graphique SLA" - -#: ../../enterprise/operation/services/services.service.php:227 -msgid "List of elements" -msgstr "Liste des Ć©lĆ©ments" - -#: ../../enterprise/operation/services/services.list.php:62 -msgid "List of services" -msgstr "Liste des services" - -#: ../../enterprise/operation/services/services.list.php:100 -msgid "Services successfully deleted" -msgstr "Services supprimĆ©s correctement" - -#: ../../enterprise/operation/services/services.list.php:101 -#, php-format -msgid "Error while deleting services: %s" -msgstr "Erreur lors de la suppression de services : %s" - -#: ../../enterprise/operation/services/services.list.php:104 -#: ../../enterprise/include/functions_visual_map.php:683 -msgid "No services selected" -msgstr "Aucun service sĆ©lectionnĆ©" - -#: ../../enterprise/operation/services/services.list.php:118 -msgid "Service deleted successfully" -msgstr "Service supprimĆ© correctement" - -#: ../../enterprise/operation/services/services.list.php:119 -#, php-format -msgid "Error deleting service %s" -msgstr "Erreur lors de la suppression du %s de service" - -#: ../../enterprise/operation/services/services.list.php:127 -msgid "Service forced successfully" -msgstr "Service forcĆ© correctement" - -#: ../../enterprise/operation/services/services.list.php:128 -msgid "Error service forced" -msgstr "Erreur ; service non forcĆ©" - -#: ../../enterprise/operation/services/services.list.php:276 -#: ../../enterprise/operation/services/services.table_services.php:198 -#: ../../enterprise/godmode/services/services.service.php:659 -#: ../../enterprise/godmode/massive/massive_create_services.php:699 -msgid "Smart" -msgstr "Smart" - -#: ../../enterprise/operation/services/services.list.php:278 -#: ../../enterprise/operation/services/services.table_services.php:200 -#: ../../enterprise/godmode/servers/HA_cluster.php:175 -#: ../../enterprise/godmode/services/services.service.php:651 -#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:880 -#: ../../enterprise/godmode/massive/massive_create_services.php:690 -#: ../../godmode/massive/massive_edit_modules.php:933 -#: ../../godmode/alerts/alert_view.php:407 -msgid "Mode" -msgstr "Mode" - -#: ../../enterprise/operation/services/services.list.php:298 -#: ../../enterprise/operation/services/services.table_services.php:220 -msgid "Show only root services" -msgstr "Afficher uniquement les services racine" - -#: ../../enterprise/operation/services/services.list.php:590 -msgid "Status graph" -msgstr "Graphique dā€™Ć©tat" - -#: ../../enterprise/operation/services/services.service_map.php:116 -msgid "Show tree" -msgstr "Afficher lā€™arbre" - -#: ../../enterprise/operation/services/services.service_map.php:130 -msgid "Show sunburst" -msgstr "Afficher sunburst" - -#: ../../enterprise/operation/services/services.table_services.php:45 -#: ../../godmode/groups/group_list.php:355 -msgid "Table view" -msgstr "Vue de la table" - -#: ../../enterprise/operation/services/services.php:90 -#: ../../enterprise/operation/services/services.php:182 -#: ../../enterprise/godmode/services/services.elements.php:697 -#: ../../enterprise/godmode/services/services.service.php:396 -msgid "Services list" -msgstr "Liste de services" - -#: ../../enterprise/operation/services/services.php:105 -#: ../../enterprise/godmode/services/services.elements.php:711 -#: ../../enterprise/godmode/services/services.service.php:410 -msgid "Config Service" -msgstr "Service de configuration" - -#: ../../enterprise/operation/services/services.php:123 -#: ../../enterprise/godmode/services/services.elements.php:728 -#: ../../enterprise/godmode/services/services.service.php:427 -msgid "Config Elements" -msgstr "ƉlĆ©ments de configuration" - -#: ../../enterprise/operation/services/services.php:136 -#: ../../enterprise/godmode/services/services.elements.php:740 -#: ../../enterprise/godmode/services/services.service.php:439 -msgid "Bulk service elements operations" -msgstr "OpĆ©rations dā€™Ć©lĆ©ments de service en vrac" - -#: ../../enterprise/operation/services/services.php:152 -#: ../../enterprise/godmode/services/services.elements.php:755 -#: ../../enterprise/godmode/services/services.service.php:454 -msgid "View Service" -msgstr "Afficher services" - -#: ../../enterprise/operation/services/services.php:197 -msgid "Service table view" -msgstr "Vue de la table de service" - -#: ../../enterprise/operation/services/services.php:212 -msgid "Service tree view" -msgstr "Arborescence des services" - -#: ../../enterprise/operation/services/services.php:229 -msgid "Bulk creation" -msgstr "CrĆ©ation en bloc" - -#: ../../enterprise/operation/reporting/custom_reporting.php:14 -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:503 -msgid "PDF" -msgstr "PDF" - -#: ../../enterprise/operation/reporting/custom_reporting.php:16 -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:504 -msgid "JSON" -msgstr "JSON" - -#: ../../enterprise/operation/reporting/custom_reporting.php:72 -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:589 -msgid "Export to JSON" -msgstr "Exporter au format JSON" - -#: ../../enterprise/operation/reporting/custom_reporting.php:90 -#: ../../enterprise/operation/reporting/custom_reporting.php:164 -#: ../../enterprise/include/functions_reporting.php:8218 -msgid "Send by email" -msgstr "Envoyer par courriel" - -#: ../../enterprise/operation/reporting/custom_reporting.php:101 -#: ../../enterprise/include/functions_reporting.php:8150 -msgid "ID Report" -msgstr "Rapport ID" - -#: ../../enterprise/operation/reporting/custom_reporting.php:124 -#: ../../enterprise/include/functions_cron.php:186 -#: ../../enterprise/include/functions_cron.php:236 -#: ../../enterprise/include/functions_reporting.php:8178 -msgid "Send to emails (separated by comma)" -msgstr "Envoyer aux courriels (sĆ©parĆ©s par des virgules)" - -#: ../../enterprise/operation/reporting/custom_reporting.php:144 -#: ../../enterprise/operation/reporting/custom_reporting.php:158 -#: ../../enterprise/include/functions_cron.php:800 -#: ../../enterprise/include/functions_cron.php:833 -#: ../../enterprise/include/functions_reporting.php:8198 -#: ../../enterprise/include/functions_reporting.php:8212 -msgid "This is an optional field" -msgstr "Il y a un champ optionnel" - -#: ../../enterprise/operation/reporting/custom_reporting.php:200 -#: ../../enterprise/include/functions_reporting.php:8306 -msgid "Send by email " -msgstr "Envoyer par courriel " - -#: ../../enterprise/operation/menu.php:32 -msgid "Cluster View" -msgstr "Vue de grappe" - -#: ../../enterprise/operation/menu.php:45 -#: ../../enterprise/godmode/reporting/aws_view.php:106 -#: ../../enterprise/godmode/reporting/aws_view.php:139 -msgid "AWS View" -msgstr "Vue AWS" - -#: ../../enterprise/operation/menu.php:143 -msgid "Transactional map" -msgstr "Carte transactionnelle" - -#: ../../enterprise/operation/menu.php:160 -#: ../../enterprise/godmode/reporting/mysql_builder.php:79 -#: ../../enterprise/godmode/reporting/mysql_builder.php:206 -msgid "Custom SQL" -msgstr "SQL personnalisĆ©" - -#: ../../enterprise/operation/menu.php:170 -#: ../../enterprise/operation/snmpconsole/snmp_view.php:82 -#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor_form.php:24 -#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:44 -msgid "SNMP trap editor" -msgstr "Ɖditeur de dĆ©routements SNMP" - -#: ../../enterprise/operation/menu.php:191 -#: ../../enterprise/operation/agentes/tag_view.php:41 -msgid "Tag view" -msgstr "Vue des Ć©tiquettes" - -#: ../../enterprise/operation/menu.php:200 -#: ../../enterprise/include/class/ManageBackups.class.php:121 -msgid "DB Backup Manager" -msgstr "Backup Manager de base de donĆ©es" - -#: ../../enterprise/operation/agentes/policy_view.php:38 -msgid "This agent has no policy assigned" -msgstr "Cet agent n'a pas de politique attribuĆ©e" - -#: ../../enterprise/operation/agentes/policy_view.php:58 -#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:38 -#: ../../enterprise/godmode/massive/massive_delete_alerts_policy.php:38 -#: ../../enterprise/godmode/massive/massive_edit_tags_policy.php:40 -#: ../../enterprise/godmode/massive/massive_add_alerts_policy.php:38 -#: ../../enterprise/godmode/massive/massive_add_modules_policy.php:40 -#: ../../enterprise/godmode/massive/massive_tags_edit_policy.php:40 -#: ../../enterprise/godmode/policies/policy_agents.php:326 -#: ../../enterprise/godmode/policies/policy_queue.php:218 -#: ../../enterprise/godmode/policies/policy_linking.php:117 -#: ../../enterprise/godmode/policies/policy_modules.php:476 -#: ../../enterprise/godmode/policies/policies.php:268 -#: ../../enterprise/godmode/policies/policy_external_alerts.php:309 -#: ../../enterprise/godmode/policies/configure_policy.php:81 -#: ../../enterprise/godmode/policies/policy_inventory_modules.php:91 -#: ../../enterprise/godmode/policies/policy_alerts.php:64 -#: ../../enterprise/godmode/policies/policy_collections.php:50 -#: ../../enterprise/godmode/policies/policy_plugins.php:38 -#, php-format -msgid "" -"This node is configured with centralized mode. All policies information is " -"read only. Go to %s to manage it." -msgstr "" -"Ce nœud est configurĆ© en mode centralisĆ©. Toutes les informations sur les " -"politiques sont en lecture seule. Allez dans %s pour le gĆ©rer." - -#: ../../enterprise/operation/agentes/policy_view.php:69 -#: ../../enterprise/godmode/policies/policy_agents.php:856 -#: ../../enterprise/godmode/policies/policy_agents.php:1371 -msgid "Last application" -msgstr "DerniĆØre application" - -#: ../../enterprise/operation/agentes/policy_view.php:83 -#: ../../enterprise/godmode/policies/policy_agents.php:1102 -#: ../../enterprise/godmode/policies/policy_agents.php:1427 -msgid "Policy applied" -msgstr "Politique appliquĆ©e" - -#: ../../enterprise/operation/agentes/policy_view.php:89 -msgid "Policy outdate" -msgstr "Politique obsolĆØte" - -#: ../../enterprise/operation/agentes/policy_view.php:159 -#: ../../enterprise/operation/agentes/policy_view.php:169 -msgid "Toggle the collection table" -msgstr "Basculer la table de la collection" - -#: ../../enterprise/operation/agentes/policy_view.php:164 -#: ../../enterprise/operation/agentes/collection_view.php:76 -#: ../../enterprise/godmode/agentes/collection_manager.php:207 -msgid "Dir" -msgstr "RĆ©pertoire" - -#: ../../enterprise/operation/agentes/policy_view.php:165 -msgid "Descripttion" -msgstr "Description" - -#: ../../enterprise/operation/agentes/policy_view.php:173 -msgid "Show Collection" -msgstr "Afficher la collection" - -#: ../../enterprise/operation/agentes/policy_view.php:195 -#: ../../enterprise/operation/agentes/policy_view.php:196 -#: ../../enterprise/operation/agentes/collection_view.php:108 -#: ../../enterprise/godmode/agentes/collection_manager.php:129 -#: ../../enterprise/godmode/agentes/collection_manager.php:130 -#: ../../enterprise/godmode/agentes/collection_manager.php:254 -msgid "Show files" -msgstr "Afficher les fichiers" - -#: ../../enterprise/operation/agentes/policy_view.php:217 -#: ../../enterprise/operation/agentes/policy_view.php:218 -#: ../../enterprise/operation/agentes/collection_view.php:128 -#: ../../enterprise/operation/agentes/collection_view.php:129 -#: ../../enterprise/godmode/policies/policy_collections.php:224 -#: ../../enterprise/godmode/policies/policy_collections.php:296 -msgid "Outdate" -msgstr "ObsolĆØte" - -#: ../../enterprise/operation/agentes/policy_view.php:253 -#: ../../enterprise/operation/agentes/policy_view.php:265 -msgid "Toggle the alert table" -msgstr "Basculer la table alerte" - -#: ../../enterprise/operation/agentes/policy_view.php:269 -msgid "Show Alert" -msgstr "Afficher l'alerte" - -#: ../../enterprise/operation/agentes/policy_view.php:390 -#: ../../enterprise/operation/agentes/policy_view.php:402 -msgid "Toggle the module table" -msgstr "Basculer la table du module" - -#: ../../enterprise/operation/agentes/policy_view.php:394 -msgid "Relationship" -msgstr "Relation" - -#: ../../enterprise/operation/agentes/policy_view.php:394 -#: ../../enterprise/godmode/policies/policy_agents.php:849 -msgid "R." -msgstr "R." - -#: ../../enterprise/operation/agentes/policy_view.php:406 -msgid "Show Modules" -msgstr "Afficher les modules" - -#: ../../enterprise/operation/agentes/policy_view.php:425 -msgid "(Un-adopted)" -msgstr "(Non adoptĆ©s)" - -#: ../../enterprise/operation/agentes/policy_view.php:428 -msgid "(Adopted)" -msgstr "(AdoptĆ©s)" - -#: ../../enterprise/operation/agentes/policy_view.php:433 -msgid "(Un-adopted) (Unlinked)" -msgstr "(Non adoptĆ©s) (Non liĆ©s)" - -#: ../../enterprise/operation/agentes/policy_view.php:436 -msgid "(Adopted) (Unlinked)" -msgstr "(AdoptĆ©s) (Non liĆ©s)" - -#: ../../enterprise/operation/agentes/policy_view.php:457 -#: ../../godmode/agentes/module_manager.php:1086 -msgid "Non initialized module" -msgstr "Module non initialisĆ©" - -#: ../../enterprise/operation/agentes/manage_transmap_creation_phases_data.php:34 -#: ../../enterprise/operation/agentes/manage_transmap_creation.php:115 -#: ../../enterprise/operation/agentes/manage_transmap_creation.php:332 -#: ../../enterprise/operation/agentes/manage_transmap_creation.php:417 -#: ../../enterprise/operation/agentes/manage_transmap.php:56 -msgid "Transactions List" -msgstr "Liste des transactions" - -#: ../../enterprise/operation/agentes/manage_transmap_creation_phases_data.php:42 -#: ../../enterprise/operation/agentes/manage_transmap_creation.php:139 -#: ../../enterprise/operation/agentes/manage_transmap_creation.php:441 -#: ../../enterprise/operation/agentes/manage_transmap.php:96 -msgid "Edit Transaction" -msgstr "Modifier la transaction" - -#: ../../enterprise/operation/agentes/manage_transmap_creation_phases_data.php:50 -msgid "Go back to phases list" -msgstr "Revenir Ć  la liste des phases" - -#: ../../enterprise/operation/agentes/manage_transmap_creation_phases_data.php:56 -msgid "Transactional Map - Phase - " -msgstr "Carte transactionnelle - Phase - " - -#: ../../enterprise/operation/agentes/manage_transmap_creation_phases_data.php:74 -#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:404 -#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:431 -msgid "Launch script" -msgstr "Lacer script" - -#: ../../enterprise/operation/agentes/manage_transmap_creation_phases_data.php:77 -#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:1057 -#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:500 -#: ../../godmode/massive/massive_edit_modules.php:1135 -#: ../../godmode/agentes/module_manager_editor_common.php:1138 -msgid "Retries" -msgstr "Tentatives" - -#: ../../enterprise/operation/agentes/manage_transmap_creation_phases_data.php:80 -#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:1044 -#: ../../godmode/massive/massive_edit_modules.php:1122 -#: ../../godmode/agentes/module_manager_editor_common.php:1135 -msgid "Timeout" -msgstr "Interruption de session" - -#: ../../enterprise/operation/agentes/collection_view.php:60 -#: ../../enterprise/godmode/agentes/collection_manager.php:37 -msgid "This agent have not a remote configuration, please set it." -msgstr "Cet agent n'a pas de configuration Ć  distance. Veuillez la dĆ©finir." - -#: ../../enterprise/operation/agentes/collection_view.php:66 -msgid "No collection assigned to this agent" -msgstr "Aucune collection attribuĆ©e Ć  cet agent" - -#: ../../enterprise/operation/agentes/collection_view.php:139 -#: ../../enterprise/operation/agentes/collection_view.php:140 -#: ../../enterprise/meta/advanced/collections.data.php:383 -#: ../../enterprise/meta/advanced/collections.data.php:384 -#: ../../enterprise/godmode/agentes/collection_manager.php:175 -#: ../../enterprise/godmode/agentes/collection_manager.php:176 -#: ../../enterprise/godmode/agentes/collection_manager.php:290 -#: ../../enterprise/godmode/agentes/collection_manager.php:291 -#: ../../enterprise/godmode/agentes/collections.data.php:477 -#: ../../enterprise/godmode/agentes/collections.data.php:478 -msgid "The collection directory does not exist." -msgstr "Le rĆ©pertoire de la collection n'existe pas." - -#: ../../enterprise/operation/agentes/url_route_analyzer.php:39 -msgid "No agent selected" -msgstr "Aucun agent sĆ©lectionnĆ©" - -#: ../../enterprise/operation/agentes/url_route_analyzer.php:42 -msgid "Route not found" -msgstr "ItinĆ©raire introuvable" - -#: ../../enterprise/operation/agentes/wux_console_view.php:224 -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 -msgid "No WUX transactions found." -msgstr "Aucune transaction WUX trouvĆ©e." - -#: ../../enterprise/operation/agentes/wux_console_view.php:261 -#: ../../enterprise/operation/agentes/ux_console_view.php:133 -msgid "Transaction" -msgstr "Transaction" - -#: ../../enterprise/operation/agentes/wux_console_view.php:286 -#: ../../enterprise/operation/agentes/ux_console_view.php:142 -msgid "Show transaction" -msgstr "Afficher la transaction" - -#: ../../enterprise/operation/agentes/wux_console_view.php:332 -#: ../../enterprise/operation/agentes/ux_console_view.php:266 -msgid "Global results" -msgstr "RĆ©sultats globaux" - -#: ../../enterprise/operation/agentes/wux_console_view.php:357 -msgid "Failed: " -msgstr "RatĆ© : " - -#: ../../enterprise/operation/agentes/wux_console_view.php:378 -msgid "Success: " -msgstr "SuccĆØs : " - -#: ../../enterprise/operation/agentes/wux_console_view.php:384 -msgid "Total transaction time: " -msgstr "Temps total de transaction : " - -#: ../../enterprise/operation/agentes/wux_console_view.php:398 -#, 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 -msgid "View all stats" -msgstr "Voir toutes les statistiques" - -#: ../../enterprise/operation/agentes/wux_console_view.php:570 -#: ../../enterprise/operation/agentes/ux_console_view.php:332 -msgid "Transaction history" -msgstr "Historique des transactions" - -#: ../../enterprise/operation/agentes/wux_console_view.php:611 -msgid "Invalid transaction." -msgstr "Transaction invalide." - -#: ../../enterprise/operation/agentes/transactional_map.php:61 -msgid "List of transactions" -msgstr "Liste des transactions" - -#: ../../enterprise/operation/agentes/transactional_map.php:74 -#: ../../enterprise/operation/agentes/manage_transmap_creation.php:173 -#: ../../enterprise/operation/agentes/manage_transmap_creation.php:353 -#: ../../enterprise/operation/agentes/manage_transmap_creation.php:475 -#: ../../enterprise/operation/agentes/manage_transmap.php:176 -msgid "Transactional Map" -msgstr "Carte transactionnelle" - -#: ../../enterprise/operation/agentes/transactional_map.php:149 -msgid "Name can't be empty" -msgstr "Le nom ne peut pas ĆŖtre vide" - -#: ../../enterprise/operation/agentes/transactional_map.php:206 -msgid "Transaction name" -msgstr "Nom de la transaction" - -#: ../../enterprise/operation/agentes/transactional_map.php:209 -msgid "Running status" -msgstr "Ɖtat dā€™exĆ©cution" - -#: ../../enterprise/operation/agentes/transactional_map.php:211 -msgid "Time spent" -msgstr "Temps dĆ©passĆ©" - -#: ../../enterprise/operation/agentes/transactional_map.php:254 -msgid "Stopped" -msgstr "ArrĆŖtĆ©" - -#: ../../enterprise/operation/agentes/transactional_map.php:260 -msgid "Starting" -msgstr "DĆ©marrant" - -#: ../../enterprise/operation/agentes/transactional_map.php:260 -msgid "Stopping" -msgstr "ArrĆŖt en cours" - -#: ../../enterprise/operation/agentes/transactional_map.php:265 -#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:554 -#: ../../godmode/agentes/planned_downtime.list.php:616 -#: ../../godmode/agentes/planned_downtime.list.php:688 -msgid "Running" -msgstr "En cours" - -#: ../../enterprise/operation/agentes/transactional_map.php:439 -msgid "Edit phases" -msgstr "Modifier les phases" - -#: ../../enterprise/operation/agentes/transactional_map.php:461 -msgid "Go to `Status` module" -msgstr "Aller au module ā€˜Ć‰tatā€™" - -#: ../../enterprise/operation/agentes/transactional_map.php:492 -msgid "Error in phases section" -msgstr "Erreur dans la section des phases" - -#: ../../enterprise/operation/agentes/transactional_map.php:512 -#: ../../enterprise/operation/agentes/manage_transmap_creation.php:340 -msgid "Create Transaction" -msgstr "CrĆ©er une transaction" - -#: ../../enterprise/operation/agentes/manage_transmap_creation.php:63 -msgid "Please, reset the transaction" -msgstr "Veuillez rĆ©initialiser la transaction" - -#: ../../enterprise/operation/agentes/manage_transmap_creation.php:102 -msgid "Successfully data updated" -msgstr "Mise Ć  jour des donnĆ©es rĆ©ussie" - -#: ../../enterprise/operation/agentes/manage_transmap_creation.php:103 -msgid "Could not be data updated" -msgstr "Impossible de mettre Ć  jour les donnĆ©es" - -#: ../../enterprise/operation/agentes/manage_transmap_creation.php:127 -#: ../../enterprise/operation/agentes/manage_transmap_creation.php:429 -#: ../../enterprise/operation/agentes/manage_transmap.php:84 -msgid "Edit main data" -msgstr "Modifier les donnĆ©es principales" - -#: ../../enterprise/operation/agentes/manage_transmap_creation.php:152 -#: ../../enterprise/operation/agentes/manage_transmap_creation.php:454 -#: ../../enterprise/operation/agentes/manage_transmap.php:109 -msgid "View Transaction" -msgstr "Voir la transaction" - -#: ../../enterprise/operation/agentes/manage_transmap_creation.php:160 -msgid "Create Phase" -msgstr "CrĆ©er une phase" - -#: ../../enterprise/operation/agentes/manage_transmap_creation.php:185 -msgid "Index" -msgstr "Index" - -#: ../../enterprise/operation/agentes/manage_transmap_creation.php:188 -msgid "Dependencies" -msgstr "DĆ©pendances" - -#: ../../enterprise/operation/agentes/manage_transmap_creation.php:189 -msgid "Enables" -msgstr "Active" - -#: ../../enterprise/operation/agentes/manage_transmap_creation.php:219 -#: ../../enterprise/include/ajax/transactional.ajax.php:174 -msgid "The phase does not have a defined script" -msgstr "Cet Ć©tape n'a pas un script dĆ©fini" - -#: ../../enterprise/operation/agentes/manage_transmap_creation.php:254 -msgid "Not valid dependencies field" -msgstr "Champ de DĆ©pendances non valides" - -#: ../../enterprise/operation/agentes/manage_transmap_creation.php:260 -msgid "Not valid enables field" -msgstr "Champ Active non valide" - -#: ../../enterprise/operation/agentes/manage_transmap_creation.php:275 -#: ../../enterprise/include/ajax/transactional.ajax.php:211 -msgid "Edit Data" -msgstr "Modifier les donnĆ©es" - -#: ../../enterprise/operation/agentes/manage_transmap_creation.php:367 -#: ../../enterprise/operation/agentes/manage_transmap_creation.php:493 -msgid "Loop interval" -msgstr "Intervalle de boucle" - -#: ../../enterprise/operation/agentes/manage_transmap_creation.php:462 -msgid "Transactional Map - Edit Transaction" -msgstr "Carte transactionnelle - Modifier la transaction" - -#: ../../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/agent_inventory.diff_view.php:44 -msgid "Unsucessful get module inventory data." -msgstr "Impossible de rĆ©cupĆ©rer les donnĆ©es du module d'inventaire" - -#: ../../enterprise/operation/agentes/agent_inventory.diff_view.php:173 -#: ../../enterprise/operation/agentes/agent_inventory.diff_view.php:176 -#: ../../mobile/operation/modules.php:799 ../../mobile/operation/tactical.php:239 -#: ../../mobile/operation/events.php:871 -#: ../../mobile/operation/module_graph.php:477 -#: ../../mobile/operation/agents.php:463 -#: ../../godmode/reporting/visual_console_builder.wizard.php:538 -msgid "Loading..." -msgstr "Chargement en cours..." - -#: ../../enterprise/operation/agentes/manage_transmap.php:153 -msgid "Return to windowed mode" -msgstr "Retour en mode fenĆŖtrĆ©" - -#: ../../enterprise/operation/agentes/manage_transmap.php:182 -msgid "Transaction not found" -msgstr "Transaction non trouvĆ©e" - -#: ../../enterprise/operation/agentes/manage_transmap.php:185 -msgid "Master lock file not found (No data to show)" -msgstr "Fichier de verrouillage principal introuvable (aucune donnĆ©e Ć  afficher)" - -#: ../../enterprise/operation/agentes/manage_transmap.php:188 -msgid "Transaction is stopped" -msgstr "La transaction est arrĆŖtĆ©e" - -#: ../../enterprise/operation/agentes/manage_transmap.php:191 -msgid "Error, please check the transaction phases" -msgstr "Erreur, veuillez vĆ©rifier les phases de transaction" - -#: ../../enterprise/operation/agentes/ux_console_view.php:43 -msgid "No ux transaction selected." -msgstr "Aucune transaction ux sĆ©lectionnĆ©e." - -#: ../../enterprise/operation/agentes/ux_console_view.php:124 -msgid "No ux transactions found." -msgstr "Aucune transaction ux trouvĆ©e." - -#: ../../enterprise/operation/agentes/ux_console_view.php:168 -msgid "Execution results for transaction " -msgstr "RĆ©sultats dā€™exĆ©cution de la transaction " - -#: ../../enterprise/operation/agentes/ver_agente.php:215 -#: ../../enterprise/include/functions_groups.php:81 -#: ../../enterprise/meta/advanced/collections.php:341 -#: ../../enterprise/godmode/agentes/collections.php:379 -#: ../../godmode/agentes/configurar_agente.php:702 -msgid "Collection" -msgstr "Collection" - -#: ../../enterprise/operation/agentes/ver_agente.php:258 -msgid "URL Route Analyzer" -msgstr "Analyseur dā€™itinĆ©raire dā€™URL" - -#: ../../enterprise/operation/agentes/ver_agente.php:274 -msgid "UX Console" -msgstr "Console UX" - -#: ../../enterprise/operation/agentes/ver_agente.php:290 -msgid "WUX Console" -msgstr "Console WUX" - -#: ../../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:2078 -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/include/functions_cron.php:178 -#: ../../enterprise/include/functions_cron.php:256 -#: ../../enterprise/include/functions_cron.php:331 -#: ../../enterprise/include/functions_cron.php:375 -msgid "Report to build" -msgstr "Rapport Ć  construire" - -#: ../../enterprise/include/functions_cron.php:199 -#: ../../enterprise/include/functions_cron.php:249 -#: ../../enterprise/include/functions_cron.php:275 -msgid "Report Type" -msgstr "Type de rapport" - -#: ../../enterprise/include/functions_cron.php:206 -#: ../../enterprise/include/functions_cron.php:353 -msgid "Template to build" -msgstr "ModĆØle Ć  construire" - -#: ../../enterprise/include/functions_cron.php:224 -msgid "Regexp agent filter" -msgstr "Filtre d'agents Regexp" - -#: ../../enterprise/include/functions_cron.php:264 -#: ../../enterprise/include/functions_cron.php:286 -#: ../../enterprise/include/functions_cron.php:376 -msgid "Save to disk into path" -msgstr "Enregistrer le disque sur le chemin" - -#: ../../enterprise/include/functions_cron.php:265 -msgid "The apache user should have read-write access on this folder. Ex: " -msgstr "" -"L'utilisateur apache devrait avoir d'accĆØs de lecture-Ć©criture dans ce " -"fichier. Ex : " - -#: ../../enterprise/include/functions_cron.php:271 -msgid "File name prefix" -msgstr "PrĆ©fixe du nom du fichier" - -#: ../../enterprise/include/functions_cron.php:291 -msgid "Active backups" -msgstr "Sauvegardes actives" - -#: ../../enterprise/include/functions_cron.php:306 -#: ../../enterprise/include/functions_cron.php:332 -#: ../../enterprise/include/functions_cron.php:354 -msgid "Send to email" -msgstr "Envoyer au courriel" - -#: ../../enterprise/include/functions_cron.php:315 -msgid "Function name" -msgstr "Nom de la fonction" - -#: ../../enterprise/include/functions_cron.php:333 -msgid "Send custom report by email" -msgstr "Envoyer un rapport personnalisĆ© par courriel" - -#: ../../enterprise/include/functions_cron.php:355 -msgid "Send custom report (from template) by email" -msgstr "Envoyer un rapport personnalisĆ© (Ć  partir du modĆØle) par courriel" - -#: ../../enterprise/include/functions_cron.php:377 -msgid "Save custom report to disk" -msgstr "Enregistrer un rapport personnalisĆ© sur le disque" - -#: ../../enterprise/include/functions_cron.php:397 -msgid "Backup Pandora database" -msgstr "Sauvegarde de la base de donnĆ©es de Pandora FMS" - -#: ../../enterprise/include/functions_cron.php:417 -msgid "Execute custom script" -msgstr "ExĆ©cuter le script personnalisĆ©" - -#: ../../enterprise/include/functions_cron.php:499 -msgid "Not scheduled" -msgstr "Non planifiĆ©" - -#: ../../enterprise/include/functions_cron.php:502 -#: ../../enterprise/include/lib/NetworkManager.php:182 -#: ../../godmode/agentes/module_manager_editor_prediction.php:181 -#: ../../godmode/agentes/planned_downtime.editor.php:649 -msgid "Weekly" -msgstr "Hebdomadaire" - -#: ../../enterprise/include/functions_cron.php:503 -#: ../../godmode/agentes/module_manager_editor_prediction.php:182 -#: ../../godmode/agentes/planned_downtime.editor.php:650 -msgid "Monthly" -msgstr "Mensuel" - -#: ../../enterprise/include/functions_cron.php:504 -msgid "Yearly" -msgstr "Annuellement" - -#: ../../enterprise/include/functions_cron.php:1531 -msgid "Scheduled report had an attempt to send an email without attachments." -msgstr "Le rapport programmĆ© a essayĆ© d'envoyer un email sans des fichier joints" - -#: ../../enterprise/include/functions_cron.php:1534 -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:1778 -msgid "Attached to this email there's a CSV file of the logs" -msgstr "AjoutĆ© Ć  cet email il y a un fichier CSV des journaux" - -#: ../../enterprise/include/functions_cron.php:1788 -msgid "logs csv" -msgstr "CSV journaux" - -#: ../../enterprise/include/functions_cron.php:2207 -#, php-format -msgid "Error while executing task: %s, running %s, reason %s" -msgstr "" -"Erreur lors de lā€™exĆ©cution de la tĆ¢che : %s, %s en cours dā€™exĆ©cution, raison %s" - -#: ../../enterprise/include/functions_cron.php:2221 -#: ../../enterprise/include/functions_cron.php:2231 -msgid "Error while executing task" -msgstr "Erreur d'exĆ©cution de la tache : " - -#: ../../enterprise/include/functions_enterprise_api.php:1119 -msgid "Is not metaconsole" -msgstr "c'est pas la MĆ©taconsole" - -#: ../../enterprise/include/functions_enterprise_api.php:2580 -msgid "Error getting alert actions." -msgstr "Erreur de rĆ©cupĆ©ration des actions des alertes" - -#: ../../enterprise/include/functions_enterprise_api.php:3553 -#: ../../enterprise/include/functions_enterprise_api.php:3607 -#, php-format -msgid "%d agents added to apply queue." -msgstr "%d agents ajoutĆ©s Ć  la file d'attente d'application." - -#: ../../enterprise/include/functions_enterprise_api.php:3576 -#: ../../enterprise/include/functions_policies.php:4859 -#, php-format -msgid "Successfully applied to node %s." -msgstr "Correctement appliquĆ© au noeud %s." - -#: ../../enterprise/include/functions_enterprise_api.php:3578 -#: ../../enterprise/include/functions_policies.php:4861 -#, php-format -msgid "Successfully applied to nodes: %s." -msgstr "Correctement appliquĆ© aux noeuds : %s." - -#: ../../enterprise/include/functions_enterprise_api.php:3617 -#, php-format -msgid "Id policy %d already pending to apply." -msgstr "Politique d'ID %d pendant d'application." - -#: ../../enterprise/include/functions_enterprise_api.php:3619 -#, php-format -msgid "Id policy %d already pending to apply in Id agent %d." -msgstr "Politique d'ID %d pendant dĆ©jĆ  d'application dans l'agent ID %d" - -#: ../../enterprise/include/functions_enterprise_api.php:4039 -#: ../../enterprise/include/functions_enterprise_api.php:4066 -msgid "" -"Error adding web analysis module to policy. Id_module_type is not correct for " -"web analysis modules." -msgstr "" -"Erreur lors de l'ajout du module d'analyse web Ć  la politique. Id_module_type " -"n'est pas correcte pour les modules d'analyse web." - -#: ../../enterprise/include/functions_enterprise_api.php:4048 -msgid "" -"Network Module could not be added to policy. Id_module_type is not correct for " -"network modules." -msgstr "" -"Le module rĆ©seau n'a pas Ć©tĆ© ajoutĆ© a la politique. Id_module_type n'est pas " -"correcte pour les modules rĆ©seau." - -#: ../../enterprise/include/functions_enterprise_api.php:4057 -msgid "" -"Error adding web module to policy. Id_module_type is not correct for web " -"modules." -msgstr "" -"Error lors de l'ajout du module web Ć  la politique. Id_module_type n'est pas " -"correcte pour les modules web." - -#: ../../enterprise/include/functions_enterprise_api.php:4078 -msgid "Error adding module to policy configuration_data is not a valid base64." -msgstr "" -"Error lors de l'ajout de la politique, configuration_data n'est pas un base64 " -"valide." - -#: ../../enterprise/include/functions_enterprise_api.php:6079 -msgid "The agent could not be added to the policy." -msgstr "L'agent n'a pas Ć©tĆ© ajoutĆ© Ć  la politique." - -#: ../../enterprise/include/functions_enterprise_api.php:6296 -#, php-format -msgid "Failed Updated remote config files %d" -msgstr "Ɖchec de la mise Ć  jour des fichiers de configuration distants %d" - -#: ../../enterprise/include/functions_enterprise_api.php:6306 -#, php-format -msgid "Updated remote config files: %d => %d" -msgstr "Fichiers de configuration distants mises Ć  jour : %d => %d" - -#: ../../enterprise/include/functions_reporting_csv.php:416 -msgid "Event report agent" -msgstr "Rapport d'Ć©vĆ©nements d'agent" - -#: ../../enterprise/include/functions_reporting_csv.php:418 -msgid "Event report group" -msgstr "Rapport d'Ć©vĆ©nements de groupes" - -#: ../../enterprise/include/functions_reporting_csv.php:442 -msgid "Event report module" -msgstr "Rapport d'Ć©vĆ©nements de module" - -#: ../../enterprise/include/functions_reporting_csv.php:502 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2614 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2607 -msgid "Time in OK status" -msgstr "Temps en Ć©tat OK" - -#: ../../enterprise/include/functions_reporting_csv.php:510 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2630 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2623 -msgid "Time in unknown status" -msgstr "Temps en Ć©tat inconnu" - -#: ../../enterprise/include/functions_reporting_csv.php:514 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2642 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2635 -msgid "Time of not initialized module" -msgstr "Temps de module non initialisĆ©" - -#: ../../enterprise/include/functions_reporting_csv.php:518 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2654 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2647 -msgid "Time of downtime" -msgstr "Temps d'arrĆŖte" - -#: ../../enterprise/include/functions_reporting_csv.php:521 -#: ../../enterprise/include/functions_reporting_csv.php:1429 -msgid "% OK" -msgstr "% OK" - -#: ../../enterprise/include/functions_reporting_csv.php:534 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2732 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2723 -msgid "Checks in OK status" -msgstr "VĆ©rifications en Ć©tat OK" - -#: ../../enterprise/include/functions_reporting_csv.php:538 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2744 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2747 -msgid "Unknown checks" -msgstr "VĆ©rifications inconnues" - -#: ../../enterprise/include/functions_reporting_csv.php:662 -msgid "Maximum value" -msgstr "Valeur maximale" - -#: ../../enterprise/include/functions_reporting_csv.php:667 -msgid "Minimum value" -msgstr "Valeur minimale" - -#: ../../enterprise/include/functions_reporting_csv.php:670 -msgid "Average value" -msgstr "Valeur moyenne" - -#: ../../enterprise/include/functions_reporting_csv.php:718 -msgid "Sec. group" -msgstr "Groupe secondaire" - -#: ../../enterprise/include/functions_reporting_csv.php:718 -msgid "Custom Field" -msgstr "Champ personnalisĆ©" - -#: ../../enterprise/include/functions_reporting_csv.php:817 -msgid "Serialized data " -msgstr "DonnĆ©es sĆ©rialisĆ©es " - -#: ../../enterprise/include/functions_reporting_csv.php:856 -msgid "Last Value " -msgstr "DerniĆØre valeur " - -#: ../../enterprise/include/functions_reporting_csv.php:983 -msgid "Uknown agents" -msgstr "Agents inconnus" - -#: ../../enterprise/include/functions_reporting_csv.php:983 -msgid "Last 8 hours events" -msgstr "ƉvĆ©nements des 8 derniĆØres heures" - -#: ../../enterprise/include/functions_reporting_csv.php:1115 -msgid "Illegal query or any other error" -msgstr "RequĆŖte illĆ©gale ou autre erreur" - -#: ../../enterprise/include/functions_reporting_csv.php:1220 -#: ../../enterprise/include/functions_reporting_csv.php:1222 -#: ../../enterprise/include/functions_reporting_csv.php:1228 -#: ../../enterprise/include/functions_reporting_csv.php:1230 -msgid "Minimum Value" -msgstr "Valeur minimale" - -#: ../../enterprise/include/functions_reporting_csv.php:1275 -#: ../../enterprise/include/functions_reporting_csv.php:1277 -#: ../../enterprise/include/functions_reporting_csv.php:1283 -#: ../../enterprise/include/functions_reporting_csv.php:1285 -msgid "Maximun Value" -msgstr "Valeur maximale" - -#: ../../enterprise/include/functions_reporting_csv.php:1394 -msgid "AVG" -msgstr "Moyenne" - -#: ../../enterprise/include/functions_reporting_csv.php:1429 -msgid "% Wrong" -msgstr "% Erreur" - -#: ../../enterprise/include/functions_reporting_csv.php:1444 -msgid "Simple Graph" -msgstr "Graphique simple" - -#: ../../enterprise/include/functions_reporting_csv.php:1504 -#: ../../enterprise/include/functions_reporting_csv.php:1550 -#: ../../enterprise/include/functions_reporting_csv.php:1623 -#: ../../enterprise/include/functions_reporting_csv.php:1742 -#: ../../enterprise/include/functions_reporting_csv.php:2050 -msgid "SLA Max" -msgstr "SLA max" - -#: ../../enterprise/include/functions_reporting_csv.php:1505 -#: ../../enterprise/include/functions_reporting_csv.php:1551 -#: ../../enterprise/include/functions_reporting_csv.php:1624 -#: ../../enterprise/include/functions_reporting_csv.php:1743 -#: ../../enterprise/include/functions_reporting_csv.php:2051 -msgid "SLA Min" -msgstr "SLA min" - -#: ../../enterprise/include/functions_reporting_csv.php:1507 -#: ../../enterprise/include/functions_reporting_csv.php:1553 -msgid "Time Total " -msgstr "Temps total " - -#: ../../enterprise/include/functions_reporting_csv.php:1508 -#: ../../enterprise/include/functions_reporting_csv.php:1554 -msgid "Time OK " -msgstr "Temps OK " - -#: ../../enterprise/include/functions_reporting_csv.php:1509 -#: ../../enterprise/include/functions_reporting_csv.php:1555 -msgid "Time Error " -msgstr "Temps erreur " - -#: ../../enterprise/include/functions_reporting_csv.php:1510 -#: ../../enterprise/include/functions_reporting_csv.php:1556 -msgid "Time Unknown " -msgstr "Temps inconnu " - -#: ../../enterprise/include/functions_reporting_csv.php:1511 -#: ../../enterprise/include/functions_reporting_csv.php:1557 -msgid "Time Not Init " -msgstr "Temps non initialisĆ© " - -#: ../../enterprise/include/functions_reporting_csv.php:1512 -#: ../../enterprise/include/functions_reporting_csv.php:1558 -msgid "Time Downtime " -msgstr "Temps d'arrĆŖt " - -#: ../../enterprise/include/functions_reporting_csv.php:1513 -#: ../../enterprise/include/functions_reporting_csv.php:1559 -msgid "Checks Total " -msgstr "VĆ©rifications totales " - -#: ../../enterprise/include/functions_reporting_csv.php:1514 -#: ../../enterprise/include/functions_reporting_csv.php:1560 -msgid "Checks OK " -msgstr "VĆ©rifications OK " - -#: ../../enterprise/include/functions_reporting_csv.php:1515 -#: ../../enterprise/include/functions_reporting_csv.php:1561 -msgid "Checks Error " -msgstr "Erreur vĆ©rifications " - -#: ../../enterprise/include/functions_reporting_csv.php:1516 -#: ../../enterprise/include/functions_reporting_csv.php:1562 -msgid "Checks Unknown " -msgstr "VĆ©rifications inconnues " - -#: ../../enterprise/include/functions_reporting_csv.php:1517 -#: ../../enterprise/include/functions_reporting_csv.php:1563 -msgid "Checks Not Init " -msgstr "VĆ©rifications non initialisĆ©es " - -#: ../../enterprise/include/functions_reporting_csv.php:1518 -#: ../../enterprise/include/functions_reporting_csv.php:1564 -msgid "SLA " -msgstr "SLA " - -#: ../../enterprise/include/functions_reporting_csv.php:1519 -#: ../../enterprise/include/functions_reporting_csv.php:1565 -msgid "Status " -msgstr "Ɖtat " - -#: ../../enterprise/include/functions_reporting_csv.php:1611 -#: ../../enterprise/include/functions_reporting_csv.php:1727 -#: ../../enterprise/include/functions_reporting_csv.php:1967 -#: ../../enterprise/include/functions_reporting_csv.php:2035 -msgid "Subtitle" -msgstr "Sous-titre" - -#: ../../enterprise/include/functions_reporting_csv.php:1626 -#: ../../enterprise/include/functions_reporting_csv.php:1758 -#: ../../enterprise/include/functions_reporting_csv.php:2066 -msgid "Time Total Month" -msgstr "Temps total mois" - -#: ../../enterprise/include/functions_reporting_csv.php:1627 -#: ../../enterprise/include/functions_reporting_csv.php:1759 -#: ../../enterprise/include/functions_reporting_csv.php:2067 -msgid "Time OK Month" -msgstr "Temps OK mois" - -#: ../../enterprise/include/functions_reporting_csv.php:1628 -#: ../../enterprise/include/functions_reporting_csv.php:1760 -#: ../../enterprise/include/functions_reporting_csv.php:2068 -msgid "Time Error Month" -msgstr "Temps erreur mois" - -#: ../../enterprise/include/functions_reporting_csv.php:1629 -#: ../../enterprise/include/functions_reporting_csv.php:1761 -#: ../../enterprise/include/functions_reporting_csv.php:2069 -msgid "Time Unknown Month" -msgstr "Temps inconnu mois" - -#: ../../enterprise/include/functions_reporting_csv.php:1630 -#: ../../enterprise/include/functions_reporting_csv.php:1762 -#: ../../enterprise/include/functions_reporting_csv.php:2070 -msgid "Time Downtime Month" -msgstr "Temps d'arrĆŖt mois" - -#: ../../enterprise/include/functions_reporting_csv.php:1631 -#: ../../enterprise/include/functions_reporting_csv.php:1763 -#: ../../enterprise/include/functions_reporting_csv.php:2071 -msgid "Time Not Init Month" -msgstr "Temps non initialisĆ© mois" - -#: ../../enterprise/include/functions_reporting_csv.php:1632 -#: ../../enterprise/include/functions_reporting_csv.php:1764 -#: ../../enterprise/include/functions_reporting_csv.php:2072 -msgid "Checks Total Month" -msgstr "VĆ©rifications totales mois" - -#: ../../enterprise/include/functions_reporting_csv.php:1633 -#: ../../enterprise/include/functions_reporting_csv.php:1765 -#: ../../enterprise/include/functions_reporting_csv.php:2073 -msgid "Checks OK Month" -msgstr "VĆ©rifications OK mois" - -#: ../../enterprise/include/functions_reporting_csv.php:1634 -#: ../../enterprise/include/functions_reporting_csv.php:1766 -#: ../../enterprise/include/functions_reporting_csv.php:2074 -msgid "Checks Error Month" -msgstr "VĆ©rifications erreur mois" - -#: ../../enterprise/include/functions_reporting_csv.php:1635 -#: ../../enterprise/include/functions_reporting_csv.php:1767 -#: ../../enterprise/include/functions_reporting_csv.php:2075 -msgid "Checks Unknown Month" -msgstr "VĆ©rifications inconnues mois" - -#: ../../enterprise/include/functions_reporting_csv.php:1636 -#: ../../enterprise/include/functions_reporting_csv.php:1768 -#: ../../enterprise/include/functions_reporting_csv.php:2076 -msgid "Checks Not Init Month" -msgstr "VĆ©rifications non initialisĆ©es mois" - -#: ../../enterprise/include/functions_reporting_csv.php:1637 -#: ../../enterprise/include/functions_reporting_csv.php:1769 -#: ../../enterprise/include/functions_reporting_csv.php:2077 -msgid "SLA Month" -msgstr "SLA mois" - -#: ../../enterprise/include/functions_reporting_csv.php:1638 -#: ../../enterprise/include/functions_reporting_csv.php:1770 -#: ../../enterprise/include/functions_reporting_csv.php:2078 -msgid "Status Month" -msgstr "Ɖtat mois" - -#: ../../enterprise/include/functions_reporting_csv.php:1660 -#: ../../enterprise/include/functions_reporting.php:2023 -msgid "Day" -msgstr "Jour" - -#: ../../enterprise/include/functions_reporting_csv.php:1661 -#: ../../enterprise/include/functions_reporting_csv.php:1816 -msgid "Time Total Day" -msgstr "Temps total jour" - -#: ../../enterprise/include/functions_reporting_csv.php:1662 -#: ../../enterprise/include/functions_reporting_csv.php:1817 -msgid "Time OK Day" -msgstr "Temps OK jour" - -#: ../../enterprise/include/functions_reporting_csv.php:1663 -#: ../../enterprise/include/functions_reporting_csv.php:1818 -msgid "Time Error Day" -msgstr "Erreur de temps jour" - -#: ../../enterprise/include/functions_reporting_csv.php:1664 -#: ../../enterprise/include/functions_reporting_csv.php:1819 -msgid "Time Unknown Day" -msgstr "Temps inconnu jour" - -#: ../../enterprise/include/functions_reporting_csv.php:1665 -#: ../../enterprise/include/functions_reporting_csv.php:1820 -msgid "Time Not Init Day" -msgstr "Temps non initialisĆ© jour" - -#: ../../enterprise/include/functions_reporting_csv.php:1666 -#: ../../enterprise/include/functions_reporting_csv.php:1821 -msgid "Time Downtime Day" -msgstr "Temps d'arrĆŖt jour" - -#: ../../enterprise/include/functions_reporting_csv.php:1667 -#: ../../enterprise/include/functions_reporting_csv.php:1822 -msgid "Time Out Day" -msgstr "Temps pause jour" - -#: ../../enterprise/include/functions_reporting_csv.php:1668 -#: ../../enterprise/include/functions_reporting_csv.php:1823 -msgid "Checks Total Day" -msgstr "VĆ©rifications totales jour" - -#: ../../enterprise/include/functions_reporting_csv.php:1669 -#: ../../enterprise/include/functions_reporting_csv.php:1824 -msgid "Checks OK Day" -msgstr "VĆ©rifications OK jour" - -#: ../../enterprise/include/functions_reporting_csv.php:1670 -#: ../../enterprise/include/functions_reporting_csv.php:1825 -msgid "Checks Error Day" -msgstr "VĆ©rifications Erreur" - -#: ../../enterprise/include/functions_reporting_csv.php:1671 -#: ../../enterprise/include/functions_reporting_csv.php:1826 -msgid "Checks Unknown Day" -msgstr "VĆ©rifications inconnues jour" - -#: ../../enterprise/include/functions_reporting_csv.php:1672 -#: ../../enterprise/include/functions_reporting_csv.php:1827 -msgid "Checks Not Init Day" -msgstr "VĆ©rifications non initialisĆ©es jour" - -#: ../../enterprise/include/functions_reporting_csv.php:1673 -#: ../../enterprise/include/functions_reporting_csv.php:1828 -msgid "SLA Day" -msgstr "SLA jour" - -#: ../../enterprise/include/functions_reporting_csv.php:1674 -#: ../../enterprise/include/functions_reporting_csv.php:1829 -msgid "SLA Fixed Day" -msgstr "SLA jour fixe" - -#: ../../enterprise/include/functions_reporting_csv.php:1675 -#: ../../enterprise/include/functions_reporting_csv.php:1830 -msgid "Date From Day" -msgstr "Date Ć  partir du jour" - -#: ../../enterprise/include/functions_reporting_csv.php:1676 -#: ../../enterprise/include/functions_reporting_csv.php:1831 -msgid "Date To Day" -msgstr "Date au jour" - -#: ../../enterprise/include/functions_reporting_csv.php:1677 -#: ../../enterprise/include/functions_reporting_csv.php:1832 -msgid "Status Day" -msgstr "Ɖtat jour" - -#: ../../enterprise/include/functions_reporting_csv.php:1738 -#: ../../enterprise/include/functions_reporting_csv.php:2046 -msgid "Month Number" -msgstr "NumĆ©ro du mois" - -#: ../../enterprise/include/functions_reporting_csv.php:1739 -#: ../../enterprise/include/functions_reporting_csv.php:2047 -msgid "Year" -msgstr "AnnĆ©e" - -#: ../../enterprise/include/functions_reporting_csv.php:1789 -msgid "Time Total week" -msgstr "Temps total semaine" - -#: ../../enterprise/include/functions_reporting_csv.php:1790 -msgid "Time OK week" -msgstr "Temps OK semaine" - -#: ../../enterprise/include/functions_reporting_csv.php:1791 -msgid "Time Error week" -msgstr "Temps erreur semaine" - -#: ../../enterprise/include/functions_reporting_csv.php:1792 -msgid "Time Unknown week" -msgstr "Temps inconnu semaine" - -#: ../../enterprise/include/functions_reporting_csv.php:1793 -msgid "Time Downtime week" -msgstr "Temps d'arrĆŖt semaine" - -#: ../../enterprise/include/functions_reporting_csv.php:1794 -msgid "Time Not Init week" -msgstr "Temps non initialisĆ© semaine" - -#: ../../enterprise/include/functions_reporting_csv.php:1795 -msgid "Checks Total week" -msgstr "VĆ©rifications totales semaine" - -#: ../../enterprise/include/functions_reporting_csv.php:1796 -msgid "Checks OK week" -msgstr "VĆ©rifications OK semaine" - -#: ../../enterprise/include/functions_reporting_csv.php:1797 -msgid "Checks Error week" -msgstr "VĆ©rifications erreur semaine" - -#: ../../enterprise/include/functions_reporting_csv.php:1798 -msgid "Checks Unknown week" -msgstr "VĆ©rifications inconnues semaine" - -#: ../../enterprise/include/functions_reporting_csv.php:1799 -msgid "Status week" -msgstr "Ɖtat semaine" - -#: ../../enterprise/include/functions_reporting_csv.php:1815 -msgid "Day Week" -msgstr "Jour semaine" - -#: ../../enterprise/include/functions_reporting_csv.php:1867 -msgid "S.L.A. Services" -msgstr "Services SLA" - -#: ../../enterprise/include/functions_reporting_csv.php:1885 -msgid "Lost sercice " -msgstr "Service perdu " - -#: ../../enterprise/include/functions_reporting_csv.php:1886 -msgid "Service " -msgstr "Service " - -#: ../../enterprise/include/functions_reporting_csv.php:1887 -msgid "Limit " -msgstr "Limite " - -#: ../../enterprise/include/functions_reporting_csv.php:1888 -msgid "SLA Compilance " -msgstr "ConformitĆ© SLA " - -#: ../../enterprise/include/functions_reporting_csv.php:1889 -msgid "Unknown " -msgstr "Inconnu " - -#: ../../enterprise/include/functions_reporting_csv.php:1890 -msgid "Ok " -msgstr "Ok " - -#: ../../enterprise/include/functions_reporting_csv.php:1891 -msgid "Fail " -msgstr "Ɖchec " - -#: ../../enterprise/include/functions_reporting_csv.php:1892 -msgid "Result " -msgstr "RĆ©sultat " - -#: ../../enterprise/include/functions_reporting_csv.php:1917 -msgid "IPAM Networks" -msgstr "RĆ©seaux IPAM" - -#: ../../enterprise/include/functions_reporting_csv.php:1977 -msgid "SLA max" -msgstr "SLA max" - -#: ../../enterprise/include/functions_reporting_csv.php:1978 -msgid "SLA min" -msgstr "SLA min" - -#: ../../enterprise/include/functions_reporting_csv.php:1979 -msgid "SLA limit" -msgstr "SLA limite" - -#: ../../enterprise/include/functions_reporting_csv.php:1982 -msgid "Time Error" -msgstr "Temps erreur" - -#: ../../enterprise/include/functions_reporting_csv.php:1988 -msgid "Checks Error" -msgstr "Erreur de vĆ©rifications" - -#: ../../enterprise/include/functions_reporting_csv.php:1990 -#: ../../enterprise/include/functions_reporting.php:5066 -msgid "Checks Not Init" -msgstr "VĆ©rifications non initialisĆ©es" - -#: ../../enterprise/include/functions_reporting_csv.php:1992 -msgid "SLA Fixed" -msgstr "SLA fixe" - -#: ../../enterprise/include/functions_reporting_csv.php:2097 -msgid "Time Total day" -msgstr "Temps total jour" - -#: ../../enterprise/include/functions_reporting_csv.php:2098 -msgid "Time OK day" -msgstr "Temps OK jour" - -#: ../../enterprise/include/functions_reporting_csv.php:2099 -msgid "Time Error day" -msgstr "Temps erreur jour" - -#: ../../enterprise/include/functions_reporting_csv.php:2100 -msgid "Time Unknown day" -msgstr "Temps inconnu jour" - -#: ../../enterprise/include/functions_reporting_csv.php:2101 -msgid "Time Downtime day" -msgstr "Temps d'arrĆŖt jour" - -#: ../../enterprise/include/functions_reporting_csv.php:2102 -msgid "Time Not Init day" -msgstr "Temps non initialisĆ© jour" - -#: ../../enterprise/include/functions_reporting_csv.php:2103 -msgid "Checks Total day" -msgstr "VĆ©rifications totales jour" - -#: ../../enterprise/include/functions_reporting_csv.php:2104 -msgid "Checks OK day" -msgstr "VĆ©rifications OK jour" - -#: ../../enterprise/include/functions_reporting_csv.php:2105 -msgid "Checks Error day" -msgstr "VĆ©rifications erreur jour" - -#: ../../enterprise/include/functions_reporting_csv.php:2106 -msgid "Checks Unknown day" -msgstr "VĆ©rifications inconnues jour" - -#: ../../enterprise/include/functions_reporting_csv.php:2107 -msgid "Status day" -msgstr "Ɖtat jour" - -#: ../../enterprise/include/functions_reporting_csv.php:2123 -#: ../../enterprise/include/functions_events.php:230 -msgid "Hours" -msgstr "Heures" - -#: ../../enterprise/include/functions_reporting_csv.php:2124 -msgid "Time Total hours" -msgstr "Temps total heures" - -#: ../../enterprise/include/functions_reporting_csv.php:2125 -msgid "Time OK hours" -msgstr "Temps OK heures" - -#: ../../enterprise/include/functions_reporting_csv.php:2126 -msgid "Time Error hours" -msgstr "Temps erreur heures" - -#: ../../enterprise/include/functions_reporting_csv.php:2127 -msgid "Time Unknown hours" -msgstr "Temps inconnu heures" - -#: ../../enterprise/include/functions_reporting_csv.php:2128 -msgid "Time Not Init hours" -msgstr "Temps non initialisĆ© heures" - -#: ../../enterprise/include/functions_reporting_csv.php:2129 -msgid "Time Downtime hours" -msgstr "Temps d'arrĆŖt heures" - -#: ../../enterprise/include/functions_reporting_csv.php:2130 -msgid "Time Out hours" -msgstr "Temps pause heures" - -#: ../../enterprise/include/functions_reporting_csv.php:2131 -msgid "Checks Total hours" -msgstr "VĆ©rifications totales heures" - -#: ../../enterprise/include/functions_reporting_csv.php:2132 -msgid "Checks OK hours" -msgstr "VĆ©rifications OK heures" - -#: ../../enterprise/include/functions_reporting_csv.php:2133 -msgid "Checks Error hours" -msgstr "VĆ©rifications erreur heures" - -#: ../../enterprise/include/functions_reporting_csv.php:2134 -msgid "Checks Unknown hours" -msgstr "VĆ©rifications inconnues heures" - -#: ../../enterprise/include/functions_reporting_csv.php:2135 -msgid "Checks Not Init hours" -msgstr "VĆ©rifications non initialisĆ©s heures" - -#: ../../enterprise/include/functions_reporting_csv.php:2136 -msgid "SLA hours" -msgstr "SLA heures" - -#: ../../enterprise/include/functions_reporting_csv.php:2137 -msgid "SLA Fixed hours" -msgstr "SLA fixe heures" - -#: ../../enterprise/include/functions_reporting_csv.php:2138 -msgid "Date From hours" -msgstr "ƀ partir de" - -#: ../../enterprise/include/functions_reporting_csv.php:2139 -msgid "Date To hours" -msgstr "ƀ" - -#: ../../enterprise/include/functions_reporting_csv.php:2140 -msgid "Status hours" -msgstr "Ɖtat heures" - -#: ../../enterprise/include/functions_reporting_csv.php:2267 -msgid "Simple Baseline Graph" -msgstr "Graphique de rĆ©fĆ©rence simple" - -#: ../../enterprise/include/functions_reporting_csv.php:2334 -#: ../../enterprise/meta/include/functions_wizard_meta.php:311 -msgid "Agent modules" -msgstr "Module d'agent" - -#: ../../enterprise/include/functions_reporting_csv.php:2465 -msgid "Actions Triggered" -msgstr "Actions dĆ©clenchĆ©es" - -#: ../../enterprise/include/functions_reporting_csv.php:2465 -msgid "Template Triggered" -msgstr "ModĆØle dĆ©chenchĆ©" - -#: ../../enterprise/include/functions_reporting_csv.php:2502 -msgid "Event Report Log" -msgstr "Journal de rapport d'Ć©vĆ©nement" - -#: ../../enterprise/include/functions_reporting_csv.php:2605 -msgid "Netflow data chart" -msgstr "Graphique de donnĆ©es Netflow" - -#: ../../enterprise/include/functions_reporting_csv.php:2660 -msgid "Netflow summary" -msgstr "RĆ©sumĆ© Netflow" - -#: ../../enterprise/include/functions_reporting_csv.php:2680 -msgid "Avg. bits/sec" -msgstr "Bits moyens/s" - -#: ../../enterprise/include/functions_reporting_csv.php:2680 -msgid "Avg. packets/sec" -msgstr "Paquets moyens/s" - -#: ../../enterprise/include/functions_reporting_csv.php:2680 -msgid "Avg. bytes/packet" -msgstr "Nombre moyen dā€™octets/paquet" - -#: ../../enterprise/include/functions_reporting_csv.php:2681 -msgid "Dst. IP" -msgstr "Adresse IP de destination" - -#: ../../enterprise/include/functions_reporting_csv.php:2707 -msgid "Agent/module status" -msgstr "Ɖtat de lā€™agent/module" - -#: ../../enterprise/include/functions_reporting_csv.php:2808 -msgid "Average Throughput (bits/sec)" -msgstr "DĆ©bit moyen (bits/sec)" - -#: ../../enterprise/include/ajax/log_viewer.ajax.php:65 -msgid "Capture regexp" -msgstr "Capturer regexp" - -#: ../../enterprise/include/ajax/log_viewer.ajax.php:75 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1251 -#: ../../enterprise/meta/event/custom_events.php:160 -msgid "Fields" -msgstr "Champs" - -#: ../../enterprise/include/ajax/log_viewer.ajax.php:175 -msgid "Empty ip or port" -msgstr "IP ou port vide" - -#: ../../enterprise/include/ajax/log_viewer.ajax.php:192 -msgid "Curl Error: " -msgstr "Erreur Curl : " - -#: ../../enterprise/include/ajax/servers.ajax.php:99 -#: ../../enterprise/include/ajax/servers.ajax.php:157 -#: ../../enterprise/include/ajax/servers.ajax.php:283 -#: ../../enterprise/include/functions_ipam.php:1343 -#: ../../enterprise/godmode/servers/credential_boxes_satellite.php:248 -#: ../../enterprise/godmode/servers/manage_credential_boxes.php:57 -msgid "Subnet" -msgstr "Sous-rĆ©seau" - -#: ../../enterprise/include/ajax/servers.ajax.php:139 -#: ../../enterprise/godmode/servers/credential_boxes_satellite.php:293 -#: ../../enterprise/godmode/servers/list_satellite.php:69 -msgid "No Data" -msgstr "Aucune donnĆ©e" - -#: ../../enterprise/include/ajax/url_route_analyzer.ajax.php:33 -msgid "Global time: " -msgstr "Temps global : " - -#: ../../enterprise/include/ajax/ipam.ajax.php:249 -msgid "Current Networks" -msgstr "RĆ©seaux actuels" - -#: ../../enterprise/include/ajax/ipam.ajax.php:296 -msgid "Please, create networks to assign to " -msgstr "Veuillez crĆ©er des rĆ©seaux Ć  attribuer Ć  " - -#: ../../enterprise/include/ajax/ipam.ajax.php:300 -msgid "No networks to assign to supernet" -msgstr "Aucun rĆ©seau Ć  affecter au supernet" - -#: ../../enterprise/include/ajax/ipam.ajax.php:302 -msgid "Please, create networks to assign to" -msgstr "Veuillez crĆ©er des rĆ©seaux Ć  attribuer Ć " - -#: ../../enterprise/include/ajax/ipam.ajax.php:307 -msgid "Create and add networks in bulk" -msgstr "CrĆ©er et ajouter des rĆ©seaux en bloc" - -#: ../../enterprise/include/ajax/ipam.ajax.php:316 -msgid "Starting network" -msgstr "DĆ©marrage du rĆ©seau" - -#: ../../enterprise/include/ajax/ipam.ajax.php:316 -msgid "" -"The networks will be created/added starting from this address in the " -"subnetting range given by the mask. Use CIDR format (e.g.: 192.168.72.0/22). " -"If no value was provided, it uses the starting address of the supernet by " -"default." -msgstr "" -"Les rĆ©seaux seront crĆ©Ć©s/ajoutĆ©s Ć  partir de cette adresse dans la plage de " -"sous-rĆ©seaux donnĆ©e par le masque. Utilisez le format CIDR (p. ex. : " -"192.168.72.0/22). Si aucune valeur nā€™a Ć©tĆ© fournie, il utilise lā€™adresse de " -"dĆ©part du super-rĆ©seau par dĆ©faut." - -#: ../../enterprise/include/ajax/ipam.ajax.php:320 -msgid "Max. number" -msgstr "Nombre maximale" - -#: ../../enterprise/include/ajax/ipam.ajax.php:320 -msgid "" -"Maximum number of networks to be created/added from starting address of the " -"range specified above" -msgstr "" -"Nombre maximale de rĆ©seaux Ć  crĆ©er/ajouter Ć  partir de lā€™adresse de dĆ©part de " -"la plage spĆ©cifiĆ©e ci-dessus" - -#: ../../enterprise/include/ajax/ipam.ajax.php:622 -msgid "Go to supernet edition" -msgstr "Aller Ć  lā€™Ć©dition supernet" - -#: ../../enterprise/include/ajax/ipam.ajax.php:664 -msgid "Go to network edition" -msgstr "Aller Ć  lā€™Ć©dition rĆ©seau" - -#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:94 -#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:253 -msgid "Group name" -msgstr "Nom du groupe" - -#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:128 -#: ../../enterprise/godmode/services/services.elements.php:220 -msgid "Custom field name" -msgstr "Nom de champ personnalisĆ©" - -#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:130 -#: ../../enterprise/godmode/services/services.elements.php:232 -msgid "Custom field value" -msgstr "Valeur de champ personnalisĆ©e" - -#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:136 -msgid "IP Network range" -msgstr "Intervalle rĆ©seau d'IP" - -#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:141 -msgid "Script" -msgstr "Script" - -#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:143 -msgid "Arguments" -msgstr "Arguments" - -#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:149 -msgid "Unknown option" -msgstr "Option inconnue" - -#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:188 -#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:842 -msgid "Update rule" -msgstr "Mettre Ć  jour la rĆØgle" - -#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:190 -#: ../../enterprise/meta/advanced/agents_setup.autoprovision_rules.php:201 -msgid "Create rule" -msgstr "CrĆ©er une rĆØgle" - -#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:213 -#: ../../enterprise/godmode/modules/manage_inventory_modules.php:63 -#: ../../enterprise/godmode/agentes/agent_autoconfiguration.php:125 -#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:288 -#, 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/include/ajax/agent_autoconfiguration.ajax.php:257 -msgid "IP range" -msgstr "Intervalle d'IP" - -#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:258 -msgid "Script output (> 0)" -msgstr "sortie de le script (> 0)" - -#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:272 -#: ../../enterprise/meta/include/functions_autoprovision.php:642 -#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:340 -#: ../../extensions/quick_shell.php:190 -msgid "Method" -msgstr "MĆ©thode" - -#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:380 -#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:599 -msgid "Op" -msgstr "Op" - -#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:402 -#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:429 -msgid "Launch custom event" -msgstr "Lancer Ć©vĆ©nement personnalisĆ©" - -#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:403 -#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:430 -msgid "Launch alert action" -msgstr "Lancer action d'alerte" - -#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:435 -#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:542 -#: ../../godmode/snmpconsole/snmp_alert.php:1110 -#: ../../godmode/snmpconsole/snmp_alert.php:1257 -msgid "Alert action" -msgstr "Action de l'alerte" - -#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:455 -#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:562 -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" -msgstr "Argument du script" - -#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:471 -#: ../../godmode/alerts/alert_list.list.php:688 -#: ../../godmode/alerts/alert_list.list.php:1169 -msgid "Update action" -msgstr "Mettre Ć  jour l'action" - -#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:488 -#: ../../enterprise/godmode/alerts/alert_inventory_list.php:344 -#: ../../enterprise/godmode/alerts/alert_inventory_list.php:350 -#: ../../enterprise/godmode/alerts/alert_inventory_list.php:444 -#: ../../enterprise/godmode/policies/policy_external_alerts.php:508 -#: ../../enterprise/godmode/policies/policy_alerts.php:754 -#: ../../godmode/snmpconsole/snmp_alert.php:1381 -#: ../../godmode/alerts/alert_list.list.php:899 -#: ../../godmode/alerts/alert_list.list.php:906 -#: ../../godmode/alerts/alert_list.list.php:1132 -msgid "Add action" -msgstr "Ajouter une action" - -#: ../../enterprise/include/ajax/top_n_widget.ajax.php:79 -msgid "avg" -msgstr "moyenne" - -#: ../../enterprise/include/ajax/top_n_widget.ajax.php:80 -#: ../../godmode/reporting/reporting_builder.item_editor.php:4287 -msgid "max" -msgstr "max" - -#: ../../enterprise/include/ajax/top_n_widget.ajax.php:81 -#: ../../godmode/reporting/reporting_builder.item_editor.php:4288 -msgid "min" -msgstr "min" - -#: ../../enterprise/include/ajax/top_n_widget.ajax.php:82 -#: ../../godmode/reporting/reporting_builder.item_editor.php:4289 -msgid "sum" -msgstr "somme" - -#: ../../enterprise/include/class/SAPView.class.php:146 -#: ../../enterprise/include/class/SAPView.class.php:190 -msgid "SAP View" -msgstr "Vue SAP" - -#: ../../enterprise/include/class/SAPView.class.php:164 -msgid "SAP data not found." -msgstr "DonnĆ©es SAP non trouvĆ©s." - -#: ../../enterprise/include/class/SAPView.class.php:258 -msgid "Refresh Every" -msgstr "RafraĆ®chir chaque" - -#: ../../enterprise/include/class/SAPView.class.php:259 -#: ../../enterprise/include/class/SAPView.class.php:296 -#: ../../enterprise/include/class/MicrosoftSQLServer.app.php:562 -#: ../../enterprise/include/class/Aws.cloud.php:1343 -#: ../../enterprise/include/class/Aws.S3.php:531 -#: ../../enterprise/include/class/MySQL.app.php:583 -#: ../../enterprise/include/class/Oracle.app.php:568 -#: ../../enterprise/include/class/DB2.app.php:561 -#: ../../enterprise/include/class/SAP.app.php:540 -#: ../../enterprise/include/class/VMware.app.php:693 -msgid "The minimum recomended interval is 5 minutes" -msgstr "L'intervalle minimale recommandĆ©e est 5 minutes" - -#: ../../enterprise/include/class/SAPView.class.php:295 -msgid "Graph Interval" -msgstr "Intervalle de graphique" - -#: ../../enterprise/include/class/SAPView.class.php:626 -msgid "" -"SAP view offers you to see the most important modules Discovery Server is " -"usually configured to retry. You have not configured a Discovery SAP R3 task " -"yet, please visit" -msgstr "" -"La vue SAP vous offre de voir les modules les plus importants que le serveur " -"Discovery rĆ©essaie normalement. Si vous n'avez pas configurĆ© une tache " -"Discovery SAP RĀ· encore, veuillez visiter" - -#: ../../enterprise/include/class/SAPView.class.php:626 -#: ../../enterprise/extensions/vmware/vmware_view.php:1240 -#: ../../enterprise/extensions/vmware/vmware_view.php:1526 -msgid "this link" -msgstr "ce lien" - -#: ../../enterprise/include/class/SAPView.class.php:626 -msgid "to start monitoring your SAP infrastructure." -msgstr "pour commencer Ć  superviser votre infrastructure SAP." - -#: ../../enterprise/include/class/SAPView.class.php:633 -msgid "Discover SAP" -msgstr "DĆ©couvrir SAP" - -#: ../../enterprise/include/class/CSVImportAgents.class.php:114 -#: ../../enterprise/godmode/menu.php:159 -#: ../../godmode/wizards/HostDevices.class.php:159 -msgid "Import CSV" -msgstr "Importer CSV" - -#: ../../enterprise/include/class/CSVImportAgents.class.php:121 -msgid "The CSV file must have the fields in the following order:" -msgstr "Le fichier CSV doit avoir les champs dans l'ordre suivant :" - -#: ../../enterprise/include/class/CSVImportAgents.class.php:122 -msgid "Agent alias, IP address, OS id, Interval, Group id, Description" -msgstr "" -"Alias agent, adresse IP, ID du SystĆØme d'exploitation, Intervalle, ID de " -"Groupe, Description" - -#: ../../enterprise/include/class/CSVImportAgents.class.php:127 -msgid "" -"Warning, this CSV importer will not perform any discovery, it will only create " -"empty agents with the name, IP, OS type, description and group provided in the " -"CSV." -msgstr "" -"Attention, cet importateur CSV nā€™effectuera aucune dĆ©couverte, il crĆ©era " -"uniquement des agents vides avec le nom, lā€™adresse IP, le type de systĆØme " -"dā€™exploitation, la description et le groupe fournis dans le fichier CSV." - -#: ../../enterprise/include/class/CSVImportAgents.class.php:179 -msgid "Alias as name" -msgstr "Alias en tant que nom" - -#: ../../enterprise/include/class/CSVImportAgents.class.php:244 -msgid "No data or wrong separator" -msgstr "Absence de donnĆ©es ou sĆ©parateur incorrecte" - -#: ../../enterprise/include/class/CSVImportAgents.class.php:250 -#, php-format -msgid "Agent %s duplicated." -msgstr "Agent %s dupliquĆ©." - -#: ../../enterprise/include/class/CSVImportAgents.class.php:257 -#, php-format -msgid "Id group %s doesn't exist in %s" -msgstr "L'ID du groupe %s n'existe pas dans %s" - -#: ../../enterprise/include/class/CSVImportAgents.class.php:265 -msgid "General failure." -msgstr "DĆ©faillance gĆ©nĆ©ral" - -#: ../../enterprise/include/class/CSVImportAgents.class.php:286 -msgid "No input file detected" -msgstr "Aucun fichier d'entrĆ©e dĆ©tectĆ©" - -#: ../../enterprise/include/class/CSVImportAgents.class.php:375 -msgid "Agent processed successfully" -msgstr "Agent processĆ© correctement" - -#: ../../enterprise/include/class/CSVImportAgents.class.php:381 -msgid "Some errors while processing CSV." -msgstr "Quelques erreurs en processant le CSV." - -#: ../../enterprise/include/class/CSVImportAgents.class.php:384 -msgid "All agents processed correctly" -msgstr "Tous les agents processĆ©s correctement" - -#: ../../enterprise/include/class/CSVImportAgents.class.php:391 -#, php-format -msgid "Line %s" -msgstr "Ligne %s" - -#: ../../enterprise/include/class/MicrosoftSQLServer.app.php:171 -msgid "" -"This Microsoft SQL Server configuration has been already defined. Please edit " -"it or create a new one." -msgstr "" -"Cette configuration du Microsoft SQL Server est dĆ©jĆ  dĆ©finie. Veuillez " -"l'Ć©diter ou en crĆ©er une nouvelle." - -#: ../../enterprise/include/class/MicrosoftSQLServer.app.php:213 -msgid "You must provide a valid Microsoft SQL Server server IP or FQDN." -msgstr "Fournissez une IP ou FQDN de Serveur Microsoft SQL Server valide" - -#: ../../enterprise/include/class/MicrosoftSQLServer.app.php:277 -msgid "Failed to find discovery Microsoft SQL Server task." -msgstr "Erreur pour trouver la tache discovery Microsoft SQL Server" - -#: ../../enterprise/include/class/MicrosoftSQLServer.app.php:388 -#: ../../enterprise/include/class/MySQL.app.php:403 -#: ../../enterprise/include/class/Oracle.app.php:393 -#: ../../enterprise/include/class/DB2.app.php:386 -#: ../../enterprise/include/class/SAP.app.php:336 -#: ../../enterprise/include/class/VMware.app.php:486 -msgid "Application" -msgstr "Application" - -#: ../../enterprise/include/class/MicrosoftSQLServer.app.php:406 -#: ../../enterprise/godmode/menu.php:173 -msgid "Microsoft SQL Server" -msgstr "Microsoft SQL Server" - -#: ../../enterprise/include/class/MicrosoftSQLServer.app.php:472 -#: ../../enterprise/include/class/Aws.cloud.php:1234 -#: ../../enterprise/include/class/Aws.S3.php:435 -#: ../../enterprise/include/class/MySQL.app.php:475 -#: ../../enterprise/include/class/Oracle.app.php:477 -#: ../../enterprise/include/class/DB2.app.php:470 -#: ../../enterprise/include/class/SAP.app.php:644 -#: ../../enterprise/include/class/VMware.app.php:763 -msgid "This group will be used also to classify discovered agents" -msgstr "Ce groupe sera utilisĆ© aussi pour classifier des agents dĆ©couverts" - -#: ../../enterprise/include/class/MicrosoftSQLServer.app.php:487 -msgid "Microsoft SQL Server targets" -msgstr "Cibles Microsoft SQL Server" - -#: ../../enterprise/include/class/MicrosoftSQLServer.app.php:488 -msgid "" -"SERVER:PORT\\INSTANCE, comma separated or line by line, as many targets as you " -"need." -msgstr "" -"SERVER:PORT\\INSTANCE, sĆ©parĆ©s par des virgules ou ligne par ligne, aussi de " -"cibles que vous dĆ©sirez." - -#: ../../enterprise/include/class/MicrosoftSQLServer.app.php:488 -#: ../../enterprise/include/class/Oracle.app.php:494 -#: ../../enterprise/include/class/DB2.app.php:487 -msgid "Use # symbol to comment a line." -msgstr "Utilisez le symbole # pour commenter une ligne." - -#: ../../enterprise/include/class/MicrosoftSQLServer.app.php:635 -#: ../../enterprise/include/class/MySQL.app.php:656 -#: ../../enterprise/include/class/Oracle.app.php:641 -#: ../../enterprise/include/class/DB2.app.php:634 -msgid "Target agent" -msgstr "Agent cible" - -#: ../../enterprise/include/class/MicrosoftSQLServer.app.php:636 -#: ../../enterprise/include/class/Oracle.app.php:642 -#: ../../enterprise/include/class/DB2.app.php:635 -msgid "" -"Defines a target agent where this task will store data detected, if you have " -"defined multiple targets, define a comma separated list of names here or leave " -"in blank to use target as name." -msgstr "" -"Il dĆ©finit un agent cible oĆ¹ cette tache stockera les donnĆ©es dĆ©tectĆ©es, si " -"vous avez dĆ©finis des cibles multiples, dĆ©finissez une liste sĆ©parĆ© par des " -"virgules de noms ici ou laissez-le vide pour utiliser le cible en tant que nom." - -#: ../../enterprise/include/class/MicrosoftSQLServer.app.php:655 -#: ../../enterprise/include/class/MySQL.app.php:676 -#: ../../enterprise/include/class/Oracle.app.php:661 -#: ../../enterprise/include/class/DB2.app.php:654 -msgid "Custom module prefix" -msgstr "PrĆ©fixe de module personnalisĆ©" - -#: ../../enterprise/include/class/MicrosoftSQLServer.app.php:656 -#: ../../enterprise/include/class/MySQL.app.php:677 -#: ../../enterprise/include/class/Oracle.app.php:662 -#: ../../enterprise/include/class/DB2.app.php:655 -msgid "" -"Defines a custom prefix to be concatenated before module names generated by " -"this task." -msgstr "" -"Il dĆ©finit un prĆ©fixe personnalisĆ©e pour le concatĆ©ner avant les noms des " -"modules gĆ©nĆ©rĆ©s par cette tache." - -#: ../../enterprise/include/class/MicrosoftSQLServer.app.php:674 -#: ../../enterprise/include/class/MySQL.app.php:757 -#: ../../enterprise/include/class/Oracle.app.php:680 -msgid "Check engine uptime" -msgstr "VĆ©rifier la disponibilitĆ© du moteur" - -#: ../../enterprise/include/class/MicrosoftSQLServer.app.php:690 -#: ../../enterprise/include/class/MySQL.app.php:773 -#: ../../enterprise/include/class/Oracle.app.php:696 -msgid "Retrieve query statistics" -msgstr "Recueillir les statistiques des requĆŖtes" - -#: ../../enterprise/include/class/MicrosoftSQLServer.app.php:706 -#: ../../enterprise/include/class/MySQL.app.php:789 -#: ../../enterprise/include/class/Oracle.app.php:712 -msgid "Analyze connections" -msgstr "Analyser des connexions" - -#: ../../enterprise/include/class/MicrosoftSQLServer.app.php:722 -#: ../../enterprise/include/class/MySQL.app.php:837 -#: ../../enterprise/include/class/Oracle.app.php:776 -#: ../../enterprise/include/class/DB2.app.php:753 -msgid "Execute custom queries" -msgstr "ExĆ©cuter requĆŖtes personnalisĆ©es" - -#: ../../enterprise/include/class/MicrosoftSQLServer.app.php:774 -#: ../../enterprise/include/class/MySQL.app.php:889 -#: ../../enterprise/include/class/Oracle.app.php:930 -#: ../../enterprise/include/class/DB2.app.php:821 -msgid "Custom queries" -msgstr "RequĆŖtes personnalisĆ©es" - -#: ../../enterprise/include/class/MicrosoftSQLServer.app.php:775 -#: ../../enterprise/include/class/MySQL.app.php:890 -#: ../../enterprise/include/class/Oracle.app.php:931 -#: ../../enterprise/include/class/DB2.app.php:822 -msgid "Define here your custom queries." -msgstr "DĆ©finissez ice vos requĆŖtes personnalisĆ©es." - -#: ../../enterprise/include/class/Aws.cloud.php:113 -#: ../../enterprise/include/class/Azure.cloud.php:148 -#: ../../enterprise/include/class/Google.cloud.php:142 -msgid "Cloud message" -msgstr "Message Cloud" - -#: ../../enterprise/include/class/Aws.cloud.php:115 -#: ../../enterprise/include/class/Aws.cloud.php:162 -#: ../../enterprise/include/class/Azure.cloud.php:150 -#: ../../enterprise/include/class/Azure.cloud.php:194 -#: ../../enterprise/include/class/Google.cloud.php:144 -#: ../../enterprise/include/class/Google.cloud.php:188 -#: ../../enterprise/godmode/menu.php:193 -#: ../../enterprise/godmode/wizards/Cloud.class.php:186 -#: ../../enterprise/godmode/wizards/Cloud.class.php:195 -msgid "Cloud" -msgstr "Cloud" - -#: ../../enterprise/include/class/Aws.cloud.php:158 -#: ../../enterprise/include/class/Azure.cloud.php:190 -#: ../../enterprise/include/class/DeploymentCenter.class.php:590 -#: ../../enterprise/include/class/Google.cloud.php:184 -#: ../../enterprise/godmode/wizards/Applications.class.php:157 -#: ../../enterprise/godmode/wizards/Cloud.class.php:182 -#: ../../godmode/servers/discovery.php:59 ../../godmode/menu.php:62 -#: ../../godmode/wizards/HostDevices.class.php:190 -msgid "Discovery" -msgstr "Discovery" - -#: ../../enterprise/include/class/Aws.cloud.php:343 -msgid "Recon" -msgstr "Recon" - -#: ../../enterprise/include/class/Aws.cloud.php:344 -msgid "Costs" -msgstr "CoĆ»ts" - -#: ../../enterprise/include/class/Aws.cloud.php:346 -msgid "Instances" -msgstr "Instances" - -#: ../../enterprise/include/class/Aws.cloud.php:441 -msgid "Amazon EC2" -msgstr "Amazon EC2" - -#: ../../enterprise/include/class/Aws.cloud.php:446 -msgid "Amazon RDS" -msgstr "Amazon RDS" - -#: ../../enterprise/include/class/Aws.cloud.php:451 -msgid "S3 Buckets" -msgstr "S3 Buckets" - -#: ../../enterprise/include/class/Aws.cloud.php:471 -#: ../../godmode/wizards/HostDevices.class.php:696 -msgid "NetScan" -msgstr "NetScan" - -#: ../../enterprise/include/class/Aws.cloud.php:500 -#: ../../enterprise/include/class/Aws.S3.php:554 -#: ../../enterprise/include/class/VMware.app.php:547 -msgid "" -"This kind of task uses multipurpose plugins in order to generate monitoring " -"data, configure your desired tentacle target." -msgstr "" -"Ce type de tache utilise plugins polyvalentes pour gĆ©nĆ©rer des donnĆ©es de " -"supervision, configurez votre cible tentacle dĆ©sirĆ©e." - -#: ../../enterprise/include/class/Aws.cloud.php:510 -msgid "Discovery task name" -msgstr "Nom de la tache Discovery" - -#: ../../enterprise/include/class/Aws.cloud.php:540 -#: ../../enterprise/include/class/Aws.S3.php:559 -#: ../../enterprise/include/class/VMware.app.php:614 -#: ../../enterprise/include/class/Azure.cloud.php:797 -msgid "Tentacle options" -msgstr "Options Tentacle" - -#: ../../enterprise/include/class/Aws.cloud.php:566 -#: ../../enterprise/include/class/Aws.S3.php:584 -#: ../../enterprise/include/class/VMware.app.php:643 -#: ../../enterprise/include/class/Azure.cloud.php:823 -#: ../../enterprise/godmode/servers/manage_export_form.php:129 -msgid "Extra options" -msgstr "Options supplĆ©mentaires" - -#: ../../enterprise/include/class/Aws.cloud.php:614 -msgid "Total cost" -msgstr "CoĆ»t total" - -#: ../../enterprise/include/class/Aws.cloud.php:631 -msgid "Cost by region" -msgstr "CoĆ»t par rĆ©gion" - -#: ../../enterprise/include/class/Aws.cloud.php:645 -msgid "Cost interval" -msgstr "Intervalle de coĆ»t" - -#: ../../enterprise/include/class/Aws.cloud.php:671 -#: ../../enterprise/include/class/Azure.cloud.php:928 -msgid "Scan and general monitoring." -msgstr "Scan et supervision gĆ©nĆ©rale." - -#: ../../enterprise/include/class/Aws.cloud.php:688 -#: ../../enterprise/include/class/Azure.cloud.php:941 -msgid "Cpu performance summary" -msgstr "RĆ©sumĆ©e de la performance de l'UCT" - -#: ../../enterprise/include/class/Aws.cloud.php:698 -#: ../../enterprise/include/class/Azure.cloud.php:949 -#: ../../enterprise/include/class/Google.cloud.php:911 -msgid "IOPS performance summary" -msgstr "RĆ©sumĆ©e de la performance d'IOPS" - -#: ../../enterprise/include/class/Aws.cloud.php:708 -#: ../../enterprise/include/class/Azure.cloud.php:957 -#: ../../enterprise/include/class/Google.cloud.php:919 -msgid "Disk performance summary" -msgstr "RĆ©sumĆ©e de la performance du disque" - -#: ../../enterprise/include/class/Aws.cloud.php:718 -#: ../../enterprise/include/class/Azure.cloud.php:965 -#: ../../enterprise/include/class/Google.cloud.php:927 -msgid "Network performance summary" -msgstr "RĆ©sumĆ©e de la performance du rĆ©seau" - -#: ../../enterprise/include/class/Aws.cloud.php:742 -#: ../../enterprise/include/class/Aws.cloud.php:1274 -#: ../../enterprise/include/class/Azure.cloud.php:872 -#: ../../enterprise/include/class/Google.cloud.php:822 -msgid "No instances found." -msgstr "Aucune instance trouvĆ©e." - -#: ../../enterprise/include/class/Aws.cloud.php:773 -msgid "Select EC2 instances" -msgstr "SĆ©lectionner instances EC2" - -#: ../../enterprise/include/class/Aws.cloud.php:789 -msgid "Storage" -msgstr "Stockage" - -#: ../../enterprise/include/class/Aws.cloud.php:799 -msgid "Elastic IP Adresses" -msgstr "Adresses IP d'ELastic" - -#: ../../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:987 -msgid "" -"You cannot monitor RDS instances from different types. Please define several " -"tasks for several types." -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:994 -msgid "Discovery.Cloud.AWS.RDS" -msgstr "Discovery.Cloud.AWS.RDS" - -#: ../../enterprise/include/class/Aws.cloud.php:1160 -msgid "RDS" -msgstr "RDS" - -#: ../../enterprise/include/class/Aws.cloud.php:1165 -msgid "DB monitoring" -msgstr "Supervision de la basse de donnĆ©es" - -#: ../../enterprise/include/class/Aws.cloud.php:1175 -msgid "AWS RDS" -msgstr "AWS RDS" - -#: ../../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:1259 -msgid "Global DB password" -msgstr "Mot de pass de la base de donnĆ©es globale" - -#: ../../enterprise/include/class/Aws.cloud.php:1349 -msgid "Select RDS instances" -msgstr "SĆ©lectionner instances RDS" - -#: ../../enterprise/include/class/Aws.cloud.php:1492 -#: ../../enterprise/include/class/Azure.cloud.php:355 -#: ../../enterprise/include/class/Google.cloud.php:349 -#, php-format -msgid "%s not found or not executable" -msgstr "%s non trouvĆ© ou non exĆ©cutable" - -#: ../../enterprise/include/class/Aws.cloud.php:1652 -msgid "Invalid group" -msgstr "Groupe non valide" - -#: ../../enterprise/include/class/Aws.cloud.php:1710 -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:1732 -msgid "Engine not supported" -msgstr "Moteur non supportĆ©" - -#: ../../enterprise/include/class/AgentRepository.class.php:262 -#: ../../enterprise/include/class/DeploymentCenter.class.php:956 -msgid "Deploying" -msgstr "DĆ©ployant" - -#: ../../enterprise/include/class/AgentRepository.class.php:336 -msgid "Time in seconds before deployment is cancelled." -msgstr "Temps en secondes avant lā€™annulation du dĆ©ploiement." - -#: ../../enterprise/include/class/AgentRepository.class.php:354 -#: ../../enterprise/include/class/AgentRepository.class.php:631 -#: ../../enterprise/include/class/AgentRepository.class.php:681 -#: ../../enterprise/include/class/DeploymentCenter.class.php:757 -#: ../../enterprise/include/class/DeploymentCenter.class.php:825 -#: ../../enterprise/include/class/DeploymentCenter.class.php:1301 -#: ../../enterprise/include/class/DeploymentCenter.class.php:1397 -msgid "Architecture" -msgstr "Architecture" - -#: ../../enterprise/include/class/AgentRepository.class.php:375 -msgid "Transfer timeout" -msgstr "DĆ©lai dā€™expiration du transfert" - -#: ../../enterprise/include/class/AgentRepository.class.php:383 -msgid "Installation file" -msgstr "Fichier d'installation" - -#: ../../enterprise/include/class/AgentRepository.class.php:423 -msgid "Agent version is required" -msgstr "La version de l'agent est requise" - -#: ../../enterprise/include/class/AgentRepository.class.php:429 -#: ../../enterprise/include/class/DeploymentCenter.class.php:245 -msgid "Target OS is required" -msgstr "Le systĆØme d'exploitation cible est requis" - -#: ../../enterprise/include/class/AgentRepository.class.php:431 -#: ../../enterprise/include/class/DeploymentCenter.class.php:247 -msgid "Target architecture is required" -msgstr "L'architecture cible est requis" - -#: ../../enterprise/include/class/AgentRepository.class.php:440 -#: ../../enterprise/include/class/NetworkConfigManager.class.php:2089 -msgid "Cannot create target dir [" -msgstr "Le rĆ©pertoire cible n'a pas pu ĆŖtre crĆ©Ć© [" - -#: ../../enterprise/include/class/AgentRepository.class.php:461 -#, php-format -msgid "Invalid installation file for %s" -msgstr "Fichier d'installation pour %s non valide" - -#: ../../enterprise/include/class/AgentRepository.class.php:490 -msgid "Installation files not modified" -msgstr "Fichiers d'installation non modifiĆ©s" - -#: ../../enterprise/include/class/AgentRepository.class.php:509 -msgid "Installation files updated" -msgstr "Fichiers d'installation mises Ć  jour" - -#: ../../enterprise/include/class/AgentRepository.class.php:512 -#: ../../enterprise/meta/include/functions_wizard_meta.php:2341 -msgid "Agent successfully updated" -msgstr "Agent mis Ć  jour avec succĆØs" - -#: ../../enterprise/include/class/AgentRepository.class.php:516 -msgid "You must provide installation files to create a new entry." -msgstr "" -"Vous devez fournir les fichiers d'installation pour crĆ©er une nouvelle entrĆ©e." - -#: ../../enterprise/include/class/AgentRepository.class.php:537 -msgid "This agent has been already defined." -msgstr "Cet agent a Ć©tĆ© dĆ©jĆ  dĆ©finit." - -#: ../../enterprise/include/class/AgentRepository.class.php:553 -msgid "Agent successfully registered and uploaded" -msgstr "Agent registrĆ© correctement et mis Ć  jour" - -#: ../../enterprise/include/class/AgentRepository.class.php:591 -#: ../../enterprise/include/class/DeploymentCenter.class.php:335 -msgid "Target successfully deleted" -msgstr "Cible Ć©liminĆ© correctement" - -#: ../../enterprise/include/class/AgentRepository.class.php:613 -#: ../../enterprise/godmode/menu.php:126 -msgid "Software agents repository" -msgstr "DĆ©pĆ“t d'agents logicielles" - -#: ../../enterprise/include/class/AgentRepository.class.php:633 -msgid "Uploaded by" -msgstr "Mis en ligne par" - -#: ../../enterprise/include/class/AgentRepository.class.php:634 -msgid "Upload date" -msgstr "Date de mise en ligne" - -#: ../../enterprise/include/class/AgentRepository.class.php:713 -msgid "Add new software" -msgstr "Ajouter nouveau logiciel" - -#: ../../enterprise/include/class/AgentRepository.class.php:900 -msgid "Add new Software agent" -msgstr "Ajouter nouvel agent logiciel" - -#: ../../enterprise/include/class/AgentRepository.class.php:903 -msgid "Update Software agent" -msgstr "Mettre Ć  jour l'agent logiciel" - -#: ../../enterprise/include/class/LogSource.class.php:455 -msgid "Source is required" -msgstr "La source est requise" - -#: ../../enterprise/include/class/LogSource.class.php:562 -msgid "id cannot be empty" -msgstr "L'ID ne peut pas ĆŖtre vide" - -#: ../../enterprise/include/class/LogSource.class.php:610 -#, php-format -msgid "Log monitoring is disabled. %s" -msgstr "La supervision de journaux est dĆ©sactivĆ©e. %s" - -#: ../../enterprise/include/class/LogSource.class.php:680 -#: ../../enterprise/include/class/LogSource.class.php:846 -msgid "Add log source" -msgstr "Ajouter source de journal" - -#: ../../enterprise/include/class/LogSource.class.php:715 -msgid "Source name" -msgstr "Nom de la source" - -#: ../../enterprise/include/class/LogSource.class.php:850 -msgid "Update log source" -msgstr "Mettre Ć  jour la source de journal" - -#: ../../enterprise/include/class/Aws.S3.php:60 -msgid "Aws S3" -msgstr "Aws S3" - -#: ../../enterprise/include/class/Aws.S3.php:214 -msgid "You must select something." -msgstr "SĆ©lectionnez quelque Ć©lĆ©ment." - -#: ../../enterprise/include/class/Aws.S3.php:236 -msgid "Discovery.Cloud.AWS.S3" -msgstr "Discovery.Cloud.AWS.S3" - -#: ../../enterprise/include/class/Aws.S3.php:294 -msgid "Unknown task" -msgstr "Tache inconnue" - -#: ../../enterprise/include/class/Aws.S3.php:313 -msgid "Unknown section." -msgstr "Section inconnue." - -#: ../../enterprise/include/class/Aws.S3.php:339 -msgid "S3" -msgstr "S3" - -#: ../../enterprise/include/class/Aws.S3.php:344 -msgid "Bucket monitoring" -msgstr "Supervision des compartiments" - -#: ../../enterprise/include/class/Aws.S3.php:454 -msgid "No buckets found." -msgstr "Aucun compartiment trouvĆ©s." - -#: ../../enterprise/include/class/Aws.S3.php:598 -msgid "Select Buckets to be monitored" -msgstr "SĆ©lectionner compartiments Ć  superviser" - -#: ../../enterprise/include/class/Aws.S3.php:633 -msgid "Monitor bucket size" -msgstr "Superviser la taille du compartiment" - -#: ../../enterprise/include/class/Aws.S3.php:643 -msgid "Monitor bucket total items" -msgstr "Superviser tous les Ć©lĆ©ments du compartiment" - -#: ../../enterprise/include/class/MySQL.app.php:173 -msgid "" -"This MySQL configuration has been already defined. Please edit it or create a " -"new one." -msgstr "" -"Cette configuration MySQL est dĆ©jĆ  dĆ©finie. Veuillez l'Ć©diter ou crĆ©er une " -"autre nouvelle." - -#: ../../enterprise/include/class/MySQL.app.php:216 -msgid "You must provide a valid MySQL server IP or FQDN." -msgstr "vous devez fournir une IP de serveur MySQL ou FQDN valide." - -#: ../../enterprise/include/class/MySQL.app.php:221 -msgid "You must provide a valid port number." -msgstr "Vous devez fournir un nĆŗmero de port valide." - -#: ../../enterprise/include/class/MySQL.app.php:233 -msgid "Discovery.Application.MySQL" -msgstr "Discovery.Application.MySQL" - -#: ../../enterprise/include/class/MySQL.app.php:285 -msgid "Failed to find discovery MySQL task." -msgstr "La tache MySQL n'a pas Ć©tĆ© trouvĆ©e." - -#: ../../enterprise/include/class/MySQL.app.php:420 -#: ../../enterprise/godmode/setup/setup.php:178 -msgid "MySQL" -msgstr "MySQL" - -#: ../../enterprise/include/class/MySQL.app.php:491 -msgid "MySQL server IP" -msgstr "IP du serveur MySQL" - -#: ../../enterprise/include/class/MySQL.app.php:492 -msgid "Comma separated, as many targets as you need." -msgstr "SĆ©parĆ©s par des virgules, aussi de cibles que vous souhaitez." - -#: ../../enterprise/include/class/MySQL.app.php:511 -msgid "MySQL server Port" -msgstr "Port du serveur MySQL" - -#: ../../enterprise/include/class/MySQL.app.php:657 -msgid "" -"Defines a target agent where this task will store data detected, if you have " -"defined multiple targets, define a comma separated list of names here or leave " -"in blank to use server IP address/ FQDN." -msgstr "" -"Il dĆ©finit un agent cible oĆ¹ cette tache stockera des donnĆ©es dĆ©tectĆ©es, si " -"vous avez dĆ©fini plus de cibles. dĆ©finissez une liste de noms sĆ©parĆ©s par des " -"virgules ici ou laissez-le vide pour utiliser le serveur adresse IP/FQDN." - -#: ../../enterprise/include/class/MySQL.app.php:698 -msgid "Scan databases" -msgstr "Scanner des basses des donnĆ©es" - -#: ../../enterprise/include/class/MySQL.app.php:714 -msgid "Create agent per database" -msgstr "CrĆ©er un agent par base de donnĆ©es" - -#: ../../enterprise/include/class/MySQL.app.php:735 -msgid "Custom database agent prefix" -msgstr "PrĆ©fixe d'agent de base de donnĆ©es personnalisĆ©e" - -#: ../../enterprise/include/class/MySQL.app.php:736 -msgid "" -"Defines a custom prefix to be concatenated before database agent names " -"generated by this task." -msgstr "" -"Il dĆ©finit un prĆ©fixe personnalisĆ© pour le concatĆ©ner avant les noms des " -"agents de la base de donnĆ©es gĆ©nĆ©rĆ©s par cette tache." - -#: ../../enterprise/include/class/MySQL.app.php:805 -msgid "Retrieve InnoDB statistics" -msgstr "Recueillir les statistiques InnoDB" - -#: ../../enterprise/include/class/MySQL.app.php:821 -#: ../../enterprise/include/class/Oracle.app.php:760 -#: ../../enterprise/include/class/DB2.app.php:737 -msgid "Retrieve cache statistics" -msgstr "RĆ©cupĆ©rer statistique du cachĆ©" - -#: ../../enterprise/include/class/Oracle.app.php:172 -msgid "" -"This Oracle configuration has been already defined. Please edit it or create a " -"new one." -msgstr "" -"Cette configuration Oracle a dĆ©jĆ  Ć©tĆ© dĆ©finie. Veuillez Ć©diter ou en crĆ©er une " -"nouvelle." - -#: ../../enterprise/include/class/Oracle.app.php:214 -msgid "You must provide a valid Oracle server IP or FQDN." -msgstr "Vous devez fournir une IP de serveur Oracle ou FQDN valide." - -#: ../../enterprise/include/class/Oracle.app.php:226 -msgid "Discovery.Application.Oracle" -msgstr "Discovery.Application.Oracle" - -#: ../../enterprise/include/class/Oracle.app.php:277 -msgid "Failed to find discovery Oracle task." -msgstr "Erreur en trouvant la tache Oracle discovery." - -#: ../../enterprise/include/class/Oracle.app.php:411 -#: ../../enterprise/godmode/setup/setup.php:179 -#: ../../enterprise/godmode/menu.php:175 -msgid "Oracle" -msgstr "Oracle" - -#: ../../enterprise/include/class/Oracle.app.php:493 -msgid "Oracle target strings" -msgstr "ChaĆ®nes cibles Oracle" - -#: ../../enterprise/include/class/Oracle.app.php:494 -msgid "" -"SERVER:PORT/SID, comma separated or line by line, as many targets as you need." -msgstr "" -"SERVER:PORT/SID, sĆ©parĆ©s par des virgules ou ligne par ligne, aussi de cibles " -"que vous voulez." - -#: ../../enterprise/include/class/Oracle.app.php:728 -msgid "Calculate fragmentation ratio" -msgstr "Calculer le ratio de fragmentation" - -#: ../../enterprise/include/class/Oracle.app.php:744 -msgid "Monitor tablespaces" -msgstr "Superviser les tablespaces" - -#: ../../enterprise/include/class/DB2.app.php:165 -msgid "" -"This DB2 configuration has been already defined. Please edit it or create a " -"new one." -msgstr "" -"Cette configuration DB2 est dĆ©jĆ  dĆ©finie. Veuillez l'Ć©diter ou en crĆ©er une " -"nouvelle." - -#: ../../enterprise/include/class/DB2.app.php:207 -msgid "You must provide a valid DB2 server IP or FQDN." -msgstr "Vous devez fournir un serveur IP DB2 ou FQDN valide." - -#: ../../enterprise/include/class/DB2.app.php:219 -msgid "Discovery.Application.DB2" -msgstr "Discovery.Application.DB2" - -#: ../../enterprise/include/class/DB2.app.php:270 -msgid "Failed to find discovery DB2 task." -msgstr "Erreur pour trouver la tache DB2." - -#: ../../enterprise/include/class/DB2.app.php:404 -#: ../../enterprise/godmode/menu.php:178 -msgid "DB2" -msgstr "DB2" - -#: ../../enterprise/include/class/DB2.app.php:486 -msgid "DB2 target strings" -msgstr "ChaĆ®nes cibles DB2" - -#: ../../enterprise/include/class/DB2.app.php:487 -msgid "" -"SERVER:PORT/DATABASE, comma separated or line by line, as many targets as you " -"need." -msgstr "" -"SERVER:PORT/DATABASE, sĆ©parĆ©s par des virgules ou ligne par ligne, aussi " -"d'agents dont vous avez besoin." - -#: ../../enterprise/include/class/DB2.app.php:673 -msgid "Get database summary" -msgstr "Obtenir rĆ©sumĆ© de la base de donnĆ©es" - -#: ../../enterprise/include/class/DB2.app.php:689 -msgid "Check transactional log utilization" -msgstr "VĆ©rifier usage de journaux transactionnels" - -#: ../../enterprise/include/class/DB2.app.php:705 -msgid "Get number of connections" -msgstr "Obtenir nombre de connexions" - -#: ../../enterprise/include/class/DB2.app.php:721 -msgid "Check DB size" -msgstr "VĆ©rifier la taille de Base de donnĆ©es" - -#: ../../enterprise/include/class/SAP.app.php:154 -msgid "" -"This SAP configuration has been already defined. Please edit it or create a " -"new one." -msgstr "" -"Cette configuration SAP a Ć©tĆ© dĆ©finie dĆ©jĆ . Veuillez l'Ć©diter ou en crĆ©er une " -"nouvelle." - -#: ../../enterprise/include/class/SAP.app.php:195 -msgid "You must specify at last one SAP hostname." -msgstr "SpĆ©cifiez au moins un nom d'hĆ“te SAP" - -#: ../../enterprise/include/class/SAP.app.php:206 -msgid "Discovery.Application.SAP" -msgstr "Discovery.Application.SAP" - -#: ../../enterprise/include/class/SAP.app.php:262 -msgid "Failed to find discovery SAP task." -msgstr "Erreur en trouvant la tache SAP de dĆ©couverte." - -#: ../../enterprise/include/class/SAP.app.php:286 -msgid "Select at least a module." -msgstr "SĆ©lectionnez au moins un module." - -#: ../../enterprise/include/class/SAP.app.php:354 -msgid "SAP R3" -msgstr "SAP R3" - -#: ../../enterprise/include/class/SAP.app.php:371 -#: ../../enterprise/include/class/DeploymentCenter.class.php:482 -#: ../../enterprise/include/class/DeploymentCenter.class.php:490 -#: ../../enterprise/include/class/DeploymentCenter.class.php:498 -#: ../../enterprise/include/class/DeploymentCenter.class.php:657 -#: ../../enterprise/extensions/vmware/vmware_view.php:1737 -msgid "here" -msgstr "ici" - -#: ../../enterprise/include/class/SAP.app.php:547 -msgid "SAP Hostname" -msgstr "Nom d'hĆ“te SAP" - -#: ../../enterprise/include/class/SAP.app.php:571 -msgid "SAP Client" -msgstr "Client SAP" - -#: ../../enterprise/include/class/SAP.app.php:585 -msgid "SAP System Number" -msgstr "NĆŗmero de systĆØme SAP" - -#: ../../enterprise/include/class/SAP.app.php:604 -#: ../../enterprise/include/class/SAP.app.php:607 -#: ../../enterprise/include/class/DeploymentCenter.class.php:1135 -#: ../../enterprise/include/class/DeploymentCenter.class.php:1138 -#: ../../enterprise/include/class/DeploymentCenter.class.php:1265 -#: ../../enterprise/include/class/DeploymentCenter.class.php:1268 -#: ../../godmode/wizards/HostDevices.class.php:1434 -#: ../../godmode/wizards/HostDevices.class.php:1437 -msgid "No credentials available" -msgstr "Pas d'identifiants disponibles" - -#: ../../enterprise/include/class/SAP.app.php:605 -#: ../../enterprise/include/class/DeploymentCenter.class.php:1136 -#: ../../enterprise/include/class/DeploymentCenter.class.php:1266 -#: ../../godmode/wizards/HostDevices.class.php:1435 -#: ../../godmode/agentes/module_manager_editor_network.php:474 -msgid "Manage credentials" -msgstr "GĆ©rer des identifiants" - -#: ../../enterprise/include/class/SAP.app.php:617 -#: ../../enterprise/include/class/SAP.app.php:631 -msgid "SAP Credentials" -msgstr "Identifiants SAP" - -#: ../../enterprise/include/class/SAP.app.php:617 -#: ../../enterprise/include/class/SAP.app.php:631 -msgid "Optional" -msgstr "Optionnel" - -#: ../../enterprise/include/class/SAP.app.php:764 -#, php-format -msgid "" -"Module 180 must be customized before being used, please use advanced options " -"to define the module following the documentation:
    %s" -msgstr "" -"Le module 180 doit ĆŖtre personnalisĆ©e avant de l'utiliser, veuillez utiliser " -"les options avancĆ©es pour dĆ©finir la documentation suivante :
    %s" - -#: ../../enterprise/include/class/SAP.app.php:785 -msgid "Available modules" -msgstr "Modules disponibles" - -#: ../../enterprise/include/class/SAP.app.php:821 -msgid "Add monitors" -msgstr "Ajouter des moniteurs" - -#: ../../enterprise/include/class/SAP.app.php:834 -msgid "Remove monitors" -msgstr "Ɖliminer des moniteurs" - -#: ../../enterprise/include/class/SAP.app.php:845 -#: ../../enterprise/godmode/massive/massive_edit_service_elements.php:350 -#: ../../enterprise/godmode/massive/massive_delete_service_elements.php:241 -#: ../../enterprise/godmode/massive/massive_add_service_elements.php:594 -#: ../../enterprise/godmode/massive/massive_create_services.php:1235 -msgid "Selected modules" -msgstr "Modules sĆ©lectionnes" - -#: ../../enterprise/include/class/SAP.app.php:885 -msgid "Define your custom SAP modules." -msgstr "DĆ©finissez vos modules SAP personnalisĆ©s." - -#: ../../enterprise/include/class/SAP.app.php:884 -msgid "Advanced module configuration" -msgstr "Configuration de module avancĆ©e" - -#: ../../enterprise/include/class/SAP.app.php:894 -msgid "Custom module definitions" -msgstr "DĆ©finitions des modules personnalisĆ©s" - -#: ../../enterprise/include/class/SAP.app.php:895 -msgid "" -"Each line is a module definition using following format: module name ; " -"module_type ; SAP check definition." -msgstr "" -"chaque ligne est une dĆ©finition de module utilisant le format suivant : nom de " -"module ; type de module ; dĆ©finition de vĆ©rification SAP" - -#: ../../enterprise/include/class/ManageBackups.class.php:106 -#, php-format -msgid "%s database backup manager" -msgstr "gestionnaire de sauvegarde de base de donnĆ©es %s" - -#: ../../enterprise/include/class/ManageBackups.class.php:129 -#, php-format -msgid "" -"To schedule a periodic (or one-time) backup task you can do it through %s." -msgstr "" -"Pour planifier une tĆ¢che de sauvegarde pĆ©riodique (ou unique), vous pouvez " -"lā€™effectuer via %s." - -#: ../../enterprise/include/class/ManageBackups.class.php:189 -msgid "Path backups" -msgstr "Sauvegardes de chemins dā€™accĆØs" - -#: ../../enterprise/include/class/ManageBackups.class.php:314 -msgid "Rollback to this backup" -msgstr "Revenir Ć  cette sauvegarde" - -#: ../../enterprise/include/class/ManageBackups.class.php:323 -msgid "Lost" -msgstr "Perdu" - -#: ../../enterprise/include/class/ManageBackups.class.php:330 -msgid "In Progress" -msgstr "En cours" - -#: ../../enterprise/include/class/ManageBackups.class.php:361 -msgid "The backup was successfully deleted" -msgstr "La sauvegarde a Ć©tĆ© supprimĆ©e avec succĆØs" - -#: ../../enterprise/include/class/ManageBackups.class.php:367 -msgid "Missed id parameter" -msgstr "ParamĆØtre ID manquĆ©" - -#: ../../enterprise/include/class/ManageBackups.class.php:386 -msgid "Something was wrong with the rollback action." -msgstr "Une erreur sā€™est produite lors de lā€™action de restauration." - -#: ../../enterprise/include/class/ManageBackups.class.php:389 -msgid "Missed id parameter." -msgstr "ParamĆØtre ID manquĆ©." - -#: ../../enterprise/include/class/ManageBackups.class.php:437 -msgid "" -"Are you sure you want to delete this database backup file? Once deleted you " -"will not be able to recover it." -msgstr "" -"Voulez-vous vraiment supprimer ce fichier de sauvegarde de base de donnĆ©es ? " -"Une fois supprimĆ©, vous ne pourrez pas le rĆ©cupĆ©rer." - -#: ../../enterprise/include/class/ManageBackups.class.php:439 -msgid "Do you like perform a database restoration?" -msgstr "Aimez-vous effectuer une restauration de base de donnĆ©es?" - -#: ../../enterprise/include/class/Omnishell.class.php:214 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:414 -msgid "Please follow the wizard." -msgstr "Veuillez suivre l'assistant." - -#: ../../enterprise/include/class/Omnishell.class.php:226 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:427 -msgid "You have no acess to edit this command." -msgstr "Vous n'avez pas d'accĆØs Ć  l'Ć©dition de cette commande." - -#: ../../enterprise/include/class/Omnishell.class.php:261 -msgid "Failed to save command." -msgstr "Erreur lors de la sauvegarde du commande." - -#: ../../enterprise/include/class/Omnishell.class.php:272 -msgid "Command not found." -msgstr "Commande non trouvĆ©e." - -#: ../../enterprise/include/class/Omnishell.class.php:349 -#: ../../enterprise/include/class/Omnishell.class.php:610 -msgid "You must install php-yaml in order to use this feature." -msgstr "Installez php-yaml pour utiliser cette fonctionnalitĆ©." - -#: ../../enterprise/include/class/Omnishell.class.php:362 -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:4081 -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:4202 -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:4362 -#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:543 -#: ../../enterprise/meta/advanced/policymanager.queue.php:261 -#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:443 -#: ../../enterprise/godmode/policies/policy_queue.php:671 -#: ../../enterprise/godmode/policies/policy_queue.php:674 -msgid "Finished" -msgstr "TerminĆ©" - -#: ../../enterprise/include/class/Omnishell.class.php:363 -#: ../../enterprise/include/class/Omnishell.class.php:1087 -#: ../../enterprise/include/class/DatabaseHA.class.php:214 -#: ../../godmode/wizards/DiscoveryTaskList.class.php:1845 -msgid "Pending" -msgstr "En attente" - -#: ../../enterprise/include/class/Omnishell.class.php:364 -msgid "Not Started" -msgstr "Non dĆ©marrĆ©" - -#: ../../enterprise/include/class/Omnishell.class.php:401 -#: ../../enterprise/include/functions_ipam.php:1411 -#: ../../enterprise/include/functions_ipam.php:1418 -#: ../../enterprise/include/functions_ipam.php:1423 -#: ../../enterprise/meta/advanced/policymanager.queue.php:260 -#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:702 -#: ../../enterprise/godmode/policies/policy_queue.php:650 -#: ../../godmode/wizards/DiscoveryTaskList.class.php:606 -msgid "Progress" -msgstr "En cours" - -#: ../../enterprise/include/class/Omnishell.class.php:442 -msgid "Commands status" -msgstr "Ɖtat des commandes" - -#: ../../enterprise/include/class/Omnishell.class.php:487 -msgid "Create command" -msgstr "CrĆ©er commande" - -#: ../../enterprise/include/class/Omnishell.class.php:506 -msgid "Selected command definitions will be erased" -msgstr "Las dĆ©finitions de la commande sĆ©lectionnĆ©e seront Ć©liminĆ©es" - -#: ../../enterprise/include/class/Omnishell.class.php:688 -msgid "Time out" -msgstr "Time out" - -#: ../../enterprise/include/class/Omnishell.class.php:697 -msgid "Retries " -msgstr "Tentatives " - -#: ../../enterprise/include/class/Omnishell.class.php:708 -msgid "Preconditions " -msgstr "Conditions prĆ©alables " - -#: ../../enterprise/include/class/Omnishell.class.php:709 -msgid "All commands defined line per line must success to execute main commands" -msgstr "" -"Toutes les commandes dĆ©finies ligne par ligne doivent succĆ©der pour exĆ©cuter " -"les commandes principales" - -#: ../../enterprise/include/class/Omnishell.class.php:721 -msgid "Execute commands " -msgstr "ExĆ©cuter les commandes " - -#: ../../enterprise/include/class/Omnishell.class.php:722 -msgid "Define as many lines as commands you want to execute" -msgstr "DĆ©finissez aussi de lignes que commandes vous voulez exĆ©cuter" - -#: ../../enterprise/include/class/Omnishell.class.php:734 -msgid "Postconditions " -msgstr "Post-conditions " - -#: ../../enterprise/include/class/Omnishell.class.php:735 -msgid "" -"All commands defined line per line must success to consider command success" -msgstr "" -"Toutes les commandes dĆ©finies ligne par ligne doivent succĆ©der pour considerer " -"le succĆØs de la commande" - -#: ../../enterprise/include/class/Omnishell.class.php:825 -#: ../../enterprise/include/class/Omnishell.class.php:904 -#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:264 -#: ../../enterprise/godmode/reporting/graph_template_wizard.php:217 -#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:391 -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:749 -#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:239 -#: ../../enterprise/godmode/policies/policy_agents.php:499 -#: ../../enterprise/godmode/policies/policy_agents.php:513 -msgid "Filter agent" -msgstr "Filtrer l'agent" - -#: ../../enterprise/include/class/Omnishell.class.php:835 -#: ../../godmode/agentes/planned_downtime.editor.php:805 -msgid "Available agents" -msgstr "Agents disponibles" - -#: ../../enterprise/include/class/Omnishell.class.php:867 -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:857 -msgid "Add agents" -msgstr "Ajouter des agents" - -#: ../../enterprise/include/class/Omnishell.class.php:880 -msgid "Remove agents" -msgstr "Ɖliminer des agents" - -#: ../../enterprise/include/class/Omnishell.class.php:915 -#: ../../enterprise/godmode/massive/massive_edit_service_elements.php:335 -#: ../../enterprise/godmode/massive/massive_delete_service_elements.php:226 -#: ../../enterprise/godmode/massive/massive_add_service_elements.php:579 -#: ../../enterprise/godmode/massive/massive_create_services.php:1220 -msgid "Selected agents" -msgstr "Agents sĆ©lectionnĆ©s" - -#: ../../enterprise/include/class/Omnishell.class.php:1157 -msgid "Selected command definition will be erased" -msgstr "La dĆ©finition de la commande sĆ©lectionnĆ©e sera Ć©liminĆ©e" - -#: ../../enterprise/include/class/Omnishell.class.php:1243 -msgid "Command viewer" -msgstr "Lecteur de commandes" - -#: ../../enterprise/include/class/Omnishell.class.php:1251 -msgid "Detailed view" -msgstr "Vue dĆ©taillĆ©e" - -#: ../../enterprise/include/class/Omnishell.class.php:1392 -msgid "Not an array of ids" -msgstr "Pas un tableau dā€™IDs" - -#: ../../enterprise/include/class/Omnishell.class.php:1450 -msgid "There are no targets for this remote command" -msgstr "Il n'y a pas de cibles pour cette commande distante" - -#: ../../enterprise/include/class/Omnishell.class.php:1457 -msgid "Command does not exist" -msgstr "La commande n'existe pas" - -#: ../../enterprise/include/class/Omnishell.class.php:1553 -#: ../../enterprise/include/lib/Metaconsole/Node.php:141 -#: ../../enterprise/include/lib/Metaconsole/Node.php:190 -#: ../../enterprise/include/lib/Metaconsole/Node.php:241 -#: ../../enterprise/include/lib/Metaconsole/Node.php:336 -#: ../../enterprise/include/lib/Metaconsole/Node.php:389 -#: ../../enterprise/meta/advanced/metasetup.consoles.php:99 -msgid "success" -msgstr "rĆ©ussi" - -#: ../../enterprise/include/class/Omnishell.class.php:1556 -msgid "timed out" -msgstr "timed out" - -#: ../../enterprise/include/class/Omnishell.class.php:1559 -msgid "failed" -msgstr "Ć©chouĆ©" - -#: ../../enterprise/include/class/Omnishell.class.php:1575 -msgid "Waiting results..." -msgstr "En attendant des rĆ©sultats..." - -#: ../../enterprise/include/class/Omnishell.class.php:1594 -msgid "RCMD does not exist" -msgstr "Le RCMD n'existe pas" - -#: ../../enterprise/include/class/VMware.app.php:230 -msgid "" -"This VMware configuration has been already defined. Please edit it or create a " -"new one." -msgstr "" -"La configuration VMware est dĆ©jĆ  dĆ©finie. Veuillez l'Ć©diter ou en crĆ©er une " -"nouvelle." - -#: ../../enterprise/include/class/VMware.app.php:274 -msgid "You must provide a valid V-Center IP or FQDN." -msgstr "Fournissez une IP ou FQDN V-Center valide" - -#: ../../enterprise/include/class/VMware.app.php:291 -msgid "Discovery.Application.VMware" -msgstr "Discovery.Application.VMware" - -#: ../../enterprise/include/class/VMware.app.php:310 -msgid "Please select a valid group" -msgstr "SĆ©lectionnez un groupe valide" - -#: ../../enterprise/include/class/VMware.app.php:369 -msgid "Failed to find discovery VMware task." -msgstr "Erreur en trouvant la tache VMware." - -#: ../../enterprise/include/class/VMware.app.php:384 -msgid "Threads must be equal or greater than 1." -msgstr "Les fils doivent ĆŖtre Ć©gales ou supĆ©rieurs Ć  1." - -#: ../../enterprise/include/class/VMware.app.php:503 -#: ../../enterprise/godmode/menu.php:176 -msgid "VMware" -msgstr "VMware" - -#: ../../enterprise/include/class/VMware.app.php:656 -msgid "Datacenter user" -msgstr "Utilisateur du centre de traitement de donnĆ©es" - -#: ../../enterprise/include/class/VMware.app.php:707 -msgid "V-Center IP" -msgstr "Adresse IP vCenter" - -#: ../../enterprise/include/class/VMware.app.php:718 -msgid "Datacenter name" -msgstr "Nom du centre de traitement de donnĆ©es" - -#: ../../enterprise/include/class/VMware.app.php:719 -msgid "" -"This name must match with the name wich appears when you log in you VMware " -"manager" -msgstr "" -"Ce nom doit correspondre le nom qu'il a lorsque vous vous connectez Ć  VMware " -"manager" - -#: ../../enterprise/include/class/VMware.app.php:749 -msgid "Encrypt passwords" -msgstr "Chiffrer les mots de passe" - -#: ../../enterprise/include/class/VMware.app.php:870 -msgid "Max threads" -msgstr "Fils maximales" - -#: ../../enterprise/include/class/VMware.app.php:879 -msgid "Re-scan interval" -msgstr "Re-scanner l'intervalle" - -#: ../../enterprise/include/class/VMware.app.php:880 -msgid "Enables re-scan entities process every interval defined." -msgstr "Permet de traiter Ć  nouveau les entitĆ©s Ć  chaque intervalle dĆ©fini." - -#: ../../enterprise/include/class/VMware.app.php:913 -msgid "Retry send" -msgstr "RĆ©essayer l'envoi" - -#: ../../enterprise/include/class/VMware.app.php:923 -msgid "Event mode" -msgstr "Mode d'Ć©vĆ©nement" - -#: ../../enterprise/include/class/VMware.app.php:923 -msgid "Only for VCenter." -msgstr "Seulement pour VCenter." - -#: ../../enterprise/include/class/VMware.app.php:933 -msgid "Virtual network monitoring" -msgstr "Supervision rĆ©seau virtuel" - -#: ../../enterprise/include/class/VMware.app.php:964 -msgid "Extra settings" -msgstr "Configurations complĆ©mentaires" - -#: ../../enterprise/include/class/VMware.app.php:965 -msgid "This RAW block will be directly added to config file." -msgstr "Ce bloc RAW sera directement ajoutĆ© au fichier de configuration." - -#: ../../enterprise/include/class/VMware.app.php:1259 -msgid "Include datastores" -msgstr "Inclure des banques de donnĆ©es" - -#: ../../enterprise/include/class/VMware.app.php:1269 -msgid "Include datacenters" -msgstr "Inclure les centres de donnĆ©es" - -#: ../../enterprise/include/class/VMware.app.php:1279 -msgid "Include esxs" -msgstr "Inclure esxs" - -#: ../../enterprise/include/class/VMware.app.php:1289 -msgid "Include vms" -msgstr "Inclure les machines virtuelles" - -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:473 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:532 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:591 -msgid "Alert not found." -msgstr "Alerte non trouvĆ©e." - -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:480 -msgid "Invalid json data" -msgstr "DonnĆ©es json non valides" - -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:575 -msgid "Rules updated." -msgstr "RĆØgles mises Ć  jour." - -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:578 -msgid "JSON decoding error. Please call support." -msgstr "Erreur de dĆ©codage de JSON. Veuillez appeler support." - -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:630 -msgid "There was a problem creating Action. You must select an action" -msgstr "" -"Il y a eu un problĆØme lors de la crĆ©ation de lā€™action. SĆ©lectionnez une action" - -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:899 -msgid "Pass" -msgstr "Passer" - -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:900 -msgid "Drop" -msgstr "LĆ¢cher" - -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:926 -msgid "Module alert" -msgstr "Alerte de module" - -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:946 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2020 -msgid "Load from template" -msgstr "TĆ©lĆ©charger depuis le modĆØle" - -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:963 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2199 -#: ../../godmode/alerts/configure_alert_template.php:625 -#: ../../godmode/alerts/alert_view.php:258 -msgid "Use special days list" -msgstr "Utiliser la liste de jours spĆ©ciaux" - -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:980 -#: ../../godmode/alerts/configure_alert_template.php:661 -msgid "Schedule" -msgstr "Planifier" - -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:983 -#: ../../godmode/alerts/configure_alert_template.php:665 -msgid "No alert has been scheduled yet" -msgstr "Aucune alerte nā€™a encore Ć©tĆ© programmĆ©e" - -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1005 -msgid "Execute alert" -msgstr "ExĆ©cuter l'alerte" - -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1008 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3459 -msgid "from" -msgstr "depuis" - -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1028 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3477 -msgid "times in" -msgstr "fois dans" - -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1038 -msgid "threshold" -msgstr "seuil" - -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1048 -msgid "Rule evaluation mode" -msgstr "Mode d'Ć©valuation de rĆØgles" - -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1048 -msgid "Pass - All alerts are evaluated. Drop - It stops when 1 alert matches." -msgstr "" -"Passer - Toutes les alertes sont Ć©valuĆ©es. LĆ¢cher - Il s'arrĆŖte lorsqu'une " -"alerte correspond." - -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1065 -msgid "Grouped by" -msgstr "GroupĆ© par" - -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1082 -#: ../../enterprise/godmode/alerts/alert_inventory_builder.php:270 -#: ../../godmode/snmpconsole/snmp_alert.php:1130 -#: ../../godmode/alerts/configure_alert_template.php:749 -msgid "Disable event" -msgstr "DĆ©sactiver lā€™Ć©vĆ©nement" - -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1204 -msgid "" -"The templates shown are only for correlative alerts, event alert (legacy) will " -"be deprecated in the future" -msgstr "" -"Les modĆØles montrĆ©s sont seulement pour les alertes correlatives, l'alerte " -"d'Ć©vĆ©nement (legacy) sera obsolĆØte Ć  l'avenir" - -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1214 -msgid "Available items" -msgstr "ƉlĆ©ments disponibles" - -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1215 -msgid "Block" -msgstr "Bloc" - -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1263 -#: ../../enterprise/include/lib/AlertCorrelation.class.php:1044 -msgid "Log content" -msgstr "Contenu du journal" - -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1268 -#: ../../enterprise/include/lib/AlertCorrelation.class.php:1047 -msgid "Log source" -msgstr "Source du journal" - -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1273 -#: ../../enterprise/include/lib/AlertCorrelation.class.php:1050 -msgid "Log agent" -msgstr "Agent du journal" - -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1331 -#: ../../enterprise/include/lib/AlertCorrelation.class.php:1056 -msgid "Event content" -msgstr "Contenu de l'Ć©vĆ©nement" - -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1336 -#: ../../enterprise/include/lib/AlertCorrelation.class.php:1053 -msgid "Event user comment" -msgstr "Commentaire d'utilisateur d'Ć©vĆ©nement" - -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1341 -#: ../../enterprise/include/lib/AlertCorrelation.class.php:1059 -msgid "Event agent" -msgstr "Agent de l'Ć©vĆ©nement" - -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1346 -#: ../../enterprise/include/lib/AlertCorrelation.class.php:1062 -msgid "Event module" -msgstr "Module de l'Ć©vĆ©nement" - -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1351 -#: ../../enterprise/include/lib/AlertCorrelation.class.php:1065 -msgid "Event module alerts" -msgstr "Alertes des modules d'Ć©vĆ©nements" - -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1356 -#: ../../enterprise/include/lib/AlertCorrelation.class.php:1068 -msgid "Event group" -msgstr "Groupe d'Ć©vĆ©nements" - -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1362 -msgid "Event group (recursive)" -msgstr "Group d'Ć©vĆ©nements" - -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1368 -#: ../../enterprise/include/lib/AlertCorrelation.class.php:1074 -msgid "Event severity" -msgstr "SĆ©vĆ©ritĆ© de l'Ć©vĆ©nement" - -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1373 -#: ../../enterprise/include/lib/AlertCorrelation.class.php:1077 -msgid "Event tag" -msgstr "Ɖtiquette de l'Ć©vĆ©nement" - -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1378 -#: ../../enterprise/include/lib/AlertCorrelation.class.php:1080 -msgid "Event user" -msgstr "Utilisateur de l'Ć©vĆ©nement" - -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1408 -msgid "Operators" -msgstr "OpĆ©rateurs" - -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1413 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1457 -#: ../../enterprise/include/lib/AlertCorrelation.class.php:1393 -msgid "greater than" -msgstr "supĆ©rieur Ć " - -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1418 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1461 -#: ../../enterprise/include/lib/AlertCorrelation.class.php:1397 -#: ../../enterprise/include/lib/AlertCorrelation.class.php:1405 -msgid "less than" -msgstr "infĆ©rieur Ć " - -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1423 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1465 -#: ../../enterprise/include/lib/AlertCorrelation.class.php:1401 -msgid "greater or equal than" -msgstr "supĆ©rieur ou Ć©gal Ć " - -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1428 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1469 -msgid "less or equal than" -msgstr "infĆ©rieur ou Ć©gal Ć " - -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1433 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1473 -#: ../../enterprise/include/lib/AlertCorrelation.class.php:1409 -msgid "is equal" -msgstr "est Ć©gal" - -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1438 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1477 -#: ../../enterprise/include/lib/AlertCorrelation.class.php:1413 -msgid "is different" -msgstr "est diffĆ©rent" - -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1443 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1481 -#: ../../enterprise/include/lib/AlertCorrelation.class.php:1417 -msgid "is like (regex)" -msgstr "est comme" - -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1448 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1485 -#: ../../enterprise/include/lib/AlertCorrelation.class.php:1421 -msgid "is not like (regex)" -msgstr "n'est pas comme (regex)" - -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1518 -msgid "Modifiers" -msgstr "Modificateurs" - -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1523 -msgid "within an interval (seconds)" -msgstr "dans un intervalle (secondes)" - -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1528 -msgid "repeated at least" -msgstr "rĆ©pĆ©tĆ© au moins" - -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1568 -msgid "Matches on both true" -msgstr "Concordances dans les deux vraies" - -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1574 -msgid "Matches when any is false" -msgstr "Concordances lorsqu'un est faux" - -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1580 -msgid "Matches on any true" -msgstr "Concordances dans n'importe quel vrai" - -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1586 -msgid "Matches when both are false" -msgstr "Concordances lorsque les deux sont faux" - -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1592 -msgid "Matches when only one is true" -msgstr "Concordances lorsque seulement un est vrai" - -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1598 -msgid "Matches when both are either true or false" -msgstr "Concordances lorsque les deux sont vrais ou faux" - -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1634 -msgid "Rule definition" -msgstr "DĆ©finition de rĆØgles" - -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1923 -msgid "Remove rule" -msgstr "Supprimer la rĆØgle" - -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1934 -msgid "Remove item" -msgstr "Supprimer lā€™Ć©lĆ©ment" - -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1945 -#: ../../enterprise/include/functions_HA_cluster.php:64 -msgid "Cleanup" -msgstr "Nettoyage" - -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2046 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2691 -#: ../../godmode/alerts/configure_alert_template.php:928 -#: ../../godmode/alerts/alert_commands.php:100 -#: ../../godmode/alerts/alert_commands.php:105 -#: ../../godmode/alerts/alert_commands.php:121 -#: ../../godmode/alerts/alert_commands.php:127 -#: ../../godmode/alerts/alert_view.php:484 -#: ../../godmode/alerts/alert_view.php:603 -#, php-format -msgid "Field %s" -msgstr "Champ %s" - -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2113 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2115 -msgid "Triggering Condition" -msgstr "condition de dĆ©clenchement" - -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2203 -#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:122 -#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:313 -#: ../../enterprise/godmode/alerts/alert_inventory_builder.php:230 -#: ../../godmode/snmpconsole/snmp_alert.php:1083 -#: ../../godmode/alerts/configure_alert_template.php:676 -#: ../../godmode/alerts/alert_templates.php:91 -#: ../../godmode/alerts/alert_view.php:262 -msgid "Time threshold" -msgstr "Seuil de temps" - -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2208 -#: ../../godmode/alerts/alert_view.php:266 -msgid "Number of alerts" -msgstr "Nombre d'alertes" - -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2296 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2559 -#: ../../godmode/alerts/alert_view.php:403 -#: ../../godmode/alerts/configure_alert_action.php:305 -msgid "Firing" -msgstr "DĆ©clenchement en cours" - -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2411 -msgid "There are no defined actions for this alert" -msgstr "Il n'y a pas des actions dĆ©finis pour cette alerte" - -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2482 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3456 -msgid "Number of alerts match" -msgstr "Nombre d'alertes concordantes" - -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2560 -#: ../../godmode/alerts/alert_view.php:404 -msgid "Recovering" -msgstr "RĆ©cupĆ©ration en cours" - -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2577 -msgid "" -"Select the desired action and mode to view the Triggering fields for this " -"action" -msgstr "" -"SĆ©lectionnez l'action dĆ©chirĆ©e et mode Ć  la vue de Champs de dĆ©clenchement " -"pour cette action" - -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2594 -#: ../../godmode/alerts/alert_view.php:395 -msgid "Select the action" -msgstr "SĆ©lectionner l'action" - -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2652 -#: ../../godmode/alerts/configure_alert_template.php:918 -#: ../../godmode/alerts/alert_view.php:435 -#: ../../godmode/alerts/alert_view.php:569 -msgid "Firing fields" -msgstr "Champs de dĆ©clenchement" - -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2654 -#: ../../godmode/alerts/alert_view.php:437 -msgid "" -"Fields passed to the command executed by this action when the alert is fired" -msgstr "" -"Champs transfĆ©rĆ©s Ć  la commande exĆ©cutĆ©e par cette action lorsque l'alerte est " -"dĆ©clenchĆ©e" - -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2660 -#: ../../godmode/alerts/alert_view.php:443 -#: ../../godmode/alerts/alert_view.php:566 -msgid "Fields configured on the command associated to the action" -msgstr "Champs configurĆ©s sur la commande associĆ©e Ć  l'action" - -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2663 -msgid "Alerts fields" -msgstr "Champs d'alertes" - -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2665 -msgid "Triggering fields configured in Alerts" -msgstr "Les champs de dĆ©clenchement configurĆ©s dans les Alertes" - -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2668 -#: ../../godmode/alerts/alert_view.php:451 -msgid "Action fields" -msgstr "Champs d'action" - -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2670 -#: ../../godmode/alerts/alert_view.php:453 -msgid "Triggering fields configured in action" -msgstr "Champs de dĆ©clenchement configurĆ©s dans l'action" - -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2673 -#: ../../godmode/alerts/alert_view.php:457 -msgid "Executed on firing" -msgstr "ExĆ©cutĆ© lors du dĆ©clenchement" - -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2675 -#: ../../godmode/alerts/alert_view.php:459 -#: ../../godmode/alerts/alert_view.php:571 -msgid "Fields used on execution when the alert is fired" -msgstr "Champs utilisĆ©s lors de l'exĆ©cution lorsque l'alerte est dĆ©clenchĆ©e" - -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2724 -msgid "Correlated alerts" -msgstr "Alertes corrĆ©lĆ©s" - -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2748 -msgid "Alert succesfully deleted" -msgstr "Alerte Ć©liminĆ©e correctement" - -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2757 -msgid "Alerts validated" -msgstr "Alertes activĆ©es" - -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2760 -msgid "Failed to process validation" -msgstr "Ɖchec de validation de processus" - -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2810 -#: ../../enterprise/godmode/modules/local_components.php:547 -#: ../../godmode/modules/manage_network_components.php:659 -msgid "Free Search" -msgstr "Recherche libre" - -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2845 -#: ../../enterprise/meta/event/custom_events.php:69 -#: ../../enterprise/meta/event/custom_events.php:88 -#: ../../enterprise/meta/general/main_menu.php:398 -#: ../../enterprise/meta/general/main_header.php:291 -#: ../../godmode/reporting/reporting_builder.list_items.php:222 -#: ../../godmode/events/events.php:90 ../../godmode/events/events.php:110 -msgid "Filters" -msgstr "Filtres" - -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2902 -#: ../../enterprise/include/functions_ipam.php:1643 -#: ../../enterprise/meta/include/functions_autoprovision.php:473 -#: ../../enterprise/meta/include/functions_autoprovision.php:640 -#: ../../enterprise/godmode/reporting/reporting_builder.template_list_item.php:190 -#: ../../godmode/reporting/reporting_builder.list_items.php:440 -#: ../../godmode/reporting/reporting_builder.list_items.php:740 -#: ../../godmode/reporting/graph_builder.graph_editor.php:217 -#: ../../godmode/reporting/graph_builder.graph_editor.php:318 -msgid "Sort" -msgstr "Classer" - -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2905 -msgid "Matched" -msgstr "Correspondu" - -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2928 -#: ../../enterprise/include/class/CommandCenter.class.php:329 -msgid "Sort elements" -msgstr "Classer les Ć©lĆ©ments" - -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2973 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3359 -msgid "No associated actions" -msgstr "Aucune action associĆ©e" - -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3007 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3023 -msgid "Add Actions" -msgstr "Ajouter des actions" - -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3078 -msgid "There are no defined correlated alerts" -msgstr "Il nā€™y a pas dā€™alertes corrĆ©lĆ©es dĆ©finies" - -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3214 -msgid "Are you sure you want to disable the alert" -msgstr "Ɗtes-vous sĆ»r que vous voulez dĆ©sactiver l'alerte" - -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3221 -msgid "Are you sure you want to enable the alert" -msgstr "Ɗtes-vous sĆ»r que vous voulez activer l'alerte" - -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3228 -msgid "Disabled Alert" -msgstr "Alerte dĆ©sactivĆ©e" - -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3270 -msgid "Are you sure you want to standby the alert" -msgstr "Ɗtes-vous sĆ»r que vous voulez stand-by l'alerte" - -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3277 -msgid "Are you sure you want to activate the alert" -msgstr "Ɗtes-vous sĆ»r que vous voulez activer l'alerte" - -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3285 -msgid "Standby Alert" -msgstr "Alerte en stand-by" - -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3334 -#: ../../enterprise/godmode/policies/policy_external_alerts.php:465 -#: ../../enterprise/godmode/policies/policy_alerts.php:434 -#: ../../godmode/alerts/alert_list.list.php:642 -msgid "Until" -msgstr "Jusqu'Ć " - -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3357 -msgid "Delete Actions" -msgstr "Ɖliminer des actions" - -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3536 -msgid "Successfully added action" -msgstr "Action ajoutĆ©e correctement" - -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3574 -msgid "Successfully delete action" -msgstr "action Ć©liminĆ©e correctement" - -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3987 -msgid "Choosetime" -msgstr "Choisir lā€™heure" - -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:4210 -msgid "Drop Here" -msgstr "LĆ¢cher ici" - -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:4268 -#: ../../godmode/alerts/configure_alert_template.php:1495 -msgid "Simple" -msgstr "Simple" - -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:4269 -#: ../../godmode/alerts/configure_alert_template.php:1496 -msgid "Detailed" -msgstr "DĆ©taillĆ©" - -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:4324 -#: ../../godmode/alerts/configure_alert_template.php:1551 -msgid "Drag out to remove" -msgstr "Faites glisser vers lā€™extĆ©rieur pour supprimer" - -#: ../../enterprise/include/class/NetworkConfigManager.class.php:375 -msgid "Perform action" -msgstr "RĆ©aliser l'action" - -#: ../../enterprise/include/class/NetworkConfigManager.class.php:628 -#: ../../enterprise/godmode/modules/local_components.php:690 -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:627 -#: ../../enterprise/godmode/policies/policy_modules.php:1555 -#: ../../godmode/modules/manage_network_components.php:859 -#: ../../godmode/modules/manage_network_components.php:860 -#: ../../godmode/reporting/reporting_builder.php:1196 -#: ../../godmode/snmpconsole/snmp_alert.php:1347 -#: ../../godmode/snmpconsole/snmp_alert.php:1348 -#: ../../godmode/agentes/module_manager.php:1166 -#: ../../godmode/alerts/alert_actions.php:435 -#: ../../godmode/alerts/alert_templates.php:431 -msgid "Duplicate" -msgstr "Dupliquer" - -#: ../../enterprise/include/class/NetworkConfigManager.class.php:1442 -msgid "NCM devices" -msgstr "Appareils NCM" - -#: ../../enterprise/include/class/NetworkConfigManager.class.php:1456 -msgid "NCM templates" -msgstr "ModĆØles NCM" - -#: ../../enterprise/include/class/NetworkConfigManager.class.php:1470 -msgid "Registered vendors" -msgstr "Fournisseurs rĆ©gistrĆ©s" - -#: ../../enterprise/include/class/NetworkConfigManager.class.php:1484 -msgid "Registered models" -msgstr "ModĆØles registrĆ©s" - -#: ../../enterprise/include/class/NetworkConfigManager.class.php:1498 -msgid "Registered snippets" -msgstr "Snippets enregistrĆ©s" - -#: ../../enterprise/include/class/NetworkConfigManager.class.php:1512 -msgid "Registered firmwares" -msgstr "Firmwares enregistrĆ©s" - -#: ../../enterprise/include/class/NetworkConfigManager.class.php:1548 -msgid "No agents with NCM features enabled yet" -msgstr "Pas encore d'agents avec les fonctionnalitĆ©s NCM activĆ©s" - -#: ../../enterprise/include/class/NetworkConfigManager.class.php:1679 -#: ../../enterprise/include/class/NetworkConfigManager.class.php:2189 -#: ../../enterprise/include/class/NetworkConfigManager.class.php:2240 -#, php-format -msgid "Template not found: %s" -msgstr "ModĆØle non trouvĆ© : %s" - -#: ../../enterprise/include/class/NetworkConfigManager.class.php:1704 -msgid "Template created" -msgstr "ModĆØle crĆ©Ć©" - -#: ../../enterprise/include/class/NetworkConfigManager.class.php:1704 -msgid "Template updated" -msgstr "ModĆØle mis Ć  jour" - -#: ../../enterprise/include/class/NetworkConfigManager.class.php:1770 -#: ../../enterprise/include/class/NetworkConfigManager.class.php:2314 -#, php-format -msgid "Vendor not found: %s" -msgstr "Fournisseur non trouvĆ© : %s" - -#: ../../enterprise/include/class/NetworkConfigManager.class.php:1801 -msgid "Failed saving vendor: " -msgstr "Erreur de sauvegarde de fournisseur : " - -#: ../../enterprise/include/class/NetworkConfigManager.class.php:1860 -#, php-format -msgid "model not found: %s" -msgstr "modĆØle non trouvĆ© : %s" - -#: ../../enterprise/include/class/NetworkConfigManager.class.php:1882 -#: ../../enterprise/include/class/NetworkConfigManager.class.php:2653 -msgid "you must select a valid vendor" -msgstr "sĆ©lectionnez un fournisseur valide" - -#: ../../enterprise/include/class/NetworkConfigManager.class.php:1895 -msgid "Failed saving model: " -msgstr "Erreur de sauvegarde de modĆØle : " - -#: ../../enterprise/include/class/NetworkConfigManager.class.php:1955 -#, php-format -msgid "snippet not found: %s" -msgstr "Skipper introuvable : %s" - -#: ../../enterprise/include/class/NetworkConfigManager.class.php:1986 -msgid "Failed saving snippet: " -msgstr "Erreur de sauvegarde du skipper : " - -#: ../../enterprise/include/class/NetworkConfigManager.class.php:2049 -#, php-format -msgid "firmware not found: %s" -msgstr "firmware introuvable : %s" - -#: ../../enterprise/include/class/NetworkConfigManager.class.php:2076 -msgid "Firmware file missing" -msgstr "Fichier du firmware manquant" - -#: ../../enterprise/include/class/NetworkConfigManager.class.php:2108 -#, php-format -msgid "Failed to store file in %s" -msgstr "Impossible de stocker le fichier dans %s" - -#: ../../enterprise/include/class/NetworkConfigManager.class.php:2125 -msgid "Failed saving firmware: " -msgstr "Ɖchec de lā€™enregistrement du firmware : " - -#: ../../enterprise/include/class/NetworkConfigManager.class.php:2152 -msgid "" -"Upload only official binary files from your device provide in raw format (not " -"compressed)" -msgstr "" -"TĆ©lĆ©chargez uniquement les fichiers binaires officiels Ć  partir de votre " -"appareil au format brut (non compressĆ©)" - -#: ../../enterprise/include/class/NetworkConfigManager.class.php:2201 -#: ../../godmode/modules/manage_network_templates.php:83 -msgid "Template successfully deleted" -msgstr "ModĆØle supprimĆ© correctement" - -#: ../../enterprise/include/class/NetworkConfigManager.class.php:2256 -msgid "Template successfully duplicated" -msgstr "ModĆØle dupliquĆ© correctement" - -#: ../../enterprise/include/class/NetworkConfigManager.class.php:2279 -#, php-format -msgid "Model not found: %s" -msgstr "ModĆØle non trouvĆ© : %s" - -#: ../../enterprise/include/class/NetworkConfigManager.class.php:2291 -msgid "Model successfully deleted" -msgstr "ModĆØle Ć©liminĆ© correctement" - -#: ../../enterprise/include/class/NetworkConfigManager.class.php:2326 -msgid "Vendor successfully deleted" -msgstr "Fournisseur Ć©liminĆ© correctement" - -#: ../../enterprise/include/class/NetworkConfigManager.class.php:2349 -#, php-format -msgid "Snippet not found: %s" -msgstr "Snippet introuvable : %s" - -#: ../../enterprise/include/class/NetworkConfigManager.class.php:2361 -msgid "Snippet successfully deleted" -msgstr "Snippet supprimĆ© correctement" - -#: ../../enterprise/include/class/NetworkConfigManager.class.php:2384 -#, php-format -msgid "Firmware not found: %s" -msgstr "Firmware introuvable : %s" - -#: ../../enterprise/include/class/NetworkConfigManager.class.php:2396 -msgid "Firmware successfully deleted" -msgstr "Firmware supprimĆ© correctement" - -#: ../../enterprise/include/class/NetworkConfigManager.class.php:2475 -msgid "" -"Not executed yet, no content to display, define your own in following textarea." -msgstr "" -"Pas encore exĆ©cutĆ©, pas de contenu Ć  afficher, dĆ©finissez le vĆ“tre dans la " -"zone de texte suivante." - -#: ../../enterprise/include/class/NetworkConfigManager.class.php:2484 -msgid "" -"Following content is already queued to be executed! You must wait until " -"execution is finished before being able to modify this." -msgstr "" -"Le contenu suivant est dĆ©jĆ  mis en file dā€™attente pour ĆŖtre exĆ©cutĆ© ! Vous " -"devez attendre la fin de lā€™exĆ©cution avant de pouvoir la modifier." - -#: ../../enterprise/include/class/NetworkConfigManager.class.php:2576 -msgid "Check progress" -msgstr "VĆ©rifier la progression" - -#: ../../enterprise/include/class/NetworkConfigManager.class.php:2585 -#, php-format -msgid "Script scheduled %s %s" -msgstr "Script planifiĆ© %s %s" - -#: ../../enterprise/include/class/NetworkConfigManager.class.php:2643 -#, php-format -msgid "Error retrieving template: %s" -msgstr "Erreur de rĆ©cupĆ©ration du modĆØle : %s" - -#: ../../enterprise/include/class/NetworkConfigManager.class.php:2649 -msgid "you must select a template" -msgstr "sĆ©lectionnez un modĆØle" - -#: ../../enterprise/include/class/NetworkConfigManager.class.php:2651 -msgid "you must select a valid model" -msgstr "sĆ©lectionnez un modĆØle valide" - -#: ../../enterprise/include/class/NetworkConfigManager.class.php:2655 -msgid "you must select a valid port" -msgstr "sĆ©lectionnez un port valide" - -#: ../../enterprise/include/class/NetworkConfigManager.class.php:2689 -#, php-format -msgid "Failed to update%s" -msgstr "Erreur de mise Ć  jour %s" - -#: ../../enterprise/include/class/NetworkConfigManager.class.php:2721 -msgid "No configuration registers to backup" -msgstr "Pas de registres de configuration Ć  backup" - -#: ../../enterprise/include/class/NetworkConfigManager.class.php:2729 -#: ../../enterprise/include/class/NetworkConfigManager.class.php:2745 -msgid "Successfully backed up" -msgstr "SauvegardĆ© correctement" - -#: ../../enterprise/include/class/NetworkConfigManager.class.php:2780 -msgid "Invalid id given" -msgstr "ID fournie non valide" - -#: ../../enterprise/include/class/NetworkConfigManager.class.php:2815 -msgid "" -"Is highly recommendable to execute this kind of operation from agent details " -"to preview the script content" -msgstr "" -"Il est fortement recommandĆ© dā€™exĆ©cuter ce type dā€™opĆ©ration Ć  partir des " -"dĆ©tails de lā€™agent pour prĆ©visualiser le contenu du script" - -#: ../../enterprise/include/class/NetworkConfigManager.class.php:2824 -msgid "This operation is not ready yet! Keep up to date with latest updates" -msgstr "" -"Cette opĆ©ration n'est pas prĆŖte encore ! Tenez-vous au courant des derniĆØres " -"nouvelles" - -#: ../../enterprise/include/class/NetworkConfigManager.class.php:2833 -msgid "Invalid action" -msgstr "Action non valide" - -#: ../../enterprise/include/class/NetworkConfigManager.class.php:2852 -#: ../../enterprise/include/class/DatabaseHA.class.php:190 -msgid "Successfully scheduled" -msgstr "ProgrammĆ© correctement" - -#: ../../enterprise/include/class/NetworkConfigManager.class.php:2853 -msgid "Failed to schedule action." -msgstr "Erreur de programmation de l'action" - -#: ../../enterprise/include/class/Azure.cloud.php:248 -#: ../../enterprise/include/class/Google.cloud.php:242 -msgid "Task details" -msgstr "DĆ©tails de la tache" - -#: ../../enterprise/include/class/Azure.cloud.php:249 -#: ../../enterprise/include/class/Google.cloud.php:243 -msgid "Instance explorer" -msgstr "Explorateur d'instance" - -#: ../../enterprise/include/class/Azure.cloud.php:250 -#: ../../enterprise/include/class/Google.cloud.php:244 -msgid "Metrics" -msgstr "MĆ©triques" - -#: ../../enterprise/include/class/Azure.cloud.php:307 -msgid "Microsoft Compute" -msgstr "Microsoft Compute" - -#: ../../enterprise/include/class/Azure.cloud.php:468 -#: ../../enterprise/include/class/Google.cloud.php:470 -msgid "Group not found." -msgstr "Groupe non trouvĆ©." - -#: ../../enterprise/include/class/Azure.cloud.php:598 -#: ../../enterprise/include/class/Azure.cloud.php:646 -#: ../../enterprise/include/class/Google.cloud.php:597 -#: ../../enterprise/include/class/Google.cloud.php:643 -msgid "Unauthorized access" -msgstr "AccĆØs pas autorisĆ©" - -#: ../../enterprise/include/class/Azure.cloud.php:909 -#: ../../enterprise/include/class/Google.cloud.php:865 -msgid "Select target virtual machines" -msgstr "SĆ©lectionnez les machines virtuelles cibles" - -#: ../../enterprise/include/class/DeploymentCenter.class.php:235 -msgid "IP address is required" -msgstr "Une adresse IP est requise" - -#: ../../enterprise/include/class/DeploymentCenter.class.php:249 -msgid "Credentials to use are required" -msgstr "Les identifiants Ć  utiliser sont requises" - -#: ../../enterprise/include/class/DeploymentCenter.class.php:251 -msgid "Desired agent version is required" -msgstr "La version dĆ©sirĆ©e de l'agent est requise" - -#: ../../enterprise/include/class/DeploymentCenter.class.php:262 -msgid "Target already defined." -msgstr "cible dĆ©jĆ  dĆ©fini." - -#: ../../enterprise/include/class/DeploymentCenter.class.php:288 -msgid "Target successfully added" -msgstr "Cible correctement ajoutĆ©" - -#: ../../enterprise/include/class/DeploymentCenter.class.php:309 -msgid "Target successfully updated" -msgstr "Cible correctement mis Ć  jour" - -#: ../../enterprise/include/class/DeploymentCenter.class.php:352 -msgid "You should specify a Discovery server" -msgstr "Vou devriez spĆ©cifier un serveur Discovery" - -#: ../../enterprise/include/class/DeploymentCenter.class.php:354 -msgid "You must select some targets to deploy" -msgstr "Vous devez sĆ©lectionner quelques cibles Ć  dĆ©ployer" - -#: ../../enterprise/include/class/DeploymentCenter.class.php:384 -#: ../../enterprise/include/class/DeploymentCenter.class.php:1095 -msgid "Failed to schedule" -msgstr "Error de programmation" - -#: ../../enterprise/include/class/DeploymentCenter.class.php:399 -msgid "Deploy scheduled" -msgstr "DĆ©ployer ceux programmĆ©s" - -#: ../../enterprise/include/class/DeploymentCenter.class.php:425 -msgid "CSV file is needed" -msgstr "Un fichier CSV est requis" - -#: ../../enterprise/include/class/DeploymentCenter.class.php:480 -#, php-format -msgid "" -"Credential identifier %s does not exist, please, add it to your repository %s " -msgstr "" -"L'identifier d'identifiant %s n'existe pas, veuillez l'ajouter Ć  votre " -"rĆ©fĆ©rentiel %s " - -#: ../../enterprise/include/class/DeploymentCenter.class.php:488 -#, php-format -msgid "OS %s does not math any existing, please, add it to OS list %s" -msgstr "" -"Le systĆØme d'exploitation %s ne correspond aucun existant, ajoutez-le Ć  la " -"liste de systĆØmes d'exploitation %s" - -#: ../../enterprise/include/class/DeploymentCenter.class.php:496 -#, php-format -msgid "" -"Sofware agent version with id %s does not exist, please, add it to your " -"repository %s " -msgstr "" -"La version de l'agent logiciel avec l'ID %s n'existe pas, veuillez l'ajouter Ć  " -"votre rĆ©fĆ©rentiel %s " - -#: ../../enterprise/include/class/DeploymentCenter.class.php:518 -msgid "No target could be added. " -msgstr "Aucun cible ajoutĆ©. " - -#: ../../enterprise/include/class/DeploymentCenter.class.php:613 -#: ../../enterprise/godmode/menu.php:163 -#: ../../godmode/wizards/HostDevices.class.php:165 -#: ../../godmode/wizards/DiscoveryTaskList.class.php:823 -msgid "Agent deployment" -msgstr "DĆ©ploiement d'agents" - -#: ../../enterprise/include/class/DeploymentCenter.class.php:621 -msgid "Deployment center" -msgstr "Centre de dĆ©ploiement" - -#: ../../enterprise/include/class/DeploymentCenter.class.php:637 -msgid "There are no targets defined yet, please add some." -msgstr "" -"Il n'y a pas des cibles dĆ©finis encore, veuillez en ajouter quelques-uns." - -#: ../../enterprise/include/class/DeploymentCenter.class.php:644 -#, php-format -msgid "Please set %s to make software available for targets." -msgstr "Veuillez ajuster %s pour rendre le logiciel disponible pour les cibles." - -#: ../../enterprise/include/class/DeploymentCenter.class.php:656 -#, php-format -msgid "There are no software agents in your repository yet, please add some %s." -msgstr "" -"Il n'y a pas des agents logiciels dans votre rĆ©pertoire encore, veuillez en " -"ajouter quelques-uns %s." - -#: ../../enterprise/include/class/DeploymentCenter.class.php:675 -#: ../../enterprise/include/class/DeploymentCenter.class.php:1751 -msgid "Scan for targets" -msgstr "Scanner des cibles" - -#: ../../enterprise/include/class/DeploymentCenter.class.php:684 -msgid "Add target" -msgstr "Ajouter une cible" - -#: ../../enterprise/include/class/DeploymentCenter.class.php:693 -msgid "Load targets" -msgstr "Mettre en ligne des cibles" - -#: ../../enterprise/include/class/DeploymentCenter.class.php:758 -msgid "Key identifier" -msgstr "Identifiant de clĆ©" - -#: ../../enterprise/include/class/DeploymentCenter.class.php:759 -#: ../../enterprise/include/class/DeploymentCenter.class.php:1222 -#: ../../enterprise/include/class/DeploymentCenter.class.php:1359 -msgid "Target server IP" -msgstr "IP de serveur cible" - -#: ../../enterprise/include/class/DeploymentCenter.class.php:760 -msgid "Agent version installed" -msgstr "Version d'agent installĆ©e" - -#: ../../enterprise/include/class/DeploymentCenter.class.php:761 -msgid "Agent version desired" -msgstr "Version de l'agent dĆ©sirĆ©e" - -#: ../../enterprise/include/class/DeploymentCenter.class.php:762 -msgid "Installation date" -msgstr "Date de l'installation" - -#: ../../enterprise/include/class/DeploymentCenter.class.php:763 -msgid "Last error" -msgstr "DerniĆØre erreur" - -#: ../../enterprise/include/class/DeploymentCenter.class.php:811 -msgid "Server IP" -msgstr "IP du serveur" - -#: ../../enterprise/include/class/DeploymentCenter.class.php:836 -msgid "State" -msgstr "Ɖtat" - -#: ../../enterprise/include/class/DeploymentCenter.class.php:868 -msgid "Deploy agent to targets" -msgstr "DĆ©ployer des agents aux cibles" - -#: ../../enterprise/include/class/DeploymentCenter.class.php:1042 -msgid "You must define a network." -msgstr "DĆ©finissez un rĆ©seau." - -#: ../../enterprise/include/class/DeploymentCenter.class.php:1044 -msgid "You must select at least one credential to test." -msgstr "SĆ©lectionnez au moins un identifiant Ć  vĆ©rifier." - -#: ../../enterprise/include/class/DeploymentCenter.class.php:1046 -msgid "You must select a Discovery server." -msgstr "SĆ©lectionnez un serveur Discovery." - -#: ../../enterprise/include/class/DeploymentCenter.class.php:1048 -msgid "Please select a desired software agent version." -msgstr "SĆ©lectionnez la version de l'agent logiciel dĆ©sirĆ©e." - -#: ../../enterprise/include/class/DeploymentCenter.class.php:1050 -msgid "Please specify a server IP." -msgstr "SpĆ©cifiez une IP de serveur." - -#: ../../enterprise/include/class/DeploymentCenter.class.php:1070 -#: ../../enterprise/include/class/DeploymentCenter.class.php:1103 -msgid "Discovery task list" -msgstr "Liste de taches Discovery" - -#: ../../enterprise/include/class/DeploymentCenter.class.php:1069 -#, php-format -msgid "This network is already being scanned. See progress at %s" -msgstr "Ce rĆ©seau est dĆ©jĆ  en cours de scan. Voyez le progrĆØs chez %s" - -#: ../../enterprise/include/class/DeploymentCenter.class.php:1102 -#, php-format -msgid "Network scheduled to be scanned. You can see progress at %s" -msgstr "RĆ©seau programmĆ© Ć  ĆŖtre scannĆ©. Voyez le progrĆØs chez %s" - -#: ../../enterprise/include/class/DeploymentCenter.class.php:1150 -msgid "Network/mask" -msgstr "RĆ©seau/Masque" - -#: ../../enterprise/include/class/DeploymentCenter.class.php:1159 -msgid "Scan from" -msgstr "Scanner depuis" - -#: ../../enterprise/include/class/DeploymentCenter.class.php:1178 -#: ../../godmode/wizards/HostDevices.class.php:1447 -msgid "Credentials to try with" -msgstr "Identifiants avec lesquels essayer" - -#: ../../enterprise/include/class/DeploymentCenter.class.php:1189 -#: ../../enterprise/include/class/DeploymentCenter.class.php:1316 -#: ../../enterprise/include/class/DeploymentCenter.class.php:1326 -#: ../../enterprise/meta/include/functions_wizard_meta.php:974 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1058 -#: ../../extensions/api_checker.php:195 -#: ../../godmode/wizards/HostDevices.class.php:1470 -msgid "Credentials" -msgstr "Identifiants" - -#: ../../enterprise/include/class/DeploymentCenter.class.php:1212 -#: ../../enterprise/include/class/DeploymentCenter.class.php:1349 -msgid "Desired agent version" -msgstr "Version de l'agent dĆ©sirĆ©e" - -#: ../../enterprise/include/class/DeploymentCenter.class.php:1396 -msgid "CSV format" -msgstr "Format CSV" - -#: ../../enterprise/include/class/DeploymentCenter.class.php:1397 -msgid "Target agent version" -msgstr "Version de l'agent cible" - -#: ../../enterprise/include/class/DeploymentCenter.class.php:1397 -#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:1120 -#: ../../godmode/modules/manage_network_components_form_network.php:242 -#: ../../godmode/massive/massive_edit_modules.php:1198 -#: ../../godmode/agentes/module_manager_editor_network.php:459 -msgid "Credential identifier" -msgstr "Identifiant des idĆ©ntifiants" - -#: ../../enterprise/include/class/DeploymentCenter.class.php:1397 -msgid "Target server ip" -msgstr "IP du serveur cible" - -#: ../../enterprise/include/class/DeploymentCenter.class.php:1416 -msgid "CSV file" -msgstr "Fichier CSV" - -#: ../../enterprise/include/class/DeploymentCenter.class.php:1476 -msgid "Select desired targets to be deployed" -msgstr "SĆ©lectionnez les cibles dĆ©sirĆ©s Ć  dĆ©ployer" - -#: ../../enterprise/include/class/DeploymentCenter.class.php:1479 -msgid "Deploy from" -msgstr "DĆ©ployer depuis" - -#: ../../enterprise/include/class/DeploymentCenter.class.php:1494 -msgid "Available targets" -msgstr "Cibles disponibles" - -#: ../../enterprise/include/class/DeploymentCenter.class.php:1670 -msgid "Add new target" -msgstr "Ajouter nouveau cible" - -#: ../../enterprise/include/class/DeploymentCenter.class.php:1673 -msgid "Update target" -msgstr "Mettre Ć  jour le cible" - -#: ../../enterprise/include/class/DeploymentCenter.class.php:1719 -msgid "Import targets from CSV" -msgstr "Importer cibles depuis le CSV" - -#: ../../enterprise/include/class/DeploymentCenter.class.php:1752 -#: ../../godmode/modules/manage_network_components_form_wizard.php:637 -msgid "Scan" -msgstr "Scan" - -#: ../../enterprise/include/class/DeploymentCenter.class.php:1786 -msgid "Select targets" -msgstr "SĆ©lectionner des cibles" - -#: ../../enterprise/include/class/DeploymentCenter.class.php:1787 -#: ../../enterprise/include/functions_HA_cluster.php:46 -msgid "Deploy" -msgstr "DĆ©ployer" - -#: ../../enterprise/include/class/DatabaseHA.class.php:137 -#: ../../enterprise/include/class/DatabaseHA.class.php:241 -#: ../../enterprise/include/class/DatabaseHA.class.php:423 -#: ../../enterprise/include/class/DatabaseHA.class.php:433 -#: ../../enterprise/include/class/DatabaseHA.class.php:525 -#: ../../enterprise/include/class/DatabaseHA.class.php:534 -#: ../../enterprise/include/class/DatabaseHA.class.php:651 -#: ../../enterprise/include/class/DatabaseHA.class.php:660 -msgid "Error, please refresh page" -msgstr "Erreur, veuillez rafraĆ®chir la page" - -#: ../../enterprise/include/class/DatabaseHA.class.php:142 -msgid "Action already scheduled" -msgstr "Action dĆ©jĆ  programmĆ©e" - -#: ../../enterprise/include/class/DatabaseHA.class.php:148 -msgid "Unavailable action" -msgstr "Action non disponible" - -#: ../../enterprise/include/class/DatabaseHA.class.php:160 -msgid "A node is already being synchronized, please wait until process finish." -msgstr "Un noeud est dĆ©jĆ  synchronisĆ©, attendez jusqu'Ć  la fin du processus." - -#: ../../enterprise/include/class/DatabaseHA.class.php:172 -msgid "Please verify resync configuration is set before use this feature." -msgstr "" -"Veuillez spĆ©cifier la configuration de resynchronisation avant d'utiliser " -"cette fonctionnalitĆ©." - -#: ../../enterprise/include/class/DatabaseHA.class.php:220 -msgid "Uninitialized" -msgstr "Non initialisĆ©" - -#: ../../enterprise/include/class/DatabaseHA.class.php:476 -#: ../../enterprise/include/class/DatabaseHA.class.php:575 -#: ../../enterprise/include/class/DatabaseHA.class.php:1251 -msgid "This is not a cluster node" -msgstr "Ce n'est pas un noeud de grappe" - -#: ../../enterprise/include/class/DatabaseHA.class.php:480 -#: ../../enterprise/include/class/DatabaseHA.class.php:1255 -msgid "Failed to retrieve master position" -msgstr "Erreur de rĆ©cupĆ©ration de la position maĆ®tre" - -#: ../../enterprise/include/class/DatabaseHA.class.php:494 -#: ../../enterprise/include/class/DatabaseHA.class.php:1268 -msgid "Failed to retrieve slave information" -msgstr "Erreur de rĆ©cupĆ©ration des informations d'esclave" - -#: ../../enterprise/include/class/DatabaseHA.class.php:611 -msgid "Master" -msgstr "Principal" - -#: ../../enterprise/include/class/DatabaseHA.class.php:614 -msgid "Slave" -msgstr "Esclave" - -#: ../../enterprise/include/class/DatabaseHA.class.php:823 -#: ../../enterprise/include/class/DatabaseHA.class.php:1006 -msgid "DB Replication user" -msgstr "Utilisateur de rĆ©plication de la base de donnĆ©es" - -#: ../../enterprise/include/class/DatabaseHA.class.php:824 -msgid "User configured for Master to Slaves replication" -msgstr "Utilisateur configurĆ© pour la rĆ©plication de MaĆ®tre Ć  Esclave" - -#: ../../enterprise/include/class/DatabaseHA.class.php:834 -#: ../../enterprise/include/class/DatabaseHA.class.php:1015 -msgid "DB Replication user password" -msgstr "Mot de passe de l'utilisateur de rĆ©plication de la base de donnĆ©es" - -#: ../../enterprise/include/class/DatabaseHA.class.php:835 -msgid "User password" -msgstr "Mot de passe de l'utilisateur" - -#: ../../enterprise/include/class/DatabaseHA.class.php:845 -msgid "Resync data dir" -msgstr "RĆ©pertoire des donnĆ©es de resynchronisation" - -#: ../../enterprise/include/class/DatabaseHA.class.php:846 -msgid "Directory where mysql files are stored (must be common to all nodes)" -msgstr "" -"RĆ©pertoire oĆ¹ les fichiers mysql sont stockĆ©s (doit ĆŖtre commun Ć  tous les " -"noeuds)" - -#: ../../enterprise/include/class/DatabaseHA.class.php:856 -msgid "Resync tmp directory" -msgstr "RĆ©pertoire tmp resync" - -#: ../../enterprise/include/class/DatabaseHA.class.php:857 -msgid "" -"Temporary working directory where to store the backups that will be used to re-" -"synchronize a slave node" -msgstr "" -"RĆ©pertoire de travail temporaire oĆ¹ les sauvegardes qui seront utilisĆ©es pour " -"re-synchroniser un noeud slave seront stockĆ©es" - -#: ../../enterprise/include/class/DatabaseHA.class.php:867 -msgid "Resync MySQL user" -msgstr "Utilisateur MySQL de resynchronisation" - -#: ../../enterprise/include/class/DatabaseHA.class.php:868 -msgid "" -"User of the system that owns the MySQL files, necessary for the adjustment of " -"permissions (by default mysql)" -msgstr "" -"Utilisateur du systĆØme qui possĆØde les fichiers MySQL, nĆ©cessaire pour ajuster " -"les permissions (mysql par dĆ©faut)" - -#: ../../enterprise/include/class/DatabaseHA.class.php:878 -msgid "Resync MySQL group" -msgstr "Groupe MySQL de rĆ©synchronisation" - -#: ../../enterprise/include/class/DatabaseHA.class.php:879 -msgid "" -"System group that owns the MySQL files, needed for permissions setting " -"(default mysql)" -msgstr "" -"Group du systĆØme qui possĆØde les fichiers MySQL, nĆ©cessaires pour la " -"configuration de permissions (mysql par dĆ©faut)" - -#: ../../enterprise/include/class/DatabaseHA.class.php:940 -msgid "IP or FQDN" -msgstr "IP ou FQDN" - -#: ../../enterprise/include/class/DatabaseHA.class.php:941 -msgid "" -"This action only registers an already configured node. This action does not " -"configure any resource." -msgstr "" -"Cette action enregistre seulement un noeud dĆ©jĆ  configurĆ©. Cette action ne " -"configure aucune ressource." - -#: ../../enterprise/include/class/DatabaseHA.class.php:951 -msgid "Cluster node label (pcs)" -msgstr "Etiquette de noeud du grappe (pcs)" - -#: ../../enterprise/include/class/DatabaseHA.class.php:959 -#: ../../enterprise/meta/advanced/metasetup.consoles.php:602 -msgid "DB port" -msgstr "Port de la BD" - -#: ../../enterprise/include/class/DatabaseHA.class.php:967 -msgid "SSH user" -msgstr "Utilisateur SSH" - -#: ../../enterprise/include/class/DatabaseHA.class.php:975 -msgid "SSH port" -msgstr "Port SSH" - -#: ../../enterprise/include/class/DatabaseHA.class.php:983 -msgid "SSH key" -msgstr "ClĆ© SSH" - -#: ../../enterprise/include/class/DatabaseHA.class.php:991 -msgid "SSH public key" -msgstr "ClĆ© SSH publique" - -#: ../../enterprise/include/class/DatabaseHA.class.php:1043 -msgid "Missed parameters" -msgstr "ParamĆØtres manquĆ©s" - -#: ../../enterprise/include/class/DatabaseHA.class.php:1090 -msgid "You must specify a host" -msgstr "SpĆ©cifiez un hĆ“te" - -#: ../../enterprise/include/class/DatabaseHA.class.php:1092 -msgid "DB port must be a positive integer" -msgstr "Le port de la base de donnĆ©es doit ĆŖtre un nĆŗmero entier positif" - -#: ../../enterprise/include/class/DatabaseHA.class.php:1094 -msgid "SSH port must be a positive integer" -msgstr "Le port SSH doit ĆŖtre un nĆŗmero entier positif" - -#: ../../enterprise/include/class/DatabaseHA.class.php:1096 -msgid "You must specify a SSH user" -msgstr "SpĆ©cifiez un utilisateur SSH" - -#: ../../enterprise/include/class/DatabaseHA.class.php:1098 -msgid "You must specify a replication DB user" -msgstr "SpĆ©cifiez un utilisateur de base de donnĆ©es de rĆ©plication" - -#: ../../enterprise/include/class/DatabaseHA.class.php:1100 -msgid "You must specify a replication DB pass" -msgstr "SpĆ©cifiez un mot de passe de la base de donnĆ©es de rĆ©plication" - -#: ../../enterprise/include/class/DatabaseHA.class.php:1102 -msgid "You must specify a public key path" -msgstr "SpĆ©cifiez un chemin de clĆ© publique" - -#: ../../enterprise/include/class/DatabaseHA.class.php:1104 -msgid "You must specify a private path" -msgstr "SpĆ©cifiez un chemin privĆ©" - -#: ../../enterprise/include/class/DatabaseHA.class.php:1154 -msgid "Successfully " -msgstr "Correctement " - -#: ../../enterprise/include/class/Google.cloud.php:301 -msgid "Compute Engine" -msgstr "Moteur de calcul" - -#: ../../enterprise/include/class/Google.cloud.php:877 -msgid "This options only applies to zone (region) agents." -msgstr "Ces options seulement appliquent au agents de la zone (rĆ©gion)." - -#: ../../enterprise/include/class/Google.cloud.php:890 -msgid "Scan and general monitoring" -msgstr "Scan et supervision gĆ©nĆ©rale" - -#: ../../enterprise/include/class/Google.cloud.php:903 -msgid "CPU performance summary" -msgstr "RĆ©sumĆ©e de la performance de l'UCT" - -#: ../../enterprise/include/class/CommandCenter.class.php:146 -msgid "Command center" -msgstr "Centre de commande" - -#: ../../enterprise/include/class/CommandCenter.class.php:160 -msgid "Could not be start merge process, no nodes in the metaconsole " -msgstr "" -"Ɖchec de lancement du processus de fusion, pas des noeuds dans la MĆ©taconsole " - -#: ../../enterprise/include/class/CommandCenter.class.php:169 -#: ../../enterprise/include/functions_groups.php:49 -msgid "Metaconsole" -msgstr "MĆ©taconsole" - -#: ../../enterprise/include/class/CommandCenter.class.php:265 -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:903 -msgid "" -"Memory limit is recomended to be unlimited in metaconsole, please set to -1 in " -"php.ini." -msgstr "" -"La limite de mĆ©moire est recommandĆ©e d'ĆŖtre illimitĆ©e dans la MĆ©taconsole, " -"veuillez entrez -1 dans php.ini." - -#: ../../enterprise/include/class/CommandCenter.class.php:312 -msgid "Nodes priority order" -msgstr "Ordre de prioritĆ© des noeuds" - -#: ../../enterprise/include/class/CommandCenter.class.php:317 -#: ../../enterprise/meta/advanced/metasetup.consoles.php:830 -#: ../../enterprise/godmode/setup/setup_metaconsole.php:270 -msgid "DB" -msgstr "BD" - -#: ../../enterprise/include/class/CommandCenter.class.php:318 -#: ../../enterprise/meta/advanced/metasetup.consoles.php:831 -#: ../../enterprise/godmode/setup/setup_metaconsole.php:271 -msgid "API" -msgstr "API" - -#: ../../enterprise/include/class/CommandCenter.class.php:366 -msgid "Unify databases" -msgstr "Unifier les bases de donnĆ©es" - -#: ../../enterprise/include/class/CommandCenter.class.php:383 -msgid "merge process" -msgstr "Processus d'unification" - -#: ../../enterprise/include/class/CommandCenter.class.php:391 -msgid "Process detail of node" -msgstr "DĆ©tail du processus du noeud" - -#: ../../enterprise/include/class/CommandCenter.class.php:392 -msgid "Errors of node" -msgstr "Erreurs du noeud" - -#: ../../enterprise/include/class/CommandCenter.class.php:421 -msgid "Unexpected end of process" -msgstr "Fin du processus inattendue" - -#: ../../enterprise/include/class/CommandCenter.class.php:422 -msgid "Please retry" -msgstr "Veuillez rĆ©essayer" - -#: ../../enterprise/include/class/CommandCenter.class.php:443 -msgid "Critical issues while merging" -msgstr "ProblĆØmes critiques lors de l'unification" - -#: ../../enterprise/include/class/CommandCenter.class.php:444 -msgid "Please restore your backups" -msgstr "Veuillez rĆ©tablir vos sauvegardes" - -#: ../../enterprise/include/class/CommandCenter.class.php:455 -#: ../../enterprise/include/class/CommandCenter.class.php:1119 -msgid "Error message" -msgstr "Message d'erreur" - -#: ../../enterprise/include/class/CommandCenter.class.php:457 -msgid "Process details" -msgstr "DĆ©tails du processus" - -#: ../../enterprise/include/class/CommandCenter.class.php:458 -msgid "" -"System is not unified yet, something is wrong, please troubleshoot the errors " -"and retry the merge process. Your data have not been modified." -msgstr "" -"Le systĆØme n'est pas unifiĆ© encore, quelque chose ne marche pas, dĆ©pannez les " -"erreurs et rĆ©essayez le processus d'unification. Vos donnĆ©es n'ont pas Ć©tĆ© " -"modifies." - -#: ../../enterprise/include/class/CommandCenter.class.php:459 -msgid "Errors while merging" -msgstr "Erreur d'unification" - -#: ../../enterprise/include/class/CommandCenter.class.php:460 -msgid "The process has been completed correctly" -msgstr "Le processus a Ć©tĆ© complĆ©tĆ© correctement" - -#: ../../enterprise/include/class/CommandCenter.class.php:462 -msgid "System is merging your environment, please wait" -msgstr "Le systĆØme est en cours d'unifier votre environnement, veuillez attendre" - -#: ../../enterprise/include/class/CommandCenter.class.php:464 -#: ../../enterprise/include/class/CommandCenter.class.php:884 -msgid "Initialice merge" -msgstr "Commencer l'unification" - -#: ../../enterprise/include/class/CommandCenter.class.php:465 -#: ../../enterprise/include/class/CommandCenter.class.php:890 -msgid "Apply merge" -msgstr "Appliquer l'unification" - -#: ../../enterprise/include/class/CommandCenter.class.php:466 -msgid "Finished merge" -msgstr "Unification finie" - -#: ../../enterprise/include/class/CommandCenter.class.php:467 -#: ../../enterprise/include/class/CommandCenter.class.php:896 -msgid "Restore merge" -msgstr "RĆ©tablir l'unification" - -#: ../../enterprise/include/class/CommandCenter.class.php:469 -msgid "Succesfully" -msgstr "Correctement" - -#: ../../enterprise/include/class/CommandCenter.class.php:470 -msgid "Pending operations" -msgstr "OpĆ©ration pendante" - -#: ../../enterprise/include/class/CommandCenter.class.php:472 -msgid "Error. Synchronization aborted. Backup restored" -msgstr "Erreur. Synchronisation annulĆ©e. Sauvegarde rĆ©tablie." - -#: ../../enterprise/include/class/CommandCenter.class.php:542 -#: ../../enterprise/include/class/CommandCenter.class.php:548 -msgid "Update priority nodes" -msgstr "Noeuds prioritaires de mise Ć  jour" - -#: ../../enterprise/include/class/CommandCenter.class.php:543 -msgid "Successfully updated priority order nodes" -msgstr "Noeuds prioritaires mises Ć  jour correctement" - -#: ../../enterprise/include/class/CommandCenter.class.php:549 -msgid "Could not be updated priority order nodes" -msgstr "Erreur de mise Ć  jour des noeuds prioritaires" - -#: ../../enterprise/include/class/CommandCenter.class.php:565 -msgid "" -"By unifying databases all information across your infrastructure will be " -"merged to gain integrity" -msgstr "" -"Lors de l'unification des bases de donnĆ©es, toutes les informations de votre " -"infrastructure seront unifiĆ©s pour une meilleure intĆ©gritĆ©" - -#: ../../enterprise/include/class/CommandCenter.class.php:578 -#: ../../enterprise/include/class/CommandCenter.class.php:588 -msgid "Blocked" -msgstr "BloquĆ©" - -#: ../../enterprise/include/class/CommandCenter.class.php:579 -msgid "This process already running" -msgstr "Ce processus est dĆ©jĆ  en cours d'exĆ©cution" - -#: ../../enterprise/include/class/CommandCenter.class.php:589 -msgid "You cannot start a new merge because system is merging events data." -msgstr "" -"Vous ne pouvez pas commencer une nouvelle unification parce que le systĆØme est " -"dĆ©jĆ  en train d'unifier des donnĆ©es d'Ć©vĆ©nements" - -#: ../../enterprise/include/class/CommandCenter.class.php:597 -msgid "Press OK button to start the process" -msgstr "Cliquez OK pour commencer le processus" - -#: ../../enterprise/include/class/CommandCenter.class.php:599 -msgid "" -"There are backups from a previous merging process, are you sure you want to " -"overwrite those backups? Press OK button to ignore this message and start the " -"process." -msgstr "" -"Il y a des sauvegardes des processus antĆ©rieurs d'unification. Ɗtes-vous sĆ»r " -"que vous voulez Ć©craser celles sauvegardes ? Cliquez OK pour ignorer ce " -"message et commencer le processus." - -#: ../../enterprise/include/class/CommandCenter.class.php:647 -msgid "System is merging events..." -msgstr "Le systĆØme est en cours d'unification des Ć©vĆ©nements" - -#: ../../enterprise/include/class/CommandCenter.class.php:654 -msgid "Already working..." -msgstr "DĆ©jĆ  en execution..." - -#: ../../enterprise/include/class/CommandCenter.class.php:760 -#: ../../enterprise/include/class/CommandCenter.class.php:761 -msgid "Initilize" -msgstr "Initialiser" - -#: ../../enterprise/include/class/CommandCenter.class.php:866 -#: ../../enterprise/include/class/CommandCenter.class.php:1054 -msgid "Waiting" -msgstr "En attente" - -#: ../../enterprise/include/class/CommandCenter.class.php:873 -msgid "Process detail" -msgstr "DĆ©tail du processus" - -#: ../../enterprise/include/class/CommandCenter.class.php:878 -msgid "Display errors" -msgstr "Montrer les erreurs" - -#: ../../enterprise/include/class/CommandCenter.class.php:909 -msgid "There are no nodes to do the merge process." -msgstr "Il n'y a pas de noeuds pour faire le processus d'unification." - -#: ../../enterprise/include/class/CommandCenter.class.php:1017 -msgid "merge events" -msgstr "Unifier les Ć©vĆ©nements" - -#: ../../enterprise/include/class/CommandCenter.class.php:1060 -msgid "Retry process" -msgstr "RĆ©essayer le processus" - -#: ../../enterprise/include/class/CommandCenter.class.php:1065 -msgid "Display events errors" -msgstr "Afficher les erreurs d'Ć©vĆ©nements" - -#: ../../enterprise/include/class/CommandCenter.class.php:1078 -msgid "Events History" -msgstr "Historique d'Ć©vĆ©nements" - -#: ../../enterprise/include/class/CommandCenter.class.php:1140 -msgid "merge process events" -msgstr "ƉvĆ©nements de processus d'unification" - -#: ../../enterprise/include/functions_tasklist.php:58 -msgid "" -"Discovery relies on a proper setup of cron, the time-based scheduling service" -msgstr "" -"Discovery se fonde sur une correcte configuration du cron, le service de " -"programmation basĆ© sur le temps" - -#: ../../enterprise/include/functions_tasklist.php:77 -msgid "Please check process is no locked." -msgstr "VĆ©rifiez que le processus n'est pas bloquĆ©." - -#: ../../enterprise/include/functions_tasklist.php:143 -#: ../../enterprise/include/functions_tasklist.php:688 -msgid "There are no console task defined yet." -msgstr "Il n'y a pas de console de tache dĆ©finie encore." - -#: ../../enterprise/include/functions_tasklist.php:569 -msgid "Task disabled" -msgstr "TĆ¢che dĆ©sactivĆ©e" - -#: ../../enterprise/include/functions_tasklist.php:693 -msgid "Console Tasks" -msgstr "Taches de console" - -#: ../../enterprise/include/reset_pass.php:98 -#: ../../enterprise/meta/include/reset_pass.php:93 -msgid "User to reset password" -msgstr "Utilisateur pour remettre le mot de passe" - -#: ../../enterprise/include/reset_pass.php:123 -#: ../../enterprise/include/process_reset_pass.php:136 -#: ../../enterprise/meta/include/reset_pass.php:122 -#: ../../enterprise/meta/include/process_reset_pass.php:132 -msgid "Back to login" -msgstr "Retour Ć  la connexion" - -#: ../../enterprise/include/reset_pass.php:174 -#: ../../enterprise/include/reset_pass.php:177 -#: ../../enterprise/meta/include/reset_pass.php:165 -#: ../../enterprise/meta/include/reset_pass.php:168 -msgid "Reset password failed" -msgstr "Erreur de remise de mot de passe" - -#: ../../enterprise/include/lib/RCMDFile.class.php:203 -msgid "You do not have grants to access this feature" -msgstr "Vous n'avez pas de permissions pour accĆ©der Ć  cette fonctionnalitĆ©" - -#: ../../enterprise/include/lib/RCMDFile.class.php:548 -msgid "There was a problem creating RCMD" -msgstr "Il y a eu un problĆØme lors de la crĆ©ation du RCMD" - -#: ../../enterprise/include/lib/RCMDFile.class.php:693 -#: ../../enterprise/include/lib/RCMDFile.class.php:717 -msgid "There was a problem deleting RCMD" -msgstr "Il y a eu un problĆØme lors de l'Ć©limination du RCMD" - -#: ../../enterprise/include/lib/RCMDFile.class.php:865 -msgid "No agent configuration file" -msgstr "Pas de fichier de configuration de l'agent" - -#: ../../enterprise/include/lib/RCMDFile.class.php:873 -msgid "you don't have write permissions in the configuration file" -msgstr "" -"Vous n'avez pas des permissions d'Ć©criture dans le fichier de configuration" - -#: ../../enterprise/include/lib/RCMDFile.class.php:914 -msgid "This agent is already a target" -msgstr "Cet agent est dĆ©jĆ  un cible" - -#: ../../enterprise/include/lib/RCMDFile.class.php:945 -#, php-format -msgid "You do not have grants to access in this agent %s" -msgstr "Vous n'avez pas des permissions pour accĆ©der Ć  cet agent %s" - -#: ../../enterprise/include/lib/RCMDFile.class.php:1011 -msgid "There was a problem creating RCMD files" -msgstr "Il y a eu un problĆØme lors de la crĆ©ation des fichiers RCMD" - -#: ../../enterprise/include/lib/RCMDFile.class.php:1058 -msgid "There was a problem creating target" -msgstr "Il y a eu un problĆØme lors de la crĆ©ation du cible" - -#: ../../enterprise/include/lib/RCMDFile.class.php:1092 -msgid "There was a problem adding items in the configuration file" -msgstr "" -"Il y a eu un problĆØme lors de l'Ć©dition des Ć©lĆ©ments dans le fichier de " -"configuration" - -#: ../../enterprise/include/lib/RCMDFile.class.php:1118 -#: ../../enterprise/include/lib/RCMDFile.class.php:1285 -msgid "No agent has been selected" -msgstr "Il n'y a pas d'agents sĆ©lectionnĆ©s" - -#: ../../enterprise/include/lib/RCMDFile.class.php:1151 -msgid "Target doesn't exist" -msgstr "Le cible n'existe pas" - -#: ../../enterprise/include/lib/RCMDFile.class.php:1223 -msgid "There was a problem deleting tokens in the configuration file" -msgstr "" -"Il y a eu un problĆØme lors de l'Ć©limination des tokens dans le fichier de " -"configuration" - -#: ../../enterprise/include/lib/RCMDFile.class.php:1259 -msgid "There was a problem deleting target from DB" -msgstr "" -"Il y a eu un problĆØme lors de l'Ć©limination du cible de la base de donnĆ©es" - -#: ../../enterprise/include/lib/RCMDFile.class.php:1417 -msgid "Yaml is empty" -msgstr "Yaml est vide" - -#: ../../enterprise/include/lib/RCMDFile.class.php:1426 -msgid "Doesn't have a valid YAML format" -msgstr "Il n'a pas de format YAML valide" - -#: ../../enterprise/include/lib/RCMDFile.class.php:1444 -#, php-format -msgid "%s field is not allowed" -msgstr "Le champ %s n'est pas permis" - -#: ../../enterprise/include/lib/Service.php:152 -msgid "Service module does not match pointed one" -msgstr "Le module de service ne correspond pas celui pointĆ©" - -#: ../../enterprise/include/lib/Service.php:158 -#, php-format -msgid "Service module not found %s
    " -msgstr "Module de service non trouvƩ %s
    " - -#: ../../enterprise/include/lib/Service.php:177 -msgid "Service module SLA not found" -msgstr "SLA de module de service non trouvƩ" - -#: ../../enterprise/include/lib/Service.php:183 -#, php-format -msgid "SLA service module not found %s
    " -msgstr "Module de service SLA non trouvƩ %s
    " - -#: ../../enterprise/include/lib/Service.php:202 -msgid "Service module SLA does not match pointed one" -msgstr "Le SLA du module de service ne correspond celui pointƩ" - -#: ../../enterprise/include/lib/Service.php:208 -#, php-format -msgid "SLA service value module not found %s
    " -msgstr "Module de valeur de service SLA non trouvƩ %s
    " - -#: ../../enterprise/include/lib/Service.php:221 -#, php-format -msgid "Service agent not found %s
    " -msgstr "Agent de service non trouvƩ %s
    " - -#: ../../enterprise/include/lib/Service.php:232 -#, php-format -msgid "Service children could not be fully retrieved: %s
    " -msgstr "Le service fils n'a pas pu ĆŖtre rĆ©cupĆ©rĆ© complĆØtement : %s
    " - -#: ../../enterprise/include/lib/Service.php:313 -msgid "" -" Cannot switch from SMART to MANUAL if there are dynamic elements attached to " -"the service. Please erase dynamic elements before change to MANUAL" -msgstr "" -" Il est impossible de changer de SMART Ć  MANUAL s'il y a des Ć©lĆ©ments " -"dynamiques ajoutĆ©s au service. Veuillez Ć©liminer les Ć©lĆ©ments dynamiques avan " -"changer Ć  MANUAL" - -#: ../../enterprise/include/lib/Service.php:773 -#, php-format -msgid "Failed to update CPS for moduleValue for service %s: " -msgstr "Mise Ć  jour du CPS pour moduleValue pour le service %s Ć©chouĆ©e : " - -#: ../../enterprise/include/lib/Service.php:1441 -msgid "Error: id agent must be defined." -msgstr "Erreur : l'ID d'agent doit ĆŖtre dĆ©fini." - -#: ../../enterprise/include/lib/Service.php:1517 -msgid " error: Target agent does not exist." -msgstr " erreur : L'agent cible n'existe pas." - -#: ../../enterprise/include/lib/Policy.php:281 -#, php-format -msgid "Invalid operation %s" -msgstr "OpĆ©ration non valable %s" - -#: ../../enterprise/include/lib/Policy.php:1171 -#, php-format -msgid "Policy already defined: \"%s\"" -msgstr "Politique dĆ©jĆ  dĆ©finie : Ā« %s Ā»" - -#: ../../enterprise/include/lib/ClusterViewer/ClusterWizard.php:182 -msgid "Cluster already defined, please use another name." -msgstr "Grappe dĆ©jĆ  dĆ©finie, utilisez un autre nom." - -#: ../../enterprise/include/lib/ClusterViewer/ClusterWizard.php:779 -msgid "Cluster name" -msgstr "Nom de grappe" - -#: ../../enterprise/include/lib/ClusterViewer/ClusterWizard.php:780 -msgid "" -"An agent with the same name of the cluster will be created, as well a special " -"service with the same name" -msgstr "" -"Un agent avec le m^me nom de la grappe sera crĆ©Ć©, ainsi qu'un service special " -"avec le mĆŖme nom" - -#: ../../enterprise/include/lib/ClusterViewer/ClusterWizard.php:794 -msgid "Cluster type" -msgstr "Type de grappe" - -#: ../../enterprise/include/lib/ClusterViewer/ClusterWizard.php:795 -msgid "" -"AA is a cluster where all members are working. In AP cluster only master " -"member is working" -msgstr "" -"AA c'est une grappe oĆ¹ tous les membres travaillent. Dans la grappe AP " -"seulement le membre master travaille" - -#: ../../enterprise/include/lib/ClusterViewer/ClusterWizard.php:803 -msgid "Active - Active" -msgstr "Active - Active" - -#: ../../enterprise/include/lib/ClusterViewer/ClusterWizard.php:804 -msgid "Active - Pasive" -msgstr "Active - Passive" - -#: ../../enterprise/include/lib/ClusterViewer/ClusterWizard.php:824 -msgid "Target cluster agent will be stored under this group" -msgstr "L'agent de grappe cible sera stockĆ© sous ce groupe" - -#: ../../enterprise/include/lib/ClusterViewer/ClusterWizard.php:841 -msgid "" -"You must select a Prediction Server to perform all cluster status calculations" -msgstr "" -"Vous devez dĆ©tecter un Serveur de prĆ©diction pour accomplir toutes les " -"estimations d'Ć©tat de grappe" - -#: ../../enterprise/include/lib/ClusterViewer/ClusterWizard.php:1016 -msgid "critical if" -msgstr "critique si" - -#: ../../enterprise/include/lib/ClusterViewer/ClusterWizard.php:1025 -#: ../../enterprise/include/lib/ClusterViewer/ClusterWizard.php:1048 -#, php-format -msgid "% of balanced modules are down (equal or greater)." -msgstr "% des modules balancĆ©s sont dĆ©sactivĆ©s (Ć©gal ou supĆ©rieur)" - -#: ../../enterprise/include/lib/ClusterViewer/ClusterWizard.php:1063 -msgid "Please, set threholds for all active-active modules" -msgstr "Veuillez mettre des seuils pour touts les modules active-active" - -#: ../../enterprise/include/lib/ClusterViewer/ClusterWizard.php:1167 -msgid "Please, check all active-passive modules critical for this cluster" -msgstr "" -"Veuillez vĆ©rifier tout les modules critiques active-passive pour cette grappe" - -#: ../../enterprise/include/lib/ClusterViewer/ClusterWizard.php:1169 -msgid "" -"If a critical balanced module is going to critical status, then cluster will " -"be critical." -msgstr "" -"Si un module balancĆ© critique entre un Ć©tat critique, la grappe deviendra " -"critique." - -#: ../../enterprise/include/lib/ClusterViewer/ClusterManager.php:224 -msgid "Cluster not found: " -msgstr "Le grappe n'a pas Ć©tĆ© trouvĆ© : " - -#: ../../enterprise/include/lib/ClusterViewer/ClusterManager.php:233 -msgid "Cluster agent not found: " -msgstr "Agent de grappe non trouvĆ© : " - -#: ../../enterprise/include/lib/ClusterViewer/ClusterManager.php:270 -#, php-format -msgid "Error while deleting, reason: %s" -msgstr "Erreur d'Ć©limination, cause : %s" - -#: ../../enterprise/include/lib/ClusterViewer/ClusterManager.php:278 -msgid "Cluster successfully deleted." -msgstr "Grappe Ć©liminĆ©e correctement" - -#: ../../enterprise/include/lib/ClusterViewer/ClusterManager.php:304 -#, php-format -msgid "Error while forcing, reason: %s" -msgstr "Erreur de forƧage, cause : %s" - -#: ../../enterprise/include/lib/ClusterViewer/ClusterManager.php:312 -msgid "Cluster successfully forced." -msgstr "Grappe forcĆ©e correctement." - -#: ../../enterprise/include/lib/ClusterViewer/ClusterManager.php:568 -msgid "Not set" -msgstr "Non dĆ©fini" - -#: ../../enterprise/include/lib/ClusterViewer/ClusterManager.php:578 -msgid "Active-Active" -msgstr "Active-Active" - -#: ../../enterprise/include/lib/ClusterViewer/ClusterManager.php:580 -msgid "Active-Passive" -msgstr "Active-Passive" - -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:171 -msgid "Activating node" -msgstr "Noeud d'activation" - -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:205 -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:361 -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:673 -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:800 -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:1071 -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:1165 -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:1517 -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:1814 -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2183 -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:3107 -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:3388 -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:3542 -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:3617 -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:3922 -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:4147 -msgid "Connect node" -msgstr "Noeud de connexion" - -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:580 -msgid "Create table tmerge_error" -msgstr "CrĆ©er table tmerge_error" - -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:606 -msgid "Create table tmerge_steps" -msgstr "CrĆ©er table tmerge_steps" - -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:631 -msgid "Create table tmerge_queries" -msgstr "CrĆ©er table tmerge_queries" - -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:772 -#, php-format -msgid "%s console" -msgstr "Console %s" - -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:777 -msgid "Check cron task" -msgstr "VĆ©rifier tache cron" - -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:778 -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:860 -msgid "memory_limit current value" -msgstr "Valeur actuelle de memory_limit" - -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:867 -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:879 -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:891 -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:916 -#, php-format -msgid "" -"Post max size, nodes cannot be smaller than the size of the metaconsole %s" -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:931 -#, php-format -msgid "" -"Upload max file size, nodes cannot be smaller than the size of the metaconsole " -"%s" -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:993 -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:1009 -msgid "Problems with the backup directory" -msgstr "ProblĆØmes avec le rĆ©pertoire de sauvegarde" - -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:994 -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:1010 -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:1020 -msgid "Extension ZIP" -msgstr "Extension ZIP" - -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:1021 -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:1122 -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:1148 -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:1195 -msgid "Enable exceptions in tmerge_queries" -msgstr "Activer exceptions dans tmerge_queries" - -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:1219 -msgid "Enable foreing keys in tmerge_queries" -msgstr "Activer clĆ©s externes dans tmerge_queries" - -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:1498 -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:1783 -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:1574 -msgid "This table does not have the id" -msgstr "Cette table n'a pas d'ID" - -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:1575 -msgid "Prepare merge request" -msgstr "PrĆ©parer requĆŖte de fusion" - -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:1901 -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:2071 -msgid "Inserts updates in tmerge_queries" -msgstr "Mises Ć  jour d'inserts dans tmerge_queries" - -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2108 -msgid "Merging collections files" -msgstr "Fusion de fichiers de collections" - -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2164 -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2310 -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2481 -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:3094 -#, php-format -msgid "Api call: %s" -msgstr "Appelle API : %s" - -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2222 -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2223 -msgid "Problems while backing up collections from: " -msgstr "ProblĆØmes lors de la sauvegarde de collections de : " - -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2240 -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2244 -#, 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:2256 -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2260 -#, 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:2539 -msgid "Start phase merge" -msgstr "Commencer Ć©tape de fusion" - -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2551 -msgid "Create backups" -msgstr "CrĆ©er des sauvegardes" - -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2619 -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2620 -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:2630 -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2868 -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:3238 -msgid "Class agent" -msgstr "Agent de classe" - -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2654 -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2666 -msgid "Disable_foreing" -msgstr "Disable_foreing" - -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2678 -msgid "Truncate table" -msgstr "Tronquer la table" - -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2696 -msgid "Autoincrement" -msgstr "Auto-incrĆ©ment" - -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2708 -msgid "Inserts" -msgstr "Insertions" - -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2726 -msgid "Disabling constraints" -msgstr "DĆ©sactivant des contraintes" - -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2744 -msgid "Updates" -msgstr "Mises Ć  jour" - -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2767 -msgid "Restoring constraints" -msgstr "Restorer des contraintes" - -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2785 -msgid "Enable exceptions" -msgstr "Activer des exceptions" - -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2803 -msgid "Enable foreings keys" -msgstr "Activer des clĆ©s externes" - -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2820 -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2821 -msgid "Update conf agent policies" -msgstr "Mettre Ć  jour des politiques d'agents" - -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2857 -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2858 -msgid "Error updating agent conf" -msgstr "Mise Ć  jour de la configuration de l'agent Ć©chouĆ©e" - -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2879 -msgid "Synchronizing collections" -msgstr "Synchronisant des collections" - -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2891 -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2892 -msgid "Error synchronizing collections" -msgstr "Synchronisation de collections Ć©chouĆ©e" - -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2929 -#: ../../enterprise/include/lib/Metaconsole/Node.php:1765 -msgid "Final step" -msgstr "Ɖtape finale" - -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2930 -#: ../../enterprise/include/lib/Metaconsole/Node.php:1766 -msgid "Database merged" -msgstr "Base de donnĆ©es fusionnĆ©e" - -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2988 -msgid "Problems unzipping collections at: " -msgstr "ProblĆØmes lors de la dĆ©compression de collections dans : " - -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2989 -#, 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:3147 -msgid "Restoring database backup" -msgstr "Restituant de la sauvegarde de la base de donnĆ©es" - -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:3173 -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:4419 -msgid "Problems creating the backup" -msgstr "ProblĆØmes lors de la crĆ©ation de la sauvegarde" - -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:3186 -msgid "Restore backups conf agents" -msgstr "Restoration des agents de configuration de la sauvegarde" - -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:3223 -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:3225 -#, php-format -msgid "Agent \"%s\" with md5 file \"%s\"" -msgstr "Agent Ā« %s Ā» avec fichier md5 Ā« %s Ā»" - -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:3251 -msgid "Restore collections" -msgstr "Restorer les collections" - -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:3266 -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:3267 -msgid "Error Synch collections" -msgstr "Erreur de synchronisation des collections" - -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:3484 -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:3724 -msgid "Insert info steps" -msgstr "InsĆ©ree Ć©tapes d'information" - -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:3649 -msgid "Node not ready" -msgstr "Noeud non prĆ©parĆ©" - -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:3650 -msgid "Pending to be unified" -msgstr "Pendant d'unification" - -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:3889 -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:3894 -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:3946 -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:3951 -msgid "Initialize" -msgstr "Initialiser" - -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:4093 -msgid "Backup" -msgstr "Sauvegarde" - -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:4124 -msgid "Applying" -msgstr "En application" - -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:4350 -msgid "Error updating events" -msgstr "Erreur de mise Ć  jour d'Ć©vĆ©nements" - -#: ../../enterprise/include/lib/Metaconsole/Node.php:145 -msgid "auth error." -msgstr "erreur d'authentification." - -#: ../../enterprise/include/lib/Metaconsole/Node.php:149 -msgid "connection error." -msgstr "erreur de connexion." - -#: ../../enterprise/include/lib/Metaconsole/Node.php:153 -msgid "could not resolve the host." -msgstr "l'hĆ“te n'a pas pu ĆŖtre rĆ©solu" - -#: ../../enterprise/include/lib/Metaconsole/Node.php:157 -#: ../../enterprise/include/lib/Metaconsole/Node.php:206 -#: ../../enterprise/include/lib/Metaconsole/Node.php:253 -#: ../../enterprise/include/lib/Metaconsole/Node.php:509 -msgid "unknown error." -msgstr "erreur inconnue." - -#: ../../enterprise/include/lib/Metaconsole/Node.php:194 -msgid "missing credentials." -msgstr "identifiants manquants" - -#: ../../enterprise/include/lib/Metaconsole/Node.php:198 -msgid "cannot connect to host." -msgstr "la connexion avec l'hĆ“te n'est pas possible" - -#: ../../enterprise/include/lib/Metaconsole/Node.php:202 -msgid "database does not exist." -msgstr "la base de donnĆ©es n'existe pas." - -#: ../../enterprise/include/lib/Metaconsole/Node.php:245 -msgid "failed to connect to node database." -msgstr "erreur de connexion avec la base de donnĆ©es des noeuds." - -#: ../../enterprise/include/lib/Metaconsole/Node.php:249 -msgid "MR version mistmatch." -msgstr "La version MR ne correspond pas." - -#: ../../enterprise/include/lib/Metaconsole/Node.php:288 -#, php-format -msgid "last event replication: %s" -msgstr "derniĆØre rĆ©plication d'Ć©vĆ©nement : %s" - -#: ../../enterprise/include/lib/Metaconsole/Node.php:294 -msgid "server connection failed" -msgstr "erreur de connexion avec le serveur" - -#: ../../enterprise/include/lib/Metaconsole/Node.php:298 -#: ../../enterprise/include/lib/Metaconsole/Node.php:344 -#: ../../enterprise/include/lib/Metaconsole/Node.php:405 -msgid "unknown error" -msgstr "erreur inconnue" - -#: ../../enterprise/include/lib/Metaconsole/Node.php:310 -msgid "Last event replication" -msgstr "DerniĆØre rĆ©plication d'Ć©vĆ©nements" - -#: ../../enterprise/include/lib/Metaconsole/Node.php:340 -msgid "agent cache failed" -msgstr "cachĆ© d'agent Ć©chouĆ©" - -#: ../../enterprise/include/lib/Metaconsole/Node.php:393 -msgid "node is not recognized as metaconsole node." -msgstr "le noeud n'est pas reconnu en tant que noeud de la MĆ©taconsole." - -#: ../../enterprise/include/lib/Metaconsole/Node.php:397 -msgid "node license missmatch." -msgstr "Le noeud ne correspond pas avec la licence" - -#: ../../enterprise/include/lib/Metaconsole/Node.php:401 -msgid "cannot connect to node" -msgstr "la connexion avec le noeud n'est pas possible" - -#: ../../enterprise/include/lib/Metaconsole/Node.php:433 -msgid "Database is up to date with this Metaconsole" -msgstr "La base donnĆ©es est mise Ć  jour avec la MĆ©taconsole" - -#: ../../enterprise/include/lib/Metaconsole/Node.php:443 -msgid "Node not found" -msgstr "Noeud non trouvĆ©" - -#: ../../enterprise/include/lib/Metaconsole/Node.php:448 -#, php-format -msgid "" -"There are %d queries pending to be applied, click in the eye to see results" -msgstr "" -"Il y a %d requĆŖtes pendant d'application, cliquez sur l'oeil pour voir les " -"rĆ©sultats" - -#: ../../enterprise/include/lib/Metaconsole/Node.php:457 -msgid "Database synchronization state and pending tasks" -msgstr "Ɖtat de la synchronisation de la base de donnĆ©es et les taches pendantes" - -#: ../../enterprise/include/lib/Metaconsole/Node.php:592 -msgid "Operation and table" -msgstr "OpĆ©ration et table" - -#: ../../enterprise/include/lib/Metaconsole/Node.php:707 -#, php-format -msgid "" -"Failed synchronizing %s, please check node PHP configuration issues and " -"collection max sizes" -msgstr "" -"Erreur de synchronisation %s, veuillez vĆ©rifier les problĆØmes de configuration " -"PHP et les tailles maximales de collections" - -#: ../../enterprise/include/lib/Metaconsole/Node.php:1232 -msgid "" -"The elimination of this node will lead to the suppression of its agents from " -"metaconsole and all the configuration assigned to them. " -msgstr "" -"L'Ć©limination de ce noeud suprimira son agent de la MĆ©taconsole et toutes " -"leurs configurations. " - -#: ../../enterprise/include/lib/Metaconsole/Node.php:1236 -msgid "The rules for this node may stop working. " -msgstr "Les rĆØgles pour ce noeud pourraient cĆ©sser de travailler. " - -#: ../../enterprise/include/lib/Metaconsole/Node.php:1240 -msgid "" -"The deleted node will lose its license, and you must license it manually " -"again. " -msgstr "" -"Le noeud Ć©liminĆ© perdra sa licence, et vous devez le licencier manuellement " -"une autre fois. " - -#: ../../enterprise/include/lib/Metaconsole/Node.php:1747 -#, php-format -msgid "Failed to overwrite node data: %s" -msgstr "Erreur d'Ć©crasement des donnĆ©es du noeud : %s" - -#: ../../enterprise/include/lib/AlertCorrelation.class.php:798 -#: ../../enterprise/include/lib/AlertCorrelation.class.php:812 -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:849 -#: ../../enterprise/include/lib/AlertCorrelation.class.php:862 -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:898 -#: ../../enterprise/include/lib/AlertCorrelation.class.php:912 -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:953 -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:962 -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:1005 -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:1015 -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:1071 -msgid "Event group Recursive" -msgstr "RĆ©cursif du group d'Ć©vĆ©nement" - -#: ../../enterprise/include/lib/AlertCorrelation.class.php:1089 -msgid "Time window" -msgstr "FenĆŖtre de temps" - -#: ../../enterprise/include/lib/AlertCorrelation.class.php:1623 -msgid "Failed to cleanup old rules." -msgstr "Erreur d'Ć©limination de normes vielles." - -#: ../../enterprise/include/lib/AlertCorrelation.class.php:1631 -#, php-format -msgid "Failed SQL: %s" -msgstr "SQL Ć©chouĆ© : %s" - -#: ../../enterprise/include/lib/AlertCorrelation.class.php:1636 -#, php-format -msgid "Failed to apply rule: %s." -msgstr "Application de la norme Ć©chouĆ©e : %s" - -#: ../../enterprise/include/lib/AlertCorrelation.class.php:1784 -msgid "any" -msgstr "nā€™importe quel" - -#: ../../enterprise/include/lib/NetworkManager/Template.php:192 -msgid "Error linking script: " -msgstr "Erreur de liaison du script : " - -#: ../../enterprise/include/lib/NetworkManager/NetworkAgent.php:197 -msgid "No template assigned" -msgstr "Aucun modĆØle attribuĆ©" - -#: ../../enterprise/include/lib/NetworkManager/NetworkAgent.php:227 -msgid "NCM Agent without template assigned." -msgstr "Agent NCM sans modĆØle attribuĆ©." - -#: ../../enterprise/include/lib/NetworkManager/NetworkAgent.php:233 -msgid "Current selected template does not match vendor configured." -msgstr "" -"Le modĆØle sĆ©lectionnĆ© actuellement ne correspond pas avec le fournisseur " -"configurĆ©." - -#: ../../enterprise/include/lib/NetworkManager/NetworkAgent.php:240 -msgid "Current selected template does not match model configured." -msgstr "" -"Le modĆØle sĆ©lectionnĆ©e actuellement ne correspond pas le modĆØle configurĆ©." - -#: ../../enterprise/include/lib/NetworkManager/NetworkAgent.php:549 -#: ../../enterprise/include/lib/NetworkManager/NetworkAgent.php:579 -#, php-format -msgid "No %s script available for this agent, check template %s" -msgstr "Pas de script %s disponible pour cet agent, vĆ©rifiez le modĆØle %s" - -#: ../../enterprise/include/lib/Policy/Inventory.php:156 -#, php-format -msgid "inventory module already registered: \"%d\"" -msgstr "Module d'inventaire dĆ©jĆ  enregistrĆ© : Ā« %d Ā»" - -#: ../../enterprise/include/lib/Policy/Inventory.php:181 -#, php-format -msgid "Failed to update, already exists: \"%d\"" -msgstr "Erreur de mise Ć  jour, il existe dĆ©jĆ  : Ā« %d Ā»" - -#: ../../enterprise/include/lib/Policy/Queue.php:378 -#, php-format -msgid "Already queued in %s" -msgstr "DĆ©jĆ  en file d'attente dans %s" - -#: ../../enterprise/include/lib/Policy/Module.php:227 -#, php-format -msgid "Failed to update: \"%s\"" -msgstr "Erreur de mise Ć  jour : Ā« %s Ā»" - -#: ../../enterprise/include/lib/ServiceElement.php:611 -#, php-format -msgid "This filters will cause slowdown on server (%s ms)" -msgstr "Ces filtres causeront un ralentissement du serveur (%s ms)" - -#: ../../enterprise/include/lib/ServiceElement.php:625 -#, php-format -msgid "Regular expression is not valid: %s." -msgstr "L'expression rĆ©guliĆØre n'est pas valide : %s." - -#: ../../enterprise/include/lib/ServiceElement.php:864 -#, php-format -msgid " error while decoding rules: %s" -msgstr " erreur lors du dĆ©codage des normes : %s" - -#: ../../enterprise/include/lib/ServiceElement.php:1271 -#, php-format -msgid " error: Failed to delete element: %s" -msgstr " erreur : Ć©limination de l'Ć©lĆ©ment Ć©chouĆ©e : %s" - -#: ../../enterprise/include/lib/Core/SSH.php:163 -msgid "php-ssh2 not available" -msgstr "php-ssh2 non disponible" - -#: ../../enterprise/include/lib/Core/SSH.php:184 -msgid "Failed to connect" -msgstr "Erreur de connexion" - -#: ../../enterprise/include/lib/Core/SSH.php:239 -#, php-format -msgid "Unable to open public key file %s" -msgstr "Incapable d'ouvrir le fichier de clĆ© publique %s" - -#: ../../enterprise/include/lib/Core/SSH.php:257 -msgid "Failed to login to target" -msgstr "Erreur de connexion du cible" - -#: ../../enterprise/include/lib/Agent.php:99 -msgid " error, invalid agent." -msgstr " erreur, agent non valide." - -#: ../../enterprise/include/lib/Agent.php:672 -#, php-format -msgid "Log module \"%s\" does not exist" -msgstr "Le module du journal Ā« %s Ā» n'existe pas" - -#: ../../enterprise/include/lib/Agent.php:694 -#, php-format -msgid "Plugin \"%s\" does not exist" -msgstr "Le plugin Ā« %s Ā» n'existe pas" - -#: ../../enterprise/include/lib/Agent.php:826 -#, php-format -msgid "Log module \"%s\" does not exist, %s skipped" -msgstr "Le module du journal Ā« %s Ā» n'existe pas, %s sautĆ©" - -#: ../../enterprise/include/lib/Agent.php:861 -#, php-format -msgid "Plugin \"%s\" does not exist, %s skipped" -msgstr "Le plugin Ā« %s Ā» n'existe pas, %s sautĆ©" - -#: ../../enterprise/include/lib/Agent.php:932 -#, php-format -msgid "Log module %s already defined" -msgstr "Le module du journal %s est dĆ©jĆ  dĆ©fini" - -#: ../../enterprise/include/lib/Agent.php:949 -#, php-format -msgid "Invalid module type %s" -msgstr "Type de module %s non dĆ©fini" - -#: ../../enterprise/include/lib/Agent.php:979 -#, php-format -msgid "Plugin %s already defined" -msgstr "Le plugin %s est dĆ©jĆ  dĆ©fini" - -#: ../../enterprise/include/lib/Agent.php:993 -msgid "Invalid plugin definition" -msgstr "DĆ©finition de plugin non valide" - -#: ../../enterprise/include/lib/NetworkManager.php:83 -msgid "Retrieve config" -msgstr "RĆ©cupĆ©rer configuration" - -#: ../../enterprise/include/lib/NetworkManager.php:84 -msgid "Restore backed up config" -msgstr "RĆ©cupĆ©rer configuration sauvegardĆ©e" - -#: ../../enterprise/include/lib/NetworkManager.php:86 -msgid "Send firmware" -msgstr "Envoyer firmware" - -#: ../../enterprise/include/lib/NetworkManager.php:88 -#: ../../godmode/setup/setup_general.php:408 -msgid "On demand" -msgstr "Sur demande" - -#: ../../enterprise/include/lib/NetworkManager.php:93 -msgid "Executing test" -msgstr "ExĆ©cution du test" - -#: ../../enterprise/include/lib/NetworkManager.php:94 -msgid "Retrieving config" -msgstr "RĆ©cupĆ©ration de la configuration" - -#: ../../enterprise/include/lib/NetworkManager.php:95 -msgid "Restoring backup" -msgstr "Restauration de la sauvegarde" - -#: ../../enterprise/include/lib/NetworkManager.php:96 -msgid "Retrieving firmware version" -msgstr "RĆ©cupĆ©ration de la version du firmware" - -#: ../../enterprise/include/lib/NetworkManager.php:97 -msgid "Sending firmware update" -msgstr "Envoi de la mise Ć  jour du firmware" - -#: ../../enterprise/include/lib/NetworkManager.php:98 -msgid "Executing custom script" -msgstr "ExĆ©cution dā€™un script personnalisĆ©" - -#: ../../enterprise/include/lib/NetworkManager.php:99 -msgid "Executing on demand script" -msgstr "ExĆ©cution dā€™un script Ć  la demande" - -#: ../../enterprise/include/lib/NetworkManager.php:186 -msgid "Montly" -msgstr "Mensuel" - -#: ../../enterprise/include/functions_services.php:108 -msgid "There is no information about" -msgstr "Il n'y a pas d'informations sur" - -#: ../../enterprise/include/functions_services.php:113 -msgid "Service does not exist." -msgstr "Le service n'existe pas." - -#: ../../enterprise/include/functions_services.php:125 -msgid "module that stores the service" -msgstr "module qui stocke le service" - -#: ../../enterprise/include/functions_services.php:137 -msgid "module that stores SLA service" -msgstr "module qui stocke le service SLA" - -#: ../../enterprise/include/functions_services.php:150 -msgid "agent that stores the service" -msgstr "agent qui stocke le service" - -#: ../../enterprise/include/functions_services.php:163 -msgid "agent that stores SLA service" -msgstr "agent qui stocke les service SLA" - -#: ../../enterprise/include/functions_services.php:184 -msgid "alert critical SLA service" -msgstr "service SLA critique dā€™alerte" - -#: ../../enterprise/include/functions_services.php:205 -msgid "alert warning service" -msgstr "Service d'avertissement de l'alerte" - -#: ../../enterprise/include/functions_services.php:226 -msgid "alert critical service" -msgstr "Service critique de l'alerte" - -#: ../../enterprise/include/functions_services.php:247 -msgid "alert unknown service" -msgstr "Service unconnu de l'alerte" - -#: ../../enterprise/include/functions_services.php:528 -#, php-format -msgid "Module automatic create for the service %s" -msgstr "Module automatique crĆ©Ć© pour le service %s" - -#: ../../enterprise/include/functions_services.php:728 -#: ../../enterprise/godmode/services/services.service.php:285 -msgid "Error updating service: " -msgstr "Erreur lors de la mise Ć  jour des services : " - -#: ../../enterprise/include/functions_services.php:1368 -#: ../../enterprise/include/functions_services.php:1370 -#: ../../enterprise/include/functions_services.php:1404 -#: ../../enterprise/include/functions_services.php:1405 -#: ../../enterprise/include/functions_services.php:1407 -#: ../../enterprise/include/functions_services.php:1458 -#: ../../enterprise/include/functions_services.php:1460 -#: ../../enterprise/include/functions_reporting.php:5797 -msgid "Nonexistent" -msgstr "Inexistant" - -#: ../../enterprise/include/functions_services.php:1432 -msgid "Normal (Alert)" -msgstr "Normal (Alerte)" - -#: ../../enterprise/include/functions_services.php:1436 -msgid "Critical (Alert)" -msgstr "Critique (Alerte)" - -#: ../../enterprise/include/functions_services.php:1444 -msgid "Warning (Alert)" -msgstr "Avertissement (Alerte)" - -#: ../../enterprise/include/functions_services.php:1582 -msgid "There are no service elements defined" -msgstr "Aucun Ć©lĆ©ment de service dĆ©fini" - -#: ../../enterprise/include/functions_services.php:1606 -msgid "Weight Critical" -msgstr "Poids critique" - -#: ../../enterprise/include/functions_services.php:1607 -msgid "Weight Warning" -msgstr "Poids alerte" - -#: ../../enterprise/include/functions_services.php:1608 -msgid "Weight Unknown" -msgstr "Poids inconnu" - -#: ../../enterprise/include/functions_services.php:1609 -msgid "Weight Ok" -msgstr "Poids OK" - -#: ../../enterprise/include/functions_services.php:1672 -#: ../../enterprise/include/functions_services.php:1717 -#: ../../enterprise/include/functions_services.php:1785 -msgid "Nonexistent. This element should be deleted" -msgstr "Inexistant. Cet Ć©lĆ©ment doit ĆŖtre supprimĆ©." - -#: ../../enterprise/include/functions_services.php:1700 -#: ../../enterprise/include/functions_services.php:1767 -#: ../../enterprise/include/functions_services.php:1813 -msgid "This element does not affect service weigth because is disabled." -msgstr "Cet Ć©lĆ©ment n'affecte pas le poids du service parce qu'il est dĆ©sactivĆ©." - -#: ../../enterprise/include/functions_services.php:1828 -#, php-format -msgid "Dynamic element (%d) '%s' does not match any target" -msgstr "L'Ć©lĆ©ment dynamique (%d) '%s' ne correspond avec aucun cible" - -#: ../../enterprise/include/functions_services.php:1837 -#, php-format -msgid "Dynamic element (%d) '%s' causes an error: %s" -msgstr "ƉlĆ©ment dynamique (%d) '%s' cause une erreur : %s" - -#: ../../enterprise/include/functions_services.php:1849 -msgid "Dynamic element" -msgstr "ƉlĆ©ment dynamique" - -#: ../../enterprise/include/functions_services.php:1855 -#, php-format -msgid "agents like \"%s\"" -msgstr "agents comme Ā« %s Ā»" - -#: ../../enterprise/include/functions_services.php:1860 -#, php-format -msgid "modules like \"%s\"" -msgstr "modules comme Ā« %s Ā»" - -#: ../../enterprise/include/functions_services.php:1989 -msgid "NOT INITIALIZED" -msgstr "NON INITIALISƉ" - -#: ../../enterprise/include/functions_services.php:2015 -#: ../../enterprise/godmode/services/services.elements.php:806 -msgid "Edit service elements" -msgstr "Ɖditer Ć©lĆ©ments de service" - -#: ../../enterprise/include/functions_services.php:2023 -msgid "Delete service element" -msgstr "Supprimer Ć©lĆ©ment de service" - -#: ../../enterprise/include/functions_services.php:2082 -msgid "FAIL" -msgstr "ƉCHEC" - -#: ../../enterprise/include/auth/saml.php:119 -#, php-format -msgid "Pandora FMS SAML authentication error: %s" -msgstr "Erreur d'authentification SAML Pandora FMS : %s" - -#: ../../enterprise/include/auth/saml.php:184 -msgid "Force log out" -msgstr "Forcer dĆ©connexion" - -#: ../../enterprise/include/functions_events.php:219 -msgid "Id source events" -msgstr "ƉvĆ©nements de source d'ID" - -#: ../../enterprise/include/functions_events.php:245 -#: ../../enterprise/include/functions_events.php:267 -msgid "More than 5 tags" -msgstr "Plus de 5 Ć©tiquettes" - -#: ../../enterprise/include/functions_metaconsole.php:1408 -#: ../../enterprise/include/functions_metaconsole.php:1441 -#: ../../enterprise/include/functions_metaconsole.php:1474 -#: ../../enterprise/include/functions_metaconsole.php:1507 -#: ../../enterprise/include/functions_metaconsole.php:1540 -#: ../../enterprise/include/functions_metaconsole.php:1573 -#: ../../enterprise/include/functions_metaconsole.php:1604 -#: ../../enterprise/include/functions_metaconsole.php:1637 -#: ../../enterprise/meta/include/functions_wizard_meta.php:239 -#: ../../enterprise/meta/include/functions_wizard_meta.php:685 -#: ../../enterprise/godmode/setup/setup_log_collector.php:49 -#: ../../enterprise/godmode/modules/configure_local_component.php:503 -#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:183 -#: ../../godmode/agentes/module_manager_editor_web.php:172 -msgid "Check" -msgstr "VĆ©rifier" - -#: ../../enterprise/include/functions_metaconsole.php:2943 -#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:163 -msgid "Target server ip address is set" -msgstr "L'adresse IP du serveur cible est configurĆ©" - -#: ../../enterprise/include/functions_metaconsole.php:2950 -#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:159 -msgid "There are differences between MR versions" -msgstr "Il y a des diffĆ©rences entre les versions MR" - -#: ../../enterprise/include/functions_metaconsole.php:2957 -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:2964 -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:2971 -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:2978 -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:2985 -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:2992 -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:2999 -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:3006 -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:3013 -msgid "Agent already exists in target node" -msgstr "L'agent existe dĆ©jĆ  dans le noeud cible" - -#: ../../enterprise/include/functions_metaconsole.php:3037 -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:3042 -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" - -#: ../../enterprise/include/functions_login.php:22 -msgid "You must change password:" -msgstr "Changez le mot de passe :" - -#: ../../enterprise/include/functions_login.php:38 -msgid "Password must be different from the 3 previous changes." -msgstr "Le mot de passe doit ĆŖtre diffĆ©rent des 3 derniers changements." - -#: ../../enterprise/include/functions_login.php:50 -msgid "Old pass: " -msgstr "Vieux mot de passe : " - -#: ../../enterprise/include/functions_login.php:53 -msgid "New pass: " -msgstr "Nouvel mot de passe : " - -#: ../../enterprise/include/functions_login.php:57 -msgid "Confirm: " -msgstr "Valider : " - -#: ../../enterprise/include/functions_login.php:63 -msgid "Change" -msgstr "Modifier" - -#: ../../enterprise/include/functions_login.php:97 -msgid "Login blocked" -msgstr "Connexion bloquĆ©e" - -#: ../../enterprise/include/functions_login.php:105 -msgid "User has been blocked. Try again in " -msgstr "L'utilisateur a Ć©tĆ© bloquĆ©. Essayez Ć  nouveau dans " - -#: ../../enterprise/include/functions_login.php:105 -msgid " minutes" -msgstr " minutes" - -#: ../../enterprise/include/functions_login.php:138 -msgid "Login successfully" -msgstr "Connection correcte" - -#: ../../enterprise/include/functions_login.php:146 -msgid "User pass successfully updated" -msgstr "Mot de passe de l'utilisateur mis Ć  jour correctement" - -#: ../../enterprise/include/functions_login.php:252 -msgid "Password must be different from the " -msgstr "Le nouveau mot de passe doit ĆŖtre diffĆ©rent des " - -#: ../../enterprise/include/functions_login.php:252 -msgid " previous changes." -msgstr " mots de passe prĆ©cĆ©dents." - -#: ../../enterprise/include/functions_login.php:265 -msgid "Password must be different" -msgstr "Le mot de passe doit ĆŖtre diffĆ©rent" - -#: ../../enterprise/include/functions_login.php:276 -msgid "Password too short" -msgstr "Mot de passe trop court" - -#: ../../enterprise/include/functions_login.php:288 -msgid "Password must contain numbers" -msgstr "Le mot de passe doit contenir des chiffres" - -#: ../../enterprise/include/functions_login.php:301 -msgid "Password must contain symbols" -msgstr "Le mot de passe doit contenir des symboles." - -#: ../../enterprise/include/functions_login.php:324 -msgid "Invalid old password" -msgstr "Mot de passe ancien invalide" - -#: ../../enterprise/include/functions_login.php:361 -msgid "Password confirm does not match" -msgstr "Les mots de passe ne concordent pas." - -#: ../../enterprise/include/functions_login.php:368 -msgid "Password empty" -msgstr "Mot de passe vide" - -#: ../../enterprise/include/functions_snmp.php:65 -msgid "Trap status agent recovered" -msgstr "Agent d'Ć©tat de trap rĆ©cupĆ©rĆ©" - -#: ../../enterprise/include/functions_aws.php:381 -msgid "$" -msgstr "$" - -#: ../../enterprise/include/functions_aws.php:491 -msgid "Current deployments" -msgstr "DĆ©ploiements actuels" - -#: ../../enterprise/include/functions_aws.php:525 -msgid "Cost analysis" -msgstr "Analyse de coĆ»t" - -#: ../../enterprise/include/functions_aws.php:528 -msgid "Current cost estimation" -msgstr "Estimation actuelle de coĆ»ts" - -#: ../../enterprise/include/functions_aws.php:530 -msgid "Previous period cost" -msgstr "CoĆ»t du pĆ©riode prĆ©cĆ©dent" - -#: ../../enterprise/include/functions_aws.php:589 -msgid "Reservation status" -msgstr "Ɖtat de reservation" - -#: ../../enterprise/include/functions_enterprise.php:460 -#: ../../enterprise/meta/include/functions_wizard_meta.php:613 -#: ../../enterprise/meta/include/functions_wizard_meta.php:670 -#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:1066 -#: ../../godmode/massive/massive_edit_modules.php:1141 -#: ../../godmode/agentes/module_manager_editor_web.php:93 -msgid "Web checks" -msgstr "VĆ©rification web" - -#: ../../enterprise/include/functions_enterprise.php:464 -msgid "Tree view by tags" -msgstr "Arborescence par Ć©tiquettes" - -#: ../../enterprise/include/functions_enterprise.php:494 -msgid "" -"If the interval of days until events data purge is shorter than the events " -"data history storage interval, data will be lost. It is recommended that the " -"storage frequency is higher than the purge frequency." -msgstr "" -"si l'intervalle de jours jusqu'Ć  l'Ć©puration des donnĆ©es d'Ć©vĆ©nements et plus " -"courte que l'intervalle historique de donnĆ©es d'Ć©vĆ©nements, des donnĆ©es seront " -"perdues. Nous vous recommandons que la frĆ©quence de stockage soit plus haute " -"que la frĆ©quence d'Ć©purage." - -#: ../../enterprise/include/functions_enterprise.php:496 -msgid "" -"Problems with event days purge and event days that pass data to history DB." -msgstr "" -"ProblĆØmes avec la date de nettoyage d'Ć©vĆ©nements et la date de passage de " -"donnĆ©es Ć  l'historique de la BD." - -#: ../../enterprise/include/functions_enterprise.php:507 -msgid "" -"If days purge is less than history days pass to history db, you will have a " -"problems and you lost data. Recommended that days purge will more taller than " -"days to history DB" -msgstr "" -"Si la date de nettoyage est infĆ©rieure Ć  la date de passage de l'historique de " -"la BD, vous aurez des problĆØmes et perdrez des donnĆ©es. Il est conseillĆ© de " -"configurer la date de nettoyage Ć  un niveau supĆ©rieur Ć  la date de passage de " -"l'historique de la BD." - -#: ../../enterprise/include/functions_enterprise.php:509 -msgid "Problems with days purge and days that pass data to history DB" -msgstr "" -"ProblĆØmes avec la date de nettoyage et la date de passage de donnĆ©es Ć  " -"l'historique de la BD." - -#: ../../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_local_components.php:174 -#: ../../enterprise/meta/advanced/collections.data.php:117 -#: ../../enterprise/godmode/agentes/collections.data.php:217 -msgid "Empty name" -msgstr "Nom vide" - -#: ../../enterprise/include/functions_local_components.php:179 -msgid "Empty configuration" -msgstr "Vider la configuration" - -#: ../../enterprise/include/functions_local_components.php:184 -msgid "Empty OS" -msgstr "Vider le systĆØme d'exploitation" - -#: ../../enterprise/include/functions_log.php:279 -#: ../../enterprise/include/functions_log.php:282 -msgid "Lines" -msgstr "Lignes" - -#: ../../enterprise/include/functions_HA_cluster.php:49 -msgid "Recover" -msgstr "RĆ©cupĆ©rer" - -#: ../../enterprise/include/functions_HA_cluster.php:52 -msgid "Promote" -msgstr "Promouvoir" - -#: ../../enterprise/include/functions_HA_cluster.php:55 -msgid "Demote" -msgstr "DĆ©valoriser" - -#: ../../enterprise/include/functions_HA_cluster.php:67 -msgid "Resync" -msgstr "Resync" - -#: ../../enterprise/include/functions_HA_cluster.php:261 -msgid "Public Key Authentication Failed" -msgstr "ClĆ© d'authentication publique Ć©chouĆ©e" - -#: ../../enterprise/include/functions_HA_cluster.php:268 -msgid "Connection failed" -msgstr "La connexion a Ć©chouĆ©" - -#: ../../enterprise/include/functions_HA_cluster.php:491 -msgid "Register" -msgstr "S'inscrire" - -#: ../../enterprise/include/functions_HA_cluster.php:493 -msgid "Register new node" -msgstr "Enregistrer nouveau noeud" - -#: ../../enterprise/include/functions_reporting.php:71 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:198 -msgid "Wizard SLA" -msgstr "Assistant SLA" - -#: ../../enterprise/include/functions_reporting.php:82 -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:74 -msgid "Global" -msgstr "GĆ©nĆ©ral" - -#: ../../enterprise/include/functions_reporting.php:93 -msgid "Advance options" -msgstr "Options avancĆ©es" - -#: ../../enterprise/include/functions_reporting.php:117 -msgid "Templates list" -msgstr "Liste de modĆØles" - -#: ../../enterprise/include/functions_reporting.php:152 -msgid "Templates Wizard" -msgstr "Assistant de modĆØles" - -#: ../../enterprise/include/functions_reporting.php:1232 -msgid "Availability item created from wizard." -msgstr "ƉlĆ©ment disponible crĆ©Ć© Ć  partir de l'assistant" - -#: ../../enterprise/include/functions_reporting.php:1903 -#: ../../enterprise/include/functions_reporting.php:2959 -#: ../../enterprise/include/functions_reporting.php:3947 -msgid "Planned Downtimes" -msgstr "Temps d'arrĆŖt planifiĆ©s" - -#: ../../enterprise/include/functions_reporting.php:1910 -msgid "Ignore time" -msgstr "Ignorer le temps" - -#: ../../enterprise/include/functions_reporting.php:1930 -msgid "SLA Compliance per days" -msgstr "ConformitĆ© des SLA par jours" - -#: ../../enterprise/include/functions_reporting.php:2021 -msgid "Summary of SLA Failures" -msgstr "RĆ©sumĆ© des Ć©checs de SLA" - -#: ../../enterprise/include/functions_reporting.php:2041 -#: ../../enterprise/include/functions_reporting.php:2042 -msgid "Out of SLA limits" -msgstr "Hors limites de SLA" - -#: ../../enterprise/include/functions_reporting.php:2047 -#: ../../enterprise/include/functions_reporting.php:2048 -msgid "IN of SLA limits" -msgstr "Dans les limites de SLA" - -#: ../../enterprise/include/functions_reporting.php:2969 -#: ../../enterprise/include/functions_reporting.php:3210 -#: ../../enterprise/include/functions_reporting.php:3957 -msgid "Planned Downtime" -msgstr "Temps d'arrĆŖt planifiĆ©" - -#: ../../enterprise/include/functions_reporting.php:2999 -msgid "T. Total" -msgstr "T. Total" - -#: ../../enterprise/include/functions_reporting.php:3000 -#: ../../enterprise/include/functions_reporting.php:3984 -msgid "T. OK" -msgstr "T. OK" - -#: ../../enterprise/include/functions_reporting.php:3001 -#: ../../enterprise/include/functions_reporting.php:3985 -msgid "T. Error" -msgstr "T. Erreur" - -#: ../../enterprise/include/functions_reporting.php:3002 -#: ../../enterprise/include/functions_reporting.php:3986 -msgid "T. Unknown" -msgstr "T. Inconnu" - -#: ../../enterprise/include/functions_reporting.php:3003 -#: ../../enterprise/include/functions_reporting.php:3987 -msgid "T. Not_init" -msgstr "T. Non_init" - -#: ../../enterprise/include/functions_reporting.php:3004 -#: ../../enterprise/include/functions_reporting.php:3988 -msgid "T. Downtime" -msgstr "T. Temps d'arrĆŖt" - -#: ../../enterprise/include/functions_reporting.php:3005 -#: ../../enterprise/include/functions_reporting.php:3989 -msgid "SLA %" -msgstr "SLA %" - -#: ../../enterprise/include/functions_reporting.php:4211 -msgid "Ignore Planned Downtime" -msgstr "Ignorer le temps d'arrĆŖte programmĆ©" - -#: ../../enterprise/include/functions_reporting.php:4904 -msgid "Max/Min Critical" -msgstr "Critique max/min" - -#: ../../enterprise/include/functions_reporting.php:4905 -msgid "Max/Min Warning" -msgstr "Avertissement max/min" - -#: ../../enterprise/include/functions_reporting.php:4906 -msgid "Total checks ok/total" -msgstr "VĆ©rifications totales ok/total" - -#: ../../enterprise/include/functions_reporting.php:4907 -msgid "% time ok" -msgstr "% temps ok" - -#: ../../enterprise/include/functions_reporting.php:4967 -msgid "Time Critical" -msgstr "Temps critique" - -#: ../../enterprise/include/functions_reporting.php:5062 -msgid "Checks Critical" -msgstr "VĆ©rifications critiques" - -#: ../../enterprise/include/functions_reporting.php:5582 -msgid "There are no SLAs defined." -msgstr "Aucun SLA dĆ©fini" - -#: ../../enterprise/include/functions_reporting.php:6218 -msgid "Scheduled shutdow" -msgstr "Temps d'arrĆŖte programĆ©" - -#: ../../enterprise/include/functions_reporting.php:6584 -#: ../../enterprise/include/functions_reporting.php:7474 -#, php-format -msgid "Graph agents(%s) - %s" -msgstr "Agents de graphiques(%s) - %s" - -#: ../../enterprise/include/functions_reporting.php:7382 -#, php-format -msgid "Graph agent(%s) - %s" -msgstr "Agent de graphiques(%s) - %s" - -#: ../../enterprise/include/functions_reporting.php:7829 -msgid "There is not data for the selected conditions" -msgstr "Il n'y a pas des donnĆ©es pour les conditions sĆ©lectionnĆ©es" - -#: ../../enterprise/include/functions_reporting.php:8021 -#: ../../enterprise/include/functions_reporting.php:8087 -msgid "Template editor" -msgstr "Ɖditeur de modĆØle" - -#: ../../enterprise/include/functions_reporting.php:8517 -msgid "Configuration changes" -msgstr "Changements de configuration" - -#: ../../enterprise/include/functions_reporting.php:8534 -msgid "No NCM capabilities detected" -msgstr "Aucune fonctionnalitĆ© NCM dĆ©tectĆ©e" - -#: ../../enterprise/include/process_reset_pass.php:118 -#: ../../enterprise/meta/include/process_reset_pass.php:114 -msgid "Repeat password" -msgstr "Ressaisir le mot de passe" - -#: ../../enterprise/include/process_reset_pass.php:124 -#: ../../enterprise/meta/include/process_reset_pass.php:120 -msgid "Change password" -msgstr "Modifier le mot de passe" - -#: ../../enterprise/include/functions_visual_map.php:203 -#: ../../enterprise/include/functions_visual_map.php:268 -msgid "Crit:" -msgstr "Critique :" - -#: ../../enterprise/include/functions_visual_map.php:207 -#: ../../enterprise/include/functions_visual_map.php:272 -msgid "Warn:" -msgstr "Avertissement :" - -#: ../../enterprise/include/functions_visual_map.php:211 -#: ../../enterprise/include/functions_visual_map.php:276 -msgid "Ok:" -msgstr "OK :" - -#: ../../enterprise/include/functions_visual_map.php:215 -#: ../../enterprise/include/functions_visual_map.php:280 -#: ../../enterprise/meta/include/functions_autoprovision.php:765 -msgid "Value:" -msgstr "ValeurĀ :" - -#: ../../enterprise/include/functions_visual_map.php:672 -msgid "None of the services was added" -msgstr "Aucun des services a Ć©tĆ© ajoutĆ©" - -#: ../../enterprise/include/functions_visual_map.php:674 -#, php-format -msgid "%d services couldn't be added" -msgstr "Les services %d n'ont pas pu ĆŖtre ajoutĆ©s." - -#: ../../enterprise/include/functions_visual_map.php:680 -msgid "There was an error retrieving the visual map information" -msgstr "Erreur de rĆ©cupĆ©ration de l'information de la carte visuelle" - -#: ../../enterprise/include/functions_transactional.php:631 -msgid "Error in dependencies field" -msgstr "Erreur dans le champ de dĆ©pendances" - -#: ../../enterprise/include/functions_transactional.php:640 -msgid "Error in enables field" -msgstr "Erreur dans le champ d'activation" - -#: ../../enterprise/include/functions_setup.php:44 -#: ../../enterprise/include/functions_setup.php:108 -#: ../../enterprise/godmode/menu.php:295 ../../godmode/setup/setup.php:317 -#: ../../godmode/extensions.php:140 -msgid "Enterprise" -msgstr "Enterprise" - -#: ../../enterprise/include/functions_setup.php:79 -#: ../../enterprise/include/functions_setup.php:125 -msgid "Log collector" -msgstr "Collecteur de journaux" - -#: ../../enterprise/include/functions_setup.php:151 -msgid "Metaconsole link status" -msgstr "Ɖtat du lien de la MĆ©taconsole" - -#: ../../enterprise/include/functions_setup.php:183 -msgid "DB connection" -msgstr "Connexion de la base de donnĆ©es" - -#: ../../enterprise/include/functions_setup.php:192 -#: ../../enterprise/meta/advanced/metasetup.consoles.php:834 -msgid "Agent cache" -msgstr "Agent cache" - -#: ../../enterprise/include/functions_setup.php:201 -#: ../../enterprise/meta/advanced/policymanager.sync.php:328 -#: ../../enterprise/meta/advanced/metasetup.consoles.php:835 -#: ../../enterprise/godmode/servers/HA_cluster.php:166 -msgid "Sync" -msgstr "Synchronisation" - -#: ../../enterprise/include/functions_setup.php:205 -msgid "This console is joining a metaconsole." -msgstr "Cette console va se rejoindre avec la MĆ©taconsole." - -#: ../../enterprise/include/functions_setup.php:213 -msgid "This console is not joining any metaconsole." -msgstr "Cette console ne va pas se rejoindre avec aucune MĆ©taconsole." - -#: ../../enterprise/include/functions_backup.php:162 -msgid "Command mysqldump not found." -msgstr "Commande Mysqldump introuvable." - -#: ../../enterprise/include/functions_backup.php:177 -msgid "The mysqldump execution goes wrong." -msgstr "Lā€™exĆ©cution de mysqldump tourne mal." - -#: ../../enterprise/include/functions_backup.php:190 -msgid "" -"In order to make backups it is necessary to check if the configuration is " -"correct." -msgstr "" -"Afin dā€™effectuer des sauvegardes, il est nĆ©cessaire de vĆ©rifier si la " -"configuration est correcte." - -#: ../../enterprise/include/functions_backup.php:256 -msgid "No description" -msgstr "Aucune description" - -#: ../../enterprise/include/functions_backup.php:408 -msgid "Restoring a backup" -msgstr "Restauration d'une sauvegarde" - -#: ../../enterprise/include/functions_backup.php:410 -#, php-format -msgid "Restoring a %s database backup must be done manually." -msgstr "" -"La restoration d'une sauvegarde de base de donnĆ©es %s doit ĆŖtre fait " -"manuellement." - -#: ../../enterprise/include/functions_backup.php:412 -msgid "" -"It's a complex operation that needs human intervation to avoid system failures " -"and data loosing" -msgstr "" -"Il s'agit d'une opĆ©ration complexe qui requiert une intervention humaine afin " -"d'Ć©viter les pannes de systĆØme et la perte de donnĆ©es." - -#: ../../enterprise/include/functions_backup.php:414 -msgid "To restore the selected backup, please follow these steps" -msgstr "Pour restaurer la sauvegarde sĆ©lectionnĆ©e, veuillez suivre ces Ć©tapes." - -#: ../../enterprise/include/functions_backup.php:420 -msgid "Open a root shell in your system located at " -msgstr "Ouvrez une interface systĆØme racine sur votre systĆØme situĆ© Ć  " - -#: ../../enterprise/include/functions_backup.php:424 -msgid "Connect to MySQL database using the following command" -msgstr "" -"Se connecter Ć  la base de donnĆ©es MySQL en utilisant la commande suivante" - -#: ../../enterprise/include/functions_backup.php:430 -msgid "Create a new database" -msgstr "CrĆ©er une nouvelle base de donnĆ©es" - -#: ../../enterprise/include/functions_backup.php:454 -msgid "Restore the backup" -msgstr "Restaurer la sauvegarde" - -#: ../../enterprise/include/functions_backup.php:469 -msgid "Modify console configuration to use this new database" -msgstr "" -"Modifier la configuration de la console pour utiliser cette nouvelle base de " -"donnĆ©es" - -#: ../../enterprise/include/functions_backup.php:470 -msgid "Open configuration file" -msgstr "Ouvrir le fichier de configuration" - -#: ../../enterprise/include/functions_backup.php:473 -#: ../../enterprise/include/functions_backup.php:483 -msgid "Find" -msgstr "Chercher" - -#: ../../enterprise/include/functions_backup.php:475 -#: ../../enterprise/include/functions_backup.php:485 -msgid "and replace with" -msgstr "et les remplacer par" - -#: ../../enterprise/include/functions_backup.php:480 -msgid "Modify servers configuration to use this new database" -msgstr "" -"Modifier la configuration des serveurs Ć  utiliser cette nouvelle base de " -"donnĆ©es" - -#: ../../enterprise/include/functions_backup.php:481 -msgid "Find servers configuration file and replace the following lines" -msgstr "" -"Trouver le fichier de configuration des serveurs et remplacer les lignes " -"suivantes" - -#: ../../enterprise/include/functions_backup.php:490 -msgid "Restart the servers and login again into the console" -msgstr "RedĆ©marrer les serveurs et se connecter Ć  nouveau Ć  la console" - -#: ../../enterprise/include/functions_ipam.php:288 -msgid "Export to Excel" -msgstr "Exporter vers Excel" - -#: ../../enterprise/include/functions_ipam.php:395 -msgid "Assign next free IP" -msgstr "Attribuer la suivante IP libre" - -#: ../../enterprise/include/functions_ipam.php:413 -msgid "Next available IP" -msgstr "Suivante IP disponible" - -#: ../../enterprise/include/functions_ipam.php:1565 -msgid "Occupied" -msgstr "OccupĆ©" - -#: ../../enterprise/include/functions_ipam.php:1567 -#: ../../enterprise/godmode/reporting/visual_console_builder.wizard_services.php:139 -msgid "Available" -msgstr "Disponible" - -#: ../../enterprise/include/functions_ipam.php:1573 -msgid "Not managed" -msgstr "Non gĆ©rĆ©" - -#: ../../enterprise/include/functions_ipam.php:1579 -msgid "Not Reserved" -msgstr "Non rĆ©servĆ©" - -#: ../../enterprise/include/functions_ipam.php:1589 -msgid "Occupancy statistics" -msgstr "Statistiques d'occupation" - -#: ../../enterprise/include/functions_ipam.php:1646 -msgid "DESC" -msgstr "Descendant" - -#: ../../enterprise/include/functions_ipam.php:1647 -msgid "ASC" -msgstr "Ascendant" - -#: ../../enterprise/include/functions_ipam.php:1648 -msgid "A -> Z" -msgstr "A -> Z" - -#: ../../enterprise/include/functions_ipam.php:1649 -msgid "Z -> A" -msgstr "Z -> A" - -#: ../../enterprise/include/functions_ipam.php:1650 -#: ../../enterprise/include/functions_ipam.php:1651 -msgid "Last check" -msgstr "DerniĆØre vĆ©rification" - -#: ../../enterprise/include/functions_ipam.php:1650 -msgid "Newer -> Older" -msgstr "Nouveau -> Ancien" - -#: ../../enterprise/include/functions_ipam.php:1651 -msgid "Older -> Newer" -msgstr "Ancien -> Nouveau" - -#: ../../enterprise/include/functions_ipam.php:1678 -msgid "Exact address match" -msgstr "Concordance exacte de l'adresse" - -#: ../../enterprise/include/functions_ipam.php:1682 -msgid "S.O" -msgstr "SystĆØme d'exploitation" - -#: ../../enterprise/include/functions_ipam.php:1695 -msgid "Big" -msgstr "Grand" - -#: ../../enterprise/include/functions_ipam.php:1696 -msgid "Tiny" -msgstr "Petit" - -#: ../../enterprise/include/functions_ipam.php:1697 -msgid "Icons style" -msgstr "Style des icĆ“nes" - -#: ../../enterprise/include/functions_ipam.php:1714 -msgid "Show not alive hosts" -msgstr "Afficher les hĆ“tes inactifs" - -#: ../../enterprise/include/functions_ipam.php:1722 -msgid "Show only managed addresses" -msgstr "Afficher uniquement les adresses gĆ©rĆ©es" - -#: ../../enterprise/include/functions_ipam.php:1730 -msgid "Reserved addresses" -msgstr "Adresses rĆ©servĆ©es" - -#: ../../enterprise/include/functions_ipam.php:1735 -msgid "Unreserved" -msgstr "Non rĆ©servĆ©es" - -#: ../../enterprise/include/functions_ipam.php:1745 -msgid "Last Contact" -msgstr "Dernier contact" - -#: ../../enterprise/include/functions_ipam.php:1788 -msgid "Filter options" -msgstr "Options de filtre" - -#: ../../enterprise/include/functions_ipam.php:1979 -msgid "id Network" -msgstr "ID rĆ©seau" - -#: ../../enterprise/include/functions_ipam.php:1984 -msgid "ID recon task" -msgstr "ID de tache de reconnaissance" - -#: ../../enterprise/include/functions_ipam.php:1985 -msgid "Scan Interval" -msgstr "Scanner l'intervalle" - -#: ../../enterprise/include/functions_ipam.php:1986 -msgid "Users Operator" -msgstr "OpĆ©rateur d'utilisateurs" - -#: ../../enterprise/include/functions_ipam.php:1987 -msgid "Total Ips" -msgstr "Lps totales" - -#: ../../enterprise/include/functions_ipam.php:1988 -msgid "Last Update" -msgstr "DerniĆØre mise Ć  jour" - -#: ../../enterprise/include/functions_ipam.php:2041 -msgid "OS Name" -msgstr "Nom du systĆØme dā€™exploitation" - -#: ../../enterprise/include/functions_ipam.php:2045 -msgid "Last updated" -msgstr "DerniĆØre mise Ć  jour" - -#: ../../enterprise/include/functions_ipam.php:2046 -msgid "Last modified" -msgstr "DerniĆØre modification" - -#: ../../enterprise/include/functions_ipam.php:2047 -msgid "Dhcp Leased" -msgstr "Dhcp louĆ©" - -#: ../../enterprise/include/functions_ipam.php:2048 -msgid "Dhcp Leased Mode" -msgstr "Mode louĆ© Dhcp" - -#: ../../enterprise/include/functions_ipam.php:2049 -msgid "Dhcp Leased Expiration" -msgstr "Expiration louĆ©e par Dhcp" - -#: ../../enterprise/include/functions_ipam.php:2050 -msgid "Mac address" -msgstr "Adresse Mac" - -#: ../../enterprise/include/functions_reporting_pdf.php:1838 -msgid "Contents" -msgstr "Contenu" - -#: ../../enterprise/include/functions_collection.php:39 -#, php-format -msgid "Collection %d does not exist" -msgstr "La collection %d n'existe pas" - -#: ../../enterprise/include/functions_collection.php:48 -msgid "Collection dir does not exist." -msgstr "Le rĆ©pertoire de la collection n'existe pas." - -#: ../../enterprise/include/functions_collection.php:57 -#, php-format -msgid "Failed to create collection path: %s" -msgstr "Erreur de crĆ©ation du chemin de la collection : %s" - -#: ../../enterprise/include/functions_collection.php:66 -msgid "Target collection path is not writable" -msgstr "Le chemin de la collection cible ne peut pas ĆŖtre Ć©crit" - -#: ../../enterprise/include/functions_collection.php:80 -msgid "Failed to create zip file for collection" -msgstr "Erreur de crĆ©ation du fichier zip pour la collection" - -#: ../../enterprise/include/functions_collection.php:87 -#, php-format -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_servicemap.php:80 -#: ../../enterprise/include/functions_servicemap.php:1203 -msgid "Failed to retrieve service elements: " -msgstr "Les Ć©lĆ©ments service n'ont pas pu ĆŖtre collectĆ©s : " - -#: ../../enterprise/include/functions_hostdevices.php:45 -msgid "Remote commands enabled" -msgstr "Commandes distantes habilitĆ©es." - -#: ../../enterprise/include/functions_ui.php:79 -msgid "Select inventory module" -msgstr "SĆ©lectionnez un module d'inventaire" - -#: ../../enterprise/include/functions_ui.php:92 -#: ../../enterprise/godmode/agentes/inventory_manager.php:222 -msgid "Target" -msgstr "Cible" - -#: ../../enterprise/include/functions_ui.php:96 -msgid "Use custom fields" -msgstr "utiliser les champs personnalisĆ©s." - -#: ../../enterprise/include/functions_ui.php:179 -msgid "Field name" -msgstr "Nom du champ" - -#: ../../enterprise/include/functions_ui.php:179 -msgid "It's a password" -msgstr "C'est un mot de passe" - -#: ../../enterprise/include/functions_ui.php:179 -msgid "Add field" -msgstr "Ajouter un champ" - -#: ../../enterprise/include/functions_license.php:119 -msgid "Perpetual" -msgstr "PerpĆ©tuel" - -#: ../../enterprise/include/functions_license.php:119 -msgid "Subscription" -msgstr "Abonnement" - -#: ../../enterprise/include/functions_license.php:120 -msgid "Expires" -msgstr "Expire" - -#: ../../enterprise/include/functions_policies.php:675 -#, php-format -msgid "%s success" -msgstr "%s a succĆ©dĆ©" - -#: ../../enterprise/include/functions_policies.php:675 -#, php-format -msgid "%s failed" -msgstr "%s a Ć©chouĆ©" - -#: ../../enterprise/include/functions_policies.php:680 -msgid "Policy cleaned from nodes: " -msgstr "Politique Ć©liminĆ©e des noeuds : " - -#: ../../enterprise/include/functions_policies.php:934 -#, php-format -msgid "Failed to connect to node %s" -msgstr "Connection avec le noeud %s Ć©chouĆ©" - -#: ../../enterprise/include/functions_policies.php:3506 -msgid "Policy linkation" -msgstr "Relation de la politique en cours" - -#: ../../enterprise/include/functions_policies.php:3511 -msgid "Module linked" -msgstr "Module associĆ©" - -#: ../../enterprise/include/functions_policies.php:3516 -#: ../../enterprise/include/functions_policies.php:3536 -msgid "Unlink from policy" -msgstr "Dissocier de la politique" - -#: ../../enterprise/include/functions_policies.php:3521 -msgid "Module unlinked" -msgstr "Module dissociĆ©" - -#: ../../enterprise/include/functions_policies.php:3526 -#: ../../enterprise/include/functions_policies.php:3546 -msgid "Relink to policy" -msgstr "Associer Ć  nouveau Ć  la politique" - -#: ../../enterprise/include/functions_policies.php:3531 -msgid "Module pending to link" -msgstr "Module Ć  associer" - -#: ../../enterprise/include/functions_policies.php:3531 -#: ../../godmode/agentes/module_manager_editor.php:548 -msgid "Module will be linked in the next application" -msgstr "Le module sera associĆ© lors de la suivante application" - -#: ../../enterprise/include/functions_policies.php:3541 -msgid "Module pending to unlink" -msgstr "Module Ć  dissocier" - -#: ../../enterprise/include/functions_policies.php:3541 -#: ../../godmode/agentes/module_manager_editor.php:562 -msgid "Module will be unlinked in the next application" -msgstr "Le module sera dissociĆ© lors de la suivante application" - -#: ../../enterprise/include/functions_policies.php:3711 -#: ../../enterprise/godmode/menu.php:108 -msgid "Manage policies" -msgstr "GĆ©rer les politiques" - -#: ../../enterprise/include/functions_policies.php:3732 -#: ../../enterprise/godmode/policies/policy.php:102 -#: ../../godmode/agentes/configurar_agente.php:527 -msgid "Agent wizard" -msgstr "Assistant de l'agent" - -#: ../../enterprise/include/functions_policies.php:3737 -#: ../../godmode/setup/snmp_wizard.php:31 -#: ../../godmode/agentes/configurar_agente.php:539 -#: ../../godmode/agentes/configurar_agente.php:760 -msgid "SNMP Wizard" -msgstr "Assistant du SNMP" - -#: ../../enterprise/include/functions_policies.php:3740 -#: ../../godmode/agentes/configurar_agente.php:549 -#: ../../godmode/agentes/configurar_agente.php:766 -msgid "SNMP Interfaces wizard" -msgstr "Assistant des interfaces SNMP" - -#: ../../enterprise/include/functions_policies.php:3743 -#: ../../godmode/agentes/configurar_agente.php:559 -#: ../../godmode/agentes/configurar_agente.php:772 -msgid "WMI Wizard" -msgstr "Assistant du WMI" - -#: ../../enterprise/include/functions_policies.php:3755 -#: ../../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/menu.php:90 -#: ../../enterprise/godmode/alerts/alert_inventory_builder.php:198 -#: ../../enterprise/godmode/policies/policy_inventory_modules.php:70 -#: ../../enterprise/godmode/policies/policy_inventory_modules.php:282 -msgid "Inventory modules" -msgstr "Modules d'inventaire" - -#: ../../enterprise/include/functions_policies.php:3771 -#: ../../enterprise/godmode/policies/policies.php:523 -#: ../../enterprise/godmode/policies/policy_external_alerts.php:52 -msgid "External alerts" -msgstr "Alertes externes" - -#: ../../enterprise/include/functions_policies.php:3783 -#: ../../enterprise/godmode/policies/policy_linking.php:157 -#: ../../enterprise/godmode/policies/policies.php:501 -msgid "Linking" -msgstr "Relation en cours" - -#: ../../enterprise/include/functions_policies.php:3813 -#: ../../enterprise/godmode/policies/policy.php:60 -#: ../../enterprise/godmode/policies/policies.php:527 -msgid "Queue" -msgstr "File dā€™attente" - -#: ../../enterprise/include/functions_policies.php:3832 -#: ../../enterprise/godmode/agentes/configurar_agente.php:112 -#: ../../enterprise/godmode/policies/policy.php:82 -#: ../../godmode/agentes/configurar_agente.php:718 -msgid "Agent plugins" -msgstr "Plugins d'agents" - -#: ../../enterprise/include/functions_policies.php:4060 -msgid "Create a new policy map" -msgstr "CrĆ©er une nouvelle carte politique" - -#: ../../enterprise/include/functions_policies.php:4448 -#: ../../extensions/resource_registration.php:1098 -msgid "Error, please install the PHP libXML in the system." -msgstr "Erreur, veuillez installer le PHP libXML dans le systĆØme" - -#: ../../enterprise/include/functions_policies.php:4460 -#, php-format -msgid "" -"This extension makes registration of policies enterprise.
    You can get more " -"policies in our Public Resource Library" -msgstr "" -"Cette extension enregistre les politiques Enterprise.
    Vouz pouvez trouver " -"plus de politiques dans notre Librairie de ressources " -"publiques" - -#: ../../enterprise/include/functions_policies.php:4467 -#: ../../extensions/resource_registration.php:1133 -msgid "Group filter: " -msgstr "Filtre de groupe : " - -#: ../../enterprise/include/functions_policies.php:4492 -#: ../../extensions/resource_registration.php:1150 -msgid "" -"Error uploading resource. Check if the selected file is a valid resource " -"template in .ptr format" -msgstr "" -"Erreur lors du tĆ©lĆ©chargement de la ressource. VĆ©rifiez si le fichier " -"sĆ©lectionnĆ© est un modĆØle de ressource valide au format .ptr" - -#: ../../enterprise/include/functions_policies.php:4518 -msgid "Policy does not exist" -msgstr "La politique n'existe pas" - -#: ../../enterprise/include/functions_policies.php:4908 -msgid "This will not produce any action." -msgstr "Ce ne produira aucune action." - -#: ../../enterprise/include/functions_policies.php:4937 -#, php-format -msgid "Error connecting with node %s." -msgstr "Erreur de connexion avec le noeud %s." - -#: ../../enterprise/include/functions_policies.php:4944 -#, php-format -msgid "This policy is being applied on node %s." -msgstr "Cette politique est appliquĆ©e dans le noeud %s." - -#: ../../enterprise/include/functions_policies.php:4982 -msgid "Error syncronizing ." -msgstr "Erreur de synchronisation." - -#: ../../enterprise/meta/screens/screens.php:37 -#: ../../enterprise/meta/general/main_menu.php:338 -#: ../../enterprise/meta/general/logon_ok.php:84 -#: ../../enterprise/meta/general/main_header.php:232 -msgid "Screens" -msgstr "Ɖcrans" - -#: ../../enterprise/meta/screens/screens.visualmap.php:71 -msgid "Create visualmap" -msgstr "CrĆ©er une carte visuelle" - -#: ../../enterprise/meta/screens/screens.visualmap.php:297 -#: ../../godmode/reporting/visual_console_builder.php:844 -msgid "New visual console" -msgstr "Nouvelle console visuelle" - -#: ../../enterprise/meta/event/custom_events.php:50 ../../godmode/menu.php:264 -#: ../../godmode/events/events.php:68 -msgid "Event responses" -msgstr "RĆ©ponses des Ć©vĆ©nements" - -#: ../../enterprise/meta/event/custom_events.php:98 -msgid "The user is not in neither group with EW profile" -msgstr "L'utilisateur ne se trouve dans aucun groupe avec un profil EW" - -#: ../../enterprise/meta/event/custom_events.php:175 -#: ../../godmode/events/custom_events.php:129 -#: ../../godmode/agentes/status_monitor_custom_fields.php:164 -msgid "Fields available" -msgstr "Champs disponibles" - -#: ../../enterprise/meta/event/custom_events.php:177 -#: ../../godmode/events/custom_events.php:149 -#: ../../godmode/agentes/status_monitor_custom_fields.php:186 -msgid "Fields selected" -msgstr "Champs sĆ©lectionnĆ©s" - -#: ../../enterprise/meta/event/custom_events.php:187 -#: ../../godmode/events/custom_events.php:136 -#: ../../godmode/agentes/status_monitor_custom_fields.php:171 -msgid "Add fields to select" -msgstr "Ajouter champs Ć  sĆ©lectionner" - -#: ../../enterprise/meta/event/custom_events.php:197 -#: ../../godmode/events/custom_events.php:144 -#: ../../godmode/agentes/status_monitor_custom_fields.php:180 -msgid "Delete fields to select" -msgstr "Supprimer champs pour sĆ©lectionner" - -#: ../../enterprise/meta/event/custom_events.php:207 -#: ../../godmode/events/custom_events.php:74 -msgid "Show event fields" -msgstr "Afficher champs d'Ć©vĆ©nement" - -#: ../../enterprise/meta/event/custom_events.php:248 -#: ../../godmode/events/custom_events.php:203 -#: ../../godmode/agentes/status_monitor_custom_fields.php:240 -msgid "There must be at least one custom field. Timestamp will be set by default" -msgstr "" -"Il doit y avoir au moins un champ personnalisĆ©. Lā€™horodatage sera dĆ©fini par " -"dĆ©faut" - -#: ../../enterprise/meta/general/metaconsole_no_activated.php:24 -msgid "" -"Metaconsole needs previous activation from regular console, please contact " -"system administrator if you need assistance.
    " -msgstr "" -"La MĆ©taconsole requiert une activation prĆ©alable Ć  partir d'une console " -"rĆ©guliĆØre. Veuillez communiquer avec l'administrateur du systĆØme si vous avez " -"besoin d'aide.
    " - -#: ../../enterprise/meta/general/main_menu.php:200 -#: ../../enterprise/meta/general/main_header.php:109 -msgid "Groups view" -msgstr "Vue des groupes" - -#: ../../enterprise/meta/general/main_menu.php:212 -#: ../../enterprise/meta/general/main_header.php:121 -msgid "Monitors view" -msgstr "Vue des moniteurs" - -#: ../../enterprise/meta/general/main_menu.php:218 -#: ../../enterprise/meta/general/main_header.php:127 -msgid "Custom fields view" -msgstr "Vue de champs personnalisĆ©s" - -#: ../../enterprise/meta/general/main_menu.php:276 -#: ../../enterprise/meta/general/main_header.php:174 -msgid "Create new report" -msgstr "CrĆ©er un nouveau rapport" - -#: ../../enterprise/meta/general/main_menu.php:286 -#: ../../enterprise/meta/general/main_header.php:190 -msgid "Report templates" -msgstr "ModĆØles de rapport" - -#: ../../enterprise/meta/general/main_menu.php:353 -#: ../../enterprise/meta/general/main_header.php:247 -#: ../../godmode/reporting/visual_console_favorite.php:118 -msgid "Favourite Visual Console" -msgstr "Console visuelle prĆ©fĆ©rĆ©e" - -#: ../../enterprise/meta/general/main_menu.php:361 -#: ../../enterprise/meta/general/main_header.php:255 -msgid "Template Visual Console" -msgstr "Console visuelle du modĆØle" - -#: ../../enterprise/meta/general/main_menu.php:368 -#: ../../enterprise/meta/general/main_header.php:262 -msgid "Wizard Visual Console" -msgstr "Console visuelle de l'assistant" - -#: ../../enterprise/meta/general/main_menu.php:389 -#: ../../enterprise/meta/general/main_header.php:281 -msgid "Live view" -msgstr "Vue en temps rĆ©el" - -#: ../../enterprise/meta/general/main_menu.php:407 -#: ../../enterprise/godmode/menu.php:257 -msgid "Alert correlation" -msgstr "Correlation d'alertes" - -#: ../../enterprise/meta/general/main_menu.php:427 -#: ../../enterprise/meta/general/main_menu.php:508 -msgid "Centralised management" -msgstr "Gestion centralisĆ©e" - -#: ../../enterprise/meta/general/main_menu.php:434 -#: ../../enterprise/meta/general/main_menu.php:534 -#: ../../enterprise/meta/general/main_header.php:315 -#: ../../enterprise/meta/general/main_header.php:417 -msgid "Agent management" -msgstr "Gestion des agents" - -#: ../../enterprise/meta/general/main_menu.php:440 -#: ../../enterprise/meta/general/main_menu.php:540 -#: ../../enterprise/meta/general/main_header.php:327 -#: ../../enterprise/meta/general/main_header.php:423 -#: ../../enterprise/godmode/modules/local_components.php:157 -#: ../../enterprise/godmode/modules/manage_inventory_modules.php:45 -#: ../../enterprise/godmode/modules/manage_inventory_modules_form.php:37 -#: ../../godmode/modules/module_list.php:29 -#: ../../godmode/modules/manage_network_components.php:290 -#: ../../godmode/modules/manage_network_templates.php:39 -#: ../../godmode/modules/manage_network_templates_form.php:32 -#: ../../godmode/modules/manage_nc_groups.php:40 -msgid "Module management" -msgstr "Gestion de modules" - -#: ../../enterprise/meta/general/main_menu.php:446 -#: ../../enterprise/meta/general/main_menu.php:563 -#: ../../enterprise/meta/general/main_header.php:333 -#: ../../enterprise/meta/general/main_header.php:439 -msgid "Alert management" -msgstr "Gestion des alertes" - -#: ../../enterprise/meta/general/main_menu.php:452 -#: ../../enterprise/meta/general/main_header.php:339 -msgid "Component management" -msgstr "Gestion des composants" - -#: ../../enterprise/meta/general/main_menu.php:464 -#: ../../enterprise/meta/general/main_menu.php:554 -#: ../../enterprise/meta/general/main_header.php:345 -msgid "Policy management" -msgstr "Gestion des politiques" - -#: ../../enterprise/meta/general/main_menu.php:470 -#: ../../enterprise/meta/general/main_header.php:351 -msgid "Category management" -msgstr "Gestion des catĆ©gories" - -#: ../../enterprise/meta/general/main_menu.php:476 -#: ../../enterprise/meta/general/main_menu.php:547 -#: ../../enterprise/meta/general/main_header.php:357 -#: ../../enterprise/meta/general/main_header.php:430 -msgid "Server management" -msgstr "Gestion du serveur" - -#: ../../enterprise/meta/general/main_menu.php:482 ../../godmode/menu.php:183 -#: ../../godmode/massive/massive_operations.php:329 -msgid "Bulk operations" -msgstr "OpĆ©rations massives" - -#: ../../enterprise/meta/general/main_menu.php:488 -msgid "Agent operations" -msgstr "OpĆ©rations de lā€™agent" - -#: ../../enterprise/meta/general/main_menu.php:496 -#: ../../enterprise/meta/general/main_header.php:363 -msgid "Command Center" -msgstr "Centre de commande" - -#: ../../enterprise/meta/general/main_menu.php:584 -#: ../../enterprise/meta/general/main_header.php:369 ../../godmode/menu.php:371 -msgid "License" -msgstr "Licence" - -#: ../../enterprise/meta/general/main_menu.php:590 -#: ../../enterprise/meta/general/main_header.php:375 -msgid "Metasetup" -msgstr "Metasetup" - -#: ../../enterprise/meta/general/main_menu.php:626 -#: ../../enterprise/meta/general/main_header.php:458 -#: ../../godmode/extensions.php:28 -msgid "Extensions" -msgstr "Extensions" - -#: ../../enterprise/meta/general/main_menu.php:667 ../../godmode/menu.php:388 -msgid "System audit log" -msgstr "Journaux d'audit du systĆØme" - -#: ../../enterprise/meta/general/main_header.php:492 -msgid "Audit Logs" -msgstr "Journaux dā€™audit" - -#: ../../enterprise/meta/general/footer.php:46 -msgid "Page generated at" -msgstr "Page gĆ©nĆ©rĆ©e Ć " - -#: ../../enterprise/meta/general/login_page.php:58 -#: ../../enterprise/meta/include/reset_pass.php:41 -#: ../../enterprise/meta/include/process_reset_pass.php:41 -msgid "Go to Pandora FMS Support" -msgstr "Aller vers Pandora FMS Support" - -#: ../../enterprise/meta/general/login_page.php:60 -#: ../../enterprise/meta/general/login_page.php:71 -#: ../../enterprise/meta/include/reset_pass.php:43 -#: ../../enterprise/meta/include/reset_pass.php:54 -#: ../../enterprise/meta/include/process_reset_pass.php:43 -#: ../../enterprise/meta/include/process_reset_pass.php:54 -msgid "Go to " -msgstr "Aller Ć  " - -#: ../../enterprise/meta/general/login_page.php:69 -#: ../../enterprise/meta/include/reset_pass.php:52 -#: ../../enterprise/meta/include/process_reset_pass.php:52 -msgid "Go to Pandora FMS Wiki" -msgstr "Aller Ć  la wiki de Pandora FMS" - -#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:92 -#: ../../godmode/alerts/alert_templates.php:61 -msgid "Everyday" -msgstr "Tous les jours" - -#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:104 -#: ../../godmode/alerts/alert_templates.php:73 -msgid "Every" -msgstr "Chaque" - -#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:115 -#: ../../godmode/alerts/alert_templates.php:84 -msgid "and" -msgstr "et" - -#: ../../enterprise/meta/include/ajax/wizard.ajax.php:56 -msgid "Agent succesfully deleted" -msgstr "Agent supprimĆ© correctement" - -#: ../../enterprise/meta/include/ajax/wizard.ajax.php:58 -msgid "Could not delete agent" -msgstr "C'est ne pas possible de effacer l'agent" - -#: ../../enterprise/meta/include/reset_pass.php:139 -#: ../../enterprise/meta/include/process_reset_pass.php:142 -#, php-format -msgid "%s NEXT GENERATION" -msgstr "GƉNƉRATION SUIVANTE %s" - -#: ../../enterprise/meta/include/functions_autoprovision.php:378 -msgid "Round Robin" -msgstr "Round Robin" - -#: ../../enterprise/meta/include/functions_autoprovision.php:383 -msgid "Less loaded" -msgstr "Moins chargĆ©" - -#: ../../enterprise/meta/include/functions_autoprovision.php:422 -msgid "" -"It uses the Round-robin planning method to distribute, \n" -" in an equitable way and in a rational order, all the new " -"Pandora software agents that reach the Metaconsole.\n" -" The distribution of the agents will be done in a circular way, " -"assigning the corresponding server to each new agent.\n" -" " -msgstr "" -"Il utilise la mĆ©thode de planification Round-robin pour distribuer, \n" -" de maniĆØre Ć©quitable et dans un ordre rationnel, tous les " -"nouveaux agents logiciels Pandora qui atteignent la MĆ©taconsole.\n" -" La distribution des agents se fera de maniĆØre circulaire, en " -"attribuant le serveur correspondant Ć  chaque nouvel agent.\n" -" " - -#: ../../enterprise/meta/include/functions_autoprovision.php:430 -msgid "" -"The new agents will be dynamically assigned to those servers with less load." -msgstr "" -"Les nouveaux agents seront affectĆ©s dynamiquement aux serveurs avec une charge " -"mineure." - -#: ../../enterprise/meta/include/functions_autoprovision.php:435 -msgid "" -"In the customized classification, we will be able to define our own " -"classification rules, \n" -" based on certain parameters retrieved from the information " -"reported by the agent (name of the agent and its IP address).\n" -" " -msgstr "" -"Dans la classification personnalisĆ©e, nous serons en mesure de dĆ©finir nos " -"propres rĆØgles de classification, \n" -" en fonction de certains paramĆØtres extraits des informations " -"communiquĆ©es par lā€™agent (nom de lā€™agent et son adresse IP).\n" -" " - -#: ../../enterprise/meta/include/functions_autoprovision.php:529 -msgid "" -"There is no custom entries defined. Click on \"Create custom entry\" to add " -"the first." -msgstr "" -"Aucune entrĆ©e personnalisĆ©e nā€™est dĆ©finie. Cliquez sur Ā«Ā CrĆ©er une entrĆ©e " -"personnalisĆ©eĀ Ā» pour ajouter la premiĆØre." - -#: ../../enterprise/meta/include/functions_autoprovision.php:534 -msgid "Create custom entry" -msgstr "CrĆ©er une entrĆ©e personnalisĆ©e" - -#: ../../enterprise/meta/include/functions_autoprovision.php:561 -msgid "Provisioning configuration" -msgstr "Configuration de lā€™approvisionnement" - -#: ../../enterprise/meta/include/functions_autoprovision.php:566 -#: ../../enterprise/meta/advanced/collections.data.php:332 -#: ../../enterprise/godmode/agentes/collections.data.php:425 -#: ../../godmode/setup/os.builder.php:35 -#: ../../godmode/reporting/visual_console_builder.data.php:106 -msgid "Name:" -msgstr "NomĀ :" - -#: ../../enterprise/meta/include/functions_autoprovision.php:572 -msgid "Configuration:" -msgstr "Configuration :" - -#: ../../enterprise/meta/include/functions_autoprovision.php:610 -msgid "" -"There is no rules configured for this custom entry. Click on Add button to " -"create the first." -msgstr "" -"Aucune rĆØgle nā€™est configurĆ©e pour cette entrĆ©e personnalisĆ©e. Cliquez Ajouter " -"pour en crĆ©er la premiĆØre." - -#: ../../enterprise/meta/include/functions_autoprovision.php:723 -msgid "There was an error when editing the rule." -msgstr "Une erreur sā€™est produite lors de la modification de la rĆØgle." - -#: ../../enterprise/meta/include/functions_autoprovision.php:737 -msgid "Operation:" -msgstr "OpĆ©ration :" - -#: ../../enterprise/meta/include/functions_autoprovision.php:751 -msgid "Method:" -msgstr "MĆ©thode :" - -#: ../../enterprise/meta/include/functions_autoprovision.php:816 -msgid "Move up" -msgstr "DĆ©placer vers le haut" - -#: ../../enterprise/meta/include/functions_autoprovision.php:824 -msgid "Move down" -msgstr "DĆ©placer vers le bas" - -#: ../../enterprise/meta/include/functions_relations.php:49 -msgid "Invalid file content" -msgstr "Contenu du fichier non valide" - -#: ../../enterprise/meta/include/functions_relations.php:54 -msgid "No relations found" -msgstr "Pas de relations trouvĆ©es" - -#: ../../enterprise/meta/include/functions_relations.php:80 -#: ../../enterprise/meta/include/functions_relations.php:91 -#: ../../enterprise/meta/include/functions_relations.php:102 -#, php-format -msgid "The relation type: %s to %s -> %s was not saved" -msgstr "Le type de relation : %s to %s -> %s n'a pas Ć©tĆ© utilisĆ©" - -#: ../../enterprise/meta/include/functions_relations.php:123 -#, php-format -msgid "The relation %s -> %s was not saved" -msgstr "La relation %s -> %s n'a pas Ć©tĆ© sauvegardĆ©e" - -#: ../../enterprise/meta/include/functions_relations.php:133 -msgid "File imported successfully" -msgstr "Fichier importĆ© correctement" - -#: ../../enterprise/meta/include/functions_relations.php:136 -msgid "Error inserting relations" -msgstr "Erreur en entrant les relations" - -#: ../../enterprise/meta/include/functions_relations.php:165 -msgid "Empty string" -msgstr "ChaĆ®ne vide" - -#: ../../enterprise/meta/include/functions_relations.php:170 -msgid "Empty custom node address" -msgstr "Adresse du noeud personnalisĆ© vide" - -#: ../../enterprise/meta/include/functions_relations.php:208 -#, php-format -msgid "" -"The relation type: %s to %s -> %s was not saved. This relationship already " -"exists in the database" -msgstr "" -"Le type de relation : %s to %s -> %s n'a pas Ć©tĆ© sauvegardĆ©. Cette relation " -"existe dĆ©jĆ  dans la base de donnĆ©es" - -#: ../../enterprise/meta/include/functions_relations.php:230 -#, php-format -msgid "Error inserting the relation %s -> %s" -msgstr "Erreur en entrant la relation %s -> %s" - -#: ../../enterprise/meta/include/functions_relations.php:238 -msgid "Relation created successfully" -msgstr "Relation crĆ©e correctement" - -#: ../../enterprise/meta/include/functions_relations.php:263 -msgid "Error deleting the relation" -msgstr "Erreur en Ć©liminant la relation" - -#: ../../enterprise/meta/include/functions_relations.php:269 -msgid "Relation deleted successfully" -msgstr "Relation Ć©liminĆ©e correctement" - -#: ../../enterprise/meta/include/functions_users_meta.php:186 -#: ../../enterprise/meta/include/functions_users_meta.php:212 -#: ../../godmode/menu.php:130 ../../godmode/users/user_list.php:225 -#: ../../godmode/users/configure_user.php:234 -#: ../../godmode/users/configure_profile.php:66 -#: ../../godmode/users/profile_list.php:74 -msgid "Profile management" -msgstr "Gestion des profils" - -#: ../../enterprise/meta/include/functions_users_meta.php:200 -msgid "User synchronization" -msgstr "Synchronisation de l'utilisateur" - -#: ../../enterprise/meta/include/functions_users_meta.php:216 -msgid "Group synchronization" -msgstr "Synchronisation de groupe" - -#: ../../enterprise/meta/include/functions_ui_meta.php:53 -#, php-format -msgid "%s - the Flexible Monitoring System" -msgstr "%s - le SystĆØme de supervision flexible" - -#: ../../enterprise/meta/include/functions_meta.php:49 -msgid "No admin user" -msgstr "Aucun utilisateur administrateur" - -#: ../../enterprise/meta/include/functions_meta.php:112 -msgid "Centralized management" -msgstr "Gestion centralisĆ©e" - -#: ../../enterprise/meta/include/functions_meta.php:148 -#: ../../enterprise/meta/advanced/metasetup.setup.php:158 -#: ../../godmode/setup/setup_general.php:98 -msgid "Phantomjs bin directory" -msgstr "RĆ©pertoire phantomjs bin" - -#: ../../enterprise/meta/include/functions_meta.php:198 -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:248 -#: ../../enterprise/meta/advanced/metasetup.setup.php:283 -#: ../../enterprise/godmode/setup/setup.php:378 -msgid "Enable update manager" -msgstr "Activer le gestionnaire de mises Ć  jour" - -#: ../../enterprise/meta/include/functions_meta.php:262 -msgid "Customizable section" -msgstr "Section personnalisable" - -#: ../../enterprise/meta/include/functions_meta.php:283 -msgid "Agent API" -msgstr "Agent API" - -#: ../../enterprise/meta/include/functions_meta.php:303 -#: ../../enterprise/meta/advanced/metasetup.setup.php:324 -#: ../../godmode/setup/setup_general.php:467 -msgid "Enable console log" -msgstr "Activer la console de journalisation" - -#: ../../enterprise/meta/include/functions_meta.php:313 -#: ../../enterprise/meta/advanced/metasetup.setup.php:345 -#: ../../godmode/setup/setup_general.php:478 -msgid "Enable audit log" -msgstr "Activer le journal d'audit" - -#: ../../enterprise/meta/include/functions_meta.php:323 -msgid "Policy add max. agents" -msgstr "Nombre maximale dā€™agents Ć  ajouter Ć  la politique" - -#: ../../enterprise/meta/include/functions_meta.php:332 -msgid "Sync items warn detection" -msgstr "DĆ©tection dā€™avertissement des Ć©lĆ©ments de synchronisation" - -#: ../../enterprise/meta/include/functions_meta.php:470 -msgid "IP ElasticSearch" -msgstr "IP ElasticSearch" - -#: ../../enterprise/meta/include/functions_meta.php:480 -msgid "Port ElasticSearch" -msgstr "Port ElasticSearch" - -#: ../../enterprise/meta/include/functions_meta.php:592 -msgid "2FA_all_users" -msgstr "2FA_all_users" - -#: ../../enterprise/meta/include/functions_meta.php:715 -#: ../../enterprise/meta/include/functions_meta.php:727 -#: ../../enterprise/godmode/setup/setup_auth.php:337 -#: ../../enterprise/godmode/setup/setup_auth.php:385 -#: ../../enterprise/godmode/setup/setup_auth.php:1180 -msgid "Auto enable node access" -msgstr "Activer automatiquement l'accĆØs noeud" - -#: ../../enterprise/meta/include/functions_meta.php:858 -msgid "SAML profile parameters" -msgstr "ParamĆØtres de profils SAML" - -#: ../../enterprise/meta/include/functions_meta.php:1029 -#: ../../godmode/setup/setup_auth.php:267 -msgid "Secondary start TLS" -msgstr "DĆ©marrage secondaire TLS" - -#: ../../enterprise/meta/include/functions_meta.php:1135 -#, php-format -msgid "%s host" -msgstr "HĆ“te %s" - -#: ../../enterprise/meta/include/functions_meta.php:1189 -msgid "Babel Enterprise host" -msgstr "HĆ“te de Babel Enterprise" - -#: ../../enterprise/meta/include/functions_meta.php:1318 -msgid "Graph color (min)" -msgstr "Couleur du graphique (min.)" - -#: ../../enterprise/meta/include/functions_meta.php:1328 -msgid "Graph color (avg)" -msgstr "Couleur du graphique (moy.)" - -#: ../../enterprise/meta/include/functions_meta.php:1338 -msgid "Graph color (max)" -msgstr "Couleur du graphique (max.)" - -#: ../../enterprise/meta/include/functions_meta.php:1362 -#: ../../enterprise/meta/advanced/metasetup.visual.php:252 -#: ../../godmode/setup/setup_visuals.php:869 -msgid "Number of elements in Custom Graph" -msgstr "Nombre d'Ć©lĆ©ments dans le Graphique personnalisĆ©" - -#: ../../enterprise/meta/include/functions_meta.php:1403 -#: ../../enterprise/meta/advanced/metasetup.visual.php:1036 -#: ../../godmode/setup/setup_visuals.php:1135 -msgid "Interval description" -msgstr "Description de l'intervalle" - -#: ../../enterprise/meta/include/functions_meta.php:1488 -msgid "full scale charts" -msgstr "graphiques Ć  grande Ć©chelle" - -#: ../../enterprise/meta/include/functions_meta.php:1498 -msgid "type mode type charts" -msgstr "type mode type graphiques" - -#: ../../enterprise/meta/include/functions_meta.php:1508 -#: ../../enterprise/meta/advanced/metasetup.visual.php:969 -#: ../../godmode/setup/setup_visuals.php:1126 -msgid "Graph image height for HTML reports" -msgstr "Hauteur de l'image du graphique pour des rapports HTML" - -#: ../../enterprise/meta/include/functions_meta.php:1518 -msgid "type mode zoom charts" -msgstr "Type mode zoom graphiques" - -#: ../../enterprise/meta/include/functions_meta.php:1528 -#: ../../enterprise/meta/advanced/metasetup.visual.php:826 -#: ../../godmode/setup/setup_visuals.php:563 -msgid "Visual effects and animation" -msgstr "Effets visuels et animation" - -#: ../../enterprise/meta/include/functions_meta.php:1538 -msgid "Type of charts" -msgstr "Type de graphiques" - -#: ../../enterprise/meta/include/functions_meta.php:1548 -#: ../../enterprise/meta/advanced/metasetup.visual.php:367 -msgid "Metaconsole elements" -msgstr "ƉlĆ©ments de la MĆ©taconsole" - -#: ../../enterprise/meta/include/functions_meta.php:1558 -#: ../../enterprise/meta/advanced/metasetup.visual.php:454 -#: ../../godmode/setup/setup_visuals.php:1247 -msgid "Show only the group name" -msgstr "Afficher seulement le nom du groupe" - -#: ../../enterprise/meta/include/functions_meta.php:1588 -msgid "Custom logo (white background)" -msgstr "Logo personnalisĆ© (fond blanc)" - -#: ../../enterprise/meta/include/functions_meta.php:1688 -#: ../../enterprise/meta/advanced/metasetup.visual.php:775 -#: ../../godmode/setup/setup_visuals.php:495 -msgid "Docs URL (login)" -msgstr "URL docs (connexion)" - -#: ../../enterprise/meta/include/functions_meta.php:1698 -#: ../../enterprise/meta/advanced/metasetup.visual.php:785 -#: ../../godmode/setup/setup_visuals.php:501 -msgid "Support URL (login)" -msgstr "URL assistance (connexion)" - -#: ../../enterprise/meta/include/functions_meta.php:1708 -msgid "Custom background login" -msgstr "Connexion en arriĆØre-plan personnalisĆ©e" - -#: ../../enterprise/meta/include/functions_meta.php:1718 -msgid "Custom product name" -msgstr "Nom de produit personnalisĆ©" - -#: ../../enterprise/meta/include/functions_meta.php:1728 -msgid "Custom copyright notice" -msgstr "Avis de droit dā€™auteur personnalisĆ©" - -#: ../../enterprise/meta/include/functions_meta.php:1929 -#: ../../enterprise/meta/advanced/metasetup.performance.php:83 -msgid "Active events history" -msgstr "Historique d'Ć©vĆ©nements actif" - -#: ../../enterprise/meta/include/functions_meta.php:1934 -msgid "Realtime stats" -msgstr "Statistiques en temps rĆ©el" - -#: ../../enterprise/meta/include/functions_meta.php:1974 -msgid "Default block size migration agents" -msgstr "Agents de migration de la taille du bloc par dĆ©faut" - -#: ../../enterprise/meta/include/functions_meta.php:1986 -msgid "Default block size execution event" -msgstr "ƉvĆ©nement d'exĆ©cution de taille du bloc par dĆ©faut" - -#: ../../enterprise/meta/include/functions_meta.php:1997 -msgid "Default row limit in csv log" -msgstr "Limite de ligne par dĆ©faut dans le journal CSV" - -#: ../../enterprise/meta/include/functions_meta.php:2043 -msgid "Node address default" -msgstr "Adresse du noeud par dĆ©faut" - -#: ../../enterprise/meta/include/functions_wizard_meta.php:364 -msgid "Add selected modules to agent" -msgstr "Ajouter modules sĆ©lectionnĆ©s Ć  l'agent" - -#: ../../enterprise/meta/include/functions_wizard_meta.php:402 -msgid "Undo changes" -msgstr "Annuler les modifications" - -#: ../../enterprise/meta/include/functions_wizard_meta.php:496 -#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:754 -#: ../../godmode/massive/massive_edit_modules.php:818 -#: ../../godmode/agentes/module_manager_editor_wmi.php:60 -#: ../../godmode/agentes/module_manager_editor_network.php:95 -msgid "Force primary key" -msgstr "Forcer clĆ© principale" - -#: ../../enterprise/meta/include/functions_wizard_meta.php:593 -msgid "Latency" -msgstr "Latence" - -#: ../../enterprise/meta/include/functions_wizard_meta.php:594 -msgid "Response" -msgstr "RĆ©ponse" - -#: ../../enterprise/meta/include/functions_wizard_meta.php:596 -#: ../../godmode/agentes/module_manager_editor_web.php:199 -msgid "Check type" -msgstr "VĆ©rifier le type" - -#: ../../enterprise/meta/include/functions_wizard_meta.php:649 -msgid "String to check" -msgstr "ChaĆ®ne Ć  vĆ©rifier" - -#: ../../enterprise/meta/include/functions_wizard_meta.php:655 -msgid "Add check" -msgstr "Ajouter vĆ©rification" - -#: ../../enterprise/meta/include/functions_wizard_meta.php:664 -msgid "Delete check" -msgstr "Supprimer vĆ©rification" - -#: ../../enterprise/meta/include/functions_wizard_meta.php:677 -#: ../../enterprise/godmode/modules/configure_local_component.php:494 -#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:180 -#: ../../godmode/agentes/module_manager_editor_web.php:164 -msgid "Load basic" -msgstr "Charger les bases" - -#: ../../enterprise/meta/include/functions_wizard_meta.php:683 -#: ../../godmode/agentes/module_manager_editor_web.php:170 -msgid "Load a basic structure on Web Checks" -msgstr "Charger une structure de base sur les contrĆ“les web" - -#: ../../enterprise/meta/include/functions_wizard_meta.php:691 -#: ../../godmode/agentes/module_manager_editor_web.php:178 -msgid "Check the correct structure of the WebCheck" -msgstr "VĆ©rifiez la structure correcte du WebCheck" - -#: ../../enterprise/meta/include/functions_wizard_meta.php:698 -#: ../../godmode/agentes/module_manager_editor_web.php:253 -msgid "First line must be \"task_begin\"" -msgstr "La premiĆØre ligne doit ĆŖtre Ā« task_begin Ā»." - -#: ../../enterprise/meta/include/functions_wizard_meta.php:699 -#: ../../godmode/agentes/module_manager_editor_web.php:254 -msgid "Webchecks configuration is empty" -msgstr "La configuration des Webchecks est vide." - -#: ../../enterprise/meta/include/functions_wizard_meta.php:700 -#: ../../enterprise/meta/include/functions_wizard_meta.php:701 -#: ../../godmode/agentes/module_manager_editor_web.php:255 -#: ../../godmode/agentes/module_manager_editor_web.php:256 -msgid "Last line must be \"task_end\"" -msgstr "La derniĆØre ligne doit ĆŖtre Ā« task_end Ā»." - -#: ../../enterprise/meta/include/functions_wizard_meta.php:702 -#: ../../enterprise/godmode/modules/configure_local_component.php:513 -#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:203 -#: ../../godmode/agentes/module_manager_editor_web.php:257 -msgid "There is a line with a unknown token 'token_fail'." -msgstr "Une ligne contient un token inconnu Ā« token_fail Ā»." - -#: ../../enterprise/meta/include/functions_wizard_meta.php:703 -#: ../../godmode/agentes/module_manager_editor_web.php:259 -msgid "Web checks are built correctly" -msgstr "ContrĆ“les web Ć©tablis correctement" - -#: ../../enterprise/meta/include/functions_wizard_meta.php:959 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1050 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1262 -msgid "Various" -msgstr "Divers" - -#: ../../enterprise/meta/include/functions_wizard_meta.php:985 -#: ../../enterprise/meta/include/functions_wizard_meta.php:994 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1070 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1079 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1273 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1282 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1510 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1519 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1595 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1604 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1715 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1724 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1740 -#: ../../enterprise/godmode/modules/configure_local_component.php:338 -#: ../../enterprise/godmode/modules/configure_local_component.php:381 -#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:547 -#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:638 -#: ../../godmode/modules/manage_network_components_form_wizard.php:396 -#: ../../godmode/modules/manage_network_components_form_wizard.php:438 -#: ../../godmode/modules/manage_network_components_form_common.php:192 -#: ../../godmode/modules/manage_network_components_form_common.php:233 -#: ../../godmode/massive/massive_edit_modules.php:610 -#: ../../godmode/massive/massive_edit_modules.php:701 -#: ../../godmode/agentes/module_manager_editor_common.php:459 -#: ../../godmode/agentes/module_manager_editor_common.php:520 -msgid "Inverse interval" -msgstr "Intervalle inverse" - -#: ../../enterprise/meta/include/functions_wizard_meta.php:1090 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1622 -#: ../../godmode/agentes/module_manager_editor_web.php:224 -msgid "Proxy URL" -msgstr "URL du proxy" - -#: ../../enterprise/meta/include/functions_wizard_meta.php:1095 -msgid "Web configuration" -msgstr "Configuration web" - -#: ../../enterprise/meta/include/functions_wizard_meta.php:1289 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1302 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1731 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1738 -msgid "Str: " -msgstr "ChaĆ®ne : " - -#: ../../enterprise/meta/include/functions_wizard_meta.php:1298 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1311 -msgid " Inverse interval " -msgstr " Intervalle inverse " - -#: ../../enterprise/meta/include/functions_wizard_meta.php:1371 -msgid "Alerts in module" -msgstr "Alertes dans le module" - -#: ../../enterprise/meta/include/functions_wizard_meta.php:1618 -msgid "Checks" -msgstr "VĆ©rifications" - -#: ../../enterprise/meta/include/functions_wizard_meta.php:1829 -msgid "Deleted modules" -msgstr "Modules supprimĆ©s" - -#: ../../enterprise/meta/include/functions_wizard_meta.php:2017 -#: ../../enterprise/meta/include/functions_wizard_meta.php:2117 -#: ../../enterprise/meta/include/functions_wizard_meta.php:2672 -#: ../../enterprise/meta/include/functions_wizard_meta.php:2791 -#: ../../enterprise/meta/include/functions_wizard_meta.php:2882 -#: ../../enterprise/meta/include/functions_wizard_meta.php:3077 -msgid "Another module already exists with the same name" -msgstr "Un autre module existe dĆ©jĆ  avec le mĆŖme nom" - -#: ../../enterprise/meta/include/functions_wizard_meta.php:2029 -#: ../../enterprise/meta/include/functions_wizard_meta.php:2124 -#: ../../enterprise/meta/include/functions_wizard_meta.php:2684 -#, php-format -msgid "Error adding module %s" -msgstr "Erreur d'ajout du module %s" - -#: ../../enterprise/meta/include/functions_wizard_meta.php:2038 -#: ../../enterprise/meta/include/functions_wizard_meta.php:2133 -msgid "There was an error creating the alerts, the operation has been cancelled" -msgstr "Erreur de crĆ©ation des alertes ; l'opĆ©ration a Ć©tĆ© annulĆ©e." - -#: ../../enterprise/meta/include/functions_wizard_meta.php:2067 -#: ../../enterprise/meta/include/functions_wizard_meta.php:2162 -#: ../../enterprise/godmode/policies/policy_modules.php:919 -msgid "Successfully added module." -msgstr "Module ajoutĆ© correctement" - -#: ../../enterprise/meta/include/functions_wizard_meta.php:2222 -#, php-format -msgid "Could not create agent %s" -msgstr "Impossible de crĆ©er un agent %s" - -#: ../../enterprise/meta/include/functions_wizard_meta.php:2235 -msgid "Agent successfully added" -msgstr "Agent ajoutĆ© avec succĆØs" - -#: ../../enterprise/meta/include/functions_wizard_meta.php:2256 -#: ../../enterprise/meta/include/functions_wizard_meta.php:2374 -#, php-format -msgid "%s Modules created" -msgstr "%s modules crĆ©Ć©s" - -#: ../../enterprise/meta/include/functions_wizard_meta.php:2332 -#, php-format -msgid "Could not update agent %s" -msgstr "Impossible de mettre Ć  jour l'agent %s" - -#: ../../enterprise/meta/include/functions_wizard_meta.php:2380 -#, php-format -msgid "%s Modules deleted" -msgstr "%s modules supprimĆ©s" - -#: ../../enterprise/meta/include/functions_wizard_meta.php:2696 -msgid "" -"There was an error creating the alerts, the operation has been cancelled ." -msgstr "Erreur de crĆ©ation des alertes ; l'opĆ©ration a Ć©tĆ© annulĆ©e." - -#: ../../enterprise/meta/include/functions_wizard_meta.php:2726 -msgid "Module successfully added." -msgstr "Module ajoutĆ© avec succĆØs" - -#: ../../enterprise/meta/include/functions_wizard_meta.php:2798 -#: ../../enterprise/meta/include/functions_wizard_meta.php:2889 -#: ../../enterprise/meta/include/functions_wizard_meta.php:3084 -#, php-format -msgid "Error updating module %s" -msgstr "Erreur de mise Ć  jour le module %s" - -#: ../../enterprise/meta/include/functions_wizard_meta.php:2820 -#: ../../enterprise/meta/include/functions_wizard_meta.php:2911 -#: ../../enterprise/meta/include/functions_wizard_meta.php:3106 -msgid "There was an error updating the alerts, the operation has been cancelled" -msgstr "Erreur de mise Ć  jour des alertes ; l'opĆ©ration a Ć©tĆ© annulĆ©e." - -#: ../../enterprise/meta/include/functions_wizard_meta.php:2841 -#: ../../enterprise/meta/include/functions_wizard_meta.php:2932 -#: ../../enterprise/meta/include/functions_wizard_meta.php:3127 -msgid "Successfully updated module." -msgstr "Module mis Ć  jour correctement" - -#: ../../enterprise/meta/include/functions_wizard_meta.php:3507 -msgid "Manage agent modules" -msgstr "GĆ©rer les modules d'agents" - -#: ../../enterprise/meta/include/functions_alerts_meta.php:137 -#: ../../enterprise/meta/include/functions_alerts_meta.php:168 -#: ../../godmode/menu.php:237 -msgid "Commands" -msgstr "Commandes" - -#: ../../enterprise/meta/include/functions_alerts_meta.php:141 -msgid "Calendar" -msgstr "Calendrier" - -#: ../../enterprise/meta/include/functions_agents_meta.php:478 -#: ../../enterprise/meta/include/functions_agents_meta.php:542 -#: ../../enterprise/meta/include/functions_agents_meta.php:577 -msgid "Agents movement" -msgstr "Mouvement des agents" - -#: ../../enterprise/meta/include/functions_agents_meta.php:489 -#: ../../enterprise/meta/include/functions_agents_meta.php:557 -msgid "Provisioning management" -msgstr "Gestion de provisionnement" - -#: ../../enterprise/meta/include/functions_agents_meta.php:500 -#: ../../enterprise/meta/include/functions_agents_meta.php:567 -#: ../../enterprise/godmode/agentes/agent_autoconfiguration.php:99 -#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:266 -#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:387 -#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:645 -msgid "Agent autoconfiguration" -msgstr "Auto-configuration de l'agent" - -#: ../../enterprise/meta/include/functions_agents_meta.php:511 -#: ../../enterprise/meta/include/functions_agents_meta.php:547 -#: ../../enterprise/meta/include/functions_agents_meta.php:552 -msgid "Group management" -msgstr "Gestion de groupes" - -#: ../../enterprise/meta/include/functions_agents_meta.php:522 -msgid "Tree group" -msgstr "Groupe d'arbre" - -#: ../../enterprise/meta/include/functions_agents_meta.php:562 -msgid "Provisioning rules management" -msgstr "Gestion des rĆØgles de provisionnement" - -#: ../../enterprise/meta/include/functions_agents_meta.php:572 -msgid "Colecctions" -msgstr "Collections" - -#: ../../enterprise/meta/include/functions_agents_meta.php:605 -msgid "Agents Management" -msgstr "Gestion des agents" - -#: ../../enterprise/meta/include/functions_groups_meta.php:114 -#, php-format -msgid "Error Duplicate name (%s) " -msgstr "Erreur Nom dupliquĆ© (%s) " - -#: ../../enterprise/meta/include/functions_groups_meta.php:132 -#, php-format -msgid "(Error Duplicate ID (%d) ) " -msgstr "(Erreur ID dupliquĆ© (%d) ) " - -#: ../../enterprise/meta/include/functions_groups_meta.php:153 -msgid "Error Duplicate name" -msgstr "Erreur Nom dupliquĆ©" - -#: ../../enterprise/meta/include/functions_groups_meta.php:174 -#: ../../enterprise/meta/advanced/policymanager.sync.php:247 -#: ../../godmode/groups/group_list.php:667 -#, php-format -msgid "Error connecting to %s" -msgstr "Erreur de connexion Ć  %s" - -#: ../../enterprise/meta/include/functions_components_meta.php:80 -#: ../../enterprise/meta/include/functions_components_meta.php:135 -#: ../../godmode/menu.php:80 -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:99 ../../godmode/menu.php:153 -msgid "Local components" -msgstr "Composants locaux" - -#: ../../enterprise/meta/include/functions_components_meta.php:96 -#: ../../enterprise/meta/include/functions_components_meta.php:143 -msgid "Network components" -msgstr "Composants du rĆ©seau" - -#: ../../enterprise/meta/include/functions_components_meta.php:104 -#: ../../enterprise/meta/include/functions_components_meta.php:147 -msgid "Plugin management" -msgstr "Gestion des plugins" - -#: ../../enterprise/meta/include/functions_components_meta.php:124 -#: ../../enterprise/meta/include/functions_components_meta.php:164 -#: ../../godmode/servers/plugin.php:295 -#: ../../godmode/servers/plugin_registration.php:99 -msgid "Plugin registration" -msgstr "Enregistrement du plugin" - -#: ../../enterprise/meta/include/functions_components_meta.php:153 -msgid "Create plugin" -msgstr "CrĆ©er un plugin" - -#: ../../enterprise/meta/include/functions_components_meta.php:155 -msgid "Edit plugin" -msgstr "Modifier un plugin" - -#: ../../enterprise/meta/monitoring/custom_fields_csv.php:102 -#: ../../godmode/massive/massive_edit_modules.php:468 -msgid "Agent Status" -msgstr "Ɖtat des agents" - -#: ../../enterprise/meta/monitoring/custom_fields_csv.php:136 -msgid "No init" -msgstr "Pas dā€™init" - -#: ../../enterprise/meta/monitoring/group_view.php:55 -msgid "Group View" -msgstr "Vue du groupe" - -#: ../../enterprise/meta/monitoring/group_view.php:151 -msgid "Summary by status" -msgstr "RĆ©sumĆ© par Ć©tat" - -#: ../../enterprise/meta/monitoring/group_view.php:160 -#: ../../enterprise/meta/monitoring/group_view.php:172 -msgid "% Agents not init" -msgstr "% agents non initialisĆ©s" - -#: ../../enterprise/meta/monitoring/group_view.php:163 -msgid "% Agents Warning" -msgstr "% Agents en Avertissement" - -#: ../../enterprise/meta/monitoring/group_view.php:166 -msgid "% Agents OK" -msgstr "% Agents OK" - -#: ../../enterprise/meta/monitoring/group_view.php:169 -msgid "% Agents Unknown" -msgstr "% agents inconnus" - -#: ../../enterprise/meta/monitoring/group_view.php:177 -msgid "% Monitors Critical" -msgstr "% moniteurs en Ć©tat critique" - -#: ../../enterprise/meta/monitoring/group_view.php:180 -msgid "% Monitors Warning" -msgstr "% moniteurs en Ć©tat d'alerte" - -#: ../../enterprise/meta/monitoring/group_view.php:183 -msgid "% Monitors OK" -msgstr "% moniteurs OK" - -#: ../../enterprise/meta/monitoring/group_view.php:186 -msgid "% Monitors Unknown" -msgstr "% moniteurs inconnus" - -#: ../../enterprise/meta/monitoring/group_view.php:189 -msgid "% Monitors Not init" -msgstr "% moniteurs non initialisĆ©s" - -#: ../../enterprise/meta/monitoring/group_view.php:217 -#: ../../enterprise/meta/monitoring/group_view.php:223 -msgid "This data doesn't show in realtime" -msgstr "Ces donnĆ©es ne sont pas affichĆ©es en temps rĆ©el." - -#: ../../enterprise/meta/monitoring/group_view.php:234 -msgid "Group or Tag" -msgstr "Groupe ou Ć©tiquette" - -#: ../../enterprise/meta/monitoring/custom_fields_view.php:54 -msgid "Custom fields View" -msgstr "Vue des champs personnalisĆ©s" - -#: ../../enterprise/meta/monitoring/custom_fields_view.php:66 -msgid "Custom Fields View" -msgstr "Vue des champs personnalisĆ©s" - -#: ../../enterprise/meta/monitoring/custom_fields_view.php:187 -msgid "Status agents" -msgstr "Agents dā€™Ć©tat" - -#: ../../enterprise/meta/monitoring/custom_fields_view.php:203 -msgid "Status module" -msgstr "Module dā€™Ć©tat" - -#: ../../enterprise/meta/monitoring/custom_fields_view.php:266 -msgid "Custom Fields Data" -msgstr "DonnĆ©es des champs personnalisĆ©s" - -#: ../../enterprise/meta/monitoring/custom_fields_view.php:672 -msgid "Total counters" -msgstr "Total des compteurs" - -#: ../../enterprise/meta/monitoring/custom_fields_view.php:675 -msgid "Total Agents" -msgstr "Total des agents" - -#: ../../enterprise/meta/monitoring/custom_fields_view.php:684 -msgid "Total Modules" -msgstr "Total des modules" - -#: ../../enterprise/meta/monitoring/custom_fields_view.php:705 -msgid "I.P" -msgstr "IP" - -#: ../../enterprise/meta/monitoring/custom_fields_view.php:727 -msgid "There are no custom search defined." -msgstr "Aucune recherche personnalisĆ©e nā€™est dĆ©finie." - -#: ../../enterprise/meta/monitoring/tactical.php:251 -msgid "Report of state" -msgstr "Rapport de l'Ć©tat" - -#: ../../enterprise/meta/monitoring/tactical.php:279 -msgid "Report of events" -msgstr "Rapport d'Ć©vĆ©nements" - -#: ../../enterprise/meta/monitoring/tactical.php:284 -msgid "Info of state in events" -msgstr "Information sur l'Ć©tat des Ć©vĆ©nements" - -#: ../../enterprise/meta/monitoring/tactical.php:302 -msgid "More events" -msgstr "Plus d'Ć©vĆ©nements" - -#: ../../enterprise/meta/monitoring/wizard/wizard.php:50 -#: ../../enterprise/meta/advanced/massive_operations.php:54 -#, php-format -msgid "" -"You should centralise management in order to use Wizard section. Please go to " -"%s" -msgstr "" -"Vous devez centraliser la gestion afin dā€™utiliser la section Assistant. " -"Veuillez aller vers %s" - -#: ../../enterprise/meta/monitoring/wizard/wizard.php:134 -msgid "The alert you are trying to add is already in the list of alerts" -msgstr "L'alerte que vous essayez d'ajouter est dĆ©jĆ  dans la liste des alertes." - -#: ../../enterprise/meta/monitoring/wizard/wizard.php:144 -msgid "" -"Are you sure? If the agent is on a policy, it will be removed from the policy." -msgstr "" -"Ɗtes-vous sĆ»r ? Si lā€™agent est sur une politique, il sera supprimĆ© de la " -"politique." - -#: ../../enterprise/meta/monitoring/wizard/wizard.php:145 -#: ../../enterprise/meta/monitoring/wizard/wizard.create_module.php:384 -#: ../../godmode/reporting/graph_builder.graph_editor.php:367 -msgid "Please, select a module" -msgstr "Veuillez sĆ©lectionner un module" - -#: ../../enterprise/meta/monitoring/wizard/wizard.php:146 -msgid "Please, select an alert" -msgstr "Veuillez sĆ©lectionner une alerte" - -#: ../../enterprise/meta/monitoring/wizard/wizard.php:147 -msgid "Please, select an agent" -msgstr "Veuillez sĆ©lectionner un agent" - -#: ../../enterprise/meta/monitoring/wizard/wizard.php:153 -msgid "No agent name specified" -msgstr "Aucun nom d'agent spĆ©cifiĆ©" - -#: ../../enterprise/meta/monitoring/wizard/wizard.php:154 -msgid "Another agent already exists with the same name" -msgstr "Un autre agent existe dĆ©jĆ  avec le mĆŖme nom" - -#: ../../enterprise/meta/monitoring/wizard/wizard.php:155 -#: ../../enterprise/meta/monitoring/wizard/wizard.php:213 -#: ../../enterprise/meta/monitoring/wizard/wizard.module.web.php:147 -#: ../../enterprise/meta/monitoring/wizard/wizard.module.local.php:156 -#: ../../enterprise/meta/monitoring/wizard/wizard.update_agent.php:46 -#: ../../enterprise/meta/monitoring/wizard/wizard.create_module.php:131 -#: ../../enterprise/meta/monitoring/wizard/wizard.update_module.php:92 -#: ../../enterprise/meta/monitoring/wizard/wizard.module.network.php:195 -#, php-format -msgid "Cannot connect to %s instance." -msgstr "Impossible de se connecter Ć  la instance %s." - -#: ../../enterprise/meta/monitoring/wizard/wizard.php:156 -#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:430 -#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:433 -#: ../../godmode/agentes/module_manager_editor_common.php:627 -#: ../../godmode/agentes/module_manager_editor_common.php:629 -#, php-format -msgid "Agent interval x %s" -msgstr "Agent intervalle x %s" - -#: ../../enterprise/meta/monitoring/wizard/wizard.module.web.php:101 -#: ../../enterprise/meta/monitoring/wizard/wizard.module.local.php:108 -#: ../../enterprise/meta/monitoring/wizard/wizard.module.network.php:120 -msgid "Advanced configuration" -msgstr "Configuration avancĆ©e" - -#: ../../enterprise/meta/monitoring/wizard/wizard.module.web.php:117 -#: ../../enterprise/meta/monitoring/wizard/wizard.module.local.php:126 -#: ../../enterprise/meta/monitoring/wizard/wizard.update_module.php:39 -#: ../../enterprise/meta/monitoring/wizard/wizard.module.network.php:142 -#: ../../enterprise/godmode/policies/policy_modules.php:380 -msgid "Edit module" -msgstr "Modifier le module" - -#: ../../enterprise/meta/monitoring/wizard/wizard.module.web.php:231 -msgid "Please, set a name" -msgstr "Veuillez configurer un nom" - -#: ../../enterprise/meta/monitoring/wizard/wizard.module.web.php:238 -#: ../../enterprise/meta/monitoring/wizard/wizard.module.local.php:229 -#: ../../enterprise/meta/monitoring/wizard/wizard.module.network.php:281 -msgid "Invalid characters founded in module name" -msgstr "CaractĆØres non valides trouvĆ©s dans le nom du module" - -#: ../../enterprise/meta/monitoring/wizard/wizard.module.web.php:252 -msgid "Please, set an interval" -msgstr "Veuillez dĆ©finir un intervalle" - -#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:237 -#: ../../godmode/menu.php:71 ../../godmode/agentes/configurar_agente.php:819 -#: ../../godmode/agentes/configurar_agente.php:841 -#: ../../godmode/agentes/modificar_agente.php:108 -msgid "Manage agents" -msgstr "GĆ©rer les agents" - -#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:286 -msgid "Select the agent to be edited or deleted" -msgstr "SĆ©lectionner l'agent Ć  modifier ou Ć  supprimer" - -#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:295 -#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:391 -#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:461 -#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:730 -#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:812 -#: ../../mobile/operation/agent.php:148 ../../mobile/operation/modules.php:241 -#: ../../mobile/operation/visualmaps.php:189 -#: ../../mobile/operation/visualmap.php:255 -#: ../../mobile/operation/tactical.php:102 ../../mobile/operation/alerts.php:199 -#: ../../mobile/operation/events.php:614 -#: ../../mobile/operation/module_graph.php:364 -#: ../../mobile/operation/module_graph.php:377 -#: ../../mobile/operation/agents.php:209 ../../mobile/operation/groups.php:82 -#: ../../godmode/snmpconsole/snmp_alert.php:1138 -#: ../../godmode/alerts/configure_alert_action.php:395 -#: ../../godmode/groups/configure_group.php:272 -msgid "Back" -msgstr "Retour" - -#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:335 -msgid "Manage modules" -msgstr "GĆ©rer les modules" - -#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:381 -msgid "Select the agent where the module will be created" -msgstr "SĆ©lectionner l'agent oĆ¹ le module sera crĆ©Ć©" - -#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:394 -msgid "Create Module" -msgstr "CrĆ©er un module" - -#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:451 -msgid "Select the module to be edited or deleted" -msgstr "SĆ©lectionner le module Ć  modifier ou supprimer" - -#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:506 -#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:546 -msgid "Error creating alert" -msgstr "Erreur lors de la crĆ©ation dā€™une alerte" - -#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:510 -msgid "Alert could not be created" -msgstr "Impossible de crĆ©er lā€™alerte" - -#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:530 -msgid "Perform create alert" -msgstr "Effectuer la crĆ©ation dā€™une alerte" - -#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:534 -msgid "Alert created correctly" -msgstr "Alerte crĆ©Ć©e correctement" - -#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:550 -msgid "Alert template must be setted" -msgstr "Le modĆØle dā€™alerte doit ĆŖtre dĆ©fini" - -#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:589 -#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:622 -msgid "Error updating alert" -msgstr "Erreur lors de la mise Ć  jour de lā€™alerte" - -#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:593 -msgid "Something gone wrong with alert update" -msgstr "Erreur de la mise Ć  jour des alertes" - -#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:604 -msgid "Perform update alert" -msgstr "Effectuer une alerte de mise Ć  jour" - -#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:608 -msgid "Alert updated correctly" -msgstr "Alerte mise Ć  jour correctement" - -#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:626 -msgid "Template must be set." -msgstr "Le modĆØle doit ĆŖtre dĆ©fini." - -#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:651 -#: ../../enterprise/meta/monitoring/wizard/wizard.manage_alert.php:104 -#: ../../godmode/snmpconsole/snmp_alert.php:97 -msgid "Create alert" -msgstr "CrĆ©er une alerte" - -#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:656 -#: ../../godmode/alerts/alert_list.php:494 -#: ../../godmode/alerts/alert_list.php:496 -#: ../../godmode/users/configure_profile.php:291 -msgid "Manage alerts" -msgstr "Gestion d'alertes" - -#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:719 -msgid "Select the module where the alert will be created" -msgstr "SĆ©lectionner le module oĆ¹ l'alerte sera crĆ©Ć©e" - -#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:801 -msgid "Select the alert to be edited or deleted" -msgstr "SĆ©lectionner l'alerte Ć  modifier ou supprimer" - -#: ../../enterprise/meta/monitoring/wizard/wizard.create_module.php:148 -#: ../../godmode/modules/manage_network_components_form_wizard.php:336 -#: ../../godmode/massive/massive_delete_modules.php:323 -#: ../../godmode/massive/massive_edit_modules.php:309 -msgid "Module type" -msgstr "Type de module" - -#: ../../enterprise/meta/monitoring/wizard/wizard.create_module.php:148 -msgid "Web check" -msgstr "VĆ©rification web" - -#: ../../enterprise/meta/monitoring/wizard/wizard.create_module.php:245 -msgid "Module description" -msgstr "Description du module" - -#: ../../enterprise/meta/monitoring/wizard/wizard.create_module.php:267 -msgid "Step by step wizard" -msgstr "Assistant Ć©tape par Ć©tape" - -#: ../../enterprise/meta/monitoring/wizard/wizard.create_module.php:275 -#: ../../enterprise/meta/monitoring/wizard/wizard.create_module.php:280 -msgid "Click Create to continue" -msgstr "Cliquez sur CrĆ©er pour continuer" - -#: ../../enterprise/meta/monitoring/wizard/wizard.manage_alert.php:73 -#: ../../enterprise/godmode/alerts/alert_inventory_list.php:337 -msgid "Edit alert" -msgstr "Editer l'alerte" - -#: ../../enterprise/meta/monitoring/wizard/wizard.manage_alert.php:248 -msgid "Create new template" -msgstr "CrĆ©er un nouveau modĆØle" - -#: ../../enterprise/meta/monitoring/wizard/wizard.manage_alert.php:280 -msgid "Create new action" -msgstr "CrĆ©er une nouvelle action" - -#: ../../enterprise/meta/monitoring/wizard/wizard.agent.php:80 -msgid "Edit agent" -msgstr "Modifier l'agent" - -#: ../../enterprise/meta/monitoring/wizard/wizard.agent.php:198 -#: ../../enterprise/meta/monitoring/wizard/wizard.module.network.php:280 -msgid "Please, set a valid IP/Name address" -msgstr "Veuillez configurer une adresse IP/Nom valide" - -#: ../../enterprise/meta/monitoring/wizard/wizard.agent.php:209 -msgid "Please, select a group first" -msgstr "Veuillez sĆ©lectionner dā€™abord un groupe" - -#: ../../enterprise/meta/advanced/agents_setup.autoprovision.php:72 -#, php-format -msgid "Provisioning custom data %s successfully deleted." -msgstr "" -"Mise en service des donnĆ©es personnalisĆ©es %s supprimĆ©es correctement." - -#: ../../enterprise/meta/advanced/agents_setup.autoprovision.php:79 -#, php-format -msgid "Cannot delete custom data %s." -msgstr "Impossible de supprimer les donnĆ©es personnalisĆ©es %s ." - -#: ../../enterprise/meta/advanced/agents_setup.autoprovision.php:92 -msgid "There was an error when moving the custom provisioning data." -msgstr "" -"Erreur lors du dĆ©placement des donnĆ©es dā€™approvisionnement personnalisĆ©es." - -#: ../../enterprise/meta/advanced/metasetup.auth.php:27 -msgid "" -"Be aware that group synchronization can change the group configuration of the " -"node" -msgstr "" -"Sachez que la synchronisation de groupe peut modifier la configuration de " -"groupe du nœud" - -#: ../../enterprise/meta/advanced/metasetup.auth.php:47 -#: ../../enterprise/meta/advanced/metasetup.relations.php:96 -#: ../../enterprise/meta/advanced/metasetup.performance.php:47 -#: ../../enterprise/meta/advanced/metasetup.setup.php:79 -#: ../../enterprise/meta/advanced/metasetup.password.php:46 -#: ../../enterprise/meta/advanced/metasetup.log.php:41 -#: ../../enterprise/meta/advanced/metasetup.visual.php:51 -#, php-format -msgid "Could not be update: Error in %s" -msgstr "Erreur de mise Ć  jour : erreur dans %s" - -#: ../../enterprise/meta/advanced/metasetup.auth.php:54 -#: ../../enterprise/meta/advanced/metasetup.relations.php:103 -#: ../../enterprise/meta/advanced/metasetup.performance.php:54 -#: ../../enterprise/meta/advanced/metasetup.setup.php:86 -#: ../../enterprise/meta/advanced/metasetup.consoles.php:219 -#: ../../enterprise/meta/advanced/metasetup.password.php:53 -#: ../../enterprise/meta/advanced/metasetup.log.php:48 -#: ../../enterprise/meta/advanced/metasetup.visual.php:58 -#: ../../enterprise/godmode/setup/setup_metaconsole.php:85 -msgid "Successfully update" -msgstr "Mis Ć  jour correctement" - -#: ../../enterprise/meta/advanced/policymanager.sync.php:255 -#, php-format -msgid "Error creating %s policies" -msgstr "Erreur de crĆ©ation de %s politiques" - -#: ../../enterprise/meta/advanced/policymanager.sync.php:259 -#, php-format -msgid "Created %s policies" -msgstr "%s politiques crĆ©Ć©es" - -#: ../../enterprise/meta/advanced/policymanager.sync.php:264 -#, php-format -msgid "Error creating/updating %s/%s policy modules" -msgstr "Erreur de crĆ©ation/mise Ć  jour de %s/%s modules de politique" - -#: ../../enterprise/meta/advanced/policymanager.sync.php:268 -#, php-format -msgid "Created/Updated %s/%s policy modules" -msgstr "%s/%s modules de politique crĆ©Ć©s/mis Ć  jour" - -#: ../../enterprise/meta/advanced/policymanager.sync.php:273 -#, php-format -msgid "Error deleting %s policy modules" -msgstr "Erreur de suppression de %s modules de politique" - -#: ../../enterprise/meta/advanced/policymanager.sync.php:277 -#, php-format -msgid "Deleted %s policy modules" -msgstr "%s modules de politiques supprimĆ©s" - -#: ../../enterprise/meta/advanced/policymanager.sync.php:282 -#, php-format -msgid "Error creating %s policy alerts" -msgstr "Erreur de crĆ©ation de %s alertes de politique" - -#: ../../enterprise/meta/advanced/policymanager.sync.php:286 -#, php-format -msgid "Created %s policy alerts" -msgstr "%s alertes de politiques crĆ©Ć©es" - -#: ../../enterprise/meta/advanced/policymanager.sync.php:291 -#, php-format -msgid "Error deleting %s policy alerts" -msgstr "Erreur de suppression de %s alertes de politique" - -#: ../../enterprise/meta/advanced/policymanager.sync.php:295 -#, php-format -msgid "Deleted %s policy alerts" -msgstr "%s alertes de politique supprimĆ©es" - -#: ../../enterprise/meta/advanced/policymanager.sync.php:321 -#: ../../enterprise/godmode/massive/massive_add_modules_policy.php:199 -#: ../../godmode/massive/massive_copy_modules.php:239 -msgid "Targets" -msgstr "Cibles" - -#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:124 -#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:127 -#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:131 -#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:135 -#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:139 -#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:143 -#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:147 -#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:151 -msgid "Agent: " -msgstr "AgentĀ :" - -#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:124 -msgid " already exists in target node" -msgstr " existe dĆ©jĆ  dans le nœud cible" - -#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:127 -msgid " group does not exist in target node" -msgstr " le groupe nā€™existe pas dans le nœud cible" - -#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:131 -msgid " policies definitions does not match with defined ones in target node" -msgstr "" -" les dĆ©finitions de politiques ne correspondent pas Ć  ceux dĆ©finis dans le " -"nœud cible" - -#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:135 -msgid " plugins does not exist in target node" -msgstr " les plugins nā€™existent pas dans le nœud cible" - -#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:139 -msgid " collections does not exist in target node" -msgstr " les collections nā€™existent pas dans le nœud cible" - -#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:143 -msgid " inventory does not exist in target node" -msgstr " lā€™inventaire nā€™existe pas dans le nœud cible" - -#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:147 -msgid " alerts template does not exist in target node" -msgstr " Le modĆØle dā€™alertes nā€™existe pas dans le nœud cible" - -#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:151 -msgid " alerts action does not exist in target node" -msgstr " Lā€™action dā€™alertes nā€™existe pas dans le nœud cible" - -#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:155 -msgid "Exists agent conf for agent: " -msgstr "Il existe la configuration de lā€™agent lā€™agent : " - -#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:155 -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:267 -#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:269 -msgid "The agent: " -msgstr "Lā€™agent : " - -#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:267 -msgid " has been successfully added to the migration queue " -msgstr " a Ć©tĆ© ajoutĆ© avec succĆØs Ć  la file dā€™attente de migration " - -#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:269 -msgid " has not been added due to problems in the insertion" -msgstr " nā€™a pas Ć©tĆ© ajoutĆ© en raison de problĆØmes dans lā€™insertion" - -#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:272 -#, php-format -msgid "The agent: %d has already been added to the migration queue" -msgstr "Lā€™agent : %d a dĆ©jĆ  Ć©tĆ© ajoutĆ© Ć  la file dā€™attente de migration" - -#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:292 -msgid "Problems delete queue" -msgstr "ProblĆØmes de suppression de la file dā€™attente" - -#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:312 -msgid "Move Agents" -msgstr "DĆ©placer les agents" - -#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:328 -msgid "Source Server" -msgstr "Serveur source" - -#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:330 -msgid "Destination Server" -msgstr "Serveur de destination" - -#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:364 -msgid "Agents to move" -msgstr "Agents Ć  dĆ©placer" - -#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:385 -msgid "Add agents to destination server" -msgstr "Ajouter des agents au serveur de destination" - -#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:394 -msgid "Remove agents to doesn't move to destination server" -msgstr "Supprimer les agents pour ne pas les dĆ©placer au serveur de destination" - -#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:413 -msgid "Discard history data" -msgstr "Ignorer les donnĆ©es dā€™historique" - -#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:426 -msgid "Agents do not exist in target server." -msgstr "Les agents nā€™existent pas sur le serveur cible." - -#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:427 -msgid "Check group is synchronized with target server." -msgstr "" -"VĆ©rifiez que le groupe de contrĆ“le est synchronisĆ© avec le serveur cible." - -#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:428 -msgid "All policies needed are synchronized with target server." -msgstr "" -"Toutes les politiques nĆ©cessaires sont synchronisĆ©es avec le serveur cible." - -#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:429 -msgid "All remote plugins needed are synchronized with target server." -msgstr "" -"Tous les plugins distants nĆ©cessaires sont synchronisĆ©s avec le serveur cible." - -#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:430 -msgid "All collections needed are syncronized with target server." -msgstr "" -"Toutes les collections nĆ©cessaires sont synchronisĆ©es avec le serveur cible." - -#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:431 -msgid "" -"All remote inventory definitions needed are syncronized with target server." -msgstr "" -"Toutes les dĆ©finitions dā€™inventaire distant nĆ©cessaires sont synchronisĆ©es " -"avec le serveur cible." - -#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:432 -msgid "" -"All alert templates definitions needed are syncronized with target server." -msgstr "" -"Toutes les dĆ©finitions de modĆØles dā€™alerte nĆ©cessaires sont synchronisĆ©es avec " -"le serveur cible." - -#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:433 -msgid "All alert actions needed are syncronized with target server." -msgstr "" -"Toutes les actions dā€™alerte nĆ©cessaires sont synchronisĆ©es avec le serveur " -"cible." - -#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:434 -msgid "Agents conf does not exists in target server." -msgstr "La configuration de lā€™agent nā€™existe pas dans le serveur cible." - -#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:435 -#, php-format -msgid "Both %s servers must be in the same version" -msgstr "Les deux serveurs %s doivent ĆŖtre dans la mĆŖme version" - -#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:436 -msgid "Check target server ip address is set" -msgstr "VĆ©rifier que lā€™adresse IP du serveur cible est dĆ©finie" - -#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:446 -msgid "Move" -msgstr "DĆ©placer" - -#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:462 -msgid "Source node" -msgstr "Nœud source" - -#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:463 -msgid "Target node" -msgstr "Nœud cible" - -#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:467 -msgid "Active db only" -msgstr "Seulement la base de donnĆ©es active" - -#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:520 -msgid "Creating modules in target node" -msgstr "CrĆ©ant de modules dans le nœud cible" - -#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:524 -msgid "Disabling agent in source node and enabling in target one" -msgstr "DĆ©sactivant de lā€™agent dans le nœud source et activation dans la cible" - -#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:528 -msgid "Transferring data" -msgstr "Transferrant de donnĆ©es" - -#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:533 -msgid "Creating agent in target node" -msgstr "CrĆ©ant un agent dans le nœud cible" - -#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:549 -msgid "Queued" -msgstr "En file d'attente" - -#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:679 -msgid "checking migration requirements" -msgstr "vĆ©rificant des exigences de migration" - -#: ../../enterprise/meta/advanced/policymanager.apply.php:129 -#: ../../enterprise/godmode/policies/policy.php:198 -#: ../../enterprise/godmode/policies/policy.php:246 -msgid "Duplicated or incompatible operation in the queue" -msgstr "OpĆ©ration dupliquĆ©e ou non compatible dans la file d'attente" - -#: ../../enterprise/meta/advanced/policymanager.apply.php:137 -#: ../../enterprise/meta/advanced/policymanager.apply.php:141 -#: ../../enterprise/godmode/policies/policy.php:186 -#: ../../enterprise/godmode/policies/policy.php:241 -msgid "Operation successfully added to the queue" -msgstr "OpĆ©ration ajoutĆ©e correctement Ć  la file d'attente" - -#: ../../enterprise/meta/advanced/policymanager.apply.php:141 -#: ../../enterprise/meta/advanced/policymanager.apply.php:149 -msgid "Only database" -msgstr "Seulement base de donnĆ©es" - -#: ../../enterprise/meta/advanced/policymanager.apply.php:145 -#: ../../enterprise/meta/advanced/policymanager.apply.php:149 -#: ../../enterprise/meta/advanced/policymanager.apply.php:153 -#: ../../enterprise/godmode/policies/policy.php:192 -#: ../../enterprise/godmode/policies/policy.php:242 -msgid "Operation cannot be added to the queue" -msgstr "L'opĆ©ration ne peut pas ĆŖtre ajoutĆ©e Ć  la file d'attente" - -#: ../../enterprise/meta/advanced/policymanager.apply.php:186 -msgid "Apply Policies" -msgstr "Appliquer les politiques" - -#: ../../enterprise/meta/advanced/policymanager.apply.php:200 -#: ../../enterprise/godmode/servers/HA_cluster.php:97 -#: ../../mobile/include/functions_web.php:28 ../../godmode/setup/os.php:225 -#: ../../godmode/reporting/visual_console_builder.wizard.php:333 -#: ../../godmode/menu.php:278 -msgid "Servers" -msgstr "Serveurs" - -#: ../../enterprise/meta/advanced/agents_setup.php:64 -msgid "Propagation" -msgstr "Propagation" - -#: ../../enterprise/meta/advanced/policymanager.php:58 -msgid "Policy Manager" -msgstr "Gestionnaire de politiques" - -#: ../../enterprise/meta/advanced/policymanager.php:75 -msgid "Apply policies" -msgstr "Appliquer les politiques" - -#: ../../enterprise/meta/advanced/policymanager.php:79 -#: ../../enterprise/meta/advanced/policymanager.php:97 -msgid "Policies queue" -msgstr "File d'attente des politiques" - -#: ../../enterprise/meta/advanced/policymanager.php:93 -msgid "Policies apply" -msgstr "Appliquer les politiques" - -#: ../../enterprise/meta/advanced/policymanager.queue.php:58 -#: ../../enterprise/godmode/policies/policy_queue.php:96 -msgid "Operation successfully deleted from the queue" -msgstr "OpĆ©ration supprimĆ©e correctement de la file d'attente" - -#: ../../enterprise/meta/advanced/policymanager.queue.php:59 -#: ../../enterprise/godmode/policies/policy_queue.php:97 -msgid "Operation cannot be deleted from the queue" -msgstr "Impossible de supprimer l'opĆ©ration de la file d'attente" - -#: ../../enterprise/meta/advanced/policymanager.queue.php:218 -#: ../../enterprise/godmode/policies/policy_queue.php:609 -msgid "Apply (database and files)" -msgstr "Appliquer (base de donnĆ©es et fichiers)" - -#: ../../enterprise/meta/advanced/policymanager.queue.php:219 -#: ../../enterprise/meta/advanced/policymanager.queue.php:315 -#: ../../enterprise/godmode/policies/policy_queue.php:610 -#: ../../enterprise/godmode/policies/policy_queue.php:718 -msgid "Apply (only database)" -msgstr "Appliquer (seulement base de donnĆ©es)" - -#: ../../enterprise/meta/advanced/policymanager.queue.php:229 -#: ../../enterprise/godmode/policies/policy_queue.php:620 -msgid "Complete" -msgstr "ComplĆ©ter" - -#: ../../enterprise/meta/advanced/policymanager.queue.php:230 -#: ../../enterprise/godmode/policies/policy_queue.php:621 -msgid "Incomplete" -msgstr "InachevĆ©" - -#: ../../enterprise/meta/advanced/policymanager.queue.php:298 -#: ../../enterprise/godmode/policies/policy_queue.php:688 -msgid "Policy " -msgstr "Politique " - -#: ../../enterprise/meta/advanced/policymanager.queue.php:339 -#: ../../enterprise/godmode/policies/policy_queue.php:748 -#: ../../enterprise/godmode/policies/policy_queue.php:757 -msgid "Policy applying timeout" -msgstr "Temps dā€™attente de lā€™application de la politique" - -#: ../../enterprise/meta/advanced/policymanager.queue.php:353 -#: ../../enterprise/godmode/policies/policy_queue.php:776 -msgid "Delete from queue" -msgstr "Supprimer de la file d'attente" - -#: ../../enterprise/meta/advanced/policymanager.queue.php:371 -msgid "Empty queue." -msgstr "Vider la file" - -#: ../../enterprise/meta/advanced/metasetup.mail.php:79 -#: ../../godmode/update_manager/update_manager.setup.php:168 -#: ../../godmode/update_manager/update_manager.setup.php:243 -msgid "Succesful Update the url config vars." -msgstr "Variables de configuration de l'URL mises Ć  jour correctement" - -#: ../../enterprise/meta/advanced/metasetup.mail.php:80 -#: ../../godmode/update_manager/update_manager.setup.php:169 -#: ../../godmode/update_manager/update_manager.setup.php:244 -msgid "Unsuccesful Update the url config vars." -msgstr "Mise Ć  jour des variables de configuration de l'URL Ć©chouĆ©e." - -#: ../../enterprise/meta/advanced/metasetup.mail.php:98 -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 " -"587.\n" -"\n" -"If you have manual settings in your pandora_server.conf, please note these " -"settings will ignore this console setup." -msgstr "" -"Veuillez noter que certains fournisseurs comme Gmail ou Office365 doivent " -"configurer/activer manuellement les connexions externes Ć  lā€™aide de SMTP et " -"que vous devez utiliser STARTTLS sur le port 587.\n" -"\n" -"Si vous avez des paramĆØtres manuels dans votre pandora_server.conf, veuillez " -"noter que ces paramĆØtres ignoreront cette configuration de la console." - -#: ../../enterprise/meta/advanced/metasetup.mail.php:104 -#: ../../godmode/setup/setup_general.php:518 -msgid "Mail configuration" -msgstr "Configuration du courriel" - -#: ../../enterprise/meta/advanced/servers.php:39 -#: ../../godmode/servers/modificar_server.php:180 -msgid "Server deleted successfully" -msgstr "Serveur supprimĆ© correctement" - -#: ../../enterprise/meta/advanced/servers.php:41 -#: ../../godmode/servers/modificar_server.php:182 -msgid "There was a problem deleting the server" -msgstr "ProblĆØme de suppression du serveur" - -#: ../../enterprise/meta/advanced/agents_setup.autoprovision_rules.php:64 -msgid "Cannot create an unnamed rule." -msgstr "Impossible de crĆ©er une rĆØgle sans nom." - -#: ../../enterprise/meta/advanced/agents_setup.autoprovision_rules.php:75 -#: ../../enterprise/meta/advanced/agents_setup.autoprovision_rules.php:105 -msgid "Error creating provisioning rule." -msgstr "Erreur lors de la crĆ©ation de la rĆØgle dā€™approvisionnement." - -#: ../../enterprise/meta/advanced/agents_setup.autoprovision_rules.php:91 -#: ../../enterprise/meta/advanced/agents_setup.autoprovision_rules.php:119 -msgid "Error updating provisioning rule." -msgstr "Erreur lors de la mise Ć  jour de la rĆØgle dā€™approvisionnement." - -#: ../../enterprise/meta/advanced/agents_setup.autoprovision_rules.php:125 -msgid "Error deleting provisioning rule." -msgstr "Erreur lors de la suppression de la rĆØgle dā€™approvisionnement." - -#: ../../enterprise/meta/advanced/agents_setup.autoprovision_rules.php:135 -msgid "There was an error rule when moving the provisioning." -msgstr "" -"Une rĆØgle dā€™erreur sā€™est produite lors du dĆ©placement de lā€™approvisionnement." - -#: ../../enterprise/meta/advanced/agents_setup.autoprovision_rules.php:202 -msgid "Edit rule" -msgstr "Modifier la rĆØgle" - -#: ../../enterprise/meta/advanced/metasetup.relations.php:239 -msgid "Node Address Default" -msgstr "Adresse de nœud par dĆ©faut" - -#: ../../enterprise/meta/advanced/metasetup.relations.php:271 -#: ../../enterprise/meta/advanced/metasetup.relations.php:388 -msgid "This value will be the one returned by the API" -msgstr "Cette valeur sera celle renvoyĆ©e par lā€™API" - -#: ../../enterprise/meta/advanced/metasetup.relations.php:305 -msgid "Import file" -msgstr "Importer fichier" - -#: ../../enterprise/meta/advanced/metasetup.relations.php:319 -msgid "Ip Gateway" -msgstr "Passerelle IP" - -#: ../../enterprise/meta/advanced/metasetup.relations.php:320 -#: ../../enterprise/meta/advanced/metasetup.relations.php:564 -msgid "Imei" -msgstr "Imei" - -#: ../../enterprise/meta/advanced/metasetup.relations.php:351 -msgid "Relation" -msgstr "Relation" - -#: ../../enterprise/meta/advanced/metasetup.relations.php:361 -#: ../../enterprise/meta/advanced/metasetup.relations.php:440 -msgid "Node Address" -msgstr "Adresse du nœud" - -#: ../../enterprise/meta/advanced/metasetup.relations.php:398 -msgid "Insert relation" -msgstr "InsĆ©rer une relation" - -#: ../../enterprise/meta/advanced/metasetup.relations.php:406 -msgid "Show list relations" -msgstr "Afficher les relations de liste" - -#: ../../enterprise/meta/advanced/metasetup.relations.php:462 -msgid "Show Filters" -msgstr "Afficher les filtres" - -#: ../../enterprise/meta/advanced/metasetup.relations.php:549 -msgid "Node address" -msgstr "Adresse du nœud" - -#: ../../enterprise/meta/advanced/metasetup.relations.php:562 -msgid "Gateway" -msgstr "Passerelle" - -#: ../../enterprise/meta/advanced/metasetup.relations.php:642 -msgid "There are no relations yet" -msgstr "Il nā€™y a pas encore de relations" - -#: ../../enterprise/meta/advanced/servers.build_table.php:34 -#: ../../godmode/servers/servers.build_table.php:52 -msgid "There are no servers configured into the database" -msgstr "Aucun serveur configurĆ© dans la base de donnĆ©es" - -#: ../../enterprise/meta/advanced/servers.build_table.php:65 -#: ../../godmode/servers/servers.build_table.php:84 -msgid "Lag" -msgstr "Retard" - -#: ../../enterprise/meta/advanced/servers.build_table.php:65 -#: ../../godmode/servers/servers.build_table.php:84 -msgid "Avg. Delay(sec)/Modules delayed" -msgstr "Retard moyen(sec)/Modules retardĆ©s" - -#: ../../enterprise/meta/advanced/servers.build_table.php:66 -#: ../../godmode/servers/servers.build_table.php:85 -msgid "T/Q" -msgstr "T/Q" - -#: ../../enterprise/meta/advanced/servers.build_table.php:66 -#: ../../godmode/servers/servers.build_table.php:85 -msgid "Threads / Queued modules currently" -msgstr "Threads/Modules en attente" - -#: ../../enterprise/meta/advanced/servers.build_table.php:91 -#: ../../godmode/servers/servers.build_table.php:134 -msgid "This is a master server" -msgstr "Ceci est un serveur principal" - -#: ../../enterprise/meta/advanced/servers.build_table.php:106 -#: ../../enterprise/meta/advanced/servers.build_table.php:112 -#: ../../godmode/servers/servers.build_table.php:153 -#: ../../godmode/servers/servers.build_table.php:159 -msgid "of" -msgstr "de" - -#: ../../enterprise/meta/advanced/servers.build_table.php:134 -#: ../../godmode/servers/servers.build_table.php:260 -msgid "Modules run by this server will stop working. Do you want to continue?" -msgstr "" -"Les modules sur ce serveur cesseront de fonctionner. Voulez-vous continuer ?" - -#: ../../enterprise/meta/advanced/servers.build_table.php:160 -#: ../../godmode/servers/servers.build_table.php:287 -msgid "Tactical server information" -msgstr "Information tactique du serveur" - -#: ../../enterprise/meta/advanced/component_management.php:56 -msgid "Module groups Management" -msgstr "Gestion des groupes de module" - -#: ../../enterprise/meta/advanced/component_management.php:60 -msgid "OS Management" -msgstr "Gestion du systĆØme d'exploitation" - -#: ../../enterprise/meta/advanced/metasetup.translate_string.php:129 -#: ../../enterprise/extensions/translate_string.php:253 -msgid "Translation added successfully" -msgstr "Traduction ajoutĆ©e corectement" - -#: ../../enterprise/meta/advanced/metasetup.translate_string.php:131 -#: ../../enterprise/extensions/translate_string.php:255 -msgid "Translation string could not be created" -msgstr "Impossible de crĆ©er la chaĆ®ne de traduction" - -#: ../../enterprise/meta/advanced/metasetup.translate_string.php:144 -#: ../../enterprise/extensions/translate_string.php:268 -msgid "Translation updated successfully" -msgstr "Traduction mise Ć  jour correctement" - -#: ../../enterprise/meta/advanced/metasetup.translate_string.php:146 -#: ../../enterprise/extensions/translate_string.php:270 -msgid "Translation string could not be updated" -msgstr "Erreur de mise Ć  jour de la chaĆ®ne de traduction" - -#: ../../enterprise/meta/advanced/metasetup.translate_string.php:187 -#: ../../enterprise/meta/advanced/metasetup.translate_string.php:188 -#: ../../enterprise/extensions/translate_string.php:313 -#: ../../enterprise/extensions/translate_string.php:314 -#: ../../enterprise/godmode/agentes/collection_manager.php:42 -#: ../../enterprise/godmode/agentes/collections.php:361 -#: ../../enterprise/godmode/policies/policies.php:326 -#: ../../enterprise/godmode/policies/policy_collections.php:248 -msgid "Free text for search (*)" -msgstr "Texte libre pour la recherche (*)" - -#: ../../enterprise/meta/advanced/metasetup.translate_string.php:206 -#: ../../enterprise/extensions/translate_string.php:334 -msgid "Original string" -msgstr "ChaĆ®ne d'origine" - -#: ../../enterprise/meta/advanced/metasetup.translate_string.php:207 -#: ../../enterprise/extensions/translate_string.php:335 -msgid "Translation in selected language" -msgstr "Traduction dans la langue sĆ©lectionnĆ©e" - -#: ../../enterprise/meta/advanced/metasetup.translate_string.php:208 -#: ../../enterprise/extensions/translate_string.php:336 -msgid "Customize translation" -msgstr "Personnaliser la traduction" - -#: ../../enterprise/meta/advanced/collections.editor.php:79 -#: ../../enterprise/meta/advanced/collections.data.php:320 -msgid "This console is not manager of this environment." -msgstr "Cette console nā€™est pas gestionnaire de cet environnement." - -#: ../../enterprise/meta/advanced/collections.editor.php:128 -#: ../../enterprise/meta/advanced/collections.editor.php:195 -#: ../../enterprise/godmode/agentes/collections.editor.php:161 -#: ../../enterprise/godmode/agentes/collections.editor.php:226 -msgid "Back to file explorer" -msgstr "Retour Ć  l'Explorateur de fichiers" - -#: ../../enterprise/meta/advanced/collections.editor.php:217 -#: ../../enterprise/godmode/agentes/collections.editor.php:248 -#: ../../godmode/servers/plugin.php:192 -msgid "Compatibility mode" -msgstr "Mode de compatibilitĆ©" - -#: ../../enterprise/meta/advanced/collections.editor.php:269 -#: ../../enterprise/godmode/agentes/collections.editor.php:299 -msgid "Correct update file." -msgstr "Fichier mis Ć  jour correctement" - -#: ../../enterprise/meta/advanced/collections.editor.php:270 -#: ../../enterprise/godmode/agentes/collections.editor.php:300 -msgid "Incorrect update file." -msgstr "Erreur de mise Ć  jour du fichier" - -#: ../../enterprise/meta/advanced/collections.editor.php:403 -#: ../../enterprise/godmode/agentes/collections.editor.php:447 -msgid "Please, first save a new collection before to upload files." -msgstr "" -"Veuillez sauvegarder d'abord la nouvelle collection, et ensuite tĆ©lĆ©verser les " -"fichiers." - -#: ../../enterprise/meta/advanced/metasetup.performance.php:74 -#: ../../godmode/setup/setup.php:125 ../../godmode/setup/setup.php:260 -#: ../../godmode/menu.php:334 -msgid "Performance" -msgstr "Performance" - -#: ../../enterprise/meta/advanced/metasetup.performance.php:88 -msgid "Use real-time statistics" -msgstr "Utiliser des statistiques en temps rĆ©el" - -#: ../../enterprise/meta/advanced/metasetup.performance.php:98 -msgid "Migration block size" -msgstr "Taille du bloc de migration" - -#: ../../enterprise/meta/advanced/metasetup.performance.php:108 -#: ../../godmode/setup/performance.php:614 -msgid "Events response max. execution" -msgstr "ExĆ©cution max. de rĆ©ponse dā€™Ć©vĆ©nements" - -#: ../../enterprise/meta/advanced/metasetup.performance.php:110 -msgid "Number of events that will perform the desired action at the same time" -msgstr "Nombre dā€™Ć©vĆ©nements qui effectueront lā€™action souhaitĆ©e en mĆŖme temps" - -#: ../../enterprise/meta/advanced/metasetup.performance.php:146 -#: ../../godmode/setup/performance.php:660 -#, 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:151 -#: ../../godmode/setup/performance.php:667 -msgid "PhantomJS cache cleanup " -msgstr "Nettoyage du cache PhantomJS " - -#: ../../enterprise/meta/advanced/metasetup.performance.php:158 -#: ../../godmode/setup/performance.php:674 -msgid "No scheduled" -msgstr "Non planifiĆ©" - -#: ../../enterprise/meta/advanced/metasetup.performance.php:159 -#: ../../godmode/setup/performance.php:675 -msgid "Each week" -msgstr "Chaque semaine" - -#: ../../enterprise/meta/advanced/metasetup.performance.php:160 -#: ../../godmode/setup/performance.php:676 -msgid "Each day" -msgstr "Tous les jours" - -#: ../../enterprise/meta/advanced/cron_main.php:75 -#: ../../enterprise/extensions/cron.php:156 -msgid "Cron jobs" -msgstr "TĆ¢ches planifiĆ©es" - -#: ../../enterprise/meta/advanced/cron_main.php:87 -#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:551 -msgid "Add new job" -msgstr "Ajouter une nouvelle tĆ¢che" - -#: ../../enterprise/meta/advanced/cron_main.php:173 -#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:244 -msgid "Only administrator users can create this type of functions" -msgstr "" -"Seuls les utilisateurs administrateurs peuvent crĆ©er ce type de fonctions" - -#: ../../enterprise/meta/advanced/cron_main.php:244 -#: ../../enterprise/meta/advanced/cron_main.php:278 -#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:356 -msgid "Edit job" -msgstr "Modifier la tĆ¢che" - -#: ../../enterprise/meta/advanced/cron_main.php:333 -msgid "" -"In order to make backups it is necessary to have mysqldump on your console." -msgstr "" -"Afin de faire des sauvegardes, il est nĆ©cessaire dā€™avoir mysqldump sur votre " -"console." - -#: ../../enterprise/meta/advanced/cron_main.php:407 -msgid "Date format in Pandora is year/month/day" -msgstr "Le format de date sur Pandora FMS est annĆ©e/mois/jour" - -#: ../../enterprise/meta/advanced/cron_main.php:418 -msgid "Time format in Pandora is hours(24h):minutes:seconds" -msgstr "Le format de l'heure sur Pandora FMS est heure(24h):minutes:secondes" - -#: ../../enterprise/meta/advanced/collections.data.php:76 -#: ../../enterprise/godmode/agentes/collections.data.php:174 -msgid "" -"Unable to create the collection. Another collection with the same short name." -msgstr "" -"Impossible de crĆ©er la collection. Une autre collection avec le mĆŖme nom " -"abrĆ©gĆ© existe dĆ©jĆ ." - -#: ../../enterprise/meta/advanced/collections.data.php:97 -#: ../../enterprise/meta/advanced/collections.data.php:117 -#: ../../enterprise/godmode/agentes/collections.data.php:197 -#: ../../enterprise/godmode/agentes/collections.data.php:217 -msgid "Unable to create the collection" -msgstr "Impossible de crĆ©er la collection" - -#: ../../enterprise/meta/advanced/collections.data.php:97 -#: ../../enterprise/godmode/agentes/collections.data.php:197 -msgid "Invalid characters in short name" -msgstr "CaractĆØres non valides dans le nom abrĆ©gĆ©" - -#: ../../enterprise/meta/advanced/collections.data.php:111 -#: ../../enterprise/godmode/agentes/collections.data.php:59 -#: ../../enterprise/godmode/agentes/collections.data.php:167 -#: ../../enterprise/godmode/agentes/collections.data.php:191 -#: ../../enterprise/godmode/agentes/collections.data.php:211 -#: ../../enterprise/godmode/agentes/collections.data.php:238 -#: ../../enterprise/godmode/agentes/collections.data.php:294 -msgid "Manager configuration > New" -msgstr "GĆ©rer la configuration > Nouveau" - -#: ../../enterprise/meta/advanced/collections.data.php:142 -#: ../../enterprise/meta/advanced/collections.data.php:190 -#: ../../enterprise/godmode/agentes/collections.data.php:244 -#: ../../enterprise/godmode/agentes/collections.data.php:302 -msgid "Unable to create the collection." -msgstr "Impossible de crĆ©er la collection" - -#: ../../enterprise/meta/advanced/collections.data.php:163 -#: ../../enterprise/meta/advanced/collections.data.php:309 -#: ../../enterprise/godmode/agentes/collections.data.php:270 -msgid "Correct create collection" -msgstr "Collection crĆ©Ć©e correctement" - -#: ../../enterprise/meta/advanced/collections.data.php:231 -#: ../../enterprise/godmode/agentes/collections.editor.php:84 -#: ../../enterprise/godmode/agentes/collections.data.php:106 -#: ../../enterprise/godmode/agentes/collections.data.php:262 -#: ../../enterprise/godmode/agentes/collections.data.php:351 -#: ../../enterprise/godmode/agentes/collections.data.php:367 -#: ../../enterprise/godmode/agentes/collections.data.php:375 -msgid "Manager configuration > Edit " -msgstr "GĆ©rer la configuration > Ɖditer " - -#: ../../enterprise/meta/advanced/collections.data.php:287 -#: ../../enterprise/godmode/agentes/collections.data.php:358 -msgid "Unable to edit the collection, empty name." -msgstr "Impossible d'Ć©diter la collection : nom vide" - -#: ../../enterprise/meta/advanced/collections.data.php:300 -#: ../../enterprise/godmode/agentes/collections.data.php:373 -msgid "Unable to edit the collection." -msgstr "Impossible d'Ć©diter la collection" - -#: ../../enterprise/meta/advanced/collections.data.php:345 -#: ../../enterprise/godmode/agentes/collections.data.php:438 -msgid "Recreate file" -msgstr "CrĆ©er le fichier Ć  nouveau" - -#: ../../enterprise/meta/advanced/collections.data.php:373 -#: ../../enterprise/meta/advanced/collections.data.php:374 -#: ../../enterprise/godmode/agentes/collection_manager.php:166 -#: ../../enterprise/godmode/agentes/collection_manager.php:167 -#: ../../enterprise/godmode/agentes/collection_manager.php:281 -#: ../../enterprise/godmode/agentes/collection_manager.php:282 -#: ../../enterprise/godmode/agentes/collections.data.php:467 -#: ../../enterprise/godmode/agentes/collections.data.php:468 -msgid "Need to regenerate" -msgstr "Il a besoin de se rĆ©gĆ©nĆ©rer." - -#: ../../enterprise/meta/advanced/collections.data.php:397 -#: ../../enterprise/godmode/agentes/collections.data.php:492 -msgid "Group:" -msgstr "GroupeĀ :" - -#: ../../enterprise/meta/advanced/collections.data.php:420 -#: ../../enterprise/godmode/agentes/collections.data.php:514 -msgid "Short name:" -msgstr "Nom abrĆ©gĆ© :" - -#: ../../enterprise/meta/advanced/collections.data.php:426 -#: ../../enterprise/godmode/agentes/collections.data.php:519 -msgid "" -"The collection's short name is the name of dir in attachment dir and the " -"package collection." -msgstr "" -"Le nom court de la collection est le nom du rĆ©pertoire dans le rĆ©pertoire de " -"piĆØces jointes et la collection de progiciels." - -#: ../../enterprise/meta/advanced/collections.data.php:426 -#: ../../enterprise/godmode/agentes/collections.data.php:519 -msgid "Short name must contain only alphanumeric characters, - or _ ." -msgstr "Le nom abrĆ©gĆ© doit contenir que des caractĆØres alphanumĆ©riques, - ou _." - -#: ../../enterprise/meta/advanced/collections.data.php:426 -#: ../../enterprise/godmode/agentes/collections.data.php:519 -msgid "Empty for default short name fc_X where X is the collection id." -msgstr "" -"Vide pour le nom abrĆ©gĆ© fc_X par dĆ©faut oĆ¹ X est l'identifiant de collection" - -#: ../../enterprise/meta/advanced/license_meta.php:52 -#: ../../godmode/setup/license.php:80 -msgid "Failed to Update license file" -msgstr "Echec de la mise Ć  jour du fichier de licence" - -#: ../../enterprise/meta/advanced/license_meta.php:59 -msgid "Metaconsole and all nodes license updated" -msgstr "Licence MĆ©taconsole et de tous les nœuds mise Ć  jour" - -#: ../../enterprise/meta/advanced/license_meta.php:61 -#, php-format -msgid "Metaconsole license updated but %d of %d node synchronization failed" -msgstr "" -"Mise Ć  jour de la licence de la MĆ©taconsole mais Ć©chec de la synchronisation " -"des nœuds %d de %d" - -#: ../../enterprise/meta/advanced/metasetup.php:55 -msgid "Consoles Setup" -msgstr "Configuration des consoles" - -#: ../../enterprise/meta/advanced/metasetup.php:63 -#: ../../enterprise/meta/advanced/metasetup.php:216 -msgid "General setup" -msgstr "Configuration gĆ©nĆ©rale" - -#: ../../enterprise/meta/advanced/metasetup.php:71 -#: ../../enterprise/meta/advanced/metasetup.php:219 -msgid "Passwords setup" -msgstr "Configuration des mots de passe" - -#: ../../enterprise/meta/advanced/metasetup.php:91 -#: ../../enterprise/meta/advanced/metasetup.php:227 -#: ../../godmode/setup/setup.php:113 ../../godmode/setup/setup.php:255 -#: ../../godmode/menu.php:331 -msgid "Authentication" -msgstr "Authentification" - -#: ../../enterprise/meta/advanced/metasetup.php:101 -#: ../../enterprise/meta/advanced/metasetup.php:231 -msgid "Visual setup" -msgstr "Configuration visuelle" - -#: ../../enterprise/meta/advanced/metasetup.php:109 -#: ../../enterprise/meta/advanced/metasetup.php:235 -msgid "Performance setup" -msgstr "Configuration de la performance" - -#: ../../enterprise/meta/advanced/metasetup.php:117 -#: ../../enterprise/meta/advanced/metasetup.php:239 -#: ../../godmode/setup/file_manager.php:46 ../../godmode/menu.php:399 -msgid "File manager" -msgstr "Gestionnaire de fichiers" - -#: ../../enterprise/meta/advanced/metasetup.php:125 -#: ../../enterprise/meta/advanced/metasetup.php:243 -msgid "Strings translation" -msgstr "Traduction des chaĆ®nes" - -#: ../../enterprise/meta/advanced/metasetup.php:133 -#: ../../enterprise/meta/advanced/metasetup.php:247 -msgid "Mail" -msgstr "Email" - -#: ../../enterprise/meta/advanced/metasetup.php:141 -#: ../../enterprise/meta/advanced/metasetup.php:251 -#: ../../godmode/setup/setup.php:204 ../../godmode/setup/setup.php:300 -#: ../../godmode/menu.php:355 -msgid "Notifications" -msgstr "Notifications" - -#: ../../enterprise/meta/advanced/metasetup.php:153 -msgid "Relations rules" -msgstr "RĆØgles de relations" - -#: ../../enterprise/meta/advanced/metasetup.php:166 -msgid "Warp Update Setup" -msgstr "Configuration de Warp Update" - -#: ../../enterprise/meta/advanced/metasetup.php:174 -msgid "Warp Update Journal" -msgstr "Journal de Warp Update" - -#: ../../enterprise/meta/advanced/metasetup.php:182 -msgid "Warp Update Offline" -msgstr "Warp Update hors ligne" - -#: ../../enterprise/meta/advanced/metasetup.php:190 -msgid "Warp Update Online" -msgstr "Warp Update en ligne" - -#: ../../enterprise/meta/advanced/metasetup.php:211 -msgid "Consoles setup" -msgstr "Configuration des consoles" - -#: ../../enterprise/meta/advanced/metasetup.php:255 -msgid "Relations Rules" -msgstr "RĆØgles de relations" - -#: ../../enterprise/meta/advanced/metasetup.php:259 -msgid "Online Update Options" -msgstr "Options de mise Ć  jour en ligne" - -#: ../../enterprise/meta/advanced/metasetup.php:263 -msgid "Online Update Journal" -msgstr "Update Journal en ligne" - -#: ../../enterprise/meta/advanced/metasetup.php:268 -msgid "Online Update Offline" -msgstr "Mise Ć  jour en ligne hors ligne" - -#: ../../enterprise/meta/advanced/metasetup.php:275 -msgid "Online Update Online" -msgstr "Mise Ć  jour en ligne en ligne" - -#: ../../enterprise/meta/advanced/metasetup.setup.php:108 -#: ../../enterprise/godmode/modules/configure_local_component.php:164 -#: ../../godmode/modules/manage_network_components_form_common.php:52 -#: ../../godmode/alerts/configure_alert_template.php:933 -#: ../../godmode/alerts/configure_alert_template.php:974 -#: ../../godmode/alerts/configure_alert_template.php:1137 -#: ../../godmode/alerts/alert_commands.php:141 -#: ../../godmode/alerts/alert_commands.php:182 -#: ../../godmode/users/configure_user.php:1210 -msgid "Basic" -msgstr "ƉlĆ©mentaire" - -#: ../../enterprise/meta/advanced/metasetup.setup.php:145 -#: ../../godmode/setup/setup_general.php:126 -msgid "Database" -msgstr "Base de donnĆ©es" - -#: ../../enterprise/meta/advanced/metasetup.setup.php:149 -#, php-format -msgid "" -"If SSL is not properly configured, you will lose access to the %s Console. Do " -"you want to continue?" -msgstr "" -"Si SSL nā€™est pas correctement configurĆ©, vous perdrez lā€™accĆØs Ć  la console %s. " -"Voulez-vous continuer ?" - -#: ../../enterprise/meta/advanced/metasetup.setup.php:152 -msgid "Directory where temporary data is stored." -msgstr "RĆ©pertoire pour le stockage temporaire de donnĆ©es." - -#: ../../enterprise/meta/advanced/metasetup.setup.php:158 -msgid "Directory where phantomjs binary file exists and has execution grants." -msgstr "" -"RĆ©pertoire oĆ¹ le fichier binaire phantomjs existe et a des licences " -"dā€™exĆ©cution." - -#: ../../enterprise/meta/advanced/metasetup.setup.php:193 -#: ../../godmode/setup/setup_general.php:296 -msgid "Change timezone" -msgstr "Modifier le fuseau horaire" - -#: ../../enterprise/meta/advanced/metasetup.setup.php:198 -#, php-format -msgid "" -"Set this value when you need your %s to be accessible via a public URL (for " -"example using Apache mod_proxy settings)." -msgstr "" -"DĆ©finissez cette valeur lorsque vous avez besoin que votre %s soit accessible " -"via une URL publique (par exemple en utilisant les paramĆØtres apache " -"mod_proxy)." - -#: ../../enterprise/meta/advanced/metasetup.setup.php:202 -msgid "Force using defined public URL)." -msgstr "Forcer lā€™utilisation dā€™une URL publique dĆ©finie)." - -#: ../../enterprise/meta/advanced/metasetup.setup.php:209 -#, php-format -msgid "" -"If public URL is not properly configured, you will lose access to the %s " -"Console. Do you want to continue?" -msgstr "" -"Si lā€™URL publique nā€™est pas correctement configurĆ©e, vous perdrez lā€™accĆØs Ć  la " -"Console %s. Voulez-vous continuer ?" - -#: ../../enterprise/meta/advanced/metasetup.setup.php:218 -msgid "" -"Disable the definition of custom filters in the live view. Only existing " -"filters can be used." -msgstr "" -"DĆ©sactiver la dĆ©finition des filtres personnalisĆ©s d'affichage en temps rĆ©el. " -"Seulement les filtres existants peuvent ĆŖtre utilisĆ©s." - -#: ../../enterprise/meta/advanced/metasetup.setup.php:222 -msgid "The string modules with several lines show as command output" -msgstr "" -"Les modules de chaĆ®nes avec plusieurs lignes montrent la sortie de commande" - -#: ../../enterprise/meta/advanced/metasetup.setup.php:227 -msgid "Customize sections" -msgstr "Personnaliser les sections" - -#: ../../enterprise/meta/advanced/metasetup.setup.php:248 -msgid "Disabled sections" -msgstr "Sections dĆ©sactivĆ©es" - -#: ../../enterprise/meta/advanced/metasetup.setup.php:250 -msgid "Enabled sections" -msgstr "Sections activĆ©es" - -#: ../../enterprise/meta/advanced/metasetup.setup.php:255 -msgid "Push selected sections to enable it" -msgstr "Empiler les sections sĆ©lectionnĆ©es pour les activer" - -#: ../../enterprise/meta/advanced/metasetup.setup.php:257 -msgid "Pop selected sections to disable it" -msgstr "DĆ©piler les sections sĆ©lectionnĆ©es pour les dĆ©sactiver" - -#: ../../enterprise/meta/advanced/metasetup.setup.php:267 -msgid "Please be careful if you put a password put https access." -msgstr "Si vous introduisez un mot de passe, veuillez activer l'accĆØs https." - -#: ../../enterprise/meta/advanced/metasetup.setup.php:289 -#: ../../enterprise/godmode/setup/setup.php:98 -msgid " Bytes" -msgstr " Octets" - -#: ../../enterprise/meta/advanced/metasetup.setup.php:291 -msgid "Max. agents to add in policy concurrently" -msgstr "Nombre maximal dā€™agents Ć  ajouter simultanĆ©ment Ć  la politique" - -#: ../../enterprise/meta/advanced/metasetup.setup.php:291 -msgid "" -"Maximum allowed number of agents to be added in policy concurrently (adding a " -"high number of agents at a time can lead to performance issues)" -msgstr "" -"Nombre maximal autorisĆ© dā€™agents Ć  ajouter simultanĆ©ment dans la politique " -"(lā€™ajout dā€™un nombre Ć©levĆ© dā€™agents Ć  la fois peut entraĆ®ner des problĆØmes de " -"performances)" - -#: ../../enterprise/meta/advanced/metasetup.setup.php:294 -msgid "Synchronization queue items warn detection" -msgstr "" -"DĆ©tection dā€™avertissement des Ć©lĆ©ments de file dā€™attente de synchronisation" - -#: ../../enterprise/meta/advanced/metasetup.setup.php:294 -msgid "Number of items in synchronization queue before be notified, per node" -msgstr "" -"Nombre dā€™Ć©lĆ©ments dans la file dā€™attente de synchronisation avant dā€™ĆŖtre " -"notifiĆ©s, par nœud" - -#: ../../enterprise/meta/advanced/metasetup.setup.php:298 -msgid "Enable Agent API" -msgstr "Activer lā€™API de lā€™agent" - -#: ../../enterprise/meta/advanced/metasetup.setup.php:320 -msgid "Enable log viewer" -msgstr "Activer la visionneuse de journaux" - -#: ../../enterprise/meta/advanced/metasetup.setup.php:324 -msgid "Log location: pandora_console/log/console.log" -msgstr "Emplacement du journal : pandora_console/log/console.log" - -#: ../../enterprise/meta/advanced/metasetup.setup.php:345 -msgid "Log location: pandora_console/log/audit.log" -msgstr "Emplacement du journal : pandora_console/log/audit.log" - -#: ../../enterprise/meta/advanced/metasetup.consoles.php:105 -#, php-format -msgid "Node %s is not recognized as metaconsole node." -msgstr "Le nœud %s nā€™est pas reconnu comme nœud de la MĆ©taconsole." - -#: ../../enterprise/meta/advanced/metasetup.consoles.php:112 -#, php-format -msgid "Node %s license missmatch." -msgstr "Le noeud %s ne correspond pas avec la licence" - -#: ../../enterprise/meta/advanced/metasetup.consoles.php:119 -#, php-format -msgid "Cannot connect to node %s" -msgstr "Impossible de se connecter au nœud %s" - -#: ../../enterprise/meta/advanced/metasetup.consoles.php:126 -#, php-format -msgid "Unknown error synchronizing %s" -msgstr "Erreur inconnue lors de la synchronisation de %s" - -#: ../../enterprise/meta/advanced/metasetup.consoles.php:136 -#, php-format -msgid "Synchronized %d nodes, but some failed to synchronize %s" -msgstr "Nœuds %d synchronisĆ©s, mais certains nā€™ont pas rĆ©ussi Ć  synchroniser %s" - -#: ../../enterprise/meta/advanced/metasetup.consoles.php:143 -#, php-format -msgid "Successfully synchronized all nodes (%d)" -msgstr "Synchronisation rĆ©ussie de tous les nœuds (%d)" - -#: ../../enterprise/meta/advanced/metasetup.consoles.php:210 -msgid "Node synchronization process failed" -msgstr "Ɖchec du processus de synchronisation des nœuds" - -#: ../../enterprise/meta/advanced/metasetup.consoles.php:210 -#: ../../enterprise/meta/advanced/metasetup.consoles.php:324 -msgid "" -"If you are trying to migrate this node to a new metaconsole, please use the " -"form available at Settings > Enterprise at node console." -msgstr "" -"Si vous essayez de migrer ce nœud vers une nouvelle MĆ©taconsole, utilisez le " -"formulaire disponible dans ParamĆØtres > Enterprise sur la console du nœud." - -#: ../../enterprise/meta/advanced/metasetup.consoles.php:220 -#: ../../enterprise/godmode/setup/setup_metaconsole.php:86 -msgid "Could not be update" -msgstr "Erreur de mise Ć  jour" - -#: ../../enterprise/meta/advanced/metasetup.consoles.php:260 -msgid "Could not be created, duplicated register found." -msgstr "Impossible de crĆ©er, registre dupliquĆ© trouvĆ©." - -#: ../../enterprise/meta/advanced/metasetup.consoles.php:322 -msgid "Node synchronization process failed: " -msgstr "Ɖchec du processus de synchronisation des nœuds : " - -#: ../../enterprise/meta/advanced/metasetup.consoles.php:322 -#: ../../godmode/setup/license.php:101 -msgid "Unknown error" -msgstr "Erreur inconnue" - -#: ../../enterprise/meta/advanced/metasetup.consoles.php:343 -msgid "Successfully registered" -msgstr "Inscription rĆ©ussie" - -#: ../../enterprise/meta/advanced/metasetup.consoles.php:344 -#, php-format -msgid "Could not be registered %s" -msgstr "Impossible dā€™ĆŖtre enregistrĆ© %s" - -#: ../../enterprise/meta/advanced/metasetup.consoles.php:370 -msgid "Successfully delete" -msgstr "SupprimĆ© correctement" - -#: ../../enterprise/meta/advanced/metasetup.consoles.php:371 -msgid "Could not be delete" -msgstr "Erreur de suppression" - -#: ../../enterprise/meta/advanced/metasetup.consoles.php:413 -#, php-format -msgid "Could not be disabled: %s" -msgstr "Impossible de dĆ©sactiver : %s" - -#: ../../enterprise/meta/advanced/metasetup.consoles.php:429 -#, php-format -msgid "" -"System is centralised, but you just modify nodes registered, please go to %s " -"to perform a database merge process." -msgstr "" -"Le systĆØme est centralisĆ©, mais vous modifiez simplement les nœuds " -"enregistrĆ©s, veuillez vous rendre dans %s pour effectuer un processus de " -"fusion de base de donnĆ©es." - -#: ../../enterprise/meta/advanced/metasetup.consoles.php:432 -msgid "This node will not be usable until unifying the environment" -msgstr "" -"Ce nœud ne sera pas utilisable tant quā€™il nā€™aura pas unifiĆ© lā€™environnement" - -#: ../../enterprise/meta/advanced/metasetup.consoles.php:507 -#, php-format -msgid "%s Metaconsole item edition" -msgstr "%s Ć©dition des Ć©lĆ©ments de la MĆ©taconsole" - -#: ../../enterprise/meta/advanced/metasetup.consoles.php:513 -msgid "Custom label to identify this setup." -msgstr "Ɖtiquette personnalisĆ©e pour identifier cette configuration." - -#: ../../enterprise/meta/advanced/metasetup.consoles.php:516 -#: ../../enterprise/meta/advanced/metasetup.consoles.php:839 -#: ../../enterprise/godmode/setup/setup_metaconsole.php:206 -msgid "Console URL" -msgstr "URL de la console" - -#: ../../enterprise/meta/advanced/metasetup.consoles.php:516 -#, php-format -msgid "Full path to %s console (without index.php). Example %s" -msgstr "Chemin dā€™accĆØs complet Ć  la console %s (sans index.php). Exemple %s" - -#: ../../enterprise/meta/advanced/metasetup.consoles.php:519 -#: ../../enterprise/godmode/setup/setup_metaconsole.php:202 -msgid "Auth token" -msgstr "Token d'authentification" - -#: ../../enterprise/meta/advanced/metasetup.consoles.php:520 -#, php-format -msgid "" -"Token previously configured on the destination %s console in order to use " -"delegated authentification." -msgstr "" -"Jeton prĆ©cĆ©demment configurĆ© sur la console de destination %s afin dā€™utiliser " -"lā€™authentification dĆ©lĆ©guĆ©e." - -#: ../../enterprise/meta/advanced/metasetup.consoles.php:544 -#: ../../enterprise/godmode/setup/setup_metaconsole.php:233 -msgid "Console User" -msgstr "Utilisateur de la console" - -#: ../../enterprise/meta/advanced/metasetup.consoles.php:553 -#: ../../enterprise/godmode/setup/setup_metaconsole.php:237 -msgid "Console Password" -msgstr "Mot de passe de la console" - -#: ../../enterprise/meta/advanced/metasetup.consoles.php:564 -#: ../../enterprise/meta/advanced/metasetup.consoles.php:840 -#: ../../enterprise/godmode/setup/setup_metaconsole.php:215 -#: ../../enterprise/godmode/setup/setup_metaconsole.php:275 -msgid "DB Host" -msgstr "HĆ“te de la BD" - -#: ../../enterprise/meta/advanced/metasetup.consoles.php:573 -#: ../../enterprise/godmode/setup/setup_metaconsole.php:219 -msgid "DB Name" -msgstr "Nom de la BD" - -#: ../../enterprise/meta/advanced/metasetup.consoles.php:582 -#: ../../enterprise/godmode/setup/setup_metaconsole.php:224 -msgid "DB User" -msgstr "Utilisateur de la BD" - -#: ../../enterprise/meta/advanced/metasetup.consoles.php:591 -#: ../../enterprise/godmode/setup/setup_metaconsole.php:228 -msgid "DB Password" -msgstr "Mot de passe de la BD" - -#: ../../enterprise/meta/advanced/metasetup.consoles.php:613 -msgid "Define database connection from Pandora FMS node to this Metaconsole" -msgstr "" -"DĆ©finir la connexion Ć  la base de donnĆ©es du nœud Pandora FMS Ć  cette " -"MĆ©taconsole" - -#: ../../enterprise/meta/advanced/metasetup.consoles.php:635 -msgid "Metaconsole DB Host" -msgstr "HĆ“te de base de donnĆ©es de la MĆ©taconsole" - -#: ../../enterprise/meta/advanced/metasetup.consoles.php:644 -msgid "Metaconsole DB Name" -msgstr "Nom de la base de donnĆ©es de la MĆ©taconsole" - -#: ../../enterprise/meta/advanced/metasetup.consoles.php:653 -msgid "Metaconsole DB User" -msgstr "Utilisateur de la base de donnĆ©es de la MĆ©taconsole" - -#: ../../enterprise/meta/advanced/metasetup.consoles.php:662 -msgid "Metaconsole DB Password" -msgstr "Mot de passe de la base de donnĆ©es de la MĆ©taconsole" - -#: ../../enterprise/meta/advanced/metasetup.consoles.php:673 -#: ../../enterprise/godmode/setup/setup.php:250 -msgid "Metaconsole DB port" -msgstr "Port de la BD de la MĆ©taconsole" - -#: ../../enterprise/meta/advanced/metasetup.consoles.php:726 -msgid "Register empty node" -msgstr "Enregistrer un nœud vide" - -#: ../../enterprise/meta/advanced/metasetup.consoles.php:732 -msgid "Register node with data to merge" -msgstr "Enregistrer le nœud avec les donnĆ©es Ć  fusionner" - -#: ../../enterprise/meta/advanced/metasetup.consoles.php:769 -msgid "Node data will be wiped out" -msgstr "Les donnĆ©es du nœud seront effacĆ©es" - -#: ../../enterprise/meta/advanced/metasetup.consoles.php:770 -msgid "" -"Information contained in this node is not needed. Node information will be " -"erased, and replaced with new data from this metaconsole automatically after " -"register the node. Are you sure?" -msgstr "" -"Les informations contenues dans ce nœud ne sont pas nĆ©cessaires. Les " -"informations du nœud seront effacĆ©es et remplacĆ©es automatiquement par de " -"nouvelles donnĆ©es de cette MĆ©taconsole aprĆØs lā€™enregistrement du nœud. Ɗtes-" -"vous sĆ»r ?" - -#: ../../enterprise/meta/advanced/metasetup.consoles.php:786 -msgid "Node data will be merged" -msgstr "Les donnĆ©es de nœud seront fusionnĆ©es" - -#: ../../enterprise/meta/advanced/metasetup.consoles.php:787 -msgid "" -"Information contained in this node is useful. After register the node, you " -"must launch a merge process from command center, which will combine " -"information in current environment with information contained in this new " -"node. Are you sure?" -msgstr "" -"Les informations contenues dans ce nœud sont utiles. AprĆØs avoir enregistrĆ© le " -"nœud, vous devez lancer un processus de fusion Ć  partir du centre de " -"commandes, qui combinera les informations de lā€™environnement actuel avec les " -"informations contenues dans ce nouveau nœud. Ɗtes-vous sĆ»r ?" - -#: ../../enterprise/meta/advanced/metasetup.consoles.php:832 -#: ../../enterprise/godmode/setup/setup_metaconsole.php:272 -msgid "Compatibility" -msgstr "CompatibilitĆ©" - -#: ../../enterprise/meta/advanced/metasetup.consoles.php:833 -msgid "Event replication" -msgstr "RĆ©plication dā€™Ć©vĆ©nements" - -#: ../../enterprise/meta/advanced/metasetup.consoles.php:836 -msgid "Database sync" -msgstr "Synchronisation de la base de donnĆ©es" - -#: ../../enterprise/meta/advanced/metasetup.consoles.php:903 -msgid "New node" -msgstr "Nouveau nœud" - -#: ../../enterprise/meta/advanced/metasetup.consoles.php:935 -msgid "Synchronize all" -msgstr "Synchroniser tout" - -#: ../../enterprise/meta/advanced/metasetup.password.php:73 -msgid "Passwords" -msgstr "Mots de passe" - -#: ../../enterprise/meta/advanced/metasetup.password.php:102 -#: ../../enterprise/godmode/setup/setup.php:484 -msgid " Caracters" -msgstr " CaractĆØres" - -#: ../../enterprise/meta/advanced/metasetup.password.php:105 -msgid "Set 0 if never expire." -msgstr "Configurez-le sur 0 pour qu'il n'expire jamais." - -#: ../../enterprise/meta/advanced/metasetup.password.php:106 -#: ../../enterprise/godmode/setup/setup.php:513 -msgid " Days" -msgstr " Jours" - -#: ../../enterprise/meta/advanced/metasetup.password.php:110 -#: ../../enterprise/godmode/setup/setup.php:533 -msgid " Minutes" -msgstr " Minutes" - -#: ../../enterprise/meta/advanced/metasetup.password.php:113 -msgid "Two attempts minimum" -msgstr "Deux tentatives minimum" - -#: ../../enterprise/meta/advanced/metasetup.password.php:114 -#: ../../enterprise/godmode/setup/setup.php:544 -msgid " Attempts" -msgstr " Tentatives" - -#: ../../enterprise/meta/advanced/collections.php:111 -msgid "Collection has been deleted" -msgstr "La collection a Ć©tĆ© supprimĆ©e" - -#: ../../enterprise/meta/advanced/collections.php:122 -#: ../../enterprise/meta/advanced/collections.php:138 -#: ../../enterprise/godmode/agentes/collection_manager.php:94 -#: ../../enterprise/godmode/agentes/collections.php:188 -#: ../../enterprise/godmode/agentes/collections.php:210 -msgid "Successful create collection package." -msgstr "Progiciel de la collection crĆ©Ć© correctement" - -#: ../../enterprise/meta/advanced/collections.php:139 -#: ../../enterprise/godmode/agentes/collection_manager.php:95 -#: ../../enterprise/godmode/agentes/collections.php:211 -msgid "Can not create collection package." -msgstr "Erreur de crĆ©ation du progiciel de la collection" - -#: ../../enterprise/meta/advanced/collections.php:149 -#: ../../enterprise/godmode/agentes/collections.php:246 -msgid "Error: Id must not be empty" -msgstr "Erreur : ID ne doit pas ĆŖtre vide" - -#: ../../enterprise/meta/advanced/collections.php:163 -#: ../../enterprise/godmode/agentes/collections.php:260 -msgid "Successful re-create collection directory." -msgstr "RĆ©pertoire de collection recrĆ©Ć© correctement." - -#: ../../enterprise/meta/advanced/collections.php:164 -#: ../../enterprise/godmode/agentes/collections.php:261 -msgid "Can not re-create collection directory." -msgstr "Impossible de recrĆ©er le rĆ©pertoire de collection." - -#: ../../enterprise/meta/advanced/collections.php:190 -#: ../../enterprise/godmode/agentes/collections.php:287 -msgid "Successful re-create collections directories." -msgstr "RĆ©pertoires de collection recrĆ©Ć©s correctement." - -#: ../../enterprise/meta/advanced/collections.php:191 -#: ../../enterprise/godmode/agentes/collections.php:288 -msgid "Can not re-create collections directories." -msgstr "Impossible de recrĆ©er des rĆ©pertoires de collections." - -#: ../../enterprise/meta/advanced/collections.php:205 -msgid "To manage collections you must activate centralized management" -msgstr "Pour gĆ©rer les collections, vous devez activer la gestion centralisĆ©e" - -#: ../../enterprise/meta/advanced/collections.php:218 -#: ../../enterprise/meta/advanced/collections.php:224 -#: ../../godmode/users/user_list.php:402 ../../godmode/users/user_list.php:406 -msgid "Search by username, fullname or email" -msgstr "Rechercher par nom d'utilisateur, nom complet ou courriel" - -#: ../../enterprise/meta/advanced/collections.php:250 -#: ../../godmode/users/user_list.php:451 -msgid "Users control filter" -msgstr "Filtre de contrĆ“le des utilisateurs" - -#: ../../enterprise/meta/advanced/collections.php:259 -#: ../../enterprise/godmode/agentes/collections.php:296 -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:364 -#: ../../enterprise/godmode/agentes/collection_manager.php:110 -#: ../../enterprise/godmode/agentes/collections.php:380 -#: ../../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:412 -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:413 -msgid "Delete collection" -msgstr "Supprimer la collection" - -#: ../../enterprise/meta/advanced/collections.php:440 -#: ../../enterprise/godmode/agentes/collections.php:420 -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:421 -msgid "Re-Apply changes" -msgstr "Appliquer les changements Ć  nouveau" - -#: ../../enterprise/meta/advanced/collections.php:448 -#: ../../enterprise/godmode/agentes/collections.php:428 -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:429 -msgid "Apply changes" -msgstr "Appliquer les modifications" - -#: ../../enterprise/meta/advanced/collections.php:454 -#: ../../enterprise/godmode/agentes/collections.php:434 -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:439 -#: ../../enterprise/godmode/agentes/collections.php:440 -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:460 -msgid "Re-create directories" -msgstr "RecrĆ©er des rĆ©pertoires" - -#: ../../enterprise/meta/advanced/metasetup.visual.php:98 -#: ../../godmode/setup/setup.php:137 ../../godmode/setup/setup.php:266 -#: ../../godmode/menu.php:337 -msgid "Visual styles" -msgstr "Styles visuels" - -#: ../../enterprise/meta/advanced/metasetup.visual.php:109 -#: ../../godmode/setup/setup_visuals.php:1257 -msgid "Example" -msgstr "Exemple" - -#: ../../enterprise/meta/advanced/metasetup.visual.php:136 -#: ../../godmode/setup/setup_visuals.php:1275 -msgid "Timestamp, time comparison, or compact mode" -msgstr "Horodatage, comparaison dā€™heure ou mode compact" - -#: ../../enterprise/meta/advanced/metasetup.visual.php:139 -#: ../../godmode/setup/setup_visuals.php:1277 -msgid "Comparation in rollover" -msgstr "Date en comparaison" - -#: ../../enterprise/meta/advanced/metasetup.visual.php:148 -#: ../../godmode/setup/setup_visuals.php:1278 -msgid "Timestamp in rollover" -msgstr "Horodatage littĆ©ral" - -#: ../../enterprise/meta/advanced/metasetup.visual.php:157 -#: ../../godmode/setup/setup_visuals.php:1279 -msgid "Compact mode" -msgstr "Mode compact" - -#: ../../enterprise/meta/advanced/metasetup.visual.php:197 -msgid "Data precision for reports and visual consoles" -msgstr "PrĆ©cision des donnĆ©es pour les rapports et les consoles visuelles" - -#: ../../enterprise/meta/advanced/metasetup.visual.php:200 -msgid "Precision must be a integer number between 0 and 5" -msgstr "La prĆ©cision doit ĆŖtre un nombre entier entre 0 et 5" - -#: ../../enterprise/meta/advanced/metasetup.visual.php:219 -msgid "Show percentile 95 in graphs" -msgstr "Afficher le centile 95 dans les graphiques" - -#: ../../enterprise/meta/advanced/metasetup.visual.php:291 -#: ../../godmode/setup/setup_visuals.php:951 -msgid "On Boolean graphs" -msgstr "Sur les graphiques boolĆ©ens" - -#: ../../enterprise/meta/advanced/metasetup.visual.php:294 -msgid "Graph TIP view" -msgstr "Vue Graphique TIP" - -#: ../../enterprise/meta/advanced/metasetup.visual.php:295 -msgid "This option may cause performance issues" -msgstr "Cette option peut entraĆ®ner des problĆØmes de performances" - -#: ../../enterprise/meta/advanced/metasetup.visual.php:309 -#: ../../godmode/setup/setup_visuals.php:970 -msgid "Show only average by default" -msgstr "Afficher uniquement la moyenne par dĆ©faut" - -#: ../../enterprise/meta/advanced/metasetup.visual.php:310 -#: ../../godmode/setup/setup_visuals.php:971 -msgid "Show MAX/AVG/MIN by default" -msgstr "Afficher MAX/MOY/MIN par dĆ©faut" - -#: ../../enterprise/meta/advanced/metasetup.visual.php:312 -#: ../../godmode/setup/setup_visuals.php:967 -msgid "Graph mode" -msgstr "Mode du graphique" - -#: ../../enterprise/meta/advanced/metasetup.visual.php:332 -#: ../../godmode/setup/setup_visuals.php:986 -msgid "Zoom graphs:" -msgstr "Graphiques de zoom :" - -#: ../../enterprise/meta/advanced/metasetup.visual.php:346 -#: ../../godmode/setup/setup_visuals.php:901 -msgid "Type of module charts" -msgstr "Type de graphiques de module" - -#: ../../enterprise/meta/advanced/metasetup.visual.php:369 -msgid "The number of elements retrieved for each instance in some views." -msgstr "Nombre d'Ć©lĆ©ments rĆ©cupĆ©rĆ©s pour chaque instance dans certaines vues" - -#: ../../enterprise/meta/advanced/metasetup.visual.php:390 -msgid "Add new custom value to intervals" -msgstr "Ajouter une nouvelle valeur personnalisĆ©e aux intervalles" - -#: ../../enterprise/meta/advanced/metasetup.visual.php:505 -msgid "" -"You can place your favicon into the folder images/custom_favicon/. This file " -"should be in .ico format with a size of 16x16." -msgstr "" -"Vous pouvez placer votre favicon dans le dossier images/custom_favicon/. Ce " -"fichier doit ĆŖtre au format .ico dā€™une taille de 16x16." - -#: ../../enterprise/meta/advanced/metasetup.visual.php:531 -#: ../../godmode/setup/setup_visuals.php:212 -msgid "Custom background logo" -msgstr "Logo d'arriĆØre-plan personnalisĆ©" - -#: ../../enterprise/meta/advanced/metasetup.visual.php:533 -msgid "You can place your custom images into the folder images/backgrounds/" -msgstr "" -"Vous pouvez placer vos images personnalisĆ©es dans le dossier images/" -"backgrounds/" - -#: ../../enterprise/meta/advanced/metasetup.visual.php:576 -#: ../../godmode/setup/setup_visuals.php:279 -msgid "Custom logo (menu)" -msgstr "Logo personnalisĆ© (menu)" - -#: ../../enterprise/meta/advanced/metasetup.visual.php:607 -#: ../../godmode/setup/setup_visuals.php:284 -msgid "Custom logo collapsed (menu)" -msgstr "Le logo personnalisĆ© s'est effondrĆ© (menu)" - -#: ../../enterprise/meta/advanced/metasetup.visual.php:638 -#: ../../godmode/setup/setup_visuals.php:289 -msgid "Custom logo (header white background)" -msgstr "Logo personnalisĆ© (fond blanc dā€™en-tĆŖte)" - -#: ../../enterprise/meta/advanced/metasetup.visual.php:667 -#: ../../godmode/setup/setup_visuals.php:328 -msgid "Custom logo (login)" -msgstr "Logo personnalisĆ© (connexion)" - -#: ../../enterprise/meta/advanced/metasetup.visual.php:696 -#: ../../godmode/setup/setup_visuals.php:367 -msgid "Custom Splash (login)" -msgstr "Splash personnalisĆ© (connexion)" - -#: ../../enterprise/meta/advanced/metasetup.visual.php:746 -#: ../../godmode/setup/setup_visuals.php:471 -msgid "Title (header)" -msgstr "Titre (en-tĆŖte)" - -#: ../../enterprise/meta/advanced/metasetup.visual.php:750 -#: ../../godmode/setup/setup_visuals.php:476 -msgid "Subtitle (header)" -msgstr "Sous-titre (en-tĆŖte)" - -#: ../../enterprise/meta/advanced/metasetup.visual.php:754 -#: ../../godmode/setup/setup_visuals.php:482 -msgid "Title 1 (login)" -msgstr "Titre 1 (connexion)" - -#: ../../enterprise/meta/advanced/metasetup.visual.php:765 -#: ../../godmode/setup/setup_visuals.php:489 -msgid "Title 2 (login)" -msgstr "Titre 2 (connexion)" - -#: ../../enterprise/meta/advanced/metasetup.visual.php:815 -msgid "Graphs font family" -msgstr "Famille de polices de graphiques" - -#: ../../enterprise/meta/advanced/metasetup.visual.php:836 -#: ../../godmode/setup/setup_visuals.php:1020 -msgid "Legacy Visual Console View" -msgstr "Vue console visuelle legacy" - -#: ../../enterprise/meta/advanced/metasetup.visual.php:838 -msgid "To use the old view when using the Visual Console visor" -msgstr "" -"Pour utiliser lā€™ancienne vue lors de lā€™utilisation de la visiĆØre de la Console " -"visuelle" - -#: ../../enterprise/meta/advanced/metasetup.visual.php:857 -#: ../../godmode/setup/setup_visuals.php:1038 -msgid "Default cache expiration" -msgstr "Expiration du cache par dĆ©faut" - -#: ../../enterprise/meta/advanced/metasetup.visual.php:877 -msgid "This interval will affect to Visual Console pages" -msgstr "Cet intervalle aura un effet sur les pages de la console visuelle" - -#: ../../enterprise/meta/advanced/metasetup.visual.php:903 -#: ../../godmode/setup/setup_visuals.php:1451 -msgid "Data multiplier to use in graphs/data" -msgstr "Multiplicateur de donnĆ©es Ć  utiliser dans les graphiques/donnĆ©es" - -#: ../../enterprise/meta/advanced/metasetup.visual.php:907 -#: ../../godmode/setup/setup_visuals.php:1453 -msgid "Use 1024 when module unit are bytes" -msgstr "Utiliser 1024 lorsque lā€™unitĆ© de module est en octets" - -#: ../../enterprise/meta/advanced/metasetup.visual.php:908 -#: ../../godmode/setup/setup_visuals.php:1454 -msgid "Use always 1000" -msgstr "Utilisez toujours 1000" - -#: ../../enterprise/meta/advanced/metasetup.visual.php:909 -#: ../../godmode/setup/setup_visuals.php:1455 -msgid "Use always 1024" -msgstr "Utilisez toujours 1024" - -#: ../../enterprise/meta/advanced/metasetup.visual.php:933 -msgid "Reports configuration" -msgstr "Configuration des rapports" - -#: ../../enterprise/meta/advanced/metasetup.visual.php:939 -#: ../../godmode/setup/setup_visuals.php:1097 -msgid "Show report info with description" -msgstr "Afficher l'information du rapport avec description" - -#: ../../enterprise/meta/advanced/metasetup.visual.php:940 -msgid "" -"Custom report description info. It will be applied to all reports and " -"templates by default." -msgstr "" -"Description du rapport personnalisĆ©. Elle sera appliquĆ©e par dĆ©faut Ć  tous les " -"rapports et modĆØles." - -#: ../../enterprise/meta/advanced/metasetup.visual.php:951 -#: ../../godmode/setup/setup_visuals.php:1106 -msgid "Custom report front page" -msgstr "Page de couverture du rapport personnalisĆ©" - -#: ../../enterprise/meta/advanced/metasetup.visual.php:952 -msgid "" -"Custom report front page. It will be applied to all reports and templates by " -"default." -msgstr "" -"Page de couverture du rapport personnalisĆ©. Elle sera appliquĆ©e par dĆ©faut Ć  " -"tous les rapports et modĆØles." - -#: ../../enterprise/meta/advanced/metasetup.visual.php:971 -msgid "" -"This is the height in pixels of the module graph or custom graph in the " -"reports (only: HTML)" -msgstr "" -"Il sā€™agit de la hauteur en pixels du graphique de module ou du graphique " -"personnalisĆ© dans les rapports (uniquement : HTML)" - -#: ../../enterprise/meta/advanced/metasetup.visual.php:1038 -msgid "" -"A long interval description is for example 10 hours, 20 minutes 33 secondsĆ¢Ā€Ā, a " -"short one is 10h 20m 33s" -msgstr "" -"Une description dā€™intervalle long est par exemple de 10 heures, 20 minutes 33 " -"secondes, une courte est de 10h 20m 33s" - -#: ../../enterprise/meta/advanced/metasetup.visual.php:1054 -#: ../../enterprise/godmode/reporting/reporting_builder.advanced.php:128 -#: ../../enterprise/godmode/reporting/reporting_builder.template_advanced.php:131 -msgid "" -"The path of custom logos is 'images/custom_logo' in the console installation. " -"You can upload more files (ONLY JPEG AND PNG) with the upload tool." -msgstr "" -"Le chemin des logos personnalisĆ©s est 'images/custom_logo' dans lā€™installation " -"de la console. Vous pouvez tĆ©lĆ©charger plus de fichiers (UNIQUEMENT JPEG ET " -"PNG) avec lā€™outil de tĆ©lĆ©chargement." - -#: ../../enterprise/meta/advanced/metasetup.visual.php:1318 -#: ../../godmode/setup/setup_visuals.php:1752 -msgid "Logo preview" -msgstr "AperƧu du logo" - -#: ../../enterprise/meta/advanced/metasetup.visual.php:1340 -#: ../../godmode/setup/setup_visuals.php:1782 -msgid "Splash Preview" -msgstr "AperƧu du Splash" - -#: ../../enterprise/meta/advanced/metasetup.visual.php:1345 -#: ../../godmode/setup/setup_visuals.php:1806 -msgid "Background preview" -msgstr "AperƧu du fond d'Ć©cran" - -#: ../../enterprise/meta/advanced/links.php:47 ../../godmode/setup/links.php:42 -msgid "There was a problem creating link" -msgstr "Erreur de crĆ©ation du lien" - -#: ../../enterprise/meta/advanced/links.php:60 -msgid "The link was not updated, the data is identical" -msgstr "Le lien nā€™a pas Ć©tĆ© mis Ć  jour, les donnĆ©es sont identiques" - -#: ../../enterprise/meta/advanced/links.php:68 ../../godmode/setup/links.php:61 -msgid "There was a problem modifying link" -msgstr "ProblĆØme de modification du lien" - -#: ../../enterprise/meta/advanced/links.php:82 ../../godmode/setup/links.php:74 -msgid "There was a problem deleting link" -msgstr "ProblĆØme de suppression du lien" - -#: ../../enterprise/meta/advanced/links.php:100 -msgid "Link Name error" -msgstr "Erreur de nom de lien" - -#: ../../enterprise/meta/advanced/links.php:127 -#: ../../enterprise/meta/advanced/links.php:156 ../../godmode/setup/links.php:116 -#: ../../godmode/setup/links.php:145 -msgid "Link name" -msgstr "Nom du lien" - -#: ../../enterprise/meta/advanced/links.php:130 -#: ../../enterprise/godmode/policies/policy_linking.php:204 -#: ../../godmode/setup/links.php:119 -msgid "Link" -msgstr "Lien" - -#: ../../enterprise/meta/advanced/links.php:152 ../../godmode/setup/links.php:141 -msgid "There isn't links" -msgstr "Il n'y a pas de liens" - -#: ../../enterprise/meta/index.php:848 -#, php-format -msgid "" -"System is not centralised, please go to %s to perform a database merge process." -msgstr "" -"Le systĆØme n'est pas centralisĆ©, allez vers %s pour effectuer le processus " -"d'unification" - -#: ../../enterprise/meta/index.php:916 -#, php-format -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/agentsearch.php:121 -msgid "Search results for" -msgstr "RĆ©sultats de recherche pour" - -#: ../../enterprise/meta/agentsearch.php:301 -msgid "There are no agents included in this group" -msgstr "Aucun agent inclus dans ce groupe" - -#: ../../enterprise/meta/agentsearch.php:450 -msgid "There are no policies included in this group" -msgstr "Il n'y a pas des politiques inclues dans ce groupe" - -#: ../../enterprise/extensions/disabled/check_acls.php:16 -msgid "ACL users for this agent" -msgstr "Utilisateurs ACL pour cet agent" - -#: ../../enterprise/extensions/disabled/check_acls.php:49 -#: ../../enterprise/extensions/disabled/check_acls.php:136 -msgid "Agents reading" -msgstr "Lecture des agents" - -#: ../../enterprise/extensions/disabled/check_acls.php:51 -#: ../../enterprise/extensions/disabled/check_acls.php:138 -msgid "Agents disable" -msgstr "DĆ©sactiver les agents" - -#: ../../enterprise/extensions/disabled/check_acls.php:52 -#: ../../enterprise/extensions/disabled/check_acls.php:139 -msgid "Alerts editing" -msgstr "Ɖdition des alertes" - -#: ../../enterprise/extensions/disabled/check_acls.php:53 -#: ../../enterprise/extensions/disabled/check_acls.php:140 -#: ../../godmode/menu.php:125 -msgid "Users management" -msgstr "Gestion des utilisateurs" - -#: ../../enterprise/extensions/disabled/check_acls.php:54 -#: ../../enterprise/extensions/disabled/check_acls.php:141 -msgid "Database management" -msgstr "Gestion de la base de donnĆ©es" - -#: ../../enterprise/extensions/disabled/check_acls.php:55 -#: ../../enterprise/extensions/disabled/check_acls.php:142 -msgid "Alerts management" -msgstr "Gestion des alertes" - -#: ../../enterprise/extensions/disabled/check_acls.php:56 -#: ../../enterprise/extensions/disabled/check_acls.php:143 -msgid "Reports reading" -msgstr "Lecture des rapports" - -#: ../../enterprise/extensions/disabled/check_acls.php:57 -#: ../../enterprise/extensions/disabled/check_acls.php:144 -msgid "Reports writing" -msgstr "Ɖcriture des rapports" - -#: ../../enterprise/extensions/disabled/check_acls.php:58 -#: ../../enterprise/extensions/disabled/check_acls.php:145 -msgid "Reports management" -msgstr "Gestion des rapports" - -#: ../../enterprise/extensions/disabled/check_acls.php:59 -#: ../../enterprise/extensions/disabled/check_acls.php:146 -msgid "Events reading" -msgstr "Lecture des Ć©vĆ©nements" - -#: ../../enterprise/extensions/disabled/check_acls.php:60 -#: ../../enterprise/extensions/disabled/check_acls.php:147 -msgid "Events writing" -msgstr "Ɖcriture des Ć©vĆ©nements" - -#: ../../enterprise/extensions/disabled/check_acls.php:61 -#: ../../enterprise/extensions/disabled/check_acls.php:148 -msgid "Events management" -msgstr "Gestion des Ć©vĆ©nements" - -#: ../../enterprise/extensions/disabled/check_acls.php:62 -#: ../../enterprise/extensions/disabled/check_acls.php:149 -msgid "Systems management" -msgstr "Gestion des systĆØmes" - -#: ../../enterprise/extensions/disabled/check_acls.php:112 -msgid "There are no defined users" -msgstr "Aucun utilisateur dĆ©fini" - -#: ../../enterprise/extensions/disabled/check_acls.php:134 -#: ../../godmode/menu.php:117 -msgid "Module tags" -msgstr "Ɖtiquettes de modules" - -#: ../../enterprise/extensions/disabled/check_acls.php:197 -msgid "ACL module tags for the modules in this agent" -msgstr "Ɖtiquettes de module ACL pour les modules dans cet agent" - -#: ../../enterprise/extensions/disabled/check_acls.php:208 -msgid "Only admin users can see this section." -msgstr "Seulement les utilisateurs administrateurs peuvent voir cette section." - -#: ../../enterprise/extensions/disabled/check_acls.php:215 -msgid "Check ACL" -msgstr "VĆ©rifier ACL" - -#: ../../enterprise/extensions/csv_import_group/main.php:23 -#: ../../enterprise/extensions/csv_import_group.php:69 -msgid "CSV import group" -msgstr "Groupe d'importation CSV" - -#: ../../enterprise/extensions/csv_import_group/main.php:48 -#, php-format -msgid "Created group %s" -msgstr "Groupe %s crĆ©Ć©" - -#: ../../enterprise/extensions/csv_import_group/main.php:49 -#, php-format -msgid "Could not create group %s" -msgstr "Impossible de crĆ©er le groupe %s" - -#: ../../enterprise/extensions/csv_import_group/main.php:56 -msgid "File processed" -msgstr "Fichier traitĆ©" - -#: ../../enterprise/extensions/csv_import_group/main.php:59 -msgid "Please syncronize groups to nodes" -msgstr "Veuillez synchroniser les groupes avec les nœuds" - -#: ../../enterprise/extensions/resource_registration/functions.php:61 -#, php-format -msgid "Error create '%s' policy, the name exist and there aren't free name." -msgstr "" -"Erreur de crĆ©ation de la politique '%s' ; le nom existe dĆ©jĆ  et aucun autre " -"nom est disponible." - -#: ../../enterprise/extensions/resource_registration/functions.php:69 -#, php-format -msgid "Warning create '%s' policy, the name exist, the policy have a name %s." -msgstr "" -"Erreur de crĆ©ation de la politique '%s' ; le nom existe dĆ©jĆ . Le nom de la " -"politique est %s." - -#: ../../enterprise/extensions/resource_registration/functions.php:78 -msgid "Error the policy haven't name." -msgstr "Erreur, la politique n'a pas de nom." - -#: ../../enterprise/extensions/resource_registration/functions.php:99 -#, php-format -msgid "Success create '%s' policy." -msgstr "Politique '%s' crĆ©Ć©e correctement" - -#: ../../enterprise/extensions/resource_registration/functions.php:100 -#, php-format -msgid "Error create '%s' policy." -msgstr "Erreur de crĆ©ation de la politique '%s'" - -#: ../../enterprise/extensions/resource_registration/functions.php:142 -#, php-format -msgid "Error add '%s' agent. The agent does not exist" -msgstr "Erreur dā€™ajout de lā€™agent '%s'. Lā€™agent nā€™existe pas" - -#: ../../enterprise/extensions/resource_registration/functions.php:147 -#, php-format -msgid "Success add '%s' agent." -msgstr "Agent '%s' ajoutĆ© correctement." - -#: ../../enterprise/extensions/resource_registration/functions.php:148 -#, php-format -msgid "Error add '%s' agent." -msgstr "Erreur d'ajout de l'agent '%s'." - -#: ../../enterprise/extensions/resource_registration/functions.php:167 -msgid "The collection does not exist" -msgstr "La collection nā€™existe pas" - -#: ../../enterprise/extensions/resource_registration/functions.php:172 -#, php-format -msgid "Success add '%s' collection." -msgstr "Collection '%s' ajoutĆ©e correctement" - -#: ../../enterprise/extensions/resource_registration/functions.php:173 -#, php-format -msgid "Error add '%s' collection." -msgstr "Erreur d'ajout de la collection '%s'" - -#: ../../enterprise/extensions/resource_registration/functions.php:191 -#, php-format -msgid "Success add '%s' agent plugin." -msgstr "Plugin de l'agent '%s' ajoutĆ© correctement" - -#: ../../enterprise/extensions/resource_registration/functions.php:192 -#, php-format -msgid "Error add '%s' agent plugin." -msgstr "Erreur d'ajout du plugin de l'agent '%s'." - -#: ../../enterprise/extensions/resource_registration/functions.php:205 -msgid "Error add the module, haven't type." -msgstr "Erreur d'ajout du module ; aucun type attribuĆ©." - -#: ../../enterprise/extensions/resource_registration/functions.php:411 -#: ../../enterprise/extensions/resource_registration/functions.php:480 -#: ../../enterprise/extensions/resource_registration/functions.php:581 -#: ../../enterprise/extensions/resource_registration/functions.php:637 -msgid "Error add the module, error in tag component." -msgstr "Erreur d'ajout du module ; erreur dans le composant de l'Ć©tiquette." - -#: ../../enterprise/extensions/resource_registration/functions.php:693 -msgid "Error add the module plugin importation, plugin is not registered" -msgstr "" -"Erreur d'importation du plugin de module ; le plugin n'est pas enregistrĆ©." - -#: ../../enterprise/extensions/resource_registration/functions.php:703 -#, php-format -msgid "Success add '%s' module." -msgstr "Module '%s' ajoutĆ© correctement" - -#: ../../enterprise/extensions/resource_registration/functions.php:704 -#, php-format -msgid "Error add '%s' module." -msgstr "Erreur d'ajout du module '%s'" - -#: ../../enterprise/extensions/resource_registration/functions.php:718 -#, php-format -msgid "Error add the alert, the template '%s' don't exist." -msgstr "Erreur d'ajout de l'alerte, le modĆØle '%s' n'existe pas." - -#: ../../enterprise/extensions/resource_registration/functions.php:731 -#: ../../enterprise/extensions/resource_registration/functions.php:749 -#, php-format -msgid "Error add the alert, the module '%s' don't exist." -msgstr "Erreur d'ajout de l'alerte, le module '%s' n'existe pas." - -#: ../../enterprise/extensions/resource_registration/functions.php:771 -#, php-format -msgid "Success add '%s' alert." -msgstr "Alerte '%s' ajoutĆ©e correctement" - -#: ../../enterprise/extensions/resource_registration/functions.php:772 -#, php-format -msgid "Error add '%s' alert." -msgstr "Erreur d'ajout de l'alerte '%s'" - -#: ../../enterprise/extensions/resource_registration/functions.php:798 -#, php-format -msgid "Error add the alert, the action '%s' don't exist." -msgstr "Erreur d'ajout de l'alerte ; l'action '%s' n'existe pas." - -#: ../../enterprise/extensions/resource_registration/functions.php:817 -#, php-format -msgid "Success add '%s' action." -msgstr "Action '%s' ajoutĆ©e correctement" - -#: ../../enterprise/extensions/resource_registration/functions.php:818 -#: ../../extensions/resource_registration.php:436 -#: ../../extensions/resource_registration.php:458 -#: ../../extensions/resource_registration.php:469 -#, php-format -msgid "Error add '%s' action." -msgstr "Erreur, action '%s' non ajoutĆ©e" - -#: ../../enterprise/extensions/resource_registration/functions.php:854 -msgid "The inventory module does not exist" -msgstr "Le module dā€™inventaire nā€™existe pas" - -#: ../../enterprise/extensions/resource_registration/functions.php:859 -#, php-format -msgid "Success add '%s' inventory module." -msgstr "Ajout rĆ©ussi du module dā€™inventaire '%s'." - -#: ../../enterprise/extensions/resource_registration/functions.php:860 -#, php-format -msgid "Error add '%s' inventory module." -msgstr "Erreur dā€™ajout du module dā€™inventaire '%s'." - -#: ../../enterprise/extensions/translate_string.php:168 -#: ../../enterprise/extensions/translate_string.php:380 -msgid "Translate string" -msgstr "Traduire chaĆ®ne" - -#: ../../enterprise/extensions/vmware.php:46 -msgid "Failed to initialize VMware extension." -msgstr "Impossible dā€™initialiser lā€™extension VMware." - -#: ../../enterprise/extensions/vmware.php:89 -msgid "VMware View" -msgstr "Vue VMware" - -#: ../../enterprise/extensions/csv_import_group.php:50 -#, php-format -msgid "" -"This node is configured with centralized mode. All group information is read " -"only. Go to %s to import the CSV." -msgstr "" -"Ce nœud est configurĆ© en mode centralisĆ©. Toutes les informations de groupe " -"sont en lecture seule. AccĆ©dez Ć  %s pour importer le fichier CSV." - -#: ../../enterprise/extensions/csv_import_group.php:83 -msgid "CSV group import" -msgstr "Importation de groupe CSV" - -#: ../../enterprise/extensions/resource_exportation/functions.php:20 -msgid "Export agents" -msgstr "Exporter des agents" - -#: ../../enterprise/extensions/vmware/vmware_view.php:61 -msgid "Top 5 VMs CPU Usage" -msgstr "Top 5 VMs de l'utilisation de l'UC" - -#: ../../enterprise/extensions/vmware/vmware_view.php:70 -msgid "Top 5 VMs Memory Usage" -msgstr "Top 5 VMs de l'utilisation de la mĆ©moire" - -#: ../../enterprise/extensions/vmware/vmware_view.php:82 -msgid "Top 5 VMs Provisioning Usage" -msgstr "Top 5 de lā€™utilisation du provisionnement des machines virtuelles" - -#: ../../enterprise/extensions/vmware/vmware_view.php:91 -msgid "Top 5 VMs Network Usage" -msgstr "Top 5 VMs de l'utilisation du rĆ©seau" - -#: ../../enterprise/extensions/vmware/vmware_view.php:684 -msgid "Host ESX" -msgstr "HĆ“te ESX" - -#: ../../enterprise/extensions/vmware/vmware_view.php:1036 -msgid "CPU Usage" -msgstr "Utilisation de l'UC" - -#: ../../enterprise/extensions/vmware/vmware_view.php:1046 -msgid "Memory Usage" -msgstr "Utilisation de la mĆ©moire" - -#: ../../enterprise/extensions/vmware/vmware_view.php:1056 -msgid "Disk I/O Rate" -msgstr "Ratio I/O du disque" - -#: ../../enterprise/extensions/vmware/vmware_view.php:1066 -msgid "Network Usage" -msgstr "Utilisation du rĆ©seau" - -#: ../../enterprise/extensions/vmware/vmware_view.php:1169 -msgid "Settings updated " -msgstr "ParamĆØtres mis Ć  jour " - -#: ../../enterprise/extensions/vmware/vmware_view.php:1171 -msgid "No changes in settings " -msgstr "Aucune modification des paramĆØtres " - -#: ../../enterprise/extensions/vmware/vmware_view.php:1179 -msgid "CPU usage graphs" -msgstr "Graphiques dā€™utilisation de lā€™UCT" - -#: ../../enterprise/extensions/vmware/vmware_view.php:1180 -#: ../../enterprise/extensions/vmware/vmware_view.php:1186 -#: ../../enterprise/extensions/vmware/vmware_view.php:1192 -#: ../../enterprise/extensions/vmware/vmware_view.php:1198 -msgid "Force minimum value" -msgstr "Forcer la valeur minimale" - -#: ../../enterprise/extensions/vmware/vmware_view.php:1182 -#: ../../enterprise/extensions/vmware/vmware_view.php:1188 -#: ../../enterprise/extensions/vmware/vmware_view.php:1194 -#: ../../enterprise/extensions/vmware/vmware_view.php:1200 -msgid "Force maximum value" -msgstr "Forcer la valeur maximale" - -#: ../../enterprise/extensions/vmware/vmware_view.php:1185 -msgid "Memory usage graphs" -msgstr "Graphiques dā€™utilisation de la mĆ©moire" - -#: ../../enterprise/extensions/vmware/vmware_view.php:1191 -msgid "Provisioning Usage graphs" -msgstr "Provisionnant des graphiques dā€™utilisation" - -#: ../../enterprise/extensions/vmware/vmware_view.php:1197 -msgid "Network usage graphs" -msgstr "Graphiques dā€™utilisation du rĆ©seau" - -#: ../../enterprise/extensions/vmware/vmware_view.php:1208 -msgid "Map items" -msgstr "ElĆ©ments de la Carte" - -#: ../../enterprise/extensions/vmware/vmware_view.php:1209 -msgid "Show datastores" -msgstr "Afficher les datastores" - -#: ../../enterprise/extensions/vmware/vmware_view.php:1216 -msgid "Show ESXis" -msgstr "Afficher ESXis" - -#: ../../enterprise/extensions/vmware/vmware_view.php:1223 -msgid "Show VMs" -msgstr "Afficher les machines virtuelles" - -#: ../../enterprise/extensions/vmware/vmware_view.php:1230 -msgid "Font size (px)" -msgstr "Taille de police (px)" - -#: ../../enterprise/extensions/vmware/vmware_view.php:1232 -msgid "Node radius (px)" -msgstr "Rayon du nœud (px)" - -#: ../../enterprise/extensions/vmware/vmware_view.php:1234 -msgid "Node separation (rate)" -msgstr "SĆ©paration des nœuds (taux)" - -#: ../../enterprise/extensions/vmware/vmware_view.php:1239 -msgid "" -"Looking for VMware configuration? You can configure several tasks using " -"Discovery Applications." -msgstr "" -"Vous recherchez une configuration VMware ? Vous pouvez configurer plusieurs " -"tĆ¢ches Ć  lā€™aide des applications Discovery." - -#: ../../enterprise/extensions/vmware/vmware_view.php:1247 -msgid "Graph settings" -msgstr "ParamĆØtres du graphique" - -#: ../../enterprise/extensions/vmware/vmware_view.php:1252 -msgid "Map settings" -msgstr "ParamĆØtres de la carte" - -#: ../../enterprise/extensions/vmware/vmware_view.php:1296 -#: ../../enterprise/extensions/vmware/vmware_view.php:1368 -msgid "Welcome" -msgstr "Bienvenue" - -#: ../../enterprise/extensions/vmware/vmware_view.php:1327 -msgid "ESX Detail" -msgstr "DĆ©tail ESX" - -#: ../../enterprise/extensions/vmware/vmware_view.php:1358 -msgid "ESX details" -msgstr "DĆ©tails ESX" - -#: ../../enterprise/extensions/vmware/vmware_view.php:1363 -msgid "VMware view options" -msgstr "Options dā€™affichage VMware" - -#: ../../enterprise/extensions/vmware/vmware_view.php:1399 -msgid "VMWare" -msgstr "VMware" - -#: ../../enterprise/extensions/vmware/vmware_view.php:1504 -msgid "" -"Some ESX Hosts are not up to date, please check VMware plugin configuration." -msgstr "" -"Certains hĆ“tes ESX ne sont pas Ć  jour, veuillez vĆ©rifier la configuration du " -"plug-in VMware." - -#: ../../enterprise/extensions/vmware/vmware_view.php:1506 -msgid "VMware plugin is working." -msgstr "Le plugin VMware fonctionne." - -#: ../../enterprise/extensions/vmware/vmware_view.php:1515 -msgid "View VMware map" -msgstr "Afficher la carte VMware" - -#: ../../enterprise/extensions/vmware/vmware_view.php:1516 -msgid "View VMware dashboard" -msgstr "Afficher le tableau de bord VMware" - -#: ../../enterprise/extensions/vmware/vmware_view.php:1517 -msgid "View ESX Host statistics from" -msgstr "Afficher les statistiques de lā€™hĆ“te ESX Ć  partir de" - -#: ../../enterprise/extensions/vmware/vmware_view.php:1524 -msgid "There are no VMware information detected in this environment." -msgstr "Aucune information VMware nā€™est dĆ©tectĆ©e dans cet environnement." - -#: ../../enterprise/extensions/vmware/vmware_view.php:1525 -msgid "You can configure several tasks using Discovery Applications at " -msgstr "" -"Vous pouvez configurer plusieurs tĆ¢ches Ć  lā€™aide des applications de " -"dĆ©couverte Ć  lā€™adresse " - -#: ../../enterprise/extensions/vmware/vmware_view.php:1734 -#, php-format -msgid "" -"This map is a quick representation of all your VMware entities detected. You " -"can create a custom VMware map by defining a network map based on your VMware " -"discovery task %s" -msgstr "" -"Cette carte est une reprĆ©sentation rapide de toutes vos entitĆ©s VMware " -"dĆ©tectĆ©es. Vous pouvez crĆ©er une carte VMware personnalisĆ©e en dĆ©finissant une " -"carte rĆ©seau en fonction de votre tĆ¢che de dĆ©couverte VMware %s" - -#: ../../enterprise/extensions/vmware/vmware_view.php:1744 -msgid "Show Datastores" -msgstr "Afficher les datastores" - -#: ../../enterprise/extensions/vmware/vmware_view.php:1747 -msgid "Show ESX" -msgstr "Afficher ESX" - -#: ../../enterprise/extensions/vmware/vmware_view.php:1750 -msgid "Show VM" -msgstr "Afficher VM" - -#: ../../enterprise/extensions/vmware/vmware_view.php:1754 -#: ../../godmode/reporting/visual_console_builder.wizard.php:215 -msgid "Font" -msgstr "Police" - -#: ../../enterprise/extensions/vmware/vmware_view.php:1772 -msgid "View options" -msgstr "Afficher les options" - -#: ../../enterprise/extensions/vmware/vmware_manager.php:227 -msgid "Power Status: " -msgstr "Ɖtat : " - -#: ../../enterprise/extensions/vmware/vmware_manager.php:273 -msgid "Change Status" -msgstr "Changer l'Ć©tat" - -#: ../../enterprise/load_html_extra.php:202 -msgid "Activate license" -msgstr "Activer la licence" - -#: ../../enterprise/load_html_extra.php:203 -msgid "Your request key is:" -msgstr "La clĆ© de votre demande est :" - -#: ../../enterprise/load_html_extra.php:206 -#, php-format -msgid "" -"You can activate it manually here or " -"automatically filling the form below:" -msgstr "" -"Vous pouvez l'activer manuellement ici ou " -"automatiquement en remplissant le formulaire ci-dessous :" - -#: ../../enterprise/load_html_extra.php:213 -msgid "Auth Key:" -msgstr "ClĆ© d'authentification :" - -#: ../../enterprise/load_html_extra.php:221 -#: ../../enterprise/load_html_extra.php:240 -msgid "Online validation" -msgstr "Validation en ligne" - -#: ../../enterprise/load_html_extra.php:233 -msgid "ERROR:" -msgstr "ERREURĀ :" - -#: ../../enterprise/load_html_extra.php:233 -msgid "When connecting to licence server." -msgstr "Lors de la connexion au serveur de licences." - -#: ../../enterprise/load_enterprise.php:559 ../../godmode/setup/license.php:83 -msgid "License updated" -msgstr "Licences mises Ć  jour" - -#: ../../enterprise/load_enterprise.php:560 -msgid "Failed while updating license." -msgstr "La mise Ć  jour de la licence a Ć©chouĆ©" - -#: ../../enterprise/load_enterprise.php:585 -#: ../../enterprise/load_enterprise.php:650 -msgid "Invalid licence." -msgstr "Licence non valide" - -#: ../../enterprise/load_enterprise.php:585 -msgid "Please contact your system administrator." -msgstr "Veuillez communiquer avec l'administrateur du systĆØme." - -#: ../../enterprise/load_enterprise.php:650 -#, php-format -msgid "Please contact %s for a valid licence." -msgstr "Veuillez contacter %s pour une licence valide." - -#: ../../enterprise/load_enterprise.php:651 -#, php-format -msgid "Or disable %s enterprise" -msgstr "Ou dĆ©sactivez %s Enterprise" - -#: ../../enterprise/load_enterprise.php:753 -#: ../../enterprise/load_enterprise.php:1048 -msgid "Request new licence" -msgstr "Demander une nouvelle licence" - -#: ../../enterprise/load_enterprise.php:832 -msgid "" -"Metaconsole unreached

    This " -"node has a metaconsole license and cannot contact with the metaconsole." -msgstr "" -"MƩtaconsole non achevƩe

    Ce " -"noeud a une licence de MĆ©taconsole et ne peut pas contacter la MĆ©taconsole." - -#: ../../enterprise/load_enterprise.php:849 -#: ../../enterprise/load_enterprise.php:855 -#: ../../enterprise/load_enterprise.php:871 -#, php-format -msgid "" -"License exceeded

    This " -"license allows %d agents and you have %d agents configured." -msgstr "" -"Licence dƩpasƩe

    Cette " -"licence permet %d agents et vous avez %d agents configurƩs." - -#: ../../enterprise/load_enterprise.php:850 -#: ../../enterprise/load_enterprise.php:857 -#: ../../enterprise/load_enterprise.php:866 -#: ../../enterprise/load_enterprise.php:873 -#: ../../enterprise/load_enterprise.php:885 -#, php-format -msgid "Please contact %s to extend the license." -msgstr "Veuillez contacter %s pour Ʃtendre votre licence." - -#: ../../enterprise/load_enterprise.php:856 -#: ../../enterprise/load_enterprise.php:858 -#: ../../enterprise/load_enterprise.php:872 -#: ../../enterprise/load_enterprise.php:874 -#: ../../enterprise/load_enterprise.php:901 -#: ../../enterprise/load_enterprise.php:907 -msgid "" -"This console will work in limited mode. Enterprise features will not function." -msgstr "" -"Cette console travaillera en mode limitƩ. Les fonctionnalitƩs Enterprise ne " -"fonctionneront pas." - -#: ../../enterprise/load_enterprise.php:865 -#, php-format -msgid "" -"License exceeded

    This " -"license allows %d agents and you have %d agents configured." -msgstr "" -"Licence dƩpasƩe

    Cette " -"licence permet %d agents et vous avez %d agents configurƩs." - -#: ../../enterprise/load_enterprise.php:884 -#, php-format -msgid "" -"License exceeded

    This " -"license allows %d modules and you have %d modules configured." -msgstr "" -"Licence dƩpasƩe

    Cette " -"licence permet %d modules et vous avez %d modules configurƩs." - -#: ../../enterprise/load_enterprise.php:894 -#: ../../enterprise/load_enterprise.php:900 -msgid "" -"This license has expired. " -"

    You can not get updates until you renew the license." -msgstr "" -"Licence expirƩe

    Vous ne " -"pouvez pas obtenir de mises Ơ jour tant que vous n'avez pas renouvelƩ la " -"licence." - -#: ../../enterprise/load_enterprise.php:895 -#: ../../enterprise/load_enterprise.php:902 -#, php-format -msgid "Please contact %s to renew the license." -msgstr "Veuillez contacter %s pour renouveler votre licence." - -#: ../../enterprise/load_enterprise.php:905 -#: ../../enterprise/load_enterprise.php:1044 -msgid "Renew" -msgstr "Renouveler" - -#: ../../enterprise/load_enterprise.php:914 -#, php-format -msgid "" -"This license is outside of support. " -"

    This %s installation will continue working normally and without " -"limitations, but without support or updates." -msgstr "" -"Cette licence est hors support. " -"

    Cette installation %s continuera Ć  fonctionner normalement et sans " -"limitations mais sans support ou mises Ć  jour." - -#: ../../enterprise/godmode/setup/setup.php:48 -msgid "Yes and change status" -msgstr "Oui et changer dā€™Ć©tat" - -#: ../../enterprise/godmode/setup/setup.php:56 -msgid "Yes without changing status" -msgstr "Oui sans changer dā€™Ć©tat" - -#: ../../enterprise/godmode/setup/setup.php:124 -msgid "Seconds" -msgstr "Secondes" - -#: ../../enterprise/godmode/setup/setup.php:144 -msgid "Last replication at" -msgstr "DerniĆØre rĆ©plication Ć " - -#: ../../enterprise/godmode/setup/setup.php:146 -msgid "No replication yet" -msgstr "Aucune rĆ©plication encore" - -#: ../../enterprise/godmode/setup/setup.php:160 -msgid "Only validated events" -msgstr "Seulement les Ć©vĆ©nements validĆ©s" - -#: ../../enterprise/godmode/setup/setup.php:175 -msgid "Metaconsole DB engine" -msgstr "Moteur BD de la MĆ©taconsole" - -#: ../../enterprise/godmode/setup/setup.php:193 -msgid "Metaconsole DB host" -msgstr "HĆ“te BD de la MĆ©taconsole" - -#: ../../enterprise/godmode/setup/setup.php:207 -msgid "Metaconsole DB name" -msgstr "Nom de la BD de la MĆ©taconsole" - -#: ../../enterprise/godmode/setup/setup.php:221 -msgid "Metaconsole DB user" -msgstr "Utilisateur de la BD de la MĆ©taconsole" - -#: ../../enterprise/godmode/setup/setup.php:235 -msgid "Metaconsole DB password" -msgstr "Mot de passe de la BD de la MĆ©taconsole" - -#: ../../enterprise/godmode/setup/setup.php:275 -msgid "Events Configuration Information" -msgstr "Informations sur la configuration des Ć©vĆ©nements" - -#: ../../enterprise/godmode/setup/setup.php:277 -msgid "" -" If you are replicating events, events validated or deleted on the metaconsole " -"WILL NOT be deleted or validated here. This option is just to allow local " -"pandora users to see events, but not to operate with them. Operation, when " -"event replication is enabled, should be done only in metaconsole" -msgstr "" -" Si vous rĆ©pliquez des Ć©vĆ©nements, les Ć©vĆ©nements validĆ©s ou supprimĆ©s sur la " -"MĆ©taconsole NE SERONT PAS supprimĆ©s ou validĆ©s ici. Cette option est juste " -"pour permettre aux utilisateurs locaux de Pandora FMS de voir les Ć©vĆ©nements, " -"mais pas dā€™opĆ©rer avec eux. Lā€™opĆ©ration, lorsque la rĆ©plication dā€™Ć©vĆ©nements " -"est activĆ©e, doit ĆŖtre effectuĆ©e uniquement dans la MĆ©taconsole" - -#: ../../enterprise/godmode/setup/setup.php:345 -msgid "Out of black list" -msgstr "En dehors de la liste noire" - -#: ../../enterprise/godmode/setup/setup.php:347 -msgid "In black list" -msgstr "Dans la liste noire" - -#: ../../enterprise/godmode/setup/setup.php:352 -msgid "Push selected modules into blacklist" -msgstr "Ajouter les modules sĆ©lectionnĆ©s sur la liste noire" - -#: ../../enterprise/godmode/setup/setup.php:354 -msgid "Pop selected modules out of blacklist" -msgstr "Supprimer les modules sĆ©lectionnĆ©s de la liste noire" - -#: ../../enterprise/godmode/setup/setup.php:389 -msgid "Critical threshold for occupied addresses" -msgstr "Seuil critique pour les adresses occupĆ©es" - -#: ../../enterprise/godmode/setup/setup.php:401 -msgid "Warning threshold for occupied addresses" -msgstr "Seuil dā€™avertissement pour les adresses occupĆ©es" - -#: ../../enterprise/godmode/setup/setup.php:429 -msgid "Enterprise options" -msgstr "Options Enterprise" - -#: ../../enterprise/godmode/setup/setup.php:589 -#, php-format -msgid "" -"Password related configuration only applies when local %s authentication is " -"selected." -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:598 -msgid "Enterprise password policy" -msgstr "Politique de mot de passe Enterprise" - -#: ../../enterprise/godmode/setup/setup_history.php:84 -msgid "Method does not exist" -msgstr "La mĆ©thode n'existe pas" - -#: ../../enterprise/godmode/setup/setup_history.php:223 -msgid "Configure connection target" -msgstr "Configurer la cible de connexion" - -#: ../../enterprise/godmode/setup/setup_history.php:237 -msgid "Active to historical settings" -msgstr "Actif dans les paramĆØtres historiques" - -#: ../../enterprise/godmode/setup/setup_history.php:241 -#, php-format -msgid "" -"Data will be available in active database as time as days you specify here. " -"Older information will be sent to historical database. Note data will be " -"purged from active database after %d days." -msgstr "" -"Les donnĆ©es seront disponibles dans la base de donnĆ©es active en tant quā€™heure " -"et jours que vous spĆ©cifiez ici. Les informations plus anciennes seront " -"envoyĆ©es Ć  la base de donnĆ©es historique. Les donnĆ©es seront purgĆ©es de la " -"base de donnĆ©es active aprĆØs %d jours." - -#: ../../enterprise/godmode/setup/setup_history.php:247 -msgid "Data days old to keep in active database" -msgstr "DonnĆ©es anciennes Ć  conserver dans la base de donnĆ©es active" - -#: ../../enterprise/godmode/setup/setup_history.php:262 -msgid "" -"Number of rows to be sent to historical database each 'delay' seconds. If you " -"experience issues running pandora_db, try decreasing this value." -msgstr "" -"Nombre de lignes Ć  envoyer Ć  la base de donnĆ©es historique chaque seconde de Ā« " -"retard Ā». Si vous rencontrez des problĆØmes lors de lā€™exĆ©cution de pandora_db, " -"essayez de diminuer cette valeur." - -#: ../../enterprise/godmode/setup/setup_history.php:266 -msgid "Transference block size (Step)" -msgstr "Taille du bloc de transfert (Ć©tape)" - -#: ../../enterprise/godmode/setup/setup_history.php:271 -msgid "Delay between transferences (seconds)" -msgstr "DĆ©lai entre les transferts (secondes)" - -#: ../../enterprise/godmode/setup/setup_history.php:276 -msgid "Historical data settings" -msgstr "ParamĆØtres de donnĆ©es historiques" - -#: ../../enterprise/godmode/setup/setup_history.php:278 -msgid "Maximum historical data age (days)" -msgstr "Ƃge maximal des donnĆ©es historiques (jours)" - -#: ../../enterprise/godmode/setup/setup_history.php:283 -msgid "Maximum historical string data age (days)" -msgstr "Ƃge maximal des donnĆ©es de chaĆ®ne historique (jours)" - -#: ../../enterprise/godmode/setup/setup_history.php:288 -msgid "Data older than 'days' is compacted in order to improve disk utilization." -msgstr "" -"Les donnĆ©es plus anciennes que les Ā« jours Ā» sont compactĆ©es afin dā€™amĆ©liorer " -"lā€™utilisation du disque." - -#: ../../enterprise/godmode/setup/setup_history.php:293 -msgid "" -"Automatically create partitions on specific database IDB files (tagente_datos, " -"tagente_datos_string, tevento). Monthly partitions." -msgstr "" -"CrĆ©ez automatiquement des partitions sur des fichiers IDB de base de donnĆ©es " -"spĆ©cifiques (tagent_donnĆ©es, tagent_donnĆ©es_string, tevent). Partitions " -"mensuelles." - -#: ../../enterprise/godmode/setup/setup_history.php:297 -msgid "Automatic partition of big tables." -msgstr "Partition automatique des grandes tables." - -#: ../../enterprise/godmode/setup/setup_history.php:308 -msgid "Historical events settings" -msgstr "ParamĆØtres des Ć©vĆ©nements historiques" - -#: ../../enterprise/godmode/setup/setup_history.php:319 -#, php-format -msgid "" -"Events will remain in active database a maximum of specified days, then they " -"will be transferred to historical database. Note events will be purged from " -"active database after %d days." -msgstr "" -"Les Ć©vĆ©nements resteront dans la base de donnĆ©es active un maximum de jours " -"spĆ©cifiĆ©s, puis ils seront transfĆ©rĆ©s dans la base de donnĆ©es historique. " -"Notez que les Ć©vĆ©nements seront purgĆ©s de la base de donnĆ©es active aprĆØs %d " -"jours." - -#: ../../enterprise/godmode/setup/setup_history.php:325 -msgid "Events days old to keep in active database" -msgstr "" -"ƉvĆ©nements vieux de plusieurs jours Ć  conserver dans la base de donnĆ©es active" - -#: ../../enterprise/godmode/setup/setup_history.php:340 -msgid "Events will be purged from historical database after specified days." -msgstr "" -"Les Ć©vĆ©nements seront purgĆ©s de la base de donnĆ©es historique aprĆØs les jours " -"spĆ©cifiĆ©s." - -#: ../../enterprise/godmode/setup/setup_history.php:344 -msgid "Maximum historical events age (days)" -msgstr "Ƃge maximale des Ć©vĆ©nements historiques (jours)" - -#: ../../enterprise/godmode/setup/setup_history.php:361 -msgid "Enable historical events" -msgstr "Activer les Ć©vĆ©nements historiques" - -#: ../../enterprise/godmode/setup/setup_history.php:373 -msgid "Customize settings" -msgstr "Personnaliser les paramĆØtres" - -#: ../../enterprise/godmode/setup/setup_history.php:385 -msgid "Enable historical database" -msgstr "Activer la base de donnĆ©es historique" - -#: ../../enterprise/godmode/setup/setup_history.php:407 -msgid "History database connection is available." -msgstr "La connexion Ć  la base de donnĆ©es dā€™historique est disponible." - -#: ../../enterprise/godmode/setup/setup_history.php:414 -#, php-format -msgid "History database connection failed: %s" -msgstr "Ɖchec de la connexion Ć  la base de donnĆ©es historique : %s" - -#: ../../enterprise/godmode/setup/setup_history.php:430 -msgid "History database schema is installed." -msgstr "Le schĆ©ma de base de donnĆ©es dā€™historique est installĆ©." - -#: ../../enterprise/godmode/setup/setup_history.php:439 -#, php-format -msgid "Database is not installed: %s" -msgstr "La base de donnĆ©es nā€™est pas installĆ©e : %s" - -#: ../../enterprise/godmode/setup/setup_history.php:444 -msgid "Install database schema" -msgstr "Installer le schĆ©ma de base de donnĆ©es" - -#: ../../enterprise/godmode/setup/setup_history.php:445 -msgid "This action will install the schema into the target, are you sure?" -msgstr "Cette action installera le schĆ©ma dans la cible, ĆŖtes-vous sĆ»r ?" - -#: ../../enterprise/godmode/setup/setup_history.php:467 -msgid "History database schema is up to date with active database." -msgstr "" -"Le schĆ©ma de base de donnĆ©es dā€™historique est Ć  jour avec la base de donnĆ©es " -"active." - -#: ../../enterprise/godmode/setup/setup_history.php:476 -#, php-format -msgid "Database is not updated: %s" -msgstr "La base de donnĆ©es nā€™est pas mise Ć  jour : %s" - -#: ../../enterprise/godmode/setup/setup_history.php:491 -msgid "Current schema: " -msgstr "SchĆ©ma actuel : " - -#: ../../enterprise/godmode/setup/setup_history.php:498 -msgid "Upgrade database schema" -msgstr "Mettre Ć  niveau le schĆ©ma de base de donnĆ©es" - -#: ../../enterprise/godmode/setup/setup_history.php:499 -msgid "" -"This action will schedule the installation or upgrade of database schema into " -"the target, are you sure?" -msgstr "" -"Cette action planifiera lā€™installation ou la mise Ć  niveau du schĆ©ma de base " -"de donnĆ©es dans la cible, ĆŖtes-vous sĆ»r ?" - -#: ../../enterprise/godmode/setup/setup_history.php:513 -#: ../../godmode/setup/performance.php:686 -msgid "Database maintenance status" -msgstr "Ɖtat de maintenance de la base de donnĆ©es" - -#: ../../enterprise/godmode/setup/setup_history.php:532 -msgid "" -"By enabling historical database, target connection will be tested. If needed, " -"database schema will be applied on your selected target, do you want to " -"proceed?" -msgstr "" -"En activant la base de donnĆ©es historique, la connexion cible sera testĆ©e. Si " -"nĆ©cessaire, le schĆ©ma de base de donnĆ©es sera appliquĆ© sur votre cible " -"sĆ©lectionnĆ©e, voulez-vous continuer ?" - -#: ../../enterprise/godmode/setup/setup_history.php:533 -msgid "" -"Changing historical database target, schema will be recreated in new one, but " -"old data will remain in previous node, unlinked from this console and not " -"maintained, do you want to proceed?" -msgstr "" -"En changeant la cible de la base de donnĆ©es historique, le schĆ©ma sera recrĆ©Ć© " -"dans un nouveau, mais les anciennes donnĆ©es resteront dans le nœud prĆ©cĆ©dent, " -"dissociĆ©es de cette console et non maintenues, voulez-vous continuer ?" - -#: ../../enterprise/godmode/setup/setup_history.php:535 -#, php-format -msgid "" -"Disabling historical database, you will not keep any data older than %d days. " -"Are you sure?" -msgstr "" -"En dĆ©sactivant la base de donnĆ©es historique, vous ne conserverez aucune " -"donnĆ©e de plus de %d jours. Ɗtes-vous sĆ»r ?" - -#: ../../enterprise/godmode/setup/setup_history.php:539 -#, php-format -msgid "" -"Historical database allows you to keep data older than %d days. This action " -"will produce no changes. Historical database will remain disabled." -msgstr "" -"La base de donnĆ©es historique vous permet de conserver des donnĆ©es plus " -"anciennes que %d jours. Cette action ne produira aucun changement. La base de " -"donnĆ©es historique restera dĆ©sactivĆ©e." - -#: ../../enterprise/godmode/setup/setup_history.php:544 -msgid "" -"By changing historical database target, the new connection will be tested. If " -"needed, database schema will be applied on your selected target. Information " -"stored in previous configuration will be IGNORED, do you want to proceed?" -msgstr "" -"En modifiant la cible historique de la base de donnĆ©es, la nouvelle connexion " -"sera testĆ©e. Si nĆ©cessaire, le schĆ©ma de base de donnĆ©es sera appliquĆ© sur la " -"cible sĆ©lectionnĆ©e. Les informations stockĆ©es dans la configuration prĆ©cĆ©dente " -"seront IGNORƉES, voulez-vous continuer ?" - -#: ../../enterprise/godmode/setup/setup_history.php:547 -msgid "Please ensure all fields matches your needs." -msgstr "Veuillez vous assurer que tous les champs correspondent Ć  vos besoins." - -#: ../../enterprise/godmode/setup/setup_history.php:681 -msgid "Update scheduled." -msgstr "Mise Ć  jour planifiĆ©e." - -#: ../../enterprise/godmode/setup/setup_metaconsole.php:31 -msgid "Metaconsole setup" -msgstr "Configuration de la MĆ©taconsole" - -#: ../../enterprise/godmode/setup/setup_metaconsole.php:195 -msgid "Pandora FMS Metaconsole item edition" -msgstr "Ɖdition des Ć©lĆ©ments de la MĆ©taconsole de Pandora FMS" - -#: ../../enterprise/godmode/setup/setup_metaconsole.php:202 -msgid "" -"Token previously configured on the destination Pandora console in order to use " -"delegated authentification." -msgstr "" -"Token configurĆ© prĆ©alablement sur la console de destination de Pandora FMS " -"afin d'utiliser l'authentification dĆ©lĆ©guĆ©e" - -#: ../../enterprise/godmode/setup/setup_metaconsole.php:274 -msgid "Console URLxxxxxx" -msgstr "Console URLxxxxxx" - -#: ../../enterprise/godmode/setup/setup_auth.php:34 -msgid "Active directory" -msgstr "RĆ©pertoire actif" - -#: ../../enterprise/godmode/setup/setup_auth.php:35 -msgid "SAML" -msgstr "SAML" - -#: ../../enterprise/godmode/setup/setup_auth.php:87 -msgid "Force automatically create profile user" -msgstr "Forcer la crĆ©ation automatique dā€™un utilisateur de profil" - -#: ../../enterprise/godmode/setup/setup_auth.php:92 -msgid "Local command" -msgstr "Commande locale" - -#: ../../enterprise/godmode/setup/setup_auth.php:95 -msgid "PHP function" -msgstr "Fonction PHP" - -#: ../../enterprise/godmode/setup/setup_auth.php:172 -#: ../../enterprise/godmode/setup/setup_auth.php:456 -#: ../../enterprise/godmode/setup/setup_auth.php:1251 -msgid "Profiles selected" -msgstr "Profils sĆ©lectionnĆ©s" - -#: ../../enterprise/godmode/setup/setup_auth.php:173 -#: ../../enterprise/godmode/setup/setup_auth.php:457 -#: ../../enterprise/godmode/setup/setup_auth.php:1252 -msgid "Groups selected" -msgstr "Groupes sĆ©lectionnĆ©s" - -#: ../../enterprise/godmode/setup/setup_auth.php:174 -#: ../../enterprise/godmode/setup/setup_auth.php:458 -#: ../../enterprise/godmode/setup/setup_auth.php:1253 -#: ../../enterprise/godmode/modules/configure_local_component.php:581 -#: ../../godmode/modules/manage_network_components_form_common.php:382 -#: ../../godmode/agentes/module_manager_editor_common.php:1014 -msgid "Tags selected" -msgstr "Ɖtiquettes sĆ©lectionnĆ©es" - -#: ../../enterprise/godmode/setup/setup_auth.php:176 -#: ../../enterprise/godmode/setup/setup_auth.php:233 -msgid "LDAP Attributes" -msgstr "Attributs LDAP" - -#: ../../enterprise/godmode/setup/setup_auth.php:177 -#: ../../enterprise/godmode/setup/setup_auth.php:234 -#: ../../enterprise/godmode/setup/setup_auth.php:460 -#: ../../enterprise/godmode/setup/setup_auth.php:512 -#: ../../enterprise/godmode/setup/setup_auth.php:1255 -#: ../../enterprise/godmode/setup/setup_auth.php:1309 -#: ../../godmode/setup/snmp_wizard.php:44 -msgid "OP" -msgstr "OP" - -#: ../../enterprise/godmode/setup/setup_auth.php:229 -#: ../../enterprise/godmode/setup/setup_auth.php:508 -#: ../../enterprise/godmode/setup/setup_auth.php:1305 ../../godmode/menu.php:136 -#: ../../godmode/users/profile_list.php:323 -#: ../../godmode/groups/configure_group.php:122 -#: ../../godmode/groups/group_list.php:380 -msgid "Profiles" -msgstr "Profils" - -#: ../../enterprise/godmode/setup/setup_auth.php:242 -#: ../../enterprise/godmode/setup/setup_auth.php:519 -#: ../../enterprise/godmode/setup/setup_auth.php:1316 -msgid "Select profile" -msgstr "SĆ©lectionner un profil" - -#: ../../enterprise/godmode/setup/setup_auth.php:287 -#: ../../enterprise/godmode/setup/setup_auth.php:557 -#: ../../enterprise/godmode/setup/setup_auth.php:1359 -msgid "Add new permissions" -msgstr "Ajouter de nouvelles autorisations" - -#: ../../enterprise/godmode/setup/setup_auth.php:385 -#: ../../enterprise/godmode/setup/setup_auth.php:1180 -msgid "New users will be able to log in to the nodes." -msgstr "Les nouveaux utilisateurs pourront se connecter aux nœuds." - -#: ../../enterprise/godmode/setup/setup_auth.php:459 -#: ../../enterprise/godmode/setup/setup_auth.php:511 -#: ../../enterprise/godmode/setup/setup_auth.php:1254 -#: ../../enterprise/godmode/setup/setup_auth.php:1308 -msgid "AD Groups" -msgstr "Groupes AD" - -#: ../../enterprise/godmode/setup/setup_auth.php:738 -#: ../../enterprise/godmode/setup/setup_auth.php:854 -msgid "You must select a profile from the list of profiles." -msgstr "Vous devez sĆ©lectionner un profil de la liste de profils." - -#: ../../enterprise/godmode/setup/setup_auth.php:743 -#: ../../enterprise/godmode/setup/setup_auth.php:859 -msgid "You must select a group from the list of groups." -msgstr "SĆ©lectionnez un groupe dans la liste des groupes." - -#: ../../enterprise/godmode/setup/setup_auth.php:1084 -msgid "SimpleSAML path" -msgstr "Chemin SimpleSAML" - -#: ../../enterprise/godmode/setup/setup_auth.php:1085 -msgid "Directory where your 'simplesamlphp' folder is located." -msgstr "RĆ©pertoire oĆ¹ se trouve votre dossier 'simplesamlphp'." - -#: ../../enterprise/godmode/setup/setup_auth.php:1091 -msgid "SAML source" -msgstr "Source Saml" - -#: ../../enterprise/godmode/setup/setup_auth.php:1092 -msgid "Authsource name, e.g. 'example-userpass'" -msgstr "Nom Authsource, par exemple 'example-userpass'" - -#: ../../enterprise/godmode/setup/setup_auth.php:1099 -msgid "SAML user id attribute" -msgstr "Attribut dā€™ID utilisateur SAML" - -#: ../../enterprise/godmode/setup/setup_auth.php:1104 -msgid "SAML mail attribute" -msgstr "Attribut de messagerie SAML" - -#: ../../enterprise/godmode/setup/setup_auth.php:1105 -msgid "" -"SAML field where search for the user email (while autocreate remote users is " -"enabled)" -msgstr "" -"Champ SAML oĆ¹ rechercher lā€™e-mail de lā€™utilisateur (alors que la crĆ©ation " -"automatique dā€™utilisateurs distants est activĆ©e)" - -#: ../../enterprise/godmode/setup/setup_auth.php:1112 -msgid "SAML group name attribute" -msgstr "Attribut de nom de groupe SAML" - -#: ../../enterprise/godmode/setup/setup_auth.php:1113 -msgid "" -"SAML field where search for the group name (while autocreate remote users is " -"enabled)" -msgstr "" -"Champ SAML oĆ¹ rechercher le nom du groupe (alors que la crĆ©ation automatique " -"dā€™utilisateurs distants est activĆ©e)" - -#: ../../enterprise/godmode/setup/setup_auth.php:1120 -msgid "Simple attribute / Multivalue attribute" -msgstr "Attribut simple / Attribut Ć  valeurs multiples" - -#: ../../enterprise/godmode/setup/setup_auth.php:1125 -msgid "SAML profiles and tag attribute" -msgstr "Profils SAML et attribut de lā€™Ć©tiquette" - -#: ../../enterprise/godmode/setup/setup_auth.php:1130 -msgid "Profile attribute" -msgstr "Attribut de profil" - -#: ../../enterprise/godmode/setup/setup_auth.php:1135 -msgid "Tag attribute" -msgstr "Attribut dā€™Ć©tiquette" - -#: ../../enterprise/godmode/setup/setup_auth.php:1140 -msgid "SAML profile and tags prefix" -msgstr "Profil SAML et prĆ©fixe des Ć©tiquettes" - -#: ../../enterprise/godmode/setup/setup_log_collector.php:37 -msgid "ElasticSearch IP" -msgstr "IP ElasticSearch" - -#: ../../enterprise/godmode/setup/setup_log_collector.php:37 -msgid "IP of ElasticSearch server" -msgstr "IP du serveur ElasticSearch" - -#: ../../enterprise/godmode/setup/setup_log_collector.php:39 -msgid "ElasticSearch Port" -msgstr "Port ElasticSearch" - -#: ../../enterprise/godmode/setup/setup_log_collector.php:39 -msgid "Port of ElasticSearch server" -msgstr "Port du serveur ElasticSearch" - -#: ../../enterprise/godmode/setup/setup_log_collector.php:48 -msgid "ElasticSearch Status" -msgstr "Ɖtat dā€™ElasticSearch" - -#: ../../enterprise/godmode/setup/edit_skin.php:44 -#: ../../enterprise/godmode/setup/setup_skins.php:38 -msgid "Skins configuration" -msgstr "Configuration des thĆØmes" - -#: ../../enterprise/godmode/setup/edit_skin.php:47 -msgid "Successfully updated skin" -msgstr "ThĆØme mis Ć  jour correctement" - -#: ../../enterprise/godmode/setup/edit_skin.php:49 -#: ../../enterprise/godmode/setup/edit_skin.php:67 -msgid "Error updating skin" -msgstr "Erreur de mise Ć  jour du thĆØme" - -#: ../../enterprise/godmode/setup/edit_skin.php:197 -msgid "Error creating skin" -msgstr "Erreur de crĆ©ation du thĆØme" - -#: ../../enterprise/godmode/setup/edit_skin.php:201 -msgid "Successfully created skin" -msgstr "ThĆØme crĆ©Ć© correctement" - -#: ../../enterprise/godmode/setup/edit_skin.php:241 -#: ../../enterprise/godmode/setup/setup_skins.php:126 -msgid "Relative path" -msgstr "Chemin relatif" - -#: ../../enterprise/godmode/setup/edit_skin.php:242 -msgid "" -"Zip file with skin subdirectory. The name of the zip file only can have " -"alphanumeric characters." -msgstr "" -"Fichier zip avec sous-rĆ©pertoire thĆØme. Le nom du fichier zip ne peut avoir " -"que des caractĆØres alphanumĆ©riques." - -#: ../../enterprise/godmode/setup/edit_skin.php:267 -msgid "Group/s" -msgstr "Groupe/s" - -#: ../../enterprise/godmode/setup/setup_module_library.php:68 -#: ../../enterprise/godmode/wizards/Cloud.class.php:381 -#: ../../godmode/module_library/module_library_view.php:163 -msgid "Invalid username or password" -msgstr "Nom d'utilisateur ou mot de passe invalide" - -#: ../../enterprise/godmode/setup/setup_module_library.php:69 -#: ../../godmode/module_library/module_library_view.php:162 -msgid "Problem with authentication. Check your internet connection" -msgstr "ProblĆØme dā€™authentification. VĆ©rifiez votre connexion Internet" - -#: ../../enterprise/godmode/setup/setup_skins.php:77 -msgid "Error deleting skin" -msgstr "Erreur de suppression du thĆØme" - -#: ../../enterprise/godmode/setup/setup_skins.php:79 -msgid "Successfully deleted skin" -msgstr "ThĆØme supprimĆ© correctement" - -#: ../../enterprise/godmode/setup/setup_skins.php:125 -msgid "Skin name" -msgstr "Nom du thĆØme" - -#: ../../enterprise/godmode/setup/setup_skins.php:153 -msgid "There are no defined skins" -msgstr "Aucun thĆØme dĆ©fini" - -#: ../../enterprise/godmode/setup/setup_skins.php:159 -msgid "Create skin" -msgstr "CrĆ©er un thĆØme" - -#: ../../enterprise/godmode/setup/setup_acl.php:46 -msgid "Enterprise ACL setup" -msgstr "Configuration ACL Enterprise" - -#: ../../enterprise/godmode/setup/setup_acl.php:69 -msgid "ACL element was deleted successfully" -msgstr "Lā€™Ć©lĆ©ment ACL a Ć©tĆ© supprimĆ© correctement" - -#: ../../enterprise/godmode/setup/setup_acl.php:71 -msgid "There was a problem delete ACL element" -msgstr "Il y a eu un problĆØme pour supprimer lā€™Ć©lĆ©ment ACL" - -#: ../../enterprise/godmode/setup/setup_acl.php:417 -msgid "This record already exists in the database" -msgstr "Cet enregistrement existe dĆ©jĆ  dans la base de donnĆ©es" - -#: ../../enterprise/godmode/setup/setup_acl.php:422 -msgid "ACL element is added successfully" -msgstr "Lā€™Ć©lĆ©ment ACL est ajoutĆ© correctement" - -#: ../../enterprise/godmode/setup/setup_acl.php:424 -msgid "There was a problem adding ACL element" -msgstr "Il y a eu un problĆØme lors de lā€™ajout de lā€™Ć©lĆ©ment ACL" - -#: ../../enterprise/godmode/setup/setup_acl.php:464 -#: ../../enterprise/godmode/setup/setup_acl.php:539 -msgid "Add new ACL element to profile" -msgstr "Ajouter un nouvel Ć©lĆ©ment ACL au profil" - -#: ../../enterprise/godmode/setup/setup_acl.php:469 -#: ../../enterprise/godmode/setup/setup_acl.php:544 -#: ../../enterprise/godmode/setup/setup_acl.php:592 -msgid "Section" -msgstr "Section" - -#: ../../enterprise/godmode/setup/setup_acl.php:476 -#: ../../enterprise/godmode/setup/setup_acl.php:694 -msgid "Mobile" -msgstr "Portable" - -#: ../../enterprise/godmode/setup/setup_acl.php:480 -#: ../../enterprise/godmode/setup/setup_acl.php:690 -msgid "Head search" -msgstr "Recherche de tĆŖte" - -#: ../../enterprise/godmode/setup/setup_acl.php:497 -#: ../../enterprise/godmode/setup/setup_acl.php:548 -#: ../../enterprise/godmode/setup/setup_acl.php:593 -msgid "Section 2" -msgstr "Section 2" - -#: ../../enterprise/godmode/setup/setup_acl.php:514 -#: ../../enterprise/godmode/setup/setup_acl.php:552 -#: ../../enterprise/godmode/setup/setup_acl.php:594 -msgid "Section 3" -msgstr "Section 3" - -#: ../../enterprise/godmode/setup/setup_acl.php:538 -msgid "Hidden" -msgstr "CachĆ©" - -#: ../../enterprise/godmode/setup/setup_acl.php:570 -msgid "Filter by profile" -msgstr "Filtrer par profil" - -#: ../../enterprise/godmode/setup/setup_acl.php:749 -#: ../../enterprise/godmode/setup/setup_acl.php:759 -msgid "Invalid" -msgstr "Non valide" - -#: ../../enterprise/godmode/servers/manage_export_form.php:59 -#: ../../enterprise/godmode/servers/manage_export.php:43 -#: ../../enterprise/godmode/menu.php:247 -msgid "Export targets" -msgstr "Serveurs d'exportation" - -#: ../../enterprise/godmode/servers/manage_export_form.php:91 -#: ../../enterprise/godmode/servers/manage_export.php:138 -msgid "Preffix" -msgstr "PrĆ©fixe" - -#: ../../enterprise/godmode/servers/manage_export_form.php:103 -#: ../../enterprise/godmode/servers/manage_export.php:141 -msgid "Transfer mode" -msgstr "Mode de transfert" - -#: ../../enterprise/godmode/servers/manage_export_form.php:125 -msgid "Target directory" -msgstr "RĆ©pertoire cible" - -#: ../../enterprise/godmode/servers/credential_boxes_satellite.php:35 -msgid "Credential Boxes List" -msgstr "Liste des zones dā€™identifiants" - -#: ../../enterprise/godmode/servers/credential_boxes_satellite.php:42 -msgid "Credential Boxes" -msgstr "Zones dā€™identifiants" - -#: ../../enterprise/godmode/servers/manage_export.php:69 -msgid "Error updating export target" -msgstr "Erreur de mise Ć  jour des serveurs d'exportation" - -#: ../../enterprise/godmode/servers/manage_export.php:71 -msgid "Successfully updated export target" -msgstr "Serveurs d'exportation mis Ć  jours correctement" - -#: ../../enterprise/godmode/servers/manage_export.php:82 -msgid "Error deleting export target" -msgstr "Erreur de suppression du serveur d'exportation" - -#: ../../enterprise/godmode/servers/manage_export.php:84 -msgid "" -"Successfully deleted export target. All the linked modules will be " -"automatically unattached" -msgstr "" -"Cible dā€™exportation supprimĆ©e correctement. Tous les modules liĆ©s seront " -"automatiquement dĆ©tachĆ©s" - -#: ../../enterprise/godmode/servers/manage_export.php:107 -msgid "" -"Can't be created export target: User and password must be filled with FTP mode" -msgstr "" -"Erreur de crĆ©ation du serveur d'exportation : l'utilisateur et le mot de passe " -"doivent ĆŖtre remplis avec le mode FTP" - -#: ../../enterprise/godmode/servers/manage_export.php:126 -msgid "There are no defined export targets" -msgstr "Aucun serveur d'exportation dĆ©fini" - -#: ../../enterprise/godmode/servers/list_satellite.php:27 -msgid "Satellite Server" -msgstr "Serveur Satellite" - -#: ../../enterprise/godmode/servers/HA_cluster.php:59 -#: ../../enterprise/godmode/servers/HA_cluster.php:83 -msgid "View nodes" -msgstr "Afficher les nœuds" - -#: ../../enterprise/godmode/servers/HA_cluster.php:80 -msgid "Manage Pandora DB HA" -msgstr "GĆ©rer Pandora DB HA" - -#: ../../enterprise/godmode/servers/HA_cluster.php:101 -msgid "Manage Database HA" -msgstr "GĆ©rer la base de donnĆ©es HA" - -#: ../../enterprise/godmode/servers/HA_cluster.php:136 -msgid "" -"Make the cluster forget failed operations from history of\n" -" the resource and re-detect its current state. This can be\n" -" useful to purge knowledge of past failures that have since\n" -" been resolved. If a resource id is not specified then all\n" -" resources / stonith devices will be cleaned up. If a node\n" -" is not specified then resources / stonith devices on all\n" -" nodes will be cleaned up" -msgstr "" -"Faire oublier au cluster les opĆ©rations ayant Ć©chouĆ© de lā€™historique de\n" -" la ressource et re-dĆ©tecter son Ć©tat actuel. Cela peut ĆŖtre\n" -" utile pour purger la connaissance des Ć©checs passĆ©s qui ont depuis\n" -" ont Ć©tĆ© rĆ©solus. Si aucun ID de ressource nā€™est spĆ©cifiĆ©, tous les\n" -" les ressources / appareils stonith seront Ć©liminĆ©s. Si un nœud\n" -" nā€™est pas spĆ©cifiĆ© alors les ressources / appareils stonith sur tous les\n" -" les nœuds seront Ć©liminĆ©s" - -#: ../../enterprise/godmode/servers/HA_cluster.php:162 -msgid "Node label" -msgstr "Ɖtiquette de nœud" - -#: ../../enterprise/godmode/servers/HA_cluster.php:164 -msgid "DB Repl." -msgstr "RĆ©ponse de la base de donnĆ©es" - -#: ../../enterprise/godmode/servers/HA_cluster.php:165 -msgid "DB Status" -msgstr "Ɖtat de la base de donnĆ©es" - -#: ../../enterprise/godmode/servers/HA_cluster.php:167 -#: ../../extensions/quick_shell.php:195 -#: ../../godmode/agentes/module_manager_editor_network.php:478 -msgid "SSH" -msgstr "SSH" - -#: ../../enterprise/godmode/servers/HA_cluster.php:168 -msgid "DB Role" -msgstr "RĆ“le de la base de donnĆ©es" - -#: ../../enterprise/godmode/servers/HA_cluster.php:169 -msgid "Cluster Role" -msgstr "RĆ“le de grappe" - -#: ../../enterprise/godmode/servers/HA_cluster.php:171 -msgid "Seconds behind master" -msgstr "Secondes derriĆØre le maĆ®tre" - -#: ../../enterprise/godmode/servers/HA_cluster.php:172 -msgid "Virtual IP" -msgstr "IP virtuelle" - -#: ../../enterprise/godmode/servers/HA_cluster.php:173 -msgid "SQL version" -msgstr "Version de SQL" - -#: ../../enterprise/godmode/servers/HA_cluster.php:174 -msgid "DB version" -msgstr "Version de la base de donnĆ©es" - -#: ../../enterprise/godmode/servers/HA_cluster.php:176 -msgid "Pending action" -msgstr "Action en attente" - -#: ../../enterprise/godmode/servers/HA_cluster.php:301 -msgid "Show/ edit node" -msgstr "Afficher/modifier le nœud" - -#: ../../enterprise/godmode/servers/HA_cluster.php:317 -msgid "Put node into standby status" -msgstr "Mettre le nœud en Ć©tat de veille" - -#: ../../enterprise/godmode/servers/HA_cluster.php:332 -msgid "Force node resync" -msgstr "Forcer la resynchronisation du nœud" - -#: ../../enterprise/godmode/servers/HA_cluster.php:359 -msgid "Put node into online status" -msgstr "Mettre le nœud en Ć©tat en ligne" - -#: ../../enterprise/godmode/servers/HA_cluster.php:374 -msgid "Show cluster details" -msgstr "Afficher les dĆ©tails du grappe" - -#: ../../enterprise/godmode/servers/HA_cluster.php:392 -msgid "Remove node from this list" -msgstr "Supprimer un nœud de cette liste" - -#: ../../enterprise/godmode/servers/HA_cluster.php:428 -msgid "Register node" -msgstr "Enregistrer le nœud" - -#: ../../enterprise/godmode/servers/HA_cluster.php:466 -msgid "" -"Target node will be erased from this list but not removed from cluster. Do you " -"want to continue?" -msgstr "" -"Le nœud cible sera effacĆ© de cette liste mais pas supprimĆ© du cluster. Voulez-" -"vous continuer ?" - -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:148 -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:152 -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:348 -msgid "Delete remote conf server files" -msgstr "Supprimer les fichiers du serveur de configuration distant" - -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:349 -#: ../../enterprise/godmode/agentes/agent_disk_conf_editor.php:249 -#: ../../godmode/agentes/agent_manager.php:534 -msgid "Delete remote configuration file" -msgstr "Effacer le fichier de configuration Ć  distance" - -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:349 -msgid "" -"Delete this conf file implies that server will send back local config to " -"console" -msgstr "" -"Supprimer ce fichier de configuration implique que le serveur renverra la " -"configuration locale Ć  la console" - -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:567 -msgid "ICMP server" -msgstr "Serveur ICMP" - -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:642 -msgid "Network timeout" -msgstr "DĆ©lai dā€™expiration du rĆ©seau" - -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:650 -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:666 -msgid " Seconds" -msgstr "Secondes" - -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:658 -msgid "Plugin timeout" -msgstr "DĆ©lai dā€™expiration du plug-in" - -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:674 -msgid "SNMP console threads" -msgstr "Fils de console SNMP" - -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:690 -msgid "Network threads" -msgstr "Fils rĆ©seau" - -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:706 -msgid "Plugin threads" -msgstr "Fils plugin" - -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:722 -msgid "Recon threads" -msgstr "Fils de reconnaissance" - -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:738 -msgid "Dataserver threads" -msgstr "Fils du serveur de donnĆ©es" - -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:754 -msgid "Web threads" -msgstr "Fils web" - -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:770 -msgid "SNMP threads" -msgstr "Fils SNMP" - -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:786 -msgid "ICMP threads" -msgstr "Fils ICMP" - -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:816 -msgid "Autocreate group" -msgstr "CrĆ©ation automatique dā€™un groupe" - -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:832 -msgid "Autocreate group force" -msgstr "Forcer la crĆ©ation automatique dā€™un groupe" - -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:847 -msgid "Autocreate" -msgstr "CrĆ©ation automatique" - -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:865 -msgid "Server features" -msgstr "FonctionnalitĆ©s du serveur" - -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:872 -msgid "Optimization settings" -msgstr "ParamĆØtres dā€™optimisation" - -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:879 -msgid "Other server settings" -msgstr "Autres paramĆØtres du serveur" - -#: ../../enterprise/godmode/servers/manage_credential_boxes.php:20 -msgid "Add Credential Box" -msgstr "Zone Ajouter des identifiants" - -#: ../../enterprise/godmode/modules/configure_local_component.php:141 -msgid "Update Local Component" -msgstr "Mettre Ć  jour le composant local" - -#: ../../enterprise/godmode/modules/configure_local_component.php:143 -msgid "Create Local Component" -msgstr "CrĆ©er un composant local" - -#: ../../enterprise/godmode/modules/configure_local_component.php:162 -#: ../../godmode/modules/manage_network_components_form_common.php:50 -#: ../../godmode/alerts/configure_alert_template.php:1134 -msgid "Wizard level" -msgstr "Niveau d'assistant logiciel" - -#: ../../enterprise/godmode/modules/configure_local_component.php:192 -msgid "Throw unknown events" -msgstr "GĆ©nĆ©rer des Ć©vĆ©nements inconnus" - -#: ../../enterprise/godmode/modules/configure_local_component.php:292 -#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:489 -#: ../../godmode/modules/manage_network_components_form_common.php:146 -#: ../../godmode/massive/massive_edit_modules.php:552 -msgid "Dynamic Interval" -msgstr "Intervalle dynamique" - -#: ../../enterprise/godmode/modules/configure_local_component.php:298 -#: ../../godmode/modules/manage_network_components_form_common.php:152 -#: ../../godmode/agentes/module_manager_editor_common.php:691 -msgid "Advanced options Dynamic Threshold" -msgstr "Options avancĆ©es du Seuil dynamique" - -#: ../../enterprise/godmode/modules/configure_local_component.php:303 -#: ../../godmode/modules/manage_network_components_form_common.php:157 -msgid "Dynamic Min. " -msgstr "Dynamique min. " - -#: ../../enterprise/godmode/modules/configure_local_component.php:305 -#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:493 -#: ../../godmode/modules/manage_network_components_form_common.php:159 -#: ../../godmode/massive/massive_edit_modules.php:556 -msgid "Dynamic Max." -msgstr "Intervalle dynamique max." - -#: ../../enterprise/godmode/modules/configure_local_component.php:307 -#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:495 -#: ../../godmode/modules/manage_network_components_form_common.php:161 -#: ../../godmode/massive/massive_edit_modules.php:558 -msgid "Dynamic Two Tailed: " -msgstr "Suivi de l'intervalle dynamique deux : " - -#: ../../enterprise/godmode/modules/configure_local_component.php:343 -#: ../../enterprise/godmode/modules/configure_local_component.php:386 -#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:567 -#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:658 -#: ../../godmode/modules/manage_network_components_form_wizard.php:400 -#: ../../godmode/modules/manage_network_components_form_wizard.php:442 -#: ../../godmode/modules/manage_network_components_form_common.php:196 -#: ../../godmode/modules/manage_network_components_form_common.php:237 -#: ../../godmode/massive/massive_edit_modules.php:630 -#: ../../godmode/massive/massive_edit_modules.php:722 -#: ../../godmode/agentes/module_manager_editor_common.php:464 -#: ../../godmode/agentes/module_manager_editor_common.php:526 -msgid "Percentage" -msgstr "Pourcentage" - -#: ../../enterprise/godmode/modules/configure_local_component.php:391 -#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:873 -#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:232 -#: ../../godmode/modules/manage_network_components_form_common.php:243 -#: ../../godmode/massive/massive_edit_modules.php:930 -#: ../../godmode/agentes/module_manager_editor_common.php:780 -msgid "FF threshold" -msgstr "Seuil du FF" - -#: ../../enterprise/godmode/modules/configure_local_component.php:394 -#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:941 -#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:235 -#: ../../godmode/modules/manage_network_components_form_common.php:246 -#: ../../godmode/massive/massive_edit_modules.php:994 -#: ../../godmode/agentes/module_manager_editor_common.php:782 -msgid "Keep counters" -msgstr "Conserver les compteurs" - -#: ../../enterprise/godmode/modules/configure_local_component.php:402 -#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:885 -#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:900 -#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:252 -#: ../../godmode/modules/manage_network_components_form_common.php:260 -#: ../../godmode/massive/massive_edit_modules.php:938 -#: ../../godmode/massive/massive_edit_modules.php:953 -#: ../../godmode/agentes/module_manager_editor_common.php:799 -msgid "All state changing" -msgstr "Tous les changements d'Ć©tat" - -#: ../../enterprise/godmode/modules/configure_local_component.php:417 -#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:884 -#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:910 -#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:274 -#: ../../godmode/modules/manage_network_components_form_common.php:276 -#: ../../godmode/massive/massive_edit_modules.php:937 -#: ../../godmode/massive/massive_edit_modules.php:963 -#: ../../godmode/agentes/module_manager_editor_common.php:821 -msgid "Each state changing" -msgstr "Chaque changement d'Ć©tat" - -#: ../../enterprise/godmode/modules/configure_local_component.php:418 -#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:911 -#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:275 -#: ../../godmode/modules/manage_network_components_form_common.php:277 -#: ../../godmode/massive/massive_edit_modules.php:964 -#: ../../godmode/agentes/module_manager_editor_common.php:822 -msgid "To normal" -msgstr "ƀ l'Ć©tat normal" - -#: ../../enterprise/godmode/modules/configure_local_component.php:427 -#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:921 -#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:289 -#: ../../godmode/modules/manage_network_components_form_common.php:286 -#: ../../godmode/massive/massive_edit_modules.php:974 -#: ../../godmode/agentes/module_manager_editor_common.php:836 -msgid "To warning" -msgstr "ƀ l'Ć©tat d'alerte" - -#: ../../enterprise/godmode/modules/configure_local_component.php:436 -#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:931 -#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:303 -#: ../../godmode/modules/manage_network_components_form_common.php:295 -#: ../../godmode/massive/massive_edit_modules.php:984 -#: ../../godmode/agentes/module_manager_editor_common.php:850 -msgid "To critical" -msgstr "ƀ l'Ć©tat critique" - -#: ../../enterprise/godmode/modules/configure_local_component.php:450 -#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:963 -#: ../../godmode/massive/massive_edit_modules.php:1028 -#: ../../godmode/agentes/module_manager_editor_common.php:880 -msgid "FF timeout" -msgstr "FF dĆ©lai" - -#: ../../enterprise/godmode/modules/configure_local_component.php:458 -#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:964 -#: ../../godmode/massive/massive_edit_modules.php:1038 -msgid "" -"Timeout in secs from start of flip flop counting. If this value is exceeded, " -"FF counter is reset. Set to 0 for no timeout." -msgstr "" -"DĆ©lai d'arrĆŖt en secondes Ć  partir du dĆ©but du comptage du flip-flop. Si cette " -"valeur est dĆ©passĆ©e, le compteur FF est remis Ć  zĆ©ro. Mettre Ć  0 pour aucun " -"arrĆŖt." - -#: ../../enterprise/godmode/modules/configure_local_component.php:459 -msgid "This value can be set only in the async modules." -msgstr "Cette valeur peut ĆŖtre rĆ©glĆ©e que dans les modules asynchrones." - -#: ../../enterprise/godmode/modules/configure_local_component.php:461 -#: ../../godmode/modules/manage_network_components_form_common.php:309 -msgid "Any value below this number is discarted" -msgstr "Toute valeur infĆ©rieure Ć  ce nombre est refusĆ©e" - -#: ../../enterprise/godmode/modules/configure_local_component.php:466 -#: ../../godmode/modules/manage_network_components_form_common.php:311 -msgid "Any value over this number is discarted" -msgstr "Toute valeur supĆ©rieure Ć  ce nombre est refusĆ©e" - -#: ../../enterprise/godmode/modules/configure_local_component.php:473 -#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:716 -#: ../../godmode/setup/snmp_wizard.php:43 -#: ../../godmode/modules/manage_network_components_form_plugin.php:49 -#: ../../godmode/modules/manage_network_components_form_wmi.php:55 -#: ../../godmode/modules/manage_network_components_form_network.php:178 -#: ../../godmode/massive/massive_edit_modules.php:780 -#: ../../godmode/agentes/module_manager_editor_common.php:649 -msgid "Post process" -msgstr "AprĆØs le traitement" - -#: ../../enterprise/godmode/modules/configure_local_component.php:500 -#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:180 -msgid "Load a basic structure on data configuration" -msgstr "Charger une structure de base de donnĆ©es de configuration" - -#: ../../enterprise/godmode/modules/configure_local_component.php:503 -#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:183 -msgid "Check the correct structure of the data configuration" -msgstr "VĆ©rifier la structure correcte de la configuration des donnĆ©es" - -#: ../../enterprise/godmode/modules/configure_local_component.php:506 -#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:196 -msgid "First line must be \"module_begin\"" -msgstr "La premiĆØre ligne doit ĆŖtre Ā« module_begin Ā»." - -#: ../../enterprise/godmode/modules/configure_local_component.php:507 -#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:197 -msgid "Data configuration is empty" -msgstr "La configuration de donnĆ©es est vide." - -#: ../../enterprise/godmode/modules/configure_local_component.php:508 -#: ../../enterprise/godmode/modules/configure_local_component.php:512 -#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:198 -#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:202 -msgid "Last line must be \"module_end\"" -msgstr "La derniĆØre ligne doit ĆŖtre Ā« module_end Ā»." - -#: ../../enterprise/godmode/modules/configure_local_component.php:509 -#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:199 -msgid "" -"Name is missed. Please add a line with \"module_name yourmodulename\" to data " -"configuration" -msgstr "" -"Il manque le nom. Veuillez ajouter une ligne avec Ā« module_name yourmodulename " -"Ā» Ć  la configuration des donnĆ©es" - -#: ../../enterprise/godmode/modules/configure_local_component.php:510 -#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:200 -msgid "" -"Type is missed. Please add a line with \"module_type yourmoduletype\" to data " -"configuration" -msgstr "" -"Il manque le type. Veuillez ajouter une ligne avec Ā« module_type " -"yourmoduletype Ā» Ć  la configuration des donnĆ©es." - -#: ../../enterprise/godmode/modules/configure_local_component.php:511 -#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:201 -msgid "Type is wrong. Please set a correct type" -msgstr "Le type est incorrect. Veuillez choisir un type correct." - -#: ../../enterprise/godmode/modules/configure_local_component.php:514 -#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:204 -msgid "Error in the syntax, please check the data configuration." -msgstr "Erreur dans la syntaxe, veuillez vĆ©rifier la configuration de donnĆ©es." - -#: ../../enterprise/godmode/modules/configure_local_component.php:515 -#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:205 -msgid "Data configuration are built correctly" -msgstr "Configuration des donnĆ©es Ć©tablie correctement" - -#: ../../enterprise/godmode/modules/configure_local_component.php:523 -#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:1016 -#: ../../godmode/modules/manage_network_components_form_common.php:323 -#: ../../godmode/massive/massive_edit_modules.php:1092 -#: ../../godmode/agentes/module_manager_editor_common.php:1093 -msgid "Critical instructions" -msgstr "Instructions Ć©tat critique" - -#: ../../enterprise/godmode/modules/configure_local_component.php:523 -#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:1016 -#: ../../godmode/modules/manage_network_components_form_common.php:323 -#: ../../godmode/massive/massive_edit_modules.php:1092 -msgid "Instructions when the status is critical" -msgstr "Instructions lorsque l'Ć©tat est critique" - -#: ../../enterprise/godmode/modules/configure_local_component.php:528 -#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:1020 -#: ../../godmode/modules/manage_network_components_form_common.php:327 -#: ../../godmode/massive/massive_edit_modules.php:1096 -#: ../../godmode/agentes/module_manager_editor_common.php:1098 -msgid "Warning instructions" -msgstr "Instructions Ć©tat d'alerte" - -#: ../../enterprise/godmode/modules/configure_local_component.php:528 -#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:1020 -#: ../../godmode/modules/manage_network_components_form_common.php:327 -#: ../../godmode/massive/massive_edit_modules.php:1096 -msgid "Instructions when the status is warning" -msgstr "Instructions lorsque l'Ć©tat est en alerte" - -#: ../../enterprise/godmode/modules/configure_local_component.php:533 -#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:1024 -#: ../../godmode/modules/manage_network_components_form_common.php:331 -#: ../../godmode/massive/massive_edit_modules.php:1100 -#: ../../godmode/agentes/module_manager_editor_common.php:1102 -msgid "Unknown instructions" -msgstr "Instructions Ć©tat inconnu" - -#: ../../enterprise/godmode/modules/configure_local_component.php:533 -#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:1024 -#: ../../godmode/modules/manage_network_components_form_common.php:331 -#: ../../godmode/massive/massive_edit_modules.php:1100 -msgid "Instructions when the status is unknown" -msgstr "Instructions lorsque l'Ć©tat est inconnu" - -#: ../../enterprise/godmode/modules/configure_local_component.php:542 -#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:984 -#: ../../godmode/modules/manage_network_components_form_common.php:342 -#: ../../godmode/massive/massive_edit_modules.php:1060 -#: ../../godmode/agentes/module_manager_editor_common.php:1143 -#: ../../godmode/module_library/module_library_view.php:123 -msgid "Category" -msgstr "CatĆ©gorie" - -#: ../../enterprise/godmode/modules/configure_local_component.php:561 -#: ../../godmode/modules/manage_network_components_form_common.php:362 -#: ../../godmode/agentes/module_manager_editor_common.php:906 -msgid "Tags available" -msgstr "Ɖtiquettes disponibles" - -#: ../../enterprise/godmode/modules/configure_local_component.php:579 -#: ../../godmode/modules/manage_network_components_form_common.php:380 -#: ../../godmode/agentes/module_manager_editor_common.php:1001 -msgid "Add tags to module" -msgstr "Ajouter des Ć©tiquettes au module" - -#: ../../enterprise/godmode/modules/configure_local_component.php:580 -#: ../../godmode/modules/manage_network_components_form_common.php:381 -#: ../../godmode/agentes/module_manager_editor_common.php:1010 -msgid "Delete tags to module" -msgstr "Supprimer les Ć©tiquettes du module" - -#: ../../enterprise/godmode/modules/configure_local_component.php:603 -msgid "Macros" -msgstr "Macros" - -#: ../../enterprise/godmode/modules/configure_local_component.php:978 -#: ../../godmode/modules/manage_network_components_form_common.php:706 -#: ../../godmode/agentes/module_manager_editor_common.php:1994 -msgid "Normal Status" -msgstr "Ɖtat normal" - -#: ../../enterprise/godmode/modules/configure_local_component.php:979 -#: ../../godmode/modules/manage_network_components_form_common.php:707 -#: ../../godmode/agentes/module_manager_editor_common.php:1995 -msgid "Warning Status" -msgstr "Ɖtat d'alerte" - -#: ../../enterprise/godmode/modules/configure_local_component.php:980 -#: ../../godmode/modules/manage_network_components_form_common.php:708 -#: ../../godmode/agentes/module_manager_editor_common.php:1996 -msgid "Critical Status" -msgstr "Ɖtat critique" - -#: ../../enterprise/godmode/modules/configure_local_component.php:983 -#: ../../godmode/modules/manage_network_components_form_common.php:710 -#: ../../godmode/agentes/module_manager_editor_common.php:1998 -msgid "Please introduce a maximum warning higher than the minimun warning" -msgstr "Veuillez introduire une alerte maximale supĆ©rieure Ć  l'alerte minimale" - -#: ../../enterprise/godmode/modules/configure_local_component.php:985 -#: ../../godmode/modules/manage_network_components_form_common.php:711 -#: ../../godmode/agentes/module_manager_editor_common.php:1999 -msgid "Please introduce a maximum critical higher than the minimun critical" -msgstr "" -"Veuillez introduire un Ć©tat critique maximal supĆ©rieur Ć  l'Ć©tat critique " -"minimal" - -#: ../../enterprise/godmode/modules/configure_local_component.php:987 -msgid "Please introduce a positicve percentage value" -msgstr "Veuillez introduire une valeur de pourcentage positicve" - -#: ../../enterprise/godmode/modules/local_components.php:141 -#: ../../godmode/modules/manage_network_components.php:196 -#: ../../godmode/alerts/configure_alert_template.php:191 -#, php-format -msgid "Successfully created from %s" -msgstr "CrĆ©Ć© correctement Ć  partir de %s" - -#: ../../enterprise/godmode/modules/local_components.php:157 -msgid "Local component management" -msgstr "Gestion du composant local" - -#: ../../enterprise/godmode/modules/local_components.php:263 -#, php-format -msgid "" -"This node is configured with centralized mode. All local components are read " -"only. Go to %s to manage them." -msgstr "" -"Ce nœud est configurĆ© en mode centralisĆ©. Tous les composants locaux sont en " -"lecture seule. Allez dans %s pour les gĆ©rer." - -#: ../../enterprise/godmode/modules/local_components.php:443 -#: ../../enterprise/godmode/modules/manage_inventory_modules.php:217 -#: ../../enterprise/godmode/modules/manage_inventory_modules.php:250 -#: ../../godmode/modules/manage_network_components.php:578 -#: ../../godmode/modules/manage_network_templates.php:114 -#: ../../godmode/modules/manage_nc_groups.php:194 -msgid "Successfully multiple deleted" -msgstr "DonnĆ©es multiples supprimĆ©es correctement" - -#: ../../enterprise/godmode/modules/local_components.php:444 -#: ../../enterprise/godmode/modules/manage_inventory_modules.php:218 -#: ../../enterprise/godmode/modules/manage_inventory_modules.php:251 -#: ../../godmode/modules/manage_network_components.php:579 -#: ../../godmode/modules/manage_network_templates.php:115 -#: ../../godmode/modules/manage_nc_groups.php:195 -msgid "Not deleted. Error deleting multiple data" -msgstr "Erreur de suppression de donnĆ©es multiples" - -#: ../../enterprise/godmode/modules/local_components.php:548 -msgid "Search by name, description or data, list matches." -msgstr "Rechercher liste de concordances par nom, description ou donnĆ©es" - -#: ../../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:117 -msgid "Successfully created inventory module" -msgstr "Module d'inventaire crĆ©Ć© correctement" - -#: ../../enterprise/godmode/modules/manage_inventory_modules.php:118 -msgid "Error creating inventory module" -msgstr "Erreur de crĆ©ation du module d'inventaire" - -#: ../../enterprise/godmode/modules/manage_inventory_modules.php:143 -#: ../../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:144 -#: ../../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:162 -#: ../../enterprise/godmode/modules/manage_inventory_modules.php:183 -#: ../../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:163 -#: ../../enterprise/godmode/modules/manage_inventory_modules.php:184 -#: ../../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:275 -#: ../../enterprise/godmode/modules/manage_inventory_modules_form.php:114 -msgid "Interpreter" -msgstr "InterprĆØte" - -#: ../../enterprise/godmode/modules/manage_inventory_modules.php:284 -msgid "No inventory modules defined" -msgstr "Aucun module d'inventaire dĆ©fini" - -#: ../../enterprise/godmode/modules/manage_inventory_modules.php:305 -msgid "Local module" -msgstr "Module local" - -#: ../../enterprise/godmode/modules/manage_inventory_modules.php:307 -msgid "Remote/Local" -msgstr "ƀ distance/Local" - -#: ../../enterprise/godmode/modules/manage_inventory_modules.php:353 -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:355 -msgid "You can find more information at:" -msgstr "Vous trouverez plus dā€™informations sur :" - -#: ../../enterprise/godmode/modules/manage_inventory_modules_form.php:71 -#: ../../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:116 -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:118 -msgid "Block Mode" -msgstr "Mode verrouillage" - -#: ../../enterprise/godmode/modules/manage_inventory_modules_form.php:122 -msgid "separate fields with " -msgstr "sĆ©parer les champs avec " - -#: ../../enterprise/godmode/modules/manage_inventory_modules_form.php:126 -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/services/services.elements.php:72 -msgid "Invalid service" -msgstr "Service invalide" - -#: ../../enterprise/godmode/services/services.elements.php:250 -msgid "Add custom field match" -msgstr "Ajouter une correspondance de champ personnalisĆ©e" - -#: ../../enterprise/godmode/services/services.elements.php:256 -msgid "Both 'name' and 'value' must be defined to filter. Ignored otherwise." -msgstr "'nom' et 'valeur' doivent ĆŖtre dĆ©finis pour filtrer. IgnorĆ© autrement." - -#: ../../enterprise/godmode/services/services.elements.php:261 -msgid "MySQL Regular expressions case sensitive." -msgstr "Expressions rĆ©guliĆØres MySQL sensibles Ć  la casse." - -#: ../../enterprise/godmode/services/services.elements.php:267 -msgid "Matching objects type" -msgstr "Type dā€™objet correspondant" - -#: ../../enterprise/godmode/services/services.elements.php:282 -msgid "Filter by group" -msgstr "Filtrer par groupe" - -#: ../../enterprise/godmode/services/services.elements.php:294 -msgid "Use regular expresions selectors" -msgstr "Utiliser des sĆ©lecteurs dā€™expressions rĆ©gulierers" - -#: ../../enterprise/godmode/services/services.elements.php:302 -msgid "Having agent name" -msgstr "Ayant un nom dā€™agent" - -#: ../../enterprise/godmode/services/services.elements.php:310 -msgid "Having module name" -msgstr "Ayant un nom de module" - -#: ../../enterprise/godmode/services/services.elements.php:320 -msgid "Having custom fields" -msgstr "Ayant des champs personnalisĆ©s" - -#: ../../enterprise/godmode/services/services.elements.php:331 -msgid "Apply rules on this server" -msgstr "Appliquer des rĆØgles sur ce serveur" - -#: ../../enterprise/godmode/services/services.elements.php:350 -msgid "Weights" -msgstr "Poids" - -#: ../../enterprise/godmode/services/services.elements.php:355 -msgid "In smart mode weights are automatically calculated." -msgstr "En mode intelligent, les poids sont calculĆ©s automatiquement." - -#: ../../enterprise/godmode/services/services.elements.php:453 -#: ../../enterprise/godmode/services/services.elements.php:461 -#: ../../enterprise/godmode/services/services.elements.php:468 -msgid "Selected agent not found." -msgstr "Agent sĆ©lectionnĆ© introuvable." - -#: ../../enterprise/godmode/services/services.elements.php:474 -#: ../../enterprise/godmode/services/services.elements.php:485 -#, php-format -msgid "Selected module not found in %s." -msgstr "Module sĆ©lectionnĆ© introuvable dans %s." - -#: ../../enterprise/godmode/services/services.elements.php:494 -msgid "Selected service not found." -msgstr "Service sĆ©lectionnĆ© introuvable." - -#: ../../enterprise/godmode/services/services.elements.php:511 -msgid "Selected service could generate a loop" -msgstr "Le service sĆ©lectionnĆ© pourrait gĆ©nĆ©rer une boucle" - -#: ../../enterprise/godmode/services/services.elements.php:521 -#, php-format -msgid "Failed adding service child: %s" -msgstr "Ɖchec de lā€™ajout de service fils : %s" - -#: ../../enterprise/godmode/services/services.elements.php:560 -#, php-format -msgid "Selected rules are not valid: %s." -msgstr "Les rĆØgles sĆ©lectionnĆ©es ne sont pas valides : %s." - -#: ../../enterprise/godmode/services/services.elements.php:568 -msgid "Invalid element type." -msgstr "Type dā€™Ć©lĆ©ment non valide." - -#: ../../enterprise/godmode/services/services.elements.php:594 -msgid "Element registered successfully" -msgstr "ƉlĆ©ment enregistrĆ© correctement" - -#: ../../enterprise/godmode/services/services.elements.php:640 -#, php-format -msgid "Error deleting element: %s" -msgstr "Erreur lors de la suppression de lā€™Ć©lĆ©ment : %s" - -#: ../../enterprise/godmode/services/services.elements.php:842 -msgid "Add element" -msgstr "Ajouter un Ć©lĆ©ment" - -#: ../../enterprise/godmode/services/services.elements.php:853 -msgid "Edit element" -msgstr "Editer l'Ć©lĆ©ment" - -#: ../../enterprise/godmode/services/services.service.php:109 -msgid "Service already exists." -msgstr "Le service existe dĆ©jĆ ." - -#: ../../enterprise/godmode/services/services.service.php:120 -#: ../../enterprise/godmode/massive/massive_create_services.php:110 -msgid "No name specified for the service" -msgstr "Aucun nom spĆ©cifiĆ© pour le service" - -#: ../../enterprise/godmode/services/services.service.php:131 -#: ../../enterprise/godmode/massive/massive_create_services.php:116 -msgid "No description specified for the service" -msgstr "Aucune description spĆ©cifiĆ©e pour le service" - -#: ../../enterprise/godmode/services/services.service.php:142 -#: ../../enterprise/godmode/massive/massive_create_services.php:122 -msgid "You must specify an agent to store the service" -msgstr "SpĆ©cifiez un agent pour stocker le service" - -#: ../../enterprise/godmode/services/services.service.php:201 -msgid "Error creating service: " -msgstr "Erreur lors de la crĆ©ation du service : " - -#: ../../enterprise/godmode/services/services.service.php:210 -#: ../../enterprise/godmode/services/services.service.php:316 -msgid "New Service" -msgstr "Nouveau service" - -#: ../../enterprise/godmode/services/services.service.php:216 -msgid "Service created successfully" -msgstr "Service crĆ©Ć© correctement" - -#: ../../enterprise/godmode/services/services.service.php:296 -msgid "Service updated successfully" -msgstr "Service mis Ć  jour correctement" - -#: ../../enterprise/godmode/services/services.service.php:369 -msgid "Dynamic elements are not affected by cascade protection" -msgstr "" -"Les Ć©lĆ©ments dynamiques ne sont pas affectĆ©s par la protection en cascade" - -#: ../../enterprise/godmode/services/services.service.php:519 -msgid "No Services or concrete action" -msgstr "Pas de services ou actions concrĆØtes" - -#: ../../enterprise/godmode/services/services.service.php:538 -msgid "Random name" -msgstr "Nom alĆ©atoire" - -#: ../../enterprise/godmode/services/services.service.php:570 -#: ../../enterprise/godmode/massive/massive_create_services.php:659 -msgid "" -"This group will be used also to control access to this service and its " -"elements." -msgstr "" -"Ce groupe sera Ć©galement utilisĆ© pour contrĆ“ler lā€™accĆØs Ć  ce service et Ć  ses " -"Ć©lĆ©ments." - -#: ../../enterprise/godmode/services/services.service.php:586 -msgid "Server assigned" -msgstr "Serveur affectĆ©" - -#: ../../enterprise/godmode/services/services.service.php:587 -msgid "Selected Prediction server will be assigned to evaluate the service." -msgstr "" -"Le serveur de prĆ©diction sĆ©lectionnĆ© sera affectĆ© Ć  lā€™Ć©valuation du service." - -#: ../../enterprise/godmode/services/services.service.php:608 -msgid "Evaluation interval" -msgstr "Intervalle dā€™Ć©valuation" - -#: ../../enterprise/godmode/services/services.service.php:634 -#: ../../enterprise/godmode/massive/massive_create_services.php:674 -msgid "Agent to store data" -msgstr "Agent pour stocker des donnĆ©es" - -#: ../../enterprise/godmode/services/services.service.php:676 -#: ../../enterprise/godmode/massive/massive_create_services.php:716 -msgid "In smart mode, thresholds are percentual." -msgstr "En mode intelligent, les seuils sont en pourcentage." - -#: ../../enterprise/godmode/services/services.service.php:726 -#: ../../enterprise/godmode/massive/massive_create_services.php:799 -msgid "Unknown elements as critical" -msgstr "ƉlĆ©ments inconnus comme critiques" - -#: ../../enterprise/godmode/services/services.service.php:756 -msgid "Asynchronous" -msgstr "Asynchrone" - -#: ../../enterprise/godmode/services/services.service.php:766 -#: ../../enterprise/godmode/massive/massive_create_services.php:829 -msgid "Cascade protection enabled" -msgstr "Protection en cascade activĆ©e" - -#: ../../enterprise/godmode/services/services.service.php:776 -msgid "Enable Sunburst" -msgstr "Activer Sunburst" - -#: ../../enterprise/godmode/services/services.service.php:786 -msgid "General Data" -msgstr "DonnĆ©es gĆ©nĆ©rales" - -#: ../../enterprise/godmode/services/services.service.php:796 -#: ../../enterprise/godmode/massive/massive_create_services.php:842 -msgid "Calculate continuous SLA" -msgstr "Calculer le SLA continu" - -#: ../../enterprise/godmode/services/services.service.php:806 -#: ../../enterprise/godmode/massive/massive_create_services.php:852 -msgid "S.L.A. interval" -msgstr "Intervalle du SLA" - -#: ../../enterprise/godmode/services/services.service.php:820 -#: ../../enterprise/godmode/massive/massive_create_services.php:866 -msgid "S.L.A. limit" -msgstr "Limite du SLA" - -#: ../../enterprise/godmode/services/services.service.php:841 -msgid "" -"Here are described the alert templates, which will use their default actions.\n" -"\t\tYou can modify the default behaviour editing alerts in the agent who " -"stores data and alert definitions about the service and the SLA status." -msgstr "" -"Les modĆØles d'alertes sont dĆ©finis ici. Ils utilisent leurs actions par " -"dĆ©faut.\n" -"\t\tVous pouvez modifier le comportement par dĆ©faut en Ć©ditant les alertes " -"dans l'agent qui stocke les donnĆ©es et les dĆ©finitions des alertes sur le " -"service et l'Ć©tat du SLA." - -#: ../../enterprise/godmode/services/services.service.php:867 -#: ../../enterprise/godmode/massive/massive_create_services.php:896 -msgid "Warning service alert" -msgstr "Alerte de service dā€™avertissement" - -#: ../../enterprise/godmode/services/services.service.php:879 -#: ../../enterprise/godmode/massive/massive_create_services.php:908 -msgid "Critical service alert" -msgstr "Alerte de service critique" - -#: ../../enterprise/godmode/services/services.service.php:891 -#: ../../enterprise/godmode/massive/massive_create_services.php:920 -msgid "Unknown service alert" -msgstr "Alerte de service inconnue" - -#: ../../enterprise/godmode/services/services.service.php:903 -#: ../../enterprise/godmode/massive/massive_create_services.php:932 -msgid "S.L.A. critical service alert" -msgstr "Alerte de service critique S.L.A." - -#: ../../enterprise/godmode/services/services.service.php:998 -msgid "" -"This change in the service configuration will delete the history of the " -"service modules. Do you wish to continue?" -msgstr "" -"Cette modification de la configuration du service supprimera lā€™historique des " -"modules de service. Voulez-vous continuer ?" - -#: ../../enterprise/godmode/services/services.service.php:1000 -msgid "" -"This change in the service configuration will prevent the SLA modules from " -"being created. Do you wish to continue?" -msgstr "" -"Cette modification de la configuration du service empĆŖchera la crĆ©ation des " -"modules SLA. Voulez-vous continuer ?" - -#: ../../enterprise/godmode/services/services.massive.meta.php:56 -#: ../../enterprise/godmode/services/services.massive.elements.php:93 -#: ../../godmode/massive/massive_edit_agents.php:952 -#: ../../godmode/agentes/agent_manager.php:541 -msgid "Not available" -msgstr "Non disponible" - -#: ../../enterprise/godmode/services/services.massive.elements.php:56 -#: ../../enterprise/godmode/massive/massive_operations.php:157 -msgid "Bulk service elements adition" -msgstr "Ajout dā€™Ć©lĆ©ments de service en bloc" - -#: ../../enterprise/godmode/services/services.massive.elements.php:57 -#: ../../enterprise/godmode/massive/massive_operations.php:159 -msgid "Bulk service elements deletion" -msgstr "Suppression dā€™Ć©lĆ©ments de service en bloc" - -#: ../../enterprise/godmode/services/services.massive.elements.php:61 -#: ../../enterprise/godmode/massive/massive_operations.php:158 -msgid "Bulk service elements edition" -msgstr "Ɖdition dā€™Ć©lĆ©ments de service en bloc" - -#: ../../enterprise/godmode/reporting/visual_console_template.php:63 -#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:62 -#: ../../godmode/reporting/map_builder.php:75 -#: ../../godmode/reporting/map_builder.php:121 -#: ../../godmode/reporting/visual_console_favorite.php:72 -msgid "Visual Console List" -msgstr "Liste de la console visuelle" - -#: ../../enterprise/godmode/reporting/visual_console_template.php:75 -#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:74 -#: ../../godmode/reporting/map_builder.php:87 -#: ../../godmode/reporting/visual_console_favorite.php:84 -msgid "Visual Favourite Console" -msgstr "Console visuelle prĆ©fĆ©rĆ©e" - -#: ../../enterprise/godmode/reporting/visual_console_template.php:88 -#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:87 -#: ../../godmode/reporting/map_builder.php:100 -#: ../../godmode/reporting/visual_console_favorite.php:97 -msgid "Visual Console Template" -msgstr "ModĆØle de console visuelle" - -#: ../../enterprise/godmode/reporting/visual_console_template.php:100 -#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:99 -#: ../../godmode/reporting/map_builder.php:112 -#: ../../godmode/reporting/visual_console_favorite.php:109 -msgid "Visual Console Template Wizard" -msgstr "Assistant de modĆØle de console visuelle" - -#: ../../enterprise/godmode/reporting/visual_console_template.php:141 -#: ../../enterprise/godmode/reporting/visual_console_template.php:157 -msgid "visual console has not been selected" -msgstr "La console visuelle nā€™a pas Ć©tĆ© sĆ©lectionnĆ©" - -#: ../../enterprise/godmode/reporting/visual_console_template.php:147 -msgid "Error. Error created template" -msgstr "Erreur. ModĆØle crĆ©Ć© par erreur" - -#: ../../enterprise/godmode/reporting/visual_console_template.php:149 -msgid "Error. Template name cannot be repeated" -msgstr "Erreur. Le nom du modĆØle ne peut pas ĆŖtre rĆ©pĆ©tĆ©" - -#: ../../enterprise/godmode/reporting/visual_console_template.php:151 -msgid "Successfully created template" -msgstr "ModĆØle crĆ©Ć© correctement" - -#: ../../enterprise/godmode/reporting/visual_console_template.php:163 -msgid "Error. Error delete template" -msgstr "Erreur. Erreur de suppression du modĆØle" - -#: ../../enterprise/godmode/reporting/visual_console_template.php:165 -msgid "Successfully delete template" -msgstr "Supprimer le modĆØle correctement" - -#: ../../enterprise/godmode/reporting/visual_console_template.php:187 -msgid "Create From" -msgstr "CrĆ©er Ć  partir de" - -#: ../../enterprise/godmode/reporting/visual_console_template.php:198 -msgid "There is not any visual console created. Please, create one firstly." -msgstr "" -"Aucune console visuelle nā€™est crĆ©Ć©e. Sā€™il vous plaĆ®t, crĆ©ez-en un dā€™abord." - -#: ../../enterprise/godmode/reporting/visual_console_template.php:254 -#: ../../enterprise/godmode/reporting/graph_template_list.php:257 -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:166 -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:667 -msgid "Create template" -msgstr "CrĆ©er un modĆØle" - -#: ../../enterprise/godmode/reporting/visual_console_template.php:260 -msgid "Create New Template" -msgstr "CrĆ©er Nouveau ModĆØle" - -#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:108 -msgid "Template Wizard" -msgstr "Assistant du modĆØle" - -#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:156 -#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:198 -msgid "Sucessfully applied" -msgstr "AppliquĆ©s correctement" - -#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:158 -#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:200 -msgid "Could not be applied" -msgstr "Erreur d'application" - -#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:200 -msgid "Visual console name" -msgstr "Nom de la console visuelle" - -#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:200 -msgid "" -"You can use macro _agentalias_ here. Left in blank if you want to use default " -"name: Template name - agent alias" -msgstr "" -"Vous pouvez utiliser macro _agentalias_ ici. LaissĆ© vide si vous souhaitez " -"utiliser le nom par dĆ©faut : Nom du modĆØle - alias de lā€™agent" - -#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:236 -#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:288 -msgid "Target group" -msgstr "Groupe cible" - -#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:281 -#: ../../enterprise/godmode/reporting/graph_template_wizard.php:228 -#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:415 -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:832 -msgid "Agents available" -msgstr "Agents disponibles" - -#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:287 -#: ../../enterprise/godmode/reporting/graph_template_wizard.php:234 -#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:425 -#: ../../enterprise/godmode/reporting/reporting_builder.template_editor.php:208 -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:834 -msgid "Agents to apply" -msgstr "Agents Ć  appliquer" - -#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:304 -#: ../../enterprise/godmode/reporting/graph_template_wizard.php:259 -#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:466 -msgid "Add agents to template" -msgstr "Ajouter agents au modĆØle" - -#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:306 -#: ../../enterprise/godmode/reporting/graph_template_wizard.php:263 -#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:478 -msgid "Undo agents to template" -msgstr "Annuler ajout d'agents au modĆØle" - -#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:324 -#: ../../enterprise/godmode/reporting/graph_template_wizard.php:281 -#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:499 -msgid "Apply template" -msgstr "Appliquer le modĆØle" - -#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:631 -#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:661 -#: ../../enterprise/godmode/reporting/graph_template_wizard.php:443 -#: ../../enterprise/godmode/reporting/graph_template_wizard.php:475 -#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:830 -#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:861 -msgid "Please set template distinct than " -msgstr "Veuillez configurer un modĆØle diffĆ©rent de " - -#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:635 -#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:834 -msgid "Please set agent distinct than " -msgstr "Veuillez configurer un agent diffĆ©rent de " - -#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:656 -#: ../../enterprise/godmode/reporting/graph_template_wizard.php:470 -#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:856 -msgid "" -"This will be delete all reports created in previous template applications. Do " -"you want to continue?" -msgstr "" -"Ceci supprimera tous les rapports crĆ©Ć©s dans les applications de modĆØles " -"prĆ©cĆ©dentes. Voulez-vous continuer ?" - -#: ../../enterprise/godmode/reporting/reporting_builder.template_list_item.php:207 -#: ../../enterprise/godmode/reporting/reporting_builder.template_list_item.php:226 -#: ../../enterprise/godmode/reporting/reporting_builder.template_list_item.php:245 -#: ../../godmode/reporting/reporting_builder.list_items.php:378 -#: ../../godmode/reporting/reporting_builder.list_items.php:397 -#: ../../godmode/reporting/reporting_builder.list_items.php:416 -msgid "Ascendent" -msgstr "Croissant" - -#: ../../enterprise/godmode/reporting/reporting_builder.template_list_item.php:214 -#: ../../enterprise/godmode/reporting/reporting_builder.template_list_item.php:233 -#: ../../enterprise/godmode/reporting/reporting_builder.template_list_item.php:252 -#: ../../godmode/reporting/reporting_builder.list_items.php:385 -#: ../../godmode/reporting/reporting_builder.list_items.php:404 -#: ../../godmode/reporting/reporting_builder.list_items.php:420 -msgid "Descent" -msgstr "DĆ©croissant" - -#: ../../enterprise/godmode/reporting/reporting_builder.template_list_item.php:258 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:215 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1722 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:111 -#: ../../godmode/reporting/reporting_builder.list_items.php:424 -#: ../../godmode/reporting/create_container.php:364 -#: ../../godmode/reporting/create_container.php:473 -#: ../../godmode/reporting/create_container.php:527 -#: ../../godmode/reporting/reporting_builder.item_editor.php:1215 -msgid "Time lapse" -msgstr "Intervalle de temps" - -#: ../../enterprise/godmode/reporting/reporting_builder.template_list_item.php:259 -#: ../../godmode/reporting/reporting_builder.list_items.php:425 -msgid "Name or Description" -msgstr "Nom ou description" - -#: ../../enterprise/godmode/reporting/reporting_builder.template_list_item.php:312 -#: ../../godmode/netflow/nf_item_list.php:228 -#: ../../godmode/netflow/nf_item_list.php:230 -msgid "Move to up" -msgstr "DĆ©placer vers le haut" - -#: ../../enterprise/godmode/reporting/reporting_builder.template_list_item.php:325 -#: ../../godmode/netflow/nf_item_list.php:226 -#: ../../godmode/netflow/nf_item_list.php:231 -msgid "Move to down" -msgstr "DĆ©placer vers le bas" - -#: ../../enterprise/godmode/reporting/aws_view.php:53 -msgid "Instance" -msgstr "Instance" - -#: ../../enterprise/godmode/reporting/aws_view.php:55 -msgid "IO read" -msgstr "E/S lues" - -#: ../../enterprise/godmode/reporting/aws_view.php:56 -msgid "IO write" -msgstr "Ɖcriture dā€™E/S" - -#: ../../enterprise/godmode/reporting/aws_view.php:57 -msgid "Disk read" -msgstr "Lecture du disque" - -#: ../../enterprise/godmode/reporting/aws_view.php:58 -msgid "Disk write" -msgstr "Ɖcriture sur disque" - -#: ../../enterprise/godmode/reporting/aws_view.php:59 -msgid "Network in" -msgstr "RĆ©seau entrĆ©e" - -#: ../../enterprise/godmode/reporting/aws_view.php:60 -msgid "Network out" -msgstr "RĆ©seau sortie" - -#: ../../enterprise/godmode/reporting/aws_view.php:134 -msgid "Failed to retrieve AWS information using selected account." -msgstr "" -"Impossible de rĆ©cupĆ©rer les informations AWS Ć  lā€™aide du compte sĆ©lectionnĆ©." - -#: ../../enterprise/godmode/reporting/aws_view.php:153 -msgid "AWS credentials not validated." -msgstr "Identifiants AWS non validĆ©es." - -#: ../../enterprise/godmode/reporting/aws_view.php:168 -msgid "Discovery Cloud: AWS" -msgstr "Discovery Cloud : AWS" - -#: ../../enterprise/godmode/reporting/aws_view.php:177 -msgid "Please, select an account: " -msgstr "Veuillez sĆ©lectionner un compte : " - -#: ../../enterprise/godmode/reporting/aws_view.php:186 -msgid "CREATE CLOUD MONITORING DISCOVERY TASK" -msgstr "CRƉER UNE TƂCHE DE DƉCOUVERTE DE SUPERVISION CLOUD" - -#: ../../enterprise/godmode/reporting/aws_view.php:189 -msgid "" -"Within this view you will find information collected using Discovery Cloud AWS " -"task. You will be able to see the most relevant information about your " -"infrastructure, such as the current cost of your contracted services, the " -"number of instances per region or resource usage metrics. In order to collect " -"this information you must create a Cloud Monitoring Discovery task." -msgstr "" -"Dans cette vue, vous trouverez des informations collectĆ©es Ć  lā€™aide de la " -"tĆ¢che AWS Discovery Cloud. Vous pourrez voir les informations les plus " -"pertinentes sur votre infrastructure, telles que le coĆ»t actuel de vos " -"services contractuels, le nombre dā€™instances par rĆ©gion ou les mesures " -"dā€™utilisation des ressources. Pour collecter ces informations, vous devez " -"crĆ©er une tĆ¢che Cloud Monitoring Discovery." - -#: ../../enterprise/godmode/reporting/aws_view.php:192 -msgid "Press the create button to begin." -msgstr "Cliquez CrĆ©er pour commencer." - -#: ../../enterprise/godmode/reporting/aws_view.php:221 -msgid "Instance table" -msgstr "Table dā€™instance" - -#: ../../enterprise/godmode/reporting/graph_template_wizard.php:80 -#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:147 -msgid "Cleanup sucessfully" -msgstr "NettoyĆ© correctement" - -#: ../../enterprise/godmode/reporting/graph_template_wizard.php:83 -#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:150 -msgid "Cleanup error" -msgstr "Erreur de nettoyage" - -#: ../../enterprise/godmode/reporting/graph_template_wizard.php:127 -#: ../../enterprise/godmode/reporting/graph_template_list.php:111 -#: ../../godmode/reporting/graph_container.php:101 -#: ../../godmode/reporting/graph_container.php:109 -#: ../../godmode/reporting/create_container.php:188 -msgid "Graph container" -msgstr "Conteneur de graphiques" - -#: ../../enterprise/godmode/reporting/graph_template_wizard.php:135 -msgid "Wizard template" -msgstr "ModĆØle de l'assistant" - -#: ../../enterprise/godmode/reporting/graph_template_wizard.php:197 -#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:266 -msgid "Clean up template" -msgstr "Nettoyer le modĆØle" - -#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:195 -msgid "No item could be applied to report." -msgstr "Aucun Ć©lĆ©ment nā€™a pu ĆŖtre appliquĆ© au rapport." - -#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:198 -msgid "reports" -msgstr "Rapports" - -#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:198 -msgid "items" -msgstr "Ć©lĆ©ments" - -#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:207 -#: ../../godmode/massive/massive_operations.php:347 -msgid "" -"In order to perform massive operations, PHP needs a correct configuration in " -"timeout parameters. Please, open your PHP configuration file (php.ini) for " -"example: sudo vi /etc/php5/apache2/php.ini;
    And set your timeout " -"parameters to a correct value:
    max_execution_time = 0 and " -"max_input_time = -1" -msgstr "" -"Pour effectuer des opĆ©rations massives, il faut que les paramĆØtres " -"d'interruption PHP soient configurĆ©s correctement. Veuillez ouvrir le fichier " -"de configuration PHP (php.ini) par exemple : sudo vi /etc/php5/apache2/php." -"ini;
    et rĆ©gler les paramĆØtres d'interruption Ć  une valeur correcte : " -"
    max_execution_time = 0 and max_input_time = -1" - -#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:221 -msgid "Create template report wizard" -msgstr "Assistant de crĆ©ation de modĆØles de rapports" - -#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:273 -msgid "Create report per agent" -msgstr "CrĆ©er un rapport par agent" - -#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:282 -msgid "" -"Left in blank if you want to use default name: Template name - agents (num " -"agents) - Date" -msgstr "" -"Laissez-le en blanc si vous voulez utiliser le nom par dĆ©faut : Template name " -"- agents (num agents) - Date" - -#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:327 -msgid "Filter by" -msgstr "Filtrer par" - -#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:398 -msgid "Filter tag" -msgstr "Filtrer par Ć©tiquette" - -#: ../../enterprise/godmode/reporting/mysql_builder.php:66 -msgid "Custom MySQL template builder" -msgstr "GĆ©nĆ©rateur de modĆØles MySQL personnalisĆ©s" - -#: ../../enterprise/godmode/reporting/mysql_builder.php:117 -msgid "Create custom SQL" -msgstr "CrĆ©er un SQL personnalisĆ©" - -#: ../../enterprise/godmode/reporting/mysql_builder.php:128 -#: ../../enterprise/godmode/reporting/mysql_builder.php:146 -msgid "Create new custom" -msgstr "CrĆ©er un nouvel Ć©lĆ©ment personnalisĆ©" - -#: ../../enterprise/godmode/reporting/mysql_builder.php:187 -msgid "List of custom MySQL templates" -msgstr "Liste des modĆØles MySQL personnalisĆ©s" - -#: ../../enterprise/godmode/reporting/mysql_builder.php:193 -msgid "Template builder" -msgstr "GĆ©nĆ©rateur de modĆØles" - -#: ../../enterprise/godmode/reporting/mysql_builder.php:212 -msgid "Successfully operation" -msgstr "OpĆ©ration complĆ©tĆ©e correctement" - -#: ../../enterprise/godmode/reporting/mysql_builder.php:212 -msgid "Could not be operation" -msgstr "Impossible de complĆ©ter l'opĆ©ration" - -#: ../../enterprise/godmode/reporting/mysql_builder.php:214 -msgid "Without changes" -msgstr "Sans changements" - -#: ../../enterprise/godmode/reporting/reporting_builder.advanced.php:81 -msgid "Advance Reporting" -msgstr "Rapport avancĆ©" - -#: ../../enterprise/godmode/reporting/reporting_builder.advanced.php:97 -msgid "Page orientation" -msgstr "Orientation de la page" - -#: ../../enterprise/godmode/reporting/graph_template_item_editor.php:65 -msgid "Graph template item editor" -msgstr "Ɖditeur dā€™Ć©lĆ©ments de modĆØle de graphique" - -#: ../../enterprise/godmode/reporting/graph_template_item_editor.php:206 -msgid "Decrease Weight" -msgstr "Diminuer le poids" - -#: ../../enterprise/godmode/reporting/graph_template_item_editor.php:206 -msgid "Increase Weight" -msgstr "Augmenter le poids" - -#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:57 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:196 -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:51 -#: ../../godmode/reporting/reporting_builder.item_editor.php:58 -msgid "Only table" -msgstr "Seulement le tableau" - -#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:58 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:197 -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:52 -#: ../../godmode/reporting/reporting_builder.item_editor.php:59 -msgid "Table & Graph" -msgstr "Tableau et graphique" - -#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:59 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:198 -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:53 -#: ../../godmode/reporting/reporting_builder.item_editor.php:60 -msgid "Only graph" -msgstr "Seulement le graphique" - -#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:224 -msgid "hourly S.L.A." -msgstr "SLA par heures" - -#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:225 -msgid "Availability Graph S.L.A." -msgstr "Graphique de disponibilitĆ© SLA" - -#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:291 -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:190 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:203 -msgid "Filter agents selector" -msgstr "SĆ©lecteur de filtres dā€™agents" - -#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:305 -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:228 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:221 -#: ../../godmode/reporting/visual_console_builder.wizard.php:408 -msgid "If you select several agents, only the common modules will be displayed" -msgstr "" -"Si vous sĆ©lectionnez plusieurs agents, seuls les modules communs seront " -"affichĆ©s" - -#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:319 -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:106 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:289 -msgid "Elements to apply" -msgstr "ƉlĆ©ments Ć  appliquer" - -#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:368 -msgid "SLA min value" -msgstr "Valeur minimale de SLA" - -#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:368 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:374 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:380 -msgid "Enter possible range of values in SLA." -msgstr "Entrez la plage de valeurs possible dans SLA." - -#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:369 -msgid "SLA min Value" -msgstr "Valeur minimale de SLA" - -#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:374 -msgid "SLA max value" -msgstr "Valeur maximale de SLA" - -#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:375 -msgid "SLA max Value" -msgstr "Valeur maximale de SLA" - -#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:380 -msgid "SLA Limit %" -msgstr "Limite % SLA" - -#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:381 -msgid "SLA Limit Value" -msgstr "Valeur limite de SLA" - -#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:386 -msgid "Dynamic SLA" -msgstr "SLA dynamique" - -#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:393 -msgid "Inverse SLA" -msgstr "Inverse SLA" - -#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:402 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3030 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:462 -#: ../../godmode/reporting/reporting_builder.item_editor.php:3097 -msgid "Failover mode" -msgstr "Mode de basculement" - -#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:403 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3031 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:463 -#: ../../godmode/reporting/reporting_builder.item_editor.php:3098 -msgid "" -"SLA calculation must be performed taking into account the failover modules " -"assigned to the primary module" -msgstr "" -"Le calcul du SLA doit ĆŖtre effectuĆ© en tenant compte des modules de " -"basculement affectĆ©s au module principal" - -#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:420 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3050 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:480 -#: ../../godmode/reporting/reporting_builder.item_editor.php:3117 -msgid "Failover type" -msgstr "Type de basculement" - -#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:425 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3055 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:485 -#: ../../godmode/reporting/reporting_builder.item_editor.php:3122 -msgid "Failover normal" -msgstr "Basculement normal" - -#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:437 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3067 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:497 -#: ../../godmode/reporting/reporting_builder.item_editor.php:3134 -msgid "Failover simple" -msgstr "Basculement simple" - -#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:450 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2965 -#: ../../godmode/reporting/reporting_builder.item_editor.php:3042 -msgid "SLA items sorted by fulfillment value" -msgstr "ƉlĆ©ments SLA classĆ©s par valeur d'accomplissement" - -#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:455 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1816 -#: ../../godmode/reporting/reporting_builder.item_editor.php:1312 -msgid "Only display wrong SLAs" -msgstr "Affiche seulement des SLA erronĆ©s" - -#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:461 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2576 -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:446 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2569 -msgid "Show graph" -msgstr "Afficher le graphique" - -#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:481 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3366 -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:473 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:797 -#: ../../godmode/reporting/reporting_builder.item_editor.php:3447 -msgid "Show item in landscape format (only PDF)" -msgstr "Afficher lā€™Ć©lĆ©ment au format paysage (uniquement PDF)" - -#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:495 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3375 -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:489 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:813 -#: ../../godmode/reporting/reporting_builder.item_editor.php:3456 -msgid "Page break at the end of the item (only PDF)" -msgstr "Saut de page Ć  la fin de lā€™article (UNIQUEMENT PDF)" - -#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:534 -msgid "Please introduce a SLA max value higher than the SLA min value" -msgstr "" -"Veuillez introduire une valeur SLA max supĆ©rieure Ć  la valeur minimale SLA" - -#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:659 -msgid "Dynamic SLA can not be Inverse" -msgstr "Le SLA dynamique ne peut pas ĆŖtre inverse" - -#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:664 -msgid "Check Dynamic SLA or introduce a max and min SLA value" -msgstr "" -"VĆ©rifier le SLA dynamique ou introduiser une valeur SLA maximale et minimale" - -#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:668 -msgid "SLA Limit value is needed" -msgstr "La valeur limite SLA est nĆ©cessaire" - -#: ../../enterprise/godmode/reporting/graph_template_editor.php:58 -msgid "Not created. Blank name" -msgstr "Non crĆ©Ć©. Nom vide" - -#: ../../enterprise/godmode/reporting/graph_template_editor.php:94 -msgid "Graph template editor" -msgstr "Ɖditeur de modĆØle de graphique" - -#: ../../enterprise/godmode/reporting/graph_template_editor.php:173 -msgid "Template updated successfully" -msgstr "ModĆØle mis Ć  jour correctement" - -#: ../../enterprise/godmode/reporting/graph_template_editor.php:219 -msgid "3 hours" -msgstr "3 heures" - -#: ../../enterprise/godmode/reporting/graph_template_editor.php:223 -#: ../../godmode/setup/performance.php:534 -msgid "2 days" -msgstr "2 jours" - -#: ../../enterprise/godmode/reporting/graph_template_editor.php:224 -msgid "4 days" -msgstr "4 jours" - -#: ../../enterprise/godmode/reporting/graph_template_editor.php:225 -#: ../../godmode/setup/performance.php:536 -msgid "Last week" -msgstr "La semaine derniĆØre" - -#: ../../enterprise/godmode/reporting/graph_template_editor.php:227 -#: ../../godmode/setup/performance.php:538 -msgid "Last month" -msgstr "Le mois dernier" - -#: ../../enterprise/godmode/reporting/graph_template_editor.php:228 -msgid "2 months" -msgstr "2 mois" - -#: ../../enterprise/godmode/reporting/graph_template_editor.php:239 -msgid "Stacked" -msgstr "En attente" - -#: ../../enterprise/godmode/reporting/reporting_builder.template_advanced.php:115 -msgid "Advance Options" -msgstr "Options avancĆ©es" - -#: ../../enterprise/godmode/reporting/graph_template_list.php:119 -msgid "Graph template management" -msgstr "Gestion du modĆØle de graphique" - -#: ../../enterprise/godmode/reporting/graph_template_list.php:203 -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:497 -#: ../../godmode/alerts/alert_list.list.php:56 -msgid "Template name" -msgstr "Nom du modĆØle" - -#: ../../enterprise/godmode/reporting/graph_template_list.php:252 -msgid "There are no defined graph templates" -msgstr "Aucun modĆØle de graphique dĆ©fini" - -#: ../../enterprise/godmode/reporting/reporting_builder.template_editor.php:170 -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:107 -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:131 -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:193 -msgid "Edit template" -msgstr "Modifier le modĆØle" - -#: ../../enterprise/godmode/reporting/reporting_builder.template_editor.php:209 -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:903 -msgid "" -"Case insensitive regular expression for agent alias. For example: Network.* " -"will match with the following agent alias: network_agent1, NetworK CHECKS" -msgstr "" -"Expression rĆ©guliĆØre insensible Ć  la casse pour lā€™alias dā€™agent. Par exemple : " -"Network.* correspond Ć  lā€™alias dā€™agent suivant : network_agent1, NetworK CHECKS" - -#: ../../enterprise/godmode/reporting/reporting_builder.template_editor.php:222 -#: ../../godmode/reporting/reporting_builder.main.php:226 -msgid "Generate cover page in PDF render" -msgstr "GĆ©nĆ©rer une page de couverture dans le PDF render" - -#: ../../enterprise/godmode/reporting/reporting_builder.template_editor.php:230 -#: ../../godmode/reporting/reporting_builder.main.php:234 -msgid "Generate index in PDF render" -msgstr "GĆ©nĆ©rer un index dans le PDF render" - -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1624 -#: ../../godmode/reporting/reporting_builder.php:3672 -msgid "Successfull action" -msgstr "Action rĆ©ussie" - -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1625 -#: ../../godmode/servers/modificar_server.php:157 -#: ../../godmode/servers/modificar_server.php:168 -msgid "Unsuccessfull action" -msgstr "Action Ć©chouĆ©e" - -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1642 -#: ../../godmode/reporting/reporting_builder.item_editor.php:975 -msgid "Item Editor" -msgstr "Ɖditeur d'Ć©lĆ©ments" - -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1744 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:4993 -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:198 -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:818 -#: ../../godmode/reporting/reporting_builder.item_editor.php:1240 -#: ../../godmode/reporting/reporting_builder.item_editor.php:6969 -msgid "" -"Warning: period 0 reports cannot be used to show information back in time. " -"Information contained in this kind of reports will be always reporting the " -"most recent information" -msgstr "" -"Attention : les rapports de pĆ©riode 0 ne peuvent pas ĆŖtre utilisĆ©s pour " -"afficher de l'information passĆ©e. L'information dans ce type de rapport " -"affiche toujours les donnĆ©es les plus rĆ©centes." - -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1784 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:773 -#: ../../godmode/reporting/reporting_builder.item_editor.php:1280 -msgid "Projection period" -msgstr "PĆ©riode de projection" - -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1803 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:748 -#: ../../godmode/reporting/reporting_builder.item_editor.php:1299 -msgid "Data range" -msgstr "Gamme de donnĆ©es" - -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1830 -#: ../../godmode/reporting/reporting_builder.item_editor.php:1326 -msgid "Current month" -msgstr "Mois en cours" - -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1840 -#: ../../godmode/reporting/reporting_builder.item_editor.php:1342 -msgid "Working time" -msgstr "Temps de travail" - -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1905 -#: ../../godmode/reporting/reporting_builder.item_editor.php:1408 -msgid "Time from" -msgstr "Temps depuis" - -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1923 -#: ../../godmode/reporting/reporting_builder.item_editor.php:1426 -msgid "Time to" -msgstr "Temps jusqu'Ć " - -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1941 -#: ../../godmode/reporting/reporting_builder.item_editor.php:1444 -msgid "Show 24x7 item" -msgstr "Afficher lā€™Ć©lĆ©ment 24/7" - -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1971 -msgid "Select server" -msgstr "SĆ©lectionner un serveur" - -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1985 -#: ../../godmode/reporting/reporting_builder.item_editor.php:189 -msgid "Local metaconsole" -msgstr "MĆ©taconsole locale" - -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2056 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3632 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3864 -msgid "" -"Case insensitive regular expression or string for module name. For example: if " -"you use this field with \"Module exact match\" enabled then this field has to " -"be fulfilled with the literally string of the module name, if not you can use " -"a regular expression. Example: .*usage.* will match: cpu_usage, vram usage in " -"matchine 1." -msgstr "" -"Expression rĆ©guliĆØre ou chaĆ®ne non sensible Ć  la casse pour le nom du module. " -"Par exemple : si vous utilisez ce champ avec Ā« Concordance exacte de module Ā» " -"activĆ©e, alors ce champ doit ĆŖtre rempli avec une chaĆ®ne littĆ©rale du nom du " -"module. Sinon, vous pouvez utiliser une expression rĆ©guliĆØre. Par exemple : ." -"*usage.* concordera avec : cpu_usage, vram usage dans la machine 1." - -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2078 -msgid "Module exact match" -msgstr "Concordance exacte de module" - -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2079 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3564 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3640 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3788 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3871 -msgid "Check it if you want to match module name literally" -msgstr "Cochez si vous voulez faire correspondre le nom du module littĆ©ralement." - -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2095 -msgid "Case insensitive regular expression or string for templates name." -msgstr "" -"Expression rĆ©guliĆØre ou chaĆ®ne insensible Ć  la casse pour le nom des modĆØles." - -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2118 -msgid "Case insensitive regular expression or string for actions name." -msgstr "" -"Expression rĆ©guliĆØre ou chaĆ®ne insensible Ć  la casse pour le nom des actions." - -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2140 -msgid "Hide items without data" -msgstr "Masquer des Ć©lĆ©ments sans donnĆ©es" - -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2141 -msgid "Check it if you want not show items without data" -msgstr "Cochez-le si vous ne souhaitez pas afficher les Ć©lĆ©ments sans donnĆ©es" - -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2198 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2240 -msgid "Max items" -msgstr "Nombre d'Ć©lĆ©ments maximum" - -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2215 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:784 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2252 -msgid "Serialized header" -msgstr "En-tĆŖte sĆ©rialisĆ©" - -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2216 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:784 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2253 -msgid "The separator character is |" -msgstr "Le caractĆØre sĆ©parateur est |" - -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2231 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2205 -msgid "Custom SQL template" -msgstr "ModĆØle de SQL personnalisĆ©" - -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2252 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2226 -msgid "The entities of the fields that contain them must be included." -msgstr "Les entitĆ©s des champs qui les contiennent doivent ĆŖtre incluses." - -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2277 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2283 -msgid "Protocol must be specified in URL (e.g.: \"https://\")" -msgstr "Le protocole doit ĆŖtre spĆ©cifiĆ© dans lā€™URL (par exemple: Ā«Ā https://Ā Ā»)" - -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2283 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:788 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2289 -msgid "Field separator" -msgstr "Champ sĆ©parateur" - -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2284 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:788 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2290 -msgid "Separator for different fields in the serialized text chain" -msgstr "SĆ©parateur pour des champs diffĆ©rents dans la chaĆ®ne de texte en sĆ©rie" - -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2304 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:792 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2310 -msgid "Line separator" -msgstr "SĆ©parateur de ligne" - -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2305 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:792 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2311 -msgid "" -"Separator in different lines (composed by fields) of the serialized text chain" -msgstr "" -"SĆ©parateur en diffĆ©rentes lignes (composĆ©es par des champs) de la chaĆ®ne de " -"texte en sĆ©rie" - -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2325 -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:321 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2331 -msgid "Group by agent" -msgstr "Regrouper par agent" - -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2341 -#: ../../godmode/reporting/reporting_builder.item_editor.php:3412 -msgid "Group by" -msgstr "Regrouper par" - -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2375 -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:333 -#: ../../godmode/reporting/reporting_builder.item_editor.php:3018 -msgid "Show in the same row" -msgstr "Afficher dans la mĆŖme rangĆ©e" - -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2377 -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:334 -#: ../../godmode/reporting/reporting_builder.item_editor.php:3020 -msgid "Show one module per row with all its operations" -msgstr "Afficher un module par rangĆ©e avec toutes ses opĆ©rations" - -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2469 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:537 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2435 -msgid "Graph render" -msgstr "Rendu graphique" - -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2475 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:543 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2441 -msgid "Avg, max & min" -msgstr "Moyenne, max & min" - -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2476 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:544 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2442 -msgid "Max only" -msgstr "Max seulement" - -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2477 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:545 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2443 -msgid "Min only" -msgstr "Min seulement" - -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2478 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:546 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2444 -msgid "Avg only" -msgstr "Moy uniquement" - -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2491 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:573 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2490 -msgid "Full resolution graph (TIP)" -msgstr "Graphique en pleine rĆ©solution (TIP)" - -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2503 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:591 -msgid "" -"If this option was checked, only adding in elements that type of modules " -"support this option." -msgstr "" -"Si vous cochez cette case, cette option sera possible que si vous ajoutez des " -"modules de ce type." - -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2533 -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:425 -#: ../../enterprise/godmode/alerts/alert_inventory_builder.php:215 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2545 -msgid "Condition" -msgstr "Condition" - -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2543 -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:432 -msgid ">=" -msgstr ">=" - -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2550 -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:434 -msgid "<" -msgstr "<" - -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2590 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2583 -msgid "Select fields to show" -msgstr "SĆ©lectionner les champs Ć  afficher" - -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2669 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:368 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2659 -msgid "Show address instead module name" -msgstr "Afficher adresse au lieu du nom du module" - -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2670 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:369 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2660 -msgid "Show the main address of agent." -msgstr "Afficher l'adresse principale de l'agent" - -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2689 -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:458 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:346 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2679 -msgid "Show resume" -msgstr "Afficher le rĆ©sumĆ©" - -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2690 -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:458 -msgid "" -"Show a resume table with max, min, average of total modules on the report " -"bottom" -msgstr "" -"Montrer un tableau rĆ©sumĆ© avec le maximum, le minimum et la moyenne de modules " -"totaux Ć  la fin du rapport." - -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2708 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2699 -msgid "

    Select fields to show

    " -msgstr "

    SĆ©lectionner les champs Ć  afficher

    " - -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2756 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2759 -msgid "

    Select fields to show

    " -msgstr "

    SĆ©lectionner les champs Ć  afficher

    " - -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2772 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2775 -msgid "Agent min values" -msgstr "Valeurs min de lā€™agent" - -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2784 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:605 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2788 -msgid "Show Summary group" -msgstr "Afficher groupe rĆ©capitulatif" - -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2801 -#: ../../godmode/reporting/reporting_builder.item_editor.php:3395 -msgid "Show Summary" -msgstr "Voir le sommaire " - -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2870 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:669 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2874 -msgid "Event Status" -msgstr "Ɖtat de l'Ć©vĆ©nement" - -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2901 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:699 -msgid "By agent" -msgstr "Par agent" - -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2911 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:709 -msgid "By user validator" -msgstr "Par utilisateur validateur" - -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2921 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:719 -msgid "By criticity" -msgstr "Par niveau de sĆ©vĆ©ritĆ©" - -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2931 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:729 -msgid "Validated vs unvalidated" -msgstr "ValidĆ©s / non validĆ©s" - -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2945 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2999 -msgid "Height (dynamic graphs)" -msgstr "Hauteur (graphiques dynamiques)" - -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2985 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2983 -msgid "Query History Database" -msgstr "Base de donnĆ©es de l'historique de requĆŖtes" - -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2997 -#: ../../godmode/reporting/reporting_builder.item_editor.php:3064 -msgid "Priority mode" -msgstr "Mode prioritaire" - -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3002 -#: ../../godmode/reporting/reporting_builder.item_editor.php:3069 -msgid "Priority ok mode" -msgstr "Mode ok de prioritĆ©" - -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3014 -#: ../../godmode/reporting/reporting_builder.item_editor.php:3081 -msgid "Priority unknown mode" -msgstr "Mode inconnu de prioritĆ©" - -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3104 -msgid "Modules to match" -msgstr "Modules Ć  comparer" - -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3106 -msgid "Select the modules to match when create a report for agents" -msgstr "" -"SĆ©lectionnez les modules Ć  comparer lors de la crĆ©ation d'un rapport pour les " -"agents." - -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3206 -msgid "Modules to match (Free text)" -msgstr "Modules Ć  comparer (texte libre)" - -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3208 -msgid "Free text to filter the modules of agents when apply this template." -msgstr "" -"Texte libre pour filtrer les modules d'agents lors de l'application de ce " -"modĆØle." - -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3225 -msgid "Create a graph for each agent" -msgstr "CrĆ©er un graphique pour chaque agent" - -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3227 -msgid "" -"If it is checked, the regexp or name of modules match only each to each to " -"agent, instead create a big graph with all modules from all agents." -msgstr "" -"Si cette option est cochĆ©e, le regexp ou le nom de modules correspondent avec " -"chaque module de chaque agent, au lieu de crĆ©er un grand graphique avec tous " -"les modules de tous les agents." - -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3254 -#: ../../godmode/reporting/reporting_builder.item_editor.php:3189 -msgid "Calculate for custom intervals" -msgstr "Calculer pour les intervalles personnalisĆ©s" - -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3266 -#: ../../godmode/reporting/reporting_builder.item_editor.php:3201 -msgid "Time lapse intervals" -msgstr "Intervalles de temps" - -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3268 -#: ../../godmode/reporting/reporting_builder.item_editor.php:3204 -msgid "" -"Lapses of time in which the period is divided to make more precise calculations" -msgstr "" -"Intervalles de temps dans lesquelles une pĆ©riode se divise pour effectuer des " -"calculs plus prĆ©cis" - -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3313 -#: ../../godmode/reporting/reporting_builder.item_editor.php:3245 -msgid "Table only" -msgstr "Seulement le tableau" - -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3323 -#: ../../godmode/reporting/reporting_builder.item_editor.php:3256 -msgid "Graph only" -msgstr "Seulement le graphique" - -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3333 -#: ../../godmode/reporting/reporting_builder.item_editor.php:3267 -msgid "Graph and table" -msgstr "Graphique et tableau" - -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3350 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:830 -#: ../../godmode/reporting/reporting_builder.item_editor.php:3284 -msgid "Uncompress module" -msgstr "DĆ©compresser le module" - -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3351 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:831 -#: ../../godmode/reporting/reporting_builder.item_editor.php:3285 -msgid "Use uncompressed module data." -msgstr "Utiliser des donnĆ©es de module non compressĆ©es." - -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3382 -#: ../../godmode/reporting/reporting_builder.item_editor.php:1168 -msgid "Filter by network" -msgstr "Filtrer par rĆ©seau" - -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3412 -#: ../../godmode/reporting/reporting_builder.item_editor.php:1187 -msgid "Show alive IPs only" -msgstr "Afficher uniquement les adresses IP vivantes" - -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3425 -#: ../../godmode/reporting/reporting_builder.item_editor.php:1200 -msgid "Show IPs not assigned to an agent" -msgstr "Afficher les adresses IP non affectĆ©es Ć  un agent" - -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3451 -#: ../../godmode/reporting/reporting_builder.item_editor.php:3719 -#: ../../godmode/netflow/nf_item_list.php:282 -msgid "Create item" -msgstr "CrĆ©er un Ć©lĆ©ment" - -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3509 -#: ../../godmode/reporting/reporting_builder.item_editor.php:3813 -msgid "SLA Min. (value)" -msgstr "SLA min. (valeur)" - -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3514 -#: ../../godmode/reporting/reporting_builder.item_editor.php:3818 -msgid "SLA Max. (value)" -msgstr "SLA max. (valeur)" - -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3519 -#: ../../godmode/reporting/reporting_builder.item_editor.php:3823 -msgid "SLA Limit (%)" -msgstr "Limite SLA (%)" - -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3536 -msgid "Please save the SLA template for start to add items in this list." -msgstr "" -"Veuillez sauvegarder le modĆØle SLA pour commencer Ć  ajouter les Ć©lĆ©ments Ć  " -"cette liste." - -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3577 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3804 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:4249 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:4394 -msgid "Not literally" -msgstr "Pas littĆ©ralement" - -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3623 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3855 -msgid "" -"Case insensitive regular expression for agent name. For example: Network* will " -"match with the following agent names: network_agent1, NetworK CHECKS" -msgstr "" -"Expression rĆ©guliĆØre sensitive Ć  la casse pour le nom de l'agent. Par " -"exemple : Network* concordera avec les nom d'agents suivants : network_agent1, " -"NetworK CHECKS" - -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3639 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3870 -msgid "Literal module name forced" -msgstr "Nom littĆ©ral du module forcĆ©" - -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3760 -msgid "Please save the template to start adding items into the list." -msgstr "" -"Veuillez sauvegarder le modĆØle pour commencer Ć  ajouter les Ć©lĆ©ments Ć  cette " -"liste." - -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:4275 -msgid "Name and SLA limit should not be empty" -msgstr "Le nom et la limite SLA ne peuvent pas ĆŖtre vides" - -#: ../../enterprise/godmode/reporting/visual_console_builder.wizard_services.php:150 -#: ../../enterprise/godmode/reporting/visual_console_builder.wizard_services.php:151 -msgid "Push the selected services into the list" -msgstr "Ajouter les services sĆ©lectionnĆ©s Ć  la liste" - -#: ../../enterprise/godmode/reporting/visual_console_builder.wizard_services.php:161 -#: ../../enterprise/godmode/reporting/visual_console_builder.wizard_services.php:162 -msgid "Remove the services from the list" -msgstr "Supprimer les services de la liste" - -#: ../../enterprise/godmode/reporting/visual_console_builder.wizard_services.php:229 -msgid "Icon preview" -msgstr "AperƧu de l'icĆ“ne" - -#: ../../enterprise/godmode/reporting/visual_console_builder.wizard_services.php:295 -msgid "The services list is empty" -msgstr "La liste des services est vide." - -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:181 -msgid "List templates" -msgstr "Liste de modĆØles" - -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:565 -#: ../../godmode/reporting/reporting_builder.php:1055 -msgid "HTML view" -msgstr "Affichage HTML" - -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:573 -#: ../../godmode/reporting/reporting_builder.php:1065 -msgid "Export to XML" -msgstr "Exporter en XML" - -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:661 -msgid "You haven't created templates yet." -msgstr "Vous n'avez pas encore crĆ©Ć© de modĆØles." - -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:681 -msgid "Generate a dynamic report" -msgstr "GĆ©nĆ©rer un rapport dynamique" - -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:765 -msgid "Set start and end date" -msgstr "DĆ©finir les dates de dĆ©but et de fin" - -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:815 -msgid "Monthly SLA period" -msgstr "PĆ©riode SLA mensuelle" - -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:815 -msgid "This field only applies in case of Monthly SLA item." -msgstr "Ce champ ne sā€™applique quā€™en cas dā€™Ć©lĆ©ment SLA mensuel." - -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:865 -msgid "Undo agents" -msgstr "Annuler les agents" - -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:902 -msgid "RegEx agent filter" -msgstr "Filtre dā€™agent RegEx" - -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:918 -msgid "Generate" -msgstr "GĆ©nĆ©rer" - -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:1312 -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:1334 -msgid "Please set agent or agent regex distinct than " -msgstr "Veuillez dĆ©finir agent ou agent regex distinct de " - -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:1342 -msgid "It is not a regular expression " -msgstr "Ce nā€™est pas une expression rĆ©guliĆØre " - -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:1344 -msgid "No agent matches regular expression " -msgstr "Aucun agent ne correspond Ć  lā€™expression rĆ©guliĆØre " - -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:312 -msgid "Order:" -msgstr "OrdreĀ :" - -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:348 -msgid "" -"Show a resume table with max, min, average of total modules on the report " -"bottom:" -msgstr "" -"Afficher un tableau rĆ©sumĆ© avec le maximum, le minimum et la moyenne de " -"modules totaux Ć  la fin du rapport :" - -#: ../../enterprise/godmode/menu.php:16 -msgid "Manage Satellite Server" -msgstr "GĆ©rer le serveur Satellite" - -#: ../../enterprise/godmode/menu.php:25 -#: ../../enterprise/godmode/massive/massive_operations.php:99 -msgid "Policies operations" -msgstr "OpĆ©rations des politiques" - -#: ../../enterprise/godmode/menu.php:36 -#: ../../enterprise/godmode/massive/massive_operations.php:75 -msgid "SNMP operations" -msgstr "OpĆ©rations SNMP" - -#: ../../enterprise/godmode/menu.php:48 -#: ../../enterprise/godmode/massive/massive_operations.php:28 -msgid "Satellite operations" -msgstr "OpĆ©rations du satellite" - -#: ../../enterprise/godmode/menu.php:60 -#: ../../enterprise/godmode/massive/massive_operations.php:53 -msgid "Services operations" -msgstr "OpĆ©rations de services" - -#: ../../enterprise/godmode/menu.php:72 ../../enterprise/godmode/menu.php:278 -msgid "Duplicate config" -msgstr "Dupliquer la configuration" - -#: ../../enterprise/godmode/menu.php:81 -#: ../../godmode/agentes/configurar_agente.php:707 -msgid "Network config manager" -msgstr "Gestionnaire de configuration rĆ©seau" - -#: ../../enterprise/godmode/menu.php:117 -msgid "Manage agent autoconfiguration" -msgstr "GĆ©rer la configuration automatique de lā€™agent" - -#: ../../enterprise/godmode/menu.php:174 -msgid "Mysql" -msgstr "MySQL" - -#: ../../enterprise/godmode/menu.php:179 -#: ../../enterprise/godmode/wizards/Applications.class.php:163 -#: ../../enterprise/godmode/wizards/Applications.class.php:171 -msgid "Applications" -msgstr "Applications" - -#: ../../enterprise/godmode/menu.php:190 -msgid "Amazon Web Services" -msgstr "Amazon Web Services" - -#: ../../enterprise/godmode/menu.php:191 -msgid "Microsoft Azure" -msgstr "Microsoft Azure" - -#: ../../enterprise/godmode/menu.php:192 -msgid "Google Compute Platform" -msgstr "Google Compute Platform" - -#: ../../enterprise/godmode/menu.php:208 -msgid "New console task" -msgstr "Nouvelle tĆ¢che de console" - -#: ../../enterprise/godmode/menu.php:218 -msgid "Enterprise ACL Setup" -msgstr "Configuration ACL Enterprise" - -#: ../../enterprise/godmode/menu.php:227 -msgid "Skins" -msgstr "ThĆØmes" - -#: ../../enterprise/godmode/menu.php:237 -msgid "Manage database HA" -msgstr "GĆ©rer la base de donnĆ©es HA" - -#: ../../enterprise/godmode/menu.php:269 -msgid "Log Collector" -msgstr "Collecteur de journaux" - -#: ../../enterprise/godmode/menu.php:287 -msgid "Password policy" -msgstr "Politique de mot de passe" - -#: ../../enterprise/godmode/menu.php:331 ../../godmode/setup/setup.php:190 -#: ../../godmode/setup/setup.php:289 -msgid "Module Library" -msgstr "BibliothĆØque de modules" - -#: ../../enterprise/godmode/menu.php:339 -#: ../../enterprise/godmode/alerts/alert_inventory.php:78 -#: ../../enterprise/godmode/alerts/alert_inventory.php:80 -msgid "Inventory alerts" -msgstr "Alertes dā€™inventaire" - -#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor_form.php:64 -#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:383 -msgid "Custom OID" -msgstr "OID personnalisĆ©" - -#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:225 -#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:237 -msgid "Successfully added trap custom values" -msgstr "AjoutĆ© correctement aux valeurs personnalisĆ©es du dĆ©routement" - -#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:227 -#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:239 -msgid "Error adding trap custom values" -msgstr "Erreur d'ajout des valeurs personnalisĆ©es de dĆ©routement" - -#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:242 -#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:317 -msgid "This custom OID is preexistent." -msgstr "L'OID personnalisĆ© existe dĆ©jĆ ." - -#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:283 -msgid "No change in data" -msgstr "Aucun changement dans les donnĆ©es" - -#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:285 -#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:312 -msgid "Successfully updated trap custom values" -msgstr "Valeurs personnalisĆ©es de dĆ©routement mises Ć  jour correctement" - -#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:287 -#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:314 -msgid "Error updating trap custom values" -msgstr "Erreur de mise Ć  jour des valeurs personnalisĆ©es de dĆ©routement" - -#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:330 -msgid "Successfully deleted trap custom values" -msgstr "Valeurs personnalisĆ©es de dĆ©routement supprimĆ©es correctement" - -#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:336 -msgid "Error deleting trap custom values" -msgstr "Erreur de suppression des valeurs personnalisĆ©es de dĆ©routement" - -#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:342 -#, php-format -msgid "Uploaded %s/%s traps" -msgstr "DĆ©routements %s/%s tĆ©lĆ©versĆ©s" - -#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:346 -msgid "Fail uploaded file" -msgstr "Erreur de tĆ©lĆ©versement du fichier" - -#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:351 -msgid "" -"MIB files will be loaded and searched for SNMP trap definitions. They will not " -"be installed on the system! You can use the MIB uploader for that purpose." -msgstr "" -"Les fichiers MIB seront chargĆ©s ; ils ont cherchĆ© des dĆ©finitions de " -"dĆ©routements SNMP. Ils ne seront pas installĆ©s sur le systĆØme ! Vous pouvez " -"utiliser le tĆ©lĆ©verseur MIB pour ce faire." - -#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:360 -msgid "Load MIB" -msgstr "Charger MIB" - -#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:362 -msgid "Upload MIB" -msgstr "TĆ©lĆ©verser MIB" - -#: ../../enterprise/godmode/admin_access_logs.php:78 -msgid "Show extended info" -msgstr "Afficher plus d'informations" - -#: ../../enterprise/godmode/admin_access_logs.php:99 -msgid "" -"The security check cannot be performed. There are no data in tsession_extended " -"to check the hash." -msgstr "" -"Le contrĆ“le de sĆ©curitĆ© ne peut pas ĆŖtre effectuĆ©. Il nā€™y a pas de donnĆ©es " -"dans tsession_extended pour vĆ©rifier le hachage." - -#: ../../enterprise/godmode/admin_access_logs.php:108 -msgid "Security check is ok." -msgstr "ContrĆ“le de sĆ©curitĆ© correct" - -#: ../../enterprise/godmode/admin_access_logs.php:113 -msgid "Security check is fail." -msgstr "ProblĆØme de contrĆ“le de sĆ©curitĆ©" - -#: ../../enterprise/godmode/admin_access_logs.php:208 -msgid "Extended info:" -msgstr "Information supplĆ©mentaire :" - -#: ../../enterprise/godmode/admin_access_logs.php:216 -msgid "Changes:" -msgstr "Changements :" - -#: ../../enterprise/godmode/massive/massive_edit_service_elements.php:65 -#: ../../enterprise/godmode/massive/massive_delete_service_elements.php:67 -#: ../../enterprise/godmode/massive/massive_add_service_elements.php:71 -msgid "You must select a service" -msgstr "SĆ©lectionnez un modĆØle" - -#: ../../enterprise/godmode/massive/massive_edit_service_elements.php:131 -msgid "Failed to process updating elements in services: " -msgstr "Impossible de traiter les Ć©lĆ©ments de mise Ć  jour dans les services : " - -#: ../../enterprise/godmode/massive/massive_edit_service_elements.php:153 -#: ../../enterprise/godmode/massive/massive_delete_service_elements.php:112 -#: ../../enterprise/godmode/massive/massive_add_service_elements.php:251 -#, php-format -msgid "%d modules" -msgstr "modules %d" - -#: ../../enterprise/godmode/massive/massive_edit_service_elements.php:161 -#: ../../enterprise/godmode/massive/massive_delete_service_elements.php:120 -#: ../../enterprise/godmode/massive/massive_add_service_elements.php:259 -#, php-format -msgid "%d agents" -msgstr "agents %d" - -#: ../../enterprise/godmode/massive/massive_edit_service_elements.php:169 -#: ../../enterprise/godmode/massive/massive_delete_service_elements.php:128 -#: ../../enterprise/godmode/massive/massive_add_service_elements.php:267 -#, php-format -msgid "%d services" -msgstr "Services %d" - -#: ../../enterprise/godmode/massive/massive_edit_service_elements.php:176 -#: ../../enterprise/godmode/massive/massive_delete_service_elements.php:135 -#: ../../enterprise/godmode/massive/massive_add_service_elements.php:274 -msgid "No changes made" -msgstr "Aucun changement nā€™a Ć©tĆ© fait" - -#: ../../enterprise/godmode/massive/massive_edit_service_elements.php:252 -#: ../../enterprise/godmode/massive/massive_add_service_elements.php:496 -msgid "In smart services weights are automatically calculated." -msgstr "Dans les services intelligents, les poids sont calculĆ©s automatiquement." - -#: ../../enterprise/godmode/massive/massive_edit_service_elements.php:257 -#: ../../enterprise/godmode/massive/massive_add_service_elements.php:501 -msgid "" -"Weights configured are common for every item added to the service, if you want " -"to customize them, please edit each element at service element editor." -msgstr "" -"Les poids configurĆ©s sont communs pour chaque Ć©lĆ©ment ajoutĆ© au service, si " -"vous souhaitez les personnaliser, veuillez modifier chaque Ć©lĆ©ment dans " -"lā€™Ć©diteur dā€™Ć©lĆ©ments de service." - -#: ../../enterprise/godmode/massive/massive_edit_service_elements.php:262 -#: ../../enterprise/godmode/massive/massive_add_service_elements.php:506 -#: ../../enterprise/godmode/massive/massive_create_services.php:1148 -msgid "Service items summary" -msgstr "RĆ©sumĆ© des Ć©lĆ©ments de service" - -#: ../../enterprise/godmode/massive/massive_edit_service_elements.php:291 -#: ../../enterprise/godmode/massive/massive_add_service_elements.php:535 -#: ../../enterprise/godmode/massive/massive_create_services.php:1177 -msgid "Unknown weight" -msgstr "Poids inconnu" - -#: ../../enterprise/godmode/massive/massive_edit_service_elements.php:304 -#: ../../enterprise/godmode/massive/massive_add_service_elements.php:548 -#: ../../enterprise/godmode/massive/massive_create_services.php:1190 -msgid "Normal weight" -msgstr "Poids normal" - -#: ../../enterprise/godmode/massive/massive_edit_service_elements.php:320 -#: ../../enterprise/godmode/massive/massive_delete_service_elements.php:211 -#: ../../enterprise/godmode/massive/massive_add_service_elements.php:564 -#: ../../enterprise/godmode/massive/massive_create_services.php:1205 -msgid "Selected services" -msgstr "Services sĆ©lectionnĆ©s" - -#: ../../enterprise/godmode/massive/massive_edit_service_elements.php:373 -msgid "Update selected service elements" -msgstr "Mettre Ć  jour les Ć©lĆ©ments de service sĆ©lectionnĆ©s" - -#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:491 -#: ../../godmode/massive/massive_edit_modules.php:554 -msgid "Dynamic Min." -msgstr "Dynamique min." - -#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:732 -#: ../../godmode/massive/massive_edit_modules.php:796 -msgid "SMNP community" -msgstr "CommunautĆ© SNMP" - -#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:742 -#: ../../godmode/massive/massive_edit_modules.php:806 -#: ../../godmode/agentes/module_manager_editor_network.php:227 -msgid "SNMP OID" -msgstr "OID SNMP" - -#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:804 -#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:808 -#: ../../godmode/massive/massive_edit_modules.php:861 -#: ../../godmode/massive/massive_edit_modules.php:865 -#: ../../godmode/wizards/HostDevices.class.php:1272 -#: ../../godmode/wizards/HostDevices.class.php:1303 -#: ../../godmode/agentes/module_manager_editor_network.php:349 -#: ../../godmode/agentes/module_manager_editor_network.php:371 -msgid "The pass length must be eight character minimum." -msgstr "La longueur minimale du mot de passe est de huit caractĆØres." - -#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:855 -#: ../../godmode/massive/massive_edit_modules.php:912 -#: ../../godmode/agentes/module_manager_editor_common.php:731 -msgid "Export target" -msgstr "Exporter cible" - -#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:945 -#: ../../godmode/massive/massive_edit_modules.php:998 -msgid "Active Counters" -msgstr "Compteurs actifs" - -#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:946 -#: ../../godmode/massive/massive_edit_modules.php:999 -msgid "Inactive Counters" -msgstr "Compteurs inactifs" - -#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:961 -#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:480 -#: ../../godmode/massive/massive_edit_modules.php:1014 -#: ../../godmode/agentes/module_manager_editor_common.php:865 -msgid "FF interval" -msgstr "Intervalle FF" - -#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:962 -#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:496 -#: ../../godmode/massive/massive_edit_modules.php:1024 -msgid "Module execution flip flop time interval (in secs)." -msgstr "Intervalle de flip-flop d'exĆ©cution de module (en secondes)." - -#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:990 -#: ../../godmode/massive/massive_edit_modules.php:1066 -msgid "Policy linking status" -msgstr "Ɖtat d'association de la politique" - -#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:990 -#: ../../godmode/massive/massive_edit_modules.php:1066 -msgid "This field only has sense in modules adopted by a policy." -msgstr "" -"Ce champ a un sens uniquement pour les modules adoptĆ©s par une politique." - -#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:991 -#: ../../godmode/massive/massive_edit_modules.php:1067 -msgid "Linked" -msgstr "AssociĆ©" - -#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:1000 -#: ../../godmode/modules/manage_network_components_form_common.php:315 -#: ../../godmode/massive/massive_edit_modules.php:1076 -#: ../../godmode/agentes/module_manager_editor_common.php:764 -msgid "Discard unknown events" -msgstr "Supprimer Ć©vĆ©nements inconnus" - -#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:1029 -#: ../../godmode/massive/massive_edit_modules.php:1105 -msgid "The module still store data but the alerts and events will be stop" -msgstr "" -"Le module stocke encore des donnĆ©es, mais les alertes et les Ć©vĆ©nements seront " -"arrĆŖtĆ©s" - -#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:1053 -#: ../../godmode/massive/massive_edit_modules.php:1131 -msgid "Seconds that agent will wait for the execution of the module." -msgstr "Secondes que l'agent attend pour l'exĆ©cution du module." - -#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:1059 -#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:515 -#: ../../godmode/massive/massive_edit_modules.php:1137 -msgid "Number of retries that the module will attempt to run." -msgstr "Nombre de tentatives que le module tente d'Ć©xĆ©cuter." - -#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:1070 -#: ../../godmode/modules/manage_network_components_form_network.php:209 -#: ../../godmode/massive/massive_edit_modules.php:1148 -#: ../../godmode/agentes/module_manager_editor_network.php:281 -msgid "TCP send" -msgstr "Envoyer TCP" - -#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:1073 -#: ../../godmode/modules/manage_network_components_form_network.php:216 -#: ../../godmode/massive/massive_edit_modules.php:1151 -#: ../../godmode/agentes/module_manager_editor_network.php:295 -msgid "TCP receive" -msgstr "Recevoir TCP" - -#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:1076 -#: ../../godmode/modules/manage_network_components_form_wmi.php:31 -#: ../../godmode/massive/massive_edit_modules.php:1154 -#: ../../godmode/agentes/module_manager_editor_wmi.php:133 -msgid "WMI query" -msgstr "RequĆŖte WMI" - -#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:1079 -#: ../../godmode/modules/manage_network_components_form_wizard.php:685 -#: ../../godmode/modules/manage_network_components_form_wmi.php:33 -#: ../../godmode/massive/massive_edit_modules.php:1157 -#: ../../godmode/agentes/module_manager_editor_wmi.php:151 -msgid "Key string" -msgstr "ChaĆ®ne clĆ©" - -#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:1082 -#: ../../godmode/modules/manage_network_components_form_wmi.php:39 -#: ../../godmode/massive/massive_edit_modules.php:1160 -#: ../../godmode/agentes/module_manager_editor_wmi.php:164 -msgid "Field number" -msgstr "Nombre de champs" - -#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:1085 -#: ../../godmode/servers/plugin_registration.php:503 -#: ../../godmode/modules/manage_network_components_form_plugin.php:35 -#: ../../godmode/massive/massive_edit_plugins.php:346 -#: ../../godmode/massive/massive_edit_modules.php:1163 -#: ../../godmode/agentes/module_manager_editor_plugin.php:49 -msgid "Plugin" -msgstr "Plugin" - -#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:1135 -#: ../../godmode/modules/manage_network_components_form_network.php:258 -#: ../../godmode/massive/massive_edit_modules.php:1213 -#: ../../godmode/agentes/module_manager_editor_network.php:477 -msgid "Inherited" -msgstr "HĆ©ritĆ©" - -#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:1136 -#: ../../godmode/modules/manage_network_components_form_network.php:259 -#: ../../godmode/massive/massive_edit_modules.php:1214 -msgid "Linux" -msgstr "Linux" - -#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:1137 -#: ../../godmode/modules/manage_network_components_form_network.php:260 -#: ../../godmode/massive/massive_edit_modules.php:1215 -msgid "Windows" -msgstr "Windows" - -#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:1140 -#: ../../godmode/modules/manage_network_components_form_network.php:263 -#: ../../godmode/massive/massive_edit_modules.php:1218 -msgid "Target OS" -msgstr "SystĆØme dā€™exploitation cible" - -#: ../../enterprise/godmode/massive/massive_operations.php:115 -msgid "Bulk alerts policy add" -msgstr "Ajouter alertes de politiques massivement" - -#: ../../enterprise/godmode/massive/massive_operations.php:116 -msgid "Bulk alerts policy delete" -msgstr "Supprimer alertes de politiques massivement" - -#: ../../enterprise/godmode/massive/massive_operations.php:117 -msgid "Bulk tags module policy edit" -msgstr "Ɖditer les Ć©tiquettes de politiques de modules massivement" - -#: ../../enterprise/godmode/massive/massive_operations.php:118 -msgid "Bulk modules policy tags edit" -msgstr "Ɖditer les Ć©tiquettes de politiques de modules massivement" - -#: ../../enterprise/godmode/massive/massive_operations.php:119 -msgid "Bulk modules policy add from agent" -msgstr "Ajout de politiques de modules en bloc Ć  partir de lā€™agent" - -#: ../../enterprise/godmode/massive/massive_operations.php:120 -msgid "Bulk modules policy edit" -msgstr "Modification des politiques des modules en bloc" - -#: ../../enterprise/godmode/massive/massive_operations.php:131 -msgid "Bulk alert SNMP delete" -msgstr "Supprimer massivement les alertes SNMP" - -#: ../../enterprise/godmode/massive/massive_operations.php:132 -msgid "Bulk alert SNMP edit" -msgstr "Ɖditer massivement les alertes SNMP" - -#: ../../enterprise/godmode/massive/massive_operations.php:143 -msgid "Bulk Satellite modules edit" -msgstr "Ɖditer massivement les modules Satellite" - -#: ../../enterprise/godmode/massive/massive_operations.php:156 -msgid "Bulk services creation" -msgstr "CrĆ©ation de services en bloc" - -#: ../../enterprise/godmode/massive/massive_operations.php:160 -msgid "Bulk services deletion" -msgstr "Suppression de services en bloc" - -#: ../../enterprise/godmode/massive/massive_delete_service_elements.php:90 -msgid "Failed to process deleting services elements: " -msgstr "Ɖchec du traitement de la suppression des Ć©lĆ©ments de services : " - -#: ../../enterprise/godmode/massive/massive_delete_service_elements.php:131 -msgid "removed" -msgstr "supprimĆ©" - -#: ../../enterprise/godmode/massive/massive_delete_service_elements.php:264 -msgid "Remove selected" -msgstr "Ɖliminer la sĆ©lection" - -#: ../../enterprise/godmode/massive/massive_delete_alerts_policy.php:88 -msgid "Success: remove the alerts." -msgstr "Alertes supprimĆ©es correctement" - -#: ../../enterprise/godmode/massive/massive_delete_alerts_policy.php:88 -msgid "Failed: remove the alerts for this modules, please check." -msgstr "" -"Erreur de suppression des alertes pour ces modules. Veuillez les vĆ©rifier." - -#: ../../enterprise/godmode/massive/massive_delete_alerts_policy.php:125 -#: ../../enterprise/godmode/massive/massive_add_alerts_policy.php:115 -#: ../../enterprise/godmode/policies/policy_alerts.php:642 -#: ../../godmode/massive/massive_add_alerts.php:280 -#: ../../godmode/massive/massive_standby_alerts.php:217 -#: ../../godmode/massive/massive_delete_alerts.php:271 -#: ../../godmode/massive/massive_enable_disable_alerts.php:189 -msgid "Alert template" -msgstr "ModĆØle d'alerte" - -#: ../../enterprise/godmode/massive/massive_delete_alerts_policy.php:141 -msgid "Modules agents in policy" -msgstr "Modules des agents dans la politique" - -#: ../../enterprise/godmode/massive/massive_edit_tags_policy.php:92 -#: ../../enterprise/godmode/massive/massive_tags_edit_policy.php:87 -msgid "Successful update the tags" -msgstr "Ɖtiquettes mises Ć  jour correctement" - -#: ../../enterprise/godmode/massive/massive_edit_tags_policy.php:93 -#: ../../enterprise/godmode/massive/massive_tags_edit_policy.php:88 -msgid "Unsuccessful update the tags" -msgstr "Erreur de mise Ć  jour des Ć©tiquettes" - -#: ../../enterprise/godmode/massive/massive_edit_tags_policy.php:143 -msgid "Tags unused" -msgstr "Ɖtiquettes non utilisĆ©es" - -#: ../../enterprise/godmode/massive/massive_edit_tags_policy.php:183 -msgid "Tags used" -msgstr "Ɖtiquettes utilisĆ©es" - -#: ../../enterprise/godmode/massive/massive_add_alerts_policy.php:87 -msgid "Success: create the alerts." -msgstr "Alertes crĆ©Ć©es correctement" - -#: ../../enterprise/godmode/massive/massive_add_alerts_policy.php:87 -msgid "Failed: create the alerts for this modules, please check." -msgstr "Erreur de crĆ©ation des alertes pour ces modules. Veuillez les vĆ©rifier." - -#: ../../enterprise/godmode/massive/massive_add_alerts_policy.php:131 -msgid "Modules in policy" -msgstr "Modules dans la politique" - -#: ../../enterprise/godmode/massive/massive_delete_services.php:50 -#, php-format -msgid "Failed to delete: %s" -msgstr "Impossible de supprimer : %s" - -#: ../../enterprise/godmode/massive/massive_add_service_elements.php:112 -#, php-format -msgid "Problems while adding module element: %d, %s" -msgstr "ProblĆØmes lors de lā€™ajout dā€™un Ć©lĆ©ment de module : %d, %s" - -#: ../../enterprise/godmode/massive/massive_add_service_elements.php:157 -#, php-format -msgid "Problems while adding agent element: %d, %s" -msgstr "ProblĆØmes lors de lā€™ajout dā€™un Ć©lĆ©ment dā€™agent : %d, %s" - -#: ../../enterprise/godmode/massive/massive_add_service_elements.php:205 -#, php-format -msgid "%s: %d, %s" -msgstr "%s: %d, %s" - -#: ../../enterprise/godmode/massive/massive_add_service_elements.php:228 -msgid "Failed to process adding elements in services: " -msgstr "Impossible de traiter lā€™ajout dā€™Ć©lĆ©ments dans les services : " - -#: ../../enterprise/godmode/massive/massive_add_service_elements.php:270 -msgid "added" -msgstr "ajoutĆ©" - -#: ../../enterprise/godmode/massive/massive_add_service_elements.php:354 -msgid "Item type to be added" -msgstr "Type dā€™Ć©lĆ©ment Ć  ajouter" - -#: ../../enterprise/godmode/massive/massive_add_service_elements.php:371 -#: ../../enterprise/godmode/massive/massive_create_services.php:974 -msgid "Add selected" -msgstr "Ajouter la sĆ©lection" - -#: ../../enterprise/godmode/massive/massive_add_modules_policy.php:75 -msgid "Successfully copied " -msgstr "CopiĆ© correctement" - -#: ../../enterprise/godmode/massive/massive_add_modules_policy.php:82 -msgid " cannot be copied to " -msgstr " ne peut pas ĆŖtre copiĆ© dans " - -#: ../../enterprise/godmode/massive/massive_add_modules_policy.php:82 -msgid " policy" -msgstr " politique" - -#: ../../enterprise/godmode/massive/massive_add_modules_policy.php:190 -#: ../../godmode/massive/massive_copy_modules.php:213 -msgid "No modules for this agent" -msgstr "Aucun module pour cet agent" - -#: ../../enterprise/godmode/massive/massive_add_modules_policy.php:223 -msgid "To policies" -msgstr "Aux politiques" - -#: ../../enterprise/godmode/massive/massive_add_modules_policy.php:359 -#: ../../godmode/massive/massive_add_alerts.php:324 -#: ../../godmode/massive/massive_edit_agents.php:1199 -#: ../../godmode/massive/massive_delete_alerts.php:388 -msgid "" -"Unsucessful sending the data, please contact with your administrator or make " -"with less elements." -msgstr "" -"Envoi de donnĆ©es Ć©chouĆ©. Veuillez communiquer avec votre administrateur ou " -"rĆ©essayer avec moins d'Ć©lĆ©ments." - -#: ../../enterprise/godmode/massive/massive_add_modules_policy.php:376 -msgid "No destiny policies to copy" -msgstr "Pas de politiques de destin Ć  copier" - -#: ../../enterprise/godmode/massive/massive_delete_alerts_snmp.php:159 -#: ../../godmode/snmpconsole/snmp_alert.php:724 -#, php-format -msgid "Successfully deleted alerts (%s / %s)" -msgstr "Alertes supprimĆ©es correctement (%s / %s)" - -#: ../../enterprise/godmode/massive/massive_delete_alerts_snmp.php:167 -#: ../../godmode/snmpconsole/snmp_alert.php:728 -#, php-format -msgid "Unsuccessfully deleted alerts (%s / %s)" -msgstr "Erreur de suppression des alertes (%s / %s)" - -#: ../../enterprise/godmode/massive/massive_delete_alerts_snmp.php:175 -#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:233 -msgid "You must select a SNMP alert" -msgstr "SĆ©lectionnez une alerte SNMP" - -#: ../../enterprise/godmode/massive/massive_delete_alerts_snmp.php:198 -#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:258 -msgid "" -"Search by these fields description, OID, Custom Value, SNMP Agent (IP), Single " -"value, each Custom OIDs/Datas." -msgstr "" -"Recherche par description de ces champs, OID, Valeur personnalisĆ©e, Agent SNMP " -"(IP), Valeur unique, chaque OID personnalisĆ©s/DonnĆ©es." - -#: ../../enterprise/godmode/massive/massive_delete_alerts_snmp.php:217 -msgid "SNMP Alerts to be deleted" -msgstr "Alertes SNMP Ć  supprimer" - -#: ../../enterprise/godmode/massive/massive_delete_alerts_snmp.php:289 -#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:403 -msgid "No snmp alert found." -msgstr "Aucune alerte snmp trouvĆ©e." - -#: ../../enterprise/godmode/massive/massive_create_services.php:210 -#, php-format -msgid "Failed to create service for agent %s, %s" -msgstr "Impossible de crĆ©er le service pour les %s de lā€™agent, %s" - -#: ../../enterprise/godmode/massive/massive_create_services.php:294 -#, php-format -msgid "Failed to create service for module %s, %s" -msgstr "Impossible de crĆ©er un service pour le %s du module, %s" - -#: ../../enterprise/godmode/massive/massive_create_services.php:380 -#, php-format -msgid "Failed to create service for service %s, %s" -msgstr "Impossible de crĆ©er le service pour les %s du service, %s" - -#: ../../enterprise/godmode/massive/massive_create_services.php:435 -#, php-format -msgid "Agent selected %d not found" -msgstr "Agent sĆ©lectionnĆ© %d introuvable" - -#: ../../enterprise/godmode/massive/massive_create_services.php:481 -#, php-format -msgid "Module selected %d not found" -msgstr "Module sĆ©lectionnĆ© %d introuvable" - -#: ../../enterprise/godmode/massive/massive_create_services.php:528 -#, php-format -msgid "Service selected %d not found" -msgstr "Service sĆ©lectionnĆ© %d introuvable" - -#: ../../enterprise/godmode/massive/massive_create_services.php:562 -#, php-format -msgid "Failed to create service for agent %s" -msgstr "Impossible de crĆ©er le service pour les %s de lā€™agent" - -#: ../../enterprise/godmode/massive/massive_create_services.php:573 -#, php-format -msgid "Failed to create services: %s" -msgstr "Impossible de crĆ©er des services : %s" - -#: ../../enterprise/godmode/massive/massive_create_services.php:593 -#, php-format -msgid "%d services created with %d items" -msgstr "%d services crĆ©Ć©s avec des Ć©lĆ©ments %d" - -#: ../../enterprise/godmode/massive/massive_create_services.php:599 -msgid "No services created" -msgstr "Aucun service crĆ©Ć©" - -#: ../../enterprise/godmode/massive/massive_create_services.php:632 -msgid "Service(s) definition" -msgstr "DĆ©finition du(s) service(s)" - -#: ../../enterprise/godmode/massive/massive_create_services.php:765 -msgid "Create a service per item" -msgstr "CrĆ©er un service par Ć©lĆ©ment" - -#: ../../enterprise/godmode/massive/massive_create_services.php:766 -msgid "If enabled multiple services will be created." -msgstr "Si cette option est activĆ©e, plusieurs services seront crĆ©Ć©s." - -#: ../../enterprise/godmode/massive/massive_create_services.php:784 -msgid "Services header" -msgstr "En-tĆŖte Services" - -#: ../../enterprise/godmode/massive/massive_create_services.php:785 -msgid "All services names created will start with selected name." -msgstr "Tous les noms de services crĆ©Ć©s commenceront par le nom sĆ©lectionnĆ©." - -#: ../../enterprise/godmode/massive/massive_create_services.php:839 -msgid "SLA calculation" -msgstr "Calcul du SLA" - -#: ../../enterprise/godmode/massive/massive_create_services.php:946 -msgid "Items selected here will be added to the lists at Service items summary." -msgstr "" -"Les Ć©lĆ©ments sĆ©lectionnĆ©s ici seront ajoutĆ©s aux listes dans RĆ©sumĆ© des " -"Ć©lĆ©ments de service." - -#: ../../enterprise/godmode/massive/massive_create_services.php:949 -msgid "Item(s) definition" -msgstr "DĆ©finition dā€™Ć©lĆ©ment(s)" - -#: ../../enterprise/godmode/massive/massive_create_services.php:957 -msgid "Item type" -msgstr "Type d'Ć©lĆ©ment" - -#: ../../enterprise/godmode/massive/massive_create_services.php:1144 -msgid "" -"Weights configured are common for every item added to the service, if you want " -"to customize them, please edit the service." -msgstr "" -"Les poids configurĆ©s sont communs pour chaque article ajoutĆ© au service, si " -"vous souhaitez les personnaliser, veuillez modifier le service." - -#: ../../enterprise/godmode/massive/massive_create_services.php:1260 -msgid "Create services" -msgstr "CrĆ©er des services" - -#: ../../enterprise/godmode/massive/massive_tags_edit_policy.php:127 -msgid "Modules unused" -msgstr "Modules non utilisĆ©s" - -#: ../../enterprise/godmode/massive/massive_tags_edit_policy.php:167 -msgid "Modules used" -msgstr "Modules utilisĆ©s" - -#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:217 -#, php-format -msgid "Successfully updated alerts (%s / %s)" -msgstr "Alertes (%s / %s) mises Ć  jour correctement" - -#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:225 -#, php-format -msgid "Unsuccessfully updated alerts (%s / %s)" -msgstr "Erreur de mise Ć  jour des alertes (%s / %s)" - -#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:277 -msgid "SNMP Alerts to be edit" -msgstr "Alertes SNMP Ć  modifier" - -#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:301 -#: ../../godmode/snmpconsole/snmp_alert.php:781 -msgid "Custom Value/OID" -msgstr "Valeur/OID personnalisĆ©e" - -#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:307 -#: ../../godmode/snmpconsole/snmp_alert.php:835 -msgid "Single value" -msgstr "Valeur unique" - -#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:309 -#: ../../godmode/snmpconsole/snmp_alert.php:1075 -#: ../../godmode/alerts/configure_alert_template.php:691 -msgid "Min. number of alerts" -msgstr "Nombre minimum d'alertes" - -#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:311 -#: ../../godmode/snmpconsole/snmp_alert.php:1078 -#: ../../godmode/alerts/configure_alert_template.php:728 -msgid "Max. number of alerts" -msgstr "Nombre maximum d'alertes" - -#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:326 -#: ../../godmode/snmpconsole/snmp_alert.php:1097 -msgid "Other value" -msgstr "Autre valeur" - -#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:211 -#: ../../godmode/massive/massive_delete_modules.php:372 -#: ../../godmode/massive/massive_edit_modules.php:356 -msgid "Agent group" -msgstr "Groupe d'agent" - -#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:242 -msgid "Filter module" -msgstr "Filtrer le module" - -#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:261 -#: ../../godmode/massive/massive_add_alerts.php:260 -#: ../../godmode/massive/massive_delete_modules.php:551 -#: ../../godmode/massive/massive_add_action_alerts.php:220 -#: ../../godmode/massive/massive_delete_action_alerts.php:241 -#: ../../godmode/massive/massive_delete_alerts.php:341 -#: ../../godmode/massive/massive_edit_modules.php:524 -msgid "When select agents" -msgstr "Lorsque des agents sont sĆ©lectionnĆ©s" - -#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:423 -msgid "Updated modules on database" -msgstr "Mettre Ć  jour les modules dans la base de donnĆ©es" - -#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:425 -msgid "Agent configuration files updated" -msgstr "Fichiers de configuration de l'agent mis Ć  jour" - -#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:691 -msgid "No changes have been made." -msgstr "Aucun changement nā€™a Ć©tĆ© apportĆ©." - -#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:179 -msgid "Command Mysqldump is failed." -msgstr "La commande Mysqldump a Ć©chouĆ©." - -#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:225 -#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:238 -#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:287 -#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:306 -#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:386 -#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:403 -msgid "Failed to create task" -msgstr "Ɖchec de crĆ©ation de la tache" - -#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:293 -msgid "No template selected" -msgstr "Aucun modĆØle sĆ©lectionnĆ©" - -#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:412 -msgid "I do not know what you want to do" -msgstr "Je sais ce que tu veux faire." - -#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:429 -#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:611 -msgid "You have no access to manage console tasks." -msgstr "Vous n'avez pas accĆØs Ć  la gestion des tĆ¢ches de la console." - -#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:446 -#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:517 -msgid "Create new console task" -msgstr "CrĆ©er une nouvelle tĆ¢che de console" - -#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:489 -msgid "Updating console task" -msgstr "TĆ¢che de mise Ć  jour de la console" - -#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:514 -#: ../../godmode/menu.php:33 -#: ../../godmode/wizards/DiscoveryTaskList.class.php:105 -msgid "Task list" -msgstr "Liste de tĆ¢ches" - -#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:519 -msgid "Update console task" -msgstr "TĆ¢che de mise Ć  jour de la console" - -#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:650 -msgid "Next Execution" -msgstr "Prochaine ExĆ©cution" - -#: ../../enterprise/godmode/wizards/Applications.class.php:186 -#: ../../enterprise/godmode/wizards/Cloud.class.php:210 -msgid "" -"All company names used here are for identification purposes only. Use of these " -"names, logos, and brands does not imply endorsement." -msgstr "" -"Tous les noms de sociĆ©tĆ©s utilisĆ©s ici sont uniquement Ć  des fins " -"d'identification. L'utilisation de ces noms, logos et marques n'implique pas " -"une approbation." - -#: ../../enterprise/godmode/wizards/Cloud.class.php:240 -#: ../../enterprise/godmode/wizards/Cloud.class.php:248 -#, php-format -msgid "%s credentials" -msgstr "Identifiants %s" - -#: ../../enterprise/godmode/wizards/Cloud.class.php:264 -msgid "" -"If a task with the selected credentials is already running, it will be edited. " -"To create a new one, another account from the credential store must be " -"selected." -msgstr "" -"Si une tĆ¢che avec les informations dā€™identification sĆ©lectionnĆ©es est dĆ©jĆ  en " -"cours dā€™exĆ©cution, elle sera modifiĆ©e. Pour en crĆ©er un nouveau, un autre " -"compte du magasin dā€™informations dā€™identification doit ĆŖtre sĆ©lectionnĆ©." - -#: ../../enterprise/godmode/wizards/Cloud.class.php:284 -msgid "Manage accounts" -msgstr "GĆ©rer les comptes" - -#: ../../enterprise/godmode/wizards/Cloud.class.php:296 -msgid "Cloud tool full path" -msgstr "Chemin complet de l'outil cloud" - -#: ../../enterprise/godmode/wizards/Cloud.class.php:304 -msgid "Account" -msgstr "Compte" - -#: ../../enterprise/godmode/wizards/Cloud.class.php:365 -msgid "Select a set of credentials from the list" -msgstr "SĆ©lectionnez un ensemble d'informations d'identification dans la liste" - -#: ../../enterprise/godmode/wizards/Cloud.class.php:378 -#, php-format -msgid "Path %s is not executable." -msgstr "Le chemin %s n'est pas exĆ©cutable." - -#: ../../enterprise/godmode/wizards/Cloud.class.php:423 -msgid "Account disconnected" -msgstr "Compte dĆ©connectĆ©" - -#: ../../enterprise/godmode/wizards/Cloud.class.php:425 -msgid "Failed disconnecting account" -msgstr "Ɖchec de la dĆ©connexion du compte" - -#: ../../enterprise/godmode/wizards/Cloud.class.php:503 -msgid "Credentials successfully updated" -msgstr "Identifiants mis Ć  jour correctement" - -#: ../../enterprise/godmode/wizards/Cloud.class.php:505 -msgid "Failed updating credentials process" -msgstr "Ɖchec du processus de mise Ć  jour des identifiants" - -#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:58 -#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:61 -msgid "The changes on this field are linked with the configuration data." -msgstr "Les modifications de ce champ sont liĆ©es aux donnĆ©es de configuration." - -#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:67 -msgid "Using local component" -msgstr "Utilisation du composant local en cours" - -#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:76 -#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:96 -#: ../../godmode/agentes/module_manager_editor_common.php:118 -#: ../../godmode/agentes/module_manager_editor_common.php:135 -msgid "Manual setup" -msgstr "Configuration manuelle" - -#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:88 -#: ../../godmode/agentes/module_manager_editor_common.php:127 -msgid "No component was found" -msgstr "Aucun composant a Ć©tĆ© trouvĆ©" - -#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:155 -msgid "Show configuration data" -msgstr "Afficher les donnĆ©es de configuration" - -#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:166 -msgid "Hide configuration data" -msgstr "Cacher les donnĆ©es de configuration" - -#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:174 -msgid "Data configuration" -msgstr "Configuration des donnĆ©es" - -#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:24 -msgid "Capacity planning" -msgstr "Planification de la capacitĆ©" - -#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:26 -msgid "Synthetic arithmetic" -msgstr "ArithmĆ©tique synthĆ©tique" - -#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:27 -msgid "Synthetic average" -msgstr "Moyenne synthĆ©tique" - -#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:28 -msgid "Trending module" -msgstr "Module tendance" - -#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:114 -msgid "Fixed value" -msgstr "Valeur fixe" - -#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:119 -msgid "Add module to operation as add" -msgstr "Ajouter un module Ć  l'opĆ©ration comme somme" - -#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:120 -msgid "Add module to operations as deduct" -msgstr "Ajouter un module Ć  l'opĆ©ration comme soustraction" - -#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:121 -msgid "Add module to operations as multiplicate " -msgstr "Ajouter un module Ć  l'opĆ©ration comme multiplication " - -#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:122 -msgid "Add module to operations as divide" -msgstr "Ajouter un module Ć  l'opĆ©ration comme division" - -#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:123 -msgid "Remove selected modules" -msgstr "Supprimer les modules sĆ©lectionnĆ©s" - -#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:128 -msgid "Add module to average operation" -msgstr "Ajouter un module Ć  l'opĆ©ration moyenne" - -#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:129 -msgid "Remove selected modules from operations stack" -msgstr "Supprimer les modules sĆ©lectionnĆ©s des opĆ©rations en attente" - -#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:144 -msgid "Move down selected modules" -msgstr "DĆ©placer les modules sĆ©lectionnĆ©s vers le bas" - -#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:145 -msgid "Move up selected modules" -msgstr "DĆ©placer les modules sĆ©lectionnĆ©s vers le haut" - -#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:175 -msgid "Select Service" -msgstr "SĆ©lectionner un service" - -#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:188 -msgid "Netflow filter" -msgstr "Filtre Netflow" - -#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:197 -msgid "Select filter" -msgstr "SĆ©lectionner un filtre" - -#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:207 -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/agent_disk_conf_editor.php:121 -msgid "Error: The conf file of agent is not readble." -msgstr "" -"Erreur : le fichier de configuration de l'agent n'est pas accessible en " -"lecture." - -#: ../../enterprise/godmode/agentes/agent_disk_conf_editor.php:125 -msgid "Error: The conf file of agent is not writable." -msgstr "" -"Erreur: Le fichier de configuraton de l'agent n'est pas accessible en Ć©criture." - -#: ../../enterprise/godmode/agentes/agent_disk_conf_editor.php:178 -#: ../../enterprise/godmode/policies/policy_modules.php:387 -msgid "Add module" -msgstr "Ajouter un module" - -#: ../../enterprise/godmode/agentes/agent_disk_conf_editor.php:213 -msgid "No module was found" -msgstr "Aucun module a Ć©tĆ© trouvĆ©" - -#: ../../enterprise/godmode/agentes/agent_disk_conf_editor.php:248 -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 -msgid "" -"Delete this conf file implies that for restore you must reactive remote config " -"in the local agent." -msgstr "" -"Si vous supprimez ce fichier de configuration, vous devrez rĆ©activer la " -"configuration Ć  distance dans l'agent local pour le rĆ©tablir." - -#: ../../enterprise/godmode/agentes/module_manager.php:48 -msgid "Create a new web analysis module" -msgstr "CrĆ©er un nouveau module dā€™analyse Web" - -#: ../../enterprise/godmode/agentes/agent_autoconfiguration.php:47 -msgid "Cannot delete autoconfiguration" -msgstr "Impossible de supprimer la configuration automatique" - -#: ../../enterprise/godmode/agentes/agent_autoconfiguration.php:62 -#: ../../godmode/setup/license.php:151 ../../godmode/setup/license.php:154 -msgid "enabled" -msgstr "activĆ©" - -#: ../../enterprise/godmode/agentes/agent_autoconfiguration.php:63 -msgid "enabling" -msgstr "activation" - -#: ../../enterprise/godmode/agentes/agent_autoconfiguration.php:65 -#: ../../godmode/setup/license.php:151 ../../godmode/setup/license.php:154 -msgid "disabled" -msgstr "dĆ©sactivĆ©" - -#: ../../enterprise/godmode/agentes/agent_autoconfiguration.php:66 -msgid "disabling" -msgstr "dĆ©sactivation" - -#: ../../enterprise/godmode/agentes/agent_autoconfiguration.php:71 -#, php-format -msgid "Successfully %s" -msgstr "%s avec succĆØs" - -#: ../../enterprise/godmode/agentes/agent_autoconfiguration.php:72 -#, php-format -msgid "Error %s" -msgstr "Erreur %s" - -#: ../../enterprise/godmode/agentes/agent_autoconfiguration.php:92 -#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:257 -msgid "Agent autoconfiguration list" -msgstr "Liste de configuration automatique de lā€™agent" - -#: ../../enterprise/godmode/agentes/agent_autoconfiguration.php:154 -msgid "There are no defined autoconfigurations" -msgstr "Il nā€™y a pas de configuration automatique dĆ©finie" - -#: ../../enterprise/godmode/agentes/agent_autoconfiguration.php:191 -msgid "Add new configuration definition" -msgstr "Ajouter une nouvelle dĆ©finition de configuration" - -#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:69 -msgid "Cannot delete rule from autoconfiguration" -msgstr "Impossible de supprimer la rĆØgle de la configuration automatique" - -#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:75 -msgid "Agent Autoconfiguration Information" -msgstr "Informations sur la configuration automatique de lā€™agent" - -#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:76 -msgid "You must click the Create or Update buttom for a correct configuration!!!" -msgstr "Cliquez sur CrĆ©er ou Mettre Ć  jour pour une configuration correcte !" - -#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:84 -msgid "" -"Cannot create autoconfiguration from read only console, please create from " -"metaconsole (centralized management)" -msgstr "" -"Impossible de crĆ©er une configuration automatique Ć  partir de la console en " -"lecture seule, veuillez crĆ©er Ć  partir de la MĆ©taconsole (gestion centralisĆ©e)" - -#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:101 -msgid "Cannot create autoconfiguration in metaconsole" -msgstr "Impossible de crĆ©er une configuration automatique dans la MĆ©taconsole" - -#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:109 -msgid "Cannot create unnamed autoconfiguration" -msgstr "Impossible de crĆ©er une configuration automatique sans nom" - -#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:119 -msgid "" -"Cannot udpate autoconfiguration from read only console, please create from " -"metaconsole (centralized management)" -msgstr "" -"Impossible de mettre Ć  jour lā€™autoconfiguration Ć  partir de la console en " -"lecture seule, veuillez crĆ©er Ć  partir de MĆ©taconsole (gestion centralisĆ©e)" - -#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:132 -msgid "Cannot update autoconfiguration" -msgstr "Impossible de mettre Ć  jour la configuration automatique" - -#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:142 -#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:181 -msgid "" -"Cannot modify autoconfiguration from read only console, please create from " -"metaconsole (centralized management)" -msgstr "" -"Impossible de modifier la configuration automatique Ć  partir de la console en " -"lecture seule, veuillez crĆ©er Ć  partir de la MĆ©taconsole (gestion centralisĆ©e)" - -#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:300 -msgid "Autoconfiguration" -msgstr "Configuration automatique" - -#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:370 -msgid "Add rule" -msgstr "Ajouter une rĆØgle" - -#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:375 -msgid "Rules" -msgstr "RĆØgles" - -#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:397 -msgid "New group" -msgstr "Nouveau groupe" - -#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:584 -#: ../../enterprise/godmode/policies/configure_policy.php:47 -msgid "Add policy" -msgstr "Ajouter une politique" - -#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:616 -msgid "Extra configuration block" -msgstr "Bloc de configuration supplĆ©mentaire" - -#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:618 -msgid "" -"Put here any extra configuration you want to be applied to any new agent " -"matching previously defined rules" -msgstr "" -"Mettez ici toute configuration supplĆ©mentaire que vous souhaitez appliquer Ć  " -"tout nouvel agent correspondant Ć  des rĆØgles prĆ©cĆ©demment dĆ©finies" - -#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:651 -#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:682 -msgid "Extra actions" -msgstr "Actions supplĆ©mentaires" - -#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:672 -#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:975 -msgid "Add extra action" -msgstr "Ajouter une action supplĆ©mentaire" - -#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:840 -msgid "Add new rule" -msgstr "Ajouter une nouvelle rĆØgle" - -#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:1062 -msgid "Update extra action" -msgstr "Mettre Ć  jour lā€™action supplĆ©mentaire" - -#: ../../enterprise/godmode/agentes/collection_manager.php:77 -msgid "Succesful add the collection" -msgstr "La collection a Ć©tĆ© ajoutĆ©e correctement" - -#: ../../enterprise/godmode/agentes/collection_manager.php:78 -msgid "Unsuccesful add the collection" -msgstr "Erreur d'ajout de la collection" - -#: ../../enterprise/godmode/agentes/collections.editor.php:98 -msgid "Files in " -msgstr "Les fichiers dans " - -#: ../../enterprise/godmode/agentes/collections.editor.php:109 -#: ../../enterprise/godmode/agentes/collections.data.php:395 -#: ../../enterprise/godmode/agentes/collections.php:92 -#, php-format -msgid "" -"This console is not manager of this environment, please manage this feature " -"from %s." -msgstr "" -"Cette console nā€™est pas gestionnaire de cet environnement, veuillez gĆ©rer " -"cette fonctionnalitĆ© Ć  partir de %s." - -#: ../../enterprise/godmode/agentes/manage_config_remote.php:42 -msgid "Data Copy" -msgstr "Copie de donnĆ©es" - -#: ../../enterprise/godmode/agentes/manage_config_remote.php:49 -msgid "No selected agents to copy" -msgstr "Aucun agent Ć  copier sĆ©lectionnĆ©" - -#: ../../enterprise/godmode/agentes/manage_config_remote.php:62 -msgid "No source agent selected" -msgstr "Aucun agent de la source sĆ©lectionnĆ©" - -#: ../../enterprise/godmode/agentes/manage_config_remote.php:108 -msgid "Making copy of configuration file for" -msgstr "Copie du fichier de configuration en cours pour" - -#: ../../enterprise/godmode/agentes/manage_config_remote.php:117 -msgid "Error copying md5 file " -msgstr "Erreur de copie du fichier md5 " - -#: ../../enterprise/godmode/agentes/manage_config_remote.php:117 -#: ../../enterprise/godmode/agentes/manage_config_remote.php:119 -msgid " md5 file" -msgstr " fichier md5" - -#: ../../enterprise/godmode/agentes/manage_config_remote.php:119 -#: ../../enterprise/godmode/agentes/manage_config_remote.php:125 -msgid "Copied " -msgstr "CopiĆ© " - -#: ../../enterprise/godmode/agentes/manage_config_remote.php:123 -msgid "Error copying " -msgstr "Erreur de copie " - -#: ../../enterprise/godmode/agentes/manage_config_remote.php:123 -#: ../../enterprise/godmode/agentes/manage_config_remote.php:125 -msgid " config file" -msgstr " fichier de configuration" - -#: ../../enterprise/godmode/agentes/manage_config_remote.php:135 -msgid "Remote configuration management" -msgstr "Gestion de la configuration Ć  distance" - -#: ../../enterprise/godmode/agentes/manage_config_remote.php:186 -msgid "To agent(s):" -msgstr "Pour les agents :" - -#: ../../enterprise/godmode/agentes/manage_config_remote.php:203 -msgid "Replicate configuration" -msgstr "RĆ©pliquer la configuration" - -#: ../../enterprise/godmode/agentes/collections.agents.php:36 -msgid "Show Agent >" -msgstr "Afficher lā€™agent >" - -#: ../../enterprise/godmode/agentes/collections.agents.php:120 -#: ../../enterprise/godmode/agentes/collections.agents.php:124 -msgid "This collection has not been added to any agents" -msgstr "Cette collection nā€™a Ć©tĆ© ajoutĆ©e Ć  aucun agent" - -#: ../../enterprise/godmode/agentes/collections.data.php:384 -msgid "Collection updated successfully" -msgstr "Collection mise Ć  jour correctement" - -#: ../../enterprise/godmode/agentes/collections.data.php:410 -msgid "Please go to the metaconsole and apply this collection" -msgstr "Veuillez vous rendre sur la MĆ©taconsole et appliquer cette collection" - -#: ../../enterprise/godmode/agentes/collections.data.php:414 -msgid "Error: The collection directory does not exist." -msgstr "Erreur : le rĆ©pertoire de la collection n'existe pas." - -#: ../../enterprise/godmode/agentes/pandora_networkmap_empty.editor.php:93 -#: ../../godmode/agentes/pandora_networkmap_empty.editor.php:95 -msgid "Empty Network maps editor" -msgstr "Ɖditeur de cartes rĆ©seau vide" - -#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:98 -#: ../../godmode/agentes/module_manager_editor_common.php:238 -msgid "Delete module" -msgstr "Supprimer le module" - -#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:127 -msgid "Run performance tests" -msgstr "ExĆ©cuter des tests de performances" - -#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:138 -msgid "Target web site" -msgstr "Site Web cible" - -#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:140 -msgid "" -"The url specified in this field is mandatory to retrieve performance stats." -msgstr "" -"Lā€™URL spĆ©cifiĆ©e dans ce champ est obligatoire pour rĆ©cupĆ©rer les statistiques " -"de performances." - -#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:154 -msgid "target web site (http://...)" -msgstr "site web cible (http://...)" - -#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:161 -msgid "Execute tests from" -msgstr "ExĆ©cuter des tests Ć  partir de" - -#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:177 -msgid "Browser" -msgstr "Navigateur" - -#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:179 -msgid "" -"Support for IE and Edge browsers is experimental. Tests might not work as " -"expected." -msgstr "" -"La prise en charge des navigateurs IE et Edge est expĆ©rimentale. Les tests " -"peuvent ne pas fonctionner comme prĆ©vu." - -#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:221 -msgid "Accept insecure certificates" -msgstr "Accepter les certificats non sĆ©curisĆ©s" - -#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:223 -msgid "Only Selenium 3." -msgstr "Seulement SĆ©lĆ©nium 3." - -#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:349 -msgid "Paste your selenium test, exported as HTML, here" -msgstr "Collez votre test de sĆ©lĆ©nium, exportĆ© au format HTML, ici" - -#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:362 -msgid "Add file" -msgstr "Ajouter un fichier" - -#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:370 -msgid "Upload your selenium test in html or side (only Selenium 3) format" -msgstr "" -"TĆ©lĆ©chargez votre test de sĆ©lĆ©nium au format html ou side (uniquement Selenium " -"3)" - -#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:454 -#: ../../godmode/agentes/module_manager.php:1105 -msgid "" -"The policy modules of data type will only update their intervals when policy " -"is applied." -msgstr "" -"Les modules de politique de type donnĆ©es mettent Ć  jour leurs intervalles que " -"lorsque la politique est appliquĆ©e." - -#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:574 -#: ../../enterprise/godmode/policies/policy_modules.php:417 -#: ../../godmode/agentes/module_manager_editor_common.php:1226 -#: ../../godmode/agentes/module_manager_editor.php:750 -msgid "Custom macros" -msgstr "Macros personnalisĆ©es" - -#: ../../enterprise/godmode/agentes/plugins_manager.php:66 -msgid "Plug-in updated succesfully" -msgstr "Plugin mis Ć  jour correctement" - -#: ../../enterprise/godmode/agentes/plugins_manager.php:66 -msgid "Plug-in cannot be updated" -msgstr "Erreur de mise Ć  jour du plugin" - -#: ../../enterprise/godmode/agentes/plugins_manager.php:74 -msgid "Plug-in deleted succesfully" -msgstr "Plugin supprimĆ© correctement" - -#: ../../enterprise/godmode/agentes/plugins_manager.php:74 -msgid "Plug-in cannot be deleted" -msgstr "Erreur de suppression du plugin" - -#: ../../enterprise/godmode/agentes/plugins_manager.php:87 -#: ../../enterprise/godmode/policies/policy_plugins.php:90 -msgid "Plug-in added succesfully" -msgstr "Plugin ajoutĆ© correctement" - -#: ../../enterprise/godmode/agentes/plugins_manager.php:87 -#: ../../enterprise/godmode/policies/policy_plugins.php:91 -msgid "Plug-in cannot be added" -msgstr "Erreur d'ajout du plugin" - -#: ../../enterprise/godmode/agentes/plugins_manager.php:97 -msgid "Plug-in enabled succesfully" -msgstr "Plugin activĆ© correctement" - -#: ../../enterprise/godmode/agentes/plugins_manager.php:98 -msgid "Plug-in cannot be enabled" -msgstr "Erreur d'activation du plugin" - -#: ../../enterprise/godmode/agentes/plugins_manager.php:109 -msgid "Plug-in disabled succesfully" -msgstr "Plugin dĆ©sactivĆ© correctement" - -#: ../../enterprise/godmode/agentes/plugins_manager.php:110 -msgid "Plug-in cannot be disabled" -msgstr "Erreur de dĆ©sactivation du plugin" - -#: ../../enterprise/godmode/agentes/plugins_manager.php:127 -#: ../../enterprise/godmode/policies/policy_plugins.php:109 -msgid "If enabled, allows to define a complex module plugin or log." -msgstr "" -"Sā€™il est activĆ©, il permet de dĆ©finir un plugin ou un journal de module " -"complexe." - -#: ../../enterprise/godmode/agentes/plugins_manager.php:142 -#: ../../enterprise/godmode/policies/policy_plugins.php:123 -msgid "New plug-in" -msgstr "Nouveau plugin" - -#: ../../enterprise/godmode/agentes/plugins_manager.php:192 -#: ../../enterprise/godmode/policies/policies.php:535 -#: ../../enterprise/godmode/policies/policy_plugins.php:167 -#: ../../godmode/menu.php:293 -msgid "Plugins" -msgstr "Plugins" - -#: ../../enterprise/godmode/agentes/collections.php:65 -msgid "Success: recreate file" -msgstr "Fichier crĆ©Ć© Ć  nouveau correctement" - -#: ../../enterprise/godmode/agentes/collections.php:67 -msgid "Error: recreate file " -msgstr "Impossible de crĆ©er le fichier Ć  nouveau " - -#: ../../enterprise/godmode/agentes/collections.php:82 -#: ../../enterprise/godmode/agentes/collections.php:123 -#: ../../enterprise/godmode/agentes/collections.php:232 -msgid "Collections Management" -msgstr "Gestion des collections" - -#: ../../enterprise/godmode/agentes/collections.php:175 -msgid "Manager collection" -msgstr "Gestionnaire de collections" - -#: ../../enterprise/godmode/alerts/alert_inventory_list.php:91 -#: ../../godmode/massive/massive_add_alerts.php:168 -#: ../../godmode/massive/massive_add_action_alerts.php:160 -#: ../../godmode/alerts/alert_list.php:271 -msgid "Successfully added" -msgstr "AjoutĆ© correctement" - -#: ../../enterprise/godmode/alerts/alert_inventory_list.php:92 -#: ../../enterprise/godmode/policies/policy_agents.php:251 -#: ../../enterprise/godmode/policies/policy_external_alerts.php:201 -#: ../../enterprise/godmode/policies/policy_alerts.php:280 -#: ../../godmode/massive/massive_add_alerts.php:169 -#: ../../godmode/massive/massive_add_action_alerts.php:75 -#: ../../godmode/massive/massive_add_action_alerts.php:134 -#: ../../godmode/massive/massive_add_action_alerts.php:160 -#: ../../godmode/massive/massive_add_action_alerts.php:163 -#: ../../godmode/massive/massive_add_action_alerts.php:166 -#: ../../godmode/massive/massive_delete_action_alerts.php:175 -#: ../../godmode/alerts/alert_list.php:272 -msgid "Could not be added" -msgstr "Impossible de l'ajouter" - -#: ../../enterprise/godmode/alerts/alert_inventory_list.php:174 -msgid "Inventory alert filters" -msgstr "Filtres dā€™alerte dā€™inventaire" - -#: ../../enterprise/godmode/alerts/alert_inventory_list.php:220 -msgid "Alert name" -msgstr "Nom de lā€™alerte" - -#: ../../enterprise/godmode/alerts/alert_inventory_list.php:319 -#: ../../godmode/snmpconsole/snmp_alert.php:1394 -#: ../../godmode/alerts/alert_list.list.php:673 -msgid "Delete action" -msgstr "Supprimer l'action" - -#: ../../enterprise/godmode/alerts/alert_inventory_list.php:404 -msgid "Disable alert" -msgstr "DĆ©sactiver lā€™alerte" - -#: ../../enterprise/godmode/alerts/alert_inventory_list.php:407 -msgid "Enable alert" -msgstr "Activer lā€™alerte" - -#: ../../enterprise/godmode/alerts/alert_inventory_list.php:415 -msgid "Delete alert" -msgstr "Supprimer une alerte" - -#: ../../enterprise/godmode/alerts/alert_inventory_list.php:427 -msgid "There are no defined inventory alerts" -msgstr "Il nā€™y a pas dā€™alertes dā€™inventaire dĆ©finies" - -#: ../../enterprise/godmode/alerts/alert_inventory_builder.php:176 -msgid "Group acl" -msgstr "ACL de groupe" - -#: ../../enterprise/godmode/alerts/alert_inventory_builder.php:256 -msgid "Alert groups" -msgstr "Groupes dā€™alerte" - -#: ../../enterprise/godmode/alerts/alert_inventory_builder.php:278 -#: ../../godmode/snmpconsole/snmp_alert.php:94 -msgid "Update alert" -msgstr "Mise Ć  jour de l'alerte" - -#: ../../enterprise/godmode/alerts/alert_inventory.php:67 -msgid "Inventory alert list" -msgstr "Liste des alertes dā€™inventaire" - -#: ../../enterprise/godmode/alerts/alert_inventory.php:71 -msgid "Inventory alert builder" -msgstr "GĆ©nĆ©rateur dā€™alertes dā€™inventaire" - -#: ../../enterprise/godmode/policies/policy_agents.php:62 -#: ../../enterprise/godmode/policies/policy_queue.php:78 -msgid "" -"Starting with Pandora FMS version 760, assigning an entire group to a policy " -"will apply it automatically to all the new agents added to that group." -msgstr "" -"ƀ partir de Pandora FMS version 760, lā€™affectation dā€™un groupe entier Ć  une " -"stratĆ©gie lā€™appliquera automatiquement Ć  tous les nouveaux agents ajoutĆ©s Ć  ce " -"groupe." - -#: ../../enterprise/godmode/policies/policy_agents.php:85 -#: ../../enterprise/godmode/policies/policy_linking.php:41 -#: ../../enterprise/godmode/policies/policy_modules.php:599 -#: ../../enterprise/godmode/policies/policies.php:249 -#: ../../enterprise/godmode/policies/policy_external_alerts.php:77 -#: ../../enterprise/godmode/policies/policy_inventory_modules.php:98 -#: ../../enterprise/godmode/policies/policy_alerts.php:94 -#: ../../enterprise/godmode/policies/policy_collections.php:63 -#: ../../godmode/agentes/module_manager_editor.php:542 -msgid "This policy is applying and cannot be modified" -msgstr "Cette politique est en application et ne peut pas ĆŖtre modifiĆ©e" - -#: ../../enterprise/godmode/policies/policy_agents.php:102 -msgid "" -"Successfully added to delete pending agents. Will be deleted in the next " -"policy application." -msgstr "" -"AjoutĆ© correctement aux agents en attente de suppression. Il sera supprimĆ© " -"dans la suivante application de la politique." - -#: ../../enterprise/godmode/policies/policy_agents.php:113 -#: ../../enterprise/godmode/policies/policy_agents.php:129 -#: ../../enterprise/godmode/policies/policy_modules.php:1316 -#: ../../enterprise/godmode/policies/policy_external_alerts.php:150 -#: ../../enterprise/godmode/policies/policy_inventory_modules.php:169 -#: ../../enterprise/godmode/policies/policy_alerts.php:259 -#: ../../enterprise/godmode/policies/policy_collections.php:103 -#: ../../enterprise/godmode/policies/policy_plugins.php:70 -msgid "Successfully reverted deletion" -msgstr "Suppression annulĆ©e correctement" - -#: ../../enterprise/godmode/policies/policy_agents.php:114 -#: ../../enterprise/godmode/policies/policy_agents.php:130 -#: ../../enterprise/godmode/policies/policy_modules.php:1317 -#: ../../enterprise/godmode/policies/policy_external_alerts.php:151 -#: ../../enterprise/godmode/policies/policy_inventory_modules.php:172 -#: ../../enterprise/godmode/policies/policy_alerts.php:260 -#: ../../enterprise/godmode/policies/policy_collections.php:104 -#: ../../enterprise/godmode/policies/policy_plugins.php:71 -msgid "Could not be reverted" -msgstr "Impossible de l'annuler" - -#: ../../enterprise/godmode/policies/policy_agents.php:124 -msgid "" -"Successfully added to delete pending groups. Will be deleted in the next " -"policy application." -msgstr "" -"AjoutĆ© correctement pour supprimer les groupes en attente. Il sera supprimĆ© " -"dans la prochaine application de la politique." - -#: ../../enterprise/godmode/policies/policy_agents.php:148 -#: ../../enterprise/godmode/policies/policy_agents.php:193 -#: ../../enterprise/godmode/policies/policy_agents.php:261 -msgid "Policy with this id does not exist. " -msgstr "La politique avec cet ID nā€™existe pas. " - -#: ../../enterprise/godmode/policies/policy_agents.php:177 -#: ../../enterprise/godmode/policies/policy_agents.php:310 -msgid "Successfully added to delete queue" -msgstr "AjoutĆ© correctement Ć  la file d'attente de suppression" - -#: ../../enterprise/godmode/policies/policy_agents.php:178 -#: ../../enterprise/godmode/policies/policy_agents.php:311 -msgid "Could not be added to delete queue" -msgstr "Impossible de l'ajouter Ć  la file d'attente de suppression" - -#: ../../enterprise/godmode/policies/policy_agents.php:250 -#, php-format -msgid "Successfully added %d" -msgstr "Ajout rĆ©ussi de %d" - -#: ../../enterprise/godmode/policies/policy_agents.php:281 -msgid "" -"Number of agents added to the policy concurrently is too large. This might " -"cause the operation to fail or lead to performance issues." -msgstr "" -"Le nombre d'agents ajoutĆ©s Ć  la politique simultanĆ©ment est trop grand. Cela " -"peut entraĆ®ner l'Ć©chec de l'opĆ©ration ou entraĆ®ner des problĆØmes de " -"performances." - -#: ../../enterprise/godmode/policies/policy_agents.php:288 -msgid "Successfully added to policy" -msgstr "AjoutĆ© correctement Ć  la politique" - -#: ../../enterprise/godmode/policies/policy_agents.php:289 -msgid "Could not be added to policy" -msgstr "Impossible d'ajouter Ć  la politique" - -#: ../../enterprise/godmode/policies/policy_agents.php:407 -msgid "Apply to" -msgstr "Appliquer Ć " - -#: ../../enterprise/godmode/policies/policy_agents.php:538 -#: ../../enterprise/godmode/policies/policy_agents.php:670 -msgid "Agents in Policy" -msgstr "Agents dans la politique" - -#: ../../enterprise/godmode/policies/policy_agents.php:572 -#: ../../enterprise/godmode/policies/policy_agents.php:1217 -msgid "Groups in Policy" -msgstr "Groupes dans la politique" - -#: ../../enterprise/godmode/policies/policy_agents.php:707 -msgid "Add agents to policy" -msgstr "Ajouter agents Ć  la politique" - -#: ../../enterprise/godmode/policies/policy_agents.php:734 -msgid "Delete agents from policy" -msgstr "Supprimer les agents de politique" - -#: ../../enterprise/godmode/policies/policy_agents.php:831 -msgid "Applied" -msgstr "AppliquĆ©" - -#: ../../enterprise/godmode/policies/policy_agents.php:832 -msgid "Not applied" -msgstr "Non appliquĆ©" - -#: ../../enterprise/godmode/policies/policy_agents.php:849 -#: ../../godmode/servers/servers.build_table.php:246 -#: ../../godmode/reporting/reporting_builder.item_editor.php:79 -#: ../../godmode/massive/massive_edit_agents.php:945 -#: ../../godmode/agentes/configurar_agente.php:604 -#: ../../godmode/agentes/configurar_agente.php:754 -#: ../../godmode/agentes/agent_manager.php:524 -msgid "Remote configuration" -msgstr "Configuration Ć  distance" - -#: ../../enterprise/godmode/policies/policy_agents.php:853 -msgid "Unlinked modules" -msgstr "Modules non liĆ©s" - -#: ../../enterprise/godmode/policies/policy_agents.php:853 -msgid "U." -msgstr "U." - -#: ../../enterprise/godmode/policies/policy_agents.php:857 -#: ../../enterprise/godmode/policies/policy_agents.php:1373 -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 -msgid "D." -msgstr "D." - -#: ../../enterprise/godmode/policies/policy_agents.php:946 -#: ../../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 -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 -msgid "Process deletion" -msgstr "Suppression de processus" - -#: ../../enterprise/godmode/policies/policy_agents.php:1012 -#: ../../enterprise/godmode/policies/policy_agents.php:1493 -#: ../../enterprise/godmode/policies/policy_queue.php:337 -msgid "Add to apply queue" -msgstr "Ajouter Ć  la file d'attente pour l'appliquer" - -#: ../../enterprise/godmode/policies/policy_agents.php:1066 -#: ../../enterprise/godmode/policies/policy_agents.php:1535 -#: ../../enterprise/godmode/policies/policy_modules.php:1573 -#: ../../enterprise/godmode/policies/policy_external_alerts.php:533 -#: ../../enterprise/godmode/policies/policy_inventory_modules.php:329 -#: ../../enterprise/godmode/policies/policy_alerts.php:529 -msgid "Undo deletion" -msgstr "Annuler la suppression" - -#: ../../enterprise/godmode/policies/policy_agents.php:1110 -#: ../../enterprise/godmode/policies/policy_agents.php:1435 -msgid "Need apply" -msgstr "Vous devez l'appliquer" - -#: ../../enterprise/godmode/policies/policy_agents.php:1122 -#: ../../enterprise/godmode/policies/policy_agents.php:1447 -msgid "Applying policy" -msgstr "Application de la politique en cours" - -#: ../../enterprise/godmode/policies/policy_agents.php:1135 -#: ../../enterprise/godmode/policies/policy_agents.php:1458 -msgid "Deleting from policy" -msgstr "Suppression de la politique en cours" - -#: ../../enterprise/godmode/policies/policy_agents.php:1295 -msgid "Add groups to policy" -msgstr "Ajouter des groupes Ć  la politique" - -#: ../../enterprise/godmode/policies/policy_agents.php:1317 -msgid "Delete groups from policy" -msgstr "Supprimer des groupes de la politique" - -#: ../../enterprise/godmode/policies/policy_agents.php:1370 -msgid "Total agents in policy group" -msgstr "Nombre total d'agents dans le groupe de la politique" - -#: ../../enterprise/godmode/policies/policy_agents.php:1370 -msgid "T." -msgstr "T." - -#: ../../enterprise/godmode/policies/policy_queue.php:63 -msgid "No policies with this id" -msgstr "Aucune politique avec cet ID" - -#: ../../enterprise/godmode/policies/policy_queue.php:146 -#, php-format -msgid "%s: Operations successfully deleted from the queue" -msgstr "%sĀ : opĆ©rations supprimĆ©es correctement de la file d'attente" - -#: ../../enterprise/godmode/policies/policy_queue.php:153 -msgid "Operations successfully deleted from the queue" -msgstr "OpĆ©rations supprimĆ©es correctement de la file d'attente" - -#: ../../enterprise/godmode/policies/policy_queue.php:154 -msgid "Operations cannot be deleted from the queue" -msgstr "Impossible de supprimer les opĆ©rations de la file d'attente" - -#: ../../enterprise/godmode/policies/policy_queue.php:261 -#, php-format -msgid "Some nodes (%s) are unreachebles. Some information may be missing." -msgstr "" -"Certains nœuds (%s) sont inaccessibles. Certaines informations peuvent ĆŖtre " -"manquantes." - -#: ../../enterprise/godmode/policies/policy_queue.php:308 -msgid "Update pending" -msgstr "Mise Ć  jour en attente" - -#: ../../enterprise/godmode/policies/policy_queue.php:314 -msgid "Update pending agents" -msgstr "Mettre Ć  jour les agents en attente" - -#: ../../enterprise/godmode/policies/policy_queue.php:343 -msgid "Add to apply queue only for database" -msgstr "" -"Ajouter Ć  la file d'application, seulement pour les changements dans la base " -"de donnĆ©es" - -#: ../../enterprise/godmode/policies/policy_queue.php:354 -msgid "Update pending groups" -msgstr "Mettre Ć  jour les groupes en attente" - -#: ../../enterprise/godmode/policies/policy_queue.php:368 -msgid "Link pending modules" -msgstr "Associer les modules en attente" - -#: ../../enterprise/godmode/policies/policy_queue.php:376 -msgid "Will be linked in the next policy application" -msgstr "Il sera associĆ© lors de la prochaine application de la politique" - -#: ../../enterprise/godmode/policies/policy_queue.php:382 -msgid "Unlink pending modules" -msgstr "Dissocier les modules en attente" - -#: ../../enterprise/godmode/policies/policy_queue.php:388 -msgid "Will be unlinked in the next policy application" -msgstr "Ils seront dissociĆ©s lors de la prochaine application de la politique." - -#: ../../enterprise/godmode/policies/policy_queue.php:393 -msgid "Delete pending" -msgstr "Suppression en attente" - -#: ../../enterprise/godmode/policies/policy_queue.php:399 -msgid "Delete pending agents" -msgstr "Supprimer les agents en attente" - -#: ../../enterprise/godmode/policies/policy_queue.php:407 -#: ../../enterprise/godmode/policies/policy_queue.php:422 -#: ../../enterprise/godmode/policies/policy_queue.php:437 -#: ../../enterprise/godmode/policies/policy_queue.php:452 -#: ../../enterprise/godmode/policies/policy_queue.php:467 -#: ../../enterprise/godmode/policies/policy_queue.php:482 -#: ../../enterprise/godmode/policies/policy_queue.php:497 -#: ../../enterprise/godmode/policies/policy_queue.php:512 -msgid "Will be deleted in the next policy application" -msgstr "Ils seront supprimĆ©s lors de la prochaine application de la politique." - -#: ../../enterprise/godmode/policies/policy_queue.php:414 -msgid "Delete pending groups" -msgstr "Supprimer les groupes en attente" - -#: ../../enterprise/godmode/policies/policy_queue.php:429 -msgid "Delete pending modules" -msgstr "Supprimer les modules en attente" - -#: ../../enterprise/godmode/policies/policy_queue.php:444 -msgid "Delete pending inventory modules" -msgstr "Supprimer les modules d'inventaire en attente" - -#: ../../enterprise/godmode/policies/policy_queue.php:459 -msgid "Delete pending alerts" -msgstr "Supprimer les alertes en attente" - -#: ../../enterprise/godmode/policies/policy_queue.php:474 -msgid "Delete pending external alerts" -msgstr "Supprimer les alertes externes en attente" - -#: ../../enterprise/godmode/policies/policy_queue.php:489 -msgid "Delete pending file collections" -msgstr "Supprimer les collections de fichiers en attente" - -#: ../../enterprise/godmode/policies/policy_queue.php:504 -msgid "Delete pending plugins" -msgstr "Supprimer les plugins en attente" - -#: ../../enterprise/godmode/policies/policy_queue.php:518 -msgid "Advices" -msgstr "Conseils" - -#: ../../enterprise/godmode/policies/policy_queue.php:523 -msgid "Queue summary" -msgstr "RĆ©sumĆ© des files d'attente" - -#: ../../enterprise/godmode/policies/policy_queue.php:636 -msgid "Queue filter" -msgstr "Filtre de la file d'attente" - -#: ../../enterprise/godmode/policies/policy_queue.php:790 -msgid "Empty queue" -msgstr "Vider la file d'attente" - -#: ../../enterprise/godmode/policies/policy_queue.php:804 -msgid "This operation could take a long time" -msgstr "Cette opĆ©ration pourrait prendre du temps" - -#: ../../enterprise/godmode/policies/policy_queue.php:815 -msgid "Apply all queues" -msgstr "Appliquer toutes les files d'attente" - -#: ../../enterprise/godmode/policies/policy_queue.php:821 -msgid "Clear all items" -msgstr "Effacer tous les Ć©lĆ©ments" - -#: ../../enterprise/godmode/policies/policy_linking.php:28 -msgid "Linking modules" -msgstr "Relation de modules en cours" - -#: ../../enterprise/godmode/policies/policy_linking.php:99 -msgid "Error: Update linking modules to policy" -msgstr "Erreur de mise Ć  jour des modules associĆ©s Ć  la politique" - -#: ../../enterprise/godmode/policies/policy_linking.php:101 -msgid "Success: Update linking modules to policy" -msgstr "Modules associĆ©s Ć  la politique mis Ć  jour correctement" - -#: ../../enterprise/godmode/policies/policy_linking.php:127 -msgid "Free text for filter (*)" -msgstr "Texte libre pour le filtre (*)" - -#: ../../enterprise/godmode/policies/policy_linking.php:128 -msgid "Free text for filter" -msgstr "Texte libre pour le filtre" - -#: ../../enterprise/godmode/policies/policy_linking.php:138 -msgid "Cannot retrieve unlinked modules" -msgstr "Impossible de rĆ©cupĆ©rer les modules non liĆ©s" - -#: ../../enterprise/godmode/policies/policy_linking.php:140 -msgid "There are no defined modules unlinked" -msgstr "Aucun module dissociĆ© dĆ©fini" - -#: ../../enterprise/godmode/policies/policy_linking.php:142 -msgid "List of modules unlinked" -msgstr "Liste des modules non associĆ©s" - -#: ../../enterprise/godmode/policies/policy_modules.php:299 -msgid "" -"If you change this description, you must change into the text of Data " -"configuration." -msgstr "" -"Si vous modifiez cette description, vous devez la changer dans le texte de " -"configuration de donnĆ©es." - -#: ../../enterprise/godmode/policies/policy_modules.php:372 -msgid "Invalid module type." -msgstr "Type de module non valide." - -#: ../../enterprise/godmode/policies/policy_modules.php:403 -#: ../../godmode/agentes/module_manager_editor.php:738 -msgid "Base options" -msgstr "Options de base" - -#: ../../enterprise/godmode/policies/policy_modules.php:548 -msgid "Could not be added module(s). You must select a policy" -msgstr "" -"Impossible d'ajouter le(s) module(s). Vous devez sĆ©lectionner une politique." - -#: ../../enterprise/godmode/policies/policy_modules.php:581 -#, php-format -msgid "Successfully added module(s) (%s/%s) to policy %s" -msgstr "Module(s) (%s/%s) ajoutĆ©(s) correctement Ć  la politique %s." - -#: ../../enterprise/godmode/policies/policy_modules.php:587 -#, php-format -msgid "Could not be added module(s) (%s/%s) to policy %s" -msgstr "Impossible d'ajouter le(s) module(s) (%s/%s) Ć  la politique %s" - -#: ../../enterprise/godmode/policies/policy_modules.php:623 -msgid "To define plugins please use plugin configuration tab." -msgstr "" -"Pour dĆ©finir les plugins, veuillez utiliser lā€™onglet de configuration des " -"plugins." - -#: ../../enterprise/godmode/policies/policy_modules.php:920 -msgid "Could not be added module." -msgstr "Impossible d'ajouter ce module" - -#: ../../enterprise/godmode/policies/policy_modules.php:1265 -msgid "" -"The module type in Data configuration is empty, take from combo box of form." -msgstr "" -"Le type de module dans la configuration de donnĆ©es est vide. Choisissez-en un " -"de la liste dĆ©roulante du formulaire." - -#: ../../enterprise/godmode/policies/policy_modules.php:1269 -msgid "" -"The module name in Data configuration is empty, take from text field of form." -msgstr "" -"Le nom du module dans la configuration de donnĆ©es est vide. Choisissez-en un " -"du champ de texte du formulaire." - -#: ../../enterprise/godmode/policies/policy_modules.php:1299 -#: ../../enterprise/godmode/policies/policy_modules.php:1312 -#: ../../enterprise/godmode/policies/policy_inventory_modules.php:163 -msgid "" -"Successfully added to delete pending modules. Will be deleted in the next " -"policy application." -msgstr "" -"AjoutĆ© correctement aux modules en attente de suppression. Il sera supprimĆ© " -"dans la suivante application de la politique." - -#: ../../enterprise/godmode/policies/policy_modules.php:1303 -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:1381 -#: ../../godmode/agentes/configurar_agente.php:2128 -#, php-format -msgid "copy of %s (%d)" -msgstr "copie de %s (%d)" - -#: ../../enterprise/godmode/policies/policy_modules.php:1411 -msgid "Successfully duplicate the module." -msgstr "Module dupliquĆ© correctement" - -#: ../../enterprise/godmode/policies/policy_modules.php:1492 -msgid "Local component" -msgstr "Composant local" - -#: ../../enterprise/godmode/policies/policy_modules.php:1509 -#: ../../enterprise/godmode/policies/policy_modules.php:1510 -msgid "Disabled module" -msgstr "Module dĆ©sactivĆ©" - -#: ../../enterprise/godmode/policies/policy_modules.php:1517 -#: ../../enterprise/godmode/policies/policy_modules.php:1518 -msgid "Enabled module" -msgstr "Module activĆ©" - -#: ../../enterprise/godmode/policies/policy_modules.php:1528 -#: ../../enterprise/godmode/policies/policy_modules.php:1529 -#: ../../godmode/agentes/module_manager.php:1143 -#: ../../godmode/agentes/module_manager.php:1144 -msgid "Enable module" -msgstr "Activer le module" - -#: ../../enterprise/godmode/policies/policy_modules.php:1538 -#: ../../enterprise/godmode/policies/policy_modules.php:1539 -#: ../../godmode/agentes/module_manager.php:1153 -#: ../../godmode/agentes/module_manager.php:1154 -msgid "Disable module" -msgstr "Module dĆ©sactivĆ©" - -#: ../../enterprise/godmode/policies/policy_modules.php:1624 -msgid "There are no defined modules" -msgstr "Aucun module dĆ©fini" - -#: ../../enterprise/godmode/policies/policy_modules.php:1643 -#: ../../godmode/massive/massive_copy_modules.php:188 -msgid "Copy modules" -msgstr "Copier les modules" - -#: ../../enterprise/godmode/policies/policy_modules.php:1644 -msgid "Copy selected modules to policy: " -msgstr "Copier les modules sĆ©lectionnĆ©s Ć  la politique : " - -#: ../../enterprise/godmode/policies/policy_modules.php:1706 -#: ../../godmode/agentes/module_manager_editor.php:822 -msgid "No module name provided" -msgstr "Aucun nom de module fourni" - -#: ../../enterprise/godmode/policies/policy_modules.php:1707 -#: ../../godmode/agentes/module_manager_editor.php:832 -msgid "No target IP provided" -msgstr "Aucune cible IP fournie" - -#: ../../enterprise/godmode/policies/policy_modules.php:1708 -#: ../../godmode/agentes/module_manager_editor.php:842 -msgid "No SNMP OID provided" -msgstr "Aucun OID SNMP fourni" - -#: ../../enterprise/godmode/policies/policy_modules.php:1849 -msgid "Are you sure to copy modules into policy?\\n" -msgstr "Ɗtes-vous sĆ»r(e) de vouloir copier les modules Ć  la politique ?" - -#: ../../enterprise/godmode/policies/policy_modules.php:1869 -msgid "Please select any module to copy" -msgstr "Veuillez sĆ©lectionner un module Ć  copier." - -#: ../../enterprise/godmode/policies/policies.php:85 -msgid "Policy not found." -msgstr "Politique introuvable." - -#: ../../enterprise/godmode/policies/policies.php:153 -msgid "Policy name already exists" -msgstr "Le nom de la politique existe dĆ©jĆ ." - -#: ../../enterprise/godmode/policies/policies.php:224 -msgid "Policies Management" -msgstr "Gestion des politiques" - -#: ../../enterprise/godmode/policies/policies.php:243 -msgid "All policy agents added to delete queue" -msgstr "" -"Tous les agents de politique ont Ć©tĆ© ajoutĆ©s Ć  la file d'attente de suppression" - -#: ../../enterprise/godmode/policies/policies.php:244 -msgid "Policy agents cannot be added to the delete queue" -msgstr "" -"Les agents de la politique ne peuvent pas ĆŖtre ajoutĆ©s Ć  la file d'attente de " -"suppression." - -#: ../../enterprise/godmode/policies/policies.php:330 -msgid "a" -msgstr "a" - -#: ../../enterprise/godmode/policies/policies.php:514 -msgid "Agent Wizard" -msgstr "Assistant de l'agent" - -#: ../../enterprise/godmode/policies/policies.php:595 -msgid "There must be no agents to delete the policy." -msgstr "Il ne doit pas y avoir dā€™agents pour supprimer la politique." - -#: ../../enterprise/godmode/policies/policies.php:601 -msgid "A policy with agents cannot be deleted. Purge it first" -msgstr "" -"Une politique avec des agents ne peut pas ĆŖtre supprimĆ©e. Veuillez la vider en " -"premier." - -#: ../../enterprise/godmode/policies/policies.php:611 -msgid "Deleting all policy agents" -msgstr "Suppression de tous les agents de la politique en cours" - -#: ../../enterprise/godmode/policies/policies.php:616 -msgid "All the policy agents will be deleted" -msgstr "Tous les agents de la politique seront supprimĆ©s" - -#: ../../enterprise/godmode/policies/policies.php:625 -msgid "Delete all agents" -msgstr "Supprimer tous les agents" - -#: ../../enterprise/godmode/policies/policy_external_alerts.php:87 -#: ../../godmode/alerts/alert_list.php:173 -msgid "No module specified" -msgstr "Aucun module spĆ©cifiĆ©" - -#: ../../enterprise/godmode/policies/policy_external_alerts.php:123 -msgid "Created successfuly" -msgstr "CrĆ©Ć© correctement" - -#: ../../enterprise/godmode/policies/policy_external_alerts.php:127 -msgid "Duplicated alert" -msgstr "Alerte dupliquĆ©e" - -#: ../../enterprise/godmode/policies/policy_external_alerts.php:145 -#: ../../enterprise/godmode/policies/policy_alerts.php:255 -msgid "" -"Successfully added to delete pending alerts. Will be deleted in the next " -"policy application." -msgstr "" -"AjoutĆ© correctement aux alertes en attente de suppression. Il sera supprimĆ© " -"dans la suivante application de la politique." - -#: ../../enterprise/godmode/policies/policy_external_alerts.php:173 -#: ../../enterprise/godmode/policies/policy_alerts.php:302 -msgid "Deleted action successfuly" -msgstr "Action supprimĆ©e correctement" - -#: ../../enterprise/godmode/policies/policy_external_alerts.php:200 -#: ../../enterprise/godmode/policies/policy_alerts.php:280 -msgid "Added action successfuly" -msgstr "Action ajoutĆ©e correctement" - -#: ../../enterprise/godmode/policies/policy_external_alerts.php:383 -msgid "Modules in policy per agents" -msgstr "Modules dans la politique par agent" - -#: ../../enterprise/godmode/policies/policy_external_alerts.php:566 -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:620 -msgid "Modules in policy agents" -msgstr "Modules dans les agents de la politique" - -#: ../../enterprise/godmode/policies/policy_external_alerts.php:648 -msgid "Alert Template" -msgstr "ModĆØle de l'alerte" - -#: ../../enterprise/godmode/policies/configure_policy.php:122 -msgid "Force Apply" -msgstr "Forcer lā€™application" - -#: ../../enterprise/godmode/policies/configure_policy.php:122 -msgid "" -"Force the creation of modules even if the software agent does not have remote " -"configuration" -msgstr "" -"Forcer la crĆ©ation de modules mĆŖme si lā€™agent logiciel nā€™a pas de " -"configuration Ć  distance" - -#: ../../enterprise/godmode/policies/policy_inventory_modules.php:110 -msgid "Module is not selected" -msgstr "Le module n'est pas sĆ©lectionnĆ©." - -#: ../../enterprise/godmode/policies/policy_inventory_modules.php:296 -msgid "There are no defined inventory modules" -msgstr "Aucun module d'inventaire dĆ©fini" - -#: ../../enterprise/godmode/policies/policy_alerts.php:178 -#: ../../godmode/massive/massive_standby_alerts.php:132 -#: ../../godmode/alerts/alert_list.php:420 -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:421 -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:447 -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:448 -msgid "Could not be set off standby" -msgstr "Erreur de dĆ©sactivation du mode veille" - -#: ../../enterprise/godmode/policies/policy_alerts.php:249 -msgid " created successfuly" -msgstr "CrĆ©Ć© correctement" - -#: ../../enterprise/godmode/policies/policy_alerts.php:249 -msgid " could not be created" -msgstr "Erreur de crĆ©ation" - -#: ../../enterprise/godmode/policies/policy_alerts.php:613 -msgid "There is not alerts configured in this policy." -msgstr "Aucune alerte externe nā€™est configurĆ©e dans cette politique." - -#: ../../enterprise/godmode/policies/policy_alerts.php:653 -msgid "Policy module" -msgstr "Module de la politique" - -#: ../../enterprise/godmode/policies/policy_alerts.php:731 -#: ../../godmode/alerts/alert_list.list.php:1057 -msgid "Set off standby" -msgstr "DĆ©configurer le mode veille" - -#: ../../enterprise/godmode/policies/policy_alerts.php:740 -#: ../../godmode/alerts/alert_list.list.php:1084 -msgid "Set standby" -msgstr "Configurer mode veille" - -#: ../../enterprise/godmode/policies/policy_collections.php:99 -msgid "" -"Successfully added to delete the collection. Will be deleted in the next " -"policy application." -msgstr "" -"AjoutĆ© correctement Ć  la collection en attente de suppression. Il sera " -"supprimĆ© dans la suivante application de la politique." - -#: ../../enterprise/godmode/policies/policy_collections.php:241 -msgid "Collections in policy" -msgstr "Collections dans la politique" - -#: ../../enterprise/godmode/policies/policy_collections.php:245 -msgid "Collections to add" -msgstr "Collections Ć  ajouter" - -#: ../../enterprise/godmode/policies/policy_collections.php:315 -msgid "No available collection to add" -msgstr "Aucune collection disponible Ć  ajouter" - -#: ../../enterprise/godmode/policies/policy_plugins.php:56 -msgid "" -"Successfully added to delete pending plugins. Will be deleted in the next " -"policy application." -msgstr "" -"AjoutĆ© correctement Ć  la liste de plugins Ć  supprimer. Il sera supprimĆ© dans " -"la prochaine application de la politique." - -#: ../../enterprise/godmode/policies/policy_plugins.php:57 -msgid "Cannot be added to delete pending plugins." -msgstr "Impossible de l'ajouter Ć  la liste de plugins Ć  supprimer." - -#: ../../enterprise/godmode/policies/policy_plugins.php:210 -msgid "There are no defined plugins" -msgstr "Aucun plugin dĆ©fini" - -#: ../../extensions/quick_shell.php:140 ../../extensions/quick_shell.php:244 -msgid "WebService engine has not been started, please check documentation." -msgstr "Le moteur WebService n'a pas Ć©tĆ© dĆ©marrĆ©, vĆ©rifiez la documentation" - -#: ../../extensions/quick_shell.php:152 -msgid "Retry" -msgstr "RĆ©essayer" - -#: ../../extensions/quick_shell.php:196 -msgid "Telnet" -msgstr "Telnet" - -#: ../../extensions/quick_shell.php:204 -msgid "Connect" -msgstr "Connecter" - -#: ../../extensions/quick_shell.php:232 -msgid "Please use SSH or Telnet." -msgstr "Utilisez SSH ou Telnet." - -#: ../../extensions/quick_shell.php:266 -msgid "WebService engine is not working properly, please check documentation." -msgstr "" -"Le moteur de service Web ne fonctionne pas correctement, veuillez vĆ©rifier la " -"documentation." - -#: ../../extensions/quick_shell.php:425 -#, php-format -msgid "%d Updated" -msgstr "%d Mis Ć  jour" - -#: ../../extensions/quick_shell.php:428 -#, php-format -msgid "%d Updated, please restart WebSocket engine service" -msgstr "%d Mis Ć  jour, veuillez redĆ©marrer le service du moteur WebSocket" - -#: ../../extensions/quick_shell.php:438 -msgid "Quickshell" -msgstr "QuickShell" - -#: ../../extensions/quick_shell.php:448 -msgid "Gotty path" -msgstr "Chemin de Gotty" - -#: ../../extensions/quick_shell.php:458 -msgid "Gotty host" -msgstr "HĆ“te Gotty" - -#: ../../extensions/quick_shell.php:468 -msgid "Gotty ssh port" -msgstr "Port Gotty ssh" - -#: ../../extensions/quick_shell.php:478 -msgid "Gotty telnet port" -msgstr "Port Gotty telnet" - -#: ../../extensions/quick_shell.php:495 -msgid "Gotty user" -msgstr "Utilisateur Gotty" - -#: ../../extensions/quick_shell.php:505 -msgid "Gotty password" -msgstr "Mot de passe Getty" - -#: ../../extensions/quick_shell.php:545 -msgid "QuickShell" -msgstr "QuickShell" - -#: ../../extensions/disabled/matrix_events.php:30 -msgid "Matrix events" -msgstr "ƉvĆ©nements de la matrice" - -#: ../../extensions/pandora_logs.php:29 -msgid "Cannot find file" -msgstr "Fichier introuvable" - -#: ../../extensions/pandora_logs.php:34 -msgid "File is too large than PHP memory allocated in the system." -msgstr "" -"La taille du fichier est supĆ©rieure Ć  celle de la mĆ©moire PHP allouĆ©e dans le " -"systĆØme." - -#: ../../extensions/pandora_logs.php:35 -msgid "The preview file is imposible." -msgstr "Impossible d'obtenir un aperƧu du fichier." - -#: ../../extensions/pandora_logs.php:38 ../../extensions/pandora_logs.php:45 -msgid "The folder /var/log/pandora must have pandora:apache and its content too." -msgstr "" -"Le dossier /var/log/pandora doit avoir pandora:apache et son contenu aussi." - -#: ../../extensions/pandora_logs.php:67 -msgid "System logfile viewer" -msgstr "Visualiseur de l'historique du systĆØme" - -#: ../../extensions/pandora_logs.php:69 -#, php-format -msgid "Use this tool to view your %s logfiles directly on the console" -msgstr "" -"Utilisez cet outil pour afficher vos %s fichiers journaux directement sur la " -"console" - -#: ../../extensions/pandora_logs.php:71 -msgid "" -"You can choose the amount of information shown in general setup (Log size " -"limit in system logs viewer extension), " -msgstr "" -"Vous pouvez dĆ©terminer la quantitĆ© d'information affichĆ©e dans la " -"configuration gĆ©nĆ©rale (taille limite dans l'extension du visualiseur des " -"journaux du systĆØme) " - -#: ../../extensions/pandora_logs.php:85 -msgid "System logfiles" -msgstr "Historique du systĆØme" - -#: ../../extensions/users_connected.php:37 -#: ../../extensions/users_connected.php:209 -msgid "Users connected" -msgstr "Utilisateurs connectĆ©s" - -#: ../../extensions/users_connected.php:42 -msgid "This user does not have any associated profile" -msgstr "Cet utilisateur n'a pas de profil associĆ©" - -#: ../../extensions/users_connected.php:132 -msgid "No other users connected" -msgstr "Aucun autre utilisateur connectĆ©" - -#: ../../extensions/users_connected.php:145 -msgid "Last login" -msgstr "DerniĆØre connexion" - -#: ../../extensions/realtime_graphs.php:58 -#: ../../extensions/realtime_graphs.php:268 -msgid "Realtime graphs" -msgstr "Graphiques en temps rĆ©el" - -#: ../../extensions/realtime_graphs.php:134 -#, php-format -msgid "%s Server CPU" -msgstr "%s CPU du serveur" - -#: ../../extensions/realtime_graphs.php:136 -#, php-format -msgid "Pending packages from %s Server" -msgstr "Paquets en attente du serveur %s" - -#: ../../extensions/realtime_graphs.php:140 -#, php-format -msgid "%s Server Disk IO Wait" -msgstr "%s Disk IO serveur attente" - -#: ../../extensions/realtime_graphs.php:144 -#, php-format -msgid "%s Server Apache load" -msgstr "%s Apache serveur charge" - -#: ../../extensions/realtime_graphs.php:148 -#, php-format -msgid "%s Server MySQL load" -msgstr "%s MySQL serveur charge" - -#: ../../extensions/realtime_graphs.php:152 -#, php-format -msgid "%s Server load" -msgstr "%s Serveur charge" - -#: ../../extensions/realtime_graphs.php:155 -msgid "SNMP Interface throughput" -msgstr "DĆ©bit de l'interface SNMP" - -#: ../../extensions/realtime_graphs.php:206 -msgid "Refresh interval" -msgstr "Intervalle d'actualisation" - -#: ../../extensions/realtime_graphs.php:217 -#: ../../godmode/modules/manage_network_components_form_wizard.php:135 -msgid "Incremental" -msgstr "Croissant" - -#: ../../extensions/realtime_graphs.php:222 -msgid "Clear graph" -msgstr "Supprimer le graphique" - -#: ../../extensions/realtime_graphs.php:249 -#: ../../godmode/agentes/module_manager_editor_network.php:43 -msgid "Use this OID" -msgstr "Utiliser cet OID" - -#: ../../extensions/dbmanager.php:110 -msgid "Database interface" -msgstr "Interface de la BD" - -#: ../../extensions/dbmanager.php:123 -msgid "" -"Warning, you are accessing the database directly. You can leave the system " -"inoperative if you run an inappropriate SQL statement" -msgstr "" -"Attention, vous accĆ©dez directement Ć  la base de donnĆ©es. Vous pouvez laisser " -"le systĆØme inopĆ©rant si vous exĆ©cutez une instruction SQL inappropriĆ©e" - -#: ../../extensions/dbmanager.php:161 -#, php-format -msgid "" -"This is an advanced extension to interface with %s database directly from WEB " -"console\n" -"\t\tusing native SQL sentences. Please note that you can damage your %s " -"installation\n" -"\t\tif you don't know
    exactly
    what are you are doing,\n" -"\t\tthis means that you can severily damage your setup using this extension.\n" -"\t\tThis extension is intended to be used only by experienced users\n" -"\t\twith a depth knowledge of %s internals." -msgstr "" -"Cā€™est une extension avancĆ©e pour interagir aver %s la base de donnĆ©es " -"directement depuis la console WEB\n" -"\t\ten utilisant les sentences SQL natives. Notez que vous pouvez " -"endommager votre %s installation\n" -"\t\tsi vous ne savez pas exactement ce que vous faissez,\n" -"\t\tƧa signifie que vous pouvez endommager gravement votre configuration en " -"utilisant cette configuration.\n" -"\t\tCette extension est conƧue pour ĆŖtre utilisĆ©ei seulement par des " -"utilisateurs expĆ©rimentĆ©s\n" -"\t\tavec une connaissance profonde %s de comme Ƨa fonctionne." - -#: ../../extensions/dbmanager.php:207 -msgid "Select query target" -msgstr "SĆ©lectionner la cible de requĆŖte" - -#: ../../extensions/dbmanager.php:214 -msgid "Execute SQL" -msgstr "ExĆ©cuter SQL" - -#: ../../extensions/dbmanager.php:255 -msgid "Error querying database node" -msgstr "Erreur lors de lā€™interrogation du nœud de base de donnĆ©es" - -#: ../../extensions/dbmanager.php:322 ../../godmode/menu.php:433 -msgid "DB interface" -msgstr "Interface de la BD" - -#: ../../extensions/files_repo/files_repo_get_file.php:66 -msgid "Unreliable petition" -msgstr "Demande peu fiable" - -#: ../../extensions/files_repo/files_repo_get_file.php:66 -msgid "Please contact the administrator" -msgstr "Veuillez communiquer avec l'administrateur" - -#: ../../extensions/files_repo/functions_files_repo.php:28 -#: ../../extensions/files_repo/functions_files_repo.php:46 -msgid "Attachment directory is not writable by HTTP Server" -msgstr "" -"Le rĆ©pertoire des piĆØces jointes n'est pas accessible en Ć©criture par le " -"serveur HTTP" - -#: ../../extensions/files_repo/functions_files_repo.php:28 -#: ../../extensions/files_repo/functions_files_repo.php:46 -#, php-format -msgid "Please check that the web server has write rights on the %s directory" -msgstr "" -"Veuillez vĆ©rifier que le serveur web possĆØde les droits d'Ć©criture pour le " -"rĆ©pertoire %s" - -#: ../../extensions/files_repo/functions_files_repo.php:248 -msgid "The file could not be copied" -msgstr "Le fichier n'a pas pu ĆŖtre copiĆ©" - -#: ../../extensions/files_repo/functions_files_repo.php:251 -msgid "There was an error creating the file" -msgstr "Erreur de crĆ©ation du fichier" - -#: ../../extensions/files_repo/functions_files_repo.php:295 -msgid "There was an error updating the file" -msgstr "Erreur de mise Ć  jour du fichier" - -#: ../../extensions/files_repo/files_repo_form.php:84 -msgid "Only 200 characters are permitted" -msgstr "Seulement 200 caractĆØres sont autorisĆ©s" - -#: ../../extensions/files_repo/files_repo_form.php:95 -#: ../../godmode/extensions.php:138 -msgid "File" -msgstr "Fichier" - -#: ../../extensions/files_repo/files_repo_form.php:98 -#: ../../extensions/files_repo/files_repo_form.php:104 -#: ../../extensions/files_repo/files_repo_list.php:112 -msgid "Public link" -msgstr "Lien publique" - -#: ../../extensions/files_repo/files_repo_list.php:106 -msgid "Copy to clipboard" -msgstr "Copier dans le presse-papier" - -#: ../../extensions/db_status.php:25 ../../extensions/db_status.php:455 -#: ../../godmode/menu.php:433 -msgid "DB Schema check" -msgstr "VĆ©rifier SchĆ©ma BD" - -#: ../../extensions/db_status.php:43 -msgid "" -"This extension checks the DB is correct. Because sometimes the old DB from a " -"migration has not some fields in the tables or the data is changed." -msgstr "" -"Cette extension vĆ©rifie que la BD soit correcte, car il se peut que l'ancienne " -"BD d'une migration ne prĆ©sente pas certains champs dans les tableaux ou que " -"les donnĆ©es soient modifiĆ©es." - -#: ../../extensions/db_status.php:46 -msgid "At the moment the checks is for MySQL/MariaDB." -msgstr "Pour l'instant, les vĆ©rifications sont pour MySQL/MariaDB." - -#: ../../extensions/db_status.php:52 -msgid "DB settings" -msgstr "ParamĆØtres de la BD" - -#: ../../extensions/db_status.php:56 -msgid "DB User with privileges" -msgstr "Utilisateur de BD avec privilĆØges" - -#: ../../extensions/db_status.php:58 -msgid "DB Password for this user" -msgstr "Mot de passe de la BD pour cet utilisateur" - -#: ../../extensions/db_status.php:62 -msgid "DB Hostname" -msgstr "Nom d'hĆ“te de la BD" - -#: ../../extensions/db_status.php:64 -msgid "DB Name (temporal for testing)" -msgstr "Nom de la BD (temporaire pour essai)" - -#: ../../extensions/db_status.php:72 -msgid "Execute Test" -msgstr "ExĆ©cuter le test" - -#: ../../extensions/db_status.php:108 -msgid "Unsuccessful connected to the DB" -msgstr "Erreur de connexion Ć  la BD" - -#: ../../extensions/db_status.php:119 -msgid "Unsuccessful created the testing DB" -msgstr "Erreur de crĆ©ation de la BD d'essai" - -#: ../../extensions/db_status.php:135 -msgid "Unsuccessful installed tables into the testing DB" -msgstr "Installation de tables dans la BD d'essai Ć©chouĆ©e" - -#: ../../extensions/db_status.php:219 -#, php-format -msgid "Success! %s DB contains all tables" -msgstr "SuccĆØs! %s La base de donnĆ©es contient toutes les tables" - -#: ../../extensions/db_status.php:221 -#, php-format -msgid "%s DB could not retrieve all tables. The missing tables are (%s)" -msgstr "" -"La base de donnĆ©es %s n'a pas pu rĆ©cupĆ©rer toutes les tables. Les tableaux " -"manquants sont (%s)" - -#: ../../extensions/db_status.php:235 ../../extensions/db_status.php:246 -#: ../../extensions/db_status.php:349 -msgid "You can execute this SQL query for to fix." -msgstr "Vous pouvez exĆ©cuter cette requĆŖte SQL pour le rĆ©parer." - -#: ../../extensions/db_status.php:343 -#, php-format -msgid "Unsuccessful the table %s has not the field %s" -msgstr "Erreur, le tableau %s ne contient pas le champ %s" - -#: ../../extensions/db_status.php:410 -msgid "Successful all the tables have the correct fields" -msgstr "SuccĆØs, toutes les tables contiennent les champs corrects" - -#: ../../extensions/agents_alerts.php:37 -msgid "Agents/Alerts view" -msgstr "Afficher agents/alertes" - -#: ../../extensions/extension_uploader.php:29 -msgid "Uploader extension" -msgstr "Extension du tĆ©lĆ©verseur" - -#: ../../extensions/extension_uploader.php:72 -msgid "Success to upload extension" -msgstr "Extension tĆ©lĆ©versĆ©e correctement" - -#: ../../extensions/extension_uploader.php:73 -msgid "Fail to upload extension" -msgstr "Erreur, extension non tĆ©lĆ©versĆ©e" - -#: ../../extensions/extension_uploader.php:82 -msgid "Upload extension" -msgstr "TĆ©lĆ©verser l'extension" - -#: ../../extensions/extension_uploader.php:83 -msgid "Upload the extension as a zip file." -msgstr "TĆ©lĆ©verser l'extension sous forme de fichier zip" - -#: ../../extensions/extension_uploader.php:85 -msgid "Upload enterprise extension" -msgstr "TĆ©lĆ©verser l'extension Enterprise" - -#: ../../extensions/extension_uploader.php:98 -msgid "Extension uploader" -msgstr "TĆ©lĆ©verseur de l'extension" - -#: ../../extensions/module_groups.php:48 -msgid "Counters Module" -msgstr "Module Compteurs" - -#: ../../extensions/module_groups.php:49 -msgid "Alerts_Fired" -msgstr "Alerts_Fired" - -#: ../../extensions/module_groups.php:51 -msgid "warning" -msgstr "avertissement" - -#: ../../extensions/module_groups.php:54 -msgid "Not_init" -msgstr "Not_init" - -#: ../../extensions/module_groups.php:251 -msgid "Combined table of agent group and module group" -msgstr "Tableau combinĆ© du groupe agent et du groupe module" - -#: ../../extensions/module_groups.php:275 -msgid "Search by agent group" -msgstr "Recherche par groupe d'agents" - -#: ../../extensions/module_groups.php:279 -msgid "Search by module group" -msgstr "Recherche par groupe de modules" - -#: ../../extensions/module_groups.php:392 -msgid "" -"Orange cell when the module group and agent have at least one alarm fired." -msgstr "" -"Cellule orange quand le groupe du module et l'agent ont au moins une alerte " -"declenchĆ©e." - -#: ../../extensions/module_groups.php:393 -msgid "" -"Red cell when the module group and agent have at least one module in critical " -"status and the others in any status" -msgstr "" -"Cellule rouge quand le groupe du module et l'agent ont au moins un module dans " -"un Ć©tat critique et le reste dans n'importe quel Ć©tat" - -#: ../../extensions/module_groups.php:394 -msgid "" -"Yellow cell when the module group and agent have at least one in warning " -"status and the others in grey or green status" -msgstr "" -"Cellule jaune quand le groupe du module et l'agent ont au moins un module dans " -"un Ć©tat d'alerte et le reste dans un Ć©tat gris ou vert" - -#: ../../extensions/module_groups.php:395 -msgid "" -"Grey cell when the module group and agent have at least one in unknown status " -"and the others in green status" -msgstr "" -"Cellule grise quand le groupe de module et l'agent ont au moins un module dans " -"un Ć©tat inconnu et le reste dans Ć©tat vert" - -#: ../../extensions/module_groups.php:396 -msgid "Green cell when the module group and agent have all modules in OK status" -msgstr "" -"Cellule verte quand le groupe du module et l'agent prĆ©sentent tous les modules " -"dans un Ć©tat OK" - -#: ../../extensions/module_groups.php:397 -msgid "" -"Blue cell when the module group and agent have all modules in not init status." -msgstr "" -"Cellule bleue quand le groupe de modules et l'agent prĆ©sentent tous les " -"modules dans un Ć©tat de non initialisation." - -#: ../../extensions/module_groups.php:401 -msgid "" -"This table shows in columns the modules group and in rows agents group. The " -"cell shows all modules" -msgstr "" -"Cette table prĆ©sente les groupes de modules en colonnes et les groupes " -"d'agents en rangĆ©es. La cellule affiche tous les modules" - -#: ../../extensions/module_groups.php:402 -msgid "There are no defined groups or module groups" -msgstr "Aucun groupe ou groupe de modules dĆ©fini" - -#: ../../extensions/agents_modules.php:564 -msgid "Agent/module view" -msgstr "Afficher agent/module" - -#: ../../extensions/agents_modules.php:605 -msgid "Filters " -msgstr "Filtres " - -#: ../../extensions/agents_modules.php:605 -msgid "Secondary groups and agent subgroups will be taken into account." -msgstr "" -"Les groupes secondaires et les sous-groupes d'agents seront pris en compte." - -#: ../../extensions/agents_modules.php:765 -msgid "Previous modules" -msgstr "Modules prĆ©cĆ©dents" - -#: ../../extensions/agents_modules.php:791 -msgid "More modules" -msgstr "Plus de modules" - -#: ../../extensions/agents_modules.php:945 -msgid "Cell turns blue when the module is in 'not initialize' status" -msgstr "" -"Cellule devient bleue quand le module se trouve en Ć©tat Ā« non initialisĆ© Ā»" - -#: ../../extensions/agents_modules.php:959 -msgid "Agents/Modules view" -msgstr "Afficher agents/modules" - -#: ../../extensions/files_repo.php:103 -msgid "Extension not installed" -msgstr "Extension non installĆ©e" - -#: ../../extensions/files_repo.php:118 ../../extensions/files_repo.php:207 -msgid "Administration view" -msgstr "Afficher administration" - -#: ../../extensions/files_repo.php:130 ../../extensions/files_repo.php:240 -msgid "Files repository manager" -msgstr "Gestionnaire du rĆ©pertoire de fichiers" - -#: ../../extensions/files_repo.php:148 -msgid "" -"Problem uploading. Please check this PHP runtime variable values:
      "
    -"post_max_size (currently "
    -msgstr ""
    -"ProblĆØme de tĆ©lĆ©chargement. Veuillez vĆ©rifier les valeurs de cette variable "
    -"dā€™exĆ©cution PHP : 
      post_max_size (actuellement "
    -
    -#: ../../extensions/files_repo.php:221 ../../extensions/files_repo.php:238
    -msgid "Files repository"
    -msgstr "RĆ©pertoire de fichiers"
    -
    -#: ../../extensions/resource_registration.php:55
    -#, php-format
    -msgid "Success add '%s' item in report '%s'."
    -msgstr "ƉlĆ©ment '%s' ajoutĆ© correctement au rapport '%s'"
    -
    -#: ../../extensions/resource_registration.php:60
    -#, php-format
    -msgid "Error create '%s' item in report '%s'."
    -msgstr "Erreur de crƩation de l'ƩlƩment '%s' dans le rapport '%s'"
    -
    -#: ../../extensions/resource_registration.php:96
    -#, php-format
    -msgid "Error create '%s' report, the name exist and there aren't free name."
    -msgstr ""
    -"Erreur de crƩation du rapport '%s'. Ce nom existe dƩjƠ et il n'y a plus de "
    -"noms disponibles."
    -
    -#: ../../extensions/resource_registration.php:104
    -#, php-format
    -msgid "Warning create '%s' report, the name exist, the report have a name %s."
    -msgstr ""
    -"Alerte crƩation rapport '%s', le nom existe dƩjƠ. Le nom du rapport est %s."
    -
    -#: ../../extensions/resource_registration.php:113
    -msgid "Error the report haven't name."
    -msgstr "Erreur, le rapport n'a pas de nom"
    -
    -#: ../../extensions/resource_registration.php:127
    -msgid "Error the report haven't group."
    -msgstr "Erreur, le rapport n'a pas de groupe"
    -
    -#: ../../extensions/resource_registration.php:140
    -#, php-format
    -msgid "Success create '%s' report."
    -msgstr "Rapport '%s' crƩƩ correctement"
    -
    -#: ../../extensions/resource_registration.php:141
    -#, php-format
    -msgid "Error create '%s' report."
    -msgstr "Erreur de crƩation du rapport '%s'"
    -
    -#: ../../extensions/resource_registration.php:435
    -#: ../../extensions/resource_registration.php:457
    -#: ../../extensions/resource_registration.php:468
    -#, php-format
    -msgid "Success add '%s' content."
    -msgstr "Contenu '%s' ajoutƩ correctement"
    -
    -#: ../../extensions/resource_registration.php:445
    -#, php-format
    -msgid "Success add '%s' SLA."
    -msgstr "'%s' SLA ajoutƩ correctement"
    -
    -#: ../../extensions/resource_registration.php:446
    -#, php-format
    -msgid "Error add '%s' SLA."
    -msgstr "Erreur, '%s' SLA non ajoutƩ"
    -
    -#: ../../extensions/resource_registration.php:489
    -#, php-format
    -msgid "Error create '%s' visual map, lost tag name."
    -msgstr "Erreur de crƩation de la carte visuelle '%s', nom de l'Ʃtiquette perdu"
    -
    -#: ../../extensions/resource_registration.php:532
    -#, php-format
    -msgid "Error create '%s' visual map, the name exist and there aren't free name."
    -msgstr ""
    -"Erreur de crƩation de la carte visuelle '%s', ce nom existe et il n'y a plus "
    -"de noms disponibles."
    -
    -#: ../../extensions/resource_registration.php:540
    -#, php-format
    -msgid ""
    -"Warning create '%s' visual map, the name exist, the report have a name %s."
    -msgstr ""
    -"Alerte lors de la crƩation de la carte visuelle '%s', le nom existe. Le "
    -"rapport a un nom %s."
    -
    -#: ../../extensions/resource_registration.php:552
    -#, php-format
    -msgid "Success create '%s' visual map."
    -msgstr "Carte visuelle '%s' crƩƩe correctement"
    -
    -#: ../../extensions/resource_registration.php:553
    -#, php-format
    -msgid "Error create '%s' visual map."
    -msgstr "Erreur de crƩation de la carte visuelle '%s'."
    -
    -#: ../../extensions/resource_registration.php:718
    -#, php-format
    -msgid "Success create item type '%d' visual map."
    -msgstr "ƉlĆ©ment type '%d' de la carte visuelle crĆ©Ć© correctement"
    -
    -#: ../../extensions/resource_registration.php:719
    -#, php-format
    -msgid "Error create item type '%d' visual map."
    -msgstr "Erreur de crƩation de l'ƩlƩment type '%d' de la carte visuelle"
    -
    -#: ../../extensions/resource_registration.php:742
    -#: ../../extensions/resource_registration.php:763
    -#, php-format
    -msgid "Success create item for agent '%s' visual map."
    -msgstr "ƉlĆ©ment pour agent '%s' de la carte visuelle crĆ©Ć© correctement"
    -
    -#: ../../extensions/resource_registration.php:743
    -#: ../../extensions/resource_registration.php:764
    -#, php-format
    -msgid "Error create item for agent '%s' visual map."
    -msgstr "Erreur de crƩation de l'ƩlƩment pour l'agent '%s' de la carte visuelle."
    -
    -#: ../../extensions/resource_registration.php:1028
    -#, php-format
    -msgid "Success create '%s' component."
    -msgstr "Composant '%s' crƩƩ correctement"
    -
    -#: ../../extensions/resource_registration.php:1029
    -#, php-format
    -msgid "Error create '%s' component."
    -msgstr "Erreur de crƩation du composant '%s'."
    -
    -#: ../../extensions/resource_registration.php:1095
    -#: ../../extensions/resource_registration.php:1158
    -msgid "Resource registration"
    -msgstr "Enregistrement de ressource"
    -
    -#: ../../extensions/resource_registration.php:1114
    -#, php-format
    -msgid ""
    -"This node is configured with centralized mode. Go to %s to create a policy."
    -msgstr ""
    -"Ce nœud est configurĆ© en mode centralisĆ©. AccĆ©dez Ć  %s pour crĆ©er une "
    -"politique."
    -
    -#: ../../extensions/resource_registration.php:1123
    -msgid "This extension makes registering resource templates easier."
    -msgstr "Cette extension facilite l'enregistrement des modĆØles de ressources."
    -
    -#: ../../extensions/resource_registration.php:1123
    -msgid "Here you can upload a resource template in .ptr format."
    -msgstr "Ici, vous pouvez tĆ©lĆ©charger un modĆØle de ressource au format .ptr."
    -
    -#: ../../extensions/resource_registration.php:1123
    -#, php-format
    -msgid ""
    -"Please refer to our documentation for more information on how to obtain and "
    -"use %s resources."
    -msgstr ""
    -"Veuillez vous rƩfƩrer Ơ notre documentation pour plus d'informations sur la "
    -"faƧon d'obtenir et d'utiliser des ressources %s."
    -
    -#: ../../extensions/resource_registration.php:1123
    -msgid ""
    -"You can get more resurces in our Public Resource Library"
    -msgstr ""
    -"Vous pouvez obtenir plus de resources dans notre bibliothĆØque de ressources publiques"
    -
    -#: ../../extensions/resource_exportation.php:50
    -#: ../../extensions/resource_exportation.php:420
    -msgid "Resource exportation"
    -msgstr "Exportation de ressource"
    -
    -#: ../../extensions/resource_exportation.php:423
    -msgid "This extension makes exportation of resource template more easy."
    -msgstr "Cette extension facilite l'exportation du modĆØle de ressource."
    -
    -#: ../../extensions/resource_exportation.php:423
    -msgid "You can export resource templates in .ptr format."
    -msgstr "Vous pouvez exporter des modĆØles de ressources au format .ptr."
    -
    -#: ../../extensions/api_checker.php:111 ../../extensions/api_checker.php:248
    -msgid "API checker"
    -msgstr "VĆ©rificateur API"
    -
    -#: ../../extensions/api_checker.php:128
    -#, php-format
    -msgid "%s Console URL"
    -msgstr "%s URL de la console"
    -
    -#: ../../extensions/api_checker.php:133
    -msgid "API Pass"
    -msgstr "Mot de passe de l'API"
    -
    -#: ../../extensions/api_checker.php:151
    -msgid "Action (get or set)"
    -msgstr "Action (obtenir ou dƩfinir)"
    -
    -#: ../../extensions/api_checker.php:166
    -msgid "ID 2"
    -msgstr "Identifiant 2"
    -
    -#: ../../extensions/api_checker.php:171
    -msgid "Return Type"
    -msgstr "Type de retour"
    -
    -#: ../../extensions/api_checker.php:181
    -msgid "Other Mode"
    -msgstr "Autre mode"
    -
    -#: ../../extensions/api_checker.php:189
    -msgid "Raw URL"
    -msgstr "URL brute"
    -
    -#: ../../extensions/api_checker.php:200
    -msgid "Call parameters"
    -msgstr "ParamĆØtres d'appel"
    -
    -#: ../../extensions/api_checker.php:200
    -msgid "Action: get Operation: module_last_value id: 63"
    -msgstr "Action : get Operation : module_last_value id : 63"
    -
    -#: ../../extensions/api_checker.php:207
    -msgid "Custom URL"
    -msgstr "URL personnalisƩe"
    -
    -#: ../../extensions/api_checker.php:213
    -msgid "Call"
    -msgstr "Appel"
    -
    -#: ../../extensions/api_checker.php:222 ../../extensions/api_checker.php:239
    -msgid "Show URL"
    -msgstr "Afficher URL"
    -
    -#: ../../extensions/api_checker.php:235
    -msgid "Hide URL"
    -msgstr "Cacher URL"
    -
    -#: ../../extensions/insert_data.php:58
    -msgid "Insert data"
    -msgstr "Introduire les donnƩs"
    -
    -#: ../../extensions/insert_data.php:89
    -msgid "You haven't privileges for insert data in the agent."
    -msgstr "Vous n'avez pas de privilĆØges pour introduire des donnĆ©es dans l'agent"
    -
    -#: ../../extensions/insert_data.php:125
    -#, php-format
    -msgid "Can't save agent (%s), module (%s) data xml."
    -msgstr "Impossible de sauvegarder l'agent (%s), module (%s) de donnƩs XML"
    -
    -#: ../../extensions/insert_data.php:134
    -#, php-format
    -msgid "Save agent (%s), module (%s) data xml."
    -msgstr "Sauvegarder l'agent (%s), module (%s) de donnƩs xml"
    -
    -#: ../../extensions/insert_data.php:145
    -#, php-format
    -msgid ""
    -"Please check that the directory \"%s\" is writeable by the apache user. 

    The CSV file format is date;value<newline>date;value<" -"newline>... The date in CSV is in format Y/m/d H:i:s." -msgstr "" -"Veuillez vĆ©rifier que le rĆ©pertoire Ā« %s Ā» est accessible en Ć©criture par " -"l'utilisateur apache.

    Le format de fichier CSV est date;value<" -"newline>date;value<newline>... La date CSV est en format A/M/J H:i:s." - -#: ../../extensions/insert_data.php:273 -msgid "Insert Data" -msgstr "Introduire les donnĆ©es" - -#: ../../mobile/operation/agent.php:162 -msgid "No agent found" -msgstr "Aucun agent retrouvĆ©" - -#: ../../mobile/operation/agent.php:238 -msgid "Modules by status" -msgstr "Modules par Ć©tat" - -#: ../../mobile/operation/agent.php:375 -#, php-format -msgid "Last %s Events" -msgstr "Derniers %s Ć©vĆ©nements" - -#: ../../mobile/operation/modules.php:250 -#, php-format -msgid "Filter Modules by %s" -msgstr "Filtrer les modules par %s" - -#: ../../mobile/operation/modules.php:325 ../../mobile/operation/alerts.php:266 -#: ../../mobile/operation/events.php:718 ../../mobile/operation/agents.php:260 -msgid "Apply Filter" -msgstr "Appliquer le filtre" - -#: ../../mobile/operation/modules.php:659 -msgid "Interval." -msgstr "Intervalle" - -#: ../../mobile/operation/modules.php:661 -msgid "Last update." -msgstr "DerniĆØre mise Ć  jour" - -#: ../../mobile/operation/modules.php:772 -#: ../../godmode/agentes/agent_template.php:269 -msgid "No modules" -msgstr "Pas de modules" - -#: ../../mobile/operation/modules.php:885 ../../mobile/operation/alerts.php:379 -#: ../../mobile/operation/events.php:1155 ../../mobile/operation/agents.php:550 -msgid "(Default)" -msgstr "(Par dĆ©faut)" - -#: ../../mobile/operation/modules.php:891 ../../mobile/operation/alerts.php:392 -#: ../../mobile/operation/events.php:1188 ../../mobile/operation/agents.php:556 -#, php-format -msgid "Group: %s" -msgstr "Groupe : %s" - -#: ../../mobile/operation/modules.php:906 -#, php-format -msgid "Module group: %s" -msgstr "Groupe de module: %s" - -#: ../../mobile/operation/modules.php:913 ../../mobile/operation/alerts.php:399 -#: ../../mobile/operation/events.php:1208 ../../mobile/operation/agents.php:563 -#, php-format -msgid "Status: %s" -msgstr "Ɖtat : %s" - -#: ../../mobile/operation/modules.php:920 ../../mobile/operation/alerts.php:406 -#: ../../mobile/operation/agents.php:570 -#, php-format -msgid "Free Search: %s" -msgstr "Recherche libre : %s" - -#: ../../mobile/operation/modules.php:928 -#, php-format -msgid "Tag: %s" -msgstr "Ɖtiquette : %s" - -#: ../../mobile/operation/visualmaps.php:242 -msgid "All visual consoles" -msgstr "Toutes les consoles visuelles" - -#: ../../mobile/operation/visualmaps.php:254 -msgid "Favourite visual consoles" -msgstr "Consoles visuelles prĆ©fĆ©rĆ©es" - -#: ../../mobile/operation/visualmaps.php:263 -msgid "No maps defined" -msgstr "Aucune carte dĆ©finie" - -#: ../../mobile/operation/home.php:161 ../../mobile/include/ui.class.php:239 -msgid "Home" -msgstr "Accueil" - -#: ../../mobile/operation/tactical.php:216 -msgid "Last activity" -msgstr "DerniĆØre activitĆ©" - -#: ../../mobile/operation/alerts.php:125 ../../mobile/operation/alerts.php:126 -#: ../../mobile/operation/alerts.php:256 ../../mobile/operation/alerts.php:257 -#: ../../godmode/alerts/alert_view.php:128 -msgid "Stand by" -msgstr "Veuillez patientez" - -#: ../../mobile/operation/alerts.php:208 -#, php-format -msgid "Filter Alerts by %s" -msgstr "Filtrer alertes par %s" - -#: ../../mobile/operation/alerts.php:346 -msgid "Last Fired" -msgstr "DĆ©clenchĆ©e pour la derniĆØre fois" - -#: ../../mobile/operation/alerts.php:357 -msgid "No alerts" -msgstr "Aucune alerte" - -#: ../../mobile/operation/alerts.php:385 -#, php-format -msgid "Standby: %s" -msgstr "En mode veille : %s" - -#: ../../mobile/operation/events.php:405 ../../mobile/operation/events.php:414 -#: ../../mobile/operation/events.php:643 ../../mobile/operation/events.php:644 -msgid "Preset Filters" -msgstr "Filtres prĆ©dĆ©finis" - -#: ../../mobile/operation/events.php:485 -msgid "ERROR: Event detail" -msgstr "ERREUR : dĆ©tails de l'Ć©vĆ©nement" - -#: ../../mobile/operation/events.php:486 -msgid "Error connecting to DB." -msgstr "Erreur lors de la connexions dans la base de donnĆ©es." - -#: ../../mobile/operation/events.php:501 -msgid "Event detail" -msgstr "DĆ©tails de l'Ć©vĆ©nement" - -#: ../../mobile/operation/events.php:584 -msgid "Sucessful validate" -msgstr "ValidĆ© correctement" - -#: ../../mobile/operation/events.php:586 -msgid "Fail validate" -msgstr "Validation Ć©chouĆ©e" - -#: ../../mobile/operation/events.php:625 -#, php-format -msgid "Filter Events by %s" -msgstr "Filtrer les Ć©vĆØnements par %s" - -#: ../../mobile/operation/events.php:1160 -#, php-format -msgid "Filter: %s" -msgstr "Filtrer : %s" - -#: ../../mobile/operation/events.php:1172 -#, php-format -msgid "Severity: %s" -msgstr "SĆ©vĆ©ritĆ© : %s" - -#: ../../mobile/operation/events.php:1201 -#, php-format -msgid "Type: %s" -msgstr "Type : %s" - -#: ../../mobile/operation/events.php:1215 -#, php-format -msgid "Free search: %s" -msgstr "Recherche libre : %s" - -#: ../../mobile/operation/events.php:1222 -#, php-format -msgid "Hours: %s" -msgstr "Heures : %s" - -#: ../../mobile/operation/module_graph.php:359 -#: ../../mobile/operation/module_graph.php:372 -#, php-format -msgid "%s: %s" -msgstr "%s: %s" - -#: ../../mobile/operation/module_graph.php:405 -#, php-format -msgid "Options for %s : %s" -msgstr "Options pour %s : %s" - -#: ../../mobile/operation/module_graph.php:412 -msgid "Show Alerts" -msgstr "Afficher les alertes" - -#: ../../mobile/operation/module_graph.php:420 -msgid "Show Events" -msgstr "Afficher les Ć©vĆ©nements" - -#: ../../mobile/operation/module_graph.php:449 -msgid "Time range (hours)" -msgstr "Intervalle de temps (heures)" - -#: ../../mobile/operation/module_graph.php:468 -msgid "Update graph" -msgstr "Mettre Ć  jour le graphique" - -#: ../../mobile/operation/module_graph.php:478 -msgid "Error get the graph" -msgstr "Erreur d'obtention du graphique" - -#: ../../mobile/operation/agents.php:218 -#, php-format -msgid "Filter Agents by %s" -msgstr "Filtrer agents par %s" - -#: ../../mobile/operation/agents.php:454 -msgid "No agents" -msgstr "Aucun agent" - -#: ../../mobile/include/user.class.php:171 -msgid "User cannot log in into this console, please contact administrator" -msgstr "" -"L'utilisateur ne peut pas entrer dans la console, veuillez contacter " -"l'administrateur" - -#: ../../mobile/include/user.class.php:264 -#: ../../mobile/include/user.class.php:279 -#: ../../mobile/include/user.class.php:286 -msgid "Double authentication failed" -msgstr "Double authentification Ć©chouĆ©e" - -#: ../../mobile/include/user.class.php:265 -msgid "Secret code not found" -msgstr "Code secret introuvable" - -#: ../../mobile/include/user.class.php:265 -msgid "Please contact the administrator to reset your double authentication" -msgstr "" -"Veuillez communiquer avec l'administrateur pour rĆ©initialiser votre double " -"authentification." - -#: ../../mobile/include/user.class.php:287 -msgid "There was an error checking the code" -msgstr "Erreur de vĆ©rification du code" - -#: ../../mobile/include/user.class.php:328 -msgid "Login Failed" -msgstr "Connexion Ć©chouĆ©e" - -#: ../../mobile/include/user.class.php:332 -msgid "User not found in database or incorrect password." -msgstr "" -"Utilisateur introuvable dans la base de donnĆ©es ou mot de passe incorrect." - -#: ../../mobile/include/user.class.php:341 -msgid "Login out" -msgstr "Fermer la session" - -#: ../../mobile/include/user.class.php:372 -msgid "user" -msgstr "utilisateur" - -#: ../../mobile/include/user.class.php:379 -msgid "password" -msgstr "mot de passe" - -#: ../../mobile/include/user.class.php:468 -#: ../../mobile/include/user.class.php:469 -msgid "Authenticator code" -msgstr "Code d'authentification" - -#: ../../mobile/include/system.class.php:156 -msgid "" -"Access to this page is restricted to authorized users only, please contact " -"your system administrator if you should need help." -msgstr "" -"AccĆØs Ć  cette page est limitĆ© aux utilisateurs autorisĆ©s seulement, veuillez " -"contacter votre administrateur systĆØme si vous avez besoin de l'aide." - -#: ../../mobile/include/system.class.php:156 -#, php-format -msgid "" -"Please remember that any attempts to access this page will be recorded on the " -"%s System Database." -msgstr "" -"Rappelez-vous que les essais d'accĆØs Ć  cette page seront enregistrĆ©s dans la " -"base du systĆØme %s." - -#: ../../mobile/include/ui.class.php:120 -#, php-format -msgid "%s mobile" -msgstr "%s portable" - -#: ../../mobile/include/ui.class.php:217 -#, php-format -msgid "%s : Mobile" -msgstr "%s : Portable" - -#: ../../mobile/include/ui.class.php:327 -#, php-format -msgid "%s %s - Build %s" -msgstr "%s %s - Build %s" - -#: ../../mobile/include/ui.class.php:773 -msgid "Not found header." -msgstr "En-tĆŖte introuvable" - -#: ../../mobile/include/ui.class.php:775 -msgid "Not found content." -msgstr "Contenu introuvable" - -#: ../../mobile/include/ui.class.php:777 -msgid "Not found footer." -msgstr "Pied de page introuvable" - -#: ../../mobile/include/ui.class.php:779 -msgid "Incorrect form." -msgstr "Forme incorrecte" - -#: ../../mobile/include/ui.class.php:781 -msgid "Incorrect grid." -msgstr "Grille incorrecte" - -#: ../../mobile/include/ui.class.php:783 -msgid "Incorrect collapsible." -msgstr "Pliage incorrect" - -#: ../../mobile/include/functions_web.php:83 -#, php-format -msgid "Pandora FMS %s - Build %s" -msgstr "Pandora FMS %s - CrĆ©er %s" - -#: ../../godmode/setup/setup.php:165 ../../godmode/setup/setup.php:283 -#: ../../godmode/setup/setup_integria.php:585 ../../godmode/menu.php:350 -msgid "Integria IMS" -msgstr "Integria IMS" - -#: ../../godmode/setup/setup.php:216 -msgid "Websocket engine" -msgstr "Moteur de Websocket" - -#: ../../godmode/setup/setup.php:234 -msgid "GIS Map connection" -msgstr "Connexion Ć  la carte SIG" - -#: ../../godmode/setup/setup.php:295 ../../godmode/menu.php:365 -msgid "Map conections GIS" -msgstr "Connexions de cartes GIS" - -#: ../../godmode/setup/setup.php:305 -msgid "Pandora Websocket Engine" -msgstr "Moteur de Websocket Pandora FMS" - -#: ../../godmode/setup/setup.php:349 -msgid "Correct update the setup options" -msgstr "Corrigez la mise Ć  jour des options de configuration" - -#: ../../godmode/setup/snmp_wizard.php:155 -msgid "Unsucessful update the snmp translation" -msgstr "Erreur de mise Ć  jour de la traduction SNMP" - -#: ../../godmode/setup/snmp_wizard.php:162 -msgid "Unsucessful update the snmp translation." -msgstr "Erreur de mise Ć  jour de la traduction SNMP" - -#: ../../godmode/setup/snmp_wizard.php:210 -msgid "Unsucessful delete the snmp translation" -msgstr "Erreur de suppression de la traduction SNMP" - -#: ../../godmode/setup/snmp_wizard.php:217 -msgid "Unsucessful delete the snmp translation." -msgstr "Erreur de suppression de la traduction SNMP" - -#: ../../godmode/setup/snmp_wizard.php:278 -msgid "Unsucessful save the snmp translation" -msgstr "Erreur d'enregistrement de la traduction SNMP" - -#: ../../godmode/setup/snmp_wizard.php:287 -msgid "Unsucessful save the snmp translation." -msgstr "Erreur d'enregistrement de la traduction SNMP" - -#: ../../godmode/setup/os.list.php:56 -#, php-format -msgid "" -"This node is configured with centralized mode. All OS definitions are read " -"only. Go to %s to manage them." -msgstr "" -"Ce nœud est configurĆ© en mode centralisĆ©. Toutes les dĆ©finitions de systĆØme " -"d'exploitation sont en lecture seule. AccĆ©dez Ć  %s pour les gĆ©rer." - -#: ../../godmode/setup/os.list.php:141 -msgid "There are no defined operating systems" -msgstr "Aucun systĆØme d'exploitation dĆ©fini" - -#: ../../godmode/setup/os.list.php:147 -msgid "Create OS" -msgstr "DĆ©finir systĆØme d'exploitation" - -#: ../../godmode/setup/setup_integria.php:296 -msgid "URL to Integria IMS setup" -msgstr "URL vers la configuration Integria IMS" - -#: ../../godmode/setup/setup_integria.php:296 -msgid "" -"Full URL to your Integria IMS setup (e.g., http://192.168.1.20/integria, " -"https://support.mycompany.com)." -msgstr "" -"URL complĆØte de votre configuration Integria IMS (par exemple, " -"http://192.168.1.20/integria, https://support.mycompany.com)." - -#: ../../godmode/setup/setup_integria.php:302 -msgid "API Password" -msgstr "Mot de passe API" - -#: ../../godmode/setup/setup_integria.php:309 -#: ../../godmode/setup/setup_ehorus.php:105 -msgid "Request timeout" -msgstr "Demande expirĆ©e" - -#: ../../godmode/setup/setup_integria.php:315 -msgid "Sync inventory" -msgstr "Synchroniser l'inventaire" - -#: ../../godmode/setup/setup_integria.php:348 -#: ../../godmode/setup/setup_integria.php:469 -msgid "Ticket body" -msgstr "Corps du ticket" - -#: ../../godmode/setup/setup_integria.php:603 -msgid "Integria API settings" -msgstr "ParamĆØtres de l'API Integria" - -#: ../../godmode/setup/setup_integria.php:614 -msgid "Alert default values" -msgstr "Valeurs par dĆ©faut des alertes" - -#: ../../godmode/setup/setup_integria.php:624 -msgid "Event custom response default values" -msgstr "Valeurs par dĆ©faut de la rĆ©ponse personnalisĆ©e de l'Ć©vĆ©nement" - -#: ../../godmode/setup/setup_integria.php:719 -#: ../../godmode/setup/setup_ehorus.php:254 -msgid "Connection timeout" -msgstr "DĆ©passement du dĆ©lai de connexion" - -#: ../../godmode/setup/gis_step_2.php:37 -msgid "GIS Maps connections" -msgstr "Connexions aux cartes SIG" - -#: ../../godmode/setup/gis_step_2.php:54 -msgid "Create new map connection" -msgstr "CrĆ©er une nouvelle connexion de carte" - -#: ../../godmode/setup/gis_step_2.php:81 -msgid "Edit map connection" -msgstr "Modifier la connexion de la carte" - -#: ../../godmode/setup/gis_step_2.php:213 -msgid "Connection Name" -msgstr "Nom de la connexion" - -#: ../../godmode/setup/gis_step_2.php:219 -msgid "Number of zoom levels" -msgstr "Nombre de niveaux de zoom" - -#: ../../godmode/setup/gis_step_2.php:223 -msgid "Default zoom level" -msgstr "Niveau de zoom par dĆ©faut" - -#: ../../godmode/setup/gis_step_2.php:226 -msgid "Basic configuration" -msgstr "Configuration de base" - -#: ../../godmode/setup/gis_step_2.php:231 -msgid "Open Street Maps" -msgstr "OpenStreetMaps" - -#: ../../godmode/setup/gis_step_2.php:232 -msgid "Google Maps" -msgstr "Google Maps" - -#: ../../godmode/setup/gis_step_2.php:234 -msgid "WMS Server" -msgstr "Serveur WMS" - -#: ../../godmode/setup/gis_step_2.php:236 -msgid "Please select the connection type" -msgstr "Veuillez sĆ©lectionner le type de connexion" - -#: ../../godmode/setup/gis_step_2.php:238 -msgid "Map connection type" -msgstr "Type de connexion de la carte" - -#: ../../godmode/setup/gis_step_2.php:286 -msgid "Tile Server URL" -msgstr "URL du serveur mosaĆÆque" - -#: ../../godmode/setup/gis_step_2.php:299 -msgid "Google Physical" -msgstr "Google Physical" - -#: ../../godmode/setup/gis_step_2.php:300 -msgid "Google Hybrid" -msgstr "Google Hybrid" - -#: ../../godmode/setup/gis_step_2.php:301 -msgid "Google Satelite" -msgstr "Google Satellite" - -#: ../../godmode/setup/gis_step_2.php:303 -msgid "Google Map Type" -msgstr "Type de carte Google" - -#: ../../godmode/setup/gis_step_2.php:327 -msgid "Google Maps Key" -msgstr "ClĆ© Google Maps" - -#: ../../godmode/setup/gis_step_2.php:336 -msgid "Image URL" -msgstr "URL de l'image" - -#: ../../godmode/setup/gis_step_2.php:343 -msgid "Corners of the area of the image" -msgstr "Coins qui dĆ©limitent la surface de l'image" - -#: ../../godmode/setup/gis_step_2.php:371 -msgid "Image Size" -msgstr "Taille de l'image" - -#: ../../godmode/setup/gis_step_2.php:388 -msgid "WMS Server URL" -msgstr "URL du serveur WMS" - -#: ../../godmode/setup/gis_step_2.php:395 -#: ../../godmode/gis_maps/configure_gis_map.php:552 -msgid "Layers" -msgstr "Couches" - -#: ../../godmode/setup/gis_step_2.php:430 -msgid "" -"Preview to select the center of the map and the default position of an agent " -"without gis data" -msgstr "" -"AperƧu pour sĆ©lectionner le centre de la carte et la position d'un agent par " -"dĆ©faut sans des donnĆ©es GIS" - -#: ../../godmode/setup/gis_step_2.php:431 -msgid "Load preview map" -msgstr "Charger l'aperƧu de la carte" - -#: ../../godmode/setup/gis_step_2.php:440 -msgid "Map Center" -msgstr "Centre de la carte" - -#: ../../godmode/setup/gis_step_2.php:441 -msgid "Default position for agents without GIS data" -msgstr "Position par dĆ©faut des agents sans donnĆ©es GIS" - -#: ../../godmode/setup/gis_step_2.php:443 -msgid "Change in the map" -msgstr "Modifier dans la carte" - -#: ../../godmode/setup/gis_step_2.php:564 ../../godmode/setup/gis_step_2.php:659 -msgid "Center" -msgstr "Centre" - -#: ../../godmode/setup/gis_step_2.php:624 -msgid "Refresh preview map" -msgstr "RafraĆ®chir l'aperƧu de la carte" - -#: ../../godmode/setup/setup_visuals.php:79 -msgid "Paginated module view" -msgstr "Vue paginĆ©e du module" - -#: ../../godmode/setup/setup_visuals.php:106 -msgid "Click to display lateral menus" -msgstr "Cliquer pour afficher les menus latĆ©raux" - -#: ../../godmode/setup/setup_visuals.php:120 -msgid "Space between items in Service maps" -msgstr "Espace entre les Ć©lĆ©ments sur les cartes de service" - -#: ../../godmode/setup/setup_visuals.php:151 -msgid "Colors" -msgstr "Couleurs" - -#: ../../godmode/setup/setup_visuals.php:152 -msgid "Faces" -msgstr "Apparence" - -#: ../../godmode/setup/setup_visuals.php:153 -msgid "Colors and text" -msgstr "Couleurs et texte" - -#: ../../godmode/setup/setup_visuals.php:451 -msgid "Custom mobile console icon" -msgstr "IcĆ“ne de console mobile personnalisĆ©e" - -#: ../../godmode/setup/setup_visuals.php:519 -msgid "Disable logo in graphs" -msgstr "DĆ©sactiver logo sur les graphiques" - -#: ../../godmode/setup/setup_visuals.php:535 -msgid "Disable helps" -msgstr "DĆ©sactiver les aides" - -#: ../../godmode/setup/setup_visuals.php:555 -msgid "Automatically hide submenu" -msgstr "Masquer automatiquement le sous-menu" - -#: ../../godmode/setup/setup_visuals.php:604 -msgid "Agent icon group" -msgstr "IcĆ“ne du groupe de l'agent" - -#: ../../godmode/setup/setup_visuals.php:622 -msgid "Graphs font size" -msgstr "Taille de police des graphiques" - -#: ../../godmode/setup/setup_visuals.php:654 -#: ../../godmode/setup/setup_visuals.php:659 -msgid "Small:" -msgstr "Petit :" - -#: ../../godmode/setup/setup_visuals.php:655 -#: ../../godmode/setup/setup_visuals.php:660 -msgid "Normal:" -msgstr "Normal :" - -#: ../../godmode/setup/setup_visuals.php:678 -msgid "Show unit along with value in reports" -msgstr "Afficher l'unitĆ© et la valeur dans les rapports" - -#: ../../godmode/setup/setup_visuals.php:824 -msgid "Data precision" -msgstr "PrĆ©cision des donnĆ©es" - -#: ../../godmode/setup/setup_visuals.php:842 -msgid "Data precision in graphs" -msgstr "PrĆ©cision de donnĆ©es sur les graphiques" - -#: ../../godmode/setup/setup_visuals.php:918 -msgid "Type of interface charts" -msgstr "Type de graphiques interactifs" - -#: ../../godmode/setup/setup_visuals.php:946 -msgid "Graph TIP view:" -msgstr "Affichage TIP du graphique :" - -#: ../../godmode/setup/setup_visuals.php:1059 -msgid "Classic view" -msgstr "Affichage classique" - -#: ../../godmode/setup/setup_visuals.php:1060 -msgid "View of favorites" -msgstr "Vue des favoris" - -#: ../../godmode/setup/setup_visuals.php:1061 -msgid "Type of view of visual consoles" -msgstr "Type d'affichage des consoles visuelles" - -#: ../../godmode/setup/setup_visuals.php:1065 -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:1083 -msgid "Number of favorite services to show in the menu" -msgstr "Nombre de services favoris Ć  afficher dans le menu" - -#: ../../godmode/setup/setup_visuals.php:1150 -msgid "" -"The dir of custom logos is in your www Console in 'images/custom_logo'. You " -"can upload more files (ONLY JPEG AND PNG) in upload tool in console." -msgstr "" -"Le rĆ©pertoire des logos personnalisĆ©s se trouve dans votre console www dans " -"'images/custom_logo'. Vous pouvez tĆ©lĆ©charger plus de fichiers (SEULEMENT JPEG " -"ET PNG) dans l'outil de tĆ©lĆ©chargement de la console." - -#: ../../godmode/setup/setup_visuals.php:1287 -msgid "Custom values post process" -msgstr "Valeurs personnalisĆ©es pour post-traitement" - -#: ../../godmode/setup/setup_visuals.php:1308 -#: ../../godmode/setup/setup_visuals.php:1376 -msgid "Delete custom values" -msgstr "Supprimer les valeurs personnalisĆ©es" - -#: ../../godmode/setup/setup_visuals.php:1340 -msgid "Interval values" -msgstr "Valeurs d'intervalle" - -#: ../../godmode/setup/setup_visuals.php:1368 -msgid "Module units" -msgstr "UnitĆ©s du module" - -#: ../../godmode/setup/setup_visuals.php:1484 -msgid "Behaviour configuration" -msgstr "Configuration de comportement" - -#: ../../godmode/setup/setup_visuals.php:1489 -msgid "GIS configuration" -msgstr "Configuration GIS" - -#: ../../godmode/setup/setup_visuals.php:1494 -msgid "Style configuration" -msgstr "Configuration du style" - -#: ../../godmode/setup/setup_visuals.php:1499 -msgid "Charts configuration" -msgstr "Configuration de graphiques" - -#: ../../godmode/setup/setup_visuals.php:1504 -msgid "Font and Text configuration" -msgstr "Configuration de la police et du texte" - -#: ../../godmode/setup/setup_visuals.php:1509 -msgid "Visual consoles configuration" -msgstr "Configuration des consoles visuelles" - -#: ../../godmode/setup/setup_visuals.php:1514 -msgid "Reports configuration " -msgstr "Configuration des rapports" - -#: ../../godmode/setup/setup_visuals.php:1519 -msgid "Services configuration" -msgstr "Configuration des services" - -#: ../../godmode/setup/setup_visuals.php:1524 -msgid "Other configuration" -msgstr "Autre configuration" - -#: ../../godmode/setup/setup_visuals.php:1801 -msgid "Mobile console logo preview" -msgstr "AperƧu du logo de la console mobile" - -#: ../../godmode/setup/setup_visuals.php:1836 -msgid "Gis icons preview" -msgstr "AperƧu des icĆ“nes GIS" - -#: ../../godmode/setup/setup_visuals.php:1902 -msgid "Status set preview" -msgstr "AperƧu de l'Ć©tat" - -#: ../../godmode/setup/os.php:190 -msgid "List OS" -msgstr "Liste de systĆØmes d'exploitation" - -#: ../../godmode/setup/os.php:202 -msgid "Builder OS" -msgstr "Outil de conception du systĆØme d'exploitation" - -#: ../../godmode/setup/os.php:211 ../../godmode/setup/os.php:229 -#: ../../godmode/menu.php:369 -msgid "Edit OS" -msgstr "Ɖditer systĆØme d'exploitation" - -#: ../../godmode/setup/os.php:211 -msgid "List of OS" -msgstr "Liste de systĆØmes dā€™exploitation" - -#: ../../godmode/setup/os.php:242 -msgid "Fail creating OS" -msgstr "Erreur de dĆ©finition du systĆØme d'exploitation" - -#: ../../godmode/setup/os.php:250 -msgid "Error updating OS" -msgstr "Erreur de mise Ć  jour du systĆØme d'exploitation" - -#: ../../godmode/setup/os.php:254 -msgid "There are agents with this OS." -msgstr "Il y a des agents avec ce systĆØme d'exploitation" - -#: ../../godmode/setup/os.php:258 -msgid "Success deleting" -msgstr "SupprimĆ© correctement" - -#: ../../godmode/setup/os.php:262 -msgid "Error deleting" -msgstr "Erreur de suppression" - -#: ../../godmode/setup/news.php:29 -msgid "Site news management" -msgstr "GĆ©rer les nouveautĆ©s du site" - -#: ../../godmode/setup/news.php:152 ../../godmode/setup/links.php:92 -msgid "Name error" -msgstr "Erreur de nom" - -#: ../../godmode/setup/news.php:191 -msgid "Modal screen" -msgstr "Ɖcran modal" - -#: ../../godmode/setup/news.php:194 -msgid "Expire" -msgstr "Expire le" - -#: ../../godmode/setup/news.php:197 ../../godmode/setup/news.php:250 -msgid "Expiration" -msgstr "Expiration" - -#: ../../godmode/setup/news.php:241 -msgid "There are no defined news" -msgstr "Aucune nouvelle dĆ©finie" - -#: ../../godmode/setup/news.php:268 -msgid "Modal" -msgstr "Modal" - -#: ../../godmode/setup/news.php:270 -msgid "Board" -msgstr "Panneau" - -#: ../../godmode/setup/news.php:281 -msgid "Expired" -msgstr "ExpirĆ©" - -#: ../../godmode/setup/setup_auth.php:207 -msgid "Enable secondary LDAP" -msgstr "Activer LDAP secondaire" - -#: ../../godmode/setup/setup_auth.php:278 -msgid "Secondary Base DN" -msgstr "DN de base secondaire" - -#: ../../godmode/setup/setup_auth.php:291 -msgid "Secondary Login attribute" -msgstr "Attribut de connexion secondaire" - -#: ../../godmode/setup/setup_auth.php:368 -msgid "Force 2FA for all users is enabled" -msgstr "Forcer 2FA pour tous les utilisateurs est activĆ©" - -#: ../../godmode/setup/setup_auth.php:389 -msgid "Session timeout (mins)" -msgstr "Expiration de la session (min)" - -#: ../../godmode/setup/setup_auth.php:432 -#, php-format -msgid "Local %s" -msgstr "%s Local" - -#: ../../godmode/setup/setup_auth.php:433 -msgid "ldap" -msgstr "LDAP" - -#: ../../godmode/setup/license.php:51 -msgid "License management" -msgstr "Gestion de licences" - -#: ../../godmode/setup/license.php:99 -msgid "Error while connecting to licence server." -msgstr "Erreur lors de la connexion au serveur de licences." - -#: ../../godmode/setup/license.php:100 -msgid "Invalid response while validating license." -msgstr "RĆ©ponse invalide lors de la validation de la licence." - -#: ../../godmode/setup/license.php:121 -msgid "Licence" -msgstr "Licence" - -#: ../../godmode/setup/license.php:136 ../../godmode/setup/license.php:139 -#: ../../godmode/setup/license.php:142 ../../godmode/setup/license.php:145 -msgid "agents" -msgstr "agents" - -#: ../../godmode/setup/license.php:150 -msgid "NMS" -msgstr "NMS" - -#: ../../godmode/setup/license.php:167 ../../godmode/setup/license.php:182 -msgid "Request new license" -msgstr "Demander une nouvelle licence" - -#: ../../godmode/setup/license.php:186 -#, php-format -msgid "To get your %s Enterprise License:" -msgstr "Pour obtenir votre %s Licence EntrepriseĀ :" - -#: ../../godmode/setup/license.php:189 -#, php-format -msgid "Go to %s" -msgstr "Aller Ć  %s" - -#: ../../godmode/setup/license.php:192 -msgid "Enter the auth key and the following request key:" -msgstr "" -"Introduisez la clĆ© d'authentification et la suivante clĆ© de la " -"demande :" - -#: ../../godmode/setup/license.php:198 -msgid "Enter your name (or a company name) and a contact email address." -msgstr "" -"Introduisez votre nom (ou le nom d'entreprise) et une adresse courriel de " -"contact." - -#: ../../godmode/setup/license.php:201 -msgid "Click on Generate." -msgstr "Cliquez sur GĆ©nĆ©rer." - -#: ../../godmode/setup/license.php:204 -msgid "" -"Click here, enter the " -"generated license key and click on Validate." -msgstr "" -"Cliquez ici , " -"entrez la clĆ© de licence gĆ©nĆ©rĆ©e et cliquez sur Valider ." - -#: ../../godmode/setup/setup_general.php:145 -msgid "Enforce https Information" -msgstr "Appliquer les informations https" - -#: ../../godmode/setup/setup_general.php:146 -msgid "If SSL is not properly configured you will lose access to " -msgstr "Si SSL n'est pas correctement configurĆ©, vous perdrez l'accĆØs Ć " - -#: ../../godmode/setup/setup_general.php:146 -#: ../../godmode/setup/setup_general.php:340 -msgid " Console" -msgstr "Console" - -#: ../../godmode/setup/setup_general.php:160 -msgid "Use cert of SSL" -msgstr "Utiliser le certificat SSL" - -#: ../../godmode/setup/setup_general.php:173 -msgid "Path of SSL Cert." -msgstr "Chemin du certificat SSL" - -#: ../../godmode/setup/setup_general.php:338 -msgid "Enforce public URL usage information" -msgstr "Appliquer les informations d'utilisation des URL publiques" - -#: ../../godmode/setup/setup_general.php:340 -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:378 -msgid "Change remote config encoding" -msgstr "Changer l'encodage de la configuration Ć  distance" - -#: ../../godmode/setup/setup_general.php:407 -msgid "Full mode" -msgstr "Mode intĆ©gral" - -#: ../../godmode/setup/setup_general.php:409 -msgid "Expert" -msgstr "Expert" - -#: ../../godmode/setup/setup_general.php:433 -msgid "Limit for bulk operations" -msgstr "Limite pour les opĆ©rations massives" - -#: ../../godmode/setup/setup_general.php:443 -msgid "Include agents manually disabled" -msgstr "Inclure les agents dĆ©sactivĆ©s manuellement" - -#: ../../godmode/setup/setup_general.php:451 -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 -msgid "Log location" -msgstr "Emplacement du journal" - -#: ../../godmode/setup/setup_general.php:489 -msgid "Module custom ID readonly" -msgstr "ID personnalisĆ© du module en lecture seule" - -#: ../../godmode/setup/setup_general.php:490 -msgid "Useful for integrations" -msgstr "Utile pour les intĆ©grations" - -#: ../../godmode/setup/setup_general.php:503 -msgid "General options" -msgstr "Options gĆ©nĆ©rales" - -#: ../../godmode/setup/setup_general.php:522 -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 " -"587.\n" -"\n" -" If you have manual settings in your pandora_server.conf, please note these " -"settings will ignore this console setup." -msgstr "" -"Veuillez noter que certains fournisseurs comme Gmail ou Office365 doivent " -"configurer/activer manuellement les connexions externes Ć  lā€™aide de SMTP et " -"que vous devez utiliser STARTTLS sur le port 587.\n" -"\n" -"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:528 -msgid "From address" -msgstr "De l'adresse" - -#: ../../godmode/setup/setup_general.php:548 -msgid "SMTP Server" -msgstr "Serveur SMTP" - -#: ../../godmode/setup/setup_general.php:558 -msgid "SMTP Port" -msgstr "Port SMTP" - -#: ../../godmode/setup/setup_general.php:608 -msgid "Email test" -msgstr "Test d'un email" - -#: ../../godmode/setup/setup_general.php:670 -msgid "Check mail configuration" -msgstr "VĆ©rifier la configuration de la messagerie" - -#: ../../godmode/setup/gis.php:68 -msgid "Map connection name" -msgstr "Nom de connexion de la carte" - -#: ../../godmode/setup/gis.php:86 -msgid "Do you wan delete this connection?" -msgstr "Voulez-vous supprimer cette connexion ?" - -#: ../../godmode/setup/performance.php:181 -msgid "Pandora_db running in active database." -msgstr "Pandora_db s'exĆ©cutant dans la base de donnĆ©es active." - -#: ../../godmode/setup/performance.php:182 -#: ../../godmode/setup/performance.php:238 -msgid "Executed:" -msgstr "ExĆ©cutĆ© :" - -#: ../../godmode/setup/performance.php:237 -msgid "Pandora_db running in historical database." -msgstr "Pandora_db s'exĆ©cutant dans la base de donnĆ©es historique." - -#: ../../godmode/setup/performance.php:245 -msgid "not executed" -msgstr "Non exĆ©cutĆ©" - -#: ../../godmode/setup/performance.php:343 -msgid "Max. days before delete autodisabled agents" -msgstr "" -"Nombre de jours maximum avant la suppression d'agents Ć  dĆ©sactivation " -"automatique" - -#: ../../godmode/setup/performance.php:510 -msgid "Item limit for realtime reports" -msgstr "Limite d'articles pour les rapports en temps rĆ©el" - -#: ../../godmode/setup/performance.php:533 -msgid "Last day" -msgstr "Dernier jour" - -#: ../../godmode/setup/performance.php:535 -msgid "10 days" -msgstr "10 jours" - -#: ../../godmode/setup/performance.php:537 -msgid "2 weeks" -msgstr "2 semaines" - -#: ../../godmode/setup/performance.php:584 -msgid "Big Operation Step to purge old data" -msgstr "Ɖtape majeure pour nettoyer les donnĆ©es anciennes" - -#: ../../godmode/setup/performance.php:634 -msgid "SNMP walk binary" -msgstr "Chemin binaire de SNMP walk" - -#: ../../godmode/setup/performance.php:645 -msgid "" -"SNMP bulk walk is not able to request V1 SNMP, this option will be used " -"instead (by default snmpwalk, slower)." -msgstr "" -"SNMP bulk walk n'est pas capable de demander SNMP V1, cette option sera " -"utilisĆ©e Ć  la place (par dĆ©faut snmpwalk, plus lent)." - -#: ../../godmode/setup/performance.php:648 -msgid "SNMP walk binary (fallback)" -msgstr "SNMP walk binaire (repli)" - -#: ../../godmode/setup/performance.php:691 -msgid "Database maintenance options" -msgstr "Options d'entretien de la base de donnĆ©es" - -#: ../../godmode/setup/performance.php:697 -msgid "Historical database maintenance options" -msgstr "Options de maintenance de la base de donnĆ©es historique" - -#: ../../godmode/setup/setup_ehorus.php:93 -msgid "API Hostname" -msgstr "Nom d'hĆ“te de l'API" - -#: ../../godmode/setup/setup_ehorus.php:99 -msgid "API Port" -msgstr "Port API" - -#: ../../godmode/setup/setup_ehorus.php:139 -msgid "Remote Management System" -msgstr "SystĆØme de Gestion Ć  Distance" - -#: ../../godmode/setup/setup_ehorus.php:147 -msgid "Custom field eHorusID created" -msgstr "Champ personnalisĆ© avec identifiant eHorus crĆ©Ć© correctement" - -#: ../../godmode/setup/setup_ehorus.php:147 -msgid "Error creating custom field" -msgstr "Erreur de crĆ©ation du champ personnalisĆ©" - -#: ../../godmode/setup/setup_ehorus.php:151 -msgid "eHorus has his own agent identifiers" -msgstr "eHorus dispose de ses propres identifiants d'agents." - -#: ../../godmode/setup/setup_ehorus.php:152 -msgid "To store them, it will be necessary to use an agent custom field" -msgstr "Pour les stocker, il faudra utiliser un champ personnalisĆ© de l'agent." - -#: ../../godmode/setup/setup_ehorus.php:153 -msgid "Possibly the eHorus id will have to be filled in by hand for every agent" -msgstr "" -"Il faudra possiblement introduire l'identifiant manuellement pour chaque agent." - -#: ../../godmode/setup/setup_ehorus.php:158 -msgid "The custom field does not exists already" -msgstr "Le champ personnalisĆ© n'existe pas encore" - -#: ../../godmode/setup/setup_ehorus.php:172 -msgid "eHorus API" -msgstr "API de eHorus" - -#: ../../godmode/setup/setup_websocket_engine.php:38 -msgid "WebSocket settings" -msgstr "ParamĆØtres WebSocket" - -#: ../../godmode/setup/setup_websocket_engine.php:47 -msgid "Bind address" -msgstr "Lier l'adresse" - -#: ../../godmode/setup/setup_websocket_engine.php:57 -msgid "Bind port" -msgstr "Lier le port" - -#: ../../godmode/setup/links.php:28 -msgid "Link management" -msgstr "Gestion des liens" - -#: ../../godmode/servers/plugin.php:73 -msgid "Network Components" -msgstr "Composants de rĆ©seau" - -#: ../../godmode/servers/plugin.php:290 ../../godmode/servers/plugin.php:617 -#: ../../godmode/servers/plugin_registration.php:59 -msgid "To manage plugin you must activate centralized management" -msgstr "Pour gĆ©rer le plugin dā€™inventaire, activez la gestion centralisĆ©e" - -#: ../../godmode/servers/plugin.php:303 -msgid "Plugin update" -msgstr "Mise Ć  jour du plugin" - -#: ../../godmode/servers/plugin.php:314 ../../godmode/servers/plugin.php:636 -msgid "" -"This console is not manager of this environment,\n" -" \t\tplease manage this feature from centralized manager console " -"(Metaconsole)." -msgstr "" -"Cette console n'est pas gestionnaire de cet environnement,\n" -" \t\tveuillez gĆ©rer cette fonctionnalitĆ© Ć  partir de la console de " -"gestion centralisĆ©e (Metaconsole)." - -#: ../../godmode/servers/plugin.php:345 -msgid "Plugin type" -msgstr "Type de plugin" - -#: ../../godmode/servers/plugin.php:346 ../../godmode/servers/plugin.php:845 -#: ../../godmode/servers/modificar_server.php:40 -msgid "Standard" -msgstr "Standard" - -#: ../../godmode/servers/plugin.php:347 ../../godmode/servers/plugin.php:847 -msgid "Nagios" -msgstr "Nagios" - -#: ../../godmode/servers/plugin.php:352 -msgid "Max. timeout" -msgstr "Interruption de session max." - -#: ../../godmode/servers/plugin.php:352 -msgid "" -"This value only will be applied if is minor than the server general " -"configuration plugin timeout" -msgstr "" -"Cette valeur s'appliquera uniquement si elle est infĆ©rieure au temps " -"d'interruption du plugin de configuration du serveur gĆ©nĆ©ral." - -#: ../../godmode/servers/plugin.php:352 -msgid "If you set a 0 seconds timeout, the server plugin timeout will be used" -msgstr "" -"Si vous dĆ©finissez un temps d'interruption de 0 secondes, le temps " -"d'interruption du plugin du serveur sera employĆ©." - -#: ../../godmode/servers/plugin.php:401 -msgid "Plugin command" -msgstr "Commande de plugin" - -#: ../../godmode/servers/plugin.php:401 -msgid "" -"Specify interpreter and plugin path. The server needs permissions to run it." -msgstr "" -"SpĆ©cifiez l'interprĆ©teur et le chemin du plug-in. Le serveur a besoin " -"d'autorisations pour l'exĆ©cuter." - -#: ../../godmode/servers/plugin.php:413 -msgid "Plug-in parameters" -msgstr "ParamĆØtres des plugins" - -#: ../../godmode/servers/plugin.php:422 ../../godmode/alerts/alert_view.php:527 -#: ../../godmode/alerts/alert_view.php:654 -#: ../../godmode/alerts/configure_alert_action.php:310 -msgid "Command preview" -msgstr "AperƧu de commandes" - -#: ../../godmode/servers/plugin.php:581 ../../godmode/servers/plugin.php:586 -msgid "Parameters macros" -msgstr "Macros des paramĆØtres" - -#: ../../godmode/servers/plugin.php:623 -#, php-format -msgid "Plug-ins registered on %s" -msgstr "Plugins enregistrĆ©s sur %s" - -#: ../../godmode/servers/plugin.php:645 -msgid "You need to create your own plugins with Windows compatibility" -msgstr "Vous devez crĆ©er vos propres plugins compatibles avec Windows" - -#: ../../godmode/servers/plugin.php:711 -msgid "Problem updating plugin" -msgstr "ProblĆØme de mise Ć  jour du plugin" - -#: ../../godmode/servers/plugin.php:713 -msgid "Plugin updated successfully" -msgstr "Plugin mis Ć  jour correctement" - -#: ../../godmode/servers/plugin.php:771 -msgid "Problem creating plugin" -msgstr "ProblĆØme de crĆ©ation du plugin" - -#: ../../godmode/servers/plugin.php:773 -msgid "Plugin created successfully" -msgstr "Plugin crĆ©Ć© correctement" - -#: ../../godmode/servers/plugin.php:785 -msgid "Problem deleting plugin" -msgstr "ProblĆØme de suppression du plugin" - -#: ../../godmode/servers/plugin.php:787 ../../godmode/servers/plugin.php:799 -msgid "Plugin deleted successfully" -msgstr "Plugin supprimĆ© correctement" - -#: ../../godmode/servers/plugin.php:884 -msgid "All the modules that are using this plugin will be deleted" -msgstr "Tous les modules qui utilisent ce plugin seront supprimĆ©s" - -#: ../../godmode/servers/plugin.php:901 -msgid "There are no plugins in the system" -msgstr "Aucun plugin dans le systĆØme" - -#: ../../godmode/servers/plugin.php:915 -#, php-format -msgid "List of modules and components created by \"%s\" " -msgstr "Liste de modules et composants crĆ©Ć©s par Ā« %s Ā» " - -#: ../../godmode/servers/plugin.php:1021 ../../godmode/servers/plugin.php:1037 -msgid "Some modules or components are using the plugin" -msgstr "Certains modules ou composants utilisent le plugin." - -#: ../../godmode/servers/plugin.php:1022 -msgid "" -"The modules or components should be updated manually or using the bulk " -"operations for plugins after this change" -msgstr "" -"Les modules ou composants doivent ĆŖtre mis Ć  jour manuellement ou en utilisant " -"les opĆ©rations massives pour les plugins aprĆØs ce changement." - -#: ../../godmode/servers/plugin.php:1024 -msgid "Are you sure you want to perform this action?" -msgstr "Ɗtes-vous sĆ»r(e) de vouloir effectuer cette action ?" - -#: ../../godmode/servers/plugin.php:1038 -msgid "Are you sure you want to unlock this item?" -msgstr "Ɗtes-vous sĆ»r(e) de vouloir dĆ©verrouiller cet Ć©lĆ©ment ?" - -#: ../../godmode/servers/plugin.php:1058 -msgid "" -"The plugin command cannot be updated because some modules or components are " -"using the plugin." -msgstr "" -"La commande du plugin ne peut pas ĆŖtre mise Ć  jour parce que certains modules " -"ou composants utilisent le plugin." - -#: ../../godmode/servers/plugin.php:1064 -msgid "" -"The plugin macros cannot be updated because some modules or components are " -"using the plugin" -msgstr "" -"Les macros de ce plugin ne peuvent pas ĆŖtre mises Ć  jour parce que certains " -"modules ou composants utilisent le plugin" - -#: ../../godmode/servers/modificar_server.php:34 -msgid "Update Server" -msgstr "Mettre Ć  jour le serveur" - -#: ../../godmode/servers/modificar_server.php:77 -msgid "Exec Server" -msgstr "Serveur d'exĆ©cution" - -#: ../../godmode/servers/modificar_server.php:85 -msgid "Leave blank to use SSH default port (22)" -msgstr "Laissez vide pour utiliser le port SSH par dĆ©faut (22)" - -#: ../../godmode/servers/modificar_server.php:90 -msgid "Check Exec Server" -msgstr "VĆ©rifier le serveur d'exĆ©cution" - -#: ../../godmode/servers/modificar_server.php:106 -msgid "Credential boxes" -msgstr "Zones dā€™identifiants" - -#: ../../godmode/servers/modificar_server.php:130 -msgid "Standard editor" -msgstr "Editeur standard" - -#: ../../godmode/servers/modificar_server.php:134 -msgid "Advanced editor" -msgstr "Ɖditeur avancĆ©" - -#: ../../godmode/servers/modificar_server.php:141 -msgid "Remote Configuration" -msgstr "Configuration Ć  distance" - -#: ../../godmode/servers/modificar_server.php:150 -#, php-format -msgid "%s servers" -msgstr "Serveurs %s" - -#: ../../godmode/servers/modificar_server.php:159 -#: ../../godmode/servers/modificar_server.php:170 -msgid "Successfully action" -msgstr "Action rĆ©ussie" - -#: ../../godmode/servers/modificar_server.php:201 -msgid "Server updated successfully" -msgstr "Serveur mis Ć  jour correctement" - -#: ../../godmode/servers/modificar_server.php:203 -msgid "There was a problem updating the server" -msgstr "ProblĆØme de mise Ć  jour du serveur" - -#: ../../godmode/servers/modificar_server.php:222 -#: ../../godmode/agentes/configurar_agente.php:868 -msgid "Conf file deleted successfully" -msgstr "Le fichier de configuration a Ć©tĆ© supprimĆ© correctement" - -#: ../../godmode/servers/modificar_server.php:223 -#: ../../godmode/agentes/configurar_agente.php:869 -msgid "Could not delete conf file" -msgstr "Erreur de suppression du fichier de configuration" - -#: ../../godmode/servers/plugin_registration.php:65 -msgid "PLUGIN REGISTRATION" -msgstr "ENREGISTREMENT DU PLUGIN" - -#: ../../godmode/servers/plugin_registration.php:76 -#, php-format -msgid "" -"This console is not manager of this environment, please manage this feature " -"from feature from %s." -msgstr "" -"Cette console n'est pas gestionnaire de cet environnement, veuillez gĆ©rer " -"cette fonctionnalitĆ© Ć  partir de la fonctionnalitĆ© de %s." - -#: ../../godmode/servers/plugin_registration.php:95 -msgid "Plugin Registration" -msgstr "Enregistrement du plugin" - -#: ../../godmode/servers/plugin_registration.php:103 -msgid "You can get more plugins in our" -msgstr "Vous pouvez obtenir plus de plugins dans notre" - -#: ../../godmode/servers/plugin_registration.php:105 -msgid "Public Resource Library" -msgstr "BibliothĆØque publique de ressources" - -#: ../../godmode/servers/plugin_registration.php:133 -msgid "Failed to create temporary directory" -msgstr "Impossible de crĆ©er un rĆ©pertoire temporaire" - -#: ../../godmode/servers/plugin_registration.php:152 -msgid "Cannot load INI file" -msgstr "Erreur de chargement du fichier INI" - -#: ../../godmode/servers/plugin_registration.php:177 -msgid "Plugin exec not found. Aborting!" -msgstr "Plugin d'exĆ©cution introuvable. Annulation en cours !" - -#: ../../godmode/servers/plugin_registration.php:188 -msgid "Plugin already registered. Aborting!" -msgstr "Plugin dĆ©jĆ  enregistrĆ©. Annulation en cours !" - -#: ../../godmode/servers/plugin_registration.php:355 -msgid "Plug-in Remote Registered unsuccessfull" -msgstr "Erreur d'enregistrement du plugin Ć  distance" - -#: ../../godmode/servers/plugin_registration.php:358 -msgid "Please check the syntax of file \"plugin_definition.ini\"" -msgstr "Veuillez vĆ©rifier la syntaxe du fichier Ā« plugin_definition.ini Ā»" - -#: ../../godmode/servers/plugin_registration.php:498 -msgid "Module plugin registered" -msgstr "Plugin du module enregistrĆ©" - -#: ../../godmode/servers/plugin_registration.php:503 -msgid "Registered successfully" -msgstr "EnregistrĆ© correctement" - -#: ../../godmode/servers/plugin_registration.php:516 -msgid "Unable to uncompress uploaded file" -msgstr "Impossible de dĆ©compresser le fichier" - -#: ../../godmode/servers/plugin_registration.php:534 -#, php-format -msgid "Cannot move uploaded file to %s." -msgstr "Impossible de dĆ©placer le fichier tĆ©lĆ©chargĆ© vers %s" - -#: ../../godmode/servers/servers.build_table.php:118 -msgid "Server has crashed." -msgstr "Le serveur a Ć©chouĆ©." - -#: ../../godmode/servers/servers.build_table.php:126 -msgid "Server is stopped." -msgstr "Le serveur est arrĆŖtĆ©." - -#: ../../godmode/servers/servers.build_table.php:138 -msgid "Exec server enabled" -msgstr "Serveur d'exĆ©cution activĆ©" - -#: ../../godmode/servers/servers.build_table.php:196 -msgid "Manage Discovery tasks" -msgstr "GĆ©rer les tĆ¢ches de dĆ©couverte" - -#: ../../godmode/servers/servers.build_table.php:211 -msgid "Reset module status and fired alert counts" -msgstr "RĆ©initialiser l'Ć©tat du module et le nombre d'alertes dĆ©clenchĆ©es" - -#: ../../godmode/servers/servers.build_table.php:222 -msgid "Claim back SNMP modules" -msgstr "RĆ©clamer les modules SNMP" - -#: ../../godmode/servers/discovery.php:182 -msgid "You must create a task first" -msgstr "Vous devez d'abord crĆ©er une tĆ¢che" - -#: ../../godmode/um_client/index.php:96 -#, php-format -msgid "" -"You cannot use update manager %s. You are exceding monitoring limits by %s " -"elements. Please update your license or disable enterprise section by moving " -"enterprise directory to another location and try again." -msgstr "" -"Vous ne pouvez pas utiliser le gestionnaire de mise Ć  jour %s. Vous dĆ©passez " -"les limites de surveillance de %s Ć©lĆ©ments. Veuillez mettre Ć  jour votre " -"licence ou dĆ©sactiver la section Entreprise en dĆ©plaƧant le rĆ©pertoire " -"d'entreprise vers un autre emplacement et rĆ©essayer." - -#: ../../godmode/um_client/index.php:107 -#, php-format -msgid "" -"You cannot use update manager %s. This license has expired %d days ago. Please " -"update your license or disable enterprise section by moving enterprise " -"directory to another location and try again." -msgstr "" -"Vous ne pouvez pas utiliser le gestionnaire de mise Ć  jour %s. Cette licence a " -"expirĆ© il y a %d jours. Veuillez mettre Ć  jour votre licence ou dĆ©sactiver la " -"section Entreprise en dĆ©plaƧant le rĆ©pertoire Enterprise vers un autre " -"emplacement et rĆ©essayer." - -#: ../../godmode/um_client/index.php:120 -#, php-format -msgid "" -"You cannot use update manager %s. This license is a trial license to test all " -"%s features. Please update your license to unlock all %s features." -msgstr "" -"Vous ne pouvez pas utiliser le gestionnaire de mise Ć  jour %s. Cette licence " -"est une licence d'essai pour tester toutes les %s fonctionnalitĆ©s. Veuillez " -"mettre Ć  jour votre licence pour dĆ©verrouiller toutes les %s fonctionnalitĆ©s." - -#: ../../godmode/um_client/index.php:216 -#, php-format -msgid "Master server version %s does not match console version %s." -msgstr "" -"La version du serveur maĆ®tre %s ne correspond pas Ć  la version de la console " -"%s." - -#: ../../godmode/um_client/index.php:229 -#, php-format -msgid "" -"'%s' recommended value is %s or greater. Please, change it on your PHP " -"configuration file (php.ini) or contact with administrator" -msgstr "" -"La valeur recommandĆ©e '%s' est %s ou supĆ©rieure. Veuillez le modifier sur " -"votre fichier de configuration PHP (php.ini) ou contactez l'administrateur" - -#: ../../godmode/um_client/index.php:318 -msgid "Update online requires registration." -msgstr "La mise Ć  jour en ligne nĆ©cessite une inscription." - -#: ../../godmode/um_client/index.php:323 -msgid "" -"Applying offline patches may make your console unusable, we recommend to " -"completely backup your files before applying any patch." -msgstr "" -"L'application de correctifs hors ligne peut rendre votre console inutilisable, " -"nous vous recommandons de sauvegarder complĆØtement vos fichiers avant " -"d'appliquer un correctif." - -#: ../../godmode/update_manager/update_manager.php:64 -#: ../../godmode/update_manager/update_manager.php:83 -msgid "Journal" -msgstr "Journal" - -#: ../../godmode/update_manager/update_manager.php:71 -msgid "Offline update" -msgstr "Mise Ć  jour hors ligne" - -#: ../../godmode/update_manager/update_manager.php:78 -msgid "Online update" -msgstr "Mise Ć  jour en ligne" - -#: ../../godmode/update_manager/update_manager.php:91 -msgid "Offline" -msgstr "Hors ligne" - -#: ../../godmode/update_manager/update_manager.php:96 -msgid "Online" -msgstr "En ligne" - -#: ../../godmode/update_manager/update_manager.php:159 -msgid "Please register on metaconsole first." -msgstr "Veuillez dā€™abord vous inscrire sur la MĆ©taconsole." - -#: ../../godmode/update_manager/update_manager.setup.php:271 -msgid "Warp Update URL" -msgstr "URL de Warp Update" - -#: ../../godmode/update_manager/update_manager.setup.php:275 -msgid "URL update manager" -msgstr "URL Gestionnaire de mises Ć  jour" - -#: ../../godmode/update_manager/update_manager.setup.php:282 -msgid "Use secured Warp Update" -msgstr "UtiliserWarp Update sĆ©curisĆ©" - -#: ../../godmode/update_manager/update_manager.setup.php:291 -#: ../../godmode/update_manager/update_manager.setup.php:295 -msgid "Proxy server" -msgstr "Serveur Proxy" - -#: ../../godmode/update_manager/update_manager.setup.php:301 -#: ../../godmode/update_manager/update_manager.setup.php:305 -msgid "Proxy port" -msgstr "Port proxy" - -#: ../../godmode/update_manager/update_manager.setup.php:311 -#: ../../godmode/update_manager/update_manager.setup.php:315 -msgid "Proxy user" -msgstr "Utilisateur proxy" - -#: ../../godmode/update_manager/update_manager.setup.php:321 -#: ../../godmode/update_manager/update_manager.setup.php:325 -msgid "Proxy password" -msgstr "Mot de passe du proxy" - -#: ../../godmode/update_manager/update_manager.setup.php:331 -msgid "Allow no-consecutive patches" -msgstr "Autoriser les patchs non consĆ©cutifs" - -#: ../../godmode/update_manager/update_manager.setup.php:340 -msgid "Limit to LTS updates" -msgstr "Limite aux mises Ć  jour LTS :" - -#: ../../godmode/update_manager/update_manager.setup.php:350 -msgid "Registration ID" -msgstr "ID dā€™inscription" - -#: ../../godmode/update_manager/update_manager.setup.php:351 -msgid "Not registred yet" -msgstr "Pas encore enregistrĆ©" - -#: ../../godmode/update_manager/update_manager.setup.php:354 -msgid "Cancel registration" -msgstr "Annuler lā€™inscription" - -#: ../../godmode/update_manager/update_manager.setup.php:366 -msgid "Unregister" -msgstr "DĆ©sinscription" - -#: ../../godmode/update_manager/update_manager.setup.php:371 -#, php-format -msgid "%s community reminder" -msgstr "Rappel de la communautĆ© %s" - -#: ../../godmode/update_manager/update_manager.setup.php:371 -#, php-format -msgid "" -"Every 8 days, a message is displayed to admin users to remember to register " -"this %s instance" -msgstr "" -"Tous les 8 jours, un message est affichĆ© aux utilisateurs administrateurs pour " -"quā€™ils se souviennent dā€™enregistrer cette instance %s" - -#: ../../godmode/update_manager/update_manager.history.php:42 -msgid "Origin" -msgstr "Origine" - -#: ../../godmode/modules/module_list.php:29 -msgid "Defined modules" -msgstr "Modules dĆ©finis" - -#: ../../godmode/modules/module_list.php:51 -msgid "Problem modifying module" -msgstr "ProblĆØme de modification du module" - -#: ../../godmode/modules/module_list.php:53 -msgid "Module updated successfully" -msgstr "Module mis Ć  jour correctement" - -#: ../../godmode/modules/manage_network_components_form.php:355 -msgid "Update Network Component" -msgstr "Mettre Ć  jour le composant de rĆ©seau" - -#: ../../godmode/modules/manage_network_components_form.php:357 -msgid "Create Network Component" -msgstr "CrĆ©er un composant de rĆ©seau" - -#: ../../godmode/modules/manage_network_components.php:290 -msgid "Remote component management" -msgstr "Gestion des composants Ć  distance" - -#: ../../godmode/modules/manage_network_components.php:313 -#, php-format -msgid "" -"This node is configured with centralized mode. All remote components are read " -"only. Go to %s to manage them." -msgstr "" -"Ce nœud est configurĆ© en mode centralisĆ©. Tous les composants distants sont en " -"lecture seule. AccĆ©dez Ć  %s pour les gĆ©rer." - -#: ../../godmode/modules/manage_network_components.php:424 -msgid "Could not be created because the component exists" -msgstr "Impossible de crĆ©er car le composant existe" - -#: ../../godmode/modules/manage_network_components.php:660 -msgid "Search by name, description, tcp send or tcp rcv, list matches." -msgstr "" -"Rechercher par nom, description, TCP envoyĆ© ou TCP reƧu, concordances de " -"listes." - -#: ../../godmode/modules/manage_network_components.php:753 -msgid "Max/Min" -msgstr "Max/Min" - -#: ../../godmode/modules/manage_network_components.php:837 -msgid "Wizard module" -msgstr "Module assistant" - -#: ../../godmode/modules/manage_network_components.php:910 -msgid "There are no defined network components" -msgstr "Aucun composant de rĆ©seau dĆ©fini" - -#: ../../godmode/modules/manage_network_components.php:921 -msgid "Create a new network component" -msgstr "CrĆ©er un nouveau composant de rĆ©seau" - -#: ../../godmode/modules/manage_network_components.php:922 -msgid "Create a new plugin component" -msgstr "CrĆ©er un nouveau composant de plugin" - -#: ../../godmode/modules/manage_network_components.php:923 -msgid "Create a new WMI component" -msgstr "CrĆ©er un nouveau composant de WMI" - -#: ../../godmode/modules/manage_network_components.php:924 -msgid "Create a new wizard component" -msgstr "CrĆ©er un nouveau composant d'assistant" - -#: ../../godmode/modules/manage_network_templates.php:84 -msgid "Error deleting template" -msgstr "Erreur de suppression du modĆØle" - -#: ../../godmode/modules/manage_network_templates.php:124 -msgid "This template does not exist" -msgstr "Ce modĆØle n'existe pas" - -#: ../../godmode/modules/manage_network_templates.php:304 -msgid "There are no defined network profiles" -msgstr "Aucun profil de rĆ©seau dĆ©fini" - -#: ../../godmode/modules/manage_network_templates_form.php:59 -msgid "Successfully deleted module from profile" -msgstr "Module supprimĆ© du profil correctement" - -#: ../../godmode/modules/manage_network_templates_form.php:60 -msgid "Error deleting module from profile" -msgstr "Erreur de suppression du module dans le profil" - -#: ../../godmode/modules/manage_network_templates_form.php:79 -msgid "Successfully added module to profile" -msgstr "Module ajoutĆ© au profil correctement" - -#: ../../godmode/modules/manage_network_templates_form.php:80 -msgid "Error adding module to profile" -msgstr "Erreur d'ajout du module au profil" - -#: ../../godmode/modules/manage_network_templates_form.php:113 -msgid "Successfully updated network profile" -msgstr "Profil de rĆ©seau mis Ć  jour correctement" - -#: ../../godmode/modules/manage_network_templates_form.php:114 -msgid "Error updating network profile" -msgstr "Erreur de mise Ć  jour du profil de rĆ©seau" - -#: ../../godmode/modules/manage_network_templates_form.php:138 -msgid "Successfully added network profile" -msgstr "Profil de rĆ©seau mis Ć  jour correctement" - -#: ../../godmode/modules/manage_network_templates_form.php:139 -msgid "Error adding network profile" -msgstr "Erreur d'ajout du profil de rĆ©seau" - -#: ../../godmode/modules/manage_network_templates_form.php:145 -msgid "Cannot create a template without name" -msgstr "Impossible de crĆ©er un modĆØle sans nom" - -#: ../../godmode/modules/manage_network_templates_form.php:219 -msgid "No modules for this profile" -msgstr "Aucun module pour ce profil" - -#: ../../godmode/modules/manage_network_components_form_wizard.php:92 -msgid "Add a macro oid" -msgstr "Ajoute une macro oie" - -#: ../../godmode/modules/manage_network_components_form_wizard.php:110 -msgid "Remove last macro oid" -msgstr "Supprimer le dernier oid de macro" - -#: ../../godmode/modules/manage_network_components_form_wizard.php:134 -msgid "Numeric" -msgstr "NumĆ©rique" - -#: ../../godmode/modules/manage_network_components_form_wizard.php:136 -msgid "Boolean" -msgstr "BoolĆ©en" - -#: ../../godmode/modules/manage_network_components_form_wizard.php:137 -msgid "Alphanumeric" -msgstr "AlphanumĆ©rique" - -#: ../../godmode/modules/manage_network_components_form_wizard.php:258 -msgid "Add by default" -msgstr "Ajouter par dĆ©faut" - -#: ../../godmode/modules/manage_network_components_form_wizard.php:286 -msgid "Module protocol" -msgstr "Protocole du module" - -#: ../../godmode/modules/manage_network_components_form_wizard.php:302 -msgid "Protocol" -msgstr "Protocole" - -#: ../../godmode/modules/manage_network_components_form_wizard.php:315 -#: ../../godmode/modules/manage_network_components_form_network.php:191 -msgid "Name OID" -msgstr "Nom OID" - -#: ../../godmode/modules/manage_network_components_form_wizard.php:318 -msgid "Manufacturer ID" -msgstr "ID du manufacturier" - -#: ../../godmode/modules/manage_network_components_form_wizard.php:350 -msgid "Component Group" -msgstr "Groupe de composants" - -#: ../../godmode/modules/manage_network_components_form_wizard.php:368 -msgid "Module unit" -msgstr "UnitĆ© du Module" - -#: ../../godmode/modules/manage_network_components_form_wizard.php:458 -msgid "Scan Type" -msgstr "Type de scan" - -#: ../../godmode/modules/manage_network_components_form_wizard.php:472 -#: ../../godmode/agentes/planned_downtime.list.php:321 -msgid "Execution type" -msgstr "Type d'exĆ©cution" - -#: ../../godmode/modules/manage_network_components_form_wizard.php:492 -msgid "Value OID" -msgstr "Valeur OID" - -#: ../../godmode/modules/manage_network_components_form_wizard.php:509 -msgid "Macros OID" -msgstr "OID des macros" - -#: ../../godmode/modules/manage_network_components_form_wizard.php:517 -#: ../../godmode/modules/manage_network_components_form_wizard.php:702 -msgid "Value operation" -msgstr "OpĆ©ration de valeur" - -#: ../../godmode/modules/manage_network_components_form_wizard.php:534 -#: ../../godmode/modules/manage_network_components_form_wizard.php:719 -msgid "Satellite execution" -msgstr "ExĆ©cution du Satellite" - -#: ../../godmode/modules/manage_network_components_form_wizard.php:551 -#: ../../godmode/modules/manage_network_components_form_wizard.php:736 -msgid "Server plugin" -msgstr "Plugin du serveur" - -#: ../../godmode/modules/manage_network_components_form_wizard.php:589 -msgid "WMI class" -msgstr "Classe WMI" - -#: ../../godmode/modules/manage_network_components_form_wizard.php:606 -msgid "Query key field" -msgstr "Champ de clĆ© de requĆŖte" - -#: ../../godmode/modules/manage_network_components_form_wizard.php:623 -msgid "Query extra fields" -msgstr "Champs extra de requĆŖtes" - -#: ../../godmode/modules/manage_network_components_form_wizard.php:631 -msgid "Query filters" -msgstr "Filtres de requĆŖte" - -#: ../../godmode/modules/manage_network_components_form_wizard.php:674 -msgid "Field value" -msgstr "Valeur de champ" - -#: ../../godmode/modules/manage_nc_groups.php:40 -msgid "Component group management" -msgstr "Gestion de groupes de composants" - -#: ../../godmode/modules/manage_nc_groups.php:293 -#, php-format -msgid "" -"This node is configured with centralized mode. Component groups are read only. " -"Go to %s to manage it." -msgstr "" -"Ce nœud est configurĆ© en mode centralisĆ©. Les groupes de composants sont en " -"lecture seule. Allez dans %s pour le gĆ©rer." - -#: ../../godmode/modules/manage_nc_groups.php:311 -msgid "There are no defined component groups" -msgstr "Aucun groupe de composants dĆ©fini" - -#: ../../godmode/modules/manage_network_components_form_common.php:712 -#: ../../godmode/agentes/module_manager_editor_common.php:2000 -msgid "Please introduce a positive percentage value" -msgstr "Veuillez introduire une valeur de pourcentage positive" - -#: ../../godmode/modules/manage_network_components_form_wmi.php:41 -#: ../../godmode/agentes/module_manager_editor_wmi.php:87 -msgid "Namespace" -msgstr "Espace de noms" - -#: ../../godmode/modules/manage_network_components_form_network.php:72 -msgid "SNMP Enterprise String" -msgstr "ChaĆ®ne SNMP Enterprise" - -#: ../../godmode/modules/manage_nc_groups_form.php:54 -msgid "Update Group Component" -msgstr "Mettre Ć  jour le composant de groupe" - -#: ../../godmode/modules/manage_nc_groups_form.php:56 -msgid "Create Group Component" -msgstr "CrĆ©er un composant de groupe" - -#: ../../godmode/category/category.php:63 ../../godmode/category/category.php:77 -#: ../../godmode/category/edit_category.php:47 -#: ../../godmode/category/edit_category.php:61 -msgid "List categories" -msgstr "Liste de catĆ©gories" - -#: ../../godmode/category/category.php:89 ../../godmode/category/category.php:91 -#: ../../godmode/category/edit_category.php:73 -#: ../../godmode/category/edit_category.php:75 -msgid "Categories configuration" -msgstr "Configuration de catĆ©gories" - -#: ../../godmode/category/category.php:108 -#, php-format -msgid "" -"This node is configured with centralized mode. All categories information is " -"read only. Go to %s to manage it." -msgstr "" -"Ce nœud est configurĆ© en mode centralisĆ©. Toutes les informations sur les " -"catĆ©gories sont en lecture seule. Allez vers %s pour le gĆ©rer." - -#: ../../godmode/category/category.php:123 -msgid "Error deleting category" -msgstr "Erreur de suppression de catĆ©gorie" - -#: ../../godmode/category/category.php:129 -msgid "Successfully deleted category" -msgstr "CatĆ©gorie supprimĆ©e correctement" - -#: ../../godmode/category/category.php:168 -msgid "Category name" -msgstr "Nom de la catĆ©gorie" - -#: ../../godmode/category/category.php:226 -msgid "No categories found" -msgstr "Aucune catĆ©gorie trouvĆ©e" - -#: ../../godmode/category/category.php:239 -#: ../../godmode/category/edit_category.php:171 -msgid "Create category" -msgstr "CrĆ©er une catĆ©gorie" - -#: ../../godmode/category/edit_category.php:73 -msgid "Editor" -msgstr "Ɖditeur" - -#: ../../godmode/category/edit_category.php:95 -msgid "Error updating category" -msgstr "Erreur de mise Ć  jour de la catĆ©gorie" - -#: ../../godmode/category/edit_category.php:101 -msgid "Successfully updated category" -msgstr "CatĆ©gorie mise Ć  jour correctement" - -#: ../../godmode/category/edit_category.php:123 -msgid "Error creating category" -msgstr "Erreur de crĆ©ation de la catĆ©gorie" - -#: ../../godmode/category/edit_category.php:131 -msgid "Successfully created category" -msgstr "CatĆ©gorie crĆ©Ć©e correctement" - -#: ../../godmode/category/edit_category.php:163 -msgid "Update category" -msgstr "Mise Ć  jour de la catĆ©gorie" - -#: ../../godmode/gis_maps/configure_gis_map.php:98 -msgid "View GIS" -msgstr "Afficher GIS" - -#: ../../godmode/gis_maps/configure_gis_map.php:106 -msgid "GIS Maps builder" -msgstr "Outil de conception de cartes GIS" - -#: ../../godmode/gis_maps/configure_gis_map.php:196 -msgid "Map successfully created" -msgstr "Carte crĆ©Ć©e correctement" - -#: ../../godmode/gis_maps/configure_gis_map.php:197 -msgid "Map could not be created" -msgstr "Erreur de crĆ©ation de la carte" - -#: ../../godmode/gis_maps/configure_gis_map.php:299 -msgid "Map successfully update" -msgstr "Carte mise Ć  jour correctement" - -#: ../../godmode/gis_maps/configure_gis_map.php:300 -msgid "Map could not be updated" -msgstr "Erreur de mise Ć  jour de la carte" - -#: ../../godmode/gis_maps/configure_gis_map.php:353 -msgid "Do you want to use the default data from the connection?" -msgstr "Voulez-vous utiliser les donnĆ©es par dĆ©faut de la connexion ?" - -#: ../../godmode/gis_maps/configure_gis_map.php:387 -msgid "The connection" -msgstr "Connexion" - -#: ../../godmode/gis_maps/configure_gis_map.php:387 -msgid "just added previously." -msgstr "ƉlĆ©ment dĆ©jĆ  ajoutĆ©" - -#: ../../godmode/gis_maps/configure_gis_map.php:455 -msgid "Map Name" -msgstr "Nom de la carte" - -#: ../../godmode/gis_maps/configure_gis_map.php:474 -msgid "Add Map connection" -msgstr "Ajouter connexion de carte" - -#: ../../godmode/gis_maps/configure_gis_map.php:523 -msgid "Default zoom" -msgstr "Zoom par dĆ©faut" - -#: ../../godmode/gis_maps/configure_gis_map.php:530 -msgid "Center Latitude" -msgstr "Centrer la latitude" - -#: ../../godmode/gis_maps/configure_gis_map.php:533 -msgid "Center Longitude" -msgstr "Centrer la longitude" - -#: ../../godmode/gis_maps/configure_gis_map.php:536 -msgid "Center Altitude" -msgstr "Centrer l'altitude" - -#: ../../godmode/gis_maps/configure_gis_map.php:539 -msgid "Default Latitude" -msgstr "Latitude par dĆ©faut" - -#: ../../godmode/gis_maps/configure_gis_map.php:542 -msgid "Default Longitude" -msgstr "Longitude par dĆ©faut" - -#: ../../godmode/gis_maps/configure_gis_map.php:545 -msgid "Default Altitude" -msgstr "Altitude par dĆ©faut" - -#: ../../godmode/gis_maps/configure_gis_map.php:561 -msgid "List of layers" -msgstr "Liste de couches" - -#: ../../godmode/gis_maps/configure_gis_map.php:562 -msgid "New layer" -msgstr "Nouvelle couche" - -#: ../../godmode/gis_maps/configure_gis_map.php:568 -msgid "Layer name" -msgstr "Nom de la couche" - -#: ../../godmode/gis_maps/configure_gis_map.php:570 -msgid "Visible" -msgstr "Visible" - -#: ../../godmode/gis_maps/configure_gis_map.php:574 -msgid "Show agents from group" -msgstr "Afficher les agents du groupe" - -#: ../../godmode/gis_maps/configure_gis_map.php:586 -msgid "Add agent" -msgstr "Ajouter un agent" - -#: ../../godmode/gis_maps/configure_gis_map.php:608 -msgid "List of Agents to be shown in the layer" -msgstr "Liste d'agents Ć  afficher dans la couche" - -#: ../../godmode/gis_maps/configure_gis_map.php:639 -msgid "Use the data of this agent" -msgstr "Utiliser les donnĆ©es de cet agent" - -#: ../../godmode/gis_maps/configure_gis_map.php:647 -msgid "List of groups to be shown in the layer" -msgstr "Liste des groupes Ć  afficher dans la couche" - -#: ../../godmode/gis_maps/configure_gis_map.php:654 -msgid "Save Layer" -msgstr "Sauvegarder la couche" - -#: ../../godmode/gis_maps/configure_gis_map.php:670 -#: ../../godmode/gis_maps/configure_gis_map.php:677 -msgid "Save map" -msgstr "Sauvegarder la carte" - -#: ../../godmode/gis_maps/configure_gis_map.php:672 -msgid "Update map" -msgstr "Mettre Ć  jour la carte" - -#: ../../godmode/gis_maps/configure_gis_map.php:1060 -msgid "Using data from" -msgstr "En utilisant les donnĆ©es de" - -#: ../../godmode/gis_maps/configure_gis_map.php:1218 -msgid "Empty layer names are not supported" -msgstr "Les noms vides ne sont pas pris en charge!" - -#: ../../godmode/extensions.php:28 -msgid "Defined extensions" -msgstr "Extensions dĆ©finies" - -#: ../../godmode/extensions.php:33 -msgid "There are no extensions defined" -msgstr "Aucune extension dĆ©finie" - -#: ../../godmode/extensions.php:141 -msgid "Godmode Function" -msgstr "Fonction Godmode" - -#: ../../godmode/extensions.php:142 -msgid "Godmode Menu" -msgstr "Menu Godmode" - -#: ../../godmode/extensions.php:143 -msgid "Operation Menu" -msgstr "Menu d'opĆ©ration" - -#: ../../godmode/extensions.php:144 -msgid "Operation Function" -msgstr "Fonction d'opĆ©ration" - -#: ../../godmode/extensions.php:145 -msgid "Login Function" -msgstr "Fonction de connexion" - -#: ../../godmode/extensions.php:146 -msgid "Agent operation tab" -msgstr "Onglet opĆ©ration de l'agent" - -#: ../../godmode/extensions.php:147 -msgid "Agent godmode tab" -msgstr "Onglet Godmode de l'agent" - -#: ../../godmode/reporting/reporting_builder.main.php:146 -msgid "Only the group can view the report" -msgstr "Seulement le groupe peut voir le rapport" - -#: ../../godmode/reporting/reporting_builder.main.php:147 -msgid "The next group can edit the report" -msgstr "Le groupe suivant peut Ć©diter le rapport" - -#: ../../godmode/reporting/reporting_builder.main.php:148 -msgid "Only the user and admin user can edit the report" -msgstr "Seulement l'utilisateur et l'administrateur peuvent Ć©diter le rapport" - -#: ../../godmode/reporting/reporting_builder.main.php:150 -msgid "Write Access" -msgstr "AccĆØs en Ć©criture" - -#: ../../godmode/reporting/reporting_builder.main.php:152 -msgid "" -"For example, you want a report that the people of \"All\" groups can see but " -"you want to edit only for you or your group." -msgstr "" -"Par exemple, si vous voulez un rapport visible par Ā« Tous Ā» les groupes mais " -"uniquement modifiable par vous ou votre groupe." - -#: ../../godmode/reporting/reporting_builder.main.php:193 -msgid "Non interactive report" -msgstr "Rapport non interactif" - -#: ../../godmode/reporting/map_builder.php:318 -#: ../../godmode/reporting/map_builder.php:326 -msgid "Not copied. Error copying data" -msgstr "Erreur de copie des donnĆ©es" - -#: ../../godmode/reporting/map_builder.php:368 -#: ../../godmode/reporting/visual_console_favorite.php:185 -msgid "Group Recursion" -msgstr "RĆ©cursion de groupe" - -#: ../../godmode/reporting/map_builder.php:384 -msgid "Map name" -msgstr "Nom de la carte" - -#: ../../godmode/reporting/map_builder.php:386 -msgid "Items" -msgstr "ƉlĆ©ments" - -#: ../../godmode/reporting/visual_console_builder.php:211 -msgid "This file isn't image" -msgstr "Ce fichier n'est pas une image." - -#: ../../godmode/reporting/visual_console_builder.php:214 -msgid "This file isn't image." -msgstr "Ce fichier n'est pas une image." - -#: ../../godmode/reporting/visual_console_builder.php:220 -#: ../../godmode/reporting/visual_console_builder.php:223 -msgid "File already are exists." -msgstr "Le fichier existe dĆ©jĆ ." - -#: ../../godmode/reporting/visual_console_builder.php:231 -#: ../../godmode/reporting/visual_console_builder.php:234 -msgid "The file have not image extension." -msgstr "Le fichier n'a pas une extension d'image." - -#: ../../godmode/reporting/visual_console_builder.php:246 -#: ../../godmode/reporting/visual_console_builder.php:249 -#: ../../godmode/reporting/visual_console_builder.php:259 -#: ../../godmode/reporting/visual_console_builder.php:265 -msgid "Problems with move file to target." -msgstr "ProblĆØmes de dĆ©placement du fichier Ć  la cible" - -#: ../../godmode/reporting/visual_console_builder.php:302 -msgid "Successfully update." -msgstr "Mis Ć  jour correctement" - -#: ../../godmode/reporting/visual_console_builder.php:321 -msgid "Could not be update." -msgstr "Mise Ć  jour Ć©chouĆ©e" - -#: ../../godmode/reporting/visual_console_builder.php:341 -msgid "Successfully created." -msgstr "CrĆ©Ć© correctement" - -#: ../../godmode/reporting/visual_console_builder.php:360 -msgid "Could not be created." -msgstr "Erreur de crĆ©ation" - -#: ../../godmode/reporting/visual_console_builder.php:408 -msgid "Successfully multiple delete." -msgstr "Suppression multiple rĆ©ussie" - -#: ../../godmode/reporting/visual_console_builder.php:409 -msgid "Unsuccessful multiple delete." -msgstr "Suppression multiple Ć©chouĆ©e" - -#: ../../godmode/reporting/visual_console_builder.php:529 -msgid "Successfully delete." -msgstr "SupprimĆ© correctement" - -#: ../../godmode/reporting/graphs.php:106 -msgid "Graphs containers" -msgstr "Conteneurs de graphiques" - -#: ../../godmode/reporting/graphs.php:120 -msgid "List of custom graphs" -msgstr "Liste des graphiques personnalisĆ©s" - -#: ../../godmode/reporting/graphs.php:235 -#: ../../godmode/reporting/reporting_builder.php:779 -msgid "Free text for search: " -msgstr "Texte libre pour la recherche : " - -#: ../../godmode/reporting/graphs.php:236 -#: ../../godmode/reporting/reporting_builder.php:781 -msgid "Search by report name or description, list matches." -msgstr "Rechercher par nom de rapport, description ou concordances de listes." - -#: ../../godmode/reporting/graphs.php:248 -#: ../../godmode/reporting/reporting_builder.php:807 -msgid "Show Option" -msgstr "Afficher les options" - -#: ../../godmode/reporting/graphs.php:402 -msgid "Create graph" -msgstr "CrĆ©er une graphique" - -#: ../../godmode/reporting/graph_container.php:134 -#: ../../godmode/reporting/create_container.php:196 -msgid "Create container" -msgstr "CrĆ©er un conteneur" - -#: ../../godmode/reporting/reporting_builder.list_items.php:706 -#: ../../godmode/reporting/reporting_builder.list_items.php:710 -#: ../../godmode/reporting/graph_builder.graph_editor.php:284 -#: ../../godmode/reporting/graph_builder.graph_editor.php:288 -msgid "Sort items" -msgstr "Classer les Ć©lĆ©ments" - -#: ../../godmode/reporting/reporting_builder.list_items.php:713 -msgid "Sort selected items from position: " -msgstr "Classer les Ć©lĆ©ments sĆ©lectionnĆ©s Ć  partir de la position : " - -#: ../../godmode/reporting/reporting_builder.list_items.php:716 -msgid "Move before to" -msgstr "DĆ©placer avant" - -#: ../../godmode/reporting/reporting_builder.list_items.php:717 -msgid "Move after to" -msgstr "DĆ©placer aprĆØs" - -#: ../../godmode/reporting/reporting_builder.list_items.php:757 -#: ../../godmode/reporting/reporting_builder.list_items.php:761 -msgid "Delete items" -msgstr "Supprimer les Ć©lĆ©ments" - -#: ../../godmode/reporting/reporting_builder.list_items.php:764 -msgid "Delete selected items from position: " -msgstr "Supprimer les Ć©lĆ©ments sĆ©lectionnĆ©s Ć  partir de la position : " - -#: ../../godmode/reporting/reporting_builder.list_items.php:767 -msgid "Delete above to" -msgstr "Supprimer ce qui se trouve au-dessus de" - -#: ../../godmode/reporting/reporting_builder.list_items.php:768 -msgid "Delete below to" -msgstr "Supprimer ce qui se trouve au-dessous de" - -#: ../../godmode/reporting/reporting_builder.list_items.php:824 -msgid "" -"Are you sure to sort the items into the report?\\n. This action change the " -"sorting of items into data base." -msgstr "" -"Ɗtes-vous sĆ»r de trier les Ć©lĆ©ments dans le rapportĀ ?\\n. Cette action modifie " -"le tri des Ć©lĆ©ments dans la base de donnĆ©es." - -#: ../../godmode/reporting/reporting_builder.list_items.php:844 -#: ../../godmode/reporting/graph_builder.graph_editor.php:407 -msgid "Please select any item to order" -msgstr "Veuillez sĆ©lectionner un Ć©lĆ©ment Ć  organiser" - -#: ../../godmode/reporting/reporting_builder.list_items.php:874 -msgid "Are you sure to delete the items into the report?\\n" -msgstr "Ɗtes-vous sĆ»r(e) de vouloir supprimer les Ć©lĆ©ments dans le rapport ?\\n" - -#: ../../godmode/reporting/reporting_builder.list_items.php:901 -msgid "Please select any item to delete" -msgstr "Veuillez sĆ©lectionner un Ć©lĆ©ment Ć  supprimer" - -#: ../../godmode/reporting/graph_builder.php:336 -msgid "Graph builder" -msgstr "Outil de conception de graphiques" - -#: ../../godmode/reporting/graph_builder.php:378 -msgid "Graph stored successfully" -msgstr "Graphique sauvegardĆ© correctement" - -#: ../../godmode/reporting/graph_builder.php:379 -msgid "There was a problem storing Graph" -msgstr "ProblĆØme d'enregistrement du graphique" - -#: ../../godmode/reporting/graph_builder.php:386 -#: ../../godmode/agentes/configurar_agente.php:1942 -msgid "Module added successfully" -msgstr "Module ajoutĆ© correctement" - -#: ../../godmode/reporting/graph_builder.php:387 -msgid "There was a problem adding Module" -msgstr "ProblĆØme d'ajout du module" - -#: ../../godmode/reporting/graph_builder.php:394 -msgid "Update the graph" -msgstr "Mettre Ć  jour le graphique" - -#: ../../godmode/reporting/graph_builder.php:395 -msgid "Bad update the graph" -msgstr "Erreur de mise Ć  jour du graphique" - -#: ../../godmode/reporting/graph_builder.php:402 -msgid "Graph deleted successfully" -msgstr "Graphique supprimĆ© correctement" - -#: ../../godmode/reporting/graph_builder.php:403 -msgid "There was a problem deleting Graph" -msgstr "ProblĆØme de suppression du graphique" - -#: ../../godmode/reporting/visual_console_builder.data.php:94 -msgid "Create visual console" -msgstr "CrĆ©er une console visuelle" - -#: ../../godmode/reporting/visual_console_builder.data.php:106 -msgid "" -"Use [ or ( as first character, for example '[*] Map name', to render this map " -"name in main menu" -msgstr "" -"Utilisez [ ou ( comme premier caractĆØre ; par exemple Ā« [*] Nom de la carte Ā», " -"pour afficher ce nom de carte dans le menu principal." - -#: ../../godmode/reporting/visual_console_builder.data.php:179 -msgid "Background image" -msgstr "Image de fond" - -#: ../../godmode/reporting/visual_console_builder.data.php:211 -msgid "Layout size" -msgstr "Taille du layout" - -#: ../../godmode/reporting/visual_console_builder.data.php:214 -msgid "Set custom size" -msgstr "DĆ©terminer taille personnalisĆ©e" - -#: ../../godmode/reporting/visual_console_builder.data.php:220 -msgid "Get default image size" -msgstr "Obtenir taille de l'image par dĆ©faut" - -#: ../../godmode/reporting/visual_console_builder.data.php:222 -msgid "Favourite visual console" -msgstr "Console visuelle prĆ©fĆ©rĆ©e" - -#: ../../godmode/reporting/visual_console_builder.data.php:225 -msgid "Auto adjust to screen in fullscreen" -msgstr "Ajustement automatique Ć  l'Ć©cran en plein Ć©cran" - -#: ../../godmode/reporting/create_container.php:155 -msgid "Container name is missing." -msgstr "Le nom du conteneur est manquant." - -#: ../../godmode/reporting/create_container.php:205 -msgid "Container stored successfully" -msgstr "Conteneur enregistrĆ© correctement" - -#: ../../godmode/reporting/create_container.php:205 -msgid "There was a problem storing container" -msgstr "ProblĆØme d'enregistrement du conteneur" - -#: ../../godmode/reporting/create_container.php:212 -msgid "Update the container" -msgstr "Mettre Ć  jour le conteneur" - -#: ../../godmode/reporting/create_container.php:212 -msgid "Bad update the container" -msgstr "Erreur de mise Ć  jour du conteneur" - -#: ../../godmode/reporting/create_container.php:287 -msgid "Parent container" -msgstr "Conteneur parent" - -#: ../../godmode/reporting/create_container.php:365 -#: ../../godmode/reporting/create_container.php:474 -#: ../../godmode/reporting/create_container.php:528 -msgid "" -"This is the interval or period of time with which the graph data will be " -"obtained. For example, a week means data from a week ago from now. " -msgstr "" -"PĆ©riode de temps pour laquelle les donnĆ©es seront obtenues. Par exemple, " -"l'option Ā« une semaine Ā» renvoie les donnĆ©es d'il y a une semaine jusqu'Ć  " -"prĆ©sent. " - -#: ../../godmode/reporting/create_container.php:448 -#: ../../godmode/reporting/create_container.php:501 -#: ../../godmode/reporting/create_container.php:596 -msgid "Add item" -msgstr "Ajouter un Ć©lĆ©ment" - -#: ../../godmode/reporting/create_container.php:614 -msgid "There are no items in this container." -msgstr "Il n'y a aucun Ć©lĆ©ment dans ce conteneur." - -#: ../../godmode/reporting/create_container.php:623 -msgid "Agent/Module" -msgstr "Agent/Module" - -#: ../../godmode/reporting/create_container.php:626 -msgid "M.Group" -msgstr "Groupe de modules" - -#: ../../godmode/reporting/visual_console_favorite.php:223 -msgid "No favourite consoles defined" -msgstr "Aucune console favorite dĆ©finie" - -#: ../../godmode/reporting/visual_console_builder.elements.php:106 -msgid "Width x Height
    Max value" -msgstr "Largeur x Hauteur
    Valeur max" - -#: ../../godmode/reporting/visual_console_builder.elements.php:108 -msgid "Map linked" -msgstr "Carte associĆ©e" - -#: ../../godmode/reporting/visual_console_builder.elements.php:193 -msgid "Percentile Bar" -msgstr "Barre centile" - -#: ../../godmode/reporting/visual_console_builder.elements.php:203 -msgid "Percentile Bubble" -msgstr "Bulle de centile" - -#: ../../godmode/reporting/visual_console_builder.elements.php:251 -msgid "Simple Value (Process Max)" -msgstr "Valeur simple (processus max)" - -#: ../../godmode/reporting/visual_console_builder.elements.php:262 -msgid "Simple Value (Process Min)" -msgstr "Valeur simple (processus min)" - -#: ../../godmode/reporting/visual_console_builder.elements.php:273 -msgid "Simple Value (Process Avg)" -msgstr "Valeur simple (processus moyen)" - -#: ../../godmode/reporting/visual_console_builder.elements.php:394 -#: ../../godmode/reporting/visual_console_builder.elements.php:832 -msgid "Edit label" -msgstr "Modifier les Ć©tiquettes" - -#: ../../godmode/reporting/reporting_builder.item_editor.php:996 -msgid "Not valid" -msgstr "Non valide" - -#: ../../godmode/reporting/reporting_builder.item_editor.php:1004 -msgid "" -"This type of report brings a lot of data loading, it is recommended to use it " -"for scheduled reports and not for real-time view." -msgstr "" -"Ce type de rapport implique un chargement Ć©levĆ© de donnĆ©es. Il est conseillĆ© " -"de l'utiliser pour des rapports programmĆ©s plutĆ“t que pour l'affichage en " -"temps rĆ©el." - -#: ../../godmode/reporting/reporting_builder.item_editor.php:1154 -msgid "Log number" -msgstr "Nombre de journaux" - -#: ../../godmode/reporting/reporting_builder.item_editor.php:1156 -msgid "" -"Warning: this parameter limits the contents of the logs and affects the " -"performance." -msgstr "" -"Attention : ce paramĆØtre limite le contenu des journaux et affecte la " -"performance." - -#: ../../godmode/reporting/reporting_builder.item_editor.php:1217 -msgid "" -"This is the range, or period of time over which the report renders the " -"information for this report type. For example, a week means data from a week " -"ago from now. " -msgstr "" -"PĆ©riode de temps pour laquelle le rapport extrait l'information pour ce type " -"de rapport. Par exemple, l'option Ā« une semaine Ā» renvoie les donnĆ©es d'il y a " -"une semaine jusqu'Ć  prĆ©sent. " - -#: ../../godmode/reporting/reporting_builder.item_editor.php:1776 -msgid "Show modules" -msgstr "Afficher les modules" - -#: ../../godmode/reporting/reporting_builder.item_editor.php:2157 -msgid "Target server" -msgstr "Serveur cible" - -#: ../../godmode/reporting/reporting_builder.item_editor.php:2458 -msgid "Macros definition" -msgstr "DĆ©finition des macros" - -#: ../../godmode/reporting/reporting_builder.item_editor.php:2469 -msgid "Render definition" -msgstr "DĆ©finition du rendu" - -#: ../../godmode/reporting/reporting_builder.item_editor.php:2470 -msgid "Please note that not all CSS styles are supported by PDF reports." -msgstr "" -"Veuillez noter que tous les styles CSS ne sont pas pris en charge par les " -"rapports PDF." - -#: ../../godmode/reporting/reporting_builder.item_editor.php:2550 -msgid "Greater or equal (>=)" -msgstr "SupĆ©rieur ou Ć©gal (>=)" - -#: ../../godmode/reporting/reporting_builder.item_editor.php:2551 -msgid "Less or equal (<=)" -msgstr "InfĆ©rieur ou Ć©gal (<=)" - -#: ../../godmode/reporting/reporting_builder.item_editor.php:2552 -msgid "Less (<)" -msgstr "InfĆ©rieur (<)" - -#: ../../godmode/reporting/reporting_builder.item_editor.php:2553 -msgid "Greater (>)" -msgstr "SupĆ©rieur (>)" - -#: ../../godmode/reporting/reporting_builder.item_editor.php:2554 -msgid "Equal (=)" -msgstr "Ɖgal (=)" - -#: ../../godmode/reporting/reporting_builder.item_editor.php:2555 -msgid "Not equal (!=)" -msgstr "Pas Ć©gal (!=)" - -#: ../../godmode/reporting/reporting_builder.item_editor.php:2680 -msgid "" -"Show a summary chart with max, min and average number of total modules at the " -"end of the report and Checks." -msgstr "" -"Afficher un graphique rĆ©capitulatif avec le nombre maximum, minimum, moyen de " -"modules au total Ć  la fin du rapport et des vĆ©rifications." - -#: ../../godmode/reporting/reporting_builder.item_editor.php:2735 -msgid "Checks in Warning status" -msgstr "VĆ©rifie dans l'Ć©tat d'avertissement" - -#: ../../godmode/reporting/reporting_builder.item_editor.php:2805 -msgid "Only data" -msgstr "DonnĆ©es uniquement" - -#: ../../godmode/reporting/reporting_builder.item_editor.php:2903 -msgid "Include extended events" -msgstr "Inclure les Ć©vĆ©nements prolongĆ©s" - -#: ../../godmode/reporting/reporting_builder.item_editor.php:2920 -msgid "Show custom data" -msgstr "Afficher les donnĆ©es personnalisĆ©es" - -#: ../../godmode/reporting/reporting_builder.item_editor.php:2939 -msgid "By agent " -msgstr "Par agent" - -#: ../../godmode/reporting/reporting_builder.item_editor.php:2949 -msgid "By user validator " -msgstr "Par validateur dā€™utilisateur" - -#: ../../godmode/reporting/reporting_builder.item_editor.php:2959 -msgid "By criticity " -msgstr "Par criticitĆ©" - -#: ../../godmode/reporting/reporting_builder.item_editor.php:2969 -msgid "Validated vs unvalidated " -msgstr "ValidĆ© vs non validĆ©" - -#: ../../godmode/reporting/reporting_builder.item_editor.php:2984 -msgid "" -"With the token enabled the query will affect the Historical Database, which " -"may mean a small drop in performance." -msgstr "" -"Avec le jeton activĆ©, la requĆŖte affectera la base de donnĆ©es historique, ce " -"qui peut signifier une petite baisse des performances." - -#: ../../godmode/reporting/reporting_builder.item_editor.php:3169 -msgid "Include filter" -msgstr "Inclure Filtre" - -#: ../../godmode/reporting/reporting_builder.item_editor.php:3173 -#: ../../godmode/reporting/reporting_builder.item_editor.php:3182 -msgid "Free text string search on event description" -msgstr "Recherche de chaĆ®ne de texte libre sur la description de l'Ć©vĆ©nement" - -#: ../../godmode/reporting/reporting_builder.item_editor.php:3178 -msgid "Exclude filter" -msgstr "Exclure le filtre" - -#: ../../godmode/reporting/reporting_builder.item_editor.php:3377 -msgid "Select by group" -msgstr "SĆ©lectionner par groupe" - -#: ../../godmode/reporting/reporting_builder.item_editor.php:3465 -msgid "Display options" -msgstr "Afficher les options" - -#: ../../godmode/reporting/reporting_builder.item_editor.php:3523 -msgid "Agent group filter" -msgstr "Filtre de groupe d'agents" - -#: ../../godmode/reporting/reporting_builder.item_editor.php:3543 -msgid "Agent OS filter" -msgstr "Filtre du systĆØme d'exploitation de l'agent" - -#: ../../godmode/reporting/reporting_builder.item_editor.php:3569 -msgid "Agent custom field" -msgstr "Champ personnalisĆ© de l'agent" - -#: ../../godmode/reporting/reporting_builder.item_editor.php:3591 -msgid "Agent custom field filter" -msgstr "Filtre de champ personnalisĆ© de l'agent" - -#: ../../godmode/reporting/reporting_builder.item_editor.php:3615 -msgid "Agent status filter" -msgstr "Filtre d'Ć©tat de l'agent" - -#: ../../godmode/reporting/reporting_builder.item_editor.php:3653 -msgid "Agent version filter" -msgstr "Filtre de version d'agent" - -#: ../../godmode/reporting/reporting_builder.item_editor.php:3677 -msgid "Agent has remote configuration" -msgstr "L'agent a une configuration Ć  distance" - -#: ../../godmode/reporting/reporting_builder.item_editor.php:3678 -msgid "Filter agents by remote configuration enabled." -msgstr "Filtrer les agents par configuration Ć  distance activĆ©e." - -#: ../../godmode/reporting/reporting_builder.item_editor.php:3689 -msgid "Agent module filter" -msgstr "Filtre de module d'agent" - -#: ../../godmode/reporting/reporting_builder.item_editor.php:3795 -#: ../../godmode/reporting/reporting_builder.item_editor.php:4310 -msgid "Agent Failover" -msgstr "Basculement d'agent" - -#: ../../godmode/reporting/reporting_builder.item_editor.php:3800 -#: ../../godmode/reporting/reporting_builder.item_editor.php:4313 -msgid "Module Failover" -msgstr "Basculement de module" - -#: ../../godmode/reporting/reporting_builder.item_editor.php:3840 -msgid "Please save the item before adding entries to this list." -msgstr "" -"Veuillez enregistrer lā€™Ć©lĆ©ment avant dā€™ajouter des entrĆ©es Ć  cette liste." - -#: ../../godmode/reporting/reporting_builder.item_editor.php:4286 -msgid "rate" -msgstr "taux" - -#: ../../godmode/reporting/reporting_builder.item_editor.php:4334 -msgid "" -"Please be careful, when the module have diferent intervals in their life, the " -"summatory maybe get bad result." -msgstr "" -"Veuillez faire attention lorsque le module prĆ©sente des intervalles " -"diffĆ©rents ; la sommation pourrait obtenir des rĆ©sultats erronĆ©s." - -#: ../../godmode/reporting/reporting_builder.item_editor.php:4354 -msgid "Please save the report to start adding items into the list." -msgstr "Veuillez sauvegarder le rapport pour ajouter des Ć©lĆ©ments Ć  la liste." - -#: ../../godmode/reporting/reporting_builder.item_editor.php:4620 -#: ../../godmode/reporting/reporting_builder.item_editor.php:4624 -#: ../../godmode/reporting/reporting_builder.item_editor.php:4628 -#: ../../godmode/reporting/reporting_builder.item_editor.php:4632 -#: ../../godmode/reporting/reporting_builder.item_editor.php:4636 -#: ../../godmode/reporting/reporting_builder.item_editor.php:4640 -#: ../../godmode/reporting/reporting_builder.item_editor.php:4644 -#: ../../godmode/reporting/reporting_builder.item_editor.php:4648 -msgid "Item Editor Information" -msgstr "Informations sur l'Ć©diteur dā€™Ć©lĆ©ments" - -#: ../../godmode/reporting/reporting_builder.item_editor.php:4621 -msgid "Please select a name." -msgstr "Veuillez sĆ©lectionner un nom." - -#: ../../godmode/reporting/reporting_builder.item_editor.php:4625 -msgid "Please select an agent." -msgstr "Veuillez sĆ©lectionner un agent" - -#: ../../godmode/reporting/reporting_builder.item_editor.php:4629 -#: ../../godmode/agentes/planned_downtime.editor.php:1394 -msgid "Please select a module." -msgstr "Veuillez sĆ©lectionner un module." - -#: ../../godmode/reporting/reporting_builder.item_editor.php:4633 -msgid "Please insert a SQL query." -msgstr "Veuillez insĆ©rer une requĆŖte SQL." - -#: ../../godmode/reporting/reporting_builder.item_editor.php:4637 -msgid "Please insert a URL." -msgstr "Veuillez insĆ©rer une URL." - -#: ../../godmode/reporting/reporting_builder.item_editor.php:4641 -msgid "Please checked a custom interval option." -msgstr "Veuillez cocher une option d'intervalle personnalisĆ©." - -#: ../../godmode/reporting/reporting_builder.item_editor.php:4645 -msgid "Please select a user." -msgstr "Veuillez sĆ©lectionner un utilisateur." - -#: ../../godmode/reporting/reporting_builder.item_editor.php:4649 -msgid "Please select a group." -msgstr "SĆ©lectionnez un groupe." - -#: ../../godmode/reporting/reporting_builder.php:535 -#: ../../godmode/reporting/reporting_builder.php:3451 -#: ../../godmode/reporting/reporting_builder.php:3534 -#: ../../godmode/reporting/reporting_builder.php:3582 -msgid "Reports list" -msgstr "Liste de rapports" - -#: ../../godmode/reporting/reporting_builder.php:583 -msgid "List of reports" -msgstr "Liste des rapports" - -#: ../../godmode/reporting/reporting_builder.php:1046 -msgid "This report exceeds the item limit for realtime operations" -msgstr "" -"Ce rapport dĆ©passe le nombre d'Ć©lĆ©ments limite pour les opĆ©rations en temps " -"rĆ©el." - -#: ../../godmode/reporting/reporting_builder.php:1278 -msgid "Create report" -msgstr "CrĆ©er un rapport" - -#: ../../godmode/reporting/reporting_builder.php:3585 -msgid "Create Custom Report" -msgstr "CrĆ©ez un rapport personnalisĆ©." - -#: ../../godmode/reporting/reporting_builder.php:3673 -msgid "Unsuccessful action

    " -msgstr "Action ƩchouƩe

    " - -#: ../../godmode/reporting/visual_console_builder.editor.php:163 -msgid "Min allowed size is 1024x768" -msgstr "La taille minimale autorisĆ©e est 1024x768" - -#: ../../godmode/reporting/visual_console_builder.editor.php:167 -msgid "Loading in progress" -msgstr "Chargement en cours" - -#: ../../godmode/reporting/visual_console_builder.editor.php:169 -msgid "Saving in progress" -msgstr "Enregistrement en cours" - -#: ../../godmode/reporting/visual_console_builder.editor.php:171 -msgid "Deletion in progress" -msgstr "Suppression en cours" - -#: ../../godmode/reporting/graph_builder.graph_editor.php:199 -#, php-format -msgid "" -"The maximum number of items in a chart is %d. You have %d elements, only first " -"%d will be displayed." -msgstr "" -"Le nombre maximal d'Ć©lĆ©ments dans un graphique est %d. Vous avez %d Ć©lĆ©ments, " -"seul le premier %d sera affichĆ©." - -#: ../../godmode/reporting/graph_builder.graph_editor.php:291 -msgid "Sort selected items" -msgstr "Classer les Ć©lĆ©ments sĆ©lectionnĆ©s" - -#: ../../godmode/reporting/graph_builder.graph_editor.php:294 -msgid "before to" -msgstr "avant" - -#: ../../godmode/reporting/graph_builder.graph_editor.php:295 -msgid "after to" -msgstr "aprĆØs" - -#: ../../godmode/reporting/graph_builder.main.php:230 -msgid "Equalize maximum thresholds" -msgstr "Ɖgaliser les seuils maximum" - -#: ../../godmode/reporting/graph_builder.main.php:258 -msgid "Add summatory series" -msgstr "Ajouter des sĆ©ries de sommation" - -#: ../../godmode/reporting/graph_builder.main.php:268 -msgid "Add average series" -msgstr "Ajouter des sĆ©ries moyennes" - -#: ../../godmode/reporting/graph_builder.main.php:279 -msgid "Modules and series" -msgstr "Modules et sĆ©ries" - -#: ../../godmode/reporting/visual_console_builder.wizard.php:165 -msgid "Range between elements (px)" -msgstr "Gamme entre Ć©lĆ©ments (px)" - -#: ../../godmode/reporting/visual_console_builder.wizard.php:178 -msgid "Size (px)" -msgstr "Taille (px)" - -#: ../../godmode/reporting/visual_console_builder.wizard.php:273 -msgid "Width (px)" -msgstr "Largeur (px)" - -#: ../../godmode/reporting/visual_console_builder.wizard.php:378 -msgid "One item per agent" -msgstr "Un Ć©lĆ©ment par agent" - -#: ../../godmode/reporting/visual_console_builder.wizard.php:448 -#: ../../godmode/reporting/visual_console_builder.wizard.php:765 -msgid "Agent - Module" -msgstr "Agent - Module" - -#: ../../godmode/reporting/visual_console_builder.wizard.php:465 -msgid "Enable link agent" -msgstr "Activer agent de liaison" - -#: ../../godmode/reporting/visual_console_builder.wizard.php:476 -msgid "Set Parent" -msgstr "DĆ©finir le parent" - -#: ../../godmode/reporting/visual_console_builder.wizard.php:479 -msgid "Item created in the visualmap" -msgstr "ƉlĆ©ment crĆ©Ć© sur la carte visuelle" - -#: ../../godmode/reporting/visual_console_builder.wizard.php:480 -msgid "Use the agents relationship (from selected agents)" -msgstr "Utiliser la relation d'agents (Ć  partir des agents sĆ©lectionnĆ©s)" - -#: ../../godmode/reporting/visual_console_builder.wizard.php:489 -msgid "Item in the map" -msgstr "ƉlĆ©ment sur la carte" - -#: ../../godmode/reporting/visual_console_builder.wizard.php:490 -#, php-format -msgid "The parenting relationships in %s will be drawn on the map." -msgstr "Les relations parentales dans %s seront dessinĆ©es sur la carte." - -#: ../../godmode/reporting/visual_console_builder.wizard.php:510 -#: ../../godmode/reporting/visual_console_builder.wizard.php:514 -msgid "Are you sure to add many elements\\nin visual map?" -msgstr "" -"Ɗtes-vous sĆ»r(e) de vouloir ajouter plusieurs Ć©lĆ©ments\\nsur la carte " -"visuelle ?" - -#: ../../godmode/reporting/visual_console_builder.wizard.php:686 -msgid "Please select any module or modules." -msgstr "Veuillez sĆ©lectionner un ou plusieurs modules." - -#: ../../godmode/menu.php:41 -msgid "Network scan" -msgstr "Recherche du rĆ©seau" - -#: ../../godmode/menu.php:43 -msgid "Custom network scan" -msgstr "Analyse de rĆ©seau personnalisĆ©e" - -#: ../../godmode/menu.php:47 -msgid "Manage scan scripts" -msgstr "GĆ©rer les scripts d'analyse" - -#: ../../godmode/menu.php:50 ../../godmode/wizards/HostDevices.class.php:204 -msgid "Host & devices" -msgstr "HĆ“te et appareils" - -#: ../../godmode/menu.php:83 -msgid "Module categories" -msgstr "CatĆ©gories de modules" - -#: ../../godmode/menu.php:87 -msgid "Module types" -msgstr "Types de modules" - -#: ../../godmode/menu.php:97 ../../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 -msgid "Netflow filters" -msgstr "Filtres Netflow" - -#: ../../godmode/menu.php:103 ../../godmode/agentes/configurar_agente.php:818 -#: ../../godmode/agentes/configurar_agente.php:840 -#: ../../godmode/agentes/modificar_agente.php:104 -msgid "Resources" -msgstr "Ressources" - -#: ../../godmode/menu.php:111 -msgid "Manage agents groups" -msgstr "GĆ©rer les groupes d'agents" - -#: ../../godmode/menu.php:149 ../../godmode/wizards/HostDevices.class.php:1077 -#: ../../godmode/agentes/configurar_agente.php:438 -msgid "Module templates" -msgstr "ModĆØles de modules" - -#: ../../godmode/menu.php:155 -msgid "Remote components" -msgstr "Composants distants" - -#: ../../godmode/menu.php:188 ../../godmode/massive/massive_operations.php:257 -msgid "Agents operations" -msgstr "OpĆ©rations des agents" - -#: ../../godmode/menu.php:189 ../../godmode/massive/massive_operations.php:269 -msgid "Modules operations" -msgstr "OpĆ©rations des modules" - -#: ../../godmode/menu.php:190 ../../godmode/massive/massive_operations.php:281 -msgid "Plugins operations" -msgstr "OpĆ©rations des plugins" - -#: ../../godmode/menu.php:192 ../../godmode/massive/massive_operations.php:245 -msgid "Users operations" -msgstr "OpĆ©rations des utilisateurs" - -#: ../../godmode/menu.php:195 ../../godmode/massive/massive_operations.php:233 -msgid "Alerts operations" -msgstr "OpĆ©rations d'alertes" - -#: ../../godmode/menu.php:205 ../../godmode/groups/group_list.php:349 -msgid "Credential store" -msgstr "EntrepĆ“t dā€™identifiants" - -#: ../../godmode/menu.php:225 -msgid "List of Alerts" -msgstr "Liste d'alertes" - -#: ../../godmode/menu.php:240 ../../godmode/menu.php:241 -msgid "Special days list" -msgstr "Liste de jours spĆ©ciaux" - -#: ../../godmode/menu.php:245 -msgid "SNMP alerts" -msgstr "Alertes SNMP" - -#: ../../godmode/menu.php:257 -msgid "Event filters" -msgstr "Filtres d'Ć©vĆ©nements" - -#: ../../godmode/menu.php:262 -msgid "Custom events" -msgstr "Personnaliser les Ć©vĆ©nements" - -#: ../../godmode/menu.php:285 -msgid "Manage servers" -msgstr "GĆ©rer les serveurs" - -#: ../../godmode/menu.php:296 -msgid "Register Plugin" -msgstr "Enregistrer Plugin" - -#: ../../godmode/menu.php:358 -msgid "Websocket Engine" -msgstr "Moteur de Websocket" - -#: ../../godmode/menu.php:392 -msgid "Diagnostic info" -msgstr "Information de diagnostic" - -#: ../../godmode/menu.php:397 -msgid "Site news" -msgstr "NouveautĆ©s du site" - -#: ../../godmode/menu.php:403 -msgid "DB Schema Check" -msgstr "VĆ©rifier schĆ©ma de la BD" - -#: ../../godmode/menu.php:406 -msgid "DB Interface" -msgstr "Interface de la BD" - -#: ../../godmode/menu.php:493 -msgid "Extension manager view" -msgstr "Afficher le gestionnaire d'extension" - -#: ../../godmode/menu.php:497 -msgid "Extension manager" -msgstr "Gestionnaire d'extension" - -#: ../../godmode/menu.php:533 -msgid "Update offline" -msgstr "Mise Ć  jour hors ligne" - -#: ../../godmode/menu.php:536 -msgid "Update online" -msgstr "Mise Ć  jour en ligne" - -#: ../../godmode/menu.php:542 -msgid "Warp journal" -msgstr "Journal de Warp" - -#: ../../godmode/menu.php:550 -#: ../../godmode/module_library/module_library_view.php:81 -msgid "Module library" -msgstr "BibliothĆØque de modules" - -#: ../../godmode/menu.php:557 -#: ../../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/snmpconsole/snmp_alert.php:100 -msgid "Alert overview" -msgstr "AperƧu des alertes" - -#: ../../godmode/snmpconsole/snmp_alert.php:293 -msgid "There was a problem creating the alert" -msgstr "ProblĆØme de crĆ©ation de l'alerte" - -#: ../../godmode/snmpconsole/snmp_alert.php:435 -msgid "There was a problem updating the alert" -msgstr "ProblĆØme de mise Ć  jour de l'alerte" - -#: ../../godmode/snmpconsole/snmp_alert.php:637 -#: ../../godmode/snmpconsole/snmp_alert.php:656 -msgid "There was a problem duplicating the alert" -msgstr "ProblĆØme de duplication de l'alerte" - -#: ../../godmode/snmpconsole/snmp_alert.php:646 -msgid "Successfully Duplicate" -msgstr "DupliquĆ© correctement" - -#: ../../godmode/snmpconsole/snmp_alert.php:677 -msgid "There was a problem deleting the alert" -msgstr "ProblĆØme de suppression de l'alerte" - -#: ../../godmode/snmpconsole/snmp_alert.php:774 -msgid "Matches substrings. End the string with $ for exact matches." -msgstr "" -"Correspond aux sous-chaĆ®nes. Terminez la chaĆ®ne par $ pour les correspondances " -"exactes." - -#: ../../godmode/snmpconsole/snmp_alert.php:842 -#: ../../godmode/snmpconsole/snmp_alert.php:852 -#: ../../godmode/snmpconsole/snmp_alert.php:862 -#: ../../godmode/snmpconsole/snmp_alert.php:872 -#: ../../godmode/snmpconsole/snmp_alert.php:882 -#: ../../godmode/snmpconsole/snmp_alert.php:892 -#: ../../godmode/snmpconsole/snmp_alert.php:902 -#: ../../godmode/snmpconsole/snmp_alert.php:912 -#: ../../godmode/snmpconsole/snmp_alert.php:922 -#: ../../godmode/snmpconsole/snmp_alert.php:932 -#: ../../godmode/snmpconsole/snmp_alert.php:942 -#: ../../godmode/snmpconsole/snmp_alert.php:952 -#: ../../godmode/snmpconsole/snmp_alert.php:962 -#: ../../godmode/snmpconsole/snmp_alert.php:972 -#: ../../godmode/snmpconsole/snmp_alert.php:982 -#: ../../godmode/snmpconsole/snmp_alert.php:992 -#: ../../godmode/snmpconsole/snmp_alert.php:1002 -#: ../../godmode/snmpconsole/snmp_alert.php:1012 -#: ../../godmode/snmpconsole/snmp_alert.php:1022 -#: ../../godmode/snmpconsole/snmp_alert.php:1032 -msgid "Variable bindings/Data" -msgstr "Liens variables/DonnĆ©es" - -#: ../../godmode/snmpconsole/snmp_alert.php:1162 -msgid "" -"Search by these fields description, OID, Custom Value, SNMP Agent (IP), Single " -"value, each Variable bindings/Datas." -msgstr "" -"Rechercher par ces champs de description : OID, Valeur personnalisĆ©e, Agent " -"SNMP (IP), Valeur unique, chaque Lien variable/DonnĆ©es." - -#: ../../godmode/snmpconsole/snmp_alert.php:1180 -msgid "Alert SNMP control filter" -msgstr "Filtre de contrĆ“le d'alerte SNMP" - -#: ../../godmode/snmpconsole/snmp_alert.php:1232 -msgid "There are no SNMP alerts" -msgstr "Aucune alerte SNMP" - -#: ../../godmode/snmpconsole/snmp_alert.php:1266 -msgid "Custom Value/Enterprise String" -msgstr "Valeur personnalisĆ©e/ChaĆ®ne Enterprise" - -#: ../../godmode/snmpconsole/snmp_alert.php:1271 -msgid "TF." -msgstr "TF." - -#: ../../godmode/snmpconsole/snmp_alert.php:1427 -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 ?" - -#: ../../godmode/snmpconsole/snmp_alert.php:1561 -msgid "Do you want delete the selected alerts?" -msgstr "Voulez-vous supprimer les alertes sĆ©lectionnĆ©es ?" - -#: ../../godmode/snmpconsole/snmp_alert.php:1671 -msgid "Add action " -msgstr "Ajouter une action " - -#: ../../godmode/snmpconsole/snmp_filters.php:41 -msgid "Filter overview" -msgstr "AperƧu du filtre" - -#: ../../godmode/snmpconsole/snmp_filters.php:108 -msgid "There was a problem updating the filter" -msgstr "ProblĆØme de mise Ć  jour du filtre" - -#: ../../godmode/snmpconsole/snmp_filters.php:126 -#: ../../godmode/snmpconsole/snmp_filters.php:152 -msgid "Description is empty" -msgstr "La description est vide" - -#: ../../godmode/snmpconsole/snmp_filters.php:129 -msgid "Filter is empty" -msgstr "Le filtre est vide." - -#: ../../godmode/snmpconsole/snmp_filters.php:149 -msgid "Filters are empty" -msgstr "Les filtres sont vides" - -#: ../../godmode/snmpconsole/snmp_filters.php:159 -msgid "There was a problem creating the filter" -msgstr "ProblĆØme de crĆ©ation du filtre" - -#: ../../godmode/snmpconsole/snmp_filters.php:178 -msgid "There was a problem deleting the filter" -msgstr "ProblĆØme de suppression du filtre" - -#: ../../godmode/snmpconsole/snmp_filters.php:221 -#: ../../godmode/snmpconsole/snmp_filters.php:231 -msgid "" -"This field contains a substring, could be part of a IP address, a numeric OID, " -"or a plain substring" -msgstr "" -"Ce champ contient une sous-chaĆ®ne qui pourrait faire partie d'une adresse IP, " -"un OID numĆ©rique ou une sous-chaĆ®ne simple" - -#: ../../godmode/snmpconsole/snmp_filters.php:223 -msgid "Click to remove the filter" -msgstr "Cliquez pour supprimer le filtre" - -#: ../../godmode/snmpconsole/snmp_filters.php:254 -#: ../../godmode/snmpconsole/snmp_filters.php:255 -msgid "Click to add new filter" -msgstr "Cliquez pour ajouter un filtre" - -#: ../../godmode/snmpconsole/snmp_trap_generator.php:38 -msgid "SNMP Trap generator" -msgstr "GĆ©nĆ©rateur de dĆ©routements SNMP" - -#: ../../godmode/snmpconsole/snmp_trap_generator.php:68 -msgid "Empty parameters" -msgstr "ParamĆØtres vides" - -#: ../../godmode/snmpconsole/snmp_trap_generator.php:74 -msgid "Successfully generated" -msgstr "GĆ©nĆ©rĆ© correctement" - -#: ../../godmode/snmpconsole/snmp_trap_generator.php:75 -#, php-format -msgid "Could not be generated: %s" -msgstr "Erreur de crĆ©ation : %s" - -#: ../../godmode/snmpconsole/snmp_trap_generator.php:85 -msgid "Host address" -msgstr "Adresse de l'hĆ“te" - -#: ../../godmode/snmpconsole/snmp_trap_generator.php:135 -msgid "SNMP Type" -msgstr "Type SNMP" - -#: ../../godmode/snmpconsole/snmp_trap_generator.php:168 -msgid "Generate trap" -msgstr "CrĆ©er un dĆ©routement" - -#: ../../godmode/tag/edit_tag.php:57 ../../godmode/tag/edit_tag.php:75 -#: ../../godmode/tag/tag.php:140 -msgid "List tags" -msgstr "Afficher liste d'Ć©tiquettes" - -#: ../../godmode/tag/edit_tag.php:85 ../../godmode/tag/tag.php:152 -msgid "Tags configuration" -msgstr "Configuration des Ć©tiquettes" - -#: ../../godmode/tag/edit_tag.php:128 -msgid "Successfully updated tag" -msgstr "Ɖtiquette mise a jour correctement" - -#: ../../godmode/tag/edit_tag.php:129 -msgid "Error updating tag" -msgstr "Erreur de mise Ć  jour de l'Ć©tiquette" - -#: ../../godmode/tag/edit_tag.php:169 -msgid "Successfully created tag" -msgstr "Ɖtiquette crĆ©Ć©e correctement" - -#: ../../godmode/tag/edit_tag.php:170 -msgid "Error creating tag" -msgstr "Erreur de crĆ©ation de l'Ć©tiquette" - -#: ../../godmode/tag/edit_tag.php:201 -msgid "Update Tag" -msgstr "Mettre Ć  jour l'Ć©tiquette" - -#: ../../godmode/tag/edit_tag.php:205 -msgid "Create Tag" -msgstr "CrĆ©er une Ć©tiquette" - -#: ../../godmode/tag/edit_tag.php:229 -msgid "Hyperlink to help information that has to exist previously." -msgstr "Hyperlien pour information qui doit exister prĆ©alablement" - -#: ../../godmode/tag/edit_tag.php:241 -msgid "Associated Email direction to use later in alerts associated to Tags." -msgstr "" -"Adresse courriel associĆ©e Ć  utiliser postĆ©rieurement avec les alertes " -"associĆ©es aux Ć©tiquettes." - -#: ../../godmode/tag/edit_tag.php:251 ../../godmode/tag/tag.php:282 -msgid "Phone" -msgstr "TĆ©lĆ©phone" - -#: ../../godmode/tag/edit_tag.php:253 -msgid "Associated phone number to use later in alerts associated to Tags." -msgstr "" -"NumĆ©ro de tĆ©lĆ©phone associĆ© Ć  utiliser postĆ©rieurement avec les alertes " -"associĆ©es aux Ć©tiquettes." - -#: ../../godmode/tag/tag.php:117 -msgid "Number of modules" -msgstr "Nombre de modules" - -#: ../../godmode/tag/tag.php:119 -msgid "Number of policy modules" -msgstr "Nombre de modules de politiques" - -#: ../../godmode/tag/tag.php:178 -msgid "Successfully deleted tag" -msgstr "Ɖtiquette supprimĆ©e correctement" - -#: ../../godmode/tag/tag.php:179 -msgid "Error deleting tag" -msgstr "Erreur de suppression de l'Ć©tiquette" - -#: ../../godmode/tag/tag.php:195 -#, php-format -msgid "" -"This node is configured with centralized mode. All tags information is read " -"only. Go to %s to manage it." -msgstr "" -"Ce nœud est configurĆ© en mode centralisĆ©. Toutes les informations des balises " -"sont en lecture seule. Allez vers %s pour le gĆ©rer." - -#: ../../godmode/tag/tag.php:277 -msgid "Tag name" -msgstr "Nom de l'Ć©tiquette" - -#: ../../godmode/tag/tag.php:279 -msgid "Detail information" -msgstr "Information detaillĆ©e" - -#: ../../godmode/tag/tag.php:280 -msgid "Number of modules affected" -msgstr "Nombre de modules affectĆ©s" - -#: ../../godmode/tag/tag.php:311 -msgid "Tag details" -msgstr "DĆ©tails de l'Ć©tiquette" - -#: ../../godmode/tag/tag.php:344 -#, php-format -msgid "Emails for the tag: %s" -msgstr "Courriels pour l'Ć©tiquette : %s" - -#: ../../godmode/tag/tag.php:367 -#, php-format -msgid "Phones for the tag: %s" -msgstr "NumĆ©ros de tĆ©lĆ©phone pour l'Ć©tiquette : %s" - -#: ../../godmode/tag/tag.php:413 -msgid "No tags defined" -msgstr "Aucune Ć©tiquette dĆ©finie" - -#: ../../godmode/tag/tag.php:428 -msgid "Create tag" -msgstr "CrĆ©er une Ć©tiquette" - -#: ../../godmode/events/event_edit_filter.php:249 -msgid "Update Filter" -msgstr "Mise Ć  jour du filtre" - -#: ../../godmode/events/event_edit_filter.php:251 -msgid "Create Filter" -msgstr "CrĆ©er un filtre" - -#: ../../godmode/events/event_edit_filter.php:264 -msgid "Save in group" -msgstr "Enregistrer dans le groupe" - -#: ../../godmode/events/event_edit_filter.php:264 -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:414 -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:636 -msgid "Custom data filter type" -msgstr "Type de filtre de donnĆ©es personnalisĆ©" - -#: ../../godmode/events/event_edit_filter.php:639 -msgid "Filter custom data by name field" -msgstr "Filtrer les donnĆ©es personnalisĆ©es par champ de nom" - -#: ../../godmode/events/event_edit_filter.php:640 -msgid "Filter custom data by value field" -msgstr "Filtrer les donnĆ©es personnalisĆ©es par champ de valeur" - -#: ../../godmode/events/event_edit_filter.php:654 -msgid "Id souce event" -msgstr "Id source d'Ć©vĆ©nement" - -#: ../../godmode/events/event_responses.editor.php:73 -msgid "Edit event responses" -msgstr "Modifier les rĆ©ponses d'Ć©vĆ©nements" - -#: ../../godmode/events/event_responses.editor.php:123 -msgid "For Command type Modal Window mode is enforced" -msgstr "Pour le type Commande, le mode fenĆŖtre modale est exĆ©cutĆ©" - -#: ../../godmode/events/event_responses.editor.php:125 -msgid "Modal window" -msgstr "FenĆŖtre modale" - -#: ../../godmode/events/event_responses.editor.php:126 -msgid "New window" -msgstr "Nouvelle fenĆŖtre" - -#: ../../godmode/events/event_responses.editor.php:198 -msgid "Command timeout (s)" -msgstr "Expiration(s) de commande" - -#: ../../godmode/events/event_responses.editor.php:204 -msgid "Display command" -msgstr "Afficher commande" - -#: ../../godmode/events/event_responses.editor.php:204 -msgid "" -"If enabled the command will be displayed to any user that can execute this " -"event response" -msgstr "" -"Si elle est activĆ©e, la commande sera affichĆ©e Ć  tout utilisateur pouvant " -"exĆ©cuter cette rĆ©ponse dā€™Ć©vĆ©nement" - -#: ../../godmode/events/custom_events.php:76 -msgid "Load the fields from previous events" -msgstr "Charger les champs des Ć©vĆ©nements prĆ©cĆ©dents" - -#: ../../godmode/events/custom_events.php:76 -msgid "Event fields will be loaded. Do you want to continue?" -msgstr "Les champs d'Ć©vĆ©nements seront chargĆ©s. Voulez-vous continuer ?" - -#: ../../godmode/events/custom_events.php:97 -msgid "Agent Name" -msgstr "Nom de lā€™agent" - -#: ../../godmode/events/event_responses.php:51 -msgid "Response added succesfully" -msgstr "RĆ©ponse ajoutĆ©e correctement" - -#: ../../godmode/events/event_responses.php:53 -msgid "Response cannot be added" -msgstr "Erreur d'ajout de la rĆ©ponse" - -#: ../../godmode/events/event_responses.php:77 -msgid "Response updated succesfully" -msgstr "RĆ©ponse mise Ć  jour correctement" - -#: ../../godmode/events/event_responses.php:79 -msgid "Response cannot be updated" -msgstr "Erreur de mise Ć  jour de la rĆ©ponse" - -#: ../../godmode/events/event_responses.php:89 -msgid "Response deleted succesfully" -msgstr "RĆ©ponse supprimĆ©e correctement" - -#: ../../godmode/events/event_responses.php:91 -msgid "Response cannot be deleted" -msgstr "Erreur de suppression de la rĆ©ponse" - -#: ../../godmode/events/event_responses.list.php:32 -msgid "No responses found" -msgstr "Aucune rĆ©ponse retrouvĆ©e" - -#: ../../godmode/events/event_responses.list.php:92 -msgid "Create response" -msgstr "CrĆ©er une rĆ©ponse" - -#: ../../godmode/events/events.php:54 ../../godmode/netflow/nf_edit_form.php:53 -msgid "Filter list" -msgstr "Filtrer la liste" - -#: ../../godmode/events/event_filter.php:215 -#: ../../godmode/netflow/nf_edit.php:212 -msgid "There are no defined filters" -msgstr "Aucun filtre dĆ©fini" - -#: ../../godmode/db/db_main.php:74 -msgid "Current database maintenance setup" -msgstr "Configuration actuelle de gestion de la base de donnĆ©es" - -#: ../../godmode/db/db_main.php:80 -msgid "Database setup" -msgstr "Configuration de la base de donnĆ©es" - -#: ../../godmode/db/db_main.php:84 -msgid "Max. time before compact data" -msgstr "Temps maximum avant de comprimer les donnĆ©es" - -#: ../../godmode/db/db_main.php:90 -msgid "Max. time before purge" -msgstr "Temps maximum avant nettoyage" - -#: ../../godmode/db/db_main.php:114 -msgid "Total data items (tagente_datos)" -msgstr "Nombre total d'Ć©lĆ©ments de donnĆ©es (tagente_datos)" - -#: ../../godmode/db/db_main.php:127 -msgid "Total log4x items (tagente_datos_log4x)" -msgstr "Nombre total d'Ć©lĆ©ments log4x (tagente_datos_log4x)" - -#: ../../godmode/db/db_main.php:140 -msgid "Total data string items (tagente_datos_string)" -msgstr "Nombre d'Ć©lĆ©ments de chaĆ®nes de donnĆ©es (tagente_datos_string)" - -#: ../../godmode/db/db_main.php:146 -msgid "Total modules configured" -msgstr "Nombre total de modules configurĆ©s" - -#: ../../godmode/db/db_main.php:154 -msgid "Total agent access records" -msgstr "Nombre total d'enregistrements d'accĆØs des agents" - -#: ../../godmode/db/db_main.php:166 -msgid "Database sanity" -msgstr "SantĆ© de la base de donnĆ©s" - -#: ../../godmode/db/db_main.php:170 -msgid "Total uknown agents" -msgstr "Nombre total d'agents inconnus" - -#: ../../godmode/db/db_main.php:176 -msgid "Total non-init modules" -msgstr "Nombre total de modules non-initialisĆ©s" - -#: ../../godmode/db/db_main.php:185 -msgid "Last time on DB maintance" -msgstr "Dernier accĆØs Ć  la gestion de la BD" - -#: ../../godmode/db/db_main.php:208 -#, php-format -msgid "" -"Please make sure your %s Server settings are correct and that the database " -"maintenance daemon is running. It's very important to keep your database up to " -"date in order to get the best performance and results from %s." -msgstr "" -"Veuillez vous assurer que vos %s paramĆØtres de serveur sont corrects et que le " -"dĆ©mon de maintenance de la base de donnĆ©es est en cours d'exĆ©cution. Il est " -"trĆØs important de maintenir votre base de donnĆ©es Ć  jour afin d'obtenir les " -"meilleures performances et rĆ©sultats de %s." - -#: ../../godmode/netflow/nf_edit.php:38 -msgid "Manage Netflow Filter" -msgstr "GĆ©rer filtre Netflow" - -#: ../../godmode/netflow/nf_edit_form.php:55 -#: ../../godmode/netflow/nf_edit_form.php:77 -msgid "Add filter" -msgstr "Ajouter un filtre" - -#: ../../godmode/netflow/nf_edit_form.php:58 -msgid "Netflow Filter" -msgstr "Filtre Netflow" - -#: ../../godmode/netflow/nf_edit_form.php:235 -msgid "Filter:" -msgstr "Filtre :" - -#: ../../godmode/netflow/nf_item_list.php:30 -#: ../../godmode/netflow/nf_item_list.php:38 -msgid "Report items" -msgstr "ƉlĆ©ments de rapport" - -#: ../../godmode/netflow/nf_item_list.php:33 -msgid "Edit report" -msgstr "Ɖditer le rapport" - -#: ../../godmode/netflow/nf_item_list.php:53 -msgid "Netflow reports" -msgstr "Rapports Netflow" - -#: ../../godmode/netflow/nf_item_list.php:57 -msgid "Item list" -msgstr "Liste d'Ć©lĆ©ments" - -#: ../../godmode/netflow/nf_item_list.php:277 -msgid "There are no defined items" -msgstr "Aucun Ć©lĆ©ment dĆ©fini" - -#: ../../godmode/massive/massive_add_alerts.php:105 -#: ../../godmode/massive/massive_delete_alerts.php:108 -msgid "No alert selected" -msgstr "Aucune alerte sĆ©lectionnĆ©e" - -#: ../../godmode/massive/massive_delete_modules.php:82 -msgid "No module selected" -msgstr "Aucun module sĆ©lectionnĆ©" - -#: ../../godmode/massive/massive_delete_modules.php:156 -msgid "There was an error deleting the modules, the operation has been cancelled" -msgstr "Erreur de suppression des modules, l'opĆ©ration a Ć©tĆ© annulĆ©e" - -#: ../../godmode/massive/massive_delete_modules.php:318 -#: ../../godmode/massive/massive_edit_modules.php:304 -msgid "Selection mode" -msgstr "Mode de sĆ©lection" - -#: ../../godmode/massive/massive_delete_modules.php:319 -#: ../../godmode/massive/massive_edit_modules.php:305 -msgid "Select modules first " -msgstr "SĆ©lectionner les modules en premier " - -#: ../../godmode/massive/massive_delete_modules.php:320 -#: ../../godmode/massive/massive_edit_modules.php:306 -msgid "Select agents first " -msgstr "SĆ©lectionner les agents en premier " - -#: ../../godmode/massive/massive_delete_modules.php:343 -#: ../../godmode/massive/massive_edit_modules.php:325 -msgid "Select all modules of this type" -msgstr "SĆ©lectionner tous les modules de ce type" - -#: ../../godmode/massive/massive_delete_modules.php:387 -#: ../../godmode/massive/massive_edit_modules.php:371 -msgid "Select all modules of this group" -msgstr "SĆ©lectionner tous les modules de ce groupe" - -#: ../../godmode/massive/massive_delete_modules.php:458 -#: ../../godmode/massive/massive_copy_modules.php:196 -#: ../../godmode/massive/massive_edit_modules.php:420 -msgid "Filter Modules" -msgstr "Filtrer les modules" - -#: ../../godmode/massive/massive_delete_modules.php:477 -#: ../../godmode/massive/massive_edit_modules.php:436 -msgid "Select all modules" -msgstr "SĆ©lectionner tous les modules" - -#: ../../godmode/massive/massive_delete_modules.php:479 -#: ../../godmode/massive/massive_edit_modules.php:438 -msgid "When select modules" -msgstr "Lorsque des modules sont sĆ©lectionnĆ©es" - -#: ../../godmode/massive/massive_delete_modules.php:483 -#: ../../godmode/massive/massive_edit_modules.php:442 -msgid "Show common agents" -msgstr "Afficher agents communs" - -#: ../../godmode/massive/massive_delete_modules.php:484 -#: ../../godmode/massive/massive_edit_modules.php:443 -msgid "Show all agents" -msgstr "Afficher tous les agents" - -#: ../../godmode/massive/massive_delete_modules.php:530 -#: ../../godmode/massive/massive_copy_modules.php:292 -msgid "Filter Agents" -msgstr "Filtrer les agents" - -#: ../../godmode/massive/massive_delete_modules.php:549 -#: ../../godmode/massive/massive_edit_modules.php:522 -msgid "Select all agents" -msgstr "SĆ©lectionnez tous les agents" - -#: ../../godmode/massive/massive_delete_modules.php:557 -#: ../../godmode/massive/massive_add_action_alerts.php:226 -#: ../../godmode/massive/massive_delete_action_alerts.php:247 -#: ../../godmode/massive/massive_edit_modules.php:530 -msgid "Show unknown and not init modules" -msgstr "Afficher les modules inconnus et non initialisĆ©s" - -#: ../../godmode/massive/massive_delete_modules.php:595 -#: ../../godmode/massive/massive_edit_modules.php:1260 -msgid "Please, select an agent first" -msgstr "Veuillez d'abord sĆ©lectionner un agent" - -#: ../../godmode/massive/massive_copy_modules.php:193 -msgid "Copy alerts" -msgstr "Copier les alertes" - -#: ../../godmode/massive/massive_copy_modules.php:230 -msgid "No alerts for this agent" -msgstr "Aucune alerte pour cet agent" - -#: ../../godmode/massive/massive_copy_modules.php:309 -msgid "To agent(s)" -msgstr "Pour agent(s)" - -#: ../../godmode/massive/massive_copy_modules.php:559 -msgid "No operation selected" -msgstr "Aucune opĆ©ration sĆ©lectionnĆ©e" - -#: ../../godmode/massive/massive_operations.php:59 -msgid "Bulk alert add" -msgstr "Ajout massif d'alertes" - -#: ../../godmode/massive/massive_operations.php:60 -msgid "Bulk alert delete" -msgstr "Suppression massive d'alertes" - -#: ../../godmode/massive/massive_operations.php:61 -msgid "Bulk alert actions add" -msgstr "Ajout massif d'actions des alertes" - -#: ../../godmode/massive/massive_operations.php:62 -msgid "Bulk alert actions delete" -msgstr "Suppression massive d'actions des alertes" - -#: ../../godmode/massive/massive_operations.php:63 -msgid "Bulk alert enable/disable" -msgstr "Activer/dĆ©sactiver massivement les alertes" - -#: ../../godmode/massive/massive_operations.php:64 -msgid "Bulk alert setting standby" -msgstr "Configuration massive des alertes en mode veille" - -#: ../../godmode/massive/massive_operations.php:68 -msgid "Bulk agent edit" -msgstr "Ɖdition massive des alertes" - -#: ../../godmode/massive/massive_operations.php:69 -#: ../../godmode/massive/massive_operations.php:73 -msgid "Bulk agent delete" -msgstr "Suppression massive des alertes" - -#: ../../godmode/massive/massive_operations.php:79 -msgid "Bulk profile add" -msgstr "Ajout massif de profils" - -#: ../../godmode/massive/massive_operations.php:80 -msgid "Bulk profile delete" -msgstr "Suppression massive de profils" - -#: ../../godmode/massive/massive_operations.php:87 -msgid "Bulk module edit" -msgstr "Ɖdition massive de modules" - -#: ../../godmode/massive/massive_operations.php:88 -msgid "Bulk module copy" -msgstr "Copie massive de modules" - -#: ../../godmode/massive/massive_operations.php:89 -msgid "Bulk module delete" -msgstr "Suppression massive de modules" - -#: ../../godmode/massive/massive_operations.php:93 -msgid "Bulk plugin edit" -msgstr "Ɖdition massive de plugins" - -#: ../../godmode/massive/massive_operations.php:389 -#, php-format -msgid "" -"No changes have been made because they exceed the maximum allowed (%d). Make " -"fewer changes or contact the administrator." -msgstr "" -"Aucune modification n'a Ć©tĆ© apportĆ©e car elles dĆ©passent le maximum autorisĆ© " -"(%d). Apportez moins de modifications ou contactez l'administrateur." - -#: ../../godmode/massive/massive_operations.php:417 -#, php-format -msgid "This node is configured with centralized mode. To delete agents go to %s" -msgstr "" -"Ce nœud est configurĆ© en mode centralisĆ©. Pour supprimer des agents, accĆ©dez Ć  " -"%s" - -#: ../../godmode/massive/massive_operations.php:440 -msgid "The blank fields will not be updated" -msgstr "Les champs vides ne seront pas mis Ć  jour" - -#: ../../godmode/massive/massive_add_profiles.php:52 -#: ../../godmode/massive/massive_delete_profiles.php:52 -#, php-format -msgid "" -"This node is configured with centralized mode. All profiles user information " -"is read only. Go to %s to manage it." -msgstr "" -"Ce nœud est configurĆ© en mode centralisĆ©. Toutes les informations utilisateur " -"des profils sont en lecture seule. Allez dans %s pour le gĆ©rer." - -#: ../../godmode/massive/massive_add_profiles.php:184 -msgid "Profiles added successfully" -msgstr "Profils ajoutĆ©s correctement" - -#: ../../godmode/massive/massive_add_profiles.php:185 -msgid "Profiles cannot be added" -msgstr "Erreur d'ajout de profils" - -#: ../../godmode/massive/massive_standby_alerts.php:223 -msgid "Not standby alerts" -msgstr "Aucune alerte en mode veille" - -#: ../../godmode/massive/massive_standby_alerts.php:252 -#: ../../godmode/massive/massive_standby_alerts.php:256 -msgid "Set standby selected alerts" -msgstr "Configurer les alertes sĆ©lectionnĆ©es en mode veille" - -#: ../../godmode/massive/massive_standby_alerts.php:258 -msgid "Standby alerts" -msgstr "Alertes en mode veille" - -#: ../../godmode/massive/massive_add_action_alerts.php:134 -msgid "No alerts selected" -msgstr "Aucune alerte sĆ©lectionnĆ©e" - -#: ../../godmode/massive/massive_add_action_alerts.php:166 -msgid "No actions selected" -msgstr "Aucune action sĆ©lectionnĆ©e" - -#: ../../godmode/massive/massive_add_action_alerts.php:212 -#: ../../godmode/massive/massive_delete_action_alerts.php:230 -msgid "Agents with templates" -msgstr "Agents avec des modĆØles" - -#: ../../godmode/massive/massive_add_action_alerts.php:218 -#: ../../godmode/massive/massive_delete_action_alerts.php:239 -#: ../../godmode/alerts/alert_templates.php:131 -#: ../../godmode/alerts/alert_templates.php:183 -#: ../../godmode/alerts/alert_templates.php:206 -#: ../../godmode/alerts/alert_templates.php:227 -msgid "Alert templates" -msgstr "ModĆØles d'alertes" - -#: ../../godmode/massive/massive_edit_agents.php:176 -msgid "No values changed" -msgstr "Aucune valeur modifiĆ©e" - -#: ../../godmode/massive/massive_edit_agents.php:227 -msgid "Configuration files deleted successfully" -msgstr "Fichiers de configuration supprimĆ©s correctement" - -#: ../../godmode/massive/massive_edit_agents.php:228 -msgid "Configuration files cannot be deleted" -msgstr "Erreur de suppression des fichiers de configuration" - -#: ../../godmode/massive/massive_edit_agents.php:420 -#, php-format -msgid "Agents updated successfully (%d)" -msgstr "Agents mis Ć  jour correctement (%d)" - -#: ../../godmode/massive/massive_edit_agents.php:435 -#, php-format -msgid "Agents cannot be updated (%d), ids (%s)" -msgstr "Les agents ne peuvent pas ĆŖtre mis Ć  jour (%d), ids (%s)" - -#: ../../godmode/massive/massive_edit_agents.php:450 -#, php-format -msgid "Agent ID: %s cannot be updated custom fields (%s)" -msgstr "" -"ID de lā€™agent : %s ne peut pas ĆŖtre mis Ć  jour des champs personnalisĆ©s (%s)" - -#: ../../godmode/massive/massive_edit_agents.php:470 -#, php-format -msgid "Agent ID: %s cannot be updated %s secondary groups (%s)" -msgstr "" -"ID de lā€™agent : %s ne peut pas ĆŖtre mis Ć  jour %s groupes secondaires (%s)" - -#: ../../godmode/massive/massive_edit_agents.php:547 -#: ../../godmode/massive/massive_delete_agents.php:226 -msgid "Show agents" -msgstr "Afficher les agents" - -#: ../../godmode/massive/massive_edit_agents.php:661 -#: ../../godmode/agentes/agent_manager.php:590 -msgid "Cascade protection" -msgstr "Protection en cascade" - -#: ../../godmode/massive/massive_edit_agents.php:858 -#: ../../godmode/agentes/agent_manager.php:606 -msgid "Module definition" -msgstr "DĆ©finition des modules" - -#: ../../godmode/massive/massive_edit_agents.php:870 -#: ../../godmode/agentes/agent_manager.php:611 -msgid "Learning mode" -msgstr "Mode d'apprentissage" - -#: ../../godmode/massive/massive_edit_agents.php:881 -#: ../../godmode/agentes/agent_manager.php:621 -msgid "Normal mode" -msgstr "Mode normal" - -#: ../../godmode/massive/massive_edit_agents.php:892 -#: ../../godmode/agentes/agent_manager.php:631 -msgid "Autodisable mode" -msgstr "Mode dĆ©sactivation automatique" - -#: ../../godmode/massive/massive_edit_agents.php:919 -msgid "" -"If the remote configuration is enabled, it will also go into standby mode when " -"disabling it." -msgstr "" -"Si la configuration Ć  distance est activĆ©e, elle passera Ć©galement en mode " -"veille lors de sa dĆ©sactivation." - -#: ../../godmode/massive/massive_edit_agents.php:932 -msgid "Active" -msgstr "ActivĆ©" - -#: ../../godmode/massive/massive_edit_agents.php:948 -msgid "Delete available remote configurations" -msgstr "Supprimer les configurations Ć  distance disponibles" - -#: ../../godmode/massive/massive_edit_agents.php:980 -#: ../../godmode/agentes/agent_manager.php:695 -msgid "Agent icon" -msgstr "IcĆ“ne de l'agent" - -#: ../../godmode/massive/massive_edit_agents.php:981 -msgid "Without status" -msgstr "Sans Ć©tat" - -#: ../../godmode/massive/massive_edit_agents.php:984 -#: ../../godmode/agentes/agent_conf_gis.php:124 -msgid "Ignore new GIS data:" -msgstr "Ignorer les nouvelles donnĆ©es GIS :" - -#: ../../godmode/massive/massive_edit_agents.php:991 -msgid "The agent still runs but the alerts and events will be stop" -msgstr "" -"L'agent fonctionne toujours mais les alertes et les Ć©vĆ©nements seront arrĆŖtĆ©s" - -#: ../../godmode/massive/massive_edit_agents.php:1006 -#: ../../godmode/agentes/agent_manager.php:518 -msgid "Safe operation mode" -msgstr "Mode d'opĆ©ration sĆ©curisĆ©" - -#: ../../godmode/massive/massive_edit_agents.php:1008 -#, php-format -msgid "" -"This mode allow %s to disable all modules \n" -"of this agent while the selected module is on CRITICAL status" -msgstr "" -"Ce mode permet Ć  %s de dĆ©sactiver tous les modules de cet agent alors que " -"le module sĆ©lectionnĆ© est Ć  l'Ć©tat CRITIQUE" - -#: ../../godmode/massive/massive_delete_profiles.php:133 -msgid "Profiles deleted successfully" -msgstr "Profils supprimĆ©s correctement" - -#: ../../godmode/massive/massive_delete_profiles.php:134 -msgid "Profiles cannot be deleted" -msgstr "Erreur de suppression des profils" - -#: ../../godmode/massive/massive_delete_action_alerts.php:75 -msgid "Could not be deleted. No agents selected" -msgstr "Erreur de suppression. Aucun agent sĆ©lectionnĆ©" - -#: ../../godmode/massive/massive_delete_action_alerts.php:122 -msgid "Could not be deleted. No alerts selected" -msgstr "Erreur de suppression. Aucune alerte sĆ©lectionnĆ©e" - -#: ../../godmode/massive/massive_delete_action_alerts.php:181 -msgid "Could not be deleted. No action selected" -msgstr "Erreur de suppression. Aucune action sĆ©lectionnĆ©e" - -#: ../../godmode/massive/massive_delete_alerts.php:307 -msgid "Show alerts on disabled modules" -msgstr "Afficher les alertes sur les modules dĆ©sactivĆ©s" - -#: ../../godmode/massive/massive_delete_agents.php:122 -#, php-format -msgid "" -"There was an error deleting the agent, the operation has been cancelled Could " -"not delete agent %s" -msgstr "" -"Erreur de suppression de l'agent, l'opĆ©ration a Ć©tĆ© annulĆ©e. Impossible de " -"supprimer %s agent(s)" - -#: ../../godmode/massive/massive_delete_agents.php:132 -#, php-format -msgid "Successfully deleted (%s)" -msgstr "(%s) supprimĆ©(s) correctement" - -#: ../../godmode/massive/massive_edit_plugins.php:177 -msgid "Error retrieving the plugin macros" -msgstr "Erreur de rĆ©cupĆ©ration des macros plugin" - -#: ../../godmode/massive/massive_edit_plugins.php:185 -msgid "Error retrieving the modified macros" -msgstr "Erreur de rĆ©cupĆ©ration des macros modifiĆ©es" - -#: ../../godmode/massive/massive_edit_plugins.php:208 -msgid "Error retrieving the module plugin macros" -msgstr "Erreur de rĆ©cupĆ©ration des macros plugin module" - -#: ../../godmode/massive/massive_edit_plugins.php:226 -msgid "Error retrieving the module plugin macros data" -msgstr "Erreur de rĆ©cupĆ©ration des donnĆ©es des macros du module de plugin" - -#: ../../godmode/massive/massive_edit_plugins.php:264 -msgid "Error building the new macros" -msgstr "Erreur de conception des nouvelles macros" - -#: ../../godmode/massive/massive_edit_plugins.php:290 -#, php-format -msgid "%d modules updated" -msgstr "%d modules mis Ć  jour" - -#: ../../godmode/massive/massive_edit_plugins.php:321 -msgid "There are not registered plugins" -msgstr "Aucun plugin enregistrĆ©" - -#: ../../godmode/massive/massive_edit_plugins.php:464 -msgid "Invalid plugin data" -msgstr "DonnĆ©es du plugin non valides" - -#: ../../godmode/massive/massive_edit_plugins.php:571 -msgid "Clear" -msgstr "Effacer" - -#: ../../godmode/massive/massive_edit_plugins.php:599 -msgid "Invalid macros array" -msgstr "Tableau de macros non valide" - -#: ../../godmode/massive/massive_edit_plugins.php:624 -msgid "Multiple values" -msgstr "Valeurs multiples" - -#: ../../godmode/massive/massive_edit_plugins.php:656 -#: ../../godmode/massive/massive_edit_plugins.php:792 -#: ../../godmode/massive/massive_edit_plugins.php:808 -msgid "Invalid agents array" -msgstr "Tableau d'agents non valide" - -#: ../../godmode/massive/massive_edit_plugins.php:672 -msgid "Invalid agent element" -msgstr "ƉlĆ©ment d'agent non valide" - -#: ../../godmode/massive/massive_edit_plugins.php:683 -msgid "Invalid modules array" -msgstr "Tableau de modules non valide" - -#: ../../godmode/massive/massive_edit_plugins.php:711 -msgid "Invalid module element" -msgstr "ƉlĆ©ment de module non valide" - -#: ../../godmode/massive/massive_edit_plugins.php:920 -msgid "There are no modules using this plugin" -msgstr "Aucun module utilise ce plugin" - -#: ../../godmode/massive/massive_edit_plugins.php:1005 -msgid "There was a problem loading the module plugin macros data" -msgstr "Erreur de chargement des donnĆ©es des macros du module de plugin" - -#: ../../godmode/massive/massive_enable_disable_alerts.php:195 -msgid "Enabled alerts" -msgstr "Activer les alertes" - -#: ../../godmode/massive/massive_enable_disable_alerts.php:224 -msgid "Disable selected alerts" -msgstr "DĆ©sactiver les alertes sĆ©lectionnĆ©es" - -#: ../../godmode/massive/massive_enable_disable_alerts.php:228 -msgid "Enable selected alerts" -msgstr "Activer les alertes sĆ©lectionnĆ©es" - -#: ../../godmode/massive/massive_enable_disable_alerts.php:230 -msgid "Disabled alerts" -msgstr "DĆ©sactiver les alertes" - -#: ../../godmode/massive/massive_edit_modules.php:137 -msgid "Error updating the modules from a module type" -msgstr "Erreur de mise Ć  jour des modules Ć  partir d'un type de module" - -#: ../../godmode/massive/massive_edit_modules.php:160 -msgid "Error updating the modules from an agent group" -msgstr "Erreur de mise Ć  jour des modules Ć  partir d'un groupe d'agent" - -#: ../../godmode/massive/massive_edit_modules.php:178 -msgid "Error updating the modules (maybe there was no field to update)" -msgstr "" -"Erreur de mise Ć  jour des modules (il n'y avait possiblement pas de champs Ć  " -"mettre Ć  jour)" - -#: ../../godmode/wizards/HostDevices.class.php:152 -msgid "Net Scan" -msgstr "Net Scan" - -#: ../../godmode/wizards/HostDevices.class.php:172 -msgid "Custom NetScan" -msgstr "NetScan personnalisĆ©" - -#: ../../godmode/wizards/HostDevices.class.php:180 -msgid "Manage NetScan scripts" -msgstr "GĆ©rer les scripts NetScan" - -#: ../../godmode/wizards/HostDevices.class.php:325 -#, php-format -msgid "Invalid mimetype for csv file: %s" -msgstr "Mime type non valide pour le fichier csvĀ : %s" - -#: ../../godmode/wizards/HostDevices.class.php:348 -#, php-format -msgid "Invalid content readed from csv file: %s" -msgstr "Contenu non valide lu Ć  partir du fichier csvĀ : %s" - -#: ../../godmode/wizards/HostDevices.class.php:391 -msgid "" -"This network scan task has been already defined. Please edit it or create a " -"new one." -msgstr "" -"Cette tĆ¢che d'analyse du rĆ©seau a dĆ©jĆ  Ć©tĆ© dĆ©finie. Veuillez le modifier ou en " -"crĆ©er un nouveau." - -#: ../../godmode/wizards/HostDevices.class.php:433 -msgid "You must provide a valid network." -msgstr "Vous devez fournir un rĆ©seau valide." - -#: ../../godmode/wizards/HostDevices.class.php:700 -#, php-format -msgid "\"%s\" features" -msgstr "FonctionnalitĆ©s ā€œ%sā€" - -#: ../../godmode/wizards/HostDevices.class.php:868 -msgid "Use CSV file definition" -msgstr "Utiliser la dĆ©finition de fichier CSV" - -#: ../../godmode/wizards/HostDevices.class.php:869 -msgid "Define targets using csv o network definition." -msgstr "DĆ©finissez des cibles Ć  l'aide de la dĆ©finition de rĆ©seau csv ou." - -#: ../../godmode/wizards/HostDevices.class.php:887 -msgid "Networks (csv)" -msgstr "RĆ©seaux (csv)" - -#: ../../godmode/wizards/HostDevices.class.php:888 -msgid "" -"You can upload a CSV file. Each line must contain a network in IP/MASK format. " -"For instance: 192.168.1.1/32" -msgstr "" -"Vous pouvez tĆ©lĆ©charger un fichier CSV. Chaque ligne doit contenir un rĆ©seau " -"au format IP/MASK. Par exemple : 192.168.1.1/32" - -#: ../../godmode/wizards/HostDevices.class.php:900 -msgid "Networks (current)" -msgstr "RĆ©seaux (actuels)" - -#: ../../godmode/wizards/HostDevices.class.php:901 -msgid "Please upload a new file to overwrite this content." -msgstr "Veuillez tĆ©lĆ©charger un nouveau fichier pour Ć©craser ce contenu." - -#: ../../godmode/wizards/HostDevices.class.php:917 -msgid "" -"You can specify several networks, separated by commas, for example: " -"192.168.50.0/24,192.168.60.0/24" -msgstr "" -"Il est possible de dĆ©finir plusieurs rĆ©seaux sĆ©parĆ©s par des virgules. Par " -"exemple : 192.168.50.0/24,192.168.60.0/24" - -#: ../../godmode/wizards/HostDevices.class.php:1047 -msgid "Filter by opened ports" -msgstr "Filtrer par ports ouverts" - -#: ../../godmode/wizards/HostDevices.class.php:1049 -msgid "" -"Targets will be scanned if at least one of defined ports (comma separated) is " -"open." -msgstr "" -"Les cibles seront analysĆ©es si au moins un des ports dĆ©finis (sĆ©parĆ©s par des " -"virgules) est ouvert." - -#: ../../godmode/wizards/HostDevices.class.php:1062 -msgid "Auto discover known hardware" -msgstr "DĆ©couverte automatique du matĆ©riel connu" - -#: ../../godmode/wizards/HostDevices.class.php:1064 -msgid "" -"Targets will be monitorized based on its Private Enterprise Number. " -"Requires SNMP." -msgstr "" -"Les cibles seront surveillĆ©es en fonction de son numĆ©ro d'entreprise " -"privĆ©e . NĆ©cessite SNMP." - -#: ../../godmode/wizards/HostDevices.class.php:1079 -msgid "Module Host Alive will be added to discovered agents by default." -msgstr "" -"Le module Host Alive sera ajoutĆ© par dĆ©faut aux agents dĆ©couverts." - -#: ../../godmode/wizards/HostDevices.class.php:1127 -#, php-format -msgid "" -"Configured networks could generate %d agents, your license only allows %d, " -"'review results' is mandatory." -msgstr "" -"Les rĆ©seaux configurĆ©s peuvent gĆ©nĆ©rer %dĀ agents, votre licence n'autorise que " -"%d, Ā«Ā revoir les rĆ©sultatsĀ Ā» est obligatoire." - -#: ../../godmode/wizards/HostDevices.class.php:1135 -#: ../../godmode/wizards/DiscoveryTaskList.class.php:908 -msgid "Review results" -msgstr "RĆ©viser les rĆ©sultats" - -#: ../../godmode/wizards/HostDevices.class.php:1137 -msgid "Targets must be validated by user before create agents." -msgstr "" -"Les cibles doivent ĆŖtre validĆ©es par l'utilisateur avant de crĆ©er des agents." - -#: ../../godmode/wizards/HostDevices.class.php:1163 -msgid "Apply autoconfiguration rules" -msgstr "Appliquer les rĆØgles de configuration automatique" - -#: ../../godmode/wizards/HostDevices.class.php:1165 -msgid "" -"System is able to auto configure detected host & devices by applying your " -"defined configuration rules." -msgstr "" -"Le systĆØme est capable de configurer automatiquement l'hĆ“te et les " -"pĆ©riphĆ©riques dĆ©tectĆ©s en appliquant vos rĆØgles de configuration dĆ©finies." - -#: ../../godmode/wizards/HostDevices.class.php:1181 -msgid "SNMP enabled" -msgstr "SNMP activĆ©" - -#: ../../godmode/wizards/HostDevices.class.php:1223 -msgid "SNMP communities to try with" -msgstr "CommunautĆ©s SNMP Ć  essayer avec" - -#: ../../godmode/wizards/HostDevices.class.php:1225 -msgid "" -"You can specify several values, separated by commas, for example: public," -"mysecret,1234" -msgstr "" -"Vous pouvez dĆ©finir plusieurs valeurs sĆ©parĆ©es par des virgules. Par exemple : " -"public,mysecret,1234" - -#: ../../godmode/wizards/HostDevices.class.php:1353 -msgid "OS detection" -msgstr "DĆ©tection du systĆØme d'exploitation" - -#: ../../godmode/wizards/HostDevices.class.php:1365 -msgid "Name resolution" -msgstr "RĆ©solution du nom" - -#: ../../godmode/wizards/HostDevices.class.php:1376 -msgid "Parent detection" -msgstr "DĆ©tection de parents" - -#: ../../godmode/wizards/HostDevices.class.php:1387 -msgid "Parent recursion" -msgstr "RĆ©cursion de parents" - -#: ../../godmode/wizards/HostDevices.class.php:1398 -msgid "VLAN enabled" -msgstr "VLAN activĆ©" - -#: ../../godmode/wizards/HostDevices.class.php:1409 -msgid "WMI enabled" -msgstr "WMI activĆ©" - -#: ../../godmode/wizards/DiscoveryTaskList.class.php:254 -msgid "Task successfully deleted" -msgstr "TĆ¢che supprimĆ©e correctement" - -#: ../../godmode/wizards/DiscoveryTaskList.class.php:361 -#: ../../godmode/wizards/DiscoveryTaskList.class.php:488 -msgid "Task successfully enabled" -msgstr "TĆ¢che activĆ©e correctement" - -#: ../../godmode/wizards/DiscoveryTaskList.class.php:361 -msgid "Task succesfully disabled" -msgstr "TĆ¢che dĆ©sactivĆ©e avec succĆØs" - -#: ../../godmode/wizards/DiscoveryTaskList.class.php:401 -msgid "Console Task successfully deleted" -msgstr "TĆ¢che de console supprimĆ©e correctement" - -#: ../../godmode/wizards/DiscoveryTaskList.class.php:443 -msgid "Task successfully disabled" -msgstr "TĆ¢che dĆ©sactivĆ©e correctement" - -#: ../../godmode/wizards/DiscoveryTaskList.class.php:520 -msgid "Discovery Server is disabled" -msgstr "Le serveur Discovery est dĆ©sactivĆ©" - -#: ../../godmode/wizards/DiscoveryTaskList.class.php:603 -msgid "Task type" -msgstr "Type de tĆ¢che" - -#: ../../godmode/wizards/DiscoveryTaskList.class.php:682 -msgid "This task has not been completely defined, please edit it" -msgstr "Cette tĆ¢che n'a pas Ć©tĆ© complĆØtement dĆ©finie, veuillez la modifier" - -#: ../../godmode/wizards/DiscoveryTaskList.class.php:732 -msgid "Discovery Cloud Azure Compute" -msgstr "Discovery Cloud Azure Compute" - -#: ../../godmode/wizards/DiscoveryTaskList.class.php:736 -msgid "Cloud.Azure.Compute" -msgstr "Cloud.Azure.Compute" - -#: ../../godmode/wizards/DiscoveryTaskList.class.php:745 -msgid "Discovery Cloud AWS EC2" -msgstr "Discovery Cloud AWS EC2" - -#: ../../godmode/wizards/DiscoveryTaskList.class.php:749 -msgid "Cloud.AWS.EC2" -msgstr "Cloud.AWS.EC2" - -#: ../../godmode/wizards/DiscoveryTaskList.class.php:758 -msgid "Discovery Cloud RDS" -msgstr "Discovery Cloud RDS" - -#: ../../godmode/wizards/DiscoveryTaskList.class.php:762 -msgid "Discovery.Cloud.Aws.RDS" -msgstr "Discovery.Cloud.Aws.RDS" - -#: ../../godmode/wizards/DiscoveryTaskList.class.php:771 -msgid "Discovery Cloud S3" -msgstr "Discovery Cloud S3" - -#: ../../godmode/wizards/DiscoveryTaskList.class.php:775 -msgid "Discovery.Cloud.Aws.S3" -msgstr "Discovery.Cloud.Aws.S3" - -#: ../../godmode/wizards/DiscoveryTaskList.class.php:784 -msgid "Discovery Applications MySQL" -msgstr "Discovery Applications MySQL" - -#: ../../godmode/wizards/DiscoveryTaskList.class.php:788 -msgid "Discovery.App.MySQL" -msgstr "Discovery.App.MySQL" - -#: ../../godmode/wizards/DiscoveryTaskList.class.php:797 -msgid "Discovery Applications Oracle" -msgstr "Discovery Applications Oracle" - -#: ../../godmode/wizards/DiscoveryTaskList.class.php:801 -msgid "Discovery.App.Oracle" -msgstr "Discovery.App.Oracle" - -#: ../../godmode/wizards/DiscoveryTaskList.class.php:810 -msgid "Discovery Applications DB2" -msgstr "Discovery Applications DB2" - -#: ../../godmode/wizards/DiscoveryTaskList.class.php:814 -msgid "Discovery.App.DB2" -msgstr "Discovery.App.DB2" - -#: ../../godmode/wizards/DiscoveryTaskList.class.php:825 -msgid "Discovery.Agent.Deployment" -msgstr "Discovery.Agent.Deployment" - -#: ../../godmode/wizards/DiscoveryTaskList.class.php:833 -msgid "Discovery Applications Microsoft SQL Server" -msgstr "Discovery Applications Microsoft SQL Server" - -#: ../../godmode/wizards/DiscoveryTaskList.class.php:835 -msgid "Discovery.App.Microsoft SQL Server" -msgstr "Discovery.App.Microsoft SQL Server" - -#: ../../godmode/wizards/DiscoveryTaskList.class.php:846 -msgid "Discovery NetScan" -msgstr "Discovery NetScan" - -#: ../../godmode/wizards/DiscoveryTaskList.class.php:850 -msgid "Discovery.NetScan" -msgstr "Discovery.NetScan" - -#: ../../godmode/wizards/DiscoveryTaskList.class.php:896 -msgid "Not executed yet" -msgstr "Pas encore exĆ©cutĆ©" - -#: ../../godmode/wizards/DiscoveryTaskList.class.php:920 -msgid "View summary" -msgstr "Voir le rĆ©sumĆ©" - -#: ../../godmode/wizards/DiscoveryTaskList.class.php:941 -msgid "View map" -msgstr "Voir la carte" - -#: ../../godmode/wizards/DiscoveryTaskList.class.php:965 -#: ../../godmode/wizards/DiscoveryTaskList.class.php:991 -msgid "Edit task" -msgstr "Modifier la tĆ¢che" - -#: ../../godmode/wizards/DiscoveryTaskList.class.php:975 -#: ../../godmode/wizards/DiscoveryTaskList.class.php:1001 -msgid "Delete task" -msgstr "Supprimer la tĆ¢che" - -#: ../../godmode/wizards/DiscoveryTaskList.class.php:1014 -msgid "enable task" -msgstr "activer la tĆ¢che" - -#: ../../godmode/wizards/DiscoveryTaskList.class.php:1043 -msgid "has no discovery tasks assigned" -msgstr "n'a aucune tĆ¢che de dĆ©couverte assignĆ©e" - -#: ../../godmode/wizards/DiscoveryTaskList.class.php:1050 -msgid "Server Tasks" -msgstr "TĆ¢ches du serveur" - -#: ../../godmode/wizards/DiscoveryTaskList.class.php:1197 -msgid "Overall Progress" -msgstr "Progression globale" - -#: ../../godmode/wizards/DiscoveryTaskList.class.php:1216 -msgid "Scanning network" -msgstr "DĆ©couvrant rĆ©seau" - -#: ../../godmode/wizards/DiscoveryTaskList.class.php:1220 -msgid "Checking" -msgstr "VĆ©rification" - -#: ../../godmode/wizards/DiscoveryTaskList.class.php:1224 -msgid "Finding AFT connectivity" -msgstr "Trouvant la connectivitĆ© AFT" - -#: ../../godmode/wizards/DiscoveryTaskList.class.php:1228 -msgid "Finding traceroute connectivity" -msgstr "Trouvant la connectivitĆ© traceroute" - -#: ../../godmode/wizards/DiscoveryTaskList.class.php:1232 -msgid "Finding gateway connectivity" -msgstr "Trouvant la connectivitĆ© de la passerelle" - -#: ../../godmode/wizards/DiscoveryTaskList.class.php:1236 -msgid "Searching for devices..." -msgstr "Recherche d'appareils..." - -#: ../../godmode/wizards/DiscoveryTaskList.class.php:1240 -msgid "Analyzing application..." -msgstr "Analyse des applications..." - -#: ../../godmode/wizards/DiscoveryTaskList.class.php:1244 -msgid "Executing custom queries..." -msgstr "ExĆ©cution des requĆŖtes personnalisĆ©es..." - -#: ../../godmode/wizards/DiscoveryTaskList.class.php:1248 -msgid "Testing modules..." -msgstr "Teste des modules..." - -#: ../../godmode/wizards/DiscoveryTaskList.class.php:1252 -msgid "Processing results..." -msgstr "Traitement des rĆ©sultats..." - -#: ../../godmode/wizards/DiscoveryTaskList.class.php:1256 -msgid "Processing..." -msgstr "Traitement en cours..." - -#: ../../godmode/wizards/DiscoveryTaskList.class.php:1369 -msgid "Host&devices total" -msgstr "HĆ“te&pĆ©riphĆ©riques totales" - -#: ../../godmode/wizards/DiscoveryTaskList.class.php:1374 -msgid "Agents monitored" -msgstr "Agents supervisĆ©s" - -#: ../../godmode/wizards/DiscoveryTaskList.class.php:1379 -msgid "Agents pending" -msgstr "Agents en attente" - -#: ../../godmode/wizards/DiscoveryTaskList.class.php:1386 -msgid "Hosts discovered" -msgstr "HĆ“tes dĆ©couverts" - -#: ../../godmode/wizards/DiscoveryTaskList.class.php:1402 -msgid "Responding SNMP" -msgstr "RĆ©pliquant SNMP" - -#: ../../godmode/wizards/DiscoveryTaskList.class.php:1407 -msgid "Responding WMI" -msgstr "RĆ©pliquant WMI" - -#: ../../godmode/wizards/DiscoveryTaskList.class.php:1452 -msgid "Task completed." -msgstr "TĆ¢che terminĆ©e" - -#: ../../godmode/wizards/DiscoveryTaskList.class.php:1454 -msgid "This task has never executed" -msgstr "Cette tĆ¢che n'a jamais Ć©tĆ© exĆ©cutĆ©e" - -#: ../../godmode/wizards/DiscoveryTaskList.class.php:1466 -msgid "Task queued, please wait." -msgstr "TĆ¢che en file d'attente, veuillez patienter." - -#: ../../godmode/wizards/DiscoveryTaskList.class.php:1510 -msgid "" -"Please ensure instances or regions are being monitorized and 'scan and general " -"monitoring' is enabled." -msgstr "" -"Veuillez vous assurer que les instances ou les rĆ©gions sont surveillĆ©es et que " -"Ā«Ā analyse et surveillance gĆ©nĆ©raleĀ Ā» est activĆ©." - -#: ../../godmode/wizards/DiscoveryTaskList.class.php:1528 -#: ../../godmode/wizards/DiscoveryTaskList.class.php:1670 -msgid "Invalid task" -msgstr "TĆ¢che Invalide" - -#: ../../godmode/wizards/DiscoveryTaskList.class.php:1627 -msgid "Please select devices to be monitored" -msgstr "Veuillez sĆ©lectionner les appareils Ć  superviser" - -#: ../../godmode/wizards/DiscoveryTaskList.class.php:1630 -msgid "select all" -msgstr "sĆ©lectionner tout" - -#: ../../godmode/wizards/DiscoveryTaskList.class.php:1633 -msgid "deselect all" -msgstr "Tout dĆ©sĆ©lectionner" - -#: ../../godmode/wizards/DiscoveryTaskList.class.php:1636 -msgid "expand all" -msgstr "Tout montrer" - -#: ../../godmode/wizards/DiscoveryTaskList.class.php:1639 -msgid "collapse all" -msgstr "Effacer tout" - -#: ../../godmode/wizards/DiscoveryTaskList.class.php:1653 -msgid "No devices found in temporary resources, please re-launch." -msgstr "" -"Aucun appareil trouvĆ© dans les ressources temporaires, veuillez relancer." - -#: ../../godmode/wizards/DiscoveryTaskList.class.php:1720 -#, php-format -msgid "Your selection exceeds the agents available on your license. Limit %d" -msgstr "" -"Votre sĆ©lection dĆ©passe les agents disponibles sur votre licence. Limite %d" - -#: ../../godmode/wizards/DiscoveryTaskList.class.php:1744 -#: ../../godmode/wizards/DiscoveryTaskList.class.php:1763 -msgid "Removed" -msgstr "SupprimĆ©" - -#: ../../godmode/wizards/DiscoveryTaskList.class.php:1800 -msgid "No changes. Re-Scheduled" -msgstr "Aucun changement. ReprogrammĆ©" - -#: ../../godmode/wizards/DiscoveryTaskList.class.php:1802 -msgid "Scheduled for creation" -msgstr "PrĆ©vu pour la crĆ©ation" - -#: ../../godmode/wizards/DiscoveryTaskList.class.php:1829 -msgid "Cancelled" -msgstr "AnnulĆ©e" - -#: ../../godmode/wizards/DiscoveryTaskList.class.php:1830 -msgid "Server has been restarted while executing this task, please retry." -msgstr "" -"Le serveur a Ć©tĆ© redĆ©marrĆ© lors de l'exĆ©cution de cette tĆ¢che, veuillez " -"rĆ©essayer." - -#: ../../godmode/wizards/DiscoveryTaskList.class.php:1841 -#: ../../godmode/wizards/DiscoveryTaskList.class.php:1858 -msgid "Not started" -msgstr "Non dĆ©marrĆ©" - -#: ../../godmode/wizards/DiscoveryTaskList.class.php:1863 -msgid "Searching" -msgstr "Recherche" - -#: ../../godmode/agentes/module_manager_editor_web.php:155 -msgid "Debug remotely this module" -msgstr "DĆ©boguer Ć  distance ce module" - -#: ../../godmode/agentes/module_manager_editor_web.php:158 -msgid "Debug this module once it has been initialized" -msgstr "DĆ©boguez ce module une fois qu'il a Ć©tĆ© initialisĆ©" - -#: ../../godmode/agentes/module_manager_editor_web.php:205 -msgid "Requests" -msgstr "RequĆŖtes" - -#: ../../godmode/agentes/module_manager_editor_web.php:208 -msgid "Agent browser id" -msgstr "Identifiant du navigateur (Agent browser)" - -#: ../../godmode/agentes/module_manager_editor_web.php:214 -msgid "HTTP auth (login)" -msgstr "Authentification HTTP (connexion)" - -#: ../../godmode/agentes/module_manager_editor_web.php:217 -msgid "HTTP auth (password)" -msgstr "Authentification HTTP (mot de passe)" - -#: ../../godmode/agentes/module_manager_editor_web.php:231 -msgid "Proxy auth (login)" -msgstr "Authentification du proxy (connexion)" - -#: ../../godmode/agentes/module_manager_editor_web.php:235 -msgid "Proxy auth (pass)" -msgstr "Authentification du proxy (mot de passe)" - -#: ../../godmode/agentes/module_manager_editor_web.php:242 -msgid "Proxy auth (server)" -msgstr "Authentification du proxy (serveur)" - -#: ../../godmode/agentes/module_manager_editor_web.php:246 -msgid "Proxy auth (realm)" -msgstr "Authentification du proxy (realm)" - -#: ../../godmode/agentes/module_manager_editor_web.php:258 -msgid "There isn't get or post" -msgstr "Impossible d'obtenir ou de publier" - -#: ../../godmode/agentes/module_manager_editor_wmi.php:87 -msgid "Optional. WMI namespace. If unsure leave blank." -msgstr "Optionnel. Espace de noms WMI. En cas de doute, laissez vide." - -#: ../../godmode/agentes/module_manager_editor_wmi.php:151 -msgid "" -"Optional. Substring to look for in the WQL query result. The module returns 1 " -"if found, 0 if not." -msgstr "" -"Optionnel. Sous-chaĆ®ne Ć  rechercher dans le rĆ©sultat de la requĆŖte WQL. Le " -"module renvoie 1 s'il est trouvĆ©, 0 sinon." - -#: ../../godmode/agentes/module_manager_editor_wmi.php:164 -msgid "Column number to retrieve from the WQL query result (starting from zero)." -msgstr "" -"NumĆ©ro de colonne Ć  extraire du rĆ©sultat de la requĆŖte WQL (Ć  partir de zĆ©ro)." - -#: ../../godmode/agentes/module_manager_editor_prediction.php:110 -msgid "Source module" -msgstr "Module source" - -#: ../../godmode/agentes/module_manager_editor_prediction.php:148 -#: ../../godmode/agentes/module_manager_editor_prediction.php:169 -msgid "Select Module" -msgstr "SĆ©lectionner un module" - -#: ../../godmode/agentes/module_manager_editor_prediction.php:195 -msgid "Calculation type" -msgstr "Type de calcul" - -#: ../../godmode/agentes/module_manager_editor_prediction.php:203 -msgid "Estimated absolute value" -msgstr "Valeur absolue estimĆ©e" - -#: ../../godmode/agentes/module_manager_editor_prediction.php:204 -msgid "Calculation of days to reach limit" -msgstr "Calcul des jours pour atteindre la limite" - -#: ../../godmode/agentes/module_manager_editor_prediction.php:213 -msgid "Future estimation" -msgstr "Estimation future" - -#: ../../godmode/agentes/module_manager_editor_prediction.php:228 -msgid "Limit value" -msgstr "Valeur limite" - -#: ../../godmode/agentes/module_manager.php:130 -msgid "Create a new data server module" -msgstr "CrĆ©er un nouveau module de serveur de donnĆ©es" - -#: ../../godmode/agentes/module_manager.php:132 -msgid "Create a new network server module" -msgstr "CrĆ©er un nouveau module de serveur de rĆ©seau" - -#: ../../godmode/agentes/module_manager.php:136 -msgid "Create a new plugin server module" -msgstr "CrĆ©er un nouveau module de serveur plugin" - -#: ../../godmode/agentes/module_manager.php:140 -msgid "Create a new WMI server module" -msgstr "CrĆ©er un nouveau module de serveur WMI" - -#: ../../godmode/agentes/module_manager.php:144 -msgid "Create a new prediction server module" -msgstr "CrĆ©er un nouveau module de serveur de prĆ©diction" - -#: ../../godmode/agentes/module_manager.php:148 -msgid "Create a new web Server module" -msgstr "CrĆ©er un nouveau module de serveur web" - -#: ../../godmode/agentes/module_manager.php:211 -msgid "

    Type

    " -msgstr "

    Type

    " - -#: ../../godmode/agentes/module_manager.php:241 -msgid "Get more modules on Monitoring Library" -msgstr "Obtenez plus de modules sur Monitoring Library" - -#: ../../godmode/agentes/module_manager.php:280 -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:437 -#: ../../godmode/agentes/module_manager.php:478 -#, 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:443 -#: ../../godmode/agentes/module_manager.php:484 -msgid "Operation finished successfully." -msgstr "OpĆ©ration complĆ©tĆ©e correctement" - -#: ../../godmode/agentes/module_manager.php:447 -#: ../../godmode/agentes/module_manager.php:488 -#, 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:868 -msgid "Del." -msgstr "Del." - -#: ../../godmode/agentes/module_manager.php:1180 -msgid "Normalize" -msgstr "Normaliser" - -#: ../../godmode/agentes/module_manager.php:1190 -msgid "Normalize (Disabled)" -msgstr "Normaliser (dĆ©sactivĆ©)" - -#: ../../godmode/agentes/module_manager.php:1214 -msgid "Create network component (Disabled)" -msgstr "CrĆ©er un composant de rĆ©seau (dĆ©sactivĆ©)" - -#: ../../godmode/agentes/module_manager.php:1274 -msgid "Execute action" -msgstr "ExĆ©cuter l'action" - -#: ../../godmode/agentes/configure_field.php:41 -msgid "Update agent custom field" -msgstr "Mettre Ć  jour le champ de l'agent personnalisĆ©" - -#: ../../godmode/agentes/configure_field.php:43 -msgid "Create agent custom field" -msgstr "CrĆ©er un champ d'agent personnalisĆ©" - -#: ../../godmode/agentes/configure_field.php:55 -#: ../../godmode/agentes/configure_field.php:59 -#: ../../godmode/agentes/configure_field.php:63 -#: ../../godmode/agentes/configure_field.php:67 -msgid "Agent Custom Fields Information" -msgstr "Informations sur les champs personnalisĆ©s de l'agent" - -#: ../../godmode/agentes/configure_field.php:56 -msgid "" -"You cannot set the Password type until you clear the combo values and click on " -"update button." -msgstr "" -"Vous ne pouvez pas dĆ©finir le type de mot de passe tant que vous n'avez pas " -"effacĆ© les valeurs combinĆ©es et cliquĆ© sur le bouton de mise Ć  jour." - -#: ../../godmode/agentes/configure_field.php:60 -msgid "" -"You cannot unset the enable combo until you clear the combo values and click " -"on update." -msgstr "" -"Vous ne pouvez pas dĆ©sactiver le combo d'activation tant que vous n'avez pas " -"effacĆ© les valeurs du combo et cliquĆ© sur mettre Ć  jour." - -#: ../../godmode/agentes/configure_field.php:64 -msgid "If you select Enabled combo the Password type will be disabled." -msgstr "" -"Si vous sĆ©lectionnez la combinaison activĆ©e, le type de mot de passe sera " -"dĆ©sactivĆ©." - -#: ../../godmode/agentes/configure_field.php:68 -msgid "If you select Passord type the Enabled combo will be disabled." -msgstr "" -"Si vous sĆ©lectionnez le type de mot de passe, la liste dĆ©roulante ActivĆ© sera " -"dĆ©sactivĆ©e." - -#: ../../godmode/agentes/configure_field.php:84 -msgid "Pass type" -msgstr "Type de mot de passe" - -#: ../../godmode/agentes/configure_field.php:85 -msgid "" -"The fields with pass type enabled will be displayed like html input type pass " -"in html" -msgstr "" -"Les champs avec le type de mot de passe activĆ© sont masquĆ©s par des " -"astĆ©risques en HTML" - -#: ../../godmode/agentes/configure_field.php:106 -msgid "Enabled combo" -msgstr "Combo activĆ©" - -#: ../../godmode/agentes/configure_field.php:118 -msgid "Combo values" -msgstr "Valeurs du combo" - -#: ../../godmode/agentes/configure_field.php:119 -msgid "Set values separated by comma" -msgstr "DĆ©finir des valeurs sĆ©parĆ©es par des virgules" - -#: ../../godmode/agentes/module_manager_editor_common.php:108 -msgid "Using module component" -msgstr "Utilisation du composant de module" - -#: ../../godmode/agentes/module_manager_editor_common.php:413 -msgid "Warning threshold" -msgstr "Seuil dā€™avertissement" - -#: ../../godmode/agentes/module_manager_editor_common.php:415 -#: ../../godmode/agentes/module_manager_editor_common.php:476 -msgid "Min. " -msgstr "Min. " - -#: ../../godmode/agentes/module_manager_editor_common.php:474 -msgid "Critical threshold" -msgstr "Seuil critique" - -#: ../../godmode/agentes/module_manager_editor_common.php:673 -msgid "Dynamic Threshold Interval" -msgstr "Intervalle de seuil dynamique" - -#: ../../godmode/agentes/module_manager_editor_common.php:700 -msgid "Dynamic Threshold Min. " -msgstr "Seuil dynamique min. " - -#: ../../godmode/agentes/module_manager_editor_common.php:713 -msgid "Dynamic Threshold Max. " -msgstr "Seuil dynamique max. " - -#: ../../godmode/agentes/module_manager_editor_common.php:726 -msgid "Dynamic Threshold Two Tailed: " -msgstr "ProblĆØme de seuil dynamique deux : " - -#: ../../godmode/agentes/module_manager_editor_common.php:737 -msgid "Not needed" -msgstr "Pas nĆ©cessaire" - -#: ../../godmode/agentes/module_manager_editor_common.php:1035 -msgid "Tags from policy" -msgstr "Ɖtiquettes de la politique" - -#: ../../godmode/agentes/module_manager_editor_common.php:1075 -msgid "Cascade Protection Services" -msgstr "Services de protection en cascade" - -#: ../../godmode/agentes/module_manager_editor_common.php:1109 -#: ../../godmode/agentes/module_manager_editor_common.php:1117 -#: ../../godmode/agentes/module_manager_editor_common.php:1126 -msgid "Cron from" -msgstr "Cron Ć  partir de" - -#: ../../godmode/agentes/module_manager_editor_common.php:1113 -#: ../../godmode/agentes/module_manager_editor_common.php:1121 -#: ../../godmode/agentes/module_manager_editor_common.php:1130 -msgid "Cron to" -msgstr "Cron Ć " - -#: ../../godmode/agentes/module_manager_editor_common.php:1166 -msgid "Module parent" -msgstr "Parent de module" - -#: ../../godmode/agentes/module_manager_editor_common.php:1264 -#: ../../godmode/agentes/module_manager_editor_common.php:1375 -msgid "Direct" -msgstr "Direct" - -#: ../../godmode/agentes/module_manager_editor_common.php:1266 -msgid "Rel. type" -msgstr "Type de relations" - -#: ../../godmode/agentes/module_manager_editor_common.php:1281 -msgid "Add relationship" -msgstr "Ajouter une relation" - -#: ../../godmode/agentes/module_manager_editor_common.php:1306 -msgid "Changes" -msgstr "Changements" - -#: ../../godmode/agentes/status_monitor_custom_fields.php:125 -msgid "Show monitor detail fields" -msgstr "Afficher les champs de dĆ©tail du moniteur" - -#: ../../godmode/agentes/configurar_agente.php:244 -#: ../../godmode/agentes/configurar_agente.php:1042 -msgid "No agent alias specified" -msgstr "Aucun alias agent spĆ©cifiĆ©" - -#: ../../godmode/agentes/configurar_agente.php:247 -msgid "Agent cannot be created due to the maximum agent limit for this group" -msgstr "" -"L'agent ne peut pas ĆŖtre crĆ©Ć© en raison de la limite maximale d'agents pour ce " -"groupe" - -#: ../../godmode/agentes/configurar_agente.php:353 -msgid "Could not be created, because name already exists" -msgstr "Erreur de crĆ©ation, le nom existe dĆ©jĆ " - -#: ../../godmode/agentes/configurar_agente.php:355 -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:745 -msgid "Gis" -msgstr "GIS" - -#: ../../godmode/agentes/configurar_agente.php:787 -msgid "SNMP explorer" -msgstr "Explorateur SNMP" - -#: ../../godmode/agentes/configurar_agente.php:828 -msgid "Agent manager" -msgstr "Administrateur d'agents" - -#: ../../godmode/agentes/configurar_agente.php:913 -#: ../../godmode/agentes/configurar_agente.php:917 -msgid "No data to normalize" -msgstr "Aucune donnĆ©e Ć  normaliser" - -#: ../../godmode/agentes/configurar_agente.php:922 -#, php-format -msgid "Deleted data above %f" -msgstr "DonnĆ©es supprimĆ©es ci-dessus %f" - -#: ../../godmode/agentes/configurar_agente.php:923 -#, php-format -msgid "Error normalizing module %s" -msgstr "Erreur lors de normalisation du module %s" - -#: ../../godmode/agentes/configurar_agente.php:1052 -#, php-format -msgid "The group id %d is incorrect." -msgstr "L'ID de groupe %d est incorrect." - -#: ../../godmode/agentes/configurar_agente.php:1054 -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:1056 -msgid "Duplicate main IP address" -msgstr "Dupliquer lā€™adresse IP principale" - -#: ../../godmode/agentes/configurar_agente.php:1109 -msgid "There was a problem updating the agent" -msgstr "ProblĆØme de mise Ć  jour de l'agent" - -#: ../../godmode/agentes/configurar_agente.php:1202 -msgid "There was a problem loading the agent" -msgstr "ProblĆØme de chargement de l'agent" - -#: ../../godmode/agentes/configurar_agente.php:1713 -msgid "" -"There was a problem updating module. Another module already exists with the " -"same name." -msgstr "" -"ProblĆØme de mise Ć  jour du module. Un autre module avec le mĆŖme nom existe " -"dĆ©jĆ ." - -#: ../../godmode/agentes/configurar_agente.php:1717 -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:1721 -msgid "There was a problem updating module. \"No change\"" -msgstr "ProblĆØme de mise Ć  jour du module. Ā« Aucun changement Ā»" - -#: ../../godmode/agentes/configurar_agente.php:1727 -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:1756 -msgid "Module successfully updated" -msgstr "Module mis Ć  jour correctement" - -#: ../../godmode/agentes/configurar_agente.php:1903 -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:1907 -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:1913 -msgid "There was a problem adding module. Processing error" -msgstr "ProblĆØme d'ajout de module. Erreur de traitement" - -#: ../../godmode/agentes/configurar_agente.php:2093 -msgid "There was a problem deleting the module" -msgstr "ProblĆØme de suppression du module" - -#: ../../godmode/agentes/configurar_agente.php:2097 -msgid "Module deleted succesfully" -msgstr "Module supprimĆ© correctement" - -#: ../../godmode/agentes/configurar_agente.php:2343 -#: ../../godmode/agentes/configurar_agente.php:2355 -msgid "Invalid tab specified" -msgstr "Onglet non valide" - -#: ../../godmode/agentes/agent_manager.php:241 -msgid "Delete agent" -msgstr "Supprimer l'agent" - -#: ../../godmode/agentes/agent_manager.php:275 -msgid "QR Code Agent view" -msgstr "Voir Code QR Agent" - -#: ../../godmode/agentes/agent_manager.php:296 -msgid "Use alias as name" -msgstr "Utiliser alias comme nom" - -#: ../../godmode/agentes/agent_manager.php:338 -msgid "Primary group" -msgstr "Groupe primaire" - -#: ../../godmode/agentes/agent_manager.php:559 -msgid "Cascade protection services" -msgstr "Services de protection en cascade" - -#: ../../godmode/agentes/agent_manager.php:648 -msgid "Disabled mode" -msgstr "Mode dĆ©sactivĆ©" - -#: ../../godmode/agentes/agent_manager.php:745 -msgid "Update new GIS data:" -msgstr "Mettre Ć  jour les nouvelles donnĆ©es SIGĀ :" - -#: ../../godmode/agentes/agent_manager.php:803 -msgid "Click to display" -msgstr "Cliquez pour afficher" - -#: ../../godmode/agentes/agent_manager.php:1055 -msgid "Secondary group cannot be primary too." -msgstr "Le groupe secondaire ne peut pas non plus ĆŖtre principal." - -#: ../../godmode/agentes/planned_downtime.export_csv.php:202 -#: ../../godmode/agentes/planned_downtime.list.php:574 -msgid "No scheduled downtime" -msgstr "Pas de temps d'arrĆŖt planifiĆ©" - -#: ../../godmode/agentes/module_manager_editor.php:718 -msgid "Invalid module type" -msgstr "Type de module non valide." - -#: ../../godmode/agentes/module_manager_editor.php:762 -msgid "Module relations" -msgstr "Relations du module" - -#: ../../godmode/agentes/module_manager_editor.php:852 -msgid "No module to predict" -msgstr "Aucun module Ć  prĆ©dire" - -#: ../../godmode/agentes/module_manager_editor.php:862 -msgid "No plug-in provided" -msgstr "Aucun plugin fourni" - -#: ../../godmode/agentes/module_manager_editor.php:872 -msgid "No server provided" -msgstr "Aucun serveur fourni" - -#: ../../godmode/agentes/module_manager_editor.php:903 -msgid "" -"Error, The field name and name in module_name in data configuration are " -"different." -msgstr "" -"Erreur, le nom de champ et le nom dans module_name dans les donnĆ©es de " -"configuration sont diffĆ©rents." - -#: ../../godmode/agentes/module_manager_editor.php:941 -msgid "The File APIs are not fully supported in this browser." -msgstr "Les fichiers API ne sont pas pris en charge sur ce navigateur" - -#: ../../godmode/agentes/module_manager_editor.php:942 -msgid "Couldn`t find the fileinput element." -msgstr "ƉlĆ©ment fileinput introuvable" - -#: ../../godmode/agentes/module_manager_editor.php:943 -msgid "This browser doesn`t seem to support the files property of file inputs." -msgstr "" -"Ce navigateur ne semble pas prendre en charge la propriĆ©tĆ© de fichiers des " -"entrĆ©es de fichiers." - -#: ../../godmode/agentes/module_manager_editor.php:944 -msgid "Please select a file before clicking Load" -msgstr "Veuillez sĆ©lectionner un fichier avant de cliquer sur Charger" - -#: ../../godmode/agentes/planned_downtime.editor.php:208 -#: ../../godmode/agentes/planned_downtime.editor.php:1129 -#: ../../godmode/agentes/planned_downtime.editor.php:1264 -msgid "This elements cannot be modified while the downtime is being executed" -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:589 -msgid "Quiet: Modules will not generate events or fire alerts." -msgstr "" -"Mode silencieux: les modules ne gĆ©nĆØrent pas d'Ć©vĆ©nements et ne dĆ©clenchent " -"pas d'alertes." - -#: ../../godmode/agentes/planned_downtime.editor.php:589 -msgid "Disable Agents: Disables the selected agents." -msgstr "DĆ©sactiver les agents : ceci dĆ©sactive les agents sĆ©lectionnĆ©s." - -#: ../../godmode/agentes/planned_downtime.editor.php:589 -msgid "Disable Alerts: Disable alerts for the selected agents." -msgstr "" -"DĆ©sactiver les alertes : ceci dĆ©sactive les alertes pour les agents " -"sĆ©lectionnĆ©s." - -#: ../../godmode/agentes/planned_downtime.editor.php:595 -#: ../../godmode/agentes/planned_downtime.list.php:656 -msgid "Disabled Agents" -msgstr "Agents dĆ©sactivĆ©s" - -#: ../../godmode/agentes/planned_downtime.editor.php:596 -#: ../../godmode/agentes/planned_downtime.list.php:657 -msgid "Disabled only Alerts" -msgstr "Seulement alertes dĆ©sactivĆ©es" - -#: ../../godmode/agentes/planned_downtime.editor.php:612 -#: ../../godmode/agentes/planned_downtime.list.php:318 -msgid "Once" -msgstr "Une fois" - -#: ../../godmode/agentes/planned_downtime.editor.php:613 -#: ../../godmode/agentes/planned_downtime.list.php:319 -#: ../../godmode/agentes/planned_downtime.list.php:664 -msgid "Periodically" -msgstr "PĆ©riodiquement" - -#: ../../godmode/agentes/planned_downtime.editor.php:628 -msgid "Configure the time" -msgstr "Configurer le temps" - -#: ../../godmode/agentes/planned_downtime.editor.php:647 -msgid "Type Periodicity:" -msgstr "Type de pĆ©riodicitĆ© :" - -#: ../../godmode/agentes/planned_downtime.editor.php:679 -msgid "From day:" -msgstr "ƀ partir du jour :" - -#: ../../godmode/agentes/planned_downtime.editor.php:693 -msgid "To day:" -msgstr "Jusqu'au jour :" - -#: ../../godmode/agentes/planned_downtime.editor.php:712 -msgid "From hour:" -msgstr "De l'heure :" - -#: ../../godmode/agentes/planned_downtime.editor.php:725 -msgid "To hour:" -msgstr "Jusqu'Ć  l'heure :" - -#: ../../godmode/agentes/planned_downtime.editor.php:801 -msgid "Group filter" -msgstr "Filtre groupe" - -#: ../../godmode/agentes/planned_downtime.editor.php:835 -msgid "Available modules:" -msgstr "Modules disponibles :" - -#: ../../godmode/agentes/planned_downtime.editor.php:836 -msgid "Only for type Quiet for downtimes." -msgstr "Seulement pour le type Mode silencieux pour les temps d'arrĆŖt." - -#: ../../godmode/agentes/planned_downtime.editor.php:894 -msgid "Agents planned for this downtime" -msgstr "Agents planifiĆ©s pour ce temps d'arrĆŖt" - -#: ../../godmode/agentes/planned_downtime.editor.php:912 -msgid "There are no agents" -msgstr "Aucun agent" - -#: ../../godmode/agentes/planned_downtime.editor.php:954 -msgid "All alerts" -msgstr "Toutes les alertes" - -#: ../../godmode/agentes/planned_downtime.editor.php:956 -msgid "Entire agent" -msgstr "Agent au complet" - -#: ../../godmode/agentes/planned_downtime.editor.php:959 -#: ../../godmode/agentes/planned_downtime.editor.php:1081 -msgid "All modules" -msgstr "Tous les modules" - -#: ../../godmode/agentes/planned_downtime.editor.php:961 -#: ../../godmode/agentes/planned_downtime.editor.php:1073 -#: ../../godmode/agentes/planned_downtime.editor.php:1077 -msgid "Some modules" -msgstr "Quelques modules" - -#: ../../godmode/agentes/planned_downtime.editor.php:1027 -msgid "Add Module:" -msgstr "Ajouter un module :" - -#: ../../godmode/agentes/planned_downtime.editor.php:1529 -msgid "" -"WARNING: If you edit this scheduled downtime, the data of future SLA reports " -"may be altered" -msgstr "" -"AVERTISSEMENTĀ : Si vous modifiez ce temps d'arrĆŖt programmĆ©, les donnĆ©es des " -"futurs rapports SLA peuvent ĆŖtre modifiĆ©es" - -#: ../../godmode/agentes/planned_downtime.list.php:206 -msgid "An error occurred stopping the scheduled downtime" -msgstr "Une erreur s'est produite lors de l'arrĆŖt du temps d'arrĆŖt programmĆ©" - -#: ../../godmode/agentes/planned_downtime.list.php:233 -msgid "This scheduled downtime is running" -msgstr "Ce temps d'arrĆŖt programmĆ© est en cours d'exĆ©cution" - -#: ../../godmode/agentes/planned_downtime.list.php:333 -msgid "Show past downtimes" -msgstr "Afficher les temps d'arrĆŖt passĆ©s" - -#: ../../godmode/agentes/planned_downtime.list.php:610 -msgid "Name #Ag." -msgstr "Nom #Ag." - -#: ../../godmode/agentes/planned_downtime.list.php:617 -msgid "Affected" -msgstr "AffectĆ©" - -#: ../../godmode/agentes/planned_downtime.list.php:622 -#: ../../godmode/agentes/planned_downtime.list.php:725 -#: ../../godmode/agentes/planned_downtime.list.php:731 -msgid "Stop downtime" -msgstr "Interrompre le temps d'arrĆŖt" - -#: ../../godmode/agentes/planned_downtime.list.php:663 -msgid "once" -msgstr "une fois" - -#: ../../godmode/agentes/planned_downtime.list.php:678 -msgid "Not running" -msgstr "ArrĆŖtĆ©" - -#: ../../godmode/agentes/planned_downtime.list.php:696 -msgid "Agents / Modules affected" -msgstr "Agents / Modules affectĆ©s" - -#: ../../godmode/agentes/planned_downtime.list.php:705 -msgid "Agents and modules affected" -msgstr "Agents et modules concernĆ©s" - -#: ../../godmode/agentes/planned_downtime.list.php:903 -msgid "" -"WARNING: If you delete this scheduled downtime, it will not be taken into " -"account in future SLA reports" -msgstr "" -"ATTENTION : Si vous supprimez ce temps d'arrĆŖt programmĆ©, il ne sera pas pris " -"en compte dans les futurs rapports SLA" - -#: ../../godmode/agentes/planned_downtime.list.php:909 -msgid "WARNING: There are malformed scheduled downtimes" -msgstr "AVERTISSEMENTĀ : il y a des temps d'arrĆŖt programmĆ©s mal formĆ©s" - -#: ../../godmode/agentes/planned_downtime.list.php:909 -msgid "Do you want to migrate automatically the malformed items?" -msgstr "Voulez-vous migrer automatiquement les Ć©lĆ©ments incorrects ?" - -#: ../../godmode/agentes/agent_conf_gis.php:50 -msgid "" -"There is no GIS data for this agent, so it's positioned in default position of " -"map." -msgstr "" -"Il n'y a pas de donnĆ©es GIS pour cet agent. Il est donc situĆ© par dĆ©faut dans " -"une position de la carte." - -#: ../../godmode/agentes/agent_conf_gis.php:58 -msgid "" -"When you change the Agent position, the agent automatically activates the " -"'Ignore new GIS data' option" -msgstr "" -"Lorsque vous modifiez la position de l'agent, il active automatiquement " -"l'option Ā« Ignorer les nouvelles donnĆ©es GIS Ā»" - -#: ../../godmode/agentes/agent_conf_gis.php:67 -msgid "Agent position" -msgstr "Position de l'agent" - -#: ../../godmode/agentes/agent_conf_gis.php:73 -msgid "Latitude: " -msgstr "Latitude : " - -#: ../../godmode/agentes/agent_conf_gis.php:90 -msgid "Longitude: " -msgstr "Longitude : " - -#: ../../godmode/agentes/agent_conf_gis.php:107 -msgid "Altitude: " -msgstr "Altitude : " - -#: ../../godmode/agentes/fields_manager.php:30 -msgid "Agents custom fields manager" -msgstr "Gestionnaire de champs personnalisĆ©s d'agents" - -#: ../../godmode/agentes/fields_manager.php:48 -msgid "The name must be unique" -msgstr "Le nom doit ĆŖtre unique" - -#: ../../godmode/agentes/fields_manager.php:59 -msgid "Field successfully created" -msgstr "Champ crĆ©Ć© correctement" - -#: ../../godmode/agentes/fields_manager.php:80 -msgid "Field successfully updated" -msgstr "Champ mis Ć  jour correctement" - -#: ../../godmode/agentes/fields_manager.php:82 -msgid "There was a problem modifying field" -msgstr "ProblĆØme de modification du champ" - -#: ../../godmode/agentes/fields_manager.php:94 -msgid "There was a problem deleting field" -msgstr "Erreur de suppression du champ" - -#: ../../godmode/agentes/fields_manager.php:96 -msgid "Field successfully deleted" -msgstr "Champ supprimĆ© correctement" - -#: ../../godmode/agentes/fields_manager.php:168 -msgid "Create field" -msgstr "CrĆ©er un champ" - -#: ../../godmode/agentes/agent_incidents.php:69 -msgid "No incidents associated to this agent" -msgstr "Aucun incident associĆ© Ć  cet agent" - -#: ../../godmode/agentes/agent_incidents.php:90 -msgid "Incident" -msgstr "Incident" - -#: ../../godmode/agentes/agent_template.php:156 -msgid "Error adding modules" -msgstr "Erreur d'ajout de modules" - -#: ../../godmode/agentes/agent_template.php:158 -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:188 -msgid "Assign" -msgstr "Attribuer" - -#: ../../godmode/agentes/module_manager_editor_network.php:266 -msgid "SNMP walk" -msgstr "Chemin SNMP" - -#: ../../godmode/agentes/module_manager_editor_network.php:448 -msgid "" -"Please use single quotation marks when necessary. \n" -"\n" -"If double quotation marks are needed, please escape them with a backslash " -"(\\")" -msgstr "" -"Veuillez utiliser des guillemets simples si nĆ©cessaire. Si des " -"guillemets doubles sont nĆ©cessaires, veuillez les Ć©chapper avec une barre " -"oblique inverse (\\\")" - -#: ../../godmode/agentes/module_manager_editor_network.php:479 -msgid "Windows remote" -msgstr "TĆ©lĆ©commande Windows" - -#: ../../godmode/agentes/modificar_agente.php:95 -#, php-format -msgid "Agents defined in %s" -msgstr "Agents dĆ©finis dans %s" - -#: ../../godmode/agentes/modificar_agente.php:124 -#, php-format -msgid "" -"This node is configured with centralized mode. Go to %s to delete an agent" -msgstr "" -"Ce nœud est configurĆ© en mode centralisĆ©. Aller vers %s pour supprimer un agent" - -#: ../../godmode/agentes/modificar_agente.php:170 -msgid "Success deleted agent." -msgstr "Agent supprimĆ© correctement" - -#: ../../godmode/agentes/modificar_agente.php:171 -msgid "Could not be deleted." -msgstr "Erreur de suppression" - -#: ../../godmode/agentes/modificar_agente.php:186 -msgid "Maybe the files conf or md5 could not be deleted" -msgstr "Les fichiers conf ou md5 n'ont pas pu ĆŖtre supprimĆ©s" - -#: ../../godmode/agentes/modificar_agente.php:333 -msgid "Show Agents" -msgstr "Afficher les agents" - -#: ../../godmode/agentes/modificar_agente.php:335 -msgid "Everyone" -msgstr "Tous" - -#: ../../godmode/agentes/modificar_agente.php:349 -msgid "Operative System" -msgstr "SystĆØme d'exploitation" - -#: ../../godmode/agentes/modificar_agente.php:367 -msgid "" -"Search filter by alias, name, description, IP address or custom fields content" -msgstr "" -"Rechercher filtre par alias, nom, description, adresse IP ou contenu de champs " -"personnalisĆ©s" - -#: ../../godmode/agentes/modificar_agente.php:648 -msgid "Remote agent configuration" -msgstr "Configuration de l'agent Ć  distance" - -#: ../../godmode/agentes/modificar_agente.php:648 -msgid "R" -msgstr "R" - -#: ../../godmode/agentes/modificar_agente.php:858 -msgid "Edit remote config" -msgstr "Ɖditer la configuration Ć  distance" - -#: ../../godmode/agentes/modificar_agente.php:908 -msgid "You are going to enable a cluster agent. Are you sure?" -msgstr "Vous allez activer un agent de grappe. Ɗtes-vous sĆ»r ?" - -#: ../../godmode/agentes/modificar_agente.php:911 -msgid "Enable agent" -msgstr "Activer l'agent" - -#: ../../godmode/agentes/modificar_agente.php:918 -msgid "You are going to disable a cluster agent. Are you sure?" -msgstr "Vous allez dĆ©sactiver un agent de grappe. Ɗtes-vous sĆ»r ?" - -#: ../../godmode/agentes/modificar_agente.php:921 -msgid "Disable agent" -msgstr "DĆ©sactiver l'agent" - -#: ../../godmode/agentes/modificar_agente.php:931 -msgid "WARNING! - You are going to delete a cluster agent. Are you sure?" -msgstr "ATTENTION! - Vous allez supprimer un agent de grappe. Ɗtes-vous sĆ»r ?" - -#: ../../godmode/alerts/configure_alert_template.php:250 -#: ../../godmode/alerts/configure_alert_template.php:254 -msgid "Conditions" -msgstr "Conditions" - -#: ../../godmode/alerts/configure_alert_template.php:271 -#: ../../godmode/alerts/configure_alert_template.php:275 -msgid "Advanced fields" -msgstr "Champs avancĆ©s" - -#: ../../godmode/alerts/configure_alert_template.php:419 -#, php-format -msgid "" -"This node is configured with centralized mode. All alerts templates " -"information is read only. Go to Go to %s to manage it." -msgstr "" -"Ce nœud est configurĆ© en mode centralisĆ©. Toutes les informations sur les " -"modĆØles d'alertes sont en lecture seule. Allez vers %s pour le gĆ©rer." - -#: ../../godmode/alerts/configure_alert_template.php:531 -msgid "No template name specified" -msgstr "Aucun nom de modĆØle spĆ©cifiĆ©" - -#: ../../godmode/alerts/configure_alert_template.php:712 -msgid "Reset counter for non-sustained alerts" -msgstr "Remettre le compteur Ć  zĆ©ro pour les alertes non-prolongĆ©es" - -#: ../../godmode/alerts/configure_alert_template.php:714 -msgid "" -"Enable this option if you want the counter to be reset when the alert is not " -"being fired consecutively, even if it's within the time threshold" -msgstr "" -"Activez cette option si vous voulez remettre Ć  zĆ©ro le compteur lorsque " -"l'alerte n'est pas dĆ©clenchĆ©e successivement, mĆŖme si elle se trouve dans le " -"seuil de temps" - -#: ../../godmode/alerts/configure_alert_template.php:788 -msgid "" -"Unless they're left blank, the fields from the action will override those set " -"on the template." -msgstr "" -"Les champs de l'action Ć©craseront ceux sur le modĆØle sauf s'ils sont laissĆ©s " -"en blanc." - -#: ../../godmode/alerts/configure_alert_template.php:792 -msgid "Condition type" -msgstr "Type de condition" - -#: ../../godmode/alerts/configure_alert_template.php:809 -msgid "Trigger when matches the value" -msgstr "DĆ©clenchĆ© lorsqu'il concorde avec la valeur" - -#: ../../godmode/alerts/configure_alert_template.php:832 -msgid "The regular expression is valid" -msgstr "L'expression rĆ©guliĆØre est valide" - -#: ../../godmode/alerts/configure_alert_template.php:842 -msgid "The regular expression is not valid" -msgstr "L'expression rĆ©guliĆØre n'est pas valide" - -#: ../../godmode/alerts/configure_alert_template.php:897 -msgid "Alert recovery" -msgstr "RĆ©cupĆ©ration d'alertes" - -#: ../../godmode/alerts/configure_alert_template.php:919 -msgid "Recovery fields" -msgstr "Champs de rĆ©cupĆ©ration" - -#: ../../godmode/alerts/configure_alert_template.php:1136 -msgid "No wizard" -msgstr "Pas d'assistant logiciel" - -#: ../../godmode/alerts/configure_alert_template.php:1217 -#, php-format -msgid "The alert would fire when the value doesn\\'t match %s" -msgstr "L'alerte est dĆ©clenchĆ©e lorsque la valeur ne concorde pas avec %s" - -#: ../../godmode/alerts/configure_alert_template.php:1221 -msgid "" -"The alert would fire when the value is not between and " -"" -msgstr "" -"L'alerte est dĆ©clenchĆ©e lorsque la valeur se trouve entre et " - -#: ../../godmode/alerts/configure_alert_template.php:1222 -#: ../../godmode/alerts/alert_view.php:200 -msgid "The alert would fire when the value is below " -msgstr "" -"L'alerte est dĆ©clenchĆ©e lorsque la valeur est infĆ©rieure Ć  " - -#: ../../godmode/alerts/configure_alert_template.php:1223 -#: ../../godmode/alerts/alert_view.php:205 -msgid "The alert would fire when the value is above " -msgstr "" -"L'alerte est dĆ©clenchĆ©e lorsque la valeur est supĆ©rieure Ć  " -"" - -#: ../../godmode/alerts/configure_alert_template.php:1226 -#: ../../godmode/alerts/alert_view.php:211 -msgid "The alert would fire when the module value changes" -msgstr "L'alerte est dĆ©clenchĆ©e lorsque la valeur du module change" - -#: ../../godmode/alerts/configure_alert_template.php:1227 -#: ../../godmode/alerts/alert_view.php:213 -msgid "The alert would fire when the module value does not change" -msgstr "L'alerte est dĆ©clenchĆ©e lorsque la valeur du module ne change pas" - -#: ../../godmode/alerts/configure_alert_template.php:1228 -#: ../../godmode/alerts/alert_view.php:230 -msgid "The alert would fire when the module is in unknown status" -msgstr "L'alerte est dĆ©clenchĆ©e lorsque le module se trouve en Ć©tat inconnu" - -#: ../../godmode/alerts/configure_alert_template.php:1229 -msgid "The alert template cannot have the same value for min and max thresholds." -msgstr "" -"Le modĆØle d'alerte ne peut pas avoir la mĆŖme valeur pour les seuils minimum et " -"maximum." - -#: ../../godmode/alerts/configure_alert_template.php:1230 -#: ../../godmode/alerts/alert_view.php:226 -msgid "The alert would fire when the module is in not normal status" -msgstr "" -"L'alerte se dĆ©clencherait lorsque le module n'est pas dans un Ć©tat normal" - -#: ../../godmode/alerts/configure_alert_template.php:1407 -msgid "" -"The alert would fire when the module is in unknown status. Warning: " -"unknown_updates of pandora_server.conf must be equal to 1" -msgstr "" -"L'alerte se dĆ©clenche lorsque le module est dans un Ć©tat inconnu. Attention : " -"unknown_updates de pandora_server.conf doit ĆŖtre Ć©gal Ć  1" - -#: ../../godmode/alerts/alert_list.list.php:123 -msgid "Field content" -msgstr "Contenu du champ" - -#: ../../godmode/alerts/alert_list.list.php:662 -#: ../../godmode/alerts/alert_view.php:317 -msgid "" -"The default actions will be executed every time that the alert is fired and no " -"other action is executed" -msgstr "" -"Les actions par dĆ©faut seront exĆ©cutĆ©es chaque fois que l'alerte est " -"dĆ©clenchĆ©e et qu'aucune autre action est exĆ©cutĆ©e." - -#: ../../godmode/alerts/alert_list.list.php:930 -msgid "View alert advanced details" -msgstr "Afficher les informations avancĆ©es des alertes" - -#: ../../godmode/alerts/alert_actions.php:222 -#: ../../godmode/alerts/configure_alert_action.php:120 -#, php-format -msgid "" -"This node is configured with centralized mode. All alert actions information " -"is read only. Go to %s to manage it." -msgstr "" -"Ce nœud est configurĆ© en mode centralisĆ©. Toutes les informations sur les " -"actions d'alerte sont en lecture seule. Allez vers %s pour le gĆ©rer." - -#: ../../godmode/alerts/alert_actions.php:396 -msgid "" -"You cannot edit this action, You don't have the permission to edit All group." -msgstr "" -"Vous ne pouvez pas modifier cette action, vous n'avez pas la permission de " -"modifier tous les groupes." - -#: ../../godmode/alerts/alert_actions.php:407 -msgid "" -"The action and the command associated with it do not have the same group. " -"Please contact an administrator to fix it." -msgstr "" -"L'action et la commande qui lui est associĆ©e n'ont pas le mĆŖme groupe. " -"Veuillez contacter un administrateur pour le corriger." - -#: ../../godmode/alerts/alert_actions.php:465 -msgid "No alert actions configured" -msgstr "Aucune action d'alerte configurĆ©e" - -#: ../../godmode/alerts/alert_list.builder.php:91 -msgid "Latest value" -msgstr "DerniĆØre valeur" - -#: ../../godmode/alerts/alert_list.builder.php:201 -msgid "Finish and view cluster" -msgstr "Terminer et afficher la grappe" - -#: ../../godmode/alerts/alert_templates.php:268 -#, php-format -msgid "" -"This node is configured with centralized mode. All alert templates information " -"is read only. Go to %s to manage it." -msgstr "" -"Ce nœud est configurĆ© en mode centralisĆ©. Toutes les informations sur les " -"modĆØles d'alerte sont en lecture seule. Allez vers %s pour le gĆ©rer." - -#: ../../godmode/alerts/alert_templates.php:412 -msgid "" -"You cannot edit this alert template, You don't have the permission to edit All " -"group." -msgstr "" -"Vous ne pouvez pas modifier ce modĆØle d'alerte, vous n'ĆŖtes pas autorisĆ© Ć  " -"modifier le groupe Tous." - -#: ../../godmode/alerts/alert_templates.php:473 -msgid "No alert templates defined" -msgstr "Aucun modĆØle d'alerte dĆ©fini" - -#: ../../godmode/alerts/alert_commands.php:143 -msgid "" -"For sending emails, text must be HTML format, if you want to use plain text, " -"type it between the following labels:
    "
    -msgstr ""
    -"Pour envoyer des courriels, il faut que le texte soit en format HTML. Si vous "
    -"voulez Ć©crire en texte clair, intoduisez-le entre les Ć©tiquettes suivantes : "
    -"
    "
    -
    -#: ../../godmode/alerts/alert_commands.php:219
    -#: ../../godmode/alerts/alert_commands.php:250
    -msgid "Text/plain"
    -msgstr "Texte/clair"
    -
    -#: ../../godmode/alerts/alert_commands.php:221
    -#: ../../godmode/alerts/alert_commands.php:252
    -msgid "For sending emails only text plain"
    -msgstr "Pour envoyer des courriels seulement en texte clair"
    -
    -#: ../../godmode/alerts/alert_commands.php:235
    -#: ../../godmode/alerts/alert_commands.php:266
    -msgid "Text/html"
    -msgstr "Texte/HTML"
    -
    -#: ../../godmode/alerts/alert_commands.php:474
    -msgid "Permissions warning"
    -msgstr "Avertissement sur les autorisations"
    -
    -#: ../../godmode/alerts/alert_commands.php:477
    -msgid ""
    -"Command management is limited to administrator users or user profiles with "
    -"permissions PM"
    -msgstr ""
    -"La gestion des commandes est limitƩe aux utilisateurs administrateurs ou aux "
    -"profils utilisateurs avec des autorisations PM"
    -
    -#: ../../godmode/alerts/alert_commands.php:494
    -msgid "Alert commands"
    -msgstr "Commandes d'alertes"
    -
    -#: ../../godmode/alerts/alert_commands.php:619
    -msgid " (copy)"
    -msgstr " (copie)"
    -
    -#: ../../godmode/alerts/alert_commands.php:643
    -#: ../../godmode/alerts/configure_alert_command.php:196
    -#, php-format
    -msgid ""
    -"This node is configured with centralized mode. All alert commands information "
    -"is read only. Go to %s to manage it."
    -msgstr ""
    -"Ce nœud est configurĆ© en mode centralisĆ©. Toutes les informations des "
    -"commandes d'alerte sont en lecture seule. Allez vers %s pour le gƩrer."
    -
    -#: ../../godmode/alerts/alert_commands.php:740
    -msgid "No alert commands configured"
    -msgstr "Aucune commande d'alerte configurƩe"
    -
    -#: ../../godmode/alerts/alert_list.php:115
    -msgid "Already added"
    -msgstr "DƩjƠ ajoutƩ"
    -
    -#: ../../godmode/alerts/alert_list.php:169
    -msgid "No template specified"
    -msgstr "Aucun modĆØle spĆ©cifiĆ©"
    -
    -#: ../../godmode/alerts/alert_list.php:480 ../../godmode/alerts/alert_view.php:83
    -#: ../../godmode/alerts/alert_view.php:84
    -msgid "List alerts"
    -msgstr "Liste d'alertes"
    -
    -#: ../../godmode/alerts/alert_list.php:484
    -msgid "Builder alert"
    -msgstr "Outil de conception d'alertes"
    -
    -#: ../../godmode/alerts/configure_alert_command.php:60
    -msgid "Configure alert command"
    -msgstr "Configurer la commande de l'alerte"
    -
    -#: ../../godmode/alerts/configure_alert_command.php:207
    -msgid "Update Command"
    -msgstr "Mettre Ć  jour la commande"
    -
    -#: ../../godmode/alerts/configure_alert_command.php:207
    -#: ../../godmode/alerts/configure_alert_action.php:275
    -msgid "Create Command"
    -msgstr "CrƩer une commande"
    -
    -#: ../../godmode/alerts/configure_alert_command.php:297
    -#, php-format
    -msgid "Field %s description"
    -msgstr "Description de %s champs"
    -
    -#: ../../godmode/alerts/configure_alert_command.php:325
    -#, php-format
    -msgid "Field %s values"
    -msgstr "Valeurs de %s champs"
    -
    -#: ../../godmode/alerts/configure_alert_command.php:327
    -msgid "value1,tag1;value2,tag2;value3,tag3"
    -msgstr "valeur1,balise1;valeur2,Ć©tiquette2;valeur3,Ć©tiquette3"
    -
    -#: ../../godmode/alerts/configure_alert_command.php:363
    -msgid "Hide"
    -msgstr "Cacher"
    -
    -#: ../../godmode/alerts/alert_view.php:281
    -msgid "Firing conditions"
    -msgstr "Conditions de dƩclenchement"
    -
    -#: ../../godmode/alerts/alert_view.php:305
    -#: ../../godmode/alerts/alert_view.php:339
    -msgid "Every time that the alert is fired"
    -msgstr "Chaque fois que l'alerte est dƩclenchƩe"
    -
    -#: ../../godmode/alerts/alert_view.php:385
    -msgid ""
    -"Select the desired action and mode to see the Firing/Recovery fields for this "
    -"action"
    -msgstr ""
    -"SƩlectionnez l'action et le mode souhaitƩs pour voir les champs DƩclenchement/"
    -"RƩcupƩration pour cette action"
    -
    -#: ../../godmode/alerts/alert_view.php:446
    -msgid "Template fields"
    -msgstr "Champs de modĆØles"
    -
    -#: ../../godmode/alerts/alert_view.php:448
    -msgid "Triggering fields configured in template"
    -msgstr "Champs de dĆ©clenchement configurĆ©s dans le modĆØle"
    -
    -#: ../../godmode/alerts/alert_view.php:542
    -msgid "The alert recovering is disabled on this template."
    -msgstr "L'alerte de rĆ©cupĆ©ration est dĆ©sactivĆ©e sur ce modĆØle."
    -
    -#: ../../godmode/alerts/alert_view.php:558
    -msgid "Recovering fields"
    -msgstr "RƩcupƩration de champs"
    -
    -#: ../../godmode/alerts/alert_view.php:560
    -msgid ""
    -"Fields passed to the command executed by this action when the alert is "
    -"recovered"
    -msgstr ""
    -"Champs transfƩrƩs Ơ la commande exƩcutƩe par cette action lorsque l'alerte est "
    -"rƩcupƩrƩe"
    -
    -#: ../../godmode/alerts/alert_view.php:574
    -msgid "Template recovery fields"
    -msgstr "Champs de rĆ©cupĆ©ration de modĆØles"
    -
    -#: ../../godmode/alerts/alert_view.php:576
    -msgid "Recovery fields configured in alert template"
    -msgstr "Champs de rĆ©cupĆ©ration configurĆ©s dans le modĆØle d'alerte"
    -
    -#: ../../godmode/alerts/alert_view.php:579
    -msgid "Action recovery fields"
    -msgstr "Champs de rƩcupƩration d'actions"
    -
    -#: ../../godmode/alerts/alert_view.php:581
    -msgid "Recovery fields configured in alert action"
    -msgstr "Champs de rƩcupƩration configurƩs en action d'alerte"
    -
    -#: ../../godmode/alerts/alert_view.php:584
    -msgid "Executed on recovery"
    -msgstr "ExƩcutƩ lors de la rƩcupƩration"
    -
    -#: ../../godmode/alerts/alert_view.php:586
    -msgid "Fields used on execution when the alert is recovered"
    -msgstr "Champs utilisƩs lors de l'exƩcution lorsque l'alerte est rƩcupƩrƩe"
    -
    -#: ../../godmode/alerts/configure_alert_action.php:74
    -#: ../../godmode/alerts/configure_alert_action.php:87
    -msgid "Configure alert action"
    -msgstr "Configurer l'action d'alerte"
    -
    -#: ../../godmode/alerts/configure_alert_action.php:167
    -msgid "Update Action"
    -msgstr "Mettre Ć  jour l'action"
    -
    -#: ../../godmode/alerts/configure_alert_action.php:204
    -msgid "This action may stop working, if you change its name."
    -msgstr "Cette action peut cesser de fonctionner si vous modifiez son nom."
    -
    -#: ../../godmode/alerts/configure_alert_action.php:306
    -msgid "Recovery"
    -msgstr "RƩcupƩration"
    -
    -#: ../../godmode/alerts/configure_alert_action.php:330
    -msgid "Create workunit on recovery"
    -msgstr "CrƩer une unitƩ de travail sur la rƩcupƩration"
    -
    -#: ../../godmode/alerts/configure_alert_action.php:331
    -msgid ""
    -"If closed status is set on recovery, a workunit will be added to the ticket in "
    -"Integria IMS rather that closing the ticket."
    -msgstr ""
    -"Si le statut fermƩ est dƩfini sur la rƩcupƩration, une unitƩ de travail sera "
    -"ajoutƩe au ticket dans Integria IMS plutƓt que de fermer le ticket."
    -
    -#: ../../godmode/users/user_list.php:250
    -#, php-format
    -msgid "Users defined on %s"
    -msgstr "Utilisateurs dƩfinis sur %s"
    -
    -#: ../../godmode/users/user_list.php:287
    -#: ../../godmode/users/configure_user.php:151
    -#, php-format
    -msgid "Deleted user %s"
    -msgstr "Supprimer l'utilisateur %s"
    -
    -#: ../../godmode/users/user_list.php:294 ../../godmode/users/user_list.php:332
    -#: ../../godmode/users/configure_user.php:158
    -msgid "There was a problem deleting the user"
    -msgstr "Erreur de suppression de l'utilisateur"
    -
    -#: ../../godmode/users/user_list.php:308
    -#: ../../godmode/users/configure_user.php:173
    -#, php-format
    -msgid "Deleted user %s from metaconsole"
    -msgstr "Supprimer l'utilisateur %s de la MĆ©taconsole"
    -
    -#: ../../godmode/users/user_list.php:320
    -#: ../../godmode/users/configure_user.php:184
    -#, php-format
    -msgid "Deleted user %s from %s"
    -msgstr "Supprimer l'utilisateur %s de %s"
    -
    -#: ../../godmode/users/user_list.php:326
    -#: ../../godmode/users/configure_user.php:190
    -#, php-format
    -msgid "Successfully deleted from %s"
    -msgstr "SupprimƩ de %s correctement"
    -
    -#: ../../godmode/users/user_list.php:327
    -#: ../../godmode/users/configure_user.php:191
    +#: ../../operation/tree.php:139
     #, php-format
    -msgid "There was a problem deleting the user from %s"
    -msgstr "Erreur de suppression de l'utilisateur de %s"
    -
    -#: ../../godmode/users/user_list.php:341 ../../godmode/users/profile_list.php:127
    -msgid "There was a problem deleting the profile"
    -msgstr "Erreur de suppression du profil"
    -
    -#: ../../godmode/users/user_list.php:367
    -msgid "There was a problem disabling user"
    -msgstr "Erreur de dƩsactivation de l'utilisateur"
    -
    -#: ../../godmode/users/user_list.php:373
    -msgid "There was a problem enabling user"
    -msgstr "Erreur d'activation de l'utilisateur"
    +msgid "Sort the agents by %s"
    +msgstr "Classer les agents par %s"
     
    -#: ../../godmode/users/user_list.php:484
    -msgid "Profile / Group"
    -msgstr "Profil/Groupe"
    +#: ../../operation/tree.php:142
    +msgid "tags"
    +msgstr "Ć©tiquettes"
     
    -#: ../../godmode/users/user_list.php:714
    -msgid "Other profiles are also assigned."
    -msgstr "D'autres profils sont Ʃgalement attribuƩs."
    +#: ../../operation/tree.php:150
    +msgid "groups"
    +msgstr "groupes"
     
    -#: ../../godmode/users/user_list.php:716
    -msgid ""
    -"Other profiles you cannot manage are also assigned. These profiles are not "
    -"shown. You cannot enable/disable or delete this user."
    -msgstr ""
    -"D'autres profils que vous ne pouvez pas gƩrer sont Ʃgalement attribuƩs. Ces "
    -"profils ne sont pas affichƩs. Vous ne pouvez pas activer/dƩsactiver ou "
    -"supprimer cet utilisateur."
    -
    -#: ../../godmode/users/user_list.php:873
    -#: ../../godmode/users/configure_user.php:208
    -msgid "Create user"
    -msgstr "CrƩer un utilisateur"
    -
    -#: ../../godmode/users/user_list.php:876
    -#: ../../godmode/users/configure_user.php:317
    -#, 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"
    +#: ../../operation/tree.php:154
    +msgid "module groups"
    +msgstr "groupes de modules"
     
    -#: ../../godmode/users/configure_user.php:206
    -msgid "Update user"
    -msgstr "Mettre Ć  jour l'utilisateur"
    +#: ../../operation/tree.php:163
    +msgid "policies"
    +msgstr "politiques"
     
    -#: ../../godmode/users/configure_user.php:403
    -msgid "User ID cannot be empty"
    -msgstr "L'identifiant de l'utilisateur ne peut pas ĆŖtre vide."
    +#: ../../operation/tree.php:219
    +msgid "Search group"
    +msgstr "Rechercher groupe"
     
    -#: ../../godmode/users/configure_user.php:410
    -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"
    +#: ../../operation/tree.php:223 ../../operation/tree.php:279
    +msgid "Show not init modules"
    +msgstr "Afficher les modules non initialisƩs"
     
    -#: ../../godmode/users/configure_user.php:418
    -msgid "Passwords cannot be empty"
    -msgstr "Les mots de passe ne peuvent pas ĆŖtre vides."
    +#: ../../operation/tree.php:232
    +msgid "Search agent"
    +msgstr "Rechercher agent"
     
    -#: ../../godmode/users/configure_user.php:425
    -msgid "Passwords didn't match"
    -msgstr "Les mots de passe saisis ne sont pas identiques."
    +#: ../../operation/tree.php:235
    +msgid "Show not init agents"
    +msgstr "Afficher les agents non initialisƩs"
     
    -#: ../../godmode/users/configure_user.php:484
    -msgid ""
    -"Strict ACL is not recommended for admin users because performance could be "
    -"affected."
    -msgstr ""
    -"Les ACL strictes ne sont pas recommandƩes pour les administrateur parce que "
    -"cela pourrait affecter la performance."
    +#: ../../operation/tree.php:243
    +msgid "Show full hirearchy"
    +msgstr "Afficher hiĆ©rarchie complĆØte"
     
    -#: ../../godmode/users/configure_user.php:519
    -#: ../../godmode/users/configure_user.php:806
    -msgid "Profile added successfully"
    -msgstr "Profil ajoutƩ correctement"
    +#: ../../operation/tree.php:254
    +msgid "Show only disabled"
    +msgstr "Afficher uniquement dƩsactivƩ"
     
    -#: ../../godmode/users/configure_user.php:520
    -#: ../../godmode/users/configure_user.php:807
    -msgid "Profile cannot be added"
    -msgstr "Impossible d'ajouter le profil"
    +#: ../../operation/tree.php:276
    +msgid "Search module"
    +msgstr "Rechercher module"
     
    -#: ../../godmode/users/configure_user.php:644
    -#: ../../godmode/users/configure_user.php:668
    -#: ../../godmode/users/configure_user.php:738
    -#: ../../godmode/users/configure_user.php:745
    -#: ../../godmode/users/configure_user.php:777
    -msgid "Error updating user info (no change?)"
    -msgstr ""
    -"Erreur de mise Ć  jour de l'information de l'utilisateur (aucun changement ?)"
    +#: ../../operation/tree.php:308
    +msgid "Tree search"
    +msgstr "Rechercher arborescence"
     
    -#: ../../godmode/users/configure_user.php:673
    -msgid "Password of the active user is required to perform password change"
    +#: ../../operation/users/user_edit.php:153
    +msgid "Current password of user is required to perform password change"
     msgstr ""
    -"Le mot de passe de l'utilisateur actif est requis pour effectuer le changement "
    +"Le mot de passe actuel de l'utilisateur est requis pour effectuer le changement "
     "de mot de passe"
     
    -#: ../../godmode/users/configure_user.php:675
    -msgid "Password of active user is not correct"
    -msgstr "Le mot de passe de l'utilisateur actif n'est pas correct"
    +#: ../../operation/users/user_edit.php:155
    +msgid "Current password of user is not correct"
    +msgstr "Votre mot de passe actuel est incorrect."
     
    -#: ../../godmode/users/configure_user.php:691
    -msgid "Passwords does not match"
    -msgstr "Les mots de passe ne concordent pas"
    +#: ../../operation/users/user_edit.php:159
    +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"
     
    -#: ../../godmode/users/configure_user.php:766
    +#: ../../operation/users/user_edit.php:172 ../../operation/users/user_edit.php:187
    +msgid "Password successfully updated"
    +msgstr "Mot de passe mis Ć  jour correctement"
    +
    +#: ../../operation/users/user_edit.php:182 ../../operation/users/user_edit.php:230
    +msgid "Error updating user info"
    +msgstr "Erreur de mise Ć  jour de l'information de l'utilisateur"
    +
    +#: ../../operation/users/user_edit.php:189
    +msgid "Skin successfully updated"
    +msgstr "Skin mis Ć  jour correctement"
    +
    +#: ../../operation/users/user_edit.php:203
    +msgid "Please enter a valid email"
    +msgstr "Veuillez entrer une adresse email valide"
    +
    +#: ../../operation/users/user_edit.php:205
    +msgid "Please enter a valid phone number"
    +msgstr "Veuillez entrer un numƩro de tƩlƩphone valide"
    +
    +#: ../../operation/users/user_edit.php:211
    +msgid "Error updating passwords: "
    +msgstr "Erreur lors de la mise Ć  jour des mots de passeĀ :"
    +
    +#: ../../operation/users/user_edit.php:235
    +msgid "Edit my User"
    +msgstr "Modifier mon utilisateur"
    +
    +#: ../../operation/users/user_edit.php:300
    +msgid "Current password"
    +msgstr "Mot de passe actuel"
    +
    +#: ../../operation/users/user_edit.php:302
    +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:317
    +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:411
    +msgid "This change will only apply to nodes"
    +msgstr "Cette modification ne sā€™appliquera quā€™aux nœuds"
    +
    +#: ../../operation/users/user_edit.php:448
    +msgid "Event filter"
    +msgstr "Filtre d'ƩvƩnements"
    +
    +#: ../../operation/users/user_edit.php:519
    +msgid "Autorefresh"
    +msgstr "RafraƮchissement automatique"
    +
    +#: ../../operation/users/user_edit.php:520
    +msgid "This will activate autorefresh in selected pages"
    +msgstr "Le rafraƮchissement automatique sera activƩ sur les pages sƩlectionnƩes."
    +
    +#: ../../operation/users/user_edit.php:555
    +msgid "Full list of pages"
    +msgstr "Liste complĆØte de pages"
    +
    +#: ../../operation/users/user_edit.php:564 ../../operation/users/user_edit.php:565
    +msgid "Push selected pages into autorefresh list"
    +msgstr "Ajouter les pages sƩlectionnƩes Ơ la liste de rafraƮchissement automatique."
    +
    +#: ../../operation/users/user_edit.php:573 ../../operation/users/user_edit.php:574
    +msgid "Pop selected pages out of autorefresh list"
    +msgstr ""
    +"Supprimer les pages sƩlectionnƩes de la liste de rafraƮchissement automatique"
    +
    +#: ../../operation/users/user_edit.php:579
    +msgid "List of pages with autorefresh"
    +msgstr "Liste de pages avec le rafraƮchissement automatique"
    +
    +#: ../../operation/users/user_edit.php:588
    +msgid "Time autorefresh"
    +msgstr "Temps de rafraƮchissement"
    +
    +#: ../../operation/users/user_edit.php:590
     msgid ""
    -"Strict ACL is not recommended for this user. Performance could be affected."
    +"Interval of autorefresh of the elements, by default they are 30 seconds, needing "
    +"to enable the autorefresh first"
     msgstr ""
    -"Les ACL strictes ne sont pas recommandƩes pour ces utilisateurs. La "
    -"performance pourrait ĆŖtre affectĆ©e."
    +"Intervalle de rafraƮchissement automatique des ƩlƩments, par dƩfaut ils sont de "
    +"30 secondes, il faut d'abord activer le rafraƮchissement automatique"
     
    -#: ../../godmode/users/configure_user.php:845
    -msgid "Update User"
    -msgstr "Mettre Ć  jour l'utilisateur"
    +#: ../../operation/users/user_edit.php:685
    +msgid "eHorus user configuration"
    +msgstr "Configuration utilisateur eHorus"
     
    -#: ../../godmode/users/configure_user.php:847
    -msgid "Create User"
    -msgstr "CrƩer un utilisateur"
    -
    -#: ../../godmode/users/configure_user.php:968
    -msgid "Own password confirmation"
    -msgstr "Confirmation propre du mot de passe"
    -
    -#: ../../godmode/users/configure_user.php:977
    -msgid "Global Profile"
    -msgstr "Profil gƩnƩral"
    -
    -#: ../../godmode/users/configure_user.php:985
    -msgid ""
    -"This user has permissions to manage all. An admin user should not requiere "
    -"additional group permissions, except for using Enterprise ACL."
    -msgstr ""
    -"Cet utilisateur est autorisƩ Ơ gƩrer tout le contenu. Un administrateur ne "
    -"devrait pas avoir besoin d'autorisations de groupe supplƩmentaires, sauf pour "
    -"utiliser l'ACL Enterprise."
    -
    -#: ../../godmode/users/configure_user.php:1000
    -msgid ""
    -"This user has separated permissions to view data in his group agents, create "
    -"incidents belong to his groups, add notes in another incidents, create "
    -"personal assignments or reviews and other tasks, on different profiles"
    -msgstr ""
    -"Cet utilisateur a des permissions diffƩrentes pour le visionnement des donnƩes "
    -"dans le groupe d'agents, pour la crƩation d'incidents dans les groupes "
    -"auxquels il a accĆØs, pour l'ajout de notes sur d'autres incidents dans ses "
    -"groupes, et pour la crĆ©ation et la rĆ©vision de tĆ¢ches personnelles sur des "
    -"profils diffƩrents."
    -
    -#: ../../godmode/users/configure_user.php:1081
    -msgid "Search custom field view"
    -msgstr "Vue de recherche dā€™un champ personnalisĆ©"
    -
    -#: ../../godmode/users/configure_user.php:1081
    -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:1098
    -msgid "Use global conf"
    -msgstr "Utiliser configuration gƩnƩrale"
    -
    -#: ../../godmode/users/configure_user.php:1115
    -msgid "External link"
    -msgstr "Lien externe"
    -
    -#: ../../godmode/users/configure_user.php:1208
    -msgid "Metaconsole access"
    -msgstr "AccĆØs Ć  la MĆ©taconsole"
    -
    -#: ../../godmode/users/configure_user.php:1226
    -msgid "Not Login"
    -msgstr "Aucune connexion"
    -
    -#: ../../godmode/users/configure_user.php:1228
    -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:1238
    -msgid "Local user"
    -msgstr "Utilisateur local"
    -
    -#: ../../godmode/users/configure_user.php:1240
    -msgid ""
    -"The user with local authentication enabled will always use local "
    -"authentication."
    -msgstr ""
    -"Lā€™utilisateur dont lā€™authentification locale est activĆ©e utilisera toujours "
    -"lā€™authentification locale."
    -
    -#: ../../godmode/users/configure_user.php:1250
    -msgid "Session Time"
    -msgstr "DurƩe de la session"
    -
    -#: ../../godmode/users/configure_user.php:1252
    -msgid ""
    -"This is defined in minutes, If you wish a permanent session should putting -1 "
    -"in this field."
    -msgstr ""
    -"DĆ©fini en minutes ; si vous souhaitez Ć©tablir une session permanente, "
    -"introduisez -1 dans ce champ."
    -
    -#: ../../godmode/users/configure_user.php:1286
    -msgid "Default event filter"
    -msgstr "Filtre d'ƩvƩnement par dƩfaut"
    -
    -#: ../../godmode/users/configure_user.php:1300
    -msgid "eHorus user access enabled"
    +#: ../../operation/users/user_edit.php:690
    +msgid "eHorus user acces enabled"
     msgstr "AccĆØs utilisateur eHorus activĆ©"
     
    -#: ../../godmode/users/configure_user.php:1340
    -msgid "User must be created before activating double authentication."
    -msgstr "L'utilisateur doit ĆŖtre crĆ©Ć© avant d'activer la double authentification."
    +#: ../../operation/users/user_edit.php:737
    +msgid "Integria user configuration"
    +msgstr "Configuration dā€™utilisateur Integria"
     
    -#: ../../godmode/users/configure_user.php:1368
    -msgid "Enable agents managment"
    -msgstr "Activer la gestion d'agents"
    -
    -#: ../../godmode/users/configure_user.php:1376
    -msgid "Assigned node"
    -msgstr "Nœud assignĆ©"
    -
    -#: ../../godmode/users/configure_user.php:1376
    -msgid "Server where the agents created of this user will be placed"
    -msgstr "Serveur oĆ¹ seront placĆ©s les agents crĆ©Ć©s pour cet utilisateur"
    -
    -#: ../../godmode/users/configure_user.php:1385
    -msgid "Enable node access"
    -msgstr "Activer l'accĆØs au nœud"
    -
    -#: ../../godmode/users/configure_user.php:1385
    -msgid "With this option enabled, the user will can access to nodes console"
    +#: ../../operation/users/user_edit.php:774
    +msgid "You can not change your user info under the current authentication scheme"
     msgstr ""
    -"Si cette option est activĆ©e, l'utilisateur pourra accĆ©der Ć  la console de nœuds"
    +"Vous ne pouvez pas modifier vos informations d'utilisateur sous le schƩma "
    +"d'authentification actuel"
     
    -#: ../../godmode/users/configure_user.php:1602
    -msgid "yes"
    -msgstr "Oui"
    +#: ../../operation/users/user_edit.php:851
    +msgid "This user doesn't have any assigned profile/group."
    +msgstr "Cet utilisateur n'a aucun profil/groupe assignƩ."
     
    -#: ../../godmode/users/configure_user.php:1605
    -msgid "no"
    -msgstr "Non"
    +#: ../../operation/users/user_edit_header.php:102
    +#: ../../operation/users/user_edit_notifications.php:36
    +msgid "User notifications"
    +msgstr "Notifications utilisateur"
     
    -#: ../../godmode/users/configure_user.php:1609
    -msgid "please select profile and group"
    -msgstr "Veuillez sƩlectionner le profil et le groupe"
    +#: ../../operation/users/user_edit_header.php:127
    +#: ../../operation/messages/message_list.php:86
    +#: ../../operation/messages/message_edit.php:99 ../../operation/menu.php:474
    +msgid "Workspace"
    +msgstr "Espace de travail"
     
    -#: ../../godmode/users/configure_user.php:1635
    -msgid "Deleting last profile will delete this user"
    -msgstr "La suppression du dernier profil supprimera cet utilisateur"
    +#: ../../operation/users/user_edit_header.php:131
    +msgid "Edit user"
    +msgstr "Editer l'utilisateur"
     
    -#: ../../godmode/users/configure_user.php:1675
    +#: ../../operation/users/user_edit_notifications.php:65
    +msgid "Also receive an email"
    +msgstr "Recevez Ć©galement un e-mail"
    +
    +#: ../../operation/users/user_edit_notifications.php:94
    +msgid "Controls have been disabled by the system administrator"
    +msgstr "Les contrĆ“les ont Ć©tĆ© dĆ©sactivĆ©s par l'administrateur systĆØme"
    +
    +#: ../../operation/search_helps.php:17
    +msgid "Zero results found."
    +msgstr "ZƩro rƩsultats trouvƩs"
    +
    +#: ../../operation/search_helps.php:18
    +#, php-format
    +msgid "You can find more help in the 
    wiki" +msgstr "" +"Vous pouvez trouver plus d'aide dans le wiki" + +#: ../../operation/search_helps.php:32 +msgid "Matches" +msgstr "Concordances" + +#: ../../operation/visual_console/view.php:387 +msgid "Delete Item" +msgstr "Supprimer l'Ć©lĆ©ment" + +#: ../../operation/visual_console/view.php:393 +msgid "Copy Item" +msgstr "Copier l'Ć©lĆ©ment" + +#: ../../operation/visual_console/view.php:406 +#: ../../operation/agentes/estado_generalagente.php:345 +msgid "Force remote checks" +msgstr "Forcer les vĆ©rifications Ć  distance" + +#: ../../operation/visual_console/view.php:734 +msgid "Are you sure" +msgstr "Ɗtes-vous certain" + +#: ../../operation/visual_console/legacy_public_view.php:168 +#: ../../operation/visual_console/public_view.php:150 +msgid "QR code of the page" +msgstr "Code QR de la page" + +#: ../../operation/visual_console/legacy_public_view.php:198 +#: ../../operation/visual_console/legacy_view.php:339 +msgid "Until refresh" +msgstr "Jusqu'Ć  la suivante mise Ć  jour" + +#: ../../operation/search_results.php:67 +msgid "Global search" +msgstr "Recherche globale" + +#: ../../operation/agentes/stat_win.php:116 +#, php-format +msgid "%s Graph" +msgstr "Graphique %s" + +#: ../../operation/agentes/stat_win.php:149 +msgid "There was a problem locating the source of the graph" +msgstr "Erreur de repĆ©rage de la source du tableau" + +#: ../../operation/agentes/stat_win.php:267 +#: ../../operation/agentes/interface_traffic_graph_win.php:167 +msgid "Refresh time" +msgstr "Heure de rafraĆ®chissement" + +#: ../../operation/agentes/stat_win.php:278 ../../operation/agentes/graphs.php:222 +msgid "Show events" +msgstr "Afficher les Ć©vĆ©nements" + +#: ../../operation/agentes/stat_win.php:299 ../../operation/agentes/graphs.php:224 +msgid "Show alerts" +msgstr "Afficher les alertes" + +#: ../../operation/agentes/stat_win.php:307 ../../operation/agentes/stat_win.php:418 +#: ../../operation/agentes/interface_traffic_graph_win.php:207 +msgid "Begin time" +msgstr "Heure de dĆ©but" + +#: ../../operation/agentes/stat_win.php:325 ../../operation/agentes/stat_win.php:428 +#: ../../operation/agentes/interface_traffic_graph_win.php:213 +#: ../../operation/agentes/graphs.php:218 +#: ../../operation/reporting/graph_viewer.php:360 +msgid "Time range" +msgstr "Intervalle de temps" + +#: ../../operation/agentes/stat_win.php:340 +msgid "Zoom" +msgstr "Zoom" + +#: ../../operation/agentes/stat_win.php:360 +#: ../../operation/agentes/interface_traffic_graph_win.php:227 +msgid "Show percentil" +msgstr "Afficher centile" + +#: ../../operation/agentes/stat_win.php:386 +msgid "Show AVG/MAX/MIN data series in graph" +msgstr "Afficher les sĆ©ries de donnĆ©es MOY/MAX/MIN dans le graphique" + +#: ../../operation/agentes/stat_win.php:489 +#: ../../operation/agentes/interface_traffic_graph_win.php:306 +msgid "Graph configuration menu" +msgstr "Menu de configuration du graphique" + +#: ../../operation/agentes/alerts_status.php:338 +msgid "No actions" +msgstr "Aucune action" + +#: ../../operation/agentes/alerts_status.php:371 +#: ../../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:372 +#: ../../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:441 +msgid "Full list of alerts" +msgstr "Liste complĆØte des alertes" + +#: ../../operation/agentes/alerts_status.php:532 +msgid "You must select at least one alert." +msgstr "Vous devez sĆ©lectionner au moins une alerte." + +#: ../../operation/agentes/gis_view.php:96 +msgid "Period to show data as path" +msgstr "PĆ©riode pour montrer les donnĆ©es comme chemin" + +#: ../../operation/agentes/gis_view.php:100 +msgid "Refresh path" +msgstr "RafraĆ®chir le chemin" + +#: ../../operation/agentes/gis_view.php:158 +msgid "This agent doesn't have any GIS data." +msgstr "Cet agent ne possĆØde pas de donnĆ©es GIS." + +#: ../../operation/agentes/gis_view.php:170 +msgid "Positional data from the last" +msgstr "DonnĆ©es de position des derniers" + +#: ../../operation/agentes/gis_view.php:209 +#, php-format +msgid "%s Km" +msgstr "%s Km" + +#: ../../operation/agentes/gis_view.php:223 +msgid "Distance" +msgstr "Distance" + +#: ../../operation/agentes/gis_view.php:224 +msgid "# of Packages" +msgstr "Nombre de progiciels" + +#: ../../operation/agentes/gis_view.php:225 ../../operation/gis_maps/ajax.php:242 +msgid "Manual placement" +msgstr "Emplacement manuel" + +#: ../../operation/agentes/exportdata.csv.php:66 +#: ../../operation/agentes/exportdata.php:71 +#: ../../operation/agentes/exportdata.excel.php:66 +msgid "Invalid time specified" +msgstr "Temps spĆ©cifiĆ© non valide" + +#: ../../operation/agentes/exportdata.csv.php:178 +#: ../../operation/agentes/exportdata.php:209 +#: ../../operation/agentes/exportdata.excel.php:161 +msgid "No modules specified" +msgstr "Aucun module spĆ©cifiĆ©" + +#: ../../operation/agentes/log_sources_status.php:75 +msgid "Review in log viewer" +msgstr "RĆ©viser dans la visionneuse de journaux" + +#: ../../operation/agentes/log_sources_status.php:98 +msgid "No log sources found" +msgstr "Aucune source de journal trouvĆ©e" + +#: ../../operation/agentes/log_sources_status.php:117 +msgid "Log sources status" +msgstr "Ɖtat des sources de journal" + +#: ../../operation/agentes/estado_agente.php:242 +msgid "Sucessfully deleted agent" +msgstr "Agent supprimĆ© correctement" + +#: ../../operation/agentes/estado_agente.php:244 +msgid "There was an error message deleting the agent" +msgstr "Message d'erreur lors de la suppression de l'agent" + +#: ../../operation/agentes/estado_agente.php:285 +msgid "Search in custom fields" +msgstr "Rechercher dans les champs personnalisĆ©s" + +#: ../../operation/agentes/ehorus.php:30 +msgid "Missing agent id" +msgstr "Identifiant de l'agent manquant" + +#: ../../operation/agentes/ehorus.php:51 +msgid "Missing ehorus agent id" +msgstr "Identifiant de l'agent eHorus manquant" + +#: ../../operation/agentes/ehorus.php:100 ../../operation/agentes/ehorus.php:137 +msgid "There was an error retrieving an authorization token" +msgstr "Erreur d'obtention de token d'autorisation" + +#: ../../operation/agentes/ehorus.php:112 ../../operation/agentes/ehorus.php:149 +#: ../../operation/agentes/ehorus.php:185 +msgid "There was an error processing the response" +msgstr "Erreur de traitement de la rĆ©ponse" + +#: ../../operation/agentes/ehorus.php:173 +msgid "There was an error retrieving the agent data" +msgstr "Erreur d'obtention de donnĆ©es de l'agent" + +#: ../../operation/agentes/ehorus.php:190 +msgid "Remote management of this agent with eHorus" +msgstr "Gestion Ć  distance de cet agent avec eHorus" + +#: ../../operation/agentes/ehorus.php:192 +msgid "Launch" +msgstr "Lancer" + +#: ../../operation/agentes/ehorus.php:198 +msgid "The connection was lost and the authorization token was expired" +msgstr "Connexion perdue et token d'autorisation expirĆ©" + +#: ../../operation/agentes/ehorus.php:198 +msgid "Reload the page to request a new authorization token" +msgstr "RafraĆ®chir la page pour demander un nouveau token d'autorisation" + +#: ../../operation/agentes/status_events.php:26 +#: ../../operation/agentes/status_events.php:27 +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:2266 +#: ../../operation/snmpconsole/snmp_statistics.php:45 +#: ../../operation/snmpconsole/snmp_browser.php:56 +#: ../../operation/snmpconsole/snmp_view.php:118 +msgid "Normal screen" +msgstr "Ɖcran normal" + +#: ../../operation/agentes/networkmap.dinamic.php:126 +#: ../../operation/agentes/pandora_networkmap.view.php:2290 +msgid "List of networkmap" +msgstr "Liste de cartes de rĆ©seau" + +#: ../../operation/agentes/agent_fields.php:47 +#: ../../operation/agentes/custom_fields.php:90 +msgid "empty" +msgstr "vide" + +#: ../../operation/agentes/realtime_win.php:85 +#, php-format +msgid "%s Realtime Module Graph" +msgstr "%sĀ Graphique du module en temps rĆ©el" + +#: ../../operation/agentes/realtime_win.php:112 +msgid "Realtime extension is not enabled." +msgstr "L'extension en temps rĆ©el n'est pas activĆ©e." + +#: ../../operation/agentes/pandora_networkmap.editor.php:205 +msgid "Network maps editor" +msgstr "Ɖditeur de cartes rĆ©seau" + +#: ../../operation/agentes/pandora_networkmap.editor.php:324 +#: ../../operation/agentes/pandora_networkmap.view.php:127 +msgid "Position X" +msgstr "Position X" + +#: ../../operation/agentes/pandora_networkmap.editor.php:326 +#: ../../operation/agentes/pandora_networkmap.view.php:129 +msgid "Position Y" +msgstr "Position Y" + +#: ../../operation/agentes/pandora_networkmap.editor.php:329 +#: ../../operation/agentes/pandora_networkmap.view.php:132 +msgid "Zoom scale" +msgstr "Ɖchelle de zoom" + +#: ../../operation/agentes/pandora_networkmap.editor.php:334 +#: ../../operation/agentes/pandora_networkmap.view.php:134 +msgid "Introduce zoom level. 1 = Highest resolution. Figures may include decimals" +msgstr "" +"Introduire le niveau de zoom. 1 = RĆ©solution maximale. Les chiffres peuvent " +"inclure des dĆ©cimales." + +#: ../../operation/agentes/pandora_networkmap.editor.php:337 +#: ../../operation/agentes/pandora_networkmap.view.php:137 +msgid "CIDR IP mask" +msgstr "Masque IP du CIDR" + +#: ../../operation/agentes/pandora_networkmap.editor.php:339 +#: ../../operation/agentes/pandora_networkmap.view.php:164 +msgid "Source from recon task" +msgstr "Source de la tĆ¢che de reconnaissance" + +#: ../../operation/agentes/pandora_networkmap.editor.php:341 +#: ../../operation/agentes/pandora_networkmap.view.php:166 msgid "" -"User will be created without profiles assigned and won't be able to log in, " -"are you sure?" +"It is setted any recon task, the nodes get from the recontask IP mask instead " +"from the group." msgstr "" -"L'utilisateur sera crĆ©Ć© sans profils attribuĆ©s et ne pourra pas se connecter, " -"ĆŖtes-vous sĆ»rĀ ?" +"Il est configurĆ© sur n'importe quelle tĆ¢che de reconnaissance, les nœuds " +"reƧoivent des donnĆ©es Ć  partir du masque IP de la tĆ¢che de reconnaissance au lieu " +"d'Ć  partir du groupe." -#: ../../godmode/users/configure_profile.php:76 -#: ../../godmode/users/profile_list.php:84 +#: ../../operation/agentes/pandora_networkmap.editor.php:358 +#: ../../operation/agentes/pandora_networkmap.view.php:182 +msgid "Show only the task with the recon script \"SNMP L2 Recon\"." +msgstr "" +"Afficher uniquement la tĆ¢che avec le script de reconnaissance \"SNMP L2 Recon\"." + +#: ../../operation/agentes/pandora_networkmap.editor.php:362 +#: ../../operation/agentes/pandora_networkmap.view.php:186 +msgid "Source from CIDR IP mask" +msgstr "Source du masque IP du CIDR" + +#: ../../operation/agentes/pandora_networkmap.editor.php:365 +msgid "Source group" +msgstr "Groupe source" + +#: ../../operation/agentes/pandora_networkmap.editor.php:382 +msgid "Source id group changed. All elements in networkmap will be lost." +msgstr "" +"Le groupe d'ID source a Ć©tĆ© modifiĆ©. Tous les Ć©lĆ©ments de la carte du rĆ©seau " +"seront perdus." + +#: ../../operation/agentes/pandora_networkmap.editor.php:387 +#: ../../operation/agentes/pandora_networkmap.view.php:198 +msgid "Don't show subgroups:" +msgstr "Ne pas afficher les sous-groupes :" + +#: ../../operation/agentes/pandora_networkmap.editor.php:405 +#: ../../operation/agentes/pandora_networkmap.view.php:232 +msgid "Method generation networkmap" +msgstr "MĆ©thode de gĆ©nĆ©ration de cartes de rĆ©seau" + +#: ../../operation/agentes/pandora_networkmap.editor.php:426 +#: ../../operation/agentes/pandora_networkmap.view.php:248 +msgid "Separation between nodes. By default 0.25" +msgstr "SĆ©paration entre les nœuds. 0,25 par dĆ©faut" + +#: ../../operation/agentes/pandora_networkmap.editor.php:428 +#: ../../operation/agentes/pandora_networkmap.view.php:250 +msgid "Rank separation" +msgstr "SĆ©paration de rangs" + +#: ../../operation/agentes/pandora_networkmap.editor.php:429 +#: ../../operation/agentes/pandora_networkmap.view.php:251 +msgid "" +"Only flat and radial. Separation between arrows. By default 0.5 in flat and 1.0 " +"in radial" +msgstr "" +"Uniquement plat et radial. SĆ©paration entre flĆØches. 0,5 plat et 1,0 radial par " +"dĆ©faut" + +#: ../../operation/agentes/pandora_networkmap.editor.php:431 +#: ../../operation/agentes/pandora_networkmap.view.php:253 +msgid "Min nodes dist" +msgstr "Distance minimale entre nœuds" + +#: ../../operation/agentes/pandora_networkmap.editor.php:432 +#: ../../operation/agentes/pandora_networkmap.view.php:254 +msgid "Only circular. Minimum separation between all nodes. By default 1.0" +msgstr "" +"Uniquement circulaire. SĆ©paration minimale entre tous les nœuds. 1,0 par dĆ©faut." + +#: ../../operation/agentes/pandora_networkmap.editor.php:434 +#: ../../operation/agentes/pandora_networkmap.view.php:256 +msgid "Default ideal node separation" +msgstr "SĆ©paration idĆ©ale entre nœuds par dĆ©faut" + +#: ../../operation/agentes/pandora_networkmap.editor.php:435 +#: ../../operation/agentes/pandora_networkmap.view.php:257 +msgid "Only fdp. Default ideal node separation in the layout. By default 0.3" +msgstr "Uniquement fdp. SĆ©paration idĆ©ale entre nœuds par dĆ©faut. 0,3 par dĆ©faut." + +#: ../../operation/agentes/pandora_networkmap.editor.php:601 +msgid "Source id group changed. All elements in Networkmap will be lost" +msgstr "" +"Le groupe d'ID source a Ć©tĆ© modifiĆ©. Tous les Ć©lĆ©ments de Networkmap seront perdus" + +#: ../../operation/agentes/pandora_networkmap.php:139 +#: ../../operation/agentes/pandora_networkmap.php:374 +msgid "Succesfully created" +msgstr "CrĆ©Ć©e correctement" + +#: ../../operation/agentes/pandora_networkmap.php:215 +#: ../../operation/agentes/pandora_networkmap.php:507 +msgid "Succesfully updated" +msgstr "Mise Ć  jour correctement" + +#: ../../operation/agentes/pandora_networkmap.php:532 +msgid "Succesfully duplicate" +msgstr "DupliquĆ©e correctement" + +#: ../../operation/agentes/pandora_networkmap.php:546 +msgid "Succesfully deleted" +msgstr "SupprimĆ©e correctement" + +#: ../../operation/agentes/pandora_networkmap.php:656 +msgid "List of network maps" +msgstr "Liste des cartes du rĆ©seau" + +#: ../../operation/agentes/pandora_networkmap.php:776 +msgid "Empty map" +msgstr "Carte vide" + +#: ../../operation/agentes/pandora_networkmap.php:780 +msgid "Pending to generate" +msgstr "En attente de gĆ©nĆ©rer" + +#: ../../operation/agentes/pandora_networkmap.php:811 +msgid "There are no maps defined." +msgstr "Aucune carte dĆ©finie" + +#: ../../operation/agentes/pandora_networkmap.php:818 +msgid "Create network map" +msgstr "CrĆ©er une carte de rĆ©seau" + +#: ../../operation/agentes/pandora_networkmap.php:825 +msgid "Create empty network map" +msgstr "CrĆ©er une carte rĆ©seau vide" + +#: ../../operation/agentes/interface_traffic_graph_win.php:95 #, php-format -msgid "Profiles defined on %s" -msgstr "Profils dĆ©finis sur %s" +msgid "%s Interface Graph" +msgstr "%s Graphique d'interface" -#: ../../godmode/users/configure_profile.php:142 -msgid "Create profile" -msgstr "CrĆ©er un profil" +#: ../../operation/agentes/interface_traffic_graph_win.php:250 +msgid "Zoom factor" +msgstr "Facteur de zoom" -#: ../../godmode/users/configure_profile.php:147 -msgid "There was a problem loading profile" -msgstr "Erreur de chargement de profil" +#: ../../operation/agentes/interface_traffic_graph_win.php:257 +msgid "Full" +msgstr "Complet" -#: ../../godmode/users/configure_profile.php:239 -msgid "Update profile" -msgstr "Mettre Ć  jour le profil" +#: ../../operation/agentes/graphs.php:143 +msgid "Other modules" +msgstr "Autres modules" -#: ../../godmode/users/configure_profile.php:249 -msgid "Update Profile" -msgstr "Mettre Ć  jour le profil" +#: ../../operation/agentes/graphs.php:150 +msgid "Modules network no proc" +msgstr "Modules de rĆ©seau sans proc" -#: ../../godmode/users/configure_profile.php:251 -msgid "Create Profile" -msgstr "CrĆ©er un profil" +#: ../../operation/agentes/graphs.php:157 +msgid "Modules boolean" +msgstr "Modules boolĆ©ens" -#: ../../godmode/users/configure_profile.php:272 -msgid "View agents" -msgstr "Afficher les agents" +#: ../../operation/agentes/graphs.php:224 +msgid "the combined graph does not show the alerts into this graph" +msgstr "Le graphique combinĆ© ne montre pas les alertes dans ce graphique" -#: ../../godmode/users/configure_profile.php:276 -msgid "Disable agents" -msgstr "DĆ©sactiver les agents" +#: ../../operation/agentes/graphs.php:226 +msgid "Show as one combined graph" +msgstr "Afficher sous forme de graphique combinĆ©" -#: ../../godmode/users/configure_profile.php:280 -msgid "Edit agents" -msgstr "Ɖditer les agents" +#: ../../operation/agentes/graphs.php:228 +msgid "several graphs for each module" +msgstr "Plusieurs graphiques pour chaque module" -#: ../../godmode/users/configure_profile.php:287 -msgid "Edit alerts" -msgstr "Ɖditer les alertes" +#: ../../operation/agentes/graphs.php:229 +msgid "One combined graph" +msgstr "Un graphique combinĆ©" -#: ../../godmode/users/configure_profile.php:302 -msgid "Edit events" -msgstr "Modifier les Ć©vĆ©nements" +#: ../../operation/agentes/graphs.php:237 ../../operation/agentes/graphs.php:412 +msgid "Area stack" +msgstr "Graphique de zone empilĆ©e" -#: ../../godmode/users/configure_profile.php:313 -msgid "View reports" -msgstr "Afficher les rapports" +#: ../../operation/agentes/graphs.php:239 ../../operation/agentes/graphs.php:420 +msgid "Line stack" +msgstr "Graphique de ligne empilĆ©e" -#: ../../godmode/users/configure_profile.php:317 -msgid "Edit reports" -msgstr "Modifier les rapports" +#: ../../operation/agentes/graphs.php:256 +msgid "Save as custom graph" +msgstr "Enregistrer comme graphique personnalisĆ©" -#: ../../godmode/users/configure_profile.php:321 -msgid "Manage reports" -msgstr "GĆ©rer les rapports" +#: ../../operation/agentes/graphs.php:269 +msgid "Filter graphs" +msgstr "Filtrer les graphiques" -#: ../../godmode/users/configure_profile.php:328 -msgid "View network maps" -msgstr "Afficher les cartes de rĆ©seau" +#: ../../operation/agentes/graphs.php:296 +msgid "There was an error loading the graph" +msgstr "Erreur de chargement du graphique" -#: ../../godmode/users/configure_profile.php:332 -msgid "Edit network maps" -msgstr "Modifier les cartes de rĆ©seau" +#: ../../operation/agentes/graphs.php:304 ../../operation/agentes/graphs.php:308 +msgid "Name custom graph" +msgstr "Nom du graphique personnalisĆ©" -#: ../../godmode/users/configure_profile.php:336 -msgid "Manage network maps" -msgstr "GĆ©rer les cartes de rĆ©seau" +#: ../../operation/agentes/graphs.php:354 +msgid "Save custom graph" +msgstr "Enregistrer le graphique personnalisĆ©" -#: ../../godmode/users/configure_profile.php:347 -msgid "Edit visual console" -msgstr "Modifier la console visuelle" +#: ../../operation/agentes/graphs.php:375 +msgid "Custom graph create from the tab graphs in the agent." +msgstr "" +"Graphique personnalisĆ© crĆ©Ć© Ć  partir de la section des graphiques de l'agent" -#: ../../godmode/users/configure_profile.php:351 -msgid "Manage visual console" -msgstr "GĆ©rer la console visuelle" +#: ../../operation/agentes/datos_agente.php:173 +msgid "Received data from" +msgstr "DonnĆ©es reƧues de" -#: ../../godmode/users/configure_profile.php:363 -msgid "View NCM data" -msgstr "Afficher les donnĆ©es du NCM" +#: ../../operation/agentes/datos_agente.php:180 +msgid "Main database" +msgstr "Base de donnĆ©es principale" -#: ../../godmode/users/configure_profile.php:367 -msgid "Operate NCM" -msgstr "Exploiter le NCM" +#: ../../operation/agentes/datos_agente.php:181 +msgid "" +"Switch between the main database and the history database to retrieve module data" +msgstr "" +"Changez entre la base de donnĆ©es principale et la base de donnĆ©es de l'historique " +"pour rĆ©cupĆ©rer les donnĆ©es du module." -#: ../../godmode/users/configure_profile.php:371 -msgid "Manage NCM" -msgstr "GĆ©rer le NCM" +#: ../../operation/agentes/datos_agente.php:211 +#: ../../operation/agentes/alerts_status.functions.php:118 +msgid "Free text for search" +msgstr "Texte libre pour recherche" -#: ../../godmode/users/configure_profile.php:378 -msgid "Manage users" -msgstr "GĆ©rer les utilisateurs" +#: ../../operation/agentes/interface_view.functions.php:170 +#: ../../operation/agentes/interface_view.functions.php:171 +msgid "Interface filter" +msgstr "Filtre d'interface" -#: ../../godmode/users/configure_profile.php:385 -msgid "Manage database" -msgstr "GĆ©rer la base de donnĆ©es" +#: ../../operation/agentes/interface_view.functions.php:489 +msgid "IfName" +msgstr "IfName" -#: ../../godmode/users/configure_profile.php:392 +#: ../../operation/agentes/interface_view.functions.php:499 +msgid "IfSpeed" +msgstr "IfSpeed" + +#: ../../operation/agentes/interface_view.functions.php:507 +msgid "IfInOctets" +msgstr "IfInOctets" + +#: ../../operation/agentes/interface_view.functions.php:515 +msgid "IfOutOctets" +msgstr "IfOutOctets" + +#: ../../operation/agentes/interface_view.functions.php:523 +msgid "% Bandwidth usage (in)" +msgstr "% d'utilisation de la bande passante (entrĆ©e)" + +#: ../../operation/agentes/interface_view.functions.php:531 +msgid "% Bandwidth usage (out)" +msgstr "% d'utilisation de la bande passante (sortie)" + +#: ../../operation/agentes/interface_view.functions.php:736 +msgid "No search parameters" +msgstr "Aucun paramĆØtre de recherche" + +#: ../../operation/agentes/snapshot_view.php:42 +msgid "Cannot connect with node to display the module data." +msgstr "Impossible de se connecter au nœud pour afficher les donnĆ©es du module." + +#: ../../operation/agentes/snapshot_view.php:90 #, php-format -msgid "%s management" -msgstr "gestion %s" +msgid "%s Snapshot data view for module (%s)" +msgstr "%s Vue de donnĆ©es d'instantanĆ© pour le module (%s)" -#: ../../godmode/users/profile_list.php:115 +#: ../../operation/agentes/snapshot_view.php:96 +#, php-format +msgid "Current data at %s" +msgstr "DonnĆ©es actuelles chez %s" + +#: ../../operation/agentes/exportdata.php:34 ../../operation/menu.php:536 +msgid "Export data" +msgstr "Exporter les donnĆ©es" + +#: ../../operation/agentes/exportdata.php:248 +msgid "Source agent" +msgstr "Agent source" + +#: ../../operation/agentes/exportdata.php:283 +msgid "No modules of type string. You can not calculate their average" +msgstr "Aucun module de type chaĆ®ne. Vous ne pouvez pas calculer leur moyenne." + +#: ../../operation/agentes/exportdata.php:375 +msgid "Export type" +msgstr "Type d'exportation" + +#: ../../operation/agentes/exportdata.php:380 +msgid "MS Excel" +msgstr "MS Excel" + +#: ../../operation/agentes/exportdata.php:381 +msgid "Average per hour/day" +msgstr "Moyenne par heure/jour" + +#: ../../operation/agentes/custom_fields.php:59 +msgid "No fields defined" +msgstr "Aucun champ dĆ©fini" + +#: ../../operation/agentes/interface_view.php:63 ../../operation/menu.php:61 +msgid "Interface view" +msgstr "Vue de l'interface" + +#: ../../operation/agentes/status_monitor.php:95 ../../operation/menu.php:58 +msgid "Monitor detail" +msgstr "DĆ©tail des moniteurs" + +#: ../../operation/agentes/status_monitor.php:119 +msgid "Monitor view" +msgstr "Vue du moniteur" + +#: ../../operation/agentes/status_monitor.php:641 +msgid "Wux server module" +msgstr "Module du serveur WUX" + +#: ../../operation/agentes/status_monitor.php:662 +msgid "Min. hours in current status" +msgstr "Heures min. dans l'Ć©tat actuel" + +#: ../../operation/agentes/status_monitor.php:765 +msgid "Not condition" +msgstr "Pas de condition" + +#: ../../operation/agentes/status_monitor.php:765 +msgid "" +"If you check this option, those elements that do NOT meet any of the requirements " +"will be shown" +msgstr "" +"Si vous cochez cette option, les Ć©lĆ©ments qui ne rĆ©pondent Ć  aucune des exigences " +"seront affichĆ©s" + +#: ../../operation/agentes/status_monitor.php:872 +msgid "Show filters" +msgstr "Afficher les filtres" + +#: ../../operation/agentes/status_monitor.php:1312 +msgid "Data Type" +msgstr "Type de donnĆ©es" + +#: ../../operation/agentes/status_monitor.php:1431 +#: ../../operation/agentes/pandora_networkmap.view.php:1743 +msgid "(Adopt) " +msgstr "(Adopter) " + +#: ../../operation/agentes/status_monitor.php:1439 +#: ../../operation/agentes/pandora_networkmap.view.php:1751 +msgid "(Unlinked) (Adopt) " +msgstr "(DissociĆ©) (Adopter) " + +#: ../../operation/agentes/status_monitor.php:1442 +#: ../../operation/agentes/pandora_networkmap.view.php:1754 +msgid "(Unlinked) " +msgstr "(DissociĆ©) " + +#: ../../operation/agentes/status_monitor.php:1980 +msgid "This group doesn't have any monitor" +msgstr "Ce groupe n'a aucun moniteur" + +#: ../../operation/agentes/status_monitor.php:1982 +msgid "Sorry no search parameters" +msgstr "Pas de paramĆØtres de recherche" + +#: ../../operation/agentes/group_view.php:180 +msgid "Summary of the status groups" +msgstr "RĆ©sumĆ© des groupes par Ć©tat" + +#: ../../operation/agentes/estado_monitores.php:51 +msgid "Tag's information" +msgstr "Information des Ć©tiquettes" + +#: ../../operation/agentes/estado_monitores.php:109 +msgid "Relationship information" +msgstr "Information des relations" + +#: ../../operation/agentes/estado_monitores.php:160 +msgid "Non-initialized modules found." +msgstr "Modules non initialisĆ©s trouvĆ©s." + +#: ../../operation/agentes/estado_monitores.php:181 +msgid "List of modules" +msgstr "Liste de modules" + +#: ../../operation/agentes/estado_monitores.php:182 +msgid "" +"To see the list of modules paginated, enable this option in the Styles " +"Configuration." +msgstr "" +"Pour afficher la liste de modules paginĆ©s, activez cette option dans la " +"configuration de styles." + +#: ../../operation/agentes/estado_monitores.php:518 +msgid "Status:" +msgstr "ƉtatĀ :" + +#: ../../operation/agentes/estado_monitores.php:524 +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" + +#: ../../operation/agentes/pandora_networkmap.view.php:1611 +msgid "Success be updated." +msgstr "Mis Ć  jour correctement" + +#: ../../operation/agentes/pandora_networkmap.view.php:1708 +msgid "Name: " +msgstr "NomĀ : " + +#: ../../operation/agentes/pandora_networkmap.view.php:1758 +msgid "Policy: " +msgstr "Politique : " + +#: ../../operation/agentes/pandora_networkmap.view.php:1855 +msgid "Data: " +msgstr "DonnĆ©es : " + +#: ../../operation/agentes/pandora_networkmap.view.php:1857 +#: ../../operation/agentes/estado_generalagente.php:817 +msgid "Last contact: " +msgstr "Dernier contact : " + +#: ../../operation/agentes/ver_agente.php:1232 +msgid "Sons" +msgstr "Fils" + +#: ../../operation/agentes/ver_agente.php:1582 +msgid "Log Viewer" +msgstr "Visionneur de journaux" + +#: ../../operation/agentes/ver_agente.php:1621 +msgid "Terminal" +msgstr "Terminal" + +#: ../../operation/agentes/ver_agente.php:1643 +msgid "Processes" +msgstr "Processus" + +#: ../../operation/agentes/estado_generalagente.php:57 +msgid "The agent has not assigned server. Maybe agent does not run fine." +msgstr "" +"L'agent n'a pas de serveur attribuĆ©. Peut-ĆŖtre l'agent ne fonctionne pas bien." + +#: ../../operation/agentes/estado_generalagente.php:265 +msgid "Remote configuration enabled" +msgstr "Configuration Ć  distance activĆ©e" + +#: ../../operation/agentes/estado_generalagente.php:328 +msgid "Agent contact" +msgstr "Contact de l'agent" + +#: ../../operation/agentes/estado_generalagente.php:335 +msgid "Refresh data" +msgstr "RafraĆ®chir les donnĆ©es" + +#: ../../operation/agentes/estado_generalagente.php:376 +msgid "Next contact" +msgstr "Contact suivant" + +#: ../../operation/agentes/estado_generalagente.php:464 +msgid "Agent info" +msgstr "Information de l'agent" + +#: ../../operation/agentes/estado_generalagente.php:477 +msgid "There is no GIS data." +msgstr "Aucune donnĆ©e GIS" + +#: ../../operation/agentes/estado_generalagente.php:598 +msgid "Agent access rate (Last 24h)" +msgstr "Taux d'accĆØs des agents (derniĆØres 24h)" + +#: ../../operation/agentes/estado_generalagente.php:638 +msgid "Active incident on this agent" +msgstr "Incident actif sur cet agent" + +#: ../../operation/agentes/estado_generalagente.php:797 +msgid "Events info (24hr.)" +msgstr "Information des Ć©vĆ©nements (24h)" + +#: ../../operation/agentes/estado_generalagente.php:942 +msgid "Interface information (SNMP)" +msgstr "Information de l'interface (SNMP)" + +#: ../../operation/agentes/alerts_status.functions.php:48 +msgid "Alert(s) validated" +msgstr "Alertes validĆ©es" + +#: ../../operation/agentes/alerts_status.functions.php:49 +msgid "Error processing alert(s)" +msgstr "Erreur de traitement des alertes" + +#: ../../operation/agentes/alerts_status.functions.php:119 +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 +msgid "Report of State" +msgstr "Rapport d'Ć©tat" + +#: ../../operation/messages/message_list.php:46 +#: ../../operation/messages/message_list.php:55 +#: ../../operation/messages/message_edit.php:66 +msgid "Sent messages" +msgstr "Messages envoyĆ©s" + +#: ../../operation/messages/message_list.php:46 +#: ../../operation/messages/message_list.php:50 +#: ../../operation/messages/message_edit.php:54 +msgid "Received messages" +msgstr "Messages reƧus" + +#: ../../operation/messages/message_list.php:64 +#: ../../operation/messages/message_list.php:304 +#: ../../operation/messages/message_edit.php:78 +msgid "Create message" +msgstr "CrĆ©er un message" + +#: ../../operation/messages/message_list.php:136 +msgid "Not deleted. Error deleting messages" +msgstr "Erreur de suppression des messages" + +#: ../../operation/messages/message_list.php:144 +#: ../../operation/messages/message_list.php:153 +msgid "You have" +msgstr "Vous avez" + +#: ../../operation/messages/message_list.php:144 +msgid "sent message(s)" +msgstr "message(s) envoyĆ©(s)" + +#: ../../operation/messages/message_list.php:153 +msgid "unread message(s)" +msgstr "message(s) non lu(s)" + +#: ../../operation/messages/message_list.php:164 +msgid "There are no messages." +msgstr "Il n'y a pas de messages." + +#: ../../operation/messages/message_list.php:194 +#: ../../operation/messages/message_edit.php:269 +msgid "Destination" +msgstr "Destination" + +#: ../../operation/messages/message_list.php:196 +#: ../../operation/messages/message_edit.php:265 +msgid "Sender" +msgstr "ExpĆ©diteur" + +#: ../../operation/messages/message_list.php:214 +msgid "Click to read" +msgstr "Cliquez ici pour le lire" + +#: ../../operation/messages/message_list.php:218 +msgid "Mark as unread" +msgstr "Marquer comme non lu" + +#: ../../operation/messages/message_list.php:224 +#: ../../operation/messages/message_list.php:228 +msgid "Message unread - click to read" +msgstr "Message non lu - cliquez pour le lire" + +#: ../../operation/messages/message_list.php:256 +msgid "No Subject" +msgstr "Aucun sujet" + +#: ../../operation/messages/message_edit.php:90 +msgid "Compose message" +msgstr "RĆ©diger un message" + +#: ../../operation/messages/message_edit.php:119 +msgid "This message does not exist in the system" +msgstr "Ce message n'existe pas dans le systĆØme." + +#: ../../operation/messages/message_edit.php:188 +msgid "wrote" +msgstr "a Ć©crit" + +#: ../../operation/messages/message_edit.php:203 +msgid "Delete conversation" +msgstr "Supprimer la conversation" + +#: ../../operation/messages/message_edit.php:211 +msgid "Reply" +msgstr "RĆ©pondre" + +#: ../../operation/messages/message_edit.php:226 +msgid "User or group must be selected." +msgstr "L'utilisateur ou le groupe doit ĆŖtre sĆ©lectionnĆ©." + +#: ../../operation/messages/message_edit.php:244 +#, php-format +msgid "Message successfully sent to user %s" +msgstr "Message envoyĆ© Ć  l'utilisateur %s correctement" + +#: ../../operation/messages/message_edit.php:245 +#, php-format +msgid "Error sending message to user %s" +msgstr "Erreur, message non envoyĆ© Ć  l'utilisateur %s" + +#: ../../operation/messages/message_edit.php:324 +msgid "Select user" +msgstr "SĆ©lectionner l'utilisateur" + +#: ../../operation/messages/message_edit.php:330 +msgid "OR" +msgstr "OU" + +#: ../../operation/messages/message_edit.php:341 +msgid "Select group" +msgstr "Choisir un groupe" + +#: ../../operation/messages/message_edit.php:396 +msgid "Send message" +msgstr "Envoyer le message" + +#: ../../operation/network/network_report.php:67 +#: ../../operation/network/network_usage_map.php:124 +msgid "Data to show" +msgstr "DonnĆ©es Ć  afficher" + +#: ../../operation/network/network_report.php:78 +#: ../../operation/network/network_usage_map.php:104 +msgid "Number of result to show" +msgstr "Nombre de rĆ©sultat Ć  afficher" + +#: ../../operation/network/network_report.php:109 +#: ../../operation/network/network_usage_map.php:82 +msgid "Time Period" +msgstr "PĆ©riode de temps" + +#: ../../operation/network/network_report.php:121 +#: ../../operation/network/network_usage_map.php:94 +#: ../../operation/netflow/nf_live_view.php:292 +msgid "Select this checkbox to write interval instead a date." +msgstr "Cochez cette case pour Ć©crire un intervalle Ć  la place d'une date." + +#: ../../operation/network/network_report.php:186 +#: ../../operation/network/network_report.php:233 +msgid "Flows" +msgstr "Flux" + +#: ../../operation/network/network_report.php:197 +#: ../../operation/network/network_report.php:235 +msgid "Packets" +msgstr "Paquets" + +#: ../../operation/network/network_report.php:256 +#, php-format +msgid "Filtered by port %s. Click here to remove the filter." +msgstr "FiltrĆ© par port %s. Cliquez ici pour supprimer le filtre." + +#: ../../operation/network/network_report.php:256 +#, php-format +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:106 +msgid "Network usage map" +msgstr "Carte dā€™utilisation du rĆ©seau" + +#: ../../operation/network/network_usage_map.php:139 +msgid "Show netflow map" +msgstr "Afficher la carte netflow" + +#: ../../operation/network/network_usage_map.php:175 +msgid "No data retrieved" +msgstr "Aucune donnĆ©e rĆ©cupĆ©rĆ©e" + +#: ../../operation/netflow/nf_live_view.php:131 +#: ../../operation/netflow/nf_live_view.php:153 +#: ../../operation/netflow/nf_live_view.php:159 +msgid "Netflow live view" +msgstr "Netflow en temps rĆ©el" + +#: ../../operation/netflow/nf_live_view.php:170 +msgid "Error creating filter" +msgstr "Erreur de crĆ©ation du filtre" + +#: ../../operation/netflow/nf_live_view.php:172 +msgid "Filter created successfully" +msgstr "Filtre crĆ©Ć© correctement" + +#: ../../operation/netflow/nf_live_view.php:191 +msgid "Filter updated successfully" +msgstr "Filtre mis Ć  jour correctement" + +#: ../../operation/netflow/nf_live_view.php:192 +msgid "Error updating filter" +msgstr "Erreur de mise Ć  jour du filtre" + +#: ../../operation/netflow/nf_live_view.php:216 +msgid "Draw live filter" +msgstr "Dessiner un filtre en temps rĆ©el" + +#: ../../operation/netflow/nf_live_view.php:250 +msgid "Connection" +msgstr "Connexion" + +#: ../../operation/netflow/nf_live_view.php:303 +#: ../../operation/incidents/integriaims_export_csv.php:84 +#: ../../operation/incidents/configure_integriaims_incident.php:325 +#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:323 +#: ../../operation/incidents/list_integriaims_incidents.php:359 +msgid "Resolution" +msgstr "RĆ©solution" + +#: ../../operation/netflow/nf_live_view.php:303 +msgid "The interval will be divided in chunks the length of the resolution." +msgstr "L'intervalle sera divisĆ© en morceaux de la longueur de la rĆ©solution." + +#: ../../operation/netflow/nf_live_view.php:404 +msgid "Select a filter" +msgstr "SĆ©lectionner un filtre" + +#: ../../operation/netflow/nf_live_view.php:477 +msgid "IP address resolution" +msgstr "RĆ©solution de l'adresse IP" + +#: ../../operation/netflow/nf_live_view.php:477 +msgid "Resolve the IP addresses to get their hostnames." +msgstr "RĆ©soudre les adresses IP pour obtenir leurs noms d'hĆ“te" + +#: ../../operation/netflow/nf_live_view.php:480 +msgid "Source ip" +msgstr "IP source" + +#: ../../operation/netflow/nf_live_view.php:503 +msgid "Draw" +msgstr "Dessiner" + +#: ../../operation/netflow/nf_live_view.php:507 +msgid "Save as new filter" +msgstr "Enregistrer comme nouveau filtre" + +#: ../../operation/netflow/nf_live_view.php:508 +msgid "Update current filter" +msgstr "Mise Ć  jour de ce filtre" + +#: ../../operation/netflow/nf_live_view.php:522 +msgid "No filter selected" +msgstr "Aucun filtre sĆ©lectionnĆ©" + +#: ../../operation/netflow/netflow_explorer.php:37 ../../operation/menu.php:92 +msgid "Netflow explorer" +msgstr "Explorateur Netflow" + +#: ../../operation/snmpconsole/snmp_statistics.php:85 +msgid "SNMP Statistics" +msgstr "Statistiques SNMP" + +#: ../../operation/snmpconsole/snmp_statistics.php:102 +#: ../../operation/snmpconsole/snmp_view.php:697 +#: ../../operation/snmpconsole/snmp_view.php:806 ../../operation/menu.php:141 +msgid "SNMP" +msgstr "SNMP" + +#: ../../operation/snmpconsole/snmp_statistics.php:156 +#: ../../operation/snmpconsole/snmp_view.php:720 +msgid "There are no SNMP traps in database" +msgstr "Aucun dĆ©routement SNMP dans la base de donnĆ©es" + +#: ../../operation/snmpconsole/snmp_statistics.php:169 +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 +msgid "Number" +msgstr "Nombre" + +#: ../../operation/snmpconsole/snmp_statistics.php:197 +#: ../../operation/snmpconsole/snmp_view.php:962 +msgid "View agent details" +msgstr "Voir les dĆ©tails de l'agent" + +#: ../../operation/snmpconsole/snmp_statistics.php:237 +msgid "Traps received by Enterprise String" +msgstr "DĆ©routements reƧus par la chaĆ®ne d'Enterprise" + +#: ../../operation/snmpconsole/snmp_statistics.php:250 +msgid "Trap Enterprise String" +msgstr "DĆ©routement Enterprise de chaĆ®ne" + +#: ../../operation/snmpconsole/snmp_browser.php:77 +msgid "SNMP Browser" +msgstr "Explorateur SNMP" + +#: ../../operation/snmpconsole/snmp_browser.php:218 +msgid "Adding modules in progress" +msgstr "Ajout de modules en cours" + +#: ../../operation/snmpconsole/snmp_browser.php:552 +msgid "Create policy" +msgstr "CrĆ©er une politique" + +#: ../../operation/snmpconsole/snmp_browser.php:644 +msgid "Are you sure you want add module?" +msgstr "Ɗtes-vous sĆ»r de vouloir ajouter un moduleĀ ?" + +#: ../../operation/snmpconsole/snmp_view.php:602 +msgid "" +"Search by any alphanumeric field in the trap.\n" +"\t\tREMEMBER trap sources need to be searched by IP Address" +msgstr "" +"Rechercher par n'importe quel champ alphanumĆ©rique dans le dĆ©routement.\n" +"\t\tN'OUBLIEZ PAS qu'il faut rechercher les sources de dĆ©routements par adresse " +"IP." + +#: ../../operation/snmpconsole/snmp_view.php:628 +msgid "Search by trap type" +msgstr "Rechercher par type de dĆ©routement" + +#: ../../operation/snmpconsole/snmp_view.php:652 +msgid "Group by Enterprise String/IP" +msgstr "Regrouper par chaĆ®ne Enterprise / IP" + +#: ../../operation/snmpconsole/snmp_view.php:718 +msgid "There are no SNMP traps in database that contains this filter" +msgstr "Aucun dĆ©routement SNMP dans la base de donnĆ©es ne contient ce filtre" + +#: ../../operation/snmpconsole/snmp_view.php:758 +msgid "Refresh every" +msgstr "Actualiser toutes les" + +#: ../../operation/snmpconsole/snmp_view.php:770 +msgid "SNMP Traps" +msgstr "DĆ©routements SNMP" + +#: ../../operation/snmpconsole/snmp_view.php:871 +msgid "Trap subtype" +msgstr "Sous-type de dĆ©routements" + +#: ../../operation/snmpconsole/snmp_view.php:1076 +msgid "Variable bindings:" +msgstr "Liens variables :" + +#: ../../operation/snmpconsole/snmp_view.php:1089 +msgid "See more details" +msgstr "Afficher plus de dĆ©tails" + +#: ../../operation/snmpconsole/snmp_view.php:1101 +msgid "Enterprise String:" +msgstr "ChaĆ®ne Enterprise :" + +#: ../../operation/snmpconsole/snmp_view.php:1153 +msgid "Trap type:" +msgstr "Type de dĆ©routement :" + +#: ../../operation/snmpconsole/snmp_view.php:1179 +msgid "Count:" +msgstr "Total :" + +#: ../../operation/snmpconsole/snmp_view.php:1183 +msgid "First trap:" +msgstr "Premier dĆ©routement :" + +#: ../../operation/snmpconsole/snmp_view.php:1187 +msgid "Last trap:" +msgstr "Dernier dĆ©routement :" + +#: ../../operation/snmpconsole/snmp_view.php:1208 +msgid "No matching traps found" +msgstr "Aucun dĆ©routement concordant retrouvĆ©" + +#: ../../operation/snmpconsole/snmp_mib_uploader.php:47 ../../operation/menu.php:131 +msgid "MIB uploader" +msgstr "TĆ©lĆ©verseur MIB" + +#: ../../operation/snmpconsole/snmp_mib_uploader.php:86 +msgid "" +"MIB files will be installed on the system. Please note that a MIB may depend on " +"other MIB. To customize trap definitions use the SNMP trap editor." +msgstr "" +"Les fichiers MIB seront installĆ©s sur le systĆØme. Veuillez noter qu'un MIB peut " +"dĆ©pendre d'un autre MIB. Pour personnaliser les dĆ©finitions de dĆ©routement, " +"utilisez l'Ć©diteur de trap SNMP." + +#: ../../operation/menu.php:96 +msgid "Netflow Live View" +msgstr "Netflow en temps rĆ©el" + +#: ../../operation/menu.php:126 +msgid "SNMP browser" +msgstr "Navigateur SNMP" + +#: ../../operation/menu.php:135 +msgid "SNMP filters" +msgstr "Filtres SNMP" + +#: ../../operation/menu.php:260 ../../operation/gis_maps/gis_map.php:35 +msgid "GIS Maps" +msgstr "Cartes GIS" + +#: ../../operation/menu.php:265 +msgid "List of Gis maps" +msgstr "Liste de cartes GIS" + +#: ../../operation/menu.php:416 +msgid "RSS" +msgstr "RSS" + +#: ../../operation/menu.php:429 +msgid "Sound Console" +msgstr "Console sonore" + +#: ../../operation/menu.php:432 +msgid "No alert" +msgstr "Pas dā€™alerte" + +#: ../../operation/menu.php:433 +msgid "Silence alarm" +msgstr "ArrĆŖter lā€™alarme" + +#: ../../operation/menu.php:442 ../../operation/events/sound_events.php:63 +msgid "Sound Events" +msgstr "ƉvĆ©nements sonores" + +#: ../../operation/menu.php:464 ../../operation/events/events.php:1502 +msgid "Sound Alerts" +msgstr "Alertes sonores" + +#: ../../operation/menu.php:486 +msgid "Configure user notifications" +msgstr "Configurer les notifications utilisateur" + +#: ../../operation/menu.php:506 +msgid "Integria IMS statistics" +msgstr "Statistiques Integria IMS" + +#: ../../operation/menu.php:507 +msgid "Integria IMS ticket list" +msgstr "Liste des tickets Integria IMS" + +#: ../../operation/menu.php:520 +msgid "Messages List" +msgstr "Liste de messages" + +#: ../../operation/menu.php:521 +msgid "New message" +msgstr "Nouveau message" + +#: ../../operation/menu.php:542 +msgid "Scheduled downtime" +msgstr "Temps d'arrĆŖt planifiĆ©" + +#: ../../operation/menu.php:616 +msgid "Tools" +msgstr "Outils" + +#: ../../operation/gis_maps/gis_map.php:200 +msgid "No maps found" +msgstr "Aucune carte retrouvĆ©e" + +#: ../../operation/gis_maps/gis_map.php:219 +msgid "Caution: Do you want delete the map?" +msgstr "Attention : ĆŖtes-vous sĆ»r(e) de vouloir supprimer la carte ?" + +#: ../../operation/gis_maps/gis_map.php:226 +msgid "Do you want to set default the map?" +msgstr "Voulez-vous configurer la carte par dĆ©faut ?" + +#: ../../operation/gis_maps/gis_map.php:234 +msgid "There was error on setup the default map." +msgstr "Erreur de configuration par dĆ©faut de la carte" + +#: ../../operation/gis_maps/render_view.php:145 +msgid "Show link to public GIS map" +msgstr "Afficher le lien vers la carte SIG publique" + +#: ../../operation/gis_maps/render_view.php:170 +msgid "Filter by status" +msgstr "Filtrer par Ć©tat" + +#: ../../operation/gis_maps/ajax.php:237 ../../operation/gis_maps/ajax.php:275 +#: ../../operation/gis_maps/ajax.php:444 +msgid "Position (Lat, Long, Alt)" +msgstr "Position (Lat, Long, Alt)" + +#: ../../operation/gis_maps/ajax.php:238 +msgid "Start contact" +msgstr "Commencer le contact" + +#: ../../operation/gis_maps/ajax.php:240 +msgid "Num reports" +msgstr "Rapports numĆ©riques" + +#: ../../operation/gis_maps/ajax.php:279 ../../operation/gis_maps/ajax.php:448 +msgid "Default position of map." +msgstr "Position de la carte par dĆ©faut" + +#: ../../operation/gis_maps/ajax.php:339 +msgid "Satellite Version" +msgstr "Version Satellite" + +#: ../../operation/gis_maps/ajax.php:385 ../../operation/gis_maps/ajax.php:502 +msgid "Number of non-validated critical events" +msgstr "Nombre d'Ć©vĆ©nements critiques non validĆ©s" + +#: ../../operation/gis_maps/ajax.php:395 ../../operation/gis_maps/ajax.php:512 +msgid "Alert(s) fired" +msgstr "Alerte(s) dĆ©clenchĆ©e(s)" + +#: ../../operation/incidents/integriaims_export_csv.php:80 +msgid "ID Ticket" +msgstr "ID du ticket" + +#: ../../operation/incidents/integriaims_export_csv.php:82 +#: ../../operation/incidents/list_integriaims_incidents.php:517 +msgid "Group/Company" +msgstr "Groupe/SocietĆ©" + +#: ../../operation/incidents/integriaims_export_csv.php:87 +msgid "Started" +msgstr "DĆ©marrĆ©" + +#: ../../operation/incidents/integriaims_export_csv.php:88 +#: ../../operation/incidents/configure_integriaims_incident.php:282 +#: ../../operation/incidents/list_integriaims_incidents.php:345 +#: ../../operation/incidents/list_integriaims_incidents.php:521 +msgid "Creator" +msgstr "CrĆ©ateur" + +#: ../../operation/incidents/incident_statistics.php:29 +msgid "Incidents by status" +msgstr "Incidents par Ć©tat" + +#: ../../operation/incidents/incident_statistics.php:32 +msgid "Incidents by priority" +msgstr "Incidents par prioritĆ©" + +#: ../../operation/incidents/incident_statistics.php:35 +msgid "Incidents by group" +msgstr "Incidents par groupe" + +#: ../../operation/incidents/incident_statistics.php:38 +msgid "Incidents by user" +msgstr "Incidents par utilisateur" + +#: ../../operation/incidents/configure_integriaims_incident.php:26 +msgid "Update Integria IMS Ticket" +msgstr "Mettre Ć  jour le ticket Integria IMS" + +#: ../../operation/incidents/configure_integriaims_incident.php:28 +msgid "Create Integria IMS Ticket" +msgstr "CrĆ©er un ticket Integria IMS" + +#: ../../operation/incidents/configure_integriaims_incident.php:123 +msgid "Successfully created in Integria IMS" +msgstr "CrĆ©Ć© correctement dans Integria IMS" + +#: ../../operation/incidents/configure_integriaims_incident.php:124 +msgid "Could not be created in Integria IMS" +msgstr "Impossible de crĆ©er dans Integria IMS" + +#: ../../operation/incidents/configure_integriaims_incident.php:144 +msgid "Successfully updated in Integria IMS" +msgstr "Mise Ć  jour rĆ©ussie dans Integria IMS" + +#: ../../operation/incidents/configure_integriaims_incident.php:145 +msgid "Could not be updated in Integria IMS" +msgstr "N'a pas pu ĆŖtre mis Ć  jour dans Integria IMS" + +#: ../../operation/incidents/configure_integriaims_incident.php:294 +msgid "" +"This field corresponds to the Integria IMS user specified in Integria IMS setup" +msgstr "" +"Ce champ correspond Ć  l'utilisateur Integria IMS spĆ©cifiĆ© dans la configuration " +"Integria IMS" + +#: ../../operation/incidents/configure_integriaims_incident.php:352 +#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:206 +msgid "File name" +msgstr "Nom du fichier" + +#: ../../operation/incidents/configure_integriaims_incident.php:354 +#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:208 +msgid "Attachment description" +msgstr "Description des piĆØces jointes" + +#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:77 +msgid "Not yet" +msgstr "Pas encore" + +#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:81 +msgid "Not closed yet" +msgstr "Pas encore fermĆ©" + +#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:115 +#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:246 +msgid "Filename" +msgstr "Nom du dossier" + +#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:142 +msgid "File successfully deleted" +msgstr "Fichier supprimĆ© correctement" + +#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:143 +msgid "File could not be deleted" +msgstr "Le fichier n'a pas pu ĆŖtre supprimĆ©." + +#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:222 +msgid "Add attachment" +msgstr "Ajouter une piĆØce jointe" + +#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:224 +#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:397 +msgid "Attached files" +msgstr "Fichiers joints" + +#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:282 +msgid "Comment successfully added" +msgstr "Commentaire ajoutĆ© correctement" + +#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:283 +msgid "Comment could not be added" +msgstr "Le commentaire n'a pas pu ĆŖtre ajoutĆ©." + +#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:309 +msgid "No comments found" +msgstr "Aucun commentaire" + +#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:349 +msgid "Created by" +msgstr "CrĆ©Ć© par" + +#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:350 +msgid "Owned by" +msgstr "PropriĆ©taire" + +#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:351 +msgid "Closed by" +msgstr "FermĆ© par" + +#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:368 +msgid "Closed at" +msgstr "FermĆ© Ć " + +#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:379 +msgid "People" +msgstr "Personnes" + +#: ../../operation/incidents/list_integriaims_incidents.php:24 +msgid "Integria IMS Tickets" +msgstr "Tickets Integria IMS" + +#: ../../operation/incidents/list_integriaims_incidents.php:317 +msgid "Text filter" +msgstr "Filtre de texte" + +#: ../../operation/incidents/list_integriaims_incidents.php:381 +msgid "Created from" +msgstr "CrĆ©Ć© Ć  partir de" + +#: ../../operation/incidents/list_integriaims_incidents.php:393 +msgid "Created to" +msgstr "CrĆ©Ć© vers" + +#: ../../operation/incidents/list_integriaims_incidents.php:518 +msgid "Status/Resolution" +msgstr "Ɖtat/RĆ©solution" + +#: ../../operation/incidents/list_integriaims_incidents.php:520 +msgid "Updated/Started" +msgstr "Mis Ć  jour/DĆ©marrĆ©" + +#: ../../operation/incidents/list_integriaims_incidents.php:564 +msgid "No tickets to show" +msgstr "Aucun ticket Ć  afficher" + +#: ../../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 +#: ../../operation/search_main.php:74 +#, php-format +msgid "%s Found" +msgstr "%s trouvĆ©s" + +#: ../../operation/search_main.php:64 +msgid "Users found" +msgstr "Utilisateurs trouvĆ©s" + +#: ../../operation/search_main.php:66 +msgid "Graphs found" +msgstr "Graphiques trouvĆ©s" + +#: ../../operation/search_main.php:68 +msgid "Reports found" +msgstr "Rapports trouvĆ©s" + +#: ../../operation/search_main.php:83 +#, php-format +msgid "Show %s of %s. View all matches" +msgstr "Afficher %s de %s. Voir toutes les concordances." + +#: ../../operation/reporting/reporting_viewer.php:249 +msgid "View Report" +msgstr "Afficher le rapport" + +#: ../../operation/reporting/reporting_viewer.php:291 +msgid "Set initial date" +msgstr "DĆ©finir la date initiale" + +#: ../../operation/reporting/reporting_viewer.php:321 +msgid "Invalid date selected. Initial date must be before end date." +msgstr "" +"Date sĆ©lectionnĆ©e non valide. La date initiale doit ĆŖtre antĆ©rieure Ć  la date de " +"fin." + +#: ../../operation/reporting/reporting_viewer.php:426 +#: ../../operation/reporting/graph_viewer.php:505 +msgid "Invalid date selected" +msgstr "Date sĆ©lectionnĆ©e non valide" + +#: ../../operation/reporting/custom_reporting.php:28 +#: ../../operation/reporting/graph_viewer.php:539 +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 +msgid "Graph defined" +msgstr "Graphique dĆ©fini" + +#: ../../operation/reporting/graph_viewer.php:383 +msgid "Equalize maxiddmum thresholds" +msgstr "Egaliser les seuils maximaux" + +#: ../../operation/reporting/graph_viewer.php:383 +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 "" +"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 +msgid "Zoom x1" +msgstr "Zoom x1" + +#: ../../operation/reporting/graph_viewer.php:393 +msgid "Zoom x2" +msgstr "Zoom x2" + +#: ../../operation/reporting/graph_viewer.php:394 +msgid "Zoom x3" +msgstr "Zoom x3" + +#: ../../operation/reporting/graph_viewer.php:513 +msgid "Custom graph viewer" +msgstr "Affichage personnalisĆ© du tableau" + +#: ../../operation/events/sound_events.php:164 +msgid "Sound console" +msgstr "Console sonore" + +#: ../../operation/events/sound_events.php:256 +msgid "Sounds" +msgstr "ƉvĆ©nements sonores" + +#: ../../operation/events/sound_events.php:283 +msgid "Events not found" +msgstr "ƉvĆ©nements introuvables" + +#: ../../operation/events/events_rss.php:195 +msgid "Your IP is not into the IP list with API access." +msgstr "Votre adresse IP n'est pas dans la liste IP avec accĆØs Ć  l'API" + +#: ../../operation/events/events_rss.php:214 +msgid "The URL of your feed has bad hash." +msgstr "L'URL de votre flux a un mauvais hachage." + +#: ../../operation/events/events.php:792 +msgid "Validate events" +msgstr "Valider les Ć©vĆ©nements" + +#: ../../operation/events/events.php:809 +msgid "Validate event" +msgstr "Valider l'Ć©vĆ©nement" + +#: ../../operation/events/events.php:844 +msgid "Change to in progress status" +msgstr "Passer Ć  Ć©tat en cours" + +#: ../../operation/events/events.php:869 +msgid "Delete events" +msgstr "Supprimer les Ć©vĆØnements" + +#: ../../operation/events/events.php:1323 +msgid "Event viewer" +msgstr "Visionneur d'Ć©vĆ©nements" + +#: ../../operation/events/events.php:1370 +msgid "History event list" +msgstr "Liste des Ć©vĆ©nements de l'historique" + +#: ../../operation/events/events.php:1381 +msgid "RSS Events" +msgstr "ƉvĆ©nements RSS" + +#: ../../operation/events/events.php:1392 +msgid "Export to CSV file" +msgstr "Exporter dans un fichier CSV" + +#: ../../operation/events/events.php:1403 ../../operation/events/events.php:1451 +msgid "Sound events" +msgstr "ƉvĆ©nements sonores" + +#: ../../operation/events/events.php:1456 +msgid "History" +msgstr "Historique" + +#: ../../operation/events/events.php:1531 +msgid "Errors" +msgstr "Erreurs" + +#: ../../operation/events/events.php:1688 +msgid "Search in secondary groups" +msgstr "Recherche dans les groupes secondaires" + +#: ../../operation/events/events.php:1878 +msgid "Id source event" +msgstr "ƉvĆ©nements de source d'ID" + +#: ../../operation/events/events.php:1936 +msgid "From (date:time)" +msgstr "Du (date:heure)" + +#: ../../operation/events/events.php:1994 +msgid "To (date:time)" +msgstr "ƀ (date:heure)" + +#: ../../operation/events/events.php:2005 +msgid "Filter custom data by field name" +msgstr "Filtrer les donnĆ©es personnalisĆ©es par nom de champ" + +#: ../../operation/events/events.php:2006 +msgid "Filter custom data by field value" +msgstr "Filtrer les donnĆ©es personnalisĆ©es par valeur de champ" + +#: ../../operation/events/events.php:2021 +msgid "Custom data filter" +msgstr "Filtre de donnĆ©es personnalisĆ©" + +#: ../../operation/events/events.php:2043 +msgid "Custom data search" +msgstr "Recherche de donnĆ©es personnalisĆ©e" + +#: ../../operation/events/events.php:2168 +msgid "Current filter" +msgstr "Filtre actuel" + +#: ../../operation/events/events.php:2173 +msgid "Not set." +msgstr "Non paramĆ©trĆ©." + +#: ../../operation/events/events.php:2186 +msgid "Any status." +msgstr "Tout Ć©tat." + +#: ../../operation/events/events.php:2190 +msgid "New events." +msgstr "Nouveaux Ć©vĆ©nements." + +#: ../../operation/events/events.php:2194 +msgid "Validated." +msgstr "ValidĆ©." + +#: ../../operation/events/events.php:2198 +msgid "In proccess." +msgstr "En cours." + +#: ../../operation/events/events.php:2202 +msgid "Not validated." +msgstr "Pas validĆ©." + +#: ../../operation/events/events.php:2214 +msgid "Any time." +msgstr "ƀ tout moment." + +#: ../../operation/events/events.php:2216 ../../operation/events/events.php:2793 +msgid "Last hour." +msgstr "DerniĆØre heure." + +#: ../../operation/events/events.php:2218 +#, php-format +msgid "Last %d hours." +msgstr "%dĀ derniĆØres heures." + +#: ../../operation/events/events.php:2226 +msgid "Duplicated" +msgstr "DupliquĆ©" + +#: ../../operation/events/events.php:2229 +msgid "All events." +msgstr "Tous les Ć©vĆ©nements." + +#: ../../operation/events/events.php:2233 +msgid "Group agents." +msgstr "Agents du groupe." + +#: ../../operation/events/events.php:2349 +msgid "Execute event response" +msgstr "ExĆ©cuter la rĆ©ponse Ć  l'Ć©vĆ©nement" + +#: ../../operation/events/events.php:2362 +#, php-format +msgid "A maximum of %s event custom responses can be selected" +msgstr "Un maximum de %s rĆ©ponses personnalisĆ©es d'Ć©vĆ©nement peut ĆŖtre sĆ©lectionnĆ©" + +#: ../../operation/events/events.php:2367 +msgid "Please, select an event" +msgstr "Veuillez sĆ©lectionner un Ć©vĆ©nement" + +#: ../../operation/events/events.php:2456 +msgid "has at least" +msgstr "a au moins" + +#: ../../operation/events/events.php:2458 +msgid "events" +msgstr "Ć©vĆ©nements" + +#: ../../operation/events/events.php:2795 +msgid "hours." +msgstr "heures." + +#: ../../operation/search_policies.php:37 +msgid "Id_group" +msgstr "Id_group" + +#: ../../general/footer.php:56 +#, php-format +msgid "Page generated on %s" +msgstr "Page gĆ©nĆ©rĆ©e dans %s" + +#: ../../general/php7_message.php:38 +msgid "Access Help" +msgstr "Aide d'accĆØs" + +#: ../../general/php7_message.php:41 +msgid "Warning php version" +msgstr "Avertissement version php" + +#: ../../general/first_task/incidents.php:21 +msgid "There are no incidents defined yet." +msgstr "Aucun incident dĆ©fini jusqu'Ć  prĆ©sent" + +#: ../../general/first_task/incidents.php:31 +#: ../../general/first_task/incidents.php:46 +msgid "Create Incidents" +msgstr "CrĆ©er des incidents" + +#: ../../general/first_task/incidents.php:34 #, php-format msgid "" -"This node is configured with centralized mode. All profiles information is " -"read only. Go to %s to manage it." +"Besides receiving and processing data to monitor systems or applications,\n" +"\t\t\tyou're also required to monitor possible incidents which might take place " +"on these subsystems within the system's monitoring process.\n" +"\t\t\tFor it, the %s team has designed an incident manager from which any user is " +"able to open incidents,\n" +"\t\t\tthat explain what's happened on the network, and update them with comments " +"and files, at any time, in case there is a need to do so.\n" +"\t\t\tThis system allows users to work as a team, along with different roles and " +"work-flow systems which allow an incident to be\n" +"\t\t\tmoved from one group to another, and members from different groups and " +"different people could work on the same incident, sharing information and files.\n" +"\t\t" msgstr "" -"Ce nœud est configurĆ© en mode centralisĆ©. Toutes les informations des profils " -"sont en lecture seule. Allez vers %s pour le gĆ©rer." +"Outre la rĆ©ception et le traitement de donnĆ©es pour superviser des systĆØmes ou " +"des applications,\n" +"\t\t\tvous devez aussi superviser des possibles incidentes qui peuvent se passer " +"dans ces sous-systĆØmes dans le processus de supervision systĆØme.\n" +"\t\t\tPour Ƨa, l'Ć©quipe %s a conƧu un gestionnaire d'incidences depuis lesquelles " +"n'importe quel utilisateur peut ouvris des incidentes,\n" +"\t\t\tqui expliquent ce qui s'est passĆ© dans le rĆ©seau, et les mettre Ć  jour avec " +"des commentaires et des fichiers, Ć  n'importe quel moment, s'il est nĆ©cessaire de " +"le faire.\n" +"\t\t\tCe systĆØme permet des utilisateurs de travailler comme une Ć©quipe, avec des " +"diffĆ©rents roles et systĆØmes de flux de travail qui permettent qu'un incident se\n" +"\t\t\tdĆ©place vers un groupe ou un autre, et les membres des diffĆ©rentes groupes " +"et diffĆ©rentes personnes peuvent travailler sur le mĆŖme incidente, partageant des " +"informations et des fichiers.\n" +"\t\t" -#: ../../godmode/users/profile_list.php:254 -msgid "There was a problem updating this profile" -msgstr "Erreur de mise Ć  jour du profil" +#: ../../general/first_task/recon_view.php:18 +msgid "There are no discovery tasks defined yet." +msgstr "Il n'y a pas des taches de dĆ©couverte dĆ©finis dĆ©jĆ ." -#: ../../godmode/users/profile_list.php:257 -msgid "Profile name cannot be empty" -msgstr "Le nom du profil ne peut pas ĆŖtre vide" +#: ../../general/first_task/recon_view.php:25 +msgid "Create Discovery Task" +msgstr "CrĆ©er de la tache de Discovery" -#: ../../godmode/users/profile_list.php:303 -#: ../../godmode/users/profile_list.php:306 -msgid "There was a problem creating this profile" -msgstr "Erreur de crĆ©ation du profil" - -#: ../../godmode/users/profile_list.php:456 -msgid "There are no defined profiles" -msgstr "Aucun profil dĆ©fini" - -#: ../../godmode/module_library/module_library_view.php:68 -msgid "Main view" -msgstr "Vue principale" - -#: ../../godmode/module_library/module_library_view.php:147 -msgid "View all categories" -msgstr "Voir toutes les catĆ©gories" - -#: ../../godmode/module_library/module_library_view.php:158 -msgid "More details" -msgstr "Plus de dĆ©tails" - -#: ../../godmode/module_library/module_library_view.php:160 -msgid "View in Module Library" -msgstr "Afficher dans la bibliothĆØque de modules" - -#: ../../godmode/module_library/module_library_view.php:161 -msgid "No module found" -msgstr "Aucun module trouvĆ©" - -#: ../../godmode/module_library/module_library_view.php:164 -msgid "Error loading Module Library" -msgstr "Erreur lors du chargement de la bibliothĆØque" - -#: ../../godmode/module_library/module_library_view.php:165 -msgid "Error loading category" -msgstr "Erreur de chargement de la catĆ©gorie" - -#: ../../godmode/module_library/module_library_view.php:166 -msgid "Error loading categories" -msgstr "Erreur de chargement des catĆ©gories" - -#: ../../godmode/module_library/module_library_view.php:167 -msgid "There is no such category" -msgstr "Il n'y a pas une telle catĆ©gorie" - -#: ../../godmode/module_library/module_library_view.php:168 -msgid "Error loading results" -msgstr "Erreur lors du chargement des rĆ©sultats" - -#: ../../godmode/groups/configure_group.php:87 -#: ../../godmode/groups/configure_modu_group.php:49 -msgid "There was a problem loading group" -msgstr "Erreur de chargement du groupe" - -#: ../../godmode/groups/configure_group.php:106 -msgid "Update group" -msgstr "Mettre Ć  jour le groupe" - -#: ../../godmode/groups/configure_group.php:108 -#: ../../godmode/groups/group_list.php:981 -msgid "Create group" -msgstr "CrĆ©er un groupe" - -#: ../../godmode/groups/configure_group.php:126 -#: ../../godmode/groups/group_list.php:384 -msgid "Manage agents group" -msgstr "GĆ©rer le groupe d'agents" - -#: ../../godmode/groups/configure_group.php:138 -msgid "Update Group" -msgstr "Mettre Ć  jour le groupe" - -#: ../../godmode/groups/configure_group.php:140 -msgid "Create Group" -msgstr "CrĆ©er un groupe" - -#: ../../godmode/groups/configure_group.php:178 -msgid "You have not access to the parent." -msgstr "Vous n'avez pas accĆØs au parent" - -#: ../../godmode/groups/configure_group.php:226 -msgid "Group Password" -msgstr "Mot de passe du groupe" - -#: ../../godmode/groups/configure_group.php:230 -msgid "Enable alert use in this group." -msgstr "Activer l'utilisation des alertes dans ce groupe." - -#: ../../godmode/groups/configure_group.php:234 -msgid "Propagate ACL" -msgstr "Propager ACL" - -#: ../../godmode/groups/configure_group.php:234 -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 -msgid "Contact information accessible through the _groupcontact_ macro" -msgstr "Information de contact accessible via la _groupcontact_ macro" - -#: ../../godmode/groups/configure_group.php:250 -msgid "Information accessible through the _group_other_ macro" -msgstr "Information accessible par la _group_other_ macro" - -#: ../../godmode/groups/configure_group.php:259 -msgid "Max agents allowed" -msgstr "Nombre maximum d'agents autorisĆ©s" - -#: ../../godmode/groups/configure_group.php:259 -msgid "Set the maximum of agents allowed for this group. 0 is unlimited." +#: ../../general/first_task/recon_view.php:28 +msgid "" +"Discovery Task are used to find new elements in the network. \n" +"\t\tIf it detects any item, it will add that item to the monitoring, and if that " +"item it is already being monitored, then it will \n" +"\t\tignore it or will update its information.There are three types of detection: " +"Based on ICMP (pings), \n" +"\t\tSNMP (detecting the topology of networks and " +"their interfaces), and other customized \n" +"\t\ttype. You can define your own customized recon script." msgstr "" -"DĆ©finissez le nombre maximum d'agents autorisĆ©s pour ce groupe. 0 est illimitĆ©." +"Les taches de Discovery sont utilisĆ©s pour trouver des nouveaux Ć©lĆ©ments dans le " +"rĆ©seau. \n" +"\t\tS'il dĆ©tecte quelque Ć©lĆ©ment, il ajoutera cet Ć©lĆ©ment Ć  la supervision, et si " +"cet Ć©lĆ©ment est dĆ©jĆ  en cours de supervision, il \n" +"\t\tĆ©cartera ou mettra Ć  jour son information. Il y a quelques types de " +"dĆ©tection : BasĆ©s dans le ICMP (pings), \n" +"\t\tSNMP (dĆ©tecter des topologies des rĆ©seaux et " +"leur interfaces), et d'autres personnalisĆ©s \n" +"\t\ttype. Vous pouvez dĆ©finir votre propre recon script personnalisĆ©." -#: ../../godmode/groups/modu_group_list.php:70 -#, php-format -msgid "Module groups defined in %s" -msgstr "Groupes de modules dĆ©finis dans %s" +#: ../../general/first_task/recon_view.php:37 +msgid "Discover" +msgstr "DĆ©couvrir" -#: ../../godmode/groups/modu_group_list.php:92 +#: ../../general/first_task/HA_cluster_builder.php:37 +msgid "There are no HA clusters defined yet." +msgstr "Il n'y a pas des grappes HA dĆ©finis dĆ©jĆ ." + +#: ../../general/first_task/HA_cluster_builder.php:45 +msgid "PANDORA FMS DB CLUSTER" +msgstr "GRAPPE DE BASE DE DONNƉES PANDORA FMS" + +#: ../../general/first_task/HA_cluster_builder.php:48 +msgid "" +"With Pandora FMS Enterprise you can add high availability to your Pandora FMS " +"installation by adding redundant MySQL servers" +msgstr "" +"Avec Pandora FMS Enterprise vous pouvez ajouter l'haute disponibilitĆ© Ć  votre " +"installation Pandora FMS en ajoutant des serveurs MySQL redondantes" + +#: ../../general/first_task/HA_cluster_builder.php:50 +msgid "" +"Click on \"add new node\" to start transforming your Pandora FMS DB Cluster into " +"a Pandora FMS DB Cluster." +msgstr "" +"Cliquez Ā« ajouter nouveau noeud Ā» pour commencer Ć  transformer votre Grappe de " +"Base de donnĆ©es Pandora FMS dans une Grappe de base de donnĆ©es Pandora FMS." + +#: ../../general/first_task/HA_cluster_builder.php:59 +msgid "Add new node" +msgstr "Ajouter nouveau noeud" + +#: ../../general/first_task/map_builder.php:34 +#: ../../general/first_task/map_builder.php:45 +msgid "Create Visual Console" +msgstr "CrĆ©er une console visuelle" + +#: ../../general/first_task/map_builder.php:37 #, php-format msgid "" -"This node is configured with centralized mode. All module groups information " -"is read only. Go to %s to manage it." +"%s allows users to create visual maps on which each user is able to create his or " +"her own monitoring map. The new visual console editor is much more practical, " +"although the prior visual console editor had its advantages. On the new visual " +"console, we've been successful in imitating the sensation and touch of a drawing " +"application like GIMP. We've also simplified the editor by dividing it into " +"several subject-divided tabs named 'Data', 'Preview', 'Wizard', 'List of " +"Elements' and 'Editor'. The items the %s Visual Map was designed to handle are " +"'static images', 'percentage bars', 'module graphs' and 'simple values'." msgstr "" -"Ce nœud est configurĆ© en mode centralisĆ©. Toutes les informations sur les " -"groupes de modules sont en lecture seule. Allez dans %s pour le gĆ©rer." +"%s permet aux utilisateurs de crĆ©er des cartes visuelles dans lesquelles chaque " +"utilisateur peut crĆ©er ses propres cartes de supervision. Le nouvel Ć©diteur de la " +"console visuelle et plus pratique, bien que l'Ć©diteur de la console visuelle " +"avait ses avantages. Dans la nouvelle console visuelle nous avons imitĆ© les " +"sensations et le touch d'une application de dessin telle que GIMP. Nous avons " +"aussi simplifiĆ© l'Ć©diteur le divisant entre diffĆ©rents onglets sous-divisĆ©s nomĆ©s " +"'Data', 'Preview', 'Wizard', 'List of Elements' et 'Editor'. Les Ć©lĆ©ments de la " +"carte visuelle %s Ć  gĆ©rer sont 'static images', 'percentage bars', 'module " +"graphs' et 'simple values'." -#: ../../godmode/groups/modu_group_list.php:119 -#: ../../godmode/groups/group_list.php:468 -msgid "Group successfully created" -msgstr "Groupe crĆ©Ć© correctement" +#: ../../general/first_task/cluster_builder.php:46 +msgid "There are no clusters defined yet." +msgstr "Aucune grappe dĆ©finie jusqu'Ć  prĆ©sent" -#: ../../godmode/groups/modu_group_list.php:122 -#: ../../godmode/groups/group_list.php:470 -msgid "There was a problem creating group" -msgstr "Erreur de crĆ©ation du groupe" +#: ../../general/first_task/cluster_builder.php:54 +#: ../../general/first_task/cluster_builder.php:72 +msgid "Create Cluster" +msgstr "CrĆ©er une grappe" -#: ../../godmode/groups/modu_group_list.php:127 -#: ../../godmode/groups/modu_group_list.php:163 -msgid "Each module group must have a different name" -msgstr "Chaque groupe de module doit avoir un nom diffĆ©rent" - -#: ../../godmode/groups/modu_group_list.php:131 -#: ../../godmode/groups/modu_group_list.php:167 -msgid "Module group must have a name" -msgstr "Le groupe du module doit avoir un nom" - -#: ../../godmode/groups/modu_group_list.php:155 -#: ../../godmode/groups/group_list.php:540 -msgid "Group successfully updated" -msgstr "Groupe mis Ć  jour correctement" - -#: ../../godmode/groups/modu_group_list.php:158 -#: ../../godmode/groups/group_list.php:542 -msgid "There was a problem modifying group" -msgstr "Erreur de modification du groupe" - -#: ../../godmode/groups/modu_group_list.php:227 -#: ../../godmode/groups/group_list.php:723 -msgid "There was a problem deleting group" -msgstr "Erreur de suppression du groupe" - -#: ../../godmode/groups/modu_group_list.php:229 -#: ../../godmode/groups/group_list.php:720 -msgid "Group successfully deleted" -msgstr "Groupe supprimĆ© correctement" - -#: ../../godmode/groups/modu_group_list.php:294 -msgid "There are no defined module groups" -msgstr "Aucun groupe de module dĆ©fini" - -#: ../../godmode/groups/modu_group_list.php:303 -msgid "Create module group" -msgstr "CrĆ©er un groupe de modules" - -#: ../../godmode/groups/group_list.php:309 -msgid "Tree Group view" -msgstr "Vue de groupe dā€™arbre" - -#: ../../godmode/groups/group_list.php:333 -msgid "Credential Store" -msgstr "EntrepĆ“t dā€™identifiants" - -#: ../../godmode/groups/group_list.php:339 -#, php-format -msgid "Groups defined in %s" -msgstr "Groupes dĆ©finis dans %s" - -#: ../../godmode/groups/group_list.php:365 -msgid "Edit or delete groups can cause problems with synchronization" +#: ../../general/first_task/cluster_builder.php:57 +msgid "" +"A cluster is a group of devices that provide the same service in high " +"availability." msgstr "" -"Modifier ou supprimer des groupes peut provoquer des problĆØmes avec la " -"synchronisation" +"Une grappe est un groupe de dispositifs qui fournit le mĆŖme service en haute " +"disponibilitĆ©." -#: ../../godmode/groups/group_list.php:403 +#: ../../general/first_task/cluster_builder.php:59 +msgid "Depending on how they provide that service, we can find two types:" +msgstr "" +"Il existe deux types de grappes, selon la maniĆØre dont elles fournissent ce " +"service :" + +#: ../../general/first_task/cluster_builder.php:61 +msgid "" +"Clusters to balance the service load: these are active - active (A/A) " +"mode clusters. It means that all the nodes (or machines that compose it) are " +"working. They must be working because if one stops working, it will overload the " +"others." +msgstr "" +"Grappes pour Ć©quilibrer la charge du service : grappes de mode active-" +"active (A/A). Cela signifie que tous les nœuds (ou machines qui les composent) " +"sont opĆ©rationnels. Il faut qu'ils soient en fonctionnement, parce que si un " +"d'entre eux cesse de marcher, les autres seront surchargĆ©s." + +#: ../../general/first_task/cluster_builder.php:63 +msgid "" +"Clusters to guarantee service: these are active - passive (A/P) mode " +"clusters. It means that one of the nodes (or machines that make up the cluster) " +"will be running (primary) and another won't (secondary). When the primary goes " +"down, the secondary must take over and give the service instead. Although many of " +"the elements of this cluster are active-passive, it will also have active " +"elements in both of them that indicate that the passive node is \"online\", so " +"that in the case of a service failure in the master, the active node collects " +"this information." +msgstr "" +"Grappes pour garantir le service : grappes de mode active-passive (A/P). " +"Cela signifie qu'un des nœuds (ou machines qui composent la grappe) est " +"opĆ©rationnel (primaire) et un autre ne l'es pas (secondaire). Lorsque le primaire " +"est hors service, le secondaire prend le relais et fournit le service Ć  sa place. " +"Plusieurs Ć©lĆ©ments de cette grappe sont actifs-passifs. Cependant, les deux nœuds " +"prĆ©sentent aussi des Ć©lĆ©ments actifs qui indiquent que le nœud est Ā« en ligne Ā», " +"pour que, en cas d'interruption de service dans le maĆ®tre, le nœud actif rĆ©cupĆØre " +"cette information." + +#: ../../general/first_task/network_map.php:19 +msgid "There are no network map defined yet." +msgstr "Aucune carte de rĆ©seau dĆ©finie jusqu'Ć  prĆ©sent" + +#: ../../general/first_task/network_map.php:26 +msgid "Network Map" +msgstr "Carte de rĆ©seau" + +#: ../../general/first_task/network_map.php:29 +#: ../../general/first_task/network_map.php:50 +msgid "Create Network Map" +msgstr "CrĆ©er une carte de rĆ©seau" + +#: ../../general/first_task/network_map.php:32 +msgid "" +"There is also an open-source version of the network map. \n" +"\t\t\t\t\t\t\t\tThis functionality allows to graphically display the nodes and " +"relationships, agents, modules and groups available to the user. \n" +"\t\t\t\t\t\t\t\tThere are three types of network maps:\n" +"\t\t\t" +msgstr "" +"Il y a aussi une version de source ouverte de la carte de rĆ©seau. \n" +"\t\t\t\t\t\t\t\tCette fonctionnalitĆ© permet d'afficher les nœuds, les relations, " +"les agents, les modules et les groupes disponibles pour l'utilisateur. \n" +"\t\t\t\t\t\t\t\tIl existe trois types de cartes de rĆ©seau :\n" +"\t\t\t" + +#: ../../general/first_task/network_map.php:37 +msgid "Topology Map" +msgstr "Carte topologique" + +#: ../../general/first_task/network_map.php:38 +msgid "Group Map" +msgstr "Carte de groupe" + +#: ../../general/first_task/network_map.php:39 +msgid "Radial Map (User without strict user)" +msgstr "Carte radiale (utilisateur sans droits strictes)" + +#: ../../general/first_task/network_map.php:40 +msgid "Dinamic Map" +msgstr "Carte dynamique" + +#: ../../general/first_task/network_map.php:41 +msgid "Policy Map (Only Enterprise version)" +msgstr "Carte de politique (uniquement sur la version Enterprise)" + +#: ../../general/first_task/tags.php:18 +msgid "There are no tags defined yet." +msgstr "Aucune Ć©tiquette dĆ©finie jusqu'Ć  prĆ©sent" + +#: ../../general/first_task/tags.php:25 ../../general/first_task/tags.php:35 +msgid "Create Tags" +msgstr "CrĆ©er des Ć©tiquettes" + +#: ../../general/first_task/tags.php:28 +msgid "" +"Access to modules can be configured by a tagging system.\n" +"\t\t\t\t\t\t\t\tTags are configured on the system and are assigned to the chosen " +"modules.\n" +"\t\t\t\t\t\t\t\tA user's access can therefore be restricted to modules with " +"certain tags." +msgstr "" +"L'accĆØs aux modules peuvent ĆŖtre configurĆ©s par le biais d'un systĆØme " +"d'etiquettes.\n" +"\t\t\t\t\t\t\t\tLes etiquettes sont configurĆ©es dans le systĆØme et sont attribuĆ©s " +"aux modules choisis.\n" +"\t\t\t\t\t\t\t\tL'accĆØs utilisateur peut ĆŖtre limitĆ© aux modules avec des " +"certaines Ć©tiquettes." + +#: ../../general/first_task/omnishell.php:27 +msgid "There is no command defined yet." +msgstr "Il n'y a pas de commande dĆ©finie dĆ©jĆ ." + +#: ../../general/first_task/omnishell.php:37 #, php-format msgid "" -"This node is configured with centralized mode. All groups information is read " -"only. Go to %s to manage it." +"Omnishell is an enterprise feature which allows you to execute a structured " +"command along any agent in your %s. The only requirement is to have remote " +"configuration enabled in your agent." 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." +"Omnishell est une caractĆ©ristique Enterprise qui vous permet d'exĆ©cuter une " +"commande structurĆ©e dans n'importe quel agent dans votre %s. Le seul requis est " +"d'avoir la configuration Ć  distance habilitĆ© dans votre agent." -#: ../../godmode/groups/group_list.php:473 -#: ../../godmode/groups/group_list.php:545 -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 -msgid "Group must have a name" -msgstr "Le groupe doit avoir un nom" - -#: ../../godmode/groups/group_list.php:605 -#, 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 +#: ../../general/first_task/omnishell.php:42 msgid "" -"The group has not been deleted in the metaconsole due to an error in the node " -"database" +"You can execute any command on as many agents you need, and check the execution " +"on all of them using the Omnishell Command View" 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" +"Vous pouvez exĆ©cuter n'importe quelle commande dans aussi d'agents que vous avez " +"besoin, et vĆ©rifiez l'exĆ©cution de tous eux en utilisant la Vue de commande " +"Omnishell" -#: ../../godmode/groups/group_list.php:688 -#, php-format -msgid "The group %s has been deleted in the nodes" -msgstr "Le groupe %s a Ć©tĆ© supprimĆ© dans les nœuds" +#: ../../general/first_task/omnishell.php:50 +msgid "Define a command" +msgstr "DĆ©finissez une commande" -#: ../../godmode/groups/group_list.php:730 -#, 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" +#: ../../general/first_task/custom_fields.php:19 +#: ../../general/first_task/fields_manager.php:18 +msgid "There are no custom fields defined yet." +msgstr "Aucun champ personnalisĆ© dĆ©fini jusqu'Ć  prĆ©sent" -#: ../../godmode/groups/group_list.php:775 -#: ../../godmode/groups/group_list.php:969 -msgid "There are no defined groups" -msgstr "Aucun groupe dĆ©fini" +#: ../../general/first_task/custom_fields.php:27 +#: ../../general/first_task/custom_fields.php:36 +msgid "Create Custom Fields" +msgstr "CrĆ©er des champs personnalisĆ©s" -#: ../../godmode/groups/group_list.php:924 -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 +#: ../../general/first_task/custom_fields.php:30 msgid "" -"The child groups will be updated to use the parent id of the deleted group" +"Custom fields are an easy way to personalized agent's information.\n" +"\t\t You're able to create custom fields by klicking on 'Administration' -> " +"'Manage monitoring' -> 'Manage custom fields'. " msgstr "" -"Les groupes fils seront mis Ć  jour pour utiliser l'identifiant parent du " -"groupe supprimĆ©" +"Les champs personnalisĆ©s permettent de personnaliser facilement l'information des " +"agents.\n" +"\t\t Pour crĆ©er des champs personnalisĆ©s, cliquez sur Ā« Administration Ā» -> Ā« " +"GĆ©rer surveillance Ā» -> Ā« GĆ©rer champs personnalisĆ©s Ā». " -#: ../../godmode/groups/configure_modu_group.php:31 -msgid "Module group management" -msgstr "Gestion du groupe de module" +#: ../../general/first_task/fields_manager.php:22 +msgid "Fields Manager" +msgstr "Gestionnaire de champs" + +#: ../../general/first_task/fields_manager.php:25 +msgid "Create Fields Manager" +msgstr "CrĆ©er un gestionnaire de champs" + +#: ../../general/first_task/fields_manager.php:28 +msgid "" +"Custom fields are an easy way to personalized agent's information.\n" +"\t\t\t\tYou're able to create custom fields by klicking on 'Administration' -> " +"'Manage monitoring' -> 'Manage custom fields'. " +msgstr "" +"Les champs personnalisĆ©s permettent de personnaliser facilement l'information de " +"l'agent.\n" +"\t\t\t\tPour crĆ©er des champs personnalisĆ©s, cliquez sur Ā« Administration Ā» -> Ā« " +"GĆ©rer surveillance Ā» -> Ā« GĆ©rer champs personnalisĆ©s Ā» " + +#: ../../general/first_task/fields_manager.php:34 +msgid "Create Fields " +msgstr "CrĆ©er des champs " + +#: ../../general/first_task/planned_downtime.php:18 +msgid "There are no scheduled downtime defined yet." +msgstr "Il n'ya pas des temps d'inactivitĆ© dĆ©finis programmĆ©s encore." + +#: ../../general/first_task/planned_downtime.php:22 +msgid "Scehduled Downtime" +msgstr "Temps d'inactivitĆ© programmĆ©s" + +#: ../../general/first_task/planned_downtime.php:25 +#: ../../general/first_task/planned_downtime.php:37 +msgid "Create Scheduled Downtime" +msgstr "CrĆ©er temps d'inactivitĆ© programmĆ©s" + +#: ../../general/first_task/planned_downtime.php:28 +#, php-format +msgid "" +"%s contains a scheduled downtime management system.\n" +"\t\t\t\t\t\tThis system was designed to deactivate alerts during specific " +"intervals whenever there is down time by deactivating the agent.\n" +"\t\t\t\t\t\tIf an agent is deactivated, it doesn't gather information. During " +"down time, down-time intervals aren't taken into\n" +"\t\t\t\t\t\taccount for most metrics or report types, because agents don't " +"contain any data within those intervals." +msgstr "" +"%s contient un systĆØme de gestion de temps d'arrĆŖt programmĆ©s.\n" +"\t\t\t\t\t\tCe systĆØme a Ć©tĆ© conƧu pour dĆ©sactiver des alertes pendant des temps " +"spĆ©cifiques lors du temps d'arrĆŖt en dĆ©sactivant l'agent.\n" +"\t\t\t\t\t\tS'il y a un agent dĆ©sactivĆ©, il ne recueille pas des informations. " +"Pendant ce temps d'inactivitĆ©, les temps d'inactivitĆ© ne sont pas tenus sur\n" +"\t\t\t\t\t\tcompte pour la majoritĆ© des mĆ©triques ou types de rapport, parce que " +"le agents ne contiennent pas des donnĆ©es dans ces intervalles." + +#: ../../general/first_task/snmp_filters.php:18 +msgid "There are no SNMP filter defined yet." +msgstr "Aucun filtre SNMP dĆ©fini jusqu'Ć  prĆ©sent" + +#: ../../general/first_task/snmp_filters.php:22 +msgid "SNMP Filter" +msgstr "Filtre SNMP" + +#: ../../general/first_task/snmp_filters.php:25 +#: ../../general/first_task/snmp_filters.php:37 +msgid "Create SNMP Filter" +msgstr "CrĆ©er un filtre SNMP" + +#: ../../general/first_task/snmp_filters.php:28 +msgid "" +"Some systems receive a high number of traps. \n" +"\t\t\t\tWe're only interested in monitoring a tiny percentage of them. From " +"Pandora FMS versions 3.2 and above, \n" +"\t\t\t\tit's possible to filter the traps that the server obtains in order to " +"avoid straining the application unnecessarily.\n" +"\t\t\t\tIn order to define different filters, please go to 'Administration' -> " +"'Manage SNMP Console' and 'SNMP Filters'. \n" +"\t\t\t\tOne trap which is going to run in conjunction with any of them - just the " +"ones for the server are going to get ruled out automatically. " +msgstr "" +"Certains systĆØmes reƧoivent un nombre Ć©levĆ© de dĆ©routements.\n" +"\t\t\t\tNous sommes seulement intĆ©ressĆ©s Ć  surveiller un faible pourcentage de " +"ces dĆ©routements. Pour la version 3.2 de Pandora FMS et les suivantes, \n" +"\t\t\t\til est possible de filtrer les dĆ©routements que le serveur obtient afin " +"d'Ć©viter une surcharge inutile de l'application. \n" +"\t\t\t\tPour dĆ©finir les diffĆ©rents filtres, veuillez cliquer sur Ā« " +"Administration Ā» -> Ā« GĆ©rer console SNMP Ā» et Ā« Filtres SNMP Ā». \n" +"\t\t\t\tUn dĆ©routement qui fonctionnera avec n'importe quel autre - seulement " +"ceux pour le serveur seront exclus automatiquement. " + +#: ../../general/first_task/service_list.php:19 +msgid "There are no services defined yet." +msgstr "Aucun service dĆ©fini jusqu'Ć  prĆ©sent" + +#: ../../general/first_task/service_list.php:26 +#: ../../general/first_task/service_list.php:40 +msgid "Create Services" +msgstr "CrĆ©er des services" + +#: ../../general/first_task/service_list.php:30 +msgid "" +"A service is a way to group your IT resources based on their functionalities. \n" +"\t\t\t\t\t\tA service could be e.g. your official website, your CRM system, your " +"support application, or even your printers.\n" +"\t\t\t\t\t\t Services are logical groups which can include hosts, routers, " +"switches, firewalls, CRMs, ERPs, websites and numerous other services. \n" +"\t\t\t\t\t\t By the following example, you're able to see more clearly what a " +"service is:\n" +"\t\t\t\t\t\t\tA chip manufacturer sells computers by its website all around the " +"world. \n" +"\t\t\t\t\t\t\tHis company consists of three big departments: A management, an on-" +"line shop and support." +msgstr "" +"Un service est une maniĆØre de regrouper vos ressources informatiques selon leurs " +"fonctionnalitĆ©s.\n" +"\t\t\t\t\t\tVotre site officiel, systĆØme CRM, application d'assistance ou mĆŖme " +"vos imprimantes sont des exemples de services.\n" +"\t\t\t\t\t\tLes services sont des groupes logiques qui peuvent inclure des hĆ“tes, " +"des routeurs, des switchs, des firewalls, des CRMs, des ERPs, des sites web et " +"plusieurs autres services.\n" +"\t\t\t\t\t\tL'exemple suivant explique plus clairement ce qu'est un service :\n" +"\t\t\t\t\t\t\tUn fabricant de puces vent des ordinateurs sur son site web partout " +"sur la planĆØte.\n" +"\t\t\t\t\t\t\tSon entreprise se compose de trois grands dĆ©partements : gestion, " +"ventes en ligne et assistance." + +#: ../../general/first_task/custom_graphs.php:19 +msgid "There are no custom graphs defined yet." +msgstr "Aucun graphique personnalisĆ© dĆ©fini jusqu'Ć  prĆ©sent." + +#: ../../general/first_task/custom_graphs.php:24 +msgid "Custom Graphs" +msgstr "Graphiques personnalisĆ©s" + +#: ../../general/first_task/custom_graphs.php:27 +#: ../../general/first_task/custom_graphs.php:39 +msgid "Create Custom Graph" +msgstr "CrĆ©er un graphique personnalisĆ©" + +#: ../../general/first_task/custom_graphs.php:30 +#, php-format +msgid "" +"Graphs are designed to show the data collected by %s in a temporary scale defined " +"by the user.\n" +"\t\t\t\t%s Graphs display data in real time. They are generated every time the " +"operator requires any of them and display the up-to-date state.\n" +"\t\t\t\tThere are two types of graphs: The agent's automated graphs and the " +"graphs the user customizes by using one or more modules to do so." +msgstr "" +"Les graphiques sont conƧues pour montrer les donnĆ©es collectĆ©es par %s dans une " +"scale temporaire dĆ©fini par l'utilisateur.\n" +"\t\t\t\tLes graphs %s montrent des donnĆ©es en temps rĆ©el. Ils sont gĆ©nĆ©rĆ©s chaque " +"fois que l'opĆ©rateur requis quelqu'un et montrent l'Ć©tat mis Ć  jour.\n" +"\t\t\t\tIl y a deux types de : Les gaphs d'agent automatisĆ©s et les graphs " +"d'utilisateur personnalisĆ©s en utilisant une ou plus de modules pour le faire." + +#: ../../general/first_task/transactional_list.php:21 +msgid "There are no transactions defined yet." +msgstr "Aucune transaction dĆ©finie jusqu'Ć  prĆ©sent" + +#: ../../general/first_task/transactional_list.php:28 +msgid "Transactions" +msgstr "Transactions" + +#: ../../general/first_task/transactional_list.php:31 +#: ../../general/first_task/transactional_list.php:41 +msgid "Create Transactions" +msgstr "CrĆ©er des transactions" + +#: ../../general/first_task/transactional_list.php:34 +msgid "" +"The new transactional server allows you to execute tasks dependent on the others " +"following a user-defined design. This means that it is possible to coordinate " +"several executions to check a target at a given time.\n" +"\n" +"Transaction graphs represent the different processes within our infrastructure " +"that we use to deliver our service." +msgstr "" +"Le nouveau secteur de transaction permet d'exĆ©cuter des tĆ¢ches dĆ©pendantes du " +"reste selon un design dĆ©fini pour l'utilisateur. Par consĆ©quent, il est possible " +"de coordonner plusieurs exĆ©cutions pour vĆ©rifier des cibles Ć  un moment donnĆ©.\n" +"\n" +"Les graphiques de transaction reprĆ©sentent les diffĆ©rents processus dans notre " +"infrastructure que nous utilisons pour fournir nos services." + +#: ../../general/first_task/collections.php:25 +#: ../../general/first_task/collections.php:39 +msgid "Create Collections" +msgstr "CrĆ©er des collections" + +#: ../../general/first_task/collections.php:28 +msgid "" +"A file collection is a group of files (e.g. scripts or executables) which are \n" +"\t\tautomatically copied to a specific directory of the agent (under Windows or " +"UNIX). The file collections allow to be propagated\n" +"\t\t along with the policies in order to be used by a group of agents, using a " +"'package' of scripts and modules which use them.\n" +"\t\tFirst we learn how to use the file collections in the agent's view, how to " +"conduct it manually, agent by agent, without using collections,\n" +"\t\t and how to do the same thing by using policies.Our first task is to arrange " +"a compilation of files. In order to do this, please go to the agent's \n" +"\t\t administrator. Subsequently, we're going to see a 'sub option' called " +"'Collections'. Please click on it in order to create a new collection as we can " +"see on \n" +"\t\t the picture below. " +msgstr "" +"Une collection de fichiers est un groupe de fichiers (par ex. scripts ou " +"exĆ©cutables) qui sont\n" +"\t\tcopiĆ©s automatiquement dans un rĆ©pertoire de l'agent (sur Windows ou UNIX). " +"Les collections de fichiers peuvent ĆŖtre propagĆ©es\n" +"\t\t avec les politiques pour qu'un groupe d'agents les utilisent, en employant " +"un progiciel de scripts et modules qui se servent des collections.\n" +"\t\tIl faut d'abord apprendre Ć  utiliser les collections de fichiers dans le " +"visualiseur de l'agent, Ć  le faire manuellement, agent par agent, sans utiliser " +"de collections,\n" +"\t\t et Ć  faire la mĆŖme chose en utilisant les politiques. La premiĆØre tĆ¢che " +"consiste Ć  organiser un compilation de fichiers. Pour ceci, veuillez vous rĆ©fĆ©rer " +"Ć  l'administrateur d'agents. \n" +"\t\t Ensuite, une sous-option dĆ©nommĆ©e Ā« Collections Ā» apparaĆ®tra. Veuillez " +"cliquer dessus afin de crĆ©er une nouvelle collection comme illustrĆ©\n" +"\t\t sur l'image ci-dessous. " + +#: ../../general/header.php:77 +msgid "Sobre actualizaciƃĀ³n de revisiƃĀ³n menor" +msgstr "ƀ propos de la mise Ć  jour de rĆ©vision mineure" + +#: ../../general/header.php:79 +msgid "About minor release update" +msgstr "ƀ propos de la mise Ć  jour mineure" + +#: ../../general/header.php:112 ../../general/header.php:114 +msgid "Enter keywords to search" +msgstr "Introduisez les mots clĆ©s pour effectuer une recherche" + +#: ../../general/header.php:379 +msgid "Go to support" +msgstr "Aller vers support" + +#: ../../general/header.php:393 +msgid "Go to documentation" +msgstr "Aller vers documentation" + +#: ../../general/header.php:815 +msgid "Report an issue" +msgstr "Signaler un problĆØme" + +#: ../../general/alert_enterprise.php:107 +#, php-format +msgid "" +"This is the online help for %s console. This help is -in best cases- just a brief " +"contextual help, not intented to teach you how to use %s. Official documentation " +"of %s is about 900 pages, and you probably don't need to read it entirely, but " +"sure, you should download it and take a look.

    \n" +"
    Download the official documentation" +msgstr "" +"C'est l'aide en ligne pour la console %s. Cette aide -dans le meilleur cas- " +"c'este une bref aide contextuelle, qui ne prĆ©tend pas de vous apprendre comment " +"utiliser %s. La documentation officielle de %s est d'autour 900 pages, et il se " +"peut que vous n'avez pas besoin de le lire complĆØtement, mais vous devriez le " +"tĆ©lĆ©charger et le jeter un coup d'oeil.

    \n" +" TƩlƩcharger la documentation officielle" + +#: ../../general/alert_enterprise.php:120 +#, php-format +msgid "" +"Access to this page is restricted to authorized users only, please contact system " +"administrator if you need assistance.

    \n" +" Please know that all attempts to access this page are recorded in security " +"logs of %s System Database." +msgstr "" +"L'accĆØs Ć  cette page est limitĆ©e aux utilisateurs autorisĆ©s seulement, veuillez " +"contacter l'administrateur systĆØme si vous avez besoin d'assistance.\n" +" Tous les essais d'accĆØs Ć  cette page sont enregistrĆ©s dans les journaux de " +"sĆ©curitĆ© de la Base de donnĆ©es du systĆØme %s." + +#: ../../general/alert_enterprise.php:130 +#, php-format +msgid "" +"The Update Manager client is included on %s. It helps system administrators " +"update their %s automatically, since the Update Manager retrieves new modules, " +"new plugins and new features (even full migrations tools for future versions) " +"automatically." +msgstr "" +"Le client Update Manager est inclus dans %s. Il aide les administrateurs systĆØme " +"mettent Ć  jour leur %s automatiquement, puisque Update Manager rĆ©cupĆØre nouveaux " +"modules, nouveaux plugins et nouveaux caractĆ©ristiques (mĆŖme les outils de " +"migrations complĆØtes pour des futures versions) automatiquement." + +#: ../../general/alert_enterprise.php:130 +msgid "" +"OpenSource version updates are automated packages generated each week. These " +"updates come WITHOUT ANY warranty or support. If your system is corrupted or a " +"feature stops working properly, you will need to recover a backup by yourself." +msgstr "" +"Les mises Ć  jour de version source ouverte sont des progiciels automatisĆ©s " +"crĆ©Ć©s chaque semaine. Ces mises Ć  jour NE SONT PAS COUVERTES par une garantie ni " +"une assistance logiciel. Si votre systĆØme est altĆ©rĆ© ou une fonctionnalitĆ© cesse " +"de marcher correctement, vous devrez rĆ©cupĆ©rer votre copie de sĆ©curitĆ© vous-mĆŖme." +"" + +#: ../../general/alert_enterprise.php:130 +#, php-format +msgid "" +"The Enterprise version comes with a different update system, with fully tested, " +"professionally-supported packages, and our support team is there to help you in " +"case of problems or queries. Update Manager is another feature present in the " +"Enterprise version and not included in the OpenSource version. There are lots of " +"advanced business-oriented features contained in %s Enterprise Edition. For more " +"information visit pandorafms.com" +msgstr "" +"La version Enterprise contient un systĆØme de mise Ć  jour diffĆ©rente, avec des " +"packages complĆØtement testĆ©s et avec de support professionnel, et notre Ć©quipe de " +"support est lĆ  pour vous aider s'il y a des problĆØmes ou des requĆŖtes. Update " +"Manager est une autre caractĆ©ristique prĆ©sente dans la version Enterprise et ne " +"sont pas inclus dans la version OpenSource. Il y a d'autres caractĆ©ristiques " +"orientĆ©es aux entreprises avancĆ©es comprises dans la version %s Enterprise. Pour " +"plus d'informations, visitez pandorafms.com" + +#: ../../general/alert_enterprise.php:132 +#, php-format +msgid "" +"The new Update Manager " +"client is included on %s. It helps system administrators update their %s " +"automatically, since the Update Manager retrieves new modules, new plugins and " +"new features (even full migrations tools for future versions) automatically." +msgstr "" +"Le nouvel client Update Manager est inclus dans %s. Il aide aux administrateurs systĆØmes mettre Ć  jour leur %s " +"automatiquement, puisque Update Manager collecte des nouveaux modules, des " +"nouveaux plugins et des nouvelles fonctionnalitĆ©s (mĆŖme les outils de migration " +"complĆØtes pour les versions futures)" + +#: ../../general/alert_enterprise.php:132 +#, php-format +msgid "" +"The Update Manager is one of the most advanced features on the %s Enterprise " +"Edition. For more information visit http://" +"pandorafms.com." +msgstr "" +"Update Manager est l'une des plus avancĆ©es fonctionnalitĆ©s de la version %s " +"Enterprise. Pour plus d'informations, visitez http://pandorafms.com." + +#: ../../general/alert_enterprise.php:132 +#, php-format +msgid "" +"Update Manager sends anonymous information about %s usage (number of agents and " +"modules running). To disable it, please remove the remote server address from the " +"Update Manager plugin setup." +msgstr "" +"Update Manager envoi des informations anonymes sur l'utilisation %s (nombre " +"d'agents et modules en exĆ©cution). Pour le dĆ©sactiver, Ć©liminez l'adresse du " +"serveur distant depuis la configuration du plugin Update Manager." + +#: ../../general/alert_enterprise.php:138 +msgid "" +"The community version doesn't have the ability to define your own library of " +"local modules, or distribute it to remote agents. You need to make those changes " +"individually on each agent which is possible by using external tools and time and " +"effort. Nor can it distribute local plugins, or have access to the library of " +"enterprise plugins to monitor applications such as VMWare, RHEV or Informix " +"between others. The Enterprise version will have all this, plus the ability to " +"distribute and manage your own local modules on your systems, individually or " +"through policies.\n" +"

    pandorafms.com" +msgstr "" +"Voulez vous consolider toute votre supervision systĆØme ? Avez-vous beaucoup de " +"systĆØmes, ce qui rende difficile de les gĆ©rer d'une maniĆØre comprehensive ? " +"Voudriez-vous dĆ©ployer de la supervision, des alertes et mĆŖme des plugins locales " +"avec un seul clique ? Las politiques %s Enterprise sont exactement ce dont vous " +"avez besoin ; vous Ć©conomiserez du temps, de l'effort et des ennuis. Plus " +"d'informations pandorafms.com" + +#: ../../general/alert_enterprise.php:148 +#, php-format +msgid "" +"%s Enterprise also features event correlation. Through correlation you can " +"generate realtime alerts and / or new events based on logical rules. This allows " +"you to automate troubleshooting. If you know the value of working with events, " +"event correlation will take you to a new level." +msgstr "" +"%s Enterprise aussi inclut de la correlation d'Ć©vĆ©nements. Ƃ travers la " +"correlation, vous pouvez gĆ©nĆ©rer des alertes en temps rĆ©el et/ou des nouveaux " +"Ć©vĆ©nements basĆ©s sur des rĆØgles logiques. Cela vous permet d'automatiser la " +"rĆ©solution de bogues. Si vous connaissez la valeur de travailler avec de " +"Ć©vĆ©nements, la corrĆ©lation d'Ć©vĆ©nements vous prendra dans un nouveau niveau." + +#: ../../general/alert_enterprise.php:152 +#, php-format +msgid "" +"Report generating on the Enterprise version is also more powerful: it has " +"wizards, you can schedule emails in PDF to be sent according to the schedule you " +"decide, and it has a template system to create personalized reports quickly for " +"each of your customers. It will even allow your customers to generate their own " +"reports from templates created by you. If reports are key to your business, %s " +"Enterprise version is for you." +msgstr "" +"La gĆ©nĆ©ration de rapports dans la version Enterprise est aussi plus puissante : " +"il a des assistants, vous pouvez programmer des emails en PDF pour les envoyer " +"selon la programmation que vous dĆ©cidez, et il a un systĆØme de modĆØles pour crĆ©er " +"des rapports personnalisĆ©s rapidement pour chaque de vos clients. Il permettra " +"aux clients de gĆ©nĆ©rer leur propres rapports Ć  partir des modĆØles crĆ©es par vous. " +"Si les rapports sont clĆ©s pour votre business, la version Enterprise de %s est " +"pour vous." + +#: ../../general/alert_enterprise.php:156 +msgid "These options are only effective on the Enterprise version." +msgstr "Ces options sont fonctionnelles uniquement sur la version Enterprise." + +#: ../../general/alert_enterprise.php:160 +msgid "" +"WARNING: You are just one click away from an automated update. This may result in " +"a damaged system, including loss of data and operativity. Check you have a recent " +"backup. OpenSource updates are automatically created packages, and there is no " +"WARRANTY or SUPPORT. If you need professional support and warranty, please " +"upgrade to Enterprise Version." +msgstr "" +"Avertissement : Vous ĆŖtes Ć  un seul clic d'une mise Ć  jour automatisĆ©e. Ceci " +"pourrait endommager le systĆØme et provoquer une possible perte de donnĆ©es et de " +"fonctionnalitĆ©s. Veuillez vĆ©rifier que vous disposez d'une copie de sĆ©curitĆ© " +"rĆ©cente. Les mises Ć  jour de source ouverte sont des progiciels crĆ©Ć©s " +"automatiquement qui ne sont pas couverts par une GARANTIE ou un ASSISTANCE " +"LOGICIEL. Si vous avez besoin de garantie et d'assistance logiciel, veuillez " +"faire une mise Ć  niveau avec la version Enterprise." + +#: ../../general/alert_enterprise.php:164 +msgid "" +"This system is heavily loaded. OpenSource version could get a lot more agents but " +"fine tuning requires knowledge and time. Checkout the Enterprise Version for a " +"professional supported system." +msgstr "" +"Ce systĆØme est surchargĆ©. La version de source ouverte a pu rĆ©cupĆ©rer beaucoup " +"plus d'agents mais pour les prĆ©ciser, il est nĆ©cessaire d'avoir des connaissances " +"et du temps. Renseignez-vous sur la version Enterprise pour obtenir un systĆØme " +"avec une assistance professionnelle." + +#: ../../general/alert_enterprise.php:173 +#, php-format +msgid "" +"This system has too many modules per agent. OpenSource version could manage " +"thousands of modules, but is not recommended to have more than 100 modules per " +"agent. This configuration has %d modules per agent. Checkout the Enterprise " +"Version for a professional supported system." +msgstr "" +"Ce systĆØme a trop de modules par agent. La version OpenSource pourrait gĆ©rer des " +"milliers de modules, mais il n'est pas recommandĆ© d'avoir plus de 100 modules par " +"agent. Cette configuration a %d modules par agent. Jetez un coup d'oeil Ć  la " +"version Enterprise pour un systĆØme supportĆ© par des professionnels." + +#: ../../general/alert_enterprise.php:177 +msgid "" +"Too much remote modules has been detected on this system. OpenSource version " +"could manage thousands of modules, but performance is limited on high amount of " +"SNMP or ICMP request. Checkout the Enterprise Version for a professional " +"supported system with improved capacity on network monitoring, including " +"distributed servers." +msgstr "" +"Trop de modules Ć  distance ont Ć©tĆ© trouvĆ©s sur ce systĆØme. La version de source " +"ouverte a pu gĆ©rer des milliers de modules, mais le rendement est limitĆ© s'il y a " +"trop de requĆŖtes SNMP ou ICMP. Renseignez-vous sur la version Enterprise pour " +"obtenir un systĆØme avec une assistance professionnelle et une capacitĆ© renforcĆ©e " +"de surveillance de rĆ©seaux et de serveurs distribuĆ©s." + +#: ../../general/alert_enterprise.php:181 +msgid "" +"This system has too much events in the database. Checkout database purge options. " +"Checkout the Enterprise Version for a professional supported system." +msgstr "" +"Ce systĆØme contient trop d'Ć©vĆ©nements sur la base de donnĆ©es. VĆ©rifiez les " +"options de nettoyage de la base de donnĆ©es. Renseignez-vous sur la version " +"Enterprise pour obtenir un systĆØme avec une assistance professionnelle." + +#: ../../general/alert_enterprise.php:185 +msgid "" +"You have defined a high number of alerts, this may cause you performance problems " +"in the future. In the Enterprise version, you can use event correlation alerts to " +"simplify the alerting system and have easier administration and increased " +"performance." +msgstr "" +"Vous avez dĆ©fini un nombre Ć©levĆ© d'alertes. Cela peut provoquer des problĆØmes de " +"rendement. Avec la version Enterprise, vous pouvez utiliser des alertes de " +"corrĆ©lation d'Ć©vĆ©nements pour simplifier le systĆØme d'alertes, rendre " +"l'administration plus facile et augmenter le rendement." + +#: ../../general/login_help_dialog.php:43 +#, php-format +msgid "" +"If this is your first time using %s, we suggest a few links that'll help you " +"learn more about the software. Monitoring can be overwhelming, but take your time " +"to learn how to harness the power of %s!" +msgstr "" +"Si c'est votre premiĆØre fois utilisant %s, nous vous suggestions quelques liens " +"qui vous aideront a apprendre plus sur le logiciel. La supervision peut ĆŖtre " +"Ć©crasant, mais prenez votre temps pour apprendre comment exploiter la puissance " +"de %s !" + +#: ../../general/login_help_dialog.php:57 ../../general/login_help_dialog.php:62 +msgid "Online help" +msgstr "Aide en ligne" + +#: ../../general/login_help_dialog.php:70 ../../general/login_help_dialog.php:75 +msgid "Enterprise version" +msgstr "Version Enterprise" + +#: ../../general/login_help_dialog.php:88 +msgid "Forums" +msgstr "Forums" + +#: ../../general/login_help_dialog.php:96 ../../general/login_help_dialog.php:101 +#: ../../general/mysqlerr.php:142 +msgid "Documentation" +msgstr "Documentation" + +#: ../../general/login_help_dialog.php:110 +msgid "Click here to don't show again this message" +msgstr "Cliquez ici pour ne plus afficher ce message" + +#: ../../general/maintenance.php:36 +msgid "Maintenance tasks in progress" +msgstr "Taches de maintenance en progrĆØs" + +#: ../../general/maintenance.php:53 ../../general/node_deactivated.php:64 +msgid "You will be automatically redirected when all tasks finish" +msgstr "Vous serez redirigĆ© automatiquement quand tous les taches sont finis" + +#: ../../general/logon_ok.php:160 +#, php-format +msgid "%s Overview" +msgstr "%s AperƧu" + +#: ../../general/logon_ok.php:213 +msgid "News board" +msgstr "Tableau de nouvelles" + +#: ../../general/logon_ok.php:289 +msgid "Latest activity" +msgstr "DerniĆØre activitĆ©" + +#: ../../general/noaccess.php:147 +msgid "You do not have access to this page" +msgstr "Vous n'avez pas accĆØs Ć  cette page" + +#: ../../general/ui/agents_list.php:152 +msgid "No agents found" +msgstr "Aucun agent trouvĆ©" + +#: ../../general/logon_failed.php:30 +msgid "" +"Either, your password or your login are incorrect. Please check your CAPS LOCK " +"key, username and password are case SeNSiTiVe.

    All actions, included " +"failed login attempts are logged in Pandora FMS System logs, and these can be " +"reviewed by each user, please report to admin any incident or malfunction." +msgstr "" +"Le mot de passe et/ou l'identifiant sont erronƩs. Veuillez vƩrifier que le " +"verrouillage des majuscules est dƩsactivƩ ; l'identifiant et le mot de passe sont " +"sensibles Ơ la casse.

    Toutes les actions, y compris les essais de " +"connexion Ć©chouĆ©s, sont enregistrĆ©s dans les journaux du systĆØme Pandora FMS et " +"ils peuvent ĆŖtre consultĆ©s par chaque utilisateur. Veuillez communiquer tout " +"incident ou dĆ©faillance Ć  l'administrateur." + +#: ../../general/node_deactivated.php:36 +msgid "You cannot use this node until system is unified" +msgstr "Vous ne pouvez utiliser ce noeud jusqu'Ć  que le systĆØme soit unifiĆ©" + +#: ../../general/node_deactivated.php:56 +#, php-format +msgid "Please navigate to %s to unify system" +msgstr "Naviguez ves %s pour unifier le systĆØme" + +#: ../../general/noaccess2.php:23 +msgid "Access to this page is restricted" +msgstr "L'accĆØs Ć  cette page est limitĆ©" + +#: ../../general/noaccess2.php:35 +msgid "" +"Access to this page is restricted to authorized users only, please contact system " +"administrator if you need assistance.

    \n" +"\t\t\tPlease know that all attempts to access this page are recorded in security " +"logs of Pandora System Database" +msgstr "" +"L'accĆØs a cette page est rĆ©servĆ© aux utilisateurs autorisĆ©s. Veuillez communiquer " +"avec l'administrateur du systĆØme si vous avez besoin d'aide.

    \n" +"\t\t\tSachez que toutes les tentatives pour accĆ©der Ć  cette page sont " +"enregistrĆ©es dans les journaux de sĆ©curitĆ© de la base de donnĆ©es du systĆØme " +"Pandora FMS." + +#: ../../general/mysqlerr.php:105 +msgid "Database error" +msgstr "Erreur de la base de donnĆ©es" + +#: ../../general/mysqlerr.php:115 +msgid "" +"Failure to connect to historical database, please check the configuration or " +"contact system administrator if you need assistance." +msgstr "" +"Il n'a pas Ć©tĆ© possible de connecter la base de donnĆ©es historique, veuillez " +"vĆ©rifier la configuration ou contactez l'administrateur systĆØme si vous avez " +"besoin d'assistance." + +#: ../../general/mysqlerr.php:117 +msgid "" +"Failure to connect to Database server, please check the configuration file config." +"php or contact system administrator if you need assistance." +msgstr "" +"La connexion avec le serveur Database a Ć©chouĆ©, vĆ©rifiez le fichier de " +"configuration config.php ou contactez l'administrateur systĆØme si vous avez " +"besoin de l'assistance." + +#: ../../general/login_page.php:54 +#, php-format +msgid "Go to %s Website" +msgstr "Aller vers la page WEB %s" + +#: ../../general/login_page.php:68 +msgid "Go to Login" +msgstr "Aller Ć  Connexion" + +#: ../../general/login_page.php:251 +msgid "Login as admin" +msgstr "Connexion en tant qu'administateur" + +#: ../../general/login_page.php:319 +msgid "View details" +msgstr "Voir les dĆ©tails" + +#: ../../general/login_page.php:347 +msgid "" +"This node is configured with centralized mode. Go to metaconsole to reset the " +"password" +msgstr "" +"Ce nœud est configurĆ© en mode centralisĆ©. AccĆ©dez Ć  MĆ©taconsole pour " +"rĆ©initialiser le mot de passe" + +#: ../../general/login_page.php:372 ../../general/login_page.php:375 +#, php-format +msgid "WELCOME TO %s" +msgstr "Bienvenue Ć  %s" + +#: ../../general/login_page.php:384 ../../general/login_page.php:387 +msgid "NEXT GENERATION" +msgstr "NOUVELLE GƉNƉRATION" + +#: ../../general/login_page.php:536 +msgid "User node access not enabled" +msgstr "AccĆØs au node de l'utilisateur non habilitĆ©" + +#: ../../general/login_page.php:539 ../../general/login_page.php:543 +msgid "Centralized user in metaconsole" +msgstr "Utilisateur centralisĆ© dans la MĆ©taconsole" + +#: ../../general/login_page.php:544 +msgid "" +"This user does not have access on node, please enable node access on this user " +"from metaconsole." +msgstr "" +"Cet utilisateur n'a pas d'accĆØs dans le noeud, veuillez habiliter l'accĆØs dans " +"cette utilisateur depuis la MĆ©taconsole." + +#: ../../general/login_page.php:559 ../../general/login_page.php:561 +#, php-format +msgid "Problem with %s database" +msgstr "ProblĆØme avec la base de donnĆ©es %s" + +#: ../../general/login_page.php:565 +msgid "" +"Cannot connect to the database, please check your database setup in the " +"include/config.php file.

    \n" +"\t\tProbably your database, hostname, user or password values are incorrect or\n" +"\t\tthe database server is not running." +msgstr "" +"Impossible de se connecter Ơ la base de donnƩes. Veuillez vƩrifier la " +"configuration de la base de donnƩes dans le fichier include/config.php." +"

    \n" +"\t\tLes valeurs de votre base de donnƩes, nom d'hƓte, utilisateur ou mot de passe " +"sont probablement erronƩes ou bien\n" +"\t\tle serveur de la base de donnƩes est hors service." + +#: ../../general/login_page.php:570 +msgid "DB ERROR" +msgstr "ERREUR BD" + +#: ../../general/login_page.php:576 +#, php-format +msgid "" +"If you have modified the auth system, the origin of this problem could be that %s " +"cannot override the authorization variables from the config database. Please " +"remove them from your database by executing:
    DELETE FROM tconfig WHERE "
    +"token = \"auth\";
    " +msgstr "" +"Si vous avez modifiĆ© le auth system, la source de ce problĆØme pourrait ĆŖtre que " +"%s ne peut pas outrepasser les variables d'autorisation depuis la base de donnĆ©es " +"de configuration. Veuillez les Ć©liminer de votre bas de donnĆ©es en exĆ©cutant : " +"
    DELETE FROM tconfig WHERE token = \"auth\";
    " + +#: ../../general/login_page.php:581 +msgid "Empty configuration table" +msgstr "Table de configuration vide" + +#: ../../general/login_page.php:583 +#, php-format +msgid "" +"Cannot load configuration variables from database. Please check your database " +"setup in the\n" +"\t\t\tinclude/config.php file.

    \n" +"\t\t\tMost likely your database schema has been created but there are is no data " +"in it, you have a problem with the database access credentials or your schema is " +"out of date.\n" +"\t\t\t

    %s Console cannot find include/config.php or this file has " +"invalid\n" +"\t\t\tpermissions and HTTP server cannot read it. Please read documentation to " +"fix this problem.
    " +msgstr "" +"Les variables de configuration de la base de donnĆ©es ne peut pas ĆŖtre chargĆ©e " +"depuis la base de donnĆ©es. Veuillez vĆ©rifier la configuration de votre base de " +"donnĆ©es dans le\n" +"\t\t\tinclude/config.php file.

    \n" +"\t\t\tIl se peut que le schĆ©ma de votre base de donnĆ©es aie Ć©tĆ© crĆ©Ć© mais il n'y " +"a pas de donnĆ©es, vous avez un problĆØme avec les identifiants d'accĆØs de la base " +"de donnĆ©es ou votre schĆ©ma est pĆ©rimĆ©.\n" +"\t\t\t

    %s Console cannot find include/config.php or this file has " +"invalid\n" +"\t\t\tpermissions and HTTP server cannot read it. Please read documentation to " +"fix this problem.
    " + +#: ../../general/login_page.php:593 +msgid "No configuration file found" +msgstr "Aucun fichier de configuration trouvĆ©" + +#: ../../general/login_page.php:595 +#, php-format +msgid "" +"%s Console cannot find include/config.php or this file has invalid\n" +"\t\tpermissions and HTTP server cannot read it. Please read documentation to fix " +"this problem." +msgstr "" +"La Console %s ne peut pas trouver include/config.php ou ce fichier n'est " +"pas valide\n" +"\t\tles permissions et le serveur HTTP ne peut pas le lire. Veuillez lire la " +"documentation pour fixer ce problĆØme." + +#: ../../general/login_page.php:607 +#, php-format +msgid "You may try to run the %sinstallation wizard%s to create one." +msgstr "" +"Vous pouvez essayer d'exĆ©cuter le %sassistant logiciel%s pour en crĆ©er un." + +#: ../../general/login_page.php:611 +msgid "Installer active" +msgstr "Installateur actif" + +#: ../../general/login_page.php:613 +#, php-format +msgid "" +"For security reasons, normal operation is not possible until you delete installer " +"file.\n" +"\t\tPlease delete the ./install.php file before running %s Console." +msgstr "" +"Pour raisons de sĆ©curitĆ©, l'opĆ©ration normal n'est pas possible jusqu'a que vous " +"Ć©liminez le fichier d'installation.\n" +"\t\tVeuillez Ć©liminer le fichier ./install.php avant d'exĆ©cuter la Console " +"%s." + +#: ../../general/login_page.php:620 +msgid "Bad permission for include/config.php" +msgstr "Autorisation incorrecte pour include/config.php" + +#: ../../general/login_page.php:622 +msgid "" +"For security reasons, config.php must have restrictive permissions, and " +"\"other\" users\n" +"\t\tshould not read it or write to it. It should be written only for owner\n" +"\t\t(usually www-data or http daemon user), normal operation is not possible " +"until you change\n" +"\t\tpermissions for include/config.php file. Please do it, it is for your " +"security." +msgstr "" +"Pour des raisons de sĆ©curitĆ©, config.php doit avoir des autorisation " +"restrictives, et les Ā« autres Ā» utilisateurs\n" +"\t\tne devraient pas le lire ou Ć©crire dessus. Il devrait ĆŖtre Ć©crit uniquement " +"par le propriĆ©taire\n" +"\t\t(en gĆ©nĆ©ral www-data ou utilisateur dĆ©mon http), il n'est pas possible " +"d'exĆ©cuter une opĆ©ration normale tant que vous ne changez pas\n" +"\t\tles autorisations pour le fichier include/config.php. Veuillez les " +"changer, c'est pour votre sĆ©curitĆ©." + +#: ../../general/login_page.php:630 +msgid "Bad defined homedir" +msgstr "RĆ©pertoire personnel homedir mal dĆ©fini" + +#: ../../general/login_page.php:631 +msgid "" +"In the config.php file in the variable $config[\"homedir\"] = add the correct path" +msgstr "" +"Dans le fichier config.php, dans la variable $config[\"homedir\"] = ajouter le " +"chemin correct" + +#: ../../general/login_page.php:635 +msgid "Bad defined homeurl or homeurl_static" +msgstr "homeurl ou homeurl_static mal dĆ©fini" + +#: ../../general/login_page.php:636 +msgid "" +"In the config.php file in the variable $config[\"homeurl\"] or " +"$config[\"homeurl_static\"] = add the correct path" +msgstr "" +"Dans le fichier config.php, dans la variable $config[\"homeurl\"] ou " +"$config[\"homeurl_static\"] = ajouter le chemin correct" + +#: ../../general/pandora_help.php:23 +#, php-format +msgid "%s help system" +msgstr "SystĆØme d'aide de %s" + +#: ../../general/pandora_help.php:72 +msgid "Help system error" +msgstr "Erreur dans le systĆØme d'aide" + +#: ../../general/pandora_help.php:77 +#, php-format +msgid "" +"%s help system has been called with a help reference that currently don't exist. " +"There is no help content to show." +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 "Event" +#~ msgstr "ƉvĆ©nement" + +#~ msgid "More detail" +#~ msgstr "Plus de dĆ©tails" + +#~ msgid "The Agent: " +#~ msgstr "Agent : " + +#~ msgid " has " +#~ msgstr " a " + +#~ msgid " events." +#~ msgstr " des Ć©vĆ©nements." + +#~ msgid "Is not allowed delete events in process" +#~ msgstr "Vous ne pouvez pas supprimer les Ć©vĆ©nements en cours" + +#~ msgid "" +#~ "Event viewer is disabled due event replication. For more information, please " +#~ "contact with the administrator" +#~ msgstr "" +#~ "Le visionneur d'Ć©vĆ©nements est dĆ©sactivĆ© Ć  cause de la rĆ©plication " +#~ "d'Ć©vĆ©nements. Pour en savoir plus, veuillez communiquer avec l'administrateur." + +#~ msgid "In progress selected" +#~ msgstr "En cours sĆ©lectionnĆ©" + +#~ msgid "Validate selected" +#~ msgstr "Valider la sĆ©lection" + +#~ msgid "No filter loaded" +#~ msgstr "Aucun filtre chargĆ©" + +#~ msgid "Filter loaded" +#~ msgstr "Filtre chargĆ©" + +#~ msgid "Event control filter" +#~ msgstr "Filtre de contrĆ“le d'Ć©vĆ©nements" + +#~ msgid "Error creating filter." +#~ msgstr "Erreur de crĆ©ation du filtre" + +#~ msgid "Error creating filter is duplicated." +#~ msgstr "Erreur de crĆ©ation ; le filtre est dupliquĆ©." + +#~ msgid "Filter created." +#~ msgstr "Filtre crĆ©Ć©" + +#~ msgid "Filter updated." +#~ msgstr "Filtre mis Ć  jour" + +#~ msgid "Error updating filter." +#~ msgstr "Erreur de mise Ć  jour du filtre" + +#, php-format +#~ msgid "" +#~ "'Show events' is disabled because this %s node is set to event replication." +#~ msgstr "" +#~ "Ā«Ā Afficher les Ć©vĆ©nementsĀ Ā» est dĆ©sactivĆ© car ce nœud %s est dĆ©fini sur la " +#~ "rĆ©plication d'Ć©vĆ©nements." + +#~ msgid "Treshold" +#~ msgstr "Seuil" + +#~ msgid "Alert fired in module " +#~ msgstr "Alerte dĆ©clenchĆ©e dans le module " + +#~ msgid " is going to critical" +#~ msgstr " est en train de changer Ć  l'Ć©tat critique" + +#~ msgid " is going to warning" +#~ msgstr " est en train de changer Ć  l'Ć©tat d'alerte" + +#~ msgid " is going to unknown" +#~ msgstr " est en train de changer Ć  l'Ć©tat inconnu" + +#~ msgid "There are no events matching selected search filters" +#~ msgstr "" +#~ "Il n'y a aucun Ć©vĆ©nement correspondant aux filtres de recherche sĆ©lectionnĆ©s" + +#~ msgid "Pandora System" +#~ msgstr "SystĆØme Pandora FMS" + +#~ msgid "Validated but not assigned" +#~ msgstr "ValidĆ© mais non attribuĆ©" + +#~ msgid "Agent Module" +#~ msgstr "Module de l'agent" + +#~ msgid "Events replication" +#~ msgstr "RĆ©plication d'Ć©vĆ©nements" + +#~ msgid "Replication interval" +#~ msgstr "Intervalle de rĆ©plication" + +#~ msgid "Replication limit" +#~ msgstr "Limite de rĆ©plication" + +#~ msgid "Replication mode" +#~ msgstr "Mode de rĆ©plication" + +#~ msgid "Show events list in local console (read only)" +#~ msgstr "" +#~ "Afficher la liste d'Ć©vĆ©nements dans la console locale (lecture seulement)" + +#~ msgid "Replication DB engine" +#~ msgstr "Moteur de BD de rĆ©plication" + +#~ msgid "Maximum of events shown" +#~ msgstr "Nombre maximal d'Ć©vĆ©nements affichĆ©s" + +#, php-format +#~ msgid "last event replication: %s" +#~ msgstr "derniĆØre rĆ©plication d'Ć©vĆ©nement : %s" + +#~ msgid "server connection failed" +#~ msgstr "erreur de connexion avec le serveur" + +#~ msgid "Last event replication" +#~ msgstr "DerniĆØre rĆ©plication d'Ć©vĆ©nements" + +#~ msgid "This console is not joining any metaconsole." +#~ msgstr "Cette console ne va pas se rejoindre avec aucune MĆ©taconsole." + +#~ msgid "Event replication" +#~ msgstr "RĆ©plication dā€™Ć©vĆ©nements" + +#~ msgid "Seconds" +#~ msgstr "Secondes" + +#~ msgid "Last replication at" +#~ msgstr "DerniĆØre rĆ©plication Ć " + +#~ msgid "No replication yet" +#~ msgstr "Aucune rĆ©plication encore" + +#~ msgid "Only validated events" +#~ msgstr "Seulement les Ć©vĆ©nements validĆ©s" + +#~ msgid "No selected agents to copy" +#~ msgstr "Aucun agent Ć  copier sĆ©lectionnĆ©" + +#~ msgid "Making copy of configuration file for" +#~ msgstr "Copie du fichier de configuration en cours pour" + +#~ msgid "Error copying md5 file " +#~ msgstr "Erreur de copie du fichier md5 " + +#~ msgid "Remote configuration management" +#~ msgstr "Gestion de la configuration Ć  distance" + +#~ msgid "To agent(s):" +#~ msgstr "Pour les agents :" + +#~ msgid "Custom events" +#~ msgstr "Personnaliser les Ć©vĆ©nements" + +#~ msgid "Global Profile" +#~ msgstr "Profil gĆ©nĆ©ral" + +#~ msgid "" +#~ "This user has permissions to manage all. An admin user should not requiere " +#~ "additional group permissions, except for using Enterprise ACL." +#~ msgstr "" +#~ "Cet utilisateur est autorisĆ© Ć  gĆ©rer tout le contenu. Un administrateur ne " +#~ "devrait pas avoir besoin d'autorisations de groupe supplĆ©mentaires, sauf pour " +#~ "utiliser l'ACL Enterprise." + +#~ msgid "" +#~ "This user has separated permissions to view data in his group agents, create " +#~ "incidents belong to his groups, add notes in another incidents, create " +#~ "personal assignments or reviews and other tasks, on different profiles" +#~ msgstr "" +#~ "Cet utilisateur a des permissions diffĆ©rentes pour le visionnement des donnĆ©es " +#~ "dans le groupe d'agents, pour la crĆ©ation d'incidents dans les groupes " +#~ "auxquels il a accĆØs, pour l'ajout de notes sur d'autres incidents dans ses " +#~ "groupes, et pour la crĆ©ation et la rĆ©vision de tĆ¢ches personnelles sur des " +#~ "profils diffĆ©rents." + +#~ msgid "Assigned node" +#~ msgstr "Nœud assignĆ©" + +#~ msgid "Server where the agents created of this user will be placed" +#~ msgstr "Serveur oĆ¹ seront placĆ©s les agents crĆ©Ć©s pour cet utilisateur" #~ msgid "Advanced Options" #~ msgstr "Options avancĆ©es" @@ -52329,21 +51639,20 @@ msgstr "Gestion du groupe de module" #~ "Click here to start the registration process" #~ msgstr "" -#~ "Cliquez ici pour dĆ©marrer le processus d'inscription" +#~ "Cliquez ici pour dĆ©marrer le processus d'inscription" #~ msgid "Update Manager" #~ msgstr "Update Manager" #~ msgid "An error occurred while migrating the malformed scheduled downtimes" #~ msgstr "" -#~ "Une erreur s'est produite lors de la migration des temps d'arrĆŖt planifiĆ©s " -#~ "mal formĆ©s" +#~ "Une erreur s'est produite lors de la migration des temps d'arrĆŖt planifiĆ©s mal " +#~ "formĆ©s" #~ msgid "Please run the migration again or contact with the administrator" #~ msgstr "" -#~ "Veuillez effectuer Ć  nouveau la migration ou communiquer avec " -#~ "l'administrateur" +#~ "Veuillez effectuer Ć  nouveau la migration ou communiquer avec l'administrateur" #~ msgid "Agents cannot be updated (maybe there was no field to update)" #~ msgstr "" @@ -52446,15 +51755,14 @@ msgstr "Gestion du groupe de module" #~ msgstr "Nouveau package disponible" #~ msgid "Minor release rejected. Changes will not apply." -#~ msgstr "" -#~ "Mise Ć  jour mineure rejetĆ©e. Les modifications ne seront pas appliquĆ©es" +#~ msgstr "Mise Ć  jour mineure rejetĆ©e. Les modifications ne seront pas appliquĆ©es" #~ msgid "" -#~ "Minor release rejected. The database will not be updated and the package " -#~ "will apply." +#~ "Minor release rejected. The database will not be updated and the package will " +#~ "apply." #~ msgstr "" -#~ "Mise Ć  jour mineure rejetĆ©e. La base de donnĆ©es ne seront pas mises Ć  jour " -#~ "et le package sera appliquĆ©." +#~ "Mise Ć  jour mineure rejetĆ©e. La base de donnĆ©es ne seront pas mises Ć  jour et " +#~ "le package sera appliquĆ©." #~ msgid "Database successfully updated" #~ msgstr "Base de donnĆ©es mise Ć  jour correctement" @@ -52470,18 +51778,18 @@ msgstr "Gestion du groupe de module" #~ msgid "Database MR version is inconsistent, do you want to apply the package?" #~ msgstr "" -#~ "La version MR de la base de donnĆ©es est inconsistante, voulez vous " -#~ "appliquer le package ?" +#~ "La version MR de la base de donnĆ©es est inconsistante, voulez vous appliquer " +#~ "le package ?" #~ msgid "There are db changes" #~ msgstr "Il y a des modifications de la base de donnĆ©es" #~ msgid "" -#~ "There are new database changes available to apply. Do you want to start the " -#~ "DB update process?" +#~ "There are new database changes available to apply. Do you want to start the DB " +#~ "update process?" #~ msgstr "" -#~ "Il y a de nouveaux modifications disponibles Ć  appliquer. Voulez vous " -#~ "initier le processus de mise Ć  jour de la base de donnĆ©es ?" +#~ "Il y a de nouveaux modifications disponibles Ć  appliquer. Voulez vous initier " +#~ "le processus de mise Ć  jour de la base de donnĆ©es ?" #~ msgid "We recommend launching " #~ msgstr "Nous vous recommandons de lancer " @@ -52544,16 +51852,15 @@ msgstr "Gestion du groupe de module" #, php-format #~ msgid "Policy does not exist in node %s. Error creating it." -#~ msgstr "" -#~ "La politique n'existe pas dans le noeud %s. Erreur lors de sa crĆ©ation." +#~ msgstr "La politique n'existe pas dans le noeud %s. Erreur lors de sa crĆ©ation." #, php-format #~ msgid "" -#~ "This policy exist in node %s with other name (%s). Change the name to '%s' " -#~ "to apply the policy." +#~ "This policy exist in node %s with other name (%s). Change the name to '%s' to " +#~ "apply the policy." #~ msgstr "" -#~ "Cette politique existe dans le noeud %s avec un autre nom (%s). Changez le " -#~ "nom vers '%s' pour appliquer la politique." +#~ "Cette politique existe dans le noeud %s avec un autre nom (%s). Changez le nom " +#~ "vers '%s' pour appliquer la politique." #~ msgid "Custom logo (header)" #~ msgstr "Logo personnalisĆ© (en-tĆŖte)" @@ -52586,8 +51893,8 @@ msgstr "Gestion du groupe de module" #~ "Lapses of time in which the period is divided to make more precise " #~ "calculations\n" #~ msgstr "" -#~ "Intervalles de temps dans lesquelles une pĆ©riode se divise pour effectuer " -#~ "des calculs plus prĆ©cis\n" +#~ "Intervalles de temps dans lesquelles une pĆ©riode se divise pour effectuer des " +#~ "calculs plus prĆ©cis\n" #~ msgid "Please save the SLA for start to add items in this list." #~ msgstr "" @@ -52746,8 +52053,7 @@ msgstr "Gestion du groupe de module" #~ msgstr "Distance entre deux noeux" #~ msgid "Separation between elements in the map (in Non-overlap mode)" -#~ msgstr "" -#~ "SĆ©paration dans les elements dans la carte ( dans le mode Non-overlap)" +#~ msgstr "SĆ©paration dans les elements dans la carte ( dans le mode Non-overlap)" #~ msgid "Map options" #~ msgstr "Options de la carte" @@ -52791,9 +52097,6 @@ msgstr "Gestion du groupe de module" #~ msgid "Not closed" #~ msgstr "Pas fermĆ©" -#~ msgid "Search string" -#~ msgstr "Chercher la chaĆ®ne" - #~ msgid "Workunits" #~ msgstr "Unites de travail" @@ -52840,8 +52143,8 @@ msgstr "Gestion du groupe de module" #~ msgstr "Il n'y pas de filtres SNMP" #~ msgid "" -#~ "In case you fill any Field 1, Field 2 or Field 3 above, those will replace " -#~ "the corresponding fields of this associated \"Default action\"." +#~ "In case you fill any Field 1, Field 2 or Field 3 above, those will replace the " +#~ "corresponding fields of this associated \"Default action\"." #~ msgstr "" #~ "Si vous remplissez quelque Champ 1, Champ 2 ou Champ au dessus, ceux " #~ "remplaceront les champs correspondants de cet \"Action par dĆ©faut\" associĆ©" @@ -52962,11 +52265,11 @@ msgstr "Gestion du groupe de module" #~ msgstr "Obtenir les donnĆ©es d'un agent" #~ msgid "" -#~ "Please be patient. This operation can take a long time depending on the " -#~ "amount of modules." +#~ "Please be patient. This operation can take a long time depending on the amount " +#~ "of modules." #~ msgstr "" -#~ "Si vous plaĆ®t, ĆØtre patient. Cette operation peut etre long en fonction de " -#~ "la quantitĆ© des modules" +#~ "Si vous plaĆ®t, ĆØtre patient. Cette operation peut etre long en fonction de la " +#~ "quantitĆ© des modules" #~ msgid "Deleting records for all agents" #~ msgstr "Supprimir enregistrements pour tous les agents" @@ -53137,21 +52440,21 @@ msgstr "Gestion du groupe de module" #~ msgstr "Imposible de lire le fichier" #~ msgid "" -#~ "This extension can run as PHP script in a shell for extract more " -#~ "information, but it must be run as root or across sudo. For example: " -#~ "sudo php /var/www/pandora_console/extensions/system_info.php -d -s -c" +#~ "This extension can run as PHP script in a shell for extract more information, " +#~ "but it must be run as root or across sudo. For example: sudo php /var/www/" +#~ "pandora_console/extensions/system_info.php -d -s -c" #~ msgstr "" #~ "Cette extension peut fonctionner comme un script PHP dans a shell pour " -#~ "extraire plus d'information, mais il doit etre activĆ© comme root ou sudo. " -#~ "Par exemple: sudo php /var/www/pandora_console/extensions/system_info." -#~ "php -d -s -c" +#~ "extraire plus d'information, mais il doit etre activĆ© comme root ou sudo. Par " +#~ "exemple: sudo php /var/www/pandora_console/extensions/system_info.php -d -s " +#~ "-c" #~ msgid "" -#~ "This tool is used just to view your Pandora FMS system logfiles directly " -#~ "from console" +#~ "This tool is used just to view your Pandora FMS system logfiles directly from " +#~ "console" #~ msgstr "" -#~ "Cette outil est utilisĆ© seulment pour voir votre fichiers du log du sisteme " -#~ "du Pandora FMS directement provenant de la console." +#~ "Cette outil est utilisĆ© seulment pour voir votre fichiers du log du sisteme du " +#~ "Pandora FMS directement provenant de la console." #~ msgid "Pandora Diagnostic info" #~ msgstr "Information de diagnostique de Pandora FMS" @@ -53174,16 +52477,16 @@ msgstr "Gestion du groupe de module" #, php-format #~ msgid "" #~ "This extension makes registration of server plugins more easy. Here you can " -#~ "upload a server plugin in Pandora FMS 3.x zipped format (.pspz). Please " -#~ "refer to documentation on how to obtain and use Pandora FMS Server Plugins." -#~ "

    You can get more plugins in our Public Resource " -#~ "Library" +#~ "upload a server plugin in Pandora FMS 3.x zipped format (.pspz). Please refer " +#~ "to documentation on how to obtain and use Pandora FMS Server Plugins." +#~ "

    You can get more plugins in our Public Resource Library" #~ msgstr "" -#~ "Cet extension fait enregistrement du plugins du serveur plus facile. Ici " -#~ "vous pouvez tƩlƩcharger un plugin du serveur dans le format comprimƩ de " -#~ "Pandora FMS 3.x (.pspz). Si vous plaƮt lire la documentation pour obtenir " -#~ "et utiliser les plugins du serveur de Pandora FMS.

    Vous pouvez " -#~ "obtenir plus de plugins dans notre
    Public Resource Library" +#~ "Cet extension fait enregistrement du plugins du serveur plus facile. Ici vous " +#~ "pouvez tƩlƩcharger un plugin du serveur dans le format comprimƩ de Pandora " +#~ "FMS 3.x (.pspz). Si vous plaƮt lire la documentation pour obtenir et utiliser " +#~ "les plugins du serveur de Pandora FMS.

    Vous pouvez obtenir plus de " +#~ "plugins dans notre Public Resource Library" #~ msgid "Register plugin" #~ msgstr "Enregistrer le plugin" @@ -53278,8 +52581,8 @@ msgstr "Gestion du groupe de module" #~ "If cron is set the module interval is ignored and the module runs on the " #~ "specified date and time" #~ msgstr "" -#~ "Si cron est l'intervalle de modules sont ignorĆ©es et le module fonctionne " -#~ "sur la date et l'heure spĆ©cifiĆ©es" +#~ "Si cron est l'intervalle de modules sont ignorĆ©es et le module fonctionne sur " +#~ "la date et l'heure spĆ©cifiĆ©es" #~ msgid "It is necessary to use some features" #~ msgstr "Il est nĆ©cessaire d'utiliser certaines fonctionnalitĆ©s" @@ -53339,17 +52642,16 @@ msgstr "Gestion du groupe de module" #~ msgstr "Suppression de l'utilisateur %s de toutes les consoles" #~ msgid "" -#~ "Update Manager sends anonymous information about Pandora FMS usage (number " -#~ "of agents and modules running). To disable it, remove remote server address " -#~ "from Update Manager plugin setup." +#~ "Update Manager sends anonymous information about Pandora FMS usage (number of " +#~ "agents and modules running). To disable it, remove remote server address from " +#~ "Update Manager plugin setup." #~ msgstr "" #~ "Update Manager envoie des informations anonymes sur Pandora FMS utilisation " #~ "(nombre d'agents et de modules en cours d'exĆ©cution). Pour le dĆ©sactiver, " -#~ "supprimer l'adresse du serveur distant Ć  partir de l'installation du plug-" -#~ "in Update Manager." +#~ "supprimer l'adresse du serveur distant Ć  partir de l'installation du plug-in " +#~ "Update Manager." -#~ msgid "" -#~ "If there are any database change, it will be applied on the next login." +#~ msgid "If there are any database change, it will be applied on the next login." #~ msgstr "" #~ "S'il y a un changement de base de donnĆ©es, il sera appliquĆ© Ć  la prochaine " #~ "connexion." @@ -53361,8 +52663,8 @@ msgstr "Gestion du groupe de module" #~ "Maybe delete the extended data or the audit data is previous to table " #~ "tsession_extended." #~ msgstr "" -#~ "Peut-ĆŖtre supprimer les donnĆ©es Ć©tendues ou les donnĆ©es d'audit est " -#~ "antĆ©rieure Ć  la table tsession_extended." +#~ "Peut-ĆŖtre supprimer les donnĆ©es Ć©tendues ou les donnĆ©es d'audit est antĆ©rieure " +#~ "Ć  la table tsession_extended." #~ msgid "7 days" #~ msgstr "7 jours" @@ -53435,8 +52737,7 @@ msgstr "Gestion du groupe de module" #~ msgstr "Connexion vie max" #~ msgid "Sets the maximum lifetime for log data in days." -#~ msgstr "" -#~ "DĆ©finit la durĆ©e de vie maximale des donnĆ©es de log en quelques jours." +#~ msgstr "DĆ©finit la durĆ©e de vie maximale des donnĆ©es de log en quelques jours." #~ msgid "Remote Babel Enterprise" #~ msgstr "TĆ©lĆ©commande Babel Enterprise" @@ -53491,8 +52792,8 @@ msgstr "Gestion du groupe de module" #~ msgid "Not copyed. Error copying data. You must select a dashboard" #~ msgstr "" -#~ "Non copyed. Erreur de copie de donnĆ©es. Vous devez sĆ©lectionner un tableau " -#~ "de bord" +#~ "Non copyed. Erreur de copie de donnĆ©es. Vous devez sĆ©lectionner un tableau de " +#~ "bord" #~ msgid "Not copyed. Error copying data" #~ msgstr "Non copyed. Copie de donnĆ©es d'erreur" @@ -53573,8 +52874,7 @@ msgstr "Gestion du groupe de module" #~ msgid "Visual" #~ msgstr "Visuel" -#~ msgid "" -#~ "Complete path to Pandora console without last \"/\" character. Example " +#~ msgid "Complete path to Pandora console without last \"/\" character. Example " #~ msgstr "" #~ "Chemin d'accĆØs complet Ć  la console Pandora sans dernier caractĆØre \"/ \". " #~ "Exemple " @@ -53628,11 +52928,11 @@ msgstr "Gestion du groupe de module" #~ "recommandons fortement Ć  utiliser" #~ msgid "" -#~ "Mozilla Firefox or " -#~ "Google Chrome browsers." +#~ "Mozilla Firefox or Google Chrome browsers." #~ msgstr "" -#~ " Mozilla Firefox " -#~ " Google Chrome navigateurs." +#~ " Mozilla Firefox Google Chrome navigateurs." #~ msgid "Tag management" #~ msgstr "gestion de Tag" @@ -53730,8 +53030,8 @@ msgstr "Gestion du groupe de module" #~ "Maybe the first run is not exactly equal to this value because the cron " #~ "configuration is diferent." #~ msgstr "" -#~ "Peut-ĆŖtre que la premiĆØre manche n'est pas exactement Ć©gale Ć  cette valeur " -#~ "car la configuration de cron est diferent." +#~ "Peut-ĆŖtre que la premiĆØre manche n'est pas exactement Ć©gale Ć  cette valeur car " +#~ "la configuration de cron est diferent." #~ msgid "First execution" #~ msgstr "PremiĆØre exĆ©cution" @@ -53803,23 +53103,23 @@ msgstr "Gestion du groupe de module" #~ "Pandora FMS frontend is built on advanced, modern technologies and does not " #~ "support old browsers." #~ msgstr "" -#~ "Pandora FMS frontend est construite sur des technologies modernes et de " -#~ "pointe et ne supporte pas les anciens navigateurs." +#~ "Pandora FMS frontend est construite sur des technologies modernes et de pointe " +#~ "et ne supporte pas les anciens navigateurs." #~ msgid "" -#~ "It is highly recommended that you choose and install a modern browser. It " -#~ "is free of charge and only takes a couple of minutes." +#~ "It is highly recommended that you choose and install a modern browser. It is " +#~ "free of charge and only takes a couple of minutes." #~ msgstr "" -#~ "Il est fortement recommandĆ© de choisir et d'installer un navigateur " -#~ "moderne. Il est gratuit et ne prend que quelques minutes." +#~ "Il est fortement recommandĆ© de choisir et d'installer un navigateur moderne. " +#~ "Il est gratuit et ne prend que quelques minutes." #~ msgid "Why is it recommended to upgrade the web browser?" #~ msgstr "Pourquoi est-il recommandĆ© de mettre Ć  jour le navigateur web?" #~ msgid "" #~ "New browsers usually come with support for new technologies, increasing web " -#~ "page speed, better privacy settings and so on. They also resolve security " -#~ "and functional issues." +#~ "page speed, better privacy settings and so on. They also resolve security and " +#~ "functional issues." #~ msgstr "" #~ "Nouveaux navigateurs viennent gĆ©nĆ©ralement avec le support de nouvelles " #~ "technologies, en augmentant la vitesse d'une page Web, l'amĆ©lioration des " @@ -53875,8 +53175,7 @@ msgstr "Gestion du groupe de module" #~ msgstr "Barre de raccourcis" #~ msgid "" -#~ "This will activate a shortcut bar with alerts, events, messages... " -#~ "information" +#~ "This will activate a shortcut bar with alerts, events, messages... information" #~ msgstr "" #~ "Cela permettra d'activer une barre de raccourcis avec des alertes, des " #~ "Ć©vĆ©nements, des messages ... informations" @@ -53891,8 +53190,8 @@ msgstr "Gestion du groupe de module" #~ "There was a problem updating the incident, please check if any field was " #~ "modified and the values are correct." #~ msgstr "" -#~ "Il y avait un problĆØme la mise Ć  jour de l'incident, s'il vous plaĆ®t " -#~ "vĆ©rifier si un champ a Ć©tĆ© modifiĆ© et les valeurs sont correctes." +#~ "Il y avait un problĆØme la mise Ć  jour de l'incident, s'il vous plaĆ®t vĆ©rifier " +#~ "si un champ a Ć©tĆ© modifiĆ© et les valeurs sont correctes." #~ msgid "There was a problem creating incident" #~ msgstr "Il y avait un problĆØme de crĆ©ation incidents" @@ -53908,8 +53207,7 @@ msgstr "Gestion du groupe de module" #~ msgid "You user doesn't have enough rights to delete this file" #~ msgstr "" -#~ "Vous utilisateur ne dispose pas de droits suffisants pour supprimer ce " -#~ "fichier" +#~ "Vous utilisateur ne dispose pas de droits suffisants pour supprimer ce fichier" #~ msgid "Incident deleted" #~ msgstr "Incident supprimĆ©" @@ -53924,8 +53222,7 @@ msgstr "Gestion du groupe de module" #~ msgstr "Il y avait un problĆØme ajoutant unitĆ© de travail" #~ msgid "" -#~ "There is a error in the message from your Integria or there is not " -#~ "connection." +#~ "There is a error in the message from your Integria or there is not connection." #~ msgstr "" #~ "Il ya une erreur dans le message de votre Integria ou il n'y a pas de " #~ "connexion." @@ -53942,8 +53239,7 @@ msgstr "Gestion du groupe de module" #, php-format #~ msgid "For security reasons the following characters are not allowed: %s" #~ msgstr "" -#~ "Pour des raisons de sĆ©curitĆ© les caractĆØres suivants ne sont pas autorisĆ©s: " -#~ "%s" +#~ "Pour des raisons de sĆ©curitĆ© les caractĆØres suivants ne sont pas autorisĆ©s: %s" #~ msgid "Port (use 0 for default)" #~ msgstr "Port (0 pour l'utilisation par dĆ©faut)" @@ -53988,22 +53284,22 @@ msgstr "Gestion du groupe de module" #~ "Error in creation SNMP module. snmp3_priv_method doesn't exists. Set it to " #~ "'AES' or 'DES'. " #~ msgstr "" -#~ "Erreur dans le module SNMP de crĆ©ation. snmp3_priv_method n'existe pas. " -#~ "RĆ©glez-le sur Ā«AESĀ» ou Ā«DESĀ». " +#~ "Erreur dans le module SNMP de crĆ©ation. snmp3_priv_method n'existe pas. RĆ©glez-" +#~ "le sur Ā«AESĀ» ou Ā«DESĀ». " #~ msgid "" #~ "Error in creation SNMP module. snmp3_sec_level doesn't exists. Set it to " #~ "'authNoPriv' or 'authPriv' or 'noAuthNoPriv'. " #~ msgstr "" -#~ "Erreur dans le module SNMP de crĆ©ation. snmp3_sec_level n'existe pas. " -#~ "RĆ©glez-le sur Ā«authNoPrivĀ» ou Ā«authPrivĀ» ou Ā«noAuthNoPrivĀ». " +#~ "Erreur dans le module SNMP de crĆ©ation. snmp3_sec_level n'existe pas. RĆ©glez-" +#~ "le sur Ā«authNoPrivĀ» ou Ā«authPrivĀ» ou Ā«noAuthNoPrivĀ». " #~ msgid "" #~ "Error in creation SNMP module. snmp3_auth_method doesn't exists. Set it to " #~ "'MD5' or 'SHA'. " #~ msgstr "" -#~ "Erreur dans le module SNMP de crĆ©ation. snmp3_auth_method n'existe pas. " -#~ "RĆ©glez-le sur Ā«MD5Ā» ou Ā«SHAĀ». " +#~ "Erreur dans le module SNMP de crĆ©ation. snmp3_auth_method n'existe pas. RĆ©glez-" +#~ "le sur Ā«MD5Ā» ou Ā«SHAĀ». " #~ msgid "Error updating SNMP module. Id_module doesn't exists." #~ msgstr "Erreur mise Ć  jour le module SNMP. Id_module n'existe pas." @@ -54012,28 +53308,27 @@ msgstr "Gestion du groupe de module" #~ "Error creating SNMP component. snmp3_priv_method doesn't exists. Set it to " #~ "'AES' or 'DES'. " #~ msgstr "" -#~ "Erreur de crĆ©ation du composant SNMP. snmp3_priv_method n'existe pas. " -#~ "RĆ©glez-le sur Ā«AESĀ» ou Ā«DESĀ». " +#~ "Erreur de crĆ©ation du composant SNMP. snmp3_priv_method n'existe pas. RĆ©glez-" +#~ "le sur Ā«AESĀ» ou Ā«DESĀ». " #~ msgid "" #~ "Error creating SNMP component. snmp3_sec_level doesn't exists. Set it to " #~ "'authNoPriv' or 'authPriv' or 'noAuthNoPriv'. " #~ msgstr "" -#~ "Erreur de crĆ©ation du composant SNMP. snmp3_sec_level n'existe pas. RĆ©glez-" -#~ "le sur Ā«authNoPrivĀ» ou Ā«authPrivĀ» ou Ā«noAuthNoPrivĀ». " +#~ "Erreur de crĆ©ation du composant SNMP. snmp3_sec_level n'existe pas. RĆ©glez-le " +#~ "sur Ā«authNoPrivĀ» ou Ā«authPrivĀ» ou Ā«noAuthNoPrivĀ». " #~ msgid "" #~ "Error creating SNMP component. snmp3_auth_method doesn't exists. Set it to " #~ "'MD5' or 'SHA'. " #~ msgstr "" -#~ "Erreur de crĆ©ation du composant SNMP. snmp3_auth_method n'existe pas. " -#~ "RĆ©glez-le sur Ā«MD5Ā» ou Ā«SHAĀ». " +#~ "Erreur de crĆ©ation du composant SNMP. snmp3_auth_method n'existe pas. RĆ©glez-" +#~ "le sur Ā«MD5Ā» ou Ā«SHAĀ». " #~ msgid "Error creating SNMP component. This SNMP component already exists." #~ msgstr "Erreur de crĆ©ation du composant SNMP. Ce composant SNMP existe dĆ©jĆ ." -#~ msgid "" -#~ "Error getting module value from all agents. Module name doesn't exists." +#~ msgid "Error getting module value from all agents. Module name doesn't exists." #~ msgstr "" #~ "Erreur d'obtention de la valeur du module de tous les agents. Nom du module " #~ "n'existe pas." @@ -54057,11 +53352,10 @@ msgstr "Gestion du groupe de module" #~ msgstr "Erreur module de crĆ©ation de composant de rĆ©seau. Agent n'existe pas." #~ msgid "" -#~ "Error creating module from network component. Network component doesn't " -#~ "exists." +#~ "Error creating module from network component. Network component doesn't exists." #~ msgstr "" -#~ "Erreur module de crĆ©ation de composant de rĆ©seau. Composant de rĆ©seau " -#~ "n'existe pas." +#~ "Erreur module de crĆ©ation de composant de rĆ©seau. Composant de rĆ©seau n'existe " +#~ "pas." #~ msgid "Error assigning module to template. Id_agent doesn't exists." #~ msgstr "Erreur module d'attribution de modĆØle. Id_agent n'existe pas." @@ -54070,21 +53364,18 @@ msgstr "Gestion du groupe de module" #~ msgstr "Erreur module d'attribution de modĆØle. Id_module n'existe pas." #~ msgid "Error deleting module template. Id_module_template doesn't exists." -#~ msgstr "" -#~ "Erreur de suppression modĆØle de module. Id_module_template n'existe pas." +#~ msgstr "Erreur de suppression modĆØle de module. Id_module_template n'existe pas." #~ msgid "Error adding agent to policy. Id_agent doesn't exists." #~ msgstr "Erreur agent de l'ajout Ć  la politique. Id_agent n'existe pas." #~ msgid "Error updating data module in policy. Module doesn't exists." #~ msgstr "" -#~ "Erreur mise Ć  jour de module de donnĆ©es dans la politique. Module n'existe " -#~ "pas." +#~ "Erreur mise Ć  jour de module de donnĆ©es dans la politique. Module n'existe pas." #~ msgid "Error updating network module in policy. Module doesn't exists." #~ msgstr "" -#~ "Erreur mise Ć  jour de module de rĆ©seau dans la politique. Module n'existe " -#~ "pas." +#~ "Erreur mise Ć  jour de module de rĆ©seau dans la politique. Module n'existe pas." #~ msgid "Error updating plugin module in policy. Module doesn't exists." #~ msgstr "" @@ -54096,25 +53387,25 @@ msgstr "Gestion du groupe de module" #~ "Erreur mise Ć  jour le module SNMP dans la politique. Module n'existe pas." #~ msgid "" -#~ "Error updating SNMP module. snmp3_priv_method doesn't exists. Set it to " -#~ "'AES' or 'DES'. " +#~ "Error updating SNMP module. snmp3_priv_method doesn't exists. Set it to 'AES' " +#~ "or 'DES'. " #~ msgstr "" -#~ "Erreur mise Ć  jour le module SNMP. snmp3_priv_method n'existe pas. RĆ©glez-" -#~ "le sur Ā«AESĀ» ou Ā«DESĀ». " +#~ "Erreur mise Ć  jour le module SNMP. snmp3_priv_method n'existe pas. RĆ©glez-le " +#~ "sur Ā«AESĀ» ou Ā«DESĀ». " #~ msgid "" #~ "Error updating SNMP module. snmp3_sec_level doesn't exists. Set it to " #~ "'authNoPriv' or 'authPriv' or 'noAuthNoPriv'. " #~ msgstr "" -#~ "Erreur mise Ć  jour le module SNMP. snmp3_sec_level n'existe pas. RĆ©glez-le " -#~ "sur Ā«authNoPrivĀ» ou Ā«authPrivĀ» ou Ā«noAuthNoPrivĀ». " +#~ "Erreur mise Ć  jour le module SNMP. snmp3_sec_level n'existe pas. RĆ©glez-le sur " +#~ "Ā«authNoPrivĀ» ou Ā«authPrivĀ» ou Ā«noAuthNoPrivĀ». " #~ msgid "" -#~ "Error updating SNMP module. snmp3_auth_method doesn't exists. Set it to " -#~ "'MD5' or 'SHA'. " +#~ "Error updating SNMP module. snmp3_auth_method doesn't exists. Set it to 'MD5' " +#~ "or 'SHA'. " #~ msgstr "" -#~ "Erreur mise Ć  jour le module SNMP. snmp3_auth_method n'existe pas. RĆ©glez-" -#~ "le sur Ā«MD5Ā» ou Ā«SHAĀ». " +#~ "Erreur mise Ć  jour le module SNMP. snmp3_auth_method n'existe pas. RĆ©glez-le " +#~ "sur Ā«MD5Ā» ou Ā«SHAĀ». " #~ msgid "Error applying policy. Id_policy cannot be left blank." #~ msgstr "" @@ -54130,26 +53421,25 @@ msgstr "Gestion du groupe de module" #~ msgid "" #~ "Cannot connect to the database, please check your database setup in the " #~ "include/config.php file.

    \n" -#~ "\t\t\tProbably your database, hostname, user or password values are " -#~ "incorrect or \n" +#~ "\t\t\tProbably your database, hostname, user or password values are incorrect " +#~ "or \n" #~ "\t\t\tthe database server is not running." #~ msgstr "" -#~ "Impossible de se connecter Ơ la base de donnƩes, s'il vous plaƮt vƩrifier " -#~ "la configuration de votre base de donnƩes dans le include / config.php " -#~ " fichier.
    \n" +#~ "Impossible de se connecter Ơ la base de donnƩes, s'il vous plaƮt vƩrifier la " +#~ "configuration de votre base de donnƩes dans le include / config.php " +#~ "fichier.
    \n" #~ " \t \t \tProbably votre base de donnĆ©es, le nom d'hĆ“te , les valeurs " #~ "d'utilisateur ou mot de passe sont incorrects ou \n" #~ " \t \t serveur de base de donnĆ©es tle ne fonctionne pas." #~ msgid "" -#~ "For security reasons, config.php must have restrictive permissions, " -#~ "and \"other\" users \n" -#~ "\t\t\tshould not read it or write to it. It should be written only for " -#~ "owner \n" -#~ "\t\t\t(usually www-data or http daemon user), normal operation is not " -#~ "possible until you change \n" -#~ "\t\t\tpermissions for include/config.php file. Please do it, it is " -#~ "for your security." +#~ "For security reasons, config.php must have restrictive permissions, and " +#~ "\"other\" users \n" +#~ "\t\t\tshould not read it or write to it. It should be written only for owner \n" +#~ "\t\t\t(usually www-data or http daemon user), normal operation is not possible " +#~ "until you change \n" +#~ "\t\t\tpermissions for include/config.php file. Please do it, it is for " +#~ "your security." #~ msgstr "" #~ "Pour des raisons de sĆ©curitĆ©, config.php doit disposer des " #~ "autorisations restrictives, et \"autre \" users \n" @@ -54157,8 +53447,8 @@ msgstr "Gestion du groupe de module" #~ "propriĆ©taire \n" #~ " \t \t \t (gĆ©nĆ©ralement www-data ou http utilisateur daemon), le " #~ "fonctionnement normal n'est pas possible jusqu'Ć  ce que vous modifiez \n" -#~ " \t \t \tpermissions pour include / config. php fichier. Veuillez " -#~ "le faire, c'est pour votre sĆ©curitĆ©." +#~ " \t \t \tpermissions pour include / config. php fichier. Veuillez le " +#~ "faire, c'est pour votre sĆ©curitĆ©." #~ msgid "Auto Save" #~ msgstr "Sauvegarde automatique" @@ -54190,8 +53480,8 @@ msgstr "Gestion du groupe de module" #, php-format #~ msgid "" -#~ "Your PHP environment is setted with %d max_input_vars. Maybe you must not " -#~ "set this value with upper values." +#~ "Your PHP environment is setted with %d max_input_vars. Maybe you must not set " +#~ "this value with upper values." #~ msgstr "" #~ "Votre environnement de PHP est paramĆ©trĆ© avec% d max_input_vars . Peut-ĆŖtre " #~ "que vous ne devez pas dĆ©finir cette valeur avec des valeurs supĆ©rieures ." @@ -54200,8 +53490,7 @@ msgstr "Gestion du groupe de module" #~ msgstr "Menu fixe" #~ msgid "The data number of the module graphs will be rounded and shortened" -#~ msgstr "" -#~ "Le nombre de donnĆ©es des graphiques de module sera arrondi et raccourci" +#~ msgstr "Le nombre de donnĆ©es des graphiques de module sera arrondi et raccourci" #~ msgid "This is defined in minutes" #~ msgstr "Il est dĆ©fini en minutes" @@ -54213,12 +53502,12 @@ msgstr "Gestion du groupe de module" #~ msgstr "ACL stricte" #~ msgid "" -#~ "With this option enabled, the user will can access to accurate information. " -#~ "It is not recommended for admin users because performance could be affected" +#~ "With this option enabled, the user will can access to accurate information. It " +#~ "is not recommended for admin users because performance could be affected" #~ msgstr "" #~ "Avec cette option activĆ©e, l'utilisateur peut accĆ©der a des information " -#~ "prĆ©cise. Il n'est pas recommandĆ© pour des utilisateurs d'administration " -#~ "parce que la performance pourrait ĆŖtre affectĆ©e." +#~ "prĆ©cise. Il n'est pas recommandĆ© pour des utilisateurs d'administration parce " +#~ "que la performance pourrait ĆŖtre affectĆ©e." #~ msgid "Unsuccessfull multiple delete." #~ msgstr "Ɖchec de l'annulation multiple" @@ -54275,15 +53564,15 @@ msgstr "Gestion du groupe de module" #~ msgstr "Essai" #~ msgid "" -#~ "In manual mode you should set the weights manually. In auto mode the " -#~ "weights have default values.\n" +#~ "In manual mode you should set the weights manually. In auto mode the weights " +#~ "have default values.\n" #~ "\t\tIn simple mode only the elements configured as \"critical element\" are " #~ "used to calculate the service status." #~ msgstr "" -#~ "En mode manuel, vous devez dĆ©finir les poids manuellement. En mode " -#~ "automatique les poids ont des valeurs par dĆ©faut.\n" -#~ "\t\t En mode simple uniquement les Ć©lĆ©ments configurĆ©s comme \"critical " -#~ "element\" sont utilisĆ©s pour calculer lĀ“Ć©tat du service." +#~ "En mode manuel, vous devez dĆ©finir les poids manuellement. En mode automatique " +#~ "les poids ont des valeurs par dĆ©faut.\n" +#~ "\t\t En mode simple uniquement les Ć©lĆ©ments configurĆ©s comme \"critical element" +#~ "\" sont utilisĆ©s pour calculer lĀ“Ć©tat du service." #~ msgid "Are you sure? All the visual map services will be recreated" #~ msgstr "Ɗtes-vous sĆ»r? Tous les services du plan visuelle seront recrĆ©Ć©s" @@ -54325,14 +53614,14 @@ msgstr "Gestion du groupe de module" #~ msgstr "Activer la licence" #~ msgid "" -#~ "Destination group is the same than in the original server, if there is not " -#~ "any group with that name, will be created if check box is selected. " -#~ "Destination group filter is just used to check agents in that group" +#~ "Destination group is the same than in the original server, if there is not any " +#~ "group with that name, will be created if check box is selected. Destination " +#~ "group filter is just used to check agents in that group" #~ msgstr "" #~ "Groupe de destination est le mĆŖme que dans le serveur dĀ“origine, sĀ“il nĀ“y a " #~ "pas de groupe avec ce nom, il sera crĆ©Ć© si la case est cochĆ©e. Le filtre de " -#~ "groupe de destination est simplement utilisĆ©e pour vĆ©rifier les agents de " -#~ "ce groupe." +#~ "groupe de destination est simplement utilisĆ©e pour vĆ©rifier les agents de ce " +#~ "groupe." #~ msgid "Based on name" #~ msgstr "BasĆ© sur le nom" @@ -54397,54 +53686,51 @@ msgstr "Gestion du groupe de module" #~ msgstr "Groupe crĆ©er en destination DB" #, php-format -#~ msgid "" -#~ "Unsuccessful the DB Pandora has not all tables. The tables lost are (%s)" +#~ msgid "Unsuccessful the DB Pandora has not all tables. The tables lost are (%s)" #~ msgstr "" #~ "Sans succĆØs, la base de donnĆ©es de Pandora n' a pas toutes les tables. Les " #~ "tables perdues sont ( % s)" #~ msgid "Unsuccessful installed enterprise tables into the testing DB" #~ msgstr "" -#~ "Tables d'entreprise installĆ©es infructueusement dans les tests de la base " -#~ "de donnĆ©es" +#~ "Tables d'entreprise installĆ©es infructueusement dans les tests de la base de " +#~ "donnĆ©es" #, php-format #~ msgid "" #~ "Unsuccessful the field %s in the table %s must be setted the type with %s." -#~ msgstr "" -#~ "Sans succĆØs, le champ %s dans la table %s doit s'ajuster avec le type %s" +#~ msgstr "Sans succĆØs, le champ %s dans la table %s doit s'ajuster avec le type %s" #~ msgid "Please check the SQL file for to know the kind of extra config needed." #~ msgstr "" -#~ "S'il vous plaĆ®t vĆ©rifier le fichier SQL pour savoir quel type de " -#~ "configuration extra est nĆ©cessaire." +#~ "S'il vous plaĆ®t vĆ©rifier le fichier SQL pour savoir quel type de configuration " +#~ "extra est nĆ©cessaire." #, php-format #~ msgid "" -#~ "Unsuccessful the field %s in the table %s must be setted as defined in the " -#~ "SQL file." +#~ "Unsuccessful the field %s in the table %s must be setted as defined in the SQL " +#~ "file." #~ msgstr "" #~ "Sans succĆØs le champ %s dans la table %s doit ĆŖtre ajuster tel qu'il vient " #~ "dĆ©fini dans le fichier SQL ." #, php-format #~ msgid "" -#~ "Unsuccessful the field %s in the table %s must be setted the default value " -#~ "as %s." +#~ "Unsuccessful the field %s in the table %s must be setted the default value as " +#~ "%s." #~ msgstr "" -#~ "Sans succĆØs,le champs %s dans la table %s doit s'ajuster au valeur par " -#~ "dĆ©faut comme %s" +#~ "Sans succĆØs,le champs %s dans la table %s doit s'ajuster au valeur par dĆ©faut " +#~ "comme %s" -#~ msgid "" -#~ "Please check the SQL file for to know the kind of default value needed." +#~ msgid "Please check the SQL file for to know the kind of default value needed." #~ msgstr "" -#~ "S'il vous plaĆ®t consulter le fichier SQL pour savoir quel type de valeur " -#~ "par dĆ©faut est nĆ©cessaire." +#~ "S'il vous plaĆ®t consulter le fichier SQL pour savoir quel type de valeur par " +#~ "dĆ©faut est nĆ©cessaire." #, php-format #~ msgid "" -#~ "Unsuccessful the field %s in the table %s must be setted the key as defined " -#~ "in the SQL file." +#~ "Unsuccessful the field %s in the table %s must be setted the key as defined in " +#~ "the SQL file." #~ msgstr "" #~ "Sans succĆØs, la clĆ© doit s'ajuster au champ %s dans la table %s qui vient " #~ "dĆ©fini dans le fichier SQL" @@ -54468,8 +53754,8 @@ msgstr "Gestion du groupe de module" #, php-format #~ msgid "" -#~ "Unsuccessful the field %s in the table %s must be setted the null values " -#~ "with %s." +#~ "Unsuccessful the field %s in the table %s must be setted the null values with " +#~ "%s." #~ msgstr "" #~ "Ɖchec du champ %s dans la table %s les valeur nul avec %s doivent ĆŖtre " #~ "paramĆ©trĆ©." @@ -54520,13 +53806,13 @@ msgstr "Gestion du groupe de module" #~ msgstr "OLD PASS: " #~ msgid "" -#~ "Illegal query: Due security restrictions, there are some tokens or words " -#~ "you cannot use: *, delete, drop, alter, modify, union, password, pass, " -#~ "insert or update." +#~ "Illegal query: Due security restrictions, there are some tokens or words you " +#~ "cannot use: *, delete, drop, alter, modify, union, password, pass, insert or " +#~ "update." #~ msgstr "" #~ "RequĆŖte illĆ©gales: restrictions de sĆ©curitĆ©, il y a quelques jetons ou des " -#~ "mots que vous ne pouvez pas utiliser: * , delete, drop, alter, modify, " -#~ "union , password ,pass , insert ou update ." +#~ "mots que vous ne pouvez pas utiliser: * , delete, drop, alter, modify, union , " +#~ "password ,pass , insert ou update ." #~ msgid "Error enable/disable agent. The agent doesn't exists." #~ msgstr "Erreur activer/dĆ©sactiver agent. LĀ“agent nĀ“existe pas" @@ -54566,11 +53852,11 @@ msgstr "Gestion du groupe de module" #~ msgstr "DĆ©connecter" #~ msgid "" -#~ "This feature is deprecated, be careful because in the next releases it will " -#~ "be disappear." +#~ "This feature is deprecated, be careful because in the next releases it will be " +#~ "disappear." #~ msgstr "" -#~ "Cette fonctionnalitĆ© est obsolĆØte, soyez prudent car elle disparaĆ®tra dans " -#~ "les mises Ć  jour futures." +#~ "Cette fonctionnalitĆ© est obsolĆØte, soyez prudent car elle disparaĆ®tra dans les " +#~ "mises Ć  jour futures." #~ msgid "Successful the DB Pandora has all tables" #~ msgstr "SuccĆØs, la BD de Pandora contient toutes les tables" @@ -54595,19 +53881,19 @@ msgstr "Gestion du groupe de module" #~ msgid "" #~ "Report generating on the Enterprise version is also more powerful: it has " -#~ "wizards, you can schedule emails in PDF to be sent according to the " -#~ "schedule you decide, and it has a template system to create personalized " -#~ "reports quickly for each of your customers. It will even allow your " -#~ "customers to generate their own reports from templates created by you. If " -#~ "reports are key to your business, Pandora FMS Enterprise version is for you." +#~ "wizards, you can schedule emails in PDF to be sent according to the schedule " +#~ "you decide, and it has a template system to create personalized reports " +#~ "quickly for each of your customers. It will even allow your customers to " +#~ "generate their own reports from templates created by you. If reports are key " +#~ "to your business, Pandora FMS Enterprise version is for you." #~ msgstr "" -#~ "La fonction de crĆ©ation de rapports sur la version Enterprise est aussi " -#~ "plus puissante : elle inclut des assistants logiciels, la possibilitĆ© " -#~ "d'envoyer des courriels en PDF selon votre calendrier, et un systĆØme de " -#~ "modĆØles pour crĆ©er rapidement des rapports personnalisĆ©s pour chaque " -#~ "client. Elle permet aussi Ć  vos clients de dresser leurs propres rapports Ć  " -#~ "partir de modĆØles crĆ©Ć©s par vous. Si les rapports sont un pilier de votre " -#~ "entreprise, la version Enterprise de Pandora FMS est faite pour vous." +#~ "La fonction de crĆ©ation de rapports sur la version Enterprise est aussi plus " +#~ "puissante : elle inclut des assistants logiciels, la possibilitĆ© d'envoyer des " +#~ "courriels en PDF selon votre calendrier, et un systĆØme de modĆØles pour crĆ©er " +#~ "rapidement des rapports personnalisĆ©s pour chaque client. Elle permet aussi Ć  " +#~ "vos clients de dresser leurs propres rapports Ć  partir de modĆØles crĆ©Ć©s par " +#~ "vous. Si les rapports sont un pilier de votre entreprise, la version " +#~ "Enterprise de Pandora FMS est faite pour vous." #~ msgid "" #~ "Besides receiving and processing data to monitor systems or applications, \n" @@ -54619,23 +53905,23 @@ msgstr "Gestion du groupe de module" #~ "comments and files any time in case there is a need to do so.\n" #~ "\t\t\tThis system allows the users to work as a team, along with different " #~ "roles and work-flow systems which allows an incident to be \n" -#~ "\t\t\tmoved from one group to another, and that members from different " -#~ "groups and different people could work on the same incident, sharing " -#~ "information and files.\n" +#~ "\t\t\tmoved from one group to another, and that members from different groups " +#~ "and different people could work on the same incident, sharing information and " +#~ "files.\n" #~ "\t\t" #~ msgstr "" #~ "En plus de recevoir et traiter les donnĆ©es pour surveiller les systĆØmes ou " #~ "applications,\n" #~ "\t\t\tvous devez aussi surveiller les incidents potentiels qui peuvent " #~ "survenir sur ces systĆØmes pendant le processus de surveillance du systĆØme.\n" -#~ "\t\t\tPour cela, l'Ć©quipe de Pandora FMS a conƧu un gestionnaire " -#~ "d'incidents qui permet Ć  n'importe quel utilisateur d'ouvrir des incidents\n" -#~ "\t\t\tpour savoir ce qui s'est passĆ© sur le rĆ©seau, et les mettre Ć  jour " -#~ "avec des commentaires et fichiers en tout temps, au cas oĆ¹ cela s'avĆØre " +#~ "\t\t\tPour cela, l'Ć©quipe de Pandora FMS a conƧu un gestionnaire d'incidents " +#~ "qui permet Ć  n'importe quel utilisateur d'ouvrir des incidents\n" +#~ "\t\t\tpour savoir ce qui s'est passĆ© sur le rĆ©seau, et les mettre Ć  jour avec " +#~ "des commentaires et fichiers en tout temps, au cas oĆ¹ cela s'avĆØre " #~ "nĆ©cessaire.\n" -#~ "\t\t\tCe systĆØme permet aux utilisateurs de travailler en Ć©quipe, au moyen " -#~ "de diffĆ©rents rĆ“les et systĆØmes de flux de travail par lesquels un incident " -#~ "peut ĆŖtre\n" +#~ "\t\t\tCe systĆØme permet aux utilisateurs de travailler en Ć©quipe, au moyen de " +#~ "diffĆ©rents rĆ“les et systĆØmes de flux de travail par lesquels un incident peut " +#~ "ĆŖtre\n" #~ "\t\t\tdĆ©placĆ© d'un groupe vers un autre. De plus, les membres de diffĆ©rents " #~ "groupes et diverses personnes peuvent travailler sur un mĆŖme incident et " #~ "partager de l'information et des fichiers.\n" @@ -54644,8 +53930,8 @@ msgstr "Gestion du groupe de module" #~ msgid "" #~ "Pandora FMS allows you to create visual maps in which each user is able to " #~ "create his own monitoring map.\n" -#~ "\t\t\tThe new visual console editor is much more practical, although the " -#~ "old visual console editor had its advantages. \n" +#~ "\t\t\tThe new visual console editor is much more practical, although the old " +#~ "visual console editor had its advantages. \n" #~ "\t\t\tWithin the new visual console, we've been successful in imitating the " #~ "sensation and touch of a drawing application like GIMP. \n" #~ "\t\t\tWe've also simplified the editor by dividing it into several subject-" @@ -54654,8 +53940,8 @@ msgstr "Gestion du groupe de module" #~ "\t\t\tThe elements the Pandora FMS Visual Map was designed to handle are " #~ "'static image', 'percentage bar', 'module graph' and 'simple value'. " #~ msgstr "" -#~ "Pandora FMS vous permet de crĆ©er des cartes visuelles grĆ¢ce auxquelles " -#~ "chaque utilisateur peut crĆ©er sa propre carte de surveillance.\n" +#~ "Pandora FMS vous permet de crĆ©er des cartes visuelles grĆ¢ce auxquelles chaque " +#~ "utilisateur peut crĆ©er sa propre carte de surveillance.\n" #~ "\t\t\tLe nouvel Ć©diteur est beaucoup plus pratique, quoique l'Ć©diteur de la " #~ "console visuelle prĆ©cĆ©dente prĆ©sentait aussi des avantages.\n" #~ "\t\t\tSur la nouvelle console visuelle, nous avons rĆ©ussi Ć  imiter la " @@ -54664,8 +53950,8 @@ msgstr "Gestion du groupe de module" #~ "onglets par sujets/matiĆØres dĆ©nommĆ©s Ā« DonnĆ©es Ā», Ā« AperƧu Ā», Ā« Assistant " #~ "logiciel Ā», Ā« Liste d'Ć©lĆ©ments Ā» et Ā« Ɖditeur Ā».\n" #~ "\t\t\tLes Cartes Visuelles de Pandora FMS ont Ć©tĆ© conƧues pour gĆ©rer les " -#~ "Ć©lĆ©ments Ā« image statique Ā», Ā« barre de pourcentage Ā», Ā« graphique de " -#~ "module Ā» et Ā« valeur simple Ā» " +#~ "Ć©lĆ©ments Ā« image statique Ā», Ā« barre de pourcentage Ā», Ā« graphique de module Ā» " +#~ "et Ā« valeur simple Ā» " #~ msgid "Create Planned Downtime" #~ msgstr "CrĆ©er un temps d'arrĆŖt planifiĆ©" @@ -54678,12 +53964,12 @@ msgstr "Gestion du groupe de module" #~ msgid "" #~ "Pandora FMS contains a scheduled downtime management system. \n" -#~ "\t\t\t\t\t\tThis system was designed to deactivate the alerts in the " -#~ "intervals whenever there is down time by deactivating the agent.\n" -#~ "\t\t\t\t\t\tIf an agent is deactivated, it doesn't collect information. In " -#~ "a down time, the down-time intervals aren't taken into \n" -#~ "\t\t\t\t\t\taccount for most of the metrics or types of reports, because " -#~ "the agents don't contain any data within those intervals. " +#~ "\t\t\t\t\t\tThis system was designed to deactivate the alerts in the intervals " +#~ "whenever there is down time by deactivating the agent.\n" +#~ "\t\t\t\t\t\tIf an agent is deactivated, it doesn't collect information. In a " +#~ "down time, the down-time intervals aren't taken into \n" +#~ "\t\t\t\t\t\taccount for most of the metrics or types of reports, because the " +#~ "agents don't contain any data within those intervals. " #~ msgstr "" #~ "Pandora FMS contient un systĆØme de gestion de temps d'arrĆŖt planifiĆ©.\n" #~ "\t\t\t\t\t\tCe systĆØme a Ć©tĆ© conƧu pour dĆ©sactiver les alertes dans les " @@ -54696,12 +53982,12 @@ msgstr "Gestion du groupe de module" #~ "intervalles. " #~ msgid "" -#~ "From Pandora FMS versions 5 and above, the access to modules can be " -#~ "configured by a tags system.\n" +#~ "From Pandora FMS versions 5 and above, the access to modules can be configured " +#~ "by a tags system.\n" #~ "\t\t\t\t\t\t\t\tTags are configured on the system and be assigned to the " #~ "chosen modules. \n" -#~ "\t\t\t\t\t\t\t\tThe user's access can be limited to modules with certain " -#~ "tags in this way. " +#~ "\t\t\t\t\t\t\t\tThe user's access can be limited to modules with certain tags " +#~ "in this way. " #~ msgstr "" #~ "Pour la version 5 de Pandora FMS et les suivantes, il est possible de " #~ "configurer l'accĆØs aux modules avec un systĆØme d'Ć©tiquettes.\n" @@ -54739,8 +54025,8 @@ msgstr "Gestion du groupe de module" #~ msgstr "Obligatoire" #~ msgid "" -#~ "Your session is over. Please close your browser window to close this " -#~ "Pandora session." +#~ "Your session is over. Please close your browser window to close this Pandora " +#~ "session." #~ msgstr "" #~ "Votre session a expirĆ©. Veuillez fermer votre fenĆŖtre de navigateur pour " #~ "clĆ“turer cette session de Pandora FMS." @@ -54752,8 +54038,8 @@ msgstr "Gestion du groupe de module" #~ msgstr "Code de langage pour Pandora FMS" #~ msgid "" -#~ "Pandora FMS help system has been called with a help reference that " -#~ "currently don't exist. There is no help content to show." +#~ "Pandora FMS help system has been called with a help reference that currently " +#~ "don't exist. There is no help content to show." #~ msgstr "" #~ "Le systĆØme d'aide de Pandora FMS a Ć©tĆ© appelĆ© avec une rĆ©fĆ©rence d'aide qui " #~ "n'existe pas en ce moment. Il n'y a pas de contenu d'aide Ć  montrer." @@ -54772,8 +54058,7 @@ msgstr "Gestion du groupe de module" #~ msgid "This field allows url insertion using the BBCode's url tag" #~ msgstr "" -#~ "Ce champ permet d'insĆ©rer une adresse URL en utilisant l'Ć©tiquette URL " -#~ "BBCode" +#~ "Ce champ permet d'insĆ©rer une adresse URL en utilisant l'Ć©tiquette URL BBCode" #~ msgid "e.g.: [url=pandorafms.org]Pandora FMS Community[/url]" #~ msgstr "par ex. : [url=pandorafms.org]CommunautĆ© Pandora FMS[/url]" @@ -54867,33 +54152,33 @@ msgstr "Gestion du groupe de module" #~ msgstr "DƉBOGUER : type de module non valide spĆ©cifiĆ© dans %s:%s" #~ msgid "" -#~ "Most likely you have recently upgraded from an earlier version of Pandora " -#~ "and either
    \n" +#~ "Most likely you have recently upgraded from an earlier version of Pandora and " +#~ "either
    \n" #~ "\t\t\t\t1) forgot to use the database converter
    \n" #~ "\t\t\t\t2) used a bad version of the database converter (see Bugreport " #~ "#2124706 for the solution)
    \n" #~ "\t\t\t\t3) found a new bug - please report a way to duplicate this error" #~ msgstr "" -#~ "Vous avez probablement effectuƩ une mise Ơ niveau de Pandora FMS d'une " -#~ "version antƩrieure et soit
    \n" -#~ "\t\t\t\t1) vous avez oubliƩ d'utiliser le convertisseur de base de " -#~ "donnƩes
    \n" -#~ "\t\t\t\t2) vous avez utilisƩ une mauvaise version du convertisseur de base " -#~ "de donnƩes (voir Bugreport #2124706 pour la solution)
    \n" -#~ "\t\t\t\t3) vous avez trouvĆ© un nouveau bogue (veuillez signaler une maniĆØre " -#~ "de dupliquer cette erreur)" +#~ "Vous avez probablement effectuĆ© une mise Ć  niveau de Pandora FMS d'une version " +#~ "antĆ©rieure et soit
    \n" +#~ "\t\t\t\t1) vous avez oubliƩ d'utiliser le convertisseur de base de donnƩes
    \n" +#~ "\t\t\t\t2) vous avez utilisƩ une mauvaise version du convertisseur de base de " +#~ "donnƩes (voir Bugreport #2124706 pour la solution)
    \n" +#~ "\t\t\t\t3) vous avez trouvĆ© un nouveau bogue (veuillez signaler une maniĆØre de " +#~ "dupliquer cette erreur)" #~ msgid "" -#~ "In case you use an Export server you can link this module and export data " -#~ "to one these." +#~ "In case you use an Export server you can link this module and export data to " +#~ "one these." #~ msgstr "" -#~ "Si vous utilisez un serveur d'exportation, vous pouvez associer ce module " -#~ "et exporter les donnĆ©es vers un d'entre eux." +#~ "Si vous utilisez un serveur d'exportation, vous pouvez associer ce module et " +#~ "exporter les donnĆ©es vers un d'entre eux." #~ msgid "The module still stores data but the alerts and events will be stop" #~ msgstr "" -#~ "Le module stocke encore des donnĆ©es, mais les alertes et les Ć©vĆ©nements " -#~ "seront arrĆŖtĆ©s" +#~ "Le module stocke encore des donnĆ©es, mais les alertes et les Ć©vĆ©nements seront " +#~ "arrĆŖtĆ©s" #~ msgid "Each planned downtime must have a different name" #~ msgstr "Chaque temps d'arrĆŖt planifiĆ© doit avoir un nom diffĆ©rent" @@ -54911,11 +54196,11 @@ msgstr "Gestion du groupe de module" #~ msgstr "Ce temps d'arrĆŖt planifiĆ© est en exĆ©cution" #~ msgid "" -#~ "WARNING: If you edit this planned downtime, the data of future SLA reports " -#~ "may be altered" +#~ "WARNING: If you edit this planned downtime, the data of future SLA reports may " +#~ "be altered" #~ msgstr "" -#~ "ATTENTION : Si vous modifiez ce temps d'arrĆŖt planifiĆ©, les donnĆ©es des " -#~ "futurs rapports du SLA peuvent subir des modifications" +#~ "ATTENTION : Si vous modifiez ce temps d'arrĆŖt planifiĆ©, les donnĆ©es des futurs " +#~ "rapports du SLA peuvent subir des modifications" #~ msgid "An error occurred while migrating the malformed planned downtimes" #~ msgstr "" @@ -54923,21 +54208,21 @@ msgstr "Gestion du groupe de module" #~ "incorrects" #~ msgid "" -#~ "The alert would fire when the value is not between and " +#~ "The alert would fire when the value is not between " +#~ "and " #~ msgstr "" #~ "L'alerte est dĆ©clenchĆ©e lorsque la valeur ne se trouve pas entre et " #~ msgid "" -#~ "Please check your Pandora Server setup and be sure that database " -#~ "maintenance daemon is running. It's very important to keep up-to-date " -#~ "database to get the best performance and results in Pandora" +#~ "Please check your Pandora Server setup and be sure that database maintenance " +#~ "daemon is running. It's very important to keep up-to-date database to get the " +#~ "best performance and results in Pandora" #~ msgstr "" #~ "Veuillez vĆ©rifier la configuration de votre Serveur Pandora FMS et vous " -#~ "assurer que votre dĆ©mon de gestion de la base de donnĆ©es soit fonctionnel. " -#~ "Il est indispensable que la base de donnĆ©es soit Ć  jour afin d'obtenir un " -#~ "bon rendement et les meilleurs rĆ©sultats sur Pandora FMS." +#~ "assurer que votre dĆ©mon de gestion de la base de donnĆ©es soit fonctionnel. Il " +#~ "est indispensable que la base de donnĆ©es soit Ć  jour afin d'obtenir un bon " +#~ "rendement et les meilleurs rĆ©sultats sur Pandora FMS." #~ msgid "Default zoom level when opening the map" #~ msgstr "Niveau de zoom par dĆ©faut lorsque la carte s'ouvre" @@ -54946,12 +54231,12 @@ msgstr "Gestion du groupe de module" #~ "At least one map connection must be defined, it will be possible to change " #~ "between the connections in the map" #~ msgstr "" -#~ "Au moins une connexion de carte doit ĆŖtre dĆ©finie. Il est possible de " -#~ "changer les connexions sur la carte par la suite" +#~ "Au moins une connexion de carte doit ĆŖtre dĆ©finie. Il est possible de changer " +#~ "les connexions sur la carte par la suite" #~ msgid "" -#~ "Each layer can show agents from one group or the agents added to that layer " -#~ "or both." +#~ "Each layer can show agents from one group or the agents added to that layer or " +#~ "both." #~ msgstr "" #~ "Chaque couche peut afficher les agents appartenant Ć  un groupe, les agents " #~ "ajoutĆ©s Ć  cette couche ou les deux." @@ -55024,8 +54309,8 @@ msgstr "Gestion du groupe de module" #~ "Your report has been planned, and the system will email you a PDF with the " #~ "report as soon as its finished" #~ msgstr "" -#~ "Votre rapport a Ć©tĆ© dressĆ© ; le systĆØme vous enverra le rapport par " -#~ "courriel en format PDF dĆØs qu'il sera complĆ©tĆ©" +#~ "Votre rapport a Ć©tĆ© dressĆ© ; le systĆØme vous enverra le rapport par courriel " +#~ "en format PDF dĆØs qu'il sera complĆ©tĆ©" #~ msgid "Recon task" #~ msgstr "TĆ¢che Recon" @@ -55041,8 +54326,7 @@ msgstr "Gestion du groupe de module" #~ msgid "Recon-task name already exists and incorrect format in Subnet field" #~ msgstr "" -#~ "Le nom de la tĆ¢che Recon existe dĆ©jĆ  et le format du sous-rĆ©seau est " -#~ "invalide" +#~ "Le nom de la tĆ¢che Recon existe dĆ©jĆ  et le format du sous-rĆ©seau est invalide" #~ msgid "Wrong format in Subnet field" #~ msgstr "Format erronĆ© dans le champ sous-rĆ©seau" @@ -55060,11 +54344,11 @@ msgstr "Gestion du groupe de module" #~ msgstr "Aucune tĆ¢che Recon configurĆ©e" #~ msgid "" -#~ "By default, in Windows, Pandora FMS only support Standard network sweep, " -#~ "not custom scripts" +#~ "By default, in Windows, Pandora FMS only support Standard network sweep, not " +#~ "custom scripts" #~ msgstr "" -#~ "Sur Windows, Pandora FMS prend seulement en charge par dĆ©faut le balayage " -#~ "de rĆ©seau standard, et pas les scripts personnalisĆ©s" +#~ "Sur Windows, Pandora FMS prend seulement en charge par dĆ©faut le balayage de " +#~ "rĆ©seau standard, et pas les scripts personnalisĆ©s" #~ msgid "Module template" #~ msgstr "ModĆØle du module" @@ -55098,32 +54382,31 @@ msgstr "Gestion du groupe de module" #~ msgid "This selects what to change by clicking on the map" #~ msgstr "" -#~ "Ceci permet de sĆ©lectionner ce que vous souhaitez modifier en cliquant sur " -#~ "la carte" +#~ "Ceci permet de sĆ©lectionner ce que vous souhaitez modifier en cliquant sur la " +#~ "carte" #~ msgid "To get your Pandora FMS Enterprise License:" #~ msgstr "Pour obtenir votre Licence Pandora FMS Enterprise :" #~ msgid "" -#~ "Configure a purge period more frequent than a compact data period has no " -#~ "sense" +#~ "Configure a purge period more frequent than a compact data period has no sense" #~ msgstr "" #~ "Configurer une pĆ©riode de nettoyage plus frĆ©quente qu'une pĆ©riode de " #~ "compression de donnĆ©es n'a pas de sens" #~ msgid "" -#~ "Set a value too high cause a slowdown on console and a performance penalty " -#~ "in the system." +#~ "Set a value too high cause a slowdown on console and a performance penalty in " +#~ "the system." #~ msgstr "" -#~ "DĆ©finir une valeur trop Ć©levĆ©e provoque un ralentissement de la console et " -#~ "un altĆ©ration de la performance dans le systĆØme." +#~ "DĆ©finir une valeur trop Ć©levĆ©e provoque un ralentissement de la console et un " +#~ "altĆ©ration de la performance dans le systĆØme." #~ msgid "Data will be compacted in intervals of the specified length." #~ msgstr "Les donnĆ©es seront comprimĆ©es dans les intervalles de durĆ©e indiquĆ©s." #~ msgid "" -#~ "If realtime statistics are disabled, statistics interval resfresh will be " -#~ "set here." +#~ "If realtime statistics are disabled, statistics interval resfresh will be set " +#~ "here." #~ msgstr "" #~ "Si les statistiques en temps rĆ©el sont dĆ©sactivĆ©es, le rafraĆ®chissement des " #~ "intervalles des statistiques sera configurĆ© ici." @@ -55133,9 +54416,9 @@ msgstr "Gestion du groupe de module" #~ "number is reached then a warning message will appear in the header " #~ "notification space." #~ msgstr "" -#~ "Ce nombre indique le nombre maximum de fichiers dans le rĆ©pertoire des " -#~ "piĆØces jointes. Si ce nombre est atteint, un message d'alerte apparaĆ®tra " -#~ "dans l'espace de notification supĆ©rieur." +#~ "Ce nombre indique le nombre maximum de fichiers dans le rĆ©pertoire des piĆØces " +#~ "jointes. Si ce nombre est atteint, un message d'alerte apparaĆ®tra dans " +#~ "l'espace de notification supĆ©rieur." #~ msgid "e.g., 18080" #~ msgstr "par ex. 18080" @@ -55143,60 +54426,58 @@ msgstr "Gestion du groupe de module" #~ msgid "Without protocol and port" #~ msgstr "Sans protocole et port" -#~ msgid "" -#~ "Time in seconds to set the maximum time of the requests to the eHorus API" +#~ msgid "Time in seconds to set the maximum time of the requests to the eHorus API" #~ msgstr "" -#~ "Temps en secondes pour Ć©tablir le temps maximum des requĆŖtes pour l'API " -#~ "eHorus" +#~ "Temps en secondes pour Ć©tablir le temps maximum des requĆŖtes pour l'API eHorus" #~ msgid "0 to disable" #~ msgstr "0 pour dĆ©sactiver" #~ msgid "" -#~ "If SSL is not properly configured you will lose access to Pandora FMS " -#~ "Console. Do you want to continue?" +#~ "If SSL is not properly configured you will lose access to Pandora FMS Console. " +#~ "Do you want to continue?" #~ msgstr "" -#~ "Si le SSL n'est pas configurĆ©, vous perdrez accĆØs Ć  la console de Pandora " -#~ "FMS. Ɗtes-vous sĆ»r(e) de vouloir continuer ?" +#~ "Si le SSL n'est pas configurĆ©, vous perdrez accĆØs Ć  la console de Pandora FMS. " +#~ "Ɗtes-vous sĆ»r(e) de vouloir continuer ?" #~ msgid "Enable GIS features in Pandora Console" #~ msgstr "Activer les fonctionnalitĆ©s GIS sur la console de Pandora FMS" #~ msgid "" -#~ "If set to yes no events or alerts will be generated, but agents will " -#~ "continue receiving data." +#~ "If set to yes no events or alerts will be generated, but agents will continue " +#~ "receiving data." #~ msgstr "" #~ "S'il est rĆ©glĆ© sur Ā« oui Ā», aucun Ć©vĆ©nement ou alerte sera gĆ©nĆ©rĆ©, mais les " #~ "agents continueront de recevoir des donnĆ©es." #~ msgid "" -#~ "Set this value when your PandoraFMS across inverse proxy or for example " -#~ "with mod_proxy of Apache." +#~ "Set this value when your PandoraFMS across inverse proxy or for example with " +#~ "mod_proxy of Apache." #~ msgstr "" -#~ "DĆ©finissez cette valeur avec proxy inverse de Pandora FMS ou par exemple " -#~ "avec mod_proxy Apache." +#~ "DĆ©finissez cette valeur avec proxy inverse de Pandora FMS ou par exemple avec " +#~ "mod_proxy Apache." #~ msgid "" #~ "When it is set as \"yes\" in some important sections check if the user have " #~ "gone from url Pandora." #~ msgstr "" -#~ "Quand il est rĆ©glĆ© sur Ā« oui Ā» dans certaines sections importantes, " -#~ "veuillez vĆ©rifier si l'utilisateur a quittĆ© l'URL de Pandora FMS." +#~ "Quand il est rĆ©glĆ© sur Ā« oui Ā» dans certaines sections importantes, veuillez " +#~ "vĆ©rifier si l'utilisateur a quittĆ© l'URL de Pandora FMS." #~ msgid "" #~ "If Enterprise ACL System is enabled without rules you will lose access to " #~ "Pandora FMS Console (even admin). Do you want to continue?" #~ msgstr "" -#~ "Si le systĆØme ACL Enterprise est activĆ© sans rĆØgles, vous perdrez accĆØs Ć  " -#~ "la Console de Pandora FMS (mĆŖme en tant qu'administrateur). Ɗtes-vous " -#~ "sĆ»r(e) de vouloir continuer ?" +#~ "Si le systĆØme ACL Enterprise est activĆ© sans rĆØgles, vous perdrez accĆØs Ć  la " +#~ "Console de Pandora FMS (mĆŖme en tant qu'administrateur). Ɗtes-vous sĆ»r(e) de " +#~ "vouloir continuer ?" #~ msgid "Directory where netflow data will be stored." #~ msgstr "RĆ©pertoire oĆ¹ seront stockĆ©s les donnĆ©es NetFlow." #~ msgid "" -#~ "This enabling this, you get a label with agent name in GIS maps. If you " -#~ "have lots of agents in the map, will be unreadable. Disabled by default." +#~ "This enabling this, you get a label with agent name in GIS maps. If you have " +#~ "lots of agents in the map, will be unreadable. Disabled by default." #~ msgstr "" #~ "En activant cette fonction, vous obtiendrez une Ć©tiquette avec le nom de " #~ "l'agent sur les cartes GIS. Illisible si vous avez beaucoup d'agents sur la " @@ -55215,8 +54496,7 @@ msgstr "Gestion du groupe de module" #~ msgstr "Afficher seulement la moyenne" #~ msgid "Custom directory where the graphviz binaries are stored." -#~ msgstr "" -#~ "RĆ©pertoire personnalisĆ© oĆ¹ sont stockĆ©s les fichiers binaires graphviz." +#~ msgstr "RĆ©pertoire personnalisĆ© oĆ¹ sont stockĆ©s les fichiers binaires graphviz." #~ msgid "Mark as not read" #~ msgstr "Marquer comme non lu" @@ -55262,16 +54542,15 @@ msgstr "Gestion du groupe de module" #~ "Example: Select 'Other' and type sec=estado&sec2=operation/agentes/" #~ "estado_agente to show agent detail view" #~ msgstr "" -#~ "L'utilisateur peut personnaliser la page d'accueil. Par dĆ©faut, les Ā« " -#~ "DĆ©tails de l'Agent Ā» seront affichĆ©s. Par ex. : sĆ©lectionnez Ā« Autre Ā» et " -#~ "introduisez sec=estado&sec2=operation/agentes/estado_agente pour afficher " -#~ "les dĆ©tails de l'agent." +#~ "L'utilisateur peut personnaliser la page d'accueil. Par dĆ©faut, les Ā« DĆ©tails " +#~ "de l'Agent Ā» seront affichĆ©s. Par ex. : sĆ©lectionnez Ā« Autre Ā» et introduisez " +#~ "sec=estado&sec2=operation/agentes/estado_agente pour afficher les dĆ©tails de " +#~ "l'agent." #~ msgid "" #~ "Unsucessful delete profile. Because the profile is used by some admin users." #~ msgstr "" -#~ "Erreur de suppression du profil ; quelques administrateurs utilisent ce " -#~ "profil." +#~ "Erreur de suppression du profil ; quelques administrateurs utilisent ce profil." #~ msgid "System incidents reading" #~ msgstr "Lecture des incidents du systĆØme" @@ -55344,16 +54623,16 @@ msgstr "Gestion du groupe de module" #~ "Error in creation network module. Id_module_type is not correct for network " #~ "modules." #~ msgstr "" -#~ "Erreur de crĆ©ation du module de rĆ©seau. Id_module_type n'est pas correct " -#~ "pour les modules de rĆ©seau." +#~ "Erreur de crĆ©ation du module de rĆ©seau. Id_module_type n'est pas correct pour " +#~ "les modules de rĆ©seau." #~ msgid "No set or get or help operation." #~ msgstr "Pas accĆØs Ć  des opĆ©rations de type SET, GET ou HELP" #~ msgid "Error updating plugin module. Id_module cannot be left blank." #~ msgstr "" -#~ "Erreur de mise Ć  jour du module plugin. Id_module ne peut pas ĆŖtre laissĆ© " -#~ "en blanc." +#~ "Erreur de mise Ć  jour du module plugin. Id_module ne peut pas ĆŖtre laissĆ© en " +#~ "blanc." #~ msgid "Error in creation plugin module. Id_plugin cannot be left blank." #~ msgstr "" @@ -55362,8 +54641,8 @@ msgstr "Gestion du groupe de module" #~ msgid "Error updating network module. Module name cannot be left blank." #~ msgstr "" -#~ "Erreur de mise Ć  jour du module de rĆ©seau. Le nom du module ne peut pas " -#~ "ĆŖtre laissĆ© en blanc." +#~ "Erreur de mise Ć  jour du module de rĆ©seau. Le nom du module ne peut pas ĆŖtre " +#~ "laissĆ© en blanc." #~ msgid "Error updating network module. Id_module exists in the new agent." #~ msgstr "" @@ -55375,8 +54654,8 @@ msgstr "Gestion du groupe de module" #~ msgid "Error in creation synthetic module. Module_name cannot be left blank." #~ msgstr "" -#~ "Erreur de crĆ©ation du module synthĆ©tique. Module_name ne peut pas ĆŖtre " -#~ "laissĆ© en blanc." +#~ "Erreur de crĆ©ation du module synthĆ©tique. Module_name ne peut pas ĆŖtre laissĆ© " +#~ "en blanc." #~ msgid "Error updating plugin module. Id_module exists in the new agent." #~ msgstr "" @@ -55388,38 +54667,33 @@ msgstr "Gestion du groupe de module" #~ "Erreur de crĆ©ation du module SNMP. Module_name ne peut pas ĆŖtre laissĆ© en " #~ "blanc." -#~ msgid "" -#~ "Error in creation SNMP module. Invalid id_module_type for a SNMP module." +#~ msgid "Error in creation SNMP module. Invalid id_module_type for a SNMP module." #~ msgstr "" #~ "Erreur de crĆ©ation du module SNMP. Id_module_type non valide pour un module " #~ "SNMP." #~ msgid "" -#~ "Error creating network component. Incorrect value for Network component " -#~ "type field." +#~ "Error creating network component. Incorrect value for Network component type " +#~ "field." #~ msgstr "" -#~ "Erreur de crĆ©ation du composant de rĆ©seau. Valeur incorrecte pour le champ " -#~ "de type de composant de rĆ©seau." +#~ "Erreur de crĆ©ation du composant de rĆ©seau. Valeur incorrecte pour le champ de " +#~ "type de composant de rĆ©seau." #~ msgid "" -#~ "Error creating network component. Network component name cannot be left " -#~ "blank." +#~ "Error creating network component. Network component name cannot be left blank." #~ msgstr "" #~ "Erreur de crĆ©ation du composant de rĆ©seau. Le nom du composant du rĆ©seau ne " #~ "peut pas ĆŖtre laissĆ© en blanc." -#~ msgid "" -#~ "Error creating network component. This network component already exists." +#~ msgid "Error creating network component. This network component already exists." #~ msgstr "" -#~ "Erreur de crĆ©ation du composant de rĆ©seau. Ce composant de rĆ©seau existe " -#~ "dĆ©jĆ ." +#~ "Erreur de crĆ©ation du composant de rĆ©seau. Ce composant de rĆ©seau existe dĆ©jĆ ." #~ msgid "" -#~ "Error creating network component. Network component group cannot be left " -#~ "blank." +#~ "Error creating network component. Network component group cannot be left blank." #~ msgstr "" -#~ "Erreur de crĆ©ation du composant de rĆ©seau. Le groupe du composant de rĆ©seau " -#~ "ne peut pas ĆŖtre laissĆ© en blanc." +#~ "Erreur de crĆ©ation du composant de rĆ©seau. Le groupe du composant de rĆ©seau ne " +#~ "peut pas ĆŖtre laissĆ© en blanc." #~ msgid "Error in creation SNMP module." #~ msgstr "Erreur de crĆ©ation du module SNMP." @@ -55441,48 +54715,42 @@ msgstr "Gestion du groupe de module" #~ msgid "" #~ "Error creating plugin component. Plugin component name cannot be left blank." #~ msgstr "" -#~ "Erreur de crĆ©ation du composant de plugin. Le nom du composant plugin ne " -#~ "peut pas ĆŖtre laissĆ© en blanc." +#~ "Erreur de crĆ©ation du composant de plugin. Le nom du composant plugin ne peut " +#~ "pas ĆŖtre laissĆ© en blanc." #~ msgid "Error creating plugin component. This plugin component already exists." #~ msgstr "" -#~ "Erreur de crĆ©ation du composant de plugin. Ce composant de plugin existe " -#~ "dĆ©jĆ ." +#~ "Erreur de crĆ©ation du composant de plugin. Ce composant de plugin existe dĆ©jĆ ." #~ msgid "" -#~ "Error creating plugin component. Plugin component group cannot be left " -#~ "blank." +#~ "Error creating plugin component. Plugin component group cannot be left blank." #~ msgstr "" -#~ "Erreur de crĆ©ation du composant de plugin. Le groupe du composant de plugin " -#~ "ne peut pas ĆŖtre laissĆ© en blanc." +#~ "Erreur de crĆ©ation du composant de plugin. Le groupe du composant de plugin ne " +#~ "peut pas ĆŖtre laissĆ© en blanc." #~ msgid "" -#~ "Error creating SNMP component. Incorrect value for Snmp component type " -#~ "field." +#~ "Error creating SNMP component. Incorrect value for Snmp component type field." #~ msgstr "" -#~ "Erreur de crĆ©ation du composant SNMP. Valeur incorrecte pour le champ de " -#~ "type de composant SNMP." +#~ "Erreur de crĆ©ation du composant SNMP. Valeur incorrecte pour le champ de type " +#~ "de composant SNMP." -#~ msgid "" -#~ "Error creating SNMP component. SNMP component name cannot be left blank." +#~ msgid "Error creating SNMP component. SNMP component name cannot be left blank." #~ msgstr "" #~ "Erreur de crĆ©ation du composant SNMP. Le nom du composant SNMP ne peut pas " #~ "ĆŖtre laissĆ© en blanc." -#~ msgid "" -#~ "Error creating SNMP component. Snmp component group cannot be left blank." +#~ msgid "Error creating SNMP component. Snmp component group cannot be left blank." #~ msgstr "" -#~ "Erreur de crĆ©ation du composant SNMP. Le groupe de composant SNMP ne peut " -#~ "pas ĆŖtre laissĆ© en blanc." +#~ "Erreur de crĆ©ation du composant SNMP. Le groupe de composant SNMP ne peut pas " +#~ "ĆŖtre laissĆ© en blanc." #~ msgid "Error creating local component. This local component already exists." -#~ msgstr "" -#~ "Erreur de crĆ©ation du composant local. Ce composant local existe dĆ©jĆ ." +#~ msgstr "Erreur de crĆ©ation du composant local. Ce composant local existe dĆ©jĆ ." #~ msgid "Error updating alert template. Id_template cannot be left blank." #~ msgstr "" -#~ "Erreur de mise Ć  jour du modĆØle d'alerte. Id_template ne peut pas ĆŖtre " -#~ "laissĆ© en blanc." +#~ "Erreur de mise Ć  jour du modĆØle d'alerte. Id_template ne peut pas ĆŖtre laissĆ© " +#~ "en blanc." #~ msgid "Error creating alert template. Template name cannot be left blank." #~ msgstr "" @@ -55490,11 +54758,10 @@ msgstr "Gestion du groupe de module" #~ "laissĆ© en blanc." #~ msgid "" -#~ "Error getting module value from all agents. Module name cannot be left " -#~ "blank." +#~ "Error getting module value from all agents. Module name cannot be left blank." #~ msgstr "" -#~ "Erreur d'obtention de la valeur du module de tous les agents. Le nom du " -#~ "module ne peut pas ĆŖtre laissĆ© en blanc." +#~ "Erreur d'obtention de la valeur du module de tous les agents. Le nom du module " +#~ "ne peut pas ĆŖtre laissĆ© en blanc." #~ msgid "" #~ "Error creating local component. Local component group cannot be left blank." @@ -55505,16 +54772,16 @@ msgstr "Gestion du groupe de module" #~ msgid "" #~ "Error creating local component. Local component name cannot be left blank." #~ msgstr "" -#~ "Erreur de crĆ©ation du composant local. Le nom du composant local ne peut " -#~ "pas ĆŖtre laissĆ© en blanc." +#~ "Erreur de crĆ©ation du composant local. Le nom du composant local ne peut pas " +#~ "ĆŖtre laissĆ© en blanc." #~ msgid "Error deleting alert template." #~ msgstr "Erreur de suppression du modĆØle d'alerte." #~ msgid "Error deleting alert template. Id_template cannot be left blank." #~ msgstr "" -#~ "Erreur de suppression du modĆØle d'alerte. Id_template ne peut pas ĆŖtre " -#~ "laissĆ© en blanc." +#~ "Erreur de suppression du modĆØle d'alerte. Id_template ne peut pas ĆŖtre laissĆ© " +#~ "en blanc." #~ msgid "Error updating alert template." #~ msgstr "Erreur de mise Ć  jour du modĆØle d'alerte." @@ -55530,18 +54797,18 @@ msgstr "Gestion du groupe de module" #~ msgid "Error assigning module to template. Id_template cannot be left blank." #~ msgstr "" -#~ "Erreur d'attribution du module au modĆØle. Id_template ne peut pas ĆŖtre " -#~ "laissĆ© en blanc." +#~ "Erreur d'attribution du module au modĆØle. Id_template ne peut pas ĆŖtre laissĆ© " +#~ "en blanc." #~ msgid "Error assigning module to template. Id_module cannot be left blank." #~ msgstr "" -#~ "Erreur d'attribution du module au modĆØle. Id_module ne peut pas ĆŖtre laissĆ© " -#~ "en blanc." +#~ "Erreur d'attribution du module au modĆØle. Id_module ne peut pas ĆŖtre laissĆ© en " +#~ "blanc." #~ msgid "Error assigning module to template. Id_agent cannot be left blank." #~ msgstr "" -#~ "Erreur d'attribution du module au modĆØle. Id_agent ne peut pas ĆŖtre laissĆ© " -#~ "en blanc." +#~ "Erreur d'attribution du module au modĆØle. Id_agent ne peut pas ĆŖtre laissĆ© en " +#~ "blanc." #~ msgid "Error creating module from network component. Error creating module." #~ msgstr "" @@ -55557,8 +54824,7 @@ msgstr "Gestion du groupe de module" #~ msgid "Error assigning module to template." #~ msgstr "Erreur d'attribution du module au modĆØle." -#~ msgid "" -#~ "Error deleting module template. Id_module_template cannot be left blank." +#~ msgid "Error deleting module template. Id_module_template cannot be left blank." #~ msgstr "" #~ "Erreur de suppression du modĆØle de module. Id_module_template ne peut pas " #~ "ĆŖtre laissĆ© en blanc." @@ -55568,18 +54834,18 @@ msgstr "Gestion du groupe de module" #~ msgid "Error adding agent to policy. Id_agent cannot be left blank." #~ msgstr "" -#~ "Erreur d'ajout de l'agent Ć  la politique. Id_agent ne peut pas ĆŖtre laissĆ© " -#~ "en blanc." +#~ "Erreur d'ajout de l'agent Ć  la politique. Id_agent ne peut pas ĆŖtre laissĆ© en " +#~ "blanc." #~ msgid "Error adding agent to policy. Id_policy cannot be left blank." #~ msgstr "" -#~ "Erreur d'ajout de l'agent Ć  la politique. Id_policy ne peut pas ĆŖtre laissĆ© " -#~ "en blanc." +#~ "Erreur d'ajout de l'agent Ć  la politique. Id_policy ne peut pas ĆŖtre laissĆ© en " +#~ "blanc." #~ msgid "Error stopping downtime. Id_downtime cannot be left blank." #~ msgstr "" -#~ "Erreur d'interruption du temps d'arrĆŖt. Id_downtime ne peut pas ĆŖtre laissĆ© " -#~ "en blanc." +#~ "Erreur d'interruption du temps d'arrĆŖt. Id_downtime ne peut pas ĆŖtre laissĆ© en " +#~ "blanc." #~ msgid "Error adding agent to policy. The agent is already in the policy." #~ msgstr "" @@ -55588,8 +54854,8 @@ msgstr "Gestion du groupe de module" #~ msgid "Error adding network module to policy. Id_policy cannot be left blank." #~ msgstr "" -#~ "Erreur d'ajout du module de rĆ©seau Ć  la politique. Id_policy ne peut pas " -#~ "ĆŖtre laissĆ© en blanc." +#~ "Erreur d'ajout du module de rĆ©seau Ć  la politique. Id_policy ne peut pas ĆŖtre " +#~ "laissĆ© en blanc." #~ msgid "Error updating data module in policy. Module type is not network type." #~ msgstr "" @@ -55603,16 +54869,15 @@ msgstr "Gestion du groupe de module" #~ "Erreur d'ajout du module de rĆ©seau Ć  la politique. Id_module_type n'est pas " #~ "correct pour les modules de rĆ©seau." -#~ msgid "" -#~ "Error updating network module in policy. Module type is not network type." +#~ msgid "Error updating network module in policy. Module type is not network type." #~ msgstr "" -#~ "Erreur de mise Ć  jour du module de rĆ©seau dans la politique. Le type de " -#~ "module n'est pas le type de rĆ©seau." +#~ "Erreur de mise Ć  jour du module de rĆ©seau dans la politique. Le type de module " +#~ "n'est pas le type de rĆ©seau." #~ msgid "Error adding plugin module to policy. Id_policy cannot be left blank." #~ msgstr "" -#~ "Erreur d'ajout du module de plugin Ć  la politique. Id_policy ne peut pas " -#~ "ĆŖtre laissĆ© en blanc." +#~ "Erreur d'ajout du module de plugin Ć  la politique. Id_policy ne peut pas ĆŖtre " +#~ "laissĆ© en blanc." #~ msgid "Error adding network module to policy." #~ msgstr "Erreur d'ajout du module de rĆ©seau Ć  la politique." @@ -55620,36 +54885,32 @@ msgstr "Gestion du groupe de module" #~ msgid "" #~ "Error adding network module to policy. The module is already in the policy." #~ msgstr "" -#~ "Erreur d'ajout du module de rĆ©seau Ć  la politique. Le module est dĆ©jĆ  dans " -#~ "la politique." +#~ "Erreur d'ajout du module de rĆ©seau Ć  la politique. Le module est dĆ©jĆ  dans la " +#~ "politique." + +#~ msgid "Error updating network module in policy. Id_policy cannot be left blank." +#~ msgstr "" +#~ "Erreur de mise Ć  jour du module de rĆ©seau dans la politique. Id_policy ne peut " +#~ "pas ĆŖtre laissĆ© en blanc." #~ msgid "" -#~ "Error updating network module in policy. Id_policy cannot be left blank." +#~ "Error updating network module in policy. Id_policy_module cannot be left blank." #~ msgstr "" -#~ "Erreur de mise Ć  jour du module de rĆ©seau dans la politique. Id_policy ne " -#~ "peut pas ĆŖtre laissĆ© en blanc." - -#~ msgid "" -#~ "Error updating network module in policy. Id_policy_module cannot be left " -#~ "blank." -#~ msgstr "" -#~ "Erreur de mise Ć  jour du module de rĆ©seau dans la politique. " -#~ "Id_policy_module ne peut pas ĆŖtre laissĆ© en blanc." +#~ "Erreur de mise Ć  jour du module de rĆ©seau dans la politique. Id_policy_module " +#~ "ne peut pas ĆŖtre laissĆ© en blanc." #~ msgid "Error adding SNMP module to policy. Id_policy cannot be left blank." #~ msgstr "" #~ "Erreur d'ajout du module SNMP Ć  la politique. Id_policy ne peut pas ĆŖtre " #~ "laissĆ© en blanc." -#~ msgid "" -#~ "Error updating plugin module in policy. Module type is not network type." +#~ msgid "Error updating plugin module in policy. Module type is not network type." #~ msgstr "" #~ "Erreur de mise Ć  jour du module plugin dans la politique. Le type de module " #~ "n'est pas de type rĆ©seau." #~ msgid "" -#~ "Error updating plugin module in policy. Id_policy_module cannot be left " -#~ "blank." +#~ "Error updating plugin module in policy. Id_policy_module cannot be left blank." #~ msgstr "" #~ "Erreur de mise Ć  jour du module plugin dans la politique. Id_policy ne peut " #~ "pas ĆŖtre laissĆ© en blanc." @@ -55660,22 +54921,20 @@ msgstr "Gestion du groupe de module" #~ "Erreur d'ajout du module de plugin Ć  la politique. Le module se trouve dĆ©jĆ  " #~ "dans la politique." -#~ msgid "" -#~ "Error updating plugin module in policy. Id_policy cannot be left blank." +#~ msgid "Error updating plugin module in policy. Id_policy cannot be left blank." #~ msgstr "" #~ "Erreur de mise Ć  jour du module plugin dans la politique. Id_policy ne peut " #~ "pas ĆŖtre laissĆ© en blanc." #~ msgid "Error adding plugin module to policy. Id_plugin cannot be left blank." #~ msgstr "" -#~ "Erreur d'ajout du module de plugin Ć  la politique. Id_plugin ne peut pas " -#~ "ĆŖtre laissĆ© en blanc." +#~ "Erreur d'ajout du module de plugin Ć  la politique. Id_plugin ne peut pas ĆŖtre " +#~ "laissĆ© en blanc." #~ msgid "Error adding plugin module to policy." #~ msgstr "Erreur d'ajout du module de plugin Ć  la politique." -#~ msgid "" -#~ "Error adding plugin module to policy. Module_name cannot be left blank." +#~ msgid "Error adding plugin module to policy. Module_name cannot be left blank." #~ msgstr "" #~ "Erreur d'ajout du module de plugin Ć  la politique. Module_name ne peut pas " #~ "ĆŖtre laissĆ© en blanc." @@ -55687,8 +54946,8 @@ msgstr "Gestion du groupe de module" #~ "Error adding SNMP module to policy. Id_module_type is not correct for SNMP " #~ "modules." #~ msgstr "" -#~ "Erreur d'ajout du module SNMP Ć  la politique. Id_module_type n'est pas " -#~ "correct pour les modules SNMP." +#~ "Erreur d'ajout du module SNMP Ć  la politique. Id_module_type n'est pas correct " +#~ "pour les modules SNMP." #~ msgid "Error adding SNMP module to policy. Module_name cannot be left blank." #~ msgstr "" @@ -55697,14 +54956,13 @@ msgstr "Gestion du groupe de module" #~ msgid "Error updating SNMP module in policy. Id_policy cannot be left blank." #~ msgstr "" -#~ "Erreur de mise Ć  jour du module SNMP dans la politique. Id_policy ne peut " -#~ "pas ĆŖtre laissĆ© en blanc." +#~ "Erreur de mise Ć  jour du module SNMP dans la politique. Id_policy ne peut pas " +#~ "ĆŖtre laissĆ© en blanc." -#~ msgid "" -#~ "Error adding SNMP module to policy. The module is already in the policy." +#~ msgid "Error adding SNMP module to policy. The module is already in the policy." #~ msgstr "" -#~ "Erreur d'ajout du module SNMP Ć  la politique. Le module se trouve dĆ©jĆ  dans " -#~ "la politique." +#~ "Erreur d'ajout du module SNMP Ć  la politique. Le module se trouve dĆ©jĆ  dans la " +#~ "politique." #~ msgid "" #~ "Error updating SNMP module in policy. Id_policy_module cannot be left blank." @@ -55714,8 +54972,8 @@ msgstr "Gestion du groupe de module" #~ msgid "Error applying policy. This policy is already pending to apply." #~ msgstr "" -#~ "Erreur d'application des politiques. L'application de cette politique est " -#~ "dĆ©jĆ  en cours." +#~ "Erreur d'application des politiques. L'application de cette politique est dĆ©jĆ  " +#~ "en cours." #~ msgid "Error in group creation. Group_name cannot be left blank." #~ msgstr "" @@ -55735,13 +54993,13 @@ msgstr "Gestion du groupe de module" #~ msgid "Error in netflow filter creation. Aggregate_by cannot be left blank." #~ msgstr "" -#~ "Erreur de crĆ©ation du filtre Netflow. Aggregate_by ne peut pas ĆŖtre laissĆ© " -#~ "en blanc." +#~ "Erreur de crĆ©ation du filtre Netflow. Aggregate_by ne peut pas ĆŖtre laissĆ© en " +#~ "blanc." #~ msgid "Error in netflow filter creation. Group id cannot be left blank." #~ msgstr "" -#~ "Erreur de crĆ©ation du filtre Netflow. L'identifiant du groupe ne peut pas " -#~ "ĆŖtre laissĆ© en blanc." +#~ "Erreur de crĆ©ation du filtre Netflow. L'identifiant du groupe ne peut pas ĆŖtre " +#~ "laissĆ© en blanc." #~ msgid "Create user." #~ msgstr "CrĆ©er un utilisateur" @@ -55756,8 +55014,8 @@ msgstr "Gestion du groupe de module" #~ msgid "Error in netflow filter creation. Output_format cannot be left blank." #~ msgstr "" -#~ "Erreur de crĆ©ation du filtre Netflow. Output_format ne peut pas ĆŖtre laissĆ© " -#~ "en blanc." +#~ "Erreur de crĆ©ation du filtre Netflow. Output_format ne peut pas ĆŖtre laissĆ© en " +#~ "blanc." #~ msgid "Updated user." #~ msgstr "Mettre Ć  jour l'utilisateur" @@ -55769,8 +55027,8 @@ msgstr "Gestion du groupe de module" #~ msgid "Error enable/disable user. Id_user cannot be left blank." #~ msgstr "" -#~ "Erreur d'activation/dĆ©sactivation de l'utilisateur. Id_user ne peut pas " -#~ "ĆŖtre laissĆ©e en blanc" +#~ "Erreur d'activation/dĆ©sactivation de l'utilisateur. Id_user ne peut pas ĆŖtre " +#~ "laissĆ©e en blanc" #~ msgid "Add user profile." #~ msgstr "Ajouter un profil d'utilisateur" @@ -55797,8 +55055,8 @@ msgstr "Gestion du groupe de module" #~ msgid "Error enable/disable agent. Id_agent cannot be left blank." #~ msgstr "" -#~ "Erreur d'activation/dĆ©sactivation de l'agent. Id_agent ne peut pas ĆŖtre " -#~ "laissĆ© en blanc." +#~ "Erreur d'activation/dĆ©sactivation de l'agent. Id_agent ne peut pas ĆŖtre laissĆ© " +#~ "en blanc." #~ msgid "Error enable/disable agent. Enable/disable value cannot be left blank." #~ msgstr "" @@ -55816,8 +55074,8 @@ msgstr "Gestion du groupe de module" #~ msgid "Error deleting special day. Id cannot be left blank." #~ msgstr "" -#~ "Erreur de suppression du jour spĆ©cial. L'identifiant ne peut pas ĆŖtre " -#~ "laissĆ© en blanc." +#~ "Erreur de suppression du jour spĆ©cial. L'identifiant ne peut pas ĆŖtre laissĆ© " +#~ "en blanc." #~ msgid "Error updating special day. Invalid date format." #~ msgstr "Erreur de mise Ć  jour du jour spĆ©cial. Format de date incorrect." @@ -55833,18 +55091,17 @@ msgstr "Gestion du groupe de module" #~ msgid "" #~ "Your database is not well maintained. Seems that it have more than 48hr " -#~ "without a proper maintance. Please review Pandora FMS documentation about " -#~ "how to execute this maintance process (pandora_db.pl) and enable it as soon " -#~ "as possible" +#~ "without a proper maintance. Please review Pandora FMS documentation about how " +#~ "to execute this maintance process (pandora_db.pl) and enable it as soon as " +#~ "possible" #~ msgstr "" -#~ "Votre base de donnĆ©es n'est pas bien entretenue. Il semble que la BD n'a " -#~ "pas Ć©tĆ© bien entretenue pendant plus que 48h. Veuillez rĆ©viser la " -#~ "documentation de Pandora FMS Ć  propos de l'exĆ©cution de ce processus " -#~ "d'entretien (pandora_db.pl) et activez-le dĆØs que possible." +#~ "Votre base de donnĆ©es n'est pas bien entretenue. Il semble que la BD n'a pas " +#~ "Ć©tĆ© bien entretenue pendant plus que 48h. Veuillez rĆ©viser la documentation de " +#~ "Pandora FMS Ć  propos de l'exĆ©cution de ce processus d'entretien (pandora_db." +#~ "pl) et activez-le dĆØs que possible." #~ msgid "" -#~ "Please change the default password because is a common vulnerability " -#~ "reported." +#~ "Please change the default password because is a common vulnerability reported." #~ msgstr "" #~ "Veuillez modifier le mot de passe par dĆ©faut, car il s'agit d'une " #~ "vulnĆ©rabilitĆ© couramment signalĆ©e." @@ -55858,8 +55115,8 @@ msgstr "Gestion du groupe de module" #~ msgstr "ProblĆØme d'entretien de la base de donnĆ©es" #~ msgid "" -#~ "Your defined font doesnt exist or is not defined. Please check font " -#~ "parameters in your config" +#~ "Your defined font doesnt exist or is not defined. Please check font parameters " +#~ "in your config" #~ msgstr "" #~ "Votre police de caractĆØres n'existe pas ou n'est pas dĆ©finie. Veuillez " #~ "vĆ©rifier les paramĆØtres de police de caractĆØres dans votre configuration." @@ -55869,10 +55126,10 @@ msgstr "Gestion du groupe de module" #~ "\"index.php?sec=gsetup&sec2=godmode/update_manager/update_manager&tab=online" #~ "\"> go to Administration:Setup:Update Manager
    for more details." #~ msgstr "" -#~ "Nouvelle mise Ć  jour disponible. Veuillez aller Ć  Administration:Configuration:" -#~ "Gestionnaire de mises Ć  jour pour plus de dĆ©tails." +#~ "Nouvelle mise Ć  jour disponible. Veuillez aller Ć  Administration:Configuration:Gestionnaire de mises Ć  jour pour " +#~ "plus de dĆ©tails." #~ msgid "New update of Pandora Console" #~ msgstr "Nouvelle mise Ć  jour de la console Pandora FMS" @@ -55884,8 +55141,8 @@ msgstr "Gestion du groupe de module" #~ "Variable disable_functions containts functions system() or exec(), in PHP " #~ "configuration file (php.ini)" #~ msgstr "" -#~ "La variable disable_functions contient les fonctions system() ou exec() " -#~ "dans le fichier de configuration PHP (php.ini)." +#~ "La variable disable_functions contient les fonctions system() ou exec() dans " +#~ "le fichier de configuration PHP (php.ini)." #~ msgid "PHP safe mode is enabled. Some features may not properly work." #~ msgstr "" @@ -55898,24 +55155,24 @@ msgstr "Gestion du groupe de module" #~ msgid "" #~ "For security reasons, normal operation is not possible until you delete " #~ "installer file.\n" -#~ "\t\t\tPlease delete the ./install.php file before running Pandora " -#~ "FMS Console." +#~ "\t\t\tPlease delete the ./install.php file before running Pandora FMS " +#~ "Console." #~ msgstr "" #~ "Pour des raisons de sĆ©curitĆ©, le fonctionnement normal n'est pas possible " #~ "jusqu'Ć  ce que vous supprimiez le fichier d'installation.\n" -#~ "\t\t\tVeuillez supprimer le fichier ./install.php avant d'exĆ©cuter " -#~ "la console Pandora FMS." +#~ "\t\t\tVeuillez supprimer le fichier ./install.php avant d'exĆ©cuter la " +#~ "console Pandora FMS." #~ msgid "" #~ "Pandora FMS Console cannot find include/config.php or this file has " #~ "invalid\n" -#~ "\t\t\tpermissions and HTTP server cannot read it. Please read documentation " -#~ "to fix this problem." +#~ "\t\t\tpermissions and HTTP server cannot read it. Please read documentation to " +#~ "fix this problem." #~ msgstr "" -#~ "La console Pandora FMS ne peut pas retrouver include/config.php ou " -#~ "ce fichier a des \n" -#~ "\t\t\tpermissions non valides et le serveur HTTP ne peut pas le lire. " -#~ "Veuillez lire la documentation pour rĆ©soudre ce problĆØme." +#~ "La console Pandora FMS ne peut pas retrouver include/config.php ou ce " +#~ "fichier a des \n" +#~ "\t\t\tpermissions non valides et le serveur HTTP ne peut pas le lire. Veuillez " +#~ "lire la documentation pour rĆ©soudre ce problĆØme." #~ msgid "Update to the last version" #~ msgstr "Mise Ć  jour Ć  la derniĆØre version" @@ -55992,8 +55249,8 @@ msgstr "Gestion du groupe de module" #~ msgstr "ObsolĆØte" #~ msgid "" -#~ "You can not delete the last group in Pandora. A common installation must " -#~ "has almost one group." +#~ "You can not delete the last group in Pandora. A common installation must has " +#~ "almost one group." #~ msgstr "" #~ "Vous ne pouvez pas supprimer le dernier groupe sur Pandora FMS. Une " #~ "installation normale doit contenir au moins un groupe." @@ -56073,13 +55330,12 @@ msgstr "Gestion du groupe de module" #~ msgid "" #~ "Let me introduce my self: I am Pandorin, the annoying assistant of Pandora " -#~ "FMS. You can follow my steps to do basic tasks in Pandora FMS or you can " -#~ "close me and never see me again." +#~ "FMS. You can follow my steps to do basic tasks in Pandora FMS or you can close " +#~ "me and never see me again." #~ msgstr "" #~ "Permettez-moi de me prĆ©senter : je suis Pandorin, l'ennuyeux assistant de " -#~ "Pandora FMS. Vous pouvez suivre mes indications pour effectuer des tĆ¢ches " -#~ "de base sur Pandora FMS ou vous pouvez me fermer et ne plus jamais me " -#~ "revoir." +#~ "Pandora FMS. Vous pouvez suivre mes indications pour effectuer des tĆ¢ches de " +#~ "base sur Pandora FMS ou vous pouvez me fermer et ne plus jamais me revoir." #~ msgid "Pandora FMS mobile" #~ msgstr "Pandora FMS mobile" @@ -56087,8 +55343,8 @@ msgstr "Gestion du groupe de module" #~ msgid "" #~ "Access to this page is restricted to authorized users only, please contact " #~ "system administrator if you need assistance.

    Please know that all " -#~ "attempts to access this page are recorded in security logs of Pandora " -#~ "System Database" +#~ "attempts to access this page are recorded in security logs of Pandora System " +#~ "Database" #~ msgstr "" #~ "L'accĆØs Ć  cette page est rĆ©servĆ© aux utilisateurs autorisĆ©s uniquement. " #~ "Veuillez communiquer avec l'administrateur du systĆØme si vous avez besoin " @@ -56126,8 +55382,8 @@ msgstr "Gestion du groupe de module" #~ "Agent statuses are re-calculated by the server, they are not shown in real " #~ "time." #~ msgstr "" -#~ "Les Ć©tats de l'agent sont recalculĆ©s par le serveur, ils ne sont pas " -#~ "affichĆ©s en temps rĆ©el." +#~ "Les Ć©tats de l'agent sont recalculĆ©s par le serveur, ils ne sont pas affichĆ©s " +#~ "en temps rĆ©el." #~ msgid "Last position in " #~ msgstr "DerniĆØre position dans " @@ -56206,11 +55462,10 @@ msgstr "Gestion du groupe de module" #~ msgstr "CrĆ©er une carte de rĆ©seau" #~ msgid "" -#~ "Show events is disabled because this Pandora node is set the event " -#~ "replication." +#~ "Show events is disabled because this Pandora node is set the event replication." #~ msgstr "" -#~ "L'affichage d'Ć©vĆ©nements est dĆ©sactivĆ© parce que la rĆ©plication " -#~ "d'Ć©vĆ©nements est activĆ©e sur ce nœud de Pandora FMS." +#~ "L'affichage d'Ć©vĆ©nements est dĆ©sactivĆ© parce que la rĆ©plication d'Ć©vĆ©nements " +#~ "est activĆ©e sur ce nœud de Pandora FMS." #~ msgid "Show event graph" #~ msgstr "Afficher graphique d'Ć©vĆ©nements" @@ -56303,8 +55558,8 @@ msgstr "Gestion du groupe de module" #~ "You can not change your password from Pandora FMS under the current " #~ "authentication scheme" #~ msgstr "" -#~ "Vous ne pouvez pas changer votre mot de passe de Pandora FMS dans le " -#~ "systĆØme d'authentification actuel" +#~ "Vous ne pouvez pas changer votre mot de passe de Pandora FMS dans le systĆØme " +#~ "d'authentification actuel" #, php-format #~ msgid "Error updating passwords: %s" @@ -56338,8 +55593,8 @@ msgstr "Gestion du groupe de module" #~ msgstr "Erreur : les cellules ne peuvent pas ĆŖtre vides" #~ msgid "" -#~ "Error, you are trying to add a widget in a empty cell. Please save the " -#~ "layout before to add any widget in this cell." +#~ "Error, you are trying to add a widget in a empty cell. Please save the layout " +#~ "before to add any widget in this cell." #~ msgstr "" #~ "Erreur, vous essayez d'ajouter un widget dans une cellule vide. Veuillez " #~ "sauvegarder le layout avant d'ajouter un widget dans cette cellule." @@ -56500,8 +55755,7 @@ msgstr "Gestion du groupe de module" #~ msgid "Delete remote conf agent files in Pandora" #~ msgstr "" -#~ "Supprimer les fichiers de l'agent de configuration Ć  distance dans Pandora " -#~ "FMS" +#~ "Supprimer les fichiers de l'agent de configuration Ć  distance dans Pandora FMS" #~ msgid "List event rules" #~ msgstr "Liste des rĆØgles d'Ć©vĆ©nements" @@ -56525,8 +55779,8 @@ msgstr "Gestion du groupe de module" #~ "Since the alert can have multiple actions. You can edit them from the alert " #~ "list of events." #~ msgstr "" -#~ "Comme l'alerte peut avoir plusieurs actions, vous pouvez les Ć©diter Ć  " -#~ "partir de la liste d'alerte d'Ć©vĆ©nements." +#~ "Comme l'alerte peut avoir plusieurs actions, vous pouvez les Ć©diter Ć  partir " +#~ "de la liste d'alerte d'Ć©vĆ©nements." #~ msgid "Please Read" #~ msgstr "Veuillez le lire" @@ -56586,12 +55840,11 @@ msgstr "Gestion du groupe de module" #~ msgstr "Outil de conception de modĆØles Mysql personnalisĆ©s" #~ msgid "" -#~ "The dir of custom logos is in your www Pandora Console in \"images/" -#~ "custom_logo\". You can upload more files (ONLY JPEG) in upload tool in " -#~ "console." +#~ "The dir of custom logos is in your www Pandora Console in \"images/custom_logo" +#~ "\". You can upload more files (ONLY JPEG) in upload tool in console." #~ msgstr "" -#~ "Le rĆ©pertoire des logos personnalisĆ©s se trouve sur votre console Pandora " -#~ "FMS, dans Ā« images/custom_logo Ā». Vous pouvez tĆ©lĆ©verser plus de fichiers " +#~ "Le rĆ©pertoire des logos personnalisĆ©s se trouve sur votre console Pandora FMS, " +#~ "dans Ā« images/custom_logo Ā». Vous pouvez tĆ©lĆ©verser plus de fichiers " #~ "(uniquement JPEG) avec l'outil de tĆ©lĆ©versement de la console." #~ msgid "Generate a dynamic report\"" @@ -56664,11 +55917,11 @@ msgstr "Gestion du groupe de module" #~ msgstr "Alerte critique de service" #~ msgid "" -#~ "Before activating this option check your ACL Setup. You may lose access to " -#~ "the console." +#~ "Before activating this option check your ACL Setup. You may lose access to the " +#~ "console." #~ msgstr "" -#~ "Avant d'activer cette option, vĆ©rifiez votre configuration ACL. Vous " -#~ "risquez de perdre accĆØs Ć  la console." +#~ "Avant d'activer cette option, vĆ©rifiez votre configuration ACL. Vous risquez " +#~ "de perdre accĆØs Ć  la console." #~ msgid "" #~ "The inventory modules included in the changes blacklist will not generate " @@ -56678,11 +55931,11 @@ msgstr "Gestion du groupe de module" #~ "gĆ©nĆØrent pas d'Ć©vĆ©nements lorsqu'ils changent." #~ msgid "" -#~ "Rules applied to the management of passwords. This policy applies to all " -#~ "users except the administrator." +#~ "Rules applied to the management of passwords. This policy applies to all users " +#~ "except the administrator." #~ msgstr "" -#~ "RĆØgles appliquĆ©es Ć  la gestion des mots de passe. Cette politique " -#~ "s'applique Ć  tous les utilisateurs sauf Ć  l'administrateur." +#~ "RĆØgles appliquĆ©es Ć  la gestion des mots de passe. Cette politique s'applique Ć  " +#~ "tous les utilisateurs sauf Ć  l'administrateur." #~ msgid "Page" #~ msgstr "Page" @@ -56693,8 +55946,7 @@ msgstr "Gestion du groupe de module" #~ msgid "Remote Pandora FMS" #~ msgstr "Pandora FMS Ć  distance" -#~ msgid "" -#~ "Select the path where SimpleSAML has been installed (by default '/opt/')" +#~ msgid "Select the path where SimpleSAML has been installed (by default '/opt/')" #~ msgstr "" #~ "SĆ©lectionnez le chemin oĆ¹ SimpleSAML a Ć©tĆ© installĆ© (par dĆ©faut Ā« /opt/ Ā»)" @@ -56705,8 +55957,8 @@ msgstr "Gestion du groupe de module" #~ msgstr "Jours d'Ć©vĆ©nements" #~ msgid "" -#~ "Event history is ONLY used for event reports, is not used in graphs or " -#~ "event viewer." +#~ "Event history is ONLY used for event reports, is not used in graphs or event " +#~ "viewer." #~ msgstr "" #~ "L'historique d'Ć©vĆ©nements est seulement utilisĆ© pour les rapports " #~ "d'Ć©vĆ©nements. Il n'est pas utilisĆ© dans le visualiseur de graphiques ou " @@ -56763,23 +56015,23 @@ msgstr "Gestion du groupe de module" #~ "This extension makes registration of server plugins more easy. \n" #~ "\t\t\t\t\t\tHere you can upload a server plugin in Pandora FMS 3.x zipped " #~ "format (.pspz). \n" -#~ "\t\t\t\t\t\tPlease refer to documentation on how to obtain and use Pandora " -#~ "FMS Server Plugins.\n" -#~ "\t\t\t\t\t\t

    You can get more plugins in our Public Resource Library " +#~ "\t\t\t\t\t\tPlease refer to documentation on how to obtain and use Pandora FMS " +#~ "Server Plugins.\n" +#~ "\t\t\t\t\t\t

    You can get more plugins in our Public Resource Library " #~ msgstr "" #~ "Cette extension rend l'enregistrement des plugins de serveur plus facile. \n" -#~ "\t\t\t\t\t\t Ici vous pouvez tƩlƩverser un plugin de serveur dans Pandora " -#~ "FMS sous format 3.x. zip (.pspz). \n" -#~ "\t\t\t\t\t\t Veuillez consulter la documentation qui indique comment " -#~ "obtenir et utiliser les plugins du serveur dans Pandora FMS.\n" +#~ "\t\t\t\t\t\t Ici vous pouvez tƩlƩverser un plugin de serveur dans Pandora FMS " +#~ "sous format 3.x. zip (.pspz). \n" +#~ "\t\t\t\t\t\t Veuillez consulter la documentation qui indique comment obtenir " +#~ "et utiliser les plugins du serveur dans Pandora FMS.\n" #~ "\t\t\t\t\t\t

    Pour obtenir plus de plugins, consultez BibliothĆØque de ressources publiques . " #, php-format #~ msgid "" -#~ "This extension makes registration of policies enterprise.
    You can get " -#~ "more policies in our Public Resource Library" +#~ "This extension makes registration of policies enterprise.
    You can get more " +#~ "policies in our Public Resource Library" #~ msgstr "" #~ "Cette extension registre les politiques Enterprise.
    Vous pouvez obtenir " #~ "plus de politiques dans notre BibliothĆØque de ressources " @@ -56787,18 +56039,16 @@ msgstr "Gestion du groupe de module" #, php-format #~ msgid "" -#~ "This extension makes registration of resource template more easy. Here you " -#~ "can upload a resource template in Pandora FMS 3.x format (.ptr). Please " -#~ "refer to documentation on how to obtain and use Pandora FMS resources. " -#~ "

    You can get more resurces in our
    Public Resource " -#~ "Library" +#~ "This extension makes registration of resource template more easy. Here you can " +#~ "upload a resource template in Pandora FMS 3.x format (.ptr). Please refer to " +#~ "documentation on how to obtain and use Pandora FMS resources.

    You can " +#~ "get more resurces in our Public Resource Library" #~ msgstr "" -#~ "Cette extension rend l'enregistrement de modĆØle de ressource plus facile. " -#~ "Vous pouvez tĆ©lĆ©verser un modĆØle de ressource sous format Pandora FMS 3.x " -#~ "(. Ptr). Veuillez consulter la documentation qui indique comment obtenir et " -#~ "utiliser les ressources de Pandora FMS.

    Pour obtenir plus " -#~ "ressources, consultez BibliothĆØque de ressources " -#~ "publiques" +#~ "Cette extension rend l'enregistrement de modĆØle de ressource plus facile. Vous " +#~ "pouvez tĆ©lĆ©verser un modĆØle de ressource sous format Pandora FMS 3.x (. Ptr). " +#~ "Veuillez consulter la documentation qui indique comment obtenir et utiliser " +#~ "les ressources de Pandora FMS.

    Pour obtenir plus ressources, consultez " +#~ "
    BibliothĆØque de ressources publiques" #~ msgid "Ignore Time" #~ msgstr "Ignorer temps" @@ -56832,8 +56082,8 @@ msgstr "Gestion du groupe de module" #, php-format #~ msgid "" -#~ "License out of limits

    " -#~ "This license allows %d modules and you have %d modules configured." +#~ "License out of limits

    This " +#~ "license allows %d modules and you have %d modules configured." #~ msgstr "" #~ "Licence expirƩe

    Cette " #~ "licence permet %d modules et vous avez %d modules configurƩs." @@ -56989,8 +56239,8 @@ msgstr "Gestion du groupe de module" #, php-format #~ msgid "" -#~ "Error creating/updating the followings elements groups/profiles/user " -#~ "profiles (%d/%d/%d)" +#~ "Error creating/updating the followings elements groups/profiles/user profiles " +#~ "(%d/%d/%d)" #~ msgstr "" #~ "Erreur de crƩation/mise Ơ jour des groupes d'ƩlƩments/profils/profils " #~ "d'utilisateurs suivants (%d/%d/%d)" @@ -57019,8 +56269,8 @@ msgstr "Gestion du groupe de module" #~ msgid "" #~ "Access to this page is restricted to authorized users only, please contact " #~ "system administrator if you need assistance. \n" -#~ "\t\t\t\t\t
    Please know that all attempts to access this page are " -#~ "recorded in security logs of Pandora System Database" +#~ "\t\t\t\t\t
    Please know that all attempts to access this page are recorded " +#~ "in security logs of Pandora System Database" #~ msgstr "" #~ "L'accĆØs Ć  cette page est rĆ©servĆ© seulement aux utilisateurs autorisĆ©s, " #~ "veuillez communiquer avec l'administrateur du systĆØme si vous avez besoin " @@ -57068,11 +56318,10 @@ msgstr "Gestion du groupe de module" #~ msgid "Error deleting service" #~ msgstr "Erreur de suppression du service" -#~ msgid "" -#~ "All the items are not available in CSV, only the previous versions ones." +#~ msgid "All the items are not available in CSV, only the previous versions ones." #~ msgstr "" -#~ "Tous les Ć©lĆ©ments ne sont pas disponibles dans le CSV, seulement les " -#~ "versions prĆ©cĆ©dentes." +#~ "Tous les Ć©lĆ©ments ne sont pas disponibles dans le CSV, seulement les versions " +#~ "prĆ©cĆ©dentes." #~ msgid "Pandora Console URL" #~ msgstr "URL de la console de Pandora FMS" @@ -57081,8 +56330,8 @@ msgstr "Gestion du groupe de module" #~ msgstr "Configurer outils de rĆ©seau" #~ msgid "" -#~ "You can set the command path in the menu Administration -> Extensions -" -#~ "> Config Network Tools" +#~ "You can set the command path in the menu Administration -> Extensions -> " +#~ "Config Network Tools" #~ msgstr "" #~ "Vous pouvez dĆ©finir le chemin de la commande dans le menu Administration -> " #~ "Extensions -> Configurer outils de rĆ©seau" @@ -57124,102 +56373,100 @@ msgstr "Gestion du groupe de module" #~ msgstr "UC du serveur de Pandora FMS" #~ msgid "" -#~ "This extension makes exportation of resource template more easy. Here you " -#~ "can export as a resource template in Pandora FMS 3.x format (.ptr). " +#~ "This extension makes exportation of resource template more easy. Here you can " +#~ "export as a resource template in Pandora FMS 3.x format (.ptr). " #~ msgstr "" #~ "Cette extension rend l'exportation de modĆØle de ressource plus facile. Vous " #~ "pouvez exporter un modĆØle de ressource dans le format de Pandora FMS 3.x (." #~ "ptr). " #~ msgid "" -#~ "The community version doesn't have the ability to define your own library " -#~ "of local modules, or distribute it to remote agents. You need to make those " -#~ "changes individually on each agent which is possible by using external " -#~ "tools and time and effort. Nor can it distribute local plugins, or have " -#~ "access to the library of enterprise plugins to monitor applications such as " -#~ "VMWare, RHEV or Informix between others. The Enterprise version will have " -#~ "all this, plus the ability to distribute and manage your own local modules " -#~ "on your systems, individually or through policies.\n" +#~ "The community version doesn't have the ability to define your own library of " +#~ "local modules, or distribute it to remote agents. You need to make those " +#~ "changes individually on each agent which is possible by using external tools " +#~ "and time and effort. Nor can it distribute local plugins, or have access to " +#~ "the library of enterprise plugins to monitor applications such as VMWare, RHEV " +#~ "or Informix between others. The Enterprise version will have all this, plus " +#~ "the ability to distribute and manage your own local modules on your systems, " +#~ "individually or through policies.\n" #~ "


    pandorafms.com
    " +#~ "systems, making it difficult to manage them in a comprehensive manner? Would " +#~ "you like to deploy monitoring, alerts and even local plugins with a single " +#~ "click? Pandora FMS Enterprise Policies are exactly what you need; you'll save " +#~ "time, effort and annoyances. More information pandorafms.com" #~ msgstr "" #~ "Souhaitez-vous consolider tous vos systĆØmes de surveillance ? Sont-ils trop " -#~ "nombreux et difficiles Ć  gĆ©rer globalement ? Voulez-vous utiliser des " -#~ "plugins locaux, de surveillance et d'alertes avec un seul clic ? Alors les " -#~ "Politiques de Pandora FMS Enterprise correspondent exactement Ć  vos " -#~ "besoins. Vous Ć©pargnerez du temps, de l'efforts et des problĆØmes. Pour en " -#~ "savoir plus : pandorafms.com" +#~ "nombreux et difficiles Ć  gĆ©rer globalement ? Voulez-vous utiliser des plugins " +#~ "locaux, de surveillance et d'alertes avec un seul clic ? Alors les Politiques " +#~ "de Pandora FMS Enterprise correspondent exactement Ć  vos besoins. Vous " +#~ "Ć©pargnerez du temps, de l'efforts et des problĆØmes. Pour en savoir plus : pandorafms.com" #~ msgid "" #~ "Pandora FMS Enterprise also features event correlation. Through correlation " -#~ "you can generate realtime alerts and / or new events based on logical " -#~ "rules. This allows you to automate troubleshooting. If you know the value " -#~ "of working with events, event correlation will take you to a new level." +#~ "you can generate realtime alerts and / or new events based on logical rules. " +#~ "This allows you to automate troubleshooting. If you know the value of working " +#~ "with events, event correlation will take you to a new level." #~ msgstr "" -#~ "Pandora FMS Enterprise prĆ©sente aussi la fonction de corrĆ©lation " -#~ "dā€™Ć©vĆ©nements, qui permet de crĆ©er des alertes ou nouveaux Ć©vĆ©nements en " -#~ "temps rĆ©el fondĆ©s sur des rĆØgles logiques, ainsi que d'automatiser le " -#~ "dĆ©pannage. Si vous savez Ć  quel point travailler avec des Ć©vĆ©nements est " -#~ "important, vous atteindrez un niveau supĆ©rieur avec cette fonction." +#~ "Pandora FMS Enterprise prĆ©sente aussi la fonction de corrĆ©lation dā€™Ć©vĆ©nements, " +#~ "qui permet de crĆ©er des alertes ou nouveaux Ć©vĆ©nements en temps rĆ©el fondĆ©s " +#~ "sur des rĆØgles logiques, ainsi que d'automatiser le dĆ©pannage. Si vous savez Ć  " +#~ "quel point travailler avec des Ć©vĆ©nements est important, vous atteindrez un " +#~ "niveau supĆ©rieur avec cette fonction." #~ msgid "" -#~ "Graphs are designed to show the data collected by Pandora FMS in a " -#~ "temporary scale defined by the user.\n" -#~ "\t\t\t\tPandora FMS Graphs display data in real time. They are generated " -#~ "every time the operator requires any of them and display the up-to-date " -#~ "state.\n" +#~ "Graphs are designed to show the data collected by Pandora FMS in a temporary " +#~ "scale defined by the user.\n" +#~ "\t\t\t\tPandora FMS Graphs display data in real time. They are generated every " +#~ "time the operator requires any of them and display the up-to-date state.\n" #~ "\t\t\t\tThere are two types of graphs: The agent's automated graphs and the " #~ "graphs the user customizes by using one or more modules to do so." #~ msgstr "" #~ "Les graphiques sont conƧus pour afficher les donnĆ©es rĆ©cupĆ©rĆ©es par Pandora " #~ "FMS sur une Ć©chelle de temps dĆ©finie par l'utilisateur.\n" #~ "\t\t\t\tLes graphiques de Pandora FMS prĆ©sentent les donnĆ©es en temps rĆ©el. " -#~ "Ils sont gĆ©nĆ©rĆ©s chaque fois que l'opĆ©rateur en a besoin et affichent " -#~ "l'Ć©tat mis Ć  jour.\n" -#~ "\t\t\t\tIl y a deux types de graphiques : les graphiques automatisĆ©s par " -#~ "les agents et les graphiques personnalisĆ©s par l'utilisateur en employant " -#~ "un ou plusieurs modules." +#~ "Ils sont gĆ©nĆ©rĆ©s chaque fois que l'opĆ©rateur en a besoin et affichent l'Ć©tat " +#~ "mis Ć  jour.\n" +#~ "\t\t\t\tIl y a deux types de graphiques : les graphiques automatisĆ©s par les " +#~ "agents et les graphiques personnalisĆ©s par l'utilisateur en employant un ou " +#~ "plusieurs modules." #~ msgid "" -#~ "The Recon Task definition of Pandora FMS is used to find new elements in " -#~ "the network. \n" +#~ "The Recon Task definition of Pandora FMS is used to find new elements in the " +#~ "network. \n" #~ "\t\tIf it detects any item, it will add that item to the monitoring, and if " #~ "that item it is already being monitored, then it will \n" #~ "\t\tignore it or will update its information.There are three types of " #~ "detection: Based on ICMP (pings), \n" #~ "\t\tSNMP (detecting the topology of networks " -#~ "and their interfaces), and other customized \n" +#~ "and their interfaces), and other customized \n" #~ "\t\ttype. You can define your own customized recon script." #~ msgstr "" #~ "La dĆ©finition des tĆ¢ches Recon de Pandora FMS permet de trouver de nouveaux " #~ "Ć©lĆ©ments dans le rĆ©seau. \n" -#~ "\t\tSi un article est dĆ©pistĆ©, il sera ajoutĆ© Ć  la liste de surveillance ; " -#~ "si un article est dĆ©jĆ  sous surveillance, il sera ignorĆ©\n" +#~ "\t\tSi un article est dĆ©pistĆ©, il sera ajoutĆ© Ć  la liste de surveillance ; si " +#~ "un article est dĆ©jĆ  sous surveillance, il sera ignorĆ©\n" #~ "\t\tou son information sera mise Ć  jour. Il y a trois types de dĆ©pistage : " #~ "fondĆ© sur ICMP (pings), \n" -#~ "\t\tSNMP (dĆ©pistage de la topologie des " -#~ "rĆ©seaux et de leurs interfaces) et autres types " -#~ "customized .\n" +#~ "\t\tSNMP (dĆ©pistage de la topologie des rĆ©seaux " +#~ "et de leurs interfaces) et autres types customized .\n" #~ "\t\tVous pouvez dĆ©finir votre propre script Recon personnalisĆ©." #~ msgid "There are no planned downtime defined yet." @@ -57236,9 +56483,9 @@ msgstr "Gestion du groupe de module" #~ "learn more about Pandora FMS. Monitoring could be overwhelm, but take your " #~ "time to learn how to use the power of Pandora FMS!" #~ msgstr "" -#~ "Si c'est la premiĆØre fois que vous utilisez Pandora FMS, nous vous " -#~ "proposons quelques liens pour en savoir plus sur notre produit. Prenez " -#~ "votre temps pour apprendre Ć  exploiter tout le potentiel de Pandora FMS !" +#~ "Si c'est la premiĆØre fois que vous utilisez Pandora FMS, nous vous proposons " +#~ "quelques liens pour en savoir plus sur notre produit. Prenez votre temps pour " +#~ "apprendre Ć  exploiter tout le potentiel de Pandora FMS !" #~ msgid "Pandora FMS instance identification wizard" #~ msgstr "Assistant logiciel d'identification d'instances de Pandora FMS" @@ -57250,23 +56497,23 @@ msgstr "Gestion du groupe de module" #~ msgstr "AccĆ©der au site web de Pandora FMS" #~ msgid "" -#~ "If you have modified auth system, this problem could be because Pandora " -#~ "cannot override authorization variables from the config database. Remove " -#~ "them from your database by executing:
    DELETE FROM tconfig WHERE "
    -#~ "token = \"auth\";
    " +#~ "If you have modified auth system, this problem could be because Pandora cannot " +#~ "override authorization variables from the config database. Remove them from " +#~ "your database by executing:
    DELETE FROM tconfig WHERE token = \"auth\";"
    +#~ "
    " #~ msgstr "" -#~ "Si vous avez modifiĆ© le systĆØme d'authentification, ce problĆØme pourrait " -#~ "ĆŖtre dĆ» au fait que Pandora FMS ne peut pas remplacer les variables " -#~ "d'autorisation de configuration de la base de donnĆ©es. Veuillez les " -#~ "supprimer de votre base de donnĆ©es en exĆ©cutant :
    DELETE FROM "
    -#~ "WHERE tconfig token = \"auth \"; "
    +#~ "Si vous avez modifiĆ© le systĆØme d'authentification, ce problĆØme pourrait ĆŖtre "
    +#~ "dĆ» au fait que Pandora FMS ne peut pas remplacer les variables d'autorisation "
    +#~ "de configuration de la base de donnƩes. Veuillez les supprimer de votre base "
    +#~ "de donnƩes en exƩcutant : 
    DELETE FROM WHERE tconfig token = \"auth "
    +#~ "\"; "
     
     #~ msgid ""
    -#~ "Please fill the following information in order to configure your Pandora "
    -#~ "FMS instance successfully"
    +#~ "Please fill the following information in order to configure your Pandora FMS "
    +#~ "instance successfully"
     #~ msgstr ""
    -#~ "Veuillez introduire l'information suivante pour configurer correctement "
    -#~ "votre instance de Pandora FMS"
    +#~ "Veuillez introduire l'information suivante pour configurer correctement votre "
    +#~ "instance de Pandora FMS"
     
     #~ msgid "Pandora FMS Overview"
     #~ msgstr "AperƧu de Pandora FMS"
    @@ -57298,12 +56545,10 @@ msgstr "Gestion du groupe de module"
     
     #~ msgid "Activate this to prevent the relation from being updated or deleted"
     #~ msgstr ""
    -#~ "Activer cette option pour Ć©viter que la relation soit mise Ć  jour ou "
    -#~ "supprimƩe"
    +#~ "Activer cette option pour Ʃviter que la relation soit mise Ơ jour ou supprimƩe"
     
     #~ msgid "Cannot be modified while the downtime is being executed"
    -#~ msgstr ""
    -#~ "Impossible de le modifier pendant que le temps d'arrĆŖt est en exĆ©cution"
    +#~ msgstr "Impossible de le modifier pendant que le temps d'arrĆŖt est en exĆ©cution"
     
     #~ msgid "WARNING: There are malformed planned downtimes"
     #~ msgstr "ATTENTION : il y a des temps d'arrĆŖt prĆ©vus incorrects"
    @@ -57312,28 +56557,27 @@ msgstr "Gestion du groupe de module"
     #~ "WARNING: If you delete this planned downtime, it will not be taken into "
     #~ "account in future SLA reports"
     #~ msgstr ""
    -#~ "ATTENTION : Si vous supprimez ce temps d'arrĆŖt prĆ©vu, il ne sera pas pris "
    -#~ "en compte dans les futurs rapports SLA"
    +#~ "ATTENTION : Si vous supprimez ce temps d'arrĆŖt prĆ©vu, il ne sera pas pris en "
    +#~ "compte dans les futurs rapports SLA"
     
     #~ msgid "Not deleted. You must select an existing user"
     #~ msgstr ""
    -#~ "Erreur de suppression. Vous devez sƩlectionner un utilisateur qui existe "
    -#~ "dƩjƠ."
    +#~ "Erreur de suppression. Vous devez sƩlectionner un utilisateur qui existe dƩjƠ."
     
     #~ msgid ""
     #~ "You must select a Recon Server for the Task, otherwise the Recon Task will "
     #~ "never run"
     #~ msgstr ""
    -#~ "Vous devez sĆ©lectionner un serveur Recon pour la tĆ¢che. Sinon, la tĆ¢che "
    -#~ "Recon ne fonctionnera pas."
    +#~ "Vous devez sĆ©lectionner un serveur Recon pour la tĆ¢che. Sinon, la tĆ¢che Recon "
    +#~ "ne fonctionnera pas."
     
     #~ msgid ""
     #~ "Ports defined like: 80 or 80,443,512 or even 0-1024 (Like Nmap command line "
     #~ "format). If dont want to do a sweep using portscan, left it in blank"
     #~ msgstr ""
    -#~ "Ports dĆ©finis ainsi : 80 ou 80,443,512 ou mĆŖme 0-1024 (comme format de "
    -#~ "ligne de commande Nmap). Si vous ne voulez pas effectuer un balayage avec "
    -#~ "portscan, laissez-le en blanc."
    +#~ "Ports dĆ©finis ainsi : 80 ou 80,443,512 ou mĆŖme 0-1024 (comme format de ligne "
    +#~ "de commande Nmap). Si vous ne voulez pas effectuer un balayage avec portscan, "
    +#~ "laissez-le en blanc."
     
     #~ msgid "Choose if the discovery of a new system creates an incident or not."
     #~ msgstr ""
    @@ -57344,8 +56588,7 @@ msgstr "Gestion du groupe de module"
     #~ "Maximum number of parent hosts that will be created if parent detection is "
     #~ "enabled."
     #~ msgstr ""
    -#~ "Nombre maximal d'hƓtes de parents crƩƩs si la dƩtection de parents est "
    -#~ "activƩe."
    +#~ "Nombre maximal d'hƓtes de parents crƩƩs si la dƩtection de parents est activƩe."
     
     #~ msgid "Pandora servers"
     #~ msgstr "Serveurs de Pandora FMS"
    @@ -57362,8 +56605,8 @@ msgstr "Gestion du groupe de module"
     #~ msgstr "Pandora FMS local"
     
     #~ msgid ""
    -#~ "If this option is enabled, the users can use double authentication with "
    -#~ "their accounts"
    +#~ "If this option is enabled, the users can use double authentication with their "
    +#~ "accounts"
     #~ msgstr ""
     #~ "Si cette option est activƩe, les utilisateurs peuvent effectuer une double "
     #~ "authentification avec leurs comptes."
    @@ -57382,15 +56625,14 @@ msgstr "Gestion du groupe de module"
     #~ "Uniquement en extension .perm."
     
     #~ msgid ""
    -#~ "Configuration of our clippy, 'full mode' show the icon in the header and "
    -#~ "the contextual helps and it is noise, 'on demand' it is equal to full but "
    -#~ "it is not noise and 'expert' the icons in the header and the context is not."
    +#~ "Configuration of our clippy, 'full mode' show the icon in the header and the "
    +#~ "contextual helps and it is noise, 'on demand' it is equal to full but it is "
    +#~ "not noise and 'expert' the icons in the header and the context is not."
     #~ msgstr ""
    -#~ "Configuration de l'assistant. Le Ā« mode intĆ©gral Ā» affiche l'icĆ“ne dans "
    -#~ "l'en-tĆŖte et dans l'aide contextuelle, et sera proactif. Ā« Sur demande Ā» "
    -#~ "fonctionne comme le mode intĆ©gral mais il ne sera pas proactif. En mode Ā« "
    -#~ "Expert Ā», les icĆ“nes ne seront pas affichĆ©es ni dans l'en-tĆŖte ni comme "
    -#~ "aide contextuelle."
    +#~ "Configuration de l'assistant. Le Ā« mode intĆ©gral Ā» affiche l'icĆ“ne dans l'en-"
    +#~ "tĆŖte et dans l'aide contextuelle, et sera proactif. Ā« Sur demande Ā» fonctionne "
    +#~ "comme le mode intĆ©gral mais il ne sera pas proactif. En mode Ā« Expert Ā», les "
    +#~ "icĆ“nes ne seront pas affichĆ©es ni dans l'en-tĆŖte ni comme aide contextuelle."
     
     #~ msgid "Allow create planned downtimes in the past"
     #~ msgstr "Ceci permet de crĆ©er des temps d'arrĆŖt planifiĆ©s dans le passĆ©."
    @@ -57415,40 +56657,38 @@ msgstr "Gestion du groupe de module"
     
     #~ msgid "Agent icon for GIS Maps. If set to \"none\", group icon will be used"
     #~ msgstr ""
    -#~ "IcĆ“ne de l'agent sur les cartes GIS. Si elle est rĆ©glĆ©e sur Ā« aucun Ā», "
    -#~ "l'icƓne du groupe sera utilisƩe."
    +#~ "IcĆ“ne de l'agent sur les cartes GIS. Si elle est rĆ©glĆ©e sur Ā« aucun Ā», l'icĆ“ne "
    +#~ "du groupe sera utilisƩe."
     
     #~ msgid ""
     #~ "When the agent name have a lot of characters, in some places in Pandora "
     #~ "Console it is necesary truncate to N characters."
     #~ msgstr ""
    -#~ "Lorsque le nom de l'agent contient beaucoup de caractĆØres, il est "
    -#~ "nĆ©cessaire de le raccourcir Ć  N caractĆØres Ć  quelques endroits de la "
    -#~ "console de Pandora FMS."
    +#~ "Lorsque le nom de l'agent contient beaucoup de caractĆØres, il est nĆ©cessaire "
    +#~ "de le raccourcir Ć  N caractĆØres Ć  quelques endroits de la console de Pandora "
    +#~ "FMS."
     
     #~ msgid ""
    -#~ "When the item title name have a lot of characters, in some places in "
    -#~ "Pandora Console it is necesary truncate to N characters."
    +#~ "When the item title name have a lot of characters, in some places in Pandora "
    +#~ "Console it is necesary truncate to N characters."
     #~ msgstr ""
     #~ "Lorsque le titre de l'Ć©lĆ©ment contient beaucoup de caractĆØres, il est "
    -#~ "nĆ©cessaire de le raccourcir Ć  N caractĆØres Ć  quelques endroits de la "
    -#~ "console de Pandora FMS."
    +#~ "nĆ©cessaire de le raccourcir Ć  N caractĆØres Ć  quelques endroits de la console "
    +#~ "de Pandora FMS."
     
     #~ msgid ""
     #~ "When the module name have a lot of characters, in some places in Pandora "
     #~ "Console it is necesary truncate to N characters."
     #~ msgstr ""
    -#~ "Lorsque le nom du module contient beaucoup de caractĆØres, il est nĆ©cessaire "
    -#~ "de le raccourcir Ć  N caractĆØres Ć  quelques endroits de la console de "
    -#~ "Pandora FMS."
    +#~ "Lorsque le nom du module contient beaucoup de caractĆØres, il est nĆ©cessaire de "
    +#~ "le raccourcir Ć  N caractĆØres Ć  quelques endroits de la console de Pandora FMS."
     
     #~ msgid ""
    -#~ "When the description name have a lot of characters, in some places in "
    -#~ "Pandora Console it is necesary truncate to N characters."
    +#~ "When the description name have a lot of characters, in some places in Pandora "
    +#~ "Console it is necesary truncate to N characters."
     #~ msgstr ""
    -#~ "Lorsque la description contient beaucoup de caractĆØres, il est nĆ©cessaire "
    -#~ "de le raccourcir Ć  N caractĆØres Ć  quelques endroits de la console de "
    -#~ "Pandora FMS."
    +#~ "Lorsque la description contient beaucoup de caractĆØres, il est nĆ©cessaire de "
    +#~ "le raccourcir Ć  N caractĆØres Ć  quelques endroits de la console de Pandora FMS."
     
     #~ msgid "This enabling this, max, min and avg values will be shown with units."
     #~ msgstr ""
    @@ -57456,22 +56696,20 @@ msgstr "Gestion du groupe de module"
     #~ "seront affichƩes avec les unitƩs."
     
     #~ msgid ""
    -#~ "This interval will affect to the lines between elements on the Visual "
    -#~ "Console"
    +#~ "This interval will affect to the lines between elements on the Visual Console"
     #~ msgstr ""
    -#~ "Cet intervalle affectera les lignes entre les ƩlƩments sur la console "
    -#~ "visuelle"
    +#~ "Cet intervalle affectera les lignes entre les ƩlƩments sur la console visuelle"
     
     #~ msgid "Show QR Code icon in the header"
     #~ msgstr "Afficher icĆ“ne du Code QR dans l'en-tĆŖte"
     
     #~ msgid ""
    -#~ "Remember that this package will override the actual Pandora FMS files and "
    -#~ "it is recommended to do a backup before continue with the update."
    +#~ "Remember that this package will override the actual Pandora FMS files and it "
    +#~ "is recommended to do a backup before continue with the update."
     #~ msgstr ""
    -#~ "N'oubliez pas que ce progiciel remplace les fichiers actuels de Pandora "
    -#~ "FMS. Il est recommandƩ d'effectuer une sauvegarde avant de continuer avec "
    -#~ "la mise Ć  jour."
    +#~ "N'oubliez pas que ce progiciel remplace les fichiers actuels de Pandora FMS. "
    +#~ "Il est recommandƩ d'effectuer une sauvegarde avant de continuer avec la mise Ơ "
    +#~ "jour."
     
     #, php-format
     #~ msgid ""
    @@ -57484,27 +56722,26 @@ msgstr "Gestion du groupe de module"
     
     #, php-format
     #~ msgid ""
    -#~ "Your PHP has set post parameter max size limit in %s. For avoid problems "
    -#~ "with big updates please set to 100M"
    +#~ "Your PHP has set post parameter max size limit in %s. For avoid problems with "
    +#~ "big updates please set to 100M"
     #~ msgstr ""
    -#~ "Votre PHP a fixĆ© le paramĆØtre limite de taille maximale sur %s . Pour "
    -#~ "Ć©viter des problĆØmes en cas de changements majeurs, veuillez le configurer "
    -#~ "sur 100M."
    +#~ "Votre PHP a fixĆ© le paramĆØtre limite de taille maximale sur %s . Pour Ć©viter "
    +#~ "des problĆØmes en cas de changements majeurs, veuillez le configurer sur 100M."
     
     #, php-format
     #~ msgid ""
     #~ "Your PHP has set memory limit in %s. For avoid problems with big updates "
     #~ "please set to 500M"
     #~ msgstr ""
    -#~ "La limite de mĆ©moire de votre PHP est %s. Pour Ć©viter des problĆØmes avec "
    -#~ "les mises Ć  jour majeures, veuillez le configurer sur 500M."
    +#~ "La limite de mĆ©moire de votre PHP est %s. Pour Ć©viter des problĆØmes avec les "
    +#~ "mises Ć  jour majeures, veuillez le configurer sur 500M."
     
     #~ msgid ""
    -#~ "The current authentication scheme doesn't support creating users from "
    -#~ "Pandora FMS"
    +#~ "The current authentication scheme doesn't support creating users from Pandora "
    +#~ "FMS"
     #~ msgstr ""
    -#~ "Le schƩma d'authentification actuel ne permet par de crƩer des utilisateurs "
    -#~ "Ć  partir de Pandora FMS."
    +#~ "Le schƩma d'authentification actuel ne permet par de crƩer des utilisateurs Ơ "
    +#~ "partir de Pandora FMS."
     
     #~ msgid "Does not exist module with this name."
     #~ msgstr "Aucun module avec ce nom"
    @@ -57521,8 +56758,7 @@ msgstr "Gestion du groupe de module"
     #~ msgid "Error creating local component."
     #~ msgstr "Erreur de crƩation du composant local"
     
    -#~ msgid ""
    -#~ "Error adding network module to policy. Module_name cannot be left blank."
    +#~ msgid "Error adding network module to policy. Module_name cannot be left blank."
     #~ msgstr ""
     #~ "Erreur d'ajout du module de rƩseau Ơ la politique. Module_name ne peut pas "
     #~ "ĆŖtre laissĆ© en blanc."
    @@ -57540,8 +56776,8 @@ msgstr "Gestion du groupe de module"
     
     #~ msgid "Error in netflow filter creation. Filter name cannot be left blank."
     #~ msgstr ""
    -#~ "Erreur de crĆ©ation du filtre Netflow. Le nom du filtre ne peut pas ĆŖtre "
    -#~ "laissƩ en blanc."
    +#~ "Erreur de crĆ©ation du filtre Netflow. Le nom du filtre ne peut pas ĆŖtre laissĆ© "
    +#~ "en blanc."
     
     #~ msgid "Error in creation special day."
     #~ msgstr "Erreur de crƩation de jour spƩcial"
    @@ -57551,8 +56787,8 @@ msgstr "Gestion du groupe de module"
     
     #~ msgid "Error updating special day. Id cannot be left blank."
     #~ msgstr ""
    -#~ "Erreur de mise Ć  jour du jour spĆ©cial. L'identifiant ne peut pas ĆŖtre "
    -#~ "laissƩ en blanc."
    +#~ "Erreur de mise Ć  jour du jour spĆ©cial. L'identifiant ne peut pas ĆŖtre laissĆ© "
    +#~ "en blanc."
     
     #~ msgid "Error in deletion special day."
     #~ msgstr "Erreur de suppression du jour spƩcial"
    @@ -57571,16 +56807,15 @@ msgstr "Gestion du groupe de module"
     
     #~ msgid "Remote configuration directory is not writtable for the console"
     #~ msgstr ""
    -#~ "Le rƩpertoire de configuration Ơ distance n'est pas modifiable par la "
    -#~ "console."
    +#~ "Le rƩpertoire de configuration Ơ distance n'est pas modifiable par la console."
     
     #~ msgid ""
    -#~ "There are too much files in attachment directory. This is not fatal, but "
    -#~ "you should consider cleaning up your attachment directory manually"
    +#~ "There are too much files in attachment directory. This is not fatal, but you "
    +#~ "should consider cleaning up your attachment directory manually"
     #~ msgstr ""
    -#~ "Il y a trop de fichiers dans le rĆ©pertoire de piĆØces jointes. Il ne s'agit "
    -#~ "pas d'une erreur fatale, mais vous devriez penser Ć  nettoyer manuellement "
    -#~ "votre rĆ©pertoire de piĆØces jointes."
    +#~ "Il y a trop de fichiers dans le rĆ©pertoire de piĆØces jointes. Il ne s'agit pas "
    +#~ "d'une erreur fatale, mais vous devriez penser Ć  nettoyer manuellement votre "
    +#~ "rĆ©pertoire de piĆØces jointes."
     
     #~ msgid ""
     #~ "Click  ici pour commencer le "
    -#~ "processus d'abonnement Ć  la newsletter."
    +#~ "\"javascript: force_run_newsletter();\"> ici pour commencer le processus "
    +#~ "d'abonnement Ć  la newsletter."
     
     #~ msgid ""
    -#~ "Please check that the web server has write rights on the {HOMEDIR}/"
    -#~ "attachment directory"
    +#~ "Please check that the web server has write rights on the {HOMEDIR}/attachment "
    +#~ "directory"
     #~ msgstr ""
    -#~ "Veuillez vƩrifier que le serveur web a des droits d'Ʃcriture sur le "
    -#~ "{HOMEDIR}/rĆ©pertoire des piĆØces jointes."
    +#~ "Veuillez vƩrifier que le serveur web a des droits d'Ʃcriture sur le {HOMEDIR}/"
    +#~ "rĆ©pertoire des piĆØces jointes."
     
     #~ msgid "Remote configuration directory is not readble for the console"
     #~ msgstr ""
    -#~ "Le rƩpertoire de configuration Ơ distance n'est pas accessible en Ʃcriture "
    -#~ "par la console."
    +#~ "Le rƩpertoire de configuration Ơ distance n'est pas accessible en Ʃcriture par "
    +#~ "la console."
     
     #~ msgid "This license has expired."
     #~ msgstr "Cette licence a expirƩ."
     
     #~ msgid ""
    -#~ "Your Pandora FMS has the \"develop_bypass\" mode enabled. This is a "
    -#~ "developer mode and should be disabled in a production system. This value is "
    -#~ "written in the main index.php file"
    +#~ "Your Pandora FMS has the \"develop_bypass\" mode enabled. This is a developer "
    +#~ "mode and should be disabled in a production system. This value is written in "
    +#~ "the main index.php file"
     #~ msgstr ""
     #~ "Mode Ā« develop_bypass Ā» de votre Pandora FMS activĆ©. Il s'agit d'un mode "
     #~ "dĆ©veloppeur et il doit ĆŖtre dĆ©sactivĆ© dans un systĆØme de production. Cette "
    @@ -57623,11 +56858,11 @@ msgstr "Gestion du groupe de module"
     #~ msgstr "La police de caractĆØres n'existe pas."
     
     #~ msgid ""
    -#~ "Event storm protection is activated. No events will be generated during "
    -#~ "this mode."
    +#~ "Event storm protection is activated. No events will be generated during this "
    +#~ "mode."
     #~ msgstr ""
    -#~ "La protection Event Storm est activƩe. Aucun ƩvƩnement sera gƩnƩrƩ pendant "
    -#~ "que ce mode est activƩ."
    +#~ "La protection Event Storm est activƩe. Aucun ƩvƩnement sera gƩnƩrƩ pendant que "
    +#~ "ce mode est activƩ."
     
     #~ msgid "You need to restart server after altering this configuration setting."
     #~ msgstr ""
    @@ -57638,57 +56873,55 @@ msgstr "Gestion du groupe de module"
     #~ "To disable, change it on your PHP configuration file (php.ini) and put "
     #~ "safe_mode = Off (Dont forget restart apache process after changes)"
     #~ msgstr ""
    -#~ "Pour le dƩsactiver, modifiez votre fichier de configuration PHP (php.ini) "
    -#~ "et rƩglez-le sur safe_mode = Off (n'oubliez pas de rƩinitialiser le "
    -#~ "processus Apache aprĆØs les modifications)."
    +#~ "Pour le dƩsactiver, modifiez votre fichier de configuration PHP (php.ini) et "
    +#~ "rƩglez-le sur safe_mode = Off (n'oubliez pas de rƩinitialiser le processus "
    +#~ "Apache aprĆØs les modifications)."
     
     #~ msgid ""
     #~ "Cannot connect to the database, please check your database setup in the "
     #~ "include/config.php file.

    \n" -#~ "\t\t\tProbably your database, hostname, user or password values are " -#~ "incorrect or\n" +#~ "\t\t\tProbably your database, hostname, user or password values are incorrect " +#~ "or\n" #~ "\t\t\tthe database server is not running." #~ msgstr "" #~ "Impossible de se connecter Ơ la base de donnƩes ; veuillez vƩrifier la " -#~ "configuration de votre base de donnƩes dans le fichier include/config." -#~ "php.

    \n" -#~ "\t\t\tLes valeurs de votre base de donnƩes, nom d'hƓte, utilisateur ou mot " -#~ "de passe sont probablement incorrectes ou\n" +#~ "configuration de votre base de donnƩes dans le fichier include/config.php.

    \n" +#~ "\t\t\tLes valeurs de votre base de donnƩes, nom d'hƓte, utilisateur ou mot de " +#~ "passe sont probablement incorrectes ou\n" #~ "\t\t\tle serveur de la base de donnƩes ne fonctionne pas." #~ msgid "" -#~ "Cannot load configuration variables from database. Please check your " -#~ "database setup in the\n" +#~ "Cannot load configuration variables from database. Please check your database " +#~ "setup in the\n" #~ "\t\t\tinclude/config.php file.

    \n" #~ "\t\t\tMost likely your database schema has been created but there are is no " #~ "data in it, you have a problem with the database access credentials or your " #~ "schema is out of date.\n" #~ "\t\t\t

    Pandora FMS Console cannot find include/config.php or " #~ "this file has invalid\n" -#~ "\t\t\tpermissions and HTTP server cannot read it. Please read documentation " -#~ "to fix this problem.
    " +#~ "\t\t\tpermissions and HTTP server cannot read it. Please read documentation to " +#~ "fix this problem.
    " #~ msgstr "" #~ "Impossible de charger les variables de configuration de la base de donnƩes. " -#~ "Veuillez vƩrifier la configuration de votre base de donnƩes dans le " -#~ "fichier \n" +#~ "Veuillez vƩrifier la configuration de votre base de donnƩes dans le fichier \n" #~ " \t \t \tinclude/config.php.

    \n" -#~ " \t \t \tLe schĆ©ma de votre base de donnĆ©es a trĆØs probablement Ć©tĆ© crĆ©Ć©, " -#~ "mais il ne contient pas de donnĆ©es, vous avez un problĆØme avec les " -#~ "identifiants d'accĆØs Ć  votre base de donnĆ©es ou votre schĆ©ma est expirĆ©. \n" +#~ " \t \t \tLe schĆ©ma de votre base de donnĆ©es a trĆØs probablement Ć©tĆ© crĆ©Ć©, mais " +#~ "il ne contient pas de donnĆ©es, vous avez un problĆØme avec les identifiants " +#~ "d'accĆØs Ć  votre base de donnĆ©es ou votre schĆ©ma est expirĆ©. \n" #~ " \t \t \t

    La console Pandora FMS ne peut pas retrouver include/" #~ "config.php ou ce fichier a des \n" #~ " \t \t \tpermissions non valides et le serveur HTTP ne peut pas le lire. " #~ "Veuillez lire la documentation pour rĆ©soudre ce problĆØme.
    " #~ msgid "" -#~ "For security reasons, config.php must have restrictive permissions, " -#~ "and \"other\" users\n" -#~ "\t\t\tshould not read it or write to it. It should be written only for " -#~ "owner\n" -#~ "\t\t\t(usually www-data or http daemon user), normal operation is not " -#~ "possible until you change\n" -#~ "\t\t\tpermissions for include/config.php file. Please do it, it is " -#~ "for your security." +#~ "For security reasons, config.php must have restrictive permissions, and " +#~ "\"other\" users\n" +#~ "\t\t\tshould not read it or write to it. It should be written only for owner\n" +#~ "\t\t\t(usually www-data or http daemon user), normal operation is not possible " +#~ "until you change\n" +#~ "\t\t\tpermissions for include/config.php file. Please do it, it is for " +#~ "your security." #~ msgstr "" #~ "Pour des raisons de sĆ©curitĆ©, config.php doit avoir des permissions " #~ "restrictives, et Ā« d'autres Ā» utilisateurs\n" @@ -57696,8 +56929,8 @@ msgstr "Gestion du groupe de module" #~ "seulement pour le propriĆ©taire\n" #~ "\t\t\t(normalement www-data ou http utilisateur dĆ©mon), les opĆ©rations " #~ "normales ne sont pas possibles jusqu'Ć  ce que vous changiez\n" -#~ "\t\t\tles permissions pour le fichier include/config.php. Veuillez " -#~ "le faire, c'est pour votre sĆ©curitĆ©." +#~ "\t\t\tles permissions pour le fichier include/config.php. Veuillez le " +#~ "faire, c'est pour votre sĆ©curitĆ©." #~ msgid "Failed the copying of the files." #~ msgstr "Copie de fichiers Ć©chouĆ©e" @@ -57736,8 +56969,7 @@ msgstr "Gestion du groupe de module" #~ msgstr "Menu de configuration de graphiques de Pandora FMS" #~ msgid "Search by incident name or description, list matches." -#~ msgstr "" -#~ "Chercher par nom d'incident ou par description. Liste de concordances." +#~ msgstr "Chercher par nom d'incident ou par description. Liste de concordances." #~ msgid "List of Incidents" #~ msgstr "Liste des incidents" @@ -57747,8 +56979,8 @@ msgstr "Gestion du groupe de module" #~ "You can find more help in the Pandora's wiki" #~ msgstr "" -#~ "Vous pouvez trouver plus d'aide dans le wiki de Pandora FMS" +#~ "Vous pouvez trouver plus d'aide dans le wiki de Pandora FMS" #~ msgid "Maps found" #~ msgstr "Cartes trouvĆ©es" @@ -57757,25 +56989,22 @@ msgstr "Gestion du groupe de module" #~ "You can not change your user info from Pandora FMS under the current " #~ "authentication scheme" #~ msgstr "" -#~ "Vous ne pouvez pas changer votre information d'utilisateur de Pandora FMS " -#~ "sous le systĆØme d'authentification actuel." +#~ "Vous ne pouvez pas changer votre information d'utilisateur de Pandora FMS sous " +#~ "le systĆØme d'authentification actuel." #~ msgid "Error in connection." #~ msgstr "Erreur de connexion" -#~ msgid "" -#~ "If propagate acl is activated, this group will include its child groups" -#~ msgstr "" -#~ "Si la propagation ACL est activĆ©e, ce groupe inclura ses groupes fils." +#~ msgid "If propagate acl is activated, this group will include its child groups" +#~ msgstr "Si la propagation ACL est activĆ©e, ce groupe inclura ses groupes fils." #~ msgid "Show a value of module and icon" #~ msgstr "Afficher valeur du module et de l'icĆ“ne" -#~ msgid "" -#~ "Please could you fill the widget data previous to filling the list items." +#~ msgid "Please could you fill the widget data previous to filling the list items." #~ msgstr "" -#~ "Veuillez remplir les donnĆ©es de widget prĆ©cĆ©dentes pour remplir les " -#~ "Ć©lĆ©ments de la liste." +#~ "Veuillez remplir les donnĆ©es de widget prĆ©cĆ©dentes pour remplir les Ć©lĆ©ments " +#~ "de la liste." #~ msgid "Show a top n of agents modules." #~ msgstr "Afficher le top N de modules d'agents" @@ -57787,12 +57016,11 @@ msgstr "Gestion du groupe de module" #~ "The user doesn't have permission to read agents. Please contact with your " #~ "pandora administrator." #~ msgstr "" -#~ "L'utilisateur n'a pas le droit de lire les agents. Veuillez communiquer " -#~ "avec votre administrateur de Pandora FMS." +#~ "L'utilisateur n'a pas le droit de lire les agents. Veuillez communiquer avec " +#~ "votre administrateur de Pandora FMS." #~ msgid "Cron extension has never run or it's not configured well" -#~ msgstr "" -#~ "L'extension cron n'a jamais Ć©tĆ© exĆ©cutĆ©e ou n'est pas bien configurĆ©e." +#~ msgstr "L'extension cron n'a jamais Ć©tĆ© exĆ©cutĆ©e ou n'est pas bien configurĆ©e." #~ msgid "" #~ "This extension relies on a proper setup of cron, the time-based scheduling " @@ -57841,11 +57069,10 @@ msgstr "Gestion du groupe de module" #~ msgid "Error updating service element" #~ msgstr "Erreur de mise Ć  jour de l'Ć©lĆ©ment de service" -#~ msgid "" -#~ "Only the critical elements are relevant to calculate the service status" +#~ msgid "Only the critical elements are relevant to calculate the service status" #~ msgstr "" -#~ "Seulement les Ć©lĆ©ments critiques sont pris en compte dans le calcul de " -#~ "l'Ć©tat du service." +#~ "Seulement les Ć©lĆ©ments critiques sont pris en compte dans le calcul de l'Ć©tat " +#~ "du service." #~ msgid "You should set the weights manually" #~ msgstr "Vous devez dĆ©finir les poids manuellement." @@ -57854,8 +57081,8 @@ msgstr "Gestion du groupe de module" #~ msgstr "Les poids ont des valeurs par dĆ©faut." #~ msgid "" -#~ "Only the elements configured as 'critical element' are used to calculate " -#~ "the service status" +#~ "Only the elements configured as 'critical element' are used to calculate the " +#~ "service status" #~ msgstr "" #~ "Seulement les Ć©lĆ©ments configurĆ©s comme Ā« Ć©lĆ©ment critique Ā» sont utilisĆ©s " #~ "pour calculer l'Ć©tat du service." @@ -57869,8 +57096,7 @@ msgstr "Gestion du groupe de module" #~ msgstr "Intervalle de temps entre chaque transfert de donnĆ©es" #~ msgid "Only one service map widget is supported at this moment" -#~ msgstr "" -#~ "Seulement un widget de carte de service est pris en charge en ce moment." +#~ msgstr "Seulement un widget de carte de service est pris en charge en ce moment." #~ msgid "" #~ "Server name doesnt match. Check the node server name and configure the same " @@ -57887,24 +57113,22 @@ msgstr "Gestion du groupe de module" #, php-format #~ msgid "" -#~ "License out of limits

    " -#~ "This license allows %d agents and you have %d agents configured." +#~ "License out of limits

    This " +#~ "license allows %d agents and you have %d agents configured." #~ msgstr "" #~ "Licence expirƩe

    Cette " #~ "licence permet %d agents et vous avez %d agents configurĆ©s." -#~ msgid "" -#~ "The target user profiles will be replaced with the source user profiles" +#~ msgid "The target user profiles will be replaced with the source user profiles" #~ msgstr "" #~ "Les profils d'utilisateurs cible seront remplacĆ©s par des profils " #~ "d'utilisateur source." #~ msgid "" -#~ "The selected user profile will be added to the selected users into the " -#~ "target" +#~ "The selected user profile will be added to the selected users into the target" #~ msgstr "" -#~ "Le profil d'utilisateur sĆ©lectionnĆ© sera ajoutĆ© aux utilisateurs " -#~ "sĆ©lectionnĆ©s dans la cible." +#~ "Le profil d'utilisateur sĆ©lectionnĆ© sera ajoutĆ© aux utilisateurs sĆ©lectionnĆ©s " +#~ "dans la cible." #~ msgid "Visual console are not shown due screen size limitations" #~ msgstr "" @@ -57918,8 +57142,8 @@ msgstr "Gestion du groupe de module" #~ msgstr "Marquise" #~ msgid "" -#~ "Enable this option if you want to fallback to local authentication when " -#~ "remote (ldap etc...) authentication failed." +#~ "Enable this option if you want to fallback to local authentication when remote " +#~ "(ldap etc...) authentication failed." #~ msgstr "" #~ "Activez cette option si vous voulez effectuer un repli Ć  l'authentification " #~ "locale lorsque l'authentification Ć  distante (LDAP etc.) a Ć©chouĆ©." @@ -57935,21 +57159,21 @@ msgstr "Gestion du groupe de module" #~ msgid "Error updating data module. Id_module exists in the new agent." #~ msgstr "" -#~ "Erreur de mise Ć  jour des donnĆ©es de module. Id_module existe dans un " -#~ "nouvel agent." +#~ "Erreur de mise Ć  jour des donnĆ©es de module. Id_module existe dans un nouvel " +#~ "agent." #~ msgid "Error updating data module. Id_module cannot be left blank." #~ msgstr "" -#~ "Erreur de mise Ć  jour des donnĆ©es de module. Id_module ne peut pas ĆŖtre " -#~ "laissĆ© en blanc." +#~ "Erreur de mise Ć  jour des donnĆ©es de module. Id_module ne peut pas ĆŖtre laissĆ© " +#~ "en blanc." #~ msgid "Error in creation data module." #~ msgstr "Erreur de crĆ©ation des donnĆ©es de module." #~ msgid "Error in creation data module. Module_name cannot be left blank." #~ msgstr "" -#~ "Erreur de crĆ©ation des donnĆ©es de module. Module_name ne peut pas ĆŖtre " -#~ "laissĆ© en blanc." +#~ "Erreur de crĆ©ation des donnĆ©es de module. Module_name ne peut pas ĆŖtre laissĆ© " +#~ "en blanc." #~ msgid "Error adding data module to policy. Id_policy cannot be left blank." #~ msgstr "" @@ -57958,8 +57182,8 @@ msgstr "Gestion du groupe de module" #~ msgid "Error adding data module to policy. Module_name cannot be left blank." #~ msgstr "" -#~ "Erreur d'ajout des donnĆ©es de module Ć  la politique. Module_name ne peut " -#~ "pas ĆŖtre laissĆ© en blanc." +#~ "Erreur d'ajout des donnĆ©es de module Ć  la politique. Module_name ne peut pas " +#~ "ĆŖtre laissĆ© en blanc." #~ msgid "" #~ "Error updating data module in policy. Id_policy_module cannot be left blank." @@ -57972,11 +57196,10 @@ msgstr "Gestion du groupe de module" #~ "Erreur de mise Ć  jour des donnĆ©es du module dans la politique. Id_policy ne " #~ "peut pas ĆŖtre laissĆ© en blanc." -#~ msgid "" -#~ "Error adding data module to policy. The module is already in the policy." +#~ msgid "Error adding data module to policy. The module is already in the policy." #~ msgstr "" -#~ "Erreur d'ajout des donnĆ©es du module Ć  la politique. Le module se trouve " -#~ "dĆ©jĆ  dans la politique." +#~ "Erreur d'ajout des donnĆ©es du module Ć  la politique. Le module se trouve dĆ©jĆ  " +#~ "dans la politique." #~ msgid "Error adding data module to policy." #~ msgstr "Erreur d'ajout des donnĆ©es du module Ć  la politique." @@ -57992,73 +57215,70 @@ msgstr "Gestion du groupe de module" #~ msgid "" #~ "To continue using Pandora FMS, please disable enterprise by renaming the " -#~ "Enterprise directory in the console.

    Or contact Artica at " -#~ "info@artica.es for a valid license:" +#~ "Enterprise directory in the console.

    Or contact Artica at info@artica." +#~ "es for a valid license:" #~ msgstr "" #~ "Pour continuer Ơ utiliser Pandora FMS, veuillez dƩsactiver la version " #~ "Entreprise en renommant le rƩpertoire Enterprise sur la console.

    Ou " -#~ "communiquez avec Ɓrtica ST Ć  info@artica.es pour obtenir une licence " -#~ "valide :" +#~ "communiquez avec Ɓrtica ST Ć  info@artica.es pour obtenir une licence valide :" #~ msgid "When connecting to Artica server." #~ msgstr "Lors de la connexion au serveur d'Ɓrtica ST" #~ msgid "" #~ "In the same fashion, when subscribed to the newsletter you accept that your " -#~ "email will pass on to a database property of Artica TS. This data will " -#~ "solely be used to provide you with information about Pandora FMS and will " -#~ "not be conceded to third parties. You'll be able to unregister from said " -#~ "database at any time from the newsletter subscription options" +#~ "email will pass on to a database property of Artica TS. This data will solely " +#~ "be used to provide you with information about Pandora FMS and will not be " +#~ "conceded to third parties. You'll be able to unregister from said database at " +#~ "any time from the newsletter subscription options" #~ msgstr "" -#~ "De la mĆŖme maniĆØre, lorsque vous vous abonnez Ć  la newsletter, vous " -#~ "acceptez que votre courriel soit enregistrĆ© dans la base de donnĆ©es " -#~ "d'Ɓrtica ST. Ces donnĆ©es seront utilisĆ©es uniquement pour vous fournir de " -#~ "l'information sur Pandora FMS et ne seront pas partagĆ©es avec des tiers. " -#~ "Vous pouvez vous dĆ©sabonner de cette base de donnĆ©es en tout temps en " -#~ "modifiant les options d'abonnement Ć  la newsletter." +#~ "De la mĆŖme maniĆØre, lorsque vous vous abonnez Ć  la newsletter, vous acceptez " +#~ "que votre courriel soit enregistrĆ© dans la base de donnĆ©es d'Ɓrtica ST. Ces " +#~ "donnĆ©es seront utilisĆ©es uniquement pour vous fournir de l'information sur " +#~ "Pandora FMS et ne seront pas partagĆ©es avec des tiers. Vous pouvez vous " +#~ "dĆ©sabonner de cette base de donnĆ©es en tout temps en modifiant les options " +#~ "d'abonnement Ć  la newsletter." #~ msgid "" -#~ "When you subscribe to the Pandora FMS Update Manager service, you accept " -#~ "that we register your Pandora instance as an identifier on the database " -#~ "owned by Artica TS. This data will solely be used to provide you with " -#~ "information about Pandora FMS and will not be conceded to third parties. " -#~ "You'll be able to unregister from said database at any time from the Update " -#~ "Manager options" +#~ "When you subscribe to the Pandora FMS Update Manager service, you accept that " +#~ "we register your Pandora instance as an identifier on the database owned by " +#~ "Artica TS. This data will solely be used to provide you with information about " +#~ "Pandora FMS and will not be conceded to third parties. You'll be able to " +#~ "unregister from said database at any time from the Update Manager options" #~ msgstr "" #~ "Lorsque vous vous abonnez au service de Gestionnaire de mises Ć  jour de " #~ "Pandora FMS, vous acceptez que votre instance Pandora FMS soit enregistrĆ©e " #~ "comme un identifiant sur la base de donnĆ©es d'Ɓrtica ST. Ces donnĆ©es seront " -#~ "utilisĆ©es uniquement pour vous fournir de l'information sur Pandora FMS et " -#~ "ne seront pas partagĆ©es avec des tiers. Vous pouvez vous dĆ©sabonner de " -#~ "cette base de donnĆ©es en tout temps en modifiant les options du " -#~ "Gestionnaire de mises Ć  jour." +#~ "utilisĆ©es uniquement pour vous fournir de l'information sur Pandora FMS et ne " +#~ "seront pas partagĆ©es avec des tiers. Vous pouvez vous dĆ©sabonner de cette base " +#~ "de donnĆ©es en tout temps en modifiant les options du Gestionnaire de mises Ć  " +#~ "jour." #~ msgid "Please contact Artica at info@artica.es for a valid licence." #~ msgstr "" -#~ "Veuillez communiquer avec Ɓrtica ST Ć  info@artica.es pour obtenir une " -#~ "licence valide." +#~ "Veuillez communiquer avec Ɓrtica ST Ć  info@artica.es pour obtenir une licence " +#~ "valide." #~ msgid "Please contact Artica at info@artica.es to renew the license." #~ msgstr "" #~ "Veuillez communiquer avec Ɓrtica ST Ć  info@artica.es afin de renouveler la " #~ "licence." -#~ msgid "" -#~ "Data size of mechanism used to transfer data (similar to a data buffer.)" +#~ msgid "Data size of mechanism used to transfer data (similar to a data buffer.)" #~ msgstr "" -#~ "Taille des donnĆ©es du mĆ©canisme utilisĆ© pour transfĆ©rer des donnĆ©es " -#~ "(semblable Ć  une mĆ©moire tampon de donnĆ©es)" +#~ "Taille des donnĆ©es du mĆ©canisme utilisĆ© pour transfĆ©rer des donnĆ©es (semblable " +#~ "Ć  une mĆ©moire tampon de donnĆ©es)" #~ msgid "" -#~ "WARNING: You\\'re trying to create a group in a node member of a " -#~ "metaconsole.\\n\\nThis group and all of this contents will not be visible " -#~ "in the metaconsole.\\n\\nIf you want to create a visible group, you must do " -#~ "it from the metaconsole and propagate to the node. " +#~ "WARNING: You\\'re trying to create a group in a node member of a metaconsole." +#~ "\\n\\nThis group and all of this contents will not be visible in the " +#~ "metaconsole.\\n\\nIf you want to create a visible group, you must do it from " +#~ "the metaconsole and propagate to the node. " #~ msgstr "" #~ "ATTENTION : Vous essayez de crĆ©er un groupe dans un membre nœud de la " -#~ "MĆ©taconsole.\\n\\nCe groupe et tout son contenu ne seront pas visibles sur " -#~ "la MĆ©taconsole.\\n\\nSi vous voulez crĆ©er un groupe visible, il faut le " -#~ "crĆ©er sur la MĆ©taconsole et le propager vers le nœud. " +#~ "MĆ©taconsole.\\n\\nCe groupe et tout son contenu ne seront pas visibles sur la " +#~ "MĆ©taconsole.\\n\\nSi vous voulez crĆ©er un groupe visible, il faut le crĆ©er sur " +#~ "la MĆ©taconsole et le propager vers le nœud. " #~ msgid "" #~ "Limit the number of events that are replicated metaconsole each specified " @@ -58071,16 +57291,15 @@ msgstr "Gestion du groupe de module" #~ "\"Translate string\" extension is missed in the server. This extension is " #~ "mandatory to be configured on metaconsole." #~ msgstr "" -#~ "Il manque l'extension Ā« Traduire chaĆ®ne Ā» dans le serveur. Il est " -#~ "obligatoire de configurer cette extension sur la MĆ©taconsole." +#~ "Il manque l'extension Ā« Traduire chaĆ®ne Ā» dans le serveur. Il est obligatoire " +#~ "de configurer cette extension sur la MĆ©taconsole." #~ msgid "There aren't server added to metaconsole" #~ msgstr "Aucun serveur ajoutĆ© Ć  la MĆ©taconsole" #~ msgid "The planned downtimes created in the past will affect the SLA reports" #~ msgstr "" -#~ "Les temps d'arrĆŖt planifiĆ©s crĆ©Ć©s antĆ©rieurement affecteront les rapports " -#~ "SLA." +#~ "Les temps d'arrĆŖt planifiĆ©s crĆ©Ć©s antĆ©rieurement affecteront les rapports SLA." #~ msgid "Checking for the newest package." #~ msgstr "VĆ©rification du nouveau progiciel en cours" @@ -58092,38 +57311,37 @@ msgstr "Gestion du groupe de module" #~ "The new Update Manager " #~ "client is shipped with Pandora FMS It helps system administrators to update " #~ "their Pandora FMS automatically, since the Update Manager does the task of " -#~ "getting new modules, new plugins and new features (even full migrations " -#~ "tools for future versions) automatically." +#~ "getting new modules, new plugins and new features (even full migrations tools " +#~ "for future versions) automatically." #~ msgstr "" #~ "Le nouveau client Gestionnaire de mises Ć  jour est livrĆ© avec Pandora FMS. Cela permet " -#~ "aux administrateurs du systĆØme de mettre Ć  jour Pandora FMS " -#~ "automatiquement, car le Gestionnaire de mises Ć  jour rĆ©cupĆØre les nouveaux " -#~ "modules, plugins, fonctionnalitĆ©s, ainsi que les outils de migration " -#~ "complets pour des versions postĆ©rieures de maniĆØre automatique." +#~ "aux administrateurs du systĆØme de mettre Ć  jour Pandora FMS automatiquement, " +#~ "car le Gestionnaire de mises Ć  jour rĆ©cupĆØre les nouveaux modules, plugins, " +#~ "fonctionnalitĆ©s, ainsi que les outils de migration complets pour des versions " +#~ "postĆ©rieures de maniĆØre automatique." #~ msgid "" -#~ "Update Manager is one of the most advanced features of Pandora FMS " -#~ "Enterprise version, for more information visit http://pandorafms.com." +#~ "Update Manager is one of the most advanced features of Pandora FMS Enterprise " +#~ "version, for more information visit http://" +#~ "pandorafms.com." #~ msgstr "" -#~ "Le Gestionnaire de mises Ć  jour est une des fonctionnalitĆ©s les plus " -#~ "avancĆ©es de la version Enterprise de Pandora FMS. Pour en savoir plus, " -#~ "consultez http://pandorafms.com." +#~ "Le Gestionnaire de mises Ć  jour est une des fonctionnalitĆ©s les plus avancĆ©es " +#~ "de la version Enterprise de Pandora FMS. Pour en savoir plus, consultez http://pandorafms.com." #~ msgid "There is not any update manager messages." #~ msgstr "Aucun message du Gestionnaire de mises Ć  jour" #~ msgid "" -#~ "Update Manager sends anonymous information about Pandora FMS usage (number " -#~ "of agents and modules running). To disable it, please remove the remote " -#~ "server address from the Update Manager plugin setup." +#~ "Update Manager sends anonymous information about Pandora FMS usage (number of " +#~ "agents and modules running). To disable it, please remove the remote server " +#~ "address from the Update Manager plugin setup." #~ msgstr "" #~ "Le Gestionnaire de mises Ć  jour envoie de l'information anonyme sur " -#~ "l'utilisation de Pandora FMS (nombre d'agents et modules en " -#~ "fonctionnement). Pour dĆ©sactiver cette fonction, veuillez Ć©liminer " -#~ "l'adresse du serveur Ć  distance de la configuration du plugin du " -#~ "Gestionnaire de mises Ć  jour." +#~ "l'utilisation de Pandora FMS (nombre d'agents et modules en fonctionnement). " +#~ "Pour dĆ©sactiver cette fonction, veuillez Ć©liminer l'adresse du serveur Ć  " +#~ "distance de la configuration du plugin du Gestionnaire de mises Ć  jour." #~ msgid "" #~ "The Update Manager client is included on Pandora FMS. It helps system " @@ -58145,38 +57363,37 @@ msgstr "Gestion du groupe de module" #~ msgid "" #~ "This system has too many modules per agent. OpenSource version could manage " -#~ "thousands of modules, but is not recommended to have more than 40 modules " -#~ "per agent. This configuration has B/A modules per agent. Checkout the " -#~ "Enterprise Version for a professional supported system." +#~ "thousands of modules, but is not recommended to have more than 40 modules per " +#~ "agent. This configuration has B/A modules per agent. Checkout the Enterprise " +#~ "Version for a professional supported system." #~ msgstr "" -#~ "Ce systĆØme a trop de modules par agent. La version OpenSource peut gĆ©rer " -#~ "des milliers de modules, mais il n'est pas conseillĆ© d'avoir plus de 40 " -#~ "modules par agent. Cette configuration contient B/A modules par agent. " -#~ "DĆ©couvrez la version Enterprise pour obtenir un systĆØme avec une assistance " -#~ "professionnelle." +#~ "Ce systĆØme a trop de modules par agent. La version OpenSource peut gĆ©rer des " +#~ "milliers de modules, mais il n'est pas conseillĆ© d'avoir plus de 40 modules " +#~ "par agent. Cette configuration contient B/A modules par agent. DĆ©couvrez la " +#~ "version Enterprise pour obtenir un systĆØme avec une assistance professionnelle." #~ msgid "" #~ "The Enterprise version comes with a different update system, with fully " #~ "tested, professionally-supported packages, and our support team is there to " #~ "help you in case of problems or queries. Update Manager is another feature " -#~ "present in the Enterprise version and not included in the OpenSource " -#~ "version. There are lots of advanced business-oriented features contained in " -#~ "Pandora FMS Enterprise Edition. For more information visit pandorafms.com" +#~ "present in the Enterprise version and not included in the OpenSource version. " +#~ "There are lots of advanced business-oriented features contained in Pandora FMS " +#~ "Enterprise Edition. For more information visit pandorafms.com" #~ msgstr "" #~ "La version Enterprise fonctionne avec un systĆØme de mise Ć  jour diffĆ©rent, " -#~ "avec des progiciels entiĆØrement testĆ©s et une Ć©quipe d'assistance " -#~ "disponible en cas de problĆØmes ou questions. Le Gestionnaire de mises Ć  " -#~ "jour est une autre fonctionnalitĆ© incluse dans la version Enterprise mais " -#~ "non incluse dans la version source ouverte. Pandora FMS Enterprise contient " -#~ "de nombreuses fonctionnalitĆ©s axĆ©es sur les entreprises. Pour en savoir " -#~ "plus, consultez pandorafms.com" +#~ "avec des progiciels entiĆØrement testĆ©s et une Ć©quipe d'assistance disponible " +#~ "en cas de problĆØmes ou questions. Le Gestionnaire de mises Ć  jour est une " +#~ "autre fonctionnalitĆ© incluse dans la version Enterprise mais non incluse dans " +#~ "la version source ouverte. Pandora FMS Enterprise contient de nombreuses " +#~ "fonctionnalitĆ©s axĆ©es sur les entreprises. Pour en savoir plus, consultez pandorafms.com" #~ msgid "" #~ "Access to this page is restricted to authorized users only, please contact " #~ "system administrator if you need assistance.

    \n" -#~ "\tPlease know that all attempts to access this page are recorded in " -#~ "security logs of Pandora System Database" +#~ "\tPlease know that all attempts to access this page are recorded in security " +#~ "logs of Pandora System Database" #~ msgstr "" #~ "L'accĆØs Ć  cette page est rĆ©servĆ© aux utilisateurs autorisĆ©s uniquement. " #~ "Veuillez communiquer avec l'administrateur du systĆØme si vous avez besoin " diff --git a/pandora_console/index.pot b/pandora_console/index.pot new file mode 100644 index 0000000000..adbd37210b --- /dev/null +++ b/pandora_console/index.pot @@ -0,0 +1,50532 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#: ../../enterprise/meta/monitoring/custom_fields_view.php:1018 +#: ../../enterprise/meta/monitoring/group_view.php:214 +#: ../../enterprise/meta/monitoring/group_view.php:231 +#: ../../enterprise/godmode/policies/policy_agents.php:716 +#: ../../enterprise/godmode/policies/policy_agents.php:744 +#: ../../enterprise/include/functions_reporting_csv.php:2254 +#: ../../include/functions_reporting_html.php:3928 +#: ../../include/functions_reporting_html.php:3934 +#: ../../include/functions_reporting_html.php:3940 +#: ../../include/functions_reporting_html.php:3946 +#: ../../include/functions_reporting_html.php:3952 +#: ../../include/functions_reporting_html.php:3958 +#: ../../include/functions_reporting_html.php:3964 +#: ../../include/functions_reporting_html.php:4022 +#: ../../include/functions_reporting_html.php:4028 +#: ../../include/functions_reporting_html.php:4034 +#: ../../include/functions_reporting_html.php:4040 +#: ../../include/functions_reporting_html.php:4046 +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2022-08-08 08:54+0200\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../views/calendar/list.php:39 +msgid "Calendars" +msgstr "" + +#: ../../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:256 +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:343 +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.php:118 +#: ../../enterprise/godmode/agentes/collections.data.php:398 +#: ../../enterprise/godmode/agentes/collections.editor.php:112 +#: ../../enterprise/godmode/agentes/collections.php:95 +#: ../../enterprise/godmode/policies/policy_plugins.php:31 +#: ../../enterprise/godmode/policies/policy_alerts.php:57 +#: ../../enterprise/godmode/policies/configure_policy.php:74 +#: ../../enterprise/godmode/policies/policy_modules.php:469 +#: ../../enterprise/godmode/policies/policy_queue.php:211 +#: ../../enterprise/godmode/policies/policies.php:261 +#: ../../enterprise/godmode/policies/policy_linking.php:110 +#: ../../enterprise/godmode/policies/policy_external_alerts.php:302 +#: ../../enterprise/godmode/policies/policy_inventory_modules.php:84 +#: ../../enterprise/godmode/policies/policy_collections.php:43 +#: ../../enterprise/godmode/policies/policy_agents.php:319 +#: ../../enterprise/godmode/massive/massive_edit_tags_policy.php:33 +#: ../../enterprise/godmode/massive/massive_add_alerts_policy.php:31 +#: ../../enterprise/godmode/massive/massive_add_modules_policy.php:33 +#: ../../enterprise/godmode/massive/massive_tags_edit_policy.php:33 +#: ../../enterprise/godmode/massive/massive_delete_alerts_policy.php:31 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:31 +#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:206 +#: ../../enterprise/include/lib/Policy/Queue.php:162 +#: ../../enterprise/include/lib/Policy/Queue.php:163 +#: ../../enterprise/include/lib/Policy/Queue.php:406 +#: ../../enterprise/operation/agentes/policy_view.php:51 +#: ../../extensions/resource_registration.php:1107 +#: ../../godmode/modules/manage_nc_groups.php:286 +#: ../../godmode/modules/manage_network_components.php:306 +#: ../../godmode/groups/group_list.php:396 +#: ../../godmode/groups/modu_group_list.php:85 +#: ../../godmode/users/profile_list.php:108 +#: ../../godmode/users/user_list.php:425 +#: ../../godmode/agentes/modificar_agente.php:117 +#: ../../godmode/massive/massive_operations.php:410 +#: ../../godmode/massive/massive_delete_profiles.php:45 +#: ../../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:636 +#: ../../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:244 +msgid "metaconsole" +msgstr "" + +#: ../../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:258 +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:345 +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.php:120 +#: ../../enterprise/godmode/policies/policy_plugins.php:33 +#: ../../enterprise/godmode/policies/policy_alerts.php:59 +#: ../../enterprise/godmode/policies/configure_policy.php:76 +#: ../../enterprise/godmode/policies/policy_modules.php:471 +#: ../../enterprise/godmode/policies/policy_queue.php:213 +#: ../../enterprise/godmode/policies/policies.php:263 +#: ../../enterprise/godmode/policies/policy_linking.php:112 +#: ../../enterprise/godmode/policies/policy_external_alerts.php:304 +#: ../../enterprise/godmode/policies/policy_inventory_modules.php:86 +#: ../../enterprise/godmode/policies/policy_collections.php:45 +#: ../../enterprise/godmode/policies/policy_agents.php:321 +#: ../../enterprise/godmode/massive/massive_edit_tags_policy.php:35 +#: ../../enterprise/godmode/massive/massive_add_alerts_policy.php:33 +#: ../../enterprise/godmode/massive/massive_add_modules_policy.php:35 +#: ../../enterprise/godmode/massive/massive_tags_edit_policy.php:35 +#: ../../enterprise/godmode/massive/massive_delete_alerts_policy.php:33 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:33 +#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:208 +#: ../../enterprise/operation/agentes/policy_view.php:53 +#: ../../extensions/resource_registration.php:1109 +#: ../../godmode/modules/manage_nc_groups.php:288 +#: ../../godmode/modules/manage_network_components.php:308 +#: ../../godmode/groups/group_list.php:398 +#: ../../godmode/groups/modu_group_list.php:87 +#: ../../godmode/users/profile_list.php:110 +#: ../../godmode/users/user_list.php:427 +#: ../../godmode/agentes/modificar_agente.php:119 +#: ../../godmode/massive/massive_operations.php:412 +#: ../../godmode/massive/massive_delete_profiles.php:47 +#: ../../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:638 +#: ../../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:246 +msgid "any node" +msgstr "" + +#: ../../views/calendar/list.php:65 +#: ../../views/calendar/special_days_edit.php:66 +#: ../../views/calendar/edit.php:66 ../../views/calendar/special_days.php:67 +#, php-format +msgid "" +"This node is configured with centralized mode. All alert calendar " +"information is read only. Go to %s to manage it." +msgstr "" + +#: ../../views/calendar/list.php:92 +#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:91 +#: ../../enterprise/tools/ipam/ipam_excel.php:130 +#: ../../enterprise/tools/ipam/ipam_excel.php:199 +#: ../../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 +#: ../../godmode/groups/modu_group_list.php:251 +#: ../../godmode/agentes/fields_manager.php:118 +#: ../../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:656 +#: ../../godmode/setup/os.list.php:68 +#: ../../operation/incidents/list_integriaims_incidents.php:515 +msgid "ID" +msgstr "" + +#: ../../views/calendar/list.php:93 ../../views/calendar/edit.php:86 +#: ../../views/dashboard/list.php:95 ../../views/dashboard/formDashboard.php:77 +#: ../../enterprise/views/ncm/snippets/list.php:70 +#: ../../enterprise/views/ncm/snippets/edit.php:81 +#: ../../enterprise/views/ncm/templates/list.php:73 +#: ../../enterprise/views/ncm/templates/edit.php:81 +#: ../../enterprise/views/ncm/devices/list.php:114 +#: ../../enterprise/views/ncm/firmwares/list.php:73 +#: ../../enterprise/views/ncm/firmwares/edit.php:80 +#: ../../enterprise/views/ncm/models/list.php:71 +#: ../../enterprise/views/ncm/models/edit.php:68 +#: ../../enterprise/views/ncm/vendors/list.php:70 +#: ../../enterprise/views/ncm/vendors/edit.php:67 +#: ../../enterprise/views/cluster/list.php:58 +#: ../../enterprise/views/ipam/sites/list.php:46 +#: ../../enterprise/views/ipam/sites/edit.php:40 +#: ../../enterprise/meta/advanced/servers.build_table.php:60 +#: ../../enterprise/meta/include/functions_autoprovision.php:474 +#: ../../enterprise/meta/include/functions_wizard_meta.php:463 +#: ../../enterprise/meta/include/functions_wizard_meta.php:581 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1131 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1457 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1579 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1682 +#: ../../enterprise/meta/agentsearch.php:327 +#: ../../enterprise/godmode/modules/configure_local_component.php:156 +#: ../../enterprise/godmode/modules/manage_inventory_modules.php:272 +#: ../../enterprise/godmode/modules/local_components.php:621 +#: ../../enterprise/godmode/modules/manage_inventory_modules_form.php:99 +#: ../../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:220 +#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:76 +#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:535 +#: ../../enterprise/godmode/agentes/pandora_networkmap_empty.editor.php:130 +#: ../../enterprise/godmode/policies/configure_policy.php:100 +#: ../../enterprise/godmode/policies/policy_modules.php:1464 +#: ../../enterprise/godmode/policies/policies.php:406 +#: ../../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/massive/massive_create_services.php:636 +#: ../../enterprise/godmode/alerts/alert_inventory_builder.php:163 +#: ../../enterprise/godmode/services/services.service.php:546 +#: ../../enterprise/godmode/setup/setup_skins.php:87 +#: ../../enterprise/godmode/setup/setup_auth.php:102 +#: ../../enterprise/godmode/setup/edit_skin.php:233 +#: ../../enterprise/godmode/reporting/reporting_builder.template_editor.php:182 +#: ../../enterprise/godmode/reporting/reporting_builder.template_editor.php:186 +#: ../../enterprise/godmode/reporting/graph_template_editor.php:191 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:108 +#: ../../enterprise/godmode/reporting/visual_console_template.php:203 +#: ../../enterprise/godmode/reporting/visual_console_template.php:270 +#: ../../enterprise/godmode/reporting/mysql_builder.php:96 +#: ../../enterprise/godmode/reporting/mysql_builder.php:227 +#: ../../enterprise/godmode/reporting/mysql_builder.php:228 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1677 +#: ../../enterprise/godmode/servers/manage_export.php:137 +#: ../../enterprise/godmode/servers/credential_boxes_satellite.php:249 +#: ../../enterprise/godmode/servers/manage_credential_boxes.php:58 +#: ../../enterprise/godmode/servers/manage_export_form.php:75 +#: ../../enterprise/godmode/servers/list_satellite.php:37 +#: ../../enterprise/mobile/include/enterprise.class.php:86 +#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:379 +#: ../../enterprise/include/ajax/servers.ajax.php:100 +#: ../../enterprise/include/ajax/servers.ajax.php:158 +#: ../../enterprise/include/ajax/servers.ajax.php:284 +#: ../../enterprise/include/class/Omnishell.class.php:668 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:764 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2945 +#: ../../enterprise/include/functions_services.php:1603 +#: ../../enterprise/include/functions_ipam.php:1348 +#: ../../enterprise/include/functions_ipam.php:1981 +#: ../../enterprise/operation/agentes/policy_view.php:163 +#: ../../enterprise/operation/agentes/policy_view.php:395 +#: ../../enterprise/operation/agentes/tag_view.php:677 +#: ../../enterprise/operation/agentes/collection_view.php:75 +#: ../../enterprise/operation/agentes/manage_transmap_creation.php:186 +#: ../../enterprise/operation/agentes/manage_transmap_creation.php:363 +#: ../../enterprise/operation/agentes/manage_transmap_creation.php:489 +#: ../../enterprise/operation/services/services.service.php:118 +#: ../../enterprise/operation/services/services.list.php:497 +#: ../../enterprise/tools/ipam/ipam_supernet_config.php:1053 +#: ../../enterprise/tools/ipam/ipam_list.php:576 +#: ../../enterprise/tools/ipam/ipam_network_location_config.php:135 +#: ../../enterprise/tools/ipam/ipam_network_location_config.php:257 +#: ../../enterprise/tools/ipam/ipam_excel.php:131 +#: ../../enterprise/tools/ipam/ipam_excel.php:200 +#: ../../enterprise/tools/ipam/ipam_vlan_config.php:667 +#: ../../enterprise/tools/ipam/ipam_editor.php:140 +#: ../../extensions/files_repo/files_repo_list.php:55 +#: ../../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_network_components_form_common.php:46 +#: ../../godmode/modules/module_list.php:62 +#: ../../godmode/modules/manage_network_templates.php:246 +#: ../../godmode/groups/configure_group.php:150 +#: ../../godmode/groups/group_list.php:842 +#: ../../godmode/groups/configure_modu_group.php:67 +#: ../../godmode/groups/modu_group_list.php:252 +#: ../../godmode/users/user_list.php:480 +#: ../../godmode/agentes/planned_downtime.editor.php:552 +#: ../../godmode/agentes/planned_downtime.editor.php:920 +#: ../../godmode/agentes/pandora_networkmap_empty.editor.php:132 +#: ../../godmode/agentes/configure_field.php:74 +#: ../../godmode/agentes/module_manager_editor_common.php:215 +#: ../../godmode/agentes/module_manager_editor_common.php:1212 +#: ../../godmode/agentes/module_manager.php:827 +#: ../../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:655 +#: ../../godmode/alerts/alert_templates.php:384 +#: ../../godmode/alerts/configure_alert_action.php:181 +#: ../../godmode/alerts/configure_alert_template.php:1052 +#: ../../godmode/setup/os.builder.php:36 ../../godmode/setup/os.list.php:69 +#: ../../godmode/setup/setup_integria.php:337 +#: ../../godmode/setup/setup_integria.php:458 +#: ../../godmode/reporting/create_container.php:223 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1064 +#: ../../godmode/reporting/reporting_builder.main.php:89 +#: ../../godmode/reporting/reporting_builder.main.php:93 +#: ../../godmode/reporting/graph_builder.main.php:125 +#: ../../godmode/events/event_filter.php:136 +#: ../../godmode/events/event_responses.editor.php:86 +#: ../../godmode/events/event_responses.list.php:50 +#: ../../godmode/servers/servers.build_table.php:79 +#: ../../godmode/servers/modificar_server.php:58 +#: ../../godmode/servers/plugin.php:339 ../../godmode/servers/plugin.php:815 +#: ../../godmode/tag/tag.php:228 ../../godmode/tag/edit_tag.php:211 +#: ../../godmode/category/edit_category.php:180 +#: ../../include/functions_reporting_html.php:1048 +#: ../../include/functions_reporting_html.php:1056 +#: ../../include/functions_reporting_html.php:2425 +#: ../../include/functions_reporting_html.php:2784 +#: ../../include/functions_reporting_html.php:3481 +#: ../../include/functions_reporting_html.php:6170 +#: ../../include/functions_treeview.php:78 +#: ../../include/class/NetworkMap.class.php:2906 +#: ../../include/class/NetworkMap.class.php:2947 +#: ../../include/class/NetworkMap.class.php:2965 +#: ../../include/class/NetworkMap.class.php:3268 +#: ../../include/class/ManageNetScanScripts.class.php:403 +#: ../../include/class/ManageNetScanScripts.class.php:545 +#: ../../include/class/ModuleTemplates.class.php:892 +#: ../../include/class/ModuleTemplates.class.php:1050 +#: ../../include/class/CalendarManager.class.php:1026 +#: ../../include/functions_filemanager.php:604 +#: ../../include/functions_snmp_browser.php:1670 +#: ../../include/functions_events.php:4001 +#: ../../include/functions_events.php:4090 ../../operation/search_users.php:44 +#: ../../operation/search_helps.php:31 +#: ../../operation/agentes/pandora_networkmap.editor.php:273 +#: ../../operation/agentes/pandora_networkmap.php:707 +#: ../../operation/agentes/pandora_networkmap.view.php:100 +#: ../../operation/netflow/nf_live_view.php:370 +#: ../../operation/gis_maps/gis_map.php:102 +#: ../../operation/incidents/configure_integriaims_incident.php:217 +#: ../../operation/search_policies.php:35 ../../operation/search_maps.php:28 +msgid "Name" +msgstr "" + +#: ../../views/calendar/list.php:94 +#: ../../views/calendar/special_days_edit.php:106 +#: ../../views/calendar/edit.php:97 ../../views/calendar/special_days.php:112 +#: ../../views/dashboard/list.php:97 +#: ../../views/dashboard/formDashboard.php:108 +#: ../../enterprise/views/ncm/devices/list.php:116 +#: ../../enterprise/views/cluster/list.php:60 +#: ../../enterprise/meta/advanced/cron_main.php:422 +#: ../../enterprise/meta/advanced/collections.php:366 +#: ../../enterprise/meta/monitoring/custom_fields_view.php:146 +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:273 +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:370 +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:435 +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:703 +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:782 +#: ../../enterprise/meta/include/functions_wizard_meta.php:191 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1805 +#: ../../enterprise/meta/include/functions_events_meta.php:74 +#: ../../enterprise/meta/agentsearch.php:138 +#: ../../enterprise/meta/agentsearch.php:329 +#: ../../enterprise/godmode/modules/configure_local_component.php:274 +#: ../../enterprise/godmode/modules/local_components.php:498 +#: ../../enterprise/godmode/modules/local_components.php:623 +#: ../../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:381 +#: ../../enterprise/godmode/policies/configure_policy.php:103 +#: ../../enterprise/godmode/policies/policies.php:308 +#: ../../enterprise/godmode/policies/policies.php:408 +#: ../../enterprise/godmode/policies/policy_agents.php:798 +#: ../../enterprise/godmode/policies/policy_agents.php:855 +#: ../../enterprise/godmode/massive/massive_add_modules_policy.php:102 +#: ../../enterprise/godmode/massive/massive_create_services.php:658 +#: ../../enterprise/godmode/alerts/alert_inventory_list.php:139 +#: ../../enterprise/godmode/services/services.service.php:569 +#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:329 +#: ../../enterprise/godmode/reporting/reporting_builder.template_editor.php:194 +#: ../../enterprise/godmode/reporting/graph_template_list.php:205 +#: ../../enterprise/godmode/reporting/graph_template_editor.php:196 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:500 +#: ../../enterprise/godmode/reporting/visual_console_template.php:218 +#: ../../enterprise/godmode/reporting/visual_console_template.php:271 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:318 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1398 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2000 +#: ../../enterprise/godmode/reporting/visual_console_builder.wizard_services.php:110 +#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:669 +#: ../../enterprise/include/functions_tasklist.php:157 +#: ../../enterprise/include/ajax/ipam.ajax.php:487 +#: ../../enterprise/include/functions_reporting_csv.php:718 +#: ../../enterprise/include/functions_reporting_csv.php:2559 +#: ../../enterprise/include/functions_reporting_csv.php:2738 +#: ../../enterprise/include/class/Azure.cloud.php:835 +#: ../../enterprise/include/class/VMware.app.php:763 +#: ../../enterprise/include/class/Omnishell.class.php:399 +#: ../../enterprise/include/class/Omnishell.class.php:428 +#: ../../enterprise/include/class/Omnishell.class.php:678 +#: ../../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: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 +#: ../../enterprise/include/class/MicrosoftSQLServer.app.php:471 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:776 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:926 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2841 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2946 +#: ../../enterprise/include/lib/ClusterViewer/ClusterWizard.php:823 +#: ../../enterprise/include/functions_events.php:30 +#: ../../enterprise/operation/agentes/transactional_map.php:208 +#: ../../enterprise/operation/agentes/tag_view.php:108 +#: ../../enterprise/operation/agentes/tag_view.php:604 +#: ../../enterprise/operation/agentes/ver_agente.php:52 +#: ../../enterprise/operation/agentes/ver_agente.php:73 +#: ../../enterprise/operation/agentes/manage_transmap_creation.php:366 +#: ../../enterprise/operation/agentes/manage_transmap_creation.php:492 +#: ../../enterprise/operation/log/log_viewer.php:533 +#: ../../enterprise/operation/inventory/inventory.php:336 +#: ../../enterprise/operation/services/services.service.php:121 +#: ../../enterprise/operation/services/services.list.php:260 +#: ../../enterprise/operation/services/services.list.php:502 +#: ../../enterprise/operation/services/services.table_services.php:182 +#: ../../enterprise/tools/ipam/ipam_editor.php:293 +#: ../../extensions/agents_modules.php:404 +#: ../../godmode/modules/manage_network_templates_form.php:235 +#: ../../godmode/modules/manage_network_templates_form.php:303 +#: ../../godmode/modules/manage_network_templates_form.php:339 +#: ../../godmode/modules/manage_network_components_form_common.php:131 +#: ../../godmode/modules/manage_network_components.php:618 +#: ../../godmode/modules/manage_network_components.php:752 +#: ../../godmode/users/user_list.php:390 +#: ../../godmode/agentes/configurar_agente.php:495 +#: ../../godmode/agentes/modificar_agente.php:289 +#: ../../godmode/agentes/modificar_agente.php:651 +#: ../../godmode/agentes/planned_downtime.list.php:612 +#: ../../godmode/agentes/planned_downtime.editor.php:562 +#: ../../godmode/agentes/planned_downtime.editor.php:921 +#: ../../godmode/agentes/pandora_networkmap_empty.editor.php:141 +#: ../../godmode/agentes/agent_incidents.php:92 +#: ../../godmode/netflow/nf_edit.php:160 +#: ../../godmode/netflow/nf_edit_form.php:203 +#: ../../godmode/snmpconsole/snmp_alert.php:802 +#: ../../godmode/gis_maps/configure_gis_map.php:498 +#: ../../godmode/gis_maps/configure_gis_map.php:635 +#: ../../godmode/massive/massive_copy_modules.php:100 +#: ../../godmode/massive/massive_copy_modules.php:253 +#: ../../godmode/massive/massive_standby_alerts.php:185 +#: ../../godmode/massive/massive_delete_action_alerts.php:209 +#: ../../godmode/massive/massive_add_alerts.php:211 +#: ../../godmode/massive/massive_delete_agents.php:187 +#: ../../godmode/massive/massive_enable_disable_alerts.php:169 +#: ../../godmode/massive/massive_edit_agents.php:508 +#: ../../godmode/massive/massive_edit_agents.php:685 +#: ../../godmode/massive/massive_delete_profiles.php:152 +#: ../../godmode/massive/massive_delete_alerts.php:289 +#: ../../godmode/massive/massive_add_action_alerts.php:197 +#: ../../godmode/massive/massive_add_profiles.php:203 +#: ../../godmode/alerts/configure_alert_command.php:265 +#: ../../godmode/alerts/alert_actions.php:260 +#: ../../godmode/alerts/alert_actions.php:328 +#: ../../godmode/alerts/alert_list.list.php:157 +#: ../../godmode/alerts/alert_commands.php:657 +#: ../../godmode/alerts/alert_templates.php:385 +#: ../../godmode/alerts/configure_alert_action.php:212 +#: ../../godmode/alerts/configure_alert_template.php:1074 +#: ../../godmode/setup/news.php:186 ../../godmode/setup/gis.php:69 +#: ../../godmode/setup/gis_step_2.php:216 +#: ../../godmode/setup/setup_integria.php:361 +#: ../../godmode/setup/setup_integria.php:483 +#: ../../godmode/reporting/visual_console_builder.data.php:136 +#: ../../godmode/reporting/create_container.php:244 +#: ../../godmode/reporting/create_container.php:534 +#: ../../godmode/reporting/create_container.php:625 +#: ../../godmode/reporting/map_builder.php:356 +#: ../../godmode/reporting/map_builder.php:385 +#: ../../godmode/reporting/graphs.php:231 +#: ../../godmode/reporting/graphs.php:313 +#: ../../godmode/reporting/visual_console_favorite.php:161 +#: ../../godmode/reporting/reporting_builder.item_editor.php:72 +#: ../../godmode/reporting/reporting_builder.item_editor.php:202 +#: ../../godmode/reporting/reporting_builder.item_editor.php:874 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1558 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3413 +#: ../../godmode/reporting/visual_console_builder.elements.php:104 +#: ../../godmode/reporting/visual_console_builder.elements.php:314 +#: ../../godmode/reporting/reporting_builder.main.php:101 +#: ../../godmode/reporting/reporting_builder.php:758 +#: ../../godmode/reporting/reporting_builder.php:946 +#: ../../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:304 +#: ../../godmode/events/event_responses.list.php:52 +#: ../../godmode/events/custom_events.php:100 +#: ../../godmode/wizards/HostDevices.class.php:932 +#: ../../mobile/operation/agents.php:95 ../../mobile/operation/agents.php:157 +#: ../../mobile/operation/agents.php:234 ../../mobile/operation/agents.php:235 +#: ../../mobile/operation/agents.php:405 ../../mobile/operation/modules.php:171 +#: ../../mobile/operation/modules.php:176 +#: ../../mobile/operation/modules.php:266 +#: ../../mobile/operation/modules.php:267 ../../mobile/operation/alerts.php:113 +#: ../../mobile/operation/alerts.php:118 ../../mobile/operation/alerts.php:231 +#: ../../mobile/operation/alerts.php:232 +#: ../../mobile/operation/visualmaps.php:113 +#: ../../mobile/operation/visualmaps.php:118 +#: ../../mobile/operation/events.php:666 ../../mobile/operation/events.php:671 +#: ../../mobile/operation/events.php:832 ../../mobile/operation/events.php:954 +#: ../../mobile/operation/events.php:955 +#: ../../include/functions_visual_map_editor.php:70 +#: ../../include/functions_visual_map_editor.php:594 +#: ../../include/functions_visual_map_editor.php:1397 +#: ../../include/functions_reporting_html.php:1565 +#: ../../include/functions_reporting_html.php:2142 +#: ../../include/functions_reporting_html.php:3432 +#: ../../include/functions_reporting_html.php:3485 +#: ../../include/functions_reporting_html.php:6258 +#: ../../include/functions_cron.php:468 ../../include/ajax/heatmap.ajax.php:110 +#: ../../include/ajax/heatmap.ajax.php:344 +#: ../../include/ajax/custom_fields.php:628 +#: ../../include/ajax/custom_fields.php:677 +#: ../../include/functions_graph.php:5159 ../../include/functions_gis.php:228 +#: ../../include/functions_profile.php:214 +#: ../../include/functions_visual_map.php:4259 +#: ../../include/rest-api/models/VisualConsole/Items/Group.php:549 +#: ../../include/rest-api/models/VisualConsole/Item.php:2139 +#: ../../include/functions_html.php:1531 +#: ../../include/class/NetworkMap.class.php:2841 +#: ../../include/class/NetworkMap.class.php:2890 +#: ../../include/class/NetworkMap.class.php:3206 +#: ../../include/class/AgentsAlerts.class.php:761 +#: ../../include/class/CredentialStore.class.php:802 +#: ../../include/class/CredentialStore.class.php:833 +#: ../../include/class/CredentialStore.class.php:923 +#: ../../include/class/CustomNetScan.class.php:500 +#: ../../include/class/ModuleTemplates.class.php:780 +#: ../../include/class/CalendarManager.class.php:1027 +#: ../../include/functions_container.php:149 +#: ../../include/lib/Dashboard/Widgets/alerts_fired.php:226 +#: ../../include/functions_snmp_browser.php:1673 +#: ../../include/functions_events.php:203 +#: ../../include/functions_events.php:256 +#: ../../include/functions_events.php:4645 ../../operation/heatmap.php:115 +#: ../../operation/heatmap.php:117 ../../operation/search_agents.php:46 +#: ../../operation/search_agents.php:52 ../../operation/users/user_edit.php:814 +#: ../../operation/visual_console/view.php:351 +#: ../../operation/agentes/estado_agente.php:254 +#: ../../operation/agentes/estado_agente.php:754 +#: ../../operation/agentes/pandora_networkmap.editor.php:289 +#: ../../operation/agentes/pandora_networkmap.editor.php:337 +#: ../../operation/agentes/interface_view.functions.php:37 +#: ../../operation/agentes/exportdata.php:227 +#: ../../operation/agentes/status_monitor.php:450 +#: ../../operation/agentes/group_view.php:222 +#: ../../operation/agentes/pandora_networkmap.view.php:103 +#: ../../operation/agentes/pandora_networkmap.view.php:137 +#: ../../operation/agentes/ver_agente.php:1018 +#: ../../operation/agentes/estado_generalagente.php:403 +#: ../../operation/agentes/alerts_status.functions.php:91 +#: ../../operation/netflow/nf_live_view.php:380 +#: ../../operation/gis_maps/gis_map.php:103 +#: ../../operation/gis_maps/ajax.php:332 ../../operation/gis_maps/ajax.php:438 +#: ../../operation/incidents/configure_integriaims_incident.php:266 +#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:324 +#: ../../operation/incidents/list_integriaims_incidents.php:331 +#: ../../operation/events/events.php:1577 ../../operation/search_maps.php:29 +#: ../../general/ui/agents_list.php:76 +msgid "Group" +msgstr "" + +#: ../../views/calendar/list.php:95 +#: ../../views/calendar/special_days_edit.php:138 +#: ../../views/calendar/edit.php:109 +#: ../../enterprise/views/ncm/devices/list.php:115 +#: ../../enterprise/views/cluster/list.php:59 +#: ../../enterprise/views/cluster/view.php:286 +#: ../../enterprise/views/ipam/sites/list.php:47 +#: ../../enterprise/views/ipam/sites/edit.php:51 +#: ../../enterprise/meta/advanced/collections.php:389 +#: ../../enterprise/meta/include/functions_autoprovision.php:475 +#: ../../enterprise/meta/include/functions_wizard_meta.php:196 +#: ../../enterprise/meta/include/functions_wizard_meta.php:473 +#: ../../enterprise/meta/include/functions_wizard_meta.php:586 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1141 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1461 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1583 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1686 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1809 +#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:77 +#: ../../enterprise/meta/agentsearch.php:135 +#: ../../enterprise/meta/agentsearch.php:328 +#: ../../enterprise/godmode/modules/configure_local_component.php:477 +#: ../../enterprise/godmode/modules/configure_local_component.php:636 +#: ../../enterprise/godmode/modules/manage_inventory_modules.php:273 +#: ../../enterprise/godmode/modules/manage_inventory_modules_form.php:101 +#: ../../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:221 +#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:386 +#: ../../enterprise/godmode/agentes/pandora_networkmap_empty.editor.php:162 +#: ../../enterprise/godmode/agentes/collections.php:382 +#: ../../enterprise/godmode/policies/configure_policy.php:119 +#: ../../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:76 +#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:386 +#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:297 +#: ../../enterprise/godmode/massive/massive_create_services.php:647 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:679 +#: ../../enterprise/godmode/alerts/alert_inventory_builder.php:166 +#: ../../enterprise/godmode/alerts/alert_inventory_list.php:222 +#: ../../enterprise/godmode/services/services.service.php:558 +#: ../../enterprise/godmode/services/services.elements.php:103 +#: ../../enterprise/godmode/setup/setup_skins.php:127 +#: ../../enterprise/godmode/setup/edit_skin.php:259 +#: ../../enterprise/godmode/reporting/reporting_builder.template_editor.php:205 +#: ../../enterprise/godmode/reporting/graph_template_list.php:204 +#: ../../enterprise/godmode/reporting/graph_template_editor.php:199 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:448 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:498 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1694 +#: ../../enterprise/mobile/include/enterprise.class.php:87 +#: ../../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:1817 +#: ../../enterprise/include/functions_reporting_csv.php:482 +#: ../../enterprise/include/functions_reporting_csv.php:485 +#: ../../enterprise/include/functions_reporting_csv.php:705 +#: ../../enterprise/include/functions_reporting_csv.php:707 +#: ../../enterprise/include/functions_reporting_csv.php:718 +#: ../../enterprise/include/functions_reporting_csv.php:797 +#: ../../enterprise/include/functions_reporting_csv.php:799 +#: ../../enterprise/include/functions_reporting_csv.php:826 +#: ../../enterprise/include/functions_reporting_csv.php:828 +#: ../../enterprise/include/functions_reporting_csv.php:865 +#: ../../enterprise/include/functions_reporting_csv.php:867 +#: ../../enterprise/include/functions_reporting_csv.php:909 +#: ../../enterprise/include/functions_reporting_csv.php:911 +#: ../../enterprise/include/functions_reporting_csv.php:941 +#: ../../enterprise/include/functions_reporting_csv.php:943 +#: ../../enterprise/include/functions_reporting_csv.php:978 +#: ../../enterprise/include/functions_reporting_csv.php:980 +#: ../../enterprise/include/functions_reporting_csv.php:1001 +#: ../../enterprise/include/functions_reporting_csv.php:1003 +#: ../../enterprise/include/functions_reporting_csv.php:1092 +#: ../../enterprise/include/functions_reporting_csv.php:1094 +#: ../../enterprise/include/functions_reporting_csv.php:1153 +#: ../../enterprise/include/functions_reporting_csv.php:1155 +#: ../../enterprise/include/functions_reporting_csv.php:1179 +#: ../../enterprise/include/functions_reporting_csv.php:1181 +#: ../../enterprise/include/functions_reporting_csv.php:1184 +#: ../../enterprise/include/functions_reporting_csv.php:1210 +#: ../../enterprise/include/functions_reporting_csv.php:1212 +#: ../../enterprise/include/functions_reporting_csv.php:1215 +#: ../../enterprise/include/functions_reporting_csv.php:1265 +#: ../../enterprise/include/functions_reporting_csv.php:1267 +#: ../../enterprise/include/functions_reporting_csv.php:1270 +#: ../../enterprise/include/functions_reporting_csv.php:1320 +#: ../../enterprise/include/functions_reporting_csv.php:1322 +#: ../../enterprise/include/functions_reporting_csv.php:1369 +#: ../../enterprise/include/functions_reporting_csv.php:1371 +#: ../../enterprise/include/functions_reporting_csv.php:1374 +#: ../../enterprise/include/functions_reporting_csv.php:1424 +#: ../../enterprise/include/functions_reporting_csv.php:1426 +#: ../../enterprise/include/functions_reporting_csv.php:1429 +#: ../../enterprise/include/functions_reporting_csv.php:1453 +#: ../../enterprise/include/functions_reporting_csv.php:1455 +#: ../../enterprise/include/functions_reporting_csv.php:1490 +#: ../../enterprise/include/functions_reporting_csv.php:1492 +#: ../../enterprise/include/functions_reporting_csv.php:1614 +#: ../../enterprise/include/functions_reporting_csv.php:1730 +#: ../../enterprise/include/functions_reporting_csv.php:1876 +#: ../../enterprise/include/functions_reporting_csv.php:1878 +#: ../../enterprise/include/functions_reporting_csv.php:1926 +#: ../../enterprise/include/functions_reporting_csv.php:1928 +#: ../../enterprise/include/functions_reporting_csv.php:1970 +#: ../../enterprise/include/functions_reporting_csv.php:2038 +#: ../../enterprise/include/functions_reporting_csv.php:2177 +#: ../../enterprise/include/functions_reporting_csv.php:2219 +#: ../../enterprise/include/functions_reporting_csv.php:2223 +#: ../../enterprise/include/functions_reporting_csv.php:2276 +#: ../../enterprise/include/functions_reporting_csv.php:2278 +#: ../../enterprise/include/functions_reporting_csv.php:2307 +#: ../../enterprise/include/functions_reporting_csv.php:2309 +#: ../../enterprise/include/functions_reporting_csv.php:2343 +#: ../../enterprise/include/functions_reporting_csv.php:2345 +#: ../../enterprise/include/functions_reporting_csv.php:2396 +#: ../../enterprise/include/functions_reporting_csv.php:2398 +#: ../../enterprise/include/functions_reporting_csv.php:2418 +#: ../../enterprise/include/functions_reporting_csv.php:2420 +#: ../../enterprise/include/functions_reporting_csv.php:2459 +#: ../../enterprise/include/functions_reporting_csv.php:2461 +#: ../../enterprise/include/functions_reporting_csv.php:2513 +#: ../../enterprise/include/functions_reporting_csv.php:2515 +#: ../../enterprise/include/functions_reporting_csv.php:2542 +#: ../../enterprise/include/functions_reporting_csv.php:2544 +#: ../../enterprise/include/functions_reporting_csv.php:2618 +#: ../../enterprise/include/functions_reporting_csv.php:2620 +#: ../../enterprise/include/functions_reporting_csv.php:2669 +#: ../../enterprise/include/functions_reporting_csv.php:2671 +#: ../../enterprise/include/functions_reporting_csv.php:2717 +#: ../../enterprise/include/functions_reporting_csv.php:2723 +#: ../../enterprise/include/functions_reporting_csv.php:2795 +#: ../../enterprise/include/functions_reporting_csv.php:2797 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:796 +#: ../../enterprise/include/class/ManageBackups.class.php:162 +#: ../../enterprise/include/functions_services.php:1604 +#: ../../enterprise/include/lib/ClusterViewer/ClusterWizard.php:812 +#: ../../enterprise/include/functions_ipam.php:1374 +#: ../../enterprise/include/functions_ipam.php:1982 +#: ../../enterprise/operation/agentes/policy_view.php:68 +#: ../../enterprise/operation/agentes/transactional_map.php:207 +#: ../../enterprise/operation/agentes/tag_view.php:600 +#: ../../enterprise/operation/agentes/ver_agente.php:60 +#: ../../enterprise/operation/agentes/collection_view.php:77 +#: ../../enterprise/operation/agentes/manage_transmap_creation.php:364 +#: ../../enterprise/operation/agentes/manage_transmap_creation.php:490 +#: ../../enterprise/operation/services/services.service.php:119 +#: ../../enterprise/operation/services/services.list.php:500 +#: ../../enterprise/tools/ipam/ipam_supernet_config.php:619 +#: ../../enterprise/tools/ipam/ipam_supernet_config.php:1061 +#: ../../enterprise/tools/ipam/ipam_list.php:582 +#: ../../enterprise/tools/ipam/ipam_vlan_wizard.php:411 +#: ../../enterprise/tools/ipam/ipam_vlan_network.php:40 +#: ../../enterprise/tools/ipam/ipam_excel.php:132 +#: ../../enterprise/tools/ipam/ipam_excel.php:201 +#: ../../enterprise/tools/ipam/ipam_vlan_config.php:345 +#: ../../enterprise/tools/ipam/ipam_vlan_config.php:681 +#: ../../enterprise/tools/ipam/ipam_supernet_network.php:84 +#: ../../enterprise/tools/ipam/ipam_editor.php:177 +#: ../../extensions/files_repo/files_repo_form.php:83 +#: ../../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_network_components_form_common.php:335 +#: ../../godmode/modules/manage_network_components.php:751 +#: ../../godmode/modules/manage_network_components_form_wizard.php:451 +#: ../../godmode/modules/module_list.php:63 +#: ../../godmode/modules/manage_network_templates.php:247 +#: ../../godmode/groups/configure_group.php:242 +#: ../../godmode/groups/group_list.php:850 +#: ../../godmode/users/user_list.php:485 +#: ../../godmode/agentes/agent_template.php:237 +#: ../../godmode/agentes/modificar_agente.php:652 +#: ../../godmode/agentes/planned_downtime.list.php:611 +#: ../../godmode/agentes/planned_downtime.editor.php:578 +#: ../../godmode/agentes/pandora_networkmap_empty.editor.php:164 +#: ../../godmode/agentes/agent_manager.php:470 +#: ../../godmode/agentes/module_manager_editor_common.php:1081 +#: ../../godmode/agentes/module_manager.php:862 +#: ../../godmode/netflow/nf_item_list.php:175 +#: ../../godmode/snmpconsole/snmp_alert.php:766 +#: ../../godmode/snmpconsole/snmp_alert.php:1269 +#: ../../godmode/snmpconsole/snmp_filters.php:201 +#: ../../godmode/snmpconsole/snmp_filters.php:289 +#: ../../godmode/massive/massive_edit_plugins.php:494 +#: ../../godmode/massive/massive_edit_agents.php:760 +#: ../../godmode/massive/massive_edit_modules.php:743 +#: ../../godmode/alerts/configure_alert_command.php:283 +#: ../../godmode/alerts/alert_commands.php:658 +#: ../../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 +#: ../../godmode/setup/snmp_wizard.php:41 +#: ../../godmode/reporting/create_container.php:266 +#: ../../godmode/reporting/graphs.php:311 +#: ../../godmode/reporting/reporting_builder.item_editor.php:74 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1136 +#: ../../godmode/reporting/reporting_builder.main.php:215 +#: ../../godmode/reporting/reporting_builder.php:909 +#: ../../godmode/reporting/graph_builder.main.php:180 +#: ../../godmode/events/event_responses.editor.php:111 +#: ../../godmode/events/event_responses.list.php:51 +#: ../../godmode/servers/modificar_server.php:66 +#: ../../godmode/servers/plugin.php:358 ../../godmode/servers/plugin.php:485 +#: ../../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:1569 +#: ../../include/functions_reporting_html.php:3435 +#: ../../include/functions_reporting_html.php:3486 +#: ../../include/functions_reporting_html.php:5250 +#: ../../include/functions_reporting_html.php:6171 +#: ../../include/ajax/events_extended.php:91 +#: ../../include/ajax/heatmap.ajax.php:232 +#: ../../include/ajax/heatmap.ajax.php:271 +#: ../../include/ajax/heatmap.ajax.php:331 ../../include/ajax/module.php:979 +#: ../../include/functions_treeview.php:127 +#: ../../include/functions_treeview.php:652 +#: ../../include/class/ConfigPEN.class.php:448 +#: ../../include/class/ConfigPEN.class.php:599 +#: ../../include/class/ManageNetScanScripts.class.php:404 +#: ../../include/class/ManageNetScanScripts.class.php:558 +#: ../../include/class/ManageNetScanScripts.class.php:607 +#: ../../include/class/ModuleTemplates.class.php:893 +#: ../../include/class/ModuleTemplates.class.php:1062 +#: ../../include/class/ModuleTemplates.class.php:1210 +#: ../../include/class/AgentWizard.class.php:1198 +#: ../../include/class/AgentWizard.class.php:4061 +#: ../../include/functions_container.php:147 +#: ../../include/functions_snmp_browser.php:570 +#: ../../include/functions_snmp_browser.php:1690 +#: ../../include/functions_events.php:3440 ../../operation/search_users.php:48 +#: ../../operation/search_agents.php:43 ../../operation/search_agents.php:49 +#: ../../operation/agentes/gis_view.php:222 +#: ../../operation/agentes/estado_agente.php:742 +#: ../../operation/agentes/pandora_networkmap.editor.php:321 +#: ../../operation/agentes/custom_fields.php:69 +#: ../../operation/agentes/pandora_networkmap.view.php:109 +#: ../../operation/agentes/estado_generalagente.php:237 +#: ../../operation/gis_maps/ajax.php:325 ../../operation/gis_maps/ajax.php:459 +#: ../../operation/incidents/configure_integriaims_incident.php:342 +#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:117 +#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:248 +#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:261 +#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:392 +#: ../../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/search_policies.php:36 +msgid "Description" +msgstr "" + +#: ../../views/calendar/list.php:96 ../../views/dashboard/header.php:80 +#: ../../enterprise/views/ncm/snippets/list.php:71 +#: ../../enterprise/views/ncm/agent/details.php:92 +#: ../../enterprise/views/ncm/templates/list.php:77 +#: ../../enterprise/views/ncm/firmwares/list.php:77 +#: ../../enterprise/views/ncm/models/list.php:73 +#: ../../enterprise/views/ncm/vendors/list.php:71 +#: ../../enterprise/views/cluster/list.php:64 +#: ../../enterprise/views/ipam/sites/list.php:49 +#: ../../enterprise/meta/monitoring/wizard/wizard.create_module.php:266 +#: ../../enterprise/extensions/vmware/vmware_view.php:1338 +#: ../../enterprise/godmode/reporting/reporting_builder.template_list_item.php:261 +#: ../../enterprise/include/class/DeploymentCenter.class.php:764 +#: ../../enterprise/include/class/AgentRepository.class.php:645 +#: ../../enterprise/include/class/Omnishell.class.php:402 +#: ../../enterprise/include/class/LogSource.class.php:630 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2341 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2950 +#: ../../godmode/menu.php:541 +#: ../../godmode/reporting/reporting_builder.list_items.php:427 +#: ../../include/ajax/events.php:2251 +#: ../../include/class/ConfigPEN.class.php:601 +#: ../../include/class/CredentialStore.class.php:807 +#: ../../include/class/ExternalTools.class.php:383 +#: ../../include/functions_events.php:310 +msgid "Options" +msgstr "" + +#: ../../views/calendar/list.php:119 +#: ../../enterprise/views/ncm/snippets/list.php:102 +#: ../../enterprise/views/ncm/templates/list.php:108 +#: ../../enterprise/views/ncm/devices/list.php:155 +#: ../../enterprise/views/ncm/firmwares/list.php:108 +#: ../../enterprise/views/ncm/models/list.php:96 +#: ../../enterprise/views/ncm/vendors/list.php:94 +#: ../../enterprise/views/cluster/list.php:96 +#: ../../enterprise/views/ipam/sites/list.php:73 +#: ../../enterprise/meta/advanced/metasetup.consoles.php:872 +#: ../../enterprise/godmode/massive/massive_delete_alerts_snmp.php:197 +#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:257 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:755 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3255 +#: ../../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 +#: ../../godmode/update_manager/update_manager.history.php:67 +#: ../../godmode/snmpconsole/snmp_alert.php:1161 +#: ../../godmode/events/event_edit_filter.php:366 +#: ../../mobile/operation/agents.php:253 ../../mobile/operation/modules.php:318 +#: ../../mobile/operation/alerts.php:241 ../../mobile/operation/events.php:992 +#: ../../include/ajax/module.php:292 +#: ../../include/class/ConfigPEN.class.php:627 +#: ../../include/class/CredentialStore.class.php:845 +#: ../../operation/snmpconsole/snmp_view.php:600 +#: ../../operation/events/events.php:1644 +msgid "Free search" +msgstr "" + +#: ../../views/calendar/list.php:144 +#: ../../views/calendar/special_days_edit.php:163 +#: ../../views/calendar/special_days_edit.php:206 +#: ../../views/calendar/edit.php:126 ../../views/calendar/special_days.php:323 +#: ../../views/calendar/special_days.php:406 +#: ../../views/calendar/special_days.php:481 +#: ../../views/calendar/special_days.php:505 +#: ../../enterprise/views/ncm/snippets/list.php:127 +#: ../../enterprise/views/ncm/snippets/edit.php:106 +#: ../../enterprise/views/ncm/templates/list.php:133 +#: ../../enterprise/views/ncm/templates/edit.php:315 +#: ../../enterprise/views/ncm/firmwares/list.php:133 +#: ../../enterprise/views/ncm/firmwares/edit.php:169 +#: ../../enterprise/views/ncm/models/list.php:121 +#: ../../enterprise/views/ncm/models/edit.php:103 +#: ../../enterprise/views/ncm/vendors/list.php:119 +#: ../../enterprise/views/ncm/vendors/edit.php:104 +#: ../../enterprise/views/ipam/sites/list.php:98 +#: ../../enterprise/views/ipam/sites/edit.php:80 +#: ../../enterprise/meta/advanced/links.php:137 +#: ../../enterprise/meta/advanced/collections.data.php:42 +#: ../../enterprise/meta/advanced/collections.data.php:71 +#: ../../enterprise/meta/advanced/collections.data.php:93 +#: ../../enterprise/meta/advanced/collections.data.php:113 +#: ../../enterprise/meta/advanced/collections.data.php:138 +#: ../../enterprise/meta/advanced/collections.data.php:184 +#: ../../enterprise/meta/advanced/collections.editor.php:136 +#: ../../enterprise/meta/advanced/cron_main.php:471 +#: ../../enterprise/meta/advanced/collections.php:498 +#: ../../enterprise/meta/advanced/collections.php:509 +#: ../../enterprise/meta/monitoring/wizard/wizard.manage_alert.php:105 +#: ../../enterprise/meta/monitoring/wizard/wizard.create_module.php:300 +#: ../../enterprise/meta/include/functions_autoprovision.php:588 +#: ../../enterprise/meta/include/functions_autoprovision.php:789 +#: ../../enterprise/godmode/modules/configure_local_component.php:680 +#: ../../enterprise/godmode/modules/manage_inventory_modules.php:343 +#: ../../enterprise/godmode/modules/local_components.php:716 +#: ../../enterprise/godmode/modules/manage_inventory_modules_form.php:145 +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:791 +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:840 +#: ../../enterprise/godmode/agentes/collections.agents.php:38 +#: ../../enterprise/godmode/agentes/collections.data.php:68 +#: ../../enterprise/godmode/agentes/collections.data.php:169 +#: ../../enterprise/godmode/agentes/collections.data.php:193 +#: ../../enterprise/godmode/agentes/collections.data.php:213 +#: ../../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:466 +#: ../../enterprise/godmode/policies/configure_policy.php:139 +#: ../../enterprise/godmode/policies/policy_modules.php:432 +#: ../../enterprise/godmode/policies/policies.php:645 +#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor_form.php:24 +#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor_form.php:87 +#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:428 +#: ../../enterprise/godmode/alerts/alert_inventory_list.php:433 +#: ../../enterprise/godmode/services/services.service.php:940 +#: ../../enterprise/godmode/setup/edit_skin.php:299 +#: ../../enterprise/godmode/reporting/aws_view.php:194 +#: ../../enterprise/godmode/reporting/graph_template_editor.php:269 +#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:599 +#: ../../enterprise/godmode/servers/manage_export.php:130 +#: ../../enterprise/godmode/servers/manage_export.php:169 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3139 +#: ../../enterprise/operation/agentes/manage_transmap_creation.php:405 +#: ../../enterprise/tools/ipam/ipam_list.php:746 +#: ../../enterprise/tools/ipam/ipam_vlan_wizard.php:454 +#: ../../enterprise/tools/ipam/ipam_network_location_config.php:148 +#: ../../enterprise/tools/ipam/ipam_network_location_config.php:315 +#: ../../enterprise/tools/ipam/ipam_editor.php:361 +#: ../../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_network_components_form.php:376 +#: ../../godmode/modules/manage_network_components.php:934 +#: ../../godmode/modules/manage_network_templates.php:309 +#: ../../godmode/groups/configure_group.php:279 +#: ../../godmode/groups/configure_modu_group.php:86 +#: ../../godmode/users/profile_list.php:463 +#: ../../godmode/users/configure_user.php:1447 +#: ../../godmode/agentes/module_manager_editor.php:788 +#: ../../godmode/agentes/planned_downtime.list.php:582 +#: ../../godmode/agentes/planned_downtime.list.php:873 +#: ../../godmode/agentes/agent_manager.php:972 +#: ../../godmode/agentes/configure_field.php:141 +#: ../../godmode/agentes/module_manager.php:229 +#: ../../godmode/netflow/nf_edit_form.php:272 +#: ../../godmode/snmpconsole/snmp_alert.php:1142 +#: ../../godmode/snmpconsole/snmp_alert.php:1514 +#: ../../godmode/snmpconsole/snmp_filters.php:263 +#: ../../godmode/snmpconsole/snmp_filters.php:336 +#: ../../godmode/alerts/configure_alert_command.php:387 +#: ../../godmode/alerts/alert_actions.php:471 +#: ../../godmode/alerts/alert_list.list.php:976 +#: ../../godmode/alerts/alert_commands.php:748 +#: ../../godmode/alerts/alert_templates.php:482 +#: ../../godmode/alerts/configure_alert_action.php:402 +#: ../../godmode/alerts/alert_list.php:496 ../../godmode/setup/news.php:231 +#: ../../godmode/setup/gis.php:97 ../../godmode/setup/os.php:95 +#: ../../godmode/setup/os.php:177 ../../godmode/setup/links.php:127 +#: ../../godmode/reporting/create_container.php:333 +#: ../../godmode/reporting/map_builder.php:559 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2266 +#: ../../godmode/reporting/graph_builder.main.php:294 +#: ../../godmode/events/event_responses.editor.php:219 +#: ../../godmode/events/event_edit_filter.php:681 +#: ../../godmode/servers/plugin.php:596 ../../godmode/tag/edit_tag.php:281 +#: ../../godmode/category/edit_category.php:205 +#: ../../include/functions_visual_map_editor.php:884 +#: ../../include/class/ManageNetScanScripts.class.php:763 +#: ../../include/class/ModuleTemplates.class.php:960 +#: ../../include/class/ModuleTemplates.class.php:1007 +#: ../../include/functions_filemanager.php:813 +#: ../../include/functions_filemanager.php:874 +#: ../../operation/gis_maps/gis_map.php:207 +#: ../../operation/incidents/configure_integriaims_incident.php:380 +#: ../../operation/incidents/list_integriaims_incidents.php:573 +msgid "Create" +msgstr "" + +#: ../../views/calendar/special_days_edit.php:40 +#: ../../enterprise/meta/monitoring/wizard/wizard.module.local.php:109 +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:794 +#: ../../enterprise/meta/monitoring/wizard/wizard.module.network.php:121 +#: ../../enterprise/meta/monitoring/wizard/wizard.module.web.php:102 +#: ../../enterprise/meta/monitoring/wizard/wizard.php:291 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1534 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1627 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1752 +#: ../../enterprise/meta/agentsearch.php:141 +#: ../../enterprise/godmode/policies/policy_alerts.php:46 +#: ../../enterprise/godmode/policies/policies.php:519 +#: ../../enterprise/godmode/massive/massive_create_services.php:877 +#: ../../enterprise/godmode/alerts/alert_inventory.php:78 +#: ../../enterprise/godmode/alerts/alert_inventory.php:80 +#: ../../enterprise/godmode/services/services.service.php:931 +#: ../../enterprise/include/functions_policies.php:3763 +#: ../../enterprise/operation/agentes/tag_view.php:608 +#: ../../godmode/groups/configure_group.php:230 +#: ../../godmode/groups/group_list.php:846 +#: ../../godmode/agentes/configurar_agente.php:422 +#: ../../godmode/agentes/modificar_agente.php:823 +#: ../../godmode/snmpconsole/snmp_alert.php:114 ../../godmode/menu.php:251 +#: ../../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:494 +#: ../../godmode/alerts/alert_templates.php:131 +#: ../../godmode/alerts/alert_templates.php:183 +#: ../../godmode/alerts/alert_templates.php:206 +#: ../../godmode/alerts/alert_templates.php:227 +#: ../../godmode/alerts/configure_alert_action.php:74 +#: ../../godmode/alerts/configure_alert_action.php:87 +#: ../../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:494 +#: ../../godmode/alerts/alert_list.php:496 +#: ../../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:2378 +#: ../../include/functions_reporting_html.php:5430 +#: ../../include/functions_treeview.php:405 +#: ../../include/functions_reports.php:843 +#: ../../include/functions_reports.php:847 +#: ../../include/functions_reports.php:853 +#: ../../include/functions_reports.php:859 +#: ../../include/class/AgentsAlerts.class.php:542 +#: ../../operation/search_agents.php:57 ../../operation/search_results.php:106 +#: ../../operation/agentes/estado_agente.php:766 +#: ../../operation/agentes/ver_agente.php:1427 +msgid "Alerts" +msgstr "" + +#: ../../views/calendar/special_days_edit.php:40 +msgid "Configure special day" +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:712 +#: ../../enterprise/include/functions_reporting_csv.php:776 +#: ../../enterprise/include/functions_reporting_csv.php:832 +#: ../../enterprise/include/functions_reporting_csv.php:877 +#: ../../enterprise/include/functions_reporting_csv.php:2518 +#: ../../enterprise/include/class/ManageBackups.class.php:163 +#: ../../enterprise/include/functions_reporting.php:2144 +#: ../../enterprise/include/functions_reporting.php:2181 +#: ../../enterprise/include/functions_reporting.php:2216 +#: ../../enterprise/include/functions_reporting.php:2234 +#: ../../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:2153 +#: ../../mobile/operation/tactical.php:350 +#: ../../include/functions_reporting_html.php:1814 +#: ../../include/functions_reporting_html.php:2628 +#: ../../include/functions_reporting_html.php:2637 +#: ../../include/functions_reporting_html.php:2642 +#: ../../include/functions_reporting_html.php:2651 +#: ../../include/functions_reporting_html.php:2656 +#: ../../include/functions_reporting_html.php:2663 +#: ../../include/functions_reporting_html.php:2712 +#: ../../include/functions_reporting_html.php:2785 +#: ../../include/functions_reporting_html.php:5772 +#: ../../include/functions.php:3053 ../../include/class/AuditLog.class.php:110 +#: ../../include/functions_reporting.php:4193 +#: ../../include/functions_reporting.php:4234 +#: ../../operation/incidents/list_integriaims_incidents.php:371 +#: ../../operation/reporting/graph_viewer.php:348 +#: ../../general/logon_ok.php:242 +msgid "Date" +msgstr "" + +#: ../../views/calendar/special_days_edit.php:116 +#: ../../views/calendar/special_days.php:92 +#: ../../views/calendar/special_days.php:358 +#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:95 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1851 +#: ../../enterprise/include/functions_reporting.php:1732 +#: ../../enterprise/include/functions_reporting.php:2463 +#: ../../enterprise/include/functions_reporting.php:2781 +#: ../../enterprise/include/functions_reporting.php:3406 +#: ../../enterprise/include/functions_reporting.php:4382 +#: ../../godmode/alerts/alert_templates.php:64 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1447 +#: ../../include/functions_html.php:2270 +msgid "Monday" +msgstr "" + +#: ../../views/calendar/special_days_edit.php:117 +#: ../../views/calendar/special_days.php:93 +#: ../../views/calendar/special_days.php:362 +#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:96 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1859 +#: ../../enterprise/include/functions_reporting.php:1733 +#: ../../enterprise/include/functions_reporting.php:2464 +#: ../../enterprise/include/functions_reporting.php:2782 +#: ../../enterprise/include/functions_reporting.php:3407 +#: ../../enterprise/include/functions_reporting.php:4383 +#: ../../godmode/alerts/alert_templates.php:65 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1455 +#: ../../include/functions_html.php:2271 +msgid "Tuesday" +msgstr "" + +#: ../../views/calendar/special_days_edit.php:118 +#: ../../views/calendar/special_days.php:94 +#: ../../views/calendar/special_days.php:366 +#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:97 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1867 +#: ../../enterprise/include/functions_reporting.php:1734 +#: ../../enterprise/include/functions_reporting.php:2465 +#: ../../enterprise/include/functions_reporting.php:2783 +#: ../../enterprise/include/functions_reporting.php:3408 +#: ../../enterprise/include/functions_reporting.php:4384 +#: ../../godmode/alerts/alert_templates.php:66 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1463 +#: ../../include/functions_html.php:2272 +msgid "Wednesday" +msgstr "" + +#: ../../views/calendar/special_days_edit.php:119 +#: ../../views/calendar/special_days.php:95 +#: ../../views/calendar/special_days.php:370 +#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:98 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1875 +#: ../../enterprise/include/functions_reporting.php:1735 +#: ../../enterprise/include/functions_reporting.php:2466 +#: ../../enterprise/include/functions_reporting.php:2784 +#: ../../enterprise/include/functions_reporting.php:3409 +#: ../../enterprise/include/functions_reporting.php:4385 +#: ../../godmode/alerts/alert_templates.php:67 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1471 +#: ../../include/functions_html.php:2273 +msgid "Thursday" +msgstr "" + +#: ../../views/calendar/special_days_edit.php:120 +#: ../../views/calendar/special_days.php:96 +#: ../../views/calendar/special_days.php:374 +#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:99 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1883 +#: ../../enterprise/include/functions_reporting.php:1736 +#: ../../enterprise/include/functions_reporting.php:2467 +#: ../../enterprise/include/functions_reporting.php:2785 +#: ../../enterprise/include/functions_reporting.php:3410 +#: ../../enterprise/include/functions_reporting.php:4386 +#: ../../godmode/alerts/alert_templates.php:68 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1479 +#: ../../include/functions_html.php:2274 +msgid "Friday" +msgstr "" + +#: ../../views/calendar/special_days_edit.php:121 +#: ../../views/calendar/special_days.php:97 +#: ../../views/calendar/special_days.php:378 +#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:100 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1891 +#: ../../enterprise/include/functions_reporting.php:1737 +#: ../../enterprise/include/functions_reporting.php:2468 +#: ../../enterprise/include/functions_reporting.php:2786 +#: ../../enterprise/include/functions_reporting.php:3411 +#: ../../enterprise/include/functions_reporting.php:4387 +#: ../../godmode/alerts/alert_templates.php:69 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1487 +#: ../../include/functions_html.php:2275 +msgid "Saturday" +msgstr "" + +#: ../../views/calendar/special_days_edit.php:122 +#: ../../views/calendar/special_days.php:98 +#: ../../views/calendar/special_days.php:382 +#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:101 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1899 +#: ../../enterprise/include/functions_reporting.php:1738 +#: ../../enterprise/include/functions_reporting.php:2469 +#: ../../enterprise/include/functions_reporting.php:2787 +#: ../../enterprise/include/functions_reporting.php:3412 +#: ../../enterprise/include/functions_reporting.php:4388 +#: ../../godmode/alerts/alert_templates.php:70 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1495 +#: ../../include/functions_html.php:2269 +msgid "Sunday" +msgstr "" + +#: ../../views/calendar/special_days_edit.php:123 +#: ../../views/calendar/special_days.php:386 +msgid "Holidays" +msgstr "" + +#: ../../views/calendar/special_days_edit.php:127 +#: ../../views/calendar/special_days.php:102 +msgid "Same day of the week" +msgstr "" + +#: ../../views/calendar/special_days_edit.php:163 +#: ../../views/calendar/edit.php:126 +#: ../../enterprise/views/ncm/snippets/edit.php:106 +#: ../../enterprise/views/ncm/templates/edit.php:315 +#: ../../enterprise/views/ncm/firmwares/edit.php:169 +#: ../../enterprise/views/ncm/models/edit.php:103 +#: ../../enterprise/views/ncm/vendors/edit.php:104 +#: ../../enterprise/views/ipam/sites/edit.php:80 +#: ../../enterprise/meta/advanced/metasetup.visual.php:1158 +#: ../../enterprise/meta/advanced/metasetup.translate_string.php:231 +#: ../../enterprise/meta/advanced/metasetup.relations.php:278 +#: ../../enterprise/meta/advanced/metasetup.password.php:157 +#: ../../enterprise/meta/advanced/metasetup.mail.php:133 +#: ../../enterprise/meta/advanced/metasetup.consoles.php:718 +#: ../../enterprise/meta/advanced/links.php:139 +#: ../../enterprise/meta/advanced/collections.data.php:157 +#: ../../enterprise/meta/advanced/collections.data.php:232 +#: ../../enterprise/meta/advanced/collections.data.php:273 +#: ../../enterprise/meta/advanced/collections.data.php:360 +#: ../../enterprise/meta/advanced/collections.data.php:361 +#: ../../enterprise/meta/advanced/collections.editor.php:149 +#: ../../enterprise/meta/advanced/collections.editor.php:223 +#: ../../enterprise/meta/advanced/cron_main.php:463 +#: ../../enterprise/meta/advanced/metasetup.setup.php:375 +#: ../../enterprise/meta/advanced/metasetup.performance.php:188 +#: ../../enterprise/meta/event/custom_events.php:213 +#: ../../enterprise/meta/include/functions_autoprovision.php:590 +#: ../../enterprise/meta/include/functions_autoprovision.php:791 +#: ../../enterprise/extensions/translate_string.php:364 +#: ../../enterprise/extensions/vmware/vmware_view.php:1257 +#: ../../enterprise/extensions/vmware/vmware_view.php:1768 +#: ../../enterprise/godmode/modules/configure_local_component.php:677 +#: ../../enterprise/godmode/modules/manage_inventory_modules.php:313 +#: ../../enterprise/godmode/modules/manage_inventory_modules_form.php:143 +#: ../../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:253 +#: ../../enterprise/godmode/agentes/collections.data.php:107 +#: ../../enterprise/godmode/agentes/collections.data.php:264 +#: ../../enterprise/godmode/agentes/collections.data.php:342 +#: ../../enterprise/godmode/agentes/collections.data.php:454 +#: ../../enterprise/godmode/agentes/collections.data.php:455 +#: ../../enterprise/godmode/agentes/collections.editor.php:182 +#: ../../enterprise/godmode/agentes/collections.editor.php:254 +#: ../../enterprise/godmode/agentes/plugins_manager.php:194 +#: ../../enterprise/godmode/agentes/plugins_manager.php:251 +#: ../../enterprise/godmode/agentes/agent_disk_conf_editor.php:257 +#: ../../enterprise/godmode/policies/configure_policy.php:136 +#: ../../enterprise/godmode/policies/policy_modules.php:428 +#: ../../enterprise/godmode/policies/policy_external_alerts.php:364 +#: ../../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:84 +#: ../../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 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:1169 +#: ../../enterprise/godmode/alerts/alert_inventory_list.php:337 +#: ../../enterprise/godmode/services/services.service.php:947 +#: ../../enterprise/godmode/setup/setup_history.php:528 +#: ../../enterprise/godmode/setup/setup.php:354 +#: ../../enterprise/godmode/setup/setup.php:543 +#: ../../enterprise/godmode/setup/setup_module_library.php:62 +#: ../../enterprise/godmode/setup/setup_metaconsole.php:245 +#: ../../enterprise/godmode/setup/setup_log_collector.php:74 +#: ../../enterprise/godmode/setup/edit_skin.php:290 +#: ../../enterprise/godmode/reporting/reporting_builder.template_editor.php:129 +#: ../../enterprise/godmode/reporting/reporting_builder.template_editor.php:149 +#: ../../enterprise/godmode/reporting/graph_template_editor.php:267 +#: ../../enterprise/godmode/reporting/reporting_builder.advanced.php:187 +#: ../../enterprise/godmode/reporting/mysql_builder.php:143 +#: ../../enterprise/godmode/reporting/mysql_builder.php:155 +#: ../../enterprise/godmode/reporting/mysql_builder.php:164 +#: ../../enterprise/godmode/reporting/mysql_builder.php:242 +#: ../../enterprise/godmode/reporting/reporting_builder.template_advanced.php:176 +#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:590 +#: ../../enterprise/godmode/servers/credential_boxes_satellite.php:251 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:357 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:889 +#: ../../enterprise/godmode/servers/manage_credential_boxes.php:90 +#: ../../enterprise/godmode/servers/manage_export_form.php:136 +#: ../../enterprise/include/ajax/log_viewer.ajax.php:99 +#: ../../enterprise/include/ajax/servers.ajax.php:102 +#: ../../enterprise/include/ajax/servers.ajax.php:303 +#: ../../enterprise/include/functions_HA_cluster.php:495 +#: ../../enterprise/include/class/DeploymentCenter.class.php:1672 +#: ../../enterprise/include/class/DatabaseHA.class.php:891 +#: ../../enterprise/include/class/AgentRepository.class.php:915 +#: ../../enterprise/include/class/Omnishell.class.php:646 +#: ../../enterprise/include/class/LogSource.class.php:849 +#: ../../enterprise/include/class/SAPView.class.php:325 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2284 +#: ../../enterprise/operation/agentes/manage_transmap_creation_phases_data.php:87 +#: ../../enterprise/operation/agentes/policy_view.php:208 +#: ../../enterprise/operation/agentes/policy_view.php:209 +#: ../../enterprise/operation/agentes/collection_view.php:117 +#: ../../enterprise/operation/agentes/collection_view.php:118 +#: ../../enterprise/operation/agentes/manage_transmap_creation.php:264 +#: ../../enterprise/operation/agentes/manage_transmap_creation.php:532 +#: ../../enterprise/tools/ipam/ipam_network.php:695 +#: ../../enterprise/tools/ipam/ipam_network_location_config.php:145 +#: ../../enterprise/tools/ipam/ipam_massive.php:112 +#: ../../enterprise/tools/ipam/ipam_editor.php:359 +#: ../../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_network_components_form.php:372 +#: ../../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:1454 +#: ../../godmode/agentes/agent_template.php:260 +#: ../../godmode/agentes/status_monitor_custom_fields.php:206 +#: ../../godmode/agentes/module_manager_editor.php:770 +#: ../../godmode/agentes/agent_conf_gis.php:134 +#: ../../godmode/agentes/planned_downtime.list.php:761 +#: ../../godmode/agentes/planned_downtime.list.php:806 +#: ../../godmode/agentes/planned_downtime.editor.php:873 +#: ../../godmode/agentes/agent_manager.php:963 +#: ../../godmode/agentes/configure_field.php:138 +#: ../../godmode/netflow/nf_edit_form.php:269 +#: ../../godmode/snmpconsole/snmp_alert.php:1140 +#: ../../godmode/snmpconsole/snmp_alert.php:1364 +#: ../../godmode/snmpconsole/snmp_filters.php:261 +#: ../../godmode/snmpconsole/snmp_filters.php:301 +#: ../../godmode/snmpconsole/snmp_filters.php:312 +#: ../../godmode/alerts/configure_alert_command.php:384 +#: ../../godmode/alerts/alert_list.list.php:171 +#: ../../godmode/alerts/alert_list.list.php:178 +#: ../../godmode/alerts/alert_list.list.php:935 +#: ../../godmode/alerts/configure_alert_action.php:387 +#: ../../godmode/setup/news.php:233 ../../godmode/setup/setup_ehorus.php:179 +#: ../../godmode/setup/setup_websocket_engine.php:89 +#: ../../godmode/setup/os.php:73 ../../godmode/setup/os.php:142 +#: ../../godmode/setup/setup_auth.php:467 +#: ../../godmode/setup/setup_integria.php:632 ../../godmode/setup/links.php:129 +#: ../../godmode/setup/snmp_wizard.php:100 +#: ../../godmode/setup/setup_netflow.php:81 +#: ../../godmode/setup/setup_visuals.php:1583 +#: ../../godmode/setup/setup_general.php:627 +#: ../../godmode/setup/performance.php:720 +#: ../../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:678 +#: ../../godmode/events/custom_events.php:188 +#: ../../godmode/servers/modificar_server.php:100 +#: ../../godmode/servers/plugin.php:198 ../../godmode/servers/plugin.php:598 +#: ../../godmode/tag/edit_tag.php:272 +#: ../../godmode/category/edit_category.php:195 +#: ../../include/functions_visual_map_editor.php:880 +#: ../../include/ajax/alert_list.ajax.php:564 +#: ../../include/class/ConfigPEN.class.php:697 +#: ../../include/class/ConfigPEN.class.php:698 +#: ../../include/class/NetworkMap.class.php:3069 +#: ../../include/class/ManageNetScanScripts.class.php:765 +#: ../../include/class/CredentialStore.class.php:1246 +#: ../../include/class/ModuleTemplates.class.php:1012 +#: ../../include/class/ExternalTools.class.php:392 +#: ../../include/functions_events.php:3236 +#: ../../include/functions_events.php:3315 +#: ../../operation/users/user_edit.php:777 +#: ../../operation/agentes/datos_agente.php:218 +#: ../../operation/network/network_report.php:132 +#: ../../operation/snmpconsole/snmp_view.php:660 +#: ../../operation/incidents/configure_integriaims_incident.php:378 +#: ../../operation/reporting/reporting_viewer.php:311 +msgid "Update" +msgstr "" + +#: ../../views/calendar/special_days_edit.php:207 +#: ../../views/calendar/special_days.php:407 +#: ../../views/calendar/special_days.php:506 +#: ../../views/dashboard/header.php:69 ../../views/dashboard/header.php:103 +#: ../../views/dashboard/list.php:225 +#: ../../enterprise/views/ncm/agent/details.php:690 +#: ../../enterprise/meta/monitoring/custom_fields_view.php:1152 +#: ../../enterprise/meta/event/custom_events.php:250 +#: ../../enterprise/godmode/services/services.service.php:994 +#: ../../enterprise/godmode/services/services.elements.php:849 +#: ../../enterprise/godmode/services/services.elements.php:860 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:281 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:355 +#: ../../enterprise/include/functions_HA_cluster.php:492 +#: ../../enterprise/include/class/DeploymentCenter.class.php:1567 +#: ../../enterprise/include/class/DeploymentCenter.class.php:1669 +#: ../../enterprise/include/class/DeploymentCenter.class.php:1721 +#: ../../enterprise/include/class/DeploymentCenter.class.php:1753 +#: ../../enterprise/include/class/DeploymentCenter.class.php:1788 +#: ../../enterprise/include/class/AgentRepository.class.php:814 +#: ../../enterprise/include/class/AgentRepository.class.php:912 +#: ../../enterprise/include/class/LogSource.class.php:845 +#: ../../enterprise/include/class/LogSource.class.php:898 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3051 +#: ../../enterprise/include/class/ManageBackups.class.php:446 +#: ../../enterprise/tools/ipam/ipam_supernet_config.php:1298 +#: ../../enterprise/tools/ipam/ipam_supernet_config.php:1322 +#: ../../enterprise/tools/ipam/ipam_vlan_config.php:808 +#: ../../enterprise/tools/ipam/ipam_vlan_config.php:831 +#: ../../update_manager_client/views/register.php:85 +#: ../../godmode/agentes/status_monitor_custom_fields.php:242 +#: ../../godmode/snmpconsole/snmp_alert.php:1547 +#: ../../godmode/snmpconsole/snmp_alert.php:1562 +#: ../../godmode/massive/massive_operations.php:393 +#: ../../godmode/setup/snmp_wizard.php:100 +#: ../../godmode/events/custom_events.php:224 +#: ../../include/functions_visual_map_editor.php:880 +#: ../../include/functions_visual_map_editor.php:884 +#: ../../include/functions_register.php:179 +#: ../../include/class/ConfigPEN.class.php:669 +#: ../../include/class/ConfigPEN.class.php:693 +#: ../../include/class/TreeGroupEdition.class.php:165 +#: ../../include/class/NetworkMap.class.php:2807 +#: ../../include/class/CredentialStore.class.php:1242 +#: ../../include/class/CredentialStore.class.php:1294 +#: ../../include/class/ModuleTemplates.class.php:1382 +#: ../../include/class/WelcomeWindow.class.php:174 +#: ../../include/class/AgentWizard.class.php:6041 +#: ../../operation/agentes/pandora_networkmap.editor.php:603 +#: ../../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:814 +msgid "Cancel" +msgstr "" + +#: ../../views/calendar/special_days_edit.php:211 +#: ../../views/calendar/special_days.php:411 +#: ../../views/calendar/special_days.php:510 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:4349 +#: ../../godmode/agentes/planned_downtime.list.php:695 +#: ../../godmode/alerts/configure_alert_template.php:1550 +#: ../../include/class/AgentWizard.class.php:5993 +msgid "Loading, this operation might take several minutes..." +msgstr "" + +#: ../../views/calendar/edit.php:40 +msgid "Calendars Edit" +msgstr "" + +#: ../../views/calendar/special_days.php:41 +#: ../../include/class/CalendarManager.class.php:720 +msgid "Special days" +msgstr "" + +#: ../../views/calendar/special_days.php:81 +msgid "iCalendar(.ics) file" +msgstr "" + +#: ../../views/calendar/special_days.php:122 +msgid "Overwrite" +msgstr "" + +#: ../../views/calendar/special_days.php:123 +msgid "Check this box, if you want to overwrite existing same days." +msgstr "" + +#: ../../views/calendar/special_days.php:138 +#: ../../enterprise/include/functions_policies.php:4479 +#: ../../enterprise/tools/ipam/ipam_network.php:142 +#: ../../enterprise/tools/ipam/ipam_supernet_config.php:746 +#: ../../enterprise/tools/ipam/ipam_list.php:77 +#: ../../enterprise/tools/ipam/ipam_vlan_config.php:420 +#: ../../extensions/extension_uploader.php:92 +#: ../../extensions/resource_registration.php:1137 +#: ../../godmode/servers/plugin_registration.php:113 +#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:218 +msgid "Upload" +msgstr "" + +#: ../../views/calendar/special_days.php:172 +msgid "Display range: " +msgstr "" + +#: ../../views/calendar/special_days.php:174 +#: ../../views/calendar/special_days.php:186 +#: ../../enterprise/meta/advanced/metasetup.visual.php:513 +#: ../../enterprise/meta/advanced/metasetup.visual.php:547 +#: ../../enterprise/meta/advanced/metasetup.visual.php:1070 +#: ../../enterprise/meta/monitoring/wizard/wizard.php:141 +#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:443 +#: ../../enterprise/godmode/policies/policy_alerts.php:406 +#: ../../enterprise/godmode/policies/policy_external_alerts.php:436 +#: ../../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:128 +#: ../../enterprise/godmode/reporting/reporting_builder.template_advanced.php:134 +#: ../../enterprise/operation/agentes/policy_view.php:332 +#: ../../godmode/users/configure_user.php:907 +#: ../../godmode/users/configure_user.php:1090 +#: ../../godmode/agentes/module_manager_editor_common.php:635 +#: ../../godmode/massive/massive_edit_agents.php:981 +#: ../../godmode/alerts/alert_list.list.php:631 +#: ../../godmode/alerts/alert_view.php:58 +#: ../../godmode/setup/gis_step_2.php:578 +#: ../../godmode/setup/gis_step_2.php:664 +#: ../../godmode/setup/setup_visuals.php:197 +#: ../../godmode/setup/setup_visuals.php:219 +#: ../../godmode/setup/setup_visuals.php:439 +#: ../../godmode/setup/setup_visuals.php:458 +#: ../../godmode/setup/setup_visuals.php:1204 +#: ../../godmode/events/event_edit_filter.php:404 +#: ../../include/functions_ui.php:1240 +#: ../../include/class/AgentsAlerts.class.php:928 +#: ../../operation/users/user_edit.php:317 +#: ../../operation/users/user_edit.php:320 +#: ../../operation/users/user_edit.php:331 +#: ../../operation/users/user_edit.php:356 +#: ../../operation/snmpconsole/snmp_view.php:566 +#: ../../operation/gis_maps/gis_map.php:106 +msgid "Default" +msgstr "" + +#: ../../views/calendar/special_days.php:224 +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:431 +#: ../../godmode/agentes/planned_downtime.editor.php:674 +#: ../../include/functions.php:1101 +#: ../../include/class/CalendarManager.class.php:1035 +#: ../../include/functions_reporting.php:14254 +msgid "Sun" +msgstr "" + +#: ../../views/calendar/special_days.php:225 +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:425 +#: ../../godmode/agentes/planned_downtime.editor.php:668 +#: ../../include/functions.php:1077 +#: ../../include/class/CalendarManager.class.php:1029 +#: ../../include/functions_reporting.php:14224 +msgid "Mon" +msgstr "" + +#: ../../views/calendar/special_days.php:226 +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:426 +#: ../../godmode/agentes/planned_downtime.editor.php:669 +#: ../../include/functions.php:1081 +#: ../../include/class/CalendarManager.class.php:1030 +#: ../../include/functions_reporting.php:14229 +msgid "Tue" +msgstr "" + +#: ../../views/calendar/special_days.php:227 +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:427 +#: ../../godmode/agentes/planned_downtime.editor.php:670 +#: ../../include/functions.php:1085 +#: ../../include/class/CalendarManager.class.php:1031 +#: ../../include/functions_reporting.php:14234 +msgid "Wed" +msgstr "" + +#: ../../views/calendar/special_days.php:228 +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:428 +#: ../../godmode/agentes/planned_downtime.editor.php:671 +#: ../../include/functions.php:1089 +#: ../../include/class/CalendarManager.class.php:1032 +#: ../../include/functions_reporting.php:14239 +msgid "Thu" +msgstr "" + +#: ../../views/calendar/special_days.php:229 +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:429 +#: ../../godmode/agentes/planned_downtime.editor.php:672 +#: ../../include/functions.php:1093 +#: ../../include/class/CalendarManager.class.php:1033 +#: ../../include/functions_reporting.php:14244 +msgid "Fri" +msgstr "" + +#: ../../views/calendar/special_days.php:230 +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:430 +#: ../../godmode/agentes/planned_downtime.editor.php:673 +#: ../../include/functions.php:1097 +#: ../../include/class/CalendarManager.class.php:1034 +#: ../../include/functions_reporting.php:14249 +msgid "Sat" +msgstr "" + +#: ../../views/calendar/special_days.php:245 +#: ../../enterprise/include/functions_reporting.php:1775 +#: ../../enterprise/include/functions_reporting.php:2822 +#: ../../enterprise/include/functions_reporting.php:3824 +msgid "January" +msgstr "" + +#: ../../views/calendar/special_days.php:249 +#: ../../enterprise/include/functions_reporting.php:1779 +#: ../../enterprise/include/functions_reporting.php:2826 +#: ../../enterprise/include/functions_reporting.php:3828 +msgid "February" +msgstr "" + +#: ../../views/calendar/special_days.php:253 +#: ../../enterprise/include/functions_reporting.php:1783 +#: ../../enterprise/include/functions_reporting.php:2830 +#: ../../enterprise/include/functions_reporting.php:3832 +msgid "March" +msgstr "" + +#: ../../views/calendar/special_days.php:257 +#: ../../enterprise/include/functions_reporting.php:1787 +#: ../../enterprise/include/functions_reporting.php:2834 +#: ../../enterprise/include/functions_reporting.php:3836 +msgid "April" +msgstr "" + +#: ../../views/calendar/special_days.php:261 +#: ../../enterprise/include/functions_reporting.php:1791 +#: ../../enterprise/include/functions_reporting.php:2838 +#: ../../enterprise/include/functions_reporting.php:3840 +msgid "May" +msgstr "" + +#: ../../views/calendar/special_days.php:265 +#: ../../enterprise/include/functions_reporting.php:1795 +#: ../../enterprise/include/functions_reporting.php:2842 +#: ../../enterprise/include/functions_reporting.php:3844 +msgid "June" +msgstr "" + +#: ../../views/calendar/special_days.php:269 +#: ../../enterprise/include/functions_reporting.php:1799 +#: ../../enterprise/include/functions_reporting.php:2846 +#: ../../enterprise/include/functions_reporting.php:3848 +msgid "July" +msgstr "" + +#: ../../views/calendar/special_days.php:273 +#: ../../enterprise/include/functions_reporting.php:1803 +#: ../../enterprise/include/functions_reporting.php:2850 +#: ../../enterprise/include/functions_reporting.php:3852 +msgid "August" +msgstr "" + +#: ../../views/calendar/special_days.php:277 +#: ../../enterprise/include/functions_reporting.php:1807 +#: ../../enterprise/include/functions_reporting.php:2854 +#: ../../enterprise/include/functions_reporting.php:3856 +msgid "September" +msgstr "" + +#: ../../views/calendar/special_days.php:281 +#: ../../enterprise/include/functions_reporting.php:1811 +#: ../../enterprise/include/functions_reporting.php:2858 +#: ../../enterprise/include/functions_reporting.php:3860 +msgid "October" +msgstr "" + +#: ../../views/calendar/special_days.php:285 +#: ../../enterprise/include/functions_reporting.php:1815 +#: ../../enterprise/include/functions_reporting.php:2862 +#: ../../enterprise/include/functions_reporting.php:3864 +msgid "November" +msgstr "" + +#: ../../views/calendar/special_days.php:289 +#: ../../enterprise/include/functions_reporting.php:1820 +#: ../../enterprise/include/functions_reporting.php:2867 +#: ../../enterprise/include/functions_reporting.php:3869 +msgid "December" +msgstr "" + +#: ../../views/calendar/special_days.php:355 +msgid "As " +msgstr "" + +#: ../../views/calendar/special_days.php:421 +msgid "Show templates" +msgstr "" + +#: ../../views/calendar/special_days.php:431 +#: ../../enterprise/meta/screens/screens.visualmap.php:73 +#: ../../enterprise/meta/advanced/collections.editor.php:203 +#: ../../enterprise/meta/monitoring/wizard/wizard.manage_alert.php:74 +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:295 +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:461 +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:812 +#: ../../enterprise/meta/include/functions_autoprovision.php:506 +#: ../../enterprise/meta/include/functions_autoprovision.php:507 +#: ../../enterprise/meta/include/functions_autoprovision.php:672 +#: ../../enterprise/meta/include/functions_autoprovision.php:673 +#: ../../enterprise/meta/include/functions_wizard_meta.php:2064 +#: ../../enterprise/meta/include/functions_wizard_meta.php:2159 +#: ../../enterprise/meta/include/functions_wizard_meta.php:2723 +#: ../../enterprise/godmode/agentes/collections.editor.php:234 +#: ../../enterprise/godmode/massive/massive_edit_tags_policy.php:204 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:612 +#: ../../enterprise/godmode/reporting/reporting_builder.template_list_item.php:382 +#: ../../enterprise/include/functions_tasklist.php:595 +#: ../../enterprise/include/functions_tasklist.php:637 +#: ../../enterprise/include/ajax/transactional.ajax.php:117 +#: ../../enterprise/include/ajax/transactional.ajax.php:205 +#: ../../enterprise/include/class/NetworkConfigManager.class.php:612 +#: ../../enterprise/include/class/NetworkConfigManager.class.php:784 +#: ../../enterprise/include/class/NetworkConfigManager.class.php:960 +#: ../../enterprise/include/class/NetworkConfigManager.class.php:1107 +#: ../../enterprise/include/class/NetworkConfigManager.class.php:1315 +#: ../../enterprise/include/class/Omnishell.class.php:1137 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2426 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3080 +#: ../../enterprise/include/lib/ClusterViewer/ClusterManager.php:618 +#: ../../enterprise/include/lib/Metaconsole/Node.php:1097 +#: ../../enterprise/include/lib/Metaconsole/Node.php:1098 +#: ../../enterprise/operation/agentes/tag_view.php:742 +#: ../../enterprise/tools/ipam/ipam.php:417 +#: ../../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/users/profile_list.php:434 +#: ../../godmode/users/user_list.php:796 +#: ../../godmode/agentes/modificar_agente.php:803 +#: ../../godmode/agentes/modificar_agente.php:809 +#: ../../godmode/agentes/planned_downtime.list.php:624 +#: ../../godmode/agentes/fields_manager.php:154 +#: ../../godmode/setup/snmp_wizard.php:110 +#: ../../godmode/reporting/reporting_builder.list_items.php:624 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2274 +#: ../../godmode/reporting/reporting_builder.php:1167 +#: ../../godmode/events/event_responses.list.php:79 +#: ../../godmode/servers/servers.build_table.php:234 +#: ../../godmode/servers/plugin.php:179 ../../godmode/servers/plugin.php:880 +#: ../../include/functions_cron.php:881 ../../include/functions_cron.php:909 +#: ../../include/ajax/module.php:1110 +#: ../../include/class/NetworkMap.class.php:3013 +#: ../../include/class/CalendarManager.class.php:703 +#: ../../operation/agentes/estado_agente.php:877 +#: ../../operation/agentes/estado_agente.php:880 +#: ../../operation/agentes/pandora_networkmap.php:713 +#: ../../operation/agentes/status_monitor.php:1509 +#: ../../operation/gis_maps/gis_map.php:190 +#: ../../operation/incidents/list_integriaims_incidents.php:550 +#: ../../operation/search_reports.php:68 +msgid "Edit" +msgstr "" + +#: ../../views/calendar/special_days.php:438 ../../views/dashboard/list.php:185 +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:566 +#: ../../enterprise/meta/advanced/metasetup.relations.php:584 +#: ../../enterprise/meta/advanced/links.php:173 +#: ../../enterprise/meta/advanced/policymanager.queue.php:349 +#: ../../enterprise/meta/monitoring/custom_fields_view.php:1150 +#: ../../enterprise/meta/monitoring/wizard/wizard.php:143 +#: ../../enterprise/godmode/modules/manage_inventory_modules.php:316 +#: ../../enterprise/godmode/modules/local_components.php:694 +#: ../../enterprise/godmode/agentes/inventory_manager.php:248 +#: ../../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 +#: ../../enterprise/godmode/policies/policy_modules.php:1545 +#: ../../enterprise/godmode/policies/policy_modules.php:1561 +#: ../../enterprise/godmode/policies/policy_modules.php:1612 +#: ../../enterprise/godmode/policies/policy_queue.php:770 +#: ../../enterprise/godmode/policies/policy_queue.php:804 +#: ../../enterprise/godmode/policies/policy_queue.php:820 +#: ../../enterprise/godmode/policies/policies.php:560 +#: ../../enterprise/godmode/policies/policies.php:581 +#: ../../enterprise/godmode/policies/policies.php:616 +#: ../../enterprise/godmode/policies/policy_external_alerts.php:513 +#: ../../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/snmpconsole/snmp_trap_editor.php:412 +#: ../../enterprise/godmode/alerts/alert_inventory_list.php:415 +#: ../../enterprise/godmode/setup/setup_skins.php:147 +#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:837 +#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:638 +#: ../../enterprise/godmode/reporting/graph_template_list.php:234 +#: ../../enterprise/godmode/reporting/graph_template_wizard.php:447 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:619 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:638 +#: ../../enterprise/godmode/reporting/graph_template_item_editor.php:214 +#: ../../enterprise/godmode/reporting/mysql_builder.php:104 +#: ../../enterprise/godmode/servers/credential_boxes_satellite.php:287 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:349 +#: ../../enterprise/include/functions_tasklist.php:610 +#: ../../enterprise/include/functions_tasklist.php:645 +#: ../../enterprise/include/ajax/transactional.ajax.php:118 +#: ../../enterprise/include/ajax/transactional.ajax.php:207 +#: ../../enterprise/include/ajax/ipam.ajax.php:755 +#: ../../enterprise/include/ajax/ipam.ajax.php:833 +#: ../../enterprise/include/class/DeploymentCenter.class.php:1558 +#: ../../enterprise/include/class/AgentRepository.class.php:805 +#: ../../enterprise/include/class/Omnishell.class.php:504 +#: ../../enterprise/include/class/Omnishell.class.php:1155 +#: ../../enterprise/include/class/LogSource.class.php:892 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3088 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3400 +#: ../../enterprise/include/class/ManageBackups.class.php:443 +#: ../../enterprise/include/functions_services.php:2026 +#: ../../enterprise/include/lib/Metaconsole/Node.php:1183 +#: ../../enterprise/operation/agentes/transactional_map.php:414 +#: ../../enterprise/operation/agentes/transactional_map.php:478 +#: ../../enterprise/operation/agentes/manage_transmap_creation.php:268 +#: ../../enterprise/operation/services/services.list.php:649 +#: ../../enterprise/operation/services/services.list.php:743 +#: ../../enterprise/tools/ipam/ipam_supernet_config.php:1209 +#: ../../enterprise/tools/ipam/ipam_supernet_config.php:1347 +#: ../../enterprise/tools/ipam/ipam_network_location_config.php:287 +#: ../../enterprise/tools/ipam/ipam_vlan_config.php:726 +#: ../../enterprise/tools/ipam/ipam_vlan_config.php:856 +#: ../../update_manager_client/views/offline.php:72 +#: ../../update_manager_client/views/online.php:123 +#: ../../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_network_components.php:864 +#: ../../godmode/modules/manage_network_templates.php:272 +#: ../../godmode/modules/manage_network_templates.php:287 +#: ../../godmode/groups/group_list.php:926 +#: ../../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:1605 +#: ../../godmode/users/configure_user.php:1900 +#: ../../godmode/agentes/agent_template.php:259 +#: ../../godmode/agentes/modificar_agente.php:929 +#: ../../godmode/agentes/planned_downtime.editor.php:1015 +#: ../../godmode/agentes/fields_manager.php:155 +#: ../../godmode/agentes/agent_manager.php:237 +#: ../../godmode/agentes/module_manager_editor_common.php:233 +#: ../../godmode/agentes/module_manager.php:1161 +#: ../../godmode/agentes/module_manager.php:1175 +#: ../../godmode/agentes/module_manager.php:1200 +#: ../../godmode/agentes/module_manager.php:1223 +#: ../../godmode/agentes/module_manager.php:1248 +#: ../../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_filters.php:301 +#: ../../godmode/snmpconsole/snmp_filters.php:312 +#: ../../godmode/massive/massive_operations.php:391 +#: ../../godmode/massive/massive_standby_alerts.php:254 +#: ../../godmode/massive/massive_edit_plugins.php:576 +#: ../../godmode/massive/massive_enable_disable_alerts.php:226 +#: ../../godmode/alerts/alert_actions.php:424 +#: ../../godmode/alerts/alert_list.list.php:1131 +#: ../../godmode/alerts/alert_commands.php:721 +#: ../../godmode/alerts/alert_commands.php:724 +#: ../../godmode/alerts/alert_templates.php:437 +#: ../../godmode/setup/news.php:290 ../../godmode/setup/links.php:160 +#: ../../godmode/reporting/create_container.php:682 +#: ../../godmode/reporting/map_builder.php:512 +#: ../../godmode/reporting/map_builder.php:523 +#: ../../godmode/reporting/graphs.php:362 +#: ../../godmode/reporting/visual_console_builder.elements.php:497 +#: ../../godmode/reporting/reporting_builder.php:1177 +#: ../../godmode/reporting/reporting_builder.php:1199 +#: ../../godmode/events/event_filter.php:188 +#: ../../godmode/wizards/DiscoveryTaskList.class.php:664 +#: ../../godmode/wizards/DiscoveryTaskList.class.php:971 +#: ../../godmode/wizards/DiscoveryTaskList.class.php:997 +#: ../../godmode/wizards/DiscoveryTaskList.class.php:1010 +#: ../../godmode/wizards/DiscoveryTaskList.class.php:1021 +#: ../../godmode/servers/plugin.php:884 ../../godmode/tag/tag.php:395 +#: ../../godmode/category/category.php:192 +#: ../../godmode/category/category.php:211 +#: ../../include/functions_profile.php:278 +#: ../../include/class/ConfigPEN.class.php:666 +#: ../../include/class/TreeGroupEdition.class.php:166 +#: ../../include/class/CredentialStore.class.php:1288 +#: ../../include/class/ModuleTemplates.class.php:918 +#: ../../include/class/ModuleTemplates.class.php:933 +#: ../../include/class/WelcomeWindow.class.php:171 +#: ../../include/functions_filemanager.php:715 +#: ../../include/functions_container.php:190 +#: ../../include/functions_container.php:324 +#: ../../include/lib/Dashboard/Widgets/events_list.php:643 +#: ../../include/functions_events.php:3370 +#: ../../operation/users/user_edit.php:1168 +#: ../../operation/agentes/pandora_networkmap.editor.php:600 +#: ../../operation/agentes/pandora_networkmap.php:801 +#: ../../operation/messages/message_list.php:272 +#: ../../operation/messages/message_list.php:275 +#: ../../operation/snmpconsole/snmp_browser.php:643 +#: ../../operation/snmpconsole/snmp_view.php:1033 +#: ../../operation/snmpconsole/snmp_view.php:1046 +#: ../../operation/snmpconsole/snmp_view.php:1220 +#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:197 +#: ../../operation/incidents/list_integriaims_incidents.php:554 +msgid "Are you sure?" +msgstr "" + +#: ../../views/calendar/special_days.php:442 +#: ../../enterprise/godmode/agentes/collection_manager.php:210 +#: ../../enterprise/godmode/policies/policy_collections.php:173 +#: ../../enterprise/godmode/massive/massive_edit_tags_policy.php:177 +#: ../../enterprise/godmode/massive/massive_tags_edit_policy.php:161 +#: ../../enterprise/include/functions_ui.php:120 +#: ../../enterprise/include/functions_ui.php:168 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:4347 +#: ../../godmode/alerts/configure_alert_template.php:1548 +#: ../../godmode/events/event_edit_filter.php:542 +#: ../../godmode/events/event_edit_filter.php:595 +#: ../../operation/events/events.php:1167 +#: ../../operation/events/events.php:1239 +msgid "Remove" +msgstr "" + +#: ../../views/calendar/special_days.php:507 +msgid "Load calendar" +msgstr "" + +#: ../../views/dashboard/header.php:43 +#: ../../enterprise/meta/screens/screens.visualmap.php:274 +#: ../../enterprise/operation/agentes/manage_transmap.php:141 +#: ../../extensions/disabled/matrix_events.php:35 +#: ../../extensions/agents_modules.php:380 +#: ../../extensions/agents_modules.php:387 +#: ../../extensions/agents_modules.php:390 +#: ../../include/class/AgentsAlerts.class.php:792 +#: ../../operation/visual_console/view.php:210 +#: ../../operation/visual_console/legacy_view.php:205 +#: ../../operation/gis_maps/render_view.php:136 +#: ../../operation/reporting/reporting_viewer.php:186 +#: ../../operation/reporting/graph_viewer.php:234 +msgid "Full screen mode" +msgstr "" + +#: ../../views/dashboard/header.php:57 ../../extensions/agents_modules.php:531 +#: ../../include/class/AgentsAlerts.class.php:797 +#: ../../operation/heatmap.php:210 ../../operation/visual_console/view.php:444 +#: ../../operation/visual_console/legacy_view.php:253 +#: ../../operation/gis_maps/render_view.php:138 +#: ../../operation/reporting/reporting_viewer.php:195 +#: ../../operation/reporting/graph_viewer.php:243 +#: ../../operation/events/events.php:1293 +msgid "Back to normal mode" +msgstr "" + +#: ../../views/dashboard/header.php:67 +msgid "Update Dashboard" +msgstr "" + +#: ../../views/dashboard/header.php:68 ../../views/dashboard/header.php:102 +#: ../../views/dashboard/list.php:224 ../../enterprise/load_enterprise.php:643 +#: ../../enterprise/load_enterprise.php:1139 +#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:444 +#: ../../enterprise/godmode/services/services.elements.php:848 +#: ../../enterprise/godmode/services/services.elements.php:859 +#: ../../enterprise/include/class/Omnishell.class.php:1499 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3050 +#: ../../enterprise/include/lib/Metaconsole/Node.php:406 +#: ../../enterprise/operation/agentes/transactional_map.php:321 +#: ../../enterprise/operation/agentes/manage_transmap_creation.php:64 +#: ../../enterprise/operation/services/services.service.php:161 +#: ../../enterprise/operation/services/services.service_map.php:151 +#: ../../enterprise/operation/services/services.list.php:237 +#: ../../enterprise/operation/services/services.list.php:552 +#: ../../enterprise/operation/services/services.table_services.php:159 +#: ../../godmode/snmpconsole/snmp_alert.php:1548 +#: ../../godmode/snmpconsole/snmp_alert.php:1563 +#: ../../godmode/massive/massive_edit_agents.php:981 +#: ../../include/functions_config.php:1272 +#: ../../include/functions_config.php:3159 +#: ../../include/lib/Dashboard/Widgets/wux_transaction.php:377 +#: ../../operation/gis_maps/render_view.php:166 +msgid "Ok" +msgstr "" + +#: ../../views/dashboard/header.php:92 +msgid "Back to dashboards list" +msgstr "" + +#: ../../views/dashboard/header.php:101 +msgid "Slides" +msgstr "" + +#: ../../views/dashboard/header.php:115 +msgid "Slides mode" +msgstr "" + +#: ../../views/dashboard/header.php:136 +msgid "Show link to public dashboard" +msgstr "" + +#: ../../views/dashboard/header.php:158 +#: ../../enterprise/views/ncm/devices/list.php:171 +#: ../../enterprise/meta/advanced/policymanager.queue.php:238 +#: ../../enterprise/godmode/policies/policy_queue.php:801 +#: ../../enterprise/godmode/servers/HA_cluster.php:416 +#: ../../enterprise/include/class/Omnishell.class.php:544 +#: ../../enterprise/include/class/Omnishell.class.php:1329 +#: ../../enterprise/include/functions_ipam.php:1396 +#: ../../extensions/agents_modules.php:543 +#: ../../godmode/wizards/DiscoveryTaskList.class.php:191 +#: ../../include/ajax/heatmap.ajax.php:47 ../../include/ajax/module.php:1054 +#: ../../include/class/NetworkMap.class.php:2801 +#: ../../include/class/AgentsAlerts.class.php:836 +#: ../../operation/heatmap.php:168 ../../operation/visual_console/view.php:457 +#: ../../operation/visual_console/legacy_public_view.php:141 +#: ../../operation/visual_console/legacy_view.php:267 +#: ../../operation/visual_console/public_view.php:123 +#: ../../operation/gis_maps/render_view.php:160 +#: ../../operation/reporting/graph_viewer.php:399 +#: ../../operation/events/events.php:1305 ../../general/login_page.php:75 +#: ../../general/login_page.php:318 +msgid "Refresh" +msgstr "" + +#: ../../views/dashboard/header.php:211 +msgid "Add Cell" +msgstr "" + +#: ../../views/dashboard/header.php:278 ../../views/dashboard/list.php:42 +#: ../../enterprise/meta/general/main_header.php:222 +#: ../../enterprise/meta/general/main_menu.php:311 +msgid "Dashboards" +msgstr "" + +#: ../../views/dashboard/header.php:278 +#: ../../enterprise/godmode/alerts/alert_inventory.php:78 +#: ../../godmode/agentes/planned_downtime.editor.php:59 +#: ../../godmode/alerts/alert_list.php:494 +#: ../../godmode/category/category.php:89 ../../include/functions_html.php:1906 +#: ../../include/functions_html.php:1907 ../../include/functions_html.php:2017 +#: ../../include/functions_html.php:2018 ../../include/functions_html.php:2197 +#: ../../include/functions_html.php:2198 +#: ../../operation/snmpconsole/snmp_statistics.php:66 +#: ../../operation/snmpconsole/snmp_view.php:107 +#: ../../operation/events/events.php:1461 +msgid "List" +msgstr "" + +#: ../../views/dashboard/list.php:53 +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:288 +#: ../../enterprise/meta/advanced/metasetup.relations.php:86 +#: ../../enterprise/meta/advanced/links.php:84 +#: ../../enterprise/godmode/modules/local_components.php:417 +#: ../../enterprise/godmode/alerts/alert_inventory_list.php:68 +#: ../../enterprise/godmode/alerts/alert_inventory_list.php:118 +#: ../../enterprise/godmode/setup/setup_metaconsole.php:138 +#: ../../enterprise/godmode/reporting/graph_template_list.php:155 +#: ../../enterprise/godmode/reporting/graph_template_list.php:182 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:424 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:442 +#: ../../enterprise/godmode/reporting/graph_template_item_editor.php:129 +#: ../../enterprise/godmode/reporting/graph_template_item_editor.php:157 +#: ../../enterprise/godmode/reporting/reporting_builder.template_list_item.php:165 +#: ../../enterprise/include/class/DatabaseHA.class.php:1057 +#: ../../enterprise/operation/agentes/transactional_map.php:182 +#: ../../enterprise/operation/agentes/manage_transmap_creation.php:82 +#: ../../enterprise/tools/ipam/ipam_supernet_config.php:152 +#: ../../enterprise/tools/ipam/ipam_action.php:102 +#: ../../enterprise/tools/ipam/ipam_network_location_config.php:87 +#: ../../enterprise/tools/ipam/ipam_vlan_config.php:132 +#: ../../extensions/files_repo.php:184 +#: ../../godmode/modules/manage_nc_groups.php:152 +#: ../../godmode/modules/manage_network_components.php:552 +#: ../../godmode/users/profile_list.php:133 +#: ../../godmode/users/user_list.php:293 ../../godmode/users/user_list.php:340 +#: ../../godmode/users/configure_user.php:137 +#: ../../godmode/users/configure_user.php:157 +#: ../../godmode/agentes/planned_downtime.list.php:242 +#: ../../godmode/netflow/nf_item_list.php:120 +#: ../../godmode/netflow/nf_item_list.php:148 +#: ../../godmode/netflow/nf_edit.php:104 ../../godmode/netflow/nf_edit.php:137 +#: ../../godmode/snmpconsole/snmp_alert.php:686 +#: ../../godmode/snmpconsole/snmp_filters.php:180 +#: ../../godmode/massive/massive_delete_action_alerts.php:170 +#: ../../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:604 +#: ../../godmode/alerts/alert_templates.php:252 +#: ../../godmode/alerts/alert_list.php:232 +#: ../../godmode/alerts/alert_list.php:339 ../../godmode/setup/news.php:120 +#: ../../godmode/setup/gis.php:61 ../../godmode/setup/links.php:76 +#: ../../godmode/reporting/map_builder.php:209 +#: ../../godmode/reporting/graphs.php:150 +#: ../../godmode/reporting/graphs.php:162 +#: ../../godmode/reporting/graphs.php:213 +#: ../../godmode/reporting/reporting_builder.php:668 +#: ../../godmode/events/event_filter.php:69 +#: ../../godmode/events/event_filter.php:96 +#: ../../include/class/ConfigPEN.class.php:486 +#: ../../operation/messages/message_list.php:113 +#: ../../operation/messages/message_list.php:135 +#: ../../operation/snmpconsole/snmp_view.php:155 +#: ../../operation/gis_maps/gis_map.php:86 +#: ../../operation/incidents/list_integriaims_incidents.php:295 +#: ../../operation/reporting/graph_viewer.php:57 +#: ../../operation/reporting/graph_viewer.php:65 +msgid "Successfully deleted" +msgstr "" + +#: ../../views/dashboard/list.php:54 +#: ../../enterprise/godmode/modules/local_components.php:418 +#: ../../enterprise/godmode/policies/policy_alerts.php:256 +#: ../../enterprise/godmode/policies/policy_alerts.php:302 +#: ../../enterprise/godmode/policies/policy_modules.php:1313 +#: ../../enterprise/godmode/policies/policy_external_alerts.php:147 +#: ../../enterprise/godmode/policies/policy_external_alerts.php:174 +#: ../../enterprise/godmode/policies/policy_inventory_modules.php:166 +#: ../../enterprise/godmode/policies/policy_collections.php:100 +#: ../../enterprise/godmode/policies/policy_agents.php:104 +#: ../../enterprise/godmode/policies/policy_agents.php:126 +#: ../../enterprise/godmode/alerts/alert_inventory_list.php:69 +#: ../../enterprise/godmode/alerts/alert_inventory_list.php:119 +#: ../../enterprise/godmode/setup/setup_metaconsole.php:139 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:425 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:443 +#: ../../enterprise/godmode/reporting/reporting_builder.template_list_item.php:166 +#: ../../enterprise/operation/agentes/transactional_map.php:183 +#: ../../enterprise/operation/agentes/manage_transmap_creation.php:83 +#: ../../enterprise/tools/ipam/ipam_supernet_config.php:150 +#: ../../enterprise/tools/ipam/ipam_action.php:100 +#: ../../enterprise/tools/ipam/ipam_vlan_config.php:130 +#: ../../extensions/files_repo.php:184 +#: ../../godmode/modules/manage_network_components.php:553 +#: ../../godmode/users/configure_user.php:138 +#: ../../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:605 +#: ../../godmode/alerts/alert_templates.php:253 +#: ../../godmode/alerts/alert_list.php:233 +#: ../../godmode/alerts/alert_list.php:340 ../../godmode/setup/news.php:121 +#: ../../godmode/setup/gis.php:59 +#: ../../godmode/reporting/reporting_builder.php:669 +#: ../../operation/agentes/pandora_networkmap.php:547 +#: ../../operation/messages/message_list.php:114 +#: ../../operation/snmpconsole/snmp_view.php:156 +#: ../../operation/gis_maps/gis_map.php:87 +#: ../../operation/incidents/list_integriaims_incidents.php:296 +msgid "Could not be deleted" +msgstr "" + +#: ../../views/dashboard/list.php:61 +msgid "Successfully duplicate" +msgstr "" + +#: ../../views/dashboard/list.php:62 +msgid "Could not be duplicate" +msgstr "" + +#: ../../views/dashboard/list.php:70 +msgid "There are no dashboards defined." +msgstr "" + +#: ../../views/dashboard/list.php:96 +msgid "Cells" +msgstr "" + +#: ../../views/dashboard/list.php:98 +msgid "Favorite" +msgstr "" + +#: ../../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:2279 +#: ../../operation/snmpconsole/snmp_statistics.php:54 +#: ../../operation/snmpconsole/snmp_browser.php:68 +#: ../../operation/snmpconsole/snmp_view.php:128 +#: ../../operation/events/events.php:1348 +msgid "Full screen" +msgstr "" + +#: ../../views/dashboard/list.php:102 +#: ../../enterprise/godmode/policies/policy_modules.php:1673 +#: ../../enterprise/godmode/policies/policies.php:570 +#: ../../enterprise/godmode/massive/massive_add_modules_policy.php:230 +#: ../../godmode/agentes/planned_downtime.list.php:623 +#: ../../godmode/agentes/planned_downtime.list.php:749 +#: ../../godmode/agentes/planned_downtime.list.php:795 +#: ../../godmode/alerts/alert_actions.php:330 +#: ../../godmode/reporting/map_builder.php:387 +#: ../../operation/agentes/pandora_networkmap.php:712 +#: ../../operation/agentes/pandora_networkmap.php:799 +msgid "Copy" +msgstr "" + +#: ../../views/dashboard/list.php:103 +#: ../../enterprise/meta/advanced/servers.build_table.php:133 +#: ../../enterprise/meta/advanced/metasetup.visual.php:434 +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:570 +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:598 +#: ../../enterprise/meta/advanced/metasetup.relations.php:589 +#: ../../enterprise/meta/advanced/metasetup.relations.php:590 +#: ../../enterprise/meta/advanced/metasetup.relations.php:634 +#: ../../enterprise/meta/advanced/links.php:157 +#: ../../enterprise/meta/advanced/policymanager.queue.php:220 +#: ../../enterprise/meta/advanced/policymanager.queue.php:262 +#: ../../enterprise/meta/advanced/policymanager.queue.php:319 +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:298 +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:464 +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:815 +#: ../../enterprise/meta/include/functions_autoprovision.php:517 +#: ../../enterprise/meta/include/functions_autoprovision.php:518 +#: ../../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:317 +#: ../../enterprise/godmode/modules/manage_inventory_modules.php:332 +#: ../../enterprise/godmode/modules/local_components.php:698 +#: ../../enterprise/godmode/modules/local_components.php:715 +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:807 +#: ../../enterprise/godmode/agentes/inventory_manager.php:249 +#: ../../enterprise/godmode/agentes/plugins_manager.php:196 +#: ../../enterprise/godmode/agentes/plugins_manager.php:281 +#: ../../enterprise/godmode/policies/policy_plugins.php:169 +#: ../../enterprise/godmode/policies/policy_alerts.php:539 +#: ../../enterprise/godmode/policies/policy_modules.php:1586 +#: ../../enterprise/godmode/policies/policy_modules.php:1618 +#: ../../enterprise/godmode/policies/policy_queue.php:611 +#: ../../enterprise/godmode/policies/policy_queue.php:675 +#: ../../enterprise/godmode/policies/policy_queue.php:722 +#: ../../enterprise/godmode/policies/policies.php:591 +#: ../../enterprise/godmode/policies/policy_external_alerts.php:550 +#: ../../enterprise/godmode/policies/policy_inventory_modules.php:334 +#: ../../enterprise/godmode/policies/policy_agents.php:1083 +#: ../../enterprise/godmode/policies/policy_agents.php:1545 +#: ../../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 +#: ../../enterprise/godmode/massive/massive_delete_services.php:92 +#: ../../enterprise/godmode/setup/setup_acl.php:595 +#: ../../enterprise/godmode/reporting/graph_template_list.php:246 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:646 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:674 +#: ../../enterprise/godmode/reporting/graph_template_item_editor.php:215 +#: ../../enterprise/godmode/reporting/graph_template_item_editor.php:225 +#: ../../enterprise/godmode/reporting/visual_console_template.php:273 +#: ../../enterprise/godmode/reporting/mysql_builder.php:97 +#: ../../enterprise/godmode/reporting/mysql_builder.php:104 +#: ../../enterprise/godmode/reporting/reporting_builder.template_list_item.php:389 +#: ../../enterprise/godmode/servers/credential_boxes_satellite.php:252 +#: ../../enterprise/godmode/servers/credential_boxes_satellite.php:287 +#: ../../enterprise/include/functions_tasklist.php:615 +#: ../../enterprise/include/functions_tasklist.php:650 +#: ../../enterprise/include/ajax/transactional.ajax.php:119 +#: ../../enterprise/include/ajax/transactional.ajax.php:208 +#: ../../enterprise/include/ajax/log_viewer.ajax.php:96 +#: ../../enterprise/include/ajax/servers.ajax.php:103 +#: ../../enterprise/include/class/DeploymentCenter.class.php:1537 +#: ../../enterprise/include/class/DeploymentCenter.class.php:1576 +#: ../../enterprise/include/class/NetworkConfigManager.class.php:644 +#: ../../enterprise/include/class/NetworkConfigManager.class.php:800 +#: ../../enterprise/include/class/NetworkConfigManager.class.php:976 +#: ../../enterprise/include/class/NetworkConfigManager.class.php:1123 +#: ../../enterprise/include/class/NetworkConfigManager.class.php:1331 +#: ../../enterprise/include/class/AgentRepository.class.php:788 +#: ../../enterprise/include/class/AgentRepository.class.php:823 +#: ../../enterprise/include/class/Omnishell.class.php:1163 +#: ../../enterprise/include/class/LogSource.class.php:772 +#: ../../enterprise/include/class/LogSource.class.php:894 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2441 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3096 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3416 +#: ../../enterprise/include/class/ManageBackups.class.php:275 +#: ../../enterprise/include/lib/ClusterViewer/ClusterManager.php:634 +#: ../../enterprise/include/lib/Metaconsole/Node.php:1193 +#: ../../enterprise/include/lib/Metaconsole/Node.php:1194 +#: ../../enterprise/operation/agentes/transactional_map.php:483 +#: ../../enterprise/operation/agentes/manage_transmap_creation.php:269 +#: ../../enterprise/operation/services/services.list.php:655 +#: ../../enterprise/tools/ipam/ipam_supernet_config.php:1297 +#: ../../enterprise/tools/ipam/ipam_network_location_config.php:288 +#: ../../enterprise/tools/ipam/ipam_network_location_config.php:304 +#: ../../enterprise/tools/ipam/ipam_ajax.php:136 +#: ../../enterprise/tools/ipam/ipam_vlan_config.php:807 +#: ../../extensions/files_repo/files_repo_list.php:151 +#: ../../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_network_components.php:868 +#: ../../godmode/modules/manage_network_components.php:869 +#: ../../godmode/modules/manage_network_components.php:898 +#: ../../godmode/modules/manage_network_templates.php:287 +#: ../../godmode/modules/manage_network_templates.php:300 +#: ../../godmode/groups/group_list.php:937 +#: ../../godmode/groups/group_list.php:938 +#: ../../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:825 +#: ../../godmode/agentes/agent_template.php:259 +#: ../../godmode/agentes/planned_downtime.list.php:625 +#: ../../godmode/agentes/planned_downtime.list.php:774 +#: ../../godmode/agentes/planned_downtime.editor.php:968 +#: ../../godmode/agentes/planned_downtime.editor.php:971 +#: ../../godmode/agentes/planned_downtime.editor.php:1021 +#: ../../godmode/agentes/fields_manager.php:155 +#: ../../godmode/agentes/module_manager_editor_common.php:1307 +#: ../../godmode/agentes/module_manager.php:868 +#: ../../godmode/agentes/module_manager.php:1228 +#: ../../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 +#: ../../godmode/snmpconsole/snmp_alert.php:1313 +#: ../../godmode/snmpconsole/snmp_filters.php:301 +#: ../../godmode/snmpconsole/snmp_filters.php:312 +#: ../../godmode/alerts/alert_actions.php:331 +#: ../../godmode/alerts/alert_actions.php:449 +#: ../../godmode/alerts/alert_list.list.php:927 +#: ../../godmode/alerts/alert_templates.php:446 +#: ../../godmode/setup/news.php:251 ../../godmode/setup/gis.php:70 +#: ../../godmode/setup/links.php:146 ../../godmode/setup/snmp_wizard.php:110 +#: ../../godmode/setup/setup_visuals.php:1374 +#: ../../godmode/setup/setup_visuals.php:1413 +#: ../../godmode/setup/setup_visuals.php:1433 +#: ../../godmode/reporting/reporting_builder.list_items.php:629 +#: ../../godmode/reporting/reporting_builder.list_items.php:667 +#: ../../godmode/reporting/reporting_builder.list_items.php:690 +#: ../../godmode/reporting/reporting_builder.list_items.php:791 +#: ../../godmode/reporting/create_container.php:630 +#: ../../godmode/reporting/create_container.php:683 +#: ../../godmode/reporting/map_builder.php:388 +#: ../../godmode/reporting/map_builder.php:512 +#: ../../godmode/reporting/map_builder.php:523 +#: ../../godmode/reporting/graphs.php:367 +#: ../../godmode/reporting/graphs.php:368 +#: ../../godmode/reporting/graphs.php:394 +#: ../../godmode/reporting/graph_builder.graph_editor.php:216 +#: ../../godmode/reporting/graph_builder.graph_editor.php:256 +#: ../../godmode/reporting/visual_console_builder.elements.php:763 +#: ../../godmode/reporting/reporting_builder.php:1207 +#: ../../godmode/reporting/reporting_builder.php:1291 +#: ../../godmode/events/event_filter.php:192 +#: ../../godmode/events/event_filter.php:211 +#: ../../godmode/events/event_responses.list.php:71 +#: ../../godmode/servers/servers.build_table.php:259 +#: ../../include/functions_cron.php:895 ../../include/functions_cron.php:923 +#: ../../include/class/ConfigPEN.class.php:264 +#: ../../include/class/NetworkMap.class.php:2798 +#: ../../include/class/ManageNetScanScripts.class.php:405 +#: ../../include/class/CredentialStore.class.php:1102 +#: ../../include/class/CredentialStore.class.php:1290 +#: ../../include/class/ModuleTemplates.class.php:933 +#: ../../include/class/ModuleTemplates.class.php:1211 +#: ../../include/class/CalendarManager.class.php:737 +#: ../../include/functions_container.php:191 +#: ../../include/functions_container.php:325 +#: ../../operation/visual_console/view.php:733 +#: ../../operation/agentes/pandora_networkmap.php:714 +#: ../../operation/agentes/pandora_networkmap.php:801 +#: ../../operation/messages/message_list.php:201 +#: ../../operation/messages/message_list.php:272 +#: ../../operation/messages/message_list.php:275 +#: ../../operation/messages/message_list.php:293 +#: ../../operation/snmpconsole/snmp_view.php:1038 +#: ../../operation/snmpconsole/snmp_view.php:1051 +#: ../../operation/snmpconsole/snmp_view.php:1220 +#: ../../operation/snmpconsole/snmp_view.php:1269 +#: ../../operation/gis_maps/gis_map.php:190 +#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:120 +#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:198 +#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:251 +#: ../../operation/incidents/list_integriaims_incidents.php:555 +msgid "Delete" +msgstr "" + +#: ../../views/dashboard/list.php:136 +#, php-format +msgid "Private for (%s)" +msgstr "" + +#: ../../views/dashboard/list.php:217 +msgid "Create a new dashboard" +msgstr "" + +#: ../../views/dashboard/list.php:232 +msgid "New dashboard" +msgstr "" + +#: ../../views/dashboard/widget.php:35 ../../views/dashboard/listWidgets.php:84 +msgid "Add widget" +msgstr "" + +#: ../../views/dashboard/widget.php:45 +msgid "Please select widget" +msgstr "" + +#: ../../views/dashboard/jsLayout.php:42 ../../extensions/agents_modules.php:76 +#: ../../operation/snmpconsole/snmp_view.php:1298 +#: ../../operation/events/events.php:2922 +msgid "Until next" +msgstr "" + +#: ../../views/dashboard/formDashboard.php:91 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:499 +#: ../../godmode/reporting/reporting_builder.php:936 +msgid "Private" +msgstr "" + +#: ../../views/dashboard/formDashboard.php:122 +#: ../../enterprise/godmode/massive/massive_create_services.php:809 +#: ../../enterprise/godmode/services/services.service.php:736 +#: ../../enterprise/godmode/reporting/visual_console_template.php:272 +msgid "Favourite" +msgstr "" + +#: ../../views/dashboard/cell.php:42 +msgid "New widget" +msgstr "" + +#: ../../views/dashboard/cell.php:56 +msgid "Configure widget" +msgstr "" + +#: ../../views/dashboard/cell.php:68 +msgid "Delete widget" +msgstr "" + +#: ../../views/dashboard/slides.php:41 +#: ../../operation/snmpconsole/snmp_view.php:741 +msgid "Exit fullscreen" +msgstr "" + +#: ../../views/dashboard/slides.php:181 +msgid "Change every" +msgstr "" + +#: ../../views/dashboard/slides.php:203 +#: ../../enterprise/meta/monitoring/wizard/wizard.agent.php:146 +#: ../../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:3875 +msgid "Previous" +msgstr "" + +#: ../../views/dashboard/slides.php:218 +#: ../../enterprise/operation/agentes/transactional_map.php:402 +#: ../../operation/menu.php:431 +msgid "Stop" +msgstr "" + +#: ../../views/dashboard/slides.php:229 +msgid "Pause" +msgstr "" + +#: ../../views/dashboard/slides.php:240 +#: ../../enterprise/meta/monitoring/wizard/wizard.agent.php:149 +#: ../../enterprise/meta/monitoring/wizard/wizard.module.local.php:214 +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:730 +#: ../../enterprise/meta/monitoring/wizard/wizard.module.network.php:262 +#: ../../enterprise/meta/monitoring/wizard/wizard.module.web.php:215 +#: ../../enterprise/meta/monitoring/wizard/wizard.php:132 +#: ../../enterprise/godmode/wizards/Cloud.class.php:579 +#: ../../enterprise/include/class/VMware.app.php:534 +#: ../../enterprise/include/class/Omnishell.class.php:643 +#: ../../enterprise/include/class/DB2.app.php:567 +#: ../../enterprise/include/class/SAP.app.php:442 +#: ../../enterprise/include/class/Aws.cloud.php:1423 +#: ../../enterprise/include/class/MySQL.app.php:589 +#: ../../enterprise/include/class/Oracle.app.php:574 +#: ../../enterprise/include/class/MicrosoftSQLServer.app.php:568 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:832 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1094 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1966 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2106 +#: ../../enterprise/include/lib/ClusterViewer/ClusterWizard.php:1200 +#: ../../godmode/alerts/configure_alert_template.php:1181 +#: ../../godmode/alerts/configure_alert_template.php:1188 +#: ../../godmode/wizards/HostDevices.class.php:769 +#: ../../include/class/CustomNetScan.class.php:550 +msgid "Next" +msgstr "" + +#: ../../views/dashboard/slides.php:252 +msgid "Mode Cell" +msgstr "" + +#: ../../views/dashboard/slides.php:258 +msgid "Mode Layout" +msgstr "" + +#: ../../enterprise/views/ncm/snippets/list.php:32 +#: ../../enterprise/views/ncm/snippets/edit.php:42 +#: ../../enterprise/views/ncm/templates/list.php:32 +#: ../../enterprise/views/ncm/templates/edit.php:42 +#: ../../enterprise/views/ncm/devices/list.php:32 +#: ../../enterprise/views/ncm/devices/list.php:67 +#: ../../enterprise/views/ncm/firmwares/list.php:32 +#: ../../enterprise/views/ncm/firmwares/edit.php:41 +#: ../../enterprise/views/ncm/models/list.php:32 +#: ../../enterprise/views/ncm/models/edit.php:37 +#: ../../enterprise/views/ncm/vendors/list.php:32 +#: ../../enterprise/views/ncm/vendors/edit.php:35 +#: ../../include/functions.php:1238 ../../include/functions_events.php:2893 +msgid "Network configuration manager" +msgstr "" + +#: ../../enterprise/views/ncm/snippets/list.php:32 +#: ../../enterprise/views/ncm/snippets/edit.php:42 +msgid "Snippets" +msgstr "" + +#: ../../enterprise/views/ncm/snippets/list.php:94 +#: ../../enterprise/views/ncm/templates/list.php:100 +#: ../../enterprise/views/ncm/devices/list.php:147 +#: ../../enterprise/views/ncm/firmwares/list.php:100 +#: ../../enterprise/views/cluster/list.php:87 +#: ../../enterprise/godmode/policies/policy_agents.php:436 +#: ../../enterprise/godmode/policies/policy_agents.php:468 +#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:335 +#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:358 +#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:209 +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:98 +#: ../../enterprise/godmode/reporting/graph_template_wizard.php:207 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:116 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:211 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:723 +#: ../../enterprise/include/class/Omnishell.class.php:812 +#: ../../enterprise/include/class/Omnishell.class.php:891 +#: ../../include/ajax/events.php:768 ../../include/functions_html.php:1244 +#: ../../include/functions_html.php:1397 +#: ../../include/functions_snmp_browser.php:1486 +msgid "Filter group" +msgstr "" + +#: ../../enterprise/views/ncm/snippets/edit.php:73 +#: ../../enterprise/views/ncm/templates/edit.php:73 +#: ../../enterprise/views/ncm/firmwares/edit.php:72 +msgid "Script not defined" +msgstr "" + +#: ../../enterprise/views/ncm/snippets/edit.php:91 +#: ../../enterprise/views/ncm/templates/edit.php:160 +#: ../../enterprise/views/ncm/templates/edit.php:188 +#: ../../enterprise/views/ncm/templates/edit.php:216 +#: ../../enterprise/views/ncm/templates/edit.php:244 +#: ../../enterprise/views/ncm/templates/edit.php:271 +#: ../../enterprise/views/ncm/templates/edit.php:298 +msgid "Script details" +msgstr "" + +#: ../../enterprise/views/ncm/snippets/edit.php:138 +#: ../../enterprise/views/ncm/agent/manage.php:135 +#: ../../enterprise/views/ncm/agent/manage.php:148 +#: ../../enterprise/views/ncm/agent/manage.php:181 +#: ../../enterprise/views/ncm/agent/manage.php:274 +#: ../../enterprise/views/ncm/agent/manage.php:309 +#: ../../enterprise/views/ncm/agent/details.php:256 +#: ../../enterprise/views/ncm/templates/edit.php:347 +#: ../../enterprise/godmode/massive/massive_delete_service_elements.php:188 +#: ../../enterprise/godmode/massive/massive_add_service_elements.php:329 +#: ../../enterprise/godmode/massive/massive_edit_service_elements.php:230 +#: ../../include/class/ExternalTools.class.php:537 +msgid "Please select" +msgstr "" + +#: ../../enterprise/views/ncm/agent/manage.php:57 +msgid "For instance Cisco" +msgstr "" + +#: ../../enterprise/views/ncm/agent/manage.php:59 +msgid "Device manufacturer" +msgstr "" + +#: ../../enterprise/views/ncm/agent/manage.php:87 +msgid "For instance Catalyst 9400" +msgstr "" + +#: ../../enterprise/views/ncm/agent/manage.php:89 +msgid "Device model" +msgstr "" + +#: ../../enterprise/views/ncm/agent/manage.php:102 +#: ../../godmode/agentes/module_manager_editor_network.php:482 +msgid "Connection method" +msgstr "" + +#: ../../enterprise/views/ncm/agent/manage.php:107 +msgid "connect using SSH" +msgstr "" + +#: ../../enterprise/views/ncm/agent/manage.php:108 +msgid "connect using telnet" +msgstr "" + +#: ../../enterprise/views/ncm/agent/manage.php:118 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:1063 +#: ../../enterprise/godmode/setup/setup_history.php:178 +#: ../../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: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:1533 +#: ../../include/class/AgentWizard.class.php:638 +#: ../../include/functions_snmp_browser.php:714 +msgid "Port" +msgstr "" + +#: ../../enterprise/views/ncm/agent/manage.php:131 +msgid "Credentials to access device" +msgstr "" + +#: ../../enterprise/views/ncm/agent/manage.php:144 +msgid "Credentials to administrate device" +msgstr "" + +#: ../../enterprise/views/ncm/agent/manage.php:177 +msgid "NCM template to be used" +msgstr "" + +#: ../../enterprise/views/ncm/agent/manage.php:190 +msgid "Backup schedule (if defined)" +msgstr "" + +#: ../../enterprise/views/ncm/agent/manage.php:195 +msgid "No schedule" +msgstr "" + +#: ../../enterprise/views/ncm/agent/manage.php:197 +msgid "Once a day" +msgstr "" + +#: ../../enterprise/views/ncm/agent/manage.php:198 +msgid "Once a week" +msgstr "" + +#: ../../enterprise/views/ncm/agent/manage.php:199 +msgid "Once a month" +msgstr "" + +#: ../../enterprise/views/ncm/agent/manage.php:218 +msgid "Launch event if configuration changes" +msgstr "" + +#: ../../enterprise/views/ncm/agent/manage.php:243 +msgid "NCM state" +msgstr "" + +#: ../../enterprise/views/ncm/agent/manage.php:259 +#: ../../enterprise/godmode/reporting/reporting_builder.template_editor.php:109 +#: ../../enterprise/godmode/reporting/mysql_builder.php:240 +#: ../../enterprise/include/ajax/transactional.ajax.php:83 +#: ../../extensions/insert_data.php:208 ../../godmode/setup/gis_step_2.php:521 +#: ../../godmode/setup/snmp_wizard.php:100 +#: ../../godmode/reporting/visual_console_builder.data.php:229 +#: ../../godmode/reporting/reporting_builder.main.php:45 +#: ../../operation/agentes/graphs.php:342 +msgid "Save" +msgstr "" + +#: ../../enterprise/views/ncm/agent/modalOnDemandScript.php:63 +msgid "Select firmware file to update to" +msgstr "" + +#: ../../enterprise/views/ncm/agent/modalOnDemandScript.php:75 +msgid "Transfer from url" +msgstr "" + +#: ../../enterprise/views/ncm/agent/modalOnDemandScript.php:86 +msgid "Target file name" +msgstr "" + +#: ../../enterprise/views/ncm/agent/modalOnDemandScript.php:105 +msgid "Customize execution" +msgstr "" + +#: ../../enterprise/views/ncm/agent/details.php:89 +msgid "Script type" +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 +#: ../../include/functions_reporting_html.php:4091 +#: ../../include/functions_reporting_html.php:4238 +#: ../../include/functions_reporting_html.php:4579 +#: ../../include/functions_reporting_html.php:4590 +#: ../../include/functions_db.php:1918 +msgid "Result" +msgstr "" + +#: ../../enterprise/views/ncm/agent/details.php:91 +msgid "Execution last timestamp" +msgstr "" + +#: ../../enterprise/views/ncm/agent/details.php:107 +msgid "Retrieve running configuration" +msgstr "" + +#: ../../enterprise/views/ncm/agent/details.php:120 +#: ../../enterprise/views/ncm/agent/details.php:383 +msgid "Restore from backup" +msgstr "" + +#: ../../enterprise/views/ncm/agent/details.php:133 +#: ../../enterprise/views/ncm/agent/details.php:325 +#: ../../enterprise/include/lib/NetworkManager.php:85 +msgid "Retrieve firmware version" +msgstr "" + +#: ../../enterprise/views/ncm/agent/details.php:172 +msgid "Running without a backup" +msgstr "" + +#: ../../enterprise/views/ncm/agent/details.php:181 +msgid "Latest configuration retrieved is different from backed one" +msgstr "" + +#: ../../enterprise/views/ncm/agent/details.php:184 +msgid "Backup up to date with latest configuration" +msgstr "" + +#: ../../enterprise/views/ncm/agent/details.php:208 +msgid "Configuration backup status" +msgstr "" + +#: ../../enterprise/views/ncm/agent/details.php:238 +msgid "Last on demand execution" +msgstr "" + +#: ../../enterprise/views/ncm/agent/details.php:246 +#, php-format +msgid "Customize %s" +msgstr "" + +#: ../../enterprise/views/ncm/agent/details.php:250 +msgid "Execute snippet" +msgstr "" + +#: ../../enterprise/views/ncm/agent/details.php:265 +#: ../../enterprise/meta/monitoring/wizard/wizard.agent.php:66 +#: ../../enterprise/meta/monitoring/wizard/wizard.module.local.php:110 +#: ../../enterprise/meta/monitoring/wizard/wizard.module.network.php:122 +#: ../../enterprise/meta/monitoring/wizard/wizard.module.web.php:103 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1539 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1632 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1757 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1832 +msgid "Preview" +msgstr "" + +#: ../../enterprise/views/ncm/agent/details.php:312 +#: ../../enterprise/meta/monitoring/custom_fields_csv.php:131 +#: ../../enterprise/meta/monitoring/custom_fields_view.php:182 +#: ../../enterprise/meta/monitoring/group_view.php:236 +#: ../../enterprise/meta/monitoring/group_view.php:242 +#: ../../enterprise/meta/monitoring/tactical.php:225 +#: ../../enterprise/godmode/massive/massive_add_modules_policy.php:122 +#: ../../enterprise/godmode/services/services.elements.php:377 +#: ../../enterprise/include/functions_cron.php:585 +#: ../../enterprise/include/functions_reporting_pdf.php:637 +#: ../../enterprise/include/functions_HA_cluster.php:70 +#: ../../enterprise/include/class/DatabaseHA.class.php:223 +#: ../../enterprise/include/functions_reporting.php:1890 +#: ../../enterprise/include/functions_reporting.php:2940 +#: ../../enterprise/include/functions_reporting.php:3928 +#: ../../enterprise/include/functions_reporting.php:4848 +#: ../../enterprise/include/functions_reporting.php:6159 +#: ../../enterprise/include/lib/NetworkManager.php:103 +#: ../../enterprise/include/lib/ClusterViewer/ClusterManager.php:582 +#: ../../enterprise/operation/agentes/transactional_map.php:339 +#: ../../enterprise/operation/agentes/transactional_map.php:385 +#: ../../enterprise/operation/agentes/tag_view.php:134 +#: ../../enterprise/operation/services/services.service.php:180 +#: ../../enterprise/operation/services/services.service_map.php:152 +#: ../../enterprise/operation/services/services.treeview_services.php:285 +#: ../../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 +#: ../../godmode/massive/massive_copy_modules.php:118 +#: ../../godmode/massive/massive_copy_modules.php:278 +#: ../../godmode/massive/massive_delete_modules.php:421 +#: ../../godmode/massive/massive_delete_modules.php:442 +#: ../../godmode/massive/massive_delete_agents.php:212 +#: ../../godmode/massive/massive_edit_agents.php:534 +#: ../../godmode/massive/massive_edit_modules.php:388 +#: ../../godmode/massive/massive_edit_modules.php:474 +#: ../../godmode/alerts/alert_list.builder.php:290 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3737 +#: ../../mobile/operation/agents.php:60 ../../mobile/operation/modules.php:72 +#: ../../include/graphs/functions_flot.php:305 +#: ../../include/functions_reporting_html.php:2347 +#: ../../include/functions_reporting_html.php:2360 +#: ../../include/functions_reporting_html.php:3340 +#: ../../include/functions_reporting_html.php:3748 +#: ../../include/functions.php:1225 ../../include/functions.php:4108 +#: ../../include/ajax/module.php:1071 ../../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_alerts.php:702 +#: ../../include/rest-api/models/VisualConsole/Items/Group.php:437 +#: ../../include/functions_reports.php:557 ../../include/functions_maps.php:54 +#: ../../include/functions_netflow.php:1865 +#: ../../include/functions_reporting.php:6285 +#: ../../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:670 +#: ../../include/functions_events.php:2841 ../../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:1728 +#: ../../operation/agentes/tactical.php:181 +#: ../../operation/events/events.php:725 +msgid "Unknown" +msgstr "" + +#: ../../enterprise/views/ncm/agent/details.php:314 +#, php-format +msgid "Current firmware version: %s" +msgstr "" + +#: ../../enterprise/views/ncm/agent/details.php:339 +#, php-format +msgid "Configuration backup present, %s" +msgstr "" + +#: ../../enterprise/views/ncm/agent/details.php:346 +msgid "There is no configuration backup" +msgstr "" + +#: ../../enterprise/views/ncm/agent/details.php:359 +msgid "Backup latest retrieved configuration" +msgstr "" + +#: ../../enterprise/views/ncm/agent/details.php:372 +#: ../../enterprise/include/class/ManageBackups.class.php:302 +#: ../../extensions/files_repo/files_repo_list.php:123 +msgid "Download" +msgstr "" + +#: ../../enterprise/views/ncm/agent/details.php:401 +#, php-format +msgid "Latest operation \"%s\" was executed %s ago with result: %s %s" +msgstr "" + +#: ../../enterprise/views/ncm/agent/details.php:414 +#, php-format +msgid "Script executions queued: %d" +msgstr "" + +#: ../../enterprise/views/ncm/agent/details.php:424 +#, php-format +msgid "Configuration backup schedule: %s" +msgstr "" + +#: ../../enterprise/views/ncm/agent/details.php:441 +msgid "Device details" +msgstr "" + +#: ../../enterprise/views/ncm/agent/details.php:483 +msgid "Configuration timestamp" +msgstr "" + +#: ../../enterprise/views/ncm/agent/details.php:484 +msgid "Diff" +msgstr "" + +#: ../../enterprise/views/ncm/agent/details.php:485 +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:468 +#: ../../enterprise/meta/advanced/collections.php:391 +#: ../../enterprise/meta/monitoring/wizard/wizard.php:140 +#: ../../enterprise/meta/include/functions_autoprovision.php:477 +#: ../../enterprise/meta/include/functions_alerts_meta.php:133 +#: ../../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:224 +#: ../../enterprise/godmode/agentes/collections.php:384 +#: ../../enterprise/godmode/policies/policy_alerts.php:353 +#: ../../enterprise/godmode/policies/policy_external_alerts.php:350 +#: ../../enterprise/godmode/policies/policy_external_alerts.php:384 +#: ../../enterprise/godmode/policies/policy_external_alerts.php:682 +#: ../../enterprise/godmode/policies/policy_inventory_modules.php:305 +#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:387 +#: ../../enterprise/godmode/alerts/alert_inventory_list.php:223 +#: ../../enterprise/godmode/setup/setup_skins.php:128 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2120 +#: ../../enterprise/include/functions_reporting_csv.php:2465 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2337 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2505 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3476 +#: ../../enterprise/include/class/ManageBackups.class.php:167 +#: ../../enterprise/operation/agentes/transactional_map.php:213 +#: ../../enterprise/operation/agentes/manage_transmap_creation.php:190 +#: ../../enterprise/operation/services/services.list.php:513 +#: ../../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/agentes/modificar_agente.php:653 +#: ../../godmode/agentes/planned_downtime.editor.php:927 +#: ../../godmode/agentes/fields_manager.php:121 ../../godmode/menu.php:265 +#: ../../godmode/alerts/alert_list.list.php:130 +#: ../../godmode/alerts/alert_list.list.php:499 +#: ../../godmode/alerts/alert_commands.php:659 +#: ../../godmode/alerts/alert_view.php:301 +#: ../../godmode/alerts/alert_list.builder.php:96 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2045 +#: ../../godmode/events/event_responses.list.php:53 +#: ../../godmode/tag/tag.php:284 ../../godmode/category/category.php:170 +#: ../../include/functions_reporting_html.php:3228 +#: ../../include/functions_cron.php:469 +#: ../../include/functions_treeview.php:413 +#: ../../include/class/AgentsAlerts.class.php:254 +#: ../../include/class/AgentsAlerts.class.php:285 +#: ../../include/functions_reporting.php:2843 +#: ../../include/functions_filemanager.php:607 +msgid "Actions" +msgstr "" + +#: ../../enterprise/views/ncm/agent/details.php:490 +msgid "No changes with current backup" +msgstr "" + +#: ../../enterprise/views/ncm/agent/details.php:494 +msgid "This is the latest configuration retrieved" +msgstr "" + +#: ../../enterprise/views/ncm/agent/details.php:507 +#: ../../enterprise/views/ncm/agent/details.php:511 +msgid "This is the current backup." +msgstr "" + +#: ../../enterprise/views/ncm/agent/details.php:523 +msgid "Review this configuration" +msgstr "" + +#: ../../enterprise/views/ncm/agent/details.php:534 +msgid "There is no backup to compare with" +msgstr "" + +#: ../../enterprise/views/ncm/agent/details.php:545 +msgid "Backup this configuration" +msgstr "" + +#: ../../enterprise/views/ncm/agent/details.php:563 +msgid "Configurations registry" +msgstr "" + +#: ../../enterprise/views/ncm/agent/details.php:574 +msgid "Diff between: backup - selected" +msgstr "" + +#: ../../enterprise/views/ncm/agent/details.php:600 +#: ../../enterprise/meta/monitoring/wizard/wizard.agent.php:64 +#: ../../enterprise/meta/monitoring/wizard/wizard.module.local.php:107 +#: ../../enterprise/meta/monitoring/wizard/wizard.module.network.php:119 +#: ../../enterprise/meta/monitoring/wizard/wizard.module.web.php:100 +#: ../../enterprise/godmode/modules/configure_local_component.php:483 +#: ../../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:351 +#: ../../godmode/agentes/planned_downtime.list.php:615 +#: ../../godmode/menu.php:241 ../../godmode/setup/setup.php:330 +#: ../../godmode/events/events.php:124 ../../include/functions_reports.php:898 +#: ../../include/functions_reports.php:902 +#: ../../include/class/ConfigPEN.class.php:327 +#: ../../include/class/ModuleTemplates.class.php:195 +#: ../../include/class/ModuleTemplates.class.php:213 +msgid "Configuration" +msgstr "" + +#: ../../enterprise/views/ncm/agent/details.php:624 +msgid "Retrieve firmware version?" +msgstr "" + +#: ../../enterprise/views/ncm/agent/details.php:625 +msgid "" +"This action will connect to the device to retrieve firmware version. Are you " +"sure?" +msgstr "" + +#: ../../enterprise/views/ncm/agent/details.php:635 +msgid "Get running config?" +msgstr "" + +#: ../../enterprise/views/ncm/agent/details.php:636 +msgid "" +"This action will connect to the device to retrieve latest configuration. Are " +"you sure?" +msgstr "" + +#: ../../enterprise/views/ncm/agent/details.php:647 +msgid "Backup latest config?" +msgstr "" + +#: ../../enterprise/views/ncm/agent/details.php:648 +msgid "" +"This action will overwrite current backup to use latest retrieved " +"configuration. Are you sure?" +msgstr "" + +#: ../../enterprise/views/ncm/agent/details.php:656 +msgid "Backup target config?" +msgstr "" + +#: ../../enterprise/views/ncm/agent/details.php:657 +msgid "" +"This action will overwrite current backup to use selected configuration. Are " +"you sure?" +msgstr "" + +#: ../../enterprise/views/ncm/agent/details.php:668 +msgid "Restore device configuration?" +msgstr "" + +#: ../../enterprise/views/ncm/agent/details.php:669 +msgid "" +"This action will overwrite device configuration with latest backup. Are you " +"sure?" +msgstr "" + +#: ../../enterprise/views/ncm/agent/details.php:688 +msgid "Customize script execution" +msgstr "" + +#: ../../enterprise/views/ncm/agent/details.php:689 +#: ../../include/ajax/events.php:2142 +#: ../../include/class/ExternalTools.class.php:581 +#: ../../include/functions_events.php:3422 +msgid "Execute" +msgstr "" + +#: ../../enterprise/views/ncm/templates/list.php:32 +#: ../../enterprise/meta/include/functions_alerts_meta.php:129 +#: ../../enterprise/meta/include/functions_alerts_meta.php:160 +#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:261 +#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:191 +#: ../../enterprise/godmode/reporting/graph_template_wizard.php:192 +#: ../../enterprise/godmode/reporting/visual_console_template.php:109 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2097 +#: ../../enterprise/include/functions_reporting.php:146 +#: ../../enterprise/include/functions_reporting.php:7984 +#: ../../enterprise/include/functions_reporting.php:8012 +#: ../../enterprise/include/functions_reporting.php:8083 +#: ../../godmode/agentes/configurar_agente.php:740 ../../godmode/menu.php:159 +#: ../../godmode/menu.php:261 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1980 +#: ../../include/functions_menu.php:510 +#: ../../include/class/ConfigPEN.class.php:332 +#: ../../include/class/ModuleTemplates.class.php:196 +#: ../../include/class/ModuleTemplates.class.php:214 +msgid "Templates" +msgstr "" + +#: ../../enterprise/views/ncm/templates/list.php:74 +#: ../../enterprise/views/ncm/templates/edit.php:107 +#: ../../enterprise/views/ncm/firmwares/edit.php:106 +#: ../../enterprise/views/ncm/vendors/list.php:32 +#: ../../enterprise/views/ncm/vendors/edit.php:35 +msgid "Vendors" +msgstr "" + +#: ../../enterprise/views/ncm/templates/list.php:75 +#: ../../enterprise/views/ncm/templates/edit.php:134 +#: ../../enterprise/views/ncm/firmwares/list.php:76 +#: ../../enterprise/views/ncm/firmwares/edit.php:133 +#: ../../enterprise/views/ncm/models/list.php:32 +msgid "Models" +msgstr "" + +#: ../../enterprise/views/ncm/templates/list.php:76 +msgid "Scripts defined" +msgstr "" + +#: ../../enterprise/views/ncm/templates/edit.php:42 +#: ../../enterprise/views/ncm/devices/list.php:32 +#: ../../enterprise/views/ncm/models/edit.php:37 +msgid "Devices" +msgstr "" + +#: ../../enterprise/views/ncm/templates/edit.php:102 +msgid "" +"Comma separated, a vendors list compatible with scripts defined within " +"template." +msgstr "" + +#: ../../enterprise/views/ncm/templates/edit.php:130 +msgid "" +"Comma separated, a model list compatible with scripts defined within " +"template." +msgstr "" + +#: ../../enterprise/views/ncm/templates/edit.php:148 +msgid "This script will be used to test devices availability" +msgstr "" + +#: ../../enterprise/views/ncm/templates/edit.php:153 +msgid "Script: Test" +msgstr "" + +#: ../../enterprise/views/ncm/templates/edit.php:176 +msgid "This script will be used to retrieve configuration from devices" +msgstr "" + +#: ../../enterprise/views/ncm/templates/edit.php:181 +msgid "Script: Get configuration" +msgstr "" + +#: ../../enterprise/views/ncm/templates/edit.php:204 +msgid "" +"This script will be used to apply configuration, previously backed up, to " +"devices" +msgstr "" + +#: ../../enterprise/views/ncm/templates/edit.php:209 +msgid "Script: set configuration" +msgstr "" + +#: ../../enterprise/views/ncm/templates/edit.php:232 +msgid "This script will be used to retrieve firmware version from devices" +msgstr "" + +#: ../../enterprise/views/ncm/templates/edit.php:237 +msgid "Script: get firmware" +msgstr "" + +#: ../../enterprise/views/ncm/templates/edit.php:259 +msgid "This script will be used to upgrade firmware version of the devices" +msgstr "" + +#: ../../enterprise/views/ncm/templates/edit.php:264 +msgid "Script: set firmware" +msgstr "" + +#: ../../enterprise/views/ncm/templates/edit.php:286 +msgid "This script will be executed on the devices when selecting CUSTOM task" +msgstr "" + +#: ../../enterprise/views/ncm/templates/edit.php:291 +msgid "Script: custom task" +msgstr "" + +#: ../../enterprise/views/ncm/devices/list.php:64 +#: ../../include/functions_reports.php:938 +msgid "NCM" +msgstr "" + +#: ../../enterprise/views/ncm/devices/list.php:69 +msgid "" +"WARNING: This is a new feature and is still at an early stage. It is " +"available with limited features, use it with caution and send us your " +"feedback to improve these current capabilities." +msgstr "" + +#: ../../enterprise/views/ncm/devices/list.php:72 +msgid "" +"Network configuration manager is used to keep configurations and software " +"versions of any network device in your infrastructure under your control." +msgstr "" + +#: ../../enterprise/views/ncm/devices/list.php:77 +msgid "" +"To start using it, navigatenavigate to your desired agent, tab Network " +"Config Manager, and enable the ncm features,\n" +" you will be asked for the vendor and model of the device." +msgstr "" + +#: ../../enterprise/views/ncm/devices/list.php:84 +msgid "Define a NCM template" +msgstr "" + +#: ../../enterprise/views/ncm/devices/list.php:87 +msgid "Configure agents to use NCM templates" +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:2036 +#: ../../enterprise/tools/ipam/ipam_network.php:395 +#: ../../enterprise/tools/ipam/ipam_supernet_config.php:546 +#: ../../enterprise/tools/ipam/ipam_vlan_wizard.php:53 +#: ../../enterprise/tools/ipam/ipam_vlan_wizard.php:254 +#: ../../enterprise/tools/ipam/ipam_excel.php:133 +#: ../../enterprise/tools/ipam/ipam_ajax.php:359 +#: ../../enterprise/tools/ipam/ipam_calculator.php:62 +#: ../../godmode/setup/setup_general.php:649 +#: ../../operation/agentes/ver_agente.php:1181 +msgid "Address" +msgstr "" + +#: ../../enterprise/views/ncm/devices/list.php:118 +#: ../../enterprise/views/ncm/firmwares/list.php:75 +#: ../../enterprise/views/ncm/models/list.php:72 +#: ../../enterprise/views/ncm/models/edit.php:88 +msgid "Vendor" +msgstr "" + +#: ../../enterprise/views/ncm/devices/list.php:119 +msgid "Model" +msgstr "" + +#: ../../enterprise/views/ncm/devices/list.php:120 +#: ../../enterprise/views/cluster/list.php:63 +#: ../../enterprise/meta/advanced/servers.build_table.php:61 +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:466 +#: ../../enterprise/meta/advanced/policymanager.queue.php:225 +#: ../../enterprise/meta/monitoring/custom_fields_view.php:707 +#: ../../enterprise/meta/include/functions_events_meta.php:78 +#: ../../enterprise/meta/agentsearch.php:140 +#: ../../enterprise/meta/agentsearch.php:330 +#: ../../enterprise/extensions/vmware/vmware_view.php:1085 +#: ../../enterprise/godmode/agentes/collection_manager.php:112 +#: ../../enterprise/godmode/agentes/collection_manager.php:209 +#: ../../enterprise/godmode/policies/policy_alerts.php:354 +#: ../../enterprise/godmode/policies/policy_modules.php:1466 +#: ../../enterprise/godmode/policies/policy_queue.php:616 +#: ../../enterprise/godmode/policies/policies.php:405 +#: ../../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/massive/massive_add_modules_policy.php:125 +#: ../../enterprise/godmode/admin_access_logs.php:50 +#: ../../enterprise/godmode/servers/HA_cluster.php:170 +#: ../../enterprise/godmode/servers/list_satellite.php:38 +#: ../../enterprise/include/functions_reporting_csv.php:718 +#: ../../enterprise/include/functions_reporting_csv.php:881 +#: ../../enterprise/include/functions_reporting_csv.php:1993 +#: ../../enterprise/include/functions_reporting_csv.php:2739 +#: ../../enterprise/include/class/ManageBackups.class.php:165 +#: ../../enterprise/include/functions_reporting.php:1858 +#: ../../enterprise/include/functions_reporting.php:2897 +#: ../../enterprise/include/functions_reporting.php:3884 +#: ../../enterprise/include/functions_reporting.php:6140 +#: ../../enterprise/include/functions_services.php:1613 +#: ../../enterprise/operation/agentes/policy_view.php:66 +#: ../../enterprise/operation/agentes/policy_view.php:166 +#: ../../enterprise/operation/agentes/policy_view.php:262 +#: ../../enterprise/operation/agentes/policy_view.php:397 +#: ../../enterprise/operation/agentes/tag_view.php:607 +#: ../../enterprise/operation/agentes/tag_view.php:685 +#: ../../enterprise/operation/agentes/collection_view.php:78 +#: ../../enterprise/operation/services/services.service.php:127 +#: ../../enterprise/operation/services/services.list.php:243 +#: ../../enterprise/operation/services/services.list.php:507 +#: ../../enterprise/operation/services/services.table_services.php:165 +#: ../../enterprise/tools/ipam/ipam_vlan_wizard.php:412 +#: ../../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:863 +#: ../../godmode/massive/massive_copy_modules.php:121 +#: ../../godmode/massive/massive_copy_modules.php:281 +#: ../../godmode/massive/massive_delete_modules.php:415 +#: ../../godmode/massive/massive_delete_agents.php:215 +#: ../../godmode/massive/massive_edit_agents.php:537 +#: ../../godmode/massive/massive_edit_agents.php:905 +#: ../../godmode/alerts/alert_list.list.php:142 +#: ../../godmode/alerts/alert_list.list.php:497 +#: ../../godmode/alerts/alert_view.php:114 +#: ../../godmode/setup/setup_integria.php:426 +#: ../../godmode/setup/setup_integria.php:548 +#: ../../godmode/reporting/reporting_builder.item_editor.php:77 +#: ../../godmode/events/custom_events.php:101 +#: ../../godmode/wizards/DiscoveryTaskList.class.php:600 +#: ../../godmode/servers/servers.build_table.php:80 +#: ../../mobile/operation/agents.php:97 ../../mobile/operation/agents.php:144 +#: ../../mobile/operation/agents.php:243 ../../mobile/operation/agents.php:244 +#: ../../mobile/operation/agents.php:406 ../../mobile/operation/modules.php:163 +#: ../../mobile/operation/modules.php:164 +#: ../../mobile/operation/modules.php:275 +#: ../../mobile/operation/modules.php:276 +#: ../../mobile/operation/modules.php:603 +#: ../../mobile/operation/modules.php:609 +#: ../../mobile/operation/modules.php:615 +#: ../../mobile/operation/modules.php:621 +#: ../../mobile/operation/modules.php:632 +#: ../../mobile/operation/modules.php:640 +#: ../../mobile/operation/modules.php:648 +#: ../../mobile/operation/modules.php:720 +#: ../../mobile/operation/modules.php:732 +#: ../../mobile/operation/modules.php:850 ../../mobile/operation/alerts.php:105 +#: ../../mobile/operation/alerts.php:106 ../../mobile/operation/alerts.php:247 +#: ../../mobile/operation/alerts.php:248 ../../mobile/operation/alerts.php:350 +#: ../../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:547 +#: ../../include/functions_reporting_html.php:1046 +#: ../../include/functions_reporting_html.php:1055 +#: ../../include/functions_reporting_html.php:1309 +#: ../../include/functions_reporting_html.php:1317 +#: ../../include/functions_reporting_html.php:1585 +#: ../../include/functions_reporting_html.php:2143 +#: ../../include/functions_reporting_html.php:2420 +#: ../../include/functions_reporting_html.php:2787 +#: ../../include/functions_reporting_html.php:3436 +#: ../../include/functions_reporting_html.php:3489 +#: ../../include/functions_reporting_html.php:5062 +#: ../../include/ajax/alert_list.ajax.php:296 +#: ../../include/ajax/alert_list.ajax.php:321 ../../include/ajax/module.php:980 +#: ../../include/ajax/custom_fields.php:416 +#: ../../include/functions_snmp.php:369 +#: ../../include/class/NetworkMap.class.php:2907 +#: ../../include/class/AgentsAlerts.class.php:894 +#: ../../include/class/ExternalTools.class.php:795 +#: ../../include/lib/Dashboard/Widgets/system_group_status.php:318 +#: ../../include/functions_snmp_browser.php:594 +#: ../../include/functions_events.php:204 +#: ../../include/functions_events.php:259 +#: ../../include/functions_events.php:2377 +#: ../../include/functions_events.php:4608 ../../operation/search_agents.php:56 +#: ../../operation/agentes/estado_agente.php:275 +#: ../../operation/agentes/estado_agente.php:763 +#: ../../operation/agentes/interface_view.functions.php:497 +#: ../../operation/agentes/status_monitor.php:1334 +#: ../../operation/agentes/alerts_status.functions.php:105 +#: ../../operation/messages/message_list.php:192 +#: ../../operation/snmpconsole/snmp_view.php:584 +#: ../../operation/snmpconsole/snmp_view.php:849 +#: ../../operation/snmpconsole/snmp_view.php:1226 +#: ../../operation/incidents/integriaims_export_csv.php:83 +#: ../../operation/incidents/configure_integriaims_incident.php:250 +#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:322 +#: ../../operation/incidents/list_integriaims_incidents.php:320 +#: ../../operation/search_modules.php:36 ../../operation/search_policies.php:38 +msgid "Status" +msgstr "" + +#: ../../enterprise/views/ncm/devices/list.php:121 +msgid "Last queued task" +msgstr "" + +#: ../../enterprise/views/ncm/devices/list.php:122 +#: ../../enterprise/operation/services/services.service.php:133 +#: ../../enterprise/operation/services/services.list.php:510 +#: ../../enterprise/tools/ipam/ipam_list.php:631 +#: ../../extensions/agents_modules.php:317 +#: ../../operation/agentes/group_view.php:80 +#: ../../operation/agentes/tactical.php:60 +msgid "Last update" +msgstr "" + +#: ../../enterprise/views/ncm/devices/list.php:123 +#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:136 +#: ../../enterprise/godmode/policies/policy_alerts.php:354 +#: ../../enterprise/godmode/alerts/alert_inventory_list.php:224 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:520 +#: ../../enterprise/include/functions_tasklist.php:158 +#: ../../godmode/massive/massive_copy_modules.php:185 +#: ../../godmode/alerts/alert_list.list.php:500 +#: ../../godmode/wizards/DiscoveryTaskList.class.php:612 +msgid "Operations" +msgstr "" + +#: ../../enterprise/views/ncm/firmwares/list.php:32 +msgid "Firmwares" +msgstr "" + +#: ../../enterprise/views/ncm/firmwares/list.php:74 +#: ../../enterprise/include/class/Omnishell.class.php:398 +#: ../../include/class/CredentialStore.class.php:803 +#: ../../include/class/CredentialStore.class.php:911 +msgid "Identifier" +msgstr "" + +#: ../../enterprise/views/ncm/firmwares/edit.php:41 +msgid "Firmware" +msgstr "" + +#: ../../enterprise/views/ncm/firmwares/edit.php:101 +msgid "" +"Comma separated, a vendors list compatible with scripts defined within " +"firmware." +msgstr "" + +#: ../../enterprise/views/ncm/firmwares/edit.php:129 +msgid "" +"Comma separated, a model list compatible with scripts defined within " +"firmware." +msgstr "" + +#: ../../enterprise/views/ncm/firmwares/edit.php:149 +#: ../../enterprise/meta/advanced/metasetup.consoles.php:439 +#: ../../enterprise/meta/monitoring/custom_fields_csv.php:127 +#: ../../enterprise/meta/monitoring/custom_fields_view.php:180 +#: ../../enterprise/meta/monitoring/group_view.php:239 +#: ../../enterprise/meta/monitoring/group_view.php:245 +#: ../../enterprise/meta/monitoring/tactical.php:223 +#: ../../enterprise/meta/include/functions_wizard_meta.php:977 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1062 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1265 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1285 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1502 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1587 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1707 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1727 +#: ../../enterprise/meta/index.php:863 ../../enterprise/meta/index.php:932 +#: ../../enterprise/godmode/agentes/manage_config_remote.php:313 +#: ../../enterprise/godmode/massive/massive_add_modules_policy.php:120 +#: ../../enterprise/godmode/massive/massive_create_services.php:747 +#: ../../enterprise/godmode/services/services.service.php:707 +#: ../../enterprise/godmode/services/services.service.php:958 +#: ../../enterprise/godmode/services/services.elements.php:368 +#: ../../enterprise/godmode/setup/setup_history.php:585 +#: ../../enterprise/include/class/CommandCenter.class.php:564 +#: ../../enterprise/include/class/CommandCenter.class.php:603 +#: ../../enterprise/include/functions_reporting.php:4838 +#: ../../enterprise/include/functions_services.php:1448 +#: ../../enterprise/include/functions_login.php:23 +#: ../../enterprise/operation/agentes/transactional_map.php:333 +#: ../../enterprise/operation/agentes/tag_view.php:132 +#: ../../enterprise/operation/services/services.service.php:123 +#: ../../enterprise/operation/services/services.service.php:174 +#: ../../enterprise/operation/services/services.service_map.php:150 +#: ../../enterprise/operation/services/services.treeview_services.php:280 +#: ../../enterprise/operation/services/services.list.php:238 +#: ../../enterprise/operation/services/services.list.php:505 +#: ../../enterprise/operation/services/services.list.php:564 +#: ../../enterprise/operation/services/services.table_services.php:160 +#: ../../update_manager_client/views/offline.php:80 +#: ../../extensions/dbmanager.php:129 +#: ../../godmode/modules/manage_network_components_form_wizard.php:384 +#: ../../godmode/groups/group_list.php:1059 +#: ../../godmode/users/configure_user.php:1644 +#: ../../godmode/massive/massive_copy_modules.php:116 +#: ../../godmode/massive/massive_copy_modules.php:276 +#: ../../godmode/massive/massive_delete_modules.php:419 +#: ../../godmode/massive/massive_delete_modules.php:440 +#: ../../godmode/massive/massive_delete_agents.php:210 +#: ../../godmode/massive/massive_edit_agents.php:532 +#: ../../godmode/massive/massive_edit_agents.php:981 +#: ../../godmode/massive/massive_edit_modules.php:386 +#: ../../godmode/massive/massive_edit_modules.php:472 +#: ../../godmode/setup/setup_netflow.php:71 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3735 +#: ../../mobile/operation/agents.php:59 ../../mobile/operation/modules.php:70 +#: ../../include/functions_reporting_html.php:2359 +#: ../../include/functions.php:1035 ../../include/functions.php:1273 +#: ../../include/functions.php:1276 ../../include/functions.php:1315 +#: ../../include/functions_graph.php:3493 +#: ../../include/functions_graph.php:3494 +#: ../../include/functions_graph.php:5068 ../../include/functions_ui.php:298 +#: ../../include/functions_ui.php:2610 +#: ../../include/rest-api/models/VisualConsole/Items/Group.php:423 +#: ../../include/class/Diagnostics.class.php:1809 +#: ../../include/class/AgentWizard.class.php:1315 +#: ../../include/class/AgentWizard.class.php:4021 +#: ../../include/lib/Dashboard/Widgets/system_group_status.php:312 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:386 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:419 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:665 +#: ../../include/functions_events.php:2937 ../../index.php:1179 +#: ../../operation/tree.php:213 ../../operation/tree.php:270 +#: ../../operation/tree.php:471 ../../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/netflow/nf_live_view.php:459 +#: ../../operation/gis_maps/render_view.php:165 +msgid "Warning" +msgstr "" + +#: ../../enterprise/views/ncm/firmwares/edit.php:149 +msgid "Current binary file will be overwritten, are you sure?" +msgstr "" + +#: ../../enterprise/views/ncm/firmwares/edit.php:154 +msgid "Binary file" +msgstr "" + +#: ../../enterprise/views/ncm/vendors/edit.php:89 +msgid "icon" +msgstr "" + +#: ../../enterprise/views/cluster/list.php:31 +#: ../../enterprise/meta/general/main_header.php:91 +#: ../../enterprise/meta/general/logon_ok.php:75 +#: ../../enterprise/meta/general/main_menu.php:181 +#: ../../enterprise/extensions/vmware/vmware_view.php:1394 +#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:53 +#: ../../enterprise/godmode/services/services.massive.meta.php:42 +#: ../../enterprise/godmode/services/services.massive.elements.php:44 +#: ../../enterprise/godmode/reporting/aws_view.php:115 +#: ../../enterprise/godmode/reporting/aws_view.php:148 +#: ../../enterprise/include/ajax/ipam.ajax.php:455 +#: ../../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/services.treeview_services.php:62 +#: ../../enterprise/operation/services/services.list.php:58 +#: ../../enterprise/operation/services/services.table_services.php:38 +#: ../../enterprise/tools/ipam/ipam_editor.php:261 +#: ../../extensions/agents_modules.php:474 +#: ../../extensions/module_groups.php:260 +#: ../../extensions/realtime_graphs.php:67 +#: ../../godmode/snmpconsole/snmp_trap_generator.php:47 +#: ../../godmode/snmpconsole/snmp_filters.php:55 +#: ../../include/class/AgentsAlerts.class.php:738 +#: ../../operation/heatmap.php:133 ../../operation/tree.php:183 +#: ../../operation/agentes/alerts_status.php:199 +#: ../../operation/agentes/estado_agente.php:224 +#: ../../operation/agentes/interface_view.php:72 +#: ../../operation/agentes/status_monitor.php:104 +#: ../../operation/agentes/group_view.php:98 +#: ../../operation/agentes/ver_agente.php:1915 +#: ../../operation/agentes/tactical.php:78 +#: ../../operation/snmpconsole/snmp_statistics.php:98 +#: ../../operation/snmpconsole/snmp_browser.php:86 +#: ../../operation/snmpconsole/snmp_view.php:693 +#: ../../operation/snmpconsole/snmp_view.php:802 +#: ../../operation/snmpconsole/snmp_mib_uploader.php:56 +#: ../../operation/menu.php:31 ../../operation/menu.php:154 +#: ../../general/first_task/cluster_builder.php:38 +msgid "Monitoring" +msgstr "" + +#: ../../enterprise/views/cluster/list.php:31 +#: ../../general/first_task/HA_cluster_builder.php:42 +#: ../../general/first_task/cluster_builder.php:29 +#: ../../general/first_task/cluster_builder.php:51 +msgid "Clusters" +msgstr "" + +#: ../../enterprise/views/cluster/list.php:61 +#: ../../enterprise/meta/advanced/servers.build_table.php:62 +#: ../../enterprise/meta/advanced/metasetup.relations.php:335 +#: ../../enterprise/meta/advanced/metasetup.relations.php:413 +#: ../../enterprise/meta/advanced/metasetup.relations.php:548 +#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:68 +#: ../../enterprise/godmode/modules/configure_local_component.php:212 +#: ../../enterprise/godmode/policies/policy_modules.php:1465 +#: ../../enterprise/godmode/services/services.elements.php:113 +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:83 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:104 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:207 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1654 +#: ../../enterprise/godmode/reporting/reporting_builder.template_list_item.php:201 +#: ../../enterprise/include/functions_reporting_csv.php:1605 +#: ../../enterprise/include/functions_reporting_csv.php:1721 +#: ../../enterprise/include/functions_reporting_csv.php:1961 +#: ../../enterprise/include/functions_reporting_csv.php:2029 +#: ../../enterprise/include/functions_services.php:1602 +#: ../../enterprise/operation/agentes/policy_view.php:396 +#: ../../enterprise/operation/agentes/tag_view.php:605 +#: ../../enterprise/operation/agentes/ver_agente.php:32 +#: ../../godmode/modules/manage_network_templates_form.php:232 +#: ../../godmode/modules/manage_network_components_form_common.php:64 +#: ../../godmode/modules/manage_network_components.php:750 +#: ../../godmode/update_manager/update_manager.history.php:41 +#: ../../godmode/agentes/agent_template.php:236 +#: ../../godmode/agentes/modificar_agente.php:650 +#: ../../godmode/agentes/planned_downtime.list.php:613 +#: ../../godmode/agentes/planned_downtime.editor.php:588 +#: ../../godmode/agentes/module_manager_editor_common.php:288 +#: ../../godmode/agentes/module_manager_editor_common.php:401 +#: ../../godmode/agentes/module_manager_editor_common.php:1305 +#: ../../godmode/agentes/module_manager.php:850 +#: ../../godmode/alerts/alert_templates.php:37 +#: ../../godmode/alerts/alert_templates.php:302 +#: ../../godmode/alerts/alert_templates.php:387 +#: ../../godmode/setup/news.php:247 ../../godmode/setup/gis_step_2.php:235 +#: ../../godmode/setup/setup_integria.php:408 +#: ../../godmode/setup/setup_integria.php:530 +#: ../../godmode/reporting/reporting_builder.list_items.php:212 +#: ../../godmode/reporting/reporting_builder.list_items.php:249 +#: ../../godmode/reporting/reporting_builder.list_items.php:372 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1034 +#: ../../godmode/reporting/visual_console_builder.wizard.php:135 +#: ../../godmode/reporting/visual_console_builder.wizard.php:283 +#: ../../godmode/events/event_responses.editor.php:159 +#: ../../godmode/servers/servers.build_table.php:81 +#: ../../godmode/servers/modificar_server.php:72 +#: ../../godmode/servers/plugin.php:816 +#: ../../mobile/operation/visualmaps.php:125 +#: ../../mobile/operation/visualmaps.php:126 +#: ../../mobile/operation/events.php:658 ../../mobile/operation/events.php:659 +#: ../../mobile/operation/events.php:812 ../../mobile/operation/events.php:972 +#: ../../mobile/operation/events.php:973 +#: ../../include/functions_visual_map_editor.php:702 +#: ../../include/functions_visual_map_editor.php:720 +#: ../../include/functions_visual_map_editor.php:848 +#: ../../include/functions_reporting_html.php:1049 +#: ../../include/functions_reporting_html.php:1057 +#: ../../include/functions_reporting_html.php:1311 +#: ../../include/functions_reporting_html.php:1319 +#: ../../include/functions_reporting_html.php:2426 +#: ../../include/functions_reporting_html.php:3482 +#: ../../include/functions_reporting_html.php:5249 +#: ../../include/ajax/heatmap.ajax.php:75 ../../include/ajax/module.php:977 +#: ../../include/rest-api/models/VisualConsole/Items/Percentile.php:467 +#: ../../include/functions_reports.php:1067 +#: ../../include/functions_html.php:5502 +#: ../../include/class/ModuleTemplates.class.php:1209 +#: ../../include/class/CalendarManager.class.php:1028 +#: ../../include/class/CalendarManager.class.php:1062 +#: ../../include/class/AgentWizard.class.php:1197 +#: ../../include/class/AgentWizard.class.php:4054 +#: ../../include/lib/Dashboard/Widgets/service_view.php:251 +#: ../../include/lib/Dashboard/Widgets/custom_graph.php:327 +#: ../../include/lib/Dashboard/Widgets/clock.php:221 +#: ../../include/functions_snmp_browser.php:564 +#: ../../include/functions_events.php:2359 +#: ../../include/functions_events.php:4563 +#: ../../operation/agentes/estado_agente.php:757 +#: ../../operation/agentes/ver_agente.php:1153 +#: ../../operation/netflow/nf_live_view.php:319 +#: ../../operation/incidents/configure_integriaims_incident.php:234 +#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:326 +#: ../../operation/search_modules.php:34 +msgid "Type" +msgstr "" + +#: ../../enterprise/views/cluster/list.php:62 +#: ../../include/functions_reporting_html.php:5684 +#: ../../operation/agentes/pandora_networkmap.php:708 +msgid "Nodes" +msgstr "" + +#: ../../enterprise/views/cluster/list.php:122 +msgid "New cluster" +msgstr "" + +#: ../../enterprise/views/cluster/view.php:44 +#: ../../enterprise/views/cluster/view.php:63 +#: ../../enterprise/views/cluster/edit.php:41 +#: ../../enterprise/views/cluster/edit.php:68 +msgid "Cluster list" +msgstr "" + +#: ../../enterprise/views/cluster/view.php:50 +#: ../../enterprise/views/cluster/view.php:81 +msgid "Cluster details" +msgstr "" + +#: ../../enterprise/views/cluster/view.php:74 +msgid "Edit this cluster" +msgstr "" + +#: ../../enterprise/views/cluster/view.php:162 +#: ../../enterprise/views/cluster/view.php:164 +#: ../../enterprise/meta/include/functions_wizard_meta.php:240 +#: ../../enterprise/meta/include/functions_wizard_meta.php:525 +#: ../../enterprise/meta/include/functions_wizard_meta.php:597 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1145 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1530 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1623 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1817 +#: ../../enterprise/meta/agentsearch.php:251 +#: ../../enterprise/meta/agentsearch.php:258 +#: ../../enterprise/godmode/modules/configure_local_component.php:459 +#: ../../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/massive/massive_edit_policy_modules.php:701 +#: ../../enterprise/godmode/setup/edit_skin.php:276 +#: ../../enterprise/include/class/VMware.app.php:888 +#: ../../enterprise/include/class/DatabaseHA.class.php:211 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2038 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3255 +#: ../../enterprise/include/lib/NetworkManager.php:190 +#: ../../enterprise/include/functions_policies.php:4782 +#: ../../godmode/groups/group_list.php:908 +#: ../../godmode/agentes/modificar_agente.php:761 +#: ../../godmode/agentes/module_manager_editor_common.php:257 +#: ../../godmode/agentes/module_manager_editor_common.php:897 +#: ../../godmode/agentes/module_manager_editor_common.php:1059 +#: ../../godmode/massive/massive_edit_agents.php:917 +#: ../../godmode/massive/massive_edit_agents.php:1017 +#: ../../godmode/massive/massive_edit_modules.php:765 +#: ../../godmode/alerts/alert_list.list.php:149 +#: ../../godmode/alerts/configure_alert_template.php:899 +#: ../../godmode/alerts/alert_view.php:541 ../../mobile/operation/agent.php:167 +#: ../../mobile/operation/alerts.php:68 +#: ../../include/functions_visual_map_editor.php:826 +#: ../../include/functions_reporting_html.php:3448 +#: ../../include/functions_treeview.php:72 +#: ../../include/functions_treeview.php:613 +#: ../../include/rest-api/models/VisualConsole/Items/StaticGraph.php:405 +#: ../../include/functions_reporting.php:6505 +#: ../../operation/search_agents.php:93 +#: ../../operation/agentes/estado_generalagente.php:99 +#: ../../operation/agentes/estado_generalagente.php:101 +#: ../../operation/agentes/alerts_status.functions.php:99 +msgid "Disabled" +msgstr "" + +#: ../../enterprise/views/cluster/view.php:168 +#: ../../enterprise/views/cluster/view.php:170 +#: ../../enterprise/godmode/massive/massive_create_services.php:819 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:1028 +#: ../../enterprise/godmode/services/services.service.php:746 +#: ../../godmode/agentes/modificar_agente.php:775 +#: ../../godmode/agentes/planned_downtime.list.php:655 +#: ../../godmode/agentes/planned_downtime.editor.php:594 +#: ../../godmode/agentes/agent_manager.php:683 +#: ../../godmode/agentes/module_manager_editor_common.php:1056 +#: ../../godmode/agentes/module_manager.php:985 +#: ../../godmode/massive/massive_edit_agents.php:990 +#: ../../godmode/massive/massive_edit_modules.php:1104 +#: ../../mobile/operation/agent.php:174 ../../include/ajax/module.php:1128 +#: ../../include/class/Tree.class.php:907 ../../operation/search_agents.php:100 +#: ../../operation/agentes/estado_agente.php:831 +#: ../../operation/agentes/estado_generalagente.php:110 +#: ../../operation/agentes/estado_generalagente.php:120 +msgid "Quiet" +msgstr "" + +#: ../../enterprise/views/cluster/view.php:178 +#: ../../enterprise/views/cluster/view.php:186 +#: ../../godmode/agentes/modificar_agente.php:783 +#: ../../operation/search_agents.php:111 +#: ../../operation/agentes/estado_agente.php:839 +#: ../../operation/agentes/estado_generalagente.php:131 +#: ../../operation/agentes/estado_generalagente.php:139 +msgid "Agent in scheduled downtime" +msgstr "" + +#: ../../enterprise/views/cluster/view.php:223 +msgid "Force cluster status calculation" +msgstr "" + +#: ../../enterprise/views/cluster/view.php:253 +#: ../../enterprise/meta/agentsearch.php:136 +#: ../../enterprise/godmode/modules/configure_local_component.php:177 +#: ../../enterprise/godmode/modules/manage_inventory_modules.php:274 +#: ../../enterprise/godmode/modules/local_components.php:561 +#: ../../enterprise/godmode/modules/local_components.php:586 +#: ../../enterprise/godmode/modules/local_components.php:622 +#: ../../enterprise/godmode/modules/manage_inventory_modules_form.php:103 +#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:254 +#: ../../enterprise/include/functions_reporting_csv.php:718 +#: ../../enterprise/include/class/DeploymentCenter.class.php:756 +#: ../../enterprise/include/class/DeploymentCenter.class.php:817 +#: ../../enterprise/include/class/DeploymentCenter.class.php:1289 +#: ../../enterprise/include/class/DeploymentCenter.class.php:1397 +#: ../../enterprise/include/class/AgentRepository.class.php:352 +#: ../../enterprise/include/class/AgentRepository.class.php:640 +#: ../../enterprise/include/class/AgentRepository.class.php:686 +#: ../../enterprise/operation/agentes/tag_view.php:602 +#: ../../enterprise/tools/ipam/ipam_network.php:398 +#: ../../godmode/agentes/modificar_agente.php:649 +#: ../../godmode/agentes/planned_downtime.editor.php:922 +#: ../../godmode/agentes/agent_manager.php:392 +#: ../../godmode/massive/massive_edit_agents.php:719 +#: ../../godmode/reporting/reporting_builder.item_editor.php:71 +#: ../../mobile/operation/agents.php:94 ../../mobile/operation/agents.php:404 +#: ../../include/functions_reporting_html.php:1561 +#: ../../include/functions_reporting_html.php:3433 +#: ../../include/ajax/heatmap.ajax.php:325 +#: ../../include/class/Diagnostics.class.php:748 +#: ../../include/lib/Dashboard/Widgets/os_quick_report.php:283 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:332 +#: ../../include/functions_events.php:4039 ../../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 +#: ../../operation/gis_maps/ajax.php:297 +msgid "OS" +msgstr "" + +#: ../../enterprise/views/cluster/view.php:273 +#: ../../operation/agentes/estado_generalagente.php:212 +msgid "IP address" +msgstr "" + +#: ../../enterprise/views/cluster/view.php:278 +#: ../../enterprise/views/cluster/view.php:293 +#: ../../enterprise/meta/advanced/servers.build_table.php:100 +#: ../../enterprise/meta/advanced/servers.build_table.php:101 +#: ../../enterprise/meta/advanced/servers.build_table.php:107 +#: ../../enterprise/meta/advanced/metasetup.visual.php:895 +#: ../../enterprise/include/functions_visual_map.php:320 +#: ../../enterprise/include/functions_servicemap.php:471 +#: ../../enterprise/include/functions_aws.php:507 +#: ../../enterprise/include/functions_aws.php:508 +#: ../../enterprise/include/functions_reporting.php:6158 +#: ../../enterprise/include/functions_services.php:1190 +#: ../../enterprise/include/functions_services.php:1371 +#: ../../enterprise/include/functions_services.php:2081 +#: ../../enterprise/include/lib/Metaconsole/Node.php:453 +#: ../../enterprise/include/lib/Metaconsole/Node.php:1129 +#: ../../enterprise/tools/ipam/ipam_network.php:435 +#: ../../enterprise/tools/ipam/ipam_network.php:515 +#: ../../enterprise/tools/ipam/ipam_ajax.php:366 +#: ../../enterprise/tools/ipam/ipam_ajax.php:387 +#: ../../godmode/modules/manage_network_components.php:776 +#: ../../godmode/modules/manage_network_components.php:777 +#: ../../godmode/extensions.php:186 ../../godmode/extensions.php:201 +#: ../../godmode/agentes/planned_downtime.list.php:812 +#: ../../godmode/alerts/alert_view.php:135 +#: ../../godmode/servers/servers.build_table.php:147 +#: ../../godmode/servers/servers.build_table.php:148 +#: ../../godmode/servers/servers.build_table.php:154 +#: ../../mobile/operation/agent.php:192 ../../mobile/operation/agent.php:200 +#: ../../mobile/operation/events.php:307 ../../mobile/operation/events.php:319 +#: ../../mobile/operation/events.php:334 ../../mobile/operation/events.php:443 +#: ../../mobile/operation/events.php:493 ../../mobile/operation/events.php:509 +#: ../../include/functions_servers.php:1362 +#: ../../include/functions_reporting_html.php:651 +#: ../../include/functions_reporting_html.php:654 +#: ../../include/functions_reporting_html.php:5323 +#: ../../include/functions_reporting_html.php:5376 +#: ../../include/functions.php:1124 ../../include/functions.php:1130 +#: ../../include/functions.php:1134 ../../include/ajax/module.php:1168 +#: ../../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/functions_events.php:3396 +#: ../../include/functions_events.php:3509 +#: ../../include/functions_events.php:3529 +#: ../../include/functions_events.php:3538 +#: ../../include/functions_events.php:3547 +#: ../../include/functions_events.php:3548 +#: ../../include/functions_events.php:3560 +#: ../../include/functions_events.php:3611 +#: ../../include/functions_events.php:3644 +#: ../../include/functions_events.php:3710 +#: ../../include/functions_events.php:3727 +#: ../../include/functions_events.php:3734 +#: ../../include/functions_events.php:3800 +#: ../../include/functions_events.php:3872 +#: ../../include/functions_events.php:3996 +#: ../../include/functions_events.php:4035 +#: ../../include/functions_events.php:4049 +#: ../../include/functions_events.php:4054 +#: ../../include/functions_events.php:4084 +#: ../../include/functions_events.php:4170 +#: ../../include/functions_events.php:4250 +#: ../../include/functions_events.php:4260 +#: ../../include/functions_events.php:4477 +#: ../../include/functions_events.php:4548 +#: ../../include/functions_events.php:4637 +#: ../../include/functions_events.php:4666 +#: ../../include/functions_events.php:4681 +#: ../../include/functions_events.php:4691 +#: ../../include/functions_events.php:4701 +#: ../../include/functions_events.php:5131 +#: ../../include/functions_events.php:5145 +#: ../../include/functions_events.php:5150 +#: ../../include/functions_events.php:5153 +#: ../../include/functions_events.php:5161 +#: ../../include/functions_events.php:5170 +#: ../../include/functions_events.php:5182 +#: ../../include/functions_events.php:5235 +#: ../../include/functions_events.php:5262 +#: ../../include/functions_events.php:5287 +#: ../../include/functions_events.php:5331 +#: ../../operation/agentes/interface_view.functions.php:682 +#: ../../operation/agentes/interface_view.functions.php:683 +#: ../../operation/agentes/interface_view.functions.php:684 +#: ../../operation/agentes/interface_view.functions.php:685 +#: ../../operation/agentes/interface_view.functions.php:686 +#: ../../operation/agentes/status_monitor.php:1710 +#: ../../operation/agentes/estado_generalagente.php:217 +#: ../../operation/agentes/estado_generalagente.php:230 +#: ../../operation/agentes/estado_generalagente.php:242 +#: ../../operation/agentes/estado_generalagente.php:411 +#: ../../operation/agentes/estado_generalagente.php:427 +#: ../../operation/agentes/estado_generalagente.php:438 +#: ../../operation/snmpconsole/snmp_view.php:974 +#: ../../operation/snmpconsole/snmp_view.php:994 +msgid "N/A" +msgstr "" + +#: ../../enterprise/views/cluster/view.php:309 +#: ../../include/functions_treeview.php:731 +#: ../../operation/agentes/estado_generalagente.php:225 +#: ../../operation/gis_maps/ajax.php:341 +msgid "Agent Version" +msgstr "" + +#: ../../enterprise/views/cluster/view.php:314 +msgid "Cluster agent" +msgstr "" + +#: ../../enterprise/views/cluster/view.php:369 +#: ../../operation/agentes/estado_generalagente.php:890 +msgid "Events (Last 24h)" +msgstr "" + +#: ../../enterprise/views/cluster/view.php:441 +#: ../../operation/agentes/stat_win.php:451 +#: ../../operation/agentes/interface_traffic_graph_win.php:276 +msgid "Reload" +msgstr "" + +#: ../../enterprise/views/cluster/edit.php:57 +msgid "cluster " +msgstr "" + +#: ../../enterprise/views/cluster/edit.php:88 +msgid "View this cluster" +msgstr "" + +#: ../../enterprise/views/ipam/sites/list.php:48 +#: ../../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/agentes/agent_manager.php:565 +#: ../../godmode/massive/massive_edit_agents.php:648 +#: ../../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:1218 +#: ../../operation/agentes/estado_generalagente.php:425 +msgid "Parent" +msgstr "" + +#: ../../enterprise/views/ipam/sites/edit.php:71 +#: ../../enterprise/meta/advanced/metasetup.visual.php:289 +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:833 +#: ../../enterprise/meta/advanced/metasetup.relations.php:245 +#: ../../enterprise/meta/advanced/metasetup.setup.php:394 +#: ../../enterprise/meta/advanced/metasetup.setup.php:400 +#: ../../enterprise/meta/advanced/metasetup.setup.php:410 +#: ../../enterprise/meta/advanced/metasetup.setup.php:416 +#: ../../enterprise/meta/monitoring/custom_fields_view.php:256 +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:266 +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:363 +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:420 +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:688 +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:759 +#: ../../enterprise/meta/monitoring/wizard/wizard.php:142 +#: ../../enterprise/meta/event/custom_events.php:227 +#: ../../enterprise/meta/event/custom_events.php:273 +#: ../../enterprise/godmode/modules/configure_local_component.php:543 +#: ../../enterprise/godmode/modules/configure_local_component.php:698 +#: ../../enterprise/godmode/modules/configure_local_component.php:704 +#: ../../enterprise/godmode/modules/configure_local_component.php:712 +#: ../../enterprise/godmode/modules/configure_local_component.php:718 +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:992 +#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:473 +#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:604 +#: ../../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:579 +#: ../../enterprise/godmode/policies/policy_external_alerts.php:688 +#: ../../enterprise/godmode/policies/policy_agents.php:391 +#: ../../enterprise/godmode/policies/policy_agents.php:1694 +#: ../../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 +#: ../../enterprise/godmode/massive/massive_add_alerts_policy.php:132 +#: ../../enterprise/godmode/massive/massive_add_alerts_policy.php:144 +#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:396 +#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:473 +#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:549 +#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:550 +#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:551 +#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:552 +#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:601 +#: ../../enterprise/godmode/massive/massive_delete_alerts_snmp.php:28 +#: ../../enterprise/godmode/massive/massive_delete_alerts_snmp.php:205 +#: ../../enterprise/godmode/massive/massive_delete_alerts_snmp.php:244 +#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:29 +#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:265 +#: ../../enterprise/godmode/massive/massive_tags_edit_policy.php:117 +#: ../../enterprise/godmode/massive/massive_tags_edit_policy.php:197 +#: ../../enterprise/godmode/massive/massive_delete_alerts_policy.php:121 +#: ../../enterprise/godmode/massive/massive_delete_alerts_policy.php:142 +#: ../../enterprise/godmode/massive/massive_delete_alerts_policy.php:154 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:471 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:862 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:977 +#: ../../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:591 +#: ../../enterprise/godmode/setup/setup.php:608 +#: ../../enterprise/godmode/setup/setup.php:617 +#: ../../enterprise/godmode/setup/setup.php:634 +#: ../../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 +#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:810 +#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:820 +#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:830 +#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:834 +#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:861 +#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:194 +#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:578 +#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:597 +#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:611 +#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:621 +#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:631 +#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:635 +#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:661 +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:60 +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:527 +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:544 +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:560 +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:576 +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:600 +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:616 +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:658 +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:691 +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:702 +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:721 +#: ../../enterprise/godmode/reporting/graph_template_wizard.php:193 +#: ../../enterprise/godmode/reporting/graph_template_wizard.php:398 +#: ../../enterprise/godmode/reporting/graph_template_wizard.php:417 +#: ../../enterprise/godmode/reporting/graph_template_wizard.php:428 +#: ../../enterprise/godmode/reporting/graph_template_wizard.php:443 +#: ../../enterprise/godmode/reporting/graph_template_wizard.php:475 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:81 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:401 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:424 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:937 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:953 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:974 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:983 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:1340 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:1368 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:1389 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:1416 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:184 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:451 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:596 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:604 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:614 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:636 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:689 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:722 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:744 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:754 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:775 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:797 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:822 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:845 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:866 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:1148 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:1272 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:1287 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:1297 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:1312 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:1334 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:314 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2988 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3205 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3289 +#: ../../enterprise/godmode/reporting/visual_console_builder.wizard_services.php:215 +#: ../../enterprise/godmode/reporting/visual_console_builder.wizard_services.php:247 +#: ../../enterprise/godmode/reporting/visual_console_builder.wizard_services.php:253 +#: ../../enterprise/godmode/reporting/visual_console_builder.wizard_services.php:265 +#: ../../enterprise/godmode/reporting/visual_console_builder.wizard_services.php:275 +#: ../../enterprise/godmode/servers/manage_export_form.php:85 +#: ../../enterprise/include/functions_tasklist.php:317 +#: ../../enterprise/include/ajax/ipam.ajax.php:400 +#: ../../enterprise/include/ajax/ipam.ajax.php:428 +#: ../../enterprise/include/class/Omnishell.class.php:858 +#: ../../enterprise/include/class/Omnishell.class.php:859 +#: ../../enterprise/include/class/SAP.app.php:615 +#: ../../enterprise/include/class/SAP.app.php:810 +#: ../../enterprise/include/class/SAP.app.php:811 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:895 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:922 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1032 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1185 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1195 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2002 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2511 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2556 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3523 +#: ../../enterprise/operation/agentes/ver_agente.php:38 +#: ../../enterprise/operation/log/log_viewer.php:735 +#: ../../enterprise/tools/ipam/ipam_network.php:594 +#: ../../enterprise/tools/ipam/ipam_supernet_config.php:611 +#: ../../enterprise/tools/ipam/ipam_supernet_config.php:783 +#: ../../enterprise/tools/ipam/ipam_list.php:112 +#: ../../enterprise/tools/ipam/ipam_list.php:135 +#: ../../enterprise/tools/ipam/ipam_list.php:157 +#: ../../enterprise/tools/ipam/ipam_editor.php:206 +#: ../../enterprise/tools/ipam/ipam_editor.php:234 +#: ../../godmode/modules/manage_nc_groups_form.php:77 +#: ../../godmode/modules/manage_network_components_form_plugin.php:41 +#: ../../godmode/modules/manage_network_components_form_common.php:343 +#: ../../godmode/modules/manage_network_components_form_network.php:248 +#: ../../godmode/modules/manage_network_components_form.php:642 +#: ../../godmode/modules/manage_network_components_form.php:648 +#: ../../godmode/modules/manage_network_components_form.php:657 +#: ../../godmode/modules/manage_network_components_form.php:663 +#: ../../godmode/groups/configure_group.php:188 +#: ../../godmode/groups/configure_group.php:210 +#: ../../godmode/users/configure_user.php:1054 +#: ../../godmode/users/configure_user.php:1068 +#: ../../godmode/users/configure_user.php:1262 +#: ../../godmode/users/configure_user.php:1274 +#: ../../godmode/agentes/status_monitor_custom_fields.php:218 +#: ../../godmode/agentes/status_monitor_custom_fields.php:266 +#: ../../godmode/agentes/module_manager_editor_plugin.php:55 +#: ../../godmode/agentes/module_manager_editor_network.php:465 +#: ../../godmode/agentes/agent_manager.php:428 +#: ../../godmode/agentes/agent_manager.php:461 +#: ../../godmode/agentes/agent_manager.php:718 +#: ../../godmode/agentes/agent_manager.php:884 +#: ../../godmode/agentes/module_manager_editor_common.php:733 +#: ../../godmode/agentes/module_manager_editor_common.php:1149 +#: ../../godmode/agentes/module_manager_editor_common.php:1405 +#: ../../godmode/agentes/module_manager_editor_common.php:1412 +#: ../../godmode/agentes/module_manager_editor_common.php:1423 +#: ../../godmode/agentes/module_manager_editor_common.php:1431 +#: ../../godmode/snmpconsole/snmp_alert.php:40 +#: ../../godmode/snmpconsole/snmp_alert.php:1169 +#: ../../godmode/massive/massive_copy_modules.php:374 +#: ../../godmode/massive/massive_copy_modules.php:508 +#: ../../godmode/massive/massive_delete_modules.php:502 +#: ../../godmode/massive/massive_delete_modules.php:594 +#: ../../godmode/massive/massive_delete_modules.php:679 +#: ../../godmode/massive/massive_delete_modules.php:728 +#: ../../godmode/massive/massive_delete_modules.php:736 +#: ../../godmode/massive/massive_delete_modules.php:737 +#: ../../godmode/massive/massive_delete_modules.php:738 +#: ../../godmode/massive/massive_delete_modules.php:739 +#: ../../godmode/massive/massive_delete_modules.php:805 +#: ../../godmode/massive/massive_delete_modules.php:835 +#: ../../godmode/massive/massive_add_alerts.php:304 +#: ../../godmode/massive/massive_edit_plugins.php:338 +#: ../../godmode/massive/massive_edit_agents.php:740 +#: ../../godmode/massive/massive_delete_alerts.php:365 +#: ../../godmode/massive/massive_add_action_alerts.php:341 +#: ../../godmode/massive/massive_edit_modules.php:458 +#: ../../godmode/massive/massive_edit_modules.php:919 +#: ../../godmode/massive/massive_edit_modules.php:1053 +#: ../../godmode/massive/massive_edit_modules.php:1169 +#: ../../godmode/massive/massive_edit_modules.php:1204 +#: ../../godmode/massive/massive_edit_modules.php:1259 +#: ../../godmode/massive/massive_edit_modules.php:1345 +#: ../../godmode/massive/massive_edit_modules.php:1418 +#: ../../godmode/massive/massive_edit_modules.php:1527 +#: ../../godmode/massive/massive_edit_modules.php:1528 +#: ../../godmode/massive/massive_edit_modules.php:1529 +#: ../../godmode/massive/massive_edit_modules.php:1530 +#: ../../godmode/massive/massive_edit_modules.php:1769 +#: ../../godmode/massive/massive_edit_modules.php:1829 +#: ../../godmode/alerts/alert_actions.php:291 +#: ../../godmode/alerts/alert_list.list.php:763 +#: ../../godmode/alerts/alert_commands.php:302 +#: ../../godmode/alerts/alert_commands.php:316 +#: ../../godmode/alerts/alert_commands.php:376 +#: ../../godmode/alerts/alert_commands.php:389 +#: ../../godmode/alerts/configure_alert_template.php:650 +#: ../../godmode/alerts/configure_alert_template.php:777 +#: ../../godmode/alerts/configure_alert_template.php:798 +#: ../../godmode/setup/os.builder.php:41 +#: ../../godmode/setup/setup_visuals.php:401 +#: ../../godmode/setup/setup_visuals.php:420 +#: ../../godmode/setup/setup_visuals.php:950 +#: ../../godmode/reporting/create_container.php:489 +#: ../../godmode/reporting/graph_builder.graph_editor.php:329 +#: ../../godmode/reporting/reporting_builder.item_editor.php:198 +#: ../../godmode/reporting/reporting_builder.item_editor.php:959 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2128 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2201 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2222 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2254 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3167 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3328 +#: ../../godmode/reporting/visual_console_builder.elements.php:482 +#: ../../godmode/reporting/visual_console_builder.elements.php:633 +#: ../../godmode/reporting/visual_console_builder.elements.php:643 +#: ../../godmode/reporting/visual_console_builder.wizard.php:266 +#: ../../godmode/reporting/visual_console_builder.wizard.php:438 +#: ../../godmode/reporting/visual_console_builder.wizard.php:451 +#: ../../godmode/reporting/visual_console_builder.wizard.php:485 +#: ../../godmode/reporting/visual_console_builder.wizard.php:498 +#: ../../godmode/reporting/visual_console_builder.wizard.php:536 +#: ../../godmode/reporting/visual_console_builder.wizard.php:537 +#: ../../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:699 +#: ../../godmode/events/custom_events.php:200 +#: ../../godmode/events/custom_events.php:248 +#: ../../godmode/wizards/HostDevices.class.php:1098 +#: ../../mobile/operation/events.php:930 +#: ../../include/functions_visual_map_editor.php:404 +#: ../../include/functions_visual_map_editor.php:406 +#: ../../include/functions_visual_map_editor.php:622 +#: ../../include/functions_visual_map_editor.php:957 +#: ../../include/functions_visual_map_editor.php:1010 +#: ../../include/functions_visual_map_editor.php:1072 +#: ../../include/functions.php:1073 ../../include/functions_cron.php:642 +#: ../../include/functions_networkmap.php:1519 +#: ../../include/ajax/planned_downtime.ajax.php:85 +#: ../../include/ajax/custom_fields.php:668 ../../include/ajax/events.php:577 +#: ../../include/functions_integriaims.php:135 +#: ../../include/functions_profile.php:297 +#: ../../include/functions_profile.php:315 +#: ../../include/functions_profile.php:330 +#: ../../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:2319 +#: ../../include/rest-api/models/VisualConsole/Item.php:2441 +#: ../../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 +#: ../../include/functions_html.php:1392 ../../include/functions_html.php:1442 +#: ../../include/functions_html.php:4664 ../../include/functions_html.php:6055 +#: ../../include/class/NetworkMap.class.php:2789 +#: ../../include/class/NetworkMap.class.php:3024 +#: ../../include/class/NetworkMap.class.php:3047 +#: ../../include/class/NetworkMap.class.php:3119 +#: ../../include/class/NetworkMap.class.php:3129 +#: ../../include/class/NetworkMap.class.php:3214 +#: ../../include/class/NetworkMap.class.php:3230 +#: ../../include/lib/Dashboard/Widgets/sla_percent.php:336 +#: ../../include/lib/Dashboard/Widgets/BlockHistogram.php:301 +#: ../../include/lib/Dashboard/Widgets/events_list.php:312 +#: ../../include/lib/Dashboard/Widgets/events_list.php:470 +#: ../../include/lib/Dashboard/Widgets/graph_module_histogram.php:326 +#: ../../include/lib/Dashboard/Widgets/service_map.php:273 +#: ../../include/lib/Dashboard/Widgets/service_map.php:314 +#: ../../include/lib/Dashboard/Widgets/maps_made_by_user.php:537 +#: ../../include/lib/Dashboard/Widgets/custom_graph.php:355 +#: ../../include/lib/Dashboard/Widgets/single_graph.php:310 +#: ../../include/lib/Dashboard/Widgets/reports.php:501 +#: ../../include/lib/Dashboard/Widgets/top_n.php:241 +#: ../../include/functions_events.php:3209 +#: ../../include/functions_events.php:3225 +#: ../../operation/users/user_edit.php:402 +#: ../../operation/users/user_edit.php:414 +#: ../../operation/users/user_edit.php:455 +#: ../../operation/users/user_edit.php:491 +#: ../../operation/users/user_edit.php:505 +#: ../../operation/users/user_edit.php:898 +#: ../../operation/users/user_edit.php:905 +#: ../../operation/users/user_edit.php:914 +#: ../../operation/users/user_edit.php:921 +#: ../../operation/agentes/pandora_networkmap.editor.php:349 +#: ../../operation/agentes/pandora_networkmap.view.php:174 +#: ../../operation/agentes/ver_agente.php:1164 +#: ../../operation/agentes/ver_agente.php:1220 +#: ../../operation/agentes/ver_agente.php:1235 +#: ../../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/snmpconsole/snmp_view.php:630 +#: ../../operation/snmpconsole/snmp_view.php:1114 +#: ../../operation/snmpconsole/snmp_view.php:1125 +#: ../../operation/gis_maps/render_view.php:163 +#: ../../operation/incidents/list_integriaims_incidents.php:530 +#: ../../operation/incidents/list_integriaims_incidents.php:534 +#: ../../operation/events/events.php:2414 +msgid "None" +msgstr "" + +#: ../../enterprise/meta/screens/screens.visualmap.php:71 +msgid "Create visualmap" +msgstr "" + +#: ../../enterprise/meta/screens/screens.visualmap.php:163 +#: ../../enterprise/meta/screens/screens.visualmap.php:194 +#: ../../enterprise/godmode/reporting/visual_console_builder.wizard_services.php:106 +#: ../../enterprise/include/lib/ClusterViewer/ClusterManager.php:601 +#: ../../enterprise/operation/agentes/policy_view.php:70 +#: ../../godmode/agentes/configurar_agente.php:373 +#: ../../godmode/agentes/modificar_agente.php:82 +#: ../../godmode/agentes/modificar_agente.php:836 +#: ../../godmode/agentes/modificar_agente.php:841 ../../godmode/menu.php:556 +#: ../../godmode/setup/setup_visuals.php:163 +#: ../../godmode/setup/setup_visuals.php:228 +#: ../../godmode/setup/setup_visuals.php:282 +#: ../../godmode/setup/setup_visuals.php:287 +#: ../../godmode/setup/setup_visuals.php:326 +#: ../../godmode/setup/setup_visuals.php:363 +#: ../../godmode/setup/setup_visuals.php:385 +#: ../../godmode/setup/setup_visuals.php:410 +#: ../../godmode/setup/setup_visuals.php:429 +#: ../../godmode/setup/setup_visuals.php:448 +#: ../../godmode/setup/setup_visuals.php:467 +#: ../../godmode/setup/setup_visuals.php:609 +#: ../../godmode/reporting/visual_console_builder.php:851 +#: ../../godmode/module_library/module_library_view.php:59 +#: ../../operation/tree.php:187 ../../operation/visual_console/view.php:198 +#: ../../operation/visual_console/legacy_view.php:193 +#: ../../operation/agentes/estado_agente.php:858 +#: ../../operation/agentes/estado_agente.php:861 +#: ../../operation/agentes/status_monitor.php:75 +#: ../../operation/agentes/ver_agente.php:1916 +msgid "View" +msgstr "" + +#: ../../enterprise/meta/screens/screens.visualmap.php:206 +#: ../../enterprise/godmode/alerts/alert_inventory.php:80 +#: ../../godmode/reporting/visual_console_builder.php:845 +#: ../../operation/visual_console/legacy_view.php:183 +msgid "Builder" +msgstr "" + +#: ../../enterprise/meta/screens/screens.visualmap.php:219 +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:61 +#: ../../enterprise/meta/monitoring/wizard/wizard.php:123 +#: ../../enterprise/meta/general/main_header.php:134 +#: ../../enterprise/meta/general/logon_ok.php:48 +#: ../../enterprise/meta/general/main_menu.php:238 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:95 +#: ../../enterprise/include/functions_reporting.php:60 +#: ../../enterprise/include/functions_reporting.php:7991 +#: ../../enterprise/include/functions_reporting.php:8017 +#: ../../godmode/reporting/visual_console_builder.php:840 +#: ../../godmode/reporting/visual_console_builder.wizard.php:518 +#: ../../operation/visual_console/view.php:188 +#: ../../operation/visual_console/legacy_view.php:175 +msgid "Wizard" +msgstr "" + +#: ../../enterprise/meta/screens/screens.visualmap.php:230 +#: ../../godmode/reporting/visual_console_builder.php:828 +#: ../../operation/visual_console/view.php:168 +#: ../../operation/visual_console/legacy_view.php:155 +msgid "List elements" +msgstr "" + +#: ../../enterprise/meta/screens/screens.visualmap.php:241 +#: ../../godmode/reporting/visual_console_builder.php:824 +#: ../../godmode/reporting/graph_builder.php:298 +#: ../../godmode/reporting/reporting_builder.main.php:73 +#: ../../godmode/reporting/reporting_builder.php:3573 +#: ../../operation/visual_console/view.php:160 +#: ../../operation/visual_console/legacy_view.php:147 +#: ../../operation/reporting/reporting_viewer.php:139 +#: ../../operation/reporting/graph_viewer.php:193 +msgid "Main data" +msgstr "" + +#: ../../enterprise/meta/screens/screens.visualmap.php:261 +#: ../../godmode/reporting/visual_console_builder.php:820 +#: ../../operation/visual_console/view.php:150 +#: ../../operation/visual_console/legacy_view.php:137 +msgid "Show link to public Visual Console" +msgstr "" + +#: ../../enterprise/meta/screens/screens.visualmap.php:286 +#: ../../godmode/reporting/visual_console_builder.php:816 +#: ../../operation/visual_console/view.php:122 +#: ../../operation/visual_console/legacy_view.php:121 +msgid "Visual consoles list" +msgstr "" + +#: ../../enterprise/meta/screens/screens.visualmap.php:297 +#: ../../godmode/reporting/visual_console_builder.php:859 +msgid "New visual console" +msgstr "" + +#: ../../enterprise/meta/screens/screens.visualmap.php:305 +#: ../../enterprise/meta/screens/screens.visualmap.php:310 +#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:121 +#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:127 +#: ../../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:1091 +#: ../../godmode/reporting/visual_console_builder.php:882 +#: ../../godmode/reporting/map_builder.php:134 +#: ../../godmode/reporting/map_builder.php:140 +#: ../../godmode/reporting/visual_console_favorite.php:131 +#: ../../godmode/reporting/visual_console_favorite.php:137 +#: ../../include/lib/Dashboard/Widgets/maps_made_by_user.php:335 +#: ../../operation/users/user_edit.php:357 +#: ../../operation/visual_console/view.php:230 ../../operation/menu.php:177 +#: ../../operation/menu.php:181 +msgid "Visual console" +msgstr "" + +#: ../../enterprise/meta/screens/screens.php:37 +#: ../../enterprise/meta/general/main_header.php:232 +#: ../../enterprise/meta/general/logon_ok.php:84 +#: ../../enterprise/meta/general/main_menu.php:340 +msgid "Screens" +msgstr "" + +#: ../../enterprise/meta/advanced/servers.build_table.php:34 +#: ../../godmode/servers/servers.build_table.php:52 +msgid "There are no servers configured into the database" +msgstr "" + +#: ../../enterprise/meta/advanced/servers.build_table.php:63 +#: ../../enterprise/meta/advanced/metasetup.consoles.php:836 +#: ../../enterprise/godmode/servers/list_satellite.php:39 +#: ../../enterprise/include/functions_reporting_csv.php:718 +#: ../../enterprise/include/class/AgentRepository.class.php:376 +#: ../../enterprise/include/class/AgentRepository.class.php:642 +#: ../../enterprise/tools/ipam/ipam_calculator.php:52 +#: ../../godmode/extensions.php:139 +#: ../../godmode/update_manager/update_manager.history.php:40 +#: ../../godmode/reporting/reporting_builder.item_editor.php:78 +#: ../../godmode/servers/servers.build_table.php:82 +#: ../../include/functions_reporting_html.php:1589 +#: ../../include/functions_snmp_browser.php:746 +msgid "Version" +msgstr "" + +#: ../../enterprise/meta/advanced/servers.build_table.php:64 +#: ../../enterprise/meta/monitoring/wizard/wizard.agent.php:65 +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:444 +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:712 +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:791 +#: ../../enterprise/meta/monitoring/wizard/wizard.php:286 +#: ../../enterprise/meta/monitoring/group_view.php:155 +#: ../../enterprise/meta/monitoring/group_view.php:221 +#: ../../enterprise/meta/include/functions_wizard_meta.php:406 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1821 +#: ../../enterprise/meta/agentsearch.php:139 +#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:111 +#: ../../enterprise/godmode/policies/policy_modules.php:458 +#: ../../enterprise/godmode/policies/policies.php:509 +#: ../../enterprise/godmode/massive/massive_edit_tags_policy.php:128 +#: ../../enterprise/godmode/massive/massive_add_modules_policy.php:176 +#: ../../enterprise/godmode/massive/massive_add_service_elements.php:362 +#: ../../enterprise/godmode/massive/massive_create_services.php:965 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:473 +#: ../../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:861 +#: ../../enterprise/include/functions_policies.php:3722 +#: ../../enterprise/operation/agentes/tag_view.php:606 +#: ../../enterprise/operation/services/services.service_map.php:163 +#: ../../extensions/agents_modules.php:758 +#: ../../godmode/agentes/configurar_agente.php:406 +#: ../../godmode/agentes/configurar_agente.php:724 +#: ../../godmode/agentes/modificar_agente.php:817 +#: ../../godmode/agentes/planned_downtime.list.php:85 +#: ../../godmode/agentes/planned_downtime.list.php:115 +#: ../../godmode/agentes/planned_downtime.editor.php:924 +#: ../../godmode/agentes/planned_downtime.editor.php:999 +#: ../../godmode/massive/massive_copy_modules.php:199 +#: ../../godmode/massive/massive_delete_modules.php:463 +#: ../../godmode/massive/massive_edit_plugins.php:383 +#: ../../godmode/massive/massive_edit_modules.php:425 +#: ../../godmode/reporting/reporting_builder.list_items.php:210 +#: ../../godmode/reporting/reporting_builder.list_items.php:239 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1899 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2120 +#: ../../godmode/reporting/visual_console_builder.wizard.php:432 +#: ../../godmode/servers/servers.build_table.php:83 +#: ../../mobile/operation/agents.php:96 ../../mobile/operation/agents.php:409 +#: ../../mobile/operation/modules.php:236 ../../mobile/operation/home.php:88 +#: ../../mobile/operation/agent.php:327 +#: ../../include/functions_reporting_html.php:1881 +#: ../../include/functions_reporting_html.php:5421 +#: ../../include/functions_reports.php:733 +#: ../../include/functions_reports.php:737 +#: ../../include/functions_reports.php:741 +#: ../../include/functions_reports.php:745 +#: ../../include/functions_reports.php:749 +#: ../../include/functions_reports.php:753 +#: ../../include/functions_reports.php:757 +#: ../../include/functions_reports.php:761 +#: ../../include/functions_reports.php:765 +#: ../../include/functions_html.php:1720 ../../include/functions_html.php:5530 +#: ../../include/class/AgentsAlerts.class.php:253 +#: ../../include/lib/Dashboard/Widgets/groups_status.php:403 +#: ../../include/lib/Dashboard/Widgets/groups_status.php:409 +#: ../../include/lib/Dashboard/Widgets/agent_module.php:448 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:331 +#: ../../operation/search_agents.php:55 ../../operation/tree.php:114 +#: ../../operation/search_results.php:158 +#: ../../operation/agentes/estado_agente.php:760 +#: ../../operation/agentes/graphs.php:188 +#: ../../operation/agentes/exportdata.php:282 +#: ../../operation/agentes/group_view.php:184 +#: ../../operation/agentes/group_view.php:217 +msgid "Modules" +msgstr "" + +#: ../../enterprise/meta/advanced/servers.build_table.php:65 +#: ../../godmode/servers/servers.build_table.php:84 +msgid "Lag" +msgstr "" + +#: ../../enterprise/meta/advanced/servers.build_table.php:65 +#: ../../godmode/servers/servers.build_table.php:84 +msgid "Avg. Delay(sec)/Modules delayed" +msgstr "" + +#: ../../enterprise/meta/advanced/servers.build_table.php:66 +#: ../../godmode/servers/servers.build_table.php:85 +msgid "T/Q" +msgstr "" + +#: ../../enterprise/meta/advanced/servers.build_table.php:66 +#: ../../godmode/servers/servers.build_table.php:85 +msgid "Threads / Queued modules currently" +msgstr "" + +#: ../../enterprise/meta/advanced/servers.build_table.php:68 +#: ../../enterprise/include/class/DatabaseHA.class.php:798 +#: ../../enterprise/tools/ipam/ipam_ajax.php:494 +#: ../../godmode/agentes/agent_incidents.php:93 +#: ../../godmode/servers/servers.build_table.php:87 +#: ../../operation/incidents/integriaims_export_csv.php:86 +msgid "Updated" +msgstr "" + +#: ../../enterprise/meta/advanced/servers.build_table.php:72 +#: ../../enterprise/meta/include/functions_autoprovision.php:644 +#: ../../enterprise/godmode/modules/local_components.php:625 +#: ../../enterprise/godmode/policies/policy_alerts.php:354 +#: ../../enterprise/godmode/policies/policies.php:409 +#: ../../enterprise/godmode/alerts/alert_inventory_list.php:224 +#: ../../enterprise/godmode/reporting/reporting_builder.template_list_item.php:261 +#: ../../godmode/users/profile_list.php:349 +#: ../../godmode/users/user_list.php:487 +#: ../../godmode/alerts/alert_list.list.php:500 +#: ../../godmode/alerts/alert_templates.php:388 +#: ../../godmode/reporting/reporting_builder.list_items.php:427 +#: ../../godmode/reporting/graphs.php:323 +#: ../../godmode/reporting/reporting_builder.php:955 +#: ../../godmode/reporting/reporting_builder.php:1154 +#: ../../godmode/servers/servers.build_table.php:91 +#: ../../godmode/servers/plugin.php:819 +#: ../../include/functions_container.php:157 +#: ../../operation/gis_maps/gis_map.php:109 +msgid "Op." +msgstr "" + +#: ../../enterprise/meta/advanced/servers.build_table.php:91 +#: ../../godmode/servers/servers.build_table.php:134 +msgid "This is a master server" +msgstr "" + +#: ../../enterprise/meta/advanced/servers.build_table.php:106 +#: ../../enterprise/meta/advanced/servers.build_table.php:112 +#: ../../godmode/servers/servers.build_table.php:153 +#: ../../godmode/servers/servers.build_table.php:159 +msgid "of" +msgstr "" + +#: ../../enterprise/meta/advanced/servers.build_table.php:134 +#: ../../godmode/servers/servers.build_table.php:260 +msgid "Modules run by this server will stop working. Do you want to continue?" +msgstr "" + +#: ../../enterprise/meta/advanced/servers.build_table.php:160 +#: ../../godmode/servers/servers.build_table.php:287 +msgid "Tactical server information" +msgstr "" + +#: ../../enterprise/meta/advanced/massive_operations.php:57 +#: ../../enterprise/meta/monitoring/wizard/wizard.php:53 +#: ../../general/node_deactivated.php:59 +msgid "command center" +msgstr "" + +#: ../../enterprise/meta/advanced/massive_operations.php:54 +#: ../../enterprise/meta/monitoring/wizard/wizard.php:50 +#, php-format +msgid "" +"You should centralise management in order to use Wizard section. Please go " +"to %s" +msgstr "" + +#: ../../enterprise/meta/advanced/component_management.php:52 +#: ../../include/functions_menu.php:531 +msgid "Tags management" +msgstr "" + +#: ../../enterprise/meta/advanced/component_management.php:56 +msgid "Module groups Management" +msgstr "" + +#: ../../enterprise/meta/advanced/component_management.php:60 +msgid "OS Management" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:51 +#: ../../enterprise/meta/advanced/metasetup.relations.php:96 +#: ../../enterprise/meta/advanced/metasetup.password.php:46 +#: ../../enterprise/meta/advanced/metasetup.log.php:41 +#: ../../enterprise/meta/advanced/metasetup.setup.php:79 +#: ../../enterprise/meta/advanced/metasetup.auth.php:47 +#: ../../enterprise/meta/advanced/metasetup.performance.php:47 +#, php-format +msgid "Could not be update: Error in %s" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:58 +#: ../../enterprise/meta/advanced/metasetup.relations.php:103 +#: ../../enterprise/meta/advanced/metasetup.password.php:53 +#: ../../enterprise/meta/advanced/metasetup.consoles.php:219 +#: ../../enterprise/meta/advanced/metasetup.log.php:48 +#: ../../enterprise/meta/advanced/metasetup.setup.php:86 +#: ../../enterprise/meta/advanced/metasetup.auth.php:54 +#: ../../enterprise/meta/advanced/metasetup.performance.php:54 +#: ../../enterprise/godmode/setup/setup_metaconsole.php:85 +msgid "Successfully update" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:98 +#: ../../godmode/menu.php:345 ../../godmode/setup/setup.php:137 +#: ../../godmode/setup/setup.php:266 +msgid "Visual styles" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:105 +#: ../../enterprise/meta/include/functions_meta.php:1298 +#: ../../godmode/setup/setup_visuals.php:1310 +#: ../../include/functions_config.php:932 +msgid "Date format string" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:109 +#: ../../godmode/setup/setup_visuals.php:1311 +msgid "Example" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:136 +#: ../../godmode/setup/setup_visuals.php:1329 +msgid "Timestamp, time comparison, or compact mode" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:139 +#: ../../godmode/setup/setup_visuals.php:1331 +msgid "Comparation in rollover" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:148 +#: ../../godmode/setup/setup_visuals.php:1332 +msgid "Timestamp in rollover" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:157 +#: ../../godmode/setup/setup_visuals.php:1333 +msgid "Compact mode" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:166 +#: ../../godmode/setup/setup_visuals.php:699 +#: ../../include/functions_config.php:940 +msgid "Graph color #1" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:176 +#: ../../godmode/setup/setup_visuals.php:710 +#: ../../include/functions_config.php:944 +msgid "Graph color #2" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:186 +#: ../../godmode/setup/setup_visuals.php:721 +#: ../../include/functions_config.php:948 +msgid "Graph color #3" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:197 +msgid "Data precision for reports and visual consoles" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:200 +msgid "Precision must be a integer number between 0 and 5" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:216 +#: ../../enterprise/meta/include/functions_meta.php:1348 +#: ../../godmode/setup/setup_visuals.php:936 +#: ../../godmode/reporting/visual_console_builder.elements.php:213 +#: ../../godmode/reporting/visual_console_builder.wizard.php:285 +#: ../../include/functions_visual_map_editor.php:686 +#: ../../include/rest-api/models/VisualConsole/Items/Percentile.php:458 +msgid "Percentile" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:219 +msgid "Show percentile 95 in graphs" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:232 +#: ../../enterprise/meta/include/functions_meta.php:1433 +#: ../../godmode/setup/setup_visuals.php:809 +#: ../../include/functions_config.php:980 +msgid "Value to interface graphics" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:242 +#: ../../enterprise/meta/include/functions_meta.php:1446 +#: ../../godmode/users/configure_user.php:1164 +#: ../../godmode/setup/setup_visuals.php:66 +#: ../../godmode/events/event_edit_filter.php:398 +#: ../../include/functions_config.php:997 +#: ../../operation/users/user_edit.php:308 +#: ../../operation/snmpconsole/snmp_view.php:555 +msgid "Block size for pagination" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:252 +#: ../../enterprise/meta/include/functions_meta.php:1362 +#: ../../godmode/setup/setup_visuals.php:870 +msgid "Number of elements in Custom Graph" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:265 +#: ../../enterprise/meta/include/functions_meta.php:1456 +#: ../../godmode/setup/setup_visuals.php:884 +#: ../../include/functions_config.php:1001 +msgid "Use round corners" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:273 +#: ../../enterprise/meta/include/functions_meta.php:1467 +#: ../../godmode/setup/setup_visuals.php:893 +#: ../../include/functions_config.php:1005 +msgid "Chart fit to content" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:281 +#: ../../enterprise/meta/include/functions_meta.php:1478 +#: ../../include/functions_config.php:1217 +msgid "Disable help" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:290 +#: ../../enterprise/meta/advanced/metasetup.relations.php:419 +#: ../../enterprise/meta/advanced/collections.data.php:412 +#: ../../enterprise/meta/advanced/policymanager.queue.php:212 +#: ../../enterprise/meta/advanced/policymanager.queue.php:217 +#: ../../enterprise/meta/advanced/policymanager.queue.php:228 +#: ../../enterprise/meta/advanced/policymanager.queue.php:304 +#: ../../enterprise/meta/monitoring/custom_fields_view.php:193 +#: ../../enterprise/meta/monitoring/custom_fields_view.php:209 +#: ../../enterprise/meta/monitoring/custom_fields_view.php:272 +#: ../../enterprise/meta/monitoring/custom_fields_view.php:762 +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:411 +#: ../../enterprise/meta/monitoring/wizard/wizard.create_module.php:218 +#: ../../enterprise/meta/monitoring/wizard/wizard.php:148 +#: ../../enterprise/meta/include/functions_users_meta.php:87 +#: ../../enterprise/meta/include/functions_users_meta.php:98 +#: ../../enterprise/meta/include/functions_wizard_meta.php:319 +#: ../../enterprise/meta/include/ajax/wizard.ajax.php:400 +#: ../../enterprise/meta/include/ajax/wizard.ajax.php:444 +#: ../../enterprise/meta/include/functions_html_meta.php:75 +#: ../../enterprise/godmode/modules/local_components.php:541 +#: ../../enterprise/godmode/modules/local_components.php:567 +#: ../../enterprise/godmode/modules/local_components.php:592 +#: ../../enterprise/godmode/agentes/collections.data.php:506 +#: ../../enterprise/godmode/policies/policy_queue.php:603 +#: ../../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:358 +#: ../../enterprise/godmode/policies/policy_agents.php:833 +#: ../../enterprise/godmode/massive/massive_add_modules_policy.php:131 +#: ../../enterprise/godmode/alerts/alert_inventory_builder.php:264 +#: ../../enterprise/godmode/setup/setup_acl.php:487 +#: ../../enterprise/godmode/setup/setup_acl.php:504 +#: ../../enterprise/godmode/setup/setup_acl.php:521 +#: ../../enterprise/godmode/setup/setup_acl.php:753 +#: ../../enterprise/godmode/setup/setup_acl.php:761 +#: ../../enterprise/godmode/setup/setup_acl.php:772 +#: ../../enterprise/godmode/setup/setup_acl.php:813 +#: ../../enterprise/godmode/setup/setup_acl.php:844 +#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:241 +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:143 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:188 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:641 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:667 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:243 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2025 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2836 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2863 +#: ../../enterprise/include/class/ManageBackups.class.php:191 +#: ../../enterprise/include/functions_metaconsole.php:863 +#: ../../enterprise/include/functions_metaconsole.php:864 +#: ../../enterprise/include/functions_metaconsole.php:1212 +#: ../../enterprise/include/functions_ipam.php:1688 +#: ../../enterprise/include/functions_ipam.php:1733 +#: ../../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:620 +#: ../../enterprise/operation/log/log_viewer.php:638 +#: ../../enterprise/operation/log/log_viewer.php:688 +#: ../../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 +#: ../../godmode/modules/manage_network_components.php:653 +#: ../../godmode/massive/massive_copy_modules.php:127 +#: ../../godmode/massive/massive_copy_modules.php:287 +#: ../../godmode/massive/massive_delete_modules.php:327 +#: ../../godmode/massive/massive_delete_modules.php:374 +#: ../../godmode/massive/massive_delete_modules.php:429 +#: ../../godmode/massive/massive_delete_modules.php:450 +#: ../../godmode/massive/massive_delete_agents.php:221 +#: ../../godmode/massive/massive_delete_agents.php:235 +#: ../../godmode/massive/massive_edit_agents.php:543 +#: ../../godmode/massive/massive_edit_agents.php:556 +#: ../../godmode/massive/massive_edit_modules.php:311 +#: ../../godmode/massive/massive_edit_modules.php:358 +#: ../../godmode/massive/massive_edit_modules.php:396 +#: ../../godmode/massive/massive_edit_modules.php:482 +#: ../../godmode/alerts/alert_list.list.php:131 +#: ../../godmode/alerts/alert_list.list.php:137 +#: ../../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:460 +#: ../../godmode/alerts/alert_list.php:509 +#: ../../godmode/alerts/alert_list.php:523 +#: ../../godmode/setup/gis_step_2.php:217 +#: ../../godmode/setup/setup_visuals.php:951 +#: ../../godmode/reporting/reporting_builder.list_items.php:209 +#: ../../godmode/reporting/reporting_builder.list_items.php:211 +#: ../../godmode/reporting/reporting_builder.list_items.php:213 +#: ../../godmode/reporting/reporting_builder.list_items.php:235 +#: ../../godmode/reporting/reporting_builder.list_items.php:245 +#: ../../godmode/reporting/reporting_builder.list_items.php:255 +#: ../../godmode/reporting/create_container.php:546 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1627 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1645 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2106 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2942 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2969 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3604 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3670 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3692 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3750 +#: ../../godmode/reporting/visual_console_builder.wizard.php:340 +#: ../../godmode/reporting/visual_console_builder.wizard.php:354 +#: ../../godmode/events/event_edit_filter.php:328 +#: ../../godmode/events/event_edit_filter.php:343 +#: ../../godmode/events/event_edit_filter.php:606 +#: ../../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:1071 +#: ../../include/functions.php:1331 ../../include/ajax/events.php:506 +#: ../../include/functions_groupview.php:95 +#: ../../include/functions_modules.php:3576 +#: ../../include/functions_modules.php:3578 +#: ../../include/functions_users.php:416 ../../include/functions_users.php:674 +#: ../../include/functions_notifications.php:105 +#: ../../include/functions_html.php:915 ../../include/functions_html.php:1576 +#: ../../include/class/CredentialStore.class.php:535 +#: ../../include/class/AuditLog.class.php:203 +#: ../../include/class/AuditLog.class.php:213 +#: ../../include/functions_reporting.php:2953 +#: ../../include/functions_reporting.php:3050 +#: ../../include/lib/Dashboard/Widgets/system_group_status.php:399 +#: ../../include/lib/Dashboard/Widgets/events_list.php:412 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:384 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:417 +#: ../../include/functions_groups.php:646 +#: ../../include/functions_groups.php:1940 ../../operation/heatmap.php:115 +#: ../../operation/tree.php:210 ../../operation/tree.php:267 +#: ../../operation/agentes/estado_agente.php:276 +#: ../../operation/agentes/status_monitor.php:651 +#: ../../operation/agentes/estado_monitores.php:520 +#: ../../operation/agentes/estado_monitores.php:565 +#: ../../operation/agentes/alerts_status.functions.php:96 +#: ../../operation/agentes/alerts_status.functions.php:115 +#: ../../operation/agentes/alerts_status.functions.php:125 +#: ../../operation/agentes/alerts_status.functions.php:130 +#: ../../operation/snmpconsole/snmp_view.php:549 +#: ../../operation/snmpconsole/snmp_view.php:578 +#: ../../operation/snmpconsole/snmp_view.php:586 +#: ../../operation/snmpconsole/snmp_view.php:902 +#: ../../operation/incidents/list_integriaims_incidents.php:326 +#: ../../operation/incidents/list_integriaims_incidents.php:337 +#: ../../operation/incidents/list_integriaims_incidents.php:354 +#: ../../operation/incidents/list_integriaims_incidents.php:365 +#: ../../operation/events/events.php:748 ../../operation/events/events.php:1589 +#: ../../operation/events/events.php:1662 +#: ../../operation/events/events.php:1794 +#: ../../operation/events/events.php:1846 +#: ../../general/subselect_data_module.php:62 +msgid "All" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:291 +#: ../../godmode/setup/setup_visuals.php:952 +msgid "On Boolean graphs" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:294 +msgid "Graph TIP view" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:295 +msgid "This option may cause performance issues" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:309 +#: ../../godmode/setup/setup_visuals.php:971 +msgid "Show only average by default" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:310 +#: ../../godmode/setup/setup_visuals.php:972 +msgid "Show MAX/AVG/MIN by default" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:312 +#: ../../godmode/setup/setup_visuals.php:968 +msgid "Graph mode" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:332 +#: ../../godmode/setup/setup_visuals.php:987 +msgid "Zoom graphs:" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:346 +#: ../../godmode/setup/setup_visuals.php:902 +msgid "Type of module charts" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:348 +#: ../../enterprise/godmode/reporting/graph_template_editor.php:245 +#: ../../godmode/setup/setup_visuals.php:903 +#: ../../godmode/setup/setup_visuals.php:920 +#: ../../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/lib/Dashboard/Widgets/custom_graph.php:315 +#: ../../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 +msgid "Area" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:357 +#: ../../enterprise/godmode/reporting/graph_template_editor.php:247 +#: ../../godmode/setup/setup_visuals.php:910 +#: ../../godmode/setup/setup_visuals.php:927 +#: ../../godmode/reporting/create_container.php:359 +#: ../../godmode/reporting/visual_console_builder.elements.php:334 +#: ../../godmode/reporting/graph_builder.main.php:216 +#: ../../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/lib/Dashboard/Widgets/custom_graph.php:317 +#: ../../operation/visual_console/view.php:361 +#: ../../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 +msgid "Line" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:367 +#: ../../enterprise/meta/include/functions_meta.php:1548 +msgid "Metaconsole elements" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:369 +msgid "The number of elements retrieved for each instance in some views." +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:382 +#: ../../enterprise/meta/advanced/metasetup.visual.php:849 +#: ../../enterprise/meta/advanced/metasetup.visual.php:850 +#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:327 +#: ../../enterprise/include/ajax/log_viewer.ajax.php:274 +#: ../../godmode/snmpconsole/snmp_alert.php:1102 +#: ../../godmode/setup/setup_visuals.php:1031 +#: ../../godmode/setup/setup_visuals.php:1032 +#: ../../godmode/setup/setup_visuals.php:1396 +#: ../../include/functions_visual_map_editor.php:1223 +#: ../../include/functions_visual_map_editor.php:1224 +#: ../../include/functions.php:499 ../../include/functions.php:630 +#: ../../include/ajax/events.php:2295 ../../include/ajax/events.php:2296 +#: ../../include/ajax/events.php:2297 ../../include/ajax/events.php:2298 +#: ../../include/ajax/events.php:2302 ../../include/ajax/events.php:2303 +#: ../../include/ajax/events.php:2304 ../../include/ajax/events.php:2305 +#: ../../include/ajax/events.php:2306 ../../include/ajax/events.php:2307 +#: ../../include/functions_html.php:2119 +#: ../../include/class/AgentsAlerts.class.php:387 +#: ../../operation/events/sound_events.php:199 +#: ../../operation/events/sound_events.php:200 +#: ../../operation/events/sound_events.php:201 +#: ../../operation/events/sound_events.php:202 +#: ../../operation/events/sound_events.php:206 +#: ../../operation/events/sound_events.php:207 +#: ../../operation/events/sound_events.php:208 +#: ../../operation/events/sound_events.php:209 +#: ../../operation/events/sound_events.php:210 +#: ../../operation/events/sound_events.php:211 +msgid "seconds" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:383 +#: ../../enterprise/meta/advanced/metasetup.visual.php:851 +#: ../../enterprise/meta/advanced/metasetup.visual.php:852 +#: ../../enterprise/meta/advanced/metasetup.visual.php:853 +#: ../../enterprise/meta/advanced/metasetup.visual.php:854 +#: ../../enterprise/include/ajax/log_viewer.ajax.php:276 +#: ../../godmode/setup/setup_visuals.php:1033 +#: ../../godmode/setup/setup_visuals.php:1034 +#: ../../godmode/setup/setup_visuals.php:1035 +#: ../../godmode/setup/setup_visuals.php:1036 +#: ../../godmode/setup/setup_visuals.php:1397 +#: ../../include/functions_visual_map_editor.php:1225 +#: ../../include/functions_visual_map_editor.php:1226 +#: ../../include/functions_visual_map_editor.php:1227 +#: ../../include/functions_visual_map_editor.php:1228 +#: ../../include/functions.php:503 ../../include/functions.php:634 +#: ../../include/functions_html.php:2120 +msgid "minutes" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:384 +#: ../../enterprise/include/ajax/log_viewer.ajax.php:278 +#: ../../godmode/setup/setup_visuals.php:1398 ../../include/functions.php:504 +#: ../../include/functions.php:635 ../../include/functions_snmp.php:402 +#: ../../include/functions_html.php:2121 +msgid "hours" +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:1399 ../../include/functions.php:500 +#: ../../include/functions.php:631 ../../include/functions_html.php:2122 +msgid "days" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:386 +#: ../../godmode/setup/setup_visuals.php:1400 ../../include/functions.php:501 +#: ../../include/functions.php:632 ../../include/functions_html.php:2124 +msgid "months" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:387 +#: ../../godmode/setup/setup_visuals.php:1401 ../../include/functions.php:502 +#: ../../include/functions.php:633 ../../include/functions_html.php:2125 +msgid "years" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:390 +msgid "Add new custom value to intervals" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:411 +#: ../../enterprise/meta/advanced/metasetup.consoles.php:739 +#: ../../enterprise/meta/advanced/links.php:189 +#: ../../enterprise/meta/include/functions_autoprovision.php:703 +#: ../../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:144 +#: ../../enterprise/godmode/policies/policy_alerts.php:605 +#: ../../enterprise/godmode/policies/policy_alerts.php:670 +#: ../../enterprise/godmode/policies/policy_external_alerts.php:607 +#: ../../enterprise/godmode/policies/policy_external_alerts.php:703 +#: ../../enterprise/godmode/policies/policy_inventory_modules.php:263 +#: ../../enterprise/godmode/policies/policy_collections.php:267 +#: ../../enterprise/godmode/massive/massive_edit_tags_policy.php:168 +#: ../../enterprise/godmode/massive/massive_add_alerts_policy.php:138 +#: ../../enterprise/godmode/massive/massive_tags_edit_policy.php:152 +#: ../../enterprise/godmode/alerts/alert_inventory_list.php:398 +#: ../../enterprise/godmode/setup/setup_metaconsole.php:247 +#: ../../enterprise/godmode/setup/setup_metaconsole.php:357 +#: ../../enterprise/godmode/setup/setup_acl.php:532 +#: ../../enterprise/godmode/setup/setup_acl.php:558 +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:245 +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:506 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:269 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:862 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:354 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:512 +#: ../../enterprise/godmode/reporting/graph_template_item_editor.php:251 +#: ../../enterprise/godmode/reporting/visual_console_builder.wizard_services.php:190 +#: ../../enterprise/godmode/servers/credential_boxes_satellite.php:298 +#: ../../enterprise/godmode/servers/manage_credential_boxes.php:82 +#: ../../enterprise/godmode/servers/manage_export_form.php:138 +#: ../../enterprise/include/ajax/log_viewer.ajax.php:93 +#: ../../enterprise/include/ajax/servers.ajax.php:144 +#: ../../enterprise/include/ajax/servers.ajax.php:177 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2284 +#: ../../enterprise/operation/agentes/manage_transmap_creation.php:308 +#: ../../enterprise/tools/ipam/ipam_supernet_config.php:1321 +#: ../../enterprise/tools/ipam/ipam_vlan_config.php:830 +#: ../../extensions/files_repo/files_repo_form.php:105 +#: ../../godmode/modules/manage_network_templates_form.php:347 +#: ../../godmode/users/configure_profile.php:403 +#: ../../godmode/agentes/planned_downtime.editor.php:881 +#: ../../godmode/agentes/planned_downtime.editor.php:1055 +#: ../../godmode/snmpconsole/snmp_alert.php:1494 +#: ../../godmode/gis_maps/configure_gis_map.php:631 +#: ../../godmode/alerts/alert_list.list.php:816 +#: ../../godmode/setup/news.php:299 ../../godmode/setup/links.php:173 +#: ../../godmode/setup/setup_visuals.php:1351 +#: ../../godmode/setup/setup_visuals.php:1406 +#: ../../godmode/setup/setup_visuals.php:1426 +#: ../../godmode/reporting/graph_builder.graph_editor.php:352 +#: ../../godmode/reporting/visual_console_builder.wizard.php:531 +#: ../../godmode/events/event_edit_filter.php:514 +#: ../../godmode/events/event_edit_filter.php:567 +#: ../../godmode/servers/plugin.php:909 +#: ../../include/functions_notifications.php:963 +#: ../../include/class/ManageNetScanScripts.class.php:471 +#: ../../include/functions_snmp_browser.php:1566 +#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:271 +#: ../../operation/events/events.php:1150 +#: ../../operation/events/events.php:1224 +msgid "Add" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:420 +#: ../../enterprise/meta/include/functions_meta.php:1767 +#: ../../godmode/setup/setup_visuals.php:1411 +#: ../../include/functions_config.php:1388 +msgid "Delete interval" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:454 +#: ../../enterprise/meta/include/functions_meta.php:1558 +#: ../../godmode/setup/setup_visuals.php:1292 +msgid "Show only the group name" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:456 +#: ../../include/functions_config.php:1245 +msgid "Show the group name instead the group icon." +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:466 +#: ../../enterprise/meta/include/functions_meta.php:1859 +#: ../../godmode/setup/setup_visuals.php:88 +#: ../../include/functions_config.php:1269 +msgid "Display data of proc modules in other format" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:474 +#: ../../enterprise/meta/include/functions_meta.php:1869 +#: ../../godmode/setup/setup_visuals.php:97 +#: ../../include/functions_config.php:1273 +msgid "Display text proc modules have state is ok" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:484 +#: ../../enterprise/meta/include/functions_meta.php:1879 +#: ../../godmode/setup/setup_visuals.php:101 +#: ../../include/functions_config.php:1277 +msgid "Display text when proc modules have state critical" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:503 +#: ../../enterprise/meta/include/functions_meta.php:1598 +#: ../../godmode/setup/setup_visuals.php:191 +#: ../../include/functions_config.php:1025 +msgid "Custom favicon" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:505 +msgid "" +"You can place your favicon into the folder images/custom_favicon/. This file " +"should be in .ico format with a size of 16x16." +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:531 +#: ../../godmode/setup/setup_visuals.php:213 +msgid "Custom background logo" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:533 +msgid "You can place your custom images into the folder images/backgrounds/" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:576 +#: ../../godmode/setup/setup_visuals.php:280 +msgid "Custom logo (menu)" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:607 +#: ../../godmode/setup/setup_visuals.php:285 +msgid "Custom logo collapsed (menu)" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:638 +#: ../../godmode/setup/setup_visuals.php:290 +msgid "Custom logo (header white background)" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:667 +#: ../../godmode/setup/setup_visuals.php:329 +msgid "Custom logo (login)" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:696 +#: ../../godmode/setup/setup_visuals.php:368 +msgid "Custom Splash (login)" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:724 +#: ../../enterprise/meta/advanced/metasetup.visual.php:795 +#: ../../enterprise/meta/include/functions_meta.php:1628 +#: ../../godmode/setup/setup_visuals.php:508 +#: ../../include/functions_config.php:1101 +msgid "Product name" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:735 +#: ../../enterprise/meta/advanced/metasetup.visual.php:805 +#: ../../enterprise/meta/include/functions_meta.php:1638 +#: ../../godmode/setup/setup_visuals.php:514 +#: ../../include/functions_config.php:1105 +msgid "Copyright notice" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:746 +#: ../../godmode/setup/setup_visuals.php:472 +msgid "Title (header)" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:750 +#: ../../godmode/setup/setup_visuals.php:477 +msgid "Subtitle (header)" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:754 +#: ../../godmode/setup/setup_visuals.php:483 +msgid "Title 1 (login)" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:765 +#: ../../godmode/setup/setup_visuals.php:490 +msgid "Title 2 (login)" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:775 +#: ../../enterprise/meta/include/functions_meta.php:1688 +#: ../../godmode/setup/setup_visuals.php:496 +msgid "Docs URL (login)" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:785 +#: ../../enterprise/meta/include/functions_meta.php:1698 +#: ../../godmode/setup/setup_visuals.php:502 +msgid "Support URL (login)" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:815 +msgid "Graphs font family" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:826 +#: ../../enterprise/meta/include/functions_meta.php:1528 +#: ../../godmode/setup/setup_visuals.php:564 +msgid "Visual effects and animation" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:836 +#: ../../godmode/setup/setup_visuals.php:1021 +msgid "Legacy Visual Console View" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:838 +msgid "To use the old view when using the Visual Console visor" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:855 +#: ../../godmode/setup/setup_visuals.php:1037 +#: ../../include/functions_visual_map_editor.php:1229 +msgid "hour" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:857 +#: ../../godmode/setup/setup_visuals.php:1039 +msgid "Default cache expiration" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:862 +#: ../../godmode/setup/setup_visuals.php:1044 +#: ../../include/functions_visual_map_editor.php:1255 +msgid "No cache" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:874 +#: ../../enterprise/meta/include/functions_meta.php:1906 +#: ../../godmode/setup/setup_visuals.php:1056 +#: ../../include/functions_config.php:1149 +msgid "Default interval for refresh on Visual Console" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:877 +msgid "This interval will affect to Visual Console pages" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:903 +#: ../../godmode/setup/setup_visuals.php:1505 +msgid "Data multiplier to use in graphs/data" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:907 +#: ../../godmode/setup/setup_visuals.php:1507 +msgid "Use 1024 when module unit are bytes" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:908 +#: ../../godmode/setup/setup_visuals.php:1508 +msgid "Use always 1000" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:909 +#: ../../godmode/setup/setup_visuals.php:1509 +msgid "Use always 1024" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:923 +#: ../../enterprise/meta/include/functions_meta.php:1911 +#: ../../godmode/setup/setup_visuals.php:1098 +#: ../../include/functions_config.php:1165 +msgid "Mobile view not allow visual console orientation" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:941 +msgid "Reports configuration" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:947 +#: ../../godmode/setup/setup_visuals.php:1132 +msgid "Show report info with description" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:948 +msgid "" +"Custom report description info. It will be applied to all reports and " +"templates by default." +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:959 +#: ../../godmode/setup/setup_visuals.php:1141 +msgid "Custom report front page" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:960 +msgid "" +"Custom report front page. It will be applied to all reports and templates by " +"default." +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:971 +#: ../../enterprise/meta/include/functions_meta.php:1393 +#: ../../godmode/setup/setup_visuals.php:1151 +#: ../../include/functions_config.php:1419 +msgid "PDF font size (px)" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:974 +#: ../../enterprise/meta/include/functions_meta.php:1383 +#: ../../godmode/setup/setup_visuals.php:1156 +#: ../../include/functions_config.php:1415 +msgid "HTML font size for SLA (em)" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:977 +#: ../../enterprise/meta/include/functions_meta.php:1508 +#: ../../godmode/setup/setup_visuals.php:1161 +msgid "Graph image height for HTML reports" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:979 +msgid "" +"This is the height in pixels of the module graph or custom graph in the " +"reports (only: HTML)" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:996 +#: ../../enterprise/meta/include/functions_meta.php:1413 +#: ../../godmode/setup/setup_visuals.php:1454 +#: ../../include/functions_config.php:1447 +msgid "CSV divider" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:1036 +#: ../../enterprise/meta/include/functions_meta.php:1423 +#: ../../godmode/setup/setup_visuals.php:1500 +#: ../../include/functions_config.php:1451 +msgid "CSV decimal separator" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:1044 +#: ../../enterprise/meta/include/functions_meta.php:1403 +#: ../../godmode/setup/setup_visuals.php:1170 +msgid "Interval description" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:1046 +msgid "" +"A long interval description is for example 10 hours, 20 minutes 33 secondsĆ¢Ā€Ā, " +"a short one is 10h 20m 33s" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:1061 +#: ../../enterprise/meta/advanced/metasetup.visual.php:1074 +#: ../../enterprise/meta/advanced/metasetup.visual.php:1085 +#: ../../enterprise/meta/advanced/metasetup.visual.php:1095 +#: ../../enterprise/meta/include/functions_meta.php:1793 +#: ../../enterprise/meta/include/functions_meta.php:1809 +#: ../../enterprise/meta/include/functions_meta.php:1819 +#: ../../enterprise/meta/include/functions_meta.php:1829 +#: ../../enterprise/meta/include/functions_meta.php:1839 +#: ../../enterprise/meta/include/functions_meta.php:1849 +#: ../../godmode/setup/setup_visuals.php:1194 +#: ../../godmode/setup/setup_visuals.php:1209 +#: ../../godmode/setup/setup_visuals.php:1217 +#: ../../godmode/setup/setup_visuals.php:1237 +#: ../../godmode/setup/setup_visuals.php:1253 +#: ../../include/functions_config.php:1423 +#: ../../include/functions_config.php:1427 +#: ../../include/functions_config.php:1431 +#: ../../include/functions_config.php:1435 +#: ../../include/functions_config.php:1439 +#: ../../include/functions_config.php:1443 +msgid "Custom report front" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:1061 +#: ../../enterprise/meta/include/functions_meta.php:1568 +#: ../../enterprise/meta/include/functions_meta.php:1819 +#: ../../enterprise/godmode/reporting/reporting_builder.advanced.php:127 +#: ../../enterprise/godmode/reporting/reporting_builder.template_advanced.php:130 +#: ../../godmode/setup/setup_visuals.php:1194 +#: ../../include/functions_config.php:1029 +#: ../../include/functions_config.php:1431 +msgid "Custom logo" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:1062 +#: ../../enterprise/godmode/reporting/reporting_builder.advanced.php:128 +#: ../../enterprise/godmode/reporting/reporting_builder.template_advanced.php:131 +msgid "" +"The path of custom logos is 'images/custom_logo' in the console " +"installation. You can upload more files (ONLY JPEG AND PNG) with the upload " +"tool." +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:1085 +#: ../../enterprise/meta/include/functions_meta.php:1829 +#: ../../enterprise/godmode/reporting/reporting_builder.advanced.php:153 +#: ../../enterprise/godmode/reporting/reporting_builder.template_advanced.php:142 +#: ../../godmode/setup/setup_visuals.php:1217 +#: ../../include/functions_config.php:1435 +msgid "Header" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:1095 +#: ../../enterprise/meta/include/functions_meta.php:1839 +#: ../../enterprise/godmode/reporting/reporting_builder.advanced.php:163 +#: ../../enterprise/godmode/reporting/reporting_builder.template_advanced.php:152 +#: ../../godmode/setup/setup_visuals.php:1237 +#: ../../include/functions_config.php:1439 +msgid "First page" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:1324 +#: ../../godmode/setup/setup_visuals.php:1806 +msgid "Logo preview" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:1346 +#: ../../godmode/setup/setup_visuals.php:1836 +msgid "Splash Preview" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:1351 +#: ../../godmode/setup/setup_visuals.php:1860 +msgid "Background preview" +msgstr "" + +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:124 +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:127 +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:131 +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:135 +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:139 +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:143 +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:147 +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:151 +msgid "Agent: " +msgstr "" + +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:124 +msgid " already exists in target node" +msgstr "" + +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:127 +msgid " group does not exist in target node" +msgstr "" + +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:131 +msgid " policies definitions does not match with defined ones in target node" +msgstr "" + +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:135 +msgid " plugins does not exist in target node" +msgstr "" + +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:139 +msgid " collections does not exist in target node" +msgstr "" + +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:143 +msgid " inventory does not exist in target node" +msgstr "" + +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:147 +msgid " alerts template does not exist in target node" +msgstr "" + +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:151 +msgid " alerts action does not exist in target node" +msgstr "" + +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:155 +msgid "Exists agent conf for agent: " +msgstr "" + +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:155 +msgid " please remove configuration file from target node." +msgstr "" + +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:159 +#: ../../enterprise/include/functions_metaconsole.php:2820 +msgid "There are differences between MR versions" +msgstr "" + +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:163 +#: ../../enterprise/include/functions_metaconsole.php:2813 +msgid "Target server ip address is set" +msgstr "" + +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:267 +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:269 +msgid "The agent: " +msgstr "" + +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:267 +msgid " has been successfully added to the migration queue " +msgstr "" + +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:269 +msgid " has not been added due to problems in the insertion" +msgstr "" + +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:272 +#, php-format +msgid "The agent: %d has already been added to the migration queue" +msgstr "" + +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:289 +#: ../../enterprise/meta/advanced/metasetup.relations.php:87 +#: ../../enterprise/godmode/reporting/graph_template_list.php:156 +#: ../../enterprise/godmode/reporting/graph_template_list.php:183 +#: ../../enterprise/godmode/reporting/graph_template_item_editor.php:130 +#: ../../enterprise/godmode/reporting/graph_template_item_editor.php:158 +#: ../../enterprise/tools/ipam/ipam_network_location_config.php:88 +#: ../../godmode/modules/manage_nc_groups.php:153 +#: ../../godmode/agentes/planned_downtime.list.php:243 +#: ../../godmode/netflow/nf_item_list.php:121 +#: ../../godmode/netflow/nf_item_list.php:149 +#: ../../godmode/netflow/nf_edit.php:105 ../../godmode/netflow/nf_edit.php:138 +#: ../../godmode/reporting/map_builder.php:210 +#: ../../godmode/reporting/graphs.php:152 +#: ../../godmode/reporting/graphs.php:163 +#: ../../godmode/reporting/graphs.php:214 +#: ../../godmode/events/event_filter.php:70 +#: ../../godmode/events/event_filter.php:97 +#: ../../operation/reporting/graph_viewer.php:59 +#: ../../operation/reporting/graph_viewer.php:67 +msgid "Not deleted. Error deleting data" +msgstr "" + +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:292 +msgid "Problems delete queue" +msgstr "" + +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:312 +msgid "Move Agents" +msgstr "" + +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:328 +msgid "Source Server" +msgstr "" + +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:330 +msgid "Destination Server" +msgstr "" + +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:362 +#: ../../enterprise/meta/advanced/policymanager.queue.php:258 +#: ../../enterprise/meta/monitoring/wizard/wizard.php:298 +#: ../../enterprise/meta/monitoring/group_view.php:154 +#: ../../enterprise/meta/monitoring/group_view.php:215 +#: ../../enterprise/meta/include/functions_autoprovision.php:476 +#: ../../enterprise/godmode/agentes/collections.agents.php:53 +#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:100 +#: ../../enterprise/godmode/agentes/collections.data.php:137 +#: ../../enterprise/godmode/agentes/collections.data.php:283 +#: ../../enterprise/godmode/agentes/collections.editor.php:74 +#: ../../enterprise/godmode/policies/policy_queue.php:648 +#: ../../enterprise/godmode/policies/policies.php:407 +#: ../../enterprise/godmode/policies/policies.php:531 +#: ../../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.php:71 +#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:248 +#: ../../enterprise/godmode/massive/massive_add_service_elements.php:361 +#: ../../enterprise/godmode/massive/massive_create_services.php:964 +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:228 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:220 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:305 +#: ../../enterprise/include/functions_cron.php:215 +#: ../../enterprise/include/functions_tasklist.php:338 +#: ../../enterprise/include/functions_reporting_pdf.php:861 +#: ../../enterprise/include/functions_policies.php:3824 +#: ../../enterprise/operation/services/services.service_map.php:158 +#: ../../extensions/agents_modules.php:431 +#: ../../extensions/agents_modules.php:758 +#: ../../godmode/agentes/planned_downtime.list.php:84 +#: ../../godmode/agentes/planned_downtime.list.php:108 +#: ../../godmode/massive/massive_standby_alerts.php:203 +#: ../../godmode/massive/massive_delete_modules.php:535 +#: ../../godmode/massive/massive_add_alerts.php:231 +#: ../../godmode/massive/massive_delete_agents.php:280 +#: ../../godmode/massive/massive_edit_plugins.php:367 +#: ../../godmode/massive/massive_enable_disable_alerts.php:174 +#: ../../godmode/massive/massive_edit_agents.php:566 +#: ../../godmode/massive/massive_delete_alerts.php:314 +#: ../../godmode/massive/massive_edit_modules.php:511 +#: ../../godmode/alerts/alert_list.list.php:79 +#: ../../godmode/reporting/reporting_builder.list_items.php:208 +#: ../../godmode/reporting/reporting_builder.list_items.php:229 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1770 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1832 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2079 +#: ../../godmode/reporting/visual_console_builder.wizard.php:408 +#: ../../mobile/include/functions_web.php:23 +#: ../../mobile/operation/agents.php:204 ../../mobile/operation/home.php:81 +#: ../../mobile/operation/agent.php:155 +#: ../../include/functions_reporting_html.php:1881 +#: ../../include/functions_reporting_html.php:2350 +#: ../../include/functions_reporting_html.php:3128 +#: ../../include/functions_cron.php:663 ../../include/functions_html.php:1655 +#: ../../include/functions_html.php:5464 +#: ../../include/class/Diagnostics.class.php:1161 +#: ../../include/class/Diagnostics.class.php:1165 +#: ../../include/class/Diagnostics.class.php:1169 +#: ../../include/class/Diagnostics.class.php:1173 +#: ../../include/class/NetworkMap.class.php:3228 +#: ../../include/class/AgentsAlerts.class.php:252 +#: ../../include/class/AgentsAlerts.class.php:542 +#: ../../include/lib/Dashboard/Widgets/groups_status.php:329 +#: ../../include/lib/Dashboard/Widgets/groups_status.php:334 +#: ../../include/lib/Dashboard/Widgets/agent_module.php:448 +#: ../../include/functions_groups.php:53 ../../operation/search_results.php:80 +#: ../../operation/agentes/interface_view.functions.php:71 +#: ../../operation/agentes/group_view.php:183 +#: ../../operation/agentes/group_view.php:216 +msgid "Agents" +msgstr "" + +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:364 +msgid "Agents to move" +msgstr "" + +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:385 +msgid "Add agents to destination server" +msgstr "" + +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:394 +msgid "Remove agents to doesn't move to destination server" +msgstr "" + +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:413 +msgid "Discard history data" +msgstr "" + +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:426 +msgid "Agents do not exist in target server." +msgstr "" + +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:427 +msgid "Check group is synchronized with target server." +msgstr "" + +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:428 +msgid "All policies needed are synchronized with target server." +msgstr "" + +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:429 +msgid "All remote plugins needed are synchronized with target server." +msgstr "" + +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:430 +msgid "All collections needed are syncronized with target server." +msgstr "" + +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:431 +msgid "" +"All remote inventory definitions needed are syncronized with target server." +msgstr "" + +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:432 +msgid "" +"All alert templates definitions needed are syncronized with target server." +msgstr "" + +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:433 +msgid "All alert actions needed are syncronized with target server." +msgstr "" + +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:434 +msgid "Agents conf does not exists in target server." +msgstr "" + +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:435 +#, php-format +msgid "Both %s servers must be in the same version" +msgstr "" + +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:436 +msgid "Check target server ip address is set" +msgstr "" + +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:446 +msgid "Move" +msgstr "" + +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:461 +#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:123 +#: ../../enterprise/include/functions_inventory.php:142 +#: ../../enterprise/include/functions_inventory.php:176 +#: ../../include/functions_events.php:250 +msgid "Agent alias" +msgstr "" + +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:462 +msgid "Source node" +msgstr "" + +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:463 +msgid "Target node" +msgstr "" + +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:464 +#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:82 +#: ../../enterprise/godmode/massive/massive_delete_alerts_snmp.php:204 +#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:264 +#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:328 +#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:423 +#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:483 +#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:530 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:816 +#: ../../godmode/agentes/agent_incidents.php:91 +#: ../../godmode/snmpconsole/snmp_alert.php:1105 +#: ../../godmode/snmpconsole/snmp_alert.php:1168 +#: ../../godmode/alerts/alert_list.list.php:136 +#: ../../godmode/alerts/alert_templates.php:51 +#: ../../godmode/alerts/configure_alert_template.php:1118 +#: ../../godmode/alerts/alert_view.php:124 +#: ../../godmode/setup/setup_integria.php:379 +#: ../../godmode/setup/setup_integria.php:501 +#: ../../include/functions_reporting_html.php:5133 +#: ../../include/functions_events.php:4213 +#: ../../operation/agentes/estado_generalagente.php:651 +#: ../../operation/incidents/integriaims_export_csv.php:85 +#: ../../operation/incidents/configure_integriaims_incident.php:296 +#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:325 +#: ../../operation/incidents/list_integriaims_incidents.php:348 +#: ../../operation/incidents/list_integriaims_incidents.php:519 +msgid "Priority" +msgstr "" + +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:465 +#: ../../enterprise/include/class/CommandCenter.class.php:456 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:743 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:1048 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:1143 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:1493 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:1778 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2103 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2534 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2547 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2875 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:3052 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:3142 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:3181 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:3246 +#: ../../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:1578 +msgid "Step" +msgstr "" + +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:467 +msgid "Active db only" +msgstr "" + +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:520 +msgid "Creating modules in target node" +msgstr "" + +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:524 +msgid "Disabling agent in source node and enabling in target one" +msgstr "" + +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:528 +msgid "Transferring data" +msgstr "" + +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:533 +msgid "Creating agent in target node" +msgstr "" + +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:539 +#: ../../enterprise/include/functions_HA_cluster.php:542 +#: ../../enterprise/include/functions_HA_cluster.php:547 +#: ../../enterprise/include/class/DeploymentCenter.class.php:1618 +#: ../../enterprise/include/class/DeploymentCenter.class.php:1623 +#: ../../enterprise/include/class/DatabaseHA.class.php:208 +#: ../../enterprise/include/class/AgentRepository.class.php:862 +#: ../../enterprise/include/class/AgentRepository.class.php:867 +#: ../../enterprise/include/class/Omnishell.class.php:1079 +#: ../../enterprise/include/class/LogSource.class.php:795 +#: ../../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/operation/agentes/transactional_map.php:327 +#: ../../enterprise/operation/agentes/ux_console_view.php:210 +#: ../../enterprise/operation/agentes/ux_console_view.php:352 +#: ../../enterprise/operation/agentes/wux_console_view.php:452 +#: ../../godmode/wizards/DiscoveryTaskList.class.php:1058 +#: ../../include/ajax/snmp_browser.ajax.php:259 +#: ../../include/class/ConfigPEN.class.php:744 +#: ../../include/class/ConfigPEN.class.php:749 +#: ../../include/class/HelpFeedBack.class.php:354 +#: ../../include/class/Diagnostics.class.php:2086 +#: ../../include/class/CredentialStore.class.php:1192 +#: ../../include/class/CredentialStore.class.php:1197 +#: ../../include/class/ModuleTemplates.class.php:1424 +#: ../../include/class/ModuleTemplates.class.php:1429 +#: ../../include/class/WebServerModuleDebug.class.php:366 +#: ../../include/class/WebServerModuleDebug.class.php:371 +#: ../../include/class/AgentWizard.class.php:5841 +#: ../../include/class/AgentWizard.class.php:5846 +#: ../../include/lib/Dashboard/Widgets/wux_transaction.php:372 +#: ../../operation/visual_console/view.php:813 +#: ../../operation/visual_console/view.php:818 +msgid "Failed" +msgstr "" + +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:543 +#: ../../enterprise/meta/advanced/policymanager.queue.php:261 +#: ../../enterprise/godmode/policies/policy_queue.php:671 +#: ../../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:4064 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:4183 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:4337 +msgid "Finished" +msgstr "" + +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:544 +#: ../../update_manager_client/lib/UpdateManager/Client.php:1874 +msgid "Completed" +msgstr "" + +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:549 +msgid "Queued" +msgstr "" + +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:554 +#: ../../enterprise/operation/agentes/transactional_map.php:265 +#: ../../godmode/agentes/planned_downtime.list.php:616 +#: ../../godmode/agentes/planned_downtime.list.php:688 +msgid "Running" +msgstr "" + +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:679 +msgid "checking migration requirements" +msgstr "" + +#: ../../enterprise/meta/advanced/servers.php:39 +#: ../../godmode/servers/modificar_server.php:180 +msgid "Server deleted successfully" +msgstr "" + +#: ../../enterprise/meta/advanced/servers.php:41 +#: ../../godmode/servers/modificar_server.php:182 +msgid "There was a problem deleting the server" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.translate_string.php:129 +#: ../../enterprise/extensions/translate_string.php:253 +msgid "Translation added successfully" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.translate_string.php:131 +#: ../../enterprise/extensions/translate_string.php:255 +msgid "Translation string could not be created" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.translate_string.php:144 +#: ../../enterprise/extensions/translate_string.php:268 +msgid "Translation updated successfully" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.translate_string.php:146 +#: ../../enterprise/extensions/translate_string.php:270 +msgid "Translation string could not be updated" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.translate_string.php:174 +#: ../../enterprise/extensions/translate_string.php:302 +#: ../../godmode/users/configure_user.php:901 +#: ../../operation/users/user_edit.php:325 +msgid "Language" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.translate_string.php:186 +#: ../../enterprise/meta/advanced/metasetup.relations.php:451 +#: ../../enterprise/meta/advanced/collections.php:217 +#: ../../enterprise/meta/advanced/collections.php:230 +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:262 +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:359 +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:416 +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:684 +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:755 +#: ../../enterprise/meta/agentsearch.php:110 +#: ../../enterprise/meta/general/header.php:44 +#: ../../enterprise/meta/general/header.php:46 +#: ../../enterprise/meta/general/main_header.php:689 +#: ../../enterprise/meta/general/main_header.php:691 +#: ../../enterprise/extensions/translate_string.php:323 +#: ../../enterprise/godmode/modules/local_components.php:573 +#: ../../enterprise/godmode/modules/local_components.php:598 +#: ../../enterprise/godmode/agentes/collection_manager.php:48 +#: ../../enterprise/godmode/agentes/collections.php:365 +#: ../../enterprise/godmode/policies/policy_collections.php:254 +#: ../../enterprise/godmode/policies/policy_agents.php:822 +#: ../../enterprise/godmode/policies/policy_agents.php:835 +#: ../../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:513 +#: ../../enterprise/operation/log/log_viewer.php:796 +#: ../../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 +#: ../../enterprise/operation/services/services.table_services.php:147 +#: ../../enterprise/operation/services/services.table_services.php:238 +#: ../../enterprise/tools/ipam/ipam_supernet_config.php:760 +#: ../../enterprise/tools/ipam/ipam_supernet_config.php:797 +#: ../../enterprise/tools/ipam/ipam_list.php:90 +#: ../../enterprise/tools/ipam/ipam_list.php:164 +#: ../../enterprise/tools/ipam/ipam_network_location_config.php:164 +#: ../../enterprise/tools/ipam/ipam_network_location_config.php:173 +#: ../../enterprise/tools/ipam/ipam_vlan_config.php:432 +#: ../../enterprise/tools/ipam/ipam_vlan_config.php:439 +#: ../../extensions/module_groups.php:283 +#: ../../godmode/modules/manage_network_components.php:678 +#: ../../godmode/groups/group_list.php:785 +#: ../../godmode/groups/group_list.php:795 +#: ../../godmode/users/user_list.php:402 ../../godmode/users/user_list.php:412 +#: ../../godmode/agentes/modificar_agente.php:363 +#: ../../godmode/agentes/modificar_agente.php:372 +#: ../../godmode/agentes/planned_downtime.list.php:284 +#: ../../godmode/agentes/planned_downtime.list.php:368 +#: ../../godmode/agentes/module_manager.php:65 +#: ../../godmode/alerts/alert_actions.php:244 +#: ../../godmode/alerts/alert_actions.php:302 +#: ../../godmode/alerts/alert_templates.php:314 +#: ../../godmode/alerts/alert_templates.php:325 +#: ../../godmode/reporting/map_builder.php:350 +#: ../../godmode/reporting/map_builder.php:372 +#: ../../godmode/reporting/graphs.php:241 +#: ../../godmode/reporting/visual_console_favorite.php:158 +#: ../../godmode/reporting/visual_console_favorite.php:188 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1238 +#: ../../godmode/reporting/reporting_builder.php:796 +#: ../../godmode/module_library/module_library_view.php:102 +#: ../../godmode/module_library/module_library_view.php:112 +#: ../../mobile/operation/agent.php:320 ../../include/ajax/heatmap.ajax.php:70 +#: ../../include/functions_snmp.php:358 +#: ../../include/class/AuditLog.class.php:180 +#: ../../include/class/CalendarManager.class.php:1071 +#: ../../include/class/AgentWizard.class.php:2632 +#: ../../include/functions_snmp_browser.php:925 +#: ../../include/functions_snmp_browser.php:1509 +#: ../../operation/search_results.php:192 +#: ../../operation/agentes/estado_agente.php:280 +#: ../../operation/agentes/estado_agente.php:291 +#: ../../operation/agentes/status_monitor.php:547 +#: ../../general/ui/agents_list.php:100 ../../general/ui/agents_list.php:113 +msgid "Search" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.translate_string.php:187 +#: ../../enterprise/meta/advanced/metasetup.translate_string.php:188 +#: ../../enterprise/extensions/translate_string.php:313 +#: ../../enterprise/extensions/translate_string.php:314 +#: ../../enterprise/godmode/agentes/collection_manager.php:42 +#: ../../enterprise/godmode/agentes/collections.php:361 +#: ../../enterprise/godmode/policies/policies.php:326 +#: ../../enterprise/godmode/policies/policy_collections.php:248 +msgid "Free text for search (*)" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.translate_string.php:206 +#: ../../enterprise/extensions/translate_string.php:334 +msgid "Original string" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.translate_string.php:207 +#: ../../enterprise/extensions/translate_string.php:335 +msgid "Translation in selected language" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.translate_string.php:208 +#: ../../enterprise/extensions/translate_string.php:336 +msgid "Customize translation" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.relations.php:218 +#: ../../enterprise/meta/advanced/metasetup.relations.php:572 +#: ../../enterprise/meta/include/functions_autoprovision.php:388 +#: ../../enterprise/meta/include/functions_wizard_meta.php:494 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:755 +#: ../../enterprise/godmode/setup/setup_acl.php:463 +#: ../../enterprise/godmode/setup/setup_acl.php:765 +#: ../../enterprise/include/functions_cron.php:582 +#: ../../enterprise/include/lib/NetworkManager.php:87 +#: ../../godmode/agentes/module_manager_editor_wmi.php:61 +#: ../../godmode/agentes/module_manager_editor_network.php:96 +#: ../../godmode/massive/massive_edit_modules.php:819 +#: ../../include/functions_html.php:1890 ../../include/functions_html.php:1891 +#: ../../include/functions_html.php:2001 ../../include/functions_html.php:2002 +#: ../../include/functions_html.php:2162 ../../include/functions_html.php:2163 +#: ../../include/class/CredentialStore.class.php:945 +#: ../../operation/netflow/nf_live_view.php:392 +msgid "Custom" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.relations.php:239 +msgid "Node Address Default" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.relations.php:271 +#: ../../enterprise/meta/advanced/metasetup.relations.php:388 +msgid "This value will be the one returned by the API" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.relations.php:305 +msgid "Import file" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.relations.php:319 +msgid "Ip Gateway" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.relations.php:320 +#: ../../enterprise/meta/advanced/metasetup.relations.php:564 +msgid "Imei" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.relations.php:330 +#: ../../include/class/NetworkMap.class.php:3086 +#: ../../include/class/NetworkMap.class.php:3087 +msgid "Relations" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.relations.php:351 +msgid "Relation" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.relations.php:361 +#: ../../enterprise/meta/advanced/metasetup.relations.php:440 +msgid "Node Address" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.relations.php:398 +msgid "Insert relation" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.relations.php:406 +msgid "Show list relations" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.relations.php:430 +#: ../../enterprise/meta/include/functions_autoprovision.php:643 +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:496 +#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:548 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:827 +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:413 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2530 +#: ../../enterprise/include/functions_reporting_csv.php:1158 +#: ../../enterprise/include/functions_reporting_csv.php:1184 +#: ../../enterprise/include/functions_reporting_csv.php:1215 +#: ../../enterprise/include/functions_reporting_csv.php:1270 +#: ../../enterprise/include/functions_reporting_csv.php:1374 +#: ../../enterprise/include/functions_reporting_csv.php:2681 +#: ../../enterprise/operation/services/services.service.php:124 +#: ../../enterprise/operation/services/services.list.php:506 +#: ../../godmode/agentes/module_manager_editor_common.php:1214 +#: ../../godmode/snmpconsole/snmp_trap_generator.php:115 +#: ../../godmode/massive/massive_edit_modules.php:884 +#: ../../godmode/alerts/configure_alert_template.php:816 +#: ../../godmode/setup/setup_visuals.php:1342 +#: ../../godmode/setup/setup_visuals.php:1403 +#: ../../godmode/setup/setup_visuals.php:1423 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2643 +#: ../../godmode/reporting/visual_console_builder.wizard.php:319 +#: ../../include/functions_visual_map_editor.php:693 +#: ../../include/functions_reporting_html.php:940 +#: ../../include/functions_reporting_html.php:2245 +#: ../../include/functions_reporting_html.php:4740 +#: ../../include/functions_reporting_html.php:5251 +#: ../../include/ajax/events.php:2116 ../../include/functions_graph.php:5394 +#: ../../include/rest-api/models/VisualConsole/Items/Percentile.php:505 +#: ../../include/functions_reports.php:1068 +#: ../../include/functions_netflow.php:212 +#: ../../include/functions_snmp_browser.php:560 +msgid "Value" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.relations.php:462 +msgid "Show Filters" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.relations.php:549 +msgid "Node address" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.relations.php:550 +#: ../../enterprise/meta/monitoring/wizard/wizard.manage_alert.php:257 +#: ../../enterprise/godmode/modules/manage_inventory_modules.php:278 +#: ../../enterprise/godmode/policies/policy_alerts.php:575 +#: ../../enterprise/godmode/policies/policy_modules.php:1466 +#: ../../enterprise/godmode/admin_access_logs.php:54 +#: ../../enterprise/godmode/alerts/alert_inventory_builder.php:241 +#: ../../enterprise/godmode/alerts/alert_inventory_list.php:379 +#: ../../enterprise/godmode/services/services.massive.elements.php:66 +#: ../../enterprise/godmode/reporting/graph_template_list.php:209 +#: ../../enterprise/godmode/reporting/graph_template_item_editor.php:191 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3535 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3733 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3756 +#: ../../enterprise/godmode/servers/manage_export.php:142 +#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:413 +#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:475 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2629 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2949 +#: ../../enterprise/include/functions_services.php:1615 +#: ../../enterprise/operation/agentes/policy_view.php:260 +#: ../../enterprise/tools/ipam/ipam_list.php:639 +#: ../../enterprise/tools/ipam/ipam_network_location_config.php:258 +#: ../../godmode/modules/manage_nc_groups.php:243 +#: ../../godmode/modules/manage_network_components.php:755 +#: ../../godmode/modules/manage_network_templates.php:248 +#: ../../godmode/agentes/agent_template.php:238 +#: ../../godmode/agentes/planned_downtime.editor.php:1008 +#: ../../godmode/agentes/module_manager.php:867 +#: ../../godmode/netflow/nf_item_list.php:178 +#: ../../godmode/netflow/nf_edit.php:161 +#: ../../godmode/snmpconsole/snmp_alert.php:1278 +#: ../../godmode/snmpconsole/snmp_alert.php:1435 +#: ../../godmode/snmpconsole/snmp_filters.php:291 +#: ../../godmode/massive/massive_operations.php:426 +#: ../../godmode/massive/massive_standby_alerts.php:250 +#: ../../godmode/massive/massive_delete_action_alerts.php:270 +#: ../../godmode/massive/massive_enable_disable_alerts.php:222 +#: ../../godmode/massive/massive_add_action_alerts.php:248 +#: ../../godmode/alerts/alert_list.list.php:760 +#: ../../godmode/alerts/alert_view.php:388 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3941 +#: ../../godmode/reporting/reporting_builder.item_editor.php:4432 +#: ../../godmode/reporting/reporting_builder.item_editor.php:4453 +#: ../../godmode/reporting/visual_console_builder.elements.php:118 +#: ../../godmode/events/event_filter.php:141 +#: ../../mobile/operation/tactical.php:348 +#: ../../include/functions_reporting_html.php:3229 +#: ../../include/functions_reporting_html.php:5771 +#: ../../include/functions.php:3053 ../../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 +#: ../../include/class/AgentsAlerts.class.php:892 +#: ../../include/class/AuditLog.class.php:109 +#: ../../include/class/AuditLog.class.php:201 +#: ../../include/class/ModuleTemplates.class.php:894 +#: ../../include/functions_ui_renders.php:117 +#: ../../operation/agentes/alerts_status.functions.php:127 +#: ../../operation/snmpconsole/snmp_view.php:891 +#: ../../operation/snmpconsole/snmp_view.php:1266 +#: ../../operation/search_alerts.php:37 ../../general/logon_ok.php:241 +msgid "Action" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.relations.php:562 +msgid "Gateway" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.relations.php:642 +msgid "There are no relations yet" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.password.php:73 +msgid "Passwords" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.password.php:79 +#: ../../enterprise/meta/include/functions_meta.php:344 +#: ../../enterprise/godmode/setup/setup.php:383 +#: ../../include/functions_config.php:466 +msgid "Enable password policy" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.password.php:80 +#: ../../enterprise/meta/advanced/metasetup.password.php:122 +#: ../../enterprise/meta/advanced/metasetup.password.php:127 +#: ../../enterprise/meta/advanced/metasetup.password.php:133 +#: ../../enterprise/meta/advanced/metasetup.password.php:139 +#: ../../enterprise/meta/advanced/metasetup.password.php:143 +#: ../../enterprise/meta/advanced/metasetup.password.php:147 +#: ../../enterprise/meta/advanced/metasetup.setup.php:149 +#: ../../enterprise/meta/advanced/metasetup.setup.php:203 +#: ../../enterprise/meta/advanced/metasetup.setup.php:219 +#: ../../enterprise/meta/advanced/metasetup.setup.php:223 +#: ../../enterprise/meta/advanced/metasetup.setup.php:285 +#: ../../enterprise/meta/advanced/metasetup.setup.php:299 +#: ../../enterprise/meta/advanced/metasetup.setup.php:321 +#: ../../enterprise/meta/advanced/metasetup.setup.php:325 +#: ../../enterprise/meta/advanced/metasetup.setup.php:347 +#: ../../enterprise/meta/advanced/metasetup.performance.php:85 +#: ../../enterprise/meta/advanced/metasetup.performance.php:89 +#: ../../enterprise/meta/monitoring/wizard/wizard.php:136 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:553 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:574 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:644 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:665 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:705 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:967 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:1005 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:1033 +#: ../../enterprise/godmode/setup/setup_auth.php:208 +#: ../../enterprise/godmode/setup/setup_auth.php:338 +#: ../../enterprise/godmode/setup/setup_auth.php:386 +#: ../../enterprise/godmode/setup/setup_auth.php:1181 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:553 +#: ../../enterprise/godmode/reporting/graph_template_item_editor.php:209 +#: ../../enterprise/godmode/reporting/visual_console_template.php:286 +#: ../../enterprise/include/functions_cron.php:757 +#: ../../enterprise/include/functions_tasklist.php:323 +#: ../../enterprise/include/functions_reporting_csv.php:1940 +#: ../../enterprise/include/functions_reporting.php:2338 +#: ../../godmode/update_manager/update_manager.setup.php:372 +#: ../../godmode/users/configure_user.php:1080 +#: ../../godmode/agentes/agent_conf_gis.php:125 +#: ../../godmode/massive/massive_edit_agents.php:663 +#: ../../godmode/massive/massive_edit_agents.php:986 +#: ../../godmode/massive/massive_edit_agents.php:995 +#: ../../godmode/massive/massive_edit_modules.php:616 +#: ../../godmode/massive/massive_edit_modules.php:638 +#: ../../godmode/massive/massive_edit_modules.php:707 +#: ../../godmode/massive/massive_edit_modules.php:729 +#: ../../godmode/massive/massive_edit_modules.php:769 +#: ../../godmode/massive/massive_edit_modules.php:1043 +#: ../../godmode/massive/massive_edit_modules.php:1081 +#: ../../godmode/massive/massive_edit_modules.php:1109 +#: ../../godmode/alerts/alert_view.php:129 +#: ../../godmode/alerts/alert_view.php:259 +#: ../../godmode/reporting/reporting_builder.main.php:194 +#: ../../godmode/reporting/reporting_builder.php:1090 +#: ../../godmode/reporting/visual_console_builder.wizard.php:380 +#: ../../godmode/reporting/visual_console_builder.wizard.php:467 +#: ../../godmode/servers/modificar_server.php:47 +#: ../../include/functions_reporting_html.php:1625 +#: ../../include/functions_cron.php:648 ../../include/functions_profile.php:276 +#: ../../include/functions_snmp.php:390 ../../operation/users/user_edit.php:321 +#: ../../operation/netflow/nf_live_view.php:460 +#: ../../operation/snmpconsole/snmp_view.php:653 +msgid "Yes" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.password.php:81 +#: ../../enterprise/meta/advanced/metasetup.password.php:123 +#: ../../enterprise/meta/advanced/metasetup.password.php:128 +#: ../../enterprise/meta/advanced/metasetup.password.php:134 +#: ../../enterprise/meta/advanced/metasetup.password.php:140 +#: ../../enterprise/meta/advanced/metasetup.password.php:144 +#: ../../enterprise/meta/advanced/metasetup.password.php:148 +#: ../../enterprise/meta/advanced/metasetup.setup.php:150 +#: ../../enterprise/meta/advanced/metasetup.setup.php:213 +#: ../../enterprise/meta/advanced/metasetup.setup.php:220 +#: ../../enterprise/meta/advanced/metasetup.setup.php:224 +#: ../../enterprise/meta/advanced/metasetup.setup.php:286 +#: ../../enterprise/meta/advanced/metasetup.setup.php:309 +#: ../../enterprise/meta/advanced/metasetup.setup.php:322 +#: ../../enterprise/meta/advanced/metasetup.setup.php:335 +#: ../../enterprise/meta/advanced/metasetup.setup.php:357 +#: ../../enterprise/meta/advanced/metasetup.performance.php:86 +#: ../../enterprise/meta/advanced/metasetup.performance.php:90 +#: ../../enterprise/meta/monitoring/wizard/wizard.php:137 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:554 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:575 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:645 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:666 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:706 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:967 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:1006 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:1034 +#: ../../enterprise/godmode/setup/setup.php:64 +#: ../../enterprise/godmode/setup/setup_auth.php:208 +#: ../../enterprise/godmode/setup/setup_auth.php:341 +#: ../../enterprise/godmode/setup/setup_auth.php:389 +#: ../../enterprise/godmode/setup/setup_auth.php:1184 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:555 +#: ../../enterprise/godmode/reporting/graph_template_item_editor.php:211 +#: ../../enterprise/godmode/reporting/visual_console_template.php:286 +#: ../../enterprise/include/functions_cron.php:756 +#: ../../enterprise/include/functions_tasklist.php:323 +#: ../../enterprise/include/functions_reporting_csv.php:1940 +#: ../../enterprise/include/functions_reporting.php:2338 +#: ../../godmode/update_manager/update_manager.setup.php:373 +#: ../../godmode/users/configure_user.php:1081 +#: ../../godmode/agentes/agent_conf_gis.php:126 +#: ../../godmode/massive/massive_edit_agents.php:664 +#: ../../godmode/massive/massive_edit_agents.php:987 +#: ../../godmode/massive/massive_edit_agents.php:996 +#: ../../godmode/massive/massive_edit_modules.php:617 +#: ../../godmode/massive/massive_edit_modules.php:639 +#: ../../godmode/massive/massive_edit_modules.php:708 +#: ../../godmode/massive/massive_edit_modules.php:730 +#: ../../godmode/massive/massive_edit_modules.php:770 +#: ../../godmode/massive/massive_edit_modules.php:1043 +#: ../../godmode/massive/massive_edit_modules.php:1082 +#: ../../godmode/massive/massive_edit_modules.php:1110 +#: ../../godmode/alerts/alert_view.php:129 +#: ../../godmode/alerts/alert_view.php:259 +#: ../../godmode/alerts/alert_view.php:352 ../../godmode/setup/news.php:287 +#: ../../godmode/reporting/reporting_builder.main.php:204 +#: ../../godmode/reporting/reporting_builder.php:1092 +#: ../../godmode/reporting/visual_console_builder.wizard.php:390 +#: ../../godmode/reporting/visual_console_builder.wizard.php:468 +#: ../../godmode/servers/modificar_server.php:45 +#: ../../mobile/operation/events.php:365 ../../mobile/operation/events.php:373 +#: ../../include/functions_reporting_html.php:1625 +#: ../../include/functions_cron.php:648 ../../include/functions_profile.php:276 +#: ../../include/functions_snmp.php:382 ../../include/functions_events.php:4576 +#: ../../include/functions_events.php:4581 +#: ../../operation/users/user_edit.php:322 +#: ../../operation/netflow/nf_live_view.php:470 +#: ../../operation/snmpconsole/snmp_view.php:654 +msgid "No" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.password.php:101 +#: ../../enterprise/meta/include/functions_meta.php:354 +#: ../../enterprise/godmode/setup/setup.php:392 +#: ../../include/functions_config.php:470 +msgid "Min. size password" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.password.php:102 +#: ../../enterprise/godmode/setup/setup.php:400 +msgid " Caracters" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.password.php:105 +#: ../../enterprise/meta/include/functions_meta.php:384 +#: ../../enterprise/godmode/setup/setup.php:421 +#: ../../include/functions_config.php:474 +msgid "Password expiration" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.password.php:105 +msgid "Set 0 if never expire." +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.password.php:106 +#: ../../enterprise/godmode/setup/setup.php:429 +msgid " Days" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.password.php:109 +#: ../../enterprise/meta/include/functions_meta.php:404 +#: ../../enterprise/godmode/setup/setup.php:441 +#: ../../include/functions_config.php:482 +msgid "User blocked if login fails" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.password.php:110 +#: ../../enterprise/godmode/setup/setup.php:449 +msgid " Minutes" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.password.php:113 +#: ../../enterprise/meta/include/functions_meta.php:414 +#: ../../enterprise/godmode/setup/setup.php:452 +#: ../../include/functions_config.php:486 +msgid "Number of failed login attempts" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.password.php:113 +msgid "Two attempts minimum" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.password.php:114 +#: ../../enterprise/godmode/setup/setup.php:460 +msgid " Attempts" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.password.php:117 +#: ../../enterprise/meta/include/functions_meta.php:436 +#: ../../enterprise/godmode/setup/setup.php:481 +#: ../../include/functions_config.php:506 +msgid "Compare previous password" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.password.php:121 +#: ../../enterprise/meta/include/functions_meta.php:424 +#: ../../enterprise/godmode/setup/setup.php:472 +#: ../../include/functions_config.php:502 +msgid "Enable password history" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.password.php:126 +#: ../../enterprise/meta/include/functions_meta.php:447 +#: ../../enterprise/godmode/setup/setup.php:463 +#: ../../include/functions_config.php:498 +msgid "Apply password policy to admin users" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.password.php:132 +#: ../../enterprise/meta/include/functions_meta.php:394 +#: ../../enterprise/godmode/setup/setup.php:432 +#: ../../include/functions_config.php:478 +msgid "Force change password on first login" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.password.php:138 +#: ../../enterprise/meta/include/functions_meta.php:364 +#: ../../enterprise/godmode/setup/setup.php:403 +#: ../../include/functions_config.php:490 +msgid "Password must have numbers" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.password.php:142 +#: ../../enterprise/meta/include/functions_meta.php:374 +#: ../../enterprise/godmode/setup/setup.php:412 +#: ../../include/functions_config.php:494 +msgid "Password must have symbols" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.password.php:146 +#: ../../enterprise/meta/include/functions_meta.php:458 +#: ../../enterprise/godmode/setup/setup.php:493 +#: ../../include/functions_config.php:510 +msgid "Activate reset password" +msgstr "" + +#: ../../enterprise/meta/advanced/agents_setup.php:60 +#: ../../enterprise/meta/advanced/policymanager.php:54 +#: ../../enterprise/meta/monitoring/custom_fields_view.php:50 +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:55 +#: ../../enterprise/meta/monitoring/group_view.php:51 +#: ../../enterprise/meta/monitoring/tactical.php:38 +#: ../../enterprise/meta/index.php:956 ../../enterprise/meta/agentsearch.php:48 +#: ../../enterprise/meta/general/logon_ok.php:16 +#: ../../enterprise/extensions/vmware/vmware_view.php:1373 +#: ../../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:1377 +#: ../../operation/netflow/nf_live_view.php:149 +msgid "Main" +msgstr "" + +#: ../../enterprise/meta/advanced/agents_setup.php:64 +msgid "Propagation" +msgstr "" + +#: ../../enterprise/meta/advanced/agents_setup.autoprovision_rules.php:64 +msgid "Cannot create an unnamed rule." +msgstr "" + +#: ../../enterprise/meta/advanced/agents_setup.autoprovision_rules.php:75 +#: ../../enterprise/meta/advanced/agents_setup.autoprovision_rules.php:105 +msgid "Error creating provisioning rule." +msgstr "" + +#: ../../enterprise/meta/advanced/agents_setup.autoprovision_rules.php:91 +#: ../../enterprise/meta/advanced/agents_setup.autoprovision_rules.php:119 +msgid "Error updating provisioning rule." +msgstr "" + +#: ../../enterprise/meta/advanced/agents_setup.autoprovision_rules.php:125 +msgid "Error deleting provisioning rule." +msgstr "" + +#: ../../enterprise/meta/advanced/agents_setup.autoprovision_rules.php:135 +msgid "There was an error rule when moving the provisioning." +msgstr "" + +#: ../../enterprise/meta/advanced/agents_setup.autoprovision_rules.php:201 +#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:190 +msgid "Create rule" +msgstr "" + +#: ../../enterprise/meta/advanced/agents_setup.autoprovision_rules.php:202 +msgid "Edit rule" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.mail.php:79 +#: ../../godmode/update_manager/update_manager.setup.php:168 +#: ../../godmode/update_manager/update_manager.setup.php:243 +msgid "Succesful Update the url config vars." +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.mail.php:80 +#: ../../godmode/update_manager/update_manager.setup.php:169 +#: ../../godmode/update_manager/update_manager.setup.php:244 +msgid "Unsuccesful Update the url config vars." +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.mail.php:98 +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 587.\n" +"\n" +"If you have manual settings in your pandora_server.conf, please note these " +"settings will ignore this console setup." +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.mail.php:104 +#: ../../godmode/setup/setup_general.php:518 +msgid "Mail configuration" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.mail.php:109 +#: ../../include/functions_config.php:370 +msgid "From dir" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.mail.php:112 +#: ../../godmode/setup/setup_general.php:538 +#: ../../include/functions_config.php:374 +msgid "From name" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.mail.php:115 +#: ../../include/functions_config.php:366 +msgid "Server SMTP" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.mail.php:118 +#: ../../include/functions_config.php:378 +msgid "Port SMTP" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.mail.php:121 +#: ../../godmode/setup/setup_general.php:579 +#: ../../include/functions_config.php:386 +msgid "Email user" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.mail.php:124 +#: ../../godmode/setup/setup_general.php:589 +#: ../../include/functions_config.php:390 +msgid "Email password" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.php:55 +msgid "Consoles Setup" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.php:63 +#: ../../enterprise/meta/advanced/metasetup.php:216 +msgid "General setup" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.php:71 +#: ../../enterprise/meta/advanced/metasetup.php:219 +msgid "Passwords setup" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.php:80 +#: ../../enterprise/meta/advanced/metasetup.php:223 +#: ../../enterprise/meta/include/functions_meta.php:293 +#: ../../enterprise/meta/general/main_header.php:143 +#: ../../enterprise/meta/general/main_menu.php:249 +#: ../../enterprise/operation/log/elasticsearch_interface.php:31 +#: ../../enterprise/operation/log/log_viewer.php:377 +#: ../../enterprise/operation/log/log_viewer.php:417 +#: ../../enterprise/operation/menu.php:181 +msgid "Log viewer" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.php:91 +#: ../../enterprise/meta/advanced/metasetup.php:227 ../../godmode/menu.php:339 +#: ../../godmode/setup/setup.php:113 ../../godmode/setup/setup.php:255 +msgid "Authentication" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.php:101 +#: ../../enterprise/meta/advanced/metasetup.php:231 +msgid "Visual setup" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.php:109 +#: ../../enterprise/meta/advanced/metasetup.php:235 +msgid "Performance setup" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.php:117 +#: ../../enterprise/meta/advanced/metasetup.php:239 ../../godmode/menu.php:407 +#: ../../godmode/setup/file_manager.php:47 +#: ../../godmode/setup/file_manager.php:60 +msgid "File manager" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.php:125 +#: ../../enterprise/meta/advanced/metasetup.php:243 +msgid "Strings translation" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.php:133 +#: ../../enterprise/meta/advanced/metasetup.php:247 +msgid "Mail" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.php:141 +#: ../../enterprise/meta/advanced/metasetup.php:251 ../../godmode/menu.php:363 +#: ../../godmode/setup/setup.php:204 ../../godmode/setup/setup.php:300 +msgid "Notifications" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.php:153 +msgid "Relations rules" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.php:166 +msgid "Warp Update Setup" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.php:174 +msgid "Warp Update Journal" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.php:182 +msgid "Warp Update Offline" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.php:190 +msgid "Warp Update Online" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.php:211 +msgid "Consoles setup" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.php:255 +msgid "Relations Rules" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.php:259 +msgid "Online Update Options" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.php:263 +msgid "Online Update Journal" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.php:268 +msgid "Online Update Offline" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.php:275 +msgid "Online Update Online" +msgstr "" + +#: ../../enterprise/meta/advanced/policymanager.apply.php:129 +#: ../../enterprise/godmode/policies/policy.php:198 +#: ../../enterprise/godmode/policies/policy.php:246 +msgid "Duplicated or incompatible operation in the queue" +msgstr "" + +#: ../../enterprise/meta/advanced/policymanager.apply.php:137 +#: ../../enterprise/meta/advanced/policymanager.apply.php:141 +#: ../../enterprise/godmode/policies/policy.php:186 +#: ../../enterprise/godmode/policies/policy.php:241 +msgid "Operation successfully added to the queue" +msgstr "" + +#: ../../enterprise/meta/advanced/policymanager.apply.php:141 +#: ../../enterprise/meta/advanced/policymanager.apply.php:149 +msgid "Only database" +msgstr "" + +#: ../../enterprise/meta/advanced/policymanager.apply.php:145 +#: ../../enterprise/meta/advanced/policymanager.apply.php:149 +#: ../../enterprise/meta/advanced/policymanager.apply.php:153 +#: ../../enterprise/godmode/policies/policy.php:192 +#: ../../enterprise/godmode/policies/policy.php:242 +msgid "Operation cannot be added to the queue" +msgstr "" + +#: ../../enterprise/meta/advanced/policymanager.apply.php:186 +msgid "Apply Policies" +msgstr "" + +#: ../../enterprise/meta/advanced/policymanager.apply.php:198 +#: ../../enterprise/include/functions_groups.php:33 +#: ../../enterprise/operation/agentes/ver_agente.php:239 +#: ../../include/functions_networkmap.php:1299 +#: ../../include/functions_maps.php:42 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:333 +#: ../../operation/tree.php:127 ../../operation/search_results.php:171 +#: ../../operation/search_main.php:73 +msgid "Policies" +msgstr "" + +#: ../../enterprise/meta/advanced/policymanager.apply.php:200 +#: ../../enterprise/godmode/servers/HA_cluster.php:97 +#: ../../godmode/menu.php:286 ../../godmode/setup/os.php:225 +#: ../../godmode/reporting/visual_console_builder.wizard.php:333 +#: ../../mobile/include/functions_web.php:28 +msgid "Servers" +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 +#: ../../include/functions_visual_map_editor.php:641 +msgid "Apply" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.consoles.php:99 +#: ../../enterprise/include/class/Omnishell.class.php:1553 +#: ../../enterprise/include/lib/Metaconsole/Node.php:140 +#: ../../enterprise/include/lib/Metaconsole/Node.php:189 +#: ../../enterprise/include/lib/Metaconsole/Node.php:240 +#: ../../enterprise/include/lib/Metaconsole/Node.php:284 +#: ../../enterprise/include/lib/Metaconsole/Node.php:337 +msgid "success" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.consoles.php:105 +#, php-format +msgid "Node %s is not recognized as metaconsole node." +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.consoles.php:112 +#, php-format +msgid "Node %s license missmatch." +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.consoles.php:119 +#, php-format +msgid "Cannot connect to node %s" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.consoles.php:126 +#, php-format +msgid "Unknown error synchronizing %s" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.consoles.php:136 +#, php-format +msgid "Synchronized %d nodes, but some failed to synchronize %s" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.consoles.php:143 +#, php-format +msgid "Successfully synchronized all nodes (%d)" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.consoles.php:210 +msgid "Node synchronization process failed" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.consoles.php:210 +#: ../../enterprise/meta/advanced/metasetup.consoles.php:324 +msgid "" +"If you are trying to migrate this node to a new metaconsole, please use the " +"form available at Settings > Enterprise at node console." +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.consoles.php:220 +#: ../../enterprise/godmode/setup/setup_metaconsole.php:86 +msgid "Could not be update" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.consoles.php:260 +msgid "Could not be created, duplicated register found." +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.consoles.php:322 +msgid "Node synchronization process failed: " +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.consoles.php:322 +#: ../../godmode/setup/license.php:101 +msgid "Unknown error" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.consoles.php:343 +msgid "Successfully registered" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.consoles.php:344 +#, php-format +msgid "Could not be registered %s" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.consoles.php:370 +msgid "Successfully delete" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.consoles.php:371 +msgid "Could not be delete" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.consoles.php:387 +#: ../../enterprise/godmode/policies/policy_alerts.php:126 +#: ../../enterprise/godmode/policies/policy_modules.php:517 +#: ../../enterprise/godmode/setup/setup_metaconsole.php:147 +#: ../../godmode/users/user_list.php:372 +#: ../../godmode/agentes/configurar_agente.php:2175 +#: ../../godmode/agentes/modificar_agente.php:234 +#: ../../godmode/massive/massive_enable_disable_alerts.php:102 +#: ../../godmode/alerts/alert_list.php:366 +#: ../../include/ajax/alert_list.ajax.php:358 +msgid "Successfully enabled" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.consoles.php:388 +#: ../../enterprise/godmode/policies/policy_alerts.php:127 +#: ../../enterprise/godmode/policies/policy_modules.php:518 +#: ../../enterprise/godmode/setup/setup_metaconsole.php:148 +#: ../../godmode/agentes/configurar_agente.php:2176 +#: ../../godmode/agentes/modificar_agente.php:235 +#: ../../godmode/massive/massive_enable_disable_alerts.php:102 +#: ../../godmode/alerts/alert_list.php:367 +#: ../../include/ajax/alert_list.ajax.php:360 +msgid "Could not be enabled" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.consoles.php:412 +#: ../../enterprise/godmode/policies/policy_alerts.php:152 +#: ../../enterprise/godmode/policies/policy_modules.php:534 +#: ../../enterprise/godmode/setup/setup_metaconsole.php:156 +#: ../../godmode/users/user_list.php:366 +#: ../../godmode/agentes/configurar_agente.php:2200 +#: ../../godmode/agentes/modificar_agente.php:277 +#: ../../godmode/massive/massive_enable_disable_alerts.php:124 +#: ../../godmode/alerts/alert_list.php:393 +#: ../../include/ajax/alert_list.ajax.php:379 +msgid "Successfully disabled" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.consoles.php:413 +#, php-format +msgid "Could not be disabled: %s" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.consoles.php:429 +#, php-format +msgid "" +"System is centralised, but you just modify nodes registered, please go to %s " +"to perform a database merge process." +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.consoles.php:432 +msgid "This node will not be usable until unifying the environment" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.consoles.php:507 +#, php-format +msgid "%s Metaconsole item edition" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.consoles.php:513 +#: ../../enterprise/meta/advanced/metasetup.consoles.php:835 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:513 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1705 +#: ../../enterprise/include/functions_reporting_csv.php:1158 +#: ../../godmode/reporting/graph_builder.graph_editor.php:214 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1215 +#: ../../godmode/reporting/visual_console_builder.elements.php:104 +#: ../../godmode/reporting/visual_console_builder.elements.php:284 +#: ../../godmode/reporting/visual_console_builder.wizard.php:446 +#: ../../include/functions_visual_map_editor.php:67 +#: ../../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:4254 +#: ../../include/rest-api/models/VisualConsole/Item.php:1941 +#: ../../include/rest-api/models/VisualConsole/Item.php:2135 +#: ../../include/lib/Dashboard/Widgets/sla_percent.php:285 +#: ../../include/lib/Dashboard/Widgets/BlockHistogram.php:284 +#: ../../include/lib/Dashboard/Widgets/module_icon.php:304 +#: ../../include/lib/Dashboard/Widgets/module_value.php:278 +#: ../../include/lib/Dashboard/Widgets/ColorModuleTabs.php:260 +#: ../../include/lib/Dashboard/Widgets/graph_module_histogram.php:274 +#: ../../include/lib/Dashboard/Widgets/module_status.php:294 +#: ../../operation/visual_console/view.php:336 +msgid "Label" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.consoles.php:513 +msgid "Custom label to identify this setup." +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.consoles.php:516 +#: ../../enterprise/meta/advanced/metasetup.consoles.php:837 +#: ../../enterprise/godmode/setup/setup_metaconsole.php:206 +msgid "Console URL" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.consoles.php:516 +#, php-format +msgid "Full path to %s console (without index.php). Example %s" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.consoles.php:519 +#: ../../enterprise/godmode/setup/setup_metaconsole.php:202 +msgid "Auth token" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.consoles.php:520 +#, php-format +msgid "" +"Token previously configured on the destination %s console in order to use " +"delegated authentification." +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.consoles.php:533 +#: ../../enterprise/meta/advanced/metasetup.setup.php:267 +#: ../../enterprise/meta/include/functions_meta.php:218 +#: ../../enterprise/meta/include/functions_meta.php:228 +#: ../../enterprise/godmode/setup/setup_metaconsole.php:210 +#: ../../godmode/setup/setup_general.php:212 +#: ../../include/functions_config.php:234 +msgid "API password" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.consoles.php:544 +#: ../../enterprise/godmode/setup/setup_metaconsole.php:233 +msgid "Console User" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.consoles.php:553 +#: ../../enterprise/godmode/setup/setup_metaconsole.php:237 +msgid "Console Password" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.consoles.php:564 +#: ../../enterprise/meta/advanced/metasetup.consoles.php:838 +#: ../../enterprise/godmode/setup/setup_metaconsole.php:215 +#: ../../enterprise/godmode/setup/setup_metaconsole.php:275 +msgid "DB Host" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.consoles.php:573 +#: ../../enterprise/godmode/setup/setup_metaconsole.php:219 +msgid "DB Name" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.consoles.php:582 +#: ../../enterprise/godmode/setup/setup_metaconsole.php:224 +msgid "DB User" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.consoles.php:591 +#: ../../enterprise/godmode/setup/setup_metaconsole.php:228 +msgid "DB Password" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.consoles.php:602 +#: ../../enterprise/include/class/DatabaseHA.class.php:959 +msgid "DB port" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.consoles.php:613 +#: ../../enterprise/meta/advanced/metasetup.consoles.php:699 +#: ../../enterprise/meta/advanced/metasetup.consoles.php:704 +#: ../../enterprise/godmode/policies/policy_modules.php:412 +#: ../../enterprise/godmode/policies/policy_external_alerts.php:598 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:141 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:230 +#: ../../extensions/quick_shell.php:521 +#: ../../godmode/agentes/module_manager_editor.php:746 +#: ../../godmode/agentes/agent_manager.php:787 +#: ../../godmode/agentes/agent_manager.php:921 +#: ../../godmode/massive/massive_edit_agents.php:1027 +#: ../../godmode/massive/massive_add_action_alerts.php:250 +#: ../../include/functions_visual_map_editor.php:895 +#: ../../operation/agentes/status_monitor.php:848 +#: ../../operation/events/events.php:2068 +msgid "Advanced options" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.consoles.php:613 +msgid "Define database connection from Pandora FMS node to this Metaconsole" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.consoles.php:635 +msgid "Metaconsole DB Host" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.consoles.php:644 +msgid "Metaconsole DB Name" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.consoles.php:653 +msgid "Metaconsole DB User" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.consoles.php:662 +msgid "Metaconsole DB Password" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.consoles.php:673 +#: ../../enterprise/godmode/setup/setup.php:179 +msgid "Metaconsole DB port" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.consoles.php:726 +msgid "Register empty node" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.consoles.php:732 +msgid "Register node with data to merge" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.consoles.php:769 +msgid "Node data will be wiped out" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.consoles.php:770 +msgid "" +"Information contained in this node is not needed. Node information will be " +"erased, and replaced with new data from this metaconsole automatically after " +"register the node. Are you sure?" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.consoles.php:786 +msgid "Node data will be merged" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.consoles.php:787 +msgid "" +"Information contained in this node is useful. After register the node, you " +"must launch a merge process from command center, which will combine " +"information in current environment with information contained in this new " +"node. Are you sure?" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.consoles.php:829 +#: ../../enterprise/godmode/setup/setup_metaconsole.php:270 +#: ../../enterprise/include/class/CommandCenter.class.php:317 +msgid "DB" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.consoles.php:830 +#: ../../enterprise/godmode/setup/setup_metaconsole.php:271 +#: ../../enterprise/include/class/CommandCenter.class.php:318 +msgid "API" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.consoles.php:831 +#: ../../enterprise/godmode/setup/setup_metaconsole.php:272 +msgid "Compatibility" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.consoles.php:832 +#: ../../enterprise/include/functions_setup.php:192 +msgid "Agent cache" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.consoles.php:833 +#: ../../enterprise/meta/advanced/policymanager.sync.php:328 +#: ../../enterprise/godmode/servers/HA_cluster.php:166 +#: ../../enterprise/include/functions_setup.php:201 +msgid "Sync" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.consoles.php:834 +msgid "Database sync" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.consoles.php:839 +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:328 +#: ../../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:1357 +msgid "Manage" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.consoles.php:901 +msgid "New node" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.consoles.php:933 +msgid "Synchronize all" +msgstr "" + +#: ../../enterprise/meta/advanced/links.php:47 ../../godmode/setup/links.php:42 +msgid "There was a problem creating link" +msgstr "" + +#: ../../enterprise/meta/advanced/links.php:49 +#: ../../enterprise/meta/advanced/cron_main.php:158 +#: ../../enterprise/meta/advanced/cron_main.php:202 +#: ../../enterprise/meta/advanced/cron_main.php:295 +#: ../../enterprise/godmode/alerts/alert_inventory_builder.php:76 +#: ../../enterprise/godmode/setup/setup_metaconsole.php:125 +#: ../../enterprise/godmode/reporting/reporting_builder.template_editor.php:47 +#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:221 +#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:234 +#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:283 +#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:302 +#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:382 +#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:399 +#: ../../enterprise/godmode/servers/manage_export.php:112 +#: ../../enterprise/godmode/servers/manage_export.php:119 +#: ../../enterprise/godmode/servers/credential_boxes_satellite.php:80 +#: ../../enterprise/godmode/servers/credential_boxes_satellite.php:111 +#: ../../enterprise/include/ajax/servers.ajax.php:197 +#: ../../enterprise/include/ajax/servers.ajax.php:330 +#: ../../enterprise/include/class/NetworkConfigManager.class.php:1787 +#: ../../enterprise/include/class/NetworkConfigManager.class.php:1877 +#: ../../enterprise/include/class/NetworkConfigManager.class.php:1972 +#: ../../enterprise/include/class/NetworkConfigManager.class.php:2066 +#: ../../enterprise/operation/agentes/transactional_map.php:134 +#: ../../enterprise/tools/ipam/ipam_action.php:214 +#: ../../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:472 +#: ../../godmode/agentes/configurar_agente.php:881 +#: ../../godmode/agentes/planned_downtime.editor.php:416 +#: ../../godmode/snmpconsole/snmp_alert.php:302 +#: ../../godmode/snmpconsole/snmp_filters.php:164 +#: ../../godmode/alerts/alert_commands.php:572 +#: ../../godmode/alerts/configure_alert_template.php:536 +#: ../../godmode/alerts/alert_list.php:178 ../../godmode/setup/news.php:66 +#: ../../godmode/setup/gis.php:47 ../../godmode/setup/links.php:44 +#: ../../include/functions_alerts.php:2747 +#: ../../include/class/CalendarManager.class.php:537 +#: ../../include/class/CalendarManager.class.php:894 +#: ../../include/functions_planned_downtimes.php:114 +#: ../../include/functions_planned_downtimes.php:832 +msgid "Successfully created" +msgstr "" + +#: ../../enterprise/meta/advanced/links.php:60 +msgid "The link was not updated, the data is identical" +msgstr "" + +#: ../../enterprise/meta/advanced/links.php:68 ../../godmode/setup/links.php:61 +msgid "There was a problem modifying link" +msgstr "" + +#: ../../enterprise/meta/advanced/links.php:70 +#: ../../enterprise/godmode/agentes/agent_disk_conf_editor.php:111 +#: ../../enterprise/godmode/policies/policy_modules.php:1249 +#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:122 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:398 +#: ../../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:329 +#: ../../enterprise/include/class/NetworkConfigManager.class.php:1784 +#: ../../enterprise/include/class/NetworkConfigManager.class.php:1874 +#: ../../enterprise/include/class/NetworkConfigManager.class.php:1969 +#: ../../enterprise/include/class/NetworkConfigManager.class.php:2063 +#: ../../enterprise/include/class/NetworkConfigManager.class.php:2688 +#: ../../enterprise/operation/agentes/transactional_map.php:166 +#: ../../enterprise/tools/ipam/ipam_action.php:255 +#: ../../enterprise/tools/ipam/ipam_network_location_config.php:71 +#: ../../enterprise/tools/ipam/ipam_massive.php:47 +#: ../../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:1173 +#: ../../godmode/agentes/planned_downtime.editor.php:418 +#: ../../godmode/netflow/nf_edit_form.php:139 +#: ../../godmode/snmpconsole/snmp_alert.php:444 +#: ../../godmode/snmpconsole/snmp_filters.php:110 +#: ../../godmode/massive/massive_edit_modules.php:184 +#: ../../godmode/alerts/configure_alert_command.php:144 +#: ../../godmode/alerts/alert_templates.php:156 +#: ../../godmode/alerts/configure_alert_template.php:554 +#: ../../godmode/alerts/alert_list.php:94 +#: ../../godmode/alerts/alert_list.php:312 ../../godmode/setup/news.php:107 +#: ../../godmode/setup/gis.php:39 ../../godmode/setup/links.php:63 +#: ../../godmode/events/event_edit_filter.php:220 +#: ../../include/functions_alerts.php:2747 +#: ../../include/class/CalendarManager.class.php:534 +#: ../../include/class/CalendarManager.class.php:891 +#: ../../include/functions_planned_downtimes.php:124 +#: ../../operation/snmpconsole/snmp_view.php:174 +msgid "Successfully updated" +msgstr "" + +#: ../../enterprise/meta/advanced/links.php:82 ../../godmode/setup/links.php:74 +msgid "There was a problem deleting link" +msgstr "" + +#: ../../enterprise/meta/advanced/links.php:100 +msgid "Link Name error" +msgstr "" + +#: ../../enterprise/meta/advanced/links.php:127 +#: ../../enterprise/meta/advanced/links.php:156 +#: ../../godmode/setup/links.php:116 ../../godmode/setup/links.php:145 +msgid "Link name" +msgstr "" + +#: ../../enterprise/meta/advanced/links.php:130 +#: ../../enterprise/godmode/policies/policy_linking.php:204 +#: ../../godmode/setup/links.php:119 +msgid "Link" +msgstr "" + +#: ../../enterprise/meta/advanced/links.php:152 +#: ../../godmode/setup/links.php:141 +msgid "There isn't links" +msgstr "" + +#: ../../enterprise/meta/advanced/policymanager.php:58 +msgid "Policy Manager" +msgstr "" + +#: ../../enterprise/meta/advanced/policymanager.php:75 +msgid "Apply policies" +msgstr "" + +#: ../../enterprise/meta/advanced/policymanager.php:79 +#: ../../enterprise/meta/advanced/policymanager.php:97 +msgid "Policies queue" +msgstr "" + +#: ../../enterprise/meta/advanced/policymanager.php:93 +msgid "Policies apply" +msgstr "" + +#: ../../enterprise/meta/advanced/collections.data.php:33 +#: ../../enterprise/meta/advanced/collections.editor.php:60 +#: ../../enterprise/meta/include/functions_agents_meta.php:533 +#: ../../enterprise/godmode/agentes/collections.agents.php:44 +#: ../../enterprise/godmode/agentes/collections.data.php:54 +#: ../../enterprise/godmode/agentes/collections.editor.php:71 +#: ../../enterprise/godmode/policies/policies.php:505 +#: ../../enterprise/godmode/policies/policy_collections.php:31 +#: ../../enterprise/godmode/menu.php:70 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2106 +#: ../../enterprise/include/functions_policies.php:3798 +#: ../../general/first_task/collections.php:22 +msgid "Collections" +msgstr "" + +#: ../../enterprise/meta/advanced/collections.data.php:46 +#: ../../enterprise/meta/advanced/collections.data.php:86 +#: ../../enterprise/meta/advanced/collections.data.php:104 +#: ../../enterprise/meta/advanced/collections.data.php:124 +#: ../../enterprise/meta/advanced/collections.data.php:149 +#: ../../enterprise/meta/advanced/collections.data.php:172 +#: ../../enterprise/meta/advanced/collections.data.php:197 +#: ../../enterprise/meta/advanced/collections.data.php:238 +#: ../../enterprise/meta/advanced/collections.data.php:263 +#: ../../enterprise/meta/advanced/collections.editor.php:54 +#: ../../enterprise/meta/include/functions_events_meta.php:134 +#: ../../enterprise/godmode/agentes/collections.agents.php:47 +#: ../../enterprise/godmode/agentes/collections.agents.php:56 +#: ../../enterprise/godmode/agentes/collections.data.php:74 +#: ../../enterprise/godmode/agentes/collections.data.php:117 +#: ../../enterprise/godmode/agentes/collections.data.php:184 +#: ../../enterprise/godmode/agentes/collections.data.php:204 +#: ../../enterprise/godmode/agentes/collections.data.php:224 +#: ../../enterprise/godmode/agentes/collections.data.php:251 +#: ../../enterprise/godmode/agentes/collections.data.php:279 +#: ../../enterprise/godmode/agentes/collections.data.php:309 +#: ../../enterprise/godmode/agentes/collections.data.php:332 +#: ../../enterprise/godmode/agentes/collections.editor.php:56 +#: ../../enterprise/include/functions_reporting_pdf.php:702 +#: ../../enterprise/include/functions_reporting_csv.php:802 +#: ../../enterprise/include/functions_reporting_csv.php:832 +#: ../../enterprise/include/functions_reporting_csv.php:879 +#: ../../enterprise/include/functions_reporting_csv.php:915 +#: ../../enterprise/include/functions_reporting_csv.php:954 +#: ../../enterprise/include/functions_reporting_csv.php:1014 +#: ../../enterprise/include/functions_reporting_csv.php:1458 +#: ../../enterprise/include/functions_reporting_csv.php:2281 +#: ../../enterprise/include/functions_reporting_csv.php:2317 +#: ../../enterprise/include/functions_reporting_csv.php:2423 +#: ../../enterprise/include/functions_reporting_csv.php:2518 +#: ../../enterprise/include/functions_reporting_csv.php:2740 +#: ../../enterprise/include/functions_reporting.php:2185 +#: ../../enterprise/include/functions_reporting.php:2218 +#: ../../enterprise/include/functions_reporting.php:2222 +#: ../../enterprise/include/functions_services.php:1612 +#: ../../enterprise/operation/agentes/policy_view.php:398 +#: ../../enterprise/operation/agentes/tag_view.php:684 +#: ../../extensions/insert_data.php:194 ../../extensions/insert_data.php:195 +#: ../../godmode/agentes/status_monitor_custom_fields.php:113 +#: ../../godmode/agentes/status_monitor_custom_fields.php:152 +#: ../../godmode/events/custom_events.php:115 +#: ../../mobile/operation/modules.php:715 +#: ../../mobile/operation/modules.php:718 +#: ../../mobile/operation/modules.php:719 +#: ../../mobile/operation/modules.php:720 +#: ../../mobile/operation/modules.php:721 +#: ../../mobile/operation/modules.php:722 +#: ../../mobile/operation/modules.php:723 +#: ../../mobile/operation/modules.php:724 +#: ../../mobile/operation/modules.php:725 +#: ../../mobile/operation/modules.php:727 +#: ../../mobile/operation/modules.php:730 +#: ../../mobile/operation/modules.php:731 +#: ../../mobile/operation/modules.php:732 +#: ../../mobile/operation/modules.php:733 +#: ../../mobile/operation/modules.php:734 +#: ../../mobile/operation/modules.php:735 +#: ../../mobile/operation/modules.php:736 +#: ../../mobile/operation/modules.php:737 +#: ../../mobile/operation/modules.php:853 +#: ../../include/functions_reporting_html.php:2144 +#: ../../include/functions_reporting_html.php:2629 +#: ../../include/functions_reporting_html.php:2633 +#: ../../include/functions_reporting_html.php:2634 +#: ../../include/functions_reporting_html.php:2638 +#: ../../include/functions_reporting_html.php:2643 +#: ../../include/functions_reporting_html.php:2648 +#: ../../include/functions_reporting_html.php:2652 +#: ../../include/functions_reporting_html.php:2657 +#: ../../include/functions_reporting_html.php:2664 +#: ../../include/functions_reporting_html.php:2713 +#: ../../include/functions_reporting_html.php:2786 +#: ../../include/ajax/module.php:982 ../../include/ajax/custom_fields.php:412 +#: ../../include/functions_graph.php:3709 +#: ../../include/functions_netflow.php:301 +#: ../../include/functions_reporting.php:4194 +#: ../../include/functions_reporting.php:4235 +#: ../../include/functions_reporting.php:4986 +#: ../../include/functions_events.php:218 +#: ../../include/functions_events.php:301 +#: ../../operation/agentes/exportdata.csv.php:74 +#: ../../operation/agentes/exportdata.php:83 +#: ../../operation/agentes/status_monitor.php:1356 +#: ../../operation/agentes/exportdata.excel.php:74 +#: ../../operation/search_modules.php:38 +msgid "Data" +msgstr "" + +#: ../../enterprise/meta/advanced/collections.data.php:76 +#: ../../enterprise/godmode/agentes/collections.data.php:174 +msgid "" +"Unable to create the collection. Another collection with the same short name." +msgstr "" + +#: ../../enterprise/meta/advanced/collections.data.php:97 +#: ../../enterprise/meta/advanced/collections.data.php:117 +#: ../../enterprise/godmode/agentes/collections.data.php:197 +#: ../../enterprise/godmode/agentes/collections.data.php:217 +msgid "Unable to create the collection" +msgstr "" + +#: ../../enterprise/meta/advanced/collections.data.php:97 +#: ../../enterprise/godmode/agentes/collections.data.php:197 +msgid "Invalid characters in short name" +msgstr "" + +#: ../../enterprise/meta/advanced/collections.data.php:111 +#: ../../enterprise/godmode/agentes/collections.data.php:59 +#: ../../enterprise/godmode/agentes/collections.data.php:167 +#: ../../enterprise/godmode/agentes/collections.data.php:191 +#: ../../enterprise/godmode/agentes/collections.data.php:211 +#: ../../enterprise/godmode/agentes/collections.data.php:238 +#: ../../enterprise/godmode/agentes/collections.data.php:294 +msgid "Manager configuration > New" +msgstr "" + +#: ../../enterprise/meta/advanced/collections.data.php:117 +#: ../../enterprise/godmode/agentes/collections.data.php:217 +#: ../../enterprise/include/functions_local_components.php:174 +msgid "Empty name" +msgstr "" + +#: ../../enterprise/meta/advanced/collections.data.php:142 +#: ../../enterprise/meta/advanced/collections.data.php:190 +#: ../../enterprise/godmode/agentes/collections.data.php:244 +#: ../../enterprise/godmode/agentes/collections.data.php:302 +msgid "Unable to create the collection." +msgstr "" + +#: ../../enterprise/meta/advanced/collections.data.php:163 +#: ../../enterprise/meta/advanced/collections.data.php:309 +#: ../../enterprise/godmode/agentes/collections.data.php:270 +msgid "Correct create collection" +msgstr "" + +#: ../../enterprise/meta/advanced/collections.data.php:174 +#: ../../enterprise/meta/advanced/collections.data.php:241 +#: ../../enterprise/meta/advanced/collections.data.php:265 +#: ../../enterprise/meta/advanced/collections.editor.php:57 +#: ../../enterprise/meta/advanced/collections.editor.php:385 +#: ../../enterprise/meta/advanced/collections.editor.php:402 +#: ../../enterprise/godmode/agentes/collections.agents.php:50 +#: ../../enterprise/godmode/agentes/collections.data.php:127 +#: ../../enterprise/godmode/agentes/collections.data.php:281 +#: ../../enterprise/godmode/agentes/collections.data.php:334 +#: ../../enterprise/godmode/agentes/collections.editor.php:65 +#: ../../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:1665 +msgid "Files" +msgstr "" + +#: ../../enterprise/meta/advanced/collections.data.php:231 +#: ../../enterprise/godmode/agentes/collections.data.php:106 +#: ../../enterprise/godmode/agentes/collections.data.php:262 +#: ../../enterprise/godmode/agentes/collections.data.php:351 +#: ../../enterprise/godmode/agentes/collections.data.php:367 +#: ../../enterprise/godmode/agentes/collections.data.php:375 +#: ../../enterprise/godmode/agentes/collections.editor.php:84 +msgid "Manager configuration > Edit " +msgstr "" + +#: ../../enterprise/meta/advanced/collections.data.php:287 +#: ../../enterprise/godmode/agentes/collections.data.php:358 +msgid "Unable to edit the collection, empty name." +msgstr "" + +#: ../../enterprise/meta/advanced/collections.data.php:300 +#: ../../enterprise/godmode/agentes/collections.data.php:373 +msgid "Unable to edit the collection." +msgstr "" + +#: ../../enterprise/meta/advanced/collections.data.php:320 +#: ../../enterprise/meta/advanced/collections.editor.php:79 +msgid "This console is not manager of this environment." +msgstr "" + +#: ../../enterprise/meta/advanced/collections.data.php:332 +#: ../../enterprise/meta/include/functions_autoprovision.php:566 +#: ../../enterprise/godmode/agentes/collections.data.php:425 +#: ../../godmode/setup/os.builder.php:35 +#: ../../godmode/reporting/visual_console_builder.data.php:106 +msgid "Name:" +msgstr "" + +#: ../../enterprise/meta/advanced/collections.data.php:345 +#: ../../enterprise/godmode/agentes/collections.data.php:438 +msgid "Recreate file" +msgstr "" + +#: ../../enterprise/meta/advanced/collections.data.php:373 +#: ../../enterprise/meta/advanced/collections.data.php:374 +#: ../../enterprise/godmode/agentes/collection_manager.php:166 +#: ../../enterprise/godmode/agentes/collection_manager.php:167 +#: ../../enterprise/godmode/agentes/collection_manager.php:281 +#: ../../enterprise/godmode/agentes/collection_manager.php:282 +#: ../../enterprise/godmode/agentes/collections.data.php:467 +#: ../../enterprise/godmode/agentes/collections.data.php:468 +msgid "Need to regenerate" +msgstr "" + +#: ../../enterprise/meta/advanced/collections.data.php:383 +#: ../../enterprise/meta/advanced/collections.data.php:384 +#: ../../enterprise/godmode/agentes/collection_manager.php:175 +#: ../../enterprise/godmode/agentes/collection_manager.php:176 +#: ../../enterprise/godmode/agentes/collection_manager.php:290 +#: ../../enterprise/godmode/agentes/collection_manager.php:291 +#: ../../enterprise/godmode/agentes/collections.data.php:477 +#: ../../enterprise/godmode/agentes/collections.data.php:478 +#: ../../enterprise/operation/agentes/collection_view.php:139 +#: ../../enterprise/operation/agentes/collection_view.php:140 +msgid "The collection directory does not exist." +msgstr "" + +#: ../../enterprise/meta/advanced/collections.data.php:397 +#: ../../enterprise/godmode/agentes/collections.data.php:492 +msgid "Group:" +msgstr "" + +#: ../../enterprise/meta/advanced/collections.data.php:420 +#: ../../enterprise/godmode/agentes/collections.data.php:514 +msgid "Short name:" +msgstr "" + +#: ../../enterprise/meta/advanced/collections.data.php:426 +#: ../../enterprise/godmode/agentes/collections.data.php:519 +msgid "" +"The collection's short name is the name of dir in attachment dir and the " +"package collection." +msgstr "" + +#: ../../enterprise/meta/advanced/collections.data.php:426 +#: ../../enterprise/godmode/agentes/collections.data.php:519 +msgid "Short name must contain only alphanumeric characters, - or _ ." +msgstr "" + +#: ../../enterprise/meta/advanced/collections.data.php:426 +#: ../../enterprise/godmode/agentes/collections.data.php:519 +msgid "Empty for default short name fc_X where X is the collection id." +msgstr "" + +#: ../../enterprise/meta/advanced/collections.data.php:432 +#: ../../enterprise/meta/include/functions_autoprovision.php:569 +#: ../../enterprise/godmode/agentes/collections.data.php:523 +#: ../../operation/snmpconsole/snmp_view.php:1107 +msgid "Description:" +msgstr "" + +#: ../../enterprise/meta/advanced/agents_setup.autoprovision.php:72 +#, php-format +msgid "Provisioning custom data %s successfully deleted." +msgstr "" + +#: ../../enterprise/meta/advanced/agents_setup.autoprovision.php:79 +#, php-format +msgid "Cannot delete custom data %s." +msgstr "" + +#: ../../enterprise/meta/advanced/agents_setup.autoprovision.php:92 +msgid "There was an error when moving the custom provisioning data." +msgstr "" + +#: ../../enterprise/meta/advanced/collections.editor.php:125 +#: ../../enterprise/meta/advanced/collections.editor.php:193 +#: ../../enterprise/godmode/agentes/collections.editor.php:158 +#: ../../enterprise/godmode/agentes/collections.editor.php:224 +#: ../../godmode/servers/plugin.php:173 +#: ../../include/functions_filemanager.php:737 +msgid "Edit file" +msgstr "" + +#: ../../enterprise/meta/advanced/collections.editor.php:128 +#: ../../enterprise/meta/advanced/collections.editor.php:195 +#: ../../enterprise/godmode/agentes/collections.editor.php:161 +#: ../../enterprise/godmode/agentes/collections.editor.php:226 +msgid "Back to file explorer" +msgstr "" + +#: ../../enterprise/meta/advanced/collections.editor.php:167 +#: ../../enterprise/godmode/agentes/collections.editor.php:198 +#: ../../include/functions_filemanager.php:296 +msgid "Security error." +msgstr "" + +#: ../../enterprise/meta/advanced/collections.editor.php:217 +#: ../../enterprise/godmode/agentes/collections.editor.php:248 +#: ../../godmode/servers/plugin.php:192 +msgid "Compatibility mode" +msgstr "" + +#: ../../enterprise/meta/advanced/collections.editor.php:269 +#: ../../enterprise/godmode/agentes/collections.editor.php:299 +msgid "Correct update file." +msgstr "" + +#: ../../enterprise/meta/advanced/collections.editor.php:270 +#: ../../enterprise/godmode/agentes/collections.editor.php:300 +msgid "Incorrect update file." +msgstr "" + +#: ../../enterprise/meta/advanced/collections.editor.php:403 +#: ../../enterprise/godmode/agentes/collections.editor.php:447 +msgid "Please, first save a new collection before to upload files." +msgstr "" + +#: ../../enterprise/meta/advanced/cron_main.php:75 +#: ../../enterprise/extensions/cron.php:156 +msgid "Cron jobs" +msgstr "" + +#: ../../enterprise/meta/advanced/cron_main.php:87 +#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:551 +msgid "Add new job" +msgstr "" + +#: ../../enterprise/meta/advanced/cron_main.php:159 +#: ../../enterprise/meta/advanced/cron_main.php:203 +#: ../../enterprise/meta/advanced/cron_main.php:296 +#: ../../enterprise/meta/include/functions_meta.php:122 +#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:213 +#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:276 +#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:371 +#: ../../include/functions_config.php:219 +msgid "Path doesn't exists or is not writable" +msgstr "" + +#: ../../enterprise/meta/advanced/cron_main.php:173 +#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:244 +msgid "Only administrator users can create this type of functions" +msgstr "" + +#: ../../enterprise/meta/advanced/cron_main.php:244 +#: ../../enterprise/meta/advanced/cron_main.php:278 +#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:356 +msgid "Edit job" +msgstr "" + +#: ../../enterprise/meta/advanced/cron_main.php:333 +msgid "" +"In order to make backups it is necessary to have mysqldump on your console." +msgstr "" + +#: ../../enterprise/meta/advanced/cron_main.php:354 +#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:630 +#: ../../enterprise/include/functions_tasklist.php:153 +#: ../../include/functions_cron.php:464 +msgid "Task" +msgstr "" + +#: ../../enterprise/meta/advanced/cron_main.php:385 +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:381 +#: ../../enterprise/godmode/setup/setup_history.php:680 +#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:640 +#: ../../enterprise/include/functions_tasklist.php:154 +#: ../../include/functions_cron.php:465 +msgid "Scheduled" +msgstr "" + +#: ../../enterprise/meta/advanced/cron_main.php:398 +#: ../../enterprise/include/functions_tasklist.php:155 +#: ../../include/functions_cron.php:466 +msgid "Next execution" +msgstr "" + +#: ../../enterprise/meta/advanced/cron_main.php:407 +msgid "Date format in Pandora is year/month/day" +msgstr "" + +#: ../../enterprise/meta/advanced/cron_main.php:418 +msgid "Time format in Pandora is hours(24h):minutes:seconds" +msgstr "" + +#: ../../enterprise/meta/advanced/cron_main.php:444 +#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:566 +#: ../../godmode/events/event_responses.editor.php:146 +#: ../../include/ajax/events.php:2111 +#: ../../include/class/ExternalTools.class.php:354 +#: ../../include/lib/Dashboard/Widgets/events_list.php:628 +#: ../../include/functions_events.php:3447 +#: ../../operation/events/events.php:2394 +msgid "Parameters" +msgstr "" + +#: ../../enterprise/meta/advanced/cron_main.php:530 +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:868 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:1169 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3973 +#: ../../enterprise/godmode/wizards/consoletask_js.php:41 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:4339 +#: ../../enterprise/operation/log/log_viewer.php:981 +#: ../../enterprise/operation/log/log_viewer.php:993 +#: ../../enterprise/operation/services/services.treeview_services.php:384 +#: ../../extensions/insert_data.php:224 +#: ../../godmode/agentes/planned_downtime.editor.php:1494 +#: ../../godmode/alerts/configure_alert_template.php:1456 +#: ../../godmode/alerts/configure_alert_template.php:1540 +#: ../../godmode/setup/news.php:322 +#: ../../godmode/reporting/reporting_builder.item_editor.php:4965 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:683 +#: ../../operation/tree.php:573 ../../operation/agentes/stat_win.php:604 +#: ../../operation/agentes/interface_traffic_graph_win.php:434 +#: ../../operation/agentes/datos_agente.php:312 +#: ../../operation/agentes/estado_monitores.php:455 +#: ../../operation/network/network_report.php:336 +#: ../../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/events/events.php:2972 +msgid "Choose time" +msgstr "" + +#: ../../enterprise/meta/advanced/cron_main.php:531 +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:869 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:1170 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3974 +#: ../../enterprise/godmode/wizards/consoletask_js.php:42 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:4030 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:4340 +#: ../../enterprise/include/lib/Metaconsole/Node.php:539 +#: ../../enterprise/operation/log/log_viewer.php:982 +#: ../../enterprise/operation/log/log_viewer.php:994 +#: ../../enterprise/operation/services/services.treeview_services.php:385 +#: ../../extensions/insert_data.php:225 +#: ../../godmode/agentes/planned_downtime.editor.php:1495 +#: ../../godmode/alerts/configure_alert_template.php:1457 +#: ../../godmode/alerts/configure_alert_template.php:1541 +#: ../../godmode/setup/news.php:323 +#: ../../godmode/reporting/reporting_builder.item_editor.php:4966 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:684 +#: ../../operation/tree.php:574 ../../operation/agentes/stat_win.php:605 +#: ../../operation/agentes/interface_traffic_graph_win.php:435 +#: ../../operation/agentes/datos_agente.php:313 +#: ../../operation/agentes/estado_monitores.php:456 +#: ../../operation/network/network_report.php:337 +#: ../../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/events/events.php:2973 +msgid "Time" +msgstr "" + +#: ../../enterprise/meta/advanced/cron_main.php:532 +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:870 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:1171 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3975 +#: ../../enterprise/godmode/wizards/consoletask_js.php:43 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:4031 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:4341 +#: ../../enterprise/operation/log/log_viewer.php:983 +#: ../../enterprise/operation/log/log_viewer.php:995 +#: ../../enterprise/operation/services/services.treeview_services.php:386 +#: ../../extensions/insert_data.php:226 +#: ../../godmode/agentes/planned_downtime.editor.php:1496 +#: ../../godmode/alerts/configure_alert_template.php:1458 +#: ../../godmode/alerts/configure_alert_template.php:1542 +#: ../../godmode/setup/news.php:324 +#: ../../godmode/reporting/reporting_builder.item_editor.php:4967 +#: ../../include/functions_html.php:2283 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:685 +#: ../../operation/tree.php:575 ../../operation/agentes/stat_win.php:606 +#: ../../operation/agentes/interface_traffic_graph_win.php:436 +#: ../../operation/agentes/datos_agente.php:314 +#: ../../operation/agentes/estado_monitores.php:457 +#: ../../operation/network/network_report.php:338 +#: ../../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/events/events.php:2974 +msgid "Hour" +msgstr "" + +#: ../../enterprise/meta/advanced/cron_main.php:533 +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:871 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:1172 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3976 +#: ../../enterprise/godmode/wizards/consoletask_js.php:44 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:4032 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:4342 +#: ../../enterprise/operation/log/log_viewer.php:984 +#: ../../enterprise/operation/log/log_viewer.php:996 +#: ../../enterprise/operation/services/services.treeview_services.php:387 +#: ../../extensions/insert_data.php:227 +#: ../../godmode/agentes/planned_downtime.editor.php:1497 +#: ../../godmode/alerts/configure_alert_template.php:1459 +#: ../../godmode/alerts/configure_alert_template.php:1543 +#: ../../godmode/setup/news.php:325 +#: ../../godmode/reporting/reporting_builder.item_editor.php:4968 +#: ../../include/functions_html.php:2284 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:686 +#: ../../operation/tree.php:576 ../../operation/agentes/stat_win.php:607 +#: ../../operation/agentes/interface_traffic_graph_win.php:437 +#: ../../operation/agentes/datos_agente.php:315 +#: ../../operation/agentes/estado_monitores.php:458 +#: ../../operation/network/network_report.php:339 +#: ../../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/events/events.php:2975 +msgid "Minute" +msgstr "" + +#: ../../enterprise/meta/advanced/cron_main.php:534 +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:872 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:1173 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3977 +#: ../../enterprise/godmode/wizards/consoletask_js.php:45 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:4033 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:4343 +#: ../../enterprise/operation/log/log_viewer.php:985 +#: ../../enterprise/operation/log/log_viewer.php:997 +#: ../../enterprise/operation/services/services.treeview_services.php:388 +#: ../../extensions/insert_data.php:228 +#: ../../godmode/agentes/planned_downtime.editor.php:1498 +#: ../../godmode/alerts/configure_alert_template.php:1460 +#: ../../godmode/alerts/configure_alert_template.php:1544 +#: ../../godmode/setup/news.php:326 +#: ../../godmode/reporting/reporting_builder.item_editor.php:4969 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:687 +#: ../../operation/tree.php:577 ../../operation/agentes/stat_win.php:608 +#: ../../operation/agentes/interface_traffic_graph_win.php:438 +#: ../../operation/agentes/datos_agente.php:316 +#: ../../operation/agentes/estado_monitores.php:459 +#: ../../operation/network/network_report.php:340 +#: ../../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/events/events.php:2976 +msgid "Second" +msgstr "" + +#: ../../enterprise/meta/advanced/cron_main.php:535 +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:873 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:1174 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3978 +#: ../../enterprise/godmode/wizards/consoletask_js.php:46 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:4034 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:4344 +#: ../../enterprise/operation/agentes/agent_inventory.php:133 +#: ../../enterprise/operation/log/log_viewer.php:986 +#: ../../enterprise/operation/log/log_viewer.php:998 +#: ../../enterprise/operation/services/services.treeview_services.php:389 +#: ../../extensions/insert_data.php:229 +#: ../../godmode/agentes/planned_downtime.editor.php:1499 +#: ../../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:4970 +#: ../../include/functions.php:505 ../../include/functions.php:636 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:688 +#: ../../operation/tree.php:578 ../../operation/agentes/stat_win.php:609 +#: ../../operation/agentes/interface_traffic_graph_win.php:439 +#: ../../operation/agentes/datos_agente.php:317 +#: ../../operation/agentes/estado_monitores.php:460 +#: ../../operation/network/network_report.php:341 +#: ../../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/events/events.php:2977 +msgid "Now" +msgstr "" + +#: ../../enterprise/meta/advanced/cron_main.php:536 +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:874 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:1175 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3979 +#: ../../enterprise/godmode/wizards/consoletask_js.php:47 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:4035 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:4345 +#: ../../enterprise/operation/log/log_viewer.php:987 +#: ../../enterprise/operation/log/log_viewer.php:999 +#: ../../enterprise/operation/services/services.treeview_services.php:390 +#: ../../extensions/insert_data.php:230 +#: ../../godmode/agentes/planned_downtime.editor.php:1500 +#: ../../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:4971 +#: ../../godmode/wizards/HostDevices.class.php:796 +#: ../../mobile/include/ui.class.php:691 ../../mobile/include/ui.class.php:749 +#: ../../include/class/WelcomeWindow.class.php:159 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:689 +#: ../../include/functions_snmp_browser.php:600 ../../operation/tree.php:579 +#: ../../operation/agentes/stat_win.php:610 +#: ../../operation/agentes/interface_traffic_graph_win.php:440 +#: ../../operation/agentes/datos_agente.php:318 +#: ../../operation/agentes/estado_monitores.php:461 +#: ../../operation/network/network_report.php:342 +#: ../../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/events/events.php:2978 +msgid "Close" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.setup.php:108 +#: ../../enterprise/godmode/modules/configure_local_component.php:164 +#: ../../godmode/modules/manage_network_components_form_common.php:52 +#: ../../godmode/users/configure_user.php:1191 +#: ../../godmode/alerts/alert_commands.php:141 +#: ../../godmode/alerts/alert_commands.php:182 +#: ../../godmode/alerts/configure_alert_template.php:933 +#: ../../godmode/alerts/configure_alert_template.php:974 +#: ../../godmode/alerts/configure_alert_template.php:1137 +msgid "Basic" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.setup.php:113 +#: ../../enterprise/meta/include/functions_meta.php:77 +#: ../../include/functions_config.php:178 +msgid "Language settings" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.setup.php:126 +#: ../../enterprise/meta/include/functions_meta.php:82 +#: ../../godmode/setup/setup_general.php:110 +#: ../../include/functions_config.php:190 +msgid "Auto login (hash) password" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.setup.php:142 +#: ../../enterprise/meta/include/functions_meta.php:92 +#: ../../godmode/setup/setup_general.php:124 +#: ../../include/functions_config.php:194 +msgid "Time source" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.setup.php:144 +#: ../../godmode/setup/setup_general.php:125 +#: ../../mobile/operation/events.php:248 +#: ../../include/functions_reporting_html.php:1147 +#: ../../include/functions_reporting_html.php:2495 +#: ../../include/functions.php:1235 ../../include/functions_graph.php:2869 +#: ../../include/functions_graph.php:3570 +#: ../../include/functions_graph.php:3572 +#: ../../include/lib/Dashboard/Widgets/top_n_events_by_module.php:433 +#: ../../include/lib/Dashboard/Widgets/top_n_events_by_group.php:429 +#: ../../include/functions_events.php:2444 +#: ../../include/functions_events.php:2877 +#: ../../operation/events/events.php:743 +msgid "System" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.setup.php:145 +#: ../../godmode/setup/setup_general.php:126 +msgid "Database" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.setup.php:148 +#: ../../enterprise/meta/include/functions_meta.php:102 +#: ../../godmode/setup/setup_general.php:149 +#: ../../include/functions_config.php:206 +msgid "Enforce https" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.setup.php:149 +#, php-format +msgid "" +"If SSL is not properly configured, you will lose access to the %s Console. " +"Do you want to continue?" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.setup.php:152 +#: ../../enterprise/meta/include/functions_meta.php:127 +#: ../../godmode/setup/setup_general.php:183 +#: ../../include/functions_config.php:217 +msgid "Attachment store" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.setup.php:152 +msgid "Directory where temporary data is stored." +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.setup.php:155 +#: ../../enterprise/meta/include/functions_meta.php:138 +#: ../../godmode/setup/setup_general.php:88 +#: ../../include/functions_config.php:182 +msgid "Remote config directory" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.setup.php:158 +#: ../../enterprise/meta/include/functions_meta.php:148 +#: ../../godmode/setup/setup_general.php:98 +msgid "Phantomjs bin directory" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.setup.php:158 +msgid "Directory where phantomjs binary file exists and has execution grants." +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.setup.php:162 +#: ../../godmode/setup/setup_general.php:249 +#: ../../include/functions_visual_map_editor.php:290 +#: ../../include/rest-api/models/VisualConsole/Items/Clock.php:271 +#: ../../include/functions_register.php:134 +msgid "Africa" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.setup.php:163 +#: ../../godmode/setup/setup_general.php:250 +#: ../../include/functions_visual_map_editor.php:291 +#: ../../include/rest-api/models/VisualConsole/Items/Clock.php:272 +#: ../../include/functions_register.php:135 +msgid "America" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.setup.php:164 +#: ../../godmode/setup/setup_general.php:251 +#: ../../include/functions_visual_map_editor.php:292 +#: ../../include/rest-api/models/VisualConsole/Items/Clock.php:273 +#: ../../include/functions_register.php:136 +msgid "Antarctica" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.setup.php:165 +#: ../../godmode/setup/setup_general.php:252 +#: ../../include/functions_visual_map_editor.php:293 +#: ../../include/rest-api/models/VisualConsole/Items/Clock.php:274 +#: ../../include/functions_register.php:137 +msgid "Arctic" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.setup.php:166 +#: ../../godmode/setup/setup_general.php:253 +#: ../../include/functions_visual_map_editor.php:294 +#: ../../include/rest-api/models/VisualConsole/Items/Clock.php:275 +#: ../../include/functions_register.php:138 +msgid "Asia" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.setup.php:167 +#: ../../godmode/setup/setup_general.php:254 +#: ../../include/functions_visual_map_editor.php:295 +#: ../../include/rest-api/models/VisualConsole/Items/Clock.php:276 +#: ../../include/functions_register.php:139 +msgid "Atlantic" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.setup.php:168 +#: ../../godmode/setup/setup_general.php:255 +#: ../../include/functions_visual_map_editor.php:296 +#: ../../include/rest-api/models/VisualConsole/Items/Clock.php:277 +#: ../../include/functions_register.php:140 +msgid "Australia" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.setup.php:169 +#: ../../godmode/setup/setup_general.php:256 +#: ../../include/functions_visual_map_editor.php:297 +#: ../../include/rest-api/models/VisualConsole/Items/Clock.php:278 +#: ../../include/functions_register.php:141 +msgid "Europe" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.setup.php:170 +#: ../../godmode/setup/setup_general.php:257 +#: ../../include/functions_visual_map_editor.php:298 +#: ../../include/rest-api/models/VisualConsole/Items/Clock.php:279 +#: ../../include/functions_register.php:142 +msgid "Indian" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.setup.php:171 +#: ../../godmode/setup/setup_general.php:258 +#: ../../include/functions_visual_map_editor.php:299 +#: ../../include/rest-api/models/VisualConsole/Items/Clock.php:280 +#: ../../include/functions_register.php:143 +msgid "Pacific" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.setup.php:172 +#: ../../godmode/setup/setup_general.php:259 +#: ../../include/functions_visual_map_editor.php:300 +#: ../../include/rest-api/models/VisualConsole/Items/Clock.php:281 +#: ../../include/functions_register.php:144 +msgid "UTC" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.setup.php:191 +#: ../../enterprise/meta/include/functions_meta.php:158 +#: ../../godmode/setup/setup_general.php:279 +#: ../../include/functions_register.php:164 +#: ../../include/functions_config.php:259 +msgid "Timezone setup" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.setup.php:193 +#: ../../godmode/setup/setup_general.php:296 +msgid "Change timezone" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.setup.php:197 +#: ../../enterprise/meta/include/functions_meta.php:168 +#: ../../godmode/setup/setup_general.php:319 +#: ../../include/functions_config.php:290 +msgid "Public URL" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.setup.php:198 +#, php-format +msgid "" +"Set this value when you need your %s to be accessible via a public URL (for " +"example using Apache mod_proxy settings)." +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.setup.php:201 +#: ../../enterprise/meta/include/functions_meta.php:178 +#: ../../godmode/setup/setup_general.php:329 +#: ../../include/functions_config.php:294 +msgid "Force use Public URL" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.setup.php:202 +msgid "Force using defined public URL)." +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.setup.php:209 +#, php-format +msgid "" +"If public URL is not properly configured, you will lose access to the %s " +"Console. Do you want to continue?" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.setup.php:215 +#: ../../enterprise/meta/include/functions_meta.php:188 +#: ../../godmode/setup/setup_general.php:343 +#: ../../include/functions_config.php:298 +msgid "Public URL host exclusions" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.setup.php:218 +#: ../../godmode/setup/setup_netflow.php:65 +#: ../../include/functions_config.php:1485 +msgid "Disable custom live view filters" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.setup.php:218 +msgid "" +"Disable the definition of custom filters in the live view. Only existing " +"filters can be used." +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.setup.php:222 +#: ../../enterprise/meta/include/functions_meta.php:208 +#: ../../godmode/setup/setup_general.php:370 +#: ../../include/functions_config.php:310 +msgid "Command Snapshot" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.setup.php:222 +msgid "The string modules with several lines show as command output" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.setup.php:227 +msgid "Customize sections" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.setup.php:248 +msgid "Disabled sections" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.setup.php:250 +msgid "Enabled sections" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.setup.php:255 +msgid "Push selected sections to enable it" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.setup.php:257 +msgid "Pop selected sections to disable it" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.setup.php:267 +msgid "Please be careful if you put a password put https access." +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.setup.php:272 +#: ../../enterprise/meta/include/functions_meta.php:238 +#: ../../godmode/setup/setup_general.php:193 +#: ../../include/functions_config.php:230 +msgid "IP list with API access" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.setup.php:283 +#: ../../enterprise/meta/include/functions_meta.php:248 +#: ../../enterprise/godmode/setup/setup.php:294 +msgid "Enable update manager" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.setup.php:288 +#: ../../enterprise/meta/include/functions_meta.php:273 +#: ../../enterprise/godmode/setup/setup.php:90 +#: ../../include/functions_config.php:409 +msgid "Size of collection" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.setup.php:289 +#: ../../enterprise/godmode/setup/setup.php:98 +msgid " Bytes" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.setup.php:291 +msgid "Max. agents to add in policy concurrently" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.setup.php:291 +msgid "" +"Maximum allowed number of agents to be added in policy concurrently (adding " +"a high number of agents at a time can lead to performance issues)" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.setup.php:294 +msgid "Synchronization queue items warn detection" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.setup.php:294 +msgid "Number of items in synchronization queue before be notified, per node" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.setup.php:298 +msgid "Enable Agent API" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.setup.php:320 +msgid "Enable log viewer" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.setup.php:324 +#: ../../enterprise/meta/include/functions_meta.php:303 +#: ../../godmode/setup/setup_general.php:467 +msgid "Enable console log" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.setup.php:324 +msgid "Log location: pandora_console/log/console.log" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.setup.php:345 +#: ../../enterprise/meta/include/functions_meta.php:313 +#: ../../godmode/setup/setup_general.php:478 +msgid "Enable audit log" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.setup.php:345 +msgid "Log location: pandora_console/log/audit.log" +msgstr "" + +#: ../../enterprise/meta/advanced/policymanager.sync.php:247 +#: ../../enterprise/meta/include/functions_groups_meta.php:174 +#: ../../godmode/groups/group_list.php:667 +#, php-format +msgid "Error connecting to %s" +msgstr "" + +#: ../../enterprise/meta/advanced/policymanager.sync.php:255 +#, php-format +msgid "Error creating %s policies" +msgstr "" + +#: ../../enterprise/meta/advanced/policymanager.sync.php:259 +#, php-format +msgid "Created %s policies" +msgstr "" + +#: ../../enterprise/meta/advanced/policymanager.sync.php:264 +#, php-format +msgid "Error creating/updating %s/%s policy modules" +msgstr "" + +#: ../../enterprise/meta/advanced/policymanager.sync.php:268 +#, php-format +msgid "Created/Updated %s/%s policy modules" +msgstr "" + +#: ../../enterprise/meta/advanced/policymanager.sync.php:273 +#, php-format +msgid "Error deleting %s policy modules" +msgstr "" + +#: ../../enterprise/meta/advanced/policymanager.sync.php:277 +#, php-format +msgid "Deleted %s policy modules" +msgstr "" + +#: ../../enterprise/meta/advanced/policymanager.sync.php:282 +#, php-format +msgid "Error creating %s policy alerts" +msgstr "" + +#: ../../enterprise/meta/advanced/policymanager.sync.php:286 +#, php-format +msgid "Created %s policy alerts" +msgstr "" + +#: ../../enterprise/meta/advanced/policymanager.sync.php:291 +#, php-format +msgid "Error deleting %s policy alerts" +msgstr "" + +#: ../../enterprise/meta/advanced/policymanager.sync.php:295 +#, php-format +msgid "Deleted %s policy alerts" +msgstr "" + +#: ../../enterprise/meta/advanced/policymanager.sync.php:307 +#: ../../enterprise/meta/include/functions_events_meta.php:110 +#: ../../enterprise/godmode/massive/massive_add_modules_policy.php:147 +#: ../../enterprise/include/functions_log.php:279 +#: ../../enterprise/include/functions_log.php:282 +#: ../../enterprise/include/class/LogSource.class.php:626 +#: ../../enterprise/operation/log/log_viewer.php:654 +#: ../../godmode/massive/massive_copy_modules.php:144 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1594 +#: ../../godmode/events/event_edit_filter.php:632 +#: ../../godmode/events/custom_events.php:109 +#: ../../include/functions_events.php:212 +#: ../../include/functions_events.php:283 +#: ../../include/functions_events.php:4175 +#: ../../include/functions_events.php:4256 +#: ../../operation/agentes/log_sources_status.php:56 +#: ../../operation/agentes/pandora_networkmap.editor.php:336 +#: ../../operation/agentes/pandora_networkmap.view.php:136 +#: ../../operation/events/events.php:1722 +msgid "Source" +msgstr "" + +#: ../../enterprise/meta/advanced/policymanager.sync.php:308 +#: ../../extensions/dbmanager.php:204 +#: ../../include/lib/Dashboard/Widget.php:601 +msgid "This metaconsole" +msgstr "" + +#: ../../enterprise/meta/advanced/policymanager.sync.php:319 +#: ../../enterprise/meta/advanced/policymanager.queue.php:210 +#: ../../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:219 +#: ../../enterprise/godmode/agentes/plugins_manager.php:193 +#: ../../enterprise/godmode/policies/policy_queue.php:593 +#: ../../enterprise/godmode/policies/policy_queue.php:647 +#: ../../enterprise/godmode/massive/massive_edit_tags_policy.php:116 +#: ../../enterprise/godmode/massive/massive_add_alerts_policy.php:102 +#: ../../enterprise/godmode/massive/massive_add_modules_policy.php:208 +#: ../../enterprise/godmode/massive/massive_tags_edit_policy.php:108 +#: ../../enterprise/godmode/massive/massive_delete_alerts_policy.php:112 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:462 +#: ../../enterprise/include/functions_policies.php:4070 +#: ../../enterprise/operation/agentes/policy_view.php:67 +#: ../../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:841 +#: ../../godmode/alerts/alert_view.php:148 +#: ../../include/ajax/alert_list.ajax.php:285 ../../include/ajax/module.php:974 +#: ../../operation/agentes/status_monitor.php:1302 +msgid "Policy" +msgstr "" + +#: ../../enterprise/meta/advanced/policymanager.sync.php:321 +#: ../../enterprise/godmode/massive/massive_add_modules_policy.php:199 +#: ../../godmode/massive/massive_copy_modules.php:239 +msgid "Targets" +msgstr "" + +#: ../../enterprise/meta/advanced/license_meta.php:52 +#: ../../godmode/setup/license.php:80 +msgid "Failed to Update license file" +msgstr "" + +#: ../../enterprise/meta/advanced/license_meta.php:59 +msgid "Metaconsole and all nodes license updated" +msgstr "" + +#: ../../enterprise/meta/advanced/license_meta.php:61 +#, php-format +msgid "Metaconsole license updated but %d of %d node synchronization failed" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.auth.php:27 +msgid "" +"Be aware that group synchronization can change the group configuration of " +"the node" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.performance.php:74 +#: ../../godmode/menu.php:342 ../../godmode/setup/setup.php:125 +#: ../../godmode/setup/setup.php:260 +msgid "Performance" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.performance.php:79 +#: ../../enterprise/meta/include/functions_meta.php:1924 +#: ../../godmode/setup/performance.php:259 +#: ../../godmode/setup/performance.php:449 +#: ../../include/functions_config.php:787 +msgid "Max. days before delete events" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.performance.php:83 +#: ../../enterprise/meta/include/functions_meta.php:1934 +msgid "Active events history" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.performance.php:88 +msgid "Use real-time statistics" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.performance.php:92 +#: ../../enterprise/meta/include/functions_meta.php:1949 +#: ../../godmode/setup/performance.php:283 +#: ../../include/functions_config.php:800 +msgid "Max. days before delete audit events" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.performance.php:95 +#: ../../enterprise/meta/include/functions_meta.php:1959 +#: ../../godmode/setup/performance.php:540 +#: ../../include/functions_config.php:832 +msgid "Default hours for event view" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.performance.php:98 +msgid "Migration block size" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.performance.php:108 +#: ../../godmode/setup/performance.php:614 +msgid "Events response max. execution" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.performance.php:110 +msgid "Number of events that will perform the desired action at the same time" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.performance.php:122 +#: ../../enterprise/meta/include/functions_meta.php:1989 +msgid "Max. number of events per node" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.performance.php:124 +msgid "maximum number of events to be displayed per node" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.performance.php:136 +#: ../../godmode/setup/performance.php:624 +#: ../../include/functions_config.php:894 +msgid "Row limit in csv log" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.performance.php:145 +#: ../../enterprise/meta/include/functions_meta.php:2022 +#: ../../godmode/setup/performance.php:363 +#: ../../include/functions_config.php:868 +msgid "Max. macro data fields" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.performance.php:160 +#: ../../godmode/setup/performance.php:660 +#, php-format +msgid "" +"%s web2image cache system cleanup. It is always cleaned up after perform an " +"upgrade" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.performance.php:165 +#: ../../godmode/setup/performance.php:677 +msgid "PhantomJS cache cleanup " +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.performance.php:172 +#: ../../godmode/setup/performance.php:684 +msgid "No scheduled" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.performance.php:173 +#: ../../godmode/setup/performance.php:685 +msgid "Each week" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.performance.php:174 +#: ../../godmode/setup/performance.php:686 +msgid "Each day" +msgstr "" + +#: ../../enterprise/meta/advanced/collections.php:111 +msgid "Collection has been deleted" +msgstr "" + +#: ../../enterprise/meta/advanced/collections.php:122 +#: ../../enterprise/meta/advanced/collections.php:138 +#: ../../enterprise/godmode/agentes/collection_manager.php:94 +#: ../../enterprise/godmode/agentes/collections.php:188 +#: ../../enterprise/godmode/agentes/collections.php:210 +msgid "Successful create collection package." +msgstr "" + +#: ../../enterprise/meta/advanced/collections.php:139 +#: ../../enterprise/godmode/agentes/collection_manager.php:95 +#: ../../enterprise/godmode/agentes/collections.php:211 +msgid "Can not create collection package." +msgstr "" + +#: ../../enterprise/meta/advanced/collections.php:149 +#: ../../enterprise/godmode/agentes/collections.php:246 +msgid "Error: Id must not be empty" +msgstr "" + +#: ../../enterprise/meta/advanced/collections.php:163 +#: ../../enterprise/godmode/agentes/collections.php:260 +msgid "Successful re-create collection directory." +msgstr "" + +#: ../../enterprise/meta/advanced/collections.php:164 +#: ../../enterprise/godmode/agentes/collections.php:261 +msgid "Can not re-create collection directory." +msgstr "" + +#: ../../enterprise/meta/advanced/collections.php:190 +#: ../../enterprise/godmode/agentes/collections.php:287 +msgid "Successful re-create collections directories." +msgstr "" + +#: ../../enterprise/meta/advanced/collections.php:191 +#: ../../enterprise/godmode/agentes/collections.php:288 +msgid "Can not re-create collections directories." +msgstr "" + +#: ../../enterprise/meta/advanced/collections.php:205 +msgid "To manage collections you must activate centralized management" +msgstr "" + +#: ../../enterprise/meta/advanced/collections.php:218 +#: ../../enterprise/meta/advanced/collections.php:224 +#: ../../godmode/users/user_list.php:402 ../../godmode/users/user_list.php:406 +msgid "Search by username, fullname or email" +msgstr "" + +#: ../../enterprise/meta/advanced/collections.php:243 +#: ../../enterprise/meta/advanced/policymanager.queue.php:246 +#: ../../enterprise/meta/monitoring/custom_fields_view.php:334 +#: ../../enterprise/meta/agentsearch.php:113 +#: ../../enterprise/godmode/modules/local_components.php:584 +#: ../../godmode/modules/manage_network_components.php:690 +#: ../../godmode/users/user_list.php:444 +#: ../../godmode/alerts/alert_actions.php:315 +#: ../../godmode/alerts/alert_templates.php:337 +#: ../../godmode/reporting/reporting_builder.list_items.php:273 +#: ../../godmode/tag/tag.php:246 ../../godmode/tag/tag.php:412 +#: ../../operation/tree.php:304 +msgid "Show Options" +msgstr "" + +#: ../../enterprise/meta/advanced/collections.php:250 +#: ../../godmode/users/user_list.php:451 +msgid "Users control filter" +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:373 +#: ../../enterprise/godmode/alerts/alert_inventory_list.php:174 +#: ../../godmode/users/user_list.php:452 +#: ../../godmode/snmpconsole/snmp_alert.php:1180 +#: ../../godmode/alerts/alert_list.list.php:188 +#: ../../operation/agentes/graphs.php:269 +#: ../../operation/snmpconsole/snmp_view.php:714 +#: ../../operation/snmpconsole/snmp_view.php:813 +msgid "Toggle filter(s)" +msgstr "" + +#: ../../enterprise/meta/advanced/collections.php:259 +#: ../../enterprise/godmode/agentes/collections.php:296 +msgid "Error: The main directory of collections does not exist." +msgstr "" + +#: ../../enterprise/meta/advanced/collections.php:341 +#: ../../enterprise/godmode/agentes/collections.php:379 +#: ../../enterprise/include/functions_groups.php:81 +#: ../../enterprise/operation/agentes/ver_agente.php:215 +#: ../../godmode/agentes/configurar_agente.php:702 +msgid "Collection" +msgstr "" + +#: ../../enterprise/meta/advanced/collections.php:364 +#: ../../enterprise/godmode/agentes/collection_manager.php:110 +#: ../../enterprise/godmode/agentes/collections.php:380 +#: ../../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:412 +msgid "Are you sure to delete?" +msgstr "" + +#: ../../enterprise/meta/advanced/collections.php:430 +#: ../../enterprise/meta/advanced/collections.php:431 +#: ../../enterprise/godmode/agentes/collections.php:413 +msgid "Delete collection" +msgstr "" + +#: ../../enterprise/meta/advanced/collections.php:440 +#: ../../enterprise/godmode/agentes/collections.php:420 +msgid "Are you sure to re-apply?" +msgstr "" + +#: ../../enterprise/meta/advanced/collections.php:441 +#: ../../enterprise/godmode/agentes/collections.php:421 +msgid "Re-Apply changes" +msgstr "" + +#: ../../enterprise/meta/advanced/collections.php:448 +#: ../../enterprise/godmode/agentes/collections.php:428 +msgid "Are you sure to apply?" +msgstr "" + +#: ../../enterprise/meta/advanced/collections.php:449 +#: ../../enterprise/godmode/agentes/collections.php:429 +msgid "Apply changes" +msgstr "" + +#: ../../enterprise/meta/advanced/collections.php:454 +#: ../../enterprise/godmode/agentes/collections.php:434 +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:439 +#: ../../enterprise/godmode/agentes/collections.php:440 +msgid "The collection directory does not exist. Re-create directory" +msgstr "" + +#: ../../enterprise/meta/advanced/collections.php:492 +#: ../../enterprise/godmode/agentes/collections.php:460 +msgid "Re-create directories" +msgstr "" + +#: ../../enterprise/meta/advanced/collections.php:504 +#: ../../general/first_task/collections.php:18 +msgid "There are no collections defined yet." +msgstr "" + +#: ../../enterprise/meta/advanced/policymanager.queue.php:58 +#: ../../enterprise/godmode/policies/policy_queue.php:96 +msgid "Operation successfully deleted from the queue" +msgstr "" + +#: ../../enterprise/meta/advanced/policymanager.queue.php:59 +#: ../../enterprise/godmode/policies/policy_queue.php:97 +msgid "Operation cannot be deleted from the queue" +msgstr "" + +#: ../../enterprise/meta/advanced/policymanager.queue.php:214 +#: ../../enterprise/meta/advanced/policymanager.queue.php:259 +#: ../../enterprise/meta/include/functions_autoprovision.php:641 +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:494 +#: ../../enterprise/godmode/policies/policy_queue.php:605 +#: ../../enterprise/godmode/policies/policy_queue.php:649 +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:231 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3751 +#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:155 +#: ../../enterprise/include/functions_reporting_csv.php:1014 +#: ../../enterprise/include/class/CommandCenter.class.php:451 +#: ../../extensions/api_checker.php:156 ../../godmode/extensions.php:148 +#: ../../godmode/reporting/reporting_builder.item_editor.php:4445 +#: ../../include/functions_reporting_html.php:2244 +#: ../../include/functions_reporting_html.php:4737 +#: ../../include/functions_menu.php:592 +#: ../../include/class/ExternalTools.class.php:530 +msgid "Operation" +msgstr "" + +#: ../../enterprise/meta/advanced/policymanager.queue.php:218 +#: ../../enterprise/godmode/policies/policy_queue.php:609 +msgid "Apply (database and files)" +msgstr "" + +#: ../../enterprise/meta/advanced/policymanager.queue.php:219 +#: ../../enterprise/meta/advanced/policymanager.queue.php:315 +#: ../../enterprise/godmode/policies/policy_queue.php:610 +#: ../../enterprise/godmode/policies/policy_queue.php:718 +msgid "Apply (only database)" +msgstr "" + +#: ../../enterprise/meta/advanced/policymanager.queue.php:229 +#: ../../enterprise/godmode/policies/policy_queue.php:620 +msgid "Complete" +msgstr "" + +#: ../../enterprise/meta/advanced/policymanager.queue.php:230 +#: ../../enterprise/godmode/policies/policy_queue.php:621 +msgid "Incomplete" +msgstr "" + +#: ../../enterprise/meta/advanced/policymanager.queue.php:235 +#: ../../enterprise/godmode/policies/policy_queue.php:626 +#: ../../enterprise/godmode/policies/policies.php:337 +#: ../../enterprise/godmode/policies/policy_linking.php:129 +#: ../../enterprise/godmode/massive/massive_delete_alerts_snmp.php:209 +#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:269 +#: ../../enterprise/godmode/setup/setup_skins.php:96 +#: ../../enterprise/godmode/setup/setup_acl.php:574 +#: ../../enterprise/include/class/SAPView.class.php:409 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2868 +#: ../../enterprise/include/functions_ipam.php:1779 +#: ../../enterprise/operation/services/services.treeview_services.php:164 +#: ../../enterprise/operation/services/services.treeview_services.php:168 +#: ../../enterprise/operation/services/services.list.php:454 +#: ../../enterprise/operation/services/services.list.php:459 +#: ../../enterprise/operation/services/services.table_services.php:363 +#: ../../enterprise/operation/services/services.table_services.php:368 +#: ../../godmode/modules/manage_network_templates_form.php:277 +#: ../../godmode/modules/manage_network_templates_form.php:337 +#: ../../godmode/agentes/module_manager.php:83 +#: ../../godmode/netflow/nf_item_list.php:174 +#: ../../godmode/snmpconsole/snmp_alert.php:1176 +#: ../../godmode/snmpconsole/snmp_filters.php:203 +#: ../../godmode/snmpconsole/snmp_filters.php:290 +#: ../../godmode/reporting/reporting_builder.list_items.php:217 +#: ../../godmode/reporting/reporting_builder.list_items.php:261 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1099 +#: ../../godmode/tag/tag.php:233 ../../include/functions_ui.php:3386 +#: ../../include/functions_ui.php:3408 ../../include/functions_ui.php:3420 +#: ../../include/class/ModuleTemplates.class.php:765 +#: ../../operation/tree.php:260 ../../operation/agentes/graphs.php:265 +#: ../../operation/agentes/estado_monitores.php:594 +#: ../../operation/netflow/nf_live_view.php:391 +#: ../../operation/incidents/list_integriaims_incidents.php:435 +#: ../../operation/incidents/list_integriaims_incidents.php:439 +msgid "Filter" +msgstr "" + +#: ../../enterprise/meta/advanced/policymanager.queue.php:256 +#: ../../enterprise/meta/monitoring/custom_fields_csv.php:101 +#: ../../enterprise/meta/monitoring/custom_fields_view.php:706 +#: ../../enterprise/meta/monitoring/wizard/wizard.manage_alert.php:197 +#: ../../enterprise/meta/include/functions_wizard_meta.php:174 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1796 +#: ../../enterprise/meta/agentsearch.php:133 +#: ../../enterprise/meta/agentsearch.php:326 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1965 +#: ../../enterprise/include/functions_reporting_csv.php:2733 +#: ../../enterprise/include/class/CSVImportAgents.class.php:154 +#: ../../enterprise/include/class/SAPView.class.php:226 +#: ../../enterprise/include/functions_events.php:216 +#: ../../enterprise/operation/log/log_viewer.php:613 +#: ../../enterprise/operation/inventory/inventory.php:331 +#: ../../godmode/modules/manage_network_components.php:749 +#: ../../godmode/agentes/agent_manager.php:414 +#: ../../godmode/agentes/module_manager.php:844 +#: ../../godmode/massive/massive_edit_agents.php:743 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1194 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3614 +#: ../../godmode/wizards/DiscoveryTaskList.class.php:1043 +#: ../../include/functions_reporting_html.php:2137 +#: ../../include/class/AgentWizard.class.php:1196 +#: ../../operation/events/events.php:1788 +msgid "Server" +msgstr "" + +#: ../../enterprise/meta/advanced/policymanager.queue.php:260 +#: ../../enterprise/godmode/policies/policy_queue.php:650 +#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:702 +#: ../../enterprise/include/class/Omnishell.class.php:401 +#: ../../enterprise/include/functions_ipam.php:1411 +#: ../../enterprise/include/functions_ipam.php:1418 +#: ../../enterprise/include/functions_ipam.php:1423 +#: ../../godmode/wizards/DiscoveryTaskList.class.php:606 +msgid "Progress" +msgstr "" + +#: ../../enterprise/meta/advanced/policymanager.queue.php:298 +#: ../../enterprise/godmode/policies/policy_queue.php:688 +msgid "Policy " +msgstr "" + +#: ../../enterprise/meta/advanced/policymanager.queue.php:339 +#: ../../enterprise/godmode/policies/policy_queue.php:748 +#: ../../enterprise/godmode/policies/policy_queue.php:757 +msgid "Policy applying timeout" +msgstr "" + +#: ../../enterprise/meta/advanced/policymanager.queue.php:353 +#: ../../enterprise/godmode/policies/policy_queue.php:776 +msgid "Delete from queue" +msgstr "" + +#: ../../enterprise/meta/advanced/policymanager.queue.php:371 +msgid "Empty queue." +msgstr "" + +#: ../../enterprise/meta/monitoring/custom_fields_csv.php:99 +#: ../../enterprise/meta/monitoring/custom_fields_view.php:704 +#: ../../enterprise/meta/monitoring/wizard/wizard.manage_alert.php:205 +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:279 +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:374 +#: ../../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:3502 +#: ../../enterprise/meta/agentsearch.php:134 +#: ../../enterprise/godmode/modules/manage_inventory_modules.php:299 +#: ../../enterprise/godmode/agentes/collections.agents.php:94 +#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:85 +#: ../../enterprise/godmode/policies/policy_linking.php:150 +#: ../../enterprise/godmode/massive/massive_add_modules_policy.php:136 +#: ../../enterprise/godmode/services/services.elements.php:94 +#: ../../enterprise/godmode/services/services.elements.php:132 +#: ../../enterprise/godmode/services/services.elements.php:270 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:316 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1396 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2034 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3512 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3723 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3741 +#: ../../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:524 +#: ../../enterprise/include/functions_reporting_pdf.php:532 +#: ../../enterprise/include/functions_reporting_pdf.php:540 +#: ../../enterprise/include/functions_reporting_pdf.php:556 +#: ../../enterprise/include/functions_reporting_pdf.php:714 +#: ../../enterprise/include/functions_reporting_csv.php:490 +#: ../../enterprise/include/functions_reporting_csv.php:776 +#: ../../enterprise/include/functions_reporting_csv.php:802 +#: ../../enterprise/include/functions_reporting_csv.php:915 +#: ../../enterprise/include/functions_reporting_csv.php:954 +#: ../../enterprise/include/functions_reporting_csv.php:1014 +#: ../../enterprise/include/functions_reporting_csv.php:1030 +#: ../../enterprise/include/functions_reporting_csv.php:1054 +#: ../../enterprise/include/functions_reporting_csv.php:1184 +#: ../../enterprise/include/functions_reporting_csv.php:1215 +#: ../../enterprise/include/functions_reporting_csv.php:1270 +#: ../../enterprise/include/functions_reporting_csv.php:1325 +#: ../../enterprise/include/functions_reporting_csv.php:1374 +#: ../../enterprise/include/functions_reporting_csv.php:1429 +#: ../../enterprise/include/functions_reporting_csv.php:1458 +#: ../../enterprise/include/functions_reporting_csv.php:1502 +#: ../../enterprise/include/functions_reporting_csv.php:1548 +#: ../../enterprise/include/functions_reporting_csv.php:1621 +#: ../../enterprise/include/functions_reporting_csv.php:1740 +#: ../../enterprise/include/functions_reporting_csv.php:1975 +#: ../../enterprise/include/functions_reporting_csv.php:2048 +#: ../../enterprise/include/functions_reporting_csv.php:2281 +#: ../../enterprise/include/functions_reporting_csv.php:2317 +#: ../../enterprise/include/functions_reporting_csv.php:2348 +#: ../../enterprise/include/functions_reporting_csv.php:2465 +#: ../../enterprise/include/functions_reporting_csv.php:2518 +#: ../../enterprise/include/functions_reporting_csv.php:2736 +#: ../../enterprise/include/class/LogSource.class.php:627 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:923 +#: ../../enterprise/include/functions_reporting.php:1853 +#: ../../enterprise/include/functions_reporting.php:2186 +#: ../../enterprise/include/functions_reporting.php:2217 +#: ../../enterprise/include/functions_reporting.php:2235 +#: ../../enterprise/include/functions_reporting.php:2892 +#: ../../enterprise/include/functions_reporting.php:3879 +#: ../../enterprise/include/functions_reporting.php:4903 +#: ../../enterprise/include/functions_services.php:1666 +#: ../../enterprise/include/functions_events.php:80 +#: ../../enterprise/operation/agentes/tag_view.php:599 +#: ../../enterprise/operation/agentes/manage_transmap_creation.php:187 +#: ../../enterprise/operation/agentes/manage_transmap_creation.php:365 +#: ../../enterprise/operation/agentes/manage_transmap_creation.php:491 +#: ../../enterprise/operation/log/log_viewer.php:632 +#: ../../enterprise/operation/inventory/inventory.php:401 +#: ../../enterprise/tools/ipam/ipam_network.php:397 +#: ../../enterprise/tools/ipam/ipam_ajax.php:379 +#: ../../extensions/insert_data.php:158 +#: ../../godmode/agentes/status_monitor_custom_fields.php:77 +#: ../../godmode/agentes/status_monitor_custom_fields.php:143 +#: ../../godmode/agentes/module_manager_editor_prediction.php:126 +#: ../../godmode/agentes/planned_downtime.list.php:353 +#: ../../godmode/agentes/module_manager_editor_common.php:1250 +#: ../../godmode/agentes/module_manager_editor_common.php:1303 +#: ../../godmode/gis_maps/configure_gis_map.php:581 +#: ../../godmode/massive/massive_copy_modules.php:131 +#: ../../godmode/massive/massive_copy_modules.php:295 +#: ../../godmode/massive/massive_standby_alerts.php:223 +#: ../../godmode/massive/massive_standby_alerts.php:258 +#: ../../godmode/massive/massive_enable_disable_alerts.php:195 +#: ../../godmode/massive/massive_enable_disable_alerts.php:230 +#: ../../godmode/alerts/alert_list.list.php:492 +#: ../../godmode/alerts/alert_list.list.php:742 +#: ../../godmode/alerts/alert_view.php:87 +#: ../../godmode/alerts/alert_list.builder.php:56 +#: ../../godmode/reporting/reporting_builder.list_items.php:391 +#: ../../godmode/reporting/create_container.php:387 +#: ../../godmode/reporting/create_container.php:554 +#: ../../godmode/reporting/create_container.php:627 +#: ../../godmode/reporting/graph_builder.graph_editor.php:212 +#: ../../godmode/reporting/reporting_builder.item_editor.php:200 +#: ../../godmode/reporting/reporting_builder.item_editor.php:872 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1147 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1652 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3896 +#: ../../godmode/reporting/reporting_builder.item_editor.php:4414 +#: ../../godmode/reporting/reporting_builder.item_editor.php:4438 +#: ../../godmode/reporting/visual_console_builder.elements.php:104 +#: ../../godmode/reporting/visual_console_builder.wizard.php:450 +#: ../../godmode/reporting/visual_console_builder.wizard.php:738 +#: ../../godmode/reporting/visual_console_builder.wizard.php:761 +#: ../../godmode/servers/plugin.php:87 ../../mobile/operation/agents.php:93 +#: ../../mobile/operation/agents.php:403 ../../mobile/operation/modules.php:597 +#: ../../mobile/operation/home.php:96 ../../mobile/operation/alerts.php:335 +#: ../../mobile/operation/events.php:841 +#: ../../include/functions_visual_map_editor.php:422 +#: ../../include/functions_visual_map_editor.php:455 +#: ../../include/functions_reporting_html.php:542 +#: ../../include/functions_reporting_html.php:938 +#: ../../include/functions_reporting_html.php:1050 +#: ../../include/functions_reporting_html.php:1058 +#: ../../include/functions_reporting_html.php:1812 +#: ../../include/functions_reporting_html.php:2140 +#: ../../include/functions_reporting_html.php:2242 +#: ../../include/functions_reporting_html.php:3091 +#: ../../include/functions_reporting_html.php:3225 +#: ../../include/functions_reporting_html.php:3528 +#: ../../include/functions_reporting_html.php:3608 +#: ../../include/functions_reporting_html.php:3616 +#: ../../include/functions_reporting_html.php:3625 +#: ../../include/functions_reporting_html.php:3637 +#: ../../include/functions_reporting_html.php:3793 +#: ../../include/functions_reporting_html.php:3916 +#: ../../include/functions_reporting_html.php:4010 +#: ../../include/functions_reporting_html.php:4734 +#: ../../include/functions_reporting_html.php:4782 +#: ../../include/functions_reporting_html.php:4821 +#: ../../include/functions_reporting_html.php:5130 +#: ../../include/functions_reporting_html.php:5170 +#: ../../include/functions_reporting_html.php:5420 +#: ../../include/ajax/heatmap.ajax.php:238 +#: ../../include/ajax/heatmap.ajax.php:277 +#: ../../include/ajax/heatmap.ajax.php:312 +#: ../../include/ajax/alert_list.ajax.php:459 +#: ../../include/functions_graph.php:5284 ../../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/Odometer.php:368 +#: ../../include/functions_reports.php:1313 +#: ../../include/class/NetworkMap.class.php:2835 +#: ../../include/class/NetworkMap.class.php:2884 +#: ../../include/class/NetworkMap.class.php:3162 +#: ../../include/class/AgentsAlerts.class.php:410 +#: ../../include/class/AgentsAlerts.class.php:962 +#: ../../include/functions_reporting.php:6838 +#: ../../include/lib/Dashboard/Widgets/sla_percent.php:297 +#: ../../include/lib/Dashboard/Widgets/BlockHistogram.php:279 +#: ../../include/lib/Dashboard/Widgets/wux_transaction_stats.php:250 +#: ../../include/lib/Dashboard/Widgets/module_icon.php:316 +#: ../../include/lib/Dashboard/Widgets/module_value.php:290 +#: ../../include/lib/Dashboard/Widgets/wux_transaction.php:239 +#: ../../include/lib/Dashboard/Widgets/ColorModuleTabs.php:255 +#: ../../include/lib/Dashboard/Widgets/module_table_value.php:265 +#: ../../include/lib/Dashboard/Widgets/graph_module_histogram.php:286 +#: ../../include/lib/Dashboard/Widgets/module_status.php:306 +#: ../../include/lib/Dashboard/Widgets/single_graph.php:261 +#: ../../include/lib/Dashboard/Widgets/top_n.php:206 +#: ../../include/functions_snmp_browser.php:1633 +#: ../../operation/search_agents.php:42 ../../operation/search_agents.php:48 +#: ../../operation/agentes/exportdata.csv.php:74 +#: ../../operation/agentes/estado_agente.php:739 +#: ../../operation/agentes/interface_view.functions.php:480 +#: ../../operation/agentes/exportdata.php:83 +#: ../../operation/agentes/status_monitor.php:1307 +#: ../../operation/agentes/estado_monitores.php:123 +#: ../../operation/agentes/ver_agente.php:1169 +#: ../../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:2455 +msgid "Agent" +msgstr "" + +#: ../../enterprise/meta/monitoring/custom_fields_csv.php:100 +#: ../../enterprise/godmode/servers/HA_cluster.php:161 +#: ../../enterprise/include/functions_reporting_csv.php:1933 +#: ../../enterprise/include/class/Azure.cloud.php:803 +#: ../../enterprise/include/class/VMware.app.php:621 +#: ../../enterprise/include/class/DeploymentCenter.class.php:755 +#: ../../enterprise/include/class/DeploymentCenter.class.php:805 +#: ../../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:546 +#: ../../enterprise/include/functions_reporting.php:2316 +#: ../../enterprise/include/functions_ipam.php:1646 +#: ../../enterprise/include/functions_ipam.php:1647 +#: ../../extensions/api_checker.php:123 +#: ../../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 +#: ../../include/functions_reporting_html.php:3108 +#: ../../include/functions_reporting_html.php:3434 +#: ../../include/ajax/heatmap.ajax.php:319 +#: ../../include/class/AuditLog.class.php:194 +#: ../../operation/network/network_report.php:184 +msgid "IP" +msgstr "" + +#: ../../enterprise/meta/monitoring/custom_fields_csv.php:102 +#: ../../godmode/massive/massive_edit_modules.php:468 +msgid "Agent Status" +msgstr "" + +#: ../../enterprise/meta/monitoring/custom_fields_csv.php:117 +#: ../../enterprise/meta/monitoring/custom_fields_csv.php:140 +#: ../../enterprise/meta/monitoring/custom_fields_view.php:179 +#: ../../enterprise/meta/monitoring/group_view.php:238 +#: ../../enterprise/meta/monitoring/group_view.php:244 +#: ../../enterprise/meta/monitoring/tactical.php:224 +#: ../../enterprise/godmode/massive/massive_add_modules_policy.php:119 +#: ../../enterprise/godmode/services/services.elements.php:386 +#: ../../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/netflow/nf_edit_form.php:236 +#: ../../godmode/massive/massive_copy_modules.php:115 +#: ../../godmode/massive/massive_copy_modules.php:275 +#: ../../godmode/massive/massive_delete_modules.php:418 +#: ../../godmode/massive/massive_delete_modules.php:439 +#: ../../godmode/massive/massive_delete_agents.php:209 +#: ../../godmode/massive/massive_edit_agents.php:531 +#: ../../godmode/massive/massive_edit_modules.php:385 +#: ../../godmode/massive/massive_edit_modules.php:471 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3734 +#: ../../mobile/operation/agents.php:58 ../../mobile/operation/modules.php:69 +#: ../../include/functions_reporting_html.php:2357 +#: ../../include/functions.php:1031 ../../include/functions.php:1271 +#: ../../include/functions.php:1278 ../../include/functions.php:1311 +#: ../../include/functions_graph.php:3483 +#: ../../include/functions_graph.php:3484 +#: ../../include/functions_graph.php:5064 +#: ../../include/rest-api/models/VisualConsole/Items/Group.php:430 +#: ../../include/lib/Dashboard/Widgets/system_group_status.php:311 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:385 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:418 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:680 +#: ../../include/functions_events.php:2933 ../../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/netflow/nf_live_view.php:392 +msgid "Normal" +msgstr "" + +#: ../../enterprise/meta/monitoring/custom_fields_csv.php:122 +#: ../../enterprise/meta/monitoring/custom_fields_view.php:181 +#: ../../enterprise/meta/monitoring/group_view.php:240 +#: ../../enterprise/meta/monitoring/group_view.php:246 +#: ../../enterprise/meta/monitoring/tactical.php:222 +#: ../../enterprise/meta/include/functions_wizard_meta.php:986 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1071 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1274 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1298 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1511 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1596 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1716 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1734 +#: ../../enterprise/godmode/massive/massive_add_modules_policy.php:121 +#: ../../enterprise/godmode/massive/massive_create_services.php:733 +#: ../../enterprise/godmode/services/services.service.php:693 +#: ../../enterprise/godmode/services/services.elements.php:359 +#: ../../enterprise/include/functions_reporting.php:3191 +#: ../../enterprise/include/functions_reporting.php:4192 +#: ../../enterprise/include/functions_reporting.php:4843 +#: ../../enterprise/include/functions_reporting.php:6199 +#: ../../enterprise/include/functions_services.php:1440 +#: ../../enterprise/operation/agentes/tag_view.php:133 +#: ../../enterprise/operation/services/services.service.php:122 +#: ../../enterprise/operation/services/services.service.php:168 +#: ../../enterprise/operation/services/services.service_map.php:149 +#: ../../enterprise/operation/services/services.treeview_services.php:275 +#: ../../enterprise/operation/services/services.list.php:239 +#: ../../enterprise/operation/services/services.list.php:504 +#: ../../enterprise/operation/services/services.list.php:558 +#: ../../enterprise/operation/services/services.table_services.php:161 +#: ../../extensions/module_groups.php:50 +#: ../../godmode/modules/manage_network_components_form_wizard.php:412 +#: ../../godmode/groups/group_list.php:1054 +#: ../../godmode/massive/massive_copy_modules.php:117 +#: ../../godmode/massive/massive_copy_modules.php:277 +#: ../../godmode/massive/massive_delete_modules.php:420 +#: ../../godmode/massive/massive_delete_modules.php:441 +#: ../../godmode/massive/massive_delete_agents.php:211 +#: ../../godmode/massive/massive_edit_agents.php:533 +#: ../../godmode/massive/massive_edit_modules.php:387 +#: ../../godmode/massive/massive_edit_modules.php:473 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3736 +#: ../../mobile/operation/agents.php:57 ../../mobile/operation/modules.php:71 +#: ../../include/functions_reporting_html.php:859 +#: ../../include/functions_reporting_html.php:2358 +#: ../../include/functions_reporting_html.php:4650 +#: ../../include/functions.php:1039 ../../include/functions.php:1275 +#: ../../include/functions.php:1276 ../../include/functions.php:1278 +#: ../../include/functions.php:1319 ../../include/functions_graph.php:3503 +#: ../../include/functions_graph.php:3504 +#: ../../include/functions_graph.php:5072 ../../include/functions_ui.php:2610 +#: ../../include/rest-api/models/VisualConsole/Items/Group.php:416 +#: ../../include/class/AgentWizard.class.php:1318 +#: ../../include/class/AgentWizard.class.php:4035 +#: ../../include/lib/Dashboard/Widgets/system_group_status.php:313 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:387 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:420 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:660 +#: ../../include/functions_events.php:2941 ../../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/gis_maps/render_view.php:164 +msgid "Critical" +msgstr "" + +#: ../../enterprise/meta/monitoring/custom_fields_csv.php:136 +msgid "No init" +msgstr "" + +#: ../../enterprise/meta/monitoring/custom_fields_view.php:54 +msgid "Custom fields View" +msgstr "" + +#: ../../enterprise/meta/monitoring/custom_fields_view.php:66 +msgid "Custom Fields View" +msgstr "" + +#: ../../enterprise/meta/monitoring/custom_fields_view.php:168 +#: ../../enterprise/godmode/policies/policies.php:324 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:746 +#: ../../extensions/agents_modules.php:407 +#: ../../godmode/agentes/modificar_agente.php:322 +#: ../../godmode/agentes/planned_downtime.editor.php:803 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1584 +#: ../../include/functions_html.php:1545 +#: ../../include/class/NetworkMap.class.php:3226 +#: ../../operation/agentes/estado_agente.php:262 +#: ../../operation/agentes/interface_view.functions.php:59 +#: ../../operation/agentes/status_monitor.php:488 +msgid "Recursion" +msgstr "" + +#: ../../enterprise/meta/monitoring/custom_fields_view.php:183 +#: ../../enterprise/godmode/massive/massive_add_modules_policy.php:123 +#: ../../enterprise/operation/agentes/tag_view.php:135 +#: ../../godmode/massive/massive_copy_modules.php:119 +#: ../../godmode/massive/massive_copy_modules.php:279 +#: ../../godmode/massive/massive_delete_modules.php:422 +#: ../../godmode/massive/massive_delete_modules.php:443 +#: ../../godmode/massive/massive_delete_agents.php:213 +#: ../../godmode/massive/massive_edit_agents.php:535 +#: ../../godmode/massive/massive_edit_modules.php:389 +#: ../../godmode/massive/massive_edit_modules.php:475 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3738 +#: ../../godmode/events/event_edit_filter.php:320 +#: ../../mobile/operation/modules.php:73 ../../include/functions.php:1277 +#: ../../include/lib/Dashboard/Widgets/events_list.php:319 +#: ../../include/functions_events.php:2889 +#: ../../operation/agentes/estado_agente.php:272 +#: ../../operation/agentes/status_monitor.php:496 +#: ../../operation/events/events.php:1583 +msgid "Not normal" +msgstr "" + +#: ../../enterprise/meta/monitoring/custom_fields_view.php:185 +#: ../../enterprise/meta/monitoring/group_view.php:237 +#: ../../enterprise/meta/monitoring/group_view.php:243 +#: ../../enterprise/meta/monitoring/tactical.php:226 +#: ../../enterprise/godmode/massive/massive_add_modules_policy.php:124 +#: ../../enterprise/operation/agentes/transactional_map.php:345 +#: ../../enterprise/operation/agentes/tag_view.php:137 +#: ../../enterprise/operation/services/services.treeview_services.php:290 +#: ../../godmode/groups/group_list.php:1069 +#: ../../godmode/massive/massive_copy_modules.php:120 +#: ../../godmode/massive/massive_copy_modules.php:280 +#: ../../godmode/massive/massive_delete_modules.php:423 +#: ../../godmode/massive/massive_delete_modules.php:444 +#: ../../godmode/massive/massive_delete_agents.php:214 +#: ../../godmode/massive/massive_edit_agents.php:536 +#: ../../godmode/massive/massive_edit_modules.php:390 +#: ../../godmode/massive/massive_edit_modules.php:476 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3739 +#: ../../mobile/operation/modules.php:75 +#: ../../include/functions_reporting_html.php:652 +#: ../../include/functions_reporting_html.php:2361 +#: ../../include/functions_reporting_html.php:4458 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:389 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:422 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:675 +#: ../../operation/tree.php:216 ../../operation/tree.php:273 +#: ../../operation/tree.php:481 ../../operation/agentes/estado_agente.php:273 +#: ../../operation/agentes/status_monitor.php:498 +#: ../../operation/agentes/group_view.php:225 +#: ../../operation/agentes/group_view.php:230 +#: ../../operation/agentes/tactical.php:182 +msgid "Not init" +msgstr "" + +#: ../../enterprise/meta/monitoring/custom_fields_view.php:187 +msgid "Status agents" +msgstr "" + +#: ../../enterprise/meta/monitoring/custom_fields_view.php:203 +msgid "Status module" +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:829 ../../operation/events/events.php:1708 +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:587 ../../include/ajax/events.php:571 +#: ../../include/ajax/events.php:587 +#: ../../operation/netflow/nf_live_view.php:397 +#: ../../operation/events/sound_events.php:184 +#: ../../operation/events/events.php:1700 +msgid "Load filter" +msgstr "" + +#: ../../enterprise/meta/monitoring/custom_fields_view.php:250 +#: ../../general/first_task/custom_fields.php:24 +msgid "Custom Fields" +msgstr "" + +#: ../../enterprise/meta/monitoring/custom_fields_view.php:266 +msgid "Custom Fields Data" +msgstr "" + +#: ../../enterprise/meta/monitoring/custom_fields_view.php:293 +#: ../../godmode/events/event_edit_filter.php:619 +#: ../../operation/events/events.php:1799 +msgid "Module search" +msgstr "" + +#: ../../enterprise/meta/monitoring/custom_fields_view.php:304 +#: ../../enterprise/extensions/vmware/vmware_view.php:1519 +#: ../../enterprise/include/class/DeploymentCenter.class.php:1533 +#: ../../enterprise/include/class/AgentRepository.class.php:784 +#: ../../enterprise/include/class/Omnishell.class.php:1124 +#: ../../enterprise/include/class/LogSource.class.php:766 +#: ../../enterprise/operation/agentes/tag_view.php:175 +#: ../../godmode/users/user_list.php:693 +#: ../../include/class/ConfigPEN.class.php:252 +#: ../../include/class/CredentialStore.class.php:1098 +#: ../../operation/heatmap.php:291 +#: ../../operation/agentes/interface_view.functions.php:120 +#: ../../operation/agentes/interface_view.functions.php:158 +#: ../../operation/agentes/status_monitor.php:861 +msgid "Show" +msgstr "" + +#: ../../enterprise/meta/monitoring/custom_fields_view.php:319 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:597 +#: ../../enterprise/include/functions_ipam.php:339 +#: ../../enterprise/operation/log/log_viewer.php:805 +#: ../../enterprise/operation/reporting/custom_reporting.php:80 +#: ../../godmode/modules/manage_network_templates.php:288 +#: ../../godmode/agentes/planned_downtime.list.php:860 +#: ../../include/graphs/functions_flot.php:377 +#: ../../include/class/ModuleTemplates.class.php:934 +#: ../../operation/network/network_report.php:140 +#: ../../operation/incidents/list_integriaims_incidents.php:428 +msgid "Export to CSV" +msgstr "" + +#: ../../enterprise/meta/monitoring/custom_fields_view.php:347 +#: ../../enterprise/meta/monitoring/custom_fields_view.php:349 +#: ../../enterprise/include/class/DatabaseHA.class.php:217 +#: ../../godmode/wizards/DiscoveryTaskList.class.php:1861 +#: ../../include/functions_ui.php:3432 +msgid "Processing" +msgstr "" + +#: ../../enterprise/meta/monitoring/custom_fields_view.php:374 +#: ../../mobile/operation/groups.php:153 +#: ../../include/functions_reporting_html.php:5602 +#: ../../include/functions_agents.php:3860 +msgid "Agents critical" +msgstr "" + +#: ../../enterprise/meta/monitoring/custom_fields_view.php:387 +#: ../../include/functions_reporting_html.php:5605 +#: ../../include/functions_agents.php:3870 +msgid "Agents warning" +msgstr "" + +#: ../../enterprise/meta/monitoring/custom_fields_view.php:400 +#: ../../include/functions_reporting_html.php:5611 +#: ../../include/functions_agents.php:3850 +#: ../../include/functions_agents.php:3904 +msgid "Agents ok" +msgstr "" + +#: ../../enterprise/meta/monitoring/custom_fields_view.php:413 +#: ../../mobile/operation/groups.php:156 +#: ../../include/functions_reporting_html.php:5614 +#: ../../include/functions_agents.php:3880 +msgid "Agents unknown" +msgstr "" + +#: ../../enterprise/meta/monitoring/custom_fields_view.php:426 +#: ../../mobile/operation/groups.php:150 +#: ../../include/functions_reporting_html.php:5620 +#: ../../include/functions_agents.php:3894 +msgid "Agents not init" +msgstr "" + +#: ../../enterprise/meta/monitoring/custom_fields_view.php:452 +#: ../../include/functions_reporting.php:11572 +msgid "Monitor critical" +msgstr "" + +#: ../../enterprise/meta/monitoring/custom_fields_view.php:463 +#: ../../include/functions_reporting.php:11576 +msgid "Monitor warning" +msgstr "" + +#: ../../enterprise/meta/monitoring/custom_fields_view.php:474 +#: ../../include/functions_reporting.php:11583 +msgid "Monitor normal" +msgstr "" + +#: ../../enterprise/meta/monitoring/custom_fields_view.php:485 +#: ../../include/functions_reporting.php:11587 +msgid "Monitor unknown" +msgstr "" + +#: ../../enterprise/meta/monitoring/custom_fields_view.php:496 +#: ../../include/functions_reporting.php:11594 +msgid "Monitor not init" +msgstr "" + +#: ../../enterprise/meta/monitoring/custom_fields_view.php:511 +#: ../../include/functions_reporting_html.php:5629 +#: ../../include/functions_reporting_html.php:5634 +msgid "Agents by status" +msgstr "" + +#: ../../enterprise/meta/monitoring/custom_fields_view.php:519 +#: ../../include/functions_reporting.php:11614 +#: ../../include/functions_reporting.php:11620 +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 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:658 +#: ../../operation/tree.php:464 +msgid "Critical agents" +msgstr "" + +#: ../../enterprise/meta/monitoring/custom_fields_view.php:543 +#: ../../enterprise/operation/services/services.treeview_services.php:278 +#: ../../godmode/groups/group_list.php:1057 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:663 +#: ../../operation/tree.php:469 +msgid "Warning agents" +msgstr "" + +#: ../../enterprise/meta/monitoring/custom_fields_view.php:553 +#: ../../enterprise/operation/services/services.treeview_services.php:293 +#: ../../godmode/groups/group_list.php:1072 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:678 +#: ../../operation/tree.php:484 +msgid "Normal agents" +msgstr "" + +#: ../../enterprise/meta/monitoring/custom_fields_view.php:563 +#: ../../enterprise/operation/services/services.treeview_services.php:283 +#: ../../godmode/groups/group_list.php:1062 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:668 +#: ../../operation/tree.php:474 +msgid "Unknown agents" +msgstr "" + +#: ../../enterprise/meta/monitoring/custom_fields_view.php:573 +#: ../../enterprise/operation/services/services.treeview_services.php:288 +#: ../../godmode/groups/group_list.php:1067 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:673 +#: ../../operation/tree.php:479 +msgid "Not init agents" +msgstr "" + +#: ../../enterprise/meta/monitoring/custom_fields_view.php:602 +#: ../../enterprise/include/functions_reporting_csv.php:983 +#: ../../enterprise/operation/services/services.treeview_services.php:274 +#: ../../godmode/groups/group_list.php:1053 +#: ../../mobile/operation/groups.php:171 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:659 +#: ../../operation/tree.php:465 +msgid "Critical modules" +msgstr "" + +#: ../../enterprise/meta/monitoring/custom_fields_view.php:613 +#: ../../enterprise/include/functions_reporting_csv.php:983 +#: ../../enterprise/operation/services/services.treeview_services.php:279 +#: ../../godmode/groups/group_list.php:1058 +#: ../../mobile/operation/groups.php:168 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:664 +#: ../../operation/tree.php:470 +msgid "Warning modules" +msgstr "" + +#: ../../enterprise/meta/monitoring/custom_fields_view.php:624 +#: ../../enterprise/include/functions_reporting_csv.php:983 +#: ../../enterprise/operation/services/services.treeview_services.php:294 +#: ../../godmode/groups/group_list.php:1073 +#: ../../mobile/operation/groups.php:165 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:679 +#: ../../operation/tree.php:485 +msgid "Normal modules" +msgstr "" + +#: ../../enterprise/meta/monitoring/custom_fields_view.php:635 +#: ../../enterprise/include/functions_reporting_csv.php:983 +#: ../../enterprise/operation/services/services.treeview_services.php:284 +#: ../../godmode/groups/group_list.php:1063 +#: ../../mobile/operation/groups.php:159 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:669 +#: ../../operation/tree.php:475 +msgid "Unknown modules" +msgstr "" + +#: ../../enterprise/meta/monitoring/custom_fields_view.php:646 +#: ../../enterprise/include/functions_reporting_csv.php:983 +#: ../../enterprise/operation/services/services.treeview_services.php:289 +#: ../../godmode/groups/group_list.php:1068 +#: ../../mobile/operation/groups.php:162 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:674 +#: ../../operation/tree.php:480 +msgid "Not init modules" +msgstr "" + +#: ../../enterprise/meta/monitoring/custom_fields_view.php:672 +msgid "Total counters" +msgstr "" + +#: ../../enterprise/meta/monitoring/custom_fields_view.php:675 +msgid "Total Agents" +msgstr "" + +#: ../../enterprise/meta/monitoring/custom_fields_view.php:684 +msgid "Total Modules" +msgstr "" + +#: ../../enterprise/meta/monitoring/custom_fields_view.php:705 +msgid "I.P" +msgstr "" + +#: ../../enterprise/meta/monitoring/custom_fields_view.php:719 +#: ../../include/functions_api.php:168 +msgid "No data to show." +msgstr "" + +#: ../../enterprise/meta/monitoring/custom_fields_view.php:727 +msgid "There are no custom search defined." +msgstr "" + +#: ../../enterprise/meta/monitoring/custom_fields_view.php:1151 +#: ../../enterprise/meta/event/custom_events.php:249 +#: ../../godmode/agentes/status_monitor_custom_fields.php:241 +#: ../../godmode/events/custom_events.php:223 +#: ../../include/class/TreeGroupEdition.class.php:164 +msgid "Confirm" +msgstr "" + +#: ../../enterprise/meta/monitoring/wizard/wizard.agent.php:76 +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:229 +#: ../../godmode/agentes/configurar_agente.php:842 +#: ../../godmode/agentes/modificar_agente.php:952 +#: ../../operation/agentes/estado_agente.php:968 +#: ../../operation/agentes/estado_agente.php:978 +#: ../../operation/snmpconsole/snmp_statistics.php:193 +#: ../../operation/snmpconsole/snmp_view.php:956 +msgid "Create agent" +msgstr "" + +#: ../../enterprise/meta/monitoring/wizard/wizard.agent.php:80 +msgid "Edit agent" +msgstr "" + +#: ../../enterprise/meta/monitoring/wizard/wizard.agent.php:198 +#: ../../enterprise/meta/monitoring/wizard/wizard.module.network.php:280 +msgid "Please, set a valid IP/Name address" +msgstr "" + +#: ../../enterprise/meta/monitoring/wizard/wizard.agent.php:209 +msgid "Please, select a group first" +msgstr "" + +#: ../../enterprise/meta/monitoring/wizard/wizard.manage_alert.php:73 +#: ../../enterprise/godmode/alerts/alert_inventory_list.php:337 +msgid "Edit alert" +msgstr "" + +#: ../../enterprise/meta/monitoring/wizard/wizard.manage_alert.php:104 +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:648 +#: ../../godmode/snmpconsole/snmp_alert.php:97 +msgid "Create alert" +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:3509 +#: ../../enterprise/extensions/disabled/check_acls.php:133 +#: ../../enterprise/godmode/agentes/agent_disk_conf_editor.php:211 +#: ../../enterprise/godmode/policies/policy_alerts.php:352 +#: ../../enterprise/godmode/policies/policy_alerts.php:567 +#: ../../enterprise/godmode/policies/policy_linking.php:151 +#: ../../enterprise/godmode/alerts/alert_inventory_list.php:371 +#: ../../enterprise/godmode/services/services.elements.php:93 +#: ../../enterprise/godmode/services/services.elements.php:155 +#: ../../enterprise/godmode/services/services.elements.php:271 +#: ../../enterprise/godmode/reporting/graph_template_item_editor.php:185 +#: ../../enterprise/godmode/reporting/graph_template_item_editor.php:240 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:317 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1397 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2058 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3515 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3728 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3746 +#: ../../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:525 +#: ../../enterprise/include/functions_reporting_pdf.php:533 +#: ../../enterprise/include/functions_reporting_pdf.php:541 +#: ../../enterprise/include/functions_reporting_pdf.php:557 +#: ../../enterprise/include/functions_reporting_csv.php:491 +#: ../../enterprise/include/functions_reporting_csv.php:776 +#: ../../enterprise/include/functions_reporting_csv.php:802 +#: ../../enterprise/include/functions_reporting_csv.php:915 +#: ../../enterprise/include/functions_reporting_csv.php:954 +#: ../../enterprise/include/functions_reporting_csv.php:1014 +#: ../../enterprise/include/functions_reporting_csv.php:1030 +#: ../../enterprise/include/functions_reporting_csv.php:1184 +#: ../../enterprise/include/functions_reporting_csv.php:1215 +#: ../../enterprise/include/functions_reporting_csv.php:1270 +#: ../../enterprise/include/functions_reporting_csv.php:1325 +#: ../../enterprise/include/functions_reporting_csv.php:1374 +#: ../../enterprise/include/functions_reporting_csv.php:1429 +#: ../../enterprise/include/functions_reporting_csv.php:1458 +#: ../../enterprise/include/functions_reporting_csv.php:1503 +#: ../../enterprise/include/functions_reporting_csv.php:1549 +#: ../../enterprise/include/functions_reporting_csv.php:1622 +#: ../../enterprise/include/functions_reporting_csv.php:1741 +#: ../../enterprise/include/functions_reporting_csv.php:1976 +#: ../../enterprise/include/functions_reporting_csv.php:2049 +#: ../../enterprise/include/functions_reporting_csv.php:2281 +#: ../../enterprise/include/functions_reporting_csv.php:2317 +#: ../../enterprise/include/functions_reporting_csv.php:2465 +#: ../../enterprise/include/functions_reporting_csv.php:2737 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:924 +#: ../../enterprise/include/functions_reporting.php:1854 +#: ../../enterprise/include/functions_reporting.php:2893 +#: ../../enterprise/include/functions_reporting.php:3880 +#: ../../enterprise/include/functions_reporting.php:4904 +#: ../../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:357 +#: ../../godmode/agentes/planned_downtime.editor.php:1007 +#: ../../godmode/agentes/agent_manager.php:520 +#: ../../godmode/agentes/agent_manager.php:592 +#: ../../godmode/agentes/module_manager_editor_common.php:1260 +#: ../../godmode/agentes/module_manager_editor_common.php:1304 +#: ../../godmode/massive/massive_standby_alerts.php:223 +#: ../../godmode/massive/massive_standby_alerts.php:258 +#: ../../godmode/massive/massive_enable_disable_alerts.php:195 +#: ../../godmode/massive/massive_enable_disable_alerts.php:230 +#: ../../godmode/massive/massive_edit_agents.php:674 +#: ../../godmode/massive/massive_edit_agents.php:1026 +#: ../../godmode/alerts/alert_list.list.php:494 +#: ../../godmode/alerts/alert_list.list.php:752 +#: ../../godmode/alerts/alert_view.php:91 +#: ../../godmode/alerts/alert_list.builder.php:70 +#: ../../godmode/reporting/reporting_builder.list_items.php:410 +#: ../../godmode/reporting/create_container.php:410 +#: ../../godmode/reporting/create_container.php:560 +#: ../../godmode/reporting/create_container.php:628 +#: ../../godmode/reporting/graph_builder.graph_editor.php:213 +#: ../../godmode/reporting/reporting_builder.item_editor.php:201 +#: ../../godmode/reporting/reporting_builder.item_editor.php:873 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1170 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1709 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3901 +#: ../../godmode/reporting/reporting_builder.item_editor.php:4417 +#: ../../godmode/reporting/reporting_builder.item_editor.php:4441 +#: ../../godmode/reporting/visual_console_builder.elements.php:105 +#: ../../godmode/reporting/visual_console_builder.wizard.php:449 +#: ../../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:543 +#: ../../include/functions_reporting_html.php:939 +#: ../../include/functions_reporting_html.php:1813 +#: ../../include/functions_reporting_html.php:2141 +#: ../../include/functions_reporting_html.php:2243 +#: ../../include/functions_reporting_html.php:3226 +#: ../../include/functions_reporting_html.php:3609 +#: ../../include/functions_reporting_html.php:3617 +#: ../../include/functions_reporting_html.php:3626 +#: ../../include/functions_reporting_html.php:3638 +#: ../../include/functions_reporting_html.php:3794 +#: ../../include/functions_reporting_html.php:3922 +#: ../../include/functions_reporting_html.php:4016 +#: ../../include/functions_reporting_html.php:4735 +#: ../../include/functions_reporting_html.php:4783 +#: ../../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:5391 +#: ../../include/functions_treeview.php:64 +#: ../../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/Odometer.php:385 +#: ../../include/functions_reports.php:1344 +#: ../../include/class/AgentsAlerts.class.php:412 +#: ../../include/class/AgentsAlerts.class.php:891 +#: ../../include/functions_reporting.php:6839 +#: ../../include/lib/Dashboard/Widgets/sla_percent.php:315 +#: ../../include/lib/Dashboard/Widgets/BlockHistogram.php:278 +#: ../../include/lib/Dashboard/Widgets/module_icon.php:334 +#: ../../include/lib/Dashboard/Widgets/module_value.php:308 +#: ../../include/lib/Dashboard/Widgets/ColorModuleTabs.php:254 +#: ../../include/lib/Dashboard/Widgets/module_table_value.php:283 +#: ../../include/lib/Dashboard/Widgets/graph_module_histogram.php:304 +#: ../../include/lib/Dashboard/Widgets/module_status.php:324 +#: ../../include/lib/Dashboard/Widgets/single_graph.php:279 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:682 +#: ../../include/lib/Dashboard/Widgets/top_n.php:221 +#: ../../operation/agentes/exportdata.csv.php:74 +#: ../../operation/agentes/exportdata.php:83 +#: ../../operation/agentes/estado_monitores.php:125 +#: ../../operation/agentes/exportdata.excel.php:74 +#: ../../operation/search_alerts.php:35 ../../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:329 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:321 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1402 +#: ../../enterprise/include/functions_tasklist.php:328 +#: ../../enterprise/include/functions_reporting_csv.php:2465 +#: ../../enterprise/operation/agentes/policy_view.php:259 +#: ../../godmode/alerts/alert_list.list.php:498 +#: ../../godmode/alerts/alert_view.php:95 +#: ../../godmode/alerts/alert_list.builder.php:140 +#: ../../godmode/reporting/reporting_builder.item_editor.php:205 +#: ../../godmode/reporting/reporting_builder.item_editor.php:878 +#: ../../mobile/operation/alerts.php:342 +#: ../../include/functions_reporting_html.php:3227 +#: ../../include/functions_reporting_html.php:3230 +#: ../../include/functions_cron.php:653 +#: ../../include/ajax/alert_list.ajax.php:293 +#: ../../include/ajax/alert_list.ajax.php:318 +#: ../../include/functions_treeview.php:412 +#: ../../include/functions_treeview.php:453 +#: ../../include/class/AgentsAlerts.class.php:338 +#: ../../include/class/AgentsAlerts.class.php:964 +#: ../../operation/search_alerts.php:36 +msgid "Template" +msgstr "" + +#: ../../enterprise/meta/monitoring/wizard/wizard.manage_alert.php:231 +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:257 +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:354 +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:411 +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:679 +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:750 +#: ../../enterprise/meta/monitoring/wizard/wizard.create_module.php:231 +#: ../../enterprise/meta/monitoring/wizard/wizard.php:150 +#: ../../enterprise/meta/include/ajax/wizard.ajax.php:742 +#: ../../enterprise/meta/general/header.php:121 +#: ../../enterprise/meta/general/main_header.php:558 +#: ../../enterprise/godmode/policies/policy_alerts.php:648 +#: ../../enterprise/godmode/policies/policy_external_alerts.php:676 +#: ../../enterprise/godmode/massive/massive_add_modules_policy.php:141 +#: ../../enterprise/godmode/massive/massive_create_services.php:902 +#: ../../enterprise/godmode/massive/massive_create_services.php:914 +#: ../../enterprise/godmode/massive/massive_create_services.php:926 +#: ../../enterprise/godmode/massive/massive_create_services.php:938 +#: ../../enterprise/godmode/services/services.service.php:873 +#: ../../enterprise/godmode/services/services.service.php:885 +#: ../../enterprise/godmode/services/services.service.php:897 +#: ../../enterprise/godmode/services/services.service.php:909 +#: ../../extensions/insert_data.php:186 +#: ../../godmode/snmpconsole/snmp_trap_generator.php:159 +#: ../../godmode/massive/massive_copy_modules.php:138 +#: ../../godmode/massive/massive_delete_modules.php:334 +#: ../../godmode/massive/massive_delete_modules.php:469 +#: ../../godmode/massive/massive_add_alerts.php:286 +#: ../../godmode/massive/massive_delete_alerts.php:277 +#: ../../godmode/massive/massive_edit_modules.php:318 +#: ../../godmode/massive/massive_edit_modules.php:431 +#: ../../godmode/alerts/alert_list.builder.php:82 +#: ../../godmode/alerts/alert_list.builder.php:156 +#: ../../godmode/setup/setup_integria.php:367 +#: ../../godmode/setup/setup_integria.php:385 +#: ../../godmode/setup/setup_integria.php:414 +#: ../../godmode/setup/setup_integria.php:432 +#: ../../godmode/setup/setup_integria.php:489 +#: ../../godmode/setup/setup_integria.php:507 +#: ../../godmode/setup/setup_integria.php:536 +#: ../../godmode/setup/setup_integria.php:554 +#: ../../include/functions_reports.php:1351 +#: ../../include/class/AgentsAlerts.class.php:354 +#: ../../operation/incidents/configure_integriaims_incident.php:240 +#: ../../operation/incidents/configure_integriaims_incident.php:256 +#: ../../operation/incidents/configure_integriaims_incident.php:302 +#: ../../general/header.php:265 +msgid "Select" +msgstr "" + +#: ../../enterprise/meta/monitoring/wizard/wizard.manage_alert.php:248 +msgid "Create new template" +msgstr "" + +#: ../../enterprise/meta/monitoring/wizard/wizard.manage_alert.php:263 +#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:441 +#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:548 +#: ../../godmode/alerts/configure_alert_template.php:758 +#: ../../godmode/alerts/alert_list.builder.php:117 +#: ../../include/class/AgentsAlerts.class.php:304 +msgid "Default action" +msgstr "" + +#: ../../enterprise/meta/monitoring/wizard/wizard.manage_alert.php:280 +msgid "Create new action" +msgstr "" + +#: ../../enterprise/meta/monitoring/wizard/wizard.manage_alert.php:290 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2340 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2552 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3387 +#: ../../godmode/alerts/alert_list.list.php:666 +#: ../../godmode/alerts/alert_list.list.php:792 +#: ../../godmode/alerts/configure_alert_action.php:284 +#: ../../godmode/alerts/alert_view.php:361 +#: ../../godmode/alerts/alert_list.builder.php:173 +#: ../../include/functions_reporting_html.php:3484 +#: ../../include/functions_reporting_html.php:5252 +#: ../../include/ajax/alert_list.ajax.php:540 +#: ../../include/ajax/custom_fields.php:413 +#: ../../include/class/AgentsAlerts.class.php:385 +#: ../../include/class/AgentWizard.class.php:1199 +msgid "Threshold" +msgstr "" + +#: ../../enterprise/meta/monitoring/wizard/wizard.module.local.php:108 +#: ../../enterprise/meta/monitoring/wizard/wizard.module.network.php:120 +#: ../../enterprise/meta/monitoring/wizard/wizard.module.web.php:101 +msgid "Advanced configuration" +msgstr "" + +#: ../../enterprise/meta/monitoring/wizard/wizard.module.local.php:122 +#: ../../enterprise/meta/monitoring/wizard/wizard.create_agent.php:40 +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:327 +#: ../../enterprise/meta/monitoring/wizard/wizard.module.network.php:135 +#: ../../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 +msgid "Create module" +msgstr "" + +#: ../../enterprise/meta/monitoring/wizard/wizard.module.local.php:126 +#: ../../enterprise/meta/monitoring/wizard/wizard.module.network.php:142 +#: ../../enterprise/meta/monitoring/wizard/wizard.module.web.php:117 +#: ../../enterprise/meta/monitoring/wizard/wizard.update_module.php:39 +#: ../../enterprise/godmode/policies/policy_modules.php:380 +msgid "Edit module" +msgstr "" + +#: ../../enterprise/meta/monitoring/wizard/wizard.module.local.php:156 +#: ../../enterprise/meta/monitoring/wizard/wizard.module.network.php:195 +#: ../../enterprise/meta/monitoring/wizard/wizard.update_agent.php:46 +#: ../../enterprise/meta/monitoring/wizard/wizard.module.web.php:147 +#: ../../enterprise/meta/monitoring/wizard/wizard.update_module.php:92 +#: ../../enterprise/meta/monitoring/wizard/wizard.create_module.php:131 +#: ../../enterprise/meta/monitoring/wizard/wizard.php:155 +#: ../../enterprise/meta/monitoring/wizard/wizard.php:207 +#, php-format +msgid "Cannot connect to %s instance." +msgstr "" + +#: ../../enterprise/meta/monitoring/wizard/wizard.module.local.php:229 +#: ../../enterprise/meta/monitoring/wizard/wizard.module.network.php:281 +#: ../../enterprise/meta/monitoring/wizard/wizard.module.web.php:238 +msgid "Invalid characters founded in module name" +msgstr "" + +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:234 +#: ../../godmode/agentes/configurar_agente.php:819 +#: ../../godmode/agentes/configurar_agente.php:841 +#: ../../godmode/agentes/modificar_agente.php:108 ../../godmode/menu.php:87 +msgid "Manage agents" +msgstr "" + +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:276 +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:372 +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:438 +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:706 +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:785 +#: ../../enterprise/meta/agentsearch.php:52 +#: ../../enterprise/meta/agentsearch.php:58 +#: ../../godmode/events/event_edit_filter.php:376 +#: ../../mobile/operation/home.php:168 ../../operation/events/events.php:1782 +msgid "Agent search" +msgstr "" + +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:283 +msgid "Select the agent to be edited or deleted" +msgstr "" + +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:292 +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:388 +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:458 +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:727 +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:809 +#: ../../godmode/groups/configure_group.php:272 +#: ../../godmode/snmpconsole/snmp_alert.php:1138 +#: ../../godmode/alerts/configure_alert_action.php:395 +#: ../../mobile/operation/agents.php:209 ../../mobile/operation/modules.php:241 +#: ../../mobile/operation/groups.php:82 ../../mobile/operation/agent.php:148 +#: ../../mobile/operation/alerts.php:199 +#: ../../mobile/operation/visualmap.php:256 +#: ../../mobile/operation/visualmaps.php:189 +#: ../../mobile/operation/module_graph.php:364 +#: ../../mobile/operation/module_graph.php:377 +#: ../../mobile/operation/events.php:913 +#: ../../mobile/operation/tactical.php:102 +msgid "Back" +msgstr "" + +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:332 +msgid "Manage modules" +msgstr "" + +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:378 +msgid "Select the agent where the module will be created" +msgstr "" + +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:391 +msgid "Create Module" +msgstr "" + +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:448 +msgid "Select the module to be edited or deleted" +msgstr "" + +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:503 +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:543 +msgid "Error creating alert" +msgstr "" + +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:507 +msgid "Alert could not be created" +msgstr "" + +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:527 +msgid "Perform create alert" +msgstr "" + +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:531 +msgid "Alert created correctly" +msgstr "" + +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:547 +msgid "Alert template must be setted" +msgstr "" + +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:586 +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:619 +msgid "Error updating alert" +msgstr "" + +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:590 +msgid "Something gone wrong with alert update" +msgstr "" + +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:601 +msgid "Perform update alert" +msgstr "" + +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:605 +msgid "Alert updated correctly" +msgstr "" + +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:623 +msgid "Template must be set." +msgstr "" + +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:653 +#: ../../godmode/users/configure_profile.php:291 +#: ../../godmode/alerts/alert_list.php:494 +#: ../../godmode/alerts/alert_list.php:496 +msgid "Manage alerts" +msgstr "" + +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:716 +msgid "Select the module where the alert will be created" +msgstr "" + +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:798 +msgid "Select the alert to be edited or deleted" +msgstr "" + +#: ../../enterprise/meta/monitoring/wizard/wizard.module.web.php:231 +msgid "Please, set a name" +msgstr "" + +#: ../../enterprise/meta/monitoring/wizard/wizard.module.web.php:252 +msgid "Please, set an interval" +msgstr "" + +#: ../../enterprise/meta/monitoring/wizard/wizard.create_module.php:148 +#: ../../godmode/modules/manage_network_components_form_wizard.php:336 +#: ../../godmode/massive/massive_delete_modules.php:323 +#: ../../godmode/massive/massive_edit_modules.php:309 +msgid "Module type" +msgstr "" + +#: ../../enterprise/meta/monitoring/wizard/wizard.create_module.php:148 +#: ../../mobile/include/functions_web.php:24 +#: ../../include/functions_reporting_html.php:5171 +#: ../../include/functions_reporting_html.php:5325 +msgid "Monitor" +msgstr "" + +#: ../../enterprise/meta/monitoring/wizard/wizard.create_module.php:148 +msgid "Web check" +msgstr "" + +#: ../../enterprise/meta/monitoring/wizard/wizard.create_module.php:155 +#: ../../enterprise/godmode/modules/configure_local_component.php:259 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:832 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2017 +#: ../../enterprise/operation/agentes/tag_view.php:156 +#: ../../enterprise/operation/agentes/ver_agente.php:35 +#: ../../extensions/agents_modules.php:410 +#: ../../godmode/modules/manage_network_components_form_common.php:111 +#: ../../godmode/agentes/module_manager_editor_common.php:265 +#: ../../godmode/massive/massive_edit_modules.php:889 +#: ../../godmode/reporting/create_container.php:540 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1637 +#: ../../mobile/operation/modules.php:183 +#: ../../mobile/operation/modules.php:184 +#: ../../mobile/operation/modules.php:293 +#: ../../mobile/operation/modules.php:294 +#: ../../include/ajax/heatmap.ajax.php:190 +#: ../../include/ajax/heatmap.ajax.php:249 +#: ../../include/ajax/heatmap.ajax.php:288 +#: ../../include/functions_graph.php:5307 +#: ../../include/functions_treeview.php:122 +#: ../../include/functions_html.php:1570 +#: ../../include/functions_events.php:4096 ../../operation/heatmap.php:96 +#: ../../operation/heatmap.php:98 +#: ../../operation/agentes/status_monitor.php:517 +#: ../../operation/agentes/estado_monitores.php:552 +#: ../../operation/agentes/ver_agente.php:1157 +msgid "Module group" +msgstr "" + +#: ../../enterprise/meta/monitoring/wizard/wizard.create_module.php:245 +msgid "Module description" +msgstr "" + +#: ../../enterprise/meta/monitoring/wizard/wizard.create_module.php:267 +msgid "Step by step wizard" +msgstr "" + +#: ../../enterprise/meta/monitoring/wizard/wizard.create_module.php:268 +#: ../../enterprise/meta/general/main_header.php:309 +#: ../../enterprise/meta/general/main_header.php:391 +#: ../../enterprise/godmode/modules/configure_local_component.php:165 +#: ../../enterprise/godmode/agentes/plugins_manager.php:126 +#: ../../enterprise/godmode/policies/policy_plugins.php:108 +#: ../../godmode/modules/manage_network_components_form_common.php:53 +#: ../../godmode/users/configure_user.php:1192 +#: ../../godmode/netflow/nf_edit_form.php:237 +#: ../../godmode/alerts/alert_commands.php:157 +#: ../../godmode/alerts/alert_commands.php:194 +#: ../../godmode/alerts/configure_alert_template.php:946 +#: ../../godmode/alerts/configure_alert_template.php:987 +#: ../../godmode/alerts/configure_alert_template.php:1138 +#: ../../operation/netflow/nf_live_view.php:490 +msgid "Advanced" +msgstr "" + +#: ../../enterprise/meta/monitoring/wizard/wizard.create_module.php:275 +#: ../../enterprise/meta/monitoring/wizard/wizard.create_module.php:280 +msgid "Click Create to continue" +msgstr "" + +#: ../../enterprise/meta/monitoring/wizard/wizard.create_module.php:384 +#: ../../enterprise/meta/monitoring/wizard/wizard.php:145 +#: ../../godmode/reporting/graph_builder.graph_editor.php:367 +msgid "Please, select a module" +msgstr "" + +#: ../../enterprise/meta/monitoring/wizard/wizard.php:133 +#: ../../enterprise/godmode/wizards/Cloud.class.php:579 +#: ../../enterprise/include/class/VMware.app.php:863 +#: ../../enterprise/include/class/Omnishell.class.php:852 +#: ../../enterprise/include/class/DB2.app.php:840 +#: ../../enterprise/include/class/SAP.app.php:802 +#: ../../enterprise/include/class/Aws.cloud.php:1423 +#: ../../enterprise/include/class/MySQL.app.php:908 +#: ../../enterprise/include/class/Oracle.app.php:949 +#: ../../enterprise/include/class/MicrosoftSQLServer.app.php:793 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2180 +#: ../../enterprise/include/lib/ClusterViewer/ClusterWizard.php:1206 +#: ../../godmode/alerts/configure_alert_template.php:1171 +#: ../../godmode/wizards/HostDevices.class.php:1569 +#: ../../include/class/CustomNetScan.class.php:725 +msgid "Finish" +msgstr "" + +#: ../../enterprise/meta/monitoring/wizard/wizard.php:134 +msgid "The alert you are trying to add is already in the list of alerts" +msgstr "" + +#: ../../enterprise/meta/monitoring/wizard/wizard.php:135 +#: ../../enterprise/meta/include/ajax/wizard.ajax.php:609 +#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:124 +msgid "No description available" +msgstr "" + +#: ../../enterprise/meta/monitoring/wizard/wizard.php:138 +#: ../../enterprise/operation/agentes/policy_view.php:184 +#: ../../enterprise/operation/agentes/policy_view.php:277 +#: ../../enterprise/operation/agentes/policy_view.php:570 +#: ../../godmode/modules/manage_network_components_form_plugin.php:54 +#: ../../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:2712 +#: ../../include/class/AgentWizard.class.php:2510 +msgid "Empty" +msgstr "" + +#: ../../enterprise/meta/monitoring/wizard/wizard.php:139 +#: ../../include/functions_events.php:2983 +#: ../../include/functions_events.php:3263 +msgid "New" +msgstr "" + +#: ../../enterprise/meta/monitoring/wizard/wizard.php:144 +msgid "" +"Are you sure? If the agent is on a policy, it will be removed from the " +"policy." +msgstr "" + +#: ../../enterprise/meta/monitoring/wizard/wizard.php:146 +msgid "Please, select an alert" +msgstr "" + +#: ../../enterprise/meta/monitoring/wizard/wizard.php:147 +msgid "Please, select an agent" +msgstr "" + +#: ../../enterprise/meta/monitoring/wizard/wizard.php:149 +#: ../../enterprise/godmode/policies/policy_modules.php:1636 +#: ../../enterprise/godmode/massive/massive_add_modules_policy.php:195 +#: ../../enterprise/include/class/CommandCenter.class.php:463 +#: ../../enterprise/operation/log/log_viewer.php:845 +#: ../../enterprise/operation/log/log_viewer.php:867 +#: ../../godmode/massive/massive_copy_modules.php:235 +#: ../../godmode/massive/massive_operations.php:361 +#: ../../godmode/massive/massive_add_profiles.php:292 +#: ../../include/functions_events.php:3944 +#: ../../operation/reporting/reporting_viewer.php:347 +#: ../../operation/reporting/graph_viewer.php:316 +#: ../../general/ui/agents_list.php:146 +msgid "Loading" +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:6969 +#: ../../include/lib/Dashboard/Widgets/url.php:216 +msgid "Url" +msgstr "" + +#: ../../enterprise/meta/monitoring/wizard/wizard.php:152 +#: ../../godmode/modules/manage_network_components_form_wizard.php:393 +#: ../../godmode/modules/manage_network_components_form_wizard.php:435 +#: ../../include/functions_reports.php:1080 +#: ../../include/functions_reports.php:1210 +msgid "String" +msgstr "" + +#: ../../enterprise/meta/monitoring/wizard/wizard.php:153 +msgid "No agent name specified" +msgstr "" + +#: ../../enterprise/meta/monitoring/wizard/wizard.php:154 +msgid "Another agent already exists with the same name" +msgstr "" + +#: ../../enterprise/meta/monitoring/wizard/wizard.php:156 +#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:430 +#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:433 +#: ../../godmode/agentes/module_manager_editor_common.php:627 +#: ../../godmode/agentes/module_manager_editor_common.php:629 +#, php-format +msgid "Agent interval x %s" +msgstr "" + +#: ../../enterprise/meta/monitoring/group_view.php:55 +msgid "Group View" +msgstr "" + +#: ../../enterprise/meta/monitoring/group_view.php:72 +#: ../../godmode/groups/group_list.php:321 +#: ../../godmode/users/configure_user.php:1093 +#: ../../operation/users/user_edit.php:359 +#: ../../operation/agentes/group_view.php:89 ../../operation/menu.php:48 +msgid "Group view" +msgstr "" + +#: ../../enterprise/meta/monitoring/group_view.php:151 +msgid "Summary by status" +msgstr "" + +#: ../../enterprise/meta/monitoring/group_view.php:160 +#: ../../enterprise/meta/monitoring/group_view.php:172 +msgid "% Agents not init" +msgstr "" + +#: ../../enterprise/meta/monitoring/group_view.php:163 +msgid "% Agents Warning" +msgstr "" + +#: ../../enterprise/meta/monitoring/group_view.php:166 +msgid "% Agents OK" +msgstr "" + +#: ../../enterprise/meta/monitoring/group_view.php:169 +msgid "% Agents Unknown" +msgstr "" + +#: ../../enterprise/meta/monitoring/group_view.php:177 +msgid "% Monitors Critical" +msgstr "" + +#: ../../enterprise/meta/monitoring/group_view.php:180 +msgid "% Monitors Warning" +msgstr "" + +#: ../../enterprise/meta/monitoring/group_view.php:183 +msgid "% Monitors OK" +msgstr "" + +#: ../../enterprise/meta/monitoring/group_view.php:186 +msgid "% Monitors Unknown" +msgstr "" + +#: ../../enterprise/meta/monitoring/group_view.php:189 +msgid "% Monitors Not init" +msgstr "" + +#: ../../enterprise/meta/monitoring/group_view.php:205 +#: ../../godmode/agentes/modificar_agente.php:944 +#: ../../operation/agentes/estado_agente.php:975 +#: ../../operation/agentes/group_view.php:577 +msgid "There are no defined agents" +msgstr "" + +#: ../../enterprise/meta/monitoring/group_view.php:217 +#: ../../enterprise/meta/monitoring/group_view.php:223 +msgid "This data doesn't show in realtime" +msgstr "" + +#: ../../enterprise/meta/monitoring/group_view.php:234 +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 +#: ../../include/functions_reporting_html.php:2346 +#: ../../include/functions_reporting_html.php:2356 +#: ../../include/functions_alerts.php:3360 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:650 +#: ../../operation/tree.php:456 ../../operation/agentes/group_view.php:223 +msgid "Total" +msgstr "" + +#: ../../enterprise/meta/monitoring/group_view.php:247 +#: ../../enterprise/operation/agentes/policy_view.php:345 +#: ../../godmode/alerts/alert_list.list.php:574 +#: ../../godmode/alerts/alert_view.php:105 +#: ../../mobile/operation/alerts.php:324 ../../include/functions.php:1228 +#: ../../include/functions_agents.php:2942 +#: ../../include/functions_agents.php:2953 ../../include/functions_ui.php:1253 +#: ../../include/class/AgentsAlerts.class.php:937 +#: ../../include/functions_reporting.php:12488 +#: ../../include/functions_events.php:2657 +#: ../../include/functions_events.php:2857 +#: ../../operation/agentes/group_view.php:234 +#: ../../operation/snmpconsole/snmp_view.php:1018 +msgid "Alert fired" +msgstr "" + +#: ../../enterprise/meta/monitoring/group_view.php:359 +#: ../../operation/agentes/group_view.php:320 +#, php-format +msgid "" +"This %s installation are using the secondary groups feature. For this " +"reason, an agent can be counted several times." +msgstr "" + +#: ../../enterprise/meta/monitoring/tactical.php:42 +#: ../../include/class/OrderInterpreter.class.php:105 +msgid "Tactical View" +msgstr "" + +#: ../../enterprise/meta/monitoring/tactical.php:63 +#: ../../enterprise/meta/general/main_header.php:103 +#: ../../enterprise/meta/general/main_menu.php:194 +#: ../../godmode/users/configure_user.php:1094 +#: ../../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:360 +#: ../../operation/agentes/tactical.php:69 ../../operation/menu.php:45 +msgid "Tactical view" +msgstr "" + +#: ../../enterprise/meta/monitoring/tactical.php:234 +msgid "Report of state" +msgstr "" + +#: ../../enterprise/meta/monitoring/tactical.php:272 +#: ../../enterprise/meta/general/main_header.php:154 +#: ../../enterprise/meta/general/logon_ok.php:57 +#: ../../enterprise/meta/general/main_menu.php:259 +#: ../../enterprise/include/class/CommandCenter.class.php:1071 +#: ../../enterprise/tools/ipam/ipam_network.php:399 +#: ../../enterprise/tools/ipam/ipam_massive.php:103 ../../godmode/menu.php:232 +#: ../../godmode/events/events.php:128 +#: ../../mobile/include/functions_web.php:25 ../../mobile/operation/home.php:51 +#: ../../mobile/operation/events.php:908 ../../include/functions.php:4094 +#: ../../include/ajax/events.php:2162 ../../include/functions_reports.php:864 +#: ../../include/functions_reports.php:868 +#: ../../include/functions_reports.php:872 ../../operation/menu.php:373 +#: ../../operation/events/events.php:1477 +#: ../../operation/events/events.php:1485 +msgid "Events" +msgstr "" + +#: ../../enterprise/meta/monitoring/tactical.php:278 +msgid "Report of events" +msgstr "" + +#: ../../enterprise/meta/monitoring/tactical.php:288 +msgid "Info of state in events" +msgstr "" + +#: ../../enterprise/meta/monitoring/tactical.php:308 +msgid "More events" +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:379 +msgid "View events" +msgstr "" + +#: ../../enterprise/meta/event/custom_events.php:44 +#: ../../godmode/netflow/nf_edit.php:217 +#: ../../godmode/netflow/nf_edit_form.php:190 +#: ../../godmode/snmpconsole/snmp_filters.php:37 +#: ../../godmode/events/event_filter.php:225 +#: ../../include/ajax/custom_fields.php:652 +msgid "Create filter" +msgstr "" + +#: ../../enterprise/meta/event/custom_events.php:50 ../../godmode/menu.php:227 +#: ../../godmode/events/events.php:68 +msgid "Event responses" +msgstr "" + +#: ../../enterprise/meta/event/custom_events.php:56 +#: ../../enterprise/meta/event/custom_events.php:61 +#: ../../enterprise/meta/event/custom_events.php:74 +#: ../../enterprise/meta/event/custom_events.php:92 +#: ../../godmode/agentes/agent_manager.php:907 +#: ../../godmode/agentes/agent_manager.php:932 ../../godmode/menu.php:93 +#: ../../godmode/massive/massive_edit_agents.php:1103 +#: ../../godmode/reporting/reporting_builder.item_editor.php:76 +#: ../../include/functions_reporting_html.php:1581 +#: ../../include/functions_events.php:4058 +#: ../../operation/agentes/status_monitor.php:62 +#: ../../operation/agentes/status_monitor.php:85 +#: ../../operation/agentes/ver_agente.php:1544 +msgid "Custom fields" +msgstr "" + +#: ../../enterprise/meta/event/custom_events.php:69 +#: ../../enterprise/meta/event/custom_events.php:88 +#: ../../enterprise/meta/general/main_header.php:291 +#: ../../enterprise/meta/general/main_menu.php:402 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2887 +#: ../../godmode/reporting/reporting_builder.list_items.php:222 +#: ../../godmode/events/events.php:90 ../../godmode/events/events.php:109 +msgid "Filters" +msgstr "" + +#: ../../enterprise/meta/event/custom_events.php:79 +#: ../../godmode/events/events.php:100 ../../include/ajax/events.php:1749 +msgid "Responses" +msgstr "" + +#: ../../enterprise/meta/event/custom_events.php:98 +msgid "The user is not in neither group with EW profile" +msgstr "" + +#: ../../enterprise/meta/event/custom_events.php:160 +#: ../../enterprise/include/ajax/log_viewer.ajax.php:75 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1250 +msgid "Fields" +msgstr "" + +#: ../../enterprise/meta/event/custom_events.php:175 +#: ../../godmode/agentes/status_monitor_custom_fields.php:164 +#: ../../godmode/events/custom_events.php:129 +msgid "Fields available" +msgstr "" + +#: ../../enterprise/meta/event/custom_events.php:177 +#: ../../godmode/agentes/status_monitor_custom_fields.php:186 +#: ../../godmode/events/custom_events.php:149 +msgid "Fields selected" +msgstr "" + +#: ../../enterprise/meta/event/custom_events.php:187 +#: ../../godmode/agentes/status_monitor_custom_fields.php:171 +#: ../../godmode/events/custom_events.php:136 +msgid "Add fields to select" +msgstr "" + +#: ../../enterprise/meta/event/custom_events.php:197 +#: ../../godmode/agentes/status_monitor_custom_fields.php:180 +#: ../../godmode/events/custom_events.php:144 +msgid "Delete fields to select" +msgstr "" + +#: ../../enterprise/meta/event/custom_events.php:207 +#: ../../godmode/events/custom_events.php:74 +msgid "Show event fields" +msgstr "" + +#: ../../enterprise/meta/event/custom_events.php:248 +#: ../../godmode/agentes/status_monitor_custom_fields.php:240 +#: ../../godmode/events/custom_events.php:222 +msgid "" +"There must be at least one custom field. Timestamp will be set by default" +msgstr "" + +#: ../../enterprise/meta/include/functions_autoprovision.php:378 +msgid "Round Robin" +msgstr "" + +#: ../../enterprise/meta/include/functions_autoprovision.php:383 +msgid "Less loaded" +msgstr "" + +#: ../../enterprise/meta/include/functions_autoprovision.php:422 +msgid "" +"It uses the Round-robin planning method to distribute, \n" +" in an equitable way and in a rational order, all the new " +"Pandora software agents that reach the Metaconsole.\n" +" The distribution of the agents will be done in a circular " +"way, assigning the corresponding server to each new agent.\n" +" " +msgstr "" + +#: ../../enterprise/meta/include/functions_autoprovision.php:430 +msgid "" +"The new agents will be dynamically assigned to those servers with less load." +msgstr "" + +#: ../../enterprise/meta/include/functions_autoprovision.php:435 +msgid "" +"In the customized classification, we will be able to define our own " +"classification rules, \n" +" based on certain parameters retrieved from the information " +"reported by the agent (name of the agent and its IP address).\n" +" " +msgstr "" + +#: ../../enterprise/meta/include/functions_autoprovision.php:473 +#: ../../enterprise/meta/include/functions_autoprovision.php:640 +#: ../../enterprise/godmode/reporting/reporting_builder.template_list_item.php:190 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2944 +#: ../../enterprise/include/functions_ipam.php:1643 +#: ../../godmode/reporting/reporting_builder.list_items.php:440 +#: ../../godmode/reporting/reporting_builder.list_items.php:740 +#: ../../godmode/reporting/graph_builder.graph_editor.php:217 +#: ../../godmode/reporting/graph_builder.graph_editor.php:318 +msgid "Sort" +msgstr "" + +#: ../../enterprise/meta/include/functions_autoprovision.php:529 +msgid "" +"There is no custom entries defined. Click on \"Create custom entry\" to add " +"the first." +msgstr "" + +#: ../../enterprise/meta/include/functions_autoprovision.php:534 +msgid "Create custom entry" +msgstr "" + +#: ../../enterprise/meta/include/functions_autoprovision.php:561 +msgid "Provisioning configuration" +msgstr "" + +#: ../../enterprise/meta/include/functions_autoprovision.php:572 +msgid "Configuration:" +msgstr "" + +#: ../../enterprise/meta/include/functions_autoprovision.php:610 +msgid "" +"There is no rules configured for this custom entry. Click on Add button to " +"create the first." +msgstr "" + +#: ../../enterprise/meta/include/functions_autoprovision.php:642 +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:495 +#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:272 +#: ../../extensions/quick_shell.php:190 +msgid "Method" +msgstr "" + +#: ../../enterprise/meta/include/functions_autoprovision.php:723 +msgid "There was an error when editing the rule." +msgstr "" + +#: ../../enterprise/meta/include/functions_autoprovision.php:737 +msgid "Operation:" +msgstr "" + +#: ../../enterprise/meta/include/functions_autoprovision.php:751 +msgid "Method:" +msgstr "" + +#: ../../enterprise/meta/include/functions_autoprovision.php:765 +#: ../../enterprise/include/functions_visual_map.php:215 +#: ../../enterprise/include/functions_visual_map.php:280 +msgid "Value:" +msgstr "" + +#: ../../enterprise/meta/include/functions_autoprovision.php:816 +msgid "Move up" +msgstr "" + +#: ../../enterprise/meta/include/functions_autoprovision.php:824 +msgid "Move down" +msgstr "" + +#: ../../enterprise/meta/include/functions_groups_meta.php:114 +#, php-format +msgid "Error Duplicate name (%s) " +msgstr "" + +#: ../../enterprise/meta/include/functions_groups_meta.php:132 +#, php-format +msgid "(Error Duplicate ID (%d) ) " +msgstr "" + +#: ../../enterprise/meta/include/functions_groups_meta.php:153 +msgid "Error Duplicate name" +msgstr "" + +#: ../../enterprise/meta/include/functions_users_meta.php:182 +#: ../../enterprise/meta/include/functions_users_meta.php:204 +#: ../../enterprise/meta/general/main_header.php:321 +#: ../../enterprise/meta/general/main_header.php:401 +#: ../../enterprise/meta/general/main_header.php:408 +#: ../../enterprise/meta/general/main_menu.php:462 +#: ../../enterprise/meta/general/main_menu.php:522 +#: ../../enterprise/meta/general/main_menu.php:529 +#: ../../godmode/users/profile_list.php:63 +#: ../../godmode/users/profile_list.php:84 +#: ../../godmode/users/configure_profile.php:55 +#: ../../godmode/users/configure_profile.php:76 +#: ../../godmode/users/user_list.php:214 ../../godmode/users/user_list.php:239 +#: ../../godmode/users/user_list.php:250 +#: ../../godmode/users/configure_user.php:223 +#: ../../operation/users/user_edit_header.php:91 +msgid "User management" +msgstr "" + +#: ../../enterprise/meta/include/functions_users_meta.php:186 +#: ../../enterprise/meta/include/functions_users_meta.php:212 +#: ../../godmode/users/profile_list.php:74 +#: ../../godmode/users/configure_profile.php:66 +#: ../../godmode/users/user_list.php:225 +#: ../../godmode/users/configure_user.php:234 ../../godmode/menu.php:146 +msgid "Profile management" +msgstr "" + +#: ../../enterprise/meta/include/functions_users_meta.php:193 +#: ../../enterprise/meta/include/functions_users_meta.php:208 +#: ../../enterprise/meta/general/header.php:204 +#: ../../enterprise/meta/general/header.php:214 +#: ../../enterprise/meta/general/main_header.php:624 +#: ../../enterprise/meta/general/main_header.php:630 +#: ../../operation/menu.php:481 ../../general/header.php:407 +#: ../../general/header.php:417 +msgid "Edit my user" +msgstr "" + +#: ../../enterprise/meta/include/functions_users_meta.php:200 +msgid "User synchronization" +msgstr "" + +#: ../../enterprise/meta/include/functions_users_meta.php:216 +msgid "Group synchronization" +msgstr "" + +#: ../../enterprise/meta/include/functions_wizard_meta.php:186 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1801 +#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:255 +#: ../../enterprise/include/functions_reporting_csv.php:718 +#: ../../godmode/agentes/agent_manager.php:292 +#: ../../godmode/reporting/reporting_builder.item_editor.php:69 +#: ../../include/functions_reporting_html.php:1553 +msgid "Alias" +msgstr "" + +#: ../../enterprise/meta/include/functions_wizard_meta.php:207 +#: ../../enterprise/meta/include/functions_wizard_meta.php:211 +#: ../../enterprise/meta/include/functions_wizard_meta.php:479 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1465 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1813 +#: ../../enterprise/include/functions_reporting_csv.php:718 +#: ../../godmode/agentes/agent_manager.php:301 +#: ../../godmode/servers/modificar_server.php:62 +#: ../../include/functions_reporting_html.php:1557 +#: ../../include/functions_reporting_html.php:3920 +#: ../../include/functions_reporting_html.php:4014 +#: ../../include/functions_treeview.php:640 +#: ../../include/functions_events.php:4034 +#: ../../operation/gis_maps/ajax.php:290 +msgid "IP Address" +msgstr "" + +#: ../../enterprise/meta/include/functions_wizard_meta.php:236 +#: ../../enterprise/meta/include/functions_wizard_meta.php:682 +#: ../../enterprise/godmode/modules/configure_local_component.php:503 +#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:183 +#: ../../enterprise/godmode/setup/setup_log_collector.php:49 +#: ../../enterprise/include/functions_metaconsole.php:1311 +#: ../../enterprise/include/functions_metaconsole.php:1344 +#: ../../enterprise/include/functions_metaconsole.php:1377 +#: ../../enterprise/include/functions_metaconsole.php:1410 +#: ../../enterprise/include/functions_metaconsole.php:1443 +#: ../../enterprise/include/functions_metaconsole.php:1474 +#: ../../enterprise/include/functions_metaconsole.php:1507 +#: ../../godmode/agentes/module_manager_editor_web.php:172 +msgid "Check" +msgstr "" + +#: ../../enterprise/meta/include/functions_wizard_meta.php:245 +#: ../../enterprise/meta/include/functions_wizard_meta.php:530 +#: ../../enterprise/meta/include/functions_wizard_meta.php:602 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1150 +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:48 +#: ../../enterprise/include/functions_reporting_csv.php:992 +#: ../../enterprise/include/class/Aws.cloud.php:345 +#: ../../godmode/alerts/configure_alert_template.php:229 +#: ../../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:1699 ../../include/functions_reports.php:771 +#: ../../include/functions_reporting.php:9585 +msgid "General" +msgstr "" + +#: ../../enterprise/meta/include/functions_wizard_meta.php:306 +#: ../../godmode/modules/manage_network_templates_form.php:341 +#: ../../include/class/ModuleTemplates.class.php:804 +msgid "Components" +msgstr "" + +#: ../../enterprise/meta/include/functions_wizard_meta.php:308 +#: ../../enterprise/include/functions_reporting_csv.php:2334 +msgid "Agent modules" +msgstr "" + +#: ../../enterprise/meta/include/functions_wizard_meta.php:361 +msgid "Add selected modules to agent" +msgstr "" + +#: ../../enterprise/meta/include/functions_wizard_meta.php:399 +msgid "Undo changes" +msgstr "" + +#: ../../enterprise/meta/include/functions_wizard_meta.php:492 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:753 +#: ../../godmode/agentes/module_manager_editor_wmi.php:59 +#: ../../godmode/agentes/module_manager_editor_network.php:94 +#: ../../godmode/massive/massive_edit_modules.php:817 +msgid "Auto" +msgstr "" + +#: ../../enterprise/meta/include/functions_wizard_meta.php:493 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:754 +#: ../../godmode/agentes/module_manager_editor_wmi.php:60 +#: ../../godmode/agentes/module_manager_editor_network.php:95 +#: ../../godmode/massive/massive_edit_modules.php:818 +msgid "Force primary key" +msgstr "" + +#: ../../enterprise/meta/include/functions_wizard_meta.php:516 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1470 +#: ../../enterprise/meta/include/functions_events_meta.php:70 +#: ../../enterprise/meta/include/functions_meta.php:1165 +#: ../../enterprise/meta/include/functions_meta.php:1219 +#: ../../enterprise/meta/include/functions_meta.php:1273 +#: ../../enterprise/meta/general/login_page.php:125 +#: ../../enterprise/meta/general/login_page.php:167 +#: ../../enterprise/extensions/disabled/check_acls.php:47 +#: ../../enterprise/extensions/disabled/check_acls.php:132 +#: ../../enterprise/godmode/setup/setup_auth.php:1039 +#: ../../enterprise/godmode/setup/setup_auth.php:1071 +#: ../../enterprise/godmode/servers/manage_export_form.php:113 +#: ../../enterprise/include/functions_tasklist.php:152 +#: ../../enterprise/include/class/DB2.app.php:501 +#: ../../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 +#: ../../godmode/update_manager/update_manager.history.php:43 +#: ../../godmode/setup/setup_ehorus.php:80 +#: ../../godmode/setup/setup_integria.php:283 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3444 +#: ../../godmode/events/custom_events.php:99 +#: ../../mobile/include/user.class.php:396 +#: ../../mobile/operation/tactical.php:349 +#: ../../include/functions_reporting_html.php:5769 +#: ../../include/functions.php:3053 ../../include/functions_cron.php:463 +#: ../../include/functions_config.php:682 +#: ../../include/functions_config.php:702 +#: ../../include/class/CredentialStore.class.php:805 +#: ../../include/class/CredentialStore.class.php:1134 +#: ../../include/class/AuditLog.class.php:108 +#: ../../include/class/AuditLog.class.php:211 +#: ../../include/functions_events.php:202 +#: ../../include/functions_events.php:253 ../../operation/search_users.php:71 +#: ../../operation/users/user_edit.php:696 +#: ../../operation/users/user_edit.php:742 +#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:118 +#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:249 +#: ../../general/logon_ok.php:240 ../../general/login_page.php:230 +#: ../../general/login_page.php:272 +msgid "User" +msgstr "" + +#: ../../enterprise/meta/include/functions_wizard_meta.php:520 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1474 +#: ../../enterprise/meta/include/functions_meta.php:1177 +#: ../../enterprise/meta/include/functions_meta.php:1231 +#: ../../enterprise/meta/include/functions_meta.php:1285 +#: ../../enterprise/meta/general/login_page.php:139 +#: ../../enterprise/meta/general/login_page.php:181 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:851 +#: ../../enterprise/godmode/setup/setup_module_library.php:52 +#: ../../enterprise/godmode/setup/setup_auth.php:1045 +#: ../../enterprise/godmode/setup/setup_auth.php:1077 +#: ../../enterprise/godmode/servers/credential_boxes_satellite.php:250 +#: ../../enterprise/godmode/servers/manage_credential_boxes.php:59 +#: ../../enterprise/godmode/servers/manage_export_form.php:117 +#: ../../enterprise/include/ajax/servers.ajax.php:101 +#: ../../enterprise/include/ajax/servers.ajax.php:159 +#: ../../enterprise/include/ajax/servers.ajax.php:285 +#: ../../enterprise/include/functions_ui.php:104 +#: ../../enterprise/include/functions_setup.php:55 +#: ../../enterprise/include/functions_setup.php:113 +#: ../../enterprise/include/class/VMware.app.php:732 +#: ../../enterprise/include/class/DB2.app.php:513 +#: ../../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 +#: ../../godmode/modules/manage_network_components_form_wmi.php:49 +#: ../../godmode/users/configure_user.php:931 +#: ../../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:686 +#: ../../include/functions_config.php:706 +#: ../../include/class/CredentialStore.class.php:958 +#: ../../include/class/CredentialStore.class.php:995 +#: ../../include/class/CredentialStore.class.php:1135 +#: ../../include/class/CredentialStore.class.php:1158 +#: ../../include/class/AgentWizard.class.php:680 +#: ../../operation/users/user_edit.php:702 +#: ../../operation/users/user_edit.php:748 ../../general/login_page.php:244 +#: ../../general/login_page.php:285 +msgid "Password" +msgstr "" + +#: ../../enterprise/meta/include/functions_wizard_meta.php:590 +msgid "Latency" +msgstr "" + +#: ../../enterprise/meta/include/functions_wizard_meta.php:591 +msgid "Response" +msgstr "" + +#: ../../enterprise/meta/include/functions_wizard_meta.php:593 +#: ../../godmode/agentes/module_manager_editor_web.php:199 +msgid "Check type" +msgstr "" + +#: ../../enterprise/meta/include/functions_wizard_meta.php:610 +#: ../../enterprise/meta/include/functions_wizard_meta.php:667 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:1066 +#: ../../enterprise/include/functions_enterprise.php:460 +#: ../../godmode/agentes/module_manager_editor_web.php:93 +#: ../../godmode/massive/massive_edit_modules.php:1141 +msgid "Web checks" +msgstr "" + +#: ../../enterprise/meta/include/functions_wizard_meta.php:646 +msgid "String to check" +msgstr "" + +#: ../../enterprise/meta/include/functions_wizard_meta.php:652 +msgid "Add check" +msgstr "" + +#: ../../enterprise/meta/include/functions_wizard_meta.php:661 +msgid "Delete check" +msgstr "" + +#: ../../enterprise/meta/include/functions_wizard_meta.php:674 +#: ../../enterprise/godmode/modules/configure_local_component.php:494 +#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:180 +#: ../../godmode/agentes/module_manager_editor_web.php:164 +msgid "Load basic" +msgstr "" + +#: ../../enterprise/meta/include/functions_wizard_meta.php:680 +#: ../../godmode/agentes/module_manager_editor_web.php:170 +msgid "Load a basic structure on Web Checks" +msgstr "" + +#: ../../enterprise/meta/include/functions_wizard_meta.php:688 +#: ../../godmode/agentes/module_manager_editor_web.php:178 +msgid "Check the correct structure of the WebCheck" +msgstr "" + +#: ../../enterprise/meta/include/functions_wizard_meta.php:695 +#: ../../godmode/agentes/module_manager_editor_web.php:253 +msgid "First line must be \"task_begin\"" +msgstr "" + +#: ../../enterprise/meta/include/functions_wizard_meta.php:696 +#: ../../godmode/agentes/module_manager_editor_web.php:254 +msgid "Webchecks configuration is empty" +msgstr "" + +#: ../../enterprise/meta/include/functions_wizard_meta.php:697 +#: ../../enterprise/meta/include/functions_wizard_meta.php:698 +#: ../../godmode/agentes/module_manager_editor_web.php:255 +#: ../../godmode/agentes/module_manager_editor_web.php:256 +msgid "Last line must be \"task_end\"" +msgstr "" + +#: ../../enterprise/meta/include/functions_wizard_meta.php:699 +#: ../../enterprise/godmode/modules/configure_local_component.php:513 +#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:203 +#: ../../godmode/agentes/module_manager_editor_web.php:257 +msgid "There is a line with a unknown token 'token_fail'." +msgstr "" + +#: ../../enterprise/meta/include/functions_wizard_meta.php:700 +#: ../../godmode/agentes/module_manager_editor_web.php:259 +msgid "Web checks are built correctly" +msgstr "" + +#: ../../enterprise/meta/include/functions_wizard_meta.php:918 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1035 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1202 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1520 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1605 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1742 +#: ../../enterprise/meta/agentsearch.php:137 +#: ../../enterprise/godmode/modules/configure_local_component.php:289 +#: ../../enterprise/godmode/agentes/inventory_manager.php:223 +#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:421 +#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:463 +#: ../../enterprise/godmode/policies/policy_inventory_modules.php:304 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:690 +#: ../../enterprise/godmode/servers/manage_export.php:139 +#: ../../enterprise/godmode/servers/manage_export_form.php:95 +#: ../../enterprise/include/functions_ui.php:84 +#: ../../enterprise/include/class/Azure.cloud.php:847 +#: ../../enterprise/include/class/VMware.app.php:667 +#: ../../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: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 +#: ../../enterprise/include/class/MicrosoftSQLServer.app.php:537 +#: ../../enterprise/include/functions_ipam.php:1354 +#: ../../enterprise/operation/agentes/tag_view.php:603 +#: ../../enterprise/operation/agentes/tag_view.php:681 +#: ../../enterprise/tools/ipam/ipam_list.php:617 +#: ../../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/agent_manager.php:369 +#: ../../godmode/agentes/module_manager_editor_common.php:617 +#: ../../godmode/agentes/module_manager_editor_common.php:642 +#: ../../godmode/agentes/module_manager.php:856 +#: ../../godmode/massive/massive_edit_agents.php:705 +#: ../../godmode/massive/massive_edit_modules.php:754 +#: ../../godmode/wizards/HostDevices.class.php:798 +#: ../../godmode/wizards/DiscoveryTaskList.class.php:594 +#: ../../mobile/operation/modules.php:657 +#: ../../mobile/operation/modules.php:659 +#: ../../mobile/operation/modules.php:851 +#: ../../include/functions_reporting_html.php:3487 +#: ../../include/ajax/events.php:2315 ../../include/functions_treeview.php:84 +#: ../../include/functions_treeview.php:646 +#: ../../include/class/CustomNetScan.class.php:520 +#: ../../include/lib/Dashboard/Widgets/sla_percent.php:331 +#: ../../include/lib/Dashboard/Widgets/BlockHistogram.php:296 +#: ../../include/lib/Dashboard/Widgets/graph_module_histogram.php:321 +#: ../../include/lib/Dashboard/Widgets/custom_graph.php:350 +#: ../../include/lib/Dashboard/Widgets/single_graph.php:305 +#: ../../include/lib/Dashboard/Widgets/top_n.php:236 +#: ../../operation/search_agents.php:45 ../../operation/search_agents.php:51 +#: ../../operation/agentes/estado_agente.php:751 +#: ../../operation/agentes/status_monitor.php:1328 +#: ../../operation/agentes/estado_generalagente.php:357 +#: ../../operation/netflow/nf_live_view.php:270 +#: ../../operation/search_modules.php:35 +#: ../../operation/events/sound_events.php:219 +msgid "Interval" +msgstr "" + +#: ../../enterprise/meta/include/functions_wizard_meta.php:924 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1041 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1222 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1525 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1610 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1747 +#: ../../enterprise/godmode/modules/configure_local_component.php:468 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:868 +#: ../../enterprise/include/functions_reporting_csv.php:2741 +#: ../../godmode/modules/manage_network_components_form_common.php:312 +#: ../../godmode/agentes/module_manager_editor_common.php:582 +#: ../../godmode/massive/massive_edit_modules.php:925 +#: ../../include/functions_reporting_html.php:3488 +msgid "Unit" +msgstr "" + +#: ../../enterprise/meta/include/functions_wizard_meta.php:956 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1047 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1259 +msgid "Various" +msgstr "" + +#: ../../enterprise/meta/include/functions_wizard_meta.php:964 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1481 +#: ../../include/class/ExternalTools.class.php:570 +msgid "SNMP Community" +msgstr "" + +#: ../../enterprise/meta/include/functions_wizard_meta.php:971 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1055 +#: ../../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:1470 +msgid "Credentials" +msgstr "" + +#: ../../enterprise/meta/include/functions_wizard_meta.php:978 +#: ../../enterprise/meta/include/functions_wizard_meta.php:987 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1063 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1072 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1266 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1275 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1503 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1512 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1588 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1597 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1708 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1717 +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:281 +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:393 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:766 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1813 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2452 +#: ../../enterprise/include/functions_reporting_csv.php:1030 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2250 +#: ../../godmode/alerts/alert_view.php:266 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1400 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2510 +#: ../../include/functions_reporting_html.php:4786 +#: ../../include/functions_ui.php:2610 +#: ../../include/functions_reporting.php:1526 +msgid "Min" +msgstr "" + +#: ../../enterprise/meta/include/functions_wizard_meta.php:980 +#: ../../enterprise/meta/include/functions_wizard_meta.php:989 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1065 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1074 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1268 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1277 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1505 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1514 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1590 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1599 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1710 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1719 +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:293 +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:386 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:774 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1811 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2445 +#: ../../enterprise/include/functions_reporting_csv.php:1030 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2250 +#: ../../godmode/alerts/alert_view.php:266 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1402 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2503 +#: ../../include/functions_reporting_html.php:4785 +#: ../../include/functions_ui.php:2610 +#: ../../include/functions_reporting.php:1522 +msgid "Max" +msgstr "" + +#: ../../enterprise/meta/include/functions_wizard_meta.php:982 +#: ../../enterprise/meta/include/functions_wizard_meta.php:991 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1067 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1076 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1270 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1279 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1507 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1516 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1592 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1601 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1712 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1721 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1737 +#: ../../enterprise/godmode/modules/configure_local_component.php:338 +#: ../../enterprise/godmode/modules/configure_local_component.php:381 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:547 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:638 +#: ../../godmode/modules/manage_network_components_form_common.php:192 +#: ../../godmode/modules/manage_network_components_form_common.php:233 +#: ../../godmode/modules/manage_network_components_form_wizard.php:396 +#: ../../godmode/modules/manage_network_components_form_wizard.php:438 +#: ../../godmode/agentes/module_manager_editor_common.php:459 +#: ../../godmode/agentes/module_manager_editor_common.php:520 +#: ../../godmode/massive/massive_edit_modules.php:610 +#: ../../godmode/massive/massive_edit_modules.php:701 +msgid "Inverse interval" +msgstr "" + +#: ../../enterprise/meta/include/functions_wizard_meta.php:996 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1081 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1314 +#: ../../include/ajax/module.php:981 +msgid "Thresholds" +msgstr "" + +#: ../../enterprise/meta/include/functions_wizard_meta.php:1087 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1619 +#: ../../godmode/agentes/module_manager_editor_web.php:224 +msgid "Proxy URL" +msgstr "" + +#: ../../enterprise/meta/include/functions_wizard_meta.php:1092 +msgid "Web configuration" +msgstr "" + +#: ../../enterprise/meta/include/functions_wizard_meta.php:1286 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1299 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1728 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1735 +msgid "Str: " +msgstr "" + +#: ../../enterprise/meta/include/functions_wizard_meta.php:1295 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1308 +msgid " Inverse interval " +msgstr "" + +#: ../../enterprise/meta/include/functions_wizard_meta.php:1368 +msgid "Alerts in module" +msgstr "" + +#: ../../enterprise/meta/include/functions_wizard_meta.php:1376 +#: ../../include/functions_reporting_html.php:5131 +msgid "Alert description" +msgstr "" + +#: ../../enterprise/meta/include/functions_wizard_meta.php:1615 +msgid "Checks" +msgstr "" + +#: ../../enterprise/meta/include/functions_wizard_meta.php:1826 +msgid "Deleted modules" +msgstr "" + +#: ../../enterprise/meta/include/functions_wizard_meta.php:2014 +#: ../../enterprise/meta/include/functions_wizard_meta.php:2114 +#: ../../enterprise/meta/include/functions_wizard_meta.php:2669 +#: ../../enterprise/meta/include/functions_wizard_meta.php:2788 +#: ../../enterprise/meta/include/functions_wizard_meta.php:2879 +#: ../../enterprise/meta/include/functions_wizard_meta.php:3074 +msgid "Another module already exists with the same name" +msgstr "" + +#: ../../enterprise/meta/include/functions_wizard_meta.php:2026 +#: ../../enterprise/meta/include/functions_wizard_meta.php:2121 +#: ../../enterprise/meta/include/functions_wizard_meta.php:2681 +#, php-format +msgid "Error adding module %s" +msgstr "" + +#: ../../enterprise/meta/include/functions_wizard_meta.php:2035 +#: ../../enterprise/meta/include/functions_wizard_meta.php:2130 +msgid "" +"There was an error creating the alerts, the operation has been cancelled" +msgstr "" + +#: ../../enterprise/meta/include/functions_wizard_meta.php:2064 +#: ../../enterprise/meta/include/functions_wizard_meta.php:2159 +#: ../../enterprise/godmode/policies/policy_modules.php:919 +msgid "Successfully added module." +msgstr "" + +#: ../../enterprise/meta/include/functions_wizard_meta.php:2219 +#, php-format +msgid "Could not create agent %s" +msgstr "" + +#: ../../enterprise/meta/include/functions_wizard_meta.php:2232 +msgid "Agent successfully added" +msgstr "" + +#: ../../enterprise/meta/include/functions_wizard_meta.php:2253 +#: ../../enterprise/meta/include/functions_wizard_meta.php:2371 +#, php-format +msgid "%s Modules created" +msgstr "" + +#: ../../enterprise/meta/include/functions_wizard_meta.php:2329 +#, php-format +msgid "Could not update agent %s" +msgstr "" + +#: ../../enterprise/meta/include/functions_wizard_meta.php:2338 +#: ../../enterprise/include/class/AgentRepository.class.php:522 +msgid "Agent successfully updated" +msgstr "" + +#: ../../enterprise/meta/include/functions_wizard_meta.php:2377 +#, php-format +msgid "%s Modules deleted" +msgstr "" + +#: ../../enterprise/meta/include/functions_wizard_meta.php:2693 +msgid "" +"There was an error creating the alerts, the operation has been cancelled ." +msgstr "" + +#: ../../enterprise/meta/include/functions_wizard_meta.php:2723 +msgid "Module successfully added." +msgstr "" + +#: ../../enterprise/meta/include/functions_wizard_meta.php:2795 +#: ../../enterprise/meta/include/functions_wizard_meta.php:2886 +#: ../../enterprise/meta/include/functions_wizard_meta.php:3081 +#, php-format +msgid "Error updating module %s" +msgstr "" + +#: ../../enterprise/meta/include/functions_wizard_meta.php:2817 +#: ../../enterprise/meta/include/functions_wizard_meta.php:2908 +#: ../../enterprise/meta/include/functions_wizard_meta.php:3103 +msgid "" +"There was an error updating the alerts, the operation has been cancelled" +msgstr "" + +#: ../../enterprise/meta/include/functions_wizard_meta.php:2838 +#: ../../enterprise/meta/include/functions_wizard_meta.php:2929 +#: ../../enterprise/meta/include/functions_wizard_meta.php:3124 +msgid "Successfully updated module." +msgstr "" + +#: ../../enterprise/meta/include/functions_wizard_meta.php:3504 +msgid "Manage agent modules" +msgstr "" + +#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:92 +#: ../../godmode/alerts/alert_templates.php:61 +msgid "Everyday" +msgstr "" + +#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:104 +#: ../../enterprise/include/ajax/ipam.ajax.php:521 +#: ../../enterprise/tools/ipam/ipam_editor.php:327 +#: ../../godmode/alerts/alert_templates.php:73 +#: ../../include/functions_config.php:1562 +msgid "Days" +msgstr "" + +#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:104 +#: ../../godmode/alerts/alert_templates.php:73 +msgid "Every" +msgstr "" + +#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:115 +#: ../../godmode/alerts/alert_templates.php:84 +msgid "and" +msgstr "" + +#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:122 +#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:313 +#: ../../enterprise/godmode/alerts/alert_inventory_builder.php:230 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2245 +#: ../../godmode/snmpconsole/snmp_alert.php:1083 +#: ../../godmode/alerts/alert_templates.php:91 +#: ../../godmode/alerts/configure_alert_template.php:676 +#: ../../godmode/alerts/alert_view.php:262 +msgid "Time threshold" +msgstr "" + +#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:127 +#: ../../enterprise/godmode/policies/policy_alerts.php:436 +#: ../../enterprise/godmode/policies/policy_external_alerts.php:467 +#: ../../enterprise/include/functions_reporting_pdf.php:1794 +#: ../../enterprise/include/functions_reporting_pdf.php:1867 +#: ../../enterprise/include/functions_reporting_pdf.php:1982 +#: ../../enterprise/include/functions_reporting_csv.php:715 +#: ../../enterprise/include/functions_reporting_csv.php:951 +#: ../../enterprise/include/functions_reporting_csv.php:1325 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2375 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2379 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3379 +#: ../../godmode/agentes/planned_downtime.list.php:293 +#: ../../godmode/alerts/alert_list.list.php:659 +#: ../../godmode/alerts/alert_list.list.php:662 +#: ../../godmode/alerts/alert_templates.php:96 +#: ../../include/functions_reporting_html.php:147 +#: ../../include/functions_reporting_html.php:2990 +#: ../../include/functions_reporting_html.php:3795 +#: ../../include/rest-api/index.php:359 +#: ../../include/rest-api/models/VisualConsole/Items/ColorCloud.php:449 +#: ../../include/rest-api/models/VisualConsole/Items/ColorCloud.php:510 +#: ../../operation/agentes/gis_view.php:220 +#: ../../operation/reporting/reporting_viewer.php:304 +msgid "From" +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:467 +#: ../../enterprise/godmode/policies/policy_external_alerts.php:602 +#: ../../enterprise/include/functions_reporting_pdf.php:1800 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1017 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2375 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2379 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2536 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3381 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3510 +#: ../../godmode/massive/massive_add_action_alerts.php:254 +#: ../../godmode/alerts/alert_list.list.php:659 +#: ../../godmode/alerts/alert_list.list.php:779 +#: ../../godmode/alerts/alert_templates.php:98 +#: ../../godmode/alerts/alert_list.builder.php:129 +#: ../../include/functions_reporting_html.php:148 +#: ../../include/functions_reporting_html.php:2995 +#: ../../include/ajax/alert_list.ajax.php:527 +#: ../../include/class/AgentsAlerts.class.php:316 +#: ../../include/functions_reporting.php:14211 +#: ../../operation/reporting/reporting_viewer.php:308 +msgid "to" +msgstr "" + +#: ../../enterprise/meta/include/ajax/wizard.ajax.php:56 +msgid "Agent succesfully deleted" +msgstr "" + +#: ../../enterprise/meta/include/ajax/wizard.ajax.php:58 +msgid "Could not delete agent" +msgstr "" + +#: ../../enterprise/meta/include/functions_events_meta.php:58 +#: ../../include/functions_events.php:199 +msgid "Event id" +msgstr "" + +#: ../../enterprise/meta/include/functions_events_meta.php:62 +#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:419 +#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:479 +#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:526 +#: ../../include/functions_reporting_html.php:1310 +#: ../../include/functions_reporting_html.php:1318 +#: ../../include/functions_reporting_html.php:5063 +#: ../../include/functions_events.php:200 +#: ../../include/functions_events.php:2363 +#: ../../include/functions_events.php:4521 +msgid "Event name" +msgstr "" + +#: ../../enterprise/meta/include/functions_events_meta.php:66 +#: ../../enterprise/include/functions_reporting_csv.php:871 +#: ../../enterprise/include/functions_ipam.php:2039 +#: ../../godmode/agentes/modificar_agente.php:647 +#: ../../godmode/agentes/agent_manager.php:213 +#: ../../mobile/operation/modules.php:597 +#: ../../mobile/operation/modules.php:849 +#: ../../include/functions_reporting_html.php:3431 +#: ../../include/functions_treeview.php:617 +#: ../../include/functions_events.php:201 +#: ../../include/functions_events.php:247 +#: ../../include/functions_events.php:2368 +#: ../../operation/events/events.php:2436 +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:802 +#: ../../enterprise/include/functions_reporting_csv.php:875 +#: ../../enterprise/include/functions_reporting_csv.php:1458 +#: ../../enterprise/include/functions_reporting_csv.php:2281 +#: ../../enterprise/include/functions_reporting_csv.php:2317 +#: ../../enterprise/include/functions_reporting_csv.php:2629 +#: ../../enterprise/include/class/Omnishell.class.php:400 +#: ../../enterprise/include/class/LogSource.class.php:628 +#: ../../enterprise/operation/agentes/tag_view.php:686 +#: ../../godmode/update_manager/update_manager.history.php:44 +#: ../../godmode/agentes/status_monitor_custom_fields.php:117 +#: ../../godmode/agentes/status_monitor_custom_fields.php:153 +#: ../../godmode/setup/news.php:249 ../../godmode/events/custom_events.php:102 +#: ../../mobile/operation/modules.php:661 +#: ../../mobile/operation/modules.php:852 ../../mobile/operation/events.php:804 +#: ../../include/functions_reporting_html.php:1053 +#: ../../include/functions_reporting_html.php:1061 +#: ../../include/functions_reporting_html.php:1314 +#: ../../include/functions_reporting_html.php:1321 +#: ../../include/functions_reporting_html.php:2429 +#: ../../include/functions_reporting_html.php:5065 +#: ../../include/ajax/events_extended.php:90 +#: ../../include/ajax/custom_fields.php:415 +#: ../../include/functions_netflow.php:278 +#: ../../include/functions_events.php:205 +#: ../../include/functions_events.php:262 +#: ../../include/functions_events.php:2373 +#: ../../include/functions_events.php:4534 +#: ../../operation/agentes/exportdata.csv.php:74 +#: ../../operation/agentes/exportdata.php:83 +#: ../../operation/agentes/status_monitor.php:1364 +#: ../../operation/agentes/estado_generalagente.php:644 +#: ../../operation/agentes/exportdata.excel.php:74 +#: ../../operation/messages/message_list.php:200 +#: ../../operation/snmpconsole/snmp_view.php:881 +#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:116 +#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:247 +#: ../../operation/search_modules.php:39 +msgid "Timestamp" +msgstr "" + +#: ../../enterprise/meta/include/functions_events_meta.php:86 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:658 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2854 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1382 +#: ../../enterprise/include/lib/AlertCorrelation.class.php:1123 +#: ../../enterprise/include/functions_events.php:60 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2960 +#: ../../godmode/events/event_filter.php:138 +#: ../../godmode/events/event_edit_filter.php:322 +#: ../../include/lib/Dashboard/Widgets/events_list.php:332 +#: ../../include/functions_events.php:206 +#: ../../operation/events/events.php:1593 +msgid "Event type" +msgstr "" + +#: ../../enterprise/meta/include/functions_events_meta.php:90 +#: ../../enterprise/godmode/policies/policy_external_alerts.php:338 +#: ../../enterprise/include/functions_reporting_csv.php:873 +#: ../../enterprise/operation/agentes/tag_view.php:205 +#: ../../godmode/modules/manage_network_templates_form.php:231 +#: ../../godmode/modules/manage_network_components.php:748 +#: ../../godmode/modules/manage_network_components_form_wizard.php:272 +#: ../../godmode/agentes/agent_template.php:235 +#: ../../godmode/agentes/status_monitor_custom_fields.php:85 +#: ../../godmode/agentes/status_monitor_custom_fields.php:145 +#: ../../godmode/alerts/alert_list.list.php:99 +#: ../../mobile/operation/modules.php:594 +#: ../../mobile/operation/modules.php:848 +#: ../../include/ajax/heatmap.ajax.php:225 +#: ../../include/ajax/heatmap.ajax.php:264 ../../include/ajax/module.php:978 +#: ../../include/ajax/custom_fields.php:411 +#: ../../operation/agentes/status_monitor.php:536 +#: ../../operation/agentes/status_monitor.php:1318 +msgid "Module name" +msgstr "" + +#: ../../enterprise/meta/include/functions_events_meta.php:94 +#: ../../enterprise/godmode/policies/policy_external_alerts.php:382 +#: ../../enterprise/godmode/alerts/alert_inventory_list.php:362 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:4351 +#: ../../godmode/agentes/configurar_agente.php:734 +#: ../../godmode/alerts/configure_alert_template.php:1552 +#: ../../godmode/events/custom_events.php:105 ../../include/functions.php:4101 +#: ../../include/functions_snmp.php:324 ../../include/functions_events.php:208 +#: ../../include/functions_events.php:271 +#: ../../operation/agentes/estado_monitores.php:522 +#: ../../operation/snmpconsole/snmp_view.php:543 +#: ../../operation/snmpconsole/snmp_view.php:886 +#: ../../operation/snmpconsole/snmp_view.php:1246 +msgid "Alert" +msgstr "" + +#: ../../enterprise/meta/include/functions_events_meta.php:98 +#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor_form.php:72 +#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:384 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:632 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2827 +#: ../../enterprise/include/functions_reporting.php:2026 +#: ../../enterprise/include/functions_events.php:70 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2933 +#: ../../godmode/events/event_filter.php:140 +#: ../../godmode/events/event_edit_filter.php:337 +#: ../../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 +#: ../../mobile/operation/events.php:983 +#: ../../include/functions_reporting_html.php:1051 +#: ../../include/functions_reporting_html.php:1059 +#: ../../include/functions_reporting_html.php:1312 +#: ../../include/functions_reporting_html.php:1320 +#: ../../include/functions_reporting_html.php:2427 +#: ../../include/functions_snmp.php:335 +#: ../../include/lib/Dashboard/Widgets/events_list.php:404 +#: ../../include/functions_events.php:209 +#: ../../include/functions_events.php:274 +#: ../../include/functions_events.php:2355 +#: ../../include/functions_events.php:4587 +#: ../../operation/snmpconsole/snmp_view.php:572 +#: ../../operation/events/events.php:1673 +msgid "Severity" +msgstr "" + +#: ../../enterprise/meta/include/functions_events_meta.php:102 +#: ../../godmode/events/event_edit_filter.php:638 +#: ../../godmode/events/custom_events.php:107 +#: ../../godmode/wizards/HostDevices.class.php:958 +#: ../../include/class/CustomNetScan.class.php:468 +#: ../../include/functions_events.php:210 +#: ../../include/functions_events.php:277 +#: ../../include/functions_events.php:3340 +#: ../../operation/events/events.php:1742 +msgid "Comment" +msgstr "" + +#: ../../enterprise/meta/include/functions_events_meta.php:106 +#: ../../enterprise/godmode/modules/configure_local_component.php:550 +#: ../../enterprise/godmode/massive/massive_add_modules_policy.php:163 +#: ../../enterprise/godmode/massive/massive_tags_edit_policy.php:120 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:971 +#: ../../enterprise/godmode/setup/setup_auth.php:231 +#: ../../enterprise/godmode/setup/setup_auth.php:510 +#: ../../enterprise/godmode/setup/setup_auth.php:1307 +#: ../../enterprise/operation/agentes/tag_view.php:223 +#: ../../enterprise/operation/agentes/tag_view.php:225 +#: ../../enterprise/operation/agentes/tag_view.php:678 +#: ../../godmode/modules/manage_network_components_form_common.php:351 +#: ../../godmode/massive/massive_copy_modules.php:172 +#: ../../godmode/massive/massive_delete_modules.php:401 +#: ../../godmode/massive/massive_delete_modules.php:515 +#: ../../godmode/massive/massive_edit_modules.php:405 +#: ../../godmode/massive/massive_edit_modules.php:491 +#: ../../godmode/massive/massive_edit_modules.php:1047 +#: ../../godmode/events/custom_events.php:108 ../../godmode/tag/edit_tag.php:66 +#: ../../mobile/operation/events.php:845 +#: ../../include/functions_reporting_html.php:3490 +#: ../../include/functions_treeview.php:168 +#: ../../include/functions_profile.php:215 +#: ../../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:4674 ../../operation/tree.php:66 +#: ../../operation/users/user_edit.php:815 +#: ../../operation/agentes/status_monitor.php:550 +#: ../../operation/agentes/group_view.php:222 +#: ../../operation/agentes/alerts_status.functions.php:108 +#: ../../general/first_task/tags.php:22 +msgid "Tags" +msgstr "" + +#: ../../enterprise/meta/include/functions_events_meta.php:114 +#: ../../include/functions_events.php:213 +#: ../../include/functions_events.php:4246 +msgid "Extra id" +msgstr "" + +#: ../../enterprise/meta/include/functions_events_meta.php:118 +#: ../../godmode/setup/setup_integria.php:397 +#: ../../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:4546 +#: ../../operation/incidents/integriaims_export_csv.php:89 +#: ../../operation/incidents/configure_integriaims_incident.php:312 +#: ../../operation/incidents/list_integriaims_incidents.php:342 +#: ../../operation/incidents/list_integriaims_incidents.php:522 +msgid "Owner" +msgstr "" + +#: ../../enterprise/meta/include/functions_events_meta.php:122 +#: ../../godmode/events/custom_events.php:112 +#: ../../include/functions_events.php:215 +#: ../../include/functions_events.php:292 +msgid "ACK Timestamp" +msgstr "" + +#: ../../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:4234 +#: ../../operation/events/events.php:2988 +msgid "Instructions" +msgstr "" + +#: ../../enterprise/meta/include/functions_events_meta.php:130 +#: ../../enterprise/godmode/setup/setup_metaconsole.php:198 +#: ../../enterprise/godmode/setup/setup_metaconsole.php:273 +#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:69 +#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:252 +#: ../../godmode/wizards/DiscoveryTaskList.class.php:591 +#: ../../include/functions_events.php:217 +msgid "Server name" +msgstr "" + +#: ../../enterprise/meta/include/functions_events_meta.php:138 +#: ../../include/functions_reporting_html.php:4994 +#: ../../include/lib/Dashboard/Widgets/module_status.php:173 +#: ../../include/lib/Dashboard/Widgets/module_status.php:538 +#: ../../include/functions_events.php:219 ../../operation/tree.php:285 +msgid "Module status" +msgstr "" + +#: ../../enterprise/meta/include/process_reset_pass.php:28 +#: ../../enterprise/meta/include/reset_pass.php:28 +#: ../../enterprise/meta/general/login_page.php:45 +#: ../../general/login_page.php:79 +msgid "Splash login" +msgstr "" + +#: ../../enterprise/meta/include/process_reset_pass.php:41 +#: ../../enterprise/meta/include/reset_pass.php:41 +#: ../../enterprise/meta/general/login_page.php:58 +msgid "Go to Pandora FMS Support" +msgstr "" + +#: ../../enterprise/meta/include/process_reset_pass.php:43 +#: ../../enterprise/meta/include/process_reset_pass.php:54 +#: ../../enterprise/meta/include/reset_pass.php:43 +#: ../../enterprise/meta/include/reset_pass.php:54 +#: ../../enterprise/meta/general/login_page.php:60 +#: ../../enterprise/meta/general/login_page.php:71 +msgid "Go to " +msgstr "" + +#: ../../enterprise/meta/include/process_reset_pass.php:47 +#: ../../enterprise/meta/include/reset_pass.php:47 +#: ../../enterprise/meta/general/login_page.php:64 +#: ../../enterprise/include/process_reset_pass.php:58 +#: ../../enterprise/include/reset_pass.php:53 +#: ../../general/login_help_dialog.php:83 +#: ../../general/login_help_dialog.php:88 ../../general/login_page.php:148 +#: ../../general/login_page.php:151 +msgid "Support" +msgstr "" + +#: ../../enterprise/meta/include/process_reset_pass.php:52 +#: ../../enterprise/meta/include/reset_pass.php:52 +#: ../../enterprise/meta/general/login_page.php:69 +msgid "Go to Pandora FMS Wiki" +msgstr "" + +#: ../../enterprise/meta/include/process_reset_pass.php:58 +#: ../../enterprise/meta/include/reset_pass.php:58 +#: ../../enterprise/meta/general/login_page.php:75 +#: ../../enterprise/godmode/modules/configure_local_component.php:645 +#: ../../godmode/servers/plugin.php:526 ../../include/functions_ui.php:1452 +#: ../../include/class/ManageNetScanScripts.class.php:690 +msgid "Help" +msgstr "" + +#: ../../enterprise/meta/include/process_reset_pass.php:96 +#: ../../enterprise/include/process_reset_pass.php:103 +#: ../../operation/users/user_edit.php:298 +msgid "New Password" +msgstr "" + +#: ../../enterprise/meta/include/process_reset_pass.php:114 +#: ../../enterprise/include/process_reset_pass.php:118 +msgid "Repeat password" +msgstr "" + +#: ../../enterprise/meta/include/process_reset_pass.php:120 +#: ../../enterprise/include/process_reset_pass.php:124 +msgid "Change password" +msgstr "" + +#: ../../enterprise/meta/include/process_reset_pass.php:123 +#: ../../enterprise/meta/index.php:626 +#: ../../enterprise/include/process_reset_pass.php:127 ../../index.php:803 +msgid "Passwords must be the same" +msgstr "" + +#: ../../enterprise/meta/include/process_reset_pass.php:132 +#: ../../enterprise/meta/include/reset_pass.php:122 +#: ../../enterprise/include/process_reset_pass.php:136 +#: ../../enterprise/include/reset_pass.php:123 +msgid "Back to login" +msgstr "" + +#: ../../enterprise/meta/include/process_reset_pass.php:142 +#: ../../enterprise/meta/include/reset_pass.php:139 +#, php-format +msgid "%s NEXT GENERATION" +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:2444 +msgid "METACONSOLE" +msgstr "" + +#: ../../enterprise/meta/include/process_reset_pass.php:164 +#: ../../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 +msgid "Build" +msgstr "" + +#: ../../enterprise/meta/include/functions_agents_meta.php:478 +#: ../../enterprise/meta/include/functions_agents_meta.php:542 +#: ../../enterprise/meta/include/functions_agents_meta.php:577 +msgid "Agents movement" +msgstr "" + +#: ../../enterprise/meta/include/functions_agents_meta.php:489 +#: ../../enterprise/meta/include/functions_agents_meta.php:557 +msgid "Provisioning management" +msgstr "" + +#: ../../enterprise/meta/include/functions_agents_meta.php:500 +#: ../../enterprise/meta/include/functions_agents_meta.php:567 +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:328 +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:542 +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:800 +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.php:99 +msgid "Agent autoconfiguration" +msgstr "" + +#: ../../enterprise/meta/include/functions_agents_meta.php:511 +#: ../../enterprise/meta/include/functions_agents_meta.php:547 +#: ../../enterprise/meta/include/functions_agents_meta.php:552 +msgid "Group management" +msgstr "" + +#: ../../enterprise/meta/include/functions_agents_meta.php:522 +msgid "Tree group" +msgstr "" + +#: ../../enterprise/meta/include/functions_agents_meta.php:562 +msgid "Provisioning rules management" +msgstr "" + +#: ../../enterprise/meta/include/functions_agents_meta.php:572 +msgid "Colecctions" +msgstr "" + +#: ../../enterprise/meta/include/functions_agents_meta.php:605 +msgid "Agents Management" +msgstr "" + +#: ../../enterprise/meta/include/functions_agents_meta.php:614 +#: ../../enterprise/meta/include/functions_agents_meta.php:619 +#: ../../enterprise/extensions/disabled/check_acls.php:50 +#: ../../enterprise/extensions/disabled/check_acls.php:137 +#: ../../include/functions_menu.php:492 +msgid "Agents management" +msgstr "" + +#: ../../enterprise/meta/include/functions_meta.php:49 +msgid "No admin user" +msgstr "" + +#: ../../enterprise/meta/include/functions_meta.php:68 +#: ../../include/functions_config.php:405 +msgid "Activate Metaconsole" +msgstr "" + +#: ../../enterprise/meta/include/functions_meta.php:112 +msgid "Centralized management" +msgstr "" + +#: ../../enterprise/meta/include/functions_meta.php:120 +#: ../../include/functions_config.php:224 +msgid "Attachment store." +msgstr "" + +#: ../../enterprise/meta/include/functions_meta.php:198 +msgid "Netflow disable custom live view filters" +msgstr "" + +#: ../../enterprise/meta/include/functions_meta.php:262 +msgid "Customizable section" +msgstr "" + +#: ../../enterprise/meta/include/functions_meta.php:283 +msgid "Agent API" +msgstr "" + +#: ../../enterprise/meta/include/functions_meta.php:323 +msgid "Policy add max. agents" +msgstr "" + +#: ../../enterprise/meta/include/functions_meta.php:332 +msgid "Sync items warn detection" +msgstr "" + +#: ../../enterprise/meta/include/functions_meta.php:470 +msgid "IP ElasticSearch" +msgstr "" + +#: ../../enterprise/meta/include/functions_meta.php:480 +msgid "Port ElasticSearch" +msgstr "" + +#: ../../enterprise/meta/include/functions_meta.php:490 +#: ../../enterprise/godmode/setup/setup_log_collector.php:41 +#: ../../include/functions_config.php:1507 +msgid "Number of logs viewed" +msgstr "" + +#: ../../enterprise/meta/include/functions_meta.php:502 +#: ../../godmode/setup/setup_auth.php:440 +#: ../../include/functions_config.php:518 +#: ../../include/class/AgentWizard.class.php:839 +msgid "Authentication method" +msgstr "" + +#: ../../enterprise/meta/include/functions_meta.php:512 +#: ../../godmode/setup/setup_auth.php:56 ../../include/functions_config.php:642 +msgid "Fallback to local authentication" +msgstr "" + +#: ../../enterprise/meta/include/functions_meta.php:522 +#: ../../enterprise/meta/include/functions_meta.php:741 +#: ../../godmode/setup/setup_auth.php:69 ../../include/functions_config.php:522 +msgid "Autocreate remote users" +msgstr "" + +#: ../../enterprise/meta/include/functions_meta.php:532 +#: ../../enterprise/godmode/setup/setup_auth.php:55 +#: ../../enterprise/godmode/setup/setup_auth.php:303 +#: ../../enterprise/godmode/setup/setup_auth.php:364 +#: ../../enterprise/godmode/setup/setup_auth.php:1159 +#: ../../include/functions_config.php:526 +msgid "Autocreate profile" +msgstr "" + +#: ../../enterprise/meta/include/functions_meta.php:542 +#: ../../enterprise/godmode/setup/setup_auth.php:61 +#: ../../enterprise/godmode/setup/setup_auth.php:309 +#: ../../enterprise/godmode/setup/setup_auth.php:370 +#: ../../enterprise/godmode/setup/setup_auth.php:1165 +#: ../../include/functions_config.php:530 +msgid "Autocreate profile group" +msgstr "" + +#: ../../enterprise/meta/include/functions_meta.php:552 +#: ../../enterprise/godmode/setup/setup_auth.php:68 +#: ../../enterprise/godmode/setup/setup_auth.php:318 +#: ../../enterprise/godmode/setup/setup_auth.php:379 +#: ../../enterprise/godmode/setup/setup_auth.php:1174 +#: ../../include/functions_config.php:534 +msgid "Autocreate profile tags" +msgstr "" + +#: ../../enterprise/meta/include/functions_meta.php:562 +#: ../../enterprise/godmode/setup/setup_auth.php:324 +#: ../../include/functions_config.php:538 +msgid "Automatically assigned no hierarchy" +msgstr "" + +#: ../../enterprise/meta/include/functions_meta.php:572 +#: ../../enterprise/godmode/setup/setup_auth.php:569 +#: ../../enterprise/godmode/setup/setup_auth.php:1371 +#: ../../include/functions_config.php:542 +msgid "Autocreate blacklist" +msgstr "" + +#: ../../enterprise/meta/include/functions_meta.php:582 +#: ../../enterprise/meta/include/functions_meta.php:884 +#: ../../godmode/users/configure_user.php:1313 +#: ../../godmode/setup/setup_auth.php:353 +#: ../../include/functions_config.php:750 +#: ../../operation/users/user_edit.php:426 +msgid "Double authentication" +msgstr "" + +#: ../../enterprise/meta/include/functions_meta.php:592 +msgid "2FA_all_users" +msgstr "" + +#: ../../enterprise/meta/include/functions_meta.php:604 +#: ../../enterprise/meta/include/functions_meta.php:897 +#: ../../include/functions_config.php:758 +#: ../../include/functions_config.php:764 +msgid "Session timeout" +msgstr "" + +#: ../../enterprise/meta/include/functions_meta.php:618 +#: ../../enterprise/meta/include/functions_meta.php:1082 +#: ../../enterprise/godmode/setup/setup_auth.php:82 +#: ../../enterprise/godmode/setup/setup_auth.php:348 +#: ../../include/functions_config.php:655 +#: ../../include/functions_config.php:771 +msgid "Save Password" +msgstr "" + +#: ../../enterprise/meta/include/functions_meta.php:635 +#: ../../enterprise/godmode/setup/setup_auth.php:577 +#: ../../enterprise/godmode/setup/setup_auth.php:1379 +#: ../../include/functions_config.php:546 +msgid "Active directory server" +msgstr "" + +#: ../../enterprise/meta/include/functions_meta.php:645 +#: ../../enterprise/godmode/setup/setup_auth.php:583 +#: ../../enterprise/godmode/setup/setup_auth.php:1385 +#: ../../include/functions_config.php:550 +msgid "Active directory port" +msgstr "" + +#: ../../enterprise/meta/include/functions_meta.php:655 +#: ../../enterprise/meta/include/functions_meta.php:939 +#: ../../enterprise/godmode/setup/setup_auth.php:589 +#: ../../enterprise/godmode/setup/setup_auth.php:1391 +#: ../../godmode/setup/setup_auth.php:137 +#: ../../include/functions_config.php:554 +#: ../../include/functions_config.php:590 +msgid "Start TLS" +msgstr "" + +#: ../../enterprise/meta/include/functions_meta.php:665 +#: ../../enterprise/godmode/setup/setup_auth.php:353 +#: ../../enterprise/godmode/setup/setup_auth.php:1148 +#: ../../include/functions_config.php:558 +msgid "Advanced Config AD" +msgstr "" + +#: ../../enterprise/meta/include/functions_meta.php:675 +#: ../../enterprise/godmode/setup/setup_auth.php:595 +#: ../../enterprise/godmode/setup/setup_auth.php:1397 +#: ../../include/functions_config.php:566 +msgid "Domain" +msgstr "" + +#: ../../enterprise/meta/include/functions_meta.php:685 +#: ../../enterprise/godmode/setup/setup_auth.php:413 +#: ../../enterprise/godmode/setup/setup_auth.php:1208 +#: ../../include/functions_config.php:570 +msgid "Advanced Permisions AD" +msgstr "" + +#: ../../enterprise/meta/include/functions_meta.php:695 +#: ../../enterprise/godmode/setup/setup_auth.php:129 +#: ../../include/functions_config.php:574 +msgid "Advanced Permissions LDAP" +msgstr "" + +#: ../../enterprise/meta/include/functions_meta.php:705 +#: ../../enterprise/godmode/setup/setup_auth.php:106 +#: ../../include/functions_config.php:562 +msgid "Advanced Config LDAP" +msgstr "" + +#: ../../enterprise/meta/include/functions_meta.php:715 +#: ../../enterprise/meta/include/functions_meta.php:727 +#: ../../enterprise/godmode/setup/setup_auth.php:337 +#: ../../enterprise/godmode/setup/setup_auth.php:385 +#: ../../enterprise/godmode/setup/setup_auth.php:1180 +msgid "Auto enable node access" +msgstr "" + +#: ../../enterprise/meta/include/functions_meta.php:754 +#: ../../include/functions_config.php:710 +msgid "Saml path" +msgstr "" + +#: ../../enterprise/meta/include/functions_meta.php:767 +#: ../../include/functions_config.php:714 +msgid "Saml source" +msgstr "" + +#: ../../enterprise/meta/include/functions_meta.php:780 +#: ../../include/functions_config.php:718 +msgid "Saml user id parameter" +msgstr "" + +#: ../../enterprise/meta/include/functions_meta.php:793 +#: ../../include/functions_config.php:722 +msgid "Saml mail parameter" +msgstr "" + +#: ../../enterprise/meta/include/functions_meta.php:806 +#: ../../include/functions_config.php:726 +msgid "Saml group name parameter" +msgstr "" + +#: ../../enterprise/meta/include/functions_meta.php:819 +#: ../../include/functions_config.php:730 +msgid "Saml attr type parameter" +msgstr "" + +#: ../../enterprise/meta/include/functions_meta.php:832 +#: ../../include/functions_config.php:734 +msgid "Saml profiles and tags parameter" +msgstr "" + +#: ../../enterprise/meta/include/functions_meta.php:845 +#: ../../include/functions_config.php:746 +msgid "Saml profile and tag separator" +msgstr "" + +#: ../../enterprise/meta/include/functions_meta.php:858 +msgid "SAML profile parameters" +msgstr "" + +#: ../../enterprise/meta/include/functions_meta.php:871 +#: ../../include/functions_config.php:742 +msgid "Saml tag parameter" +msgstr "" + +#: ../../enterprise/meta/include/functions_meta.php:909 +#: ../../godmode/setup/setup_auth.php:92 ../../include/functions_config.php:578 +msgid "LDAP server" +msgstr "" + +#: ../../enterprise/meta/include/functions_meta.php:919 +#: ../../godmode/setup/setup_auth.php:105 +#: ../../include/functions_config.php:582 +msgid "LDAP port" +msgstr "" + +#: ../../enterprise/meta/include/functions_meta.php:929 +#: ../../godmode/setup/setup_auth.php:123 +#: ../../include/functions_config.php:586 +msgid "LDAP version" +msgstr "" + +#: ../../enterprise/meta/include/functions_meta.php:949 +#: ../../godmode/setup/setup_auth.php:148 +#: ../../include/functions_config.php:594 +msgid "Base DN" +msgstr "" + +#: ../../enterprise/meta/include/functions_meta.php:959 +#: ../../godmode/setup/setup_auth.php:161 +#: ../../include/functions_config.php:598 +msgid "Login attribute" +msgstr "" + +#: ../../enterprise/meta/include/functions_meta.php:969 +#: ../../godmode/setup/setup_auth.php:174 +#: ../../include/functions_config.php:602 +msgid "Admin LDAP login" +msgstr "" + +#: ../../enterprise/meta/include/functions_meta.php:979 +#: ../../godmode/setup/setup_auth.php:187 +#: ../../include/functions_config.php:606 +msgid "Admin LDAP password" +msgstr "" + +#: ../../enterprise/meta/include/functions_meta.php:990 +#: ../../include/functions_config.php:666 +msgid "LDAP secondary enabled" +msgstr "" + +#: ../../enterprise/meta/include/functions_meta.php:999 +#: ../../godmode/setup/setup_auth.php:222 +#: ../../include/functions_config.php:610 +msgid "Secondary LDAP server" +msgstr "" + +#: ../../enterprise/meta/include/functions_meta.php:1009 +#: ../../godmode/setup/setup_auth.php:235 +#: ../../include/functions_config.php:614 +msgid "Secondary LDAP port" +msgstr "" + +#: ../../enterprise/meta/include/functions_meta.php:1019 +#: ../../godmode/setup/setup_auth.php:253 +#: ../../include/functions_config.php:618 +msgid "Secondary LDAP version" +msgstr "" + +#: ../../enterprise/meta/include/functions_meta.php:1029 +#: ../../godmode/setup/setup_auth.php:267 +msgid "Secondary start TLS" +msgstr "" + +#: ../../enterprise/meta/include/functions_meta.php:1039 +#: ../../include/functions_config.php:626 +msgid "Secondary base DN" +msgstr "" + +#: ../../enterprise/meta/include/functions_meta.php:1049 +#: ../../include/functions_config.php:630 +msgid "Secondary login attribute" +msgstr "" + +#: ../../enterprise/meta/include/functions_meta.php:1059 +#: ../../godmode/setup/setup_auth.php:304 +#: ../../include/functions_config.php:634 +msgid "Admin secondary LDAP login" +msgstr "" + +#: ../../enterprise/meta/include/functions_meta.php:1069 +#: ../../godmode/setup/setup_auth.php:317 +#: ../../include/functions_config.php:638 +msgid "Admin secondary LDAP password" +msgstr "" + +#: ../../enterprise/meta/include/functions_meta.php:1102 +#: ../../enterprise/godmode/setup/setup_auth.php:101 +#: ../../include/functions_config.php:646 +msgid "Login user attribute" +msgstr "" + +#: ../../enterprise/meta/include/functions_meta.php:1112 +#: ../../include/functions_config.php:662 +msgid "Save profile" +msgstr "" + +#: ../../enterprise/meta/include/functions_meta.php:1123 +#: ../../enterprise/godmode/setup/setup_auth.php:94 +#: ../../include/functions_config.php:650 +msgid "LDAP function" +msgstr "" + +#: ../../enterprise/meta/include/functions_meta.php:1135 +#, php-format +msgid "%s host" +msgstr "" + +#: ../../enterprise/meta/include/functions_meta.php:1145 +#: ../../enterprise/meta/include/functions_meta.php:1199 +#: ../../enterprise/meta/include/functions_meta.php:1253 +#: ../../enterprise/godmode/setup/setup_auth.php:1027 +#: ../../enterprise/godmode/setup/setup_auth.php:1059 +#: ../../include/functions_config.php:674 +#: ../../include/functions_config.php:694 +msgid "MySQL port" +msgstr "" + +#: ../../enterprise/meta/include/functions_meta.php:1155 +#: ../../enterprise/meta/include/functions_meta.php:1209 +#: ../../enterprise/meta/include/functions_meta.php:1263 +#: ../../enterprise/godmode/setup/setup_history.php:193 +#: ../../enterprise/godmode/setup/setup_auth.php:1033 +#: ../../enterprise/godmode/setup/setup_auth.php:1065 +#: ../../include/functions_config.php:678 +#: ../../include/functions_config.php:698 +#: ../../include/functions_config.php:1537 +msgid "Database name" +msgstr "" + +#: ../../enterprise/meta/include/functions_meta.php:1189 +msgid "Babel Enterprise host" +msgstr "" + +#: ../../enterprise/meta/include/functions_meta.php:1243 +#: ../../enterprise/godmode/setup/setup_auth.php:1053 +#: ../../include/functions_config.php:690 +msgid "Integria host" +msgstr "" + +#: ../../enterprise/meta/include/functions_meta.php:1308 +#: ../../include/functions_config.php:936 +msgid "Timestamp or time comparation" +msgstr "" + +#: ../../enterprise/meta/include/functions_meta.php:1318 +msgid "Graph color (min)" +msgstr "" + +#: ../../enterprise/meta/include/functions_meta.php:1328 +msgid "Graph color (avg)" +msgstr "" + +#: ../../enterprise/meta/include/functions_meta.php:1338 +msgid "Graph color (max)" +msgstr "" + +#: ../../enterprise/meta/include/functions_meta.php:1373 +#: ../../include/functions_config.php:984 +msgid "Data precision for reports" +msgstr "" + +#: ../../enterprise/meta/include/functions_meta.php:1488 +msgid "full scale charts" +msgstr "" + +#: ../../enterprise/meta/include/functions_meta.php:1498 +msgid "type mode type charts" +msgstr "" + +#: ../../enterprise/meta/include/functions_meta.php:1518 +msgid "type mode zoom charts" +msgstr "" + +#: ../../enterprise/meta/include/functions_meta.php:1538 +msgid "Type of charts" +msgstr "" + +#: ../../enterprise/meta/include/functions_meta.php:1578 +#: ../../include/functions_config.php:1033 +msgid "Custom logo collapsed" +msgstr "" + +#: ../../enterprise/meta/include/functions_meta.php:1588 +msgid "Custom logo (white background)" +msgstr "" + +#: ../../enterprise/meta/include/functions_meta.php:1608 +#: ../../include/functions_config.php:1041 +msgid "Custom logo login" +msgstr "" + +#: ../../enterprise/meta/include/functions_meta.php:1618 +#: ../../include/functions_config.php:1045 +msgid "Custom splash login" +msgstr "" + +#: ../../enterprise/meta/include/functions_meta.php:1648 +#: ../../include/functions_config.php:1081 +msgid "Custom title1 login" +msgstr "" + +#: ../../enterprise/meta/include/functions_meta.php:1658 +#: ../../include/functions_config.php:1085 +msgid "Custom title2 login" +msgstr "" + +#: ../../enterprise/meta/include/functions_meta.php:1668 +#: ../../include/functions_config.php:1073 +msgid "Meta custom title header" +msgstr "" + +#: ../../enterprise/meta/include/functions_meta.php:1678 +#: ../../include/functions_config.php:1077 +msgid "Meta custom subtitle header" +msgstr "" + +#: ../../enterprise/meta/include/functions_meta.php:1708 +msgid "Custom background login" +msgstr "" + +#: ../../enterprise/meta/include/functions_meta.php:1718 +msgid "Custom product name" +msgstr "" + +#: ../../enterprise/meta/include/functions_meta.php:1728 +msgid "Custom copyright notice" +msgstr "" + +#: ../../enterprise/meta/include/functions_meta.php:1777 +#: ../../include/functions_config.php:1017 +msgid "Font path" +msgstr "" + +#: ../../enterprise/meta/include/functions_meta.php:1787 +#: ../../include/functions_config.php:1455 +msgid "Use data multiplier" +msgstr "" + +#: ../../enterprise/meta/include/functions_meta.php:1799 +#: ../../include/functions_config.php:1411 +msgid "Custom report info" +msgstr "" + +#: ../../enterprise/meta/include/functions_meta.php:1809 +#: ../../enterprise/godmode/reporting/reporting_builder.advanced.php:116 +#: ../../enterprise/godmode/reporting/reporting_builder.template_advanced.php:127 +#: ../../include/functions_config.php:1427 +msgid "Font family" +msgstr "" + +#: ../../enterprise/meta/include/functions_meta.php:1849 +#: ../../enterprise/godmode/reporting/reporting_builder.advanced.php:173 +#: ../../enterprise/godmode/reporting/reporting_builder.template_advanced.php:162 +#: ../../godmode/setup/setup_visuals.php:1253 +#: ../../include/functions_config.php:1443 +msgid "Footer" +msgstr "" + +#: ../../enterprise/meta/include/functions_meta.php:1884 +#: ../../include/functions_config.php:1141 +msgid "Use the legacy Visual Console" +msgstr "" + +#: ../../enterprise/meta/include/functions_meta.php:1895 +#: ../../include/functions_config.php:1145 +msgid "Default expiration of the Visual Console item's cache" +msgstr "" + +#: ../../enterprise/meta/include/functions_meta.php:1939 +msgid "Realtime stats" +msgstr "" + +#: ../../enterprise/meta/include/functions_meta.php:1969 +#: ../../godmode/setup/performance.php:568 +#: ../../include/functions_config.php:844 +msgid "Use agent access graph" +msgstr "" + +#: ../../enterprise/meta/include/functions_meta.php:1979 +msgid "Default block size migration agents" +msgstr "" + +#: ../../enterprise/meta/include/functions_meta.php:2001 +msgid "Default block size execution event" +msgstr "" + +#: ../../enterprise/meta/include/functions_meta.php:2012 +msgid "Default row limit in csv log" +msgstr "" + +#: ../../enterprise/meta/include/functions_meta.php:2042 +#: ../../include/functions_config.php:925 +msgid "PhantomJS cache interval" +msgstr "" + +#: ../../enterprise/meta/include/functions_meta.php:2058 +msgid "Node address default" +msgstr "" + +#: ../../enterprise/meta/include/functions_components_meta.php:80 +#: ../../enterprise/meta/include/functions_components_meta.php:135 +#: ../../godmode/menu.php:96 +msgid "Component groups" +msgstr "" + +#: ../../enterprise/meta/include/functions_components_meta.php:88 +#: ../../enterprise/meta/include/functions_components_meta.php:139 +#: ../../enterprise/godmode/menu.php:99 ../../godmode/menu.php:168 +msgid "Local components" +msgstr "" + +#: ../../enterprise/meta/include/functions_components_meta.php:96 +#: ../../enterprise/meta/include/functions_components_meta.php:143 +msgid "Network components" +msgstr "" + +#: ../../enterprise/meta/include/functions_components_meta.php:104 +#: ../../enterprise/meta/include/functions_components_meta.php:147 +msgid "Plugin management" +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:90 +#: ../../enterprise/godmode/alerts/alert_inventory_builder.php:198 +#: ../../enterprise/include/functions_policies.php:3755 +msgid "Inventory modules" +msgstr "" + +#: ../../enterprise/meta/include/functions_components_meta.php:124 +#: ../../enterprise/meta/include/functions_components_meta.php:164 +#: ../../godmode/servers/plugin_registration.php:99 +#: ../../godmode/servers/plugin.php:295 +msgid "Plugin registration" +msgstr "" + +#: ../../enterprise/meta/include/functions_components_meta.php:153 +msgid "Create plugin" +msgstr "" + +#: ../../enterprise/meta/include/functions_components_meta.php:155 +msgid "Edit plugin" +msgstr "" + +#: ../../enterprise/meta/include/functions_ui_meta.php:53 +#, php-format +msgid "%s - the Flexible Monitoring System" +msgstr "" + +#: ../../enterprise/meta/include/functions_ui_meta.php:971 +#: ../../enterprise/godmode/services/services.elements.php:846 +#: ../../enterprise/godmode/services/services.elements.php:857 +#: ../../enterprise/include/class/CommandCenter.class.php:473 +#: ../../enterprise/include/functions_login.php:104 +#: ../../enterprise/include/functions_login.php:488 +#: ../../enterprise/include/lib/Metaconsole/Node.php:541 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:4035 +#: ../../godmode/users/configure_user.php:1795 +#: ../../godmode/users/configure_user.php:1865 +#: ../../godmode/massive/massive_edit_plugins.php:856 +#: ../../godmode/massive/massive_edit_plugins.php:857 +#: ../../mobile/operation/visualmap.php:182 ../../include/functions.php:1236 +#: ../../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:2216 ../../include/functions_ui.php:290 +#: ../../include/class/Diagnostics.class.php:1827 +#: ../../include/functions_events.php:2681 +#: ../../include/functions_events.php:2881 ../../index.php:1516 +#: ../../operation/users/user_edit.php:1064 +#: ../../operation/users/user_edit.php:1130 ../../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:268 +msgid "Commands" +msgstr "" + +#: ../../enterprise/meta/include/functions_alerts_meta.php:141 +msgid "Calendar" +msgstr "" + +#: ../../enterprise/meta/include/reset_pass.php:93 +#: ../../enterprise/include/reset_pass.php:98 +msgid "User to reset password" +msgstr "" + +#: ../../enterprise/meta/include/reset_pass.php:103 +#: ../../enterprise/meta/index.php:692 +#: ../../enterprise/include/reset_pass.php:108 ../../index.php:875 +msgid "Reset password" +msgstr "" + +#: ../../enterprise/meta/include/reset_pass.php:165 +#: ../../enterprise/meta/include/reset_pass.php:168 +#: ../../enterprise/include/reset_pass.php:174 +#: ../../enterprise/include/reset_pass.php:177 +msgid "Reset password failed" +msgstr "" + +#: ../../enterprise/meta/include/reset_pass.php:172 +#: ../../enterprise/meta/general/login_page.php:259 +#: ../../enterprise/meta/general/login_page.php:301 +#: ../../enterprise/include/reset_pass.php:181 ../../general/login_page.php:452 +#: ../../general/login_page.php:494 +msgid "ERROR" +msgstr "" + +#: ../../enterprise/meta/include/functions_relations.php:49 +msgid "Invalid file content" +msgstr "" + +#: ../../enterprise/meta/include/functions_relations.php:54 +msgid "No relations found" +msgstr "" + +#: ../../enterprise/meta/include/functions_relations.php:80 +#: ../../enterprise/meta/include/functions_relations.php:91 +#: ../../enterprise/meta/include/functions_relations.php:102 +#, php-format +msgid "The relation type: %s to %s -> %s was not saved" +msgstr "" + +#: ../../enterprise/meta/include/functions_relations.php:123 +#, php-format +msgid "The relation %s -> %s was not saved" +msgstr "" + +#: ../../enterprise/meta/include/functions_relations.php:133 +msgid "File imported successfully" +msgstr "" + +#: ../../enterprise/meta/include/functions_relations.php:136 +msgid "Error inserting relations" +msgstr "" + +#: ../../enterprise/meta/include/functions_relations.php:165 +msgid "Empty string" +msgstr "" + +#: ../../enterprise/meta/include/functions_relations.php:170 +msgid "Empty custom node address" +msgstr "" + +#: ../../enterprise/meta/include/functions_relations.php:208 +#, php-format +msgid "" +"The relation type: %s to %s -> %s was not saved. This relationship already " +"exists in the database" +msgstr "" + +#: ../../enterprise/meta/include/functions_relations.php:230 +#, php-format +msgid "Error inserting the relation %s -> %s" +msgstr "" + +#: ../../enterprise/meta/include/functions_relations.php:238 +msgid "Relation created successfully" +msgstr "" + +#: ../../enterprise/meta/include/functions_relations.php:263 +msgid "Error deleting the relation" +msgstr "" + +#: ../../enterprise/meta/include/functions_relations.php:269 +msgid "Relation deleted successfully" +msgstr "" + +#: ../../enterprise/meta/index.php:206 ../../index.php:1399 +#: ../../operation/visual_console/legacy_public_view.php:57 +#: ../../operation/visual_console/public_view.php:38 +#: ../../operation/agentes/stat_win.php:92 +#: ../../operation/gis_maps/public_console.php:277 +#: ../../operation/events/sound_events.php:168 +msgid "Connection with server has been lost" +msgstr "" + +#: ../../enterprise/meta/index.php:207 ../../index.php:1400 +#: ../../operation/visual_console/legacy_public_view.php:58 +#: ../../operation/visual_console/public_view.php:39 +#: ../../operation/agentes/stat_win.php:93 +#: ../../operation/gis_maps/public_console.php:278 +#: ../../operation/events/sound_events.php:169 +msgid "" +"Connection to the server has been lost. Please check your internet " +"connection or contact with administrator." +msgstr "" + +#: ../../enterprise/meta/index.php:296 ../../mobile/include/user.class.php:303 +#: ../../include/ajax/double_auth.ajax.php:500 ../../index.php:336 +msgid "Invalid code" +msgstr "" + +#: ../../enterprise/meta/index.php:308 ../../index.php:348 +msgid "The code shouldn't be empty" +msgstr "" + +#: ../../enterprise/meta/index.php:321 ../../index.php:361 +msgid "Expired login" +msgstr "" + +#: ../../enterprise/meta/index.php:328 ../../enterprise/meta/index.php:334 +#: ../../index.php:368 ../../index.php:374 +msgid "Login error" +msgstr "" + +#: ../../enterprise/meta/index.php:617 ../../index.php:792 +msgid "Password changed successfully" +msgstr "" + +#: ../../enterprise/meta/index.php:623 ../../index.php:798 +msgid "Failed to change password" +msgstr "" + +#: ../../enterprise/meta/index.php:637 ../../index.php:815 +msgid "Too much time since password change request" +msgstr "" + +#: ../../enterprise/meta/index.php:644 ../../index.php:822 +msgid "This user has not requested a password change" +msgstr "" + +#: ../../enterprise/meta/index.php:660 ../../index.php:849 +msgid "Id user cannot be empty" +msgstr "" + +#: ../../enterprise/meta/index.php:668 ../../index.php:857 +msgid "Error in reset password request" +msgstr "" + +#: ../../enterprise/meta/index.php:676 ../../index.php:865 +msgid "This user doesn't have a valid email address" +msgstr "" + +#: ../../enterprise/meta/index.php:693 ../../index.php:876 +msgid "This is an automatically sent message for user " +msgstr "" + +#: ../../enterprise/meta/index.php:696 ../../index.php:879 +msgid "Please click the link below to reset your password" +msgstr "" + +#: ../../enterprise/meta/index.php:698 ../../index.php:881 +msgid "Reset your password" +msgstr "" + +#: ../../enterprise/meta/index.php:702 ../../index.php:885 +msgid "Please do not reply to this email." +msgstr "" + +#: ../../enterprise/meta/index.php:708 ../../index.php:890 +msgid "Error at sending the email" +msgstr "" + +#: ../../enterprise/meta/index.php:849 +#, php-format +msgid "" +"System is not centralised, please go to %s to perform a database merge " +"process." +msgstr "" + +#: ../../enterprise/meta/index.php:917 +#, php-format +msgid "There are nodes with different MR than this (%d):" +msgstr "" + +#: ../../enterprise/meta/index.php:926 ../../index.php:1173 +msgid "Please keep all environment updated to same version." +msgstr "" + +#: ../../enterprise/meta/index.php:983 ../../enterprise/meta/index.php:1062 +#: ../../index.php:1261 +msgid "Sorry! I can't find the page!" +msgstr "" + +#: ../../enterprise/meta/agentsearch.php:121 +msgid "Search results for" +msgstr "" + +#: ../../enterprise/meta/agentsearch.php:122 ../../operation/search_main.php:54 +msgid "Agents found" +msgstr "" + +#: ../../enterprise/meta/agentsearch.php:142 +#: ../../enterprise/godmode/reporting/aws_view.php:61 +#: ../../enterprise/operation/agentes/policy_view.php:399 +#: ../../enterprise/operation/agentes/tag_view.php:609 +#: ../../enterprise/operation/agentes/ver_agente.php:77 +#: ../../extensions/users_connected.php:146 +#: ../../godmode/users/user_list.php:481 +#: ../../godmode/agentes/planned_downtime.editor.php:923 +#: ../../mobile/operation/agents.php:99 ../../mobile/operation/agents.php:417 +#: ../../mobile/operation/agents.php:419 ../../mobile/operation/agents.php:422 +#: ../../mobile/operation/agent.php:193 ../../include/ajax/module.php:984 +#: ../../include/functions_treeview.php:668 +#: ../../include/functions_events.php:4048 ../../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:1028 +#: ../../operation/agentes/estado_generalagente.php:362 +#: ../../operation/gis_maps/ajax.php:239 ../../operation/gis_maps/ajax.php:349 +#: ../../operation/gis_maps/ajax.php:466 +msgid "Last contact" +msgstr "" + +#: ../../enterprise/meta/agentsearch.php:301 +msgid "There are no agents included in this group" +msgstr "" + +#: ../../enterprise/meta/agentsearch.php:315 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:601 +#: ../../operation/tree.php:420 +msgid "Policies found" +msgstr "" + +#: ../../enterprise/meta/agentsearch.php:409 +#: ../../enterprise/godmode/policies/policies.php:471 +#: ../../operation/search_policies.php:50 +msgid "Policy updated" +msgstr "" + +#: ../../enterprise/meta/agentsearch.php:417 +#: ../../enterprise/godmode/policies/policies.php:479 +#: ../../operation/search_policies.php:58 +msgid "Pending update policy only database" +msgstr "" + +#: ../../enterprise/meta/agentsearch.php:425 +#: ../../enterprise/godmode/policies/policies.php:487 +#: ../../operation/search_policies.php:66 +msgid "Pending update policy" +msgstr "" + +#: ../../enterprise/meta/agentsearch.php:450 +msgid "There are no policies included in this group" +msgstr "" + +#: ../../enterprise/meta/general/footer.php:45 ../../general/footer.php:51 +#, php-format +msgid "%s %s - %s - MR %s" +msgstr "" + +#: ../../enterprise/meta/general/footer.php:50 +msgid "Page generated at" +msgstr "" + +#: ../../enterprise/meta/general/metaconsole_no_activated.php:12 +#: ../../enterprise/meta/general/noaccesssaml.php:130 +#: ../../enterprise/meta/general/noaccess.php:130 ../../mobile/index.php:266 +#: ../../mobile/operation/agents.php:186 ../../mobile/operation/modules.php:218 +#: ../../mobile/operation/groups.php:59 ../../mobile/operation/agent.php:117 +#: ../../mobile/operation/alerts.php:176 +#: ../../mobile/operation/visualmap.php:185 +#: ../../mobile/operation/visualmaps.php:159 +#: ../../mobile/operation/module_graph.php:255 +#: ../../mobile/operation/events.php:744 ../../mobile/operation/tactical.php:79 +#: ../../general/noaccesssaml.php:130 ../../general/noaccess2.php:16 +#: ../../general/noaccess2.php:18 +msgid "You don't have access to this page" +msgstr "" + +#: ../../enterprise/meta/general/metaconsole_no_activated.php:20 +#: ../../general/noaccess2.php:28 +msgid "No access" +msgstr "" + +#: ../../enterprise/meta/general/metaconsole_no_activated.php:24 +msgid "" +"Metaconsole needs previous activation from regular console, please contact " +"system administrator if you need assistance.
    " +msgstr "" + +#: ../../enterprise/meta/general/header.php:66 +#: ../../enterprise/meta/general/header.php:72 +#: ../../enterprise/meta/general/main_header.php:518 +#: ../../enterprise/meta/general/main_header.php:524 +#: ../../general/header.php:48 ../../general/header.php:54 +msgid "All systems" +msgstr "" + +#: ../../enterprise/meta/general/header.php:66 +#: ../../enterprise/meta/general/main_header.php:518 +#: ../../general/header.php:48 +msgid "Down" +msgstr "" + +#: ../../enterprise/meta/general/header.php:69 +#: ../../enterprise/meta/general/main_header.php:521 +#: ../../general/header.php:51 +msgid "servers down" +msgstr "" + +#: ../../enterprise/meta/general/header.php:72 +#: ../../enterprise/meta/general/main_header.php:524 +#: ../../general/header.php:54 +msgid "Ready" +msgstr "" + +#: ../../enterprise/meta/general/header.php:110 +#: ../../enterprise/meta/general/main_header.php:552 +#: ../../general/header.php:235 +msgid "Configure autorefresh" +msgstr "" + +#: ../../enterprise/meta/general/header.php:137 +#: ../../enterprise/meta/general/header.php:149 +#: ../../enterprise/meta/general/main_header.php:569 +#: ../../enterprise/meta/general/main_header.php:581 +#: ../../general/header.php:301 ../../general/header.php:320 +msgid "Disabled autorefresh" +msgstr "" + +#: ../../enterprise/meta/general/header.php:231 +#: ../../enterprise/meta/general/header.php:233 +#: ../../enterprise/meta/general/main_header.php:535 +#: ../../mobile/include/functions_web.php:34 +#: ../../mobile/include/ui.class.php:225 +#: ../../mobile/include/user.class.php:463 ../../mobile/operation/home.php:148 +#: ../../general/header.php:432 ../../general/header.php:434 +msgid "Logout" +msgstr "" + +#: ../../enterprise/meta/general/main_header.php:97 +#: ../../enterprise/meta/general/main_menu.php:188 +#: ../../enterprise/operation/services/services.treeview_services.php:62 +#: ../../enterprise/operation/services/services.treeview_services.php:69 +#: ../../godmode/groups/group_list.php:344 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:173 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:714 +#: ../../operation/tree.php:138 ../../operation/menu.php:51 +msgid "Tree view" +msgstr "" + +#: ../../enterprise/meta/general/main_header.php:109 +#: ../../enterprise/meta/general/main_menu.php:200 +msgid "Groups view" +msgstr "" + +#: ../../enterprise/meta/general/main_header.php:115 +#: ../../enterprise/meta/general/main_menu.php:206 +#: ../../operation/agentes/alerts_status.php:208 +msgid "Alerts view" +msgstr "" + +#: ../../enterprise/meta/general/main_header.php:121 +#: ../../enterprise/meta/general/main_menu.php:212 +msgid "Monitors view" +msgstr "" + +#: ../../enterprise/meta/general/main_header.php:127 +#: ../../enterprise/meta/general/main_menu.php:218 +msgid "Custom fields view" +msgstr "" + +#: ../../enterprise/meta/general/main_header.php:167 +#: ../../enterprise/meta/general/main_header.php:183 +#: ../../enterprise/meta/general/main_menu.php:271 +#: ../../enterprise/mobile/include/functions_web.php:15 +#: ../../include/functions_reporting.php:15186 +#: ../../include/functions_groups.php:139 +#: ../../operation/search_results.php:132 +msgid "Reports" +msgstr "" + +#: ../../enterprise/meta/general/main_header.php:174 +#: ../../enterprise/meta/general/main_menu.php:278 +msgid "Create new report" +msgstr "" + +#: ../../enterprise/meta/general/main_header.php:190 +#: ../../enterprise/meta/general/main_menu.php:288 +msgid "Report templates" +msgstr "" + +#: ../../enterprise/meta/general/main_header.php:200 +#: ../../enterprise/meta/general/main_menu.php:298 +#: ../../enterprise/include/functions_reporting.php:124 +#: ../../include/functions_menu.php:509 +msgid "Templates wizard" +msgstr "" + +#: ../../enterprise/meta/general/main_header.php:210 +#: ../../enterprise/meta/general/main_menu.php:331 +#: ../../enterprise/godmode/menu.php:137 +#: ../../enterprise/godmode/massive/massive_add_service_elements.php:363 +#: ../../enterprise/godmode/massive/massive_create_services.php:966 +#: ../../enterprise/godmode/services/services.massive.meta.php:42 +#: ../../enterprise/godmode/services/services.service.php:477 +#: ../../enterprise/godmode/services/services.service.php:497 +#: ../../enterprise/godmode/services/services.elements.php:783 +#: ../../enterprise/godmode/services/services.elements.php:803 +#: ../../enterprise/godmode/services/services.massive.elements.php:44 +#: ../../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/services/services.service.php:83 +#: ../../enterprise/operation/services/services.service_map.php:97 +#: ../../enterprise/operation/services/services.service_map.php:144 +#: ../../enterprise/operation/services/services.treeview_services.php:62 +#: ../../enterprise/operation/services/services.treeview_services.php:82 +#: ../../enterprise/operation/services/services.list.php:58 +#: ../../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:1654 +#: ../../general/first_task/service_list.php:23 +msgid "Services" +msgstr "" + +#: ../../enterprise/meta/general/main_header.php:240 +#: ../../enterprise/meta/general/main_menu.php:348 +#: ../../enterprise/include/functions_enterprise.php:456 +#: ../../include/class/OrderInterpreter.class.php:233 +#: ../../include/lib/Dashboard/Widgets/maps_made_by_user.php:174 +#: ../../include/lib/Dashboard/Widgets/maps_made_by_user.php:488 +#: ../../general/first_task/map_builder.php:31 +msgid "Visual Console" +msgstr "" + +#: ../../enterprise/meta/general/main_header.php:247 +#: ../../enterprise/meta/general/main_menu.php:355 +#: ../../godmode/reporting/visual_console_favorite.php:118 +msgid "Favourite Visual Console" +msgstr "" + +#: ../../enterprise/meta/general/main_header.php:255 +#: ../../enterprise/meta/general/main_menu.php:363 +msgid "Template Visual Console" +msgstr "" + +#: ../../enterprise/meta/general/main_header.php:262 +#: ../../enterprise/meta/general/main_menu.php:370 +msgid "Wizard Visual Console" +msgstr "" + +#: ../../enterprise/meta/general/main_header.php:275 +#: ../../enterprise/meta/general/logon_ok.php:37 +#: ../../enterprise/meta/general/main_menu.php:385 +#: ../../enterprise/include/functions_enterprise.php:452 +#: ../../godmode/menu.php:350 ../../godmode/setup/setup.php:151 +#: ../../godmode/setup/setup.php:271 ../../include/functions_reports.php:906 +#: ../../include/functions_reports.php:910 +#: ../../include/functions_reports.php:914 +#: ../../include/functions_reports.php:918 +msgid "Netflow" +msgstr "" + +#: ../../enterprise/meta/general/main_header.php:281 +#: ../../enterprise/meta/general/main_menu.php:393 +msgid "Live view" +msgstr "" + +#: ../../enterprise/meta/general/main_header.php:315 +#: ../../enterprise/meta/general/main_header.php:417 +#: ../../enterprise/meta/general/main_menu.php:438 +#: ../../enterprise/meta/general/main_menu.php:538 +msgid "Agent management" +msgstr "" + +#: ../../enterprise/meta/general/main_header.php:327 +#: ../../enterprise/meta/general/main_header.php:423 +#: ../../enterprise/meta/general/main_menu.php:444 +#: ../../enterprise/meta/general/main_menu.php:544 +#: ../../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_network_components.php:290 +#: ../../godmode/modules/module_list.php:29 +#: ../../godmode/modules/manage_network_templates.php:39 +msgid "Module management" +msgstr "" + +#: ../../enterprise/meta/general/main_header.php:333 +#: ../../enterprise/meta/general/main_header.php:439 +#: ../../enterprise/meta/general/main_menu.php:450 +#: ../../enterprise/meta/general/main_menu.php:567 +msgid "Alert management" +msgstr "" + +#: ../../enterprise/meta/general/main_header.php:339 +#: ../../enterprise/meta/general/main_menu.php:456 +msgid "Component management" +msgstr "" + +#: ../../enterprise/meta/general/main_header.php:345 +#: ../../enterprise/meta/general/main_menu.php:468 +#: ../../enterprise/meta/general/main_menu.php:558 +msgid "Policy management" +msgstr "" + +#: ../../enterprise/meta/general/main_header.php:351 +#: ../../enterprise/meta/general/main_menu.php:474 +msgid "Category management" +msgstr "" + +#: ../../enterprise/meta/general/main_header.php:357 +#: ../../enterprise/meta/general/main_header.php:430 +#: ../../enterprise/meta/general/main_menu.php:480 +#: ../../enterprise/meta/general/main_menu.php:551 +msgid "Server management" +msgstr "" + +#: ../../enterprise/meta/general/main_header.php:363 +#: ../../enterprise/meta/general/main_menu.php:500 +msgid "Command Center" +msgstr "" + +#: ../../enterprise/meta/general/main_header.php:369 +#: ../../enterprise/meta/general/main_menu.php:588 ../../godmode/menu.php:379 +msgid "License" +msgstr "" + +#: ../../enterprise/meta/general/main_header.php:375 +#: ../../enterprise/meta/general/main_menu.php:594 +msgid "Metasetup" +msgstr "" + +#: ../../enterprise/meta/general/main_header.php:381 +#: ../../enterprise/meta/general/main_header.php:448 +#: ../../enterprise/meta/general/main_menu.php:600 +#: ../../enterprise/meta/general/main_menu.php:620 ../../godmode/menu.php:398 +#: ../../godmode/menu.php:511 ../../general/links_menu.php:17 +msgid "Links" +msgstr "" + +#: ../../enterprise/meta/general/main_header.php:458 +#: ../../enterprise/meta/general/main_menu.php:630 +#: ../../godmode/extensions.php:28 +msgid "Extensions" +msgstr "" + +#: ../../enterprise/meta/general/main_header.php:492 +msgid "Audit Logs" +msgstr "" + +#: ../../enterprise/meta/general/logon_ok.php:66 +#: ../../enterprise/godmode/reporting/graph_template_list.php:128 +#: ../../enterprise/godmode/reporting/graph_template_editor.php:103 +#: ../../enterprise/godmode/reporting/graph_template_wizard.php:144 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:272 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:285 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:306 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:319 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:340 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:353 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:374 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:387 +#: ../../enterprise/godmode/reporting/graph_template_item_editor.php:74 +#: ../../enterprise/godmode/reporting/mysql_builder.php:75 +#: ../../enterprise/godmode/reporting/mysql_builder.php:202 +#: ../../enterprise/operation/agentes/transactional_map.php:70 +#: ../../enterprise/operation/agentes/manage_transmap.php:172 +#: ../../enterprise/operation/agentes/manage_transmap_creation.php:169 +#: ../../enterprise/operation/agentes/manage_transmap_creation.php:349 +#: ../../enterprise/operation/agentes/manage_transmap_creation.php:471 +#: ../../godmode/reporting/graph_builder.php:366 +#: ../../godmode/reporting/graph_container.php:118 +#: ../../godmode/reporting/graphs.php:129 +#: ../../godmode/reporting/reporting_builder.php:572 +#: ../../godmode/reporting/reporting_builder.php:579 +#: ../../godmode/reporting/reporting_builder.php:592 +#: ../../godmode/reporting/reporting_builder.php:3515 +#: ../../godmode/reporting/reporting_builder.php:3522 +#: ../../godmode/reporting/reporting_builder.php:3535 +#: ../../godmode/reporting/reporting_builder.php:3626 +#: ../../godmode/reporting/reporting_builder.php:3633 +#: ../../godmode/reporting/reporting_builder.php:3649 +#: ../../godmode/reporting/reporting_builder.php:3678 +#: ../../operation/menu.php:311 +#: ../../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 +msgid "Reporting" +msgstr "" + +#: ../../enterprise/meta/general/logon_ok.php:99 +#: ../../enterprise/meta/general/main_menu.php:581 +#: ../../enterprise/meta/general/main_menu.php:611 +#: ../../enterprise/godmode/policies/configure_policy.php:38 +#: ../../enterprise/godmode/servers/HA_cluster.php:70 +#: ../../enterprise/include/functions_policies.php:3714 +#: ../../godmode/update_manager/update_manager.php:57 +#: ../../godmode/update_manager/update_manager.php:87 +#: ../../godmode/agentes/configurar_agente.php:391 +#: ../../godmode/agentes/configurar_agente.php:696 ../../godmode/menu.php:317 +#: ../../godmode/menu.php:324 +#: ../../godmode/module_library/module_library_view.php:48 +#: ../../operation/agentes/estado_agente.php:201 +#: ../../operation/gis_maps/render_view.php:173 +msgid "Setup" +msgstr "" + +#: ../../enterprise/meta/general/noaccesssaml.php:135 +#: ../../general/noaccesssaml.php:135 +msgid "" +"Access to this page is restricted to authorized users SAML only, please " +"contact system administrator if you need assistance." +msgstr "" + +#: ../../enterprise/meta/general/noaccesssaml.php:137 +#: ../../general/noaccesssaml.php:137 +#, php-format +msgid "" +"Please make sure you have SAML authentication properly configured. For more " +"information the error to access this page are recorded in security logs of " +"%s System Database" +msgstr "" + +#: ../../enterprise/meta/general/noaccess.php:135 +#: ../../general/noaccess.php:152 +msgid "" +"Access to this page is restricted to authorized users only, please contact " +"system administrator if you need assistance." +msgstr "" + +#: ../../enterprise/meta/general/noaccess.php:137 +#: ../../general/noaccess.php:154 +#, php-format +msgid "" +"Please know that all attempts to access this page are recorded in security " +"logs of %s System Database" +msgstr "" + +#: ../../enterprise/meta/general/main_menu.php:229 +#: ../../enterprise/godmode/agentes/configurar_agente.php:88 +#: ../../enterprise/godmode/policies/policies.php:539 +#: ../../enterprise/include/functions_reporting_csv.php:754 +#: ../../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:712 +#: ../../godmode/setup/setup_integria.php:314 +#: ../../include/functions_reports.php:878 +#: ../../include/functions_reports.php:885 +#: ../../include/functions_reports.php:886 +#: ../../include/functions_reports.php:890 +#: ../../include/functions_reporting.php:2734 +msgid "Inventory" +msgstr "" + +#: ../../enterprise/meta/general/main_menu.php:320 +#: ../../operation/messages/message_list.php:90 +#: ../../operation/messages/message_edit.php:103 ../../operation/menu.php:514 +msgid "Messages" +msgstr "" + +#: ../../enterprise/meta/general/main_menu.php:411 +#: ../../enterprise/godmode/menu.php:257 +msgid "Alert correlation" +msgstr "" + +#: ../../enterprise/meta/general/main_menu.php:431 +#: ../../enterprise/meta/general/main_menu.php:512 +msgid "Centralised management" +msgstr "" + +#: ../../enterprise/meta/general/main_menu.php:486 ../../godmode/menu.php:189 +#: ../../godmode/massive/massive_operations.php:329 +msgid "Bulk operations" +msgstr "" + +#: ../../enterprise/meta/general/main_menu.php:492 +msgid "Agent operations" +msgstr "" + +#: ../../enterprise/meta/general/main_menu.php:675 ../../godmode/menu.php:396 +msgid "System audit log" +msgstr "" + +#: ../../enterprise/meta/general/login_page.php:109 +#: ../../general/login_page.php:307 +msgid "Authentication code" +msgstr "" + +#: ../../enterprise/meta/general/login_page.php:112 +#: ../../mobile/include/user.class.php:496 ../../general/login_page.php:310 +msgid "Check code" +msgstr "" + +#: ../../enterprise/meta/general/login_page.php:146 +#: ../../enterprise/meta/general/login_page.php:187 +#: ../../mobile/include/user.class.php:407 ../../general/login_page.php:291 +msgid "Login" +msgstr "" + +#: ../../enterprise/meta/general/login_page.php:154 +#: ../../mobile/include/user.class.php:427 ../../general/login_page.php:259 +msgid "Login with SAML" +msgstr "" + +#: ../../enterprise/meta/general/login_page.php:195 +#: ../../general/login_page.php:334 ../../general/login_page.php:337 +msgid "Forgot your password?" +msgstr "" + +#: ../../enterprise/meta/general/login_page.php:209 +#: ../../include/functions_config.php:2440 +msgid "PANDORA FMS NEXT GENERATION" +msgstr "" + +#: ../../enterprise/meta/general/login_page.php:235 +#: ../../enterprise/meta/general/login_page.php:238 +#: ../../enterprise/meta/general/login_page.php:252 +#: ../../enterprise/meta/general/login_page.php:255 +#: ../../enterprise/meta/general/login_page.php:272 +#: ../../enterprise/meta/general/login_page.php:275 +#: ../../general/login_page.php:340 ../../general/login_page.php:343 +#: ../../general/login_page.php:428 ../../general/login_page.php:431 +#: ../../general/login_page.php:445 ../../general/login_page.php:448 +#: ../../general/login_page.php:465 ../../general/login_page.php:468 +msgid "Password reset" +msgstr "" + +#: ../../enterprise/meta/general/login_page.php:242 +#: ../../general/login_page.php:435 +msgid "INFO" +msgstr "" + +#: ../../enterprise/meta/general/login_page.php:243 +#: ../../general/login_page.php:436 +msgid "An email has been sent to your email address" +msgstr "" + +#: ../../enterprise/meta/general/login_page.php:279 +#: ../../general/login_page.php:472 +msgid "SUCCESS" +msgstr "" + +#: ../../enterprise/meta/general/login_page.php:294 +#: ../../enterprise/meta/general/login_page.php:297 +#: ../../enterprise/include/functions_login.php:141 +#: ../../general/login_page.php:487 ../../general/login_page.php:490 +#: ../../general/login_page.php:644 ../../general/login_page.php:647 +msgid "Login failed" +msgstr "" + +#: ../../enterprise/meta/general/login_page.php:319 +#: ../../enterprise/meta/general/login_page.php:322 +#: ../../enterprise/meta/general/login_page.php:326 +#: ../../general/login_page.php:512 ../../general/login_page.php:515 +#: ../../general/login_page.php:519 +msgid "Logged out" +msgstr "" + +#: ../../enterprise/meta/general/login_page.php:327 +#: ../../mobile/include/user.class.php:365 ../../general/login_page.php:521 +#, php-format +msgid "" +"Your session has ended. Please close your browser window to close this %s " +"session." +msgstr "" + +#: ../../enterprise/load_enterprise.php:564 ../../godmode/setup/license.php:83 +msgid "License updated" +msgstr "" + +#: ../../enterprise/load_enterprise.php:565 +msgid "Failed while updating license." +msgstr "" + +#: ../../enterprise/load_enterprise.php:590 +#: ../../enterprise/load_enterprise.php:655 +msgid "Invalid licence." +msgstr "" + +#: ../../enterprise/load_enterprise.php:590 +msgid "Please contact your system administrator." +msgstr "" + +#: ../../enterprise/load_enterprise.php:655 +#, php-format +msgid "Please contact %s for a valid licence." +msgstr "" + +#: ../../enterprise/load_enterprise.php:656 +#, php-format +msgid "Or disable %s enterprise" +msgstr "" + +#: ../../enterprise/load_enterprise.php:754 +#: ../../enterprise/godmode/reporting/aws_view.php:181 +#: ../../enterprise/godmode/wizards/Cloud.class.php:325 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3174 +#: ../../godmode/setup/license.php:165 ../../mobile/operation/events.php:858 +#: ../../include/ajax/alert_list.ajax.php:280 +#: ../../include/ajax/alert_list.ajax.php:306 +#: ../../operation/agentes/alerts_status.php:429 +#: ../../operation/snmpconsole/snmp_view.php:1027 +#: ../../operation/snmpconsole/snmp_view.php:1217 +#: ../../operation/snmpconsole/snmp_view.php:1267 +msgid "Validate" +msgstr "" + +#: ../../enterprise/load_enterprise.php:758 +#: ../../enterprise/load_enterprise.php:1053 +msgid "Request new licence" +msgstr "" + +#: ../../enterprise/load_enterprise.php:837 +msgid "" +"Metaconsole unreached

    " +"This node has a metaconsole license and cannot contact with the metaconsole." +msgstr "" + +#: ../../enterprise/load_enterprise.php:854 +#: ../../enterprise/load_enterprise.php:860 +#: ../../enterprise/load_enterprise.php:876 +#, php-format +msgid "" +"License exceeded

    This " +"license allows %d agents and you have %d agents configured." +msgstr "" + +#: ../../enterprise/load_enterprise.php:855 +#: ../../enterprise/load_enterprise.php:862 +#: ../../enterprise/load_enterprise.php:871 +#: ../../enterprise/load_enterprise.php:878 +#: ../../enterprise/load_enterprise.php:890 +#, php-format +msgid "Please contact %s to extend the license." +msgstr "" + +#: ../../enterprise/load_enterprise.php:861 +#: ../../enterprise/load_enterprise.php:863 +#: ../../enterprise/load_enterprise.php:877 +#: ../../enterprise/load_enterprise.php:879 +#: ../../enterprise/load_enterprise.php:906 +#: ../../enterprise/load_enterprise.php:912 +msgid "" +"This console will work in limited mode. Enterprise features will not work." +msgstr "" + +#: ../../enterprise/load_enterprise.php:870 +#, php-format +msgid "" +"License exceeded

    This " +"license allows %d agents and you have %d agents configured." +msgstr "" + +#: ../../enterprise/load_enterprise.php:889 +#, php-format +msgid "" +"License exceeded

    This " +"license allows %d modules and you have %d modules configured." +msgstr "" + +#: ../../enterprise/load_enterprise.php:899 +#: ../../enterprise/load_enterprise.php:905 +msgid "" +"This license has expired. " +"

    You can not get updates until you renew the license." +msgstr "" + +#: ../../enterprise/load_enterprise.php:900 +#: ../../enterprise/load_enterprise.php:907 +#, php-format +msgid "Please contact %s to renew the license." +msgstr "" + +#: ../../enterprise/load_enterprise.php:910 +#: ../../enterprise/load_enterprise.php:1049 +msgid "Renew" +msgstr "" + +#: ../../enterprise/load_enterprise.php:919 +#, php-format +msgid "" +"This license is outside of support.

    This %s installation will continue working normally and " +"without limitations, but without support or updates." +msgstr "" + +#: ../../enterprise/extensions/disabled/check_acls.php:16 +msgid "ACL users for this agent" +msgstr "" + +#: ../../enterprise/extensions/disabled/check_acls.php:49 +#: ../../enterprise/extensions/disabled/check_acls.php:136 +msgid "Agents reading" +msgstr "" + +#: ../../enterprise/extensions/disabled/check_acls.php:51 +#: ../../enterprise/extensions/disabled/check_acls.php:138 +msgid "Agents disable" +msgstr "" + +#: ../../enterprise/extensions/disabled/check_acls.php:52 +#: ../../enterprise/extensions/disabled/check_acls.php:139 +msgid "Alerts editing" +msgstr "" + +#: ../../enterprise/extensions/disabled/check_acls.php:53 +#: ../../enterprise/extensions/disabled/check_acls.php:140 +#: ../../godmode/menu.php:141 +msgid "Users management" +msgstr "" + +#: ../../enterprise/extensions/disabled/check_acls.php:54 +#: ../../enterprise/extensions/disabled/check_acls.php:141 +msgid "Database management" +msgstr "" + +#: ../../enterprise/extensions/disabled/check_acls.php:55 +#: ../../enterprise/extensions/disabled/check_acls.php:142 +msgid "Alerts management" +msgstr "" + +#: ../../enterprise/extensions/disabled/check_acls.php:56 +#: ../../enterprise/extensions/disabled/check_acls.php:143 +msgid "Reports reading" +msgstr "" + +#: ../../enterprise/extensions/disabled/check_acls.php:57 +#: ../../enterprise/extensions/disabled/check_acls.php:144 +msgid "Reports writing" +msgstr "" + +#: ../../enterprise/extensions/disabled/check_acls.php:58 +#: ../../enterprise/extensions/disabled/check_acls.php:145 +msgid "Reports management" +msgstr "" + +#: ../../enterprise/extensions/disabled/check_acls.php:59 +#: ../../enterprise/extensions/disabled/check_acls.php:146 +msgid "Events reading" +msgstr "" + +#: ../../enterprise/extensions/disabled/check_acls.php:60 +#: ../../enterprise/extensions/disabled/check_acls.php:147 +msgid "Events writing" +msgstr "" + +#: ../../enterprise/extensions/disabled/check_acls.php:61 +#: ../../enterprise/extensions/disabled/check_acls.php:148 +msgid "Events management" +msgstr "" + +#: ../../enterprise/extensions/disabled/check_acls.php:62 +#: ../../enterprise/extensions/disabled/check_acls.php:149 +msgid "Systems management" +msgstr "" + +#: ../../enterprise/extensions/disabled/check_acls.php:63 +#: ../../enterprise/extensions/disabled/check_acls.php:150 +#: ../../enterprise/godmode/setup/setup_metaconsole.php:276 +#: ../../enterprise/godmode/servers/HA_cluster.php:177 +#: ../../godmode/users/user_list.php:483 ../../godmode/users/user_list.php:664 +#: ../../operation/search_users.php:62 +msgid "Admin" +msgstr "" + +#: ../../enterprise/extensions/disabled/check_acls.php:112 +msgid "There are no defined users" +msgstr "" + +#: ../../enterprise/extensions/disabled/check_acls.php:134 +#: ../../godmode/menu.php:133 +msgid "Module tags" +msgstr "" + +#: ../../enterprise/extensions/disabled/check_acls.php:197 +msgid "ACL module tags for the modules in this agent" +msgstr "" + +#: ../../enterprise/extensions/disabled/check_acls.php:208 +msgid "Only admin users can see this section." +msgstr "" + +#: ../../enterprise/extensions/disabled/check_acls.php:215 +msgid "Check ACL" +msgstr "" + +#: ../../enterprise/extensions/translate_string.php:168 +#: ../../enterprise/extensions/translate_string.php:380 +msgid "Translate string" +msgstr "" + +#: ../../enterprise/extensions/vmware.php:46 +msgid "Failed to initialize VMware extension." +msgstr "" + +#: ../../enterprise/extensions/vmware.php:89 +msgid "VMware View" +msgstr "" + +#: ../../enterprise/extensions/csv_import_group/main.php:23 +#: ../../enterprise/extensions/csv_import_group.php:69 +msgid "CSV import group" +msgstr "" + +#: ../../enterprise/extensions/csv_import_group/main.php:48 +#, php-format +msgid "Created group %s" +msgstr "" + +#: ../../enterprise/extensions/csv_import_group/main.php:49 +#, php-format +msgid "Could not create group %s" +msgstr "" + +#: ../../enterprise/extensions/csv_import_group/main.php:56 +msgid "File processed" +msgstr "" + +#: ../../enterprise/extensions/csv_import_group/main.php:59 +msgid "Please syncronize groups to nodes" +msgstr "" + +#: ../../enterprise/extensions/csv_import_group/main.php:68 +#: ../../enterprise/tools/ipam/ipam_supernet_config.php:701 +#: ../../enterprise/tools/ipam/ipam_list.php:447 +#: ../../enterprise/tools/ipam/ipam_vlan_config.php:316 +msgid "The CSV file must have the fields in the following order: " +msgstr "" + +#: ../../enterprise/extensions/csv_import_group/main.php:84 +#: ../../enterprise/include/class/CSVImportAgents.class.php:146 +#: ../../enterprise/tools/ipam/ipam_network.php:115 +#: ../../enterprise/tools/ipam/ipam_supernet_config.php:719 +#: ../../enterprise/tools/ipam/ipam_list.php:50 +#: ../../enterprise/tools/ipam/ipam_vlan_config.php:393 +msgid "Upload file" +msgstr "" + +#: ../../enterprise/extensions/csv_import_group/main.php:87 +#: ../../enterprise/include/class/DeploymentCenter.class.php:1400 +#: ../../enterprise/include/class/CSVImportAgents.class.php:163 +#: ../../enterprise/tools/ipam/ipam_network.php:124 +#: ../../enterprise/tools/ipam/ipam_supernet_config.php:728 +#: ../../enterprise/tools/ipam/ipam_list.php:59 +#: ../../enterprise/tools/ipam/ipam_vlan_config.php:402 +msgid "Separator" +msgstr "" + +#: ../../enterprise/extensions/csv_import_group/main.php:100 +#: ../../enterprise/tools/ipam/ipam_network.php:137 +#: ../../enterprise/tools/ipam/ipam_supernet_config.php:741 +#: ../../enterprise/tools/ipam/ipam_list.php:72 +#: ../../enterprise/tools/ipam/ipam_vlan_config.php:415 +msgid "Upload CSV file" +msgstr "" + +#: ../../enterprise/extensions/csv_import_group/main.php:105 +#: ../../enterprise/include/class/CSVImportAgents.class.php:198 +#: ../../include/functions_filemanager.php:853 +msgid "Go" +msgstr "" + +#: ../../enterprise/extensions/resource_registration/functions.php:61 +#, php-format +msgid "Error create '%s' policy, the name exist and there aren't free name." +msgstr "" + +#: ../../enterprise/extensions/resource_registration/functions.php:69 +#, php-format +msgid "Warning create '%s' policy, the name exist, the policy have a name %s." +msgstr "" + +#: ../../enterprise/extensions/resource_registration/functions.php:78 +msgid "Error the policy haven't name." +msgstr "" + +#: ../../enterprise/extensions/resource_registration/functions.php:99 +#, php-format +msgid "Success create '%s' policy." +msgstr "" + +#: ../../enterprise/extensions/resource_registration/functions.php:100 +#, php-format +msgid "Error create '%s' policy." +msgstr "" + +#: ../../enterprise/extensions/resource_registration/functions.php:142 +#, php-format +msgid "Error add '%s' agent. The agent does not exist" +msgstr "" + +#: ../../enterprise/extensions/resource_registration/functions.php:147 +#, php-format +msgid "Success add '%s' agent." +msgstr "" + +#: ../../enterprise/extensions/resource_registration/functions.php:148 +#, php-format +msgid "Error add '%s' agent." +msgstr "" + +#: ../../enterprise/extensions/resource_registration/functions.php:167 +msgid "The collection does not exist" +msgstr "" + +#: ../../enterprise/extensions/resource_registration/functions.php:172 +#, php-format +msgid "Success add '%s' collection." +msgstr "" + +#: ../../enterprise/extensions/resource_registration/functions.php:173 +#, php-format +msgid "Error add '%s' collection." +msgstr "" + +#: ../../enterprise/extensions/resource_registration/functions.php:191 +#, php-format +msgid "Success add '%s' agent plugin." +msgstr "" + +#: ../../enterprise/extensions/resource_registration/functions.php:192 +#, php-format +msgid "Error add '%s' agent plugin." +msgstr "" + +#: ../../enterprise/extensions/resource_registration/functions.php:205 +msgid "Error add the module, haven't type." +msgstr "" + +#: ../../enterprise/extensions/resource_registration/functions.php:411 +#: ../../enterprise/extensions/resource_registration/functions.php:480 +#: ../../enterprise/extensions/resource_registration/functions.php:581 +#: ../../enterprise/extensions/resource_registration/functions.php:637 +msgid "Error add the module, error in tag component." +msgstr "" + +#: ../../enterprise/extensions/resource_registration/functions.php:693 +msgid "Error add the module plugin importation, plugin is not registered" +msgstr "" + +#: ../../enterprise/extensions/resource_registration/functions.php:703 +#, php-format +msgid "Success add '%s' module." +msgstr "" + +#: ../../enterprise/extensions/resource_registration/functions.php:704 +#, php-format +msgid "Error add '%s' module." +msgstr "" + +#: ../../enterprise/extensions/resource_registration/functions.php:718 +#, php-format +msgid "Error add the alert, the template '%s' don't exist." +msgstr "" + +#: ../../enterprise/extensions/resource_registration/functions.php:731 +#: ../../enterprise/extensions/resource_registration/functions.php:749 +#, php-format +msgid "Error add the alert, the module '%s' don't exist." +msgstr "" + +#: ../../enterprise/extensions/resource_registration/functions.php:771 +#, php-format +msgid "Success add '%s' alert." +msgstr "" + +#: ../../enterprise/extensions/resource_registration/functions.php:772 +#, php-format +msgid "Error add '%s' alert." +msgstr "" + +#: ../../enterprise/extensions/resource_registration/functions.php:798 +#, php-format +msgid "Error add the alert, the action '%s' don't exist." +msgstr "" + +#: ../../enterprise/extensions/resource_registration/functions.php:817 +#, php-format +msgid "Success add '%s' action." +msgstr "" + +#: ../../enterprise/extensions/resource_registration/functions.php:818 +#: ../../extensions/resource_registration.php:436 +#: ../../extensions/resource_registration.php:458 +#: ../../extensions/resource_registration.php:469 +#, php-format +msgid "Error add '%s' action." +msgstr "" + +#: ../../enterprise/extensions/resource_registration/functions.php:854 +msgid "The inventory module does not exist" +msgstr "" + +#: ../../enterprise/extensions/resource_registration/functions.php:859 +#, php-format +msgid "Success add '%s' inventory module." +msgstr "" + +#: ../../enterprise/extensions/resource_registration/functions.php:860 +#, php-format +msgid "Error add '%s' inventory module." +msgstr "" + +#: ../../enterprise/extensions/vmware/vmware_view.php:61 +msgid "Top 5 VMs CPU Usage" +msgstr "" + +#: ../../enterprise/extensions/vmware/vmware_view.php:70 +msgid "Top 5 VMs Memory Usage" +msgstr "" + +#: ../../enterprise/extensions/vmware/vmware_view.php:82 +msgid "Top 5 VMs Provisioning Usage" +msgstr "" + +#: ../../enterprise/extensions/vmware/vmware_view.php:91 +msgid "Top 5 VMs Network Usage" +msgstr "" + +#: ../../enterprise/extensions/vmware/vmware_view.php:684 +msgid "Host ESX" +msgstr "" + +#: ../../enterprise/extensions/vmware/vmware_view.php:1009 +#: ../../enterprise/include/functions_services.php:1972 +#: ../../enterprise/operation/agentes/policy_view.php:479 +#: ../../enterprise/operation/agentes/policy_view.php:485 +#: ../../enterprise/operation/agentes/tag_view.php:942 +#: ../../enterprise/operation/agentes/tag_view.php:948 +#: ../../enterprise/operation/agentes/tag_view.php:989 +#: ../../enterprise/operation/agentes/tag_view.php:995 +#: ../../mobile/operation/modules.php:548 +#: ../../mobile/operation/modules.php:571 +#: ../../mobile/operation/modules.php:611 +#: ../../mobile/operation/modules.php:634 ../../include/functions.php:1360 +#: ../../include/functions.php:1399 ../../include/functions_modules.php:2883 +#: ../../include/functions_modules.php:2889 +#: ../../include/functions_modules.php:4098 +#: ../../include/functions_modules.php:4130 ../../include/functions_ui.php:3828 +#: ../../include/functions_ui.php:3894 ../../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:1579 +#: ../../operation/agentes/status_monitor.php:1585 +#: ../../operation/agentes/status_monitor.php:1662 +#: ../../operation/agentes/status_monitor.php:1668 +#: ../../operation/agentes/pandora_networkmap.view.php:1772 +#: ../../operation/agentes/pandora_networkmap.view.php:1780 +#: ../../operation/search_modules.php:114 +#: ../../operation/search_modules.php:141 ../../operation/events/events.php:543 +#: ../../operation/events/events.php:620 ../../operation/events/events.php:646 +msgid "NORMAL" +msgstr "" + +#: ../../enterprise/extensions/vmware/vmware_view.php:1014 +#: ../../enterprise/include/functions_services.php:1980 +#: ../../enterprise/operation/agentes/policy_view.php:473 +#: ../../enterprise/operation/agentes/policy_view.php:490 +#: ../../enterprise/operation/agentes/tag_view.php:956 +#: ../../enterprise/operation/agentes/tag_view.php:962 +#: ../../enterprise/operation/agentes/tag_view.php:1005 +#: ../../enterprise/operation/agentes/tag_view.php:1011 +#: ../../mobile/operation/modules.php:554 +#: ../../mobile/operation/modules.php:579 +#: ../../mobile/operation/modules.php:617 +#: ../../mobile/operation/modules.php:642 ../../include/functions.php:1348 +#: ../../include/functions.php:1380 ../../include/functions_modules.php:2877 +#: ../../include/functions_modules.php:2893 +#: ../../include/functions_modules.php:4102 +#: ../../include/functions_modules.php:4122 ../../include/functions_ui.php:3834 +#: ../../include/functions_ui.php:3904 ../../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:1593 +#: ../../operation/agentes/status_monitor.php:1601 +#: ../../operation/agentes/status_monitor.php:1678 +#: ../../operation/agentes/status_monitor.php:1684 +#: ../../operation/agentes/pandora_networkmap.view.php:1766 +#: ../../operation/agentes/pandora_networkmap.view.php:1785 +#: ../../operation/search_modules.php:120 +#: ../../operation/search_modules.php:149 ../../operation/events/events.php:518 +#: ../../operation/events/events.php:626 ../../operation/events/events.php:651 +msgid "CRITICAL" +msgstr "" + +#: ../../enterprise/extensions/vmware/vmware_view.php:1019 +#: ../../enterprise/include/functions_services.php:1988 +#: ../../enterprise/include/functions_login.php:34 +#: ../../enterprise/operation/agentes/policy_view.php:476 +#: ../../enterprise/operation/agentes/policy_view.php:495 +#: ../../enterprise/operation/agentes/tag_view.php:970 +#: ../../enterprise/operation/agentes/tag_view.php:976 +#: ../../enterprise/operation/agentes/tag_view.php:1021 +#: ../../enterprise/operation/agentes/tag_view.php:1027 +#: ../../mobile/operation/modules.php:560 +#: ../../mobile/operation/modules.php:587 +#: ../../mobile/operation/modules.php:623 +#: ../../mobile/operation/modules.php:650 ../../include/functions.php:1351 +#: ../../include/functions.php:1387 ../../include/functions_modules.php:2880 +#: ../../include/functions_modules.php:2897 +#: ../../include/functions_modules.php:4106 +#: ../../include/functions_modules.php:4138 ../../include/functions_ui.php:3822 +#: ../../include/functions_ui.php:3899 ../../include/class/Tree.class.php:633 +#: ../../include/class/NetworkMap.class.php:2805 +#: ../../include/lib/Module.php:560 ../../include/functions_events.php:78 +#: ../../include/functions_events.php:112 +#: ../../include/functions_events.php:182 +#: ../../operation/agentes/status_monitor.php:1609 +#: ../../operation/agentes/status_monitor.php:1617 +#: ../../operation/agentes/status_monitor.php:1694 +#: ../../operation/agentes/status_monitor.php:1700 +#: ../../operation/agentes/pandora_networkmap.view.php:1769 +#: ../../operation/agentes/pandora_networkmap.view.php:1790 +#: ../../operation/search_modules.php:126 +#: ../../operation/search_modules.php:157 ../../operation/events/events.php:548 +#: ../../operation/events/events.php:614 ../../operation/events/events.php:668 +msgid "WARNING" +msgstr "" + +#: ../../enterprise/extensions/vmware/vmware_view.php:1024 +#: ../../enterprise/include/functions_services.php:2003 +#: ../../enterprise/operation/agentes/policy_view.php:485 +#: ../../enterprise/operation/agentes/policy_view.php:490 +#: ../../enterprise/operation/agentes/policy_view.php:495 +#: ../../enterprise/operation/agentes/tag_view.php:989 +#: ../../enterprise/operation/agentes/tag_view.php:995 +#: ../../enterprise/operation/agentes/tag_view.php:1005 +#: ../../enterprise/operation/agentes/tag_view.php:1011 +#: ../../enterprise/operation/agentes/tag_view.php:1021 +#: ../../enterprise/operation/agentes/tag_view.php:1027 +#: ../../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:1364 +#: ../../include/functions.php:1390 ../../include/functions_modules.php:2889 +#: ../../include/functions_modules.php:2893 +#: ../../include/functions_modules.php:2897 +#: ../../include/functions_modules.php:4110 ../../include/functions_ui.php:3841 +#: ../../include/functions_ui.php:3919 ../../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:1625 +#: ../../operation/agentes/status_monitor.php:1633 +#: ../../operation/agentes/status_monitor.php:1662 +#: ../../operation/agentes/status_monitor.php:1668 +#: ../../operation/agentes/status_monitor.php:1678 +#: ../../operation/agentes/status_monitor.php:1684 +#: ../../operation/agentes/status_monitor.php:1694 +#: ../../operation/agentes/status_monitor.php:1700 +#: ../../operation/agentes/pandora_networkmap.view.php:1780 +#: ../../operation/agentes/pandora_networkmap.view.php:1785 +#: ../../operation/agentes/pandora_networkmap.view.php:1790 +#: ../../operation/search_modules.php:132 +#: ../../operation/search_modules.php:141 +#: ../../operation/search_modules.php:149 +#: ../../operation/search_modules.php:157 ../../operation/events/events.php:554 +#: ../../operation/events/events.php:633 ../../operation/events/events.php:673 +msgid "UNKNOWN" +msgstr "" + +#: ../../enterprise/extensions/vmware/vmware_view.php:1036 +msgid "CPU Usage" +msgstr "" + +#: ../../enterprise/extensions/vmware/vmware_view.php:1046 +msgid "Memory Usage" +msgstr "" + +#: ../../enterprise/extensions/vmware/vmware_view.php:1056 +msgid "Disk I/O Rate" +msgstr "" + +#: ../../enterprise/extensions/vmware/vmware_view.php:1066 +msgid "Network Usage" +msgstr "" + +#: ../../enterprise/extensions/vmware/vmware_view.php:1169 +msgid "Settings updated " +msgstr "" + +#: ../../enterprise/extensions/vmware/vmware_view.php:1171 +msgid "No changes in settings " +msgstr "" + +#: ../../enterprise/extensions/vmware/vmware_view.php:1179 +msgid "CPU usage graphs" +msgstr "" + +#: ../../enterprise/extensions/vmware/vmware_view.php:1180 +#: ../../enterprise/extensions/vmware/vmware_view.php:1186 +#: ../../enterprise/extensions/vmware/vmware_view.php:1192 +#: ../../enterprise/extensions/vmware/vmware_view.php:1198 +msgid "Force minimum value" +msgstr "" + +#: ../../enterprise/extensions/vmware/vmware_view.php:1182 +#: ../../enterprise/extensions/vmware/vmware_view.php:1188 +#: ../../enterprise/extensions/vmware/vmware_view.php:1194 +#: ../../enterprise/extensions/vmware/vmware_view.php:1200 +msgid "Force maximum value" +msgstr "" + +#: ../../enterprise/extensions/vmware/vmware_view.php:1185 +msgid "Memory usage graphs" +msgstr "" + +#: ../../enterprise/extensions/vmware/vmware_view.php:1191 +msgid "Provisioning Usage graphs" +msgstr "" + +#: ../../enterprise/extensions/vmware/vmware_view.php:1197 +msgid "Network usage graphs" +msgstr "" + +#: ../../enterprise/extensions/vmware/vmware_view.php:1208 +msgid "Map items" +msgstr "" + +#: ../../enterprise/extensions/vmware/vmware_view.php:1209 +msgid "Show datastores" +msgstr "" + +#: ../../enterprise/extensions/vmware/vmware_view.php:1216 +msgid "Show ESXis" +msgstr "" + +#: ../../enterprise/extensions/vmware/vmware_view.php:1223 +msgid "Show VMs" +msgstr "" + +#: ../../enterprise/extensions/vmware/vmware_view.php:1230 +msgid "Font size (px)" +msgstr "" + +#: ../../enterprise/extensions/vmware/vmware_view.php:1232 +msgid "Node radius (px)" +msgstr "" + +#: ../../enterprise/extensions/vmware/vmware_view.php:1234 +msgid "Node separation (rate)" +msgstr "" + +#: ../../enterprise/extensions/vmware/vmware_view.php:1239 +msgid "" +"Looking for VMware configuration? You can configure several tasks using " +"Discovery Applications." +msgstr "" + +#: ../../enterprise/extensions/vmware/vmware_view.php:1240 +#: ../../enterprise/extensions/vmware/vmware_view.php:1526 +#: ../../enterprise/include/class/SAPView.class.php:626 +msgid "this link" +msgstr "" + +#: ../../enterprise/extensions/vmware/vmware_view.php:1247 +msgid "Graph settings" +msgstr "" + +#: ../../enterprise/extensions/vmware/vmware_view.php:1252 +msgid "Map settings" +msgstr "" + +#: ../../enterprise/extensions/vmware/vmware_view.php:1296 +#: ../../enterprise/extensions/vmware/vmware_view.php:1368 +msgid "Welcome" +msgstr "" + +#: ../../enterprise/extensions/vmware/vmware_view.php:1306 +#: ../../enterprise/extensions/vmware/vmware_view.php:1348 +#: ../../include/lib/Dashboard/Widgets/network_map.php:323 +#: ../../operation/gis_maps/render_view.php:178 +msgid "Map" +msgstr "" + +#: ../../enterprise/extensions/vmware/vmware_view.php:1316 +#: ../../enterprise/extensions/vmware/vmware_view.php:1353 +#: ../../godmode/users/configure_user.php:1100 +#: ../../mobile/include/functions_web.php:22 +#: ../../include/class/OrderInterpreter.class.php:219 +#: ../../operation/users/user_edit.php:363 ../../operation/menu.php:339 +msgid "Dashboard" +msgstr "" + +#: ../../enterprise/extensions/vmware/vmware_view.php:1327 +msgid "ESX Detail" +msgstr "" + +#: ../../enterprise/extensions/vmware/vmware_view.php:1358 +msgid "ESX details" +msgstr "" + +#: ../../enterprise/extensions/vmware/vmware_view.php:1363 +msgid "VMware view options" +msgstr "" + +#: ../../enterprise/extensions/vmware/vmware_view.php:1399 +msgid "VMWare" +msgstr "" + +#: ../../enterprise/extensions/vmware/vmware_view.php:1504 +msgid "" +"Some ESX Hosts are not up to date, please check VMware plugin configuration." +msgstr "" + +#: ../../enterprise/extensions/vmware/vmware_view.php:1506 +msgid "VMware plugin is working." +msgstr "" + +#: ../../enterprise/extensions/vmware/vmware_view.php:1515 +msgid "View VMware map" +msgstr "" + +#: ../../enterprise/extensions/vmware/vmware_view.php:1516 +msgid "View VMware dashboard" +msgstr "" + +#: ../../enterprise/extensions/vmware/vmware_view.php:1517 +msgid "View ESX Host statistics from" +msgstr "" + +#: ../../enterprise/extensions/vmware/vmware_view.php:1524 +msgid "There are no VMware information detected in this environment." +msgstr "" + +#: ../../enterprise/extensions/vmware/vmware_view.php:1525 +msgid "You can configure several tasks using Discovery Applications at " +msgstr "" + +#: ../../enterprise/extensions/vmware/vmware_view.php:1737 +#: ../../enterprise/include/class/DeploymentCenter.class.php:482 +#: ../../enterprise/include/class/DeploymentCenter.class.php:490 +#: ../../enterprise/include/class/DeploymentCenter.class.php:498 +#: ../../enterprise/include/class/DeploymentCenter.class.php:657 +#: ../../enterprise/include/class/SAP.app.php:371 +msgid "here" +msgstr "" + +#: ../../enterprise/extensions/vmware/vmware_view.php:1734 +#, php-format +msgid "" +"This map is a quick representation of all your VMware entities detected. You " +"can create a custom VMware map by defining a network map based on your " +"VMware discovery task %s" +msgstr "" + +#: ../../enterprise/extensions/vmware/vmware_view.php:1744 +msgid "Show Datastores" +msgstr "" + +#: ../../enterprise/extensions/vmware/vmware_view.php:1747 +msgid "Show ESX" +msgstr "" + +#: ../../enterprise/extensions/vmware/vmware_view.php:1750 +msgid "Show VM" +msgstr "" + +#: ../../enterprise/extensions/vmware/vmware_view.php:1754 +#: ../../godmode/reporting/visual_console_builder.wizard.php:215 +msgid "Font" +msgstr "" + +#: ../../enterprise/extensions/vmware/vmware_view.php:1758 +#: ../../enterprise/godmode/agentes/pandora_networkmap_empty.editor.php:152 +#: ../../godmode/agentes/pandora_networkmap_empty.editor.php:154 +#: ../../operation/agentes/pandora_networkmap.editor.php:311 +#: ../../operation/agentes/pandora_networkmap.view.php:106 +msgid "Node radius" +msgstr "" + +#: ../../enterprise/extensions/vmware/vmware_view.php:1762 +#: ../../operation/agentes/pandora_networkmap.editor.php:425 +#: ../../operation/agentes/pandora_networkmap.view.php:247 +msgid "Node separation" +msgstr "" + +#: ../../enterprise/extensions/vmware/vmware_view.php:1772 +msgid "View options" +msgstr "" + +#: ../../enterprise/extensions/vmware/vmware_manager.php:227 +msgid "Power Status: " +msgstr "" + +#: ../../enterprise/extensions/vmware/vmware_manager.php:269 +#: ../../operation/agentes/pandora_networkmap.view.php:1805 +msgid "Status: " +msgstr "" + +#: ../../enterprise/extensions/vmware/vmware_manager.php:273 +msgid "Change Status" +msgstr "" + +#: ../../enterprise/extensions/resource_exportation/functions.php:20 +msgid "Export agents" +msgstr "" + +#: ../../enterprise/extensions/resource_exportation/functions.php:21 +#: ../../enterprise/include/functions_reporting.php:8136 +#: ../../extensions/resource_exportation.php:435 +#: ../../extensions/resource_exportation.php:438 +#: ../../operation/agentes/exportdata.php:389 +msgid "Export" +msgstr "" + +#: ../../enterprise/extensions/csv_import_group.php:50 +#, php-format +msgid "" +"This node is configured with centralized mode. All group information is read " +"only. Go to %s to import the CSV." +msgstr "" + +#: ../../enterprise/extensions/csv_import_group.php:83 +msgid "CSV group import" +msgstr "" + +#: ../../enterprise/load_html_extra.php:202 +msgid "Activate license" +msgstr "" + +#: ../../enterprise/load_html_extra.php:203 +msgid "Your request key is:" +msgstr "" + +#: ../../enterprise/load_html_extra.php:206 +#, php-format +msgid "" +"You can activate it manually here or " +"automatically filling the form below:" +msgstr "" + +#: ../../enterprise/load_html_extra.php:213 +msgid "Auth Key:" +msgstr "" + +#: ../../enterprise/load_html_extra.php:221 +#: ../../enterprise/load_html_extra.php:240 +msgid "Online validation" +msgstr "" + +#: ../../enterprise/load_html_extra.php:233 +msgid "ERROR:" +msgstr "" + +#: ../../enterprise/load_html_extra.php:233 +msgid "When connecting to licence server." +msgstr "" + +#: ../../enterprise/godmode/modules/configure_local_component.php:141 +msgid "Update Local Component" +msgstr "" + +#: ../../enterprise/godmode/modules/configure_local_component.php:143 +msgid "Create Local Component" +msgstr "" + +#: ../../enterprise/godmode/modules/configure_local_component.php:162 +#: ../../godmode/modules/manage_network_components_form_common.php:50 +#: ../../godmode/alerts/configure_alert_template.php:1134 +msgid "Wizard level" +msgstr "" + +#: ../../enterprise/godmode/modules/configure_local_component.php:192 +msgid "Throw unknown events" +msgstr "" + +#: ../../enterprise/godmode/modules/configure_local_component.php:292 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:489 +#: ../../godmode/modules/manage_network_components_form_common.php:146 +#: ../../godmode/massive/massive_edit_modules.php:552 +msgid "Dynamic Interval" +msgstr "" + +#: ../../enterprise/godmode/modules/configure_local_component.php:298 +#: ../../godmode/modules/manage_network_components_form_common.php:152 +#: ../../godmode/agentes/module_manager_editor_common.php:691 +msgid "Advanced options Dynamic Threshold" +msgstr "" + +#: ../../enterprise/godmode/modules/configure_local_component.php:303 +#: ../../godmode/modules/manage_network_components_form_common.php:157 +msgid "Dynamic Min. " +msgstr "" + +#: ../../enterprise/godmode/modules/configure_local_component.php:305 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:493 +#: ../../godmode/modules/manage_network_components_form_common.php:159 +#: ../../godmode/massive/massive_edit_modules.php:556 +msgid "Dynamic Max." +msgstr "" + +#: ../../enterprise/godmode/modules/configure_local_component.php:307 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:495 +#: ../../godmode/modules/manage_network_components_form_common.php:161 +#: ../../godmode/massive/massive_edit_modules.php:558 +msgid "Dynamic Two Tailed: " +msgstr "" + +#: ../../enterprise/godmode/modules/configure_local_component.php:310 +#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:289 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:498 +#: ../../godmode/modules/manage_network_components_form_common.php:164 +#: ../../godmode/massive/massive_edit_modules.php:561 +#: ../../include/functions_treeview.php:96 +#: ../../include/functions_alerts.php:679 +msgid "Warning status" +msgstr "" + +#: ../../enterprise/godmode/modules/configure_local_component.php:311 +#: ../../enterprise/godmode/modules/configure_local_component.php:354 +#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:293 +#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:342 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:502 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:593 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:828 +#: ../../godmode/modules/manage_network_components_form_common.php:165 +#: ../../godmode/modules/manage_network_components_form_common.php:206 +#: ../../godmode/modules/manage_network_components_form_wizard.php:387 +#: ../../godmode/modules/manage_network_components_form_wizard.php:415 +#: ../../godmode/massive/massive_edit_modules.php:565 +#: ../../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:5287 +#: ../../include/functions_treeview.php:92 +#: ../../include/functions_treeview.php:104 +#: ../../include/functions_alerts.php:676 +#: ../../include/lib/Dashboard/Widgets/top_n.php:282 +msgid "Min." +msgstr "" + +#: ../../enterprise/godmode/modules/configure_local_component.php:320 +#: ../../enterprise/godmode/modules/configure_local_component.php:363 +#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:308 +#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:357 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:517 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:608 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:830 +#: ../../godmode/modules/manage_network_components_form_common.php:174 +#: ../../godmode/modules/manage_network_components_form_common.php:215 +#: ../../godmode/modules/manage_network_components_form_wizard.php:389 +#: ../../godmode/modules/manage_network_components_form_wizard.php:424 +#: ../../godmode/agentes/module_manager_editor_common.php:428 +#: ../../godmode/agentes/module_manager_editor_common.php:489 +#: ../../godmode/massive/massive_edit_modules.php:580 +#: ../../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:5288 +#: ../../include/functions_treeview.php:92 +#: ../../include/functions_treeview.php:104 +#: ../../include/functions_alerts.php:675 +#: ../../include/lib/Dashboard/Widgets/top_n.php:281 +msgid "Max." +msgstr "" + +#: ../../enterprise/godmode/modules/configure_local_component.php:329 +#: ../../enterprise/godmode/modules/configure_local_component.php:372 +#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:323 +#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:372 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:532 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:623 +#: ../../godmode/modules/manage_network_components_form_common.php:183 +#: ../../godmode/modules/manage_network_components_form_common.php:224 +#: ../../godmode/agentes/module_manager_editor_common.php:444 +#: ../../godmode/agentes/module_manager_editor_common.php:505 +#: ../../godmode/massive/massive_edit_modules.php:595 +#: ../../godmode/massive/massive_edit_modules.php:686 +#: ../../include/functions_treeview.php:90 +#: ../../include/functions_treeview.php:102 +msgid "Str." +msgstr "" + +#: ../../enterprise/godmode/modules/configure_local_component.php:343 +#: ../../enterprise/godmode/modules/configure_local_component.php:386 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:567 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:658 +#: ../../godmode/modules/manage_network_components_form_common.php:196 +#: ../../godmode/modules/manage_network_components_form_common.php:237 +#: ../../godmode/modules/manage_network_components_form_wizard.php:400 +#: ../../godmode/modules/manage_network_components_form_wizard.php:442 +#: ../../godmode/agentes/module_manager_editor_common.php:464 +#: ../../godmode/agentes/module_manager_editor_common.php:526 +#: ../../godmode/massive/massive_edit_modules.php:630 +#: ../../godmode/massive/massive_edit_modules.php:722 +msgid "Percentage" +msgstr "" + +#: ../../enterprise/godmode/modules/configure_local_component.php:353 +#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:338 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:589 +#: ../../godmode/modules/manage_network_components_form_common.php:205 +#: ../../godmode/massive/massive_edit_modules.php:652 +#: ../../include/functions_treeview.php:108 +#: ../../include/functions_alerts.php:680 +msgid "Critical status" +msgstr "" + +#: ../../enterprise/godmode/modules/configure_local_component.php:391 +#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:232 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:873 +#: ../../godmode/modules/manage_network_components_form_common.php:243 +#: ../../godmode/agentes/module_manager_editor_common.php:780 +#: ../../godmode/massive/massive_edit_modules.php:930 +msgid "FF threshold" +msgstr "" + +#: ../../enterprise/godmode/modules/configure_local_component.php:394 +#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:235 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:941 +#: ../../godmode/modules/manage_network_components_form_common.php:246 +#: ../../godmode/agentes/module_manager_editor_common.php:782 +#: ../../godmode/massive/massive_edit_modules.php:994 +msgid "Keep counters" +msgstr "" + +#: ../../enterprise/godmode/modules/configure_local_component.php:402 +#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:252 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:885 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:900 +#: ../../godmode/modules/manage_network_components_form_common.php:260 +#: ../../godmode/agentes/module_manager_editor_common.php:799 +#: ../../godmode/massive/massive_edit_modules.php:938 +#: ../../godmode/massive/massive_edit_modules.php:953 +msgid "All state changing" +msgstr "" + +#: ../../enterprise/godmode/modules/configure_local_component.php:417 +#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:274 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:884 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:910 +#: ../../godmode/modules/manage_network_components_form_common.php:276 +#: ../../godmode/agentes/module_manager_editor_common.php:821 +#: ../../godmode/massive/massive_edit_modules.php:937 +#: ../../godmode/massive/massive_edit_modules.php:963 +msgid "Each state changing" +msgstr "" + +#: ../../enterprise/godmode/modules/configure_local_component.php:418 +#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:275 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:911 +#: ../../godmode/modules/manage_network_components_form_common.php:277 +#: ../../godmode/agentes/module_manager_editor_common.php:822 +#: ../../godmode/massive/massive_edit_modules.php:964 +msgid "To normal" +msgstr "" + +#: ../../enterprise/godmode/modules/configure_local_component.php:427 +#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:289 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:921 +#: ../../godmode/modules/manage_network_components_form_common.php:286 +#: ../../godmode/agentes/module_manager_editor_common.php:836 +#: ../../godmode/massive/massive_edit_modules.php:974 +msgid "To warning" +msgstr "" + +#: ../../enterprise/godmode/modules/configure_local_component.php:436 +#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:303 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:931 +#: ../../godmode/modules/manage_network_components_form_common.php:295 +#: ../../godmode/agentes/module_manager_editor_common.php:850 +#: ../../godmode/massive/massive_edit_modules.php:984 +msgid "To critical" +msgstr "" + +#: ../../enterprise/godmode/modules/configure_local_component.php:447 +#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:318 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:966 +#: ../../enterprise/include/functions_reporting_csv.php:2175 +#: ../../godmode/modules/manage_network_components_form_common.php:305 +#: ../../godmode/agentes/module_manager_editor_common.php:532 +#: ../../godmode/massive/massive_edit_modules.php:1042 +#: ../../include/functions_reporting.php:4129 +msgid "Historical data" +msgstr "" + +#: ../../enterprise/godmode/modules/configure_local_component.php:450 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:963 +#: ../../godmode/agentes/module_manager_editor_common.php:880 +#: ../../godmode/massive/massive_edit_modules.php:1028 +msgid "FF timeout" +msgstr "" + +#: ../../enterprise/godmode/modules/configure_local_component.php:458 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:964 +#: ../../godmode/massive/massive_edit_modules.php:1038 +msgid "" +"Timeout in secs from start of flip flop counting. If this value is exceeded, " +"FF counter is reset. Set to 0 for no timeout." +msgstr "" + +#: ../../enterprise/godmode/modules/configure_local_component.php:459 +msgid "This value can be set only in the async modules." +msgstr "" + +#: ../../enterprise/godmode/modules/configure_local_component.php:461 +#: ../../enterprise/include/functions_reporting_csv.php:1201 +#: ../../godmode/modules/manage_network_components_form_common.php:308 +#: ../../godmode/agentes/module_manager_editor_common.php:664 +#: ../../include/rest-api/models/VisualConsole/Items/Percentile.php:480 +#: ../../include/functions_reporting.php:6615 +msgid "Min. Value" +msgstr "" + +#: ../../enterprise/godmode/modules/configure_local_component.php:461 +#: ../../godmode/modules/manage_network_components_form_common.php:309 +msgid "Any value below this number is discarted" +msgstr "" + +#: ../../enterprise/godmode/modules/configure_local_component.php:466 +#: ../../enterprise/include/functions_reporting_csv.php:1256 +#: ../../godmode/modules/manage_network_components_form_common.php:310 +#: ../../godmode/agentes/module_manager_editor_common.php:668 +#: ../../include/rest-api/models/VisualConsole/Items/Percentile.php:492 +#: ../../include/functions_reporting.php:6611 +msgid "Max. Value" +msgstr "" + +#: ../../enterprise/godmode/modules/configure_local_component.php:466 +#: ../../godmode/modules/manage_network_components_form_common.php:311 +msgid "Any value over this number is discarted" +msgstr "" + +#: ../../enterprise/godmode/modules/configure_local_component.php:473 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:716 +#: ../../godmode/modules/manage_network_components_form_plugin.php:49 +#: ../../godmode/modules/manage_network_components_form_network.php:178 +#: ../../godmode/modules/manage_network_components_form_wmi.php:55 +#: ../../godmode/agentes/module_manager_editor_common.php:649 +#: ../../godmode/massive/massive_edit_modules.php:780 +#: ../../godmode/setup/snmp_wizard.php:43 +msgid "Post process" +msgstr "" + +#: ../../enterprise/godmode/modules/configure_local_component.php:500 +#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:180 +msgid "Load a basic structure on data configuration" +msgstr "" + +#: ../../enterprise/godmode/modules/configure_local_component.php:503 +#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:183 +msgid "Check the correct structure of the data configuration" +msgstr "" + +#: ../../enterprise/godmode/modules/configure_local_component.php:506 +#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:196 +msgid "First line must be \"module_begin\"" +msgstr "" + +#: ../../enterprise/godmode/modules/configure_local_component.php:507 +#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:197 +msgid "Data configuration is empty" +msgstr "" + +#: ../../enterprise/godmode/modules/configure_local_component.php:508 +#: ../../enterprise/godmode/modules/configure_local_component.php:512 +#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:198 +#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:202 +msgid "Last line must be \"module_end\"" +msgstr "" + +#: ../../enterprise/godmode/modules/configure_local_component.php:509 +#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:199 +msgid "" +"Name is missed. Please add a line with \"module_name yourmodulename\" to " +"data configuration" +msgstr "" + +#: ../../enterprise/godmode/modules/configure_local_component.php:510 +#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:200 +msgid "" +"Type is missed. Please add a line with \"module_type yourmoduletype\" to " +"data configuration" +msgstr "" + +#: ../../enterprise/godmode/modules/configure_local_component.php:511 +#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:201 +msgid "Type is wrong. Please set a correct type" +msgstr "" + +#: ../../enterprise/godmode/modules/configure_local_component.php:514 +#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:204 +msgid "Error in the syntax, please check the data configuration." +msgstr "" + +#: ../../enterprise/godmode/modules/configure_local_component.php:515 +#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:205 +msgid "Data configuration are built correctly" +msgstr "" + +#: ../../enterprise/godmode/modules/configure_local_component.php:523 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:1016 +#: ../../godmode/modules/manage_network_components_form_common.php:323 +#: ../../godmode/agentes/module_manager_editor_common.php:1093 +#: ../../godmode/massive/massive_edit_modules.php:1092 +msgid "Critical instructions" +msgstr "" + +#: ../../enterprise/godmode/modules/configure_local_component.php:523 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:1016 +#: ../../godmode/modules/manage_network_components_form_common.php:323 +#: ../../godmode/massive/massive_edit_modules.php:1092 +msgid "Instructions when the status is critical" +msgstr "" + +#: ../../enterprise/godmode/modules/configure_local_component.php:528 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:1020 +#: ../../godmode/modules/manage_network_components_form_common.php:327 +#: ../../godmode/agentes/module_manager_editor_common.php:1098 +#: ../../godmode/massive/massive_edit_modules.php:1096 +msgid "Warning instructions" +msgstr "" + +#: ../../enterprise/godmode/modules/configure_local_component.php:528 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:1020 +#: ../../godmode/modules/manage_network_components_form_common.php:327 +#: ../../godmode/massive/massive_edit_modules.php:1096 +msgid "Instructions when the status is warning" +msgstr "" + +#: ../../enterprise/godmode/modules/configure_local_component.php:533 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:1024 +#: ../../godmode/modules/manage_network_components_form_common.php:331 +#: ../../godmode/agentes/module_manager_editor_common.php:1102 +#: ../../godmode/massive/massive_edit_modules.php:1100 +msgid "Unknown instructions" +msgstr "" + +#: ../../enterprise/godmode/modules/configure_local_component.php:533 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:1024 +#: ../../godmode/modules/manage_network_components_form_common.php:331 +#: ../../godmode/massive/massive_edit_modules.php:1100 +msgid "Instructions when the status is unknown" +msgstr "" + +#: ../../enterprise/godmode/modules/configure_local_component.php:542 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:984 +#: ../../godmode/modules/manage_network_components_form_common.php:342 +#: ../../godmode/agentes/module_manager_editor_common.php:1143 +#: ../../godmode/massive/massive_edit_modules.php:1060 +#: ../../godmode/module_library/module_library_view.php:123 +msgid "Category" +msgstr "" + +#: ../../enterprise/godmode/modules/configure_local_component.php:561 +#: ../../godmode/modules/manage_network_components_form_common.php:362 +#: ../../godmode/agentes/module_manager_editor_common.php:906 +msgid "Tags available" +msgstr "" + +#: ../../enterprise/godmode/modules/configure_local_component.php:579 +#: ../../godmode/modules/manage_network_components_form_common.php:380 +#: ../../godmode/agentes/module_manager_editor_common.php:1001 +msgid "Add tags to module" +msgstr "" + +#: ../../enterprise/godmode/modules/configure_local_component.php:580 +#: ../../godmode/modules/manage_network_components_form_common.php:381 +#: ../../godmode/agentes/module_manager_editor_common.php:1010 +msgid "Delete tags to module" +msgstr "" + +#: ../../enterprise/godmode/modules/configure_local_component.php:581 +#: ../../enterprise/godmode/setup/setup_auth.php:174 +#: ../../enterprise/godmode/setup/setup_auth.php:458 +#: ../../enterprise/godmode/setup/setup_auth.php:1253 +#: ../../godmode/modules/manage_network_components_form_common.php:382 +#: ../../godmode/agentes/module_manager_editor_common.php:1014 +msgid "Tags selected" +msgstr "" + +#: ../../enterprise/godmode/modules/configure_local_component.php:603 +msgid "Macros" +msgstr "" + +#: ../../enterprise/godmode/modules/configure_local_component.php:639 +#: ../../godmode/servers/plugin.php:492 +#: ../../include/class/ManageNetScanScripts.class.php:636 +msgid "Default value" +msgstr "" + +#: ../../enterprise/godmode/modules/configure_local_component.php:655 +#: ../../godmode/servers/plugin.php:554 +#: ../../include/class/ManageNetScanScripts.class.php:724 +msgid "Add macro" +msgstr "" + +#: ../../enterprise/godmode/modules/configure_local_component.php:663 +#: ../../godmode/servers/plugin.php:568 +#: ../../include/class/ManageNetScanScripts.class.php:742 +msgid "Delete macro" +msgstr "" + +#: ../../enterprise/godmode/modules/configure_local_component.php:978 +#: ../../godmode/modules/manage_network_components_form_common.php:706 +#: ../../godmode/agentes/module_manager_editor_common.php:1994 +msgid "Normal Status" +msgstr "" + +#: ../../enterprise/godmode/modules/configure_local_component.php:979 +#: ../../godmode/modules/manage_network_components_form_common.php:707 +#: ../../godmode/agentes/module_manager_editor_common.php:1995 +msgid "Warning Status" +msgstr "" + +#: ../../enterprise/godmode/modules/configure_local_component.php:980 +#: ../../godmode/modules/manage_network_components_form_common.php:708 +#: ../../godmode/agentes/module_manager_editor_common.php:1996 +msgid "Critical Status" +msgstr "" + +#: ../../enterprise/godmode/modules/configure_local_component.php:983 +#: ../../godmode/modules/manage_network_components_form_common.php:710 +#: ../../godmode/agentes/module_manager_editor_common.php:1998 +msgid "Please introduce a maximum warning higher than the minimun warning" +msgstr "" + +#: ../../enterprise/godmode/modules/configure_local_component.php:985 +#: ../../godmode/modules/manage_network_components_form_common.php:711 +#: ../../godmode/agentes/module_manager_editor_common.php:1999 +msgid "Please introduce a maximum critical higher than the minimun critical" +msgstr "" + +#: ../../enterprise/godmode/modules/configure_local_component.php:987 +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:458 +#: ../../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:117 +msgid "Successfully created inventory module" +msgstr "" + +#: ../../enterprise/godmode/modules/manage_inventory_modules.php:118 +msgid "Error creating inventory module" +msgstr "" + +#: ../../enterprise/godmode/modules/manage_inventory_modules.php:143 +#: ../../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:144 +#: ../../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:162 +#: ../../enterprise/godmode/modules/manage_inventory_modules.php:183 +#: ../../enterprise/godmode/agentes/inventory_manager.php:100 +msgid "Successfully deleted inventory module" +msgstr "" + +#: ../../enterprise/godmode/modules/manage_inventory_modules.php:163 +#: ../../enterprise/godmode/modules/manage_inventory_modules.php:184 +#: ../../enterprise/godmode/agentes/inventory_manager.php:102 +msgid "Error deleting inventory module" +msgstr "" + +#: ../../enterprise/godmode/modules/manage_inventory_modules.php:217 +#: ../../enterprise/godmode/modules/manage_inventory_modules.php:250 +#: ../../enterprise/godmode/modules/local_components.php:443 +#: ../../godmode/modules/manage_nc_groups.php:194 +#: ../../godmode/modules/manage_network_components.php:578 +#: ../../godmode/modules/manage_network_templates.php:114 +msgid "Successfully multiple deleted" +msgstr "" + +#: ../../enterprise/godmode/modules/manage_inventory_modules.php:218 +#: ../../enterprise/godmode/modules/manage_inventory_modules.php:251 +#: ../../enterprise/godmode/modules/local_components.php:444 +#: ../../godmode/modules/manage_nc_groups.php:195 +#: ../../godmode/modules/manage_network_components.php:579 +#: ../../godmode/modules/manage_network_templates.php:115 +msgid "Not deleted. Error deleting multiple data" +msgstr "" + +#: ../../enterprise/godmode/modules/manage_inventory_modules.php:275 +#: ../../enterprise/godmode/modules/manage_inventory_modules_form.php:114 +msgid "Interpreter" +msgstr "" + +#: ../../enterprise/godmode/modules/manage_inventory_modules.php:284 +msgid "No inventory modules defined" +msgstr "" + +#: ../../enterprise/godmode/modules/manage_inventory_modules.php:305 +msgid "Local module" +msgstr "" + +#: ../../enterprise/godmode/modules/manage_inventory_modules.php:307 +msgid "Remote/Local" +msgstr "" + +#: ../../enterprise/godmode/modules/manage_inventory_modules.php:353 +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:355 +msgid "You can find more information at:" +msgstr "" + +#: ../../enterprise/godmode/modules/local_components.php:141 +#: ../../godmode/modules/manage_network_components.php:196 +#: ../../godmode/alerts/configure_alert_template.php:191 +#, php-format +msgid "Successfully created from %s" +msgstr "" + +#: ../../enterprise/godmode/modules/local_components.php:142 +#: ../../enterprise/godmode/modules/local_components.php:318 +#: ../../enterprise/godmode/policies/policies.php:170 +#: ../../enterprise/godmode/policies/policy_external_alerts.php:124 +#: ../../enterprise/godmode/policies/policy_external_alerts.php:127 +#: ../../enterprise/godmode/alerts/alert_inventory_builder.php:77 +#: ../../enterprise/godmode/setup/setup_metaconsole.php:126 +#: ../../enterprise/godmode/reporting/reporting_builder.template_editor.php:48 +#: ../../enterprise/godmode/servers/manage_export.php:112 +#: ../../enterprise/godmode/servers/manage_export.php:119 +#: ../../enterprise/godmode/servers/credential_boxes_satellite.php:81 +#: ../../enterprise/include/ajax/servers.ajax.php:198 +#: ../../enterprise/operation/agentes/transactional_map.php:135 +#: ../../enterprise/tools/ipam/ipam_action.php:153 +#: ../../enterprise/tools/ipam/ipam_network_location_config.php:51 +#: ../../godmode/modules/manage_nc_groups.php:85 +#: ../../godmode/modules/manage_network_components.php:199 +#: ../../godmode/modules/manage_network_components.php:427 +#: ../../godmode/users/configure_user.php:473 +#: ../../godmode/agentes/configurar_agente.php:351 +#: ../../godmode/agentes/configurar_agente.php:876 +#: ../../godmode/agentes/planned_downtime.editor.php:406 +#: ../../godmode/alerts/alert_commands.php:559 +#: ../../godmode/alerts/configure_alert_template.php:192 +#: ../../godmode/alerts/configure_alert_template.php:527 +#: ../../godmode/alerts/alert_list.php:165 ../../godmode/setup/news.php:67 +#: ../../godmode/setup/gis.php:49 +#: ../../godmode/reporting/reporting_builder.item_editor.php:5828 +#: ../../include/functions_alerts.php:2748 +#: ../../include/functions_planned_downtimes.php:112 +#: ../../include/functions_planned_downtimes.php:827 +#: ../../operation/agentes/pandora_networkmap.php:140 +#: ../../operation/agentes/pandora_networkmap.php:375 +msgid "Could not be created" +msgstr "" + +#: ../../enterprise/godmode/modules/local_components.php:157 +msgid "Local component management" +msgstr "" + +#: ../../enterprise/godmode/modules/local_components.php:263 +#, php-format +msgid "" +"This node is configured with centralized mode. All local components are read " +"only. Go to %s to manage them." +msgstr "" + +#: ../../enterprise/godmode/modules/local_components.php:326 +#: ../../godmode/modules/manage_network_components.php:438 +#: ../../include/class/ManageNetScanScripts.class.php:228 +msgid "Created successfully" +msgstr "" + +#: ../../enterprise/godmode/modules/local_components.php:393 +#: ../../enterprise/godmode/agentes/agent_disk_conf_editor.php:112 +#: ../../enterprise/godmode/policies/policy_modules.php:1250 +#: ../../enterprise/godmode/policies/policies.php:212 +#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:123 +#: ../../enterprise/godmode/alerts/alert_inventory_builder.php:133 +#: ../../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:330 +#: ../../enterprise/include/ajax/servers.ajax.php:331 +#: ../../enterprise/operation/agentes/transactional_map.php:160 +#: ../../enterprise/tools/ipam/ipam_action.php:253 +#: ../../enterprise/tools/ipam/ipam_massive.php:48 +#: ../../godmode/modules/manage_network_components.php:525 +#: ../../godmode/agentes/status_monitor_custom_fields.php:57 +#: ../../godmode/agentes/planned_downtime.editor.php:408 +#: ../../godmode/alerts/configure_alert_command.php:145 +#: ../../godmode/alerts/alert_templates.php:157 +#: ../../godmode/alerts/configure_alert_template.php:555 +#: ../../godmode/alerts/alert_list.php:95 +#: ../../godmode/alerts/alert_list.php:313 ../../godmode/setup/gis.php:41 +#: ../../include/functions_alerts.php:2748 +#: ../../include/functions_planned_downtimes.php:122 +#: ../../operation/agentes/pandora_networkmap.php:216 +#: ../../operation/agentes/pandora_networkmap.php:508 +#: ../../operation/snmpconsole/snmp_view.php:175 +msgid "Could not be updated" +msgstr "" + +#: ../../enterprise/godmode/modules/local_components.php:401 +#: ../../godmode/modules/manage_network_components.php:534 +#: ../../include/class/ManageNetScanScripts.class.php:315 +msgid "Updated successfully" +msgstr "" + +#: ../../enterprise/godmode/modules/local_components.php:547 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2852 +#: ../../godmode/modules/manage_network_components.php:659 +msgid "Free Search" +msgstr "" + +#: ../../enterprise/godmode/modules/local_components.php:548 +msgid "Search by name, description or data, list matches." +msgstr "" + +#: ../../enterprise/godmode/modules/local_components.php:690 +#: ../../enterprise/godmode/policies/policy_modules.php:1555 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:627 +#: ../../enterprise/include/class/NetworkConfigManager.class.php:628 +#: ../../godmode/modules/manage_network_components.php:859 +#: ../../godmode/modules/manage_network_components.php:860 +#: ../../godmode/agentes/module_manager.php:1166 +#: ../../godmode/snmpconsole/snmp_alert.php:1347 +#: ../../godmode/snmpconsole/snmp_alert.php:1348 +#: ../../godmode/alerts/alert_actions.php:435 +#: ../../godmode/alerts/alert_templates.php:432 +#: ../../godmode/reporting/reporting_builder.php:1194 +msgid "Duplicate" +msgstr "" + +#: ../../enterprise/godmode/modules/manage_inventory_modules_form.php:71 +#: ../../enterprise/godmode/agentes/inventory_manager.php:165 +msgid "Inventory module error" +msgstr "" + +#: ../../enterprise/godmode/modules/manage_inventory_modules_form.php:116 +msgid "Left blank for the LOCAL inventory modules" +msgstr "" + +#: ../../enterprise/godmode/modules/manage_inventory_modules_form.php:118 +msgid "Block Mode" +msgstr "" + +#: ../../enterprise/godmode/modules/manage_inventory_modules_form.php:121 +#: ../../godmode/massive/massive_standby_alerts.php:223 +#: ../../godmode/massive/massive_standby_alerts.php:258 +#: ../../godmode/massive/massive_enable_disable_alerts.php:195 +#: ../../godmode/massive/massive_enable_disable_alerts.php:230 +#: ../../include/class/ModuleTemplates.class.php:1208 +msgid "Format" +msgstr "" + +#: ../../enterprise/godmode/modules/manage_inventory_modules_form.php:122 +msgid "separate fields with " +msgstr "" + +#: ../../enterprise/godmode/modules/manage_inventory_modules_form.php:125 +#: ../../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:126 +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 "" + +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:89 +msgid "Agent Autoconfiguration Information" +msgstr "" + +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:90 +msgid "" +"You must click the Create or Update buttom for a correct configuration!!!" +msgstr "" + +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:98 +msgid "" +"Cannot create autoconfiguration from read only console, please create from " +"metaconsole (centralized management)" +msgstr "" + +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:139 +msgid "Cannot create autoconfiguration in metaconsole" +msgstr "" + +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:147 +msgid "Cannot create unnamed autoconfiguration" +msgstr "" + +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:157 +msgid "" +"Cannot udpate autoconfiguration from read only console, please create from " +"metaconsole (centralized management)" +msgstr "" + +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:194 +msgid "Cannot update autoconfiguration" +msgstr "" + +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:204 +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:243 +msgid "" +"Cannot modify autoconfiguration from read only console, please create from " +"metaconsole (centralized management)" +msgstr "" + +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:319 +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.php:92 +msgid "Agent autoconfiguration list" +msgstr "" + +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:362 +msgid "Autoconfiguration" +msgstr "" + +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:377 +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.php:138 +#: ../../godmode/modules/manage_network_components_form_wizard.php:655 +#: ../../godmode/agentes/planned_downtime.list.php:614 +#: ../../godmode/agentes/planned_downtime.editor.php:609 +#: ../../include/functions_reporting_html.php:6172 +msgid "Execution" +msgstr "" + +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:380 +#: ../../enterprise/operation/agentes/transactional_map.php:398 +#: ../../godmode/menu.php:47 ../../godmode/setup/setup_ehorus.php:112 +#: ../../godmode/setup/setup_integria.php:567 +#: ../../include/ajax/events.php:2419 ../../operation/users/user_edit.php:712 +#: ../../operation/users/user_edit.php:758 ../../operation/menu.php:430 +msgid "Start" +msgstr "" + +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:397 +#: ../../godmode/agentes/planned_downtime.editor.php:628 +msgid "Configure the time" +msgstr "" + +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:403 +#: ../../godmode/agentes/planned_downtime.editor.php:647 +msgid "Type Periodicity:" +msgstr "" + +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:405 +#: ../../enterprise/include/functions_cron.php:501 +#: ../../enterprise/include/lib/NetworkManager.php:178 +#: ../../godmode/agentes/module_manager_editor_prediction.php:183 +#: ../../include/functions_netflow.php:1850 +msgid "Daily" +msgstr "" + +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:406 +#: ../../enterprise/include/functions_cron.php:502 +#: ../../enterprise/include/lib/NetworkManager.php:182 +#: ../../godmode/agentes/module_manager_editor_prediction.php:181 +#: ../../godmode/agentes/planned_downtime.editor.php:649 +msgid "Weekly" +msgstr "" + +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:407 +#: ../../enterprise/include/functions_cron.php:503 +#: ../../godmode/agentes/module_manager_editor_prediction.php:182 +#: ../../godmode/agentes/planned_downtime.editor.php:650 +msgid "Monthly" +msgstr "" + +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:436 +#: ../../godmode/agentes/planned_downtime.editor.php:679 +msgid "From day:" +msgstr "" + +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:454 +#: ../../godmode/agentes/planned_downtime.editor.php:712 +msgid "From hour:" +msgstr "" + +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:497 +#: ../../include/class/CredentialStore.class.php:959 +msgid "Extra" +msgstr "" + +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:525 +msgid "Add rule" +msgstr "" + +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:530 +msgid "Rules" +msgstr "" + +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:552 +msgid "New group" +msgstr "" + +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:584 +#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:402 +msgid "Launch custom event" +msgstr "" + +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:585 +#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:403 +msgid "Launch alert action" +msgstr "" + +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:586 +#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:404 +#: ../../enterprise/operation/agentes/manage_transmap_creation_phases_data.php:74 +msgid "Launch script" +msgstr "" + +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:630 +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:644 +#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:28 +#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:315 +#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:330 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:552 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:573 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:643 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:664 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:695 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:704 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:763 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:786 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:807 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:811 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:822 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:842 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:867 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:883 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:944 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:967 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:985 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:991 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:1004 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:1032 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:1134 +#: ../../godmode/massive/massive_edit_agents.php:669 +#: ../../godmode/massive/massive_edit_agents.php:694 +#: ../../godmode/massive/massive_edit_agents.php:711 +#: ../../godmode/massive/massive_edit_agents.php:725 +#: ../../godmode/massive/massive_edit_agents.php:749 +#: ../../godmode/massive/massive_edit_agents.php:859 +#: ../../godmode/massive/massive_edit_agents.php:906 +#: ../../godmode/massive/massive_edit_agents.php:981 +#: ../../godmode/massive/massive_edit_agents.php:985 +#: ../../godmode/massive/massive_edit_agents.php:994 +#: ../../godmode/massive/massive_edit_agents.php:1022 +#: ../../godmode/massive/massive_edit_agents.php:1091 +#: ../../godmode/massive/massive_edit_modules.php:615 +#: ../../godmode/massive/massive_edit_modules.php:637 +#: ../../godmode/massive/massive_edit_modules.php:706 +#: ../../godmode/massive/massive_edit_modules.php:728 +#: ../../godmode/massive/massive_edit_modules.php:759 +#: ../../godmode/massive/massive_edit_modules.php:768 +#: ../../godmode/massive/massive_edit_modules.php:827 +#: ../../godmode/massive/massive_edit_modules.php:845 +#: ../../godmode/massive/massive_edit_modules.php:864 +#: ../../godmode/massive/massive_edit_modules.php:868 +#: ../../godmode/massive/massive_edit_modules.php:879 +#: ../../godmode/massive/massive_edit_modules.php:899 +#: ../../godmode/massive/massive_edit_modules.php:924 +#: ../../godmode/massive/massive_edit_modules.php:936 +#: ../../godmode/massive/massive_edit_modules.php:997 +#: ../../godmode/massive/massive_edit_modules.php:1043 +#: ../../godmode/massive/massive_edit_modules.php:1061 +#: ../../godmode/massive/massive_edit_modules.php:1067 +#: ../../godmode/massive/massive_edit_modules.php:1080 +#: ../../godmode/massive/massive_edit_modules.php:1108 +#: ../../godmode/massive/massive_edit_modules.php:1212 +#: ../../include/functions_html.php:1850 ../../include/functions_html.php:1951 +#: ../../include/functions_html.php:2089 +msgid "No change" +msgstr "" + +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:648 +#: ../../godmode/agentes/agent_manager.php:496 +#: ../../godmode/reporting/reporting_builder.item_editor.php:73 +#: ../../include/functions_events.php:4655 +#: ../../operation/agentes/estado_generalagente.php:408 +msgid "Secondary groups" +msgstr "" + +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:695 +#: ../../godmode/massive/massive_edit_agents.php:804 +#: ../../include/functions_html.php:6068 +msgid "Add secondary groups" +msgstr "" + +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:702 +#: ../../godmode/massive/massive_edit_agents.php:830 +#: ../../include/functions_html.php:6081 +msgid "Remove secondary groups" +msgstr "" + +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:739 +#: ../../enterprise/godmode/policies/configure_policy.php:47 +msgid "Add policy" +msgstr "" + +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:754 +#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:380 +msgid "Op" +msgstr "" + +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:771 +msgid "Extra configuration block" +msgstr "" + +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:773 +msgid "" +"Put here any extra configuration you want to be applied to any new agent " +"matching previously defined rules" +msgstr "" + +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:806 +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:837 +msgid "Extra actions" +msgstr "" + +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:827 +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:1145 +msgid "Add extra action" +msgstr "" + +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:1010 +msgid "Add new rule" +msgstr "" + +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:1012 +#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:188 +msgid "Update rule" +msgstr "" + +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:1232 +msgid "Update extra action" +msgstr "" + +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.php:47 +msgid "Cannot delete autoconfiguration" +msgstr "" + +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.php:62 +#: ../../godmode/setup/license.php:151 ../../godmode/setup/license.php:154 +msgid "enabled" +msgstr "" + +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.php:63 +msgid "enabling" +msgstr "" + +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.php:65 +#: ../../godmode/setup/license.php:151 ../../godmode/setup/license.php:154 +msgid "disabled" +msgstr "" + +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.php:66 +msgid "disabling" +msgstr "" + +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.php:71 +#, php-format +msgid "Successfully %s" +msgstr "" + +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.php:72 +#, php-format +msgid "Error %s" +msgstr "" + +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.php:156 +msgid "There are no defined autoconfigurations" +msgstr "" + +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.php:173 +#: ../../enterprise/godmode/agentes/plugins_manager.php:195 +#: ../../enterprise/godmode/agentes/plugins_manager.php:262 +#: ../../enterprise/godmode/policies/policy_alerts.php:722 +#: ../../enterprise/include/functions_HA_cluster.php:61 +#: ../../enterprise/include/lib/Metaconsole/Node.php:1113 +#: ../../enterprise/include/lib/Metaconsole/Node.php:1114 +#: ../../godmode/extensions.php:257 ../../godmode/users/user_list.php:745 +#: ../../godmode/alerts/alert_list.list.php:1045 +#: ../../operation/users/user_edit_notifications.php:64 +msgid "Enable" +msgstr "" + +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.php:173 +#: ../../enterprise/godmode/agentes/plugins_manager.php:195 +#: ../../enterprise/godmode/agentes/plugins_manager.php:271 +#: ../../enterprise/godmode/policies/policy_alerts.php:714 +#: ../../enterprise/include/functions_HA_cluster.php:58 +#: ../../enterprise/include/lib/Metaconsole/Node.php:1139 +#: ../../enterprise/include/lib/Metaconsole/Node.php:1140 +#: ../../godmode/extensions.php:259 ../../godmode/users/user_list.php:740 +#: ../../godmode/alerts/alert_list.list.php:1018 +#: ../../include/functions.php:3357 +msgid "Disable" +msgstr "" + +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.php:194 +msgid "Add new configuration definition" +msgstr "" + +#: ../../enterprise/godmode/agentes/collections.agents.php:36 +msgid "Show Agent >" +msgstr "" + +#: ../../enterprise/godmode/agentes/collections.agents.php:120 +#: ../../enterprise/godmode/agentes/collections.agents.php:124 +msgid "This collection has not been added to any agents" +msgstr "" + +#: ../../enterprise/godmode/agentes/configurar_agente.php:112 +#: ../../enterprise/godmode/policies/policy.php:82 +#: ../../enterprise/include/functions_policies.php:3832 +#: ../../godmode/agentes/configurar_agente.php:718 +msgid "Agent plugins" +msgstr "" + +#: ../../enterprise/godmode/agentes/collection_manager.php:37 +#: ../../enterprise/operation/agentes/collection_view.php:60 +msgid "This agent have not a remote configuration, please set it." +msgstr "" + +#: ../../enterprise/godmode/agentes/collection_manager.php:77 +msgid "Succesful add the collection" +msgstr "" + +#: ../../enterprise/godmode/agentes/collection_manager.php:78 +msgid "Unsuccesful add the collection" +msgstr "" + +#: ../../enterprise/godmode/agentes/collection_manager.php:129 +#: ../../enterprise/godmode/agentes/collection_manager.php:130 +#: ../../enterprise/godmode/agentes/collection_manager.php:254 +#: ../../enterprise/operation/agentes/policy_view.php:195 +#: ../../enterprise/operation/agentes/policy_view.php:196 +#: ../../enterprise/operation/agentes/collection_view.php:108 +msgid "Show files" +msgstr "" + +#: ../../enterprise/godmode/agentes/collection_manager.php:196 +#: ../../enterprise/operation/agentes/agent_inventory.php:280 +#: ../../enterprise/operation/log/log_viewer.php:1256 +#: ../../enterprise/operation/log/log_viewer.php:1264 +#: ../../enterprise/operation/inventory/inventory.php:475 +#: ../../enterprise/operation/inventory/inventory.php:518 +#: ../../godmode/reporting/reporting_builder.php:1260 +#: ../../include/functions_reporting.php:2809 +msgid "No data found." +msgstr "" + +#: ../../enterprise/godmode/agentes/collection_manager.php:205 +#: ../../enterprise/godmode/agentes/inventory_manager.php:219 +#: ../../enterprise/operation/agentes/collection_view.php:74 +#: ../../godmode/agentes/module_manager.php:841 +#: ../../godmode/snmpconsole/snmp_alert.php:1254 +#: ../../godmode/reporting/reporting_builder.list_items.php:371 +#: ../../godmode/reporting/graph_builder.graph_editor.php:211 +#: ../../include/ajax/alert_list.ajax.php:285 ../../include/ajax/module.php:974 +#: ../../operation/agentes/status_monitor.php:1302 +msgid "P." +msgstr "" + +#: ../../enterprise/godmode/agentes/collection_manager.php:207 +#: ../../enterprise/operation/agentes/policy_view.php:164 +#: ../../enterprise/operation/agentes/collection_view.php:76 +msgid "Dir" +msgstr "" + +#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:24 +msgid "Capacity planning" +msgstr "" + +#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:25 +#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:166 +#: ../../enterprise/godmode/services/services.elements.php:95 +#: ../../enterprise/godmode/services/services.elements.php:178 +#: ../../enterprise/include/functions_visual_map_editor.php:30 +#: ../../enterprise/include/functions_visual_map_editor.php:41 +#: ../../enterprise/include/functions_visual_map_editor.php:54 +#: ../../enterprise/include/functions_visual_map_editor.php:85 +#: ../../enterprise/include/functions_visual_map.php:539 +#: ../../enterprise/include/rest-api/models/VisualConsole/Items/Service.php:288 +#: ../../enterprise/include/functions_reporting.php:6137 +#: ../../enterprise/include/functions_services.php:1712 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3921 +#: ../../include/lib/Dashboard/Widgets/service_map.php:307 +msgid "Service" +msgstr "" + +#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:26 +msgid "Synthetic arithmetic" +msgstr "" + +#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:27 +msgid "Synthetic average" +msgstr "" + +#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:28 +msgid "Trending module" +msgstr "" + +#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:114 +msgid "Fixed value" +msgstr "" + +#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:119 +msgid "Add module to operation as add" +msgstr "" + +#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:120 +msgid "Add module to operations as deduct" +msgstr "" + +#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:121 +msgid "Add module to operations as multiplicate " +msgstr "" + +#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:122 +msgid "Add module to operations as divide" +msgstr "" + +#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:123 +msgid "Remove selected modules" +msgstr "" + +#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:128 +msgid "Add module to average operation" +msgstr "" + +#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:129 +msgid "Remove selected modules from operations stack" +msgstr "" + +#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:144 +msgid "Move down selected modules" +msgstr "" + +#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:145 +msgid "Move up selected modules" +msgstr "" + +#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:175 +msgid "Select Service" +msgstr "" + +#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:188 +msgid "Netflow filter" +msgstr "" + +#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:197 +msgid "Select filter" +msgstr "" + +#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:207 +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:222 +#: ../../enterprise/include/functions_ui.php:92 +msgid "Target" +msgstr "" + +#: ../../enterprise/godmode/agentes/inventory_manager.php:257 +#: ../../enterprise/include/functions_ipam.php:1384 +#: ../../enterprise/operation/services/services.list.php:639 +#: ../../godmode/wizards/DiscoveryTaskList.class.php:584 +#: ../../godmode/wizards/DiscoveryTaskList.class.php:674 +#: ../../include/ajax/module.php:1052 ../../include/functions_ui.php:1162 +#: ../../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 "" + +#: ../../enterprise/godmode/agentes/collections.data.php:395 +#: ../../enterprise/godmode/agentes/collections.editor.php:109 +#: ../../enterprise/godmode/agentes/collections.php:92 +#, php-format +msgid "" +"This console is not manager of this environment, please manage this feature " +"from %s." +msgstr "" + +#: ../../enterprise/godmode/agentes/collections.data.php:410 +msgid "Please go to the metaconsole and apply this collection" +msgstr "" + +#: ../../enterprise/godmode/agentes/collections.data.php:414 +msgid "Error: The collection directory does not exist." +msgstr "" + +#: ../../enterprise/godmode/agentes/collections.editor.php:98 +msgid "Files in " +msgstr "" + +#: ../../enterprise/godmode/agentes/plugins_manager.php:66 +msgid "Plug-in updated succesfully" +msgstr "" + +#: ../../enterprise/godmode/agentes/plugins_manager.php:66 +msgid "Plug-in cannot be updated" +msgstr "" + +#: ../../enterprise/godmode/agentes/plugins_manager.php:74 +msgid "Plug-in deleted succesfully" +msgstr "" + +#: ../../enterprise/godmode/agentes/plugins_manager.php:74 +msgid "Plug-in cannot be deleted" +msgstr "" + +#: ../../enterprise/godmode/agentes/plugins_manager.php:87 +#: ../../enterprise/godmode/policies/policy_plugins.php:90 +msgid "Plug-in added succesfully" +msgstr "" + +#: ../../enterprise/godmode/agentes/plugins_manager.php:87 +#: ../../enterprise/godmode/policies/policy_plugins.php:91 +msgid "Plug-in cannot be added" +msgstr "" + +#: ../../enterprise/godmode/agentes/plugins_manager.php:97 +msgid "Plug-in enabled succesfully" +msgstr "" + +#: ../../enterprise/godmode/agentes/plugins_manager.php:98 +msgid "Plug-in cannot be enabled" +msgstr "" + +#: ../../enterprise/godmode/agentes/plugins_manager.php:109 +msgid "Plug-in disabled succesfully" +msgstr "" + +#: ../../enterprise/godmode/agentes/plugins_manager.php:110 +msgid "Plug-in cannot be disabled" +msgstr "" + +#: ../../enterprise/godmode/agentes/plugins_manager.php:127 +#: ../../enterprise/godmode/policies/policy_plugins.php:109 +msgid "If enabled, allows to define a complex module plugin or log." +msgstr "" + +#: ../../enterprise/godmode/agentes/plugins_manager.php:142 +#: ../../enterprise/godmode/policies/policy_plugins.php:123 +msgid "New plug-in" +msgstr "" + +#: ../../enterprise/godmode/agentes/plugins_manager.php:192 +#: ../../enterprise/godmode/policies/policy_plugins.php:167 +#: ../../enterprise/godmode/policies/policies.php:535 +#: ../../godmode/menu.php:301 +msgid "Plugins" +msgstr "" + +#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:58 +#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:61 +msgid "The changes on this field are linked with the configuration data." +msgstr "" + +#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:67 +msgid "Using local component" +msgstr "" + +#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:76 +#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:96 +#: ../../godmode/agentes/module_manager_editor_common.php:118 +#: ../../godmode/agentes/module_manager_editor_common.php:135 +msgid "Manual setup" +msgstr "" + +#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:88 +#: ../../godmode/agentes/module_manager_editor_common.php:127 +msgid "No component was found" +msgstr "" + +#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:155 +msgid "Show configuration data" +msgstr "" + +#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:166 +msgid "Hide configuration data" +msgstr "" + +#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:174 +msgid "Data configuration" +msgstr "" + +#: ../../enterprise/godmode/agentes/agent_disk_conf_editor.php:121 +msgid "Error: The conf file of agent is not readble." +msgstr "" + +#: ../../enterprise/godmode/agentes/agent_disk_conf_editor.php:125 +msgid "Error: The conf file of agent is not writable." +msgstr "" + +#: ../../enterprise/godmode/agentes/agent_disk_conf_editor.php:178 +#: ../../enterprise/godmode/policies/policy_modules.php:387 +msgid "Add module" +msgstr "" + +#: ../../enterprise/godmode/agentes/agent_disk_conf_editor.php:213 +msgid "No module was found" +msgstr "" + +#: ../../enterprise/godmode/agentes/agent_disk_conf_editor.php:248 +msgid "Delete remote conf agent files" +msgstr "" + +#: ../../enterprise/godmode/agentes/agent_disk_conf_editor.php:249 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:349 +#: ../../godmode/agentes/agent_manager.php:534 +msgid "Delete remote configuration file" +msgstr "" + +#: ../../enterprise/godmode/agentes/agent_disk_conf_editor.php:249 +msgid "" +"Delete this conf file implies that for restore you must reactive remote " +"config in the local agent." +msgstr "" + +#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:98 +#: ../../godmode/agentes/module_manager_editor_common.php:238 +msgid "Delete module" +msgstr "" + +#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:127 +msgid "Run performance tests" +msgstr "" + +#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:138 +msgid "Target web site" +msgstr "" + +#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:140 +msgid "" +"The url specified in this field is mandatory to retrieve performance stats." +msgstr "" + +#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:154 +msgid "target web site (http://...)" +msgstr "" + +#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:161 +msgid "Execute tests from" +msgstr "" + +#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:177 +msgid "Browser" +msgstr "" + +#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:179 +msgid "" +"Support for IE and Edge browsers is experimental. Tests might not work as " +"expected." +msgstr "" + +#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:221 +msgid "Accept insecure certificates" +msgstr "" + +#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:223 +msgid "Only Selenium 3." +msgstr "" + +#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:349 +msgid "Paste your selenium test, exported as HTML, here" +msgstr "" + +#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:362 +msgid "Add file" +msgstr "" + +#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:370 +msgid "Upload your selenium test in html or side (only Selenium 3) format" +msgstr "" + +#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:398 +#: ../../enterprise/tools/ipam/ipam_excel.php:212 +#: ../../enterprise/tools/ipam/ipam_vlan_config.php:342 +#: ../../enterprise/tools/ipam/ipam_vlan_config.php:674 +#: ../../godmode/groups/configure_group.php:238 +#: ../../godmode/agentes/agent_manager.php:198 +#: ../../godmode/agentes/module_manager_editor_common.php:567 +#: ../../godmode/massive/massive_edit_agents.php:798 +msgid "Custom ID" +msgstr "" + +#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:454 +#: ../../godmode/agentes/module_manager.php:1105 +msgid "" +"The policy modules of data type will only update their intervals when policy " +"is applied." +msgstr "" + +#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:480 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:961 +#: ../../godmode/agentes/module_manager_editor_common.php:865 +#: ../../godmode/massive/massive_edit_modules.php:1014 +msgid "FF interval" +msgstr "" + +#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:496 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:962 +#: ../../godmode/massive/massive_edit_modules.php:1024 +msgid "Module execution flip flop time interval (in secs)." +msgstr "" + +#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:500 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:1057 +#: ../../enterprise/operation/agentes/manage_transmap_creation_phases_data.php:77 +#: ../../godmode/agentes/module_manager_editor_common.php:1138 +#: ../../godmode/massive/massive_edit_modules.php:1135 +msgid "Retries" +msgstr "" + +#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:515 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:1059 +#: ../../godmode/massive/massive_edit_modules.php:1137 +msgid "Number of retries that the module will attempt to run." +msgstr "" + +#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:574 +#: ../../enterprise/godmode/policies/policy_modules.php:417 +#: ../../godmode/agentes/module_manager_editor.php:750 +#: ../../godmode/agentes/module_manager_editor_common.php:1226 +msgid "Custom macros" +msgstr "" + +#: ../../enterprise/godmode/agentes/pandora_networkmap_empty.editor.php:93 +#: ../../godmode/agentes/pandora_networkmap_empty.editor.php:95 +msgid "Empty Network maps editor" +msgstr "" + +#: ../../enterprise/godmode/agentes/pandora_networkmap_empty.editor.php:102 +#: ../../enterprise/godmode/services/services.service.php:493 +#: ../../enterprise/godmode/services/services.elements.php:799 +#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:117 +#: ../../enterprise/godmode/reporting/visual_console_template.php:118 +#: ../../enterprise/operation/services/services.service.php:79 +#: ../../enterprise/operation/services/services.service_map.php:93 +#: ../../enterprise/operation/services/services.treeview_services.php:78 +#: ../../enterprise/operation/services/services.list.php:71 +#: ../../enterprise/operation/services/services.table_services.php:54 +#: ../../godmode/agentes/pandora_networkmap_empty.editor.php:104 +#: ../../godmode/reporting/visual_console_builder.php:878 +#: ../../godmode/reporting/map_builder.php:130 +#: ../../godmode/reporting/visual_console_favorite.php:127 +#: ../../operation/visual_console/view.php:226 +#: ../../operation/agentes/pandora_networkmap.editor.php:214 +#: ../../operation/agentes/pandora_networkmap.php:665 +#: ../../operation/menu.php:300 +msgid "Topology maps" +msgstr "" + +#: ../../enterprise/godmode/agentes/pandora_networkmap_empty.editor.php:106 +#: ../../godmode/agentes/pandora_networkmap_empty.editor.php:108 +#: ../../operation/agentes/pandora_networkmap.editor.php:218 +#: ../../operation/agentes/pandora_networkmap.php:669 +#: ../../operation/agentes/pandora_networkmap.view.php:2230 +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:256 +#: ../../operation/agentes/pandora_networkmap.view.php:2236 +msgid "Not found networkmap." +msgstr "" + +#: ../../enterprise/godmode/agentes/pandora_networkmap_empty.editor.php:173 +#: ../../godmode/agentes/pandora_networkmap_empty.editor.php:175 +#: ../../operation/agentes/pandora_networkmap.editor.php:445 +msgid "Save networkmap" +msgstr "" + +#: ../../enterprise/godmode/agentes/pandora_networkmap_empty.editor.php:184 +#: ../../godmode/agentes/pandora_networkmap_empty.editor.php:186 +#: ../../operation/agentes/pandora_networkmap.editor.php:456 +msgid "Update networkmap" +msgstr "" + +#: ../../enterprise/godmode/agentes/collections.php:65 +msgid "Success: recreate file" +msgstr "" + +#: ../../enterprise/godmode/agentes/collections.php:67 +msgid "Error: recreate file " +msgstr "" + +#: ../../enterprise/godmode/agentes/collections.php:82 +#: ../../enterprise/godmode/agentes/collections.php:123 +#: ../../enterprise/godmode/agentes/collections.php:232 +msgid "Collections Management" +msgstr "" + +#: ../../enterprise/godmode/agentes/collections.php:175 +msgid "Manager collection" +msgstr "" + +#: ../../enterprise/godmode/agentes/manage_config_remote.php:56 +msgid "Data Copy" +msgstr "" + +#: ../../enterprise/godmode/agentes/manage_config_remote.php:56 +msgid "Duplicate configuration" +msgstr "" + +#: ../../enterprise/godmode/agentes/manage_config_remote.php:78 +msgid "No source agent selected" +msgstr "" + +#: ../../enterprise/godmode/agentes/manage_config_remote.php:80 +msgid "No destination agent/s selected" +msgstr "" + +#: ../../enterprise/godmode/agentes/manage_config_remote.php:140 +#: ../../enterprise/godmode/agentes/manage_config_remote.php:152 +msgid "Copied " +msgstr "" + +#: ../../enterprise/godmode/agentes/manage_config_remote.php:140 +#: ../../enterprise/godmode/agentes/manage_config_remote.php:146 +#: ../../enterprise/godmode/agentes/manage_config_remote.php:158 +msgid " md5 file/s" +msgstr "" + +#: ../../enterprise/godmode/agentes/manage_config_remote.php:146 +#: ../../enterprise/godmode/agentes/manage_config_remote.php:158 +msgid "Error copying " +msgstr "" + +#: ../../enterprise/godmode/agentes/manage_config_remote.php:152 +msgid " config file/s" +msgstr "" + +#: ../../enterprise/godmode/agentes/manage_config_remote.php:225 +msgid "Source Group" +msgstr "" + +#: ../../enterprise/godmode/agentes/manage_config_remote.php:256 +msgid "Destination agent(s)" +msgstr "" + +#: ../../enterprise/godmode/agentes/manage_config_remote.php:268 +msgid "Source Agent" +msgstr "" + +#: ../../enterprise/godmode/agentes/manage_config_remote.php:293 +msgid "Replicate configuration" +msgstr "" + +#: ../../enterprise/godmode/agentes/manage_config_remote.php:314 +msgid "" +"The action to be performed cannot be reversed. Are you sure to continue?" +msgstr "" + +#: ../../enterprise/godmode/agentes/module_manager.php:48 +msgid "Create a new web analysis module" +msgstr "" + +#: ../../enterprise/godmode/policies/policy_plugins.php:38 +#: ../../enterprise/godmode/policies/policy_alerts.php:64 +#: ../../enterprise/godmode/policies/configure_policy.php:81 +#: ../../enterprise/godmode/policies/policy_modules.php:476 +#: ../../enterprise/godmode/policies/policy_queue.php:218 +#: ../../enterprise/godmode/policies/policies.php:268 +#: ../../enterprise/godmode/policies/policy_linking.php:117 +#: ../../enterprise/godmode/policies/policy_external_alerts.php:309 +#: ../../enterprise/godmode/policies/policy_inventory_modules.php:91 +#: ../../enterprise/godmode/policies/policy_collections.php:50 +#: ../../enterprise/godmode/policies/policy_agents.php:326 +#: ../../enterprise/godmode/massive/massive_edit_tags_policy.php:40 +#: ../../enterprise/godmode/massive/massive_add_alerts_policy.php:38 +#: ../../enterprise/godmode/massive/massive_add_modules_policy.php:40 +#: ../../enterprise/godmode/massive/massive_tags_edit_policy.php:40 +#: ../../enterprise/godmode/massive/massive_delete_alerts_policy.php:38 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:38 +#: ../../enterprise/operation/agentes/policy_view.php:58 +#, php-format +msgid "" +"This node is configured with centralized mode. All policies information is " +"read only. Go to %s to manage it." +msgstr "" + +#: ../../enterprise/godmode/policies/policy_plugins.php:56 +msgid "" +"Successfully added to delete pending plugins. Will be deleted in the next " +"policy application." +msgstr "" + +#: ../../enterprise/godmode/policies/policy_plugins.php:57 +msgid "Cannot be added to delete pending plugins." +msgstr "" + +#: ../../enterprise/godmode/policies/policy_plugins.php:70 +#: ../../enterprise/godmode/policies/policy_alerts.php:259 +#: ../../enterprise/godmode/policies/policy_modules.php:1316 +#: ../../enterprise/godmode/policies/policy_external_alerts.php:150 +#: ../../enterprise/godmode/policies/policy_inventory_modules.php:169 +#: ../../enterprise/godmode/policies/policy_collections.php:103 +#: ../../enterprise/godmode/policies/policy_agents.php:113 +#: ../../enterprise/godmode/policies/policy_agents.php:129 +msgid "Successfully reverted deletion" +msgstr "" + +#: ../../enterprise/godmode/policies/policy_plugins.php:71 +#: ../../enterprise/godmode/policies/policy_alerts.php:260 +#: ../../enterprise/godmode/policies/policy_modules.php:1317 +#: ../../enterprise/godmode/policies/policy_external_alerts.php:151 +#: ../../enterprise/godmode/policies/policy_inventory_modules.php:172 +#: ../../enterprise/godmode/policies/policy_collections.php:104 +#: ../../enterprise/godmode/policies/policy_agents.php:114 +#: ../../enterprise/godmode/policies/policy_agents.php:130 +msgid "Could not be reverted" +msgstr "" + +#: ../../enterprise/godmode/policies/policy_plugins.php:210 +msgid "There are no defined plugins" +msgstr "" + +#: ../../enterprise/godmode/policies/policy_alerts.php:94 +#: ../../enterprise/godmode/policies/policy_modules.php:599 +#: ../../enterprise/godmode/policies/policies.php:249 +#: ../../enterprise/godmode/policies/policy_linking.php:41 +#: ../../enterprise/godmode/policies/policy_external_alerts.php:77 +#: ../../enterprise/godmode/policies/policy_inventory_modules.php:98 +#: ../../enterprise/godmode/policies/policy_collections.php:63 +#: ../../enterprise/godmode/policies/policy_agents.php:85 +#: ../../godmode/agentes/module_manager_editor.php:542 +msgid "This policy is applying and cannot be modified" +msgstr "" + +#: ../../enterprise/godmode/policies/policy_alerts.php:153 +#: ../../enterprise/godmode/policies/policy_modules.php:535 +#: ../../enterprise/godmode/setup/setup_metaconsole.php:157 +#: ../../godmode/agentes/configurar_agente.php:2201 +#: ../../godmode/agentes/modificar_agente.php:278 +#: ../../godmode/massive/massive_enable_disable_alerts.php:124 +#: ../../godmode/alerts/alert_list.php:394 +#: ../../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:420 +msgid "Successfully set standby" +msgstr "" + +#: ../../enterprise/godmode/policies/policy_alerts.php:179 +#: ../../godmode/massive/massive_standby_alerts.php:132 +#: ../../godmode/alerts/alert_list.php:421 +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:447 +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:448 +msgid "Could not be set off standby" +msgstr "" + +#: ../../enterprise/godmode/policies/policy_alerts.php:249 +msgid " created successfuly" +msgstr "" + +#: ../../enterprise/godmode/policies/policy_alerts.php:249 +msgid " could not be created" +msgstr "" + +#: ../../enterprise/godmode/policies/policy_alerts.php:255 +#: ../../enterprise/godmode/policies/policy_external_alerts.php:145 +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 +msgid "Added action successfuly" +msgstr "" + +#: ../../enterprise/godmode/policies/policy_alerts.php:280 +#: ../../enterprise/godmode/policies/policy_external_alerts.php:201 +#: ../../enterprise/godmode/policies/policy_agents.php:251 +#: ../../enterprise/godmode/alerts/alert_inventory_list.php:92 +#: ../../godmode/massive/massive_delete_action_alerts.php:175 +#: ../../godmode/massive/massive_add_alerts.php:169 +#: ../../godmode/massive/massive_add_action_alerts.php:75 +#: ../../godmode/massive/massive_add_action_alerts.php:134 +#: ../../godmode/massive/massive_add_action_alerts.php:160 +#: ../../godmode/massive/massive_add_action_alerts.php:163 +#: ../../godmode/massive/massive_add_action_alerts.php:166 +#: ../../godmode/alerts/alert_list.php:272 +msgid "Could not be added" +msgstr "" + +#: ../../enterprise/godmode/policies/policy_alerts.php:302 +#: ../../enterprise/godmode/policies/policy_external_alerts.php:173 +msgid "Deleted action successfuly" +msgstr "" + +#: ../../enterprise/godmode/policies/policy_alerts.php:428 +#: ../../enterprise/godmode/policies/policy_external_alerts.php:459 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2402 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3370 +#: ../../godmode/alerts/alert_list.list.php:651 +#: ../../godmode/alerts/alert_view.php:234 +#: ../../include/functions_alerts.php:683 +msgid "Always" +msgstr "" + +#: ../../enterprise/godmode/policies/policy_alerts.php:430 +#: ../../enterprise/godmode/policies/policy_external_alerts.php:461 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3372 +#: ../../godmode/alerts/alert_list.list.php:653 +#: ../../include/class/Diagnostics.class.php:1181 +#: ../../include/class/Diagnostics.class.php:1185 +msgid "On" +msgstr "" + +#: ../../enterprise/godmode/policies/policy_alerts.php:434 +#: ../../enterprise/godmode/policies/policy_external_alerts.php:465 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3376 +#: ../../godmode/alerts/alert_list.list.php:657 +msgid "Until" +msgstr "" + +#: ../../enterprise/godmode/policies/policy_alerts.php:529 +#: ../../enterprise/godmode/policies/policy_modules.php:1573 +#: ../../enterprise/godmode/policies/policy_external_alerts.php:533 +#: ../../enterprise/godmode/policies/policy_inventory_modules.php:329 +#: ../../enterprise/godmode/policies/policy_agents.php:1066 +#: ../../enterprise/godmode/policies/policy_agents.php:1535 +msgid "Undo deletion" +msgstr "" + +#: ../../enterprise/godmode/policies/policy_alerts.php:596 +#: ../../enterprise/godmode/policies/policy_external_alerts.php:600 +#: ../../godmode/massive/massive_add_action_alerts.php:252 +#: ../../godmode/alerts/alert_list.list.php:768 +#: ../../godmode/alerts/alert_list.builder.php:127 +#: ../../include/ajax/alert_list.ajax.php:516 +#: ../../include/class/AgentsAlerts.class.php:314 +msgid "Number of alerts match from" +msgstr "" + +#: ../../enterprise/godmode/policies/policy_alerts.php:613 +msgid "There is not alerts configured in this policy." +msgstr "" + +#: ../../enterprise/godmode/policies/policy_alerts.php:642 +#: ../../enterprise/godmode/massive/massive_add_alerts_policy.php:115 +#: ../../enterprise/godmode/massive/massive_delete_alerts_policy.php:125 +#: ../../godmode/massive/massive_standby_alerts.php:217 +#: ../../godmode/massive/massive_add_alerts.php:280 +#: ../../godmode/massive/massive_enable_disable_alerts.php:189 +#: ../../godmode/massive/massive_delete_alerts.php:271 +msgid "Alert template" +msgstr "" + +#: ../../enterprise/godmode/policies/policy_alerts.php:653 +msgid "Policy module" +msgstr "" + +#: ../../enterprise/godmode/policies/policy_alerts.php:731 +#: ../../godmode/alerts/alert_list.list.php:1072 +msgid "Set off standby" +msgstr "" + +#: ../../enterprise/godmode/policies/policy_alerts.php:740 +#: ../../godmode/alerts/alert_list.list.php:1099 +msgid "Set standby" +msgstr "" + +#: ../../enterprise/godmode/policies/policy_alerts.php:754 +#: ../../enterprise/godmode/policies/policy_external_alerts.php:508 +#: ../../enterprise/godmode/alerts/alert_inventory_list.php:344 +#: ../../enterprise/godmode/alerts/alert_inventory_list.php:350 +#: ../../enterprise/godmode/alerts/alert_inventory_list.php:444 +#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:488 +#: ../../godmode/snmpconsole/snmp_alert.php:1381 +#: ../../godmode/alerts/alert_list.list.php:914 +#: ../../godmode/alerts/alert_list.list.php:921 +#: ../../godmode/alerts/alert_list.list.php:1145 +msgid "Add action" +msgstr "" + +#: ../../enterprise/godmode/policies/configure_policy.php:122 +msgid "Force Apply" +msgstr "" + +#: ../../enterprise/godmode/policies/configure_policy.php:122 +msgid "" +"Force the creation of modules even if the software agent does not have " +"remote configuration" +msgstr "" + +#: ../../enterprise/godmode/policies/policy_modules.php:299 +msgid "" +"If you change this description, you must change into the text of Data " +"configuration." +msgstr "" + +#: ../../enterprise/godmode/policies/policy_modules.php:372 +msgid "Invalid module type." +msgstr "" + +#: ../../enterprise/godmode/policies/policy_modules.php:403 +#: ../../godmode/agentes/module_manager_editor.php:738 +msgid "Base options" +msgstr "" + +#: ../../enterprise/godmode/policies/policy_modules.php:548 +msgid "Could not be added module(s). You must select a policy" +msgstr "" + +#: ../../enterprise/godmode/policies/policy_modules.php:581 +#, php-format +msgid "Successfully added module(s) (%s/%s) to policy %s" +msgstr "" + +#: ../../enterprise/godmode/policies/policy_modules.php:587 +#, php-format +msgid "Could not be added module(s) (%s/%s) to policy %s" +msgstr "" + +#: ../../enterprise/godmode/policies/policy_modules.php:623 +msgid "To define plugins please use plugin configuration tab." +msgstr "" + +#: ../../enterprise/godmode/policies/policy_modules.php:920 +msgid "Could not be added module." +msgstr "" + +#: ../../enterprise/godmode/policies/policy_modules.php:1265 +msgid "" +"The module type in Data configuration is empty, take from combo box of form." +msgstr "" + +#: ../../enterprise/godmode/policies/policy_modules.php:1269 +msgid "" +"The module name in Data configuration is empty, take from text field of form." +msgstr "" + +#: ../../enterprise/godmode/policies/policy_modules.php:1299 +#: ../../enterprise/godmode/policies/policy_modules.php:1312 +#: ../../enterprise/godmode/policies/policy_inventory_modules.php:163 +msgid "" +"Successfully added to delete pending modules. Will be deleted in the next " +"policy application." +msgstr "" + +#: ../../enterprise/godmode/policies/policy_modules.php:1303 +msgid "Could not be added to deleted all modules." +msgstr "" + +#: ../../enterprise/godmode/policies/policy_modules.php:1363 +#: ../../godmode/agentes/configurar_agente.php:2114 +#: ../../include/functions_reports.php:956 +#, php-format +msgid "copy of %s" +msgstr "" + +#: ../../enterprise/godmode/policies/policy_modules.php:1381 +#: ../../godmode/agentes/configurar_agente.php:2128 +#, php-format +msgid "copy of %s (%d)" +msgstr "" + +#: ../../enterprise/godmode/policies/policy_modules.php:1411 +msgid "Successfully duplicate the module." +msgstr "" + +#: ../../enterprise/godmode/policies/policy_modules.php:1412 +#: ../../operation/agentes/pandora_networkmap.php:533 +msgid "Could not be duplicated" +msgstr "" + +#: ../../enterprise/godmode/policies/policy_modules.php:1492 +msgid "Local component" +msgstr "" + +#: ../../enterprise/godmode/policies/policy_modules.php:1509 +#: ../../enterprise/godmode/policies/policy_modules.php:1510 +msgid "Disabled module" +msgstr "" + +#: ../../enterprise/godmode/policies/policy_modules.php:1517 +#: ../../enterprise/godmode/policies/policy_modules.php:1518 +msgid "Enabled module" +msgstr "" + +#: ../../enterprise/godmode/policies/policy_modules.php:1528 +#: ../../enterprise/godmode/policies/policy_modules.php:1529 +#: ../../godmode/agentes/module_manager.php:1143 +#: ../../godmode/agentes/module_manager.php:1144 +msgid "Enable module" +msgstr "" + +#: ../../enterprise/godmode/policies/policy_modules.php:1538 +#: ../../enterprise/godmode/policies/policy_modules.php:1539 +#: ../../godmode/agentes/module_manager.php:1153 +#: ../../godmode/agentes/module_manager.php:1154 +msgid "Disable module" +msgstr "" + +#: ../../enterprise/godmode/policies/policy_modules.php:1624 +msgid "There are no defined modules" +msgstr "" + +#: ../../enterprise/godmode/policies/policy_modules.php:1643 +#: ../../godmode/massive/massive_copy_modules.php:188 +msgid "Copy modules" +msgstr "" + +#: ../../enterprise/godmode/policies/policy_modules.php:1644 +msgid "Copy selected modules to policy: " +msgstr "" + +#: ../../enterprise/godmode/policies/policy_modules.php:1706 +#: ../../godmode/agentes/module_manager_editor.php:822 +msgid "No module name provided" +msgstr "" + +#: ../../enterprise/godmode/policies/policy_modules.php:1707 +#: ../../godmode/agentes/module_manager_editor.php:832 +msgid "No target IP provided" +msgstr "" + +#: ../../enterprise/godmode/policies/policy_modules.php:1708 +#: ../../godmode/agentes/module_manager_editor.php:842 +msgid "No SNMP OID provided" +msgstr "" + +#: ../../enterprise/godmode/policies/policy_modules.php:1849 +msgid "Are you sure to copy modules into policy?\\n" +msgstr "" + +#: ../../enterprise/godmode/policies/policy_modules.php:1869 +msgid "Please select any module to copy" +msgstr "" + +#: ../../enterprise/godmode/policies/policy_queue.php:63 +msgid "No policies with this id" +msgstr "" + +#: ../../enterprise/godmode/policies/policy_queue.php:78 +#: ../../enterprise/godmode/policies/policy_agents.php:62 +msgid "" +"Starting with Pandora FMS version 760, assigning an entire group to a policy " +"will apply it automatically to all the new agents added to that group." +msgstr "" + +#: ../../enterprise/godmode/policies/policy_queue.php:146 +#, php-format +msgid "%s: Operations successfully deleted from the queue" +msgstr "" + +#: ../../enterprise/godmode/policies/policy_queue.php:153 +msgid "Operations successfully deleted from the queue" +msgstr "" + +#: ../../enterprise/godmode/policies/policy_queue.php:154 +msgid "Operations cannot be deleted from the queue" +msgstr "" + +#: ../../enterprise/godmode/policies/policy_queue.php:261 +#, php-format +msgid "Some nodes (%s) are unreachebles. Some information may be missing." +msgstr "" + +#: ../../enterprise/godmode/policies/policy_queue.php:308 +msgid "Update pending" +msgstr "" + +#: ../../enterprise/godmode/policies/policy_queue.php:314 +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 +msgid "Add to apply queue" +msgstr "" + +#: ../../enterprise/godmode/policies/policy_queue.php:343 +msgid "Add to apply queue only for database" +msgstr "" + +#: ../../enterprise/godmode/policies/policy_queue.php:354 +msgid "Update pending groups" +msgstr "" + +#: ../../enterprise/godmode/policies/policy_queue.php:368 +msgid "Link pending modules" +msgstr "" + +#: ../../enterprise/godmode/policies/policy_queue.php:376 +msgid "Will be linked in the next policy application" +msgstr "" + +#: ../../enterprise/godmode/policies/policy_queue.php:382 +msgid "Unlink pending modules" +msgstr "" + +#: ../../enterprise/godmode/policies/policy_queue.php:388 +msgid "Will be unlinked in the next policy application" +msgstr "" + +#: ../../enterprise/godmode/policies/policy_queue.php:393 +msgid "Delete pending" +msgstr "" + +#: ../../enterprise/godmode/policies/policy_queue.php:399 +msgid "Delete pending agents" +msgstr "" + +#: ../../enterprise/godmode/policies/policy_queue.php:407 +#: ../../enterprise/godmode/policies/policy_queue.php:422 +#: ../../enterprise/godmode/policies/policy_queue.php:437 +#: ../../enterprise/godmode/policies/policy_queue.php:452 +#: ../../enterprise/godmode/policies/policy_queue.php:467 +#: ../../enterprise/godmode/policies/policy_queue.php:482 +#: ../../enterprise/godmode/policies/policy_queue.php:497 +#: ../../enterprise/godmode/policies/policy_queue.php:512 +msgid "Will be deleted in the next policy application" +msgstr "" + +#: ../../enterprise/godmode/policies/policy_queue.php:414 +msgid "Delete pending groups" +msgstr "" + +#: ../../enterprise/godmode/policies/policy_queue.php:429 +msgid "Delete pending modules" +msgstr "" + +#: ../../enterprise/godmode/policies/policy_queue.php:444 +msgid "Delete pending inventory modules" +msgstr "" + +#: ../../enterprise/godmode/policies/policy_queue.php:459 +msgid "Delete pending alerts" +msgstr "" + +#: ../../enterprise/godmode/policies/policy_queue.php:474 +msgid "Delete pending external alerts" +msgstr "" + +#: ../../enterprise/godmode/policies/policy_queue.php:489 +msgid "Delete pending file collections" +msgstr "" + +#: ../../enterprise/godmode/policies/policy_queue.php:504 +msgid "Delete pending plugins" +msgstr "" + +#: ../../enterprise/godmode/policies/policy_queue.php:518 +msgid "Advices" +msgstr "" + +#: ../../enterprise/godmode/policies/policy_queue.php:523 +msgid "Queue summary" +msgstr "" + +#: ../../enterprise/godmode/policies/policy_queue.php:636 +msgid "Queue filter" +msgstr "" + +#: ../../enterprise/godmode/policies/policy_queue.php:670 +#: ../../enterprise/godmode/policies/policy_linking.php:153 +#: ../../godmode/massive/massive_delete_agents.php:252 +#: ../../include/lib/Dashboard/Widget.php:594 +#: ../../include/functions_events.php:4528 +msgid "Node" +msgstr "" + +#: ../../enterprise/godmode/policies/policy_queue.php:790 +msgid "Empty queue" +msgstr "" + +#: ../../enterprise/godmode/policies/policy_queue.php:804 +msgid "This operation could take a long time" +msgstr "" + +#: ../../enterprise/godmode/policies/policy_queue.php:815 +msgid "Apply all queues" +msgstr "" + +#: ../../enterprise/godmode/policies/policy_queue.php:821 +msgid "Clear all items" +msgstr "" + +#: ../../enterprise/godmode/policies/policies.php:85 +msgid "Policy not found." +msgstr "" + +#: ../../enterprise/godmode/policies/policies.php:153 +msgid "Policy name already exists" +msgstr "" + +#: ../../enterprise/godmode/policies/policies.php:224 +msgid "Policies Management" +msgstr "" + +#: ../../enterprise/godmode/policies/policies.php:235 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:455 +#: ../../godmode/alerts/alert_actions.php:129 +#: ../../godmode/alerts/alert_commands.php:625 +#: ../../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:961 +msgid "Successfully copied" +msgstr "" + +#: ../../enterprise/godmode/policies/policies.php:236 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:456 +#: ../../godmode/alerts/alert_actions.php:130 +#: ../../godmode/alerts/alert_commands.php:626 +#: ../../godmode/reporting/reporting_builder.php:738 +#: ../../include/functions_planned_downtimes.php:958 +msgid "Could not be copied" +msgstr "" + +#: ../../enterprise/godmode/policies/policies.php:243 +msgid "All policy agents added to delete queue" +msgstr "" + +#: ../../enterprise/godmode/policies/policies.php:244 +msgid "Policy agents cannot be added to the delete queue" +msgstr "" + +#: ../../enterprise/godmode/policies/policies.php:330 +msgid "a" +msgstr "" + +#: ../../enterprise/godmode/policies/policies.php:501 +#: ../../enterprise/godmode/policies/policy_linking.php:157 +#: ../../enterprise/include/functions_policies.php:3783 +msgid "Linking" +msgstr "" + +#: ../../enterprise/godmode/policies/policies.php:514 +msgid "Agent Wizard" +msgstr "" + +#: ../../enterprise/godmode/policies/policies.php:523 +#: ../../enterprise/godmode/policies/policy_external_alerts.php:52 +#: ../../enterprise/include/functions_policies.php:3771 +msgid "External alerts" +msgstr "" + +#: ../../enterprise/godmode/policies/policies.php:527 +#: ../../enterprise/godmode/policies/policy.php:60 +#: ../../enterprise/include/functions_policies.php:3813 +msgid "Queue" +msgstr "" + +#: ../../enterprise/godmode/policies/policies.php:595 +msgid "There must be no agents to delete the policy." +msgstr "" + +#: ../../enterprise/godmode/policies/policies.php:601 +msgid "A policy with agents cannot be deleted. Purge it first" +msgstr "" + +#: ../../enterprise/godmode/policies/policies.php:611 +msgid "Deleting all policy agents" +msgstr "" + +#: ../../enterprise/godmode/policies/policies.php:616 +msgid "All the policy agents will be deleted" +msgstr "" + +#: ../../enterprise/godmode/policies/policies.php:625 +msgid "Delete all agents" +msgstr "" + +#: ../../enterprise/godmode/policies/policy_linking.php:28 +msgid "Linking modules" +msgstr "" + +#: ../../enterprise/godmode/policies/policy_linking.php:99 +msgid "Error: Update linking modules to policy" +msgstr "" + +#: ../../enterprise/godmode/policies/policy_linking.php:101 +msgid "Success: Update linking modules to policy" +msgstr "" + +#: ../../enterprise/godmode/policies/policy_linking.php:127 +msgid "Free text for filter (*)" +msgstr "" + +#: ../../enterprise/godmode/policies/policy_linking.php:128 +msgid "Free text for filter" +msgstr "" + +#: ../../enterprise/godmode/policies/policy_linking.php:138 +msgid "Cannot retrieve unlinked modules" +msgstr "" + +#: ../../enterprise/godmode/policies/policy_linking.php:140 +msgid "There are no defined modules unlinked" +msgstr "" + +#: ../../enterprise/godmode/policies/policy_linking.php:142 +msgid "List of modules unlinked" +msgstr "" + +#: ../../enterprise/godmode/policies/policy_external_alerts.php:87 +#: ../../godmode/alerts/alert_list.php:173 +msgid "No module specified" +msgstr "" + +#: ../../enterprise/godmode/policies/policy_external_alerts.php:123 +msgid "Created successfuly" +msgstr "" + +#: ../../enterprise/godmode/policies/policy_external_alerts.php:127 +msgid "Duplicated alert" +msgstr "" + +#: ../../enterprise/godmode/policies/policy_external_alerts.php:372 +#: ../../godmode/alerts/alert_list.list.php:188 +msgid "Alert control filter" +msgstr "" + +#: ../../enterprise/godmode/policies/policy_external_alerts.php:383 +msgid "Modules in policy per agents" +msgstr "" + +#: ../../enterprise/godmode/policies/policy_external_alerts.php:566 +msgid "There is not external alerts configured in this policy" +msgstr "" + +#: ../../enterprise/godmode/policies/policy_external_alerts.php:620 +msgid "Modules in policy agents" +msgstr "" + +#: ../../enterprise/godmode/policies/policy_external_alerts.php:648 +msgid "Alert Template" +msgstr "" + +#: ../../enterprise/godmode/policies/policy_inventory_modules.php:110 +msgid "Module is not selected" +msgstr "" + +#: ../../enterprise/godmode/policies/policy_inventory_modules.php:296 +msgid "There are no defined inventory modules" +msgstr "" + +#: ../../enterprise/godmode/policies/policy_collections.php:99 +msgid "" +"Successfully added to delete the collection. Will be deleted in the next " +"policy application." +msgstr "" + +#: ../../enterprise/godmode/policies/policy_collections.php:224 +#: ../../enterprise/godmode/policies/policy_collections.php:296 +#: ../../enterprise/operation/agentes/policy_view.php:217 +#: ../../enterprise/operation/agentes/policy_view.php:218 +#: ../../enterprise/operation/agentes/collection_view.php:128 +#: ../../enterprise/operation/agentes/collection_view.php:129 +msgid "Outdate" +msgstr "" + +#: ../../enterprise/godmode/policies/policy_collections.php:241 +msgid "Collections in policy" +msgstr "" + +#: ../../enterprise/godmode/policies/policy_collections.php:245 +msgid "Collections to add" +msgstr "" + +#: ../../enterprise/godmode/policies/policy_collections.php:315 +msgid "No available collection to add" +msgstr "" + +#: ../../enterprise/godmode/policies/policy_agents.php:102 +msgid "" +"Successfully added to delete pending agents. Will be deleted in the next " +"policy application." +msgstr "" + +#: ../../enterprise/godmode/policies/policy_agents.php:124 +msgid "" +"Successfully added to delete pending groups. Will be deleted in the next " +"policy application." +msgstr "" + +#: ../../enterprise/godmode/policies/policy_agents.php:148 +#: ../../enterprise/godmode/policies/policy_agents.php:193 +#: ../../enterprise/godmode/policies/policy_agents.php:261 +msgid "Policy with this id does not exist. " +msgstr "" + +#: ../../enterprise/godmode/policies/policy_agents.php:177 +#: ../../enterprise/godmode/policies/policy_agents.php:310 +msgid "Successfully added to delete queue" +msgstr "" + +#: ../../enterprise/godmode/policies/policy_agents.php:178 +#: ../../enterprise/godmode/policies/policy_agents.php:311 +msgid "Could not be added to delete queue" +msgstr "" + +#: ../../enterprise/godmode/policies/policy_agents.php:250 +#, php-format +msgid "Successfully added %d" +msgstr "" + +#: ../../enterprise/godmode/policies/policy_agents.php:281 +msgid "" +"Number of agents added to the policy concurrently is too large. This might " +"cause the operation to fail or lead to performance issues." +msgstr "" + +#: ../../enterprise/godmode/policies/policy_agents.php:288 +msgid "Successfully added to policy" +msgstr "" + +#: ../../enterprise/godmode/policies/policy_agents.php:289 +msgid "Could not be added to policy" +msgstr "" + +#: ../../enterprise/godmode/policies/policy_agents.php:407 +msgid "Apply to" +msgstr "" + +#: ../../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/massive/massive_add_modules_policy.php:115 +#: ../../godmode/massive/massive_copy_modules.php:112 +#: ../../godmode/massive/massive_copy_modules.php:265 +#: ../../godmode/massive/massive_standby_alerts.php:200 +#: ../../godmode/massive/massive_delete_action_alerts.php:221 +#: ../../godmode/massive/massive_delete_modules.php:386 +#: ../../godmode/massive/massive_add_alerts.php:228 +#: ../../godmode/massive/massive_delete_agents.php:199 +#: ../../godmode/massive/massive_enable_disable_alerts.php:171 +#: ../../godmode/massive/massive_edit_agents.php:520 +#: ../../godmode/massive/massive_delete_alerts.php:311 +#: ../../godmode/massive/massive_add_action_alerts.php:209 +#: ../../godmode/massive/massive_edit_modules.php:370 +#: ../../include/functions_html.php:1258 ../../include/functions_html.php:1410 +#: ../../include/lib/Dashboard/Widgets/groups_status.php:232 +#: ../../include/lib/Dashboard/Widgets/events_list.php:447 +msgid "Group recursion" +msgstr "" + +#: ../../enterprise/godmode/policies/policy_agents.php:499 +#: ../../enterprise/godmode/policies/policy_agents.php:513 +#: ../../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 +#: ../../enterprise/godmode/reporting/graph_template_wizard.php:217 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:749 +#: ../../enterprise/include/class/Omnishell.class.php:825 +#: ../../enterprise/include/class/Omnishell.class.php:904 +msgid "Filter agent" +msgstr "" + +#: ../../enterprise/godmode/policies/policy_agents.php:538 +#: ../../enterprise/godmode/policies/policy_agents.php:670 +msgid "Agents in Policy" +msgstr "" + +#: ../../enterprise/godmode/policies/policy_agents.php:566 +#: ../../enterprise/godmode/policies/policy_agents.php:1215 +#: ../../enterprise/godmode/setup/setup_auth.php:230 +#: ../../enterprise/godmode/setup/setup_auth.php:509 +#: ../../enterprise/godmode/setup/setup_auth.php:1306 +#: ../../extensions/files_repo/files_repo_form.php:55 +#: ../../extensions/module_groups.php:311 +#: ../../godmode/reporting/visual_console_builder.wizard.php:362 +#: ../../mobile/include/functions_web.php:27 ../../mobile/operation/home.php:57 +#: ../../mobile/operation/groups.php:77 +#: ../../include/functions_networkmap.php:1295 +#: ../../include/functions_maps.php:46 +#: ../../include/lib/Dashboard/Widgets/groups_status.php:220 +#: ../../include/lib/Dashboard/Widgets/system_group_status.php:295 +#: ../../include/lib/Dashboard/Widgets/events_list.php:431 +#: ../../include/lib/Dashboard/Widgets/top_n_events_by_module.php:301 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:328 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:337 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:359 +#: ../../include/lib/Dashboard/Widgets/tactical.php:331 +#: ../../include/lib/Dashboard/Widgets/top_n_events_by_group.php:301 +#: ../../operation/tree.php:90 +#: ../../operation/agentes/pandora_networkmap.php:710 +msgid "Groups" +msgstr "" + +#: ../../enterprise/godmode/policies/policy_agents.php:572 +#: ../../enterprise/godmode/policies/policy_agents.php:1217 +msgid "Groups in Policy" +msgstr "" + +#: ../../enterprise/godmode/policies/policy_agents.php:707 +msgid "Add agents to policy" +msgstr "" + +#: ../../enterprise/godmode/policies/policy_agents.php:734 +msgid "Delete agents from policy" +msgstr "" + +#: ../../enterprise/godmode/policies/policy_agents.php:831 +msgid "Applied" +msgstr "" + +#: ../../enterprise/godmode/policies/policy_agents.php:832 +msgid "Not applied" +msgstr "" + +#: ../../enterprise/godmode/policies/policy_agents.php:849 +#: ../../godmode/agentes/configurar_agente.php:604 +#: ../../godmode/agentes/configurar_agente.php:754 +#: ../../godmode/agentes/agent_manager.php:524 +#: ../../godmode/massive/massive_edit_agents.php:945 +#: ../../godmode/reporting/reporting_builder.item_editor.php:79 +#: ../../godmode/servers/servers.build_table.php:246 +msgid "Remote configuration" +msgstr "" + +#: ../../enterprise/godmode/policies/policy_agents.php:849 +#: ../../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/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:844 +#: ../../mobile/operation/agents.php:406 +#: ../../include/ajax/alert_list.ajax.php:286 +#: ../../include/ajax/alert_list.ajax.php:311 +#: ../../include/class/AuditLog.class.php:128 +#: ../../include/functions_events.php:2355 +msgid "S." +msgstr "" + +#: ../../enterprise/godmode/policies/policy_agents.php:853 +msgid "Unlinked modules" +msgstr "" + +#: ../../enterprise/godmode/policies/policy_agents.php:853 +msgid "U." +msgstr "" + +#: ../../enterprise/godmode/policies/policy_agents.php:854 +#: ../../enterprise/godmode/policies/policy_agents.php:1369 +#: ../../enterprise/godmode/admin_access_logs.php:54 +#: ../../godmode/reporting/visual_console_builder.elements.php:118 +#: ../../mobile/operation/agents.php:407 +#: ../../include/class/AuditLog.class.php:128 +msgid "A." +msgstr "" + +#: ../../enterprise/godmode/policies/policy_agents.php:856 +#: ../../enterprise/godmode/policies/policy_agents.php:1371 +#: ../../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 +msgid "Add to delete queue" +msgstr "" + +#: ../../enterprise/godmode/policies/policy_agents.php:857 +#: ../../enterprise/godmode/policies/policy_agents.php:1373 +msgid "D." +msgstr "" + +#: ../../enterprise/godmode/policies/policy_agents.php:946 +#: ../../godmode/agentes/agent_manager.php:263 +msgid "This agent can be remotely configured" +msgstr "" + +#: ../../enterprise/godmode/policies/policy_agents.php:953 +msgid "This agent can not be remotely configured" +msgstr "" + +#: ../../enterprise/godmode/policies/policy_agents.php:1003 +#: ../../enterprise/godmode/policies/policy_agents.php:1482 +msgid "Process deletion" +msgstr "" + +#: ../../enterprise/godmode/policies/policy_agents.php:1102 +#: ../../enterprise/godmode/policies/policy_agents.php:1427 +#: ../../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 +msgid "Need apply" +msgstr "" + +#: ../../enterprise/godmode/policies/policy_agents.php:1122 +#: ../../enterprise/godmode/policies/policy_agents.php:1447 +msgid "Applying policy" +msgstr "" + +#: ../../enterprise/godmode/policies/policy_agents.php:1135 +#: ../../enterprise/godmode/policies/policy_agents.php:1458 +msgid "Deleting from policy" +msgstr "" + +#: ../../enterprise/godmode/policies/policy_agents.php:1152 +#: ../../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:172 +#: ../../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 +msgid "No agents selected" +msgstr "" + +#: ../../enterprise/godmode/policies/policy_agents.php:1295 +msgid "Add groups to policy" +msgstr "" + +#: ../../enterprise/godmode/policies/policy_agents.php:1317 +msgid "Delete groups from policy" +msgstr "" + +#: ../../enterprise/godmode/policies/policy_agents.php:1370 +msgid "Total agents in policy group" +msgstr "" + +#: ../../enterprise/godmode/policies/policy_agents.php:1370 +msgid "T." +msgstr "" + +#: ../../enterprise/godmode/policies/policy.php:102 +#: ../../enterprise/include/functions_policies.php:3732 +#: ../../godmode/agentes/configurar_agente.php:527 +msgid "Agent wizard" +msgstr "" + +#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor_form.php:24 +#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:44 +#: ../../enterprise/operation/snmpconsole/snmp_view.php:82 +#: ../../enterprise/operation/menu.php:170 +msgid "SNMP trap editor" +msgstr "" + +#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor_form.php:56 +#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:382 +#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:299 +#: ../../godmode/setup/snmp_wizard.php:42 +#: ../../include/functions_snmp_browser.php:556 +msgid "OID" +msgstr "" + +#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor_form.php:64 +#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:383 +msgid "Custom OID" +msgstr "" + +#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor_form.php:74 +#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:385 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2192 +#: ../../enterprise/include/functions_reporting_csv.php:2387 +#: ../../enterprise/include/functions_reporting_csv.php:2401 +#: ../../godmode/setup/news.php:205 ../../godmode/setup/setup_visuals.php:1343 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2285 +#: ../../include/functions_reports.php:835 +#: ../../include/functions_reporting.php:7008 +#: ../../include/lib/Dashboard/Widgets/post.php:214 +msgid "Text" +msgstr "" + +#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:57 +#: ../../godmode/snmpconsole/snmp_trap_generator.php:51 +#: ../../godmode/snmpconsole/snmp_filters.php:59 +#: ../../operation/snmpconsole/snmp_browser.php:90 +#: ../../operation/snmpconsole/snmp_mib_uploader.php:60 +msgid "SMNP" +msgstr "" + +#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:225 +#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:237 +msgid "Successfully added trap custom values" +msgstr "" + +#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:227 +#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:239 +msgid "Error adding trap custom values" +msgstr "" + +#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:242 +#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:317 +msgid "This custom OID is preexistent." +msgstr "" + +#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:283 +msgid "No change in data" +msgstr "" + +#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:285 +#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:312 +msgid "Successfully updated trap custom values" +msgstr "" + +#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:287 +#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:314 +msgid "Error updating trap custom values" +msgstr "" + +#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:330 +msgid "Successfully deleted trap custom values" +msgstr "" + +#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:336 +msgid "Error deleting trap custom values" +msgstr "" + +#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:342 +#, php-format +msgid "Uploaded %s/%s traps" +msgstr "" + +#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:346 +msgid "Fail uploaded file" +msgstr "" + +#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:351 +msgid "" +"MIB files will be loaded and searched for SNMP trap definitions. They will " +"not be installed on the system! You can use the MIB uploader for that " +"purpose." +msgstr "" + +#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:360 +msgid "Load MIB" +msgstr "" + +#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:362 +msgid "Upload MIB" +msgstr "" + +#: ../../enterprise/godmode/menu.php:16 +msgid "Manage Satellite Server" +msgstr "" + +#: ../../enterprise/godmode/menu.php:25 +#: ../../enterprise/godmode/massive/massive_operations.php:99 +msgid "Policies operations" +msgstr "" + +#: ../../enterprise/godmode/menu.php:36 +#: ../../enterprise/godmode/massive/massive_operations.php:75 +msgid "SNMP operations" +msgstr "" + +#: ../../enterprise/godmode/menu.php:48 +#: ../../enterprise/godmode/massive/massive_operations.php:28 +msgid "Satellite operations" +msgstr "" + +#: ../../enterprise/godmode/menu.php:60 +#: ../../enterprise/godmode/massive/massive_operations.php:53 +msgid "Services operations" +msgstr "" + +#: ../../enterprise/godmode/menu.php:72 ../../enterprise/godmode/menu.php:278 +msgid "Duplicate config" +msgstr "" + +#: ../../enterprise/godmode/menu.php:81 +#: ../../godmode/agentes/configurar_agente.php:707 +msgid "Network config manager" +msgstr "" + +#: ../../enterprise/godmode/menu.php:108 +#: ../../enterprise/include/functions_policies.php:3711 +msgid "Manage policies" +msgstr "" + +#: ../../enterprise/godmode/menu.php:117 +msgid "Manage agent autoconfiguration" +msgstr "" + +#: ../../enterprise/godmode/menu.php:126 +#: ../../enterprise/include/class/AgentRepository.class.php:623 +msgid "Software agents repository" +msgstr "" + +#: ../../enterprise/godmode/menu.php:148 +#: ../../enterprise/include/functions_setup.php:67 +#: ../../enterprise/include/functions_setup.php:119 +#: ../../operation/agentes/datos_agente.php:180 +msgid "History database" +msgstr "" + +#: ../../enterprise/godmode/menu.php:159 +#: ../../enterprise/include/class/CSVImportAgents.class.php:114 +#: ../../godmode/wizards/HostDevices.class.php:159 +msgid "Import CSV" +msgstr "" + +#: ../../enterprise/godmode/menu.php:163 +#: ../../enterprise/include/class/DeploymentCenter.class.php:613 +#: ../../godmode/wizards/HostDevices.class.php:165 +#: ../../godmode/wizards/DiscoveryTaskList.class.php:823 +msgid "Agent deployment" +msgstr "" + +#: ../../enterprise/godmode/menu.php:173 +#: ../../enterprise/include/class/MicrosoftSQLServer.app.php:406 +msgid "Microsoft SQL Server" +msgstr "" + +#: ../../enterprise/godmode/menu.php:174 +msgid "Mysql" +msgstr "" + +#: ../../enterprise/godmode/menu.php:175 +#: ../../enterprise/godmode/setup/setup.php:108 +#: ../../enterprise/include/class/Oracle.app.php:411 +msgid "Oracle" +msgstr "" + +#: ../../enterprise/godmode/menu.php:176 +#: ../../enterprise/include/class/VMware.app.php:503 +msgid "VMware" +msgstr "" + +#: ../../enterprise/godmode/menu.php:177 +#: ../../enterprise/include/class/SAPView.class.php:621 +#: ../../enterprise/include/class/SAPView.class.php:624 +#: ../../include/class/CredentialStore.class.php:948 +msgid "SAP" +msgstr "" + +#: ../../enterprise/godmode/menu.php:178 +#: ../../enterprise/include/class/DB2.app.php:404 +msgid "DB2" +msgstr "" + +#: ../../enterprise/godmode/menu.php:179 +#: ../../enterprise/godmode/wizards/Applications.class.php:163 +#: ../../enterprise/godmode/wizards/Applications.class.php:171 +msgid "Applications" +msgstr "" + +#: ../../enterprise/godmode/menu.php:190 +msgid "Amazon Web Services" +msgstr "" + +#: ../../enterprise/godmode/menu.php:191 +msgid "Microsoft Azure" +msgstr "" + +#: ../../enterprise/godmode/menu.php:192 +msgid "Google Compute Platform" +msgstr "" + +#: ../../enterprise/godmode/menu.php:193 +#: ../../enterprise/godmode/wizards/Cloud.class.php:186 +#: ../../enterprise/godmode/wizards/Cloud.class.php:195 +#: ../../enterprise/include/class/Azure.cloud.php:150 +#: ../../enterprise/include/class/Azure.cloud.php:194 +#: ../../enterprise/include/class/Aws.cloud.php:115 +#: ../../enterprise/include/class/Aws.cloud.php:162 +#: ../../enterprise/include/class/Google.cloud.php:144 +#: ../../enterprise/include/class/Google.cloud.php:188 +msgid "Cloud" +msgstr "" + +#: ../../enterprise/godmode/menu.php:208 +msgid "New console task" +msgstr "" + +#: ../../enterprise/godmode/menu.php:218 +msgid "Enterprise ACL Setup" +msgstr "" + +#: ../../enterprise/godmode/menu.php:227 +msgid "Skins" +msgstr "" + +#: ../../enterprise/godmode/menu.php:237 +msgid "Manage database HA" +msgstr "" + +#: ../../enterprise/godmode/menu.php:247 +#: ../../enterprise/godmode/servers/manage_export.php:43 +#: ../../enterprise/godmode/servers/manage_export_form.php:59 +msgid "Export targets" +msgstr "" + +#: ../../enterprise/godmode/menu.php:269 +msgid "Log Collector" +msgstr "" + +#: ../../enterprise/godmode/menu.php:287 +msgid "Password policy" +msgstr "" + +#: ../../enterprise/godmode/menu.php:295 +#: ../../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:308 +#: ../../general/first_task/omnishell.php:31 +#: ../../general/first_task/omnishell.php:34 +msgid "Omnishell" +msgstr "" + +#: ../../enterprise/godmode/menu.php:322 +#: ../../enterprise/tools/ipam/ipam.php:453 +#: ../../include/functions_reports.php:692 +msgid "IPAM" +msgstr "" + +#: ../../enterprise/godmode/menu.php:331 ../../godmode/setup/setup.php:190 +#: ../../godmode/setup/setup.php:289 +msgid "Module Library" +msgstr "" + +#: ../../enterprise/godmode/menu.php:339 +#: ../../enterprise/godmode/alerts/alert_inventory.php:78 +#: ../../enterprise/godmode/alerts/alert_inventory.php:80 +msgid "Inventory alerts" +msgstr "" + +#: ../../enterprise/godmode/massive/massive_edit_tags_policy.php:92 +#: ../../enterprise/godmode/massive/massive_tags_edit_policy.php:87 +msgid "Successful update the tags" +msgstr "" + +#: ../../enterprise/godmode/massive/massive_edit_tags_policy.php:93 +#: ../../enterprise/godmode/massive/massive_tags_edit_policy.php:88 +msgid "Unsuccessful update the tags" +msgstr "" + +#: ../../enterprise/godmode/massive/massive_edit_tags_policy.php:143 +msgid "Tags unused" +msgstr "" + +#: ../../enterprise/godmode/massive/massive_edit_tags_policy.php:183 +msgid "Tags used" +msgstr "" + +#: ../../enterprise/godmode/massive/massive_add_alerts_policy.php:87 +msgid "Success: create the alerts." +msgstr "" + +#: ../../enterprise/godmode/massive/massive_add_alerts_policy.php:87 +msgid "Failed: create the alerts for this modules, please check." +msgstr "" + +#: ../../enterprise/godmode/massive/massive_add_alerts_policy.php:128 +#: ../../enterprise/godmode/massive/massive_add_alerts_policy.php:129 +#: ../../enterprise/godmode/massive/massive_delete_alerts_policy.php:138 +#: ../../enterprise/godmode/massive/massive_delete_alerts_policy.php:139 +#: ../../include/functions_alerts.php:673 +msgid "Regular expression" +msgstr "" + +#: ../../enterprise/godmode/massive/massive_add_alerts_policy.php:131 +msgid "Modules in policy" +msgstr "" + +#: ../../enterprise/godmode/massive/massive_operations.php:115 +msgid "Bulk alerts policy add" +msgstr "" + +#: ../../enterprise/godmode/massive/massive_operations.php:116 +msgid "Bulk alerts policy delete" +msgstr "" + +#: ../../enterprise/godmode/massive/massive_operations.php:117 +msgid "Bulk tags module policy edit" +msgstr "" + +#: ../../enterprise/godmode/massive/massive_operations.php:118 +msgid "Bulk modules policy tags edit" +msgstr "" + +#: ../../enterprise/godmode/massive/massive_operations.php:119 +msgid "Bulk modules policy add from agent" +msgstr "" + +#: ../../enterprise/godmode/massive/massive_operations.php:120 +msgid "Bulk modules policy edit" +msgstr "" + +#: ../../enterprise/godmode/massive/massive_operations.php:131 +msgid "Bulk alert SNMP delete" +msgstr "" + +#: ../../enterprise/godmode/massive/massive_operations.php:132 +msgid "Bulk alert SNMP edit" +msgstr "" + +#: ../../enterprise/godmode/massive/massive_operations.php:143 +msgid "Bulk Satellite modules edit" +msgstr "" + +#: ../../enterprise/godmode/massive/massive_operations.php:156 +msgid "Bulk services creation" +msgstr "" + +#: ../../enterprise/godmode/massive/massive_operations.php:157 +#: ../../enterprise/godmode/services/services.massive.elements.php:56 +msgid "Bulk service elements adition" +msgstr "" + +#: ../../enterprise/godmode/massive/massive_operations.php:158 +#: ../../enterprise/godmode/services/services.massive.elements.php:61 +msgid "Bulk service elements edition" +msgstr "" + +#: ../../enterprise/godmode/massive/massive_operations.php:159 +#: ../../enterprise/godmode/services/services.massive.elements.php:57 +msgid "Bulk service elements deletion" +msgstr "" + +#: ../../enterprise/godmode/massive/massive_operations.php:160 +msgid "Bulk services deletion" +msgstr "" + +#: ../../enterprise/godmode/massive/massive_add_modules_policy.php:75 +msgid "Successfully copied " +msgstr "" + +#: ../../enterprise/godmode/massive/massive_add_modules_policy.php:82 +msgid "Module " +msgstr "" + +#: ../../enterprise/godmode/massive/massive_add_modules_policy.php:82 +msgid " cannot be copied to " +msgstr "" + +#: ../../enterprise/godmode/massive/massive_add_modules_policy.php:82 +msgid " policy" +msgstr "" + +#: ../../enterprise/godmode/massive/massive_add_modules_policy.php:169 +#: ../../enterprise/godmode/services/services.elements.php:286 +#: ../../enterprise/godmode/setup/setup_auth.php:69 +#: ../../enterprise/godmode/setup/setup_auth.php:269 +#: ../../enterprise/godmode/setup/setup_auth.php:319 +#: ../../enterprise/godmode/setup/setup_auth.php:380 +#: ../../enterprise/godmode/setup/setup_auth.php:546 +#: ../../enterprise/godmode/setup/setup_auth.php:1175 +#: ../../enterprise/godmode/setup/setup_auth.php:1345 +#: ../../enterprise/godmode/setup/setup_acl.php:572 +#: ../../enterprise/include/class/DeploymentCenter.class.php:779 +#: ../../enterprise/include/class/AgentRepository.class.php:663 +#: ../../enterprise/include/class/Omnishell.class.php:361 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1734 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3909 +#: ../../enterprise/operation/services/services.list.php:249 +#: ../../enterprise/operation/services/services.list.php:279 +#: ../../enterprise/operation/services/services.table_services.php:171 +#: ../../enterprise/operation/services/services.table_services.php:201 +#: ../../godmode/agentes/planned_downtime.list.php:326 +#: ../../godmode/agentes/planned_downtime.editor.php:806 +#: ../../godmode/agentes/agent_manager.php:331 +#: ../../godmode/agentes/agent_manager.php:511 +#: ../../godmode/massive/massive_copy_modules.php:178 +#: ../../godmode/massive/massive_delete_modules.php:407 +#: ../../godmode/massive/massive_delete_modules.php:521 +#: ../../godmode/massive/massive_edit_agents.php:643 +#: ../../godmode/massive/massive_edit_agents.php:1026 +#: ../../godmode/massive/massive_add_action_alerts.php:216 +#: ../../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:436 +#: ../../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:338 +#: ../../include/functions_html.php:2290 ../../include/functions_html.php:2291 +#: ../../include/functions_html.php:2292 ../../include/functions_html.php:2293 +#: ../../include/functions_html.php:2294 ../../include/functions_html.php:2296 +#: ../../include/functions_html.php:2297 ../../include/functions_html.php:2298 +#: ../../include/functions_html.php:2299 ../../include/functions_html.php:2300 +#: ../../include/lib/Dashboard/Widgets/events_list.php:340 +#: ../../operation/events/events.php:1829 +#: ../../operation/events/events.php:2791 +msgid "Any" +msgstr "" + +#: ../../enterprise/godmode/massive/massive_add_modules_policy.php:190 +#: ../../godmode/massive/massive_copy_modules.php:213 +msgid "No modules for this agent" +msgstr "" + +#: ../../enterprise/godmode/massive/massive_add_modules_policy.php:223 +msgid "To policies" +msgstr "" + +#: ../../enterprise/godmode/massive/massive_add_modules_policy.php:359 +#: ../../godmode/massive/massive_add_alerts.php:324 +#: ../../godmode/massive/massive_edit_agents.php:1199 +#: ../../godmode/massive/massive_delete_alerts.php:388 +msgid "" +"Unsucessful sending the data, please contact with your administrator or make " +"with less elements." +msgstr "" + +#: ../../enterprise/godmode/massive/massive_add_modules_policy.php:366 +#: ../../godmode/massive/massive_copy_modules.php:551 +#: ../../include/functions_agents.php:840 +msgid "No source agent to copy" +msgstr "" + +#: ../../enterprise/godmode/massive/massive_add_modules_policy.php:371 +#: ../../godmode/massive/massive_copy_modules.php:564 +#: ../../include/functions_agents.php:871 +msgid "No modules have been selected" +msgstr "" + +#: ../../enterprise/godmode/massive/massive_add_modules_policy.php:376 +msgid "No destiny policies to copy" +msgstr "" + +#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:211 +#: ../../godmode/massive/massive_delete_modules.php:372 +#: ../../godmode/massive/massive_edit_modules.php:356 +msgid "Agent group" +msgstr "" + +#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:242 +msgid "Filter module" +msgstr "" + +#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:261 +#: ../../godmode/massive/massive_delete_action_alerts.php:241 +#: ../../godmode/massive/massive_delete_modules.php:551 +#: ../../godmode/massive/massive_add_alerts.php:260 +#: ../../godmode/massive/massive_delete_alerts.php:341 +#: ../../godmode/massive/massive_add_action_alerts.php:220 +#: ../../godmode/massive/massive_edit_modules.php:524 +msgid "When select agents" +msgstr "" + +#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:265 +#: ../../extensions/agents_modules.php:436 +#: ../../extensions/agents_modules.php:439 +#: ../../godmode/agentes/planned_downtime.editor.php:817 +#: ../../godmode/massive/massive_delete_action_alerts.php:245 +#: ../../godmode/massive/massive_delete_modules.php:555 +#: ../../godmode/massive/massive_add_alerts.php:264 +#: ../../godmode/massive/massive_delete_alerts.php:345 +#: ../../godmode/massive/massive_add_action_alerts.php:224 +#: ../../godmode/massive/massive_edit_modules.php:528 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1876 +#: ../../include/functions_html.php:1669 ../../include/functions_html.php:1688 +#: ../../include/functions_html.php:5497 +msgid "Show common modules" +msgstr "" + +#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:266 +#: ../../extensions/agents_modules.php:437 +#: ../../godmode/agentes/planned_downtime.editor.php:818 +#: ../../godmode/massive/massive_delete_action_alerts.php:246 +#: ../../godmode/massive/massive_delete_modules.php:556 +#: ../../godmode/massive/massive_add_alerts.php:265 +#: ../../godmode/massive/massive_delete_alerts.php:346 +#: ../../godmode/massive/massive_add_action_alerts.php:225 +#: ../../godmode/massive/massive_edit_modules.php:529 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1877 +#: ../../include/functions_html.php:1670 ../../include/functions_html.php:5498 +msgid "Show all modules" +msgstr "" + +#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:423 +msgid "Updated modules on database" +msgstr "" + +#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:425 +msgid "Agent configuration files updated" +msgstr "" + +#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:691 +msgid "No changes have been made." +msgstr "" + +#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:692 +#: ../../enterprise/tools/ipam/ipam.php:300 +#: ../../enterprise/tools/ipam/ipam.php:361 +#: ../../godmode/massive/massive_operations.php:390 +#: ../../godmode/massive/massive_edit_plugins.php:921 +msgid "Massive operations" +msgstr "" + +#: ../../enterprise/godmode/massive/massive_delete_service_elements.php:67 +#: ../../enterprise/godmode/massive/massive_add_service_elements.php:71 +#: ../../enterprise/godmode/massive/massive_edit_service_elements.php:65 +msgid "You must select a service" +msgstr "" + +#: ../../enterprise/godmode/massive/massive_delete_service_elements.php:90 +msgid "Failed to process deleting services elements: " +msgstr "" + +#: ../../enterprise/godmode/massive/massive_delete_service_elements.php:112 +#: ../../enterprise/godmode/massive/massive_add_service_elements.php:251 +#: ../../enterprise/godmode/massive/massive_edit_service_elements.php:153 +#, php-format +msgid "%d modules" +msgstr "" + +#: ../../enterprise/godmode/massive/massive_delete_service_elements.php:120 +#: ../../enterprise/godmode/massive/massive_add_service_elements.php:259 +#: ../../enterprise/godmode/massive/massive_edit_service_elements.php:161 +#, php-format +msgid "%d agents" +msgstr "" + +#: ../../enterprise/godmode/massive/massive_delete_service_elements.php:128 +#: ../../enterprise/godmode/massive/massive_add_service_elements.php:267 +#: ../../enterprise/godmode/massive/massive_edit_service_elements.php:169 +#, php-format +msgid "%d services" +msgstr "" + +#: ../../enterprise/godmode/massive/massive_delete_service_elements.php:131 +msgid "removed" +msgstr "" + +#: ../../enterprise/godmode/massive/massive_delete_service_elements.php:135 +#: ../../enterprise/godmode/massive/massive_add_service_elements.php:274 +#: ../../enterprise/godmode/massive/massive_edit_service_elements.php:176 +msgid "No changes made" +msgstr "" + +#: ../../enterprise/godmode/massive/massive_delete_service_elements.php:211 +#: ../../enterprise/godmode/massive/massive_add_service_elements.php:564 +#: ../../enterprise/godmode/massive/massive_create_services.php:1205 +#: ../../enterprise/godmode/massive/massive_edit_service_elements.php:320 +msgid "Selected services" +msgstr "" + +#: ../../enterprise/godmode/massive/massive_delete_service_elements.php:226 +#: ../../enterprise/godmode/massive/massive_add_service_elements.php:579 +#: ../../enterprise/godmode/massive/massive_create_services.php:1220 +#: ../../enterprise/godmode/massive/massive_edit_service_elements.php:335 +#: ../../enterprise/include/class/Omnishell.class.php:915 +msgid "Selected agents" +msgstr "" + +#: ../../enterprise/godmode/massive/massive_delete_service_elements.php:241 +#: ../../enterprise/godmode/massive/massive_add_service_elements.php:594 +#: ../../enterprise/godmode/massive/massive_create_services.php:1235 +#: ../../enterprise/godmode/massive/massive_edit_service_elements.php:350 +#: ../../enterprise/include/class/SAP.app.php:845 +msgid "Selected modules" +msgstr "" + +#: ../../enterprise/godmode/massive/massive_delete_service_elements.php:264 +msgid "Remove selected" +msgstr "" + +#: ../../enterprise/godmode/massive/massive_delete_alerts_snmp.php:29 +#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:30 +#: ../../godmode/snmpconsole/snmp_alert.php:41 +#: ../../operation/snmpconsole/snmp_view.php:631 +#: ../../operation/snmpconsole/snmp_view.php:1115 +#: ../../operation/snmpconsole/snmp_view.php:1129 +msgid "Cold start (0)" +msgstr "" + +#: ../../enterprise/godmode/massive/massive_delete_alerts_snmp.php:30 +#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:31 +#: ../../godmode/snmpconsole/snmp_alert.php:42 +#: ../../operation/snmpconsole/snmp_view.php:632 +#: ../../operation/snmpconsole/snmp_view.php:1116 +#: ../../operation/snmpconsole/snmp_view.php:1133 +msgid "Warm start (1)" +msgstr "" + +#: ../../enterprise/godmode/massive/massive_delete_alerts_snmp.php:31 +#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:32 +#: ../../godmode/snmpconsole/snmp_alert.php:43 +#: ../../operation/snmpconsole/snmp_view.php:633 +#: ../../operation/snmpconsole/snmp_view.php:1117 +#: ../../operation/snmpconsole/snmp_view.php:1137 +msgid "Link down (2)" +msgstr "" + +#: ../../enterprise/godmode/massive/massive_delete_alerts_snmp.php:32 +#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:33 +#: ../../godmode/snmpconsole/snmp_alert.php:44 +#: ../../operation/snmpconsole/snmp_view.php:634 +#: ../../operation/snmpconsole/snmp_view.php:1118 +#: ../../operation/snmpconsole/snmp_view.php:1141 +msgid "Link up (3)" +msgstr "" + +#: ../../enterprise/godmode/massive/massive_delete_alerts_snmp.php:33 +#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:34 +#: ../../godmode/snmpconsole/snmp_alert.php:45 +#: ../../operation/snmpconsole/snmp_view.php:635 +#: ../../operation/snmpconsole/snmp_view.php:1119 +#: ../../operation/snmpconsole/snmp_view.php:1145 +msgid "Authentication failure (4)" +msgstr "" + +#: ../../enterprise/godmode/massive/massive_delete_alerts_snmp.php:34 +#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:35 +#: ../../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:1597 +#: ../../extensions/api_checker.php:176 +#: ../../godmode/groups/configure_group.php:250 +#: ../../godmode/users/configure_user.php:1097 +#: ../../godmode/snmpconsole/snmp_alert.php:46 +#: ../../include/functions_graph.php:3065 +#: ../../include/functions_graph.php:3110 +#: ../../include/functions_graph.php:3151 +#: ../../include/functions_graph.php:3193 +#: ../../include/functions_graph.php:3270 +#: ../../include/functions_graph.php:3414 +#: ../../include/functions_graph.php:3522 +#: ../../include/functions_graph.php:3587 +#: ../../include/functions_graph.php:3754 +#: ../../include/functions_graph.php:3766 +#: ../../include/functions_graph.php:3767 +#: ../../include/functions_graph.php:3770 +#: ../../include/functions_graph.php:3775 +#: ../../include/functions_graph.php:3776 +#: ../../include/functions_graph.php:3779 +#: ../../include/functions_graph.php:4778 +#: ../../include/functions_reporting.php:5031 +#: ../../include/functions_reporting.php:5043 +#: ../../include/functions_reporting.php:5044 +#: ../../include/functions_reporting.php:5047 +#: ../../include/functions_reporting.php:5052 +#: ../../include/functions_reporting.php:5053 +#: ../../include/functions_reporting.php:5056 +#: ../../operation/users/user_edit.php:362 +#: ../../operation/snmpconsole/snmp_statistics.php:218 +#: ../../operation/snmpconsole/snmp_statistics.php:275 +#: ../../operation/snmpconsole/snmp_view.php:636 +#: ../../operation/snmpconsole/snmp_view.php:1120 +#: ../../operation/snmpconsole/snmp_view.php:1149 +#: ../../operation/gis_maps/render_view.php:167 +msgid "Other" +msgstr "" + +#: ../../enterprise/godmode/massive/massive_delete_alerts_snmp.php:159 +#: ../../godmode/snmpconsole/snmp_alert.php:724 +#, php-format +msgid "Successfully deleted alerts (%s / %s)" +msgstr "" + +#: ../../enterprise/godmode/massive/massive_delete_alerts_snmp.php:167 +#: ../../godmode/snmpconsole/snmp_alert.php:728 +#, php-format +msgid "Unsuccessfully deleted alerts (%s / %s)" +msgstr "" + +#: ../../enterprise/godmode/massive/massive_delete_alerts_snmp.php:175 +#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:233 +msgid "You must select a SNMP alert" +msgstr "" + +#: ../../enterprise/godmode/massive/massive_delete_alerts_snmp.php:198 +#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:258 +msgid "" +"Search by these fields description, OID, Custom Value, SNMP Agent (IP), " +"Single value, each Custom OIDs/Datas." +msgstr "" + +#: ../../enterprise/godmode/massive/massive_delete_alerts_snmp.php:202 +#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:262 +#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:305 +#: ../../godmode/snmpconsole/snmp_alert.php:829 +#: ../../godmode/snmpconsole/snmp_alert.php:1166 +#: ../../include/functions_snmp.php:433 +#: ../../operation/snmpconsole/snmp_view.php:628 +msgid "Trap type" +msgstr "" + +#: ../../enterprise/godmode/massive/massive_delete_alerts_snmp.php:217 +msgid "SNMP Alerts to be deleted" +msgstr "" + +#: ../../enterprise/godmode/massive/massive_delete_alerts_snmp.php:289 +#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:403 +msgid "No snmp alert found." +msgstr "" + +#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:217 +#, php-format +msgid "Successfully updated alerts (%s / %s)" +msgstr "" + +#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:225 +#, php-format +msgid "Unsuccessfully updated alerts (%s / %s)" +msgstr "" + +#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:277 +msgid "SNMP Alerts to be edit" +msgstr "" + +#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:301 +#: ../../godmode/snmpconsole/snmp_alert.php:781 +msgid "Custom Value/OID" +msgstr "" + +#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:303 +#: ../../godmode/snmpconsole/snmp_trap_generator.php:125 +#: ../../godmode/snmpconsole/snmp_alert.php:790 +#: ../../godmode/snmpconsole/snmp_alert.php:1259 +#: ../../operation/snmpconsole/snmp_view.php:854 +msgid "SNMP Agent" +msgstr "" + +#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:307 +#: ../../godmode/snmpconsole/snmp_alert.php:835 +msgid "Single value" +msgstr "" + +#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:309 +#: ../../godmode/snmpconsole/snmp_alert.php:1075 +#: ../../godmode/alerts/configure_alert_template.php:691 +msgid "Min. number of alerts" +msgstr "" + +#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:311 +#: ../../godmode/snmpconsole/snmp_alert.php:1078 +#: ../../godmode/alerts/configure_alert_template.php:728 +msgid "Max. number of alerts" +msgstr "" + +#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:326 +#: ../../godmode/snmpconsole/snmp_alert.php:1097 +msgid "Other value" +msgstr "" + +#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:332 +#: ../../godmode/snmpconsole/snmp_alert.php:1126 +#: ../../godmode/snmpconsole/snmp_alert.php:1254 +#: ../../godmode/reporting/reporting_builder.list_items.php:371 +#: ../../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 +msgid "Position" +msgstr "" + +#: ../../enterprise/godmode/massive/massive_tags_edit_policy.php:127 +msgid "Modules unused" +msgstr "" + +#: ../../enterprise/godmode/massive/massive_tags_edit_policy.php:167 +msgid "Modules used" +msgstr "" + +#: ../../enterprise/godmode/massive/massive_delete_alerts_policy.php:88 +msgid "Success: remove the alerts." +msgstr "" + +#: ../../enterprise/godmode/massive/massive_delete_alerts_policy.php:88 +msgid "Failed: remove the alerts for this modules, please check." +msgstr "" + +#: ../../enterprise/godmode/massive/massive_delete_alerts_policy.php:141 +msgid "Modules agents in policy" +msgstr "" + +#: ../../enterprise/godmode/massive/massive_add_service_elements.php:112 +#, php-format +msgid "Problems while adding module element: %d, %s" +msgstr "" + +#: ../../enterprise/godmode/massive/massive_add_service_elements.php:157 +#, php-format +msgid "Problems while adding agent element: %d, %s" +msgstr "" + +#: ../../enterprise/godmode/massive/massive_add_service_elements.php:205 +#, php-format +msgid "%s: %d, %s" +msgstr "" + +#: ../../enterprise/godmode/massive/massive_add_service_elements.php:228 +msgid "Failed to process adding elements in services: " +msgstr "" + +#: ../../enterprise/godmode/massive/massive_add_service_elements.php:270 +msgid "added" +msgstr "" + +#: ../../enterprise/godmode/massive/massive_add_service_elements.php:354 +msgid "Item type to be added" +msgstr "" + +#: ../../enterprise/godmode/massive/massive_add_service_elements.php:371 +#: ../../enterprise/godmode/massive/massive_create_services.php:974 +msgid "Add selected" +msgstr "" + +#: ../../enterprise/godmode/massive/massive_add_service_elements.php:496 +#: ../../enterprise/godmode/massive/massive_edit_service_elements.php:252 +msgid "In smart services weights are automatically calculated." +msgstr "" + +#: ../../enterprise/godmode/massive/massive_add_service_elements.php:501 +#: ../../enterprise/godmode/massive/massive_edit_service_elements.php:257 +msgid "" +"Weights configured are common for every item added to the service, if you " +"want to customize them, please edit each element at service element editor." +msgstr "" + +#: ../../enterprise/godmode/massive/massive_add_service_elements.php:506 +#: ../../enterprise/godmode/massive/massive_create_services.php:1148 +#: ../../enterprise/godmode/massive/massive_edit_service_elements.php:262 +msgid "Service items summary" +msgstr "" + +#: ../../enterprise/godmode/massive/massive_add_service_elements.php:509 +#: ../../enterprise/godmode/massive/massive_create_services.php:1151 +#: ../../enterprise/godmode/massive/massive_edit_service_elements.php:265 +#: ../../include/functions_visual_map_editor.php:1148 +#: ../../include/rest-api/models/VisualConsole/Item.php:2522 +msgid "Critical weight" +msgstr "" + +#: ../../enterprise/godmode/massive/massive_add_service_elements.php:522 +#: ../../enterprise/godmode/massive/massive_create_services.php:1164 +#: ../../enterprise/godmode/massive/massive_edit_service_elements.php:278 +#: ../../include/functions_visual_map_editor.php:1174 +#: ../../include/rest-api/models/VisualConsole/Item.php:2536 +msgid "Warning weight" +msgstr "" + +#: ../../enterprise/godmode/massive/massive_add_service_elements.php:535 +#: ../../enterprise/godmode/massive/massive_create_services.php:1177 +#: ../../enterprise/godmode/massive/massive_edit_service_elements.php:291 +msgid "Unknown weight" +msgstr "" + +#: ../../enterprise/godmode/massive/massive_add_service_elements.php:548 +#: ../../enterprise/godmode/massive/massive_create_services.php:1190 +#: ../../enterprise/godmode/massive/massive_edit_service_elements.php:304 +msgid "Normal weight" +msgstr "" + +#: ../../enterprise/godmode/massive/massive_add_service_elements.php:616 +#: ../../include/functions_notifications.php:928 +msgid "Add elements" +msgstr "" + +#: ../../enterprise/godmode/massive/massive_create_services.php:110 +#: ../../enterprise/godmode/services/services.service.php:120 +msgid "No name specified for the service" +msgstr "" + +#: ../../enterprise/godmode/massive/massive_create_services.php:116 +#: ../../enterprise/godmode/services/services.service.php:131 +msgid "No description specified for the service" +msgstr "" + +#: ../../enterprise/godmode/massive/massive_create_services.php:122 +#: ../../enterprise/godmode/services/services.service.php:142 +msgid "You must specify an agent to store the service" +msgstr "" + +#: ../../enterprise/godmode/massive/massive_create_services.php:210 +#, php-format +msgid "Failed to create service for agent %s, %s" +msgstr "" + +#: ../../enterprise/godmode/massive/massive_create_services.php:294 +#, php-format +msgid "Failed to create service for module %s, %s" +msgstr "" + +#: ../../enterprise/godmode/massive/massive_create_services.php:380 +#, php-format +msgid "Failed to create service for service %s, %s" +msgstr "" + +#: ../../enterprise/godmode/massive/massive_create_services.php:435 +#, php-format +msgid "Agent selected %d not found" +msgstr "" + +#: ../../enterprise/godmode/massive/massive_create_services.php:481 +#, php-format +msgid "Module selected %d not found" +msgstr "" + +#: ../../enterprise/godmode/massive/massive_create_services.php:528 +#, php-format +msgid "Service selected %d not found" +msgstr "" + +#: ../../enterprise/godmode/massive/massive_create_services.php:562 +#, php-format +msgid "Failed to create service for agent %s" +msgstr "" + +#: ../../enterprise/godmode/massive/massive_create_services.php:573 +#, php-format +msgid "Failed to create services: %s" +msgstr "" + +#: ../../enterprise/godmode/massive/massive_create_services.php:593 +#, php-format +msgid "%d services created with %d items" +msgstr "" + +#: ../../enterprise/godmode/massive/massive_create_services.php:599 +msgid "No services created" +msgstr "" + +#: ../../enterprise/godmode/massive/massive_create_services.php:632 +msgid "Service(s) definition" +msgstr "" + +#: ../../enterprise/godmode/massive/massive_create_services.php:659 +#: ../../enterprise/godmode/services/services.service.php:570 +msgid "" +"This group will be used also to control access to this service and its " +"elements." +msgstr "" + +#: ../../enterprise/godmode/massive/massive_create_services.php:674 +#: ../../enterprise/godmode/services/services.service.php:634 +msgid "Agent to store data" +msgstr "" + +#: ../../enterprise/godmode/massive/massive_create_services.php:690 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:880 +#: ../../enterprise/godmode/services/services.service.php:651 +#: ../../enterprise/godmode/servers/HA_cluster.php:175 +#: ../../enterprise/operation/services/services.list.php:278 +#: ../../enterprise/operation/services/services.table_services.php:200 +#: ../../godmode/massive/massive_edit_modules.php:933 +#: ../../godmode/alerts/alert_view.php:407 +msgid "Mode" +msgstr "" + +#: ../../enterprise/godmode/massive/massive_create_services.php:698 +#: ../../enterprise/godmode/services/services.service.php:658 +#: ../../enterprise/include/class/VMware.app.php:676 +#: ../../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:1327 +#: ../../enterprise/include/class/MySQL.app.php:567 +#: ../../enterprise/include/class/Oracle.app.php:552 +#: ../../enterprise/include/class/MicrosoftSQLServer.app.php:546 +#: ../../enterprise/include/functions_ipam.php:1356 +#: ../../enterprise/operation/services/services.list.php:275 +#: ../../enterprise/operation/services/services.table_services.php:197 +#: ../../enterprise/tools/ipam/ipam_list.php:670 +#: ../../godmode/wizards/HostDevices.class.php:807 +#: ../../godmode/wizards/DiscoveryTaskList.class.php:712 +#: ../../include/class/CustomNetScan.class.php:529 +msgid "Manual" +msgstr "" + +#: ../../enterprise/godmode/massive/massive_create_services.php:699 +#: ../../enterprise/godmode/services/services.service.php:659 +#: ../../enterprise/operation/services/services.list.php:276 +#: ../../enterprise/operation/services/services.table_services.php:198 +msgid "Smart" +msgstr "" + +#: ../../enterprise/godmode/massive/massive_create_services.php:716 +#: ../../enterprise/godmode/services/services.service.php:676 +msgid "In smart mode, thresholds are percentual." +msgstr "" + +#: ../../enterprise/godmode/massive/massive_create_services.php:765 +msgid "Create a service per item" +msgstr "" + +#: ../../enterprise/godmode/massive/massive_create_services.php:766 +msgid "If enabled multiple services will be created." +msgstr "" + +#: ../../enterprise/godmode/massive/massive_create_services.php:784 +msgid "Services header" +msgstr "" + +#: ../../enterprise/godmode/massive/massive_create_services.php:785 +msgid "All services names created will start with selected name." +msgstr "" + +#: ../../enterprise/godmode/massive/massive_create_services.php:799 +#: ../../enterprise/godmode/services/services.service.php:726 +msgid "Unknown elements as critical" +msgstr "" + +#: ../../enterprise/godmode/massive/massive_create_services.php:829 +#: ../../enterprise/godmode/services/services.service.php:766 +msgid "Cascade protection enabled" +msgstr "" + +#: ../../enterprise/godmode/massive/massive_create_services.php:839 +msgid "SLA calculation" +msgstr "" + +#: ../../enterprise/godmode/massive/massive_create_services.php:842 +#: ../../enterprise/godmode/services/services.service.php:796 +msgid "Calculate continuous SLA" +msgstr "" + +#: ../../enterprise/godmode/massive/massive_create_services.php:852 +#: ../../enterprise/godmode/services/services.service.php:806 +msgid "S.L.A. interval" +msgstr "" + +#: ../../enterprise/godmode/massive/massive_create_services.php:866 +#: ../../enterprise/godmode/services/services.service.php:820 +msgid "S.L.A. limit" +msgstr "" + +#: ../../enterprise/godmode/massive/massive_create_services.php:896 +#: ../../enterprise/godmode/services/services.service.php:867 +msgid "Warning service alert" +msgstr "" + +#: ../../enterprise/godmode/massive/massive_create_services.php:908 +#: ../../enterprise/godmode/services/services.service.php:879 +msgid "Critical service alert" +msgstr "" + +#: ../../enterprise/godmode/massive/massive_create_services.php:920 +#: ../../enterprise/godmode/services/services.service.php:891 +msgid "Unknown service alert" +msgstr "" + +#: ../../enterprise/godmode/massive/massive_create_services.php:932 +#: ../../enterprise/godmode/services/services.service.php:903 +msgid "S.L.A. critical service alert" +msgstr "" + +#: ../../enterprise/godmode/massive/massive_create_services.php:946 +msgid "" +"Items selected here will be added to the lists at Service items summary." +msgstr "" + +#: ../../enterprise/godmode/massive/massive_create_services.php:949 +msgid "Item(s) definition" +msgstr "" + +#: ../../enterprise/godmode/massive/massive_create_services.php:957 +msgid "Item type" +msgstr "" + +#: ../../enterprise/godmode/massive/massive_create_services.php:1144 +msgid "" +"Weights configured are common for every item added to the service, if you " +"want to customize them, please edit the service." +msgstr "" + +#: ../../enterprise/godmode/massive/massive_create_services.php:1260 +msgid "Create services" +msgstr "" + +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:491 +#: ../../godmode/massive/massive_edit_modules.php:554 +msgid "Dynamic Min." +msgstr "" + +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:732 +#: ../../godmode/massive/massive_edit_modules.php:796 +msgid "SMNP community" +msgstr "" + +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:742 +#: ../../godmode/agentes/module_manager_editor_network.php:227 +#: ../../godmode/massive/massive_edit_modules.php:806 +msgid "SNMP OID" +msgstr "" + +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:757 +#: ../../godmode/agentes/module_manager_editor_wmi.php:45 +#: ../../godmode/agentes/module_manager_editor_network.php:80 +#: ../../godmode/massive/massive_edit_modules.php:821 +#: ../../include/class/AgentWizard.class.php:623 +#: ../../include/functions_snmp_browser.php:702 +msgid "Target IP" +msgstr "" + +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:780 +#: ../../enterprise/tools/ipam/ipam_vlan_wizard.php:272 +#: ../../godmode/modules/manage_network_components_form_network.php:55 +#: ../../godmode/agentes/module_manager_editor_network.php:180 +#: ../../godmode/massive/massive_edit_modules.php:839 +#: ../../godmode/wizards/HostDevices.class.php:1199 +#: ../../include/class/AgentWizard.class.php:734 +msgid "SNMP version" +msgstr "" + +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:795 +#: ../../enterprise/tools/ipam/ipam_vlan_wizard.php:299 +#: ../../godmode/modules/manage_network_components_form_network.php:96 +#: ../../godmode/agentes/module_manager_editor_network.php:336 +#: ../../godmode/massive/massive_edit_modules.php:852 +#: ../../godmode/wizards/HostDevices.class.php:1259 +#: ../../include/functions_snmp_browser.php:826 +msgid "Auth user" +msgstr "" + +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:804 +#: ../../enterprise/tools/ipam/ipam_vlan_wizard.php:308 +#: ../../godmode/modules/manage_network_components_form_network.php:105 +#: ../../godmode/agentes/module_manager_editor_network.php:349 +#: ../../godmode/massive/massive_edit_modules.php:861 +#: ../../godmode/wizards/HostDevices.class.php:1270 +#: ../../include/functions_snmp_browser.php:836 +msgid "Auth password" +msgstr "" + +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:804 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:808 +#: ../../godmode/agentes/module_manager_editor_network.php:349 +#: ../../godmode/agentes/module_manager_editor_network.php:371 +#: ../../godmode/massive/massive_edit_modules.php:861 +#: ../../godmode/massive/massive_edit_modules.php:865 +#: ../../godmode/wizards/HostDevices.class.php:1272 +#: ../../godmode/wizards/HostDevices.class.php:1303 +msgid "The pass length must be eight character minimum." +msgstr "" + +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:806 +#: ../../enterprise/tools/ipam/ipam_vlan_wizard.php:324 +#: ../../godmode/modules/manage_network_components_form_network.php:123 +#: ../../godmode/agentes/module_manager_editor_network.php:369 +#: ../../godmode/massive/massive_edit_modules.php:863 +#: ../../godmode/wizards/HostDevices.class.php:1286 +#: ../../include/class/AgentWizard.class.php:868 +#: ../../include/functions_snmp_browser.php:853 +msgid "Privacy method" +msgstr "" + +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:807 +#: ../../enterprise/tools/ipam/ipam_vlan_wizard.php:327 +#: ../../godmode/modules/manage_network_components_form_network.php:126 +#: ../../godmode/agentes/module_manager_editor_network.php:370 +#: ../../godmode/massive/massive_edit_modules.php:864 +#: ../../godmode/wizards/HostDevices.class.php:1291 +#: ../../include/functions_snmp_browser.php:856 +msgid "DES" +msgstr "" + +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:807 +#: ../../enterprise/tools/ipam/ipam_vlan_wizard.php:328 +#: ../../godmode/modules/manage_network_components_form_network.php:127 +#: ../../godmode/agentes/module_manager_editor_network.php:370 +#: ../../godmode/massive/massive_edit_modules.php:864 +#: ../../godmode/wizards/HostDevices.class.php:1292 +#: ../../include/functions_snmp_browser.php:857 +msgid "AES" +msgstr "" + +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:808 +#: ../../godmode/modules/manage_network_components_form_network.php:136 +#: ../../godmode/agentes/module_manager_editor_network.php:371 +#: ../../godmode/massive/massive_edit_modules.php:865 +#: ../../godmode/wizards/HostDevices.class.php:1301 +#: ../../include/class/AgentWizard.class.php:882 +#: ../../include/functions_snmp_browser.php:867 +msgid "Privacy pass" +msgstr "" + +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:810 +#: ../../enterprise/tools/ipam/ipam_vlan_wizard.php:347 +#: ../../godmode/modules/manage_network_components_form_network.php:148 +#: ../../godmode/agentes/module_manager_editor_network.php:391 +#: ../../godmode/massive/massive_edit_modules.php:867 +#: ../../godmode/wizards/HostDevices.class.php:1317 +#: ../../include/functions_snmp_browser.php:877 +msgid "Auth method" +msgstr "" + +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:811 +#: ../../enterprise/tools/ipam/ipam_vlan_wizard.php:350 +#: ../../godmode/modules/manage_network_components_form_network.php:151 +#: ../../godmode/agentes/module_manager_editor_network.php:394 +#: ../../godmode/massive/massive_edit_modules.php:868 +#: ../../godmode/wizards/HostDevices.class.php:1322 +#: ../../include/class/Diagnostics.class.php:2175 +#: ../../include/functions_snmp_browser.php:880 +msgid "MD5" +msgstr "" + +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:811 +#: ../../enterprise/tools/ipam/ipam_vlan_wizard.php:351 +#: ../../godmode/modules/manage_network_components_form_network.php:152 +#: ../../godmode/agentes/module_manager_editor_network.php:395 +#: ../../godmode/massive/massive_edit_modules.php:868 +#: ../../godmode/wizards/HostDevices.class.php:1323 +#: ../../include/functions_snmp_browser.php:881 +msgid "SHA" +msgstr "" + +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:812 +#: ../../enterprise/tools/ipam/ipam_vlan_wizard.php:360 +#: ../../godmode/modules/manage_network_components_form_network.php:161 +#: ../../godmode/agentes/module_manager_editor_network.php:408 +#: ../../godmode/massive/massive_edit_modules.php:869 +#: ../../godmode/wizards/HostDevices.class.php:1332 +#: ../../include/class/AgentWizard.class.php:809 +#: ../../include/functions_snmp_browser.php:890 +msgid "Security level" +msgstr "" + +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:815 +#: ../../enterprise/tools/ipam/ipam_vlan_wizard.php:363 +#: ../../godmode/modules/manage_network_components_form_network.php:164 +#: ../../godmode/agentes/module_manager_editor_network.php:411 +#: ../../godmode/massive/massive_edit_modules.php:872 +#: ../../godmode/wizards/HostDevices.class.php:1337 +#: ../../include/functions_snmp_browser.php:893 +msgid "Not auth and not privacy method" +msgstr "" + +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:816 +#: ../../enterprise/tools/ipam/ipam_vlan_wizard.php:364 +#: ../../godmode/modules/manage_network_components_form_network.php:165 +#: ../../godmode/agentes/module_manager_editor_network.php:412 +#: ../../godmode/massive/massive_edit_modules.php:873 +#: ../../godmode/wizards/HostDevices.class.php:1338 +#: ../../include/functions_snmp_browser.php:894 +msgid "Auth and not privacy method" +msgstr "" + +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:817 +#: ../../enterprise/tools/ipam/ipam_vlan_wizard.php:365 +#: ../../godmode/modules/manage_network_components_form_network.php:166 +#: ../../godmode/agentes/module_manager_editor_network.php:413 +#: ../../godmode/massive/massive_edit_modules.php:874 +#: ../../godmode/wizards/HostDevices.class.php:1339 +#: ../../include/functions_snmp_browser.php:895 +msgid "Auth and privacy method" +msgstr "" + +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:835 +#: ../../enterprise/operation/agentes/tag_view.php:157 +#: ../../godmode/agentes/module_manager_editor_common.php:271 +#: ../../godmode/agentes/module_manager_editor_common.php:1188 +#: ../../godmode/massive/massive_edit_modules.php:892 +#: ../../include/ajax/heatmap.ajax.php:196 +#: ../../include/functions_graph.php:5257 +#: ../../include/functions_treeview.php:116 ../../operation/heatmap.php:96 +#: ../../operation/agentes/status_monitor.php:518 +msgid "Not assigned" +msgstr "" + +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:849 +#: ../../enterprise/godmode/setup/setup_module_library.php:49 +#: ../../enterprise/include/functions_ui.php:102 +#: ../../extensions/quick_shell.php:174 +#: ../../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/class/CredentialStore.class.php:957 +#: ../../include/class/AgentWizard.class.php:667 +msgid "Username" +msgstr "" + +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:855 +#: ../../godmode/agentes/module_manager_editor_common.php:731 +#: ../../godmode/massive/massive_edit_modules.php:912 +msgid "Export target" +msgstr "" + +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:945 +#: ../../godmode/massive/massive_edit_modules.php:998 +msgid "Active Counters" +msgstr "" + +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:946 +#: ../../godmode/massive/massive_edit_modules.php:999 +msgid "Inactive Counters" +msgstr "" + +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:990 +#: ../../godmode/massive/massive_edit_modules.php:1066 +msgid "Policy linking status" +msgstr "" + +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:990 +#: ../../godmode/massive/massive_edit_modules.php:1066 +msgid "This field only has sense in modules adopted by a policy." +msgstr "" + +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:991 +#: ../../godmode/massive/massive_edit_modules.php:1067 +msgid "Linked" +msgstr "" + +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:991 +#: ../../godmode/agentes/module_manager.php:1050 +#: ../../godmode/agentes/module_manager.php:1053 +#: ../../godmode/massive/massive_edit_modules.php:1067 +#: ../../include/ajax/module.php:1092 ../../include/ajax/module.php:1095 +msgid "Unlinked" +msgstr "" + +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:1000 +#: ../../godmode/modules/manage_network_components_form_common.php:315 +#: ../../godmode/agentes/module_manager_editor_common.php:764 +#: ../../godmode/massive/massive_edit_modules.php:1076 +msgid "Discard unknown events" +msgstr "" + +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:1029 +#: ../../godmode/massive/massive_edit_modules.php:1105 +msgid "The module still store data but the alerts and events will be stop" +msgstr "" + +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:1044 +#: ../../enterprise/operation/agentes/manage_transmap_creation_phases_data.php:80 +#: ../../godmode/agentes/module_manager_editor_common.php:1135 +#: ../../godmode/massive/massive_edit_modules.php:1122 +msgid "Timeout" +msgstr "" + +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:1053 +#: ../../godmode/massive/massive_edit_modules.php:1131 +msgid "Seconds that agent will wait for the execution of the module." +msgstr "" + +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:1070 +#: ../../godmode/modules/manage_network_components_form_network.php:209 +#: ../../godmode/agentes/module_manager_editor_network.php:281 +#: ../../godmode/massive/massive_edit_modules.php:1148 +msgid "TCP send" +msgstr "" + +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:1073 +#: ../../godmode/modules/manage_network_components_form_network.php:216 +#: ../../godmode/agentes/module_manager_editor_network.php:295 +#: ../../godmode/massive/massive_edit_modules.php:1151 +msgid "TCP receive" +msgstr "" + +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:1076 +#: ../../godmode/modules/manage_network_components_form_wmi.php:31 +#: ../../godmode/agentes/module_manager_editor_wmi.php:133 +#: ../../godmode/massive/massive_edit_modules.php:1154 +msgid "WMI query" +msgstr "" + +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:1079 +#: ../../godmode/modules/manage_network_components_form_wmi.php:33 +#: ../../godmode/modules/manage_network_components_form_wizard.php:685 +#: ../../godmode/agentes/module_manager_editor_wmi.php:151 +#: ../../godmode/massive/massive_edit_modules.php:1157 +msgid "Key string" +msgstr "" + +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:1082 +#: ../../godmode/modules/manage_network_components_form_wmi.php:39 +#: ../../godmode/agentes/module_manager_editor_wmi.php:164 +#: ../../godmode/massive/massive_edit_modules.php:1160 +msgid "Field number" +msgstr "" + +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:1085 +#: ../../godmode/modules/manage_network_components_form_plugin.php:35 +#: ../../godmode/agentes/module_manager_editor_plugin.php:49 +#: ../../godmode/massive/massive_edit_plugins.php:346 +#: ../../godmode/massive/massive_edit_modules.php:1163 +#: ../../godmode/servers/plugin_registration.php:503 +msgid "Plugin" +msgstr "" + +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:1103 +#: ../../godmode/modules/manage_network_components_form_network.php:223 +#: ../../godmode/agentes/module_manager_editor_network.php:433 +#: ../../godmode/massive/massive_edit_plugins.php:480 +#: ../../godmode/massive/massive_edit_modules.php:1181 +#: ../../godmode/alerts/configure_alert_command.php:246 +#: ../../godmode/alerts/alert_actions.php:272 +#: ../../godmode/alerts/alert_actions.php:327 +#: ../../godmode/alerts/configure_alert_action.php:247 +#: ../../godmode/events/event_responses.editor.php:157 +#: ../../godmode/events/event_responses.editor.php:164 +#: ../../godmode/servers/plugin.php:429 ../../godmode/servers/plugin.php:434 +#: ../../godmode/servers/plugin.php:817 +#: ../../include/class/ManageNetScanScripts.class.php:434 +#: ../../include/class/ExternalTools.class.php:353 +msgid "Command" +msgstr "" + +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:1120 +#: ../../enterprise/include/class/DeploymentCenter.class.php:1397 +#: ../../godmode/modules/manage_network_components_form_network.php:242 +#: ../../godmode/agentes/module_manager_editor_network.php:459 +#: ../../godmode/massive/massive_edit_modules.php:1198 +msgid "Credential identifier" +msgstr "" + +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:1135 +#: ../../godmode/modules/manage_network_components_form_network.php:258 +#: ../../godmode/agentes/module_manager_editor_network.php:477 +#: ../../godmode/massive/massive_edit_modules.php:1213 +msgid "Inherited" +msgstr "" + +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:1136 +#: ../../godmode/modules/manage_network_components_form_network.php:259 +#: ../../godmode/massive/massive_edit_modules.php:1214 +msgid "Linux" +msgstr "" + +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:1137 +#: ../../godmode/modules/manage_network_components_form_network.php:260 +#: ../../godmode/massive/massive_edit_modules.php:1215 +msgid "Windows" +msgstr "" + +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:1140 +#: ../../godmode/modules/manage_network_components_form_network.php:263 +#: ../../godmode/massive/massive_edit_modules.php:1218 +msgid "Target OS" +msgstr "" + +#: ../../enterprise/godmode/massive/massive_edit_service_elements.php:131 +msgid "Failed to process updating elements in services: " +msgstr "" + +#: ../../enterprise/godmode/massive/massive_edit_service_elements.php:172 +#: ../../include/class/ConfigPEN.class.php:564 +msgid "updated" +msgstr "" + +#: ../../enterprise/godmode/massive/massive_edit_service_elements.php:373 +msgid "Update selected service elements" +msgstr "" + +#: ../../enterprise/godmode/massive/massive_delete_services.php:50 +#, php-format +msgid "Failed to delete: %s" +msgstr "" + +#: ../../enterprise/godmode/admin_access_logs.php:78 +msgid "Show extended info" +msgstr "" + +#: ../../enterprise/godmode/admin_access_logs.php:99 +msgid "" +"The security check cannot be performed. There are no data in " +"tsession_extended to check the hash." +msgstr "" + +#: ../../enterprise/godmode/admin_access_logs.php:108 +msgid "Security check is ok." +msgstr "" + +#: ../../enterprise/godmode/admin_access_logs.php:113 +msgid "Security check is fail." +msgstr "" + +#: ../../enterprise/godmode/admin_access_logs.php:208 +msgid "Extended info:" +msgstr "" + +#: ../../enterprise/godmode/admin_access_logs.php:216 +msgid "Changes:" +msgstr "" + +#: ../../enterprise/godmode/alerts/alert_inventory_builder.php:176 +msgid "Group acl" +msgstr "" + +#: ../../enterprise/godmode/alerts/alert_inventory_builder.php:215 +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:425 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2544 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2658 +msgid "Condition" +msgstr "" + +#: ../../enterprise/godmode/alerts/alert_inventory_builder.php:256 +msgid "Alert groups" +msgstr "" + +#: ../../enterprise/godmode/alerts/alert_inventory_builder.php:270 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1081 +#: ../../godmode/snmpconsole/snmp_alert.php:1130 +#: ../../godmode/alerts/configure_alert_template.php:749 +msgid "Disable event" +msgstr "" + +#: ../../enterprise/godmode/alerts/alert_inventory_builder.php:278 +#: ../../godmode/snmpconsole/snmp_alert.php:94 +msgid "Update alert" +msgstr "" + +#: ../../enterprise/godmode/alerts/alert_inventory_builder.php:282 +#: ../../godmode/alerts/alert_list.builder.php:204 +#: ../../include/class/AgentsAlerts.class.php:396 +msgid "Add alert" +msgstr "" + +#: ../../enterprise/godmode/alerts/alert_inventory_list.php:91 +#: ../../godmode/massive/massive_add_alerts.php:168 +#: ../../godmode/massive/massive_add_action_alerts.php:160 +#: ../../godmode/alerts/alert_list.php:271 +msgid "Successfully added" +msgstr "" + +#: ../../enterprise/godmode/alerts/alert_inventory_list.php:174 +msgid "Inventory alert filters" +msgstr "" + +#: ../../enterprise/godmode/alerts/alert_inventory_list.php:220 +msgid "Alert name" +msgstr "" + +#: ../../enterprise/godmode/alerts/alert_inventory_list.php:221 +#: ../../enterprise/operation/agentes/policy_view.php:261 +#: ../../godmode/snmpconsole/snmp_alert.php:1275 +#: ../../godmode/alerts/alert_view.php:99 +#: ../../include/functions_reporting_html.php:5253 +#: ../../include/ajax/alert_list.ajax.php:295 +#: ../../include/ajax/alert_list.ajax.php:320 +#: ../../include/functions_treeview.php:455 +#: ../../include/class/AgentsAlerts.class.php:893 +msgid "Last fired" +msgstr "" + +#: ../../enterprise/godmode/alerts/alert_inventory_list.php:261 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3228 +#: ../../enterprise/operation/agentes/policy_view.php:348 +#: ../../godmode/alerts/alert_list.list.php:577 +#: ../../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:12497 +msgid "Alert disabled" +msgstr "" + +#: ../../enterprise/godmode/alerts/alert_inventory_list.php:319 +#: ../../godmode/snmpconsole/snmp_alert.php:1394 +#: ../../godmode/alerts/alert_list.list.php:688 +msgid "Delete action" +msgstr "" + +#: ../../enterprise/godmode/alerts/alert_inventory_list.php:404 +msgid "Disable alert" +msgstr "" + +#: ../../enterprise/godmode/alerts/alert_inventory_list.php:407 +msgid "Enable alert" +msgstr "" + +#: ../../enterprise/godmode/alerts/alert_inventory_list.php:415 +msgid "Delete alert" +msgstr "" + +#: ../../enterprise/godmode/alerts/alert_inventory_list.php:427 +msgid "There are no defined inventory alerts" +msgstr "" + +#: ../../enterprise/godmode/alerts/alert_inventory.php:67 +msgid "Inventory alert list" +msgstr "" + +#: ../../enterprise/godmode/alerts/alert_inventory.php:71 +msgid "Inventory alert builder" +msgstr "" + +#: ../../enterprise/godmode/services/services.massive.meta.php:56 +#: ../../enterprise/godmode/services/services.massive.elements.php:93 +#: ../../godmode/agentes/agent_manager.php:541 +#: ../../godmode/massive/massive_edit_agents.php:952 +msgid "Not available" +msgstr "" + +#: ../../enterprise/godmode/services/services.service.php:109 +msgid "Service already exists." +msgstr "" + +#: ../../enterprise/godmode/services/services.service.php:201 +msgid "Error creating service: " +msgstr "" + +#: ../../enterprise/godmode/services/services.service.php:210 +#: ../../enterprise/godmode/services/services.service.php:316 +msgid "New Service" +msgstr "" + +#: ../../enterprise/godmode/services/services.service.php:216 +msgid "Service created successfully" +msgstr "" + +#: ../../enterprise/godmode/services/services.service.php:285 +#: ../../enterprise/include/functions_services.php:728 +msgid "Error updating service: " +msgstr "" + +#: ../../enterprise/godmode/services/services.service.php:296 +msgid "Service updated successfully" +msgstr "" + +#: ../../enterprise/godmode/services/services.service.php:309 +#: ../../enterprise/godmode/services/services.service.php:354 +#: ../../enterprise/operation/services/services.service.php:55 +#: ../../enterprise/operation/services/services.service_map.php:62 +msgid "Not found" +msgstr "" + +#: ../../enterprise/godmode/services/services.service.php:369 +msgid "Dynamic elements are not affected by cascade protection" +msgstr "" + +#: ../../enterprise/godmode/services/services.service.php:396 +#: ../../enterprise/godmode/services/services.elements.php:702 +#: ../../enterprise/operation/services/services.php:90 +#: ../../enterprise/operation/services/services.php:182 +msgid "Services list" +msgstr "" + +#: ../../enterprise/godmode/services/services.service.php:410 +#: ../../enterprise/godmode/services/services.elements.php:716 +#: ../../enterprise/operation/services/services.php:105 +msgid "Config Service" +msgstr "" + +#: ../../enterprise/godmode/services/services.service.php:427 +#: ../../enterprise/godmode/services/services.elements.php:733 +#: ../../enterprise/operation/services/services.php:123 +msgid "Config Elements" +msgstr "" + +#: ../../enterprise/godmode/services/services.service.php:439 +#: ../../enterprise/godmode/services/services.elements.php:745 +#: ../../enterprise/operation/services/services.php:136 +msgid "Bulk service elements operations" +msgstr "" + +#: ../../enterprise/godmode/services/services.service.php:454 +#: ../../enterprise/godmode/services/services.elements.php:760 +#: ../../enterprise/operation/services/services.php:152 +msgid "View Service" +msgstr "" + +#: ../../enterprise/godmode/services/services.service.php:465 +#: ../../enterprise/godmode/services/services.elements.php:771 +#: ../../enterprise/operation/services/services.php:164 +#: ../../include/lib/Dashboard/Widgets/service_map.php:441 +msgid "Service map" +msgstr "" + +#: ../../enterprise/godmode/services/services.service.php:519 +msgid "No Services or concrete action" +msgstr "" + +#: ../../enterprise/godmode/services/services.service.php:538 +msgid "Random name" +msgstr "" + +#: ../../enterprise/godmode/services/services.service.php:586 +msgid "Server assigned" +msgstr "" + +#: ../../enterprise/godmode/services/services.service.php:587 +msgid "Selected Prediction server will be assigned to evaluate the service." +msgstr "" + +#: ../../enterprise/godmode/services/services.service.php:608 +msgid "Evaluation interval" +msgstr "" + +#: ../../enterprise/godmode/services/services.service.php:756 +msgid "Asynchronous mode" +msgstr "" + +#: ../../enterprise/godmode/services/services.service.php:776 +msgid "Enable Sunburst" +msgstr "" + +#: ../../enterprise/godmode/services/services.service.php:786 +msgid "General Data" +msgstr "" + +#: ../../enterprise/godmode/services/services.service.php:832 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:221 +#: ../../enterprise/include/functions_reporting_csv.php:1481 +#: ../../include/functions_reports.php:699 +#: ../../include/functions_reporting.php:952 +msgid "S.L.A." +msgstr "" + +#: ../../enterprise/godmode/services/services.service.php:841 +msgid "" +"Here are described the alert templates, which will use their default " +"actions.\n" +"\t\tYou can modify the default behaviour editing alerts in the agent who " +"stores data and alert definitions about the service and the SLA status." +msgstr "" + +#: ../../enterprise/godmode/services/services.service.php:995 +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:436 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2568 +#: ../../enterprise/include/functions_reporting_csv.php:1539 +#: ../../enterprise/include/functions_reporting_csv.php:1585 +#: ../../enterprise/include/functions_reporting_csv.php:1903 +#: ../../enterprise/include/class/DeploymentCenter.class.php:1668 +#: ../../enterprise/include/class/DeploymentCenter.class.php:1720 +#: ../../enterprise/include/class/DatabaseHA.class.php:390 +#: ../../enterprise/include/class/DatabaseHA.class.php:625 +#: ../../enterprise/include/class/DatabaseHA.class.php:727 +#: ../../enterprise/include/class/AgentRepository.class.php:911 +#: ../../enterprise/include/class/LogSource.class.php:844 +#: ../../enterprise/include/class/ManageBackups.class.php:292 +#: ../../enterprise/include/class/ManageBackups.class.php:445 +#: ../../enterprise/include/functions_reporting.php:1883 +#: ../../enterprise/include/functions_reporting.php:2930 +#: ../../enterprise/include/functions_reporting.php:3186 +#: ../../enterprise/include/functions_reporting.php:3918 +#: ../../enterprise/include/functions_reporting.php:4187 +#: ../../enterprise/include/functions_reporting.php:4833 +#: ../../enterprise/include/functions_reporting.php:6156 +#: ../../enterprise/include/functions_reporting.php:6194 +#: ../../enterprise/include/functions_services.php:2084 +#: ../../enterprise/include/functions_ux_console.php:473 +#: ../../enterprise/operation/agentes/ux_console_view.php:186 +#: ../../enterprise/operation/agentes/ux_console_view.php:384 +#: ../../enterprise/operation/agentes/wux_console_view.php:424 +#: ../../extensions/module_groups.php:53 +#: ../../godmode/massive/massive_operations.php:392 +#: ../../godmode/setup/setup_general.php:778 +#: ../../godmode/setup/setup_general.php:796 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2669 +#: ../../include/functions_reporting_html.php:659 +#: ../../include/functions_reporting_html.php:854 +#: ../../include/functions_reporting_html.php:3346 +#: ../../include/functions_reporting_html.php:4645 +#: ../../include/functions_db.php:1933 +#: ../../include/class/ConfigPEN.class.php:668 +#: ../../include/class/ConfigPEN.class.php:692 +#: ../../include/class/HelpFeedBack.class.php:369 +#: ../../include/class/CredentialStore.class.php:1241 +#: ../../include/class/ModuleTemplates.class.php:1381 +#: ../../include/class/WelcomeWindow.class.php:173 +#: ../../include/class/AgentWizard.class.php:6040 +#: ../../include/lib/Dashboard/Widgets/maps_status.php:351 +#: ../../operation/agentes/pandora_networkmap.editor.php:602 +#: ../../operation/snmpconsole/snmp_browser.php:645 +msgid "OK" +msgstr "" + +#: ../../enterprise/godmode/services/services.service.php:998 +msgid "" +"This change in the service configuration will delete the history of the " +"service modules. Do you wish to continue?" +msgstr "" + +#: ../../enterprise/godmode/services/services.service.php:1000 +msgid "" +"This change in the service configuration will prevent the SLA modules from " +"being created. Do you wish to continue?" +msgstr "" + +#: ../../enterprise/godmode/services/services.elements.php:72 +msgid "Invalid service" +msgstr "" + +#: ../../enterprise/godmode/services/services.elements.php:99 +#: ../../enterprise/include/functions_reporting.php:2536 +#: ../../enterprise/include/functions_reporting.php:3480 +#: ../../enterprise/include/functions_reporting.php:4455 +#: ../../include/functions_maps.php:50 +#: ../../include/functions_reporting.php:1062 +#: ../../include/functions_reporting.php:9111 +#: ../../operation/agentes/pandora_networkmap.php:778 +msgid "Dynamic" +msgstr "" + +#: ../../enterprise/godmode/services/services.elements.php:216 +#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:128 +msgid "Custom field name" +msgstr "" + +#: ../../enterprise/godmode/services/services.elements.php:228 +#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:130 +msgid "Custom field value" +msgstr "" + +#: ../../enterprise/godmode/services/services.elements.php:246 +msgid "Add custom field match" +msgstr "" + +#: ../../enterprise/godmode/services/services.elements.php:252 +msgid "Both 'name' and 'value' must be defined to filter. Ignored otherwise." +msgstr "" + +#: ../../enterprise/godmode/services/services.elements.php:257 +msgid "MySQL Regular expressions case sensitive." +msgstr "" + +#: ../../enterprise/godmode/services/services.elements.php:263 +msgid "Matching objects type" +msgstr "" + +#: ../../enterprise/godmode/services/services.elements.php:278 +msgid "Filter by group" +msgstr "" + +#: ../../enterprise/godmode/services/services.elements.php:290 +msgid "Use regular expresions selectors" +msgstr "" + +#: ../../enterprise/godmode/services/services.elements.php:298 +msgid "Having agent name" +msgstr "" + +#: ../../enterprise/godmode/services/services.elements.php:306 +msgid "Having module name" +msgstr "" + +#: ../../enterprise/godmode/services/services.elements.php:316 +msgid "Having custom fields" +msgstr "" + +#: ../../enterprise/godmode/services/services.elements.php:327 +msgid "Apply rules on this server" +msgstr "" + +#: ../../enterprise/godmode/services/services.elements.php:346 +msgid "Weights" +msgstr "" + +#: ../../enterprise/godmode/services/services.elements.php:351 +msgid "In smart mode weights are automatically calculated." +msgstr "" + +#: ../../enterprise/godmode/services/services.elements.php:449 +#: ../../enterprise/godmode/services/services.elements.php:459 +#: ../../enterprise/godmode/services/services.elements.php:466 +msgid "Selected agent not found." +msgstr "" + +#: ../../enterprise/godmode/services/services.elements.php:472 +#: ../../enterprise/godmode/services/services.elements.php:484 +#, php-format +msgid "Selected module not found in %s." +msgstr "" + +#: ../../enterprise/godmode/services/services.elements.php:493 +msgid "Selected service not found." +msgstr "" + +#: ../../enterprise/godmode/services/services.elements.php:510 +msgid "Selected service could generate a loop" +msgstr "" + +#: ../../enterprise/godmode/services/services.elements.php:522 +#, php-format +msgid "Failed adding service child: %s" +msgstr "" + +#: ../../enterprise/godmode/services/services.elements.php:565 +#, php-format +msgid "Selected rules are not valid: %s." +msgstr "" + +#: ../../enterprise/godmode/services/services.elements.php:573 +msgid "Invalid element type." +msgstr "" + +#: ../../enterprise/godmode/services/services.elements.php:599 +msgid "Element registered successfully" +msgstr "" + +#: ../../enterprise/godmode/services/services.elements.php:645 +#, php-format +msgid "Error deleting element: %s" +msgstr "" + +#: ../../enterprise/godmode/services/services.elements.php:783 +#: ../../operation/search_maps.php:30 +msgid "Elements" +msgstr "" + +#: ../../enterprise/godmode/services/services.elements.php:811 +#: ../../enterprise/include/functions_services.php:2019 +msgid "Edit service elements" +msgstr "" + +#: ../../enterprise/godmode/services/services.elements.php:845 +#: ../../enterprise/godmode/services/services.elements.php:856 +#: ../../enterprise/include/functions_visual_map.php:677 +#: ../../enterprise/include/functions_HA_cluster.php:535 +#: ../../enterprise/include/class/DeploymentCenter.class.php:1611 +#: ../../enterprise/include/class/AgentRepository.class.php:855 +#: ../../enterprise/include/class/Omnishell.class.php:1083 +#: ../../enterprise/include/class/LogSource.class.php:788 +#: ../../enterprise/include/class/ManageBackups.class.php:473 +#: ../../godmode/wizards/DiscoveryTaskList.class.php:1057 +#: ../../include/ajax/snmp_browser.ajax.php:260 +#: ../../include/functions_ui.php:294 +#: ../../include/class/ConfigPEN.class.php:737 +#: ../../include/class/HelpFeedBack.class.php:359 +#: ../../include/class/Diagnostics.class.php:2087 +#: ../../include/class/CredentialStore.class.php:1185 +#: ../../include/class/ModuleTemplates.class.php:1417 +#: ../../include/class/WebServerModuleDebug.class.php:359 +#: ../../include/class/AgentWizard.class.php:5834 +#: ../../operation/visual_console/view.php:806 +msgid "Success" +msgstr "" + +#: ../../enterprise/godmode/services/services.elements.php:847 +msgid "Add element" +msgstr "" + +#: ../../enterprise/godmode/services/services.elements.php:858 +msgid "Edit element" +msgstr "" + +#: ../../enterprise/godmode/setup/setup_history.php:88 +msgid "Method does not exist" +msgstr "" + +#: ../../enterprise/godmode/setup/setup_history.php:163 +#: ../../include/functions_config.php:1529 +msgid "Host" +msgstr "" + +#: ../../enterprise/godmode/setup/setup_history.php:208 +#: ../../include/functions_config.php:1550 +msgid "Database user" +msgstr "" + +#: ../../enterprise/godmode/setup/setup_history.php:223 +#: ../../include/functions_config.php:1554 +msgid "Database password" +msgstr "" + +#: ../../enterprise/godmode/setup/setup_history.php:227 +msgid "Configure connection target" +msgstr "" + +#: ../../enterprise/godmode/setup/setup_history.php:241 +msgid "Active to historical settings" +msgstr "" + +#: ../../enterprise/godmode/setup/setup_history.php:245 +#, php-format +msgid "" +"Data will be available in active database as time as days you specify here. " +"Older information will be sent to historical database. Note data will be " +"purged from active database after %d days." +msgstr "" + +#: ../../enterprise/godmode/setup/setup_history.php:251 +msgid "Data days old to keep in active database" +msgstr "" + +#: ../../enterprise/godmode/setup/setup_history.php:266 +msgid "" +"Number of rows to be sent to historical database each 'delay' seconds. If " +"you experience issues running pandora_db, try decreasing this value." +msgstr "" + +#: ../../enterprise/godmode/setup/setup_history.php:270 +msgid "Transference block size (Step)" +msgstr "" + +#: ../../enterprise/godmode/setup/setup_history.php:275 +msgid "Delay between transferences (seconds)" +msgstr "" + +#: ../../enterprise/godmode/setup/setup_history.php:280 +msgid "Historical data settings" +msgstr "" + +#: ../../enterprise/godmode/setup/setup_history.php:282 +msgid "Maximum historical data age (days)" +msgstr "" + +#: ../../enterprise/godmode/setup/setup_history.php:287 +msgid "Maximum historical string data age (days)" +msgstr "" + +#: ../../enterprise/godmode/setup/setup_history.php:292 +msgid "" +"Data older than 'days' is compacted in order to improve disk utilization." +msgstr "" + +#: ../../enterprise/godmode/setup/setup_history.php:297 +msgid "" +"Automatically create partitions on specific database IDB files " +"(tagente_datos, tagente_datos_string, tevento). Monthly partitions." +msgstr "" + +#: ../../enterprise/godmode/setup/setup_history.php:301 +msgid "Automatic partition of big tables." +msgstr "" + +#: ../../enterprise/godmode/setup/setup_history.php:312 +msgid "Historical events settings" +msgstr "" + +#: ../../enterprise/godmode/setup/setup_history.php:323 +#, php-format +msgid "" +"Events will remain in active database a maximum of specified days, then they " +"will be transferred to historical database. Note events will be purged from " +"active database after %d days." +msgstr "" + +#: ../../enterprise/godmode/setup/setup_history.php:329 +msgid "Events days old to keep in active database" +msgstr "" + +#: ../../enterprise/godmode/setup/setup_history.php:344 +msgid "Events will be purged from historical database after specified days." +msgstr "" + +#: ../../enterprise/godmode/setup/setup_history.php:348 +msgid "Maximum historical events age (days)" +msgstr "" + +#: ../../enterprise/godmode/setup/setup_history.php:365 +msgid "Enable historical events" +msgstr "" + +#: ../../enterprise/godmode/setup/setup_history.php:377 +msgid "Customize settings" +msgstr "" + +#: ../../enterprise/godmode/setup/setup_history.php:389 +msgid "Enable historical database" +msgstr "" + +#: ../../enterprise/godmode/setup/setup_history.php:411 +msgid "History database connection is available." +msgstr "" + +#: ../../enterprise/godmode/setup/setup_history.php:418 +#, php-format +msgid "History database connection failed: %s" +msgstr "" + +#: ../../enterprise/godmode/setup/setup_history.php:434 +msgid "History database schema is installed." +msgstr "" + +#: ../../enterprise/godmode/setup/setup_history.php:443 +#, php-format +msgid "Database is not installed: %s" +msgstr "" + +#: ../../enterprise/godmode/setup/setup_history.php:448 +msgid "Install database schema" +msgstr "" + +#: ../../enterprise/godmode/setup/setup_history.php:449 +msgid "This action will install the schema into the target, are you sure?" +msgstr "" + +#: ../../enterprise/godmode/setup/setup_history.php:471 +msgid "History database schema is up to date with active database." +msgstr "" + +#: ../../enterprise/godmode/setup/setup_history.php:480 +#, php-format +msgid "Database is not updated: %s" +msgstr "" + +#: ../../enterprise/godmode/setup/setup_history.php:495 +msgid "Current schema: " +msgstr "" + +#: ../../enterprise/godmode/setup/setup_history.php:502 +msgid "Upgrade database schema" +msgstr "" + +#: ../../enterprise/godmode/setup/setup_history.php:503 +msgid "" +"This action will schedule the installation or upgrade of database schema " +"into the target, are you sure?" +msgstr "" + +#: ../../enterprise/godmode/setup/setup_history.php:517 +#: ../../godmode/setup/performance.php:696 +msgid "Database maintenance status" +msgstr "" + +#: ../../enterprise/godmode/setup/setup_history.php:536 +msgid "" +"By enabling historical database, target connection will be tested. If " +"needed, database schema will be applied on your selected target, do you want " +"to proceed?" +msgstr "" + +#: ../../enterprise/godmode/setup/setup_history.php:537 +msgid "" +"Changing historical database target, schema will be recreated in new one, " +"but old data will remain in previous node, unlinked from this console and " +"not maintained, do you want to proceed?" +msgstr "" + +#: ../../enterprise/godmode/setup/setup_history.php:539 +#, php-format +msgid "" +"Disabling historical database, you will not keep any data older than %d " +"days. Are you sure?" +msgstr "" + +#: ../../enterprise/godmode/setup/setup_history.php:543 +#, php-format +msgid "" +"Historical database allows you to keep data older than %d days. This action " +"will produce no changes. Historical database will remain disabled." +msgstr "" + +#: ../../enterprise/godmode/setup/setup_history.php:548 +msgid "" +"By changing historical database target, the new connection will be tested. " +"If needed, database schema will be applied on your selected target. " +"Information stored in previous configuration will be IGNORED, do you want to " +"proceed?" +msgstr "" + +#: ../../enterprise/godmode/setup/setup_history.php:551 +msgid "Please ensure all fields matches your needs." +msgstr "" + +#: ../../enterprise/godmode/setup/setup_history.php:683 +msgid "Update scheduled." +msgstr "" + +#: ../../enterprise/godmode/setup/setup.php:47 +#: ../../include/functions_config.php:397 +msgid "Forward SNMP traps to agent (if exist)" +msgstr "" + +#: ../../enterprise/godmode/setup/setup.php:48 +msgid "Yes and change status" +msgstr "" + +#: ../../enterprise/godmode/setup/setup.php:56 +msgid "Yes without changing status" +msgstr "" + +#: ../../enterprise/godmode/setup/setup.php:77 +#: ../../include/functions_config.php:401 +msgid "Use Enterprise ACL System" +msgstr "" + +#: ../../enterprise/godmode/setup/setup.php:104 +msgid "Metaconsole DB engine" +msgstr "" + +#: ../../enterprise/godmode/setup/setup.php:107 +#: ../../enterprise/include/class/MySQL.app.php:420 +msgid "MySQL" +msgstr "" + +#: ../../enterprise/godmode/setup/setup.php:122 +msgid "Metaconsole DB host" +msgstr "" + +#: ../../enterprise/godmode/setup/setup.php:136 +msgid "Metaconsole DB name" +msgstr "" + +#: ../../enterprise/godmode/setup/setup.php:150 +msgid "Metaconsole DB user" +msgstr "" + +#: ../../enterprise/godmode/setup/setup.php:164 +msgid "Metaconsole DB password" +msgstr "" + +#: ../../enterprise/godmode/setup/setup.php:191 +msgid "Events Configuration Information" +msgstr "" + +#: ../../enterprise/godmode/setup/setup.php:193 +msgid "" +" If you are replicating events, events validated or deleted on the " +"metaconsole WILL NOT be deleted or validated here. This option is just to " +"allow local pandora users to see events, but not to operate with them. " +"Operation, when event replication is enabled, should be done only in " +"metaconsole" +msgstr "" + +#: ../../enterprise/godmode/setup/setup.php:198 +#: ../../include/functions_config.php:458 +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:437 +msgid "Activate Log Collector" +msgstr "" + +#: ../../enterprise/godmode/setup/setup.php:305 +msgid "Critical threshold for occupied addresses" +msgstr "" + +#: ../../enterprise/godmode/setup/setup.php:317 +msgid "Warning threshold for occupied addresses" +msgstr "" + +#: ../../enterprise/godmode/setup/setup.php:329 +#: ../../include/functions_config.php:453 +msgid "SAP/R3 Plugin Licence" +msgstr "" + +#: ../../enterprise/godmode/setup/setup.php:345 +msgid "Enterprise options" +msgstr "" + +#: ../../enterprise/godmode/setup/setup.php:505 +#, php-format +msgid "" +"Password related configuration only applies when local %s authentication is " +"selected." +msgstr "" + +#: ../../enterprise/godmode/setup/setup.php:514 +msgid "Enterprise password policy" +msgstr "" + +#: ../../enterprise/godmode/setup/setup_skins.php:38 +#: ../../enterprise/godmode/setup/edit_skin.php:44 +msgid "Skins configuration" +msgstr "" + +#: ../../enterprise/godmode/setup/setup_skins.php:77 +msgid "Error deleting skin" +msgstr "" + +#: ../../enterprise/godmode/setup/setup_skins.php:79 +msgid "Successfully deleted skin" +msgstr "" + +#: ../../enterprise/godmode/setup/setup_skins.php:125 +msgid "Skin name" +msgstr "" + +#: ../../enterprise/godmode/setup/setup_skins.php:126 +#: ../../enterprise/godmode/setup/edit_skin.php:241 +msgid "Relative path" +msgstr "" + +#: ../../enterprise/godmode/setup/setup_skins.php:153 +msgid "There are no defined skins" +msgstr "" + +#: ../../enterprise/godmode/setup/setup_skins.php:159 +msgid "Create skin" +msgstr "" + +#: ../../enterprise/godmode/setup/setup_module_library.php:68 +#: ../../enterprise/godmode/wizards/Cloud.class.php:381 +#: ../../godmode/module_library/module_library_view.php:163 +msgid "Invalid username or password" +msgstr "" + +#: ../../enterprise/godmode/setup/setup_module_library.php:69 +#: ../../godmode/module_library/module_library_view.php:162 +msgid "Problem with authentication. Check your internet connection" +msgstr "" + +#: ../../enterprise/godmode/setup/setup_metaconsole.php:31 +msgid "Metaconsole setup" +msgstr "" + +#: ../../enterprise/godmode/setup/setup_metaconsole.php:195 +msgid "Pandora FMS Metaconsole item edition" +msgstr "" + +#: ../../enterprise/godmode/setup/setup_metaconsole.php:202 +msgid "" +"Token previously configured on the destination Pandora console in order to " +"use delegated authentification." +msgstr "" + +#: ../../enterprise/godmode/setup/setup_metaconsole.php:274 +msgid "Console URLxxxxxx" +msgstr "" + +#: ../../enterprise/godmode/setup/setup_log_collector.php:37 +msgid "ElasticSearch IP" +msgstr "" + +#: ../../enterprise/godmode/setup/setup_log_collector.php:37 +msgid "IP of ElasticSearch server" +msgstr "" + +#: ../../enterprise/godmode/setup/setup_log_collector.php:39 +msgid "ElasticSearch Port" +msgstr "" + +#: ../../enterprise/godmode/setup/setup_log_collector.php:39 +msgid "Port of ElasticSearch server" +msgstr "" + +#: ../../enterprise/godmode/setup/setup_log_collector.php:44 +#: ../../include/functions_config.php:1511 +msgid "Days to purge old information" +msgstr "" + +#: ../../enterprise/godmode/setup/setup_log_collector.php:48 +msgid "ElasticSearch Status" +msgstr "" + +#: ../../enterprise/godmode/setup/setup_auth.php:34 +msgid "Active directory" +msgstr "" + +#: ../../enterprise/godmode/setup/setup_auth.php:35 +msgid "SAML" +msgstr "" + +#: ../../enterprise/godmode/setup/setup_auth.php:87 +msgid "Force automatically create profile user" +msgstr "" + +#: ../../enterprise/godmode/setup/setup_auth.php:92 +msgid "Local command" +msgstr "" + +#: ../../enterprise/godmode/setup/setup_auth.php:95 +msgid "PHP function" +msgstr "" + +#: ../../enterprise/godmode/setup/setup_auth.php:99 +#: ../../enterprise/include/functions_tasklist.php:254 +#: ../../enterprise/include/functions_tasklist.php:341 +#: ../../enterprise/operation/reporting/custom_reporting.php:20 +#: ../../godmode/tag/tag.php:281 ../../godmode/tag/edit_tag.php:239 +#: ../../include/functions_cron.php:575 ../../include/functions_cron.php:666 +#: ../../operation/search_users.php:45 +msgid "Email" +msgstr "" + +#: ../../enterprise/godmode/setup/setup_auth.php:172 +#: ../../enterprise/godmode/setup/setup_auth.php:456 +#: ../../enterprise/godmode/setup/setup_auth.php:1251 +msgid "Profiles selected" +msgstr "" + +#: ../../enterprise/godmode/setup/setup_auth.php:173 +#: ../../enterprise/godmode/setup/setup_auth.php:457 +#: ../../enterprise/godmode/setup/setup_auth.php:1252 +msgid "Groups selected" +msgstr "" + +#: ../../enterprise/godmode/setup/setup_auth.php:175 +#: ../../enterprise/godmode/setup/setup_auth.php:232 +#: ../../include/functions_profile.php:216 +msgid "No hierarchy" +msgstr "" + +#: ../../enterprise/godmode/setup/setup_auth.php:176 +#: ../../enterprise/godmode/setup/setup_auth.php:233 +msgid "LDAP Attributes" +msgstr "" + +#: ../../enterprise/godmode/setup/setup_auth.php:177 +#: ../../enterprise/godmode/setup/setup_auth.php:234 +#: ../../enterprise/godmode/setup/setup_auth.php:460 +#: ../../enterprise/godmode/setup/setup_auth.php:512 +#: ../../enterprise/godmode/setup/setup_auth.php:1255 +#: ../../enterprise/godmode/setup/setup_auth.php:1309 +#: ../../godmode/setup/snmp_wizard.php:44 +msgid "OP" +msgstr "" + +#: ../../enterprise/godmode/setup/setup_auth.php:229 +#: ../../enterprise/godmode/setup/setup_auth.php:508 +#: ../../enterprise/godmode/setup/setup_auth.php:1305 +#: ../../godmode/groups/configure_group.php:122 +#: ../../godmode/groups/group_list.php:380 +#: ../../godmode/users/profile_list.php:323 ../../godmode/menu.php:152 +msgid "Profiles" +msgstr "" + +#: ../../enterprise/godmode/setup/setup_auth.php:242 +#: ../../enterprise/godmode/setup/setup_auth.php:519 +#: ../../enterprise/godmode/setup/setup_auth.php:1316 +msgid "Select profile" +msgstr "" + +#: ../../enterprise/godmode/setup/setup_auth.php:287 +#: ../../enterprise/godmode/setup/setup_auth.php:557 +#: ../../enterprise/godmode/setup/setup_auth.php:1359 +msgid "Add new permissions" +msgstr "" + +#: ../../enterprise/godmode/setup/setup_auth.php:385 +#: ../../enterprise/godmode/setup/setup_auth.php:1180 +msgid "New users will be able to log in to the nodes." +msgstr "" + +#: ../../enterprise/godmode/setup/setup_auth.php:459 +#: ../../enterprise/godmode/setup/setup_auth.php:511 +#: ../../enterprise/godmode/setup/setup_auth.php:1254 +#: ../../enterprise/godmode/setup/setup_auth.php:1308 +msgid "AD Groups" +msgstr "" + +#: ../../enterprise/godmode/setup/setup_auth.php:738 +#: ../../enterprise/godmode/setup/setup_auth.php:854 +msgid "You must select a profile from the list of profiles." +msgstr "" + +#: ../../enterprise/godmode/setup/setup_auth.php:743 +#: ../../enterprise/godmode/setup/setup_auth.php:859 +msgid "You must select a group from the list of groups." +msgstr "" + +#: ../../enterprise/godmode/setup/setup_auth.php:1021 +#: ../../include/functions_config.php:670 +msgid "MySQL host" +msgstr "" + +#: ../../enterprise/godmode/setup/setup_auth.php:1084 +msgid "SimpleSAML path" +msgstr "" + +#: ../../enterprise/godmode/setup/setup_auth.php:1085 +msgid "Directory where your 'simplesamlphp' folder is located." +msgstr "" + +#: ../../enterprise/godmode/setup/setup_auth.php:1091 +msgid "SAML source" +msgstr "" + +#: ../../enterprise/godmode/setup/setup_auth.php:1092 +msgid "Authsource name, e.g. 'example-userpass'" +msgstr "" + +#: ../../enterprise/godmode/setup/setup_auth.php:1099 +msgid "SAML user id attribute" +msgstr "" + +#: ../../enterprise/godmode/setup/setup_auth.php:1104 +msgid "SAML mail attribute" +msgstr "" + +#: ../../enterprise/godmode/setup/setup_auth.php:1105 +msgid "" +"SAML field where search for the user email (while autocreate remote users is " +"enabled)" +msgstr "" + +#: ../../enterprise/godmode/setup/setup_auth.php:1112 +msgid "SAML group name attribute" +msgstr "" + +#: ../../enterprise/godmode/setup/setup_auth.php:1113 +msgid "" +"SAML field where search for the group name (while autocreate remote users is " +"enabled)" +msgstr "" + +#: ../../enterprise/godmode/setup/setup_auth.php:1120 +msgid "Simple attribute / Multivalue attribute" +msgstr "" + +#: ../../enterprise/godmode/setup/setup_auth.php:1125 +msgid "SAML profiles and tag attribute" +msgstr "" + +#: ../../enterprise/godmode/setup/setup_auth.php:1130 +msgid "Profile attribute" +msgstr "" + +#: ../../enterprise/godmode/setup/setup_auth.php:1135 +msgid "Tag attribute" +msgstr "" + +#: ../../enterprise/godmode/setup/setup_auth.php:1140 +msgid "SAML profile and tags prefix" +msgstr "" + +#: ../../enterprise/godmode/setup/setup_acl.php:46 +msgid "Enterprise ACL setup" +msgstr "" + +#: ../../enterprise/godmode/setup/setup_acl.php:69 +msgid "ACL element was deleted successfully" +msgstr "" + +#: ../../enterprise/godmode/setup/setup_acl.php:71 +msgid "There was a problem delete ACL element" +msgstr "" + +#: ../../enterprise/godmode/setup/setup_acl.php:417 +msgid "This record already exists in the database" +msgstr "" + +#: ../../enterprise/godmode/setup/setup_acl.php:422 +msgid "ACL element is added successfully" +msgstr "" + +#: ../../enterprise/godmode/setup/setup_acl.php:424 +msgid "There was a problem adding ACL element" +msgstr "" + +#: ../../enterprise/godmode/setup/setup_acl.php:464 +#: ../../enterprise/godmode/setup/setup_acl.php:539 +msgid "Add new ACL element to profile" +msgstr "" + +#: ../../enterprise/godmode/setup/setup_acl.php:469 +#: ../../enterprise/godmode/setup/setup_acl.php:544 +#: ../../enterprise/godmode/setup/setup_acl.php:592 +msgid "Section" +msgstr "" + +#: ../../enterprise/godmode/setup/setup_acl.php:476 +#: ../../enterprise/godmode/setup/setup_acl.php:694 +msgid "Mobile" +msgstr "" + +#: ../../enterprise/godmode/setup/setup_acl.php:480 +#: ../../enterprise/godmode/setup/setup_acl.php:690 +msgid "Head search" +msgstr "" + +#: ../../enterprise/godmode/setup/setup_acl.php:497 +#: ../../enterprise/godmode/setup/setup_acl.php:548 +#: ../../enterprise/godmode/setup/setup_acl.php:593 +msgid "Section 2" +msgstr "" + +#: ../../enterprise/godmode/setup/setup_acl.php:514 +#: ../../enterprise/godmode/setup/setup_acl.php:552 +#: ../../enterprise/godmode/setup/setup_acl.php:594 +msgid "Section 3" +msgstr "" + +#: ../../enterprise/godmode/setup/setup_acl.php:538 +msgid "Hidden" +msgstr "" + +#: ../../enterprise/godmode/setup/setup_acl.php:570 +msgid "Filter by profile" +msgstr "" + +#: ../../enterprise/godmode/setup/setup_acl.php:591 +#: ../../godmode/users/configure_profile.php:265 +#: ../../godmode/massive/massive_delete_profiles.php:151 +#: ../../godmode/massive/massive_add_profiles.php:202 +#: ../../include/functions_profile.php:213 +#: ../../operation/users/user_edit.php:813 +msgid "Profile name" +msgstr "" + +#: ../../enterprise/godmode/setup/setup_acl.php:749 +#: ../../enterprise/godmode/setup/setup_acl.php:759 +msgid "Invalid" +msgstr "" + +#: ../../enterprise/godmode/setup/setup_acl.php:791 +#: ../../enterprise/godmode/reporting/visual_console_template.php:305 +#: ../../enterprise/operation/agentes/wux_console_view.php:593 +#: ../../include/ajax/visual_console_builder.ajax.php:343 +#: ../../include/functions_visual_map.php:2841 +msgid "No data to show" +msgstr "" + +#: ../../enterprise/godmode/setup/edit_skin.php:47 +msgid "Successfully updated skin" +msgstr "" + +#: ../../enterprise/godmode/setup/edit_skin.php:49 +#: ../../enterprise/godmode/setup/edit_skin.php:67 +msgid "Error updating skin" +msgstr "" + +#: ../../enterprise/godmode/setup/edit_skin.php:197 +msgid "Error creating skin" +msgstr "" + +#: ../../enterprise/godmode/setup/edit_skin.php:201 +msgid "Successfully created skin" +msgstr "" + +#: ../../enterprise/godmode/setup/edit_skin.php:242 +msgid "" +"Zip file with skin subdirectory. The name of the zip file only can have " +"alphanumeric characters." +msgstr "" + +#: ../../enterprise/godmode/setup/edit_skin.php:267 +msgid "Group/s" +msgstr "" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:147 +#: ../../enterprise/godmode/reporting/graph_template_wizard.php:80 +msgid "Cleanup sucessfully" +msgstr "" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:150 +#: ../../enterprise/godmode/reporting/graph_template_wizard.php:83 +msgid "Cleanup error" +msgstr "" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:195 +msgid "No item could be applied to report." +msgstr "" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:198 +#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:156 +msgid "Sucessfully applied" +msgstr "" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:198 +msgid "reports" +msgstr "" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:198 +msgid "items" +msgstr "" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:200 +#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:158 +msgid "Could not be applied" +msgstr "" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:207 +#: ../../godmode/massive/massive_operations.php:347 +msgid "" +"In order to perform massive operations, PHP needs a correct configuration in " +"timeout parameters. Please, open your PHP configuration file (php.ini) for " +"example: sudo vi /etc/php5/apache2/php.ini;
    And set your timeout " +"parameters to a correct value:
    max_execution_time = 0 and " +"max_input_time = -1" +msgstr "" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:221 +msgid "Create template report wizard" +msgstr "" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:266 +#: ../../enterprise/godmode/reporting/graph_template_wizard.php:197 +msgid "Clean up template" +msgstr "" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:273 +msgid "Create report per agent" +msgstr "" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:282 +#: ../../enterprise/include/functions_cron.php:232 +#: ../../enterprise/include/functions_tasklist.php:340 +#: ../../enterprise/include/functions_reporting_csv.php:2218 +#: ../../enterprise/include/functions_reporting_csv.php:2222 +#: ../../godmode/reporting/reporting_builder.php:908 +#: ../../include/functions_cron.php:665 ../../operation/search_reports.php:42 +#: ../../operation/search_reports.php:58 +#: ../../operation/reporting/custom_reporting.php:34 +msgid "Report name" +msgstr "" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:282 +msgid "" +"Left in blank if you want to use default name: Template name - agents (num " +"agents) - Date" +msgstr "" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:288 +#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:236 +msgid "Target group" +msgstr "" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:327 +msgid "Filter by" +msgstr "" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:330 +#: ../../godmode/reporting/create_container.php:566 +#: ../../godmode/reporting/create_container.php:629 +#: ../../mobile/operation/modules.php:194 +#: ../../mobile/operation/modules.php:195 +#: ../../mobile/operation/modules.php:308 +#: ../../mobile/operation/modules.php:309 +#: ../../include/ajax/heatmap.ajax.php:126 +#: ../../include/ajax/heatmap.ajax.php:296 ../../operation/heatmap.php:109 +#: ../../operation/agentes/group_view.php:327 +msgid "Tag" +msgstr "" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:398 +msgid "Filter tag" +msgstr "" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:412 +#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:422 +#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:172 +#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:177 +#: ../../enterprise/godmode/reporting/graph_template_wizard.php:228 +#: ../../enterprise/godmode/reporting/graph_template_wizard.php:234 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:832 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:834 +#: ../../include/functions_snmp_browser.php:1519 +#: ../../include/functions_snmp_browser.php:1521 +msgid "Select all" +msgstr "" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:415 +#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:281 +#: ../../enterprise/godmode/reporting/graph_template_wizard.php:228 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:832 +msgid "Agents available" +msgstr "" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:425 +#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:287 +#: ../../enterprise/godmode/reporting/reporting_builder.template_editor.php:208 +#: ../../enterprise/godmode/reporting/graph_template_wizard.php:234 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:834 +msgid "Agents to apply" +msgstr "" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:466 +#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:304 +#: ../../enterprise/godmode/reporting/graph_template_wizard.php:259 +msgid "Add agents to template" +msgstr "" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:478 +#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:306 +#: ../../enterprise/godmode/reporting/graph_template_wizard.php:263 +msgid "Undo agents to template" +msgstr "" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:499 +#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:324 +#: ../../enterprise/godmode/reporting/graph_template_wizard.php:281 +msgid "Apply template" +msgstr "" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:830 +#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:861 +#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:631 +#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:661 +#: ../../enterprise/godmode/reporting/graph_template_wizard.php:443 +#: ../../enterprise/godmode/reporting/graph_template_wizard.php:475 +msgid "Please set template distinct than " +msgstr "" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:834 +#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:635 +msgid "Please set agent distinct than " +msgstr "" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:856 +#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:656 +#: ../../enterprise/godmode/reporting/graph_template_wizard.php:470 +msgid "" +"This will be delete all reports created in previous template applications. " +"Do you want to continue?" +msgstr "" + +#: ../../enterprise/godmode/reporting/aws_view.php:53 +msgid "Instance" +msgstr "" + +#: ../../enterprise/godmode/reporting/aws_view.php:54 +#: ../../include/class/Diagnostics.class.php:722 +msgid "CPU" +msgstr "" + +#: ../../enterprise/godmode/reporting/aws_view.php:55 +msgid "IO read" +msgstr "" + +#: ../../enterprise/godmode/reporting/aws_view.php:56 +msgid "IO write" +msgstr "" + +#: ../../enterprise/godmode/reporting/aws_view.php:57 +msgid "Disk read" +msgstr "" + +#: ../../enterprise/godmode/reporting/aws_view.php:58 +msgid "Disk write" +msgstr "" + +#: ../../enterprise/godmode/reporting/aws_view.php:59 +msgid "Network in" +msgstr "" + +#: ../../enterprise/godmode/reporting/aws_view.php:60 +msgid "Network out" +msgstr "" + +#: ../../enterprise/godmode/reporting/aws_view.php:106 +#: ../../enterprise/godmode/reporting/aws_view.php:139 +#: ../../enterprise/operation/menu.php:45 +msgid "AWS View" +msgstr "" + +#: ../../enterprise/godmode/reporting/aws_view.php:134 +msgid "Failed to retrieve AWS information using selected account." +msgstr "" + +#: ../../enterprise/godmode/reporting/aws_view.php:153 +msgid "AWS credentials not validated." +msgstr "" + +#: ../../enterprise/godmode/reporting/aws_view.php:168 +msgid "Discovery Cloud: AWS" +msgstr "" + +#: ../../enterprise/godmode/reporting/aws_view.php:177 +msgid "Please, select an account: " +msgstr "" + +#: ../../enterprise/godmode/reporting/aws_view.php:186 +msgid "CREATE CLOUD MONITORING DISCOVERY TASK" +msgstr "" + +#: ../../enterprise/godmode/reporting/aws_view.php:189 +msgid "" +"Within this view you will find information collected using Discovery Cloud " +"AWS task. You will be able to see the most relevant information about your " +"infrastructure, such as the current cost of your contracted services, the " +"number of instances per region or resource usage metrics. In order to " +"collect this information you must create a Cloud Monitoring Discovery task." +msgstr "" + +#: ../../enterprise/godmode/reporting/aws_view.php:192 +msgid "Press the create button to begin." +msgstr "" + +#: ../../enterprise/godmode/reporting/aws_view.php:221 +msgid "Instance table" +msgstr "" + +#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:62 +#: ../../enterprise/godmode/reporting/visual_console_template.php:63 +#: ../../godmode/reporting/map_builder.php:75 +#: ../../godmode/reporting/map_builder.php:121 +#: ../../godmode/reporting/visual_console_favorite.php:72 +msgid "Visual Console List" +msgstr "" + +#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:74 +#: ../../enterprise/godmode/reporting/visual_console_template.php:75 +#: ../../godmode/reporting/map_builder.php:87 +#: ../../godmode/reporting/visual_console_favorite.php:84 +msgid "Visual Favourite Console" +msgstr "" + +#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:87 +#: ../../enterprise/godmode/reporting/visual_console_template.php:88 +#: ../../godmode/reporting/map_builder.php:100 +#: ../../godmode/reporting/visual_console_favorite.php:97 +msgid "Visual Console Template" +msgstr "" + +#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:99 +#: ../../enterprise/godmode/reporting/visual_console_template.php:100 +#: ../../godmode/reporting/map_builder.php:112 +#: ../../godmode/reporting/visual_console_favorite.php:109 +msgid "Visual Console Template Wizard" +msgstr "" + +#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:108 +msgid "Template Wizard" +msgstr "" + +#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:200 +msgid "Visual console name" +msgstr "" + +#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:200 +msgid "" +"You can use macro _agentalias_ here. Left in blank if you want to use " +"default name: Template name - agent alias" +msgstr "" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_editor.php:170 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:107 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:131 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:193 +msgid "Edit template" +msgstr "" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_editor.php:209 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:903 +msgid "" +"Case insensitive regular expression for agent alias. For example: Network.* " +"will match with the following agent alias: network_agent1, NetworK CHECKS" +msgstr "" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_editor.php:222 +#: ../../godmode/reporting/reporting_builder.main.php:226 +msgid "Generate cover page in PDF render" +msgstr "" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_editor.php:230 +#: ../../godmode/reporting/reporting_builder.main.php:234 +msgid "Generate index in PDF render" +msgstr "" + +#: ../../enterprise/godmode/reporting/graph_template_list.php:54 +#: ../../enterprise/godmode/reporting/graph_template_list.php:73 +#: ../../enterprise/godmode/reporting/graph_template_list.php:87 +#: ../../enterprise/godmode/reporting/graph_template_wizard.php:99 +#: ../../enterprise/godmode/reporting/graph_template_wizard.php:113 +#: ../../godmode/reporting/graph_builder.php:287 +#: ../../godmode/reporting/graph_container.php:77 +#: ../../godmode/reporting/graphs.php:67 ../../godmode/reporting/graphs.php:81 +#: ../../operation/reporting/graph_viewer.php:182 +#: ../../operation/reporting/graph_viewer.php:214 +msgid "Graph list" +msgstr "" + +#: ../../enterprise/godmode/reporting/graph_template_list.php:111 +#: ../../enterprise/godmode/reporting/graph_template_wizard.php:127 +#: ../../godmode/reporting/create_container.php:188 +#: ../../godmode/reporting/graph_container.php:101 +#: ../../godmode/reporting/graph_container.php:109 +msgid "Graph container" +msgstr "" + +#: ../../enterprise/godmode/reporting/graph_template_list.php:119 +msgid "Graph template management" +msgstr "" + +#: ../../enterprise/godmode/reporting/graph_template_list.php:132 +#: ../../enterprise/godmode/reporting/graph_template_editor.php:107 +#: ../../enterprise/godmode/reporting/graph_template_wizard.php:148 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:388 +#: ../../enterprise/godmode/reporting/graph_template_item_editor.php:78 +#: ../../godmode/reporting/graph_builder.php:370 +#: ../../godmode/reporting/graph_container.php:122 +#: ../../godmode/reporting/graphs.php:133 ../../operation/menu.php:327 +#: ../../operation/reporting/graph_viewer.php:271 +msgid "Custom graphs" +msgstr "" + +#: ../../enterprise/godmode/reporting/graph_template_list.php:203 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:497 +#: ../../godmode/alerts/alert_list.list.php:66 +msgid "Template name" +msgstr "" + +#: ../../enterprise/godmode/reporting/graph_template_list.php:252 +msgid "There are no defined graph templates" +msgstr "" + +#: ../../enterprise/godmode/reporting/graph_template_list.php:257 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:166 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:667 +#: ../../enterprise/godmode/reporting/visual_console_template.php:254 +msgid "Create template" +msgstr "" + +#: ../../enterprise/godmode/reporting/graph_template_editor.php:58 +msgid "Not created. Blank name" +msgstr "" + +#: ../../enterprise/godmode/reporting/graph_template_editor.php:94 +msgid "Graph template editor" +msgstr "" + +#: ../../enterprise/godmode/reporting/graph_template_editor.php:155 +#: ../../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:210 +msgid "Not updated. Blank name" +msgstr "" + +#: ../../enterprise/godmode/reporting/graph_template_editor.php:173 +msgid "Template updated successfully" +msgstr "" + +#: ../../enterprise/godmode/reporting/graph_template_editor.php:174 +#: ../../include/class/ModuleTemplates.class.php:355 +msgid "Error updating template" +msgstr "" + +#: ../../enterprise/godmode/reporting/graph_template_editor.php:208 +#: ../../godmode/setup/gis_step_2.php:371 +#: ../../godmode/reporting/visual_console_builder.wizard.php:180 +#: ../../godmode/events/event_responses.editor.php:139 +#: ../../include/functions_visual_map_editor.php:97 +#: ../../include/functions_visual_map_editor.php:668 +#: ../../include/rest-api/models/VisualConsole/Items/Line.php:475 +#: ../../include/rest-api/models/VisualConsole/Items/NetworkLink.php:926 +#: ../../include/functions_reports.php:1248 +msgid "Width" +msgstr "" + +#: ../../enterprise/godmode/reporting/graph_template_editor.php:212 +#: ../../godmode/setup/gis_step_2.php:378 +#: ../../godmode/reporting/visual_console_builder.wizard.php:181 +#: ../../godmode/events/event_responses.editor.php:141 +#: ../../include/functions_visual_map_editor.php:673 +#: ../../include/functions_reports.php:1264 +#: ../../include/functions_reports.php:1364 +msgid "Height" +msgstr "" + +#: ../../enterprise/godmode/reporting/graph_template_editor.php:217 +#: ../../godmode/setup/performance.php:531 +#: ../../godmode/reporting/create_container.php:346 +#: ../../include/functions.php:2699 ../../include/functions.php:3367 +#: ../../include/ajax/module.php:200 ../../include/ajax/graph.ajax.php:146 +#: ../../operation/gis_maps/render_view.php:156 +msgid "1 hour" +msgstr "" + +#: ../../enterprise/godmode/reporting/graph_template_editor.php:218 +#: ../../operation/gis_maps/render_view.php:157 +msgid "2 hours" +msgstr "" + +#: ../../enterprise/godmode/reporting/graph_template_editor.php:219 +msgid "3 hours" +msgstr "" + +#: ../../enterprise/godmode/reporting/graph_template_editor.php:220 +#: ../../include/ajax/module.php:201 +msgid "6 hours" +msgstr "" + +#: ../../enterprise/godmode/reporting/graph_template_editor.php:221 +#: ../../godmode/setup/performance.php:532 ../../include/ajax/module.php:202 +msgid "12 hours" +msgstr "" + +#: ../../enterprise/godmode/reporting/graph_template_editor.php:222 +#: ../../godmode/reporting/create_container.php:350 +#: ../../include/functions.php:2702 ../../include/ajax/module.php:203 +#: ../../include/ajax/graph.ajax.php:150 +msgid "1 day" +msgstr "" + +#: ../../enterprise/godmode/reporting/graph_template_editor.php:223 +#: ../../godmode/setup/performance.php:534 +msgid "2 days" +msgstr "" + +#: ../../enterprise/godmode/reporting/graph_template_editor.php:224 +msgid "4 days" +msgstr "" + +#: ../../enterprise/godmode/reporting/graph_template_editor.php:225 +#: ../../godmode/setup/performance.php:536 +msgid "Last week" +msgstr "" + +#: ../../enterprise/godmode/reporting/graph_template_editor.php:226 +#: ../../godmode/reporting/create_container.php:354 +#: ../../include/functions.php:2704 ../../include/ajax/module.php:205 +#: ../../include/ajax/graph.ajax.php:154 +msgid "15 days" +msgstr "" + +#: ../../enterprise/godmode/reporting/graph_template_editor.php:227 +#: ../../godmode/setup/performance.php:538 +msgid "Last month" +msgstr "" + +#: ../../enterprise/godmode/reporting/graph_template_editor.php:228 +msgid "2 months" +msgstr "" + +#: ../../enterprise/godmode/reporting/graph_template_editor.php:229 +#: ../../include/ajax/module.php:208 +msgid "6 months" +msgstr "" + +#: ../../enterprise/godmode/reporting/graph_template_editor.php:230 +#: ../../include/functions.php:2708 ../../include/ajax/module.php:209 +msgid "1 year" +msgstr "" + +#: ../../enterprise/godmode/reporting/graph_template_editor.php:235 +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:102 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1768 +#: ../../enterprise/include/functions_reporting_csv.php:483 +#: ../../enterprise/include/functions_reporting_csv.php:486 +#: ../../enterprise/include/functions_reporting_csv.php:710 +#: ../../enterprise/include/functions_reporting_csv.php:831 +#: ../../enterprise/include/functions_reporting_csv.php:914 +#: ../../enterprise/include/functions_reporting_csv.php:946 +#: ../../enterprise/include/functions_reporting_csv.php:1006 +#: ../../enterprise/include/functions_reporting_csv.php:1184 +#: ../../enterprise/include/functions_reporting_csv.php:1215 +#: ../../enterprise/include/functions_reporting_csv.php:1270 +#: ../../enterprise/include/functions_reporting_csv.php:1374 +#: ../../enterprise/include/functions_reporting_csv.php:1429 +#: ../../enterprise/include/functions_reporting_csv.php:1495 +#: ../../enterprise/include/functions_reporting_csv.php:1881 +#: ../../enterprise/include/functions_reporting_csv.php:1931 +#: ../../enterprise/include/functions_reporting_csv.php:2627 +#: ../../enterprise/include/functions_reporting_csv.php:2678 +#: ../../enterprise/include/functions_reporting_csv.php:2804 +#: ../../godmode/agentes/module_manager_editor_prediction.php:179 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1357 +#: ../../godmode/reporting/visual_console_builder.elements.php:107 +#: ../../godmode/reporting/visual_console_builder.wizard.php:242 +#: ../../godmode/reporting/graph_builder.main.php:196 +#: ../../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 +msgid "Period" +msgstr "" + +#: ../../enterprise/godmode/reporting/graph_template_editor.php:239 +msgid "Stacked" +msgstr "" + +#: ../../enterprise/godmode/reporting/graph_template_editor.php:246 +#: ../../godmode/reporting/graph_builder.main.php:215 +#: ../../include/lib/Dashboard/Widgets/custom_graph.php:316 +#: ../../operation/reporting/graph_viewer.php:371 +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:318 +#: ../../operation/reporting/graph_viewer.php:373 +msgid "Stacked line" +msgstr "" + +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:46 +#: ../../include/functions_reports.php:815 +msgid "Top n" +msgstr "" + +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:47 +#: ../../enterprise/include/functions_reporting_csv.php:900 +#: ../../include/functions_reports.php:789 +#: ../../include/functions_reporting.php:3170 +msgid "Exception" +msgstr "" + +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:51 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:57 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:196 +#: ../../godmode/reporting/reporting_builder.item_editor.php:58 +msgid "Only table" +msgstr "" + +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:52 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:58 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:197 +#: ../../godmode/reporting/reporting_builder.item_editor.php:59 +msgid "Table & Graph" +msgstr "" + +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:53 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:59 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:198 +#: ../../godmode/reporting/reporting_builder.item_editor.php:60 +msgid "Only graph" +msgstr "" + +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:74 +#: ../../enterprise/include/functions_reporting.php:82 +msgid "Global" +msgstr "" + +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:106 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:290 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:319 +msgid "Elements to apply" +msgstr "" + +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:190 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:204 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:291 +msgid "Filter agents selector" +msgstr "" + +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:196 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1745 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1334 +#: ../../include/functions_reports.php:766 +msgid "Last value" +msgstr "" + +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:198 +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:818 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1747 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:5006 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1336 +#: ../../godmode/reporting/reporting_builder.item_editor.php:7092 +msgid "" +"Warning: period 0 reports cannot be used to show information back in time. " +"Information contained in this kind of reports will be always reporting the " +"most recent information" +msgstr "" + +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:228 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:222 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:305 +#: ../../godmode/reporting/visual_console_builder.wizard.php:408 +msgid "If you select several agents, only the common modules will be displayed" +msgstr "" + +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:258 +#: ../../enterprise/include/functions_reporting_csv.php:1030 +#: ../../include/functions_reporting_html.php:4787 +msgid "Sum" +msgstr "" + +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:270 +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:400 +#: ../../include/functions_reporting.php:9993 +msgid "Rate" +msgstr "" + +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:306 +#: ../../enterprise/include/class/Omnishell.class.php:520 +#: ../../enterprise/operation/services/services.list.php:728 +#: ../../godmode/agentes/agent_manager.php:313 +#: ../../godmode/snmpconsole/snmp_alert.php:1506 +#: ../../include/class/ModuleTemplates.class.php:970 +msgid "Delete selected" +msgstr "" + +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:321 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2328 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2427 +msgid "Group by agent" +msgstr "" + +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:333 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2378 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3131 +msgid "Show in the same row" +msgstr "" + +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:334 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2380 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3133 +msgid "Show one module per row with all its operations" +msgstr "" + +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:346 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:450 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2398 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2975 +#: ../../enterprise/operation/log/log_viewer.php:500 +#: ../../godmode/netflow/nf_item_list.php:173 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2441 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3154 +#: ../../include/lib/Dashboard/Widgets/top_n.php:267 +msgid "Order" +msgstr "" + +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:351 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:318 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:63 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:202 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2401 +#: ../../enterprise/operation/log/log_viewer.php:497 +#: ../../godmode/reporting/reporting_builder.item_editor.php:64 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2444 +#: ../../include/lib/Dashboard/Widgets/top_n.php:261 +msgid "Ascending" +msgstr "" + +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:353 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:325 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:64 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:203 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2408 +#: ../../enterprise/operation/log/log_viewer.php:496 +#: ../../godmode/reporting/reporting_builder.item_editor.php:65 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2451 +#: ../../include/lib/Dashboard/Widgets/top_n.php:262 +msgid "Descending" +msgstr "" + +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:355 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:332 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2415 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2458 +#: ../../include/lib/Dashboard/Widgets/top_n.php:263 +msgid "By agent name" +msgstr "" + +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:363 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2427 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2470 +#: ../../include/lib/Dashboard/Widgets/top_n.php:249 +msgid "Quantity (n)" +msgstr "" + +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:375 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2442 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2500 +#: ../../include/lib/Dashboard/Widgets/top_n.php:286 +#: ../../operation/agentes/ver_agente.php:1632 +msgid "Display" +msgstr "" + +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:430 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2547 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2662 +#: ../../include/functions_reporting.php:3192 +msgid "Everything" +msgstr "" + +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:432 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2554 +msgid ">=" +msgstr "" + +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:434 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2561 +msgid "<" +msgstr "" + +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:438 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2575 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2670 +#: ../../include/functions_reporting_html.php:3357 +msgid "Not OK" +msgstr "" + +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:446 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:461 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2587 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2682 +msgid "Show graph" +msgstr "" + +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:458 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:347 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2700 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2792 +msgid "Show resume" +msgstr "" + +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:458 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2701 +msgid "" +"Show a resume table with max, min, average of total modules on the report " +"bottom" +msgstr "" + +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:473 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:812 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:481 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3377 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3560 +msgid "Show item in landscape format (only PDF)" +msgstr "" + +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:489 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:828 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:495 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3386 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3569 +msgid "Page break at the end of the item (only PDF)" +msgstr "" + +#: ../../enterprise/godmode/reporting/graph_template_wizard.php:135 +msgid "Wizard template" +msgstr "" + +#: ../../enterprise/godmode/reporting/reporting_builder.advanced.php:81 +msgid "Advance Reporting" +msgstr "" + +#: ../../enterprise/godmode/reporting/reporting_builder.advanced.php:97 +msgid "Page orientation" +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 +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 +msgid "Horizontal" +msgstr "" + +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:112 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:215 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1725 +#: ../../enterprise/godmode/reporting/reporting_builder.template_list_item.php:258 +#: ../../godmode/reporting/reporting_builder.list_items.php:424 +#: ../../godmode/reporting/create_container.php:364 +#: ../../godmode/reporting/create_container.php:473 +#: ../../godmode/reporting/create_container.php:527 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1311 +msgid "Time lapse" +msgstr "" + +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:313 +msgid "Order:" +msgstr "" + +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:349 +msgid "" +"Show a resume table with max, min, average of total modules on the report " +"bottom:" +msgstr "" + +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:369 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2680 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2772 +msgid "Show address instead module name" +msgstr "" + +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:370 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2681 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2773 +msgid "Show the main address of agent." +msgstr "" + +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:439 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2254 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2321 +#: ../../include/functions_reports.php:809 +msgid "SQL query" +msgstr "" + +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:463 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:402 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3041 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3210 +msgid "Failover mode" +msgstr "" + +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:464 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:403 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3042 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3211 +msgid "" +"SLA calculation must be performed taking into account the failover modules " +"assigned to the primary module" +msgstr "" + +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:481 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:420 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3061 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3230 +msgid "Failover type" +msgstr "" + +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:486 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:425 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3066 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3235 +msgid "Failover normal" +msgstr "" + +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:498 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:437 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3078 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3247 +msgid "Failover simple" +msgstr "" + +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:538 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2472 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2531 +msgid "Graph render" +msgstr "" + +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:544 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2478 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2537 +msgid "Avg, max & min" +msgstr "" + +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:545 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2479 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2538 +msgid "Max only" +msgstr "" + +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:546 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2480 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2539 +msgid "Min only" +msgstr "" + +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:547 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2481 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2540 +msgid "Avg only" +msgstr "" + +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:558 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2623 +#: ../../mobile/operation/module_graph.php:436 +#: ../../operation/agentes/stat_win.php:369 +msgid "Time compare (Overlapped)" +msgstr "" + +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:574 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2494 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2586 +msgid "Full resolution graph (TIP)" +msgstr "" + +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:575 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2495 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2587 +#: ../../operation/agentes/stat_win.php:397 +#: ../../operation/agentes/interface_traffic_graph_win.php:240 +msgid "" +"TIP mode charts do not support average - maximum - minimum series, you can " +"only enable TIP or average, maximum or minimum series" +msgstr "" + +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:591 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2505 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2606 +msgid "Show threshold" +msgstr "" + +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:605 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2513 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2638 +#: ../../godmode/reporting/graph_builder.main.php:245 +#: ../../include/functions.php:4116 ../../include/functions.php:4124 +msgid "Percentil" +msgstr "" + +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:606 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2514 +msgid "" +"If this option was checked, only adding in elements that type of modules " +"support this option." +msgstr "" + +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:620 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2795 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2901 +msgid "Show Summary group" +msgstr "" + +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:684 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2881 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2987 +msgid "Event Status" +msgstr "" + +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:710 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2908 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3048 +#: ../../operation/agentes/tactical.php:254 +msgid "Event graphs" +msgstr "" + +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:714 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2912 +msgid "By agent" +msgstr "" + +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:724 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2922 +msgid "By user validator" +msgstr "" + +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:734 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2932 +msgid "By criticity" +msgstr "" + +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:744 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2942 +msgid "Validated vs unvalidated" +msgstr "" + +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:763 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1806 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1395 +msgid "Data range" +msgstr "" + +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:788 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1787 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1376 +msgid "Projection period" +msgstr "" + +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:799 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2218 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2348 +msgid "Serialized header" +msgstr "" + +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:799 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2219 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2349 +msgid "The separator character is |" +msgstr "" + +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:803 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2286 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2385 +msgid "Field separator" +msgstr "" + +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:803 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2287 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2386 +msgid "Separator for different fields in the serialized text chain" +msgstr "" + +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:807 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2307 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2406 +msgid "Line separator" +msgstr "" + +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:807 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2308 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2407 +msgid "" +"Separator in different lines (composed by fields) of the serialized text " +"chain" +msgstr "" + +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:845 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3361 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3397 +msgid "Uncompress module" +msgstr "" + +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:846 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3362 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3398 +msgid "Use uncompressed module data." +msgstr "" + +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:911 +#: ../../enterprise/include/functions_massive.php:54 +#: ../../godmode/agentes/module_manager.php:274 +#: ../../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 +msgid "No modules selected" +msgstr "" + +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:198 +#: ../../enterprise/include/functions_reporting.php:71 +msgid "Wizard SLA" +msgstr "" + +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:222 +#: ../../enterprise/include/functions_reporting.php:2372 +#: ../../include/functions_reports.php:704 +msgid "Monthly S.L.A." +msgstr "" + +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:223 +#: ../../enterprise/include/functions_reporting.php:3324 +#: ../../include/functions_reports.php:708 +msgid "Weekly S.L.A." +msgstr "" + +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:224 +msgid "hourly S.L.A." +msgstr "" + +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:225 +msgid "Availability Graph S.L.A." +msgstr "" + +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:226 +#: ../../enterprise/include/functions_reporting.php:5567 +#: ../../include/functions_reports.php:718 +msgid "Services S.L.A." +msgstr "" + +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:368 +msgid "SLA min value" +msgstr "" + +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:368 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:374 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:380 +msgid "Enter possible range of values in SLA." +msgstr "" + +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:369 +msgid "SLA min Value" +msgstr "" + +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:374 +msgid "SLA max value" +msgstr "" + +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:375 +msgid "SLA max Value" +msgstr "" + +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:380 +msgid "SLA Limit %" +msgstr "" + +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:381 +msgid "SLA Limit Value" +msgstr "" + +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:386 +msgid "Dynamic SLA" +msgstr "" + +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:393 +msgid "Inverse SLA" +msgstr "" + +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:450 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2976 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3155 +msgid "SLA items sorted by fulfillment value" +msgstr "" + +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:455 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1819 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1408 +msgid "Only display wrong SLAs" +msgstr "" + +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:467 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3094 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3263 +#: ../../godmode/wizards/DiscoveryTaskList.class.php:1417 +#: ../../include/functions_reporting_html.php:4624 +#: ../../include/functions_reporting_html.php:4895 +#: ../../include/functions_reporting_html.php:5032 +#: ../../include/functions_netflow.php:1183 +#: ../../include/lib/Dashboard/Widgets/tactical.php:299 +msgid "Summary" +msgstr "" + +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:534 +msgid "Please introduce a SLA max value higher than the SLA min value" +msgstr "" + +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:659 +msgid "Dynamic SLA can not be Inverse" +msgstr "" + +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:664 +msgid "Check Dynamic SLA or introduce a max and min SLA value" +msgstr "" + +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:668 +msgid "SLA Limit value is needed" +msgstr "" + +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:151 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:218 +#: ../../enterprise/include/functions_reporting.php:8027 +#: ../../enterprise/include/functions_reporting.php:8093 +#: ../../godmode/reporting/reporting_builder.php:3581 +#: ../../operation/reporting/reporting_viewer.php:157 +msgid "Item editor" +msgstr "" + +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:162 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:205 +#: ../../godmode/reporting/reporting_builder.php:3577 +#: ../../operation/reporting/reporting_viewer.php:148 +msgid "List items" +msgstr "" + +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:181 +msgid "List templates" +msgstr "" + +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:289 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:323 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:357 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:391 +#: ../../godmode/reporting/reporting_builder.php:596 +#: ../../godmode/reporting/reporting_builder.php:3539 +#: ../../godmode/reporting/reporting_builder.php:3653 +#: ../../godmode/reporting/reporting_builder.php:3682 +#: ../../operation/reporting/reporting_viewer.php:233 +msgid "Custom reports" +msgstr "" + +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:501 +#: ../../godmode/reporting/reporting_builder.php:910 +#: ../../operation/search_reports.php:44 ../../operation/search_reports.php:60 +#: ../../operation/reporting/custom_reporting.php:36 +msgid "HTML" +msgstr "" + +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:502 +#: ../../godmode/reporting/reporting_builder.php:911 +#: ../../operation/search_reports.php:45 ../../operation/search_reports.php:61 +#: ../../operation/reporting/custom_reporting.php:37 +msgid "XML" +msgstr "" + +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:503 +#: ../../enterprise/operation/reporting/custom_reporting.php:14 +msgid "PDF" +msgstr "" + +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:504 +#: ../../enterprise/operation/reporting/custom_reporting.php:16 +msgid "JSON" +msgstr "" + +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:505 +#: ../../enterprise/operation/reporting/custom_reporting.php:18 +#: ../../extensions/insert_data.php:199 +#: ../../operation/agentes/exportdata.php:379 +msgid "CSV" +msgstr "" + +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:565 +#: ../../godmode/reporting/reporting_builder.php:1053 +msgid "HTML view" +msgstr "" + +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:573 +#: ../../godmode/reporting/reporting_builder.php:1063 +msgid "Export to XML" +msgstr "" + +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:581 +#: ../../enterprise/operation/reporting/custom_reporting.php:64 +#: ../../include/class/Diagnostics.class.php:144 +msgid "Export to PDF" +msgstr "" + +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:589 +#: ../../enterprise/operation/reporting/custom_reporting.php:72 +msgid "Export to JSON" +msgstr "" + +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:661 +msgid "You haven't created templates yet." +msgstr "" + +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:681 +msgid "Generate a dynamic report" +msgstr "" + +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:759 +#: ../../include/functions_reports.php:1380 +msgid "Period " +msgstr "" + +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:765 +msgid "Set start and end date" +msgstr "" + +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:778 +#: ../../include/ajax/module.php:250 +#: ../../operation/agentes/datos_agente.php:198 +msgid "Timestamp from:" +msgstr "" + +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:796 +#: ../../include/ajax/module.php:270 +#: ../../operation/agentes/datos_agente.php:204 +msgid "Timestamp to:" +msgstr "" + +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:815 +msgid "Monthly SLA period" +msgstr "" + +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:815 +msgid "This field only applies in case of Monthly SLA item." +msgstr "" + +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:857 +#: ../../enterprise/include/class/Omnishell.class.php:867 +msgid "Add agents" +msgstr "" + +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:865 +msgid "Undo agents" +msgstr "" + +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:902 +msgid "RegEx agent filter" +msgstr "" + +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:918 +msgid "Generate" +msgstr "" + +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:1312 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:1334 +msgid "Please set agent or agent regex distinct than " +msgstr "" + +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:1342 +msgid "It is not a regular expression " +msgstr "" + +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:1344 +msgid "No agent matches regular expression " +msgstr "" + +#: ../../enterprise/godmode/reporting/graph_template_item_editor.php:65 +msgid "Graph template item editor" +msgstr "" + +#: ../../enterprise/godmode/reporting/graph_template_item_editor.php:187 +#: ../../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:3981 +msgid "Weight" +msgstr "" + +#: ../../enterprise/godmode/reporting/graph_template_item_editor.php:189 +#: ../../enterprise/godmode/reporting/graph_template_item_editor.php:244 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3515 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3590 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3746 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3817 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:4251 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:4396 +#: ../../enterprise/operation/log/log_viewer.php:477 +msgid "Exact match" +msgstr "" + +#: ../../enterprise/godmode/reporting/graph_template_item_editor.php:206 +msgid "Decrease Weight" +msgstr "" + +#: ../../enterprise/godmode/reporting/graph_template_item_editor.php:206 +msgid "Increase Weight" +msgstr "" + +#: ../../enterprise/godmode/reporting/visual_console_template.php:141 +#: ../../enterprise/godmode/reporting/visual_console_template.php:157 +msgid "visual console has not been selected" +msgstr "" + +#: ../../enterprise/godmode/reporting/visual_console_template.php:147 +msgid "Error. Error created template" +msgstr "" + +#: ../../enterprise/godmode/reporting/visual_console_template.php:149 +msgid "Error. Template name cannot be repeated" +msgstr "" + +#: ../../enterprise/godmode/reporting/visual_console_template.php:151 +msgid "Successfully created template" +msgstr "" + +#: ../../enterprise/godmode/reporting/visual_console_template.php:163 +msgid "Error. Error delete template" +msgstr "" + +#: ../../enterprise/godmode/reporting/visual_console_template.php:165 +msgid "Successfully delete template" +msgstr "" + +#: ../../enterprise/godmode/reporting/visual_console_template.php:187 +msgid "Create From" +msgstr "" + +#: ../../enterprise/godmode/reporting/visual_console_template.php:198 +msgid "There is not any visual console created. Please, create one firstly." +msgstr "" + +#: ../../enterprise/godmode/reporting/visual_console_template.php:260 +msgid "Create New Template" +msgstr "" + +#: ../../enterprise/godmode/reporting/mysql_builder.php:66 +msgid "Custom MySQL template builder" +msgstr "" + +#: ../../enterprise/godmode/reporting/mysql_builder.php:79 +#: ../../enterprise/godmode/reporting/mysql_builder.php:206 +#: ../../enterprise/operation/menu.php:160 +msgid "Custom SQL" +msgstr "" + +#: ../../enterprise/godmode/reporting/mysql_builder.php:117 +msgid "Create custom SQL" +msgstr "" + +#: ../../enterprise/godmode/reporting/mysql_builder.php:128 +#: ../../enterprise/godmode/reporting/mysql_builder.php:146 +msgid "Create new custom" +msgstr "" + +#: ../../enterprise/godmode/reporting/mysql_builder.php:187 +msgid "List of custom MySQL templates" +msgstr "" + +#: ../../enterprise/godmode/reporting/mysql_builder.php:193 +msgid "Template builder" +msgstr "" + +#: ../../enterprise/godmode/reporting/mysql_builder.php:212 +msgid "Successfully operation" +msgstr "" + +#: ../../enterprise/godmode/reporting/mysql_builder.php:212 +msgid "Could not be operation" +msgstr "" + +#: ../../enterprise/godmode/reporting/mysql_builder.php:214 +msgid "Without changes" +msgstr "" + +#: ../../enterprise/godmode/reporting/mysql_builder.php:214 +#: ../../operation/users/user_edit.php:192 +msgid "No changes have been made" +msgstr "" + +#: ../../enterprise/godmode/reporting/mysql_builder.php:232 +#: ../../enterprise/include/functions_reporting_csv.php:1084 +#: ../../include/functions_reporting.php:7031 +msgid "SQL" +msgstr "" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1627 +#: ../../godmode/reporting/reporting_builder.php:3704 +msgid "Successfull action" +msgstr "" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1628 +#: ../../godmode/servers/modificar_server.php:157 +#: ../../godmode/servers/modificar_server.php:168 +msgid "Unsuccessfull action" +msgstr "" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1645 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1025 +msgid "Item Editor" +msgstr "" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1833 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1422 +msgid "Current month" +msgstr "" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1843 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1438 +msgid "Working time" +msgstr "" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1908 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1504 +msgid "Time from" +msgstr "" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1926 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1522 +msgid "Time to" +msgstr "" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1944 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1540 +msgid "Show 24x7 item" +msgstr "" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1974 +msgid "Select server" +msgstr "" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1988 +#: ../../godmode/reporting/reporting_builder.item_editor.php:193 +msgid "Local metaconsole" +msgstr "" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2035 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1148 +#: ../../include/lib/Dashboard/Widgets/top_n.php:207 +msgid "" +"Case insensitive regular expression for agent name. For example: Network.* " +"will match with the following agent names: network_agent1, NetworK CHECKS" +msgstr "" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2059 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3643 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3875 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1171 +msgid "" +"Case insensitive regular expression or string for module name. For example: " +"if you use this field with \"Module exact match\" enabled then this field " +"has to be fulfilled with the literally string of the module name, if not you " +"can use a regular expression. Example: .*usage.* will match: cpu_usage, vram " +"usage in matchine 1." +msgstr "" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2081 +msgid "Module exact match" +msgstr "" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2082 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3575 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3651 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3799 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3882 +msgid "Check it if you want to match module name literally" +msgstr "" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2098 +msgid "Case insensitive regular expression or string for templates name." +msgstr "" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2121 +msgid "Case insensitive regular expression or string for actions name." +msgstr "" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2143 +msgid "Hide items without data" +msgstr "" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2144 +msgid "Check it if you want not show items without data" +msgstr "" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2157 +#: ../../godmode/reporting/create_container.php:480 +#: ../../godmode/reporting/create_container.php:624 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2189 +#: ../../godmode/reporting/visual_console_builder.elements.php:105 +#: ../../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/functions_reports.php:561 +#: ../../include/functions_reports.php:648 +#: ../../include/functions_reports.php:654 +#: ../../include/functions_reporting.php:10064 +msgid "Custom graph" +msgstr "" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2201 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2336 +msgid "Max items" +msgstr "" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2234 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2301 +msgid "Custom SQL template" +msgstr "" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2255 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2322 +msgid "The entities of the fields that contain them must be included." +msgstr "" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2269 +#: ../../enterprise/include/functions_reporting_csv.php:718 +#: ../../enterprise/include/functions_reporting_csv.php:2409 +#: ../../enterprise/include/functions_reporting_csv.php:2423 +#: ../../extensions/api_checker.php:220 +#: ../../godmode/reporting/reporting_builder.item_editor.php:75 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2368 +#: ../../godmode/events/event_responses.editor.php:156 +#: ../../godmode/events/event_responses.editor.php:164 +#: ../../include/functions_reporting_html.php:1577 +#: ../../operation/gis_maps/ajax.php:316 +msgid "URL" +msgstr "" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2280 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2379 +msgid "Protocol must be specified in URL (e.g.: \"https://\")" +msgstr "" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2344 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3525 +msgid "Group by" +msgstr "" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2459 +#: ../../enterprise/include/functions_reporting_csv.php:1030 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2517 +#: ../../include/functions_reporting_html.php:4784 +#: ../../include/functions_reporting.php:1532 +msgid "Avg" +msgstr "" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2601 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2696 +msgid "Select fields to show" +msgstr "" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2609 +#: ../../enterprise/include/functions_reporting_csv.php:494 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2704 +#: ../../include/functions_reporting_html.php:3926 +msgid "Total time" +msgstr "" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2617 +#: ../../enterprise/include/functions_reporting_csv.php:498 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2712 +#: ../../include/functions_reporting_html.php:3932 +msgid "Time failed" +msgstr "" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2625 +#: ../../enterprise/include/functions_reporting_csv.php:502 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2720 +msgid "Time in OK status" +msgstr "" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2633 +#: ../../enterprise/include/functions_reporting_csv.php:506 +#: ../../enterprise/include/functions_reporting.php:4969 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2728 +#: ../../include/functions_reporting_html.php:3944 +msgid "Time in warning status" +msgstr "" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2641 +#: ../../enterprise/include/functions_reporting_csv.php:510 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2736 +msgid "Time in unknown status" +msgstr "" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2653 +#: ../../enterprise/include/functions_reporting_csv.php:514 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2748 +msgid "Time of not initialized module" +msgstr "" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2665 +#: ../../enterprise/include/functions_reporting_csv.php:518 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2760 +msgid "Time of downtime" +msgstr "" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2719 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2812 +msgid "

    Select fields to show

    " +msgstr "" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2727 +#: ../../enterprise/include/functions_reporting_csv.php:526 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2820 +#: ../../include/functions_reporting_html.php:4020 +msgid "Total checks" +msgstr "" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2735 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2828 +#: ../../include/functions_reporting_html.php:4026 +msgid "Checks failed" +msgstr "" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2743 +#: ../../enterprise/include/functions_reporting_csv.php:534 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2836 +msgid "Checks in OK status" +msgstr "" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2755 +#: ../../enterprise/include/functions_reporting_csv.php:538 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2860 +msgid "Unknown checks" +msgstr "" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2767 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2872 +msgid "

    Select fields to show

    " +msgstr "" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2775 +#: ../../enterprise/include/functions_reporting_csv.php:661 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2880 +#: ../../include/functions_reporting_html.php:4340 +msgid "Agent max value" +msgstr "" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2783 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2888 +msgid "Agent min values" +msgstr "" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2812 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3508 +msgid "Show Summary" +msgstr "" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2956 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3112 +msgid "Height (dynamic graphs)" +msgstr "" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2996 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3096 +msgid "Query History Database" +msgstr "" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3008 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3177 +msgid "Priority mode" +msgstr "" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3013 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3182 +msgid "Priority ok mode" +msgstr "" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3025 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3194 +msgid "Priority unknown mode" +msgstr "" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3115 +msgid "Modules to match" +msgstr "" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3117 +msgid "Select the modules to match when create a report for agents" +msgstr "" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3217 +msgid "Modules to match (Free text)" +msgstr "" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3219 +msgid "Free text to filter the modules of agents when apply this template." +msgstr "" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3236 +msgid "Create a graph for each agent" +msgstr "" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3238 +msgid "" +"If it is checked, the regexp or name of modules match only each to each to " +"agent, instead create a big graph with all modules from all agents." +msgstr "" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3265 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3302 +msgid "Calculate for custom intervals" +msgstr "" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3277 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3314 +msgid "Time lapse intervals" +msgstr "" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3279 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3317 +msgid "" +"Lapses of time in which the period is divided to make more precise " +"calculations" +msgstr "" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3324 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3358 +msgid "Table only" +msgstr "" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3334 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3369 +msgid "Graph only" +msgstr "" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3344 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3380 +msgid "Graph and table" +msgstr "" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3393 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1264 +msgid "Filter by network" +msgstr "" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3423 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1283 +msgid "Show alive IPs only" +msgstr "" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3436 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1296 +msgid "Show IPs not assigned to an agent" +msgstr "" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3462 +#: ../../godmode/netflow/nf_item_list.php:282 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3832 +msgid "Create item" +msgstr "" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3471 +#: ../../extensions/agents_modules.php:448 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3839 +#: ../../include/functions_visual_map_editor.php:1421 +msgid "Update item" +msgstr "" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3520 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3926 +msgid "SLA Min. (value)" +msgstr "" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3525 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3931 +msgid "SLA Max. (value)" +msgstr "" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3530 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3936 +msgid "SLA Limit (%)" +msgstr "" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3547 +msgid "Please save the SLA template for start to add items in this list." +msgstr "" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3588 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3815 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:4260 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:4405 +msgid "Not literally" +msgstr "" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3634 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3866 +msgid "" +"Case insensitive regular expression for agent name. For example: Network* " +"will match with the following agent names: network_agent1, NetworK CHECKS" +msgstr "" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3650 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3881 +msgid "Literal module name forced" +msgstr "" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3689 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3941 +#: ../../godmode/reporting/create_container.php:418 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1760 +#: ../../godmode/reporting/reporting_builder.item_editor.php:4160 +#: ../../godmode/reporting/reporting_builder.item_editor.php:4197 +#: ../../godmode/reporting/reporting_builder.item_editor.php:4366 +#: ../../godmode/reporting/reporting_builder.item_editor.php:4639 +#: ../../godmode/reporting/reporting_builder.item_editor.php:4673 +#: ../../godmode/reporting/reporting_builder.item_editor.php:4727 +#: ../../include/functions_ui.php:5845 ../../include/functions_html.php:5357 +msgid "Select an Agent first" +msgstr "" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3771 +msgid "Please save the template to start adding items into the list." +msgstr "" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:4286 +msgid "Name and SLA limit should not be empty" +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/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:4269 +#: ../../include/rest-api/models/VisualConsole/Item.php:2147 +#: ../../include/lib/Dashboard/Widgets/module_icon.php:384 +#: ../../include/lib/Dashboard/Widgets/module_status.php:374 +#: ../../operation/visual_console/view.php:341 +msgid "Icon" +msgstr "" + +#: ../../enterprise/godmode/reporting/visual_console_builder.wizard_services.php:139 +#: ../../enterprise/include/functions_ipam.php:1567 +msgid "Available" +msgstr "" + +#: ../../enterprise/godmode/reporting/visual_console_builder.wizard_services.php:141 +#: ../../include/graphs/export_data.php:100 +msgid "Selected" +msgstr "" + +#: ../../enterprise/godmode/reporting/visual_console_builder.wizard_services.php:150 +#: ../../enterprise/godmode/reporting/visual_console_builder.wizard_services.php:151 +msgid "Push the selected services into the list" +msgstr "" + +#: ../../enterprise/godmode/reporting/visual_console_builder.wizard_services.php:161 +#: ../../enterprise/godmode/reporting/visual_console_builder.wizard_services.php:162 +msgid "Remove the services from the list" +msgstr "" + +#: ../../enterprise/godmode/reporting/visual_console_builder.wizard_services.php:229 +msgid "Icon preview" +msgstr "" + +#: ../../enterprise/godmode/reporting/visual_console_builder.wizard_services.php:295 +msgid "The services list is empty" +msgstr "" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_advanced.php:115 +msgid "Advance Options" +msgstr "" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_list_item.php:207 +#: ../../enterprise/godmode/reporting/reporting_builder.template_list_item.php:226 +#: ../../enterprise/godmode/reporting/reporting_builder.template_list_item.php:245 +#: ../../godmode/reporting/reporting_builder.list_items.php:378 +#: ../../godmode/reporting/reporting_builder.list_items.php:397 +#: ../../godmode/reporting/reporting_builder.list_items.php:416 +msgid "Ascendent" +msgstr "" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_list_item.php:214 +#: ../../enterprise/godmode/reporting/reporting_builder.template_list_item.php:233 +#: ../../enterprise/godmode/reporting/reporting_builder.template_list_item.php:252 +#: ../../godmode/reporting/reporting_builder.list_items.php:385 +#: ../../godmode/reporting/reporting_builder.list_items.php:404 +#: ../../godmode/reporting/reporting_builder.list_items.php:420 +msgid "Descent" +msgstr "" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_list_item.php:259 +#: ../../godmode/reporting/reporting_builder.list_items.php:425 +msgid "Name or Description" +msgstr "" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_list_item.php:312 +#: ../../godmode/netflow/nf_item_list.php:228 +#: ../../godmode/netflow/nf_item_list.php:230 +msgid "Move to up" +msgstr "" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_list_item.php:325 +#: ../../godmode/netflow/nf_item_list.php:226 +#: ../../godmode/netflow/nf_item_list.php:231 +msgid "Move to down" +msgstr "" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_list_item.php:409 +#: ../../godmode/reporting/reporting_builder.list_items.php:445 +#: ../../include/functions_graph.php:1538 +msgid "No items." +msgstr "" + +#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:139 +#: ../../enterprise/include/class/Azure.cloud.php:420 +#: ../../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:907 +#: ../../enterprise/include/class/MySQL.app.php:196 +#: ../../enterprise/include/class/Google.cloud.php:423 +#: ../../enterprise/include/class/Oracle.app.php:194 +#: ../../enterprise/include/class/MicrosoftSQLServer.app.php:193 +#: ../../godmode/wizards/HostDevices.class.php:412 +#: ../../include/class/CustomNetScan.class.php:158 +msgid "You have no access to edit this task." +msgstr "" + +#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:179 +msgid "Command Mysqldump is failed." +msgstr "" + +#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:225 +#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:238 +#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:287 +#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:306 +#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:386 +#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:403 +msgid "Failed to create task" +msgstr "" + +#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:293 +msgid "No template selected" +msgstr "" + +#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:412 +msgid "I do not know what you want to do" +msgstr "" + +#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:429 +#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:611 +msgid "You have no access to manage console tasks." +msgstr "" + +#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:446 +#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:517 +msgid "Create new console task" +msgstr "" + +#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:469 +#: ../../enterprise/include/class/Azure.cloud.php:689 +#: ../../enterprise/include/class/VMware.app.php:455 +#: ../../enterprise/include/class/Omnishell.class.php:630 +#: ../../enterprise/include/class/Omnishell.class.php:980 +#: ../../enterprise/include/class/Omnishell.class.php:1349 +#: ../../enterprise/include/class/DB2.app.php:354 +#: ../../enterprise/include/class/SAP.app.php:401 +#: ../../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 +#: ../../enterprise/include/class/MicrosoftSQLServer.app.php:356 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:285 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:339 +#: ../../enterprise/include/lib/ClusterViewer/ClusterManager.php:752 +#: ../../enterprise/include/lib/ClusterViewer/ClusterWizard.php:349 +#: ../../godmode/modules/manage_network_components_form.php:367 +#: ../../godmode/reporting/graph_builder.main.php:308 +#: ../../godmode/wizards/HostDevices.class.php:648 +#: ../../godmode/wizards/HostDevices.class.php:747 +#: ../../godmode/wizards/Wizard.main.php:416 +#: ../../godmode/wizards/DiscoveryTaskList.class.php:181 +#: ../../include/functions_html.php:6161 +#: ../../include/class/CustomNetScan.class.php:314 +#: ../../include/class/CustomNetScan.class.php:422 +#: ../../include/class/HTML.class.php:419 +msgid "Go back" +msgstr "" + +#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:489 +msgid "Updating console task" +msgstr "" + +#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:514 +#: ../../godmode/menu.php:49 +#: ../../godmode/wizards/DiscoveryTaskList.class.php:105 +msgid "Task list" +msgstr "" + +#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:519 +msgid "Update console task" +msgstr "" + +#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:650 +msgid "Next Execution" +msgstr "" + +#: ../../enterprise/godmode/wizards/Cloud.class.php:182 +#: ../../enterprise/godmode/wizards/Applications.class.php:157 +#: ../../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:78 ../../godmode/wizards/HostDevices.class.php:190 +#: ../../godmode/servers/discovery.php:59 +msgid "Discovery" +msgstr "" + +#: ../../enterprise/godmode/wizards/Cloud.class.php:210 +#: ../../enterprise/godmode/wizards/Applications.class.php:186 +msgid "" +"All company names used here are for identification purposes only. Use of " +"these names, logos, and brands does not imply endorsement." +msgstr "" + +#: ../../enterprise/godmode/wizards/Cloud.class.php:240 +#: ../../enterprise/godmode/wizards/Cloud.class.php:248 +#, php-format +msgid "%s credentials" +msgstr "" + +#: ../../enterprise/godmode/wizards/Cloud.class.php:264 +msgid "" +"If a task with the selected credentials is already running, it will be " +"edited. To create a new one, another account from the credential store must " +"be selected." +msgstr "" + +#: ../../enterprise/godmode/wizards/Cloud.class.php:284 +msgid "Manage accounts" +msgstr "" + +#: ../../enterprise/godmode/wizards/Cloud.class.php:296 +msgid "Cloud tool full path" +msgstr "" + +#: ../../enterprise/godmode/wizards/Cloud.class.php:304 +msgid "Account" +msgstr "" + +#: ../../enterprise/godmode/wizards/Cloud.class.php:365 +msgid "Select a set of credentials from the list" +msgstr "" + +#: ../../enterprise/godmode/wizards/Cloud.class.php:378 +#, php-format +msgid "Path %s is not executable." +msgstr "" + +#: ../../enterprise/godmode/wizards/Cloud.class.php:423 +msgid "Account disconnected" +msgstr "" + +#: ../../enterprise/godmode/wizards/Cloud.class.php:425 +msgid "Failed disconnecting account" +msgstr "" + +#: ../../enterprise/godmode/wizards/Cloud.class.php:503 +msgid "Credentials successfully updated" +msgstr "" + +#: ../../enterprise/godmode/wizards/Cloud.class.php:505 +msgid "Failed updating credentials process" +msgstr "" + +#: ../../enterprise/godmode/servers/HA_cluster.php:59 +#: ../../enterprise/godmode/servers/HA_cluster.php:83 +msgid "View nodes" +msgstr "" + +#: ../../enterprise/godmode/servers/HA_cluster.php:80 +msgid "Manage Pandora DB HA" +msgstr "" + +#: ../../enterprise/godmode/servers/HA_cluster.php:101 +msgid "Manage Database HA" +msgstr "" + +#: ../../enterprise/godmode/servers/HA_cluster.php:136 +msgid "" +"Make the cluster forget failed operations from history of\n" +" the resource and re-detect its current state. This can be\n" +" useful to purge knowledge of past failures that have since\n" +" been resolved. If a resource id is not specified then all\n" +" resources / stonith devices will be cleaned up. If a node\n" +" is not specified then resources / stonith devices on all\n" +" nodes will be cleaned up" +msgstr "" + +#: ../../enterprise/godmode/servers/HA_cluster.php:162 +msgid "Node label" +msgstr "" + +#: ../../enterprise/godmode/servers/HA_cluster.php:163 +#: ../../enterprise/include/functions_reporting_csv.php:2348 +#: ../../operation/tree.php:246 +msgid "Agent status" +msgstr "" + +#: ../../enterprise/godmode/servers/HA_cluster.php:164 +msgid "DB Repl." +msgstr "" + +#: ../../enterprise/godmode/servers/HA_cluster.php:165 +msgid "DB Status" +msgstr "" + +#: ../../enterprise/godmode/servers/HA_cluster.php:167 +#: ../../extensions/quick_shell.php:195 +#: ../../godmode/agentes/module_manager_editor_network.php:478 +msgid "SSH" +msgstr "" + +#: ../../enterprise/godmode/servers/HA_cluster.php:168 +msgid "DB Role" +msgstr "" + +#: ../../enterprise/godmode/servers/HA_cluster.php:169 +msgid "Cluster Role" +msgstr "" + +#: ../../enterprise/godmode/servers/HA_cluster.php:171 +msgid "Seconds behind master" +msgstr "" + +#: ../../enterprise/godmode/servers/HA_cluster.php:172 +msgid "Virtual IP" +msgstr "" + +#: ../../enterprise/godmode/servers/HA_cluster.php:173 +msgid "SQL version" +msgstr "" + +#: ../../enterprise/godmode/servers/HA_cluster.php:174 +msgid "DB version" +msgstr "" + +#: ../../enterprise/godmode/servers/HA_cluster.php:176 +msgid "Pending action" +msgstr "" + +#: ../../enterprise/godmode/servers/HA_cluster.php:301 +msgid "Show/ edit node" +msgstr "" + +#: ../../enterprise/godmode/servers/HA_cluster.php:317 +msgid "Put node into standby status" +msgstr "" + +#: ../../enterprise/godmode/servers/HA_cluster.php:332 +msgid "Force node resync" +msgstr "" + +#: ../../enterprise/godmode/servers/HA_cluster.php:359 +msgid "Put node into online status" +msgstr "" + +#: ../../enterprise/godmode/servers/HA_cluster.php:374 +msgid "Show cluster details" +msgstr "" + +#: ../../enterprise/godmode/servers/HA_cluster.php:392 +msgid "Remove node from this list" +msgstr "" + +#: ../../enterprise/godmode/servers/HA_cluster.php:428 +msgid "Register node" +msgstr "" + +#: ../../enterprise/godmode/servers/HA_cluster.php:466 +msgid "" +"Target node will be erased from this list but not removed from cluster. Do " +"you want to continue?" +msgstr "" + +#: ../../enterprise/godmode/servers/manage_export.php:69 +msgid "Error updating export target" +msgstr "" + +#: ../../enterprise/godmode/servers/manage_export.php:71 +msgid "Successfully updated export target" +msgstr "" + +#: ../../enterprise/godmode/servers/manage_export.php:82 +msgid "Error deleting export target" +msgstr "" + +#: ../../enterprise/godmode/servers/manage_export.php:84 +msgid "" +"Successfully deleted export target. All the linked modules will be " +"automatically unattached" +msgstr "" + +#: ../../enterprise/godmode/servers/manage_export.php:107 +msgid "" +"Can't be created export target: User and password must be filled with FTP " +"mode" +msgstr "" + +#: ../../enterprise/godmode/servers/manage_export.php:126 +msgid "There are no defined export targets" +msgstr "" + +#: ../../enterprise/godmode/servers/manage_export.php:138 +#: ../../enterprise/godmode/servers/manage_export_form.php:91 +msgid "Preffix" +msgstr "" + +#: ../../enterprise/godmode/servers/manage_export.php:141 +#: ../../enterprise/godmode/servers/manage_export_form.php:103 +msgid "Transfer mode" +msgstr "" + +#: ../../enterprise/godmode/servers/credential_boxes_satellite.php:35 +msgid "Credential Boxes List" +msgstr "" + +#: ../../enterprise/godmode/servers/credential_boxes_satellite.php:42 +msgid "Credential Boxes" +msgstr "" + +#: ../../enterprise/godmode/servers/credential_boxes_satellite.php:248 +#: ../../enterprise/godmode/servers/manage_credential_boxes.php:57 +#: ../../enterprise/include/ajax/servers.ajax.php:99 +#: ../../enterprise/include/ajax/servers.ajax.php:157 +#: ../../enterprise/include/ajax/servers.ajax.php:283 +#: ../../enterprise/include/functions_ipam.php:1343 +msgid "Subnet" +msgstr "" + +#: ../../enterprise/godmode/servers/credential_boxes_satellite.php:293 +#: ../../enterprise/godmode/servers/list_satellite.php:69 +#: ../../enterprise/include/ajax/servers.ajax.php:139 +msgid "No Data" +msgstr "" + +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:148 +msgid "Error: The conf file of server is not readble." +msgstr "" + +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:152 +msgid "Error: The conf file of server is not writable." +msgstr "" + +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:348 +msgid "Delete remote conf server files" +msgstr "" + +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:349 +msgid "" +"Delete this conf file implies that server will send back local config to " +"console" +msgstr "" + +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:386 +#: ../../include/functions_servers.php:556 +#: ../../include/functions_servers.php:1305 +msgid "Data server" +msgstr "" + +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:401 +#: ../../include/functions_servers.php:569 +#: ../../include/functions_servers.php:1308 +#: ../../include/class/AgentWizard.class.php:1296 +msgid "Network server" +msgstr "" + +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:416 +#: ../../include/functions_servers.php:855 +#: ../../include/functions_servers.php:1356 +msgid "Alert server" +msgstr "" + +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:431 +#: ../../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: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 +#: ../../enterprise/include/class/MicrosoftSQLServer.app.php:450 +#: ../../enterprise/tools/ipam/ipam_editor.php:163 +#: ../../godmode/wizards/HostDevices.class.php:848 +#: ../../include/functions_servers.php:595 +#: ../../include/functions_servers.php:1341 +#: ../../include/class/CustomNetScan.class.php:479 +#: ../../general/first_task/recon_view.php:22 +msgid "Discovery server" +msgstr "" + +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:446 +#: ../../include/functions_servers.php:608 +#: ../../include/functions_servers.php:1320 +#: ../../include/class/AgentWizard.class.php:1277 +msgid "Plugin server" +msgstr "" + +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:461 +#: ../../include/functions_menu.php:526 ../../operation/menu.php:125 +msgid "SNMP console" +msgstr "" + +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:476 +#: ../../enterprise/include/lib/ClusterViewer/ClusterWizard.php:840 +#: ../../include/functions_servers.php:621 +msgid "Prediction server" +msgstr "" + +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:491 +#: ../../include/functions_servers.php:634 +#: ../../include/functions_servers.php:1326 +#: ../../include/class/AgentWizard.class.php:1287 +msgid "WMI server" +msgstr "" + +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:507 +#: ../../include/functions_servers.php:673 +#: ../../include/functions_servers.php:1329 +msgid "Web server" +msgstr "" + +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:522 +#: ../../include/functions_servers.php:660 +#: ../../include/functions_servers.php:1335 +msgid "Inventory server" +msgstr "" + +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:537 +#: ../../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:552 +#: ../../include/functions_servers.php:686 +#: ../../include/functions_servers.php:1338 +msgid "Event server" +msgstr "" + +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:567 +msgid "ICMP server" +msgstr "" + +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:582 +#: ../../include/functions_servers.php:1311 +msgid "SNMP server" +msgstr "" + +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:597 +#: ../../include/functions_servers.php:1347 +msgid "WUX server" +msgstr "" + +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:612 +#: ../../include/functions_servers.php:816 +#: ../../include/functions_servers.php:1359 +msgid "NCM server" +msgstr "" + +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:642 +msgid "Network timeout" +msgstr "" + +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:650 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:666 +msgid " Seconds" +msgstr "" + +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:658 +msgid "Plugin timeout" +msgstr "" + +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:674 +msgid "SNMP console threads" +msgstr "" + +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:690 +msgid "Network threads" +msgstr "" + +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:706 +msgid "Plugin threads" +msgstr "" + +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:722 +msgid "Recon threads" +msgstr "" + +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:738 +msgid "Dataserver threads" +msgstr "" + +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:754 +msgid "Web threads" +msgstr "" + +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:770 +msgid "SNMP threads" +msgstr "" + +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:786 +msgid "ICMP threads" +msgstr "" + +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:816 +msgid "Autocreate group" +msgstr "" + +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:832 +msgid "Autocreate group force" +msgstr "" + +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:847 +msgid "Autocreate" +msgstr "" + +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:865 +msgid "Server features" +msgstr "" + +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:872 +msgid "Optimization settings" +msgstr "" + +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:879 +msgid "Other server settings" +msgstr "" + +#: ../../enterprise/godmode/servers/manage_credential_boxes.php:20 +msgid "Add Credential Box" +msgstr "" + +#: ../../enterprise/godmode/servers/manage_export_form.php:125 +msgid "Target directory" +msgstr "" + +#: ../../enterprise/godmode/servers/manage_export_form.php:129 +#: ../../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:566 +msgid "Extra options" +msgstr "" + +#: ../../enterprise/godmode/servers/list_satellite.php:27 +msgid "Satellite Server" +msgstr "" + +#: ../../enterprise/include/functions_cron.php:178 +#: ../../enterprise/include/functions_cron.php:256 +#: ../../enterprise/include/functions_cron.php:331 +#: ../../enterprise/include/functions_cron.php:375 +msgid "Report to build" +msgstr "" + +#: ../../enterprise/include/functions_cron.php:186 +#: ../../enterprise/include/functions_cron.php:236 +#: ../../enterprise/include/functions_reporting.php:8179 +#: ../../enterprise/operation/reporting/custom_reporting.php:124 +msgid "Send to emails (separated by comma)" +msgstr "" + +#: ../../enterprise/include/functions_cron.php:190 +#: ../../enterprise/include/functions_cron.php:240 +#: ../../enterprise/include/functions_reporting.php:8187 +#: ../../enterprise/operation/reporting/custom_reporting.php:132 +#: ../../godmode/setup/news.php:183 ../../godmode/setup/news.php:246 +#: ../../operation/messages/message_list.php:199 +#: ../../operation/messages/message_edit.php:350 +msgid "Subject" +msgstr "" + +#: ../../enterprise/include/functions_cron.php:194 +#: ../../enterprise/include/functions_cron.php:244 +#: ../../enterprise/include/functions_reporting.php:8205 +#: ../../enterprise/operation/reporting/custom_reporting.php:150 +#: ../../operation/messages/message_edit.php:360 +msgid "Message" +msgstr "" + +#: ../../enterprise/include/functions_cron.php:199 +#: ../../enterprise/include/functions_cron.php:249 +#: ../../enterprise/include/functions_cron.php:275 +msgid "Report Type" +msgstr "" + +#: ../../enterprise/include/functions_cron.php:206 +#: ../../enterprise/include/functions_cron.php:353 +msgid "Template to build" +msgstr "" + +#: ../../enterprise/include/functions_cron.php:224 +msgid "Regexp agent filter" +msgstr "" + +#: ../../enterprise/include/functions_cron.php:228 +#: ../../enterprise/include/functions_tasklist.php:339 +#: ../../include/functions_cron.php:664 +msgid "Report per agent" +msgstr "" + +#: ../../enterprise/include/functions_cron.php:264 +#: ../../enterprise/include/functions_cron.php:286 +#: ../../enterprise/include/functions_cron.php:376 +msgid "Save to disk into path" +msgstr "" + +#: ../../enterprise/include/functions_cron.php:265 +msgid "The apache user should have read-write access on this folder. Ex: " +msgstr "" + +#: ../../enterprise/include/functions_cron.php:271 +msgid "File name prefix" +msgstr "" + +#: ../../enterprise/include/functions_cron.php:291 +msgid "Active backups" +msgstr "" + +#: ../../enterprise/include/functions_cron.php:299 +#: ../../enterprise/include/functions_tasklist.php:383 +#: ../../include/functions_cron.php:703 +msgid "Custom script" +msgstr "" + +#: ../../enterprise/include/functions_cron.php:306 +#: ../../enterprise/include/functions_cron.php:332 +#: ../../enterprise/include/functions_cron.php:354 +msgid "Send to email" +msgstr "" + +#: ../../enterprise/include/functions_cron.php:315 +msgid "Function name" +msgstr "" + +#: ../../enterprise/include/functions_cron.php:333 +msgid "Send custom report by email" +msgstr "" + +#: ../../enterprise/include/functions_cron.php:355 +msgid "Send custom report (from template) by email" +msgstr "" + +#: ../../enterprise/include/functions_cron.php:377 +msgid "Save custom report to disk" +msgstr "" + +#: ../../enterprise/include/functions_cron.php:397 +msgid "Backup Pandora database" +msgstr "" + +#: ../../enterprise/include/functions_cron.php:417 +msgid "Execute custom script" +msgstr "" + +#: ../../enterprise/include/functions_cron.php:499 +msgid "Not scheduled" +msgstr "" + +#: ../../enterprise/include/functions_cron.php:500 +#: ../../include/functions_netflow.php:1849 +msgid "Hourly" +msgstr "" + +#: ../../enterprise/include/functions_cron.php:504 +msgid "Yearly" +msgstr "" + +#: ../../enterprise/include/functions_cron.php:800 +#: ../../enterprise/include/functions_cron.php:833 +#: ../../enterprise/include/functions_reporting.php:8199 +#: ../../enterprise/include/functions_reporting.php:8213 +#: ../../enterprise/operation/reporting/custom_reporting.php:144 +#: ../../enterprise/operation/reporting/custom_reporting.php:158 +msgid "This is an optional field" +msgstr "" + +#: ../../enterprise/include/functions_cron.php:1531 +msgid "Scheduled report had an attempt to send an email without attachments." +msgstr "" + +#: ../../enterprise/include/functions_cron.php:1534 +msgid "Scheduled report had an attempt to send an email with some attachments." +msgstr "" + +#: ../../enterprise/include/functions_cron.php:1776 +#: ../../include/functions_reporting.php:15189 +msgid "Greetings" +msgstr "" + +#: ../../enterprise/include/functions_cron.php:1778 +msgid "Attached to this email there's a CSV file of the logs" +msgstr "" + +#: ../../enterprise/include/functions_cron.php:1780 +#: ../../mobile/include/functions_web.php:84 +#: ../../mobile/include/ui.class.php:327 +#: ../../include/functions_reporting.php:15195 +msgid "Generated at" +msgstr "" + +#: ../../enterprise/include/functions_cron.php:1782 +#: ../../include/functions_reporting.php:15197 +msgid "Thanks for your time." +msgstr "" + +#: ../../enterprise/include/functions_cron.php:1784 +#: ../../include/functions_reporting.php:15199 +msgid "Best regards, Pandora FMS" +msgstr "" + +#: ../../enterprise/include/functions_cron.php:1786 +#: ../../include/functions_reporting.php:15201 +msgid "" +"This is an automatically generated email from Pandora FMS, please do not " +"reply." +msgstr "" + +#: ../../enterprise/include/functions_cron.php:1788 +msgid "logs csv" +msgstr "" + +#: ../../enterprise/include/functions_cron.php:2207 +#, php-format +msgid "Error while executing task: %s, running %s, reason %s" +msgstr "" + +#: ../../enterprise/include/functions_cron.php:2221 +#: ../../enterprise/include/functions_cron.php:2231 +msgid "Error while executing task" +msgstr "" + +#: ../../enterprise/include/functions_tasklist.php:56 +#: ../../include/class/ConsoleSupervisor.php:2376 +msgid "DiscoveryConsoleTasks is not running properly" +msgstr "" + +#: ../../enterprise/include/functions_tasklist.php:58 +msgid "" +"Discovery relies on a proper setup of cron, the time-based scheduling service" +msgstr "" + +#: ../../enterprise/include/functions_tasklist.php:59 +#: ../../include/class/ConsoleSupervisor.php:2379 +msgid "Please, add the following line to your crontab file:" +msgstr "" + +#: ../../enterprise/include/functions_tasklist.php:74 +#: ../../include/class/ConsoleSupervisor.php:2392 +msgid "Last execution" +msgstr "" + +#: ../../enterprise/include/functions_tasklist.php:77 +msgid "Please check process is no locked." +msgstr "" + +#: ../../enterprise/include/functions_tasklist.php:143 +#: ../../enterprise/include/functions_tasklist.php:688 +msgid "There are no console task defined yet." +msgstr "" + +#: ../../enterprise/include/functions_tasklist.php:156 +#: ../../include/functions_cron.php:467 +msgid "Last run" +msgstr "" + +#: ../../enterprise/include/functions_tasklist.php:217 +#: ../../enterprise/include/functions_tasklist.php:279 +#: ../../enterprise/include/functions_tasklist.php:365 +#: ../../enterprise/include/functions_tasklist.php:406 +#: ../../enterprise/include/functions_tasklist.php:459 +#: ../../enterprise/include/functions_tasklist.php:498 +#: ../../enterprise/include/functions_tasklist.php:535 +#: ../../include/functions_cron.php:498 ../../include/functions_cron.php:536 +#: ../../include/functions_cron.php:591 ../../include/functions_cron.php:683 +#: ../../include/functions_cron.php:719 ../../include/functions_cron.php:765 +#: ../../include/functions_cron.php:807 ../../include/functions_cron.php:841 +msgid "Force run" +msgstr "" + +#: ../../enterprise/include/functions_tasklist.php:253 +#: ../../enterprise/include/functions_tasklist.php:342 +#: ../../enterprise/include/functions_tasklist.php:436 +#: ../../enterprise/include/functions_reporting_csv.php:983 +#: ../../enterprise/include/functions_reporting_csv.php:1184 +#: ../../enterprise/include/functions_reporting_csv.php:1215 +#: ../../enterprise/include/functions_reporting_csv.php:1270 +#: ../../enterprise/include/functions_reporting_csv.php:1325 +#: ../../enterprise/include/functions_reporting_csv.php:1374 +#: ../../enterprise/include/functions_reporting_csv.php:1429 +#: ../../enterprise/include/functions_reporting.php:8125 +#: ../../enterprise/include/functions_reporting.php:8159 +#: ../../enterprise/operation/reporting/custom_reporting.php:109 +#: ../../include/functions_cron.php:574 ../../include/functions_cron.php:667 +#: ../../include/functions_cron.php:791 +msgid "Report type" +msgstr "" + +#: ../../enterprise/include/functions_tasklist.php:313 +#: ../../include/functions_cron.php:638 +msgid "regex" +msgstr "" + +#: ../../enterprise/include/functions_tasklist.php:433 +#: ../../extensions/resource_exportation.php:433 +#: ../../include/functions_cron.php:747 ../../include/functions_cron.php:788 +#: ../../include/lib/Dashboard/Widgets/reports.php:318 +#: ../../include/lib/Dashboard/Widgets/reports.php:363 +msgid "Report" +msgstr "" + +#: ../../enterprise/include/functions_tasklist.php:435 +#: ../../enterprise/include/class/ManageBackups.class.php:166 +#: ../../include/functions_cron.php:749 ../../include/functions_cron.php:790 +#: ../../include/class/Diagnostics.class.php:2175 +msgid "Path" +msgstr "" + +#: ../../enterprise/include/functions_tasklist.php:569 +msgid "Task disabled" +msgstr "" + +#: ../../enterprise/include/functions_tasklist.php:572 +#: ../../enterprise/include/functions_ipam.php:2076 +#: ../../enterprise/include/functions_ipam.php:2077 +#: ../../enterprise/include/functions_ipam.php:2078 +#: ../../enterprise/tools/ipam/ipam_list.php:675 +#: ../../enterprise/tools/ipam/ipam_ajax.php:502 +#: ../../godmode/db/db_main.php:189 +#: ../../godmode/snmpconsole/snmp_alert.php:1330 +#: ../../include/functions_cron.php:869 +#: ../../include/functions_treeview.php:660 ../../include/functions_ui.php:549 +#: ../../operation/agentes/estado_generalagente.php:367 +#: ../../operation/gis_maps/ajax.php:351 ../../operation/gis_maps/ajax.php:362 +#: ../../operation/gis_maps/ajax.php:468 ../../operation/gis_maps/ajax.php:479 +msgid "Never" +msgstr "" + +#: ../../enterprise/include/functions_tasklist.php:671 +#: ../../godmode/wizards/DiscoveryTaskList.class.php:1024 +#: ../../include/functions_cron.php:943 +msgid "Disable task" +msgstr "" + +#: ../../enterprise/include/functions_tasklist.php:671 +#: ../../include/functions_cron.php:943 +msgid "Enable task" +msgstr "" + +#: ../../enterprise/include/functions_tasklist.php:693 +msgid "Console Tasks" +msgstr "" + +#: ../../enterprise/include/functions_hostdevices.php:45 +msgid "Remote commands enabled" +msgstr "" + +#: ../../enterprise/include/ajax/transactional.ajax.php:174 +#: ../../enterprise/operation/agentes/manage_transmap_creation.php:219 +msgid "The phase does not have a defined script" +msgstr "" + +#: ../../enterprise/include/ajax/transactional.ajax.php:211 +#: ../../enterprise/operation/agentes/manage_transmap_creation.php:275 +msgid "Edit Data" +msgstr "" + +#: ../../enterprise/include/ajax/top_n_widget.ajax.php:79 +msgid "avg" +msgstr "" + +#: ../../enterprise/include/ajax/top_n_widget.ajax.php:80 +#: ../../godmode/reporting/reporting_builder.item_editor.php:4400 +msgid "max" +msgstr "" + +#: ../../enterprise/include/ajax/top_n_widget.ajax.php:81 +#: ../../godmode/reporting/reporting_builder.item_editor.php:4401 +msgid "min" +msgstr "" + +#: ../../enterprise/include/ajax/top_n_widget.ajax.php:82 +#: ../../godmode/reporting/reporting_builder.item_editor.php:4402 +msgid "sum" +msgstr "" + +#: ../../enterprise/include/ajax/ipam.ajax.php:249 +msgid "Current Networks" +msgstr "" + +#: ../../enterprise/include/ajax/ipam.ajax.php:296 +msgid "Please, create networks to assign to " +msgstr "" + +#: ../../enterprise/include/ajax/ipam.ajax.php:300 +msgid "No networks to assign to supernet" +msgstr "" + +#: ../../enterprise/include/ajax/ipam.ajax.php:302 +msgid "Please, create networks to assign to" +msgstr "" + +#: ../../enterprise/include/ajax/ipam.ajax.php:307 +msgid "Create and add networks in bulk" +msgstr "" + +#: ../../enterprise/include/ajax/ipam.ajax.php:316 +msgid "Starting network" +msgstr "" + +#: ../../enterprise/include/ajax/ipam.ajax.php:316 +msgid "" +"The networks will be created/added starting from this address in the " +"subnetting range given by the mask. Use CIDR format (e.g.: 192.168.72.0/22). " +"If no value was provided, it uses the starting address of the supernet by " +"default." +msgstr "" + +#: ../../enterprise/include/ajax/ipam.ajax.php:320 +msgid "Max. number" +msgstr "" + +#: ../../enterprise/include/ajax/ipam.ajax.php:320 +msgid "" +"Maximum number of networks to be created/added from starting address of the " +"range specified above" +msgstr "" + +#: ../../enterprise/include/ajax/ipam.ajax.php:385 +#: ../../enterprise/include/functions_ipam.php:1369 +#: ../../enterprise/include/functions_ipam.php:1983 +#: ../../enterprise/tools/ipam/ipam_list.php:97 +#: ../../enterprise/tools/ipam/ipam_list.php:588 +#: ../../enterprise/tools/ipam/ipam_editor.php:191 +#: ../../godmode/events/event_responses.editor.php:123 +msgid "Location" +msgstr "" + +#: ../../enterprise/include/ajax/ipam.ajax.php:386 +#: ../../enterprise/tools/ipam/ipam_editor.php:192 +msgid "For example: Central Data Center" +msgstr "" + +#: ../../enterprise/include/ajax/ipam.ajax.php:418 +#: ../../enterprise/tools/ipam/ipam.php:171 +#: ../../enterprise/tools/ipam/ipam.php:411 +#: ../../enterprise/tools/ipam/ipam_editor.php:224 +msgid "Sites" +msgstr "" + +#: ../../enterprise/include/ajax/ipam.ajax.php:419 +#: ../../enterprise/tools/ipam/ipam_editor.php:225 +msgid "For example: Pandora" +msgstr "" + +#: ../../enterprise/include/ajax/ipam.ajax.php:437 +#: ../../enterprise/tools/ipam/ipam_list.php:609 +#: ../../enterprise/tools/ipam/ipam_editor.php:243 +msgid "Vrf" +msgstr "" + +#: ../../enterprise/include/ajax/ipam.ajax.php:438 +#: ../../enterprise/tools/ipam/ipam_editor.php:244 +msgid "Virtual Routing and Forwarding" +msgstr "" + +#: ../../enterprise/include/ajax/ipam.ajax.php:456 +#: ../../enterprise/tools/ipam/ipam_editor.php:262 +msgid "Include statistical monitors" +msgstr "" + +#: ../../enterprise/include/ajax/ipam.ajax.php:471 +#: ../../enterprise/tools/ipam/ipam_editor.php:277 +msgid "Lightweight mode" +msgstr "" + +#: ../../enterprise/include/ajax/ipam.ajax.php:472 +#: ../../enterprise/tools/ipam/ipam_editor.php:278 +msgid "Use quicker network scan" +msgstr "" + +#: ../../enterprise/include/ajax/ipam.ajax.php:488 +#: ../../enterprise/tools/ipam/ipam_editor.php:294 +msgid "Target group for monitoring agent" +msgstr "" + +#: ../../enterprise/include/ajax/ipam.ajax.php:509 +#: ../../enterprise/tools/ipam/ipam_editor.php:315 +msgid "Scan interval" +msgstr "" + +#: ../../enterprise/include/ajax/ipam.ajax.php:510 +#: ../../enterprise/tools/ipam/ipam_editor.php:316 +msgid "0 for manually scan" +msgstr "" + +#: ../../enterprise/include/ajax/ipam.ajax.php:524 +#: ../../enterprise/tools/ipam/ipam_editor.php:330 +msgid "The list of users can manage the networks in the IPAM." +msgstr "" + +#: ../../enterprise/include/ajax/ipam.ajax.php:525 +#: ../../enterprise/tools/ipam/ipam_editor.php:331 +msgid " Only the admin users can manage networks and edit the networks" +msgstr "" + +#: ../../enterprise/include/ajax/ipam.ajax.php:526 +#: ../../enterprise/tools/ipam/ipam_editor.php:332 +msgid "Operator users" +msgstr "" + +#: ../../enterprise/include/ajax/ipam.ajax.php:532 +#: ../../enterprise/tools/ipam/ipam_editor.php:338 +msgid "All users" +msgstr "" + +#: ../../enterprise/include/ajax/ipam.ajax.php:613 +#: ../../enterprise/tools/ipam/ipam_supernet_config.php:536 +#: ../../enterprise/tools/ipam/ipam_supernet_network.php:82 +msgid "Supernet" +msgstr "" + +#: ../../enterprise/include/ajax/ipam.ajax.php:614 +#: ../../enterprise/include/ajax/ipam.ajax.php:644 +#: ../../enterprise/include/functions_ipam.php:1980 +#: ../../enterprise/tools/ipam/ipam_list.php:570 +#: ../../enterprise/tools/ipam/ipam_vlan_network.php:63 +#: ../../enterprise/tools/ipam/ipam_calculator.php:185 +#: ../../enterprise/tools/ipam/ipam_supernet_network.php:58 +#: ../../enterprise/tools/ipam/ipam_supernet_network.php:83 +#: ../../enterprise/tools/ipam/ipam_editor.php:122 +#: ../../godmode/wizards/HostDevices.class.php:916 +#: ../../godmode/wizards/DiscoveryTaskList.class.php:597 +#: ../../include/functions_ui.php:870 ../../operation/menu.php:78 +msgid "Network" +msgstr "" + +#: ../../enterprise/include/ajax/ipam.ajax.php:622 +msgid "Go to supernet edition" +msgstr "" + +#: ../../enterprise/include/ajax/ipam.ajax.php:664 +msgid "Go to network edition" +msgstr "" + +#: ../../enterprise/include/ajax/ipam.ajax.php:691 +#: ../../enterprise/include/ajax/ipam.ajax.php:748 +#: ../../enterprise/include/ajax/ipam.ajax.php:779 +#: ../../enterprise/include/ajax/ipam.ajax.php:826 +#: ../../enterprise/tools/ipam/ipam_supernet_config.php:1176 +#: ../../enterprise/tools/ipam/ipam_supernet_config.php:1306 +#: ../../enterprise/tools/ipam/ipam_vlan_config.php:702 +msgid "No assigned networks" +msgstr "" + +#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:94 +#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:253 +msgid "Group name" +msgstr "" + +#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:118 +#: ../../include/lib/Dashboard/Widgets/os_quick_report.php:284 +msgid "OS name" +msgstr "" + +#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:136 +msgid "IP Network range" +msgstr "" + +#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:141 +msgid "Script" +msgstr "" + +#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:143 +msgid "Arguments" +msgstr "" + +#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:149 +msgid "Unknown option" +msgstr "" + +#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:256 +#: ../../include/functions_treeview.php:783 +#: ../../operation/agentes/agent_fields.php:44 +#: ../../operation/agentes/estado_generalagente.php:544 +msgid "Custom field" +msgstr "" + +#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:257 +msgid "IP range" +msgstr "" + +#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:258 +msgid "Script output (> 0)" +msgstr "" + +#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:435 +#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:542 +#: ../../godmode/snmpconsole/snmp_alert.php:1110 +#: ../../godmode/snmpconsole/snmp_alert.php:1257 +msgid "Alert action" +msgstr "" + +#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:455 +#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:562 +msgid "Script path" +msgstr "" + +#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:459 +#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:566 +msgid "Script argument" +msgstr "" + +#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:471 +#: ../../godmode/alerts/alert_list.list.php:703 +#: ../../godmode/alerts/alert_list.list.php:1182 +msgid "Update action" +msgstr "" + +#: ../../enterprise/include/ajax/url_route_analyzer.ajax.php:33 +msgid "Global time: " +msgstr "" + +#: ../../enterprise/include/ajax/log_viewer.ajax.php:55 +#: ../../enterprise/include/functions_reporting_csv.php:421 +#: ../../enterprise/include/functions_reporting_csv.php:443 +#: ../../enterprise/include/functions_reporting_csv.php:474 +#: ../../enterprise/include/functions_reporting_csv.php:697 +#: ../../enterprise/include/functions_reporting_csv.php:741 +#: ../../enterprise/include/functions_reporting_csv.php:755 +#: ../../enterprise/include/functions_reporting_csv.php:769 +#: ../../enterprise/include/functions_reporting_csv.php:789 +#: ../../enterprise/include/functions_reporting_csv.php:818 +#: ../../enterprise/include/functions_reporting_csv.php:857 +#: ../../enterprise/include/functions_reporting_csv.php:901 +#: ../../enterprise/include/functions_reporting_csv.php:933 +#: ../../enterprise/include/functions_reporting_csv.php:970 +#: ../../enterprise/include/functions_reporting_csv.php:993 +#: ../../enterprise/include/functions_reporting_csv.php:1144 +#: ../../enterprise/include/functions_reporting_csv.php:1171 +#: ../../enterprise/include/functions_reporting_csv.php:1202 +#: ../../enterprise/include/functions_reporting_csv.php:1257 +#: ../../enterprise/include/functions_reporting_csv.php:1312 +#: ../../enterprise/include/functions_reporting_csv.php:1361 +#: ../../enterprise/include/functions_reporting_csv.php:1416 +#: ../../enterprise/include/functions_reporting_csv.php:1445 +#: ../../enterprise/include/functions_reporting_csv.php:1482 +#: ../../enterprise/include/functions_reporting_csv.php:1608 +#: ../../enterprise/include/functions_reporting_csv.php:1724 +#: ../../enterprise/include/functions_reporting_csv.php:1868 +#: ../../enterprise/include/functions_reporting_csv.php:1918 +#: ../../enterprise/include/functions_reporting_csv.php:1964 +#: ../../enterprise/include/functions_reporting_csv.php:2032 +#: ../../enterprise/include/functions_reporting_csv.php:2176 +#: ../../enterprise/include/functions_reporting_csv.php:2268 +#: ../../enterprise/include/functions_reporting_csv.php:2299 +#: ../../enterprise/include/functions_reporting_csv.php:2335 +#: ../../enterprise/include/functions_reporting_csv.php:2388 +#: ../../enterprise/include/functions_reporting_csv.php:2410 +#: ../../enterprise/include/functions_reporting_csv.php:2451 +#: ../../enterprise/include/functions_reporting_csv.php:2505 +#: ../../enterprise/include/functions_reporting_csv.php:2534 +#: ../../enterprise/include/functions_reporting_csv.php:2610 +#: ../../enterprise/include/functions_reporting_csv.php:2661 +#: ../../enterprise/include/functions_reporting_csv.php:2710 +#: ../../enterprise/include/functions_reporting_csv.php:2787 +#: ../../godmode/setup/setup_integria.php:333 +#: ../../godmode/setup/setup_integria.php:454 +#: ../../include/rest-api/models/VisualConsole/Items/Odometer.php:404 +#: ../../include/lib/Dashboard/Widget.php:555 +#: ../../operation/agentes/estado_generalagente.php:649 +#: ../../operation/incidents/integriaims_export_csv.php:81 +#: ../../operation/incidents/configure_integriaims_incident.php:213 +#: ../../operation/incidents/list_integriaims_incidents.php:516 +msgid "Title" +msgstr "" + +#: ../../enterprise/include/ajax/log_viewer.ajax.php:65 +msgid "Capture regexp" +msgstr "" + +#: ../../enterprise/include/ajax/log_viewer.ajax.php:85 +#: ../../enterprise/include/functions_reporting_pdf.php:542 +#: ../../enterprise/include/functions_reporting_pdf.php:598 +#: ../../include/functions_reporting_html.php:3627 +#: ../../include/functions_reporting_html.php:3695 +msgid "Average" +msgstr "" + +#: ../../enterprise/include/ajax/log_viewer.ajax.php:175 +msgid "Empty ip or port" +msgstr "" + +#: ../../enterprise/include/ajax/log_viewer.ajax.php:192 +msgid "Curl Error: " +msgstr "" + +#: ../../enterprise/include/process_reset_pass.php:53 +#: ../../enterprise/include/reset_pass.php:48 ../../general/login_page.php:136 +#: ../../general/login_page.php:139 ../../general/login_page.php:155 +msgid "Docs" +msgstr "" + +#: ../../enterprise/include/process_reset_pass.php:159 +#: ../../enterprise/include/process_reset_pass.php:162 +#: ../../enterprise/include/reset_pass.php:146 +#: ../../enterprise/include/reset_pass.php:149 +#: ../../include/functions_config.php:2400 +msgid "ONE TOOL TO MONITOR THEM ALL" +msgstr "" + +#: ../../enterprise/include/functions_log.php:279 +#: ../../enterprise/include/functions_log.php:282 +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:684 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:645 +#: ../../operation/tree.php:415 ../../operation/tree.php:446 +#: ../../operation/network/network_report.php:313 +msgid "No data found" +msgstr "" + +#: ../../enterprise/include/functions_inventory.php:885 +#: ../../enterprise/include/functions_inventory.php:948 +#: ../../include/functions_reporting_html.php:1716 +msgid "Added" +msgstr "" + +#: ../../enterprise/include/functions_inventory.php:891 +#: ../../enterprise/include/functions_inventory.php:956 +#: ../../include/functions_reporting_html.php:1727 +#: ../../include/functions_filemanager.php:342 +#: ../../include/functions_filemanager.php:359 +msgid "Deleted" +msgstr "" + +#: ../../enterprise/include/functions_transactional.php:631 +msgid "Error in dependencies field" +msgstr "" + +#: ../../enterprise/include/functions_transactional.php:640 +msgid "Error in enables field" +msgstr "" + +#: ../../enterprise/include/auth/saml.php:119 +#, php-format +msgid "Pandora FMS SAML authentication error: %s" +msgstr "" + +#: ../../enterprise/include/auth/saml.php:184 +msgid "Force log out" +msgstr "" + +#: ../../enterprise/include/auth/saml.php:241 ../../include/auth/mysql.php:372 +#: ../../include/auth/mysql.php:402 ../../include/auth/mysql.php:437 +msgid "Please, login into metaconsole first" +msgstr "" + +#: ../../enterprise/include/functions_collection.php:39 +#, php-format +msgid "Collection %d does not exist" +msgstr "" + +#: ../../enterprise/include/functions_collection.php:48 +msgid "Collection dir does not exist." +msgstr "" + +#: ../../enterprise/include/functions_collection.php:57 +#, php-format +msgid "Failed to create collection path: %s" +msgstr "" + +#: ../../enterprise/include/functions_collection.php:66 +msgid "Target collection path is not writable" +msgstr "" + +#: ../../enterprise/include/functions_collection.php:80 +msgid "Failed to create zip file for collection" +msgstr "" + +#: ../../enterprise/include/functions_collection.php:87 +#, php-format +msgid "File of collection is bigger than the limit (%s bytes)" +msgstr "" + +#: ../../enterprise/include/functions_ui.php:79 +msgid "Select inventory module" +msgstr "" + +#: ../../enterprise/include/functions_ui.php:96 +msgid "Use custom fields" +msgstr "" + +#: ../../enterprise/include/functions_ui.php:179 +msgid "Field name" +msgstr "" + +#: ../../enterprise/include/functions_ui.php:179 +msgid "It's a password" +msgstr "" + +#: ../../enterprise/include/functions_ui.php:179 +msgid "Add field" +msgstr "" + +#: ../../enterprise/include/functions_reporting_pdf.php:72 +#: ../../include/class/Diagnostics.class.php:2130 +#: ../../include/class/Diagnostics.class.php:2248 +#, php-format +msgid "Automated %s report for user defined report" +msgstr "" + +#: ../../enterprise/include/functions_reporting_pdf.php:526 +#: ../../enterprise/include/functions_reporting_pdf.php:558 +#: ../../enterprise/include/functions_reporting_pdf.php:584 +#: ../../enterprise/include/functions_reporting_pdf.php:609 +#: ../../enterprise/include/functions_reporting_pdf.php:612 +#: ../../enterprise/include/functions_reporting_pdf.php:619 +#: ../../enterprise/include/functions_reporting_csv.php:1290 +#: ../../include/functions_reporting_html.php:3610 +#: ../../include/functions_reporting_html.php:3639 +#: ../../include/functions_reporting_html.php:3680 +#: ../../include/functions_reporting_html.php:3703 +#: ../../include/functions_reporting_html.php:3706 +#: ../../include/functions_reporting_html.php:3713 +#: ../../include/functions_reporting.php:6840 +#: ../../include/functions_reporting.php:6863 +#: ../../include/functions_reporting.php:6878 +#: ../../include/functions_reporting.php:6894 +#: ../../include/functions_reporting.php:6909 +msgid "Maximun" +msgstr "" + +#: ../../enterprise/include/functions_reporting_pdf.php:534 +#: ../../enterprise/include/functions_reporting_pdf.php:591 +#: ../../include/functions_reporting_html.php:3618 +#: ../../include/functions_reporting_html.php:3687 +msgid "Minimun" +msgstr "" + +#: ../../enterprise/include/functions_reporting_pdf.php:583 +#: ../../enterprise/include/functions_reporting_pdf.php:590 +#: ../../enterprise/include/functions_reporting_pdf.php:597 +#: ../../enterprise/include/functions_reporting_pdf.php:611 +#: ../../enterprise/include/functions_reporting_pdf.php:616 +#: ../../enterprise/include/functions_reporting_csv.php:1235 +#: ../../enterprise/include/functions_reporting_csv.php:1290 +#: ../../enterprise/include/functions_reporting_csv.php:1394 +#: ../../include/functions_reporting_html.php:3679 +#: ../../include/functions_reporting_html.php:3686 +#: ../../include/functions_reporting_html.php:3694 +#: ../../include/functions_reporting_html.php:3705 +#: ../../include/functions_reporting_html.php:3710 +#: ../../include/functions_reporting.php:6858 +msgid "Lapse" +msgstr "" + +#: ../../enterprise/include/functions_reporting_pdf.php:946 +#: ../../include/functions_reporting_html.php:2043 +#: ../../include/lib/Dashboard/Widgets/agent_module.php:536 +#, php-format +msgid "%s in %s : NORMAL" +msgstr "" + +#: ../../enterprise/include/functions_reporting_pdf.php:963 +#: ../../include/functions_reporting_html.php:1955 +#: ../../include/lib/Dashboard/Widgets/agent_module.php:552 +#, php-format +msgid "%s in %s : CRITICAL" +msgstr "" + +#: ../../enterprise/include/functions_reporting_pdf.php:980 +#: ../../include/functions_reporting_html.php:1972 +#: ../../include/lib/Dashboard/Widgets/agent_module.php:568 +#, php-format +msgid "%s in %s : WARNING" +msgstr "" + +#: ../../enterprise/include/functions_reporting_pdf.php:997 +#: ../../include/functions_reporting_html.php:1989 +#: ../../include/lib/Dashboard/Widgets/agent_module.php:584 +#, php-format +msgid "%s in %s : UNKNOWN" +msgstr "" + +#: ../../enterprise/include/functions_reporting_pdf.php:1014 +#: ../../include/functions_reporting_html.php:2025 +#: ../../include/lib/Dashboard/Widgets/agent_module.php:600 +#, php-format +msgid "%s in %s : Not initialize" +msgstr "" + +#: ../../enterprise/include/functions_reporting_pdf.php:1031 +#: ../../include/functions_reporting_html.php:2008 +#: ../../include/lib/Dashboard/Widgets/agent_module.php:617 +#, php-format +msgid "%s in %s : ALERTS FIRED" +msgstr "" + +#: ../../enterprise/include/functions_reporting_pdf.php:1785 +#: ../../enterprise/include/functions_reporting_csv.php:2220 +#: ../../enterprise/include/functions_reporting_csv.php:2224 +#: ../../include/functions_reporting_html.php:138 +msgid "Generated" +msgstr "" + +#: ../../enterprise/include/functions_reporting_pdf.php:1789 +#: ../../include/functions_reporting_html.php:141 +msgid "Report date" +msgstr "" + +#: ../../enterprise/include/functions_reporting_pdf.php:1808 +#: ../../include/functions_reporting_html.php:150 +#: ../../operation/reporting/reporting_viewer.php:307 +msgid "Items period before" +msgstr "" + +#: ../../enterprise/include/functions_reporting_pdf.php:1838 +msgid "Contents" +msgstr "" + +#: ../../enterprise/include/functions_reporting_pdf.php:1984 +#: ../../enterprise/include/functions_reporting_csv.php:716 +#: ../../enterprise/include/functions_reporting_csv.php:952 +#: ../../enterprise/include/functions_reporting_csv.php:1325 +#: ../../godmode/agentes/planned_downtime.list.php:302 +#: ../../include/functions_reporting_html.php:3796 +#: ../../include/functions_snmp.php:413 ../../include/functions_snmp.php:421 +#: ../../include/rest-api/index.php:361 +#: ../../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:1988 +#: ../../include/functions_reporting_html.php:90 +#: ../../include/functions_reporting_html.php:5575 +#: ../../include/functions_treeview.php:319 +#: ../../operation/agentes/interface_view.functions.php:539 +msgid "Last data" +msgstr "" + +#: ../../enterprise/include/functions_visual_map.php:203 +#: ../../enterprise/include/functions_visual_map.php:268 +msgid "Crit:" +msgstr "" + +#: ../../enterprise/include/functions_visual_map.php:207 +#: ../../enterprise/include/functions_visual_map.php:272 +msgid "Warn:" +msgstr "" + +#: ../../enterprise/include/functions_visual_map.php:211 +#: ../../enterprise/include/functions_visual_map.php:276 +msgid "Ok:" +msgstr "" + +#: ../../enterprise/include/functions_visual_map.php:672 +msgid "None of the services was added" +msgstr "" + +#: ../../enterprise/include/functions_visual_map.php:674 +#, php-format +msgid "%d services couldn't be added" +msgstr "" + +#: ../../enterprise/include/functions_visual_map.php:680 +msgid "There was an error retrieving the visual map information" +msgstr "" + +#: ../../enterprise/include/functions_visual_map.php:683 +#: ../../enterprise/operation/services/services.list.php:104 +msgid "No services selected" +msgstr "" + +#: ../../enterprise/include/functions_backup.php:162 +msgid "Command mysqldump not found." +msgstr "" + +#: ../../enterprise/include/functions_backup.php:177 +msgid "The mysqldump execution goes wrong." +msgstr "" + +#: ../../enterprise/include/functions_backup.php:190 +msgid "" +"In order to make backups it is necessary to check if the configuration is " +"correct." +msgstr "" + +#: ../../enterprise/include/functions_backup.php:256 +msgid "No description" +msgstr "" + +#: ../../enterprise/include/functions_backup.php:408 +msgid "Restoring a backup" +msgstr "" + +#: ../../enterprise/include/functions_backup.php:410 +#, php-format +msgid "Restoring a %s database backup must be done manually." +msgstr "" + +#: ../../enterprise/include/functions_backup.php:412 +msgid "" +"It's a complex operation that needs human intervation to avoid system " +"failures and data loosing" +msgstr "" + +#: ../../enterprise/include/functions_backup.php:414 +msgid "To restore the selected backup, please follow these steps" +msgstr "" + +#: ../../enterprise/include/functions_backup.php:420 +msgid "Open a root shell in your system located at " +msgstr "" + +#: ../../enterprise/include/functions_backup.php:424 +msgid "Connect to MySQL database using the following command" +msgstr "" + +#: ../../enterprise/include/functions_backup.php:430 +msgid "Create a new database" +msgstr "" + +#: ../../enterprise/include/functions_backup.php:454 +msgid "Restore the backup" +msgstr "" + +#: ../../enterprise/include/functions_backup.php:469 +msgid "Modify console configuration to use this new database" +msgstr "" + +#: ../../enterprise/include/functions_backup.php:470 +msgid "Open configuration file" +msgstr "" + +#: ../../enterprise/include/functions_backup.php:473 +#: ../../enterprise/include/functions_backup.php:483 +msgid "Find" +msgstr "" + +#: ../../enterprise/include/functions_backup.php:475 +#: ../../enterprise/include/functions_backup.php:485 +msgid "and replace with" +msgstr "" + +#: ../../enterprise/include/functions_backup.php:480 +msgid "Modify servers configuration to use this new database" +msgstr "" + +#: ../../enterprise/include/functions_backup.php:481 +msgid "Find servers configuration file and replace the following lines" +msgstr "" + +#: ../../enterprise/include/functions_backup.php:490 +msgid "Restart the servers and login again into the console" +msgstr "" + +#: ../../enterprise/include/functions_snmp.php:65 +msgid "Trap status agent recovered" +msgstr "" + +#: ../../enterprise/include/functions_servicemap.php:80 +#: ../../enterprise/include/functions_servicemap.php:1203 +msgid "Failed to retrieve service elements: " +msgstr "" + +#: ../../enterprise/include/functions_setup.php:79 +#: ../../enterprise/include/functions_setup.php:125 +msgid "Log collector" +msgstr "" + +#: ../../enterprise/include/functions_setup.php:151 +msgid "Metaconsole link status" +msgstr "" + +#: ../../enterprise/include/functions_setup.php:183 +msgid "DB connection" +msgstr "" + +#: ../../enterprise/include/functions_setup.php:205 +msgid "This console is joining a metaconsole." +msgstr "" + +#: ../../enterprise/include/functions_setup.php:212 +msgid "There is no metaconsole defined." +msgstr "" + +#: ../../enterprise/include/rest-api/models/VisualConsole/Items/Service.php:236 +#: ../../godmode/reporting/visual_console_builder.elements.php:105 +#: ../../godmode/reporting/visual_console_builder.wizard.php:151 +#: ../../include/functions_visual_map_editor.php:250 +#: ../../include/rest-api/models/VisualConsole/Items/Icon.php:175 +#: ../../include/rest-api/models/VisualConsole/Items/StaticGraph.php:344 +#: ../../include/rest-api/models/VisualConsole/Items/Group.php:522 +#: ../../include/functions_filemanager.php:641 +msgid "Image" +msgstr "" + +#: ../../enterprise/include/functions_reporting_csv.php:416 +msgid "Event report agent" +msgstr "" + +#: ../../enterprise/include/functions_reporting_csv.php:418 +msgid "Event report group" +msgstr "" + +#: ../../enterprise/include/functions_reporting_csv.php:442 +msgid "Event report module" +msgstr "" + +#: ../../enterprise/include/functions_reporting_csv.php:473 +#: ../../enterprise/include/functions_reporting.php:1228 +#: ../../include/functions_reports.php:830 +#: ../../include/functions_reporting.php:8310 +#: ../../include/functions_reporting.php:8702 +msgid "Availability" +msgstr "" + +#: ../../enterprise/include/functions_reporting_csv.php:521 +#: ../../enterprise/include/functions_reporting_csv.php:1429 +msgid "% OK" +msgstr "" + +#: ../../enterprise/include/functions_reporting_csv.php:530 +#: ../../include/functions_reporting_html.php:613 +msgid "Checks Failed" +msgstr "" + +#: ../../enterprise/include/functions_reporting_csv.php:662 +msgid "Maximum value" +msgstr "" + +#: ../../enterprise/include/functions_reporting_csv.php:666 +#: ../../include/functions_reporting_html.php:4342 +msgid "Agent min value" +msgstr "" + +#: ../../enterprise/include/functions_reporting_csv.php:667 +msgid "Minimum value" +msgstr "" + +#: ../../enterprise/include/functions_reporting_csv.php:670 +msgid "Average value" +msgstr "" + +#: ../../enterprise/include/functions_reporting_csv.php:696 +#: ../../include/functions_reports.php:879 +msgid "Agents inventory" +msgstr "" + +#: ../../enterprise/include/functions_reporting_csv.php:718 +#: ../../enterprise/operation/agentes/tag_view.php:601 +#: ../../include/functions_treeview.php:668 +#: ../../operation/agentes/estado_agente.php:745 +#: ../../operation/agentes/estado_generalagente.php:362 +#: ../../operation/gis_maps/ajax.php:360 ../../operation/gis_maps/ajax.php:477 +msgid "Remote" +msgstr "" + +#: ../../enterprise/include/functions_reporting_csv.php:718 +msgid "Sec. group" +msgstr "" + +#: ../../enterprise/include/functions_reporting_csv.php:718 +msgid "Custom Field" +msgstr "" + +#: ../../enterprise/include/functions_reporting_csv.php:740 +#: ../../include/functions_reporting.php:2639 +msgid "Inventory Changes" +msgstr "" + +#: ../../enterprise/include/functions_reporting_csv.php:768 +#: ../../include/functions_reports.php:725 +msgid "Prediction date" +msgstr "" + +#: ../../enterprise/include/functions_reporting_csv.php:788 +#: ../../include/functions_reporting.php:6313 +msgid "Projection Graph" +msgstr "" + +#: ../../enterprise/include/functions_reporting_csv.php:817 +msgid "Serialized data " +msgstr "" + +#: ../../enterprise/include/functions_reporting_csv.php:856 +msgid "Last Value " +msgstr "" + +#: ../../enterprise/include/functions_reporting_csv.php:932 +#: ../../include/functions_reporting.php:1536 +#: ../../operation/snmpconsole/snmp_statistics.php:169 +#: ../../operation/snmpconsole/snmp_statistics.php:237 +#, php-format +msgid "Top %d" +msgstr "" + +#: ../../enterprise/include/functions_reporting_csv.php:969 +#: ../../include/functions_reporting.php:3719 +msgid "Group Report" +msgstr "" + +#: ../../enterprise/include/functions_reporting_csv.php:983 +#: ../../enterprise/operation/services/services.treeview_services.php:263 +#: ../../godmode/db/db_main.php:102 ../../godmode/groups/group_list.php:1042 +#: ../../mobile/operation/groups.php:147 +#: ../../include/functions_reporting_html.php:5655 +#: ../../include/class/Diagnostics.class.php:549 +#: ../../include/functions_reporting.php:11653 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:648 +#: ../../operation/tree.php:454 +msgid "Total agents" +msgstr "" + +#: ../../enterprise/include/functions_reporting_csv.php:983 +msgid "Uknown agents" +msgstr "" + +#: ../../enterprise/include/functions_reporting_csv.php:983 +#: ../../enterprise/operation/services/services.treeview_services.php:264 +#: ../../godmode/groups/group_list.php:1043 +#: ../../godmode/module_library/module_library_view.php:159 +#: ../../include/class/Diagnostics.class.php:553 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:649 +#: ../../operation/tree.php:455 +msgid "Total modules" +msgstr "" + +#: ../../enterprise/include/functions_reporting_csv.php:983 +#: ../../include/functions_reporting.php:11496 +msgid "Defined alerts" +msgstr "" + +#: ../../enterprise/include/functions_reporting_csv.php:983 +#: ../../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:2636 +#: ../../include/functions_reporting.php:11514 +#: ../../include/functions_reporting.php:11537 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:653 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:654 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:655 +#: ../../operation/tree.php:459 ../../operation/tree.php:460 +#: ../../operation/tree.php:461 +msgid "Fired alerts" +msgstr "" + +#: ../../enterprise/include/functions_reporting_csv.php:983 +msgid "Last 8 hours events" +msgstr "" + +#: ../../enterprise/include/functions_reporting_csv.php:986 +#: ../../include/functions_reports.php:777 +#: ../../include/functions_reports.php:783 +msgid "Group report" +msgstr "" + +#: ../../enterprise/include/functions_reporting_csv.php:1115 +msgid "Illegal query or any other error" +msgstr "" + +#: ../../enterprise/include/functions_reporting_csv.php:1137 +#: ../../include/functions_reports.php:661 +msgid "SQL vertical bar graph" +msgstr "" + +#: ../../enterprise/include/functions_reporting_csv.php:1139 +#: ../../include/functions_reports.php:669 +msgid "SQL horizontal bar graph" +msgstr "" + +#: ../../enterprise/include/functions_reporting_csv.php:1141 +#: ../../include/functions_reports.php:665 +msgid "SQL pie graph" +msgstr "" + +#: ../../enterprise/include/functions_reporting_csv.php:1170 +#: ../../enterprise/include/functions_reporting_csv.php:1188 +#: ../../enterprise/include/functions_reporting_csv.php:1190 +#: ../../include/functions_reports.php:754 +#: ../../include/functions_reporting.php:6619 +#: ../../include/functions_reporting.php:9980 +msgid "Summatory" +msgstr "" + +#: ../../enterprise/include/functions_reporting_csv.php:1220 +#: ../../enterprise/include/functions_reporting_csv.php:1222 +#: ../../enterprise/include/functions_reporting_csv.php:1228 +#: ../../enterprise/include/functions_reporting_csv.php:1230 +msgid "Minimum Value" +msgstr "" + +#: ../../enterprise/include/functions_reporting_csv.php:1235 +#: ../../include/functions_reporting.php:9984 +msgid "Minimum" +msgstr "" + +#: ../../enterprise/include/functions_reporting_csv.php:1275 +#: ../../enterprise/include/functions_reporting_csv.php:1277 +#: ../../enterprise/include/functions_reporting_csv.php:1283 +#: ../../enterprise/include/functions_reporting_csv.php:1285 +msgid "Maximun Value" +msgstr "" + +#: ../../enterprise/include/functions_reporting_csv.php:1311 +#: ../../enterprise/include/functions_reporting_csv.php:1325 +#: ../../enterprise/include/functions_reporting_csv.php:1329 +#: ../../enterprise/include/functions_reporting_csv.php:1340 +#: ../../include/functions_reporting_html.php:3799 +#: ../../include/functions_reports.php:762 +#: ../../include/functions_reporting.php:9440 +msgid "Increment" +msgstr "" + +#: ../../enterprise/include/functions_reporting_csv.php:1325 +#: ../../include/functions_reporting_html.php:3797 +msgid "From data" +msgstr "" + +#: ../../enterprise/include/functions_reporting_csv.php:1325 +#: ../../include/functions_reporting_html.php:3798 +msgid "To data" +msgstr "" + +#: ../../enterprise/include/functions_reporting_csv.php:1331 +#: ../../enterprise/include/functions_reporting_csv.php:1342 +#: ../../include/functions_reporting_html.php:3826 +msgid "Negative increase: " +msgstr "" + +#: ../../enterprise/include/functions_reporting_csv.php:1333 +#: ../../enterprise/include/functions_reporting_csv.php:1344 +#: ../../include/functions_reporting_html.php:3828 +msgid "Positive increase: " +msgstr "" + +#: ../../enterprise/include/functions_reporting_csv.php:1335 +#: ../../enterprise/include/functions_reporting_csv.php:1346 +#: ../../include/functions_reporting_html.php:3830 +msgid "Neutral increase: " +msgstr "" + +#: ../../enterprise/include/functions_reporting_csv.php:1360 +#: ../../enterprise/include/functions_reporting_csv.php:1379 +#: ../../enterprise/include/functions_reporting_csv.php:1381 +#: ../../enterprise/include/functions_reporting_csv.php:1387 +#: ../../enterprise/include/functions_reporting_csv.php:1389 +#: ../../include/functions_reporting.php:6624 +msgid "AVG. Value" +msgstr "" + +#: ../../enterprise/include/functions_reporting_csv.php:1394 +msgid "AVG" +msgstr "" + +#: ../../enterprise/include/functions_reporting_csv.php:1415 +#: ../../enterprise/include/functions_reporting_csv.php:1433 +#: ../../enterprise/include/functions_reporting_csv.php:1435 +#: ../../include/functions_reporting.php:5955 +msgid "Monitor Report" +msgstr "" + +#: ../../enterprise/include/functions_reporting_csv.php:1429 +msgid "% Wrong" +msgstr "" + +#: ../../enterprise/include/functions_reporting_csv.php:1444 +msgid "Simple Graph" +msgstr "" + +#: ../../enterprise/include/functions_reporting_csv.php:1504 +#: ../../enterprise/include/functions_reporting_csv.php:1550 +#: ../../enterprise/include/functions_reporting_csv.php:1623 +#: ../../enterprise/include/functions_reporting_csv.php:1742 +#: ../../enterprise/include/functions_reporting_csv.php:2050 +msgid "SLA Max" +msgstr "" + +#: ../../enterprise/include/functions_reporting_csv.php:1505 +#: ../../enterprise/include/functions_reporting_csv.php:1551 +#: ../../enterprise/include/functions_reporting_csv.php:1624 +#: ../../enterprise/include/functions_reporting_csv.php:1743 +#: ../../enterprise/include/functions_reporting_csv.php:2051 +msgid "SLA Min" +msgstr "" + +#: ../../enterprise/include/functions_reporting_csv.php:1506 +#: ../../enterprise/include/functions_reporting_csv.php:1552 +#: ../../enterprise/include/functions_reporting_csv.php:1625 +#: ../../enterprise/include/functions_reporting_csv.php:1744 +#: ../../enterprise/include/functions_reporting_csv.php:2052 +#: ../../enterprise/include/functions_reporting.php:1856 +#: ../../enterprise/include/functions_reporting.php:2895 +#: ../../enterprise/include/functions_reporting.php:3882 +#: ../../enterprise/include/functions_reporting.php:6138 +#: ../../include/functions_reporting_html.php:545 +msgid "SLA Limit" +msgstr "" + +#: ../../enterprise/include/functions_reporting_csv.php:1507 +#: ../../enterprise/include/functions_reporting_csv.php:1553 +msgid "Time Total " +msgstr "" + +#: ../../enterprise/include/functions_reporting_csv.php:1508 +#: ../../enterprise/include/functions_reporting_csv.php:1554 +msgid "Time OK " +msgstr "" + +#: ../../enterprise/include/functions_reporting_csv.php:1509 +#: ../../enterprise/include/functions_reporting_csv.php:1555 +msgid "Time Error " +msgstr "" + +#: ../../enterprise/include/functions_reporting_csv.php:1510 +#: ../../enterprise/include/functions_reporting_csv.php:1556 +msgid "Time Unknown " +msgstr "" + +#: ../../enterprise/include/functions_reporting_csv.php:1511 +#: ../../enterprise/include/functions_reporting_csv.php:1557 +msgid "Time Not Init " +msgstr "" + +#: ../../enterprise/include/functions_reporting_csv.php:1512 +#: ../../enterprise/include/functions_reporting_csv.php:1558 +msgid "Time Downtime " +msgstr "" + +#: ../../enterprise/include/functions_reporting_csv.php:1513 +#: ../../enterprise/include/functions_reporting_csv.php:1559 +msgid "Checks Total " +msgstr "" + +#: ../../enterprise/include/functions_reporting_csv.php:1514 +#: ../../enterprise/include/functions_reporting_csv.php:1560 +msgid "Checks OK " +msgstr "" + +#: ../../enterprise/include/functions_reporting_csv.php:1515 +#: ../../enterprise/include/functions_reporting_csv.php:1561 +msgid "Checks Error " +msgstr "" + +#: ../../enterprise/include/functions_reporting_csv.php:1516 +#: ../../enterprise/include/functions_reporting_csv.php:1562 +msgid "Checks Unknown " +msgstr "" + +#: ../../enterprise/include/functions_reporting_csv.php:1517 +#: ../../enterprise/include/functions_reporting_csv.php:1563 +msgid "Checks Not Init " +msgstr "" + +#: ../../enterprise/include/functions_reporting_csv.php:1518 +#: ../../enterprise/include/functions_reporting_csv.php:1564 +msgid "SLA " +msgstr "" + +#: ../../enterprise/include/functions_reporting_csv.php:1519 +#: ../../enterprise/include/functions_reporting_csv.php:1565 +msgid "Status " +msgstr "" + +#: ../../enterprise/include/functions_reporting_csv.php:1541 +#: ../../enterprise/include/functions_reporting_csv.php:1587 +#: ../../enterprise/include/functions_reporting_csv.php:1905 +#: ../../enterprise/include/functions_reporting.php:1876 +#: ../../enterprise/include/functions_reporting.php:1917 +#: ../../enterprise/include/functions_reporting.php:2920 +#: ../../enterprise/include/functions_reporting.php:2979 +#: ../../enterprise/include/functions_reporting.php:3908 +#: ../../enterprise/include/functions_reporting.php:3967 +#: ../../enterprise/include/functions_reporting.php:6162 +#: ../../include/functions_reporting_html.php:662 +#: ../../include/functions_config.php:1276 +#: ../../include/functions_config.php:3163 +msgid "Fail" +msgstr "" + +#: ../../enterprise/include/functions_reporting_csv.php:1611 +#: ../../enterprise/include/functions_reporting_csv.php:1727 +#: ../../enterprise/include/functions_reporting_csv.php:1967 +#: ../../enterprise/include/functions_reporting_csv.php:2035 +msgid "Subtitle" +msgstr "" + +#: ../../enterprise/include/functions_reporting_csv.php:1626 +#: ../../enterprise/include/functions_reporting_csv.php:1758 +#: ../../enterprise/include/functions_reporting_csv.php:2066 +msgid "Time Total Month" +msgstr "" + +#: ../../enterprise/include/functions_reporting_csv.php:1627 +#: ../../enterprise/include/functions_reporting_csv.php:1759 +#: ../../enterprise/include/functions_reporting_csv.php:2067 +msgid "Time OK Month" +msgstr "" + +#: ../../enterprise/include/functions_reporting_csv.php:1628 +#: ../../enterprise/include/functions_reporting_csv.php:1760 +#: ../../enterprise/include/functions_reporting_csv.php:2068 +msgid "Time Error Month" +msgstr "" + +#: ../../enterprise/include/functions_reporting_csv.php:1629 +#: ../../enterprise/include/functions_reporting_csv.php:1761 +#: ../../enterprise/include/functions_reporting_csv.php:2069 +msgid "Time Unknown Month" +msgstr "" + +#: ../../enterprise/include/functions_reporting_csv.php:1630 +#: ../../enterprise/include/functions_reporting_csv.php:1762 +#: ../../enterprise/include/functions_reporting_csv.php:2070 +msgid "Time Downtime Month" +msgstr "" + +#: ../../enterprise/include/functions_reporting_csv.php:1631 +#: ../../enterprise/include/functions_reporting_csv.php:1763 +#: ../../enterprise/include/functions_reporting_csv.php:2071 +msgid "Time Not Init Month" +msgstr "" + +#: ../../enterprise/include/functions_reporting_csv.php:1632 +#: ../../enterprise/include/functions_reporting_csv.php:1764 +#: ../../enterprise/include/functions_reporting_csv.php:2072 +msgid "Checks Total Month" +msgstr "" + +#: ../../enterprise/include/functions_reporting_csv.php:1633 +#: ../../enterprise/include/functions_reporting_csv.php:1765 +#: ../../enterprise/include/functions_reporting_csv.php:2073 +msgid "Checks OK Month" +msgstr "" + +#: ../../enterprise/include/functions_reporting_csv.php:1634 +#: ../../enterprise/include/functions_reporting_csv.php:1766 +#: ../../enterprise/include/functions_reporting_csv.php:2074 +msgid "Checks Error Month" +msgstr "" + +#: ../../enterprise/include/functions_reporting_csv.php:1635 +#: ../../enterprise/include/functions_reporting_csv.php:1767 +#: ../../enterprise/include/functions_reporting_csv.php:2075 +msgid "Checks Unknown Month" +msgstr "" + +#: ../../enterprise/include/functions_reporting_csv.php:1636 +#: ../../enterprise/include/functions_reporting_csv.php:1768 +#: ../../enterprise/include/functions_reporting_csv.php:2076 +msgid "Checks Not Init Month" +msgstr "" + +#: ../../enterprise/include/functions_reporting_csv.php:1637 +#: ../../enterprise/include/functions_reporting_csv.php:1769 +#: ../../enterprise/include/functions_reporting_csv.php:2077 +msgid "SLA Month" +msgstr "" + +#: ../../enterprise/include/functions_reporting_csv.php:1638 +#: ../../enterprise/include/functions_reporting_csv.php:1770 +#: ../../enterprise/include/functions_reporting_csv.php:2078 +msgid "Status Month" +msgstr "" + +#: ../../enterprise/include/functions_reporting_csv.php:1660 +#: ../../enterprise/include/functions_reporting.php:2024 +msgid "Day" +msgstr "" + +#: ../../enterprise/include/functions_reporting_csv.php:1661 +#: ../../enterprise/include/functions_reporting_csv.php:1816 +msgid "Time Total Day" +msgstr "" + +#: ../../enterprise/include/functions_reporting_csv.php:1662 +#: ../../enterprise/include/functions_reporting_csv.php:1817 +msgid "Time OK Day" +msgstr "" + +#: ../../enterprise/include/functions_reporting_csv.php:1663 +#: ../../enterprise/include/functions_reporting_csv.php:1818 +msgid "Time Error Day" +msgstr "" + +#: ../../enterprise/include/functions_reporting_csv.php:1664 +#: ../../enterprise/include/functions_reporting_csv.php:1819 +msgid "Time Unknown Day" +msgstr "" + +#: ../../enterprise/include/functions_reporting_csv.php:1665 +#: ../../enterprise/include/functions_reporting_csv.php:1820 +msgid "Time Not Init Day" +msgstr "" + +#: ../../enterprise/include/functions_reporting_csv.php:1666 +#: ../../enterprise/include/functions_reporting_csv.php:1821 +msgid "Time Downtime Day" +msgstr "" + +#: ../../enterprise/include/functions_reporting_csv.php:1667 +#: ../../enterprise/include/functions_reporting_csv.php:1822 +msgid "Time Out Day" +msgstr "" + +#: ../../enterprise/include/functions_reporting_csv.php:1668 +#: ../../enterprise/include/functions_reporting_csv.php:1823 +msgid "Checks Total Day" +msgstr "" + +#: ../../enterprise/include/functions_reporting_csv.php:1669 +#: ../../enterprise/include/functions_reporting_csv.php:1824 +msgid "Checks OK Day" +msgstr "" + +#: ../../enterprise/include/functions_reporting_csv.php:1670 +#: ../../enterprise/include/functions_reporting_csv.php:1825 +msgid "Checks Error Day" +msgstr "" + +#: ../../enterprise/include/functions_reporting_csv.php:1671 +#: ../../enterprise/include/functions_reporting_csv.php:1826 +msgid "Checks Unknown Day" +msgstr "" + +#: ../../enterprise/include/functions_reporting_csv.php:1672 +#: ../../enterprise/include/functions_reporting_csv.php:1827 +msgid "Checks Not Init Day" +msgstr "" + +#: ../../enterprise/include/functions_reporting_csv.php:1673 +#: ../../enterprise/include/functions_reporting_csv.php:1828 +msgid "SLA Day" +msgstr "" + +#: ../../enterprise/include/functions_reporting_csv.php:1674 +#: ../../enterprise/include/functions_reporting_csv.php:1829 +msgid "SLA Fixed Day" +msgstr "" + +#: ../../enterprise/include/functions_reporting_csv.php:1675 +#: ../../enterprise/include/functions_reporting_csv.php:1830 +msgid "Date From Day" +msgstr "" + +#: ../../enterprise/include/functions_reporting_csv.php:1676 +#: ../../enterprise/include/functions_reporting_csv.php:1831 +msgid "Date To Day" +msgstr "" + +#: ../../enterprise/include/functions_reporting_csv.php:1677 +#: ../../enterprise/include/functions_reporting_csv.php:1832 +msgid "Status Day" +msgstr "" + +#: ../../enterprise/include/functions_reporting_csv.php:1737 +#: ../../enterprise/include/functions_reporting_csv.php:2045 +#: ../../include/functions_html.php:2286 +msgid "Month" +msgstr "" + +#: ../../enterprise/include/functions_reporting_csv.php:1738 +#: ../../enterprise/include/functions_reporting_csv.php:2046 +msgid "Month Number" +msgstr "" + +#: ../../enterprise/include/functions_reporting_csv.php:1739 +#: ../../enterprise/include/functions_reporting_csv.php:2047 +msgid "Year" +msgstr "" + +#: ../../enterprise/include/functions_reporting_csv.php:1789 +msgid "Time Total week" +msgstr "" + +#: ../../enterprise/include/functions_reporting_csv.php:1790 +msgid "Time OK week" +msgstr "" + +#: ../../enterprise/include/functions_reporting_csv.php:1791 +msgid "Time Error week" +msgstr "" + +#: ../../enterprise/include/functions_reporting_csv.php:1792 +msgid "Time Unknown week" +msgstr "" + +#: ../../enterprise/include/functions_reporting_csv.php:1793 +msgid "Time Downtime week" +msgstr "" + +#: ../../enterprise/include/functions_reporting_csv.php:1794 +msgid "Time Not Init week" +msgstr "" + +#: ../../enterprise/include/functions_reporting_csv.php:1795 +msgid "Checks Total week" +msgstr "" + +#: ../../enterprise/include/functions_reporting_csv.php:1796 +msgid "Checks OK week" +msgstr "" + +#: ../../enterprise/include/functions_reporting_csv.php:1797 +msgid "Checks Error week" +msgstr "" + +#: ../../enterprise/include/functions_reporting_csv.php:1798 +msgid "Checks Unknown week" +msgstr "" + +#: ../../enterprise/include/functions_reporting_csv.php:1799 +msgid "Status week" +msgstr "" + +#: ../../enterprise/include/functions_reporting_csv.php:1815 +msgid "Day Week" +msgstr "" + +#: ../../enterprise/include/functions_reporting_csv.php:1867 +msgid "S.L.A. Services" +msgstr "" + +#: ../../enterprise/include/functions_reporting_csv.php:1885 +msgid "Lost sercice " +msgstr "" + +#: ../../enterprise/include/functions_reporting_csv.php:1886 +msgid "Service " +msgstr "" + +#: ../../enterprise/include/functions_reporting_csv.php:1887 +msgid "Limit " +msgstr "" + +#: ../../enterprise/include/functions_reporting_csv.php:1888 +msgid "SLA Compilance " +msgstr "" + +#: ../../enterprise/include/functions_reporting_csv.php:1889 +msgid "Unknown " +msgstr "" + +#: ../../enterprise/include/functions_reporting_csv.php:1890 +msgid "Ok " +msgstr "" + +#: ../../enterprise/include/functions_reporting_csv.php:1891 +msgid "Fail " +msgstr "" + +#: ../../enterprise/include/functions_reporting_csv.php:1892 +msgid "Result " +msgstr "" + +#: ../../enterprise/include/functions_reporting_csv.php:1917 +msgid "IPAM Networks" +msgstr "" + +#: ../../enterprise/include/functions_reporting_csv.php:1934 +#: ../../enterprise/include/functions_reporting.php:2317 +#: ../../godmode/events/custom_events.php:96 +#: ../../include/functions_events.php:244 +#: ../../operation/events/events.php:2432 +msgid "Agent ID" +msgstr "" + +#: ../../enterprise/include/functions_reporting_csv.php:1935 +#: ../../enterprise/include/functions_reporting.php:2318 +#: ../../enterprise/include/functions_ipam.php:2040 +#: ../../enterprise/tools/ipam/ipam_network.php:403 +#: ../../enterprise/tools/ipam/ipam_network.php:672 +#: ../../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:1023 +#: ../../mobile/operation/events.php:849 +#: ../../include/functions_reporting_html.php:5774 +#: ../../include/functions.php:3053 ../../include/ajax/events.php:1722 +#: ../../include/class/AuditLog.class.php:112 +#: ../../operation/users/user_edit.php:606 +#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:317 +#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:410 +#: ../../general/logon_ok.php:244 +msgid "Comments" +msgstr "" + +#: ../../enterprise/include/functions_reporting_csv.php:1936 +#: ../../enterprise/include/functions_reporting.php:2319 +#: ../../enterprise/include/functions_ipam.php:2038 +#: ../../enterprise/tools/ipam/ipam_network.php:414 +#: ../../godmode/wizards/DiscoveryTaskList.class.php:1391 +msgid "Alive" +msgstr "" + +#: ../../enterprise/include/functions_reporting_csv.php:1977 +msgid "SLA max" +msgstr "" + +#: ../../enterprise/include/functions_reporting_csv.php:1978 +msgid "SLA min" +msgstr "" + +#: ../../enterprise/include/functions_reporting_csv.php:1979 +msgid "SLA limit" +msgstr "" + +#: ../../enterprise/include/functions_reporting_csv.php:1980 +#: ../../enterprise/include/functions_reporting.php:4967 +#: ../../include/functions_reporting_html.php:579 +msgid "Time Total" +msgstr "" + +#: ../../enterprise/include/functions_reporting_csv.php:1981 +#: ../../enterprise/include/functions_reporting.php:4970 +#: ../../include/functions_reporting_html.php:581 +#: ../../include/functions_reporting_html.php:3938 +msgid "Time OK" +msgstr "" + +#: ../../enterprise/include/functions_reporting_csv.php:1982 +msgid "Time Error" +msgstr "" + +#: ../../enterprise/include/functions_reporting_csv.php:1983 +#: ../../enterprise/include/functions_reporting.php:4971 +#: ../../include/functions_reporting_html.php:582 +#: ../../include/functions_reporting_html.php:3950 +msgid "Time Unknown" +msgstr "" + +#: ../../enterprise/include/functions_reporting_csv.php:1984 +#: ../../enterprise/include/functions_reporting.php:4972 +#: ../../include/functions_reporting_html.php:583 +msgid "Time Not Init" +msgstr "" + +#: ../../enterprise/include/functions_reporting_csv.php:1985 +#: ../../include/functions_reporting_html.php:3962 +msgid "Time Downtime" +msgstr "" + +#: ../../enterprise/include/functions_reporting_csv.php:1986 +#: ../../enterprise/include/functions_reporting.php:5062 +#: ../../include/functions_reporting_html.php:612 +msgid "Checks Total" +msgstr "" + +#: ../../enterprise/include/functions_reporting_csv.php:1987 +#: ../../enterprise/include/functions_reporting.php:5065 +#: ../../include/functions_reporting_html.php:614 +#: ../../include/functions_reporting_html.php:4032 +msgid "Checks OK" +msgstr "" + +#: ../../enterprise/include/functions_reporting_csv.php:1988 +msgid "Checks Error" +msgstr "" + +#: ../../enterprise/include/functions_reporting_csv.php:1989 +#: ../../enterprise/include/functions_reporting.php:5066 +#: ../../include/functions_reporting_html.php:615 +msgid "Checks Unknown" +msgstr "" + +#: ../../enterprise/include/functions_reporting_csv.php:1990 +#: ../../enterprise/include/functions_reporting.php:5067 +msgid "Checks Not Init" +msgstr "" + +#: ../../enterprise/include/functions_reporting_csv.php:1991 +#: ../../enterprise/operation/services/services.service.php:128 +#: ../../enterprise/operation/services/services.list.php:508 +#: ../../include/functions_reports.php:698 +#: ../../include/functions_reports.php:703 +#: ../../include/functions_reports.php:707 +#: ../../include/functions_reports.php:711 +#: ../../include/functions_reports.php:717 +msgid "SLA" +msgstr "" + +#: ../../enterprise/include/functions_reporting_csv.php:1992 +msgid "SLA Fixed" +msgstr "" + +#: ../../enterprise/include/functions_reporting_csv.php:2097 +msgid "Time Total day" +msgstr "" + +#: ../../enterprise/include/functions_reporting_csv.php:2098 +msgid "Time OK day" +msgstr "" + +#: ../../enterprise/include/functions_reporting_csv.php:2099 +msgid "Time Error day" +msgstr "" + +#: ../../enterprise/include/functions_reporting_csv.php:2100 +msgid "Time Unknown day" +msgstr "" + +#: ../../enterprise/include/functions_reporting_csv.php:2101 +msgid "Time Downtime day" +msgstr "" + +#: ../../enterprise/include/functions_reporting_csv.php:2102 +msgid "Time Not Init day" +msgstr "" + +#: ../../enterprise/include/functions_reporting_csv.php:2103 +msgid "Checks Total day" +msgstr "" + +#: ../../enterprise/include/functions_reporting_csv.php:2104 +msgid "Checks OK day" +msgstr "" + +#: ../../enterprise/include/functions_reporting_csv.php:2105 +msgid "Checks Error day" +msgstr "" + +#: ../../enterprise/include/functions_reporting_csv.php:2106 +msgid "Checks Unknown day" +msgstr "" + +#: ../../enterprise/include/functions_reporting_csv.php:2107 +msgid "Status day" +msgstr "" + +#: ../../enterprise/include/functions_reporting_csv.php:2123 +#: ../../enterprise/include/functions_events.php:163 +msgid "Hours" +msgstr "" + +#: ../../enterprise/include/functions_reporting_csv.php:2124 +msgid "Time Total hours" +msgstr "" + +#: ../../enterprise/include/functions_reporting_csv.php:2125 +msgid "Time OK hours" +msgstr "" + +#: ../../enterprise/include/functions_reporting_csv.php:2126 +msgid "Time Error hours" +msgstr "" + +#: ../../enterprise/include/functions_reporting_csv.php:2127 +msgid "Time Unknown hours" +msgstr "" + +#: ../../enterprise/include/functions_reporting_csv.php:2128 +msgid "Time Not Init hours" +msgstr "" + +#: ../../enterprise/include/functions_reporting_csv.php:2129 +msgid "Time Downtime hours" +msgstr "" + +#: ../../enterprise/include/functions_reporting_csv.php:2130 +msgid "Time Out hours" +msgstr "" + +#: ../../enterprise/include/functions_reporting_csv.php:2131 +msgid "Checks Total hours" +msgstr "" + +#: ../../enterprise/include/functions_reporting_csv.php:2132 +msgid "Checks OK hours" +msgstr "" + +#: ../../enterprise/include/functions_reporting_csv.php:2133 +msgid "Checks Error hours" +msgstr "" + +#: ../../enterprise/include/functions_reporting_csv.php:2134 +msgid "Checks Unknown hours" +msgstr "" + +#: ../../enterprise/include/functions_reporting_csv.php:2135 +msgid "Checks Not Init hours" +msgstr "" + +#: ../../enterprise/include/functions_reporting_csv.php:2136 +msgid "SLA hours" +msgstr "" + +#: ../../enterprise/include/functions_reporting_csv.php:2137 +msgid "SLA Fixed hours" +msgstr "" + +#: ../../enterprise/include/functions_reporting_csv.php:2138 +msgid "Date From hours" +msgstr "" + +#: ../../enterprise/include/functions_reporting_csv.php:2139 +msgid "Date To hours" +msgstr "" + +#: ../../enterprise/include/functions_reporting_csv.php:2140 +msgid "Status hours" +msgstr "" + +#: ../../enterprise/include/functions_reporting_csv.php:2267 +msgid "Simple Baseline Graph" +msgstr "" + +#: ../../enterprise/include/functions_reporting_csv.php:2298 +#: ../../include/rest-api/models/VisualConsole/Items/ModuleGraph.php:567 +msgid "Custom Graph" +msgstr "" + +#: ../../enterprise/include/functions_reporting_csv.php:2443 +#: ../../include/functions_reporting.php:5663 +msgid "Alert Report Module" +msgstr "" + +#: ../../enterprise/include/functions_reporting_csv.php:2445 +#: ../../include/functions_reporting.php:5496 +msgid "Alert Report Agent" +msgstr "" + +#: ../../enterprise/include/functions_reporting_csv.php:2447 +#: ../../include/functions_reporting.php:5316 +msgid "Alert Report Group" +msgstr "" + +#: ../../enterprise/include/functions_reporting_csv.php:2465 +msgid "Actions Triggered" +msgstr "" + +#: ../../enterprise/include/functions_reporting_csv.php:2465 +msgid "Template Triggered" +msgstr "" + +#: ../../enterprise/include/functions_reporting_csv.php:2502 +msgid "Event Report Log" +msgstr "" + +#: ../../enterprise/include/functions_reporting_csv.php:2531 +#: ../../include/functions_reports.php:932 +#: ../../include/functions_reports.php:933 +#: ../../include/functions_reporting.php:4573 +msgid "Permissions report" +msgstr "" + +#: ../../enterprise/include/functions_reporting_csv.php:2549 +#: ../../enterprise/include/functions_reporting_csv.php:2559 +#: ../../godmode/users/user_list.php:479 +#: ../../godmode/users/configure_user.php:849 +#: ../../godmode/users/configure_user.php:865 +#: ../../include/functions_reporting_html.php:5064 +#: ../../include/functions_reporting_html.php:6236 +#: ../../include/functions_reporting_html.php:6259 +#: ../../operation/search_users.php:43 ../../operation/users/user_edit.php:258 +#: ../../operation/snmpconsole/snmp_view.php:876 +msgid "User ID" +msgstr "" + +#: ../../enterprise/include/functions_reporting_csv.php:2549 +#: ../../enterprise/include/functions_reporting_csv.php:2559 +#: ../../include/functions_reporting_html.php:6237 +#: ../../include/functions_reporting_html.php:6260 +msgid "Full name" +msgstr "" + +#: ../../enterprise/include/functions_reporting_csv.php:2549 +#: ../../enterprise/include/functions_reporting_csv.php:2559 +#: ../../include/functions_reporting_html.php:6238 +#: ../../include/functions_reporting_html.php:6261 +msgid "Permissions" +msgstr "" + +#: ../../enterprise/include/functions_reporting_csv.php:2605 +msgid "Netflow data chart" +msgstr "" + +#: ../../enterprise/include/functions_reporting_csv.php:2607 +#: ../../include/functions_reports.php:907 +msgid "Netflow area chart" +msgstr "" + +#: ../../enterprise/include/functions_reporting_csv.php:2660 +msgid "Netflow summary" +msgstr "" + +#: ../../enterprise/include/functions_reporting_csv.php:2680 +#: ../../include/functions_netflow.php:416 +msgid "Total flows" +msgstr "" + +#: ../../enterprise/include/functions_reporting_csv.php:2680 +#: ../../include/functions_netflow.php:421 +msgid "Total bytes" +msgstr "" + +#: ../../enterprise/include/functions_reporting_csv.php:2680 +#: ../../include/functions_netflow.php:426 +msgid "Total packets" +msgstr "" + +#: ../../enterprise/include/functions_reporting_csv.php:2680 +msgid "Avg. bits/sec" +msgstr "" + +#: ../../enterprise/include/functions_reporting_csv.php:2680 +msgid "Avg. packets/sec" +msgstr "" + +#: ../../enterprise/include/functions_reporting_csv.php:2680 +msgid "Avg. bytes/packet" +msgstr "" + +#: ../../enterprise/include/functions_reporting_csv.php:2681 +msgid "Dst. IP" +msgstr "" + +#: ../../enterprise/include/functions_reporting_csv.php:2707 +msgid "Agent/module status" +msgstr "" + +#: ../../enterprise/include/functions_reporting_csv.php:2742 +#: ../../include/functions_reporting_html.php:2145 +msgid "Last time" +msgstr "" + +#: ../../enterprise/include/functions_reporting_csv.php:2786 +#: ../../include/functions_reports.php:919 +#: ../../include/functions_reporting.php:6110 +msgid "Netflow top-N connections" +msgstr "" + +#: ../../enterprise/include/functions_reporting_csv.php:2808 +#: ../../mobile/operation/tactical.php:351 +#: ../../include/functions_reporting_html.php:5773 +#: ../../include/functions.php:3053 ../../include/functions_netflow.php:347 +#: ../../include/class/AuditLog.class.php:111 +#: ../../operation/snmpconsole/snmp_statistics.php:182 +#: ../../general/logon_ok.php:243 +msgid "Source IP" +msgstr "" + +#: ../../enterprise/include/functions_reporting_csv.php:2808 +#: ../../include/functions_netflow.php:348 +msgid "Destination IP" +msgstr "" + +#: ../../enterprise/include/functions_reporting_csv.php:2808 +#: ../../include/functions_config.php:979 +#: ../../include/functions_config.php:3075 +#: ../../include/functions_netflow.php:349 +#: ../../operation/network/network_report.php:206 +#: ../../operation/network/network_report.php:236 +msgid "Bytes" +msgstr "" + +#: ../../enterprise/include/functions_reporting_csv.php:2808 +#: ../../include/functions_netflow.php:350 +msgid "% Traffic" +msgstr "" + +#: ../../enterprise/include/functions_reporting_csv.php:2808 +msgid "Average Throughput (bits/sec)" +msgstr "" + +#: ../../enterprise/include/functions_aws.php:381 +msgid "$" +msgstr "" + +#: ../../enterprise/include/functions_aws.php:491 +msgid "Current deployments" +msgstr "" + +#: ../../enterprise/include/functions_aws.php:525 +msgid "Cost analysis" +msgstr "" + +#: ../../enterprise/include/functions_aws.php:528 +msgid "Current cost estimation" +msgstr "" + +#: ../../enterprise/include/functions_aws.php:530 +msgid "Previous period cost" +msgstr "" + +#: ../../enterprise/include/functions_aws.php:589 +msgid "Reservation status" +msgstr "" + +#: ../../enterprise/include/functions_HA_cluster.php:46 +#: ../../enterprise/include/class/DeploymentCenter.class.php:1787 +msgid "Deploy" +msgstr "" + +#: ../../enterprise/include/functions_HA_cluster.php:49 +msgid "Recover" +msgstr "" + +#: ../../enterprise/include/functions_HA_cluster.php:52 +msgid "Promote" +msgstr "" + +#: ../../enterprise/include/functions_HA_cluster.php:55 +msgid "Demote" +msgstr "" + +#: ../../enterprise/include/functions_HA_cluster.php:64 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1944 +msgid "Cleanup" +msgstr "" + +#: ../../enterprise/include/functions_HA_cluster.php:67 +msgid "Resync" +msgstr "" + +#: ../../enterprise/include/functions_HA_cluster.php:261 +msgid "Public Key Authentication Failed" +msgstr "" + +#: ../../enterprise/include/functions_HA_cluster.php:268 +msgid "Connection failed" +msgstr "" + +#: ../../enterprise/include/functions_HA_cluster.php:491 +msgid "Register" +msgstr "" + +#: ../../enterprise/include/functions_HA_cluster.php:493 +msgid "Register new node" +msgstr "" + +#: ../../enterprise/include/functions_HA_cluster.php:496 +#: ../../include/class/NetworkMap.class.php:2957 +msgid "Update node" +msgstr "" + +#: ../../enterprise/include/class/Azure.cloud.php:148 +#: ../../enterprise/include/class/Aws.cloud.php:113 +#: ../../enterprise/include/class/Google.cloud.php:142 +msgid "Cloud message" +msgstr "" + +#: ../../enterprise/include/class/Azure.cloud.php:153 +#: ../../include/class/CredentialStore.class.php:947 +msgid "Azure" +msgstr "" + +#: ../../enterprise/include/class/Azure.cloud.php:248 +#: ../../enterprise/include/class/Google.cloud.php:242 +msgid "Task details" +msgstr "" + +#: ../../enterprise/include/class/Azure.cloud.php:249 +#: ../../enterprise/include/class/Google.cloud.php:243 +msgid "Instance explorer" +msgstr "" + +#: ../../enterprise/include/class/Azure.cloud.php:250 +#: ../../enterprise/include/class/Google.cloud.php:244 +msgid "Metrics" +msgstr "" + +#: ../../enterprise/include/class/Azure.cloud.php:307 +msgid "Microsoft Compute" +msgstr "" + +#: ../../enterprise/include/class/Azure.cloud.php:355 +#: ../../enterprise/include/class/Aws.cloud.php:1492 +#: ../../enterprise/include/class/Google.cloud.php:349 +#, php-format +msgid "%s not found or not executable" +msgstr "" + +#: ../../enterprise/include/class/Azure.cloud.php:468 +#: ../../enterprise/include/class/Google.cloud.php:470 +msgid "Group not found." +msgstr "" + +#: ../../enterprise/include/class/Azure.cloud.php:598 +#: ../../enterprise/include/class/Azure.cloud.php:646 +#: ../../enterprise/include/class/Google.cloud.php:597 +#: ../../enterprise/include/class/Google.cloud.php:643 +msgid "Unauthorized access" +msgstr "" + +#: ../../enterprise/include/class/Azure.cloud.php:771 +#: ../../enterprise/include/class/VMware.app.php:583 +#: ../../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:1201 +#: ../../enterprise/include/class/MySQL.app.php:442 +#: ../../enterprise/include/class/Google.cloud.php:759 +#: ../../enterprise/include/class/Oracle.app.php:444 +#: ../../enterprise/include/class/MicrosoftSQLServer.app.php:439 +#: ../../godmode/wizards/HostDevices.class.php:838 +#: ../../godmode/wizards/DiscoveryTaskList.class.php:588 +#: ../../include/class/CustomNetScan.class.php:446 +msgid "Task name" +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:540 +msgid "Tentacle options" +msgstr "" + +#: ../../enterprise/include/class/Azure.cloud.php:872 +#: ../../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 "" + +#: ../../enterprise/include/class/Azure.cloud.php:909 +#: ../../enterprise/include/class/Google.cloud.php:865 +msgid "Select target virtual machines" +msgstr "" + +#: ../../enterprise/include/class/Azure.cloud.php:928 +#: ../../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:688 +msgid "Cpu performance summary" +msgstr "" + +#: ../../enterprise/include/class/Azure.cloud.php:949 +#: ../../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: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:718 +#: ../../enterprise/include/class/Google.cloud.php:927 +msgid "Network performance summary" +msgstr "" + +#: ../../enterprise/include/class/Azure.cloud.php:990 +#: ../../enterprise/include/class/VMware.app.php:1014 +#: ../../enterprise/include/class/DB2.app.php:868 +#: ../../enterprise/include/class/Aws.S3.php:658 +#: ../../enterprise/include/class/SAP.app.php:924 +#: ../../enterprise/include/class/Aws.cloud.php:1590 +#: ../../enterprise/include/class/MySQL.app.php:944 +#: ../../enterprise/include/class/Google.cloud.php:952 +#: ../../enterprise/include/class/Oracle.app.php:977 +#: ../../enterprise/include/class/MicrosoftSQLServer.app.php:821 +#: ../../godmode/wizards/HostDevices.class.php:1589 +#: ../../include/class/CustomNetScan.class.php:758 +msgid "Task configured." +msgstr "" + +#: ../../enterprise/include/class/Azure.cloud.php:994 +#: ../../enterprise/include/class/VMware.app.php:1018 +#: ../../enterprise/include/class/DB2.app.php:872 +#: ../../enterprise/include/class/SAP.app.php:928 +#: ../../enterprise/include/class/MySQL.app.php:948 +#: ../../enterprise/include/class/Google.cloud.php:956 +#: ../../enterprise/include/class/Oracle.app.php:981 +#: ../../enterprise/include/class/MicrosoftSQLServer.app.php:825 +#: ../../godmode/wizards/HostDevices.class.php:1593 +#: ../../include/class/CustomNetScan.class.php:762 +msgid "Wizard failed. Cannot configure task." +msgstr "" + +#: ../../enterprise/include/class/VMware.app.php:230 +msgid "" +"This VMware configuration has been already defined. Please edit it or create " +"a new one." +msgstr "" + +#: ../../enterprise/include/class/VMware.app.php:264 +#: ../../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:917 +#: ../../enterprise/include/class/MySQL.app.php:206 +#: ../../enterprise/include/class/Oracle.app.php:204 +#: ../../enterprise/include/class/MicrosoftSQLServer.app.php:203 +#: ../../godmode/wizards/HostDevices.class.php:422 +#: ../../include/class/CustomNetScan.class.php:168 +msgid "You must provide a task name." +msgstr "" + +#: ../../enterprise/include/class/VMware.app.php:269 +#: ../../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:922 +#: ../../enterprise/include/class/MySQL.app.php:211 +#: ../../enterprise/include/class/Oracle.app.php:209 +#: ../../enterprise/include/class/MicrosoftSQLServer.app.php:208 +#: ../../godmode/wizards/HostDevices.class.php:427 +#: ../../include/class/CustomNetScan.class.php:173 +msgid "You must select a Discovery Server." +msgstr "" + +#: ../../enterprise/include/class/VMware.app.php:274 +msgid "You must provide a valid V-Center IP or FQDN." +msgstr "" + +#: ../../enterprise/include/class/VMware.app.php:279 +#: ../../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:927 +#: ../../enterprise/include/class/MySQL.app.php:226 +#: ../../enterprise/include/class/Oracle.app.php:219 +#: ../../enterprise/include/class/MicrosoftSQLServer.app.php:218 +#: ../../godmode/wizards/HostDevices.class.php:438 +#: ../../include/class/CustomNetScan.class.php:178 +msgid "You must select a valid group." +msgstr "" + +#: ../../enterprise/include/class/VMware.app.php:291 +msgid "Discovery.Application.VMware" +msgstr "" + +#: ../../enterprise/include/class/VMware.app.php:310 +msgid "Please select a valid group" +msgstr "" + +#: ../../enterprise/include/class/VMware.app.php:369 +msgid "Failed to find discovery VMware task." +msgstr "" + +#: ../../enterprise/include/class/VMware.app.php:384 +msgid "Threads must be equal or greater than 1." +msgstr "" + +#: ../../enterprise/include/class/VMware.app.php:486 +#: ../../enterprise/include/class/DB2.app.php:386 +#: ../../enterprise/include/class/SAP.app.php:336 +#: ../../enterprise/include/class/MySQL.app.php:403 +#: ../../enterprise/include/class/Oracle.app.php:393 +#: ../../enterprise/include/class/MicrosoftSQLServer.app.php:388 +msgid "Application" +msgstr "" + +#: ../../enterprise/include/class/VMware.app.php:536 +#: ../../enterprise/include/class/DB2.app.php:569 +#: ../../enterprise/include/class/SAP.app.php:444 +#: ../../enterprise/include/class/MySQL.app.php:591 +#: ../../enterprise/include/class/Oracle.app.php:576 +#: ../../enterprise/include/class/MicrosoftSQLServer.app.php:570 +#: ../../enterprise/include/lib/ClusterViewer/ClusterWizard.php:1202 +#: ../../godmode/setup/setup_integria.php:636 +#: ../../godmode/wizards/HostDevices.class.php:772 +#: ../../include/class/CustomNetScan.class.php:553 +msgid "Update and continue" +msgstr "" + +#: ../../enterprise/include/class/VMware.app.php:547 +#: ../../enterprise/include/class/Aws.S3.php:554 +#: ../../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." +msgstr "" + +#: ../../enterprise/include/class/VMware.app.php:594 +#: ../../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:1213 +#: ../../enterprise/include/class/MySQL.app.php:454 +#: ../../enterprise/include/class/Oracle.app.php:456 +#: ../../enterprise/include/class/MicrosoftSQLServer.app.php:451 +#: ../../godmode/wizards/HostDevices.class.php:849 +#: ../../include/class/CustomNetScan.class.php:480 +msgid "" +"You must select a Discovery Server to run the Task, otherwise the Recon Task " +"will never run" +msgstr "" + +#: ../../enterprise/include/class/VMware.app.php:656 +msgid "Datacenter user" +msgstr "" + +#: ../../enterprise/include/class/VMware.app.php:668 +#: ../../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:1319 +#: ../../enterprise/include/class/MySQL.app.php:559 +#: ../../enterprise/include/class/Oracle.app.php:544 +#: ../../enterprise/include/class/MicrosoftSQLServer.app.php:538 +#: ../../godmode/wizards/HostDevices.class.php:799 +#: ../../include/class/CustomNetScan.class.php:521 +msgid "Manual interval means that it will be executed only On-demand" +msgstr "" + +#: ../../enterprise/include/class/VMware.app.php:675 +#: ../../enterprise/include/class/VMware.app.php:887 +#: ../../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:1326 +#: ../../enterprise/include/class/MySQL.app.php:566 +#: ../../enterprise/include/class/Oracle.app.php:551 +#: ../../enterprise/include/class/MicrosoftSQLServer.app.php:545 +#: ../../godmode/wizards/HostDevices.class.php:806 +#: ../../include/functions_reporting_html.php:2374 +#: ../../include/class/CustomNetScan.class.php:528 +msgid "Defined" +msgstr "" + +#: ../../enterprise/include/class/VMware.app.php:693 +#: ../../enterprise/include/class/DB2.app.php:561 +#: ../../enterprise/include/class/Aws.S3.php:531 +#: ../../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:1343 +#: ../../enterprise/include/class/MySQL.app.php:583 +#: ../../enterprise/include/class/Oracle.app.php:568 +#: ../../enterprise/include/class/MicrosoftSQLServer.app.php:562 +msgid "The minimum recomended interval is 5 minutes" +msgstr "" + +#: ../../enterprise/include/class/VMware.app.php:707 +msgid "V-Center IP" +msgstr "" + +#: ../../enterprise/include/class/VMware.app.php:718 +msgid "Datacenter name" +msgstr "" + +#: ../../enterprise/include/class/VMware.app.php:719 +msgid "" +"This name must match with the name wich appears when you log in you VMware " +"manager" +msgstr "" + +#: ../../enterprise/include/class/VMware.app.php:749 +msgid "Encrypt passwords" +msgstr "" + +#: ../../enterprise/include/class/VMware.app.php:763 +#: ../../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:1234 +#: ../../enterprise/include/class/MySQL.app.php:475 +#: ../../enterprise/include/class/Oracle.app.php:477 +#: ../../enterprise/include/class/MicrosoftSQLServer.app.php:472 +msgid "This group will be used also to classify discovered agents" +msgstr "" + +#: ../../enterprise/include/class/VMware.app.php:870 +msgid "Max threads" +msgstr "" + +#: ../../enterprise/include/class/VMware.app.php:879 +msgid "Re-scan interval" +msgstr "" + +#: ../../enterprise/include/class/VMware.app.php:880 +msgid "Enables re-scan entities process every interval defined." +msgstr "" + +#: ../../enterprise/include/class/VMware.app.php:913 +msgid "Retry send" +msgstr "" + +#: ../../enterprise/include/class/VMware.app.php:923 +msgid "Event mode" +msgstr "" + +#: ../../enterprise/include/class/VMware.app.php:923 +msgid "Only for VCenter." +msgstr "" + +#: ../../enterprise/include/class/VMware.app.php:933 +msgid "Virtual network monitoring" +msgstr "" + +#: ../../enterprise/include/class/VMware.app.php:964 +msgid "Extra settings" +msgstr "" + +#: ../../enterprise/include/class/VMware.app.php:965 +msgid "This RAW block will be directly added to config file." +msgstr "" + +#: ../../enterprise/include/class/VMware.app.php:1259 +msgid "Include datastores" +msgstr "" + +#: ../../enterprise/include/class/VMware.app.php:1269 +msgid "Include datacenters" +msgstr "" + +#: ../../enterprise/include/class/VMware.app.php:1279 +msgid "Include esxs" +msgstr "" + +#: ../../enterprise/include/class/VMware.app.php:1289 +msgid "Include vms" +msgstr "" + +#: ../../enterprise/include/class/DeploymentCenter.class.php:235 +msgid "IP address is required" +msgstr "" + +#: ../../enterprise/include/class/DeploymentCenter.class.php:245 +#: ../../enterprise/include/class/AgentRepository.class.php:439 +msgid "Target OS is required" +msgstr "" + +#: ../../enterprise/include/class/DeploymentCenter.class.php:247 +#: ../../enterprise/include/class/AgentRepository.class.php:441 +msgid "Target architecture is required" +msgstr "" + +#: ../../enterprise/include/class/DeploymentCenter.class.php:249 +msgid "Credentials to use are required" +msgstr "" + +#: ../../enterprise/include/class/DeploymentCenter.class.php:251 +msgid "Desired agent version is required" +msgstr "" + +#: ../../enterprise/include/class/DeploymentCenter.class.php:262 +msgid "Target already defined." +msgstr "" + +#: ../../enterprise/include/class/DeploymentCenter.class.php:288 +msgid "Target successfully added" +msgstr "" + +#: ../../enterprise/include/class/DeploymentCenter.class.php:309 +msgid "Target successfully updated" +msgstr "" + +#: ../../enterprise/include/class/DeploymentCenter.class.php:335 +#: ../../enterprise/include/class/AgentRepository.class.php:601 +msgid "Target successfully deleted" +msgstr "" + +#: ../../enterprise/include/class/DeploymentCenter.class.php:352 +msgid "You should specify a Discovery server" +msgstr "" + +#: ../../enterprise/include/class/DeploymentCenter.class.php:354 +msgid "You must select some targets to deploy" +msgstr "" + +#: ../../enterprise/include/class/DeploymentCenter.class.php:384 +#: ../../enterprise/include/class/DeploymentCenter.class.php:1095 +msgid "Failed to schedule" +msgstr "" + +#: ../../enterprise/include/class/DeploymentCenter.class.php:399 +msgid "Deploy scheduled" +msgstr "" + +#: ../../enterprise/include/class/DeploymentCenter.class.php:425 +msgid "CSV file is needed" +msgstr "" + +#: ../../enterprise/include/class/DeploymentCenter.class.php:480 +#, php-format +msgid "" +"Credential identifier %s does not exist, please, add it to your repository " +"%s " +msgstr "" + +#: ../../enterprise/include/class/DeploymentCenter.class.php:488 +#, php-format +msgid "OS %s does not math any existing, please, add it to OS list %s" +msgstr "" + +#: ../../enterprise/include/class/DeploymentCenter.class.php:496 +#, php-format +msgid "" +"Sofware agent version with id %s does not exist, please, add it to your " +"repository %s " +msgstr "" + +#: ../../enterprise/include/class/DeploymentCenter.class.php:518 +msgid "No target could be added. " +msgstr "" + +#: ../../enterprise/include/class/DeploymentCenter.class.php:594 +#: ../../enterprise/include/class/CSVImportAgents.class.php:98 +#: ../../godmode/wizards/HostDevices.class.php:196 +#: ../../include/class/ManageNetScanScripts.class.php:104 +#: ../../include/class/CustomNetScan.class.php:352 +msgid "Host & Devices" +msgstr "" + +#: ../../enterprise/include/class/DeploymentCenter.class.php:621 +msgid "Deployment center" +msgstr "" + +#: ../../enterprise/include/class/DeploymentCenter.class.php:637 +msgid "There are no targets defined yet, please add some." +msgstr "" + +#: ../../enterprise/include/class/DeploymentCenter.class.php:644 +#, php-format +msgid "Please set %s to make software available for targets." +msgstr "" + +#: ../../enterprise/include/class/DeploymentCenter.class.php:656 +#, php-format +msgid "" +"There are no software agents in your repository yet, please add some %s." +msgstr "" + +#: ../../enterprise/include/class/DeploymentCenter.class.php:675 +#: ../../enterprise/include/class/DeploymentCenter.class.php:1751 +msgid "Scan for targets" +msgstr "" + +#: ../../enterprise/include/class/DeploymentCenter.class.php:684 +msgid "Add target" +msgstr "" + +#: ../../enterprise/include/class/DeploymentCenter.class.php:693 +msgid "Load targets" +msgstr "" + +#: ../../enterprise/include/class/DeploymentCenter.class.php:757 +#: ../../enterprise/include/class/DeploymentCenter.class.php:825 +#: ../../enterprise/include/class/DeploymentCenter.class.php:1301 +#: ../../enterprise/include/class/DeploymentCenter.class.php:1397 +#: ../../enterprise/include/class/AgentRepository.class.php:364 +#: ../../enterprise/include/class/AgentRepository.class.php:641 +#: ../../enterprise/include/class/AgentRepository.class.php:694 +msgid "Architecture" +msgstr "" + +#: ../../enterprise/include/class/DeploymentCenter.class.php:758 +msgid "Key identifier" +msgstr "" + +#: ../../enterprise/include/class/DeploymentCenter.class.php:759 +#: ../../enterprise/include/class/DeploymentCenter.class.php:1222 +#: ../../enterprise/include/class/DeploymentCenter.class.php:1359 +msgid "Target server IP" +msgstr "" + +#: ../../enterprise/include/class/DeploymentCenter.class.php:760 +msgid "Agent version installed" +msgstr "" + +#: ../../enterprise/include/class/DeploymentCenter.class.php:761 +msgid "Agent version desired" +msgstr "" + +#: ../../enterprise/include/class/DeploymentCenter.class.php:762 +msgid "Installation date" +msgstr "" + +#: ../../enterprise/include/class/DeploymentCenter.class.php:763 +msgid "Last error" +msgstr "" + +#: ../../enterprise/include/class/DeploymentCenter.class.php:811 +msgid "Server IP" +msgstr "" + +#: ../../enterprise/include/class/DeploymentCenter.class.php:836 +msgid "State" +msgstr "" + +#: ../../enterprise/include/class/DeploymentCenter.class.php:868 +msgid "Deploy agent to targets" +msgstr "" + +#: ../../enterprise/include/class/DeploymentCenter.class.php:956 +#: ../../enterprise/include/class/AgentRepository.class.php:272 +msgid "Deploying" +msgstr "" + +#: ../../enterprise/include/class/DeploymentCenter.class.php:1042 +msgid "You must define a network." +msgstr "" + +#: ../../enterprise/include/class/DeploymentCenter.class.php:1044 +msgid "You must select at least one credential to test." +msgstr "" + +#: ../../enterprise/include/class/DeploymentCenter.class.php:1046 +msgid "You must select a Discovery server." +msgstr "" + +#: ../../enterprise/include/class/DeploymentCenter.class.php:1048 +msgid "Please select a desired software agent version." +msgstr "" + +#: ../../enterprise/include/class/DeploymentCenter.class.php:1050 +msgid "Please specify a server IP." +msgstr "" + +#: ../../enterprise/include/class/DeploymentCenter.class.php:1070 +#: ../../enterprise/include/class/DeploymentCenter.class.php:1103 +msgid "Discovery task list" +msgstr "" + +#: ../../enterprise/include/class/DeploymentCenter.class.php:1069 +#, php-format +msgid "This network is already being scanned. See progress at %s" +msgstr "" + +#: ../../enterprise/include/class/DeploymentCenter.class.php:1102 +#, php-format +msgid "Network scheduled to be scanned. You can see progress at %s" +msgstr "" + +#: ../../enterprise/include/class/DeploymentCenter.class.php:1135 +#: ../../enterprise/include/class/DeploymentCenter.class.php:1138 +#: ../../enterprise/include/class/DeploymentCenter.class.php:1265 +#: ../../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:1434 +#: ../../godmode/wizards/HostDevices.class.php:1437 +msgid "No credentials available" +msgstr "" + +#: ../../enterprise/include/class/DeploymentCenter.class.php:1136 +#: ../../enterprise/include/class/DeploymentCenter.class.php:1266 +#: ../../enterprise/include/class/SAP.app.php:605 +#: ../../godmode/agentes/module_manager_editor_network.php:474 +#: ../../godmode/wizards/HostDevices.class.php:1435 +msgid "Manage credentials" +msgstr "" + +#: ../../enterprise/include/class/DeploymentCenter.class.php:1150 +msgid "Network/mask" +msgstr "" + +#: ../../enterprise/include/class/DeploymentCenter.class.php:1159 +msgid "Scan from" +msgstr "" + +#: ../../enterprise/include/class/DeploymentCenter.class.php:1178 +#: ../../godmode/wizards/HostDevices.class.php:1447 +msgid "Credentials to try with" +msgstr "" + +#: ../../enterprise/include/class/DeploymentCenter.class.php:1212 +#: ../../enterprise/include/class/DeploymentCenter.class.php:1349 +msgid "Desired agent version" +msgstr "" + +#: ../../enterprise/include/class/DeploymentCenter.class.php:1396 +msgid "CSV format" +msgstr "" + +#: ../../enterprise/include/class/DeploymentCenter.class.php:1397 +msgid "Target agent version" +msgstr "" + +#: ../../enterprise/include/class/DeploymentCenter.class.php:1397 +msgid "Target server ip" +msgstr "" + +#: ../../enterprise/include/class/DeploymentCenter.class.php:1416 +msgid "CSV file" +msgstr "" + +#: ../../enterprise/include/class/DeploymentCenter.class.php:1476 +msgid "Select desired targets to be deployed" +msgstr "" + +#: ../../enterprise/include/class/DeploymentCenter.class.php:1479 +msgid "Deploy from" +msgstr "" + +#: ../../enterprise/include/class/DeploymentCenter.class.php:1494 +msgid "Available targets" +msgstr "" + +#: ../../enterprise/include/class/DeploymentCenter.class.php:1670 +msgid "Add new target" +msgstr "" + +#: ../../enterprise/include/class/DeploymentCenter.class.php:1673 +msgid "Update target" +msgstr "" + +#: ../../enterprise/include/class/DeploymentCenter.class.php:1719 +msgid "Import targets from CSV" +msgstr "" + +#: ../../enterprise/include/class/DeploymentCenter.class.php:1752 +#: ../../godmode/modules/manage_network_components_form_wizard.php:637 +msgid "Scan" +msgstr "" + +#: ../../enterprise/include/class/DeploymentCenter.class.php:1786 +msgid "Select targets" +msgstr "" + +#: ../../enterprise/include/class/DatabaseHA.class.php:137 +#: ../../enterprise/include/class/DatabaseHA.class.php:241 +#: ../../enterprise/include/class/DatabaseHA.class.php:423 +#: ../../enterprise/include/class/DatabaseHA.class.php:433 +#: ../../enterprise/include/class/DatabaseHA.class.php:525 +#: ../../enterprise/include/class/DatabaseHA.class.php:534 +#: ../../enterprise/include/class/DatabaseHA.class.php:651 +#: ../../enterprise/include/class/DatabaseHA.class.php:660 +msgid "Error, please refresh page" +msgstr "" + +#: ../../enterprise/include/class/DatabaseHA.class.php:142 +msgid "Action already scheduled" +msgstr "" + +#: ../../enterprise/include/class/DatabaseHA.class.php:148 +msgid "Unavailable action" +msgstr "" + +#: ../../enterprise/include/class/DatabaseHA.class.php:160 +msgid "A node is already being synchronized, please wait until process finish." +msgstr "" + +#: ../../enterprise/include/class/DatabaseHA.class.php:172 +msgid "Please verify resync configuration is set before use this feature." +msgstr "" + +#: ../../enterprise/include/class/DatabaseHA.class.php:190 +#: ../../enterprise/include/class/NetworkConfigManager.class.php:2852 +msgid "Successfully scheduled" +msgstr "" + +#: ../../enterprise/include/class/DatabaseHA.class.php:205 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2039 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3262 +#: ../../enterprise/tools/ipam/ipam_network.php:402 +#: ../../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/agentes/module_manager_editor_common.php:1061 +#: ../../godmode/agentes/module_manager_editor_common.php:1071 +#: ../../godmode/massive/massive_edit_agents.php:1016 +#: ../../godmode/alerts/configure_alert_template.php:900 +#: ../../include/functions_visual_map_editor.php:825 +#: ../../include/functions_reporting_html.php:3446 +#: ../../include/rest-api/models/VisualConsole/Items/StaticGraph.php:406 +msgid "Enabled" +msgstr "" + +#: ../../enterprise/include/class/DatabaseHA.class.php:214 +#: ../../enterprise/include/class/Omnishell.class.php:363 +#: ../../enterprise/include/class/Omnishell.class.php:1087 +#: ../../godmode/wizards/DiscoveryTaskList.class.php:1845 +msgid "Pending" +msgstr "" + +#: ../../enterprise/include/class/DatabaseHA.class.php:220 +msgid "Uninitialized" +msgstr "" + +#: ../../enterprise/include/class/DatabaseHA.class.php:476 +#: ../../enterprise/include/class/DatabaseHA.class.php:575 +#: ../../enterprise/include/class/DatabaseHA.class.php:1251 +msgid "This is not a cluster node" +msgstr "" + +#: ../../enterprise/include/class/DatabaseHA.class.php:480 +#: ../../enterprise/include/class/DatabaseHA.class.php:1255 +msgid "Failed to retrieve master position" +msgstr "" + +#: ../../enterprise/include/class/DatabaseHA.class.php:494 +#: ../../enterprise/include/class/DatabaseHA.class.php:1268 +msgid "Failed to retrieve slave information" +msgstr "" + +#: ../../enterprise/include/class/DatabaseHA.class.php:611 +msgid "Master" +msgstr "" + +#: ../../enterprise/include/class/DatabaseHA.class.php:614 +msgid "Slave" +msgstr "" + +#: ../../enterprise/include/class/DatabaseHA.class.php:796 +#: ../../enterprise/include/class/NetworkConfigManager.class.php:1785 +#: ../../enterprise/include/class/NetworkConfigManager.class.php:1875 +#: ../../enterprise/include/class/NetworkConfigManager.class.php:1970 +#: ../../enterprise/include/class/NetworkConfigManager.class.php:2064 +#: ../../include/class/CalendarManager.class.php:535 +#: ../../include/class/CalendarManager.class.php:892 +msgid "Failed to update" +msgstr "" + +#: ../../enterprise/include/class/DatabaseHA.class.php:823 +#: ../../enterprise/include/class/DatabaseHA.class.php:1006 +msgid "DB Replication user" +msgstr "" + +#: ../../enterprise/include/class/DatabaseHA.class.php:824 +msgid "User configured for Master to Slaves replication" +msgstr "" + +#: ../../enterprise/include/class/DatabaseHA.class.php:834 +#: ../../enterprise/include/class/DatabaseHA.class.php:1015 +msgid "DB Replication user password" +msgstr "" + +#: ../../enterprise/include/class/DatabaseHA.class.php:835 +msgid "User password" +msgstr "" + +#: ../../enterprise/include/class/DatabaseHA.class.php:845 +msgid "Resync data dir" +msgstr "" + +#: ../../enterprise/include/class/DatabaseHA.class.php:846 +msgid "Directory where mysql files are stored (must be common to all nodes)" +msgstr "" + +#: ../../enterprise/include/class/DatabaseHA.class.php:856 +msgid "Resync tmp directory" +msgstr "" + +#: ../../enterprise/include/class/DatabaseHA.class.php:857 +msgid "" +"Temporary working directory where to store the backups that will be used to " +"re-synchronize a slave node" +msgstr "" + +#: ../../enterprise/include/class/DatabaseHA.class.php:867 +msgid "Resync MySQL user" +msgstr "" + +#: ../../enterprise/include/class/DatabaseHA.class.php:868 +msgid "" +"User of the system that owns the MySQL files, necessary for the adjustment " +"of permissions (by default mysql)" +msgstr "" + +#: ../../enterprise/include/class/DatabaseHA.class.php:878 +msgid "Resync MySQL group" +msgstr "" + +#: ../../enterprise/include/class/DatabaseHA.class.php:879 +msgid "" +"System group that owns the MySQL files, needed for permissions setting " +"(default mysql)" +msgstr "" + +#: ../../enterprise/include/class/DatabaseHA.class.php:940 +msgid "IP or FQDN" +msgstr "" + +#: ../../enterprise/include/class/DatabaseHA.class.php:941 +msgid "" +"This action only registers an already configured node. This action does not " +"configure any resource." +msgstr "" + +#: ../../enterprise/include/class/DatabaseHA.class.php:951 +msgid "Cluster node label (pcs)" +msgstr "" + +#: ../../enterprise/include/class/DatabaseHA.class.php:967 +msgid "SSH user" +msgstr "" + +#: ../../enterprise/include/class/DatabaseHA.class.php:975 +msgid "SSH port" +msgstr "" + +#: ../../enterprise/include/class/DatabaseHA.class.php:983 +msgid "SSH key" +msgstr "" + +#: ../../enterprise/include/class/DatabaseHA.class.php:991 +msgid "SSH public key" +msgstr "" + +#: ../../enterprise/include/class/DatabaseHA.class.php:1043 +msgid "Missed parameters" +msgstr "" + +#: ../../enterprise/include/class/DatabaseHA.class.php:1090 +msgid "You must specify a host" +msgstr "" + +#: ../../enterprise/include/class/DatabaseHA.class.php:1092 +msgid "DB port must be a positive integer" +msgstr "" + +#: ../../enterprise/include/class/DatabaseHA.class.php:1094 +msgid "SSH port must be a positive integer" +msgstr "" + +#: ../../enterprise/include/class/DatabaseHA.class.php:1096 +msgid "You must specify a SSH user" +msgstr "" + +#: ../../enterprise/include/class/DatabaseHA.class.php:1098 +msgid "You must specify a replication DB user" +msgstr "" + +#: ../../enterprise/include/class/DatabaseHA.class.php:1100 +msgid "You must specify a replication DB pass" +msgstr "" + +#: ../../enterprise/include/class/DatabaseHA.class.php:1102 +msgid "You must specify a public key path" +msgstr "" + +#: ../../enterprise/include/class/DatabaseHA.class.php:1104 +msgid "You must specify a private path" +msgstr "" + +#: ../../enterprise/include/class/DatabaseHA.class.php:1154 +msgid "Successfully " +msgstr "" + +#: ../../enterprise/include/class/NetworkConfigManager.class.php:375 +msgid "Perform action" +msgstr "" + +#: ../../enterprise/include/class/NetworkConfigManager.class.php:1442 +msgid "NCM devices" +msgstr "" + +#: ../../enterprise/include/class/NetworkConfigManager.class.php:1456 +msgid "NCM templates" +msgstr "" + +#: ../../enterprise/include/class/NetworkConfigManager.class.php:1470 +msgid "Registered vendors" +msgstr "" + +#: ../../enterprise/include/class/NetworkConfigManager.class.php:1484 +msgid "Registered models" +msgstr "" + +#: ../../enterprise/include/class/NetworkConfigManager.class.php:1498 +msgid "Registered snippets" +msgstr "" + +#: ../../enterprise/include/class/NetworkConfigManager.class.php:1512 +msgid "Registered firmwares" +msgstr "" + +#: ../../enterprise/include/class/NetworkConfigManager.class.php:1548 +msgid "No agents with NCM features enabled yet" +msgstr "" + +#: ../../enterprise/include/class/NetworkConfigManager.class.php:1679 +#: ../../enterprise/include/class/NetworkConfigManager.class.php:2189 +#: ../../enterprise/include/class/NetworkConfigManager.class.php:2240 +#, php-format +msgid "Template not found: %s" +msgstr "" + +#: ../../enterprise/include/class/NetworkConfigManager.class.php:1704 +msgid "Template created" +msgstr "" + +#: ../../enterprise/include/class/NetworkConfigManager.class.php:1704 +msgid "Template updated" +msgstr "" + +#: ../../enterprise/include/class/NetworkConfigManager.class.php:1725 +#: ../../enterprise/include/class/NetworkConfigManager.class.php:1807 +#: ../../enterprise/include/class/NetworkConfigManager.class.php:1901 +#: ../../enterprise/include/class/NetworkConfigManager.class.php:1992 +#: ../../enterprise/include/class/NetworkConfigManager.class.php:2131 +#: ../../enterprise/include/class/NetworkConfigManager.class.php:2792 +#: ../../enterprise/include/lib/Metaconsole/Node.php:1453 +#: ../../include/class/CalendarManager.class.php:570 +#: ../../include/class/CalendarManager.class.php:946 +#: ../../include/functions_reporting.php:4927 +#: ../../include/functions_reporting.php:4955 +#, php-format +msgid "Error: %s" +msgstr "" + +#: ../../enterprise/include/class/NetworkConfigManager.class.php:1770 +#: ../../enterprise/include/class/NetworkConfigManager.class.php:2314 +#, php-format +msgid "Vendor not found: %s" +msgstr "" + +#: ../../enterprise/include/class/NetworkConfigManager.class.php:1788 +#: ../../enterprise/include/class/NetworkConfigManager.class.php:1878 +#: ../../enterprise/include/class/NetworkConfigManager.class.php:1973 +#: ../../enterprise/include/class/NetworkConfigManager.class.php:2067 +#: ../../include/class/CalendarManager.class.php:538 +#: ../../include/class/CalendarManager.class.php:895 +msgid "Failed to create" +msgstr "" + +#: ../../enterprise/include/class/NetworkConfigManager.class.php:1801 +msgid "Failed saving vendor: " +msgstr "" + +#: ../../enterprise/include/class/NetworkConfigManager.class.php:1860 +#, php-format +msgid "model not found: %s" +msgstr "" + +#: ../../enterprise/include/class/NetworkConfigManager.class.php:1882 +#: ../../enterprise/include/class/NetworkConfigManager.class.php:2653 +msgid "you must select a valid vendor" +msgstr "" + +#: ../../enterprise/include/class/NetworkConfigManager.class.php:1895 +msgid "Failed saving model: " +msgstr "" + +#: ../../enterprise/include/class/NetworkConfigManager.class.php:1955 +#, php-format +msgid "snippet not found: %s" +msgstr "" + +#: ../../enterprise/include/class/NetworkConfigManager.class.php:1986 +msgid "Failed saving snippet: " +msgstr "" + +#: ../../enterprise/include/class/NetworkConfigManager.class.php:2049 +#, php-format +msgid "firmware not found: %s" +msgstr "" + +#: ../../enterprise/include/class/NetworkConfigManager.class.php:2076 +msgid "Firmware file missing" +msgstr "" + +#: ../../enterprise/include/class/NetworkConfigManager.class.php:2089 +#: ../../enterprise/include/class/AgentRepository.class.php:450 +msgid "Cannot create target dir [" +msgstr "" + +#: ../../enterprise/include/class/NetworkConfigManager.class.php:2108 +#, php-format +msgid "Failed to store file in %s" +msgstr "" + +#: ../../enterprise/include/class/NetworkConfigManager.class.php:2125 +msgid "Failed saving firmware: " +msgstr "" + +#: ../../enterprise/include/class/NetworkConfigManager.class.php:2152 +msgid "" +"Upload only official binary files from your device provide in raw format " +"(not compressed)" +msgstr "" + +#: ../../enterprise/include/class/NetworkConfigManager.class.php:2201 +#: ../../godmode/modules/manage_network_templates.php:83 +msgid "Template successfully deleted" +msgstr "" + +#: ../../enterprise/include/class/NetworkConfigManager.class.php:2256 +msgid "Template successfully duplicated" +msgstr "" + +#: ../../enterprise/include/class/NetworkConfigManager.class.php:2279 +#, php-format +msgid "Model not found: %s" +msgstr "" + +#: ../../enterprise/include/class/NetworkConfigManager.class.php:2291 +msgid "Model successfully deleted" +msgstr "" + +#: ../../enterprise/include/class/NetworkConfigManager.class.php:2326 +msgid "Vendor successfully deleted" +msgstr "" + +#: ../../enterprise/include/class/NetworkConfigManager.class.php:2349 +#, php-format +msgid "Snippet not found: %s" +msgstr "" + +#: ../../enterprise/include/class/NetworkConfigManager.class.php:2361 +msgid "Snippet successfully deleted" +msgstr "" + +#: ../../enterprise/include/class/NetworkConfigManager.class.php:2384 +#, php-format +msgid "Firmware not found: %s" +msgstr "" + +#: ../../enterprise/include/class/NetworkConfigManager.class.php:2396 +msgid "Firmware successfully deleted" +msgstr "" + +#: ../../enterprise/include/class/NetworkConfigManager.class.php:2475 +msgid "" +"Not executed yet, no content to display, define your own in following " +"textarea." +msgstr "" + +#: ../../enterprise/include/class/NetworkConfigManager.class.php:2484 +msgid "" +"Following content is already queued to be executed! You must wait until " +"execution is finished before being able to modify this." +msgstr "" + +#: ../../enterprise/include/class/NetworkConfigManager.class.php:2576 +msgid "Check progress" +msgstr "" + +#: ../../enterprise/include/class/NetworkConfigManager.class.php:2585 +#, php-format +msgid "Script scheduled %s %s" +msgstr "" + +#: ../../enterprise/include/class/NetworkConfigManager.class.php:2643 +#, php-format +msgid "Error retrieving template: %s" +msgstr "" + +#: ../../enterprise/include/class/NetworkConfigManager.class.php:2649 +msgid "you must select a template" +msgstr "" + +#: ../../enterprise/include/class/NetworkConfigManager.class.php:2651 +msgid "you must select a valid model" +msgstr "" + +#: ../../enterprise/include/class/NetworkConfigManager.class.php:2655 +msgid "you must select a valid port" +msgstr "" + +#: ../../enterprise/include/class/NetworkConfigManager.class.php:2689 +#, php-format +msgid "Failed to update%s" +msgstr "" + +#: ../../enterprise/include/class/NetworkConfigManager.class.php:2721 +msgid "No configuration registers to backup" +msgstr "" + +#: ../../enterprise/include/class/NetworkConfigManager.class.php:2729 +#: ../../enterprise/include/class/NetworkConfigManager.class.php:2745 +msgid "Successfully backed up" +msgstr "" + +#: ../../enterprise/include/class/NetworkConfigManager.class.php:2780 +msgid "Invalid id given" +msgstr "" + +#: ../../enterprise/include/class/NetworkConfigManager.class.php:2815 +msgid "" +"Is highly recommendable to execute this kind of operation from agent details " +"to preview the script content" +msgstr "" + +#: ../../enterprise/include/class/NetworkConfigManager.class.php:2824 +msgid "This operation is not ready yet! Keep up to date with latest updates" +msgstr "" + +#: ../../enterprise/include/class/NetworkConfigManager.class.php:2833 +msgid "Invalid action" +msgstr "" + +#: ../../enterprise/include/class/NetworkConfigManager.class.php:2853 +msgid "Failed to schedule action." +msgstr "" + +#: ../../enterprise/include/class/AgentRepository.class.php:346 +msgid "Time in seconds before deployment is cancelled." +msgstr "" + +#: ../../enterprise/include/class/AgentRepository.class.php:385 +msgid "Transfer timeout" +msgstr "" + +#: ../../enterprise/include/class/AgentRepository.class.php:393 +msgid "Installation file" +msgstr "" + +#: ../../enterprise/include/class/AgentRepository.class.php:433 +msgid "Agent version is required" +msgstr "" + +#: ../../enterprise/include/class/AgentRepository.class.php:471 +#, php-format +msgid "Invalid installation file for %s" +msgstr "" + +#: ../../enterprise/include/class/AgentRepository.class.php:500 +msgid "Installation files not modified" +msgstr "" + +#: ../../enterprise/include/class/AgentRepository.class.php:519 +msgid "Installation files updated" +msgstr "" + +#: ../../enterprise/include/class/AgentRepository.class.php:526 +msgid "You must provide installation files to create a new entry." +msgstr "" + +#: ../../enterprise/include/class/AgentRepository.class.php:547 +msgid "This agent has been already defined." +msgstr "" + +#: ../../enterprise/include/class/AgentRepository.class.php:563 +msgid "Agent successfully registered and uploaded" +msgstr "" + +#: ../../enterprise/include/class/AgentRepository.class.php:643 +msgid "Uploaded by" +msgstr "" + +#: ../../enterprise/include/class/AgentRepository.class.php:644 +msgid "Upload date" +msgstr "" + +#: ../../enterprise/include/class/AgentRepository.class.php:726 +msgid "Add new software" +msgstr "" + +#: ../../enterprise/include/class/AgentRepository.class.php:913 +msgid "Add new Software agent" +msgstr "" + +#: ../../enterprise/include/class/AgentRepository.class.php:916 +msgid "Update Software agent" +msgstr "" + +#: ../../enterprise/include/class/Omnishell.class.php:214 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:414 +msgid "Please follow the wizard." +msgstr "" + +#: ../../enterprise/include/class/Omnishell.class.php:226 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:427 +msgid "You have no acess to edit this command." +msgstr "" + +#: ../../enterprise/include/class/Omnishell.class.php:261 +msgid "Failed to save command." +msgstr "" + +#: ../../enterprise/include/class/Omnishell.class.php:272 +msgid "Command not found." +msgstr "" + +#: ../../enterprise/include/class/Omnishell.class.php:319 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:718 +#: ../../include/class/HelpFeedBack.class.php:99 +msgid "Page not found" +msgstr "" + +#: ../../enterprise/include/class/Omnishell.class.php:349 +#: ../../enterprise/include/class/Omnishell.class.php:610 +msgid "You must install php-yaml in order to use this feature." +msgstr "" + +#: ../../enterprise/include/class/Omnishell.class.php:364 +msgid "Not Started" +msgstr "" + +#: ../../enterprise/include/class/Omnishell.class.php:442 +msgid "Commands status" +msgstr "" + +#: ../../enterprise/include/class/Omnishell.class.php:487 +msgid "Create command" +msgstr "" + +#: ../../enterprise/include/class/Omnishell.class.php:506 +msgid "Selected command definitions will be erased" +msgstr "" + +#: ../../enterprise/include/class/Omnishell.class.php:688 +msgid "Time out" +msgstr "" + +#: ../../enterprise/include/class/Omnishell.class.php:697 +msgid "Retries " +msgstr "" + +#: ../../enterprise/include/class/Omnishell.class.php:708 +msgid "Preconditions " +msgstr "" + +#: ../../enterprise/include/class/Omnishell.class.php:709 +msgid "" +"All commands defined line per line must success to execute main commands" +msgstr "" + +#: ../../enterprise/include/class/Omnishell.class.php:721 +msgid "Execute commands " +msgstr "" + +#: ../../enterprise/include/class/Omnishell.class.php:722 +msgid "Define as many lines as commands you want to execute" +msgstr "" + +#: ../../enterprise/include/class/Omnishell.class.php:734 +msgid "Postconditions " +msgstr "" + +#: ../../enterprise/include/class/Omnishell.class.php:735 +msgid "" +"All commands defined line per line must success to consider command success" +msgstr "" + +#: ../../enterprise/include/class/Omnishell.class.php:835 +#: ../../godmode/agentes/planned_downtime.editor.php:805 +msgid "Available agents" +msgstr "" + +#: ../../enterprise/include/class/Omnishell.class.php:880 +msgid "Remove agents" +msgstr "" + +#: ../../enterprise/include/class/Omnishell.class.php:1157 +msgid "Selected command definition will be erased" +msgstr "" + +#: ../../enterprise/include/class/Omnishell.class.php:1243 +msgid "Command viewer" +msgstr "" + +#: ../../enterprise/include/class/Omnishell.class.php:1251 +msgid "Detailed view" +msgstr "" + +#: ../../enterprise/include/class/Omnishell.class.php:1392 +msgid "Not an array of ids" +msgstr "" + +#: ../../enterprise/include/class/Omnishell.class.php:1450 +msgid "There are no targets for this remote command" +msgstr "" + +#: ../../enterprise/include/class/Omnishell.class.php:1457 +msgid "Command does not exist" +msgstr "" + +#: ../../enterprise/include/class/Omnishell.class.php:1556 +msgid "timed out" +msgstr "" + +#: ../../enterprise/include/class/Omnishell.class.php:1559 +msgid "failed" +msgstr "" + +#: ../../enterprise/include/class/Omnishell.class.php:1575 +msgid "Waiting results..." +msgstr "" + +#: ../../enterprise/include/class/Omnishell.class.php:1594 +msgid "RCMD does not exist" +msgstr "" + +#: ../../enterprise/include/class/LogSource.class.php:455 +msgid "Source is required" +msgstr "" + +#: ../../enterprise/include/class/LogSource.class.php:562 +msgid "id cannot be empty" +msgstr "" + +#: ../../enterprise/include/class/LogSource.class.php:567 +#: ../../include/class/CredentialStore.class.php:747 +msgid "Not allowed" +msgstr "" + +#: ../../enterprise/include/class/LogSource.class.php:611 +#: ../../include/class/CredentialStore.class.php:786 +msgid "How to configure encryption." +msgstr "" + +#: ../../enterprise/include/class/LogSource.class.php:610 +#, php-format +msgid "Log monitoring is disabled. %s" +msgstr "" + +#: ../../enterprise/include/class/LogSource.class.php:680 +#: ../../enterprise/include/class/LogSource.class.php:846 +msgid "Add log source" +msgstr "" + +#: ../../enterprise/include/class/LogSource.class.php:715 +msgid "Source name" +msgstr "" + +#: ../../enterprise/include/class/LogSource.class.php:850 +msgid "Update log source" +msgstr "" + +#: ../../enterprise/include/class/DB2.app.php:165 +msgid "" +"This DB2 configuration has been already defined. Please edit it or create a " +"new one." +msgstr "" + +#: ../../enterprise/include/class/DB2.app.php:207 +msgid "You must provide a valid DB2 server IP or FQDN." +msgstr "" + +#: ../../enterprise/include/class/DB2.app.php:219 +msgid "Discovery.Application.DB2" +msgstr "" + +#: ../../enterprise/include/class/DB2.app.php:270 +msgid "Failed to find discovery DB2 task." +msgstr "" + +#: ../../enterprise/include/class/DB2.app.php:486 +msgid "DB2 target strings" +msgstr "" + +#: ../../enterprise/include/class/DB2.app.php:487 +msgid "" +"SERVER:PORT/DATABASE, comma separated or line by line, as many targets as " +"you need." +msgstr "" + +#: ../../enterprise/include/class/DB2.app.php:487 +#: ../../enterprise/include/class/Oracle.app.php:494 +#: ../../enterprise/include/class/MicrosoftSQLServer.app.php:488 +msgid "Use # symbol to comment a line." +msgstr "" + +#: ../../enterprise/include/class/DB2.app.php:634 +#: ../../enterprise/include/class/MySQL.app.php:656 +#: ../../enterprise/include/class/Oracle.app.php:641 +#: ../../enterprise/include/class/MicrosoftSQLServer.app.php:635 +msgid "Target agent" +msgstr "" + +#: ../../enterprise/include/class/DB2.app.php:635 +#: ../../enterprise/include/class/Oracle.app.php:642 +#: ../../enterprise/include/class/MicrosoftSQLServer.app.php:636 +msgid "" +"Defines a target agent where this task will store data detected, if you have " +"defined multiple targets, define a comma separated list of names here or " +"leave in blank to use target as name." +msgstr "" + +#: ../../enterprise/include/class/DB2.app.php:654 +#: ../../enterprise/include/class/MySQL.app.php:676 +#: ../../enterprise/include/class/Oracle.app.php:661 +#: ../../enterprise/include/class/MicrosoftSQLServer.app.php:655 +msgid "Custom module prefix" +msgstr "" + +#: ../../enterprise/include/class/DB2.app.php:655 +#: ../../enterprise/include/class/MySQL.app.php:677 +#: ../../enterprise/include/class/Oracle.app.php:662 +#: ../../enterprise/include/class/MicrosoftSQLServer.app.php:656 +msgid "" +"Defines a custom prefix to be concatenated before module names generated by " +"this task." +msgstr "" + +#: ../../enterprise/include/class/DB2.app.php:673 +msgid "Get database summary" +msgstr "" + +#: ../../enterprise/include/class/DB2.app.php:689 +msgid "Check transactional log utilization" +msgstr "" + +#: ../../enterprise/include/class/DB2.app.php:705 +msgid "Get number of connections" +msgstr "" + +#: ../../enterprise/include/class/DB2.app.php:721 +msgid "Check DB size" +msgstr "" + +#: ../../enterprise/include/class/DB2.app.php:737 +#: ../../enterprise/include/class/MySQL.app.php:821 +#: ../../enterprise/include/class/Oracle.app.php:760 +msgid "Retrieve cache statistics" +msgstr "" + +#: ../../enterprise/include/class/DB2.app.php:753 +#: ../../enterprise/include/class/MySQL.app.php:837 +#: ../../enterprise/include/class/Oracle.app.php:776 +#: ../../enterprise/include/class/MicrosoftSQLServer.app.php:722 +msgid "Execute custom queries" +msgstr "" + +#: ../../enterprise/include/class/DB2.app.php:821 +#: ../../enterprise/include/class/MySQL.app.php:889 +#: ../../enterprise/include/class/Oracle.app.php:930 +#: ../../enterprise/include/class/MicrosoftSQLServer.app.php:774 +msgid "Custom queries" +msgstr "" + +#: ../../enterprise/include/class/DB2.app.php:822 +#: ../../enterprise/include/class/MySQL.app.php:890 +#: ../../enterprise/include/class/Oracle.app.php:931 +#: ../../enterprise/include/class/MicrosoftSQLServer.app.php:775 +msgid "Define here your custom queries." +msgstr "" + +#: ../../enterprise/include/class/Aws.S3.php:60 +msgid "Aws S3" +msgstr "" + +#: ../../enterprise/include/class/Aws.S3.php:166 +#: ../../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 "" + +#: ../../enterprise/include/class/Aws.S3.php:214 +msgid "You must select something." +msgstr "" + +#: ../../enterprise/include/class/Aws.S3.php:236 +msgid "Discovery.Cloud.AWS.S3" +msgstr "" + +#: ../../enterprise/include/class/Aws.S3.php:294 +msgid "Unknown task" +msgstr "" + +#: ../../enterprise/include/class/Aws.S3.php:313 +msgid "Unknown section." +msgstr "" + +#: ../../enterprise/include/class/Aws.S3.php:339 +msgid "S3" +msgstr "" + +#: ../../enterprise/include/class/Aws.S3.php:344 +msgid "Bucket monitoring" +msgstr "" + +#: ../../enterprise/include/class/Aws.S3.php:454 +msgid "No buckets found." +msgstr "" + +#: ../../enterprise/include/class/Aws.S3.php:598 +msgid "Select Buckets to be monitored" +msgstr "" + +#: ../../enterprise/include/class/Aws.S3.php:633 +msgid "Monitor bucket size" +msgstr "" + +#: ../../enterprise/include/class/Aws.S3.php:643 +msgid "Monitor bucket total items" +msgstr "" + +#: ../../enterprise/include/class/CSVImportAgents.class.php:121 +msgid "The CSV file must have the fields in the following order:" +msgstr "" + +#: ../../enterprise/include/class/CSVImportAgents.class.php:122 +msgid "Agent alias, IP address, OS id, Interval, Group id, Description" +msgstr "" + +#: ../../enterprise/include/class/CSVImportAgents.class.php:127 +msgid "" +"Warning, this CSV importer will not perform any discovery, it will only " +"create empty agents with the name, IP, OS type, description and group " +"provided in the CSV." +msgstr "" + +#: ../../enterprise/include/class/CSVImportAgents.class.php:179 +msgid "Alias as name" +msgstr "" + +#: ../../enterprise/include/class/CSVImportAgents.class.php:244 +msgid "No data or wrong separator" +msgstr "" + +#: ../../enterprise/include/class/CSVImportAgents.class.php:250 +#, php-format +msgid "Agent %s duplicated." +msgstr "" + +#: ../../enterprise/include/class/CSVImportAgents.class.php:257 +#, php-format +msgid "Id group %s doesn't exist in %s" +msgstr "" + +#: ../../enterprise/include/class/CSVImportAgents.class.php:265 +msgid "General failure." +msgstr "" + +#: ../../enterprise/include/class/CSVImportAgents.class.php:286 +msgid "No input file detected" +msgstr "" + +#: ../../enterprise/include/class/CSVImportAgents.class.php:375 +msgid "Agent processed successfully" +msgstr "" + +#: ../../enterprise/include/class/CSVImportAgents.class.php:381 +msgid "Some errors while processing CSV." +msgstr "" + +#: ../../enterprise/include/class/CSVImportAgents.class.php:384 +msgid "All agents processed correctly" +msgstr "" + +#: ../../enterprise/include/class/CSVImportAgents.class.php:391 +#, php-format +msgid "Line %s" +msgstr "" + +#: ../../enterprise/include/class/SAPView.class.php:146 +#: ../../enterprise/include/class/SAPView.class.php:190 +msgid "SAP View" +msgstr "" + +#: ../../enterprise/include/class/SAPView.class.php:164 +msgid "SAP data not found." +msgstr "" + +#: ../../enterprise/include/class/SAPView.class.php:258 +msgid "Refresh Every" +msgstr "" + +#: ../../enterprise/include/class/SAPView.class.php:295 +msgid "Graph Interval" +msgstr "" + +#: ../../enterprise/include/class/SAPView.class.php:626 +msgid "" +"SAP view offers you to see the most important modules Discovery Server is " +"usually configured to retry. You have not configured a Discovery SAP R3 task " +"yet, please visit" +msgstr "" + +#: ../../enterprise/include/class/SAPView.class.php:626 +msgid "to start monitoring your SAP infrastructure." +msgstr "" + +#: ../../enterprise/include/class/SAPView.class.php:633 +msgid "Discover SAP" +msgstr "" + +#: ../../enterprise/include/class/SAP.app.php:154 +msgid "" +"This SAP configuration has been already defined. Please edit it or create a " +"new one." +msgstr "" + +#: ../../enterprise/include/class/SAP.app.php:195 +msgid "You must specify at last one SAP hostname." +msgstr "" + +#: ../../enterprise/include/class/SAP.app.php:206 +msgid "Discovery.Application.SAP" +msgstr "" + +#: ../../enterprise/include/class/SAP.app.php:262 +msgid "Failed to find discovery SAP task." +msgstr "" + +#: ../../enterprise/include/class/SAP.app.php:286 +msgid "Select at least a module." +msgstr "" + +#: ../../enterprise/include/class/SAP.app.php:354 +msgid "SAP R3" +msgstr "" + +#: ../../enterprise/include/class/SAP.app.php:547 +msgid "SAP Hostname" +msgstr "" + +#: ../../enterprise/include/class/SAP.app.php:571 +msgid "SAP Client" +msgstr "" + +#: ../../enterprise/include/class/SAP.app.php:585 +msgid "SAP System Number" +msgstr "" + +#: ../../enterprise/include/class/SAP.app.php:617 +#: ../../enterprise/include/class/SAP.app.php:631 +msgid "SAP Credentials" +msgstr "" + +#: ../../enterprise/include/class/SAP.app.php:617 +#: ../../enterprise/include/class/SAP.app.php:631 +msgid "Optional" +msgstr "" + +#: ../../enterprise/include/class/SAP.app.php:727 +#: ../../include/functions_agents.php:4000 +msgid "SAP Login OK" +msgstr "" + +#: ../../enterprise/include/class/SAP.app.php:728 +#: ../../include/functions_agents.php:4001 +msgid "SAP Dumps" +msgstr "" + +#: ../../enterprise/include/class/SAP.app.php:729 +#: ../../include/functions_agents.php:4002 +msgid "SAP lock entry list" +msgstr "" + +#: ../../enterprise/include/class/SAP.app.php:730 +#: ../../include/functions_agents.php:4003 +msgid "SAP canceled Jobs" +msgstr "" + +#: ../../enterprise/include/class/SAP.app.php:731 +#: ../../include/functions_agents.php:4004 +msgid "SAP Batch inputs erroneous" +msgstr "" + +#: ../../enterprise/include/class/SAP.app.php:732 +#: ../../include/functions_agents.php:4005 +msgid "SAP IDOC erroneous" +msgstr "" + +#: ../../enterprise/include/class/SAP.app.php:733 +#: ../../include/functions_agents.php:4006 +msgid "SAP IDOC OK" +msgstr "" + +#: ../../enterprise/include/class/SAP.app.php:734 +#: ../../include/functions_agents.php:4007 +msgid "SAP WP without active restart" +msgstr "" + +#: ../../enterprise/include/class/SAP.app.php:735 +#: ../../include/functions_agents.php:4008 +msgid "SAP WP stopped" +msgstr "" + +#: ../../enterprise/include/class/SAP.app.php:736 +#: ../../include/functions_agents.php:4009 +msgid "Average time of SAPGUI response" +msgstr "" + +#: ../../enterprise/include/class/SAP.app.php:737 +#: ../../include/functions_agents.php:4011 +msgid "Dialog Logged users" +msgstr "" + +#: ../../enterprise/include/class/SAP.app.php:738 +#: ../../include/functions_agents.php:4012 +msgid "TRFC in error" +msgstr "" + +#: ../../enterprise/include/class/SAP.app.php:739 +#: ../../include/functions_agents.php:4013 +msgid "QRFC in error SMQ2" +msgstr "" + +#: ../../enterprise/include/class/SAP.app.php:740 +#: ../../include/functions_agents.php:4014 +msgid "Number of Update WPs in error" +msgstr "" + +#: ../../enterprise/include/class/SAP.app.php:764 +#, php-format +msgid "" +"Module 180 must be customized before being used, please use advanced options " +"to define the module following the documentation:
    %s" +msgstr "" + +#: ../../enterprise/include/class/SAP.app.php:785 +msgid "Available modules" +msgstr "" + +#: ../../enterprise/include/class/SAP.app.php:821 +msgid "Add monitors" +msgstr "" + +#: ../../enterprise/include/class/SAP.app.php:834 +msgid "Remove monitors" +msgstr "" + +#: ../../enterprise/include/class/SAP.app.php:885 +msgid "Define your custom SAP modules." +msgstr "" + +#: ../../enterprise/include/class/SAP.app.php:884 +msgid "Advanced module configuration" +msgstr "" + +#: ../../enterprise/include/class/SAP.app.php:894 +msgid "Custom module definitions" +msgstr "" + +#: ../../enterprise/include/class/SAP.app.php:895 +msgid "" +"Each line is a module definition using following format: module name ; " +"module_type ; SAP check definition." +msgstr "" + +#: ../../enterprise/include/class/Aws.cloud.php:118 +#: ../../include/class/CredentialStore.class.php:946 +msgid "Aws" +msgstr "" + +#: ../../enterprise/include/class/Aws.cloud.php:343 +msgid "Recon" +msgstr "" + +#: ../../enterprise/include/class/Aws.cloud.php:344 +msgid "Costs" +msgstr "" + +#: ../../enterprise/include/class/Aws.cloud.php:346 +msgid "Instances" +msgstr "" + +#: ../../enterprise/include/class/Aws.cloud.php:441 +msgid "Amazon EC2" +msgstr "" + +#: ../../enterprise/include/class/Aws.cloud.php:446 +msgid "Amazon RDS" +msgstr "" + +#: ../../enterprise/include/class/Aws.cloud.php:451 +msgid "S3 Buckets" +msgstr "" + +#: ../../enterprise/include/class/Aws.cloud.php:471 +#: ../../godmode/wizards/HostDevices.class.php:696 +msgid "NetScan" +msgstr "" + +#: ../../enterprise/include/class/Aws.cloud.php:510 +msgid "Discovery task name" +msgstr "" + +#: ../../enterprise/include/class/Aws.cloud.php:614 +msgid "Total cost" +msgstr "" + +#: ../../enterprise/include/class/Aws.cloud.php:631 +msgid "Cost by region" +msgstr "" + +#: ../../enterprise/include/class/Aws.cloud.php:645 +msgid "Cost interval" +msgstr "" + +#: ../../enterprise/include/class/Aws.cloud.php:773 +msgid "Select EC2 instances" +msgstr "" + +#: ../../enterprise/include/class/Aws.cloud.php:789 +msgid "Storage" +msgstr "" + +#: ../../enterprise/include/class/Aws.cloud.php:799 +msgid "Elastic IP Adresses" +msgstr "" + +#: ../../enterprise/include/class/Aws.cloud.php:982 +msgid "You must select at least one RDS instance." +msgstr "" + +#: ../../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:994 +msgid "Discovery.Cloud.AWS.RDS" +msgstr "" + +#: ../../enterprise/include/class/Aws.cloud.php:1160 +msgid "RDS" +msgstr "" + +#: ../../enterprise/include/class/Aws.cloud.php:1165 +msgid "DB monitoring" +msgstr "" + +#: ../../enterprise/include/class/Aws.cloud.php:1175 +msgid "AWS RDS" +msgstr "" + +#: ../../enterprise/include/class/Aws.cloud.php:1249 +msgid "Global DB User" +msgstr "" + +#: ../../enterprise/include/class/Aws.cloud.php:1259 +msgid "Global DB password" +msgstr "" + +#: ../../enterprise/include/class/Aws.cloud.php:1349 +msgid "Select RDS instances" +msgstr "" + +#: ../../enterprise/include/class/Aws.cloud.php:1652 +msgid "Invalid group" +msgstr "" + +#: ../../enterprise/include/class/Aws.cloud.php:1710 +msgid "Cannot update the recon database" +msgstr "" + +#: ../../enterprise/include/class/Aws.cloud.php:1732 +msgid "Engine not supported" +msgstr "" + +#: ../../enterprise/include/class/MySQL.app.php:173 +msgid "" +"This MySQL configuration has been already defined. Please edit it or create " +"a new one." +msgstr "" + +#: ../../enterprise/include/class/MySQL.app.php:216 +msgid "You must provide a valid MySQL server IP or FQDN." +msgstr "" + +#: ../../enterprise/include/class/MySQL.app.php:221 +msgid "You must provide a valid port number." +msgstr "" + +#: ../../enterprise/include/class/MySQL.app.php:233 +msgid "Discovery.Application.MySQL" +msgstr "" + +#: ../../enterprise/include/class/MySQL.app.php:285 +msgid "Failed to find discovery MySQL task." +msgstr "" + +#: ../../enterprise/include/class/MySQL.app.php:491 +msgid "MySQL server IP" +msgstr "" + +#: ../../enterprise/include/class/MySQL.app.php:492 +msgid "Comma separated, as many targets as you need." +msgstr "" + +#: ../../enterprise/include/class/MySQL.app.php:511 +msgid "MySQL server Port" +msgstr "" + +#: ../../enterprise/include/class/MySQL.app.php:657 +msgid "" +"Defines a target agent where this task will store data detected, if you have " +"defined multiple targets, define a comma separated list of names here or " +"leave in blank to use server IP address/ FQDN." +msgstr "" + +#: ../../enterprise/include/class/MySQL.app.php:698 +msgid "Scan databases" +msgstr "" + +#: ../../enterprise/include/class/MySQL.app.php:714 +msgid "Create agent per database" +msgstr "" + +#: ../../enterprise/include/class/MySQL.app.php:735 +msgid "Custom database agent prefix" +msgstr "" + +#: ../../enterprise/include/class/MySQL.app.php:736 +msgid "" +"Defines a custom prefix to be concatenated before database agent names " +"generated by this task." +msgstr "" + +#: ../../enterprise/include/class/MySQL.app.php:757 +#: ../../enterprise/include/class/Oracle.app.php:680 +#: ../../enterprise/include/class/MicrosoftSQLServer.app.php:674 +msgid "Check engine uptime" +msgstr "" + +#: ../../enterprise/include/class/MySQL.app.php:773 +#: ../../enterprise/include/class/Oracle.app.php:696 +#: ../../enterprise/include/class/MicrosoftSQLServer.app.php:690 +msgid "Retrieve query statistics" +msgstr "" + +#: ../../enterprise/include/class/MySQL.app.php:789 +#: ../../enterprise/include/class/Oracle.app.php:712 +#: ../../enterprise/include/class/MicrosoftSQLServer.app.php:706 +msgid "Analyze connections" +msgstr "" + +#: ../../enterprise/include/class/MySQL.app.php:805 +msgid "Retrieve InnoDB statistics" +msgstr "" + +#: ../../enterprise/include/class/Google.cloud.php:147 +#: ../../include/class/CredentialStore.class.php:949 +msgid "Google" +msgstr "" + +#: ../../enterprise/include/class/Google.cloud.php:301 +msgid "Compute Engine" +msgstr "" + +#: ../../enterprise/include/class/Google.cloud.php:877 +msgid "This options only applies to zone (region) agents." +msgstr "" + +#: ../../enterprise/include/class/Google.cloud.php:890 +msgid "Scan and general monitoring" +msgstr "" + +#: ../../enterprise/include/class/Google.cloud.php:903 +msgid "CPU performance summary" +msgstr "" + +#: ../../enterprise/include/class/Oracle.app.php:172 +msgid "" +"This Oracle configuration has been already defined. Please edit it or create " +"a new one." +msgstr "" + +#: ../../enterprise/include/class/Oracle.app.php:214 +msgid "You must provide a valid Oracle server IP or FQDN." +msgstr "" + +#: ../../enterprise/include/class/Oracle.app.php:226 +msgid "Discovery.Application.Oracle" +msgstr "" + +#: ../../enterprise/include/class/Oracle.app.php:277 +msgid "Failed to find discovery Oracle task." +msgstr "" + +#: ../../enterprise/include/class/Oracle.app.php:493 +msgid "Oracle target strings" +msgstr "" + +#: ../../enterprise/include/class/Oracle.app.php:494 +msgid "" +"SERVER:PORT/SID, comma separated or line by line, as many targets as you " +"need." +msgstr "" + +#: ../../enterprise/include/class/Oracle.app.php:728 +msgid "Calculate fragmentation ratio" +msgstr "" + +#: ../../enterprise/include/class/Oracle.app.php:744 +msgid "Monitor tablespaces" +msgstr "" + +#: ../../enterprise/include/class/MicrosoftSQLServer.app.php:171 +msgid "" +"This Microsoft SQL Server configuration has been already defined. Please " +"edit it or create a new one." +msgstr "" + +#: ../../enterprise/include/class/MicrosoftSQLServer.app.php:213 +msgid "You must provide a valid Microsoft SQL Server server IP or FQDN." +msgstr "" + +#: ../../enterprise/include/class/MicrosoftSQLServer.app.php:277 +msgid "Failed to find discovery Microsoft SQL Server task." +msgstr "" + +#: ../../enterprise/include/class/MicrosoftSQLServer.app.php:487 +msgid "Microsoft SQL Server targets" +msgstr "" + +#: ../../enterprise/include/class/MicrosoftSQLServer.app.php:488 +msgid "" +"SERVER:PORT\\INSTANCE, comma separated or line by line, as many targets as " +"you need." +msgstr "" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:473 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:532 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:591 +msgid "Alert not found." +msgstr "" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:480 +msgid "Invalid json data" +msgstr "" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:575 +msgid "Rules updated." +msgstr "" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:578 +msgid "JSON decoding error. Please call support." +msgstr "" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:630 +msgid "There was a problem creating Action. You must select an action" +msgstr "" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:898 +msgid "Pass" +msgstr "" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:899 +msgid "Drop" +msgstr "" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:925 +msgid "Module alert" +msgstr "" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:945 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2021 +msgid "Load from template" +msgstr "" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:962 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2241 +#: ../../godmode/alerts/configure_alert_template.php:625 +#: ../../godmode/alerts/alert_view.php:258 +msgid "Use special days list" +msgstr "" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:979 +#: ../../godmode/alerts/configure_alert_template.php:661 +msgid "Schedule" +msgstr "" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:982 +#: ../../godmode/alerts/configure_alert_template.php:665 +msgid "No alert has been scheduled yet" +msgstr "" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1004 +msgid "Execute alert" +msgstr "" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1007 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3501 +msgid "from" +msgstr "" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1027 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3519 +msgid "times in" +msgstr "" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1037 +msgid "threshold" +msgstr "" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1047 +msgid "Rule evaluation mode" +msgstr "" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1047 +msgid "Pass - All alerts are evaluated. Drop - It stops when 1 alert matches." +msgstr "" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1064 +msgid "Grouped by" +msgstr "" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1203 +msgid "" +"The templates shown are only for correlative alerts, event alert (legacy) " +"will be deprecated in the future" +msgstr "" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1213 +msgid "Available items" +msgstr "" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1214 +msgid "Block" +msgstr "" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1262 +#: ../../enterprise/include/lib/AlertCorrelation.class.php:1084 +msgid "Log content" +msgstr "" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1267 +#: ../../enterprise/include/lib/AlertCorrelation.class.php:1087 +msgid "Log source" +msgstr "" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1272 +#: ../../enterprise/include/lib/AlertCorrelation.class.php:1090 +msgid "Log agent" +msgstr "" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1330 +#: ../../enterprise/include/lib/AlertCorrelation.class.php:1096 +msgid "Event content" +msgstr "" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1335 +#: ../../enterprise/include/lib/AlertCorrelation.class.php:1093 +msgid "Event user comment" +msgstr "" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1340 +#: ../../enterprise/include/lib/AlertCorrelation.class.php:1099 +msgid "Event agent" +msgstr "" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1345 +#: ../../enterprise/include/lib/AlertCorrelation.class.php:1102 +msgid "Event module" +msgstr "" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1350 +#: ../../enterprise/include/lib/AlertCorrelation.class.php:1105 +msgid "Event module alerts" +msgstr "" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1355 +#: ../../enterprise/include/lib/AlertCorrelation.class.php:1108 +msgid "Event group" +msgstr "" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1361 +msgid "Event group (recursive)" +msgstr "" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1367 +#: ../../enterprise/include/lib/AlertCorrelation.class.php:1114 +msgid "Event severity" +msgstr "" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1372 +#: ../../enterprise/include/lib/AlertCorrelation.class.php:1117 +msgid "Event tag" +msgstr "" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1377 +#: ../../enterprise/include/lib/AlertCorrelation.class.php:1120 +msgid "Event user" +msgstr "" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1407 +msgid "Operators" +msgstr "" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1412 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1456 +#: ../../enterprise/include/lib/AlertCorrelation.class.php:1433 +msgid "greater than" +msgstr "" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1417 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1460 +#: ../../enterprise/include/lib/AlertCorrelation.class.php:1437 +#: ../../enterprise/include/lib/AlertCorrelation.class.php:1445 +msgid "less than" +msgstr "" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1422 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1464 +#: ../../enterprise/include/lib/AlertCorrelation.class.php:1441 +msgid "greater or equal than" +msgstr "" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1427 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1468 +msgid "less or equal than" +msgstr "" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1432 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1472 +#: ../../enterprise/include/lib/AlertCorrelation.class.php:1449 +msgid "is equal" +msgstr "" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1437 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1476 +#: ../../enterprise/include/lib/AlertCorrelation.class.php:1453 +msgid "is different" +msgstr "" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1442 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1480 +#: ../../enterprise/include/lib/AlertCorrelation.class.php:1457 +msgid "is like (regex)" +msgstr "" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1447 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1484 +#: ../../enterprise/include/lib/AlertCorrelation.class.php:1461 +msgid "is not like (regex)" +msgstr "" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1517 +msgid "Modifiers" +msgstr "" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1522 +msgid "within an interval (seconds)" +msgstr "" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1527 +msgid "repeated at least" +msgstr "" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1567 +msgid "Matches on both true" +msgstr "" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1573 +msgid "Matches when any is false" +msgstr "" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1579 +msgid "Matches on any true" +msgstr "" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1585 +msgid "Matches when both are false" +msgstr "" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1591 +msgid "Matches when only one is true" +msgstr "" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1597 +msgid "Matches when both are either true or false" +msgstr "" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1633 +msgid "Rule definition" +msgstr "" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1922 +msgid "Remove rule" +msgstr "" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1933 +msgid "Remove item" +msgstr "" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1954 +#: ../../operation/agentes/estado_monitores.php:602 +msgid "Reset" +msgstr "" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2048 +#: ../../godmode/alerts/configure_alert_template.php:897 +msgid "Alert recovery" +msgstr "" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2076 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2733 +#: ../../godmode/alerts/alert_commands.php:100 +#: ../../godmode/alerts/alert_commands.php:105 +#: ../../godmode/alerts/alert_commands.php:121 +#: ../../godmode/alerts/alert_commands.php:127 +#: ../../godmode/alerts/configure_alert_template.php:928 +#: ../../godmode/alerts/alert_view.php:484 +#: ../../godmode/alerts/alert_view.php:603 +#, php-format +msgid "Field %s" +msgstr "" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2088 +#, php-format +msgid "Recovery Field %s" +msgstr "" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2155 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2157 +msgid "Triggering Condition" +msgstr "" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2250 +#: ../../godmode/alerts/alert_view.php:266 +msgid "Number of alerts" +msgstr "" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2338 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2601 +#: ../../godmode/alerts/configure_alert_action.php:305 +#: ../../godmode/alerts/alert_view.php:403 +msgid "Firing" +msgstr "" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2453 +msgid "There are no defined actions for this alert" +msgstr "" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2524 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3498 +msgid "Number of alerts match" +msgstr "" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2602 +#: ../../godmode/alerts/alert_view.php:404 +msgid "Recovering" +msgstr "" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2619 +msgid "" +"Select the desired action and mode to view the Triggering fields for this " +"action" +msgstr "" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2636 +#: ../../godmode/alerts/alert_view.php:395 +msgid "Select the action" +msgstr "" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2694 +#: ../../godmode/alerts/configure_alert_template.php:918 +#: ../../godmode/alerts/alert_view.php:435 +#: ../../godmode/alerts/alert_view.php:569 +msgid "Firing fields" +msgstr "" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2696 +#: ../../godmode/alerts/alert_view.php:437 +msgid "" +"Fields passed to the command executed by this action when the alert is fired" +msgstr "" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2700 +#: ../../godmode/agentes/fields_manager.php:119 +#: ../../godmode/alerts/alert_view.php:441 +#: ../../godmode/alerts/alert_view.php:564 +#: ../../operation/agentes/custom_fields.php:65 +msgid "Field" +msgstr "" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2702 +#: ../../godmode/alerts/alert_view.php:443 +#: ../../godmode/alerts/alert_view.php:566 +msgid "Fields configured on the command associated to the action" +msgstr "" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2705 +msgid "Alerts fields" +msgstr "" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2707 +msgid "Triggering fields configured in Alerts" +msgstr "" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2710 +#: ../../godmode/alerts/alert_view.php:451 +msgid "Action fields" +msgstr "" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2712 +#: ../../godmode/alerts/alert_view.php:453 +msgid "Triggering fields configured in action" +msgstr "" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2715 +#: ../../godmode/alerts/alert_view.php:457 +msgid "Executed on firing" +msgstr "" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2717 +#: ../../godmode/alerts/alert_view.php:459 +#: ../../godmode/alerts/alert_view.php:571 +msgid "Fields used on execution when the alert is fired" +msgstr "" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2766 +msgid "Correlated alerts" +msgstr "" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2790 +msgid "Alert succesfully deleted" +msgstr "" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2799 +msgid "Alerts validated" +msgstr "" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2802 +msgid "Failed to process validation" +msgstr "" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2947 +msgid "Matched" +msgstr "" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2948 +#: ../../godmode/alerts/alert_list.list.php:147 +#: ../../mobile/operation/alerts.php:66 +#: ../../include/functions_reporting_html.php:2375 +#: ../../include/functions_reporting_html.php:3229 +#: ../../include/functions_reporting_html.php:3230 +#: ../../operation/agentes/alerts_status.functions.php:97 +#: ../../operation/snmpconsole/snmp_view.php:229 +#: ../../operation/snmpconsole/snmp_view.php:1254 +msgid "Fired" +msgstr "" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2970 +#: ../../enterprise/include/class/CommandCenter.class.php:329 +msgid "Sort elements" +msgstr "" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3015 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3401 +msgid "No associated actions" +msgstr "" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3049 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3065 +msgid "Add Actions" +msgstr "" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3120 +msgid "There are no defined correlated alerts" +msgstr "" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3256 +msgid "Are you sure you want to disable the alert" +msgstr "" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3263 +msgid "Are you sure you want to enable the alert" +msgstr "" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3270 +msgid "Disabled Alert" +msgstr "" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3311 +#: ../../godmode/alerts/alert_list.list.php:154 +#: ../../mobile/operation/alerts.php:74 +#: ../../operation/agentes/alerts_status.functions.php:103 +msgid "Standby off" +msgstr "" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3312 +msgid "Are you sure you want to standby the alert" +msgstr "" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3317 +#: ../../enterprise/operation/agentes/policy_view.php:292 +#: ../../godmode/alerts/alert_list.list.php:153 +#: ../../mobile/operation/alerts.php:73 ../../include/functions_ui.php:1155 +#: ../../operation/agentes/alerts_status.functions.php:102 +msgid "Standby on" +msgstr "" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3319 +msgid "Are you sure you want to activate the alert" +msgstr "" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3327 +msgid "Standby Alert" +msgstr "" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3399 +msgid "Delete Actions" +msgstr "" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3578 +msgid "Successfully added action" +msgstr "" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3616 +msgid "Successfully delete action" +msgstr "" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:4029 +msgid "Choosetime" +msgstr "" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:4236 +msgid "Drop Here" +msgstr "" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:4294 +#: ../../godmode/alerts/configure_alert_template.php:1495 +msgid "Simple" +msgstr "" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:4295 +#: ../../godmode/alerts/configure_alert_template.php:1496 +msgid "Detailed" +msgstr "" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:4350 +#: ../../godmode/alerts/configure_alert_template.php:1551 +msgid "Drag out to remove" +msgstr "" + +#: ../../enterprise/include/class/CommandCenter.class.php:146 +msgid "Command center" +msgstr "" + +#: ../../enterprise/include/class/CommandCenter.class.php:160 +msgid "Could not be start merge process, no nodes in the metaconsole " +msgstr "" + +#: ../../enterprise/include/class/CommandCenter.class.php:169 +#: ../../enterprise/include/functions_groups.php:49 +msgid "Metaconsole" +msgstr "" + +#: ../../enterprise/include/class/CommandCenter.class.php:265 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:900 +msgid "" +"Memory limit is recomended to be unlimited in metaconsole, please set to -1 " +"in php.ini." +msgstr "" + +#: ../../enterprise/include/class/CommandCenter.class.php:312 +msgid "Nodes priority order" +msgstr "" + +#: ../../enterprise/include/class/CommandCenter.class.php:366 +msgid "Unify databases" +msgstr "" + +#: ../../enterprise/include/class/CommandCenter.class.php:383 +msgid "merge process" +msgstr "" + +#: ../../enterprise/include/class/CommandCenter.class.php:391 +msgid "Process detail of node" +msgstr "" + +#: ../../enterprise/include/class/CommandCenter.class.php:392 +msgid "Errors of node" +msgstr "" + +#: ../../enterprise/include/class/CommandCenter.class.php:421 +msgid "Unexpected end of process" +msgstr "" + +#: ../../enterprise/include/class/CommandCenter.class.php:422 +msgid "Please retry" +msgstr "" + +#: ../../enterprise/include/class/CommandCenter.class.php:443 +msgid "Critical issues while merging" +msgstr "" + +#: ../../enterprise/include/class/CommandCenter.class.php:444 +msgid "Please restore your backups" +msgstr "" + +#: ../../enterprise/include/class/CommandCenter.class.php:452 +#: ../../include/functions_ui.php:6622 +msgid "Query" +msgstr "" + +#: ../../enterprise/include/class/CommandCenter.class.php:453 +#: ../../include/lib/Dashboard/Widgets/service_view.php:247 +msgid "Table" +msgstr "" + +#: ../../enterprise/include/class/CommandCenter.class.php:454 +#: ../../include/class/Heatmap.class.php:743 +msgid "Info" +msgstr "" + +#: ../../enterprise/include/class/CommandCenter.class.php:455 +#: ../../enterprise/include/class/CommandCenter.class.php:1119 +msgid "Error message" +msgstr "" + +#: ../../enterprise/include/class/CommandCenter.class.php:457 +msgid "Process details" +msgstr "" + +#: ../../enterprise/include/class/CommandCenter.class.php:458 +msgid "" +"System is not unified yet, something is wrong, please troubleshoot the " +"errors and retry the merge process. Your data have not been modified." +msgstr "" + +#: ../../enterprise/include/class/CommandCenter.class.php:459 +msgid "Errors while merging" +msgstr "" + +#: ../../enterprise/include/class/CommandCenter.class.php:460 +msgid "The process has been completed correctly" +msgstr "" + +#: ../../enterprise/include/class/CommandCenter.class.php:461 +#: ../../enterprise/include/functions_login.php:145 +#: ../../include/class/Diagnostics.class.php:1818 +msgid "Successfully" +msgstr "" + +#: ../../enterprise/include/class/CommandCenter.class.php:462 +msgid "System is merging your environment, please wait" +msgstr "" + +#: ../../enterprise/include/class/CommandCenter.class.php:464 +#: ../../enterprise/include/class/CommandCenter.class.php:884 +msgid "Initialice merge" +msgstr "" + +#: ../../enterprise/include/class/CommandCenter.class.php:465 +#: ../../enterprise/include/class/CommandCenter.class.php:890 +msgid "Apply merge" +msgstr "" + +#: ../../enterprise/include/class/CommandCenter.class.php:466 +msgid "Finished merge" +msgstr "" + +#: ../../enterprise/include/class/CommandCenter.class.php:467 +#: ../../enterprise/include/class/CommandCenter.class.php:896 +msgid "Restore merge" +msgstr "" + +#: ../../enterprise/include/class/CommandCenter.class.php:469 +msgid "Succesfully" +msgstr "" + +#: ../../enterprise/include/class/CommandCenter.class.php:470 +msgid "Pending operations" +msgstr "" + +#: ../../enterprise/include/class/CommandCenter.class.php:472 +msgid "Error. Synchronization aborted. Backup restored" +msgstr "" + +#: ../../enterprise/include/class/CommandCenter.class.php:542 +#: ../../enterprise/include/class/CommandCenter.class.php:548 +msgid "Update priority nodes" +msgstr "" + +#: ../../enterprise/include/class/CommandCenter.class.php:543 +msgid "Successfully updated priority order nodes" +msgstr "" + +#: ../../enterprise/include/class/CommandCenter.class.php:549 +msgid "Could not be updated priority order nodes" +msgstr "" + +#: ../../enterprise/include/class/CommandCenter.class.php:565 +msgid "" +"By unifying databases all information across your infrastructure will be " +"merged to gain integrity" +msgstr "" + +#: ../../enterprise/include/class/CommandCenter.class.php:578 +#: ../../enterprise/include/class/CommandCenter.class.php:588 +msgid "Blocked" +msgstr "" + +#: ../../enterprise/include/class/CommandCenter.class.php:579 +msgid "This process already running" +msgstr "" + +#: ../../enterprise/include/class/CommandCenter.class.php:589 +msgid "You cannot start a new merge because system is merging events data." +msgstr "" + +#: ../../enterprise/include/class/CommandCenter.class.php:597 +msgid "Press OK button to start the process" +msgstr "" + +#: ../../enterprise/include/class/CommandCenter.class.php:599 +msgid "" +"There are backups from a previous merging process, are you sure you want to " +"overwrite those backups? Press OK button to ignore this message and start " +"the process." +msgstr "" + +#: ../../enterprise/include/class/CommandCenter.class.php:647 +msgid "System is merging events..." +msgstr "" + +#: ../../enterprise/include/class/CommandCenter.class.php:654 +msgid "Already working..." +msgstr "" + +#: ../../enterprise/include/class/CommandCenter.class.php:760 +#: ../../enterprise/include/class/CommandCenter.class.php:761 +msgid "Initilize" +msgstr "" + +#: ../../enterprise/include/class/CommandCenter.class.php:866 +#: ../../enterprise/include/class/CommandCenter.class.php:1054 +msgid "Waiting" +msgstr "" + +#: ../../enterprise/include/class/CommandCenter.class.php:873 +msgid "Process detail" +msgstr "" + +#: ../../enterprise/include/class/CommandCenter.class.php:878 +msgid "Display errors" +msgstr "" + +#: ../../enterprise/include/class/CommandCenter.class.php:909 +msgid "There are no nodes to do the merge process." +msgstr "" + +#: ../../enterprise/include/class/CommandCenter.class.php:1017 +msgid "merge events" +msgstr "" + +#: ../../enterprise/include/class/CommandCenter.class.php:1060 +msgid "Retry process" +msgstr "" + +#: ../../enterprise/include/class/CommandCenter.class.php:1065 +msgid "Display events errors" +msgstr "" + +#: ../../enterprise/include/class/CommandCenter.class.php:1078 +msgid "Events History" +msgstr "" + +#: ../../enterprise/include/class/CommandCenter.class.php:1140 +msgid "merge process events" +msgstr "" + +#: ../../enterprise/include/class/ManageBackups.class.php:106 +#, php-format +msgid "%s database backup manager" +msgstr "" + +#: ../../enterprise/include/class/ManageBackups.class.php:117 +#: ../../include/class/AuditLog.class.php:145 +msgid "Admin Tools" +msgstr "" + +#: ../../enterprise/include/class/ManageBackups.class.php:121 +#: ../../enterprise/operation/menu.php:200 +msgid "DB Backup Manager" +msgstr "" + +#: ../../enterprise/include/class/ManageBackups.class.php:129 +#, php-format +msgid "" +"To schedule a periodic (or one-time) backup task you can do it through %s." +msgstr "" + +#: ../../enterprise/include/class/ManageBackups.class.php:164 +#: ../../extensions/files_repo/files_repo_list.php:57 +#: ../../godmode/events/event_responses.editor.php:130 +#: ../../include/functions_visual_map_editor.php:125 +#: ../../include/functions_visual_map_editor.php:178 +#: ../../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/functions_filemanager.php:606 +#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:119 +#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:250 +msgid "Size" +msgstr "" + +#: ../../enterprise/include/class/ManageBackups.class.php:189 +msgid "Path backups" +msgstr "" + +#: ../../enterprise/include/class/ManageBackups.class.php:314 +msgid "Rollback to this backup" +msgstr "" + +#: ../../enterprise/include/class/ManageBackups.class.php:323 +msgid "Lost" +msgstr "" + +#: ../../enterprise/include/class/ManageBackups.class.php:330 +msgid "In Progress" +msgstr "" + +#: ../../enterprise/include/class/ManageBackups.class.php:361 +msgid "The backup was successfully deleted" +msgstr "" + +#: ../../enterprise/include/class/ManageBackups.class.php:367 +msgid "Missed id parameter" +msgstr "" + +#: ../../enterprise/include/class/ManageBackups.class.php:386 +msgid "Something was wrong with the rollback action." +msgstr "" + +#: ../../enterprise/include/class/ManageBackups.class.php:389 +msgid "Missed id parameter." +msgstr "" + +#: ../../enterprise/include/class/ManageBackups.class.php:424 +#: ../../include/class/AuditLog.class.php:376 +msgid "There is no additional information to display" +msgstr "" + +#: ../../enterprise/include/class/ManageBackups.class.php:437 +msgid "" +"Are you sure you want to delete this database backup file? Once deleted you " +"will not be able to recover it." +msgstr "" + +#: ../../enterprise/include/class/ManageBackups.class.php:439 +msgid "Do you like perform a database restoration?" +msgstr "" + +#: ../../enterprise/include/functions_enterprise.php:464 +msgid "Tree view by tags" +msgstr "" + +#: ../../enterprise/include/functions_enterprise.php:494 +msgid "" +"If the interval of days until events data purge is shorter than the events " +"data history storage interval, data will be lost. It is recommended that the " +"storage frequency is higher than the purge frequency." +msgstr "" + +#: ../../enterprise/include/functions_enterprise.php:496 +msgid "" +"Problems with event days purge and event days that pass data to history DB." +msgstr "" + +#: ../../enterprise/include/functions_enterprise.php:507 +msgid "" +"If days purge is less than history days pass to history db, you will have a " +"problems and you lost data. Recommended that days purge will more taller " +"than days to history DB" +msgstr "" + +#: ../../enterprise/include/functions_enterprise.php:509 +msgid "Problems with days purge and days that pass data to history DB" +msgstr "" + +#: ../../enterprise/include/functions_reporting.php:93 +msgid "Advance options" +msgstr "" + +#: ../../enterprise/include/functions_reporting.php:117 +msgid "Templates list" +msgstr "" + +#: ../../enterprise/include/functions_reporting.php:152 +msgid "Templates Wizard" +msgstr "" + +#: ../../enterprise/include/functions_reporting.php:1233 +msgid "Availability item created from wizard." +msgstr "" + +#: ../../enterprise/include/functions_reporting.php:1855 +#: ../../enterprise/include/functions_reporting.php:2894 +#: ../../enterprise/include/functions_reporting.php:3881 +#: ../../include/functions_reporting_html.php:544 +msgid "Max/Min Values" +msgstr "" + +#: ../../enterprise/include/functions_reporting.php:1857 +#: ../../enterprise/include/functions_reporting.php:2025 +#: ../../enterprise/include/functions_reporting.php:2896 +#: ../../enterprise/include/functions_reporting.php:3883 +#: ../../enterprise/include/functions_reporting.php:6139 +#: ../../include/functions_reporting_html.php:546 +msgid "SLA Compliance" +msgstr "" + +#: ../../enterprise/include/functions_reporting.php:1897 +#: ../../enterprise/include/functions_reporting.php:2950 +#: ../../enterprise/include/functions_reporting.php:3201 +#: ../../enterprise/include/functions_reporting.php:3938 +#: ../../enterprise/include/functions_reporting.php:4202 +#: ../../enterprise/include/functions_reporting.php:4853 +#: ../../enterprise/include/functions_reporting.php:6209 +#: ../../include/functions_reporting_html.php:869 +#: ../../include/functions_reporting_html.php:4660 +msgid "Not Init" +msgstr "" + +#: ../../enterprise/include/functions_reporting.php:1904 +#: ../../enterprise/include/functions_reporting.php:2960 +#: ../../enterprise/include/functions_reporting.php:3948 +msgid "Planned Downtimes" +msgstr "" + +#: ../../enterprise/include/functions_reporting.php:1911 +msgid "Ignore time" +msgstr "" + +#: ../../enterprise/include/functions_reporting.php:1931 +msgid "SLA Compliance per days" +msgstr "" + +#: ../../enterprise/include/functions_reporting.php:2022 +msgid "Summary of SLA Failures" +msgstr "" + +#: ../../enterprise/include/functions_reporting.php:2042 +#: ../../enterprise/include/functions_reporting.php:2043 +msgid "Out of SLA limits" +msgstr "" + +#: ../../enterprise/include/functions_reporting.php:2048 +#: ../../enterprise/include/functions_reporting.php:2049 +msgid "IN of SLA limits" +msgstr "" + +#: ../../enterprise/include/functions_reporting.php:2132 +#: ../../include/functions_reports.php:926 +msgid "Log report" +msgstr "" + +#: ../../enterprise/include/functions_reporting.php:2145 +#: ../../include/functions_reports.php:925 +msgid "Log" +msgstr "" + +#: ../../enterprise/include/functions_reporting.php:2494 +#: ../../enterprise/include/functions_reporting.php:3438 +#: ../../enterprise/include/functions_reporting.php:4413 +#: ../../include/functions_reporting.php:998 +#: ../../include/functions_reporting.php:8744 +msgid "There are no SLAs defined" +msgstr "" + +#: ../../enterprise/include/functions_reporting.php:2547 +#: ../../enterprise/include/functions_reporting.php:3491 +#: ../../enterprise/include/functions_reporting.php:4466 +#: ../../include/functions_reporting.php:1073 +#: ../../include/functions_reporting.php:9122 +msgid "Inverse" +msgstr "" + +#: ../../enterprise/include/functions_reporting.php:2970 +#: ../../enterprise/include/functions_reporting.php:3211 +#: ../../enterprise/include/functions_reporting.php:3958 +msgid "Planned Downtime" +msgstr "" + +#: ../../enterprise/include/functions_reporting.php:3000 +msgid "T. Total" +msgstr "" + +#: ../../enterprise/include/functions_reporting.php:3001 +#: ../../enterprise/include/functions_reporting.php:3985 +msgid "T. OK" +msgstr "" + +#: ../../enterprise/include/functions_reporting.php:3002 +#: ../../enterprise/include/functions_reporting.php:3986 +msgid "T. Error" +msgstr "" + +#: ../../enterprise/include/functions_reporting.php:3003 +#: ../../enterprise/include/functions_reporting.php:3987 +msgid "T. Unknown" +msgstr "" + +#: ../../enterprise/include/functions_reporting.php:3004 +#: ../../enterprise/include/functions_reporting.php:3988 +msgid "T. Not_init" +msgstr "" + +#: ../../enterprise/include/functions_reporting.php:3005 +#: ../../enterprise/include/functions_reporting.php:3989 +msgid "T. Downtime" +msgstr "" + +#: ../../enterprise/include/functions_reporting.php:3006 +#: ../../enterprise/include/functions_reporting.php:3990 +msgid "SLA %" +msgstr "" + +#: ../../enterprise/include/functions_reporting.php:3196 +#: ../../enterprise/include/functions_reporting.php:4197 +#: ../../enterprise/include/functions_reporting.php:6204 +#: ../../enterprise/include/functions_services.php:1453 +#: ../../include/functions_reporting_html.php:864 +#: ../../include/functions_reporting_html.php:4655 +msgid "Unknow" +msgstr "" + +#: ../../enterprise/include/functions_reporting.php:3206 +#: ../../enterprise/include/functions_reporting.php:4207 +#: ../../enterprise/include/functions_reporting.php:6214 +#: ../../include/functions_reporting_html.php:874 +#: ../../include/functions_reporting_html.php:4665 +msgid "Downtimes" +msgstr "" + +#: ../../enterprise/include/functions_reporting.php:4212 +msgid "Ignore Planned Downtime" +msgstr "" + +#: ../../enterprise/include/functions_reporting.php:4302 +#: ../../include/functions_reports.php:712 +msgid "Hourly S.L.A." +msgstr "" + +#: ../../enterprise/include/functions_reporting.php:4905 +msgid "Max/Min Critical" +msgstr "" + +#: ../../enterprise/include/functions_reporting.php:4906 +msgid "Max/Min Warning" +msgstr "" + +#: ../../enterprise/include/functions_reporting.php:4907 +msgid "Total checks ok/total" +msgstr "" + +#: ../../enterprise/include/functions_reporting.php:4908 +msgid "% time ok" +msgstr "" + +#: ../../enterprise/include/functions_reporting.php:4926 +#: ../../include/functions_reporting_html.php:633 +#: ../../include/functions_reporting_html.php:672 +#: ../../include/functions_reporting_html.php:743 +#: ../../include/functions_reporting_html.php:821 +#: ../../include/functions_reporting_html.php:4114 +#: ../../include/functions_reporting_html.php:4261 +msgid "24 x 7" +msgstr "" + +#: ../../enterprise/include/functions_reporting.php:4966 +#: ../../include/functions_reporting_html.php:578 +msgid "Global Time" +msgstr "" + +#: ../../enterprise/include/functions_reporting.php:4968 +msgid "Time Critical" +msgstr "" + +#: ../../enterprise/include/functions_reporting.php:5061 +#: ../../include/functions_reporting_html.php:611 +msgid "Checks Time" +msgstr "" + +#: ../../enterprise/include/functions_reporting.php:5063 +msgid "Checks Critical" +msgstr "" + +#: ../../enterprise/include/functions_reporting.php:5064 +#: ../../include/functions_reporting_html.php:4038 +msgid "Checks Warning" +msgstr "" + +#: ../../enterprise/include/functions_reporting.php:5147 +#: ../../include/functions_reporting_html.php:801 +#: ../../include/functions_reporting_html.php:4303 +#: ../../include/functions_reporting_html.php:4853 +#: ../../include/functions_reporting_html.php:4856 +#: ../../include/functions_reporting.php:1643 +#: ../../include/functions_reporting.php:3345 +msgid "There are no Agent/Modules defined" +msgstr "" + +#: ../../enterprise/include/functions_reporting.php:5583 +msgid "There are no SLAs defined." +msgstr "" + +#: ../../enterprise/include/functions_reporting.php:5798 +#: ../../enterprise/include/functions_services.php:1368 +#: ../../enterprise/include/functions_services.php:1370 +#: ../../enterprise/include/functions_services.php:1404 +#: ../../enterprise/include/functions_services.php:1405 +#: ../../enterprise/include/functions_services.php:1407 +#: ../../enterprise/include/functions_services.php:1458 +#: ../../enterprise/include/functions_services.php:1460 +msgid "Nonexistent" +msgstr "" + +#: ../../enterprise/include/functions_reporting.php:6219 +msgid "Scheduled shutdow" +msgstr "" + +#: ../../enterprise/include/functions_reporting.php:6585 +#: ../../enterprise/include/functions_reporting.php:7475 +#, php-format +msgid "Graph agents(%s) - %s" +msgstr "" + +#: ../../enterprise/include/functions_reporting.php:7383 +#, php-format +msgid "Graph agent(%s) - %s" +msgstr "" + +#: ../../enterprise/include/functions_reporting.php:7830 +msgid "There is not data for the selected conditions" +msgstr "" + +#: ../../enterprise/include/functions_reporting.php:8022 +#: ../../enterprise/include/functions_reporting.php:8088 +msgid "Template editor" +msgstr "" + +#: ../../enterprise/include/functions_reporting.php:8151 +#: ../../enterprise/operation/reporting/custom_reporting.php:101 +msgid "ID Report" +msgstr "" + +#: ../../enterprise/include/functions_reporting.php:8219 +#: ../../enterprise/operation/reporting/custom_reporting.php:90 +#: ../../enterprise/operation/reporting/custom_reporting.php:164 +msgid "Send by email" +msgstr "" + +#: ../../enterprise/include/functions_reporting.php:8307 +#: ../../enterprise/operation/reporting/custom_reporting.php:200 +msgid "Send by email " +msgstr "" + +#: ../../enterprise/include/functions_reporting.php:8348 +#: ../../include/functions_reports.php:643 +msgid "Simple baseline graph" +msgstr "" + +#: ../../enterprise/include/functions_reporting.php:8518 +msgid "Configuration changes" +msgstr "" + +#: ../../enterprise/include/functions_reporting.php:8535 +msgid "No NCM capabilities detected" +msgstr "" + +#: ../../enterprise/include/functions_enterprise_api.php:1119 +msgid "Is not metaconsole" +msgstr "" + +#: ../../enterprise/include/functions_enterprise_api.php:2580 +msgid "Error getting alert actions." +msgstr "" + +#: ../../enterprise/include/functions_enterprise_api.php:3553 +#: ../../enterprise/include/functions_enterprise_api.php:3607 +#, php-format +msgid "%d agents added to apply queue." +msgstr "" + +#: ../../enterprise/include/functions_enterprise_api.php:3576 +#: ../../enterprise/include/functions_policies.php:4859 +#, php-format +msgid "Successfully applied to node %s." +msgstr "" + +#: ../../enterprise/include/functions_enterprise_api.php:3578 +#: ../../enterprise/include/functions_policies.php:4861 +#, php-format +msgid "Successfully applied to nodes: %s." +msgstr "" + +#: ../../enterprise/include/functions_enterprise_api.php:3617 +#, php-format +msgid "Id policy %d already pending to apply." +msgstr "" + +#: ../../enterprise/include/functions_enterprise_api.php:3619 +#, php-format +msgid "Id policy %d already pending to apply in Id agent %d." +msgstr "" + +#: ../../enterprise/include/functions_enterprise_api.php:4039 +#: ../../enterprise/include/functions_enterprise_api.php:4066 +msgid "" +"Error adding web analysis module to policy. Id_module_type is not correct " +"for web analysis modules." +msgstr "" + +#: ../../enterprise/include/functions_enterprise_api.php:4048 +msgid "" +"Network Module could not be added to policy. Id_module_type is not correct " +"for network modules." +msgstr "" + +#: ../../enterprise/include/functions_enterprise_api.php:4057 +msgid "" +"Error adding web module to policy. Id_module_type is not correct for web " +"modules." +msgstr "" + +#: ../../enterprise/include/functions_enterprise_api.php:4078 +msgid "Error adding module to policy configuration_data is not a valid base64." +msgstr "" + +#: ../../enterprise/include/functions_enterprise_api.php:6079 +msgid "The agent could not be added to the policy." +msgstr "" + +#: ../../enterprise/include/functions_enterprise_api.php:6296 +#, php-format +msgid "Failed Updated remote config files %d" +msgstr "" + +#: ../../enterprise/include/functions_enterprise_api.php:6306 +#, php-format +msgid "Updated remote config files: %d => %d" +msgstr "" + +#: ../../enterprise/include/functions_services.php:108 +msgid "There is no information about" +msgstr "" + +#: ../../enterprise/include/functions_services.php:113 +msgid "Service does not exist." +msgstr "" + +#: ../../enterprise/include/functions_services.php:125 +msgid "module that stores the service" +msgstr "" + +#: ../../enterprise/include/functions_services.php:137 +msgid "module that stores SLA service" +msgstr "" + +#: ../../enterprise/include/functions_services.php:150 +msgid "agent that stores the service" +msgstr "" + +#: ../../enterprise/include/functions_services.php:163 +msgid "agent that stores SLA service" +msgstr "" + +#: ../../enterprise/include/functions_services.php:184 +msgid "alert critical SLA service" +msgstr "" + +#: ../../enterprise/include/functions_services.php:205 +msgid "alert warning service" +msgstr "" + +#: ../../enterprise/include/functions_services.php:226 +msgid "alert critical service" +msgstr "" + +#: ../../enterprise/include/functions_services.php:247 +msgid "alert unknown service" +msgstr "" + +#: ../../enterprise/include/functions_services.php:528 +#, php-format +msgid "Module automatic create for the service %s" +msgstr "" + +#: ../../enterprise/include/functions_services.php:1432 +msgid "Normal (Alert)" +msgstr "" + +#: ../../enterprise/include/functions_services.php:1436 +msgid "Critical (Alert)" +msgstr "" + +#: ../../enterprise/include/functions_services.php:1444 +msgid "Warning (Alert)" +msgstr "" + +#: ../../enterprise/include/functions_services.php:1582 +msgid "There are no service elements defined" +msgstr "" + +#: ../../enterprise/include/functions_services.php:1606 +msgid "Weight Critical" +msgstr "" + +#: ../../enterprise/include/functions_services.php:1607 +msgid "Weight Warning" +msgstr "" + +#: ../../enterprise/include/functions_services.php:1608 +msgid "Weight Unknown" +msgstr "" + +#: ../../enterprise/include/functions_services.php:1609 +msgid "Weight Ok" +msgstr "" + +#: ../../enterprise/include/functions_services.php:1672 +#: ../../enterprise/include/functions_services.php:1717 +#: ../../enterprise/include/functions_services.php:1785 +msgid "Nonexistent. This element should be deleted" +msgstr "" + +#: ../../enterprise/include/functions_services.php:1700 +#: ../../enterprise/include/functions_services.php:1767 +#: ../../enterprise/include/functions_services.php:1813 +msgid "This element does not affect service weigth because is disabled." +msgstr "" + +#: ../../enterprise/include/functions_services.php:1828 +#, php-format +msgid "Dynamic element (%d) '%s' does not match any target" +msgstr "" + +#: ../../enterprise/include/functions_services.php:1837 +#, php-format +msgid "Dynamic element (%d) '%s' causes an error: %s" +msgstr "" + +#: ../../enterprise/include/functions_services.php:1849 +msgid "Dynamic element" +msgstr "" + +#: ../../enterprise/include/functions_services.php:1855 +#, php-format +msgid "agents like \"%s\"" +msgstr "" + +#: ../../enterprise/include/functions_services.php:1860 +#, php-format +msgid "modules like \"%s\"" +msgstr "" + +#: ../../enterprise/include/functions_services.php:1993 +msgid "NOT INITIALIZED" +msgstr "" + +#: ../../enterprise/include/functions_services.php:2027 +msgid "Delete service element" +msgstr "" + +#: ../../enterprise/include/functions_services.php:2086 +msgid "FAIL" +msgstr "" + +#: ../../enterprise/include/functions_login.php:22 +msgid "You must change password:" +msgstr "" + +#: ../../enterprise/include/functions_login.php:38 +msgid "Password must be different from the 3 previous changes." +msgstr "" + +#: ../../enterprise/include/functions_login.php:50 +msgid "Old pass: " +msgstr "" + +#: ../../enterprise/include/functions_login.php:53 +msgid "New pass: " +msgstr "" + +#: ../../enterprise/include/functions_login.php:57 +msgid "Confirm: " +msgstr "" + +#: ../../enterprise/include/functions_login.php:63 +msgid "Change" +msgstr "" + +#: ../../enterprise/include/functions_login.php:97 +msgid "Login blocked" +msgstr "" + +#: ../../enterprise/include/functions_login.php:105 +msgid "User has been blocked. Try again in " +msgstr "" + +#: ../../enterprise/include/functions_login.php:105 +msgid " minutes" +msgstr "" + +#: ../../enterprise/include/functions_login.php:138 +msgid "Login successfully" +msgstr "" + +#: ../../enterprise/include/functions_login.php:146 +msgid "User pass successfully updated" +msgstr "" + +#: ../../enterprise/include/functions_login.php:252 +msgid "Password must be different from the " +msgstr "" + +#: ../../enterprise/include/functions_login.php:252 +msgid " previous changes." +msgstr "" + +#: ../../enterprise/include/functions_login.php:265 +msgid "Password must be different" +msgstr "" + +#: ../../enterprise/include/functions_login.php:276 +msgid "Password too short" +msgstr "" + +#: ../../enterprise/include/functions_login.php:288 +msgid "Password must contain numbers" +msgstr "" + +#: ../../enterprise/include/functions_login.php:301 +msgid "Password must contain symbols" +msgstr "" + +#: ../../enterprise/include/functions_login.php:324 +msgid "Invalid old password" +msgstr "" + +#: ../../enterprise/include/functions_login.php:361 +msgid "Password confirm does not match" +msgstr "" + +#: ../../enterprise/include/functions_login.php:368 +msgid "Password empty" +msgstr "" + +#: ../../enterprise/include/functions_login.php:485 +#: ../../godmode/users/configure_user.php:1792 +#: ../../godmode/users/configure_user.php:1862 +#: ../../godmode/users/configure_user.php:1934 +#: ../../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:1061 +#: ../../operation/users/user_edit.php:1127 +#: ../../operation/users/user_edit.php:1198 ../../general/register.php:154 +#: ../../general/logon_failed.php:18 +msgid "Authentication error" +msgstr "" + +#: ../../enterprise/include/functions_login.php:492 +#: ../../godmode/users/configure_user.php:1799 +#: ../../godmode/users/configure_user.php:1869 +#: ../../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:1068 +#: ../../operation/users/user_edit.php:1134 ../../general/register.php:161 +msgid "There was an error loading the data" +msgstr "" + +#: ../../enterprise/include/functions_login.php:501 +#: ../../godmode/users/configure_user.php:1877 +#: ../../godmode/users/configure_user.php:1955 +#: ../../operation/users/user_edit.php:1142 +#: ../../operation/users/user_edit.php:1218 ../../general/register.php:170 +msgid "Double autentication activation" +msgstr "" + +#: ../../enterprise/include/lib/Agent.php:99 +msgid " error, invalid agent." +msgstr "" + +#: ../../enterprise/include/lib/Agent.php:674 +#, php-format +msgid "Log module \"%s\" does not exist" +msgstr "" + +#: ../../enterprise/include/lib/Agent.php:696 +#, php-format +msgid "Plugin \"%s\" does not exist" +msgstr "" + +#: ../../enterprise/include/lib/Agent.php:828 +#, php-format +msgid "Log module \"%s\" does not exist, %s skipped" +msgstr "" + +#: ../../enterprise/include/lib/Agent.php:863 +#, php-format +msgid "Plugin \"%s\" does not exist, %s skipped" +msgstr "" + +#: ../../enterprise/include/lib/Agent.php:934 +#, php-format +msgid "Log module %s already defined" +msgstr "" + +#: ../../enterprise/include/lib/Agent.php:951 +#, php-format +msgid "Invalid module type %s" +msgstr "" + +#: ../../enterprise/include/lib/Agent.php:981 +#, php-format +msgid "Plugin %s already defined" +msgstr "" + +#: ../../enterprise/include/lib/Agent.php:995 +msgid "Invalid plugin definition" +msgstr "" + +#: ../../enterprise/include/lib/NetworkManager.php:82 +#: ../../godmode/setup/setup_ehorus.php:111 +#: ../../godmode/setup/setup_integria.php:566 +#: ../../operation/users/user_edit.php:711 +#: ../../operation/users/user_edit.php:757 +msgid "Test" +msgstr "" + +#: ../../enterprise/include/lib/NetworkManager.php:83 +msgid "Retrieve config" +msgstr "" + +#: ../../enterprise/include/lib/NetworkManager.php:84 +msgid "Restore backed up config" +msgstr "" + +#: ../../enterprise/include/lib/NetworkManager.php:86 +msgid "Send firmware" +msgstr "" + +#: ../../enterprise/include/lib/NetworkManager.php:88 +#: ../../godmode/setup/setup_general.php:408 +msgid "On demand" +msgstr "" + +#: ../../enterprise/include/lib/NetworkManager.php:93 +msgid "Executing test" +msgstr "" + +#: ../../enterprise/include/lib/NetworkManager.php:94 +msgid "Retrieving config" +msgstr "" + +#: ../../enterprise/include/lib/NetworkManager.php:95 +msgid "Restoring backup" +msgstr "" + +#: ../../enterprise/include/lib/NetworkManager.php:96 +msgid "Retrieving firmware version" +msgstr "" + +#: ../../enterprise/include/lib/NetworkManager.php:97 +msgid "Sending firmware update" +msgstr "" + +#: ../../enterprise/include/lib/NetworkManager.php:98 +msgid "Executing custom script" +msgstr "" + +#: ../../enterprise/include/lib/NetworkManager.php:99 +msgid "Executing on demand script" +msgstr "" + +#: ../../enterprise/include/lib/NetworkManager.php:186 +msgid "Montly" +msgstr "" + +#: ../../enterprise/include/lib/AlertCorrelation.class.php:838 +#: ../../enterprise/include/lib/AlertCorrelation.class.php:852 +msgid "There was a problem creating Action" +msgstr "" + +#: ../../enterprise/include/lib/AlertCorrelation.class.php:889 +#: ../../enterprise/include/lib/AlertCorrelation.class.php:902 +msgid "There was a problem updating Action" +msgstr "" + +#: ../../enterprise/include/lib/AlertCorrelation.class.php:938 +#: ../../enterprise/include/lib/AlertCorrelation.class.php:952 +msgid "There was a problem deleting Action" +msgstr "" + +#: ../../enterprise/include/lib/AlertCorrelation.class.php:993 +msgid "There was a problem standby alert" +msgstr "" + +#: ../../enterprise/include/lib/AlertCorrelation.class.php:1002 +msgid "There was a problem standby off alert" +msgstr "" + +#: ../../enterprise/include/lib/AlertCorrelation.class.php:1045 +msgid "There was a problem enabled alert" +msgstr "" + +#: ../../enterprise/include/lib/AlertCorrelation.class.php:1055 +msgid "There was a problem disabled alert" +msgstr "" + +#: ../../enterprise/include/lib/AlertCorrelation.class.php:1111 +msgid "Event group Recursive" +msgstr "" + +#: ../../enterprise/include/lib/AlertCorrelation.class.php:1126 +#: ../../include/functions_reporting_html.php:1047 +#: ../../include/functions_reporting_html.php:1313 +#: ../../include/functions_reporting_html.php:2422 +#: ../../operation/snmpconsole/snmp_view.php:865 +msgid "Count" +msgstr "" + +#: ../../enterprise/include/lib/AlertCorrelation.class.php:1129 +msgid "Time window" +msgstr "" + +#: ../../enterprise/include/lib/AlertCorrelation.class.php:1663 +msgid "Failed to cleanup old rules." +msgstr "" + +#: ../../enterprise/include/lib/AlertCorrelation.class.php:1671 +#, php-format +msgid "Failed SQL: %s" +msgstr "" + +#: ../../enterprise/include/lib/AlertCorrelation.class.php:1676 +#, php-format +msgid "Failed to apply rule: %s." +msgstr "" + +#: ../../enterprise/include/lib/AlertCorrelation.class.php:1824 +msgid "any" +msgstr "" + +#: ../../enterprise/include/lib/NetworkManager/NetworkAgent.php:197 +msgid "No template assigned" +msgstr "" + +#: ../../enterprise/include/lib/NetworkManager/NetworkAgent.php:227 +msgid "NCM Agent without template assigned." +msgstr "" + +#: ../../enterprise/include/lib/NetworkManager/NetworkAgent.php:233 +msgid "Current selected template does not match vendor configured." +msgstr "" + +#: ../../enterprise/include/lib/NetworkManager/NetworkAgent.php:240 +msgid "Current selected template does not match model configured." +msgstr "" + +#: ../../enterprise/include/lib/NetworkManager/NetworkAgent.php:549 +#: ../../enterprise/include/lib/NetworkManager/NetworkAgent.php:579 +#, php-format +msgid "No %s script available for this agent, check template %s" +msgstr "" + +#: ../../enterprise/include/lib/NetworkManager/Template.php:192 +msgid "Error linking script: " +msgstr "" + +#: ../../enterprise/include/lib/ClusterViewer/ClusterManager.php:224 +msgid "Cluster not found: " +msgstr "" + +#: ../../enterprise/include/lib/ClusterViewer/ClusterManager.php:233 +msgid "Cluster agent not found: " +msgstr "" + +#: ../../enterprise/include/lib/ClusterViewer/ClusterManager.php:270 +#, php-format +msgid "Error while deleting, reason: %s" +msgstr "" + +#: ../../enterprise/include/lib/ClusterViewer/ClusterManager.php:278 +msgid "Cluster successfully deleted." +msgstr "" + +#: ../../enterprise/include/lib/ClusterViewer/ClusterManager.php:304 +#, php-format +msgid "Error while forcing, reason: %s" +msgstr "" + +#: ../../enterprise/include/lib/ClusterViewer/ClusterManager.php:312 +msgid "Cluster successfully forced." +msgstr "" + +#: ../../enterprise/include/lib/ClusterViewer/ClusterManager.php:568 +msgid "Not set" +msgstr "" + +#: ../../enterprise/include/lib/ClusterViewer/ClusterManager.php:578 +msgid "Active-Active" +msgstr "" + +#: ../../enterprise/include/lib/ClusterViewer/ClusterManager.php:580 +msgid "Active-Passive" +msgstr "" + +#: ../../enterprise/include/lib/ClusterViewer/ClusterWizard.php:182 +msgid "Cluster already defined, please use another name." +msgstr "" + +#: ../../enterprise/include/lib/ClusterViewer/ClusterWizard.php:779 +msgid "Cluster name" +msgstr "" + +#: ../../enterprise/include/lib/ClusterViewer/ClusterWizard.php:780 +msgid "" +"An agent with the same name of the cluster will be created, as well a " +"special service with the same name" +msgstr "" + +#: ../../enterprise/include/lib/ClusterViewer/ClusterWizard.php:794 +msgid "Cluster type" +msgstr "" + +#: ../../enterprise/include/lib/ClusterViewer/ClusterWizard.php:795 +msgid "" +"AA is a cluster where all members are working. In AP cluster only master " +"member is working" +msgstr "" + +#: ../../enterprise/include/lib/ClusterViewer/ClusterWizard.php:803 +msgid "Active - Active" +msgstr "" + +#: ../../enterprise/include/lib/ClusterViewer/ClusterWizard.php:804 +msgid "Active - Pasive" +msgstr "" + +#: ../../enterprise/include/lib/ClusterViewer/ClusterWizard.php:824 +msgid "Target cluster agent will be stored under this group" +msgstr "" + +#: ../../enterprise/include/lib/ClusterViewer/ClusterWizard.php:841 +msgid "" +"You must select a Prediction Server to perform all cluster status " +"calculations" +msgstr "" + +#: ../../enterprise/include/lib/ClusterViewer/ClusterWizard.php:1016 +msgid "critical if" +msgstr "" + +#: ../../enterprise/include/lib/ClusterViewer/ClusterWizard.php:1025 +#: ../../enterprise/include/lib/ClusterViewer/ClusterWizard.php:1048 +#, php-format +msgid "% of balanced modules are down (equal or greater)." +msgstr "" + +#: ../../enterprise/include/lib/ClusterViewer/ClusterWizard.php:1063 +msgid "Please, set threholds for all active-active modules" +msgstr "" + +#: ../../enterprise/include/lib/ClusterViewer/ClusterWizard.php:1167 +msgid "Please, check all active-passive modules critical for this cluster" +msgstr "" + +#: ../../enterprise/include/lib/ClusterViewer/ClusterWizard.php:1169 +msgid "" +"If a critical balanced module is going to critical status, then cluster will " +"be critical." +msgstr "" + +#: ../../enterprise/include/lib/Service.php:152 +msgid "Service module does not match pointed one" +msgstr "" + +#: ../../enterprise/include/lib/Service.php:158 +#, php-format +msgid "Service module not found %s
    " +msgstr "" + +#: ../../enterprise/include/lib/Service.php:177 +msgid "Service module SLA not found" +msgstr "" + +#: ../../enterprise/include/lib/Service.php:183 +#, php-format +msgid "SLA service module not found %s
    " +msgstr "" + +#: ../../enterprise/include/lib/Service.php:202 +msgid "Service module SLA does not match pointed one" +msgstr "" + +#: ../../enterprise/include/lib/Service.php:208 +#, php-format +msgid "SLA service value module not found %s
    " +msgstr "" + +#: ../../enterprise/include/lib/Service.php:221 +#, php-format +msgid "Service agent not found %s
    " +msgstr "" + +#: ../../enterprise/include/lib/Service.php:232 +#, php-format +msgid "Service children could not be fully retrieved: %s
    " +msgstr "" + +#: ../../enterprise/include/lib/Service.php:313 +msgid "" +" Cannot switch from SMART to MANUAL if there are dynamic elements attached " +"to the service. Please erase dynamic elements before change to MANUAL" +msgstr "" + +#: ../../enterprise/include/lib/Service.php:397 +#: ../../enterprise/include/lib/Service.php:740 +#: ../../enterprise/include/lib/Service.php:921 +#: ../../enterprise/include/lib/Metaconsole/Node.php:1353 +#: ../../enterprise/include/lib/Metaconsole/Synchronizer.php:402 +#: ../../enterprise/include/lib/ServiceElement.php:390 +#: ../../enterprise/include/lib/ServiceElement.php:921 +#: ../../enterprise/include/lib/ServiceElement.php:963 +#: ../../enterprise/include/lib/ServiceElement.php:1005 +#: ../../enterprise/include/lib/ServiceElement.php:1111 +#: ../../enterprise/include/lib/ServiceElement.php:1153 +#: ../../include/lib/Agent.php:349 ../../include/lib/Module.php:1172 +#: ../../include/lib/Entity.php:303 +#, php-format +msgid "Cannot connect to node %d" +msgstr "" + +#: ../../enterprise/include/lib/Service.php:777 +#, php-format +msgid "Failed to update CPS for moduleValue for service %s: " +msgstr "" + +#: ../../enterprise/include/lib/Service.php:1445 +msgid "Error: id agent must be defined." +msgstr "" + +#: ../../enterprise/include/lib/Service.php:1533 +msgid " error: Target agent does not exist." +msgstr "" + +#: ../../enterprise/include/lib/Core/SSH.php:163 +msgid "php-ssh2 not available" +msgstr "" + +#: ../../enterprise/include/lib/Core/SSH.php:184 +msgid "Failed to connect" +msgstr "" + +#: ../../enterprise/include/lib/Core/SSH.php:239 +#, php-format +msgid "Unable to open public key file %s" +msgstr "" + +#: ../../enterprise/include/lib/Core/SSH.php:257 +msgid "Failed to login to target" +msgstr "" + +#: ../../enterprise/include/lib/Metaconsole/Node.php:144 +msgid "auth error." +msgstr "" + +#: ../../enterprise/include/lib/Metaconsole/Node.php:148 +msgid "connection error." +msgstr "" + +#: ../../enterprise/include/lib/Metaconsole/Node.php:152 +msgid "could not resolve the host." +msgstr "" + +#: ../../enterprise/include/lib/Metaconsole/Node.php:156 +#: ../../enterprise/include/lib/Metaconsole/Node.php:205 +#: ../../enterprise/include/lib/Metaconsole/Node.php:252 +#: ../../enterprise/include/lib/Metaconsole/Node.php:457 +msgid "unknown error." +msgstr "" + +#: ../../enterprise/include/lib/Metaconsole/Node.php:193 +msgid "missing credentials." +msgstr "" + +#: ../../enterprise/include/lib/Metaconsole/Node.php:197 +msgid "cannot connect to host." +msgstr "" + +#: ../../enterprise/include/lib/Metaconsole/Node.php:201 +msgid "database does not exist." +msgstr "" + +#: ../../enterprise/include/lib/Metaconsole/Node.php:244 +msgid "failed to connect to node database." +msgstr "" + +#: ../../enterprise/include/lib/Metaconsole/Node.php:248 +msgid "MR version mistmatch." +msgstr "" + +#: ../../enterprise/include/lib/Metaconsole/Node.php:288 +msgid "agent cache failed" +msgstr "" + +#: ../../enterprise/include/lib/Metaconsole/Node.php:292 +#: ../../enterprise/include/lib/Metaconsole/Node.php:353 +msgid "unknown error" +msgstr "" + +#: ../../enterprise/include/lib/Metaconsole/Node.php:341 +msgid "node is not recognized as metaconsole node." +msgstr "" + +#: ../../enterprise/include/lib/Metaconsole/Node.php:345 +msgid "node license missmatch." +msgstr "" + +#: ../../enterprise/include/lib/Metaconsole/Node.php:349 +msgid "cannot connect to node" +msgstr "" + +#: ../../enterprise/include/lib/Metaconsole/Node.php:381 +msgid "Database is up to date with this Metaconsole" +msgstr "" + +#: ../../enterprise/include/lib/Metaconsole/Node.php:391 +msgid "Node not found" +msgstr "" + +#: ../../enterprise/include/lib/Metaconsole/Node.php:396 +#, php-format +msgid "" +"There are %d queries pending to be applied, click in the eye to see results" +msgstr "" + +#: ../../enterprise/include/lib/Metaconsole/Node.php:405 +msgid "Database synchronization state and pending tasks" +msgstr "" + +#: ../../enterprise/include/lib/Metaconsole/Node.php:540 +msgid "Operation and table" +msgstr "" + +#: ../../enterprise/include/lib/Metaconsole/Node.php:655 +#, php-format +msgid "" +"Failed synchronizing %s, please check node PHP configuration issues and " +"collection max sizes" +msgstr "" + +#: ../../enterprise/include/lib/Metaconsole/Node.php:1173 +msgid "" +"The elimination of this node will lead to the suppression of its agents from " +"metaconsole and all the configuration assigned to them. " +msgstr "" + +#: ../../enterprise/include/lib/Metaconsole/Node.php:1177 +msgid "The rules for this node may stop working. " +msgstr "" + +#: ../../enterprise/include/lib/Metaconsole/Node.php:1181 +msgid "" +"The deleted node will lose its license, and you must license it manually " +"again. " +msgstr "" + +#: ../../enterprise/include/lib/Metaconsole/Node.php:1685 +#, php-format +msgid "Failed to overwrite node data: %s" +msgstr "" + +#: ../../enterprise/include/lib/Metaconsole/Node.php:1703 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2926 +msgid "Final step" +msgstr "" + +#: ../../enterprise/include/lib/Metaconsole/Node.php:1704 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2927 +msgid "Database merged" +msgstr "" + +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:171 +msgid "Activating node" +msgstr "" + +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:205 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:361 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:670 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:797 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:1068 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:1162 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:1514 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:1811 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2180 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:3104 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:3385 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:3539 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:3614 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:3913 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:4129 +msgid "Connect node" +msgstr "" + +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:577 +msgid "Create table tmerge_error" +msgstr "" + +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:603 +msgid "Create table tmerge_steps" +msgstr "" + +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:628 +msgid "Create table tmerge_queries" +msgstr "" + +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:769 +#, php-format +msgid "%s console" +msgstr "" + +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:774 +msgid "Check cron task" +msgstr "" + +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:775 +msgid "Please login into this node before using this feature" +msgstr "" + +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:857 +msgid "memory_limit current value" +msgstr "" + +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:864 +msgid "" +"Check current packages, all nodes and metaconsole, are not in the same " +"version" +msgstr "" + +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:876 +msgid "Check Minor release, All nodes and metaconsole, do not have the same mr" +msgstr "" + +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:888 +msgid "Max size collection, all nodes and metaconsole, are not equal" +msgstr "" + +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:913 +#, php-format +msgid "" +"Post max size, nodes cannot be smaller than the size of the metaconsole %s" +msgstr "" + +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:928 +#, 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:990 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:1006 +msgid "Problems with the backup directory" +msgstr "" + +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:991 +msgid "Cannot create \"merge_backups\" folder in attachment directory" +msgstr "" + +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:1007 +msgid "The \"merge_backpus\" directory does not have the correct permissions" +msgstr "" + +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:1017 +msgid "Extension ZIP" +msgstr "" + +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:1018 +msgid "The ZIP extension is not loaded, please install this dependency" +msgstr "" + +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:1119 +msgid "Inserts backups, disable foreings keys, exceptions in tmerge_queries" +msgstr "" + +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:1145 +msgid "" +"Resets foreing keys and exceptions and ends the merge preparation process" +msgstr "" + +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:1192 +msgid "Enable exceptions in tmerge_queries" +msgstr "" + +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:1216 +msgid "Enable foreing keys in tmerge_queries" +msgstr "" + +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:1495 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:1780 +msgid "Preparation of all nodes for the table merge process" +msgstr "" + +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:1571 +msgid "This table does not have the id" +msgstr "" + +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:1572 +msgid "Prepare merge request" +msgstr "" + +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:1898 +msgid "Inserts truncate, autoincrement and inserts in tmerge_queries" +msgstr "" + +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2068 +msgid "Inserts updates in tmerge_queries" +msgstr "" + +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2105 +msgid "Merging collections files" +msgstr "" + +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2161 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2307 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2478 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:3091 +#, php-format +msgid "Api call: %s" +msgstr "" + +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2219 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2220 +msgid "Problems while backing up collections from: " +msgstr "" + +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2237 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2241 +#, php-format +msgid "Problems downloading collections from %s" +msgstr "" + +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2253 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2257 +#, php-format +msgid "Problems unzipping collection file from %s" +msgstr "" + +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2536 +msgid "Start phase merge" +msgstr "" + +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2548 +msgid "Create backups" +msgstr "" + +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2616 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2617 +msgid "Problems creating the backup conf agents" +msgstr "" + +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2627 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2865 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:3235 +msgid "Class agent" +msgstr "" + +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2651 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2663 +msgid "Disable_foreing" +msgstr "" + +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2675 +msgid "Truncate table" +msgstr "" + +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2693 +msgid "Autoincrement" +msgstr "" + +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2705 +msgid "Inserts" +msgstr "" + +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2723 +msgid "Disabling constraints" +msgstr "" + +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2741 +msgid "Updates" +msgstr "" + +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2764 +msgid "Restoring constraints" +msgstr "" + +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2782 +msgid "Enable exceptions" +msgstr "" + +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2800 +msgid "Enable foreings keys" +msgstr "" + +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2817 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2818 +msgid "Update conf agent policies" +msgstr "" + +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2854 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2855 +msgid "Error updating agent conf" +msgstr "" + +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2876 +msgid "Synchronizing collections" +msgstr "" + +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2888 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2889 +msgid "Error synchronizing collections" +msgstr "" + +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2985 +msgid "Problems unzipping collections at: " +msgstr "" + +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2986 +#, php-format +msgid "File is not a valid zip file \"%s\"" +msgstr "" + +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:3144 +msgid "Restoring database backup" +msgstr "" + +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:3170 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:4394 +msgid "Problems creating the backup" +msgstr "" + +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:3183 +msgid "Restore backups conf agents" +msgstr "" + +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:3220 +msgid "Problems restoring the backup conf agents" +msgstr "" + +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:3222 +#, php-format +msgid "Agent \"%s\" with md5 file \"%s\"" +msgstr "" + +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:3248 +msgid "Restore collections" +msgstr "" + +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:3263 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:3264 +msgid "Error Synch collections" +msgstr "" + +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:3481 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:3721 +msgid "Insert info steps" +msgstr "" + +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:3646 +msgid "Node not ready" +msgstr "" + +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:3647 +msgid "Pending to be unified" +msgstr "" + +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:3880 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:3885 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:3937 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:3942 +msgid "Initialize" +msgstr "" + +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:4076 +msgid "Backup" +msgstr "" + +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:4106 +msgid "Applying" +msgstr "" + +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:4325 +msgid "Error updating events" +msgstr "" + +#: ../../enterprise/include/lib/RCMDFile.class.php:203 +msgid "You do not have grants to access this feature" +msgstr "" + +#: ../../enterprise/include/lib/RCMDFile.class.php:548 +msgid "There was a problem creating RCMD" +msgstr "" + +#: ../../enterprise/include/lib/RCMDFile.class.php:693 +#: ../../enterprise/include/lib/RCMDFile.class.php:717 +msgid "There was a problem deleting RCMD" +msgstr "" + +#: ../../enterprise/include/lib/RCMDFile.class.php:865 +msgid "No agent configuration file" +msgstr "" + +#: ../../enterprise/include/lib/RCMDFile.class.php:873 +msgid "you don't have write permissions in the configuration file" +msgstr "" + +#: ../../enterprise/include/lib/RCMDFile.class.php:914 +msgid "This agent is already a target" +msgstr "" + +#: ../../enterprise/include/lib/RCMDFile.class.php:945 +#, php-format +msgid "You do not have grants to access in this agent %s" +msgstr "" + +#: ../../enterprise/include/lib/RCMDFile.class.php:1011 +msgid "There was a problem creating RCMD files" +msgstr "" + +#: ../../enterprise/include/lib/RCMDFile.class.php:1058 +msgid "There was a problem creating target" +msgstr "" + +#: ../../enterprise/include/lib/RCMDFile.class.php:1092 +msgid "There was a problem adding items in the configuration file" +msgstr "" + +#: ../../enterprise/include/lib/RCMDFile.class.php:1118 +#: ../../enterprise/include/lib/RCMDFile.class.php:1285 +msgid "No agent has been selected" +msgstr "" + +#: ../../enterprise/include/lib/RCMDFile.class.php:1151 +msgid "Target doesn't exist" +msgstr "" + +#: ../../enterprise/include/lib/RCMDFile.class.php:1223 +msgid "There was a problem deleting tokens in the configuration file" +msgstr "" + +#: ../../enterprise/include/lib/RCMDFile.class.php:1259 +msgid "There was a problem deleting target from DB" +msgstr "" + +#: ../../enterprise/include/lib/RCMDFile.class.php:1417 +msgid "Yaml is empty" +msgstr "" + +#: ../../enterprise/include/lib/RCMDFile.class.php:1426 +msgid "Doesn't have a valid YAML format" +msgstr "" + +#: ../../enterprise/include/lib/RCMDFile.class.php:1444 +#, php-format +msgid "%s field is not allowed" +msgstr "" + +#: ../../enterprise/include/lib/Policy/Inventory.php:156 +#, php-format +msgid "inventory module already registered: \"%d\"" +msgstr "" + +#: ../../enterprise/include/lib/Policy/Inventory.php:181 +#, php-format +msgid "Failed to update, already exists: \"%d\"" +msgstr "" + +#: ../../enterprise/include/lib/Policy/Module.php:201 +#: ../../enterprise/include/lib/Policy.php:1196 +#: ../../include/lib/Module.php:805 +#, php-format +msgid "Module already exists: \"%s\"" +msgstr "" + +#: ../../enterprise/include/lib/Policy/Module.php:227 +#, php-format +msgid "Failed to update: \"%s\"" +msgstr "" + +#: ../../enterprise/include/lib/Policy/Queue.php:378 +#, php-format +msgid "Already queued in %s" +msgstr "" + +#: ../../enterprise/include/lib/ServiceElement.php:611 +#, php-format +msgid "This filters will cause slowdown on server (%s ms)" +msgstr "" + +#: ../../enterprise/include/lib/ServiceElement.php:625 +#, php-format +msgid "Regular expression is not valid: %s." +msgstr "" + +#: ../../enterprise/include/lib/ServiceElement.php:864 +#, php-format +msgid " error while decoding rules: %s" +msgstr "" + +#: ../../enterprise/include/lib/ServiceElement.php:1271 +#, php-format +msgid " error: Failed to delete element: %s" +msgstr "" + +#: ../../enterprise/include/lib/Policy.php:281 +#, php-format +msgid "Invalid operation %s" +msgstr "" + +#: ../../enterprise/include/lib/Policy.php:1171 +#, php-format +msgid "Policy already defined: \"%s\"" +msgstr "" + +#: ../../enterprise/include/functions_events.php:40 +#: ../../godmode/events/event_filter.php:139 +#: ../../godmode/events/event_edit_filter.php:355 +#: ../../include/lib/Dashboard/Widgets/events_list.php:389 +#: ../../operation/events/events.php:1607 +#: ../../operation/events/events.php:2181 +msgid "Event status" +msgstr "" + +#: ../../enterprise/include/functions_events.php:101 +#: ../../godmode/events/event_edit_filter.php:419 +#: ../../operation/events/events.php:1833 +msgid "User ack." +msgstr "" + +#: ../../enterprise/include/functions_events.php:111 +#: ../../godmode/events/event_edit_filter.php:454 +msgid "Date from" +msgstr "" + +#: ../../enterprise/include/functions_events.php:121 +#: ../../godmode/events/event_edit_filter.php:457 +msgid "Date to" +msgstr "" + +#: ../../enterprise/include/functions_events.php:131 +#: ../../godmode/events/event_edit_filter.php:443 +#: ../../mobile/operation/events.php:816 +#: ../../include/functions_events.php:4573 +#: ../../operation/events/events.php:1638 +msgid "Repeated" +msgstr "" + +#: ../../enterprise/include/functions_events.php:141 +#: ../../godmode/events/event_edit_filter.php:603 +#: ../../operation/events/events.php:1856 +msgid "Alert events" +msgstr "" + +#: ../../enterprise/include/functions_events.php:152 +msgid "Id source events" +msgstr "" + +#: ../../enterprise/include/functions_events.php:162 +#: ../../godmode/events/event_edit_filter.php:409 +#: ../../mobile/operation/events.php:997 ../../include/functions_snmp.php:401 +#: ../../include/class/AuditLog.class.php:187 +#: ../../include/lib/Dashboard/Widgets/events_list.php:347 +#: ../../include/lib/Dashboard/Widgets/top_n_events_by_module.php:270 +#: ../../include/lib/Dashboard/Widgets/top_n_events_by_group.php:270 +#: ../../operation/snmpconsole/snmp_view.php:616 +#: ../../operation/events/events.php:1620 +#: ../../operation/events/events.php:2211 +msgid "Max. hours old" +msgstr "" + +#: ../../enterprise/include/functions_events.php:178 +#: ../../enterprise/include/functions_events.php:200 +msgid "More than 5 tags" +msgstr "" + +#: ../../enterprise/include/functions_events.php:184 +#: ../../godmode/events/event_edit_filter.php:498 +#: ../../operation/events/events.php:2052 +#: ../../operation/events/events.php:2055 +msgid "Events with following tags" +msgstr "" + +#: ../../enterprise/include/functions_events.php:206 +#: ../../godmode/events/event_edit_filter.php:551 +#: ../../operation/events/events.php:2053 +#: ../../operation/events/events.php:2056 +msgid "Events without following tags" +msgstr "" + +#: ../../enterprise/include/functions_events.php:224 +#: ../../include/functions_snmp.php:441 +msgid "Active filter" +msgstr "" + +#: ../../enterprise/include/functions_events.php:224 +#: ../../include/functions_snmp.php:441 +msgid "Active filters" +msgstr "" + +#: ../../enterprise/include/functions_metaconsole.php:2827 +msgid "Agent alerts action does not exist in target node" +msgstr "" + +#: ../../enterprise/include/functions_metaconsole.php:2834 +msgid "Agent alerts template does not exist in target node" +msgstr "" + +#: ../../enterprise/include/functions_metaconsole.php:2841 +msgid "Agent inventory does not exist in target node" +msgstr "" + +#: ../../enterprise/include/functions_metaconsole.php:2848 +msgid "Exists agent conf please remove configuration file from target node." +msgstr "" + +#: ../../enterprise/include/functions_metaconsole.php:2855 +msgid "Agent collections does not exist in target node" +msgstr "" + +#: ../../enterprise/include/functions_metaconsole.php:2862 +msgid "Agent plugins does not exist in target node" +msgstr "" + +#: ../../enterprise/include/functions_metaconsole.php:2869 +msgid "" +"Agent policies definitions does not match with defined ones in target node" +msgstr "" + +#: ../../enterprise/include/functions_metaconsole.php:2876 +msgid "Agent group does not exist in target node" +msgstr "" + +#: ../../enterprise/include/functions_metaconsole.php:2883 +msgid "Agent already exists in target node" +msgstr "" + +#: ../../enterprise/include/functions_metaconsole.php:2907 +msgid "The agent: has not been added due to problems in the insertion" +msgstr "" + +#: ../../enterprise/include/functions_metaconsole.php:2912 +msgid "The agent: has already been added to the migration queue" +msgstr "" + +#: ../../enterprise/include/functions_license.php:119 +msgid "Perpetual" +msgstr "" + +#: ../../enterprise/include/functions_license.php:119 +msgid "Subscription" +msgstr "" + +#: ../../enterprise/include/functions_license.php:120 +#: ../../include/class/Diagnostics.class.php:1156 +msgid "Support expires" +msgstr "" + +#: ../../enterprise/include/functions_license.php:120 +msgid "Expires" +msgstr "" + +#: ../../enterprise/include/functions_ipam.php:288 +msgid "Export to Excel" +msgstr "" + +#: ../../enterprise/include/functions_ipam.php:395 +msgid "Assign next free IP" +msgstr "" + +#: ../../enterprise/include/functions_ipam.php:413 +msgid "Next available IP" +msgstr "" + +#: ../../enterprise/include/functions_ipam.php:1341 +#: ../../enterprise/tools/ipam/ipam_ajax.php:483 +#: ../../include/ajax/events.php:1712 +#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:59 +#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:378 +msgid "Details" +msgstr "" + +#: ../../enterprise/include/functions_ipam.php:1557 +#: ../../operation/snmpconsole/snmp_statistics.php:78 +#: ../../operation/snmpconsole/snmp_view.php:99 +#: ../../operation/incidents/incident_statistics.php:21 +msgid "Statistics" +msgstr "" + +#: ../../enterprise/include/functions_ipam.php:1559 +#: ../../enterprise/include/functions_ipam.php:1989 +#: ../../enterprise/tools/ipam/ipam_excel.php:136 +#: ../../enterprise/tools/ipam/ipam_excel.php:202 +msgid "Total IPs" +msgstr "" + +#: ../../enterprise/include/functions_ipam.php:1565 +msgid "Occupied" +msgstr "" + +#: ../../enterprise/include/functions_ipam.php:1571 +#: ../../enterprise/include/functions_ipam.php:2042 +#: ../../enterprise/tools/ipam/ipam_network.php:400 +#: ../../enterprise/tools/ipam/ipam_ajax.php:406 +#: ../../enterprise/tools/ipam/ipam_massive.php:103 +msgid "Managed" +msgstr "" + +#: ../../enterprise/include/functions_ipam.php:1573 +msgid "Not managed" +msgstr "" + +#: ../../enterprise/include/functions_ipam.php:1577 +#: ../../enterprise/include/functions_ipam.php:1734 +#: ../../enterprise/include/functions_ipam.php:2043 +#: ../../enterprise/tools/ipam/ipam_network.php:401 +#: ../../enterprise/tools/ipam/ipam_ajax.php:432 +#: ../../enterprise/tools/ipam/ipam_massive.php:103 +msgid "Reserved" +msgstr "" + +#: ../../enterprise/include/functions_ipam.php:1579 +msgid "Not Reserved" +msgstr "" + +#: ../../enterprise/include/functions_ipam.php:1589 +msgid "Occupancy statistics" +msgstr "" + +#: ../../enterprise/include/functions_ipam.php:1646 +msgid "DESC" +msgstr "" + +#: ../../enterprise/include/functions_ipam.php:1647 +msgid "ASC" +msgstr "" + +#: ../../enterprise/include/functions_ipam.php:1648 +#: ../../enterprise/include/functions_ipam.php:1649 +#: ../../enterprise/include/functions_ipam.php:2037 +#: ../../enterprise/tools/ipam/ipam_network.php:396 +#: ../../enterprise/tools/ipam/ipam_ajax.php:364 +#: ../../include/class/Diagnostics.class.php:734 +#: ../../include/class/Diagnostics.class.php:752 +msgid "Hostname" +msgstr "" + +#: ../../enterprise/include/functions_ipam.php:1648 +msgid "A -> Z" +msgstr "" + +#: ../../enterprise/include/functions_ipam.php:1649 +msgid "Z -> A" +msgstr "" + +#: ../../enterprise/include/functions_ipam.php:1650 +#: ../../enterprise/include/functions_ipam.php:1651 +msgid "Last check" +msgstr "" + +#: ../../enterprise/include/functions_ipam.php:1650 +msgid "Newer -> Older" +msgstr "" + +#: ../../enterprise/include/functions_ipam.php:1651 +msgid "Older -> Newer" +msgstr "" + +#: ../../enterprise/include/functions_ipam.php:1678 +msgid "Exact address match" +msgstr "" + +#: ../../enterprise/include/functions_ipam.php:1682 +msgid "S.O" +msgstr "" + +#: ../../enterprise/include/functions_ipam.php:1695 +msgid "Big" +msgstr "" + +#: ../../enterprise/include/functions_ipam.php:1696 +msgid "Tiny" +msgstr "" + +#: ../../enterprise/include/functions_ipam.php:1697 +msgid "Icons style" +msgstr "" + +#: ../../enterprise/include/functions_ipam.php:1714 +msgid "Show not alive hosts" +msgstr "" + +#: ../../enterprise/include/functions_ipam.php:1722 +msgid "Show only managed addresses" +msgstr "" + +#: ../../enterprise/include/functions_ipam.php:1730 +msgid "Reserved addresses" +msgstr "" + +#: ../../enterprise/include/functions_ipam.php:1735 +msgid "Unreserved" +msgstr "" + +#: ../../enterprise/include/functions_ipam.php:1745 +msgid "Last Contact" +msgstr "" + +#: ../../enterprise/include/functions_ipam.php:1788 +msgid "Filter options" +msgstr "" + +#: ../../enterprise/include/functions_ipam.php:1979 +msgid "id Network" +msgstr "" + +#: ../../enterprise/include/functions_ipam.php:1984 +msgid "ID recon task" +msgstr "" + +#: ../../enterprise/include/functions_ipam.php:1985 +msgid "Scan Interval" +msgstr "" + +#: ../../enterprise/include/functions_ipam.php:1986 +msgid "Users Operator" +msgstr "" + +#: ../../enterprise/include/functions_ipam.php:1987 +msgid "Total Ips" +msgstr "" + +#: ../../enterprise/include/functions_ipam.php:1988 +msgid "Last Update" +msgstr "" + +#: ../../enterprise/include/functions_ipam.php:1990 +#: ../../enterprise/tools/ipam/ipam_excel.php:137 +#: ../../enterprise/tools/ipam/ipam_excel.php:203 +msgid "Alive IPs" +msgstr "" + +#: ../../enterprise/include/functions_ipam.php:1991 +#: ../../enterprise/tools/ipam/ipam_excel.php:138 +#: ../../enterprise/tools/ipam/ipam_excel.php:204 +msgid "Occupied %" +msgstr "" + +#: ../../enterprise/include/functions_ipam.php:1992 +#: ../../enterprise/tools/ipam/ipam_excel.php:139 +#: ../../enterprise/tools/ipam/ipam_excel.php:205 +msgid "Available %" +msgstr "" + +#: ../../enterprise/include/functions_ipam.php:1993 +#: ../../enterprise/tools/ipam/ipam_excel.php:140 +#: ../../enterprise/tools/ipam/ipam_excel.php:206 +msgid "Managed IPs" +msgstr "" + +#: ../../enterprise/include/functions_ipam.php:1994 +#: ../../enterprise/tools/ipam/ipam_excel.php:141 +#: ../../enterprise/tools/ipam/ipam_excel.php:207 +msgid "Managed %" +msgstr "" + +#: ../../enterprise/include/functions_ipam.php:1995 +#: ../../enterprise/tools/ipam/ipam_excel.php:142 +#: ../../enterprise/tools/ipam/ipam_excel.php:208 +msgid "Unmanaged %" +msgstr "" + +#: ../../enterprise/include/functions_ipam.php:1996 +#: ../../enterprise/tools/ipam/ipam_excel.php:143 +#: ../../enterprise/tools/ipam/ipam_excel.php:209 +msgid "Reserved IPs" +msgstr "" + +#: ../../enterprise/include/functions_ipam.php:1997 +#: ../../enterprise/tools/ipam/ipam_excel.php:144 +#: ../../enterprise/tools/ipam/ipam_excel.php:210 +msgid "Reserved %" +msgstr "" + +#: ../../enterprise/include/functions_ipam.php:1998 +#: ../../enterprise/tools/ipam/ipam_excel.php:145 +#: ../../enterprise/tools/ipam/ipam_excel.php:211 +msgid "Not reserved %" +msgstr "" + +#: ../../enterprise/include/functions_ipam.php:2041 +msgid "OS Name" +msgstr "" + +#: ../../enterprise/include/functions_ipam.php:2044 +#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:366 +msgid "Created at" +msgstr "" + +#: ../../enterprise/include/functions_ipam.php:2045 +msgid "Last updated" +msgstr "" + +#: ../../enterprise/include/functions_ipam.php:2046 +msgid "Last modified" +msgstr "" + +#: ../../enterprise/include/functions_ipam.php:2047 +msgid "Dhcp Leased" +msgstr "" + +#: ../../enterprise/include/functions_ipam.php:2048 +msgid "Dhcp Leased Mode" +msgstr "" + +#: ../../enterprise/include/functions_ipam.php:2049 +msgid "Dhcp Leased Expiration" +msgstr "" + +#: ../../enterprise/include/functions_ipam.php:2050 +msgid "Mac address" +msgstr "" + +#: ../../enterprise/include/functions_policies.php:423 +#: ../../enterprise/include/functions_policies.php:438 +#: ../../include/functions_alerts.php:477 +msgid "copy" +msgstr "" + +#: ../../enterprise/include/functions_policies.php:675 +#, php-format +msgid "%s success" +msgstr "" + +#: ../../enterprise/include/functions_policies.php:675 +#, php-format +msgid "%s failed" +msgstr "" + +#: ../../enterprise/include/functions_policies.php:680 +msgid "Policy cleaned from nodes: " +msgstr "" + +#: ../../enterprise/include/functions_policies.php:934 +#, php-format +msgid "Failed to connect to node %s" +msgstr "" + +#: ../../enterprise/include/functions_policies.php:3506 +msgid "Policy linkation" +msgstr "" + +#: ../../enterprise/include/functions_policies.php:3511 +msgid "Module linked" +msgstr "" + +#: ../../enterprise/include/functions_policies.php:3516 +#: ../../enterprise/include/functions_policies.php:3536 +msgid "Unlink from policy" +msgstr "" + +#: ../../enterprise/include/functions_policies.php:3521 +msgid "Module unlinked" +msgstr "" + +#: ../../enterprise/include/functions_policies.php:3526 +#: ../../enterprise/include/functions_policies.php:3546 +msgid "Relink to policy" +msgstr "" + +#: ../../enterprise/include/functions_policies.php:3531 +msgid "Module pending to link" +msgstr "" + +#: ../../enterprise/include/functions_policies.php:3531 +#: ../../godmode/agentes/module_manager_editor.php:548 +msgid "Module will be linked in the next application" +msgstr "" + +#: ../../enterprise/include/functions_policies.php:3541 +msgid "Module pending to unlink" +msgstr "" + +#: ../../enterprise/include/functions_policies.php:3541 +#: ../../godmode/agentes/module_manager_editor.php:562 +msgid "Module will be unlinked in the next application" +msgstr "" + +#: ../../enterprise/include/functions_policies.php:3737 +#: ../../godmode/agentes/configurar_agente.php:539 +#: ../../godmode/agentes/configurar_agente.php:760 +#: ../../godmode/setup/snmp_wizard.php:31 +msgid "SNMP Wizard" +msgstr "" + +#: ../../enterprise/include/functions_policies.php:3740 +#: ../../godmode/agentes/configurar_agente.php:549 +#: ../../godmode/agentes/configurar_agente.php:766 +msgid "SNMP Interfaces wizard" +msgstr "" + +#: ../../enterprise/include/functions_policies.php:3743 +#: ../../godmode/agentes/configurar_agente.php:559 +#: ../../godmode/agentes/configurar_agente.php:772 +msgid "WMI Wizard" +msgstr "" + +#: ../../enterprise/include/functions_policies.php:4060 +msgid "Create a new policy map" +msgstr "" + +#: ../../enterprise/include/functions_policies.php:4448 +#: ../../extensions/resource_registration.php:1098 +msgid "Error, please install the PHP libXML in the system." +msgstr "" + +#: ../../enterprise/include/functions_policies.php:4460 +#, php-format +msgid "" +"This extension makes registration of policies enterprise.
    You can get " +"more policies in our Public Resource Library" +msgstr "" + +#: ../../enterprise/include/functions_policies.php:4467 +#: ../../extensions/resource_registration.php:1133 +msgid "Group filter: " +msgstr "" + +#: ../../enterprise/include/functions_policies.php:4492 +#: ../../extensions/resource_registration.php:1150 +msgid "" +"Error uploading resource. Check if the selected file is a valid resource " +"template in .ptr format" +msgstr "" + +#: ../../enterprise/include/functions_policies.php:4518 +msgid "Policy does not exist" +msgstr "" + +#: ../../enterprise/include/functions_policies.php:4908 +msgid "This will not produce any action." +msgstr "" + +#: ../../enterprise/include/functions_policies.php:4937 +#, php-format +msgid "Error connecting with node %s." +msgstr "" + +#: ../../enterprise/include/functions_policies.php:4944 +#, php-format +msgid "This policy is being applied on node %s." +msgstr "" + +#: ../../enterprise/include/functions_policies.php:4982 +msgid "Error syncronizing ." +msgstr "" + +#: ../../enterprise/include/functions_local_components.php:179 +msgid "Empty configuration" +msgstr "" + +#: ../../enterprise/include/functions_local_components.php:184 +msgid "Empty OS" +msgstr "" + +#: ../../enterprise/include/functions_local_components.php:354 +#: ../../include/functions_alerts.php:1124 +#: ../../include/functions_network_components.php:590 +msgid "Copy of" +msgstr "" + +#: ../../enterprise/include/functions_ux_console.php:507 +#: ../../enterprise/operation/agentes/tag_view.php:873 +#: ../../enterprise/operation/agentes/tag_view.php:883 +#: ../../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:6292 +msgid "Snapshot view" +msgstr "" + +#: ../../enterprise/operation/agentes/agent_inventory.diff_view.php:44 +msgid "Unsucessful get module inventory data." +msgstr "" + +#: ../../enterprise/operation/agentes/agent_inventory.diff_view.php:173 +#: ../../enterprise/operation/agentes/agent_inventory.diff_view.php:176 +#: ../../godmode/reporting/visual_console_builder.wizard.php:538 +#: ../../mobile/operation/agents.php:463 ../../mobile/operation/modules.php:799 +#: ../../mobile/operation/module_graph.php:477 +#: ../../mobile/operation/events.php:1150 +#: ../../mobile/operation/tactical.php:239 +msgid "Loading..." +msgstr "" + +#: ../../enterprise/operation/agentes/manage_transmap_creation_phases_data.php:34 +#: ../../enterprise/operation/agentes/manage_transmap.php:56 +#: ../../enterprise/operation/agentes/manage_transmap_creation.php:115 +#: ../../enterprise/operation/agentes/manage_transmap_creation.php:332 +#: ../../enterprise/operation/agentes/manage_transmap_creation.php:417 +msgid "Transactions List" +msgstr "" + +#: ../../enterprise/operation/agentes/manage_transmap_creation_phases_data.php:42 +#: ../../enterprise/operation/agentes/manage_transmap.php:96 +#: ../../enterprise/operation/agentes/manage_transmap_creation.php:139 +#: ../../enterprise/operation/agentes/manage_transmap_creation.php:441 +msgid "Edit Transaction" +msgstr "" + +#: ../../enterprise/operation/agentes/manage_transmap_creation_phases_data.php:50 +msgid "Go back to phases list" +msgstr "" + +#: ../../enterprise/operation/agentes/manage_transmap_creation_phases_data.php:56 +msgid "Transactional Map - Phase - " +msgstr "" + +#: ../../enterprise/operation/agentes/policy_view.php:38 +msgid "This agent has no policy assigned" +msgstr "" + +#: ../../enterprise/operation/agentes/policy_view.php:70 +#: ../../include/functions_events.php:2381 +msgid "V." +msgstr "" + +#: ../../enterprise/operation/agentes/policy_view.php:89 +msgid "Policy outdate" +msgstr "" + +#: ../../enterprise/operation/agentes/policy_view.php:159 +#: ../../enterprise/operation/agentes/policy_view.php:169 +msgid "Toggle the collection table" +msgstr "" + +#: ../../enterprise/operation/agentes/policy_view.php:165 +msgid "Descripttion" +msgstr "" + +#: ../../enterprise/operation/agentes/policy_view.php:173 +msgid "Show Collection" +msgstr "" + +#: ../../enterprise/operation/agentes/policy_view.php:253 +#: ../../enterprise/operation/agentes/policy_view.php:265 +msgid "Toggle the alert table" +msgstr "" + +#: ../../enterprise/operation/agentes/policy_view.php:257 +#: ../../godmode/alerts/alert_list.list.php:151 +#: ../../include/ajax/alert_list.ajax.php:286 +#: ../../include/ajax/alert_list.ajax.php:311 +#: ../../operation/agentes/alerts_status.functions.php:124 +msgid "Standby" +msgstr "" + +#: ../../enterprise/operation/agentes/policy_view.php:269 +msgid "Show Alert" +msgstr "" + +#: ../../enterprise/operation/agentes/policy_view.php:345 +#: ../../godmode/alerts/alert_list.list.php:574 +#: ../../godmode/alerts/alert_view.php:105 +#: ../../mobile/operation/alerts.php:324 ../../include/functions_ui.php:1253 +#: ../../include/class/AgentsAlerts.class.php:937 +msgid "time(s)" +msgstr "" + +#: ../../enterprise/operation/agentes/policy_view.php:351 +#: ../../godmode/alerts/alert_list.list.php:580 +#: ../../godmode/alerts/alert_view.php:111 +#: ../../mobile/operation/alerts.php:330 +#: ../../include/functions_agents.php:2944 +#: ../../include/functions_agents.php:2955 ../../include/functions_ui.php:1259 +#: ../../include/class/AgentsAlerts.class.php:943 +#: ../../include/functions_reporting.php:12411 +#: ../../operation/snmpconsole/snmp_view.php:1020 +msgid "Alert not fired" +msgstr "" + +#: ../../enterprise/operation/agentes/policy_view.php:390 +#: ../../enterprise/operation/agentes/policy_view.php:402 +msgid "Toggle the module table" +msgstr "" + +#: ../../enterprise/operation/agentes/policy_view.php:394 +msgid "Relationship" +msgstr "" + +#: ../../enterprise/operation/agentes/policy_view.php:406 +msgid "Show Modules" +msgstr "" + +#: ../../enterprise/operation/agentes/policy_view.php:425 +msgid "(Un-adopted)" +msgstr "" + +#: ../../enterprise/operation/agentes/policy_view.php:428 +msgid "(Adopted)" +msgstr "" + +#: ../../enterprise/operation/agentes/policy_view.php:433 +msgid "(Un-adopted) (Unlinked)" +msgstr "" + +#: ../../enterprise/operation/agentes/policy_view.php:436 +msgid "(Adopted) (Unlinked)" +msgstr "" + +#: ../../enterprise/operation/agentes/policy_view.php:457 +#: ../../godmode/agentes/module_manager.php:1086 +msgid "Non initialized module" +msgstr "" + +#: ../../enterprise/operation/agentes/policy_view.php:485 +#: ../../enterprise/operation/agentes/policy_view.php:490 +#: ../../enterprise/operation/agentes/policy_view.php:495 +#: ../../enterprise/operation/agentes/transactional_map.php:210 +#: ../../enterprise/operation/agentes/tag_view.php:989 +#: ../../enterprise/operation/agentes/tag_view.php:995 +#: ../../enterprise/operation/agentes/tag_view.php:1005 +#: ../../enterprise/operation/agentes/tag_view.php:1011 +#: ../../enterprise/operation/agentes/tag_view.php:1021 +#: ../../enterprise/operation/agentes/tag_view.php:1027 +#: ../../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_modules.php:2889 +#: ../../include/functions_modules.php:2893 +#: ../../include/functions_modules.php:2897 +#: ../../operation/agentes/status_monitor.php:1662 +#: ../../operation/agentes/status_monitor.php:1668 +#: ../../operation/agentes/status_monitor.php:1678 +#: ../../operation/agentes/status_monitor.php:1684 +#: ../../operation/agentes/status_monitor.php:1694 +#: ../../operation/agentes/status_monitor.php:1700 +#: ../../operation/agentes/pandora_networkmap.view.php:1780 +#: ../../operation/agentes/pandora_networkmap.view.php:1785 +#: ../../operation/agentes/pandora_networkmap.view.php:1790 +#: ../../operation/search_modules.php:141 +#: ../../operation/search_modules.php:149 +#: ../../operation/search_modules.php:157 +msgid "Last status" +msgstr "" + +#: ../../enterprise/operation/agentes/transactional_map.php:61 +msgid "List of transactions" +msgstr "" + +#: ../../enterprise/operation/agentes/transactional_map.php:74 +#: ../../enterprise/operation/agentes/manage_transmap.php:176 +#: ../../enterprise/operation/agentes/manage_transmap_creation.php:173 +#: ../../enterprise/operation/agentes/manage_transmap_creation.php:353 +#: ../../enterprise/operation/agentes/manage_transmap_creation.php:475 +msgid "Transactional Map" +msgstr "" + +#: ../../enterprise/operation/agentes/transactional_map.php:149 +msgid "Name can't be empty" +msgstr "" + +#: ../../enterprise/operation/agentes/transactional_map.php:206 +msgid "Transaction name" +msgstr "" + +#: ../../enterprise/operation/agentes/transactional_map.php:209 +msgid "Running status" +msgstr "" + +#: ../../enterprise/operation/agentes/transactional_map.php:211 +msgid "Time spent" +msgstr "" + +#: ../../enterprise/operation/agentes/transactional_map.php:212 +#: ../../godmode/wizards/DiscoveryTaskList.class.php:609 +#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:367 +msgid "Updated at" +msgstr "" + +#: ../../enterprise/operation/agentes/transactional_map.php:254 +msgid "Stopped" +msgstr "" + +#: ../../enterprise/operation/agentes/transactional_map.php:260 +msgid "Starting" +msgstr "" + +#: ../../enterprise/operation/agentes/transactional_map.php:260 +msgid "Stopping" +msgstr "" + +#: ../../enterprise/operation/agentes/transactional_map.php:439 +msgid "Edit phases" +msgstr "" + +#: ../../enterprise/operation/agentes/transactional_map.php:461 +msgid "Go to `Status` module" +msgstr "" + +#: ../../enterprise/operation/agentes/transactional_map.php:492 +msgid "Error in phases section" +msgstr "" + +#: ../../enterprise/operation/agentes/transactional_map.php:512 +#: ../../enterprise/operation/agentes/manage_transmap_creation.php:340 +msgid "Create Transaction" +msgstr "" + +#: ../../enterprise/operation/agentes/tag_view.php:41 +#: ../../enterprise/operation/menu.php:191 +msgid "Tag view" +msgstr "" + +#: ../../enterprise/operation/agentes/tag_view.php:54 +#: ../../extensions/agents_modules.php:478 +#: ../../extensions/module_groups.php:264 +#: ../../extensions/realtime_graphs.php:71 +#: ../../include/class/AgentsAlerts.class.php:742 +#: ../../operation/heatmap.php:137 +#: ../../operation/agentes/alerts_status.php:203 +#: ../../operation/agentes/estado_agente.php:228 +#: ../../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:37 +msgid "Views" +msgstr "" + +#: ../../enterprise/operation/agentes/tag_view.php:139 +#: ../../operation/agentes/status_monitor.php:500 +msgid "Monitor status" +msgstr "" + +#: ../../enterprise/operation/agentes/tag_view.php:223 +#: ../../enterprise/operation/agentes/tag_view.php:225 +#: ../../operation/agentes/status_monitor.php:550 +#: ../../operation/agentes/alerts_status.functions.php:108 +msgid "Only it is show tags in use." +msgstr "" + +#: ../../enterprise/operation/agentes/tag_view.php:229 +#: ../../operation/agentes/status_monitor.php:555 +#: ../../operation/agentes/alerts_status.functions.php:113 +msgid "No tags" +msgstr "" + +#: ../../enterprise/operation/agentes/tag_view.php:278 +#: ../../godmode/agentes/module_manager_editor_data.php:15 +#: ../../operation/agentes/status_monitor.php:621 +msgid "Data server module" +msgstr "" + +#: ../../enterprise/operation/agentes/tag_view.php:280 +#: ../../godmode/agentes/module_manager_editor_network.php:77 +#: ../../operation/agentes/status_monitor.php:623 +msgid "Network server module" +msgstr "" + +#: ../../enterprise/operation/agentes/tag_view.php:284 +#: ../../godmode/agentes/module_manager_editor_plugin.php:46 +#: ../../operation/agentes/status_monitor.php:627 +msgid "Plugin server module" +msgstr "" + +#: ../../enterprise/operation/agentes/tag_view.php:288 +#: ../../godmode/agentes/module_manager_editor_wmi.php:33 +#: ../../operation/agentes/status_monitor.php:631 +msgid "WMI server module" +msgstr "" + +#: ../../enterprise/operation/agentes/tag_view.php:292 +#: ../../godmode/agentes/module_manager_editor_prediction.php:107 +#: ../../operation/agentes/status_monitor.php:635 +msgid "Prediction server module" +msgstr "" + +#: ../../enterprise/operation/agentes/tag_view.php:296 +#: ../../godmode/agentes/module_manager_editor_web.php:55 +#: ../../operation/agentes/status_monitor.php:639 +msgid "Web server module" +msgstr "" + +#: ../../enterprise/operation/agentes/tag_view.php:299 +#: ../../enterprise/operation/agentes/tag_view.php:680 +#: ../../godmode/agentes/status_monitor_custom_fields.php:89 +#: ../../godmode/agentes/status_monitor_custom_fields.php:146 +#: ../../operation/agentes/status_monitor.php:646 +#: ../../operation/agentes/status_monitor.php:1323 +msgid "Server type" +msgstr "" + +#: ../../enterprise/operation/agentes/tag_view.php:305 +#: ../../godmode/agentes/modificar_agente.php:337 +#: ../../operation/agentes/status_monitor.php:652 +msgid "Only enabled" +msgstr "" + +#: ../../enterprise/operation/agentes/tag_view.php:306 +#: ../../godmode/agentes/modificar_agente.php:336 +#: ../../operation/agentes/status_monitor.php:653 +msgid "Only disabled" +msgstr "" + +#: ../../enterprise/operation/agentes/tag_view.php:309 +#: ../../operation/agentes/status_monitor.php:656 +msgid "Show monitors..." +msgstr "" + +#: ../../enterprise/operation/agentes/tag_view.php:319 +#: ../../enterprise/operation/agentes/tag_view.php:679 +#: ../../godmode/agentes/status_monitor_custom_fields.php:81 +#: ../../godmode/agentes/status_monitor_custom_fields.php:144 +#: ../../operation/agentes/status_monitor.php:666 +msgid "Data type" +msgstr "" + +#: ../../enterprise/operation/agentes/tag_view.php:447 +#: ../../operation/agentes/agent_fields.php:37 +#: ../../operation/agentes/status_monitor.php:831 +msgid "Agent custom fields" +msgstr "" + +#: ../../enterprise/operation/agentes/tag_view.php:647 +#: ../../operation/agentes/estado_agente.php:898 +msgid "Remote config" +msgstr "" + +#: ../../enterprise/operation/agentes/tag_view.php:682 +#: ../../enterprise/operation/services/services.service.php:130 +#: ../../enterprise/operation/services/services.list.php:509 +#: ../../extensions/realtime_graphs.php:161 +#: ../../godmode/agentes/status_monitor_custom_fields.php:105 +#: ../../godmode/agentes/status_monitor_custom_fields.php:150 +#: ../../include/functions_visual_map_editor.php:58 +#: ../../include/ajax/module.php:983 +#: ../../include/class/NetworkMap.class.php:2908 +#: ../../include/lib/Dashboard/Widgets/custom_graph.php:303 +#: ../../include/functions_events.php:4126 +#: ../../operation/agentes/status_monitor.php:1346 +#: ../../operation/search_modules.php:37 +msgid "Graph" +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:864 +#: ../../operation/agentes/status_monitor.php:1351 +msgid "Warn" +msgstr "" + +#: ../../enterprise/operation/agentes/tag_view.php:935 +#: ../../mobile/operation/modules.php:542 +#: ../../mobile/operation/modules.php:605 +#: ../../include/functions_modules.php:2874 +#: ../../include/functions_modules.php:4114 +#: ../../include/functions_events.php:70 +#: ../../operation/agentes/status_monitor.php:1572 +#: ../../operation/search_modules.php:108 ../../operation/events/events.php:656 +msgid "NOT INIT" +msgstr "" + +#: ../../enterprise/operation/agentes/tag_view.php:1075 +#: ../../include/functions_reporting.php:12533 +#: ../../include/functions_reporting.php:12542 +#, php-format +msgid "%d Total modules" +msgstr "" + +#: ../../enterprise/operation/agentes/tag_view.php:1076 +#: ../../include/functions_reporting.php:12534 +#, php-format +msgid "%d Modules in normal status" +msgstr "" + +#: ../../enterprise/operation/agentes/tag_view.php:1077 +#: ../../include/functions_reporting.php:12535 +#, php-format +msgid "%d Modules in critical status" +msgstr "" + +#: ../../enterprise/operation/agentes/tag_view.php:1078 +#: ../../include/functions_reporting.php:12536 +#, php-format +msgid "%d Modules in warning status" +msgstr "" + +#: ../../enterprise/operation/agentes/tag_view.php:1079 +#: ../../include/functions_reporting.php:12537 +#, php-format +msgid "%d Modules in unknown status" +msgstr "" + +#: ../../enterprise/operation/agentes/tag_view.php:1080 +#: ../../include/functions_reporting.php:12538 +#, php-format +msgid "%d Modules in not init status" +msgstr "" + +#: ../../enterprise/operation/agentes/manage_transmap.php:84 +#: ../../enterprise/operation/agentes/manage_transmap_creation.php:127 +#: ../../enterprise/operation/agentes/manage_transmap_creation.php:429 +msgid "Edit main data" +msgstr "" + +#: ../../enterprise/operation/agentes/manage_transmap.php:109 +#: ../../enterprise/operation/agentes/manage_transmap_creation.php:152 +#: ../../enterprise/operation/agentes/manage_transmap_creation.php:454 +msgid "View Transaction" +msgstr "" + +#: ../../enterprise/operation/agentes/manage_transmap.php:153 +msgid "Return to windowed mode" +msgstr "" + +#: ../../enterprise/operation/agentes/manage_transmap.php:182 +msgid "Transaction not found" +msgstr "" + +#: ../../enterprise/operation/agentes/manage_transmap.php:185 +msgid "Master lock file not found (No data to show)" +msgstr "" + +#: ../../enterprise/operation/agentes/manage_transmap.php:188 +msgid "Transaction is stopped" +msgstr "" + +#: ../../enterprise/operation/agentes/manage_transmap.php:191 +msgid "Error, please check the transaction phases" +msgstr "" + +#: ../../enterprise/operation/agentes/ver_agente.php:72 +#: ../../operation/agentes/ver_agente.php:1017 +msgid "Main IP" +msgstr "" + +#: ../../enterprise/operation/agentes/ver_agente.php:78 +#: ../../include/functions_events.php:4053 +#: ../../operation/agentes/ver_agente.php:1029 +msgid "Last remote contact" +msgstr "" + +#: ../../enterprise/operation/agentes/ver_agente.php:122 +#: ../../operation/agentes/ver_agente.php:1074 +msgid "Monitors down" +msgstr "" + +#: ../../enterprise/operation/agentes/ver_agente.php:164 +#: ../../mobile/operation/groups.php:174 +#: ../../include/lib/Dashboard/Widgets/system_group_status.php:576 +#: ../../operation/agentes/ver_agente.php:1115 +msgid "Alerts fired" +msgstr "" + +#: ../../enterprise/operation/agentes/ver_agente.php:258 +msgid "URL Route Analyzer" +msgstr "" + +#: ../../enterprise/operation/agentes/ver_agente.php:274 +msgid "UX Console" +msgstr "" + +#: ../../enterprise/operation/agentes/ver_agente.php:290 +msgid "WUX Console" +msgstr "" + +#: ../../enterprise/operation/agentes/collection_view.php:66 +msgid "No collection assigned to this agent" +msgstr "" + +#: ../../enterprise/operation/agentes/manage_transmap_creation.php:63 +msgid "Please, reset the transaction" +msgstr "" + +#: ../../enterprise/operation/agentes/manage_transmap_creation.php:102 +msgid "Successfully data updated" +msgstr "" + +#: ../../enterprise/operation/agentes/manage_transmap_creation.php:103 +msgid "Could not be data updated" +msgstr "" + +#: ../../enterprise/operation/agentes/manage_transmap_creation.php:160 +msgid "Create Phase" +msgstr "" + +#: ../../enterprise/operation/agentes/manage_transmap_creation.php:185 +msgid "Index" +msgstr "" + +#: ../../enterprise/operation/agentes/manage_transmap_creation.php:188 +msgid "Dependencies" +msgstr "" + +#: ../../enterprise/operation/agentes/manage_transmap_creation.php:189 +msgid "Enables" +msgstr "" + +#: ../../enterprise/operation/agentes/manage_transmap_creation.php:254 +msgid "Not valid dependencies field" +msgstr "" + +#: ../../enterprise/operation/agentes/manage_transmap_creation.php:260 +msgid "Not valid enables field" +msgstr "" + +#: ../../enterprise/operation/agentes/manage_transmap_creation.php:367 +#: ../../enterprise/operation/agentes/manage_transmap_creation.php:493 +msgid "Loop interval" +msgstr "" + +#: ../../enterprise/operation/agentes/manage_transmap_creation.php:462 +msgid "Transactional Map - Edit Transaction" +msgstr "" + +#: ../../enterprise/operation/agentes/url_route_analyzer.php:39 +msgid "No agent selected" +msgstr "" + +#: ../../enterprise/operation/agentes/url_route_analyzer.php:42 +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 "" + +#: ../../enterprise/operation/agentes/ux_console_view.php:124 +msgid "No ux transactions found." +msgstr "" + +#: ../../enterprise/operation/agentes/ux_console_view.php:133 +#: ../../enterprise/operation/agentes/wux_console_view.php:261 +msgid "Transaction" +msgstr "" + +#: ../../enterprise/operation/agentes/ux_console_view.php:142 +#: ../../enterprise/operation/agentes/wux_console_view.php:286 +msgid "Show transaction" +msgstr "" + +#: ../../enterprise/operation/agentes/ux_console_view.php:168 +msgid "Execution results for transaction " +msgstr "" + +#: ../../enterprise/operation/agentes/ux_console_view.php:266 +#: ../../enterprise/operation/agentes/wux_console_view.php:332 +msgid "Global results" +msgstr "" + +#: ../../enterprise/operation/agentes/ux_console_view.php:332 +#: ../../enterprise/operation/agentes/wux_console_view.php:570 +msgid "Transaction history" +msgstr "" + +#: ../../enterprise/operation/agentes/wux_console_view.php:75 +#: ../../include/lib/Dashboard/Widgets/wux_transaction.php:320 +msgid "No wux transaction selected." +msgstr "" + +#: ../../enterprise/operation/agentes/wux_console_view.php:149 +#: ../../include/lib/Dashboard/Widgets/wux_transaction.php:398 +msgid "Phase modules not found" +msgstr "" + +#: ../../enterprise/operation/agentes/wux_console_view.php:224 +msgid "Selected transaction has no stats" +msgstr "" + +#: ../../enterprise/operation/agentes/wux_console_view.php:242 +msgid "No WUX transactions found." +msgstr "" + +#: ../../enterprise/operation/agentes/wux_console_view.php:357 +msgid "Failed: " +msgstr "" + +#: ../../enterprise/operation/agentes/wux_console_view.php:357 +#: ../../enterprise/operation/agentes/wux_console_view.php:378 +#: ../../godmode/setup/performance.php:188 +#: ../../godmode/setup/performance.php:243 ../../general/logon_ok.php:184 +msgid "ago" +msgstr "" + +#: ../../enterprise/operation/agentes/wux_console_view.php:369 +#: ../../enterprise/operation/agentes/wux_console_view.php:373 +#: ../../include/functions_alerts.php:681 +msgid "Unknown status" +msgstr "" + +#: ../../enterprise/operation/agentes/wux_console_view.php:378 +msgid "Success: " +msgstr "" + +#: ../../enterprise/operation/agentes/wux_console_view.php:384 +msgid "Total transaction time: " +msgstr "" + +#: ../../enterprise/operation/agentes/wux_console_view.php:398 +#, php-format +msgid "Execution results for transaction %s" +msgstr "" + +#: ../../enterprise/operation/agentes/wux_console_view.php:527 +msgid "View all stats" +msgstr "" + +#: ../../enterprise/operation/agentes/wux_console_view.php:595 +#: ../../operation/snmpconsole/snmp_view.php:1061 +#: ../../operation/snmpconsole/snmp_view.php:1062 ../../operation/menu.php:239 +#: ../../operation/menu.php:241 ../../operation/events/events.php:500 +#: ../../operation/events/events.php:763 +msgid "Show more" +msgstr "" + +#: ../../enterprise/operation/agentes/wux_console_view.php:611 +msgid "Invalid transaction." +msgstr "" + +#: ../../enterprise/operation/log/elasticsearch_interface.php:39 +#: ../../enterprise/operation/log/log_viewer.php:391 +#: ../../enterprise/operation/menu.php:211 +msgid "Elasticsearch Interface" +msgstr "" + +#: ../../enterprise/operation/log/elasticsearch_interface.php:49 +msgid "" +"This is a view to interface with Elasticsearch directly from WEB console. \n" +"Please note that you can damage your Elasticsearch if you don`t know exactly " +"what are you are doing. \n" +"This view is intended to be used only by users with a knowledge of " +"Elasticsearch" +msgstr "" + +#: ../../enterprise/operation/log/log_viewer.php:405 +#: ../../enterprise/operation/log/log_viewer.php:424 +#: ../../enterprise/operation/log/log_viewer.php:435 +msgid "Log sources" +msgstr "" + +#: ../../enterprise/operation/log/log_viewer.php:478 +msgid "All words" +msgstr "" + +#: ../../enterprise/operation/log/log_viewer.php:479 +msgid "Any word" +msgstr "" + +#: ../../enterprise/operation/log/log_viewer.php:482 +msgid "Search mode" +msgstr "" + +#: ../../enterprise/operation/log/log_viewer.php:529 +msgid "Full context" +msgstr "" + +#: ../../enterprise/operation/log/log_viewer.php:552 +#: ../../operation/network/network_report.php:102 +#: ../../operation/network/network_usage_map.php:75 +#: ../../operation/netflow/nf_live_view.php:271 +msgid "Start date" +msgstr "" + +#: ../../enterprise/operation/log/log_viewer.php:579 +#: ../../operation/agentes/exportdata.php:347 +#: ../../operation/network/network_report.php:126 +#: ../../operation/network/network_usage_map.php:99 +#: ../../operation/netflow/nf_live_view.php:295 +msgid "End date" +msgstr "" + +#: ../../enterprise/operation/log/log_viewer.php:667 +#: ../../enterprise/operation/log/log_viewer.php:668 +msgid "Edit sources" +msgstr "" + +#: ../../enterprise/operation/log/log_viewer.php:711 +msgid "Show log entries" +msgstr "" + +#: ../../enterprise/operation/log/log_viewer.php:712 +msgid "Graph log results" +msgstr "" + +#: ../../enterprise/operation/log/log_viewer.php:714 +msgid "Display mode" +msgstr "" + +#: ../../enterprise/operation/log/log_viewer.php:727 +msgid "Use capture model" +msgstr "" + +#: ../../enterprise/operation/log/log_viewer.php:757 +msgid "Create new model" +msgstr "" + +#: ../../enterprise/operation/log/log_viewer.php:761 +#: ../../godmode/reporting/graph_builder.main.php:220 +msgid "Horizontal bars" +msgstr "" + +#: ../../enterprise/operation/log/log_viewer.php:762 +#: ../../godmode/reporting/graph_builder.main.php:221 +msgid "Vertical bars" +msgstr "" + +#: ../../enterprise/operation/log/log_viewer.php:764 +msgid "Graph type" +msgstr "" + +#: ../../enterprise/operation/log/log_viewer.php:779 +msgid "Advanced options " +msgstr "" + +#: ../../enterprise/operation/log/log_viewer.php:899 +msgid "" +"The maximum limit of rows has been exceeded. Please enter an email to send " +"the csv file" +msgstr "" + +#: ../../enterprise/operation/log/log_viewer.php:901 +msgid "e-mail address" +msgstr "" + +#: ../../enterprise/operation/log/log_viewer.php:904 +msgid "" +"WARNING: If your email size exceeds your mail attachment size limit, the " +"file will be saved in the local attachment folder." +msgstr "" + +#: ../../enterprise/operation/log/log_viewer.php:1022 +msgid "The start date cannot be greater than the end date" +msgstr "" + +#: ../../enterprise/operation/log/log_viewer.php:1450 +msgid "Add new capture model" +msgstr "" + +#: ../../enterprise/operation/log/log_viewer.php:1453 +msgid "Edit capture model" +msgstr "" + +#: ../../enterprise/operation/log/log_viewer.php:1536 +msgid "Error create new model" +msgstr "" + +#: ../../enterprise/operation/log/log_viewer.php:1563 +msgid "Error delete model" +msgstr "" + +#: ../../enterprise/operation/log/log_viewer.php:1609 +msgid "Error update model" +msgstr "" + +#: ../../enterprise/operation/menu.php:32 +msgid "Cluster View" +msgstr "" + +#: ../../enterprise/operation/menu.php:61 +#: ../../operation/agentes/ver_agente.php:1683 +#: ../../operation/agentes/ver_agente.php:1882 +msgid "SAP view" +msgstr "" + +#: ../../enterprise/operation/menu.php:143 +msgid "Transactional map" +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:2174 +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 +msgid "Service Map" +msgstr "" + +#: ../../enterprise/operation/services/services.service.php:90 +msgid "No Services" +msgstr "" + +#: ../../enterprise/operation/services/services.service.php:203 +#: ../../enterprise/operation/services/services.list.php:586 +msgid "SLA graph" +msgstr "" + +#: ../../enterprise/operation/services/services.service.php:227 +msgid "List of elements" +msgstr "" + +#: ../../enterprise/operation/services/services.php:197 +msgid "Service table view" +msgstr "" + +#: ../../enterprise/operation/services/services.php:212 +msgid "Service tree view" +msgstr "" + +#: ../../enterprise/operation/services/services.php:229 +msgid "Bulk creation" +msgstr "" + +#: ../../enterprise/operation/services/services.service_map.php:116 +msgid "Show tree" +msgstr "" + +#: ../../enterprise/operation/services/services.service_map.php:130 +msgid "Show sunburst" +msgstr "" + +#: ../../enterprise/operation/services/services.service_map.php:139 +#: ../../extensions/agents_modules.php:947 +#: ../../extensions/module_groups.php:391 +#: ../../godmode/snmpconsole/snmp_alert.php:1518 +#: ../../include/functions_reporting_html.php:2068 +#: ../../operation/snmpconsole/snmp_view.php:1272 +msgid "Legend" +msgstr "" + +#: ../../enterprise/operation/services/services.treeview_services.php:117 +msgid "Search service" +msgstr "" + +#: ../../enterprise/operation/services/services.treeview_services.php:119 +#: ../../enterprise/operation/services/services.list.php:284 +#: ../../enterprise/operation/services/services.table_services.php:206 +msgid "Show only favourites" +msgstr "" + +#: ../../enterprise/operation/services/services.treeview_services.php:157 +msgid "No favourite services defined." +msgstr "" + +#: ../../enterprise/operation/services/services.treeview_services.php:159 +msgid "No services matched." +msgstr "" + +#: ../../enterprise/operation/services/services.treeview_services.php:161 +#: ../../enterprise/operation/services/services.list.php:447 +#: ../../enterprise/operation/services/services.list.php:456 +#: ../../enterprise/operation/services/services.table_services.php:359 +#: ../../enterprise/operation/services/services.table_services.php:365 +msgid "No services defined." +msgstr "" + +#: ../../enterprise/operation/services/services.treeview_services.php:189 +#: ../../enterprise/operation/services/services.list.php:719 +#: ../../enterprise/operation/services/services.table_services.php:450 +msgid "Create Service" +msgstr "" + +#: ../../enterprise/operation/services/services.treeview_services.php:256 +#: ../../godmode/groups/group_list.php:1035 +msgid "Found groups" +msgstr "" + +#: ../../enterprise/operation/services/services.treeview_services.php:350 +#: ../../operation/tree.php:539 ../../operation/agentes/status_monitor.php:2055 +#: ../../operation/agentes/estado_monitores.php:421 +msgid "Module: " +msgstr "" + +#: ../../enterprise/operation/services/services.list.php:62 +msgid "List of services" +msgstr "" + +#: ../../enterprise/operation/services/services.list.php:100 +msgid "Services successfully deleted" +msgstr "" + +#: ../../enterprise/operation/services/services.list.php:101 +#, php-format +msgid "Error while deleting services: %s" +msgstr "" + +#: ../../enterprise/operation/services/services.list.php:118 +msgid "Service deleted successfully" +msgstr "" + +#: ../../enterprise/operation/services/services.list.php:119 +#, php-format +msgid "Error deleting service %s" +msgstr "" + +#: ../../enterprise/operation/services/services.list.php:127 +msgid "Service forced successfully" +msgstr "" + +#: ../../enterprise/operation/services/services.list.php:128 +msgid "Error service forced" +msgstr "" + +#: ../../enterprise/operation/services/services.list.php:298 +#: ../../enterprise/operation/services/services.table_services.php:220 +msgid "Show only root services" +msgstr "" + +#: ../../enterprise/operation/services/services.list.php:590 +msgid "Status graph" +msgstr "" + +#: ../../enterprise/operation/services/services.list.php:625 +#: ../../operation/heatmap.php:70 ../../operation/heatmap.php:279 +#: ../../operation/agentes/pandora_networkmap.php:800 +msgid "Config" +msgstr "" + +#: ../../enterprise/operation/services/services.table_services.php:45 +#: ../../godmode/groups/group_list.php:355 +msgid "Table view" +msgstr "" + +#: ../../enterprise/tools/ipam/ipam.php:52 ../../extensions/files_repo.php:122 +#: ../../extensions/files_repo.php:210 +msgid "Operation view" +msgstr "" + +#: ../../enterprise/tools/ipam/ipam.php:78 +#: ../../enterprise/tools/ipam/ipam.php:356 +msgid "Subnetworks calculator" +msgstr "" + +#: ../../enterprise/tools/ipam/ipam.php:96 +msgid "Vlan config" +msgstr "" + +#: ../../enterprise/tools/ipam/ipam.php:114 +msgid "Vlan wizard" +msgstr "" + +#: ../../enterprise/tools/ipam/ipam.php:133 +msgid "Supernet treeview" +msgstr "" + +#: ../../enterprise/tools/ipam/ipam.php:152 +msgid "Network locations" +msgstr "" + +#: ../../enterprise/tools/ipam/ipam.php:196 +msgid "Vlan statistics" +msgstr "" + +#: ../../enterprise/tools/ipam/ipam.php:216 +#: ../../enterprise/tools/ipam/ipam.php:381 +msgid "Supernet config" +msgstr "" + +#: ../../enterprise/tools/ipam/ipam.php:237 +#: ../../enterprise/tools/ipam/ipam.php:396 +msgid "Supernet statistics" +msgstr "" + +#: ../../enterprise/tools/ipam/ipam.php:257 +msgid "Supernet map" +msgstr "" + +#: ../../enterprise/tools/ipam/ipam.php:280 +#: ../../enterprise/tools/ipam/ipam_list.php:685 +msgid "Manage addresses" +msgstr "" + +#: ../../enterprise/tools/ipam/ipam.php:320 +#: ../../enterprise/tools/ipam/ipam_list.php:694 +msgid "Addresses view" +msgstr "" + +#: ../../enterprise/tools/ipam/ipam.php:352 +msgid "/tools/ipam/ipam_network.php" +msgstr "" + +#: ../../enterprise/tools/ipam/ipam.php:366 +msgid "VLAN Config" +msgstr "" + +#: ../../enterprise/tools/ipam/ipam.php:371 +msgid "VLAN Wizard" +msgstr "" + +#: ../../enterprise/tools/ipam/ipam.php:376 +msgid "VLAN Statistics" +msgstr "" + +#: ../../enterprise/tools/ipam/ipam.php:386 +msgid "Network location config" +msgstr "" + +#: ../../enterprise/tools/ipam/ipam.php:391 +msgid "Supernet wizard" +msgstr "" + +#: ../../enterprise/tools/ipam/ipam.php:401 +msgid "Supernet Map" +msgstr "" + +#: ../../enterprise/tools/ipam/ipam.php:406 +msgid "Supernet Treeview" +msgstr "" + +#: ../../enterprise/tools/ipam/ipam.php:432 +msgid "Operation View" +msgstr "" + +#: ../../enterprise/tools/ipam/ipam.php:449 ../../godmode/menu.php:388 +#: ../../godmode/setup/file_manager.php:56 +msgid "Admin tools" +msgstr "" + +#: ../../enterprise/tools/ipam/ipam_sites.php:70 +msgid "Successfully saved" +msgstr "" + +#: ../../enterprise/tools/ipam/ipam_sites.php:76 +#, php-format +msgid "Failed to save site %s" +msgstr "" + +#: ../../enterprise/tools/ipam/ipam_sites.php:132 +#, php-format +msgid "Failed to delete site %s" +msgstr "" + +#: ../../enterprise/tools/ipam/ipam_network.php:163 +msgid "No addresses found on this network" +msgstr "" + +#: ../../enterprise/tools/ipam/ipam_network.php:314 +msgid "Edit address" +msgstr "" + +#: ../../enterprise/tools/ipam/ipam_network.php:327 +msgid "Disabled address" +msgstr "" + +#: ../../enterprise/tools/ipam/ipam_network.php:327 +msgid "This address will not be updated by the server" +msgstr "" + +#: ../../enterprise/tools/ipam/ipam_network.php:423 +#: ../../godmode/wizards/DiscoveryTaskList.class.php:1396 +msgid "Not alive" +msgstr "" + +#: ../../enterprise/tools/ipam/ipam_network.php:454 +#: ../../enterprise/tools/ipam/ipam_network.php:533 +#: ../../enterprise/tools/ipam/ipam_network.php:575 +msgid "Change to automatic mode" +msgstr "" + +#: ../../enterprise/tools/ipam/ipam_network.php:463 +#: ../../enterprise/tools/ipam/ipam_network.php:542 +#: ../../enterprise/tools/ipam/ipam_network.php:584 +msgid "Change to manual mode" +msgstr "" + +#: ../../enterprise/tools/ipam/ipam_network.php:663 +msgid "Add comments" +msgstr "" + +#: ../../enterprise/tools/ipam/ipam_network.php:691 +msgid "Update agent address" +msgstr "" + +#: ../../enterprise/tools/ipam/ipam_network.php:857 +msgid "Please, uncheck auto option to set manual agent." +msgstr "" + +#: ../../enterprise/tools/ipam/ipam_supernet_config.php:52 +#: ../../enterprise/tools/ipam/ipam_supernet_config.php:100 +msgid "There is no supernet name. Please introduce a name" +msgstr "" + +#: ../../enterprise/tools/ipam/ipam_supernet_config.php:56 +#: ../../enterprise/tools/ipam/ipam_supernet_config.php:104 +msgid "There is no supernet address. Please introduce a address" +msgstr "" + +#: ../../enterprise/tools/ipam/ipam_supernet_config.php:60 +#: ../../enterprise/tools/ipam/ipam_supernet_config.php:108 +msgid "There is no supernet mask. Please introduce a mask" +msgstr "" + +#: ../../enterprise/tools/ipam/ipam_supernet_config.php:64 +msgid "There is no valid address. Please introduce a address" +msgstr "" + +#: ../../enterprise/tools/ipam/ipam_supernet_config.php:68 +msgid "There is no valid mask. Please introduce a mask" +msgstr "" + +#: ../../enterprise/tools/ipam/ipam_supernet_config.php:83 +msgid "Supernet created" +msgstr "" + +#: ../../enterprise/tools/ipam/ipam_supernet_config.php:85 +msgid "Supernet not created" +msgstr "" + +#: ../../enterprise/tools/ipam/ipam_supernet_config.php:89 +#: ../../enterprise/tools/ipam/ipam_supernet_config.php:135 +msgid "Supernet name exists in bbdd, please select other name" +msgstr "" + +#: ../../enterprise/tools/ipam/ipam_supernet_config.php:129 +msgid "Supernet updated" +msgstr "" + +#: ../../enterprise/tools/ipam/ipam_supernet_config.php:131 +msgid "Supernet not updated" +msgstr "" + +#: ../../enterprise/tools/ipam/ipam_supernet_config.php:156 +msgid "Could not be deleted, please select supernet" +msgstr "" + +#: ../../enterprise/tools/ipam/ipam_supernet_config.php:227 +#: ../../enterprise/tools/ipam/ipam_supernet_config.php:327 +#: ../../enterprise/tools/ipam/ipam_list.php:383 +#: ../../enterprise/tools/ipam/ipam_action.php:121 +#: ../../enterprise/tools/ipam/ipam_action.php:240 +msgid "The location is not filled, please add a location." +msgstr "" + +#: ../../enterprise/tools/ipam/ipam_supernet_config.php:395 +#, php-format +msgid "Successfully created %d networks" +msgstr "" + +#: ../../enterprise/tools/ipam/ipam_supernet_config.php:399 +msgid "Failed to create networks" +msgstr "" + +#: ../../enterprise/tools/ipam/ipam_supernet_config.php:402 +msgid "Entered range address is not valid" +msgstr "" + +#: ../../enterprise/tools/ipam/ipam_supernet_config.php:429 +msgid "Network name cannot be repeated in this supernet" +msgstr "" + +#: ../../enterprise/tools/ipam/ipam_supernet_config.php:436 +#: ../../enterprise/tools/ipam/ipam_vlan_config.php:170 +msgid "Successfully added networks" +msgstr "" + +#: ../../enterprise/tools/ipam/ipam_supernet_config.php:440 +#: ../../enterprise/tools/ipam/ipam_vlan_config.php:174 +msgid "Network could not be added" +msgstr "" + +#: ../../enterprise/tools/ipam/ipam_supernet_config.php:445 +msgid "No networks to be added to supernet" +msgstr "" + +#: ../../enterprise/tools/ipam/ipam_supernet_config.php:450 +msgid "supernet name could not be added, please select supernet" +msgstr "" + +#: ../../enterprise/tools/ipam/ipam_supernet_config.php:479 +msgid "Could not be deleted, please select supernet and network" +msgstr "" + +#: ../../enterprise/tools/ipam/ipam_supernet_config.php:486 +#, php-format +msgid "Failed to delete %d/%d networks from supernet" +msgstr "" + +#: ../../enterprise/tools/ipam/ipam_supernet_config.php:490 +msgid "Successfully deleted network from supernet" +msgstr "" + +#: ../../enterprise/tools/ipam/ipam_supernet_config.php:492 +#, php-format +msgid "Successfully deleted %d/%d networks from supernet" +msgstr "" + +#: ../../enterprise/tools/ipam/ipam_supernet_config.php:495 +#: ../../enterprise/tools/ipam/ipam_vlan_config.php:228 +msgid "No items selected" +msgstr "" + +#: ../../enterprise/tools/ipam/ipam_supernet_config.php:564 +#: ../../enterprise/tools/ipam/ipam_excel.php:134 +#: ../../enterprise/tools/ipam/ipam_calculator.php:84 +msgid "Mask" +msgstr "" + +#: ../../enterprise/tools/ipam/ipam_supernet_config.php:582 +msgid "Subnetting Mask" +msgstr "" + +#: ../../enterprise/tools/ipam/ipam_supernet_config.php:605 +#: ../../enterprise/tools/ipam/ipam_supernet_config.php:777 +#: ../../enterprise/tools/ipam/ipam_supernet_config.php:1064 +#: ../../enterprise/tools/ipam/ipam_list.php:129 +#: ../../enterprise/tools/ipam/ipam_list.php:595 +msgid "Site" +msgstr "" + +#: ../../enterprise/tools/ipam/ipam_supernet_config.php:640 +#: ../../enterprise/tools/ipam/ipam_supernet_config.php:1313 +msgid "Update Supernet" +msgstr "" + +#: ../../enterprise/tools/ipam/ipam_supernet_config.php:647 +#: ../../enterprise/tools/ipam/ipam_supernet_config.php:1451 +msgid "New Supernet" +msgstr "" + +#: ../../enterprise/tools/ipam/ipam_supernet_config.php:688 +#, php-format +msgid "%s supernets created" +msgstr "" + +#: ../../enterprise/tools/ipam/ipam_supernet_config.php:690 +msgid "supernets creation failed" +msgstr "" + +#: ../../enterprise/tools/ipam/ipam_supernet_config.php:763 +#: ../../enterprise/tools/ipam/ipam_list.php:93 +msgid "Search filter by name, network address or description" +msgstr "" + +#: ../../enterprise/tools/ipam/ipam_supernet_config.php:790 +msgid "Min. networks range" +msgstr "" + +#: ../../enterprise/tools/ipam/ipam_supernet_config.php:793 +msgid "Max. networks range" +msgstr "" + +#: ../../enterprise/tools/ipam/ipam_supernet_config.php:1060 +msgid "Address / Masks" +msgstr "" + +#: ../../enterprise/tools/ipam/ipam_supernet_config.php:1062 +msgid "Subnetting mask" +msgstr "" + +#: ../../enterprise/tools/ipam/ipam_supernet_config.php:1063 +msgid "Networks range" +msgstr "" + +#: ../../enterprise/tools/ipam/ipam_supernet_config.php:1071 +#: ../../enterprise/tools/ipam/ipam_vlan_config.php:688 +msgid "Networks" +msgstr "" + +#: ../../enterprise/tools/ipam/ipam_supernet_config.php:1237 +msgid "Delete network in supernet" +msgstr "" + +#: ../../enterprise/tools/ipam/ipam_supernet_config.php:1286 +msgid "Manage networks in supernet" +msgstr "" + +#: ../../enterprise/tools/ipam/ipam_supernet_config.php:1320 +msgid "Add network to supernet" +msgstr "" + +#: ../../enterprise/tools/ipam/ipam_supernet_config.php:1323 +msgid "Next network" +msgstr "" + +#: ../../enterprise/tools/ipam/ipam_supernet_config.php:1355 +msgid "Delete Supernet" +msgstr "" + +#: ../../enterprise/tools/ipam/ipam_supernet_config.php:1377 +#: ../../enterprise/tools/ipam/ipam_vlan_config.php:871 +#: ../../include/functions_visual_map_editor.php:793 +#: ../../include/rest-api/models/VisualConsole/Items/Group.php:562 +msgid "Show statistics" +msgstr "" + +#: ../../enterprise/tools/ipam/ipam_supernet_config.php:1444 +msgid "No Supernet found" +msgstr "" + +#: ../../enterprise/tools/ipam/ipam_list.php:151 +#: ../../enterprise/tools/ipam/ipam_list.php:602 +#: ../../enterprise/tools/ipam/ipam_vlan_wizard.php:58 +#: ../../enterprise/tools/ipam/ipam_vlan_wizard.php:62 +#: ../../enterprise/tools/ipam/ipam_vlan_wizard.php:67 +#: ../../enterprise/tools/ipam/ipam_vlan_network.php:39 +#: ../../enterprise/tools/ipam/ipam_vlan_config.php:339 +msgid "Vlan" +msgstr "" + +#: ../../enterprise/tools/ipam/ipam_list.php:400 +#: ../../enterprise/tools/ipam/ipam_action.php:138 +#: ../../enterprise/tools/ipam/ipam_action.php:270 +msgid "Incorrect format in Subnet field" +msgstr "" + +#: ../../enterprise/tools/ipam/ipam_list.php:425 +#: ../../enterprise/tools/ipam/ipam_action.php:219 +#, php-format +msgid "Could not be created: %s" +msgstr "" + +#: ../../enterprise/tools/ipam/ipam_list.php:434 +#, php-format +msgid "%s networks created" +msgstr "" + +#: ../../enterprise/tools/ipam/ipam_list.php:436 +msgid "Networks creation failed" +msgstr "" + +#: ../../enterprise/tools/ipam/ipam_list.php:501 +msgid "No networks found" +msgstr "" + +#: ../../enterprise/tools/ipam/ipam_list.php:625 +msgid "IPs" +msgstr "" + +#: ../../enterprise/tools/ipam/ipam_list.php:708 +msgid "Edit network" +msgstr "" + +#: ../../enterprise/tools/ipam/ipam_list.php:719 +msgid "Delete network" +msgstr "" + +#: ../../enterprise/tools/ipam/ipam_vlan_wizard.php:53 +#: ../../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:1410 +msgid "Interfaces" +msgstr "" + +#: ../../enterprise/tools/ipam/ipam_vlan_wizard.php:58 +msgid "succesfully created" +msgstr "" + +#: ../../enterprise/tools/ipam/ipam_vlan_wizard.php:62 +msgid "not created" +msgstr "" + +#: ../../enterprise/tools/ipam/ipam_vlan_wizard.php:67 +msgid "exists in bbdd, please select other name" +msgstr "" + +#: ../../enterprise/tools/ipam/ipam_vlan_wizard.php:72 +msgid "please, select VLAN to be created" +msgstr "" + +#: ../../enterprise/tools/ipam/ipam_vlan_wizard.php:231 +msgid "Please enter adress, for search vlans" +msgstr "" + +#: ../../enterprise/tools/ipam/ipam_vlan_wizard.php:263 +#: ../../godmode/modules/manage_network_components_form_network.php:82 +#: ../../godmode/agentes/module_manager_editor_network.php:149 +#: ../../include/class/AgentWizard.class.php:712 +msgid "SNMP community" +msgstr "" + +#: ../../enterprise/tools/ipam/ipam_vlan_wizard.php:337 +msgid "privacy pass" +msgstr "" + +#: ../../enterprise/tools/ipam/ipam_vlan_wizard.php:374 +#: ../../godmode/wizards/HostDevices.class.php:1248 +msgid "Context" +msgstr "" + +#: ../../enterprise/tools/ipam/ipam_vlan_wizard.php:397 +msgid "Run" +msgstr "" + +#: ../../enterprise/tools/ipam/ipam_vlan_wizard.php:409 +msgid "Vlan name" +msgstr "" + +#: ../../enterprise/tools/ipam/ipam_vlan_wizard.php:424 +#: ../../enterprise/tools/ipam/ipam_ajax.php:489 +msgid "Created" +msgstr "" + +#: ../../enterprise/tools/ipam/ipam_vlan_wizard.php:459 +#: ../../enterprise/tools/ipam/ipam_vlan_config.php:906 +msgid "No vlans found" +msgstr "" + +#: ../../enterprise/tools/ipam/ipam_action.php:198 +#, php-format +msgid "Network could not be added to supernet %s (%s)" +msgstr "" + +#: ../../enterprise/tools/ipam/ipam_action.php:202 +#, php-format +msgid "Network added to supernet %s (%s)" +msgstr "" + +#: ../../enterprise/tools/ipam/ipam_action.php:207 +#, php-format +msgid "Network name already exists in supernet %s (%s)" +msgstr "" + +#: ../../enterprise/tools/ipam/ipam_action.php:374 +#: ../../operation/agentes/pandora_networkmap.view.php:1613 +msgid "Could not be updated." +msgstr "" + +#: ../../enterprise/tools/ipam/ipam_action.php:380 +#: ../../update_manager_client/views/offline.php:78 +#: ../../update_manager_client/views/online.php:94 +msgid "Successfully updated." +msgstr "" + +#: ../../enterprise/tools/ipam/ipam_action.php:385 +#: ../../include/functions_reporting.php:2712 +msgid "No changes found." +msgstr "" + +#: ../../enterprise/tools/ipam/ipam_network_location_config.php:40 +#: ../../godmode/modules/manage_nc_groups.php:64 +msgid "Could not be created. Blank name" +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:221 +msgid "Not updated. Error updating data" +msgstr "" + +#: ../../enterprise/tools/ipam/ipam_network_location_config.php:110 +#, php-format +msgid "%d/%d items deleted" +msgstr "" + +#: ../../enterprise/tools/ipam/ipam_network_location_config.php:112 +msgid "Failed to delete items" +msgstr "" + +#: ../../enterprise/tools/ipam/ipam_network_location_config.php:167 +msgid "Search filter by name or network address" +msgstr "" + +#: ../../enterprise/tools/ipam/ipam_network_location_config.php:273 +msgid "No locations found" +msgstr "" + +#: ../../enterprise/tools/ipam/ipam_network_location_config.php:309 +msgid "There are no defined network locations" +msgstr "" + +#: ../../enterprise/tools/ipam/ipam_excel.php:135 +msgid "Subneting Mask" +msgstr "" + +#: ../../enterprise/tools/ipam/ipam_ajax.php:285 +msgid "There is not an available IP." +msgstr "" + +#: ../../enterprise/tools/ipam/ipam_ajax.php:287 +msgid "Next available IP Address is:" +msgstr "" + +#: ../../enterprise/tools/ipam/ipam_ajax.php:313 +msgid "Reserve this IP now" +msgstr "" + +#: ../../enterprise/tools/ipam/ipam_ajax.php:329 +msgid "Manage this IP now" +msgstr "" + +#: ../../enterprise/tools/ipam/ipam_ajax.php:374 +msgid "Operating system" +msgstr "" + +#: ../../enterprise/tools/ipam/ipam_ajax.php:384 +msgid "This agent has other IPs" +msgstr "" + +#: ../../enterprise/tools/ipam/ipam_ajax.php:393 +msgid "Generate events" +msgstr "" + +#: ../../enterprise/tools/ipam/ipam_ajax.php:445 +msgid "Leases Dhcp" +msgstr "" + +#: ../../enterprise/tools/ipam/ipam_ajax.php:455 +msgid "leased mode" +msgstr "" + +#: ../../enterprise/tools/ipam/ipam_ajax.php:468 +msgid "leased expiration" +msgstr "" + +#: ../../enterprise/tools/ipam/ipam_ajax.php:473 +#: ../../include/class/NetworkMap.class.php:2910 +msgid "MAC" +msgstr "" + +#: ../../enterprise/tools/ipam/ipam_ajax.php:499 +msgid "Edited" +msgstr "" + +#: ../../enterprise/tools/ipam/ipam_ajax.php:509 +msgid "Tracking" +msgstr "" + +#: ../../enterprise/tools/ipam/ipam_ajax.php:524 +msgid "Ping" +msgstr "" + +#: ../../enterprise/tools/ipam/ipam_ajax.php:540 +#: ../../include/ajax/events.php:1365 +#, php-format +msgid "Executing command: %s" +msgstr "" + +#: ../../enterprise/tools/ipam/ipam_ajax.php:551 +#: ../../include/ajax/events.php:1382 ../../include/ajax/events.php:1409 +msgid "Execute again" +msgstr "" + +#: ../../enterprise/tools/ipam/ipam_ajax.php:565 +msgid "Ping to host" +msgstr "" + +#: ../../enterprise/tools/ipam/ipam_supernet_treeview.php:94 +msgid "Found supernets" +msgstr "" + +#: ../../enterprise/tools/ipam/ipam_vlan_config.php:45 +#: ../../enterprise/tools/ipam/ipam_vlan_config.php:268 +msgid "There is no VLAN name. Please introduce a name" +msgstr "" + +#: ../../enterprise/tools/ipam/ipam_vlan_config.php:49 +#: ../../enterprise/tools/ipam/ipam_vlan_config.php:87 +#: ../../enterprise/tools/ipam/ipam_vlan_config.php:272 +msgid "Custom ID is not valid" +msgstr "" + +#: ../../enterprise/tools/ipam/ipam_vlan_config.php:66 +msgid "Vlan created" +msgstr "" + +#: ../../enterprise/tools/ipam/ipam_vlan_config.php:68 +msgid "Vlan not created" +msgstr "" + +#: ../../enterprise/tools/ipam/ipam_vlan_config.php:72 +#: ../../enterprise/tools/ipam/ipam_vlan_config.php:296 +msgid "VLAN name exists in database, please select another name" +msgstr "" + +#: ../../enterprise/tools/ipam/ipam_vlan_config.php:83 +msgid "There is no vlan name. Please introduce a name" +msgstr "" + +#: ../../enterprise/tools/ipam/ipam_vlan_config.php:109 +msgid "Vlan updated" +msgstr "" + +#: ../../enterprise/tools/ipam/ipam_vlan_config.php:111 +msgid "Vlan not updated" +msgstr "" + +#: ../../enterprise/tools/ipam/ipam_vlan_config.php:115 +msgid "Vlan name exists in database, please select other name" +msgstr "" + +#: ../../enterprise/tools/ipam/ipam_vlan_config.php:135 +msgid "Could not be deleted, please select vlan" +msgstr "" + +#: ../../enterprise/tools/ipam/ipam_vlan_config.php:163 +msgid "Network name cannot be repeated in this Vlan" +msgstr "" + +#: ../../enterprise/tools/ipam/ipam_vlan_config.php:179 +msgid "Network name could not be added, please select network" +msgstr "" + +#: ../../enterprise/tools/ipam/ipam_vlan_config.php:184 +msgid "Vlan name could not be added, please select vlan" +msgstr "" + +#: ../../enterprise/tools/ipam/ipam_vlan_config.php:212 +msgid "Could not be deleted, please select VLAN and network" +msgstr "" + +#: ../../enterprise/tools/ipam/ipam_vlan_config.php:219 +#, php-format +msgid "Failed to delete %d/%d networks from VLAN" +msgstr "" + +#: ../../enterprise/tools/ipam/ipam_vlan_config.php:223 +msgid "Successfully deleted network from VLAN" +msgstr "" + +#: ../../enterprise/tools/ipam/ipam_vlan_config.php:225 +#, php-format +msgid "Successfully deleted %d/%d networks from VLAN" +msgstr "" + +#: ../../enterprise/tools/ipam/ipam_vlan_config.php:303 +#, php-format +msgid "%s VLAN networks have been created" +msgstr "" + +#: ../../enterprise/tools/ipam/ipam_vlan_config.php:305 +msgid "Could not create VLAN networks" +msgstr "" + +#: ../../enterprise/tools/ipam/ipam_vlan_config.php:366 +#: ../../enterprise/tools/ipam/ipam_vlan_config.php:822 +msgid "Update Vlan" +msgstr "" + +#: ../../enterprise/tools/ipam/ipam_vlan_config.php:373 +#: ../../enterprise/tools/ipam/ipam_vlan_config.php:917 +msgid "New Vlan" +msgstr "" + +#: ../../enterprise/tools/ipam/ipam_vlan_config.php:435 +msgid "Search filter by name" +msgstr "" + +#: ../../enterprise/tools/ipam/ipam_vlan_config.php:736 +msgid "Delete network to vlan" +msgstr "" + +#: ../../enterprise/tools/ipam/ipam_vlan_config.php:796 +msgid "Manage networks in VLAN" +msgstr "" + +#: ../../enterprise/tools/ipam/ipam_vlan_config.php:816 +msgid "Not assigned networks" +msgstr "" + +#: ../../enterprise/tools/ipam/ipam_vlan_config.php:829 +#: ../../enterprise/tools/ipam/ipam_vlan_config.php:848 +msgid "Add network to Vlan" +msgstr "" + +#: ../../enterprise/tools/ipam/ipam_vlan_config.php:832 +msgid "Create network" +msgstr "" + +#: ../../enterprise/tools/ipam/ipam_vlan_config.php:865 +msgid "Delete Vlan" +msgstr "" + +#: ../../enterprise/tools/ipam/ipam_massive.php:82 +msgid "Addresses" +msgstr "" + +#: ../../enterprise/tools/ipam/ipam_calculator.php:64 +#: ../../enterprise/tools/ipam/ipam_calculator.php:66 +#: ../../enterprise/tools/ipam/ipam_calculator.php:87 +#: ../../enterprise/tools/ipam/ipam_calculator.php:90 +#: ../../enterprise/tools/ipam/ipam_calculator.php:93 +#: ../../enterprise/tools/ipam/ipam_calculator.php:96 +msgid "Example:" +msgstr "" + +#: ../../enterprise/tools/ipam/ipam_calculator.php:70 +msgid "Bit mask" +msgstr "" + +#: ../../enterprise/tools/ipam/ipam_calculator.php:71 +msgid "Net mask" +msgstr "" + +#: ../../enterprise/tools/ipam/ipam_calculator.php:74 +msgid "Mask format" +msgstr "" + +#: ../../enterprise/tools/ipam/ipam_calculator.php:105 +msgid "Calculate" +msgstr "" + +#: ../../enterprise/tools/ipam/ipam_calculator.php:112 +msgid "Address field is empty" +msgstr "" + +#: ../../enterprise/tools/ipam/ipam_calculator.php:120 +msgid "Mask field is empty" +msgstr "" + +#: ../../enterprise/tools/ipam/ipam_calculator.php:139 +#: ../../enterprise/tools/ipam/ipam_calculator.php:152 +msgid "Incorrect address format" +msgstr "" + +#: ../../enterprise/tools/ipam/ipam_calculator.php:144 +#: ../../enterprise/tools/ipam/ipam_calculator.php:157 +#: ../../enterprise/tools/ipam/ipam_calculator.php:162 +msgid "Incorrect mask format" +msgstr "" + +#: ../../enterprise/tools/ipam/ipam_calculator.php:190 +msgid "Network mask" +msgstr "" + +#: ../../enterprise/tools/ipam/ipam_calculator.php:211 +msgid "Network wildcard" +msgstr "" + +#: ../../enterprise/tools/ipam/ipam_calculator.php:220 +msgid "Network address" +msgstr "" + +#: ../../enterprise/tools/ipam/ipam_calculator.php:229 +msgid "Broadcast address" +msgstr "" + +#: ../../enterprise/tools/ipam/ipam_calculator.php:238 +msgid "First valid IP" +msgstr "" + +#: ../../enterprise/tools/ipam/ipam_calculator.php:247 +msgid "Last valid IP" +msgstr "" + +#: ../../enterprise/tools/ipam/ipam_calculator.php:257 +msgid "Hosts/Net" +msgstr "" + +#: ../../enterprise/tools/ipam/ipam_editor.php:56 +msgid "Network not found" +msgstr "" + +#: ../../enterprise/tools/ipam/ipam_editor.php:122 +msgid "Format: IP/Mask" +msgstr "" + +#: ../../enterprise/tools/ipam/ipam_editor.php:136 +msgid "Examples" +msgstr "" + +#: ../../update_manager_client/views/offline.php:65 +msgid "Drop the package here or" +msgstr "" + +#: ../../update_manager_client/views/offline.php:66 +msgid "Browse it" +msgstr "" + +#: ../../update_manager_client/views/offline.php:67 +msgid "The package has been uploaded successfully." +msgstr "" + +#: ../../update_manager_client/views/offline.php:68 +#, php-format +msgid "" +"Please keep in mind that this package is going to override your actual %s " +"files and that it's recommended to conduct a backup before continuing the " +"updating process." +msgstr "" + +#: ../../update_manager_client/views/offline.php:69 +msgid "Click on the file below to begin." +msgstr "" + +#: ../../update_manager_client/views/offline.php:70 +#: ../../update_manager_client/views/online.php:123 +#: ../../update_manager_client/views/online.php:164 +msgid "This action will upgrade this console to version " +msgstr "" + +#: ../../update_manager_client/views/offline.php:71 +msgid "This action will upgrade all servers to version " +msgstr "" + +#: ../../update_manager_client/views/offline.php:73 +#: ../../update_manager_client/views/online.php:89 +msgid "Updating to" +msgstr "" + +#: ../../update_manager_client/views/offline.php:74 +#: ../../update_manager_client/views/online.php:90 +msgid "Do you really want to leave our brilliant application?" +msgstr "" + +#: ../../update_manager_client/views/offline.php:75 +#: ../../update_manager_client/views/online.php:91 +msgid "There are no updates available" +msgstr "" + +#: ../../update_manager_client/views/offline.php:76 +#: ../../update_manager_client/views/online.php:92 +msgid "Searching for updates..." +msgstr "" + +#: ../../update_manager_client/views/offline.php:77 +#: ../../update_manager_client/views/online.php:93 +msgid "Package" +msgstr "" + +#: ../../update_manager_client/views/offline.php:79 +msgid "Package rejected. These package changes will not apply." +msgstr "" + +#: ../../update_manager_client/views/offline.php:81 +#, php-format +msgid "" +"This update does not correspond with next version of %s. Are you sure you " +"want to install it?" +msgstr "" + +#: ../../update_manager_client/views/offline.php:82 +msgid "" +"This server update does not correspond with current console version. Are you " +"sure you want to install it?" +msgstr "" + +#: ../../update_manager_client/views/offline.php:83 +msgid "" +"File name does not match required format: package_NUMBER.oum or " +"pandorafms_server[_enterprise]-7.0NG.NUMBER_x86[_64].tar.gz, you can use " +"numbers with decimals." +msgstr "" + +#: ../../update_manager_client/views/offline.php:84 +msgid "Files included in this package" +msgstr "" + +#: ../../update_manager_client/views/offline.php:85 +msgid "Ignore" +msgstr "" + +#: ../../update_manager_client/views/offline.php:86 +msgid "Verify package signature" +msgstr "" + +#: ../../update_manager_client/views/offline.php:87 +#, php-format +msgid "" +"Copy into the textarea the signature validation token you can retrieve from " +"%s and press OK to verify the package, press ignore to avoid signature " +"verification" +msgstr "" + +#: ../../update_manager_client/views/offline.php:88 +msgid "" +"This server update does not correspond with current console version and is " +"not going to be installed unless patches are allowed. Please enable patches " +"in update manager settings." +msgstr "" + +#: ../../update_manager_client/views/offline.php:89 +#, php-format +msgid "" +"This update does not correspond with next version of %s and is not going to " +"be installed unless patches are allowed. Please enable patches in update " +"manager settings." +msgstr "" + +#: ../../update_manager_client/views/register.php:47 +msgid "Register to Warp Update" +msgstr "" + +#: ../../update_manager_client/views/register.php:54 +#, php-format +msgid "Keep this %s console up to date with latest updates." +msgstr "" + +#: ../../update_manager_client/views/register.php:61 +#, php-format +msgid "" +"When you subscribe to the Warp update service for %s, you accept that we\n" +" register your %s instance as an identifier on a database owned " +"by %s. This data will solely be used to\n" +" provide you with information about %s and will not be conceded " +"to third parties. You can unregister from\n" +" said database at any time from the Warp update options." +msgstr "" + +#: ../../update_manager_client/views/register.php:74 +msgid "Visit our privacy policy for more information" +msgstr "" + +#: ../../update_manager_client/views/register.php:78 +#: ../../include/class/Diagnostics.class.php:1910 +msgid "Your email" +msgstr "" + +#: ../../update_manager_client/views/register.php:97 +msgid "OK!" +msgstr "" + +#: ../../update_manager_client/views/register.php:112 +msgid "Are you sure you don't want to use Warp update?" +msgstr "" + +#: ../../update_manager_client/views/register.php:116 +msgid "" +"You will need to update your system manually, through source code or RPM\n" +" packages to be up to date with latest updates." +msgstr "" + +#: ../../update_manager_client/views/register.php:208 +msgid "Unsuccessful subscription" +msgstr "" + +#: ../../update_manager_client/views/register.php:213 +msgid "Pandora successfully subscribed with UID: " +msgstr "" + +#: ../../update_manager_client/views/online.php:44 +msgid "The latest version of package installed is" +msgstr "" + +#: ../../update_manager_client/views/online.php:64 +msgid "Update to next version" +msgstr "" + +#: ../../update_manager_client/views/online.php:65 +msgid "Update to latest version" +msgstr "" + +#: ../../update_manager_client/views/online.php:124 +#: ../../update_manager_client/views/online.php:165 +msgid "Update to" +msgstr "" + +#: ../../update_manager_client/views/online.php:145 +#: ../../update_manager_client/views/online.php:149 +msgid "Failed to update to " +msgstr "" + +#: ../../update_manager_client/views/online.php:188 +msgid "Failed to update:" +msgstr "" + +#: ../../update_manager_client/lib/UpdateManager/UI/Manager.php:484 +msgid "Next update" +msgstr "" + +#: ../../update_manager_client/lib/UpdateManager/UI/Manager.php:489 +msgid "Show details" +msgstr "" + +#: ../../update_manager_client/lib/UpdateManager/UI/Manager.php:514 +#, php-format +msgid "%s update(s) available more" +msgstr "" + +#: ../../update_manager_client/lib/UpdateManager/UI/Manager.php:526 +msgid "details" +msgstr "" + +#: ../../update_manager_client/lib/UpdateManager/UI/Manager.php:604 +msgid "Failed creating temporary directory." +msgstr "" + +#: ../../update_manager_client/lib/UpdateManager/UI/Manager.php:614 +msgid "Failed storing uploaded file." +msgstr "" + +#: ../../update_manager_client/lib/UpdateManager/UI/Manager.php:646 +#, php-format +msgid "Invalid extension. The package needs to be in `%s` or `%s` format." +msgstr "" + +#: ../../update_manager_client/lib/UpdateManager/UI/Manager.php:655 +msgid "Failed uploading file." +msgstr "" + +#: ../../update_manager_client/lib/UpdateManager/UI/Manager.php:690 +msgid "Signatures does not match." +msgstr "" + +#: ../../update_manager_client/lib/UpdateManager/UI/Manager.php:749 +#, php-format +msgid "Update %s successfully installed." +msgstr "" + +#: ../../update_manager_client/lib/UpdateManager/UI/Manager.php:752 +#, php-format +msgid "Failed while updating: %s" +msgstr "" + +#: ../../update_manager_client/lib/UpdateManager/Client.php:712 +#, php-format +msgid "server update %d" +msgstr "" + +#: ../../update_manager_client/lib/UpdateManager/Client.php:714 +#, php-format +msgid "console update %d" +msgstr "" + +#: ../../update_manager_client/lib/UpdateManager/Client.php:734 +#, php-format +msgid "Downloading %s %.2f/ %.2f MB." +msgstr "" + +#: ../../update_manager_client/lib/UpdateManager/Client.php:745 +#, php-format +msgid "Downloading %.2f MB" +msgstr "" + +#: ../../update_manager_client/lib/UpdateManager/Client.php:1469 +#, php-format +msgid "Failed to analyze package: %s" +msgstr "" + +#: ../../update_manager_client/lib/UpdateManager/Client.php:1560 +msgid "Searching update package" +msgstr "" + +#: ../../update_manager_client/lib/UpdateManager/Client.php:1592 +msgid "Retrieving update" +msgstr "" + +#: ../../update_manager_client/lib/UpdateManager/Client.php:1683 +msgid "Extracting package" +msgstr "" + +#: ../../update_manager_client/lib/UpdateManager/Client.php:1750 +msgid "Testing files" +msgstr "" + +#: ../../update_manager_client/lib/UpdateManager/Client.php:1782 +#, php-format +msgid "Applying MR %s" +msgstr "" + +#: ../../update_manager_client/lib/UpdateManager/Client.php:1819 +msgid "Applying file updates" +msgstr "" + +#: ../../update_manager_client/lib/UpdateManager/Client.php:1841 +msgid "Retrieving server update" +msgstr "" + +#: ../../update_manager_client/lib/UpdateManager/Client.php:1856 +msgid "Cleaning" +msgstr "" + +#: ../../update_manager_client/lib/UpdateManager/Client.php:1969 +msgid "Updating to " +msgstr "" + +#: ../../extensions/disabled/matrix_events.php:30 +msgid "Matrix events" +msgstr "" + +#: ../../extensions/quick_shell.php:140 ../../extensions/quick_shell.php:244 +msgid "WebService engine has not been started, please check documentation." +msgstr "" + +#: ../../extensions/quick_shell.php:152 +msgid "Retry" +msgstr "" + +#: ../../extensions/quick_shell.php:196 +msgid "Telnet" +msgstr "" + +#: ../../extensions/quick_shell.php:204 +msgid "Connect" +msgstr "" + +#: ../../extensions/quick_shell.php:232 +msgid "Please use SSH or Telnet." +msgstr "" + +#: ../../extensions/quick_shell.php:266 +msgid "WebService engine is not working properly, please check documentation." +msgstr "" + +#: ../../extensions/quick_shell.php:425 +#, php-format +msgid "%d Updated" +msgstr "" + +#: ../../extensions/quick_shell.php:428 +#, php-format +msgid "%d Updated, please restart WebSocket engine service" +msgstr "" + +#: ../../extensions/quick_shell.php:438 +msgid "Quickshell" +msgstr "" + +#: ../../extensions/quick_shell.php:448 +msgid "Gotty path" +msgstr "" + +#: ../../extensions/quick_shell.php:458 +msgid "Gotty host" +msgstr "" + +#: ../../extensions/quick_shell.php:468 +msgid "Gotty ssh port" +msgstr "" + +#: ../../extensions/quick_shell.php:478 +msgid "Gotty telnet port" +msgstr "" + +#: ../../extensions/quick_shell.php:495 +msgid "Gotty user" +msgstr "" + +#: ../../extensions/quick_shell.php:505 +msgid "Gotty password" +msgstr "" + +#: ../../extensions/quick_shell.php:545 +msgid "QuickShell" +msgstr "" + +#: ../../extensions/extension_uploader.php:29 +msgid "Uploader extension" +msgstr "" + +#: ../../extensions/extension_uploader.php:72 +msgid "Success to upload extension" +msgstr "" + +#: ../../extensions/extension_uploader.php:73 +msgid "Fail to upload extension" +msgstr "" + +#: ../../extensions/extension_uploader.php:82 +msgid "Upload extension" +msgstr "" + +#: ../../extensions/extension_uploader.php:83 +msgid "Upload the extension as a zip file." +msgstr "" + +#: ../../extensions/extension_uploader.php:85 +msgid "Upload enterprise extension" +msgstr "" + +#: ../../extensions/extension_uploader.php:98 +msgid "Extension uploader" +msgstr "" + +#: ../../extensions/resource_registration.php:55 +#, php-format +msgid "Success add '%s' item in report '%s'." +msgstr "" + +#: ../../extensions/resource_registration.php:60 +#, php-format +msgid "Error create '%s' item in report '%s'." +msgstr "" + +#: ../../extensions/resource_registration.php:96 +#, php-format +msgid "Error create '%s' report, the name exist and there aren't free name." +msgstr "" + +#: ../../extensions/resource_registration.php:104 +#, php-format +msgid "Warning create '%s' report, the name exist, the report have a name %s." +msgstr "" + +#: ../../extensions/resource_registration.php:113 +msgid "Error the report haven't name." +msgstr "" + +#: ../../extensions/resource_registration.php:127 +msgid "Error the report haven't group." +msgstr "" + +#: ../../extensions/resource_registration.php:140 +#, php-format +msgid "Success create '%s' report." +msgstr "" + +#: ../../extensions/resource_registration.php:141 +#, php-format +msgid "Error create '%s' report." +msgstr "" + +#: ../../extensions/resource_registration.php:435 +#: ../../extensions/resource_registration.php:457 +#: ../../extensions/resource_registration.php:468 +#, php-format +msgid "Success add '%s' content." +msgstr "" + +#: ../../extensions/resource_registration.php:445 +#, php-format +msgid "Success add '%s' SLA." +msgstr "" + +#: ../../extensions/resource_registration.php:446 +#, php-format +msgid "Error add '%s' SLA." +msgstr "" + +#: ../../extensions/resource_registration.php:489 +#, php-format +msgid "Error create '%s' visual map, lost tag name." +msgstr "" + +#: ../../extensions/resource_registration.php:532 +#, php-format +msgid "" +"Error create '%s' visual map, the name exist and there aren't free name." +msgstr "" + +#: ../../extensions/resource_registration.php:540 +#, php-format +msgid "" +"Warning create '%s' visual map, the name exist, the report have a name %s." +msgstr "" + +#: ../../extensions/resource_registration.php:552 +#, php-format +msgid "Success create '%s' visual map." +msgstr "" + +#: ../../extensions/resource_registration.php:553 +#, php-format +msgid "Error create '%s' visual map." +msgstr "" + +#: ../../extensions/resource_registration.php:718 +#, php-format +msgid "Success create item type '%d' visual map." +msgstr "" + +#: ../../extensions/resource_registration.php:719 +#, php-format +msgid "Error create item type '%d' visual map." +msgstr "" + +#: ../../extensions/resource_registration.php:742 +#: ../../extensions/resource_registration.php:763 +#, php-format +msgid "Success create item for agent '%s' visual map." +msgstr "" + +#: ../../extensions/resource_registration.php:743 +#: ../../extensions/resource_registration.php:764 +#, php-format +msgid "Error create item for agent '%s' visual map." +msgstr "" + +#: ../../extensions/resource_registration.php:1028 +#, php-format +msgid "Success create '%s' component." +msgstr "" + +#: ../../extensions/resource_registration.php:1029 +#, php-format +msgid "Error create '%s' component." +msgstr "" + +#: ../../extensions/resource_registration.php:1095 +#: ../../extensions/resource_registration.php:1158 +msgid "Resource registration" +msgstr "" + +#: ../../extensions/resource_registration.php:1114 +#, php-format +msgid "" +"This node is configured with centralized mode. Go to %s to create a policy." +msgstr "" + +#: ../../extensions/resource_registration.php:1123 +msgid "This extension makes registering resource templates easier." +msgstr "" + +#: ../../extensions/resource_registration.php:1123 +msgid "Here you can upload a resource template in .ptr format." +msgstr "" + +#: ../../extensions/resource_registration.php:1123 +#, php-format +msgid "" +"Please refer to our documentation for more information on how to obtain and " +"use %s resources." +msgstr "" + +#: ../../extensions/resource_registration.php:1123 +msgid "" +"You can get more resurces in our Public Resource Library" +msgstr "" + +#: ../../extensions/api_checker.php:111 ../../extensions/api_checker.php:248 +msgid "API checker" +msgstr "" + +#: ../../extensions/api_checker.php:128 +#, php-format +msgid "%s Console URL" +msgstr "" + +#: ../../extensions/api_checker.php:133 +msgid "API Pass" +msgstr "" + +#: ../../extensions/api_checker.php:151 +msgid "Action (get or set)" +msgstr "" + +#: ../../extensions/api_checker.php:166 +msgid "ID 2" +msgstr "" + +#: ../../extensions/api_checker.php:171 +msgid "Return Type" +msgstr "" + +#: ../../extensions/api_checker.php:181 +msgid "Other Mode" +msgstr "" + +#: ../../extensions/api_checker.php:189 +msgid "Raw URL" +msgstr "" + +#: ../../extensions/api_checker.php:200 +msgid "Call parameters" +msgstr "" + +#: ../../extensions/api_checker.php:200 +msgid "Action: get Operation: module_last_value id: 63" +msgstr "" + +#: ../../extensions/api_checker.php:207 +msgid "Custom URL" +msgstr "" + +#: ../../extensions/api_checker.php:213 +msgid "Call" +msgstr "" + +#: ../../extensions/api_checker.php:222 ../../extensions/api_checker.php:239 +msgid "Show URL" +msgstr "" + +#: ../../extensions/api_checker.php:235 +msgid "Hide URL" +msgstr "" + +#: ../../extensions/db_status.php:25 ../../extensions/db_status.php:453 +#: ../../godmode/menu.php:439 +msgid "DB Schema check" +msgstr "" + +#: ../../extensions/db_status.php:43 +msgid "" +"This extension checks the DB is correct. Because sometimes the old DB from a " +"migration has not some fields in the tables or the data is changed." +msgstr "" + +#: ../../extensions/db_status.php:46 +msgid "At the moment the checks is for MySQL/MariaDB." +msgstr "" + +#: ../../extensions/db_status.php:52 +msgid "DB settings" +msgstr "" + +#: ../../extensions/db_status.php:56 +msgid "DB User with privileges" +msgstr "" + +#: ../../extensions/db_status.php:58 +msgid "DB Password for this user" +msgstr "" + +#: ../../extensions/db_status.php:62 +msgid "DB Hostname" +msgstr "" + +#: ../../extensions/db_status.php:64 +msgid "DB Name (temporal for testing)" +msgstr "" + +#: ../../extensions/db_status.php:72 +msgid "Execute Test" +msgstr "" + +#: ../../extensions/db_status.php:108 +msgid "Unsuccessful connected to the DB" +msgstr "" + +#: ../../extensions/db_status.php:119 +msgid "Unsuccessful created the testing DB" +msgstr "" + +#: ../../extensions/db_status.php:135 +msgid "Unsuccessful installed tables into the testing DB" +msgstr "" + +#: ../../extensions/db_status.php:219 +#, php-format +msgid "Success! %s DB contains all tables" +msgstr "" + +#: ../../extensions/db_status.php:221 +#, php-format +msgid "%s DB could not retrieve all tables. The missing tables are (%s)" +msgstr "" + +#: ../../extensions/db_status.php:235 ../../extensions/db_status.php:246 +#: ../../extensions/db_status.php:349 +msgid "You can execute this SQL query for to fix." +msgstr "" + +#: ../../extensions/db_status.php:343 +#, php-format +msgid "Unsuccessful the table %s has not the field %s" +msgstr "" + +#: ../../extensions/db_status.php:408 +msgid "Successful all the tables have the correct fields" +msgstr "" + +#: ../../extensions/agents_alerts.php:37 +msgid "Agents/Alerts view" +msgstr "" + +#: ../../extensions/resource_exportation.php:50 +#: ../../extensions/resource_exportation.php:420 +msgid "Resource exportation" +msgstr "" + +#: ../../extensions/resource_exportation.php:423 +msgid "This extension makes exportation of resource template more easy." +msgstr "" + +#: ../../extensions/resource_exportation.php:423 +msgid "You can export resource templates in .ptr format." +msgstr "" + +#: ../../extensions/files_repo.php:103 +msgid "Extension not installed" +msgstr "" + +#: ../../extensions/files_repo.php:118 ../../extensions/files_repo.php:207 +msgid "Administration view" +msgstr "" + +#: ../../extensions/files_repo.php:130 ../../extensions/files_repo.php:240 +msgid "Files repository manager" +msgstr "" + +#: ../../extensions/files_repo.php:148 +msgid "" +"Problem uploading. Please check this PHP runtime variable values:
      "
    +"post_max_size (currently "
    +msgstr ""
    +
    +#: ../../extensions/files_repo.php:221 ../../extensions/files_repo.php:238
    +msgid "Files repository"
    +msgstr ""
    +
    +#: ../../extensions/dbmanager.php:110
    +msgid "Database interface"
    +msgstr ""
    +
    +#: ../../extensions/dbmanager.php:123
    +msgid ""
    +"Warning, you are accessing the database directly. You can leave the system "
    +"inoperative if you run an inappropriate SQL statement"
    +msgstr ""
    +
    +#: ../../extensions/dbmanager.php:161
    +#, php-format
    +msgid ""
    +"This is an advanced extension to interface with %s database directly from "
    +"WEB console\n"
    +"\t\tusing native SQL sentences. Please note that you can damage your "
    +"%s installation\n"
    +"\t\tif you don't know exactly what are you are doing,\n"
    +"\t\tthis means that you can severily damage your setup using this "
    +"extension.\n"
    +"\t\tThis extension is intended to be used only by experienced users\n"
    +"\t\twith a depth knowledge of %s internals."
    +msgstr ""
    +
    +#: ../../extensions/dbmanager.php:207
    +msgid "Select query target"
    +msgstr ""
    +
    +#: ../../extensions/dbmanager.php:214
    +msgid "Execute SQL"
    +msgstr ""
    +
    +#: ../../extensions/dbmanager.php:255
    +msgid "Error querying database node"
    +msgstr ""
    +
    +#: ../../extensions/dbmanager.php:322 ../../godmode/menu.php:439
    +msgid "DB interface"
    +msgstr ""
    +
    +#: ../../extensions/agents_modules.php:396
    +#: ../../godmode/reporting/reporting_builder.item_editor.php:1953
    +#: ../../include/lib/Dashboard/Widgets/agent_module.php:255
    +msgid "Show module status"
    +msgstr ""
    +
    +#: ../../extensions/agents_modules.php:397
    +#: ../../godmode/reporting/reporting_builder.item_editor.php:1954
    +#: ../../include/lib/Dashboard/Widgets/agent_module.php:256
    +msgid "Show module data"
    +msgstr ""
    +
    +#: ../../extensions/agents_modules.php:400
    +#: ../../godmode/reporting/reporting_builder.item_editor.php:1949
    +#: ../../include/lib/Dashboard/Widgets/agent_module.php:265
    +msgid "Information to be shown"
    +msgstr ""
    +
    +#: ../../extensions/agents_modules.php:465
    +#: ../../include/functions_reports.php:795
    +msgid "Agents/Modules"
    +msgstr ""
    +
    +#: ../../extensions/agents_modules.php:564
    +msgid "Agent/module view"
    +msgstr ""
    +
    +#: ../../extensions/agents_modules.php:605
    +msgid "Filters "
    +msgstr ""
    +
    +#: ../../extensions/agents_modules.php:605
    +msgid "Secondary groups and agent subgroups will be taken into account."
    +msgstr ""
    +
    +#: ../../extensions/agents_modules.php:750
    +#: ../../include/functions_reporting.php:2986
    +msgid "There are no agents with modules"
    +msgstr ""
    +
    +#: ../../extensions/agents_modules.php:765
    +msgid "Previous modules"
    +msgstr ""
    +
    +#: ../../extensions/agents_modules.php:791
    +msgid "More modules"
    +msgstr ""
    +
    +#: ../../extensions/agents_modules.php:934
    +#: ../../include/functions_reporting_html.php:2069
    +msgid "Orange cell when the module has fired alerts"
    +msgstr ""
    +
    +#: ../../extensions/agents_modules.php:936
    +#: ../../include/functions_reporting_html.php:2070
    +msgid "Red cell when the module has a critical status"
    +msgstr ""
    +
    +#: ../../extensions/agents_modules.php:939
    +#: ../../include/functions_reporting_html.php:2071
    +msgid "Yellow cell when the module has a warning status"
    +msgstr ""
    +
    +#: ../../extensions/agents_modules.php:941
    +#: ../../include/functions_reporting_html.php:2072
    +msgid "Green cell when the module has a normal status"
    +msgstr ""
    +
    +#: ../../extensions/agents_modules.php:943
    +#: ../../include/functions_reporting_html.php:2073
    +msgid "Grey cell when the module has an unknown status"
    +msgstr ""
    +
    +#: ../../extensions/agents_modules.php:945
    +msgid "Cell turns blue when the module is in 'not initialize' status"
    +msgstr ""
    +
    +#: ../../extensions/agents_modules.php:959
    +msgid "Agents/Modules view"
    +msgstr ""
    +
    +#: ../../extensions/pandora_logs.php:29
    +msgid "Cannot find file"
    +msgstr ""
    +
    +#: ../../extensions/pandora_logs.php:34
    +msgid "File is too large than PHP memory allocated in the system."
    +msgstr ""
    +
    +#: ../../extensions/pandora_logs.php:35
    +msgid "The preview file is imposible."
    +msgstr ""
    +
    +#: ../../extensions/pandora_logs.php:38 ../../extensions/pandora_logs.php:45
    +msgid ""
    +"The folder /var/log/pandora must have pandora:apache and its content too."
    +msgstr ""
    +
    +#: ../../extensions/pandora_logs.php:67
    +msgid "System logfile viewer"
    +msgstr ""
    +
    +#: ../../extensions/pandora_logs.php:69
    +#, php-format
    +msgid "Use this tool to view your %s logfiles directly on the console"
    +msgstr ""
    +
    +#: ../../extensions/pandora_logs.php:71
    +msgid ""
    +"You can choose the amount of information shown in general setup (Log size "
    +"limit in system logs viewer extension), "
    +msgstr ""
    +
    +#: ../../extensions/pandora_logs.php:85
    +msgid "System logfiles"
    +msgstr ""
    +
    +#: ../../extensions/files_repo/functions_files_repo.php:28
    +#: ../../extensions/files_repo/functions_files_repo.php:46
    +msgid "Attachment directory is not writable by HTTP Server"
    +msgstr ""
    +
    +#: ../../extensions/files_repo/functions_files_repo.php:28
    +#: ../../extensions/files_repo/functions_files_repo.php:46
    +#, php-format
    +msgid "Please check that the web server has write rights on the %s directory"
    +msgstr ""
    +
    +#: ../../extensions/files_repo/functions_files_repo.php:248
    +msgid "The file could not be copied"
    +msgstr ""
    +
    +#: ../../extensions/files_repo/functions_files_repo.php:251
    +msgid "There was an error creating the file"
    +msgstr ""
    +
    +#: ../../extensions/files_repo/functions_files_repo.php:295
    +msgid "There was an error updating the file"
    +msgstr ""
    +
    +#: ../../extensions/files_repo/files_repo_get_file.php:66
    +msgid "Unreliable petition"
    +msgstr ""
    +
    +#: ../../extensions/files_repo/files_repo_get_file.php:66
    +msgid "Please contact the administrator"
    +msgstr ""
    +
    +#: ../../extensions/files_repo/files_repo_form.php:84
    +msgid "Only 200 characters are permitted"
    +msgstr ""
    +
    +#: ../../extensions/files_repo/files_repo_form.php:95
    +#: ../../godmode/extensions.php:138
    +msgid "File"
    +msgstr ""
    +
    +#: ../../extensions/files_repo/files_repo_form.php:98
    +#: ../../extensions/files_repo/files_repo_form.php:104
    +#: ../../extensions/files_repo/files_repo_list.php:112
    +msgid "Public link"
    +msgstr ""
    +
    +#: ../../extensions/files_repo/files_repo_list.php:58
    +#: ../../include/functions_filemanager.php:605
    +msgid "Last modification"
    +msgstr ""
    +
    +#: ../../extensions/files_repo/files_repo_list.php:106
    +msgid "Copy to clipboard"
    +msgstr ""
    +
    +#: ../../extensions/files_repo/files_repo_list.php:164
    +#: ../../include/functions_reporting_html.php:2101
    +#: ../../include/functions_reporting_html.php:2105
    +msgid "No items"
    +msgstr ""
    +
    +#: ../../extensions/module_groups.php:48
    +msgid "Counters Module"
    +msgstr ""
    +
    +#: ../../extensions/module_groups.php:49
    +msgid "Alerts_Fired"
    +msgstr ""
    +
    +#: ../../extensions/module_groups.php:51
    +msgid "warning"
    +msgstr ""
    +
    +#: ../../extensions/module_groups.php:54
    +msgid "Not_init"
    +msgstr ""
    +
    +#: ../../extensions/module_groups.php:251
    +msgid "Combined table of agent group and module group"
    +msgstr ""
    +
    +#: ../../extensions/module_groups.php:275
    +msgid "Search by agent group"
    +msgstr ""
    +
    +#: ../../extensions/module_groups.php:279
    +msgid "Search by module group"
    +msgstr ""
    +
    +#: ../../extensions/module_groups.php:392
    +msgid ""
    +"Orange cell when the module group and agent have at least one alarm fired."
    +msgstr ""
    +
    +#: ../../extensions/module_groups.php:393
    +msgid ""
    +"Red cell when the module group and agent have at least one module in "
    +"critical status and the others in any status"
    +msgstr ""
    +
    +#: ../../extensions/module_groups.php:394
    +msgid ""
    +"Yellow cell when the module group and agent have at least one in warning "
    +"status and the others in grey or green status"
    +msgstr ""
    +
    +#: ../../extensions/module_groups.php:395
    +msgid ""
    +"Grey cell when the module group and agent have at least one in unknown "
    +"status and the others in green status"
    +msgstr ""
    +
    +#: ../../extensions/module_groups.php:396
    +msgid ""
    +"Green cell when the module group and agent have all modules in OK status"
    +msgstr ""
    +
    +#: ../../extensions/module_groups.php:397
    +msgid ""
    +"Blue cell when the module group and agent have all modules in not init "
    +"status."
    +msgstr ""
    +
    +#: ../../extensions/module_groups.php:401
    +msgid ""
    +"This table shows in columns the modules group and in rows agents group. The "
    +"cell shows all modules"
    +msgstr ""
    +
    +#: ../../extensions/module_groups.php:402
    +msgid "There are no defined groups or module groups"
    +msgstr ""
    +
    +#: ../../extensions/module_groups.php:422 ../../godmode/menu.php:106
    +#: ../../include/lib/Dashboard/Widgets/tree_view.php:330
    +#: ../../operation/tree.php:102
    +msgid "Module groups"
    +msgstr ""
    +
    +#: ../../extensions/insert_data.php:58
    +msgid "Insert data"
    +msgstr ""
    +
    +#: ../../extensions/insert_data.php:89
    +msgid "You haven't privileges for insert data in the agent."
    +msgstr ""
    +
    +#: ../../extensions/insert_data.php:125
    +#, php-format
    +msgid "Can't save agent (%s), module (%s) data xml."
    +msgstr ""
    +
    +#: ../../extensions/insert_data.php:134
    +#, php-format
    +msgid "Save agent (%s), module (%s) data xml."
    +msgstr ""
    +
    +#: ../../extensions/insert_data.php:145
    +#, php-format
    +msgid ""
    +"Please check that the directory \"%s\" is writeable by the apache user. 

    The CSV file format is date;value<newline>date;value<" +"newline>... The date in CSV is in format Y/m/d H:i:s." +msgstr "" + +#: ../../extensions/insert_data.php:273 +msgid "Insert Data" +msgstr "" + +#: ../../extensions/realtime_graphs.php:58 +#: ../../extensions/realtime_graphs.php:268 +msgid "Realtime graphs" +msgstr "" + +#: ../../extensions/realtime_graphs.php:134 +#, php-format +msgid "%s Server CPU" +msgstr "" + +#: ../../extensions/realtime_graphs.php:136 +#, php-format +msgid "Pending packages from %s Server" +msgstr "" + +#: ../../extensions/realtime_graphs.php:140 +#, php-format +msgid "%s Server Disk IO Wait" +msgstr "" + +#: ../../extensions/realtime_graphs.php:144 +#, php-format +msgid "%s Server Apache load" +msgstr "" + +#: ../../extensions/realtime_graphs.php:148 +#, php-format +msgid "%s Server MySQL load" +msgstr "" + +#: ../../extensions/realtime_graphs.php:152 +#, php-format +msgid "%s Server load" +msgstr "" + +#: ../../extensions/realtime_graphs.php:155 +msgid "SNMP Interface throughput" +msgstr "" + +#: ../../extensions/realtime_graphs.php:206 +msgid "Refresh interval" +msgstr "" + +#: ../../extensions/realtime_graphs.php:217 +#: ../../godmode/modules/manage_network_components_form_wizard.php:135 +msgid "Incremental" +msgstr "" + +#: ../../extensions/realtime_graphs.php:222 +msgid "Clear graph" +msgstr "" + +#: ../../extensions/realtime_graphs.php:249 +#: ../../godmode/agentes/module_manager_editor_network.php:43 +msgid "Use this OID" +msgstr "" + +#: ../../extensions/users_connected.php:37 +#: ../../extensions/users_connected.php:209 +msgid "Users connected" +msgstr "" + +#: ../../extensions/users_connected.php:42 +msgid "This user does not have any associated profile" +msgstr "" + +#: ../../extensions/users_connected.php:132 +msgid "No other users connected" +msgstr "" + +#: ../../extensions/users_connected.php:145 +msgid "Last login" +msgstr "" + +#: ../../godmode/modules/manage_nc_groups_form.php:54 +msgid "Update Group Component" +msgstr "" + +#: ../../godmode/modules/manage_nc_groups_form.php:56 +msgid "Create Group Component" +msgstr "" + +#: ../../godmode/modules/manage_network_templates_form.php:32 +#: ../../godmode/modules/manage_network_templates.php:39 +#: ../../include/class/ModuleTemplates.class.php:199 +#: ../../include/class/ModuleTemplates.class.php:217 +#: ../../include/class/ModuleTemplates.class.php:227 +msgid "Module template management" +msgstr "" + +#: ../../godmode/modules/manage_network_templates_form.php:59 +msgid "Successfully deleted module from profile" +msgstr "" + +#: ../../godmode/modules/manage_network_templates_form.php:60 +msgid "Error deleting module from profile" +msgstr "" + +#: ../../godmode/modules/manage_network_templates_form.php:79 +msgid "Successfully added module to profile" +msgstr "" + +#: ../../godmode/modules/manage_network_templates_form.php:80 +msgid "Error adding module to profile" +msgstr "" + +#: ../../godmode/modules/manage_network_templates_form.php:113 +msgid "Successfully updated network profile" +msgstr "" + +#: ../../godmode/modules/manage_network_templates_form.php:114 +msgid "Error updating network profile" +msgstr "" + +#: ../../godmode/modules/manage_network_templates_form.php:138 +msgid "Successfully added network profile" +msgstr "" + +#: ../../godmode/modules/manage_network_templates_form.php:139 +msgid "Error adding network profile" +msgstr "" + +#: ../../godmode/modules/manage_network_templates_form.php:145 +msgid "Cannot create a template without name" +msgstr "" + +#: ../../godmode/modules/manage_network_templates_form.php:219 +msgid "No modules for this profile" +msgstr "" + +#: ../../godmode/modules/manage_network_templates_form.php:260 +#: ../../operation/snmpconsole/snmp_browser.php:155 +#: ../../operation/snmpconsole/snmp_browser.php:175 +msgid "Add modules" +msgstr "" + +#: ../../godmode/modules/manage_nc_groups.php:40 +msgid "Component group management" +msgstr "" + +#: ../../godmode/modules/manage_nc_groups.php:293 +#, php-format +msgid "" +"This node is configured with centralized mode. Component groups are read " +"only. Go to %s to manage it." +msgstr "" + +#: ../../godmode/modules/manage_nc_groups.php:311 +msgid "There are no defined component groups" +msgstr "" + +#: ../../godmode/modules/manage_network_components_form_common.php:712 +#: ../../godmode/agentes/module_manager_editor_common.php:2000 +msgid "Please introduce a positive percentage value" +msgstr "" + +#: ../../godmode/modules/manage_network_components_form_network.php:72 +msgid "SNMP Enterprise String" +msgstr "" + +#: ../../godmode/modules/manage_network_components_form_network.php:191 +#: ../../godmode/modules/manage_network_components_form_wizard.php:315 +msgid "Name OID" +msgstr "" + +#: ../../godmode/modules/manage_network_components_form_wmi.php:41 +#: ../../godmode/agentes/module_manager_editor_wmi.php:87 +msgid "Namespace" +msgstr "" + +#: ../../godmode/modules/manage_network_components_form.php:355 +msgid "Update Network Component" +msgstr "" + +#: ../../godmode/modules/manage_network_components_form.php:357 +msgid "Create Network Component" +msgstr "" + +#: ../../godmode/modules/manage_network_components.php:290 +msgid "Remote component management" +msgstr "" + +#: ../../godmode/modules/manage_network_components.php:313 +#, php-format +msgid "" +"This node is configured with centralized mode. All remote components are " +"read only. Go to %s to manage them." +msgstr "" + +#: ../../godmode/modules/manage_network_components.php:424 +msgid "Could not be created because the component exists" +msgstr "" + +#: ../../godmode/modules/manage_network_components.php:660 +msgid "Search by name, description, tcp send or tcp rcv, list matches." +msgstr "" + +#: ../../godmode/modules/manage_network_components.php:753 +msgid "Max/Min" +msgstr "" + +#: ../../godmode/modules/manage_network_components.php:804 +#: ../../include/class/ModuleTemplates.class.php:1234 +msgid "Network module" +msgstr "" + +#: ../../godmode/modules/manage_network_components.php:815 +#: ../../include/class/ModuleTemplates.class.php:1245 +msgid "WMI module" +msgstr "" + +#: ../../godmode/modules/manage_network_components.php:826 +#: ../../include/class/ModuleTemplates.class.php:1256 +msgid "Plug-in module" +msgstr "" + +#: ../../godmode/modules/manage_network_components.php:837 +msgid "Wizard module" +msgstr "" + +#: ../../godmode/modules/manage_network_components.php:910 +msgid "There are no defined network components" +msgstr "" + +#: ../../godmode/modules/manage_network_components.php:921 +msgid "Create a new network component" +msgstr "" + +#: ../../godmode/modules/manage_network_components.php:922 +msgid "Create a new plugin component" +msgstr "" + +#: ../../godmode/modules/manage_network_components.php:923 +msgid "Create a new WMI component" +msgstr "" + +#: ../../godmode/modules/manage_network_components.php:924 +msgid "Create a new wizard component" +msgstr "" + +#: ../../godmode/modules/manage_network_components_form_wizard.php:92 +msgid "Add a macro oid" +msgstr "" + +#: ../../godmode/modules/manage_network_components_form_wizard.php:110 +msgid "Remove last macro oid" +msgstr "" + +#: ../../godmode/modules/manage_network_components_form_wizard.php:134 +msgid "Numeric" +msgstr "" + +#: ../../godmode/modules/manage_network_components_form_wizard.php:136 +msgid "Boolean" +msgstr "" + +#: ../../godmode/modules/manage_network_components_form_wizard.php:137 +msgid "Alphanumeric" +msgstr "" + +#: ../../godmode/modules/manage_network_components_form_wizard.php:258 +msgid "Add by default" +msgstr "" + +#: ../../godmode/modules/manage_network_components_form_wizard.php:286 +msgid "Module protocol" +msgstr "" + +#: ../../godmode/modules/manage_network_components_form_wizard.php:302 +msgid "Protocol" +msgstr "" + +#: ../../godmode/modules/manage_network_components_form_wizard.php:318 +msgid "Manufacturer ID" +msgstr "" + +#: ../../godmode/modules/manage_network_components_form_wizard.php:350 +msgid "Component Group" +msgstr "" + +#: ../../godmode/modules/manage_network_components_form_wizard.php:368 +msgid "Module unit" +msgstr "" + +#: ../../godmode/modules/manage_network_components_form_wizard.php:458 +msgid "Scan Type" +msgstr "" + +#: ../../godmode/modules/manage_network_components_form_wizard.php:472 +#: ../../godmode/agentes/planned_downtime.list.php:321 +msgid "Execution type" +msgstr "" + +#: ../../godmode/modules/manage_network_components_form_wizard.php:492 +msgid "Value OID" +msgstr "" + +#: ../../godmode/modules/manage_network_components_form_wizard.php:509 +msgid "Macros OID" +msgstr "" + +#: ../../godmode/modules/manage_network_components_form_wizard.php:517 +#: ../../godmode/modules/manage_network_components_form_wizard.php:702 +msgid "Value operation" +msgstr "" + +#: ../../godmode/modules/manage_network_components_form_wizard.php:534 +#: ../../godmode/modules/manage_network_components_form_wizard.php:719 +msgid "Satellite execution" +msgstr "" + +#: ../../godmode/modules/manage_network_components_form_wizard.php:551 +#: ../../godmode/modules/manage_network_components_form_wizard.php:736 +msgid "Server plugin" +msgstr "" + +#: ../../godmode/modules/manage_network_components_form_wizard.php:589 +msgid "WMI class" +msgstr "" + +#: ../../godmode/modules/manage_network_components_form_wizard.php:606 +msgid "Query key field" +msgstr "" + +#: ../../godmode/modules/manage_network_components_form_wizard.php:623 +msgid "Query extra fields" +msgstr "" + +#: ../../godmode/modules/manage_network_components_form_wizard.php:631 +msgid "Query filters" +msgstr "" + +#: ../../godmode/modules/manage_network_components_form_wizard.php:674 +msgid "Field value" +msgstr "" + +#: ../../godmode/modules/module_list.php:29 +msgid "Defined modules" +msgstr "" + +#: ../../godmode/modules/module_list.php:51 +msgid "Problem modifying module" +msgstr "" + +#: ../../godmode/modules/module_list.php:53 +msgid "Module updated successfully" +msgstr "" + +#: ../../godmode/modules/manage_network_templates.php:84 +msgid "Error deleting template" +msgstr "" + +#: ../../godmode/modules/manage_network_templates.php:124 +msgid "This template does not exist" +msgstr "" + +#: ../../godmode/modules/manage_network_templates.php:304 +msgid "There are no defined network profiles" +msgstr "" + +#: ../../godmode/db/db_main.php:74 +msgid "Current database maintenance setup" +msgstr "" + +#: ../../godmode/db/db_main.php:80 +msgid "Database setup" +msgstr "" + +#: ../../godmode/db/db_main.php:84 +msgid "Max. time before compact data" +msgstr "" + +#: ../../godmode/db/db_main.php:90 +msgid "Max. time before purge" +msgstr "" + +#: ../../godmode/db/db_main.php:98 +#: ../../include/class/Diagnostics.class.php:230 +msgid "Database size stats" +msgstr "" + +#: ../../godmode/db/db_main.php:108 +#: ../../include/class/Diagnostics.class.php:569 +#: ../../include/functions_reporting.php:14085 +msgid "Total events" +msgstr "" + +#: ../../godmode/db/db_main.php:114 +msgid "Total data items (tagente_datos)" +msgstr "" + +#: ../../godmode/db/db_main.php:127 +msgid "Total log4x items (tagente_datos_log4x)" +msgstr "" + +#: ../../godmode/db/db_main.php:140 +msgid "Total data string items (tagente_datos_string)" +msgstr "" + +#: ../../godmode/db/db_main.php:146 +msgid "Total modules configured" +msgstr "" + +#: ../../godmode/db/db_main.php:154 +msgid "Total agent access records" +msgstr "" + +#: ../../godmode/db/db_main.php:166 +msgid "Database sanity" +msgstr "" + +#: ../../godmode/db/db_main.php:170 +msgid "Total uknown agents" +msgstr "" + +#: ../../godmode/db/db_main.php:176 +msgid "Total non-init modules" +msgstr "" + +#: ../../godmode/db/db_main.php:185 +msgid "Last time on DB maintance" +msgstr "" + +#: ../../godmode/db/db_main.php:208 +#, php-format +msgid "" +"Please make sure your %s Server settings are correct and that the database " +"maintenance daemon is running. It's very important to keep your database up " +"to date in order to get the best performance and results from %s." +msgstr "" + +#: ../../godmode/groups/configure_group.php:87 +#: ../../godmode/groups/configure_modu_group.php:49 +msgid "There was a problem loading group" +msgstr "" + +#: ../../godmode/groups/configure_group.php:106 +msgid "Update group" +msgstr "" + +#: ../../godmode/groups/configure_group.php:108 +#: ../../godmode/groups/group_list.php:981 +msgid "Create group" +msgstr "" + +#: ../../godmode/groups/configure_group.php:126 +#: ../../godmode/groups/group_list.php:384 +msgid "Manage agents group" +msgstr "" + +#: ../../godmode/groups/configure_group.php:138 +msgid "Update Group" +msgstr "" + +#: ../../godmode/groups/configure_group.php:140 +msgid "Create Group" +msgstr "" + +#: ../../godmode/groups/configure_group.php:178 +msgid "You have not access to the parent." +msgstr "" + +#: ../../godmode/groups/configure_group.php:226 +msgid "Group Password" +msgstr "" + +#: ../../godmode/groups/configure_group.php:230 +msgid "Enable alert use in this group." +msgstr "" + +#: ../../godmode/groups/configure_group.php:234 +msgid "Propagate ACL" +msgstr "" + +#: ../../godmode/groups/configure_group.php:234 +msgid "Propagate the same ACL security into the child subgroups." +msgstr "" + +#: ../../godmode/groups/configure_group.php:246 +#: ../../include/functions_events.php:4662 +msgid "Contact" +msgstr "" + +#: ../../godmode/groups/configure_group.php:246 +msgid "Contact information accessible through the _groupcontact_ macro" +msgstr "" + +#: ../../godmode/groups/configure_group.php:250 +msgid "Information accessible through the _group_other_ macro" +msgstr "" + +#: ../../godmode/groups/configure_group.php:259 +msgid "Max agents allowed" +msgstr "" + +#: ../../godmode/groups/configure_group.php:259 +msgid "Set the maximum of agents allowed for this group. 0 is unlimited." +msgstr "" + +#: ../../godmode/groups/group_list.php:309 +msgid "Tree Group view" +msgstr "" + +#: ../../godmode/groups/group_list.php:333 +msgid "Credential Store" +msgstr "" + +#: ../../godmode/groups/group_list.php:339 +#, php-format +msgid "Groups defined in %s" +msgstr "" + +#: ../../godmode/groups/group_list.php:349 ../../godmode/menu.php:212 +msgid "Credential store" +msgstr "" + +#: ../../godmode/groups/group_list.php:365 +msgid "Edit or delete groups can cause problems with synchronization" +msgstr "" + +#: ../../godmode/groups/group_list.php:403 +#, 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/modu_group_list.php:119 +msgid "Group successfully created" +msgstr "" + +#: ../../godmode/groups/group_list.php:470 +#: ../../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 +msgid "Each group must have a different name" +msgstr "" + +#: ../../godmode/groups/group_list.php:476 +#: ../../godmode/groups/group_list.php:548 +msgid "Group must have a name" +msgstr "" + +#: ../../godmode/groups/group_list.php:540 +#: ../../godmode/groups/modu_group_list.php:155 +msgid "Group successfully updated" +msgstr "" + +#: ../../godmode/groups/group_list.php:542 +#: ../../godmode/groups/modu_group_list.php:158 +msgid "There was a problem modifying group" +msgstr "" + +#: ../../godmode/groups/group_list.php:605 +#, 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 +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 +#, php-format +msgid "The group %s has been deleted in the nodes" +msgstr "" + +#: ../../godmode/groups/group_list.php:720 +#: ../../godmode/groups/modu_group_list.php:229 +msgid "Group successfully deleted" +msgstr "" + +#: ../../godmode/groups/group_list.php:723 +#: ../../godmode/groups/modu_group_list.php:227 +msgid "There was a problem deleting group" +msgstr "" + +#: ../../godmode/groups/group_list.php:730 +#, 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 +msgid "There are no defined groups" +msgstr "" + +#: ../../godmode/groups/group_list.php:924 +msgid "Are you sure? This group will also be deleted in all the nodes." +msgstr "" + +#: ../../godmode/groups/group_list.php:930 +msgid "" +"The child groups will be updated to use the parent id of the deleted group" +msgstr "" + +#: ../../godmode/groups/configure_modu_group.php:31 +msgid "Module group management" +msgstr "" + +#: ../../godmode/groups/modu_group_list.php:70 +#, php-format +msgid "Module groups defined in %s" +msgstr "" + +#: ../../godmode/groups/modu_group_list.php:92 +#, php-format +msgid "" +"This node is configured with centralized mode. All module groups information " +"is read only. Go to %s to manage it." +msgstr "" + +#: ../../godmode/groups/modu_group_list.php:127 +#: ../../godmode/groups/modu_group_list.php:163 +msgid "Each module group must have a different name" +msgstr "" + +#: ../../godmode/groups/modu_group_list.php:131 +#: ../../godmode/groups/modu_group_list.php:167 +msgid "Module group must have a name" +msgstr "" + +#: ../../godmode/groups/modu_group_list.php:294 +msgid "There are no defined module groups" +msgstr "" + +#: ../../godmode/groups/modu_group_list.php:303 +msgid "Create module group" +msgstr "" + +#: ../../godmode/extensions.php:28 +msgid "Defined extensions" +msgstr "" + +#: ../../godmode/extensions.php:33 +msgid "There are no extensions defined" +msgstr "" + +#: ../../godmode/extensions.php:141 +msgid "Godmode Function" +msgstr "" + +#: ../../godmode/extensions.php:142 +msgid "Godmode Menu" +msgstr "" + +#: ../../godmode/extensions.php:143 +msgid "Operation Menu" +msgstr "" + +#: ../../godmode/extensions.php:144 +msgid "Operation Function" +msgstr "" + +#: ../../godmode/extensions.php:145 +msgid "Login Function" +msgstr "" + +#: ../../godmode/extensions.php:146 +msgid "Agent operation tab" +msgstr "" + +#: ../../godmode/extensions.php:147 +msgid "Agent godmode tab" +msgstr "" + +#: ../../godmode/update_manager/update_manager.setup.php:271 +msgid "Warp Update URL" +msgstr "" + +#: ../../godmode/update_manager/update_manager.setup.php:275 +msgid "URL update manager" +msgstr "" + +#: ../../godmode/update_manager/update_manager.setup.php:282 +msgid "Use secured Warp Update" +msgstr "" + +#: ../../godmode/update_manager/update_manager.setup.php:291 +#: ../../godmode/update_manager/update_manager.setup.php:295 +msgid "Proxy server" +msgstr "" + +#: ../../godmode/update_manager/update_manager.setup.php:301 +#: ../../godmode/update_manager/update_manager.setup.php:305 +msgid "Proxy port" +msgstr "" + +#: ../../godmode/update_manager/update_manager.setup.php:311 +#: ../../godmode/update_manager/update_manager.setup.php:315 +msgid "Proxy user" +msgstr "" + +#: ../../godmode/update_manager/update_manager.setup.php:321 +#: ../../godmode/update_manager/update_manager.setup.php:325 +msgid "Proxy password" +msgstr "" + +#: ../../godmode/update_manager/update_manager.setup.php:331 +msgid "Allow no-consecutive patches" +msgstr "" + +#: ../../godmode/update_manager/update_manager.setup.php:340 +msgid "Limit to LTS updates" +msgstr "" + +#: ../../godmode/update_manager/update_manager.setup.php:350 +msgid "Registration ID" +msgstr "" + +#: ../../godmode/update_manager/update_manager.setup.php:351 +msgid "Not registred yet" +msgstr "" + +#: ../../godmode/update_manager/update_manager.setup.php:354 +msgid "Cancel registration" +msgstr "" + +#: ../../godmode/update_manager/update_manager.setup.php:366 +msgid "Unregister" +msgstr "" + +#: ../../godmode/update_manager/update_manager.setup.php:371 +#, php-format +msgid "%s community reminder" +msgstr "" + +#: ../../godmode/update_manager/update_manager.setup.php:371 +#, php-format +msgid "" +"Every 8 days, a message is displayed to admin users to remember to register " +"this %s instance" +msgstr "" + +#: ../../godmode/update_manager/update_manager.history.php:42 +msgid "Origin" +msgstr "" + +#: ../../godmode/update_manager/update_manager.php:64 +#: ../../godmode/update_manager/update_manager.php:83 +msgid "Journal" +msgstr "" + +#: ../../godmode/update_manager/update_manager.php:71 +msgid "Offline update" +msgstr "" + +#: ../../godmode/update_manager/update_manager.php:78 +msgid "Online update" +msgstr "" + +#: ../../godmode/update_manager/update_manager.php:91 +msgid "Offline" +msgstr "" + +#: ../../godmode/update_manager/update_manager.php:96 +msgid "Online" +msgstr "" + +#: ../../godmode/update_manager/update_manager.php:159 +msgid "Please register on metaconsole first." +msgstr "" + +#: ../../godmode/users/profile_list.php:84 +#: ../../godmode/users/configure_profile.php:76 +#, php-format +msgid "Profiles defined on %s" +msgstr "" + +#: ../../godmode/users/profile_list.php:115 +#, php-format +msgid "" +"This node is configured with centralized mode. All profiles information is " +"read only. Go to %s to manage it." +msgstr "" + +#: ../../godmode/users/profile_list.php:127 +#: ../../godmode/users/user_list.php:341 +msgid "There was a problem deleting the profile" +msgstr "" + +#: ../../godmode/users/profile_list.php:254 +msgid "There was a problem updating this profile" +msgstr "" + +#: ../../godmode/users/profile_list.php:257 +msgid "Profile name cannot be empty" +msgstr "" + +#: ../../godmode/users/profile_list.php:303 +#: ../../godmode/users/profile_list.php:306 +msgid "There was a problem creating this profile" +msgstr "" + +#: ../../godmode/users/profile_list.php:456 +msgid "There are no defined profiles" +msgstr "" + +#: ../../godmode/users/configure_profile.php:142 +msgid "Create profile" +msgstr "" + +#: ../../godmode/users/configure_profile.php:147 +msgid "There was a problem loading profile" +msgstr "" + +#: ../../godmode/users/configure_profile.php:239 +msgid "Update profile" +msgstr "" + +#: ../../godmode/users/configure_profile.php:249 +msgid "Update Profile" +msgstr "" + +#: ../../godmode/users/configure_profile.php:251 +msgid "Create Profile" +msgstr "" + +#: ../../godmode/users/configure_profile.php:272 +msgid "View agents" +msgstr "" + +#: ../../godmode/users/configure_profile.php:276 +msgid "Disable agents" +msgstr "" + +#: ../../godmode/users/configure_profile.php:280 +msgid "Edit agents" +msgstr "" + +#: ../../godmode/users/configure_profile.php:287 +msgid "Edit alerts" +msgstr "" + +#: ../../godmode/users/configure_profile.php:302 +msgid "Edit events" +msgstr "" + +#: ../../godmode/users/configure_profile.php:306 +#: ../../godmode/events/events.php:133 ../../operation/events/events.php:1416 +msgid "Manage events" +msgstr "" + +#: ../../godmode/users/configure_profile.php:313 +msgid "View reports" +msgstr "" + +#: ../../godmode/users/configure_profile.php:317 +msgid "Edit reports" +msgstr "" + +#: ../../godmode/users/configure_profile.php:321 +msgid "Manage reports" +msgstr "" + +#: ../../godmode/users/configure_profile.php:328 +msgid "View network maps" +msgstr "" + +#: ../../godmode/users/configure_profile.php:332 +msgid "Edit network maps" +msgstr "" + +#: ../../godmode/users/configure_profile.php:336 +msgid "Manage network maps" +msgstr "" + +#: ../../godmode/users/configure_profile.php:343 +#: ../../include/functions_menu.php:496 +msgid "View visual console" +msgstr "" + +#: ../../godmode/users/configure_profile.php:347 +msgid "Edit visual console" +msgstr "" + +#: ../../godmode/users/configure_profile.php:351 +msgid "Manage visual console" +msgstr "" + +#: ../../godmode/users/configure_profile.php:363 +msgid "View NCM data" +msgstr "" + +#: ../../godmode/users/configure_profile.php:367 +msgid "Operate NCM" +msgstr "" + +#: ../../godmode/users/configure_profile.php:371 +msgid "Manage NCM" +msgstr "" + +#: ../../godmode/users/configure_profile.php:378 +msgid "Manage users" +msgstr "" + +#: ../../godmode/users/configure_profile.php:385 +msgid "Manage database" +msgstr "" + +#: ../../godmode/users/configure_profile.php:392 +#, php-format +msgid "%s management" +msgstr "" + +#: ../../godmode/users/user_list.php:250 +#, php-format +msgid "Users defined on %s" +msgstr "" + +#: ../../godmode/users/user_list.php:287 +#: ../../godmode/users/configure_user.php:151 +#, php-format +msgid "Deleted user %s" +msgstr "" + +#: ../../godmode/users/user_list.php:294 ../../godmode/users/user_list.php:332 +#: ../../godmode/users/configure_user.php:158 +msgid "There was a problem deleting the user" +msgstr "" + +#: ../../godmode/users/user_list.php:308 +#: ../../godmode/users/configure_user.php:173 +#, php-format +msgid "Deleted user %s from metaconsole" +msgstr "" + +#: ../../godmode/users/user_list.php:320 +#: ../../godmode/users/configure_user.php:184 +#, php-format +msgid "Deleted user %s from %s" +msgstr "" + +#: ../../godmode/users/user_list.php:326 +#: ../../godmode/users/configure_user.php:190 +#, php-format +msgid "Successfully deleted from %s" +msgstr "" + +#: ../../godmode/users/user_list.php:327 +#: ../../godmode/users/configure_user.php:191 +#, php-format +msgid "There was a problem deleting the user from %s" +msgstr "" + +#: ../../godmode/users/user_list.php:367 +msgid "There was a problem disabling user" +msgstr "" + +#: ../../godmode/users/user_list.php:373 +msgid "There was a problem enabling user" +msgstr "" + +#: ../../godmode/users/user_list.php:432 +#: ../../operation/users/user_edit.php:251 +#, php-format +msgid "" +"This node is configured with centralized mode. All users information is read " +"only. Go to %s to manage it." +msgstr "" + +#: ../../godmode/users/user_list.php:484 +msgid "Profile / Group" +msgstr "" + +#: ../../godmode/users/user_list.php:665 ../../operation/search_users.php:63 +msgid "Administrator" +msgstr "" + +#: ../../godmode/users/user_list.php:714 +msgid "Other profiles are also assigned." +msgstr "" + +#: ../../godmode/users/user_list.php:716 +msgid "" +"Other profiles you cannot manage are also assigned. These profiles are not " +"shown. You cannot enable/disable or delete this user." +msgstr "" + +#: ../../godmode/users/user_list.php:723 +#: ../../include/functions_reporting.php:4605 +#: ../../include/functions_reporting.php:4652 +#: ../../operation/search_users.php:87 +msgid "The user doesn't have any assigned profile/group" +msgstr "" + +#: ../../godmode/users/user_list.php:873 +#: ../../godmode/users/configure_user.php:208 +msgid "Create user" +msgstr "" + +#: ../../godmode/users/user_list.php:876 +#: ../../godmode/users/configure_user.php:316 +#, php-format +msgid "The current authentication scheme doesn't support creating users on %s" +msgstr "" + +#: ../../godmode/users/configure_user.php:206 +msgid "Update user" +msgstr "" + +#: ../../godmode/users/configure_user.php:244 +#: ../../operation/users/user_edit.php:31 +msgid "User detail editor" +msgstr "" + +#: ../../godmode/users/configure_user.php:401 +msgid "User ID cannot be empty" +msgstr "" + +#: ../../godmode/users/configure_user.php:408 +msgid "Invalid user ID: leading or trailing blank spaces not allowed" +msgstr "" + +#: ../../godmode/users/configure_user.php:416 +msgid "Passwords cannot be empty" +msgstr "" + +#: ../../godmode/users/configure_user.php:423 +msgid "Passwords didn't match" +msgstr "" + +#: ../../godmode/users/configure_user.php:482 +msgid "" +"Strict ACL is not recommended for admin users because performance could be " +"affected." +msgstr "" + +#: ../../godmode/users/configure_user.php:517 +#: ../../godmode/users/configure_user.php:803 +msgid "Profile added successfully" +msgstr "" + +#: ../../godmode/users/configure_user.php:518 +#: ../../godmode/users/configure_user.php:804 +msgid "Profile cannot be added" +msgstr "" + +#: ../../godmode/users/configure_user.php:640 +#: ../../godmode/users/configure_user.php:664 +#: ../../godmode/users/configure_user.php:734 +#: ../../godmode/users/configure_user.php:741 +#: ../../godmode/users/configure_user.php:773 +#: ../../operation/users/user_edit.php:184 +#: ../../operation/users/user_edit.php:229 +msgid "User info successfully updated" +msgstr "" + +#: ../../godmode/users/configure_user.php:641 +#: ../../godmode/users/configure_user.php:665 +#: ../../godmode/users/configure_user.php:735 +#: ../../godmode/users/configure_user.php:742 +#: ../../godmode/users/configure_user.php:774 +msgid "Error updating user info (no change?)" +msgstr "" + +#: ../../godmode/users/configure_user.php:670 +msgid "Password of the active user is required to perform password change" +msgstr "" + +#: ../../godmode/users/configure_user.php:672 +msgid "Password of active user is not correct" +msgstr "" + +#: ../../godmode/users/configure_user.php:688 +msgid "Passwords does not match" +msgstr "" + +#: ../../godmode/users/configure_user.php:763 +msgid "" +"Strict ACL is not recommended for this user. Performance could be affected." +msgstr "" + +#: ../../godmode/users/configure_user.php:842 +msgid "Update User" +msgstr "" + +#: ../../godmode/users/configure_user.php:844 +msgid "Create User" +msgstr "" + +#: ../../godmode/users/configure_user.php:896 +#: ../../operation/users/user_edit.php:272 +msgid "Full (display) name" +msgstr "" + +#: ../../godmode/users/configure_user.php:913 +#: ../../operation/users/user_edit.php:419 +msgid "Timezone" +msgstr "" + +#: ../../godmode/users/configure_user.php:914 +#: ../../operation/users/user_edit.php:419 +msgid "The timezone must be that of the associated server." +msgstr "" + +#: ../../godmode/users/configure_user.php:947 +#: ../../operation/users/user_edit.php:299 +msgid "Password confirmation" +msgstr "" + +#: ../../godmode/users/configure_user.php:965 +msgid "Own password confirmation" +msgstr "" + +#: ../../godmode/users/configure_user.php:975 +msgid "Administrator user" +msgstr "" + +#: ../../godmode/users/configure_user.php:1002 +#: ../../operation/users/user_edit.php:292 +msgid "E-mail" +msgstr "" + +#: ../../godmode/users/configure_user.php:1018 +#: ../../operation/users/user_edit.php:294 +msgid "Phone number" +msgstr "" + +#: ../../godmode/users/configure_user.php:1053 +#: ../../operation/users/user_edit.php:401 +#: ../../operation/users/user_edit.php:410 +msgid "Skin" +msgstr "" + +#: ../../godmode/users/configure_user.php:1062 +msgid "Search custom field view" +msgstr "" + +#: ../../godmode/users/configure_user.php:1062 +msgid "Load by default the selected view in custom field view" +msgstr "" + +#: ../../godmode/users/configure_user.php:1079 +msgid "Use global conf" +msgstr "" + +#: ../../godmode/users/configure_user.php:1084 +#: ../../operation/users/user_edit.php:354 +msgid "Home screen" +msgstr "" + +#: ../../godmode/users/configure_user.php:1085 +#: ../../operation/users/user_edit.php:354 +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:1092 +#: ../../godmode/events/events.php:41 ../../operation/users/user_edit.php:358 +#: ../../operation/events/events.php:1359 +msgid "Event list" +msgstr "" + +#: ../../godmode/users/configure_user.php:1095 +#: ../../operation/users/user_edit.php:361 +#: ../../operation/agentes/alerts_status.php:190 ../../operation/menu.php:66 +msgid "Alert detail" +msgstr "" + +#: ../../godmode/users/configure_user.php:1096 +msgid "External link" +msgstr "" + +#: ../../godmode/users/configure_user.php:1189 +msgid "Metaconsole access" +msgstr "" + +#: ../../godmode/users/configure_user.php:1207 +msgid "Not Login" +msgstr "" + +#: ../../godmode/users/configure_user.php:1209 +msgid "The user with not login set only can access to API." +msgstr "" + +#: ../../godmode/users/configure_user.php:1219 +msgid "Local user" +msgstr "" + +#: ../../godmode/users/configure_user.php:1221 +msgid "" +"The user with local authentication enabled will always use local " +"authentication." +msgstr "" + +#: ../../godmode/users/configure_user.php:1231 +msgid "Session Time" +msgstr "" + +#: ../../godmode/users/configure_user.php:1233 +msgid "" +"This is defined in minutes, If you wish a permanent session should putting " +"-1 in this field." +msgstr "" + +#: ../../godmode/users/configure_user.php:1267 +msgid "Default event filter" +msgstr "" + +#: ../../godmode/users/configure_user.php:1281 +msgid "eHorus user access enabled" +msgstr "" + +#: ../../godmode/users/configure_user.php:1289 +#: ../../include/functions_config.php:1661 +msgid "eHorus user" +msgstr "" + +#: ../../godmode/users/configure_user.php:1298 +#: ../../include/functions_config.php:1665 +msgid "eHorus password" +msgstr "" + +#: ../../godmode/users/configure_user.php:1321 +msgid "User must be created before activating double authentication." +msgstr "" + +#: ../../godmode/users/configure_user.php:1331 +#: ../../operation/users/user_edit.php:440 +msgid "Show information" +msgstr "" + +#: ../../godmode/users/configure_user.php:1349 +msgid "Enable agents managment" +msgstr "" + +#: ../../godmode/users/configure_user.php:1357 +msgid "Enable node access" +msgstr "" + +#: ../../godmode/users/configure_user.php:1357 +msgid "With this option enabled, the user will can access to nodes console" +msgstr "" + +#: ../../godmode/users/configure_user.php:1572 +msgid "yes" +msgstr "" + +#: ../../godmode/users/configure_user.php:1575 +msgid "no" +msgstr "" + +#: ../../godmode/users/configure_user.php:1579 +msgid "please select profile and group" +msgstr "" + +#: ../../godmode/users/configure_user.php:1605 +msgid "Deleting last profile will delete this user" +msgstr "" + +#: ../../godmode/users/configure_user.php:1645 +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:1810 +#: ../../operation/users/user_edit.php:1079 +msgid "Double autentication information" +msgstr "" + +#: ../../godmode/users/configure_user.php:1900 +#: ../../operation/users/user_edit.php:1168 +msgid "The double authentication will be deactivated" +msgstr "" + +#: ../../godmode/users/configure_user.php:1901 +#: ../../operation/users/user_edit.php:1169 +msgid "Deactivate" +msgstr "" + +#: ../../godmode/users/configure_user.php:1937 +#: ../../operation/users/user_edit.php:1201 +msgid "The double autentication was deactivated successfully" +msgstr "" + +#: ../../godmode/users/configure_user.php:1941 +#: ../../godmode/users/configure_user.php:1945 +#: ../../operation/users/user_edit.php:1204 +#: ../../operation/users/user_edit.php:1208 +msgid "There was an error deactivating the double autentication" +msgstr "" + +#: ../../godmode/agentes/agent_template.php:67 +#: ../../include/functions_api.php:15255 +msgid "Created by template " +msgstr "" + +#: ../../godmode/agentes/agent_template.php:156 +msgid "Error adding modules" +msgstr "" + +#: ../../godmode/agentes/agent_template.php:158 +msgid "Error adding modules. The following errors already exists: " +msgstr "" + +#: ../../godmode/agentes/agent_template.php:163 +#: ../../include/functions_api.php:15349 +msgid "Modules successfully added" +msgstr "" + +#: ../../godmode/agentes/agent_template.php:188 +msgid "Assign" +msgstr "" + +#: ../../godmode/agentes/agent_template.php:269 +#: ../../mobile/operation/modules.php:772 +msgid "No modules" +msgstr "" + +#: ../../godmode/agentes/module_manager_editor_wmi.php:87 +msgid "Optional. WMI namespace. If unsure leave blank." +msgstr "" + +#: ../../godmode/agentes/module_manager_editor_wmi.php:151 +msgid "" +"Optional. Substring to look for in the WQL query result. The module returns " +"1 if found, 0 if not." +msgstr "" + +#: ../../godmode/agentes/module_manager_editor_wmi.php:164 +msgid "" +"Column number to retrieve from the WQL query result (starting from zero)." +msgstr "" + +#: ../../godmode/agentes/module_manager_editor_web.php:155 +msgid "Debug remotely this module" +msgstr "" + +#: ../../godmode/agentes/module_manager_editor_web.php:158 +msgid "Debug this module once it has been initialized" +msgstr "" + +#: ../../godmode/agentes/module_manager_editor_web.php:180 +#: ../../include/class/WebServerModuleDebug.class.php:325 +msgid "Debug" +msgstr "" + +#: ../../godmode/agentes/module_manager_editor_web.php:205 +msgid "Requests" +msgstr "" + +#: ../../godmode/agentes/module_manager_editor_web.php:208 +msgid "Agent browser id" +msgstr "" + +#: ../../godmode/agentes/module_manager_editor_web.php:214 +msgid "HTTP auth (login)" +msgstr "" + +#: ../../godmode/agentes/module_manager_editor_web.php:217 +msgid "HTTP auth (password)" +msgstr "" + +#: ../../godmode/agentes/module_manager_editor_web.php:231 +msgid "Proxy auth (login)" +msgstr "" + +#: ../../godmode/agentes/module_manager_editor_web.php:235 +msgid "Proxy auth (pass)" +msgstr "" + +#: ../../godmode/agentes/module_manager_editor_web.php:242 +msgid "Proxy auth (server)" +msgstr "" + +#: ../../godmode/agentes/module_manager_editor_web.php:246 +msgid "Proxy auth (realm)" +msgstr "" + +#: ../../godmode/agentes/module_manager_editor_web.php:258 +msgid "There isn't get or post" +msgstr "" + +#: ../../godmode/agentes/status_monitor_custom_fields.php:101 +#: ../../godmode/agentes/status_monitor_custom_fields.php:149 +#: ../../include/functions_treeview.php:326 +#: ../../operation/agentes/status_monitor.php:1340 +#: ../../operation/agentes/estado_generalagente.php:436 +msgid "Last status change" +msgstr "" + +#: ../../godmode/agentes/status_monitor_custom_fields.php:125 +msgid "Show monitor detail fields" +msgstr "" + +#: ../../godmode/agentes/configurar_agente.php:244 +#: ../../godmode/agentes/configurar_agente.php:1042 +msgid "No agent alias specified" +msgstr "" + +#: ../../godmode/agentes/configurar_agente.php:247 +msgid "Agent cannot be created due to the maximum agent limit for this group" +msgstr "" + +#: ../../godmode/agentes/configurar_agente.php:353 +msgid "Could not be created, because name already exists" +msgstr "" + +#: ../../godmode/agentes/configurar_agente.php:355 +msgid "Could not be created, because IP already exists" +msgstr "" + +#: ../../godmode/agentes/configurar_agente.php:438 ../../godmode/menu.php:164 +#: ../../godmode/wizards/HostDevices.class.php:1077 +msgid "Module templates" +msgstr "" + +#: ../../godmode/agentes/configurar_agente.php:510 +#: ../../operation/agentes/ver_agente.php:1487 +msgid "GIS data" +msgstr "" + +#: ../../godmode/agentes/configurar_agente.php:582 +#: ../../godmode/agentes/configurar_agente.php:750 +#: ../../operation/agentes/ver_agente.php:1507 ../../operation/menu.php:495 +#: ../../operation/incidents/incident_statistics.php:21 +#: ../../general/first_task/incidents.php:28 +msgid "Incidents" +msgstr "" + +#: ../../godmode/agentes/configurar_agente.php:745 +msgid "Gis" +msgstr "" + +#: ../../godmode/agentes/configurar_agente.php:787 +msgid "SNMP explorer" +msgstr "" + +#: ../../godmode/agentes/configurar_agente.php:818 +#: ../../godmode/agentes/configurar_agente.php:840 +#: ../../godmode/agentes/modificar_agente.php:104 ../../godmode/menu.php:119 +msgid "Resources" +msgstr "" + +#: ../../godmode/agentes/configurar_agente.php:828 +msgid "Agent manager" +msgstr "" + +#: ../../godmode/agentes/configurar_agente.php:868 +#: ../../godmode/servers/modificar_server.php:222 +msgid "Conf file deleted successfully" +msgstr "" + +#: ../../godmode/agentes/configurar_agente.php:869 +#: ../../godmode/servers/modificar_server.php:223 +msgid "Could not delete conf file" +msgstr "" + +#: ../../godmode/agentes/configurar_agente.php:886 +#: ../../godmode/agentes/configurar_agente.php:1037 +#: ../../include/class/ExternalTools.class.php:750 +msgid "The ip or dns name entered cannot be resolved" +msgstr "" + +#: ../../godmode/agentes/configurar_agente.php:913 +#: ../../godmode/agentes/configurar_agente.php:917 +msgid "No data to normalize" +msgstr "" + +#: ../../godmode/agentes/configurar_agente.php:922 +#, php-format +msgid "Deleted data above %f" +msgstr "" + +#: ../../godmode/agentes/configurar_agente.php:923 +#, php-format +msgid "Error normalizing module %s" +msgstr "" + +#: ../../godmode/agentes/configurar_agente.php:1052 +#, php-format +msgid "The group id %d is incorrect." +msgstr "" + +#: ../../godmode/agentes/configurar_agente.php:1054 +msgid "Agent cannot be updated due to the maximum agent limit for this group" +msgstr "" + +#: ../../godmode/agentes/configurar_agente.php:1056 +msgid "Duplicate main IP address" +msgstr "" + +#: ../../godmode/agentes/configurar_agente.php:1109 +msgid "There was a problem updating the agent" +msgstr "" + +#: ../../godmode/agentes/configurar_agente.php:1202 +msgid "There was a problem loading the agent" +msgstr "" + +#: ../../godmode/agentes/configurar_agente.php:1713 +msgid "" +"There was a problem updating module. Another module already exists with the " +"same name." +msgstr "" + +#: ../../godmode/agentes/configurar_agente.php:1717 +msgid "" +"There was a problem updating module. Some required fields are missed: (name)" +msgstr "" + +#: ../../godmode/agentes/configurar_agente.php:1721 +msgid "There was a problem updating module. \"No change\"" +msgstr "" + +#: ../../godmode/agentes/configurar_agente.php:1727 +msgid "There was a problem updating module. Processing error" +msgstr "" + +#: ../../godmode/agentes/configurar_agente.php:1756 +msgid "Module successfully updated" +msgstr "" + +#: ../../godmode/agentes/configurar_agente.php:1903 +msgid "" +"There was a problem adding module. Another module already exists with the " +"same name." +msgstr "" + +#: ../../godmode/agentes/configurar_agente.php:1907 +msgid "" +"There was a problem adding module. Some required fields are missed : (name)" +msgstr "" + +#: ../../godmode/agentes/configurar_agente.php:1913 +msgid "There was a problem adding module. Processing error" +msgstr "" + +#: ../../godmode/agentes/configurar_agente.php:1942 +#: ../../godmode/reporting/graph_builder.php:386 +msgid "Module added successfully" +msgstr "" + +#: ../../godmode/agentes/configurar_agente.php:2093 +msgid "There was a problem deleting the module" +msgstr "" + +#: ../../godmode/agentes/configurar_agente.php:2097 +msgid "Module deleted succesfully" +msgstr "" + +#: ../../godmode/agentes/configurar_agente.php:2236 +#: ../../include/functions_api.php:11137 +#, php-format +msgid "Save by %s Console" +msgstr "" + +#: ../../godmode/agentes/configurar_agente.php:2254 +#: ../../include/functions_api.php:11138 +#, php-format +msgid "Update by %s Console" +msgstr "" + +#: ../../godmode/agentes/configurar_agente.php:2270 +#: ../../include/functions_api.php:11139 +#, php-format +msgid "Insert by %s Console" +msgstr "" + +#: ../../godmode/agentes/configurar_agente.php:2343 +#: ../../godmode/agentes/configurar_agente.php:2355 +msgid "Invalid tab specified" +msgstr "" + +#: ../../godmode/agentes/module_manager_editor_prediction.php:110 +msgid "Source module" +msgstr "" + +#: ../../godmode/agentes/module_manager_editor_prediction.php:148 +#: ../../godmode/agentes/module_manager_editor_prediction.php:169 +msgid "Select Module" +msgstr "" + +#: ../../godmode/agentes/module_manager_editor_prediction.php:195 +msgid "Calculation type" +msgstr "" + +#: ../../godmode/agentes/module_manager_editor_prediction.php:203 +msgid "Estimated absolute value" +msgstr "" + +#: ../../godmode/agentes/module_manager_editor_prediction.php:204 +msgid "Calculation of days to reach limit" +msgstr "" + +#: ../../godmode/agentes/module_manager_editor_prediction.php:213 +msgid "Future estimation" +msgstr "" + +#: ../../godmode/agentes/module_manager_editor_prediction.php:228 +msgid "Limit value" +msgstr "" + +#: ../../godmode/agentes/module_manager_editor.php:718 +msgid "Invalid module type" +msgstr "" + +#: ../../godmode/agentes/module_manager_editor.php:762 +msgid "Module relations" +msgstr "" + +#: ../../godmode/agentes/module_manager_editor.php:852 +msgid "No module to predict" +msgstr "" + +#: ../../godmode/agentes/module_manager_editor.php:862 +msgid "No plug-in provided" +msgstr "" + +#: ../../godmode/agentes/module_manager_editor.php:872 +msgid "No server provided" +msgstr "" + +#: ../../godmode/agentes/module_manager_editor.php:903 +msgid "" +"Error, The field name and name in module_name in data configuration are " +"different." +msgstr "" + +#: ../../godmode/agentes/module_manager_editor.php:941 +msgid "The File APIs are not fully supported in this browser." +msgstr "" + +#: ../../godmode/agentes/module_manager_editor.php:942 +msgid "Couldn`t find the fileinput element." +msgstr "" + +#: ../../godmode/agentes/module_manager_editor.php:943 +msgid "This browser doesn`t seem to support the files property of file inputs." +msgstr "" + +#: ../../godmode/agentes/module_manager_editor.php:944 +msgid "Please select a file before clicking Load" +msgstr "" + +#: ../../godmode/agentes/modificar_agente.php:95 +#, php-format +msgid "Agents defined in %s" +msgstr "" + +#: ../../godmode/agentes/modificar_agente.php:124 +#, php-format +msgid "" +"This node is configured with centralized mode. Go to %s to delete an agent" +msgstr "" + +#: ../../godmode/agentes/modificar_agente.php:170 +msgid "Success deleted agent." +msgstr "" + +#: ../../godmode/agentes/modificar_agente.php:171 +msgid "Could not be deleted." +msgstr "" + +#: ../../godmode/agentes/modificar_agente.php:186 +msgid "Maybe the files conf or md5 could not be deleted" +msgstr "" + +#: ../../godmode/agentes/modificar_agente.php:333 +msgid "Show Agents" +msgstr "" + +#: ../../godmode/agentes/modificar_agente.php:335 +msgid "Everyone" +msgstr "" + +#: ../../godmode/agentes/modificar_agente.php:349 +msgid "Operative System" +msgstr "" + +#: ../../godmode/agentes/modificar_agente.php:367 +msgid "" +"Search filter by alias, name, description, IP address or custom fields " +"content" +msgstr "" + +#: ../../godmode/agentes/modificar_agente.php:648 +msgid "Remote agent configuration" +msgstr "" + +#: ../../godmode/agentes/modificar_agente.php:648 +msgid "R" +msgstr "" + +#: ../../godmode/agentes/modificar_agente.php:858 +msgid "Edit remote config" +msgstr "" + +#: ../../godmode/agentes/modificar_agente.php:908 +msgid "You are going to enable a cluster agent. Are you sure?" +msgstr "" + +#: ../../godmode/agentes/modificar_agente.php:911 +msgid "Enable agent" +msgstr "" + +#: ../../godmode/agentes/modificar_agente.php:918 +msgid "You are going to disable a cluster agent. Are you sure?" +msgstr "" + +#: ../../godmode/agentes/modificar_agente.php:921 +msgid "Disable agent" +msgstr "" + +#: ../../godmode/agentes/modificar_agente.php:931 +msgid "WARNING! - You are going to delete a cluster agent. Are you sure?" +msgstr "" + +#: ../../godmode/agentes/agent_conf_gis.php:38 +#: ../../operation/agentes/gis_view.php:59 +msgid "" +"There is no default map. Please go to the setup for to set a default map." +msgstr "" + +#: ../../godmode/agentes/agent_conf_gis.php:50 +msgid "" +"There is no GIS data for this agent, so it's positioned in default position " +"of map." +msgstr "" + +#: ../../godmode/agentes/agent_conf_gis.php:58 +msgid "" +"When you change the Agent position, the agent automatically activates the " +"'Ignore new GIS data' option" +msgstr "" + +#: ../../godmode/agentes/agent_conf_gis.php:67 +msgid "Agent position" +msgstr "" + +#: ../../godmode/agentes/agent_conf_gis.php:73 +msgid "Latitude: " +msgstr "" + +#: ../../godmode/agentes/agent_conf_gis.php:90 +msgid "Longitude: " +msgstr "" + +#: ../../godmode/agentes/agent_conf_gis.php:107 +msgid "Altitude: " +msgstr "" + +#: ../../godmode/agentes/agent_conf_gis.php:124 +#: ../../godmode/massive/massive_edit_agents.php:984 +msgid "Ignore new GIS data:" +msgstr "" + +#: ../../godmode/agentes/planned_downtime.list.php:174 +#: ../../godmode/agentes/planned_downtime.editor.php:67 +#: ../../include/functions_reporting_html.php:879 +#: ../../include/functions_reporting_html.php:4670 +msgid "Scheduled Downtime" +msgstr "" + +#: ../../godmode/agentes/planned_downtime.list.php:206 +msgid "An error occurred stopping the scheduled downtime" +msgstr "" + +#: ../../godmode/agentes/planned_downtime.list.php:233 +msgid "This scheduled downtime is running" +msgstr "" + +#: ../../godmode/agentes/planned_downtime.list.php:318 +#: ../../godmode/agentes/planned_downtime.editor.php:612 +msgid "Once" +msgstr "" + +#: ../../godmode/agentes/planned_downtime.list.php:319 +#: ../../godmode/agentes/planned_downtime.list.php:664 +#: ../../godmode/agentes/planned_downtime.editor.php:613 +msgid "Periodically" +msgstr "" + +#: ../../godmode/agentes/planned_downtime.list.php:333 +msgid "Show past downtimes" +msgstr "" + +#: ../../godmode/agentes/planned_downtime.list.php:574 +#: ../../godmode/agentes/planned_downtime.export_csv.php:202 +msgid "No scheduled downtime" +msgstr "" + +#: ../../godmode/agentes/planned_downtime.list.php:610 +msgid "Name #Ag." +msgstr "" + +#: ../../godmode/agentes/planned_downtime.list.php:617 +msgid "Affected" +msgstr "" + +#: ../../godmode/agentes/planned_downtime.list.php:622 +#: ../../godmode/agentes/planned_downtime.list.php:725 +#: ../../godmode/agentes/planned_downtime.list.php:731 +msgid "Stop downtime" +msgstr "" + +#: ../../godmode/agentes/planned_downtime.list.php:656 +#: ../../godmode/agentes/planned_downtime.editor.php:595 +msgid "Disabled Agents" +msgstr "" + +#: ../../godmode/agentes/planned_downtime.list.php:657 +#: ../../godmode/agentes/planned_downtime.editor.php:596 +msgid "Disabled only Alerts" +msgstr "" + +#: ../../godmode/agentes/planned_downtime.list.php:663 +msgid "once" +msgstr "" + +#: ../../godmode/agentes/planned_downtime.list.php:678 +msgid "Not running" +msgstr "" + +#: ../../godmode/agentes/planned_downtime.list.php:696 +msgid "Agents / Modules affected" +msgstr "" + +#: ../../godmode/agentes/planned_downtime.list.php:705 +msgid "Agents and modules affected" +msgstr "" + +#: ../../godmode/agentes/planned_downtime.list.php:903 +msgid "" +"WARNING: If you delete this scheduled downtime, it will not be taken into " +"account in future SLA reports" +msgstr "" + +#: ../../godmode/agentes/planned_downtime.list.php:909 +msgid "WARNING: There are malformed scheduled downtimes" +msgstr "" + +#: ../../godmode/agentes/planned_downtime.list.php:909 +msgid "Do you want to migrate automatically the malformed items?" +msgstr "" + +#: ../../godmode/agentes/planned_downtime.editor.php:208 +#: ../../godmode/agentes/planned_downtime.editor.php:1129 +#: ../../godmode/agentes/planned_downtime.editor.php:1264 +msgid "This elements cannot be modified while the downtime is being executed" +msgstr "" + +#: ../../godmode/agentes/planned_downtime.editor.php:241 +#: ../../include/functions_planned_downtimes.php:40 +#: ../../include/functions_planned_downtimes.php:742 +msgid "" +"Not created. Error inserting data. Start time must be higher than the " +"current time" +msgstr "" + +#: ../../godmode/agentes/planned_downtime.editor.php:245 +#: ../../godmode/agentes/planned_downtime.editor.php:249 +#: ../../godmode/agentes/planned_downtime.editor.php:257 +#: ../../godmode/agentes/planned_downtime.editor.php:261 +#: ../../include/functions_planned_downtimes.php:42 +#: ../../include/functions_planned_downtimes.php:47 +#: ../../include/functions_planned_downtimes.php:49 +#: ../../include/functions_planned_downtimes.php:747 +#: ../../include/functions_planned_downtimes.php:754 +#: ../../include/functions_planned_downtimes.php:762 +#: ../../include/functions_planned_downtimes.php:770 +#: ../../include/functions_planned_downtimes.php:775 +#: ../../include/functions_planned_downtimes.php:780 +#: ../../include/functions_planned_downtimes.php:785 +#: ../../include/functions_planned_downtimes.php:790 +#: ../../include/functions_planned_downtimes.php:795 +#: ../../include/functions_planned_downtimes.php:800 +msgid "Not created. Error inserting data" +msgstr "" + +#: ../../godmode/agentes/planned_downtime.editor.php:245 +#: ../../include/functions_planned_downtimes.php:42 +#: ../../include/functions_planned_downtimes.php:754 +msgid "The end date must be higher than the start date" +msgstr "" + +#: ../../godmode/agentes/planned_downtime.editor.php:249 +#: ../../include/functions_planned_downtimes.php:747 +msgid "The end date must be higher than the current time" +msgstr "" + +#: ../../godmode/agentes/planned_downtime.editor.php:257 +#: ../../godmode/agentes/planned_downtime.editor.php:722 +#: ../../godmode/agentes/planned_downtime.editor.php:735 +#: ../../include/functions_planned_downtimes.php:47 +#: ../../include/functions_planned_downtimes.php:762 +msgid "The end time must be higher than the start time" +msgstr "" + +#: ../../godmode/agentes/planned_downtime.editor.php:261 +#: ../../godmode/agentes/planned_downtime.editor.php:707 +#: ../../include/functions_planned_downtimes.php:49 +#: ../../include/functions_planned_downtimes.php:770 +msgid "The end day must be higher than the start day" +msgstr "" + +#: ../../godmode/agentes/planned_downtime.editor.php:313 +#: ../../include/functions_planned_downtimes.php:98 +#: ../../include/functions_planned_downtimes.php:814 +msgid "Each scheduled downtime must have a different name" +msgstr "" + +#: ../../godmode/agentes/planned_downtime.editor.php:318 +#: ../../godmode/agentes/planned_downtime.editor.php:350 +#: ../../include/functions_planned_downtimes.php:103 +#: ../../include/functions_planned_downtimes.php:820 +msgid "Scheduled downtime must have a name" +msgstr "" + +#: ../../godmode/agentes/planned_downtime.editor.php:589 +msgid "Quiet: Modules will not generate events or fire alerts." +msgstr "" + +#: ../../godmode/agentes/planned_downtime.editor.php:589 +msgid "Disable Agents: Disables the selected agents." +msgstr "" + +#: ../../godmode/agentes/planned_downtime.editor.php:589 +msgid "Disable Alerts: Disable alerts for the selected agents." +msgstr "" + +#: ../../godmode/agentes/planned_downtime.editor.php:634 +#: ../../include/functions_reporting_html.php:86 +#: ../../include/functions_reporting_html.php:5582 +#: ../../include/ajax/alert_list.ajax.php:592 +msgid "From:" +msgstr "" + +#: ../../godmode/agentes/planned_downtime.editor.php:638 +#: ../../include/functions_reporting_html.php:86 +#: ../../include/functions_reporting_html.php:5582 +#: ../../include/ajax/alert_list.ajax.php:606 +msgid "To:" +msgstr "" + +#: ../../godmode/agentes/planned_downtime.editor.php:693 +msgid "To day:" +msgstr "" + +#: ../../godmode/agentes/planned_downtime.editor.php:725 +msgid "To hour:" +msgstr "" + +#: ../../godmode/agentes/planned_downtime.editor.php:801 +msgid "Group filter" +msgstr "" + +#: ../../godmode/agentes/planned_downtime.editor.php:835 +msgid "Available modules:" +msgstr "" + +#: ../../godmode/agentes/planned_downtime.editor.php:836 +msgid "Only for type Quiet for downtimes." +msgstr "" + +#: ../../godmode/agentes/planned_downtime.editor.php:894 +msgid "Agents planned for this downtime" +msgstr "" + +#: ../../godmode/agentes/planned_downtime.editor.php:912 +msgid "There are no agents" +msgstr "" + +#: ../../godmode/agentes/planned_downtime.editor.php:954 +msgid "All alerts" +msgstr "" + +#: ../../godmode/agentes/planned_downtime.editor.php:956 +msgid "Entire agent" +msgstr "" + +#: ../../godmode/agentes/planned_downtime.editor.php:959 +#: ../../godmode/agentes/planned_downtime.editor.php:1081 +msgid "All modules" +msgstr "" + +#: ../../godmode/agentes/planned_downtime.editor.php:961 +#: ../../godmode/agentes/planned_downtime.editor.php:1073 +#: ../../godmode/agentes/planned_downtime.editor.php:1077 +msgid "Some modules" +msgstr "" + +#: ../../godmode/agentes/planned_downtime.editor.php:1027 +msgid "Add Module:" +msgstr "" + +#: ../../godmode/agentes/planned_downtime.editor.php:1394 +#: ../../godmode/reporting/reporting_builder.item_editor.php:4742 +msgid "Please select a module." +msgstr "" + +#: ../../godmode/agentes/planned_downtime.editor.php:1529 +msgid "" +"WARNING: If you edit this scheduled downtime, the data of future SLA reports " +"may be altered" +msgstr "" + +#: ../../godmode/agentes/fields_manager.php:30 +msgid "Agents custom fields manager" +msgstr "" + +#: ../../godmode/agentes/fields_manager.php:46 +#: ../../include/ajax/custom_fields.php:737 +msgid "The name must not be empty" +msgstr "" + +#: ../../godmode/agentes/fields_manager.php:48 +msgid "The name must be unique" +msgstr "" + +#: ../../godmode/agentes/fields_manager.php:59 +msgid "Field successfully created" +msgstr "" + +#: ../../godmode/agentes/fields_manager.php:80 +msgid "Field successfully updated" +msgstr "" + +#: ../../godmode/agentes/fields_manager.php:82 +msgid "There was a problem modifying field" +msgstr "" + +#: ../../godmode/agentes/fields_manager.php:94 +msgid "There was a problem deleting field" +msgstr "" + +#: ../../godmode/agentes/fields_manager.php:96 +msgid "Field successfully deleted" +msgstr "" + +#: ../../godmode/agentes/fields_manager.php:120 +#: ../../godmode/agentes/configure_field.php:95 +#: ../../operation/agentes/custom_fields.php:67 +msgid "Display on front" +msgstr "" + +#: ../../godmode/agentes/fields_manager.php:120 +#: ../../godmode/agentes/configure_field.php:96 +#: ../../operation/agentes/custom_fields.php:67 +msgid "" +"The fields with display on front enabled will be displayed into the agent " +"details" +msgstr "" + +#: ../../godmode/agentes/fields_manager.php:168 +msgid "Create field" +msgstr "" + +#: ../../godmode/agentes/module_manager_editor_network.php:266 +msgid "SNMP walk" +msgstr "" + +#: ../../godmode/agentes/module_manager_editor_network.php:448 +msgid "" +"Please use single quotation marks when necessary. \n" +"\n" +"If double quotation marks are needed, please escape them with a backslash " +"(\\")" +msgstr "" + +#: ../../godmode/agentes/module_manager_editor_network.php:479 +msgid "Windows remote" +msgstr "" + +#: ../../godmode/agentes/agent_manager.php:226 +#: ../../operation/agentes/estado_agente.php:215 ../../operation/menu.php:54 +msgid "Agent detail" +msgstr "" + +#: ../../godmode/agentes/agent_manager.php:241 +msgid "Delete agent" +msgstr "" + +#: ../../godmode/agentes/agent_manager.php:275 +msgid "QR Code Agent view" +msgstr "" + +#: ../../godmode/agentes/agent_manager.php:296 +msgid "Use alias as name" +msgstr "" + +#: ../../godmode/agentes/agent_manager.php:304 +#: ../../godmode/setup/setup_general.php:459 +#: ../../include/functions_config.php:362 +msgid "Unique IP" +msgstr "" + +#: ../../godmode/agentes/agent_manager.php:338 +msgid "Primary group" +msgstr "" + +#: ../../godmode/agentes/agent_manager.php:452 +#: ../../godmode/setup/license.php:153 +#: ../../godmode/servers/modificar_server.php:42 +#: ../../include/functions_ui.php:866 +#: ../../include/class/Diagnostics.class.php:1184 +msgid "Satellite" +msgstr "" + +#: ../../godmode/agentes/agent_manager.php:518 +#: ../../godmode/massive/massive_edit_agents.php:1006 +msgid "Safe operation mode" +msgstr "" + +#: ../../godmode/agentes/agent_manager.php:559 +msgid "Cascade protection services" +msgstr "" + +#: ../../godmode/agentes/agent_manager.php:590 +#: ../../godmode/massive/massive_edit_agents.php:661 +msgid "Cascade protection" +msgstr "" + +#: ../../godmode/agentes/agent_manager.php:606 +#: ../../godmode/massive/massive_edit_agents.php:858 +msgid "Module definition" +msgstr "" + +#: ../../godmode/agentes/agent_manager.php:611 +#: ../../godmode/massive/massive_edit_agents.php:870 +msgid "Learning mode" +msgstr "" + +#: ../../godmode/agentes/agent_manager.php:621 +#: ../../godmode/massive/massive_edit_agents.php:881 +msgid "Normal mode" +msgstr "" + +#: ../../godmode/agentes/agent_manager.php:631 +#: ../../godmode/massive/massive_edit_agents.php:892 +msgid "Autodisable mode" +msgstr "" + +#: ../../godmode/agentes/agent_manager.php:648 +msgid "Disabled mode" +msgstr "" + +#: ../../godmode/agentes/agent_manager.php:653 +#: ../../godmode/agentes/agent_manager.php:670 +#: ../../include/functions_treeview.php:759 +#: ../../operation/agentes/ver_agente.php:1526 +#: ../../operation/agentes/estado_generalagente.php:495 +msgid "Url address" +msgstr "" + +#: ../../godmode/agentes/agent_manager.php:695 +#: ../../godmode/massive/massive_edit_agents.php:980 +msgid "Agent icon" +msgstr "" + +#: ../../godmode/agentes/agent_manager.php:745 +msgid "Update new GIS data:" +msgstr "" + +#: ../../godmode/agentes/agent_manager.php:803 +msgid "Click to display" +msgstr "" + +#: ../../godmode/agentes/agent_manager.php:1055 +msgid "Secondary group cannot be primary too." +msgstr "" + +#: ../../godmode/agentes/agent_incidents.php:22 +#: ../../operation/incidents/incident_statistics.php:24 +#: ../../operation/incidents/configure_integriaims_incident.php:33 +#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:23 +#: ../../operation/incidents/list_integriaims_incidents.php:34 +msgid "" +"In order to access ticket management system, integration with Integria IMS " +"must be enabled and properly configured" +msgstr "" + +#: ../../godmode/agentes/agent_incidents.php:69 +msgid "No incidents associated to this agent" +msgstr "" + +#: ../../godmode/agentes/agent_incidents.php:90 +msgid "Incident" +msgstr "" + +#: ../../godmode/agentes/configure_field.php:41 +msgid "Update agent custom field" +msgstr "" + +#: ../../godmode/agentes/configure_field.php:43 +msgid "Create agent custom field" +msgstr "" + +#: ../../godmode/agentes/configure_field.php:55 +#: ../../godmode/agentes/configure_field.php:59 +#: ../../godmode/agentes/configure_field.php:63 +#: ../../godmode/agentes/configure_field.php:67 +msgid "Agent Custom Fields Information" +msgstr "" + +#: ../../godmode/agentes/configure_field.php:56 +msgid "" +"You cannot set the Password type until you clear the combo values and click " +"on update button." +msgstr "" + +#: ../../godmode/agentes/configure_field.php:60 +msgid "" +"You cannot unset the enable combo until you clear the combo values and click " +"on update." +msgstr "" + +#: ../../godmode/agentes/configure_field.php:64 +msgid "If you select Enabled combo the Password type will be disabled." +msgstr "" + +#: ../../godmode/agentes/configure_field.php:68 +msgid "If you select Passord type the Enabled combo will be disabled." +msgstr "" + +#: ../../godmode/agentes/configure_field.php:84 +msgid "Pass type" +msgstr "" + +#: ../../godmode/agentes/configure_field.php:85 +msgid "" +"The fields with pass type enabled will be displayed like html input type " +"pass in html" +msgstr "" + +#: ../../godmode/agentes/configure_field.php:106 +msgid "Enabled combo" +msgstr "" + +#: ../../godmode/agentes/configure_field.php:118 +msgid "Combo values" +msgstr "" + +#: ../../godmode/agentes/configure_field.php:119 +msgid "Set values separated by comma" +msgstr "" + +#: ../../godmode/agentes/module_manager_editor_common.php:108 +msgid "Using module component" +msgstr "" + +#: ../../godmode/agentes/module_manager_editor_common.php:413 +msgid "Warning threshold" +msgstr "" + +#: ../../godmode/agentes/module_manager_editor_common.php:415 +#: ../../godmode/agentes/module_manager_editor_common.php:476 +msgid "Min. " +msgstr "" + +#: ../../godmode/agentes/module_manager_editor_common.php:474 +msgid "Critical threshold" +msgstr "" + +#: ../../godmode/agentes/module_manager_editor_common.php:673 +msgid "Dynamic Threshold Interval" +msgstr "" + +#: ../../godmode/agentes/module_manager_editor_common.php:700 +msgid "Dynamic Threshold Min. " +msgstr "" + +#: ../../godmode/agentes/module_manager_editor_common.php:713 +msgid "Dynamic Threshold Max. " +msgstr "" + +#: ../../godmode/agentes/module_manager_editor_common.php:726 +msgid "Dynamic Threshold Two Tailed: " +msgstr "" + +#: ../../godmode/agentes/module_manager_editor_common.php:737 +msgid "Not needed" +msgstr "" + +#: ../../godmode/agentes/module_manager_editor_common.php:1035 +msgid "Tags from policy" +msgstr "" + +#: ../../godmode/agentes/module_manager_editor_common.php:1075 +msgid "Cascade Protection Services" +msgstr "" + +#: ../../godmode/agentes/module_manager_editor_common.php:1109 +#: ../../godmode/agentes/module_manager_editor_common.php:1117 +#: ../../godmode/agentes/module_manager_editor_common.php:1126 +msgid "Cron from" +msgstr "" + +#: ../../godmode/agentes/module_manager_editor_common.php:1113 +#: ../../godmode/agentes/module_manager_editor_common.php:1121 +#: ../../godmode/agentes/module_manager_editor_common.php:1130 +msgid "Cron to" +msgstr "" + +#: ../../godmode/agentes/module_manager_editor_common.php:1166 +msgid "Module parent" +msgstr "" + +#: ../../godmode/agentes/module_manager_editor_common.php:1264 +#: ../../godmode/agentes/module_manager_editor_common.php:1375 +msgid "Direct" +msgstr "" + +#: ../../godmode/agentes/module_manager_editor_common.php:1265 +#: ../../godmode/agentes/module_manager_editor_common.php:1375 +#: ../../include/functions_reporting_html.php:3913 +#: ../../include/functions_reporting_html.php:4007 +#: ../../include/functions_reporting_html.php:4087 +#: ../../include/functions_reporting_html.php:4096 +#: ../../include/functions_reporting_html.php:4234 +#: ../../include/functions_reporting_html.php:4243 +#: ../../include/functions_reporting_html.php:4567 +#: ../../include/functions_reporting_html.php:4573 +msgid "Failover" +msgstr "" + +#: ../../godmode/agentes/module_manager_editor_common.php:1266 +msgid "Rel. type" +msgstr "" + +#: ../../godmode/agentes/module_manager_editor_common.php:1281 +msgid "Add relationship" +msgstr "" + +#: ../../godmode/agentes/module_manager_editor_common.php:1306 +msgid "Changes" +msgstr "" + +#: ../../godmode/agentes/module_manager.php:130 +msgid "Create a new data server module" +msgstr "" + +#: ../../godmode/agentes/module_manager.php:132 +msgid "Create a new network server module" +msgstr "" + +#: ../../godmode/agentes/module_manager.php:136 +msgid "Create a new plugin server module" +msgstr "" + +#: ../../godmode/agentes/module_manager.php:140 +msgid "Create a new WMI server module" +msgstr "" + +#: ../../godmode/agentes/module_manager.php:144 +msgid "Create a new prediction server module" +msgstr "" + +#: ../../godmode/agentes/module_manager.php:148 +msgid "Create a new web Server module" +msgstr "" + +#: ../../godmode/agentes/module_manager.php:192 +#: ../../operation/agentes/estado_monitores.php:582 +msgid "Show in hierachy mode" +msgstr "" + +#: ../../godmode/agentes/module_manager.php:211 +msgid "

    Type

    " +msgstr "" + +#: ../../godmode/agentes/module_manager.php:241 +msgid "Get more modules on Monitoring Library" +msgstr "" + +#: ../../godmode/agentes/module_manager.php:280 +msgid "There was a problem completing the operation" +msgstr "" + +#: ../../godmode/agentes/module_manager.php:437 +#: ../../godmode/agentes/module_manager.php:478 +#, php-format +msgid "There was a problem completing the operation. Applied to 0/%d modules." +msgstr "" + +#: ../../godmode/agentes/module_manager.php:443 +#: ../../godmode/agentes/module_manager.php:484 +msgid "Operation finished successfully." +msgstr "" + +#: ../../godmode/agentes/module_manager.php:447 +#: ../../godmode/agentes/module_manager.php:488 +#, php-format +msgid "There was a problem completing the operation. Applied to %d/%d modules." +msgstr "" + +#: ../../godmode/agentes/module_manager.php:794 +#: ../../godmode/reporting/map_builder.php:452 +#: ../../godmode/reporting/map_builder.php:469 +#: ../../include/ajax/module.php:560 +#: ../../operation/agentes/datos_agente.php:295 +msgid "No available data to show" +msgstr "" + +#: ../../godmode/agentes/module_manager.php:868 +msgid "Del." +msgstr "" + +#: ../../godmode/agentes/module_manager.php:1042 +#: ../../godmode/agentes/module_manager.php:1050 +#: ../../include/ajax/module.php:1084 ../../include/ajax/module.php:1092 +msgid "Adopted" +msgstr "" + +#: ../../godmode/agentes/module_manager.php:1180 +msgid "Normalize" +msgstr "" + +#: ../../godmode/agentes/module_manager.php:1190 +msgid "Normalize (Disabled)" +msgstr "" + +#: ../../godmode/agentes/module_manager.php:1205 +#: ../../include/functions_snmp_browser.php:638 +msgid "Create network component" +msgstr "" + +#: ../../godmode/agentes/module_manager.php:1214 +msgid "Create network component (Disabled)" +msgstr "" + +#: ../../godmode/agentes/module_manager.php:1274 +msgid "Execute action" +msgstr "" + +#: ../../godmode/netflow/nf_item_list.php:27 +#: ../../operation/reporting/reporting_viewer.php:119 +msgid "Report list" +msgstr "" + +#: ../../godmode/netflow/nf_item_list.php:30 +#: ../../godmode/netflow/nf_item_list.php:38 +msgid "Report items" +msgstr "" + +#: ../../godmode/netflow/nf_item_list.php:33 +msgid "Edit report" +msgstr "" + +#: ../../godmode/netflow/nf_item_list.php:53 +msgid "Netflow reports" +msgstr "" + +#: ../../godmode/netflow/nf_item_list.php:57 +msgid "Item list" +msgstr "" + +#: ../../godmode/netflow/nf_item_list.php:176 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2485 +#: ../../operation/netflow/nf_live_view.php:330 +msgid "Max. values" +msgstr "" + +#: ../../godmode/netflow/nf_item_list.php:177 +#: ../../operation/agentes/graphs.php:233 +msgid "Chart type" +msgstr "" + +#: ../../godmode/netflow/nf_item_list.php:277 +msgid "There are no defined items" +msgstr "" + +#: ../../godmode/netflow/nf_edit.php:38 +msgid "Manage Netflow Filter" +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:113 +msgid "Netflow filters" +msgstr "" + +#: ../../godmode/netflow/nf_edit.php:212 +#: ../../godmode/events/event_filter.php:215 +msgid "There are no defined filters" +msgstr "" + +#: ../../godmode/netflow/nf_edit_form.php:53 ../../godmode/events/events.php:54 +msgid "Filter list" +msgstr "" + +#: ../../godmode/netflow/nf_edit_form.php:55 +#: ../../godmode/netflow/nf_edit_form.php:77 +msgid "Add filter" +msgstr "" + +#: ../../godmode/netflow/nf_edit_form.php:58 +msgid "Netflow Filter" +msgstr "" + +#: ../../godmode/netflow/nf_edit_form.php:188 +#: ../../godmode/snmpconsole/snmp_filters.php:35 +#: ../../include/ajax/custom_fields.php:707 ../../include/ajax/events.php:756 +#: ../../include/ajax/events.php:816 +msgid "Update filter" +msgstr "" + +#: ../../godmode/netflow/nf_edit_form.php:235 +msgid "Filter:" +msgstr "" + +#: ../../godmode/netflow/nf_edit_form.php:239 +#: ../../operation/netflow/nf_live_view.php:414 +msgid "Dst Ip" +msgstr "" + +#: ../../godmode/netflow/nf_edit_form.php:239 +#: ../../operation/netflow/nf_live_view.php:414 +msgid "" +"Destination IP. A comma separated list of destination ip. If we leave the " +"field blank, will show all ip. Example filter by ip:" +"
    25.46.157.214,160.253.135.249" +msgstr "" + +#: ../../godmode/netflow/nf_edit_form.php:242 +#: ../../operation/netflow/nf_live_view.php:422 +msgid "Src Ip" +msgstr "" + +#: ../../godmode/netflow/nf_edit_form.php:242 +#: ../../operation/netflow/nf_live_view.php:422 +msgid "" +"Source IP. A comma separated list of source ip. If we leave the field blank, " +"will show all ip. Example filter by ip:
    25.46.157.214,160.253.135.249" +msgstr "" + +#: ../../godmode/netflow/nf_edit_form.php:245 +#: ../../godmode/netflow/nf_edit_form.php:258 +#: ../../operation/netflow/nf_live_view.php:350 +#: ../../operation/netflow/nf_live_view.php:433 +msgid "Dst Port" +msgstr "" + +#: ../../godmode/netflow/nf_edit_form.php:245 +#: ../../operation/netflow/nf_live_view.php:433 +msgid "" +"Destination port. A comma separated list of destination ports. If we leave " +"the field blank, will show all ports. Example filter by ports 80 and 22:" +"
    80,22" +msgstr "" + +#: ../../godmode/netflow/nf_edit_form.php:248 +#: ../../godmode/netflow/nf_edit_form.php:257 +#: ../../operation/netflow/nf_live_view.php:349 +#: ../../operation/netflow/nf_live_view.php:441 +msgid "Src Port" +msgstr "" + +#: ../../godmode/netflow/nf_edit_form.php:248 +#: ../../operation/netflow/nf_live_view.php:441 +msgid "" +"Source port. A comma separated list of source ports. If we leave the field " +"blank, will show all ports. Example filter by ports 80 and 22:
    80,22" +msgstr "" + +#: ../../godmode/netflow/nf_edit_form.php:253 +#: ../../operation/netflow/nf_live_view.php:344 +msgid "Aggregate by" +msgstr "" + +#: ../../godmode/netflow/nf_edit_form.php:255 +#: ../../operation/netflow/nf_live_view.php:347 +msgid "Src Ip Address" +msgstr "" + +#: ../../godmode/netflow/nf_edit_form.php:256 +#: ../../operation/netflow/nf_live_view.php:348 +msgid "Dst Ip Address" +msgstr "" + +#: ../../godmode/snmpconsole/snmp_trap_generator.php:38 +msgid "SNMP Trap generator" +msgstr "" + +#: ../../godmode/snmpconsole/snmp_trap_generator.php:68 +msgid "Empty parameters" +msgstr "" + +#: ../../godmode/snmpconsole/snmp_trap_generator.php:74 +msgid "Successfully generated" +msgstr "" + +#: ../../godmode/snmpconsole/snmp_trap_generator.php:75 +#, php-format +msgid "Could not be generated: %s" +msgstr "" + +#: ../../godmode/snmpconsole/snmp_trap_generator.php:85 +msgid "Host address" +msgstr "" + +#: ../../godmode/snmpconsole/snmp_trap_generator.php:95 +#: ../../include/functions_snmp_browser.php:727 +msgid "Community" +msgstr "" + +#: ../../godmode/snmpconsole/snmp_trap_generator.php:105 +#: ../../godmode/snmpconsole/snmp_alert.php:774 +#: ../../godmode/snmpconsole/snmp_alert.php:1263 +#: ../../operation/snmpconsole/snmp_view.php:859 +msgid "Enterprise String" +msgstr "" + +#: ../../godmode/snmpconsole/snmp_trap_generator.php:135 +msgid "SNMP Type" +msgstr "" + +#: ../../godmode/snmpconsole/snmp_trap_generator.php:168 +msgid "Generate trap" +msgstr "" + +#: ../../godmode/snmpconsole/snmp_alert.php:100 +msgid "Alert overview" +msgstr "" + +#: ../../godmode/snmpconsole/snmp_alert.php:118 +#: ../../godmode/snmpconsole/snmp_filters.php:46 +#: ../../operation/snmpconsole/snmp_view.php:681 +#: ../../operation/snmpconsole/snmp_view.php:789 +msgid "SNMP Console" +msgstr "" + +#: ../../godmode/snmpconsole/snmp_alert.php:293 +msgid "There was a problem creating the alert" +msgstr "" + +#: ../../godmode/snmpconsole/snmp_alert.php:435 +msgid "There was a problem updating the alert" +msgstr "" + +#: ../../godmode/snmpconsole/snmp_alert.php:637 +#: ../../godmode/snmpconsole/snmp_alert.php:656 +msgid "There was a problem duplicating the alert" +msgstr "" + +#: ../../godmode/snmpconsole/snmp_alert.php:646 +msgid "Successfully Duplicate" +msgstr "" + +#: ../../godmode/snmpconsole/snmp_alert.php:677 +msgid "There was a problem deleting the alert" +msgstr "" + +#: ../../godmode/snmpconsole/snmp_alert.php:774 +msgid "Matches substrings. End the string with $ for exact matches." +msgstr "" + +#: ../../godmode/snmpconsole/snmp_alert.php:842 +#: ../../godmode/snmpconsole/snmp_alert.php:852 +#: ../../godmode/snmpconsole/snmp_alert.php:862 +#: ../../godmode/snmpconsole/snmp_alert.php:872 +#: ../../godmode/snmpconsole/snmp_alert.php:882 +#: ../../godmode/snmpconsole/snmp_alert.php:892 +#: ../../godmode/snmpconsole/snmp_alert.php:902 +#: ../../godmode/snmpconsole/snmp_alert.php:912 +#: ../../godmode/snmpconsole/snmp_alert.php:922 +#: ../../godmode/snmpconsole/snmp_alert.php:932 +#: ../../godmode/snmpconsole/snmp_alert.php:942 +#: ../../godmode/snmpconsole/snmp_alert.php:952 +#: ../../godmode/snmpconsole/snmp_alert.php:962 +#: ../../godmode/snmpconsole/snmp_alert.php:972 +#: ../../godmode/snmpconsole/snmp_alert.php:982 +#: ../../godmode/snmpconsole/snmp_alert.php:992 +#: ../../godmode/snmpconsole/snmp_alert.php:1002 +#: ../../godmode/snmpconsole/snmp_alert.php:1012 +#: ../../godmode/snmpconsole/snmp_alert.php:1022 +#: ../../godmode/snmpconsole/snmp_alert.php:1032 +msgid "Variable bindings/Data" +msgstr "" + +#: ../../godmode/snmpconsole/snmp_alert.php:1162 +msgid "" +"Search by these fields description, OID, Custom Value, SNMP Agent (IP), " +"Single value, each Variable bindings/Datas." +msgstr "" + +#: ../../godmode/snmpconsole/snmp_alert.php:1180 +msgid "Alert SNMP control filter" +msgstr "" + +#: ../../godmode/snmpconsole/snmp_alert.php:1232 +msgid "There are no SNMP alerts" +msgstr "" + +#: ../../godmode/snmpconsole/snmp_alert.php:1266 +msgid "Custom Value/Enterprise String" +msgstr "" + +#: ../../godmode/snmpconsole/snmp_alert.php:1271 +#: ../../include/functions_reporting_html.php:5132 +#: ../../include/functions_reporting_html.php:5254 +#: ../../include/functions_treeview.php:454 +msgid "Times fired" +msgstr "" + +#: ../../godmode/snmpconsole/snmp_alert.php:1271 +msgid "TF." +msgstr "" + +#: ../../godmode/snmpconsole/snmp_alert.php:1427 +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 "" + +#: ../../godmode/snmpconsole/snmp_alert.php:1561 +msgid "Do you want delete the selected alerts?" +msgstr "" + +#: ../../godmode/snmpconsole/snmp_alert.php:1671 +msgid "Add action " +msgstr "" + +#: ../../godmode/snmpconsole/snmp_filters.php:41 +msgid "Filter overview" +msgstr "" + +#: ../../godmode/snmpconsole/snmp_filters.php:108 +msgid "There was a problem updating the filter" +msgstr "" + +#: ../../godmode/snmpconsole/snmp_filters.php:126 +#: ../../godmode/snmpconsole/snmp_filters.php:152 +msgid "Description is empty" +msgstr "" + +#: ../../godmode/snmpconsole/snmp_filters.php:129 +msgid "Filter is empty" +msgstr "" + +#: ../../godmode/snmpconsole/snmp_filters.php:149 +msgid "Filters are empty" +msgstr "" + +#: ../../godmode/snmpconsole/snmp_filters.php:159 +msgid "There was a problem creating the filter" +msgstr "" + +#: ../../godmode/snmpconsole/snmp_filters.php:178 +msgid "There was a problem deleting the filter" +msgstr "" + +#: ../../godmode/snmpconsole/snmp_filters.php:221 +#: ../../godmode/snmpconsole/snmp_filters.php:231 +msgid "" +"This field contains a substring, could be part of a IP address, a numeric " +"OID, or a plain substring" +msgstr "" + +#: ../../godmode/snmpconsole/snmp_filters.php:223 +msgid "Click to remove the filter" +msgstr "" + +#: ../../godmode/snmpconsole/snmp_filters.php:254 +#: ../../godmode/snmpconsole/snmp_filters.php:255 +msgid "Click to add new filter" +msgstr "" + +#: ../../godmode/menu.php:57 +msgid "Network scan" +msgstr "" + +#: ../../godmode/menu.php:59 +msgid "Custom network scan" +msgstr "" + +#: ../../godmode/menu.php:63 +msgid "Manage scan scripts" +msgstr "" + +#: ../../godmode/menu.php:66 ../../godmode/wizards/HostDevices.class.php:204 +msgid "Host & devices" +msgstr "" + +#: ../../godmode/menu.php:99 +msgid "Module categories" +msgstr "" + +#: ../../godmode/menu.php:103 +msgid "Module types" +msgstr "" + +#: ../../godmode/menu.php:127 +msgid "Manage agents groups" +msgstr "" + +#: ../../godmode/menu.php:166 ../../include/class/ConfigPEN.class.php:337 +#: ../../include/class/ConfigPEN.class.php:345 +msgid "Private Enterprise Numbers" +msgstr "" + +#: ../../godmode/menu.php:170 +msgid "Remote components" +msgstr "" + +#: ../../godmode/menu.php:194 ../../godmode/massive/massive_operations.php:257 +msgid "Agents operations" +msgstr "" + +#: ../../godmode/menu.php:195 ../../godmode/massive/massive_operations.php:269 +msgid "Modules operations" +msgstr "" + +#: ../../godmode/menu.php:196 ../../godmode/massive/massive_operations.php:281 +msgid "Plugins operations" +msgstr "" + +#: ../../godmode/menu.php:198 ../../godmode/massive/massive_operations.php:245 +msgid "Users operations" +msgstr "" + +#: ../../godmode/menu.php:201 ../../godmode/massive/massive_operations.php:233 +msgid "Alerts operations" +msgstr "" + +#: ../../godmode/menu.php:220 +msgid "Event filters" +msgstr "" + +#: ../../godmode/menu.php:225 ../../godmode/events/events.php:80 +#: ../../godmode/events/events.php:95 +msgid "Custom columns" +msgstr "" + +#: ../../godmode/menu.php:256 +msgid "List of Alerts" +msgstr "" + +#: ../../godmode/menu.php:271 ../../godmode/menu.php:272 +msgid "Special days list" +msgstr "" + +#: ../../godmode/menu.php:276 +msgid "SNMP alerts" +msgstr "" + +#: ../../godmode/menu.php:293 +msgid "Manage servers" +msgstr "" + +#: ../../godmode/menu.php:304 +msgid "Register Plugin" +msgstr "" + +#: ../../godmode/menu.php:330 +#: ../../include/class/OrderInterpreter.class.php:141 +msgid "General Setup" +msgstr "" + +#: ../../godmode/menu.php:355 ../../godmode/setup/setup.php:177 +#: ../../godmode/setup/setup.php:277 +#: ../../operation/agentes/ver_agente.php:1609 +msgid "eHorus" +msgstr "" + +#: ../../godmode/menu.php:358 ../../godmode/setup/setup.php:165 +#: ../../godmode/setup/setup.php:283 ../../godmode/setup/setup_integria.php:585 +msgid "Integria IMS" +msgstr "" + +#: ../../godmode/menu.php:366 +msgid "Websocket Engine" +msgstr "" + +#: ../../godmode/menu.php:369 ../../godmode/setup/setup.php:224 +#: ../../godmode/setup/setup.php:311 +#: ../../operation/agentes/ver_agente.php:1695 +msgid "External Tools" +msgstr "" + +#: ../../godmode/menu.php:373 ../../godmode/setup/setup.php:295 +msgid "Map conections GIS" +msgstr "" + +#: ../../godmode/menu.php:377 ../../godmode/setup/os.php:211 +#: ../../godmode/setup/os.php:229 +msgid "Edit OS" +msgstr "" + +#: ../../godmode/menu.php:400 +msgid "Diagnostic info" +msgstr "" + +#: ../../godmode/menu.php:405 +msgid "Site news" +msgstr "" + +#: ../../godmode/menu.php:411 +msgid "DB Schema Check" +msgstr "" + +#: ../../godmode/menu.php:414 +msgid "DB Interface" +msgstr "" + +#: ../../godmode/menu.php:494 +msgid "Extension manager view" +msgstr "" + +#: ../../godmode/menu.php:498 +msgid "Extension manager" +msgstr "" + +#: ../../godmode/menu.php:529 +#: ../../include/class/OrderInterpreter.class.php:339 +msgid "Warp Update" +msgstr "" + +#: ../../godmode/menu.php:535 +msgid "Update offline" +msgstr "" + +#: ../../godmode/menu.php:538 +msgid "Update online" +msgstr "" + +#: ../../godmode/menu.php:544 +msgid "Warp journal" +msgstr "" + +#: ../../godmode/menu.php:552 +#: ../../godmode/module_library/module_library_view.php:81 +msgid "Module library" +msgstr "" + +#: ../../godmode/menu.php:559 +#: ../../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/gis_maps/configure_gis_map.php:86 +#: ../../operation/gis_maps/gis_map.php:30 +#: ../../operation/gis_maps/render_view.php:130 +msgid "GIS Maps list" +msgstr "" + +#: ../../godmode/gis_maps/configure_gis_map.php:98 +msgid "View GIS" +msgstr "" + +#: ../../godmode/gis_maps/configure_gis_map.php:106 +msgid "GIS Maps builder" +msgstr "" + +#: ../../godmode/gis_maps/configure_gis_map.php:196 +msgid "Map successfully created" +msgstr "" + +#: ../../godmode/gis_maps/configure_gis_map.php:197 +msgid "Map could not be created" +msgstr "" + +#: ../../godmode/gis_maps/configure_gis_map.php:299 +msgid "Map successfully update" +msgstr "" + +#: ../../godmode/gis_maps/configure_gis_map.php:300 +msgid "Map could not be updated" +msgstr "" + +#: ../../godmode/gis_maps/configure_gis_map.php:353 +msgid "Do you want to use the default data from the connection?" +msgstr "" + +#: ../../godmode/gis_maps/configure_gis_map.php:387 +msgid "The connection" +msgstr "" + +#: ../../godmode/gis_maps/configure_gis_map.php:387 +msgid "just added previously." +msgstr "" + +#: ../../godmode/gis_maps/configure_gis_map.php:455 +msgid "Map Name" +msgstr "" + +#: ../../godmode/gis_maps/configure_gis_map.php:474 +msgid "Add Map connection" +msgstr "" + +#: ../../godmode/gis_maps/configure_gis_map.php:523 +msgid "Default zoom" +msgstr "" + +#: ../../godmode/gis_maps/configure_gis_map.php:530 +msgid "Center Latitude" +msgstr "" + +#: ../../godmode/gis_maps/configure_gis_map.php:533 +msgid "Center Longitude" +msgstr "" + +#: ../../godmode/gis_maps/configure_gis_map.php:536 +msgid "Center Altitude" +msgstr "" + +#: ../../godmode/gis_maps/configure_gis_map.php:539 +msgid "Default Latitude" +msgstr "" + +#: ../../godmode/gis_maps/configure_gis_map.php:542 +msgid "Default Longitude" +msgstr "" + +#: ../../godmode/gis_maps/configure_gis_map.php:545 +msgid "Default Altitude" +msgstr "" + +#: ../../godmode/gis_maps/configure_gis_map.php:552 +#: ../../godmode/setup/gis_step_2.php:395 +msgid "Layers" +msgstr "" + +#: ../../godmode/gis_maps/configure_gis_map.php:561 +msgid "List of layers" +msgstr "" + +#: ../../godmode/gis_maps/configure_gis_map.php:562 +msgid "New layer" +msgstr "" + +#: ../../godmode/gis_maps/configure_gis_map.php:568 +msgid "Layer name" +msgstr "" + +#: ../../godmode/gis_maps/configure_gis_map.php:570 +msgid "Visible" +msgstr "" + +#: ../../godmode/gis_maps/configure_gis_map.php:574 +msgid "Show agents from group" +msgstr "" + +#: ../../godmode/gis_maps/configure_gis_map.php:575 +#: ../../godmode/setup/setup_general.php:574 +#: ../../godmode/reporting/create_container.php:294 +#: ../../godmode/reporting/create_container.php:310 +#: ../../include/ajax/events.php:1018 ../../include/ajax/graph.ajax.php:145 +msgid "none" +msgstr "" + +#: ../../godmode/gis_maps/configure_gis_map.php:586 +msgid "Add agent" +msgstr "" + +#: ../../godmode/gis_maps/configure_gis_map.php:608 +msgid "List of Agents to be shown in the layer" +msgstr "" + +#: ../../godmode/gis_maps/configure_gis_map.php:639 +msgid "Use the data of this agent" +msgstr "" + +#: ../../godmode/gis_maps/configure_gis_map.php:647 +msgid "List of groups to be shown in the layer" +msgstr "" + +#: ../../godmode/gis_maps/configure_gis_map.php:654 +msgid "Save Layer" +msgstr "" + +#: ../../godmode/gis_maps/configure_gis_map.php:670 +#: ../../godmode/gis_maps/configure_gis_map.php:677 +msgid "Save map" +msgstr "" + +#: ../../godmode/gis_maps/configure_gis_map.php:672 +msgid "Update map" +msgstr "" + +#: ../../godmode/gis_maps/configure_gis_map.php:1060 +msgid "Using data from" +msgstr "" + +#: ../../godmode/gis_maps/configure_gis_map.php:1218 +msgid "Empty layer names are not supported" +msgstr "" + +#: ../../godmode/massive/massive_copy_modules.php:193 +msgid "Copy alerts" +msgstr "" + +#: ../../godmode/massive/massive_copy_modules.php:196 +#: ../../godmode/massive/massive_delete_modules.php:458 +#: ../../godmode/massive/massive_edit_modules.php:420 +msgid "Filter Modules" +msgstr "" + +#: ../../godmode/massive/massive_copy_modules.php:230 +msgid "No alerts for this agent" +msgstr "" + +#: ../../godmode/massive/massive_copy_modules.php:292 +#: ../../godmode/massive/massive_delete_modules.php:530 +msgid "Filter Agents" +msgstr "" + +#: ../../godmode/massive/massive_copy_modules.php:309 +msgid "To agent(s)" +msgstr "" + +#: ../../godmode/massive/massive_copy_modules.php:559 +msgid "No operation selected" +msgstr "" + +#: ../../godmode/massive/massive_copy_modules.php:569 +#: ../../include/functions_agents.php:845 +msgid "No destiny agent(s) to copy" +msgstr "" + +#: ../../godmode/massive/massive_operations.php:59 +msgid "Bulk alert add" +msgstr "" + +#: ../../godmode/massive/massive_operations.php:60 +msgid "Bulk alert delete" +msgstr "" + +#: ../../godmode/massive/massive_operations.php:61 +msgid "Bulk alert actions add" +msgstr "" + +#: ../../godmode/massive/massive_operations.php:62 +msgid "Bulk alert actions delete" +msgstr "" + +#: ../../godmode/massive/massive_operations.php:63 +msgid "Bulk alert enable/disable" +msgstr "" + +#: ../../godmode/massive/massive_operations.php:64 +msgid "Bulk alert setting standby" +msgstr "" + +#: ../../godmode/massive/massive_operations.php:68 +msgid "Bulk agent edit" +msgstr "" + +#: ../../godmode/massive/massive_operations.php:69 +#: ../../godmode/massive/massive_operations.php:73 +msgid "Bulk agent delete" +msgstr "" + +#: ../../godmode/massive/massive_operations.php:79 +msgid "Bulk profile add" +msgstr "" + +#: ../../godmode/massive/massive_operations.php:80 +msgid "Bulk profile delete" +msgstr "" + +#: ../../godmode/massive/massive_operations.php:87 +msgid "Bulk module edit" +msgstr "" + +#: ../../godmode/massive/massive_operations.php:88 +msgid "Bulk module copy" +msgstr "" + +#: ../../godmode/massive/massive_operations.php:89 +msgid "Bulk module delete" +msgstr "" + +#: ../../godmode/massive/massive_operations.php:93 +msgid "Bulk plugin edit" +msgstr "" + +#: ../../godmode/massive/massive_operations.php:389 +#, php-format +msgid "" +"No changes have been made because they exceed the maximum allowed (%d). Make " +"fewer changes or contact the administrator." +msgstr "" + +#: ../../godmode/massive/massive_operations.php:417 +#, php-format +msgid "" +"This node is configured with centralized mode. To delete agents go to %s" +msgstr "" + +#: ../../godmode/massive/massive_operations.php:440 +msgid "The blank fields will not be updated" +msgstr "" + +#: ../../godmode/massive/massive_standby_alerts.php:223 +msgid "Not standby alerts" +msgstr "" + +#: ../../godmode/massive/massive_standby_alerts.php:252 +#: ../../godmode/massive/massive_standby_alerts.php:256 +msgid "Set standby selected alerts" +msgstr "" + +#: ../../godmode/massive/massive_standby_alerts.php:258 +msgid "Standby alerts" +msgstr "" + +#: ../../godmode/massive/massive_delete_action_alerts.php:75 +msgid "Could not be deleted. No agents selected" +msgstr "" + +#: ../../godmode/massive/massive_delete_action_alerts.php:122 +msgid "Could not be deleted. No alerts selected" +msgstr "" + +#: ../../godmode/massive/massive_delete_action_alerts.php:181 +msgid "Could not be deleted. No action selected" +msgstr "" + +#: ../../godmode/massive/massive_delete_action_alerts.php:230 +#: ../../godmode/massive/massive_add_action_alerts.php:212 +msgid "Agents with templates" +msgstr "" + +#: ../../godmode/massive/massive_delete_action_alerts.php:239 +#: ../../godmode/massive/massive_add_action_alerts.php:218 +#: ../../godmode/alerts/alert_templates.php:131 +#: ../../godmode/alerts/alert_templates.php:183 +#: ../../godmode/alerts/alert_templates.php:206 +#: ../../godmode/alerts/alert_templates.php:227 +msgid "Alert templates" +msgstr "" + +#: ../../godmode/massive/massive_delete_action_alerts.php:247 +#: ../../godmode/massive/massive_delete_modules.php:557 +#: ../../godmode/massive/massive_add_action_alerts.php:226 +#: ../../godmode/massive/massive_edit_modules.php:530 +msgid "Show unknown and not init modules" +msgstr "" + +#: ../../godmode/massive/massive_delete_modules.php:82 +msgid "No module selected" +msgstr "" + +#: ../../godmode/massive/massive_delete_modules.php:156 +msgid "" +"There was an error deleting the modules, the operation has been cancelled" +msgstr "" + +#: ../../godmode/massive/massive_delete_modules.php:318 +#: ../../godmode/massive/massive_edit_modules.php:304 +msgid "Selection mode" +msgstr "" + +#: ../../godmode/massive/massive_delete_modules.php:319 +#: ../../godmode/massive/massive_edit_modules.php:305 +msgid "Select modules first " +msgstr "" + +#: ../../godmode/massive/massive_delete_modules.php:320 +#: ../../godmode/massive/massive_edit_modules.php:306 +msgid "Select agents first " +msgstr "" + +#: ../../godmode/massive/massive_delete_modules.php:343 +#: ../../godmode/massive/massive_edit_modules.php:325 +msgid "Select all modules of this type" +msgstr "" + +#: ../../godmode/massive/massive_delete_modules.php:387 +#: ../../godmode/massive/massive_edit_modules.php:371 +msgid "Select all modules of this group" +msgstr "" + +#: ../../godmode/massive/massive_delete_modules.php:436 +#: ../../godmode/massive/massive_edit_modules.php:382 +#: ../../godmode/events/custom_events.php:116 +#: ../../include/functions_events.php:304 +msgid "Module Status" +msgstr "" + +#: ../../godmode/massive/massive_delete_modules.php:477 +#: ../../godmode/massive/massive_edit_modules.php:436 +msgid "Select all modules" +msgstr "" + +#: ../../godmode/massive/massive_delete_modules.php:479 +#: ../../godmode/massive/massive_edit_modules.php:438 +msgid "When select modules" +msgstr "" + +#: ../../godmode/massive/massive_delete_modules.php:483 +#: ../../godmode/massive/massive_edit_modules.php:442 +msgid "Show common agents" +msgstr "" + +#: ../../godmode/massive/massive_delete_modules.php:484 +#: ../../godmode/massive/massive_edit_modules.php:443 +msgid "Show all agents" +msgstr "" + +#: ../../godmode/massive/massive_delete_modules.php:549 +#: ../../godmode/massive/massive_edit_modules.php:522 +msgid "Select all agents" +msgstr "" + +#: ../../godmode/massive/massive_delete_modules.php:595 +#: ../../godmode/massive/massive_edit_modules.php:1260 +msgid "Please, select an agent first" +msgstr "" + +#: ../../godmode/massive/massive_add_alerts.php:105 +#: ../../godmode/massive/massive_delete_alerts.php:108 +#: ../../operation/agentes/alerts_status.php:531 +#: ../../operation/agentes/alerts_status.functions.php:54 +msgid "No alert selected" +msgstr "" + +#: ../../godmode/massive/massive_delete_agents.php:122 +#, php-format +msgid "" +"There was an error deleting the agent, the operation has been cancelled " +"Could not delete agent %s" +msgstr "" + +#: ../../godmode/massive/massive_delete_agents.php:132 +#, php-format +msgid "Successfully deleted (%s)" +msgstr "" + +#: ../../godmode/massive/massive_delete_agents.php:226 +#: ../../godmode/massive/massive_edit_agents.php:547 +msgid "Show agents" +msgstr "" + +#: ../../godmode/massive/massive_edit_plugins.php:177 +msgid "Error retrieving the plugin macros" +msgstr "" + +#: ../../godmode/massive/massive_edit_plugins.php:185 +msgid "Error retrieving the modified macros" +msgstr "" + +#: ../../godmode/massive/massive_edit_plugins.php:208 +msgid "Error retrieving the module plugin macros" +msgstr "" + +#: ../../godmode/massive/massive_edit_plugins.php:226 +msgid "Error retrieving the module plugin macros data" +msgstr "" + +#: ../../godmode/massive/massive_edit_plugins.php:264 +msgid "Error building the new macros" +msgstr "" + +#: ../../godmode/massive/massive_edit_plugins.php:290 +#, php-format +msgid "%d modules updated" +msgstr "" + +#: ../../godmode/massive/massive_edit_plugins.php:321 +msgid "There are not registered plugins" +msgstr "" + +#: ../../godmode/massive/massive_edit_plugins.php:464 +msgid "Invalid plugin data" +msgstr "" + +#: ../../godmode/massive/massive_edit_plugins.php:571 +msgid "Clear" +msgstr "" + +#: ../../godmode/massive/massive_edit_plugins.php:599 +msgid "Invalid macros array" +msgstr "" + +#: ../../godmode/massive/massive_edit_plugins.php:624 +msgid "Multiple values" +msgstr "" + +#: ../../godmode/massive/massive_edit_plugins.php:656 +#: ../../godmode/massive/massive_edit_plugins.php:792 +#: ../../godmode/massive/massive_edit_plugins.php:808 +msgid "Invalid agents array" +msgstr "" + +#: ../../godmode/massive/massive_edit_plugins.php:672 +msgid "Invalid agent element" +msgstr "" + +#: ../../godmode/massive/massive_edit_plugins.php:683 +msgid "Invalid modules array" +msgstr "" + +#: ../../godmode/massive/massive_edit_plugins.php:711 +msgid "Invalid module element" +msgstr "" + +#: ../../godmode/massive/massive_edit_plugins.php:920 +msgid "There are no modules using this plugin" +msgstr "" + +#: ../../godmode/massive/massive_edit_plugins.php:1005 +msgid "There was a problem loading the module plugin macros data" +msgstr "" + +#: ../../godmode/massive/massive_enable_disable_alerts.php:195 +msgid "Enabled alerts" +msgstr "" + +#: ../../godmode/massive/massive_enable_disable_alerts.php:224 +msgid "Disable selected alerts" +msgstr "" + +#: ../../godmode/massive/massive_enable_disable_alerts.php:228 +msgid "Enable selected alerts" +msgstr "" + +#: ../../godmode/massive/massive_enable_disable_alerts.php:230 +msgid "Disabled alerts" +msgstr "" + +#: ../../godmode/massive/massive_edit_agents.php:176 +msgid "No values changed" +msgstr "" + +#: ../../godmode/massive/massive_edit_agents.php:227 +msgid "Configuration files deleted successfully" +msgstr "" + +#: ../../godmode/massive/massive_edit_agents.php:228 +msgid "Configuration files cannot be deleted" +msgstr "" + +#: ../../godmode/massive/massive_edit_agents.php:420 +#, php-format +msgid "Agents updated successfully (%d)" +msgstr "" + +#: ../../godmode/massive/massive_edit_agents.php:435 +#, php-format +msgid "Agents cannot be updated (%d), ids (%s)" +msgstr "" + +#: ../../godmode/massive/massive_edit_agents.php:450 +#, php-format +msgid "Agent ID: %s cannot be updated custom fields (%s)" +msgstr "" + +#: ../../godmode/massive/massive_edit_agents.php:470 +#, php-format +msgid "Agent ID: %s cannot be updated %s secondary groups (%s)" +msgstr "" + +#: ../../godmode/massive/massive_edit_agents.php:919 +msgid "" +"If the remote configuration is enabled, it will also go into standby mode " +"when disabling it." +msgstr "" + +#: ../../godmode/massive/massive_edit_agents.php:932 +msgid "Active" +msgstr "" + +#: ../../godmode/massive/massive_edit_agents.php:948 +msgid "Delete available remote configurations" +msgstr "" + +#: ../../godmode/massive/massive_edit_agents.php:981 +msgid "Without status" +msgstr "" + +#: ../../godmode/massive/massive_edit_agents.php:981 +#: ../../include/lib/Dashboard/Widgets/maps_status.php:360 +msgid "Bad" +msgstr "" + +#: ../../godmode/massive/massive_edit_agents.php:991 +msgid "The agent still runs but the alerts and events will be stop" +msgstr "" + +#: ../../godmode/massive/massive_edit_agents.php:1008 +#, php-format +msgid "" +"This mode allow %s to disable all modules \n" +"of this agent while the selected module is on CRITICAL status" +msgstr "" + +#: ../../godmode/massive/massive_delete_profiles.php:52 +#: ../../godmode/massive/massive_add_profiles.php:52 +#, php-format +msgid "" +"This node is configured with centralized mode. All profiles user information " +"is read only. Go to %s to manage it." +msgstr "" + +#: ../../godmode/massive/massive_delete_profiles.php:133 +msgid "Profiles deleted successfully" +msgstr "" + +#: ../../godmode/massive/massive_delete_profiles.php:134 +msgid "Profiles cannot be deleted" +msgstr "" + +#: ../../godmode/massive/massive_delete_profiles.php:153 +#: ../../godmode/massive/massive_add_profiles.php:204 +#: ../../include/functions_reporting.php:11742 +#: ../../operation/search_results.php:93 +msgid "Users" +msgstr "" + +#: ../../godmode/massive/massive_delete_alerts.php:307 +msgid "Show alerts on disabled modules" +msgstr "" + +#: ../../godmode/massive/massive_add_action_alerts.php:134 +msgid "No alerts selected" +msgstr "" + +#: ../../godmode/massive/massive_add_action_alerts.php:166 +msgid "No actions selected" +msgstr "" + +#: ../../godmode/massive/massive_add_profiles.php:184 +msgid "Profiles added successfully" +msgstr "" + +#: ../../godmode/massive/massive_add_profiles.php:185 +msgid "Profiles cannot be added" +msgstr "" + +#: ../../godmode/massive/massive_edit_modules.php:137 +msgid "Error updating the modules from a module type" +msgstr "" + +#: ../../godmode/massive/massive_edit_modules.php:160 +msgid "Error updating the modules from an agent group" +msgstr "" + +#: ../../godmode/massive/massive_edit_modules.php:178 +msgid "Error updating the modules (maybe there was no field to update)" +msgstr "" + +#: ../../godmode/massive/massive_edit_modules.php:506 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:405 +msgid "Filter agents" +msgstr "" + +#: ../../godmode/alerts/configure_alert_command.php:60 +msgid "Configure alert command" +msgstr "" + +#: ../../godmode/alerts/configure_alert_command.php:196 +#: ../../godmode/alerts/alert_commands.php:643 +#, php-format +msgid "" +"This node is configured with centralized mode. All alert commands " +"information is read only. Go to %s to manage it." +msgstr "" + +#: ../../godmode/alerts/configure_alert_command.php:207 +msgid "Update Command" +msgstr "" + +#: ../../godmode/alerts/configure_alert_command.php:207 +#: ../../godmode/alerts/configure_alert_action.php:275 +msgid "Create Command" +msgstr "" + +#: ../../godmode/alerts/configure_alert_command.php:297 +#, php-format +msgid "Field %s description" +msgstr "" + +#: ../../godmode/alerts/configure_alert_command.php:325 +#, php-format +msgid "Field %s values" +msgstr "" + +#: ../../godmode/alerts/configure_alert_command.php:327 +msgid "value1,tag1;value2,tag2;value3,tag3" +msgstr "" + +#: ../../godmode/alerts/configure_alert_command.php:363 +msgid "Hide" +msgstr "" + +#: ../../godmode/alerts/alert_actions.php:74 +#: ../../include/functions_reporting.php:2836 +msgid "Alert actions" +msgstr "" + +#: ../../godmode/alerts/alert_actions.php:222 +#: ../../godmode/alerts/configure_alert_action.php:120 +#, php-format +msgid "" +"This node is configured with centralized mode. All alert actions information " +"is read only. Go to %s to manage it." +msgstr "" + +#: ../../godmode/alerts/alert_actions.php:396 +msgid "" +"You cannot edit this action, You don't have the permission to edit All group." +msgstr "" + +#: ../../godmode/alerts/alert_actions.php:407 +msgid "" +"The action and the command associated with it do not have the same group. " +"Please contact an administrator to fix it." +msgstr "" + +#: ../../godmode/alerts/alert_actions.php:465 +msgid "No alert actions configured" +msgstr "" + +#: ../../godmode/alerts/alert_list.list.php:133 +msgid "Field content" +msgstr "" + +#: ../../godmode/alerts/alert_list.list.php:145 +#: ../../mobile/operation/alerts.php:64 +#: ../../operation/agentes/alerts_status.functions.php:95 +msgid "All (Enabled)" +msgstr "" + +#: ../../godmode/alerts/alert_list.list.php:148 +#: ../../mobile/operation/alerts.php:67 +#: ../../operation/agentes/alerts_status.functions.php:98 +#: ../../operation/snmpconsole/snmp_view.php:228 +#: ../../operation/snmpconsole/snmp_view.php:1263 +msgid "Not fired" +msgstr "" + +#: ../../godmode/alerts/alert_list.list.php:677 +#: ../../godmode/alerts/alert_view.php:317 +msgid "" +"The default actions will be executed every time that the alert is fired and " +"no other action is executed" +msgstr "" + +#: ../../godmode/alerts/alert_list.list.php:945 +msgid "View alert advanced details" +msgstr "" + +#: ../../godmode/alerts/alert_list.list.php:961 +#: ../../include/functions_reporting_html.php:3219 +msgid "No alerts defined" +msgstr "" + +#: ../../godmode/alerts/alert_commands.php:143 +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:219
    +#: ../../godmode/alerts/alert_commands.php:250
    +msgid "Text/plain"
    +msgstr ""
    +
    +#: ../../godmode/alerts/alert_commands.php:221
    +#: ../../godmode/alerts/alert_commands.php:252
    +msgid "For sending emails only text plain"
    +msgstr ""
    +
    +#: ../../godmode/alerts/alert_commands.php:235
    +#: ../../godmode/alerts/alert_commands.php:266
    +msgid "Text/html"
    +msgstr ""
    +
    +#: ../../godmode/alerts/alert_commands.php:474
    +msgid "Permissions warning"
    +msgstr ""
    +
    +#: ../../godmode/alerts/alert_commands.php:477
    +msgid ""
    +"Command management is limited to administrator users or user profiles with "
    +"permissions PM"
    +msgstr ""
    +
    +#: ../../godmode/alerts/alert_commands.php:494
    +msgid "Alert commands"
    +msgstr ""
    +
    +#: ../../godmode/alerts/alert_commands.php:563
    +#: ../../include/functions_alerts.php:2652
    +msgid "No name specified"
    +msgstr ""
    +
    +#: ../../godmode/alerts/alert_commands.php:567
    +#: ../../include/functions_alerts.php:2647
    +msgid "No command specified"
    +msgstr ""
    +
    +#: ../../godmode/alerts/alert_commands.php:619
    +msgid " (copy)"
    +msgstr ""
    +
    +#: ../../godmode/alerts/alert_commands.php:740
    +msgid "No alert commands configured"
    +msgstr ""
    +
    +#: ../../godmode/alerts/alert_templates.php:268
    +#, php-format
    +msgid ""
    +"This node is configured with centralized mode. All alert templates "
    +"information is read only. Go to %s to manage it."
    +msgstr ""
    +
    +#: ../../godmode/alerts/alert_templates.php:413
    +msgid ""
    +"You cannot edit this alert template, You don't have the permission to edit "
    +"All group."
    +msgstr ""
    +
    +#: ../../godmode/alerts/alert_templates.php:474
    +msgid "No alert templates defined"
    +msgstr ""
    +
    +#: ../../godmode/alerts/configure_alert_action.php:74
    +#: ../../godmode/alerts/configure_alert_action.php:87
    +msgid "Configure alert action"
    +msgstr ""
    +
    +#: ../../godmode/alerts/configure_alert_action.php:167
    +msgid "Update Action"
    +msgstr ""
    +
    +#: ../../godmode/alerts/configure_alert_action.php:169
    +#: ../../godmode/alerts/alert_list.builder.php:136
    +#: ../../include/class/AgentsAlerts.class.php:332
    +msgid "Create Action"
    +msgstr ""
    +
    +#: ../../godmode/alerts/configure_alert_action.php:204
    +msgid "This action may stop working, if you change its name."
    +msgstr ""
    +
    +#: ../../godmode/alerts/configure_alert_action.php:306
    +msgid "Recovery"
    +msgstr ""
    +
    +#: ../../godmode/alerts/configure_alert_action.php:310
    +#: ../../godmode/alerts/alert_view.php:527
    +#: ../../godmode/alerts/alert_view.php:654 ../../godmode/servers/plugin.php:422
    +msgid "Command preview"
    +msgstr ""
    +
    +#: ../../godmode/alerts/configure_alert_action.php:330
    +msgid "Create workunit on recovery"
    +msgstr ""
    +
    +#: ../../godmode/alerts/configure_alert_action.php:331
    +msgid ""
    +"If closed status is set on recovery, a workunit will be added to the ticket "
    +"in Integria IMS rather that closing the ticket."
    +msgstr ""
    +
    +#: ../../godmode/alerts/configure_alert_template.php:99
    +#: ../../godmode/alerts/configure_alert_template.php:123
    +#: ../../godmode/alerts/configure_alert_template.php:155
    +#: ../../include/functions_menu.php:494
    +msgid "Configure alert template"
    +msgstr ""
    +
    +#: ../../godmode/alerts/configure_alert_template.php:250
    +#: ../../godmode/alerts/configure_alert_template.php:254
    +msgid "Conditions"
    +msgstr ""
    +
    +#: ../../godmode/alerts/configure_alert_template.php:271
    +#: ../../godmode/alerts/configure_alert_template.php:275
    +msgid "Advanced fields"
    +msgstr ""
    +
    +#: ../../godmode/alerts/configure_alert_template.php:419
    +#, php-format
    +msgid ""
    +"This node is configured with centralized mode. All alerts templates "
    +"information is read only. Go to Go to %s to manage it."
    +msgstr ""
    +
    +#: ../../godmode/alerts/configure_alert_template.php:531
    +msgid "No template name specified"
    +msgstr ""
    +
    +#: ../../godmode/alerts/configure_alert_template.php:607
    +#: ../../godmode/alerts/alert_list.builder.php:169
    +#: ../../include/class/AgentsAlerts.class.php:379
    +msgid "Create Template"
    +msgstr ""
    +
    +#: ../../godmode/alerts/configure_alert_template.php:712
    +msgid "Reset counter for non-sustained alerts"
    +msgstr ""
    +
    +#: ../../godmode/alerts/configure_alert_template.php:714
    +msgid ""
    +"Enable this option if you want the counter to be reset when the alert is not "
    +"being fired consecutively, even if it's within the time threshold"
    +msgstr ""
    +
    +#: ../../godmode/alerts/configure_alert_template.php:788
    +msgid ""
    +"Unless they're left blank, the fields from the action will override those "
    +"set on the template."
    +msgstr ""
    +
    +#: ../../godmode/alerts/configure_alert_template.php:792
    +msgid "Condition type"
    +msgstr ""
    +
    +#: ../../godmode/alerts/configure_alert_template.php:809
    +msgid "Trigger when matches the value"
    +msgstr ""
    +
    +#: ../../godmode/alerts/configure_alert_template.php:832
    +msgid "The regular expression is valid"
    +msgstr ""
    +
    +#: ../../godmode/alerts/configure_alert_template.php:842
    +msgid "The regular expression is not valid"
    +msgstr ""
    +
    +#: ../../godmode/alerts/configure_alert_template.php:919
    +msgid "Recovery fields"
    +msgstr ""
    +
    +#: ../../godmode/alerts/configure_alert_template.php:1136
    +msgid "No wizard"
    +msgstr ""
    +
    +#: ../../godmode/alerts/configure_alert_template.php:1216
    +#: ../../godmode/alerts/alert_view.php:166 ../../include/functions_ui.php:1340
    +msgid "The alert would fire when the value matches "
    +msgstr ""
    +
    +#: ../../godmode/alerts/configure_alert_template.php:1217
    +#, php-format
    +msgid "The alert would fire when the value doesn\\'t match %s"
    +msgstr ""
    +
    +#: ../../godmode/alerts/configure_alert_template.php:1218
    +#: ../../godmode/alerts/alert_view.php:175 ../../include/functions_ui.php:1329
    +msgid "The alert would fire when the value is "
    +msgstr ""
    +
    +#: ../../godmode/alerts/configure_alert_template.php:1219
    +#: ../../godmode/alerts/alert_view.php:180 ../../include/functions_ui.php:1334
    +msgid "The alert would fire when the value is not "
    +msgstr ""
    +
    +#: ../../godmode/alerts/configure_alert_template.php:1220
    +#: ../../godmode/alerts/alert_view.php:187 ../../include/functions_ui.php:1352
    +msgid ""
    +"The alert would fire when the value is between  and "
    +""
    +msgstr ""
    +
    +#: ../../godmode/alerts/configure_alert_template.php:1221
    +msgid ""
    +"The alert would fire when the value is not between  and "
    +""
    +msgstr ""
    +
    +#: ../../godmode/alerts/configure_alert_template.php:1222
    +#: ../../godmode/alerts/alert_view.php:200
    +msgid "The alert would fire when the value is below "
    +msgstr ""
    +
    +#: ../../godmode/alerts/configure_alert_template.php:1223
    +#: ../../godmode/alerts/alert_view.php:205
    +msgid "The alert would fire when the value is above "
    +msgstr ""
    +
    +#: ../../godmode/alerts/configure_alert_template.php:1224
    +#: ../../godmode/alerts/alert_view.php:218 ../../include/functions_ui.php:1371
    +msgid "The alert would fire when the module is in warning status"
    +msgstr ""
    +
    +#: ../../godmode/alerts/configure_alert_template.php:1225
    +#: ../../godmode/alerts/alert_view.php:222 ../../include/functions_ui.php:1376
    +msgid "The alert would fire when the module is in critical status"
    +msgstr ""
    +
    +#: ../../godmode/alerts/configure_alert_template.php:1226
    +#: ../../godmode/alerts/alert_view.php:211
    +msgid "The alert would fire when the module value changes"
    +msgstr ""
    +
    +#: ../../godmode/alerts/configure_alert_template.php:1227
    +#: ../../godmode/alerts/alert_view.php:213
    +msgid "The alert would fire when the module value does not change"
    +msgstr ""
    +
    +#: ../../godmode/alerts/configure_alert_template.php:1228
    +#: ../../godmode/alerts/alert_view.php:230
    +msgid "The alert would fire when the module is in unknown status"
    +msgstr ""
    +
    +#: ../../godmode/alerts/configure_alert_template.php:1229
    +msgid ""
    +"The alert template cannot have the same value for min and max thresholds."
    +msgstr ""
    +
    +#: ../../godmode/alerts/configure_alert_template.php:1230
    +#: ../../godmode/alerts/alert_view.php:226
    +msgid "The alert would fire when the module is in not normal status"
    +msgstr ""
    +
    +#: ../../godmode/alerts/configure_alert_template.php:1407
    +msgid ""
    +"The alert would fire when the module is in unknown status. Warning: "
    +"unknown_updates of pandora_server.conf must be equal to 1"
    +msgstr ""
    +
    +#: ../../godmode/alerts/alert_view.php:65
    +#: ../../godmode/alerts/alert_view.php:280
    +#: ../../include/functions_events.php:4169
    +msgid "Alert details"
    +msgstr ""
    +
    +#: ../../godmode/alerts/alert_view.php:83
    +#: ../../godmode/alerts/alert_view.php:84
    +#: ../../godmode/alerts/alert_list.php:480
    +msgid "List alerts"
    +msgstr ""
    +
    +#: ../../godmode/alerts/alert_view.php:128
    +#: ../../mobile/operation/alerts.php:125 ../../mobile/operation/alerts.php:126
    +#: ../../mobile/operation/alerts.php:256 ../../mobile/operation/alerts.php:257
    +msgid "Stand by"
    +msgstr ""
    +
    +#: ../../godmode/alerts/alert_view.php:168 ../../include/functions_ui.php:1343
    +msgid ""
    +"The alert would fire when the value doesn't match "
    +msgstr ""
    +
    +#: ../../godmode/alerts/alert_view.php:191 ../../include/functions_ui.php:1355
    +msgid ""
    +"The alert would fire when the value is not between  "
    +"and "
    +msgstr ""
    +
    +#: ../../godmode/alerts/alert_view.php:281
    +msgid "Firing conditions"
    +msgstr ""
    +
    +#: ../../godmode/alerts/alert_view.php:305
    +#: ../../godmode/alerts/alert_view.php:339
    +msgid "Every time that the alert is fired"
    +msgstr ""
    +
    +#: ../../godmode/alerts/alert_view.php:385
    +msgid ""
    +"Select the desired action and mode to see the Firing/Recovery fields for "
    +"this action"
    +msgstr ""
    +
    +#: ../../godmode/alerts/alert_view.php:446
    +msgid "Template fields"
    +msgstr ""
    +
    +#: ../../godmode/alerts/alert_view.php:448
    +msgid "Triggering fields configured in template"
    +msgstr ""
    +
    +#: ../../godmode/alerts/alert_view.php:542
    +msgid "The alert recovering is disabled on this template."
    +msgstr ""
    +
    +#: ../../godmode/alerts/alert_view.php:558
    +msgid "Recovering fields"
    +msgstr ""
    +
    +#: ../../godmode/alerts/alert_view.php:560
    +msgid ""
    +"Fields passed to the command executed by this action when the alert is "
    +"recovered"
    +msgstr ""
    +
    +#: ../../godmode/alerts/alert_view.php:574
    +msgid "Template recovery fields"
    +msgstr ""
    +
    +#: ../../godmode/alerts/alert_view.php:576
    +msgid "Recovery fields configured in alert template"
    +msgstr ""
    +
    +#: ../../godmode/alerts/alert_view.php:579
    +msgid "Action recovery fields"
    +msgstr ""
    +
    +#: ../../godmode/alerts/alert_view.php:581
    +msgid "Recovery fields configured in alert action"
    +msgstr ""
    +
    +#: ../../godmode/alerts/alert_view.php:584
    +msgid "Executed on recovery"
    +msgstr ""
    +
    +#: ../../godmode/alerts/alert_view.php:586
    +msgid "Fields used on execution when the alert is recovered"
    +msgstr ""
    +
    +#: ../../godmode/alerts/alert_list.builder.php:91
    +msgid "Latest value"
    +msgstr ""
    +
    +#: ../../godmode/alerts/alert_list.builder.php:201
    +msgid "Finish and view cluster"
    +msgstr ""
    +
    +#: ../../godmode/alerts/alert_list.php:115
    +msgid "Already added"
    +msgstr ""
    +
    +#: ../../godmode/alerts/alert_list.php:169
    +msgid "No template specified"
    +msgstr ""
    +
    +#: ../../godmode/alerts/alert_list.php:484
    +msgid "Builder alert"
    +msgstr ""
    +
    +#: ../../godmode/setup/license.php:51
    +msgid "License management"
    +msgstr ""
    +
    +#: ../../godmode/setup/license.php:99
    +msgid "Error while connecting to licence server."
    +msgstr ""
    +
    +#: ../../godmode/setup/license.php:100
    +msgid "Invalid response while validating license."
    +msgstr ""
    +
    +#: ../../godmode/setup/license.php:121
    +msgid "Licence"
    +msgstr ""
    +
    +#: ../../godmode/setup/license.php:129
    +#: ../../include/class/Diagnostics.class.php:1152
    +msgid "Customer key"
    +msgstr ""
    +
    +#: ../../godmode/setup/license.php:135
    +#: ../../include/class/Diagnostics.class.php:1160
    +msgid "Platform Limit"
    +msgstr ""
    +
    +#: ../../godmode/setup/license.php:136 ../../godmode/setup/license.php:139
    +#: ../../godmode/setup/license.php:142 ../../godmode/setup/license.php:145
    +msgid "agents"
    +msgstr ""
    +
    +#: ../../godmode/setup/license.php:136 ../../godmode/setup/license.php:139
    +#: ../../godmode/setup/license.php:142 ../../godmode/setup/license.php:145
    +#: ../../operation/tree.php:158
    +msgid "modules"
    +msgstr ""
    +
    +#: ../../godmode/setup/license.php:138
    +#: ../../include/class/Diagnostics.class.php:1164
    +msgid "Current Platform Count"
    +msgstr ""
    +
    +#: ../../godmode/setup/license.php:141
    +#: ../../include/class/Diagnostics.class.php:1168
    +msgid "Current Platform Count (enabled: items)"
    +msgstr ""
    +
    +#: ../../godmode/setup/license.php:144
    +#: ../../include/class/Diagnostics.class.php:1172
    +msgid "Current Platform Count (disabled: items)"
    +msgstr ""
    +
    +#: ../../godmode/setup/license.php:147
    +#: ../../include/class/Diagnostics.class.php:1176
    +msgid "License Mode"
    +msgstr ""
    +
    +#: ../../godmode/setup/license.php:150
    +msgid "NMS"
    +msgstr ""
    +
    +#: ../../godmode/setup/license.php:156
    +#: ../../include/class/Diagnostics.class.php:1188
    +msgid "Licensed to"
    +msgstr ""
    +
    +#: ../../godmode/setup/license.php:167 ../../godmode/setup/license.php:182
    +msgid "Request new license"
    +msgstr ""
    +
    +#: ../../godmode/setup/license.php:186
    +#, php-format
    +msgid "To get your %s Enterprise License:"
    +msgstr ""
    +
    +#: ../../godmode/setup/license.php:189
    +#, php-format
    +msgid "Go to %s"
    +msgstr ""
    +
    +#: ../../godmode/setup/license.php:192
    +msgid "Enter the auth key and the following request key:"
    +msgstr ""
    +
    +#: ../../godmode/setup/license.php:198
    +msgid "Enter your name (or a company name) and a contact email address."
    +msgstr ""
    +
    +#: ../../godmode/setup/license.php:201
    +msgid "Click on Generate."
    +msgstr ""
    +
    +#: ../../godmode/setup/license.php:204
    +msgid ""
    +"Click here, enter "
    +"the generated license key and click on Validate."
    +msgstr ""
    +
    +#: ../../godmode/setup/news.php:29
    +msgid "Site news management"
    +msgstr ""
    +
    +#: ../../godmode/setup/news.php:152 ../../godmode/setup/links.php:92
    +msgid "Name error"
    +msgstr ""
    +
    +#: ../../godmode/setup/news.php:191
    +msgid "Modal screen"
    +msgstr ""
    +
    +#: ../../godmode/setup/news.php:194
    +msgid "Expire"
    +msgstr ""
    +
    +#: ../../godmode/setup/news.php:197 ../../godmode/setup/news.php:250
    +msgid "Expiration"
    +msgstr ""
    +
    +#: ../../godmode/setup/news.php:241
    +msgid "There are no defined news"
    +msgstr ""
    +
    +#: ../../godmode/setup/news.php:248
    +#: ../../operation/agentes/estado_generalagente.php:642
    +msgid "Author"
    +msgstr ""
    +
    +#: ../../godmode/setup/news.php:268
    +msgid "Modal"
    +msgstr ""
    +
    +#: ../../godmode/setup/news.php:270
    +msgid "Board"
    +msgstr ""
    +
    +#: ../../godmode/setup/news.php:281
    +msgid "Expired"
    +msgstr ""
    +
    +#: ../../godmode/setup/gis.php:68
    +msgid "Map connection name"
    +msgstr ""
    +
    +#: ../../godmode/setup/gis.php:86
    +msgid "Do you wan delete this connection?"
    +msgstr ""
    +
    +#: ../../godmode/setup/setup.php:216
    +msgid "Websocket engine"
    +msgstr ""
    +
    +#: ../../godmode/setup/setup.php:234
    +msgid "GIS Map connection"
    +msgstr ""
    +
    +#: ../../godmode/setup/setup.php:305
    +msgid "Pandora Websocket Engine"
    +msgstr ""
    +
    +#: ../../godmode/setup/setup.php:349
    +msgid "Correct update the setup options"
    +msgstr ""
    +
    +#: ../../godmode/setup/setup_ehorus.php:58
    +#: ../../include/functions_config.php:1653
    +msgid "Enable eHorus"
    +msgstr ""
    +
    +#: ../../godmode/setup/setup_ehorus.php:93
    +msgid "API Hostname"
    +msgstr ""
    +
    +#: ../../godmode/setup/setup_ehorus.php:99
    +msgid "API Port"
    +msgstr ""
    +
    +#: ../../godmode/setup/setup_ehorus.php:105
    +#: ../../godmode/setup/setup_integria.php:309
    +msgid "Request timeout"
    +msgstr ""
    +
    +#: ../../godmode/setup/setup_ehorus.php:139
    +msgid "Remote Management System"
    +msgstr ""
    +
    +#: ../../godmode/setup/setup_ehorus.php:147
    +msgid "Custom field eHorusID created"
    +msgstr ""
    +
    +#: ../../godmode/setup/setup_ehorus.php:147
    +msgid "Error creating custom field"
    +msgstr ""
    +
    +#: ../../godmode/setup/setup_ehorus.php:151
    +msgid "eHorus has his own agent identifiers"
    +msgstr ""
    +
    +#: ../../godmode/setup/setup_ehorus.php:152
    +msgid "To store them, it will be necessary to use an agent custom field"
    +msgstr ""
    +
    +#: ../../godmode/setup/setup_ehorus.php:153
    +msgid ""
    +"Possibly the eHorus id will have to be filled in by hand for every agent"
    +msgstr ""
    +
    +#: ../../godmode/setup/setup_ehorus.php:158
    +msgid "The custom field does not exists already"
    +msgstr ""
    +
    +#: ../../godmode/setup/setup_ehorus.php:172
    +msgid "eHorus API"
    +msgstr ""
    +
    +#: ../../godmode/setup/setup_ehorus.php:254
    +#: ../../godmode/setup/setup_integria.php:719
    +msgid "Connection timeout"
    +msgstr ""
    +
    +#: ../../godmode/setup/setup_ehorus.php:255
    +#: ../../godmode/setup/setup_integria.php:720
    +#: ../../godmode/setup/setup_integria.php:801
    +#: ../../operation/users/user_edit.php:1243
    +#: ../../operation/users/user_edit.php:1321
    +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:1244
    +#: ../../operation/users/user_edit.php:1322
    +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:1245
    +#: ../../operation/users/user_edit.php:1323
    +msgid "Invalid password"
    +msgstr ""
    +
    +#: ../../godmode/setup/setup_websocket_engine.php:38
    +msgid "WebSocket settings"
    +msgstr ""
    +
    +#: ../../godmode/setup/setup_websocket_engine.php:47
    +msgid "Bind address"
    +msgstr ""
    +
    +#: ../../godmode/setup/setup_websocket_engine.php:57
    +msgid "Bind port"
    +msgstr ""
    +
    +#: ../../godmode/setup/setup_websocket_engine.php:67
    +#: ../../include/functions_config.php:1805
    +msgid "WebSocket proxy url"
    +msgstr ""
    +
    +#: ../../godmode/setup/os.list.php:56
    +#, php-format
    +msgid ""
    +"This node is configured with centralized mode. All OS definitions are read "
    +"only. Go to %s to manage them."
    +msgstr ""
    +
    +#: ../../godmode/setup/os.list.php:141
    +msgid "There are no defined operating systems"
    +msgstr ""
    +
    +#: ../../godmode/setup/os.list.php:147
    +msgid "Create OS"
    +msgstr ""
    +
    +#: ../../godmode/setup/os.php:190
    +msgid "List OS"
    +msgstr ""
    +
    +#: ../../godmode/setup/os.php:202
    +msgid "Builder OS"
    +msgstr ""
    +
    +#: ../../godmode/setup/os.php:211
    +msgid "List of OS"
    +msgstr ""
    +
    +#: ../../godmode/setup/os.php:238 ../../include/functions_api.php:2008
    +msgid "Success creating OS"
    +msgstr ""
    +
    +#: ../../godmode/setup/os.php:242
    +msgid "Fail creating OS"
    +msgstr ""
    +
    +#: ../../godmode/setup/os.php:246 ../../include/functions_api.php:2047
    +msgid "Success updating OS"
    +msgstr ""
    +
    +#: ../../godmode/setup/os.php:250
    +msgid "Error updating OS"
    +msgstr ""
    +
    +#: ../../godmode/setup/os.php:254
    +msgid "There are agents with this OS."
    +msgstr ""
    +
    +#: ../../godmode/setup/os.php:258
    +msgid "Success deleting"
    +msgstr ""
    +
    +#: ../../godmode/setup/os.php:262
    +msgid "Error deleting"
    +msgstr ""
    +
    +#: ../../godmode/setup/gis_step_2.php:37
    +msgid "GIS Maps connections"
    +msgstr ""
    +
    +#: ../../godmode/setup/gis_step_2.php:54
    +msgid "Create new map connection"
    +msgstr ""
    +
    +#: ../../godmode/setup/gis_step_2.php:81
    +msgid "Edit map connection"
    +msgstr ""
    +
    +#: ../../godmode/setup/gis_step_2.php:213
    +msgid "Connection Name"
    +msgstr ""
    +
    +#: ../../godmode/setup/gis_step_2.php:219
    +msgid "Number of zoom levels"
    +msgstr ""
    +
    +#: ../../godmode/setup/gis_step_2.php:223
    +msgid "Default zoom level"
    +msgstr ""
    +
    +#: ../../godmode/setup/gis_step_2.php:226
    +msgid "Basic configuration"
    +msgstr ""
    +
    +#: ../../godmode/setup/gis_step_2.php:231
    +msgid "Open Street Maps"
    +msgstr ""
    +
    +#: ../../godmode/setup/gis_step_2.php:232
    +msgid "Google Maps"
    +msgstr ""
    +
    +#: ../../godmode/setup/gis_step_2.php:233
    +#: ../../godmode/reporting/visual_console_builder.elements.php:183
    +#: ../../include/functions_visual_map_editor.php:1387
    +#: ../../include/functions_visual_map.php:4244
    +#: ../../operation/visual_console/view.php:296
    +msgid "Static Image"
    +msgstr ""
    +
    +#: ../../godmode/setup/gis_step_2.php:234
    +msgid "WMS Server"
    +msgstr ""
    +
    +#: ../../godmode/setup/gis_step_2.php:236
    +msgid "Please select the connection type"
    +msgstr ""
    +
    +#: ../../godmode/setup/gis_step_2.php:238
    +msgid "Map connection type"
    +msgstr ""
    +
    +#: ../../godmode/setup/gis_step_2.php:286
    +msgid "Tile Server URL"
    +msgstr ""
    +
    +#: ../../godmode/setup/gis_step_2.php:299
    +msgid "Google Physical"
    +msgstr ""
    +
    +#: ../../godmode/setup/gis_step_2.php:300
    +msgid "Google Hybrid"
    +msgstr ""
    +
    +#: ../../godmode/setup/gis_step_2.php:301
    +msgid "Google Satelite"
    +msgstr ""
    +
    +#: ../../godmode/setup/gis_step_2.php:303
    +msgid "Google Map Type"
    +msgstr ""
    +
    +#: ../../godmode/setup/gis_step_2.php:327
    +msgid "Google Maps Key"
    +msgstr ""
    +
    +#: ../../godmode/setup/gis_step_2.php:336
    +msgid "Image URL"
    +msgstr ""
    +
    +#: ../../godmode/setup/gis_step_2.php:343
    +msgid "Corners of the area of the image"
    +msgstr ""
    +
    +#: ../../godmode/setup/gis_step_2.php:343
    +#: ../../include/rest-api/models/VisualConsole/Item.php:1960
    +msgid "Left"
    +msgstr ""
    +
    +#: ../../godmode/setup/gis_step_2.php:350
    +#: ../../include/rest-api/models/VisualConsole/Item.php:1957
    +#: ../../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:357
    +#: ../../include/rest-api/models/VisualConsole/Item.php:1959
    +msgid "Right"
    +msgstr ""
    +
    +#: ../../godmode/setup/gis_step_2.php:364
    +#: ../../include/rest-api/models/VisualConsole/Item.php:1958
    +msgid "Top"
    +msgstr ""
    +
    +#: ../../godmode/setup/gis_step_2.php:371
    +msgid "Image Size"
    +msgstr ""
    +
    +#: ../../godmode/setup/gis_step_2.php:388
    +msgid "WMS Server URL"
    +msgstr ""
    +
    +#: ../../godmode/setup/gis_step_2.php:430
    +msgid ""
    +"Preview to select the center of the map and the default position of an agent "
    +"without gis data"
    +msgstr ""
    +
    +#: ../../godmode/setup/gis_step_2.php:431
    +msgid "Load preview map"
    +msgstr ""
    +
    +#: ../../godmode/setup/gis_step_2.php:440
    +msgid "Map Center"
    +msgstr ""
    +
    +#: ../../godmode/setup/gis_step_2.php:441
    +msgid "Default position for agents without GIS data"
    +msgstr ""
    +
    +#: ../../godmode/setup/gis_step_2.php:443
    +msgid "Change in the map"
    +msgstr ""
    +
    +#: ../../godmode/setup/gis_step_2.php:465
    +#: ../../operation/agentes/gis_view.php:218
    +msgid "Latitude"
    +msgstr ""
    +
    +#: ../../godmode/setup/gis_step_2.php:483
    +#: ../../operation/agentes/gis_view.php:217
    +msgid "Longitude"
    +msgstr ""
    +
    +#: ../../godmode/setup/gis_step_2.php:501
    +#: ../../operation/agentes/gis_view.php:219
    +msgid "Altitude"
    +msgstr ""
    +
    +#: ../../godmode/setup/gis_step_2.php:564
    +#: ../../godmode/setup/gis_step_2.php:659
    +msgid "Center"
    +msgstr ""
    +
    +#: ../../godmode/setup/gis_step_2.php:624
    +msgid "Refresh preview map"
    +msgstr ""
    +
    +#: ../../godmode/setup/setup_auth.php:207
    +msgid "Enable secondary LDAP"
    +msgstr ""
    +
    +#: ../../godmode/setup/setup_auth.php:278
    +msgid "Secondary Base DN"
    +msgstr ""
    +
    +#: ../../godmode/setup/setup_auth.php:291
    +msgid "Secondary Login attribute"
    +msgstr ""
    +
    +#: ../../godmode/setup/setup_auth.php:368
    +msgid "Force 2FA for all users is enabled"
    +msgstr ""
    +
    +#: ../../godmode/setup/setup_auth.php:389
    +msgid "Session timeout (mins)"
    +msgstr ""
    +
    +#: ../../godmode/setup/setup_auth.php:432
    +#, php-format
    +msgid "Local %s"
    +msgstr ""
    +
    +#: ../../godmode/setup/setup_auth.php:433
    +msgid "ldap"
    +msgstr ""
    +
    +#: ../../godmode/setup/setup_integria.php:64
    +#: ../../operation/incidents/configure_integriaims_incident.php:41
    +#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:31
    +#: ../../operation/incidents/list_integriaims_incidents.php:42
    +msgid "Integria IMS API is not reachable"
    +msgstr ""
    +
    +#: ../../godmode/setup/setup_integria.php:261
    +#: ../../include/functions_config.php:1691
    +msgid "Enable Integria IMS"
    +msgstr ""
    +
    +#: ../../godmode/setup/setup_integria.php:296
    +msgid "URL to Integria IMS setup"
    +msgstr ""
    +
    +#: ../../godmode/setup/setup_integria.php:296
    +msgid ""
    +"Full URL to your Integria IMS setup (e.g., http://192.168.1.20/integria, "
    +"https://support.mycompany.com)."
    +msgstr ""
    +
    +#: ../../godmode/setup/setup_integria.php:302
    +msgid "API Password"
    +msgstr ""
    +
    +#: ../../godmode/setup/setup_integria.php:315
    +msgid "Sync inventory"
    +msgstr ""
    +
    +#: ../../godmode/setup/setup_integria.php:348
    +#: ../../godmode/setup/setup_integria.php:469
    +msgid "Ticket body"
    +msgstr ""
    +
    +#: ../../godmode/setup/setup_integria.php:603
    +msgid "Integria API settings"
    +msgstr ""
    +
    +#: ../../godmode/setup/setup_integria.php:614
    +msgid "Alert default values"
    +msgstr ""
    +
    +#: ../../godmode/setup/setup_integria.php:624
    +msgid "Event custom response default values"
    +msgstr ""
    +
    +#: ../../godmode/setup/links.php:28
    +msgid "Link management"
    +msgstr ""
    +
    +#: ../../godmode/setup/snmp_wizard.php:155
    +msgid "Unsucessful update the snmp translation"
    +msgstr ""
    +
    +#: ../../godmode/setup/snmp_wizard.php:162
    +msgid "Unsucessful update the snmp translation."
    +msgstr ""
    +
    +#: ../../godmode/setup/snmp_wizard.php:210
    +msgid "Unsucessful delete the snmp translation"
    +msgstr ""
    +
    +#: ../../godmode/setup/snmp_wizard.php:217
    +msgid "Unsucessful delete the snmp translation."
    +msgstr ""
    +
    +#: ../../godmode/setup/snmp_wizard.php:278
    +msgid "Unsucessful save the snmp translation"
    +msgstr ""
    +
    +#: ../../godmode/setup/snmp_wizard.php:287
    +msgid "Unsucessful save the snmp translation."
    +msgstr ""
    +
    +#: ../../godmode/setup/setup_netflow.php:47
    +#: ../../include/functions_config.php:1461
    +msgid "Data storage path"
    +msgstr ""
    +
    +#: ../../godmode/setup/setup_netflow.php:50
    +#: ../../include/functions_config.php:1465
    +msgid "Daemon interval"
    +msgstr ""
    +
    +#: ../../godmode/setup/setup_netflow.php:53
    +#: ../../include/functions_config.php:1469
    +msgid "Daemon binary path"
    +msgstr ""
    +
    +#: ../../godmode/setup/setup_netflow.php:56
    +#: ../../include/functions_config.php:1473
    +msgid "Nfdump binary path"
    +msgstr ""
    +
    +#: ../../godmode/setup/setup_netflow.php:59
    +#: ../../include/functions_config.php:1477
    +msgid "Nfexpire binary path"
    +msgstr ""
    +
    +#: ../../godmode/setup/setup_netflow.php:62
    +#: ../../include/functions_config.php:1481
    +msgid "Maximum chart resolution"
    +msgstr ""
    +
    +#: ../../godmode/setup/setup_netflow.php:67
    +#: ../../include/functions_config.php:1489
    +msgid "Netflow max lifetime"
    +msgstr ""
    +
    +#: ../../godmode/setup/setup_netflow.php:70
    +#: ../../include/functions_config.php:1493
    +msgid "Name resolution for IP address"
    +msgstr ""
    +
    +#: ../../godmode/setup/setup_netflow.php:71
    +#: ../../operation/netflow/nf_live_view.php:459
    +msgid "IP address resolution can take a lot of time"
    +msgstr ""
    +
    +#: ../../godmode/setup/setup_visuals.php:79
    +msgid "Paginated module view"
    +msgstr ""
    +
    +#: ../../godmode/setup/setup_visuals.php:106
    +msgid "Click to display lateral menus"
    +msgstr ""
    +
    +#: ../../godmode/setup/setup_visuals.php:116
    +#: ../../include/functions_config.php:1286
    +msgid "Service label font size"
    +msgstr ""
    +
    +#: ../../godmode/setup/setup_visuals.php:120
    +msgid "Space between items in Service maps"
    +msgstr ""
    +
    +#: ../../godmode/setup/setup_visuals.php:137
    +#: ../../include/functions_config.php:993
    +msgid "Style template"
    +msgstr ""
    +
    +#: ../../godmode/setup/setup_visuals.php:150
    +#: ../../include/functions_config.php:1013
    +msgid "Status icon set"
    +msgstr ""
    +
    +#: ../../godmode/setup/setup_visuals.php:151
    +msgid "Colors"
    +msgstr ""
    +
    +#: ../../godmode/setup/setup_visuals.php:152
    +msgid "Faces"
    +msgstr ""
    +
    +#: ../../godmode/setup/setup_visuals.php:153
    +msgid "Colors and text"
    +msgstr ""
    +
    +#: ../../godmode/setup/setup_visuals.php:176
    +#: ../../include/functions_config.php:1089
    +msgid "Login background"
    +msgstr ""
    +
    +#: ../../godmode/setup/setup_visuals.php:394
    +#: ../../include/functions_config.php:1049
    +msgid "Custom documentation logo"
    +msgstr ""
    +
    +#: ../../godmode/setup/setup_visuals.php:414
    +#: ../../include/functions_config.php:1053
    +msgid "Custom support logo"
    +msgstr ""
    +
    +#: ../../godmode/setup/setup_visuals.php:433
    +#: ../../include/functions_config.php:1057
    +#: ../../include/functions_config.php:1061
    +msgid "Custom networkmap center logo"
    +msgstr ""
    +
    +#: ../../godmode/setup/setup_visuals.php:452
    +msgid "Custom mobile console icon"
    +msgstr ""
    +
    +#: ../../godmode/setup/setup_visuals.php:520
    +msgid "Disable logo in graphs"
    +msgstr ""
    +
    +#: ../../godmode/setup/setup_visuals.php:536
    +msgid "Disable helps"
    +msgstr ""
    +
    +#: ../../godmode/setup/setup_visuals.php:545
    +#: ../../include/functions_config.php:1225
    +msgid "Fixed header"
    +msgstr ""
    +
    +#: ../../godmode/setup/setup_visuals.php:556
    +msgid "Automatically hide submenu"
    +msgstr ""
    +
    +#: ../../godmode/setup/setup_visuals.php:584
    +#: ../../include/functions_config.php:1197
    +msgid "GIS Labels"
    +msgstr ""
    +
    +#: ../../godmode/setup/setup_visuals.php:599
    +#: ../../include/functions_config.php:1205
    +msgid "Default icon in GIS"
    +msgstr ""
    +
    +#: ../../godmode/setup/setup_visuals.php:605
    +msgid "Agent icon group"
    +msgstr ""
    +
    +#: ../../godmode/setup/setup_visuals.php:623
    +msgid "Graphs font size"
    +msgstr ""
    +
    +#: ../../godmode/setup/setup_visuals.php:654
    +#: ../../include/functions_config.php:1173
    +#: ../../include/functions_config.php:1177
    +msgid "Agent size text"
    +msgstr ""
    +
    +#: ../../godmode/setup/setup_visuals.php:655
    +#: ../../godmode/setup/setup_visuals.php:660
    +msgid "Small:"
    +msgstr ""
    +
    +#: ../../godmode/setup/setup_visuals.php:656
    +#: ../../godmode/setup/setup_visuals.php:661
    +msgid "Normal:"
    +msgstr ""
    +
    +#: ../../godmode/setup/setup_visuals.php:659
    +#: ../../include/functions_config.php:1181
    +msgid "Module size text"
    +msgstr ""
    +
    +#: ../../godmode/setup/setup_visuals.php:664
    +#: ../../include/functions_config.php:1185
    +#: ../../include/functions_config.php:1189
    +msgid "Description size text"
    +msgstr ""
    +
    +#: ../../godmode/setup/setup_visuals.php:668
    +#: ../../include/functions_config.php:1193
    +msgid "Item title size text"
    +msgstr ""
    +
    +#: ../../godmode/setup/setup_visuals.php:679
    +msgid "Show unit along with value in reports"
    +msgstr ""
    +
    +#: ../../godmode/setup/setup_visuals.php:732
    +#: ../../include/functions_config.php:952
    +msgid "Graph color #4"
    +msgstr ""
    +
    +#: ../../godmode/setup/setup_visuals.php:743
    +#: ../../include/functions_config.php:956
    +msgid "Graph color #5"
    +msgstr ""
    +
    +#: ../../godmode/setup/setup_visuals.php:754
    +#: ../../include/functions_config.php:960
    +msgid "Graph color #6"
    +msgstr ""
    +
    +#: ../../godmode/setup/setup_visuals.php:765
    +#: ../../include/functions_config.php:964
    +msgid "Graph color #7"
    +msgstr ""
    +
    +#: ../../godmode/setup/setup_visuals.php:776
    +#: ../../include/functions_config.php:968
    +msgid "Graph color #8"
    +msgstr ""
    +
    +#: ../../godmode/setup/setup_visuals.php:787
    +#: ../../include/functions_config.php:972
    +msgid "Graph color #9"
    +msgstr ""
    +
    +#: ../../godmode/setup/setup_visuals.php:798
    +#: ../../include/functions_config.php:976
    +msgid "Graph color #10"
    +msgstr ""
    +
    +#: ../../godmode/setup/setup_visuals.php:825
    +msgid "Data precision"
    +msgstr ""
    +
    +#: ../../godmode/setup/setup_visuals.php:843
    +msgid "Data precision in graphs"
    +msgstr ""
    +
    +#: ../../godmode/setup/setup_visuals.php:858
    +#: ../../include/functions_config.php:1253
    +msgid "Default line thickness for the Custom Graph."
    +msgstr ""
    +
    +#: ../../godmode/setup/setup_visuals.php:919
    +msgid "Type of interface charts"
    +msgstr ""
    +
    +#: ../../godmode/setup/setup_visuals.php:947
    +msgid "Graph TIP view:"
    +msgstr ""
    +
    +#: ../../godmode/setup/setup_visuals.php:1070
    +msgid "Classic view"
    +msgstr ""
    +
    +#: ../../godmode/setup/setup_visuals.php:1071
    +msgid "View of favorites"
    +msgstr ""
    +
    +#: ../../godmode/setup/setup_visuals.php:1072
    +msgid "Type of view of visual consoles"
    +msgstr ""
    +
    +#: ../../godmode/setup/setup_visuals.php:1084
    +msgid "Number of favorite visual consoles to show in the menu"
    +msgstr ""
    +
    +#: ../../godmode/setup/setup_visuals.php:1088
    +#: ../../include/functions_config.php:1161
    +msgid "Default line thickness for the Visual Console"
    +msgstr ""
    +
    +#: ../../godmode/setup/setup_visuals.php:1118
    +msgid "Number of favorite services to show in the menu"
    +msgstr ""
    +
    +#: ../../godmode/setup/setup_visuals.php:1195
    +msgid ""
    +"The dir of custom logos is in your www Console in 'images/custom_logo'. You "
    +"can upload more files (ONLY JPEG AND PNG) in upload tool in console."
    +msgstr ""
    +
    +#: ../../godmode/setup/setup_visuals.php:1281
    +#: ../../include/functions_config.php:1237
    +msgid "Networkmap max width"
    +msgstr ""
    +
    +#: ../../godmode/setup/setup_visuals.php:1301
    +msgid "Show empty groups in group view"
    +msgstr ""
    +
    +#: ../../godmode/setup/setup_visuals.php:1341
    +msgid "Custom values post process"
    +msgstr ""
    +
    +#: ../../godmode/setup/setup_visuals.php:1362
    +#: ../../godmode/setup/setup_visuals.php:1430
    +msgid "Delete custom values"
    +msgstr ""
    +
    +#: ../../godmode/setup/setup_visuals.php:1394
    +msgid "Interval values"
    +msgstr ""
    +
    +#: ../../godmode/setup/setup_visuals.php:1422
    +msgid "Module units"
    +msgstr ""
    +
    +#: ../../godmode/setup/setup_visuals.php:1538
    +msgid "Behaviour configuration"
    +msgstr ""
    +
    +#: ../../godmode/setup/setup_visuals.php:1543
    +msgid "GIS configuration"
    +msgstr ""
    +
    +#: ../../godmode/setup/setup_visuals.php:1548
    +msgid "Style configuration"
    +msgstr ""
    +
    +#: ../../godmode/setup/setup_visuals.php:1553
    +msgid "Charts configuration"
    +msgstr ""
    +
    +#: ../../godmode/setup/setup_visuals.php:1558
    +msgid "Font and Text configuration"
    +msgstr ""
    +
    +#: ../../godmode/setup/setup_visuals.php:1563
    +msgid "Visual consoles configuration"
    +msgstr ""
    +
    +#: ../../godmode/setup/setup_visuals.php:1568
    +msgid "Reports configuration "
    +msgstr ""
    +
    +#: ../../godmode/setup/setup_visuals.php:1573
    +msgid "Services configuration"
    +msgstr ""
    +
    +#: ../../godmode/setup/setup_visuals.php:1578
    +msgid "Other configuration"
    +msgstr ""
    +
    +#: ../../godmode/setup/setup_visuals.php:1855
    +msgid "Mobile console logo preview"
    +msgstr ""
    +
    +#: ../../godmode/setup/setup_visuals.php:1890
    +msgid "Gis icons preview"
    +msgstr ""
    +
    +#: ../../godmode/setup/setup_visuals.php:1956
    +msgid "Status set preview"
    +msgstr ""
    +
    +#: ../../godmode/setup/setup_general.php:77
    +#: ../../include/functions_register.php:122
    +msgid "Language code"
    +msgstr ""
    +
    +#: ../../godmode/setup/setup_general.php:137
    +#: ../../include/functions_config.php:198
    +msgid "Automatic check for updates"
    +msgstr ""
    +
    +#: ../../godmode/setup/setup_general.php:145
    +msgid "Enforce https Information"
    +msgstr ""
    +
    +#: ../../godmode/setup/setup_general.php:146
    +msgid "If SSL is not properly configured you will lose access to "
    +msgstr ""
    +
    +#: ../../godmode/setup/setup_general.php:146
    +#: ../../godmode/setup/setup_general.php:340
    +msgid " Console"
    +msgstr ""
    +
    +#: ../../godmode/setup/setup_general.php:160
    +msgid "Use cert of SSL"
    +msgstr ""
    +
    +#: ../../godmode/setup/setup_general.php:173
    +msgid "Path of SSL Cert."
    +msgstr ""
    +
    +#: ../../godmode/setup/setup_general.php:223
    +#: ../../include/functions_config.php:238
    +msgid "Enable GIS features"
    +msgstr ""
    +
    +#: ../../godmode/setup/setup_general.php:231
    +#: ../../include/functions_config.php:254
    +msgid "Enable Netflow"
    +msgstr ""
    +
    +#: ../../godmode/setup/setup_general.php:338
    +msgid "Enforce public URL usage information"
    +msgstr ""
    +
    +#: ../../godmode/setup/setup_general.php:340
    +msgid "If public URL is not properly configured you will lose access to "
    +msgstr ""
    +
    +#: ../../godmode/setup/setup_general.php:353
    +#: ../../include/functions_config.php:302
    +msgid "Referer security"
    +msgstr ""
    +
    +#: ../../godmode/setup/setup_general.php:361
    +#: ../../include/functions_config.php:306
    +msgid "Event storm protection"
    +msgstr ""
    +
    +#: ../../godmode/setup/setup_general.php:378
    +msgid "Change remote config encoding"
    +msgstr ""
    +
    +#: ../../godmode/setup/setup_general.php:386
    +#: ../../include/functions_config.php:318
    +msgid "Server logs directory"
    +msgstr ""
    +
    +#: ../../godmode/setup/setup_general.php:396
    +#: ../../include/functions_config.php:322
    +msgid "Log size limit in system logs viewer extension"
    +msgstr ""
    +
    +#: ../../godmode/setup/setup_general.php:407
    +msgid "Full mode"
    +msgstr ""
    +
    +#: ../../godmode/setup/setup_general.php:409
    +msgid "Expert"
    +msgstr ""
    +
    +#: ../../godmode/setup/setup_general.php:411
    +#: ../../include/functions_config.php:326
    +msgid "Tutorial mode"
    +msgstr ""
    +
    +#: ../../godmode/setup/setup_general.php:425
    +#: ../../include/functions_config.php:330
    +msgid "Allow create scheduled downtimes in the past"
    +msgstr ""
    +
    +#: ../../godmode/setup/setup_general.php:433
    +msgid "Limit for bulk operations"
    +msgstr ""
    +
    +#: ../../godmode/setup/setup_general.php:443
    +msgid "Include agents manually disabled"
    +msgstr ""
    +
    +#: ../../godmode/setup/setup_general.php:451
    +msgid "Set alias as name by default in agent creation"
    +msgstr ""
    +
    +#: ../../godmode/setup/setup_general.php:468
    +#: ../../godmode/setup/setup_general.php:479
    +msgid "Log location"
    +msgstr ""
    +
    +#: ../../godmode/setup/setup_general.php:489
    +msgid "Module custom ID readonly"
    +msgstr ""
    +
    +#: ../../godmode/setup/setup_general.php:490
    +msgid "Useful for integrations"
    +msgstr ""
    +
    +#: ../../godmode/setup/setup_general.php:503
    +msgid "General options"
    +msgstr ""
    +
    +#: ../../godmode/setup/setup_general.php:522
    +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 587.\n"
    +"\n"
    +"    If you have manual settings in your pandora_server.conf, please note "
    +"these settings will ignore this console setup."
    +msgstr ""
    +
    +#: ../../godmode/setup/setup_general.php:528
    +msgid "From address"
    +msgstr ""
    +
    +#: ../../godmode/setup/setup_general.php:548
    +msgid "SMTP Server"
    +msgstr ""
    +
    +#: ../../godmode/setup/setup_general.php:558
    +msgid "SMTP Port"
    +msgstr ""
    +
    +#: ../../godmode/setup/setup_general.php:568
    +#: ../../include/functions_config.php:382
    +msgid "Encryption"
    +msgstr ""
    +
    +#: ../../godmode/setup/setup_general.php:608
    +msgid "Email test"
    +msgstr ""
    +
    +#: ../../godmode/setup/setup_general.php:660 ../../general/header.php:813
    +msgid "Send"
    +msgstr ""
    +
    +#: ../../godmode/setup/setup_general.php:670
    +msgid "Check mail configuration"
    +msgstr ""
    +
    +#: ../../godmode/setup/performance.php:181
    +msgid "Pandora_db running in active database."
    +msgstr ""
    +
    +#: ../../godmode/setup/performance.php:182
    +#: ../../godmode/setup/performance.php:238
    +msgid "Executed:"
    +msgstr ""
    +
    +#: ../../godmode/setup/performance.php:237
    +msgid "Pandora_db running in historical database."
    +msgstr ""
    +
    +#: ../../godmode/setup/performance.php:245
    +msgid "not executed"
    +msgstr ""
    +
    +#: ../../godmode/setup/performance.php:273
    +#: ../../include/functions_config.php:792
    +msgid "Max. days before delete traps"
    +msgstr ""
    +
    +#: ../../godmode/setup/performance.php:293
    +#: ../../godmode/setup/performance.php:459
    +#: ../../include/functions_config.php:796
    +msgid "Max. days before delete string data"
    +msgstr ""
    +
    +#: ../../godmode/setup/performance.php:303
    +#: ../../include/functions_config.php:804
    +msgid "Max. days before delete GIS data"
    +msgstr ""
    +
    +#: ../../godmode/setup/performance.php:313
    +#: ../../godmode/setup/performance.php:419
    +#: ../../include/functions_config.php:808
    +msgid "Max. days before purge"
    +msgstr ""
    +
    +#: ../../godmode/setup/performance.php:323
    +#: ../../godmode/setup/performance.php:429
    +#: ../../include/functions_config.php:816
    +msgid "Max. days before compact data"
    +msgstr ""
    +
    +#: ../../godmode/setup/performance.php:333
    +#: ../../include/functions_config.php:812
    +msgid "Max. days before delete unknown modules"
    +msgstr ""
    +
    +#: ../../godmode/setup/performance.php:343
    +msgid "Max. days before delete autodisabled agents"
    +msgstr ""
    +
    +#: ../../godmode/setup/performance.php:353
    +#: ../../include/functions_config.php:864
    +msgid "Retention period of past special days"
    +msgstr ""
    +
    +#: ../../godmode/setup/performance.php:377
    +#: ../../include/functions_config.php:873
    +msgid "Max. days before delete inventory data"
    +msgstr ""
    +
    +#: ../../godmode/setup/performance.php:439
    +#: ../../godmode/setup/performance.php:520
    +#: ../../include/functions_config.php:828
    +msgid "Compact interpolation in hours (1 Fine-20 bad)"
    +msgstr ""
    +
    +#: ../../godmode/setup/performance.php:477
    +#: ../../include/functions_config.php:878
    +msgid "Max. days before delete old messages"
    +msgstr ""
    +
    +#: ../../godmode/setup/performance.php:490
    +#: ../../include/functions_config.php:882
    +msgid "Max. days before delete old network matrix data"
    +msgstr ""
    +
    +#: ../../godmode/setup/performance.php:510
    +msgid "Item limit for realtime reports"
    +msgstr ""
    +
    +#: ../../godmode/setup/performance.php:533
    +msgid "Last day"
    +msgstr ""
    +
    +#: ../../godmode/setup/performance.php:535
    +msgid "10 days"
    +msgstr ""
    +
    +#: ../../godmode/setup/performance.php:537
    +msgid "2 weeks"
    +msgstr ""
    +
    +#: ../../godmode/setup/performance.php:550
    +#: ../../include/functions_config.php:836
    +msgid "Use realtime statistics"
    +msgstr ""
    +
    +#: ../../godmode/setup/performance.php:558
    +#: ../../include/functions_config.php:840
    +msgid "Batch statistics period (secs)"
    +msgstr ""
    +
    +#: ../../godmode/setup/performance.php:571
    +#: ../../include/functions_config.php:848
    +msgid "Max. recommended number of files in attachment directory"
    +msgstr ""
    +
    +#: ../../godmode/setup/performance.php:581
    +#: ../../include/functions_config.php:852
    +msgid "Delete not init modules"
    +msgstr ""
    +
    +#: ../../godmode/setup/performance.php:584
    +msgid "Big Operation Step to purge old data"
    +msgstr ""
    +
    +#: ../../godmode/setup/performance.php:594
    +#: ../../include/functions_config.php:860
    +msgid "Small Operation Step to purge old data"
    +msgstr ""
    +
    +#: ../../godmode/setup/performance.php:604
    +#: ../../include/functions_config.php:886
    +msgid "Graph container - Max. Items"
    +msgstr ""
    +
    +#: ../../godmode/setup/performance.php:634
    +msgid "SNMP walk binary"
    +msgstr ""
    +
    +#: ../../godmode/setup/performance.php:645
    +msgid ""
    +"SNMP bulk walk is not able to request V1 SNMP, this option will be used "
    +"instead (by default snmpwalk, slower)."
    +msgstr ""
    +
    +#: ../../godmode/setup/performance.php:648
    +msgid "SNMP walk binary (fallback)"
    +msgstr ""
    +
    +#: ../../godmode/setup/performance.php:666
    +msgid "WMI binary"
    +msgstr ""
    +
    +#: ../../godmode/setup/performance.php:701
    +msgid "Database maintenance options"
    +msgstr ""
    +
    +#: ../../godmode/setup/performance.php:707
    +msgid "Historical database maintenance options"
    +msgstr ""
    +
    +#: ../../godmode/setup/performance.php:713
    +#: ../../include/functions_visual_map.php:2874
    +#: ../../include/functions_netflow.php:2078
    +#: ../../operation/network/network_report.php:324
    +msgid "Others"
    +msgstr ""
    +
    +#: ../../godmode/setup/file_manager.php:83 ../../godmode/servers/plugin.php:235
    +#: ../../include/functions_filemanager.php:590
    +#, php-format
    +msgid "Index of %s"
    +msgstr ""
    +
    +#: ../../godmode/reporting/visual_console_builder.data.php:94
    +msgid "Create visual console"
    +msgstr ""
    +
    +#: ../../godmode/reporting/visual_console_builder.data.php:106
    +msgid ""
    +"Use [ or ( as first character, for example '[*] Map name', to render this "
    +"map name in main menu"
    +msgstr ""
    +
    +#: ../../godmode/reporting/visual_console_builder.data.php:169
    +#: ../../godmode/reporting/visual_console_builder.elements.php:151
    +#: ../../include/functions_visual_map_editor.php:55
    +#: ../../include/functions_visual_map_editor.php:632
    +#: ../../include/lib/Dashboard/Widget.php:566
    +msgid "Background"
    +msgstr ""
    +
    +#: ../../godmode/reporting/visual_console_builder.data.php:179
    +msgid "Background image"
    +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
    +msgid "Background color"
    +msgstr ""
    +
    +#: ../../godmode/reporting/visual_console_builder.data.php:211
    +msgid "Layout size"
    +msgstr ""
    +
    +#: ../../godmode/reporting/visual_console_builder.data.php:214
    +msgid "Set custom size"
    +msgstr ""
    +
    +#: ../../godmode/reporting/visual_console_builder.data.php:220
    +msgid "Get default image size"
    +msgstr ""
    +
    +#: ../../godmode/reporting/visual_console_builder.data.php:222
    +msgid "Favourite visual console"
    +msgstr ""
    +
    +#: ../../godmode/reporting/visual_console_builder.data.php:225
    +msgid "Auto adjust to screen in fullscreen"
    +msgstr ""
    +
    +#: ../../godmode/reporting/visual_console_builder.php:226
    +msgid "This file isn't image"
    +msgstr ""
    +
    +#: ../../godmode/reporting/visual_console_builder.php:229
    +msgid "This file isn't image."
    +msgstr ""
    +
    +#: ../../godmode/reporting/visual_console_builder.php:235
    +#: ../../godmode/reporting/visual_console_builder.php:238
    +msgid "File already are exists."
    +msgstr ""
    +
    +#: ../../godmode/reporting/visual_console_builder.php:246
    +#: ../../godmode/reporting/visual_console_builder.php:249
    +msgid "The file have not image extension."
    +msgstr ""
    +
    +#: ../../godmode/reporting/visual_console_builder.php:261
    +#: ../../godmode/reporting/visual_console_builder.php:264
    +#: ../../godmode/reporting/visual_console_builder.php:274
    +#: ../../godmode/reporting/visual_console_builder.php:280
    +msgid "Problems with move file to target."
    +msgstr ""
    +
    +#: ../../godmode/reporting/visual_console_builder.php:317
    +msgid "Successfully update."
    +msgstr ""
    +
    +#: ../../godmode/reporting/visual_console_builder.php:336
    +msgid "Could not be update."
    +msgstr ""
    +
    +#: ../../godmode/reporting/visual_console_builder.php:356
    +msgid "Successfully created."
    +msgstr ""
    +
    +#: ../../godmode/reporting/visual_console_builder.php:375
    +msgid "Could not be created."
    +msgstr ""
    +
    +#: ../../godmode/reporting/visual_console_builder.php:423
    +msgid "Successfully multiple delete."
    +msgstr ""
    +
    +#: ../../godmode/reporting/visual_console_builder.php:424
    +msgid "Unsuccessful multiple delete."
    +msgstr ""
    +
    +#: ../../godmode/reporting/visual_console_builder.php:544
    +msgid "Successfully delete."
    +msgstr ""
    +
    +#: ../../godmode/reporting/visual_console_builder.php:834
    +#: ../../operation/visual_console/view.php:178
    +#: ../../operation/visual_console/legacy_view.php:165
    +msgid "Services wizard"
    +msgstr ""
    +
    +#: ../../godmode/reporting/reporting_builder.list_items.php:706
    +#: ../../godmode/reporting/reporting_builder.list_items.php:710
    +#: ../../godmode/reporting/graph_builder.graph_editor.php:284
    +#: ../../godmode/reporting/graph_builder.graph_editor.php:288
    +msgid "Sort items"
    +msgstr ""
    +
    +#: ../../godmode/reporting/reporting_builder.list_items.php:713
    +msgid "Sort selected items from position: "
    +msgstr ""
    +
    +#: ../../godmode/reporting/reporting_builder.list_items.php:716
    +msgid "Move before to"
    +msgstr ""
    +
    +#: ../../godmode/reporting/reporting_builder.list_items.php:717
    +msgid "Move after to"
    +msgstr ""
    +
    +#: ../../godmode/reporting/reporting_builder.list_items.php:757
    +#: ../../godmode/reporting/reporting_builder.list_items.php:761
    +msgid "Delete items"
    +msgstr ""
    +
    +#: ../../godmode/reporting/reporting_builder.list_items.php:764
    +msgid "Delete selected items from position: "
    +msgstr ""
    +
    +#: ../../godmode/reporting/reporting_builder.list_items.php:767
    +msgid "Delete above to"
    +msgstr ""
    +
    +#: ../../godmode/reporting/reporting_builder.list_items.php:768
    +msgid "Delete below to"
    +msgstr ""
    +
    +#: ../../godmode/reporting/reporting_builder.list_items.php:824
    +msgid ""
    +"Are you sure to sort the items into the report?\\n. This action change the "
    +"sorting of items into data base."
    +msgstr ""
    +
    +#: ../../godmode/reporting/reporting_builder.list_items.php:844
    +#: ../../godmode/reporting/graph_builder.graph_editor.php:407
    +msgid "Please select any item to order"
    +msgstr ""
    +
    +#: ../../godmode/reporting/reporting_builder.list_items.php:874
    +msgid "Are you sure to delete the items into the report?\\n"
    +msgstr ""
    +
    +#: ../../godmode/reporting/reporting_builder.list_items.php:901
    +msgid "Please select any item to delete"
    +msgstr ""
    +
    +#: ../../godmode/reporting/create_container.php:155
    +msgid "Container name is missing."
    +msgstr ""
    +
    +#: ../../godmode/reporting/create_container.php:196
    +#: ../../godmode/reporting/graph_container.php:134
    +msgid "Create container"
    +msgstr ""
    +
    +#: ../../godmode/reporting/create_container.php:205
    +msgid "Container stored successfully"
    +msgstr ""
    +
    +#: ../../godmode/reporting/create_container.php:205
    +msgid "There was a problem storing container"
    +msgstr ""
    +
    +#: ../../godmode/reporting/create_container.php:212
    +msgid "Update the container"
    +msgstr ""
    +
    +#: ../../godmode/reporting/create_container.php:212
    +msgid "Bad update the container"
    +msgstr ""
    +
    +#: ../../godmode/reporting/create_container.php:287
    +msgid "Parent container"
    +msgstr ""
    +
    +#: ../../godmode/reporting/create_container.php:345
    +#: ../../include/functions.php:2688
    +msgid "custom"
    +msgstr ""
    +
    +#: ../../godmode/reporting/create_container.php:347
    +#: ../../godmode/reporting/create_container.php:348
    +#: ../../godmode/reporting/create_container.php:349
    +#: ../../include/functions.php:2700 ../../include/functions.php:2701
    +#: ../../include/ajax/graph.ajax.php:147 ../../include/ajax/graph.ajax.php:148
    +#: ../../include/ajax/graph.ajax.php:149
    +#, php-format
    +msgid "%s hours"
    +msgstr ""
    +
    +#: ../../godmode/reporting/create_container.php:351
    +#: ../../godmode/reporting/create_container.php:352
    +#: ../../include/ajax/graph.ajax.php:151 ../../include/ajax/graph.ajax.php:152
    +#, php-format
    +msgid "%s days"
    +msgstr ""
    +
    +#: ../../godmode/reporting/create_container.php:353
    +#: ../../include/functions.php:2703 ../../include/ajax/module.php:204
    +#: ../../include/ajax/graph.ajax.php:153
    +msgid "1 week"
    +msgstr ""
    +
    +#: ../../godmode/reporting/create_container.php:355
    +#: ../../include/functions.php:2705 ../../include/ajax/module.php:206
    +#: ../../include/ajax/graph.ajax.php:155
    +msgid "1 month"
    +msgstr ""
    +
    +#: ../../godmode/reporting/create_container.php:365
    +#: ../../godmode/reporting/create_container.php:474
    +#: ../../godmode/reporting/create_container.php:528
    +msgid ""
    +"This is the interval or period of time with which the graph data will be "
    +"obtained. For example, a week means data from a week ago from now. "
    +msgstr ""
    +
    +#: ../../godmode/reporting/create_container.php:428
    +#: ../../godmode/reporting/create_container.php:583
    +#: ../../godmode/reporting/graph_builder.main.php:208
    +#: ../../include/functions_visual_map_editor.php:554
    +msgid "Type of graph"
    +msgstr ""
    +
    +#: ../../godmode/reporting/create_container.php:437
    +#: ../../godmode/reporting/create_container.php:494
    +#: ../../godmode/reporting/create_container.php:589
    +#: ../../godmode/reporting/graph_builder.main.php:285
    +#: ../../operation/agentes/stat_win.php:395
    +#: ../../operation/agentes/interface_traffic_graph_win.php:238
    +msgid "Show full scale graph (TIP)"
    +msgstr ""
    +
    +#: ../../godmode/reporting/create_container.php:448
    +#: ../../godmode/reporting/create_container.php:501
    +#: ../../godmode/reporting/create_container.php:596
    +msgid "Add item"
    +msgstr ""
    +
    +#: ../../godmode/reporting/create_container.php:614
    +msgid "There are no items in this container."
    +msgstr ""
    +
    +#: ../../godmode/reporting/create_container.php:623
    +msgid "Agent/Module"
    +msgstr ""
    +
    +#: ../../godmode/reporting/create_container.php:626
    +msgid "M.Group"
    +msgstr ""
    +
    +#: ../../godmode/reporting/map_builder.php:318
    +#: ../../godmode/reporting/map_builder.php:326
    +msgid "Not copied. Error copying data"
    +msgstr ""
    +
    +#: ../../godmode/reporting/map_builder.php:368
    +#: ../../godmode/reporting/visual_console_favorite.php:185
    +msgid "Group Recursion"
    +msgstr ""
    +
    +#: ../../godmode/reporting/map_builder.php:384
    +msgid "Map name"
    +msgstr ""
    +
    +#: ../../godmode/reporting/map_builder.php:386
    +msgid "Items"
    +msgstr ""
    +
    +#: ../../godmode/reporting/map_builder.php:462
    +#: ../../general/first_task/map_builder.php:23
    +msgid "There are no visual console defined yet."
    +msgstr ""
    +
    +#: ../../godmode/reporting/graph_builder.php:309
    +#: ../../operation/reporting/graph_viewer.php:204
    +msgid "Graph editor"
    +msgstr ""
    +
    +#: ../../godmode/reporting/graph_builder.php:320
    +#: ../../operation/reporting/graph_viewer.php:223
    +msgid "View graph"
    +msgstr ""
    +
    +#: ../../godmode/reporting/graph_builder.php:336
    +msgid "Graph builder"
    +msgstr ""
    +
    +#: ../../godmode/reporting/graph_builder.php:378
    +msgid "Graph stored successfully"
    +msgstr ""
    +
    +#: ../../godmode/reporting/graph_builder.php:379
    +msgid "There was a problem storing Graph"
    +msgstr ""
    +
    +#: ../../godmode/reporting/graph_builder.php:387
    +msgid "There was a problem adding Module"
    +msgstr ""
    +
    +#: ../../godmode/reporting/graph_builder.php:394
    +msgid "Update the graph"
    +msgstr ""
    +
    +#: ../../godmode/reporting/graph_builder.php:395
    +msgid "Bad update the graph"
    +msgstr ""
    +
    +#: ../../godmode/reporting/graph_builder.php:402
    +msgid "Graph deleted successfully"
    +msgstr ""
    +
    +#: ../../godmode/reporting/graph_builder.php:403
    +msgid "There was a problem deleting Graph"
    +msgstr ""
    +
    +#: ../../godmode/reporting/graphs.php:106
    +msgid "Graphs containers"
    +msgstr ""
    +
    +#: ../../godmode/reporting/graphs.php:120
    +msgid "List of custom graphs"
    +msgstr ""
    +
    +#: ../../godmode/reporting/graphs.php:235
    +#: ../../godmode/reporting/reporting_builder.php:780
    +msgid "Free text for search: "
    +msgstr ""
    +
    +#: ../../godmode/reporting/graphs.php:236
    +#: ../../godmode/reporting/reporting_builder.php:782
    +msgid "Search by report name or description, list matches."
    +msgstr ""
    +
    +#: ../../godmode/reporting/graphs.php:248
    +#: ../../godmode/reporting/reporting_builder.php:808
    +msgid "Show Option"
    +msgstr ""
    +
    +#: ../../godmode/reporting/graphs.php:310
    +#: ../../include/functions_container.php:146
    +#: ../../operation/search_graphs.php:30
    +#: ../../operation/reporting/graph_viewer.php:524
    +msgid "Graph name"
    +msgstr ""
    +
    +#: ../../godmode/reporting/graphs.php:312
    +#: ../../include/functions_container.php:148
    +msgid "Number of Graphs"
    +msgstr ""
    +
    +#: ../../godmode/reporting/graphs.php:402
    +msgid "Create graph"
    +msgstr ""
    +
    +#: ../../godmode/reporting/visual_console_favorite.php:223
    +msgid "No favourite consoles defined"
    +msgstr ""
    +
    +#: ../../godmode/reporting/graph_builder.graph_editor.php:199
    +#, php-format
    +msgid ""
    +"The maximum number of items in a chart is %d. You have %d elements, only "
    +"first %d will be displayed."
    +msgstr ""
    +
    +#: ../../godmode/reporting/graph_builder.graph_editor.php:291
    +msgid "Sort selected items"
    +msgstr ""
    +
    +#: ../../godmode/reporting/graph_builder.graph_editor.php:294
    +msgid "before to"
    +msgstr ""
    +
    +#: ../../godmode/reporting/graph_builder.graph_editor.php:295
    +msgid "after to"
    +msgstr ""
    +
    +#: ../../godmode/reporting/reporting_builder.item_editor.php:1046
    +msgid "Not valid"
    +msgstr ""
    +
    +#: ../../godmode/reporting/reporting_builder.item_editor.php:1054
    +msgid ""
    +"This type of report brings a lot of data loading, it is recommended to use "
    +"it for scheduled reports and not for real-time view."
    +msgstr ""
    +
    +#: ../../godmode/reporting/reporting_builder.item_editor.php:1250
    +msgid "Log number"
    +msgstr ""
    +
    +#: ../../godmode/reporting/reporting_builder.item_editor.php:1252
    +msgid ""
    +"Warning: this parameter limits the contents of the logs and affects the "
    +"performance."
    +msgstr ""
    +
    +#: ../../godmode/reporting/reporting_builder.item_editor.php:1313
    +msgid ""
    +"This is the range, or period of time over which the report renders the "
    +"information for this report type. For example, a week means data from a week "
    +"ago from now. "
    +msgstr ""
    +
    +#: ../../godmode/reporting/reporting_builder.item_editor.php:1872
    +msgid "Show modules"
    +msgstr ""
    +
    +#: ../../godmode/reporting/reporting_builder.item_editor.php:2253
    +msgid "Target server"
    +msgstr ""
    +
    +#: ../../godmode/reporting/reporting_builder.item_editor.php:2554
    +msgid "Macros definition"
    +msgstr ""
    +
    +#: ../../godmode/reporting/reporting_builder.item_editor.php:2565
    +msgid "Render definition"
    +msgstr ""
    +
    +#: ../../godmode/reporting/reporting_builder.item_editor.php:2566
    +msgid "Please note that not all CSS styles are supported by PDF reports."
    +msgstr ""
    +
    +#: ../../godmode/reporting/reporting_builder.item_editor.php:2663
    +msgid "Greater or equal (>=)"
    +msgstr ""
    +
    +#: ../../godmode/reporting/reporting_builder.item_editor.php:2664
    +msgid "Less or equal (<=)"
    +msgstr ""
    +
    +#: ../../godmode/reporting/reporting_builder.item_editor.php:2665
    +msgid "Less (<)"
    +msgstr ""
    +
    +#: ../../godmode/reporting/reporting_builder.item_editor.php:2666
    +msgid "Greater (>)"
    +msgstr ""
    +
    +#: ../../godmode/reporting/reporting_builder.item_editor.php:2667
    +msgid "Equal (=)"
    +msgstr ""
    +
    +#: ../../godmode/reporting/reporting_builder.item_editor.php:2668
    +msgid "Not equal (!=)"
    +msgstr ""
    +
    +#: ../../godmode/reporting/reporting_builder.item_editor.php:2793
    +msgid ""
    +"Show a summary chart with max, min and average number of total modules at "
    +"the end of the report and Checks."
    +msgstr ""
    +
    +#: ../../godmode/reporting/reporting_builder.item_editor.php:2848
    +msgid "Checks in Warning status"
    +msgstr ""
    +
    +#: ../../godmode/reporting/reporting_builder.item_editor.php:2918
    +msgid "Only data"
    +msgstr ""
    +
    +#: ../../godmode/reporting/reporting_builder.item_editor.php:3016
    +msgid "Include extended events"
    +msgstr ""
    +
    +#: ../../godmode/reporting/reporting_builder.item_editor.php:3033
    +msgid "Show custom data"
    +msgstr ""
    +
    +#: ../../godmode/reporting/reporting_builder.item_editor.php:3052
    +msgid "By agent "
    +msgstr ""
    +
    +#: ../../godmode/reporting/reporting_builder.item_editor.php:3062
    +msgid "By user validator "
    +msgstr ""
    +
    +#: ../../godmode/reporting/reporting_builder.item_editor.php:3072
    +msgid "By criticity "
    +msgstr ""
    +
    +#: ../../godmode/reporting/reporting_builder.item_editor.php:3082
    +msgid "Validated vs unvalidated "
    +msgstr ""
    +
    +#: ../../godmode/reporting/reporting_builder.item_editor.php:3097
    +msgid ""
    +"With the token enabled the query will affect the Historical Database, which "
    +"may mean a small drop in performance."
    +msgstr ""
    +
    +#: ../../godmode/reporting/reporting_builder.item_editor.php:3282
    +msgid "Include filter"
    +msgstr ""
    +
    +#: ../../godmode/reporting/reporting_builder.item_editor.php:3286
    +#: ../../godmode/reporting/reporting_builder.item_editor.php:3295
    +msgid "Free text string search on event description"
    +msgstr ""
    +
    +#: ../../godmode/reporting/reporting_builder.item_editor.php:3291
    +msgid "Exclude filter"
    +msgstr ""
    +
    +#: ../../godmode/reporting/reporting_builder.item_editor.php:3421
    +#: ../../include/functions_reporting.php:4628
    +msgid "Unassigned group"
    +msgstr ""
    +
    +#: ../../godmode/reporting/reporting_builder.item_editor.php:3467
    +#: ../../include/functions_reporting.php:4622
    +msgid "Unnasigned group"
    +msgstr ""
    +
    +#: ../../godmode/reporting/reporting_builder.item_editor.php:3490
    +msgid "Select by group"
    +msgstr ""
    +
    +#: ../../godmode/reporting/reporting_builder.item_editor.php:3578
    +msgid "Display options"
    +msgstr ""
    +
    +#: ../../godmode/reporting/reporting_builder.item_editor.php:3636
    +msgid "Agent group filter"
    +msgstr ""
    +
    +#: ../../godmode/reporting/reporting_builder.item_editor.php:3656
    +msgid "Agent OS filter"
    +msgstr ""
    +
    +#: ../../godmode/reporting/reporting_builder.item_editor.php:3682
    +msgid "Agent custom field"
    +msgstr ""
    +
    +#: ../../godmode/reporting/reporting_builder.item_editor.php:3704
    +msgid "Agent custom field filter"
    +msgstr ""
    +
    +#: ../../godmode/reporting/reporting_builder.item_editor.php:3728
    +msgid "Agent status filter"
    +msgstr ""
    +
    +#: ../../godmode/reporting/reporting_builder.item_editor.php:3766
    +msgid "Agent version filter"
    +msgstr ""
    +
    +#: ../../godmode/reporting/reporting_builder.item_editor.php:3790
    +msgid "Agent has remote configuration"
    +msgstr ""
    +
    +#: ../../godmode/reporting/reporting_builder.item_editor.php:3791
    +msgid "Filter agents by remote configuration enabled."
    +msgstr ""
    +
    +#: ../../godmode/reporting/reporting_builder.item_editor.php:3802
    +msgid "Agent module filter"
    +msgstr ""
    +
    +#: ../../godmode/reporting/reporting_builder.item_editor.php:3908
    +#: ../../godmode/reporting/reporting_builder.item_editor.php:4423
    +msgid "Agent Failover"
    +msgstr ""
    +
    +#: ../../godmode/reporting/reporting_builder.item_editor.php:3913
    +#: ../../godmode/reporting/reporting_builder.item_editor.php:4426
    +msgid "Module Failover"
    +msgstr ""
    +
    +#: ../../godmode/reporting/reporting_builder.item_editor.php:3953
    +msgid "Please save the item before adding entries to this list."
    +msgstr ""
    +
    +#: ../../godmode/reporting/reporting_builder.item_editor.php:4399
    +msgid "rate"
    +msgstr ""
    +
    +#: ../../godmode/reporting/reporting_builder.item_editor.php:4447
    +msgid ""
    +"Please be careful, when the module have diferent intervals in their life, "
    +"the summatory maybe get bad result."
    +msgstr ""
    +
    +#: ../../godmode/reporting/reporting_builder.item_editor.php:4467
    +msgid "Please save the report to start adding items into the list."
    +msgstr ""
    +
    +#: ../../godmode/reporting/reporting_builder.item_editor.php:4733
    +#: ../../godmode/reporting/reporting_builder.item_editor.php:4737
    +#: ../../godmode/reporting/reporting_builder.item_editor.php:4741
    +#: ../../godmode/reporting/reporting_builder.item_editor.php:4745
    +#: ../../godmode/reporting/reporting_builder.item_editor.php:4749
    +#: ../../godmode/reporting/reporting_builder.item_editor.php:4753
    +#: ../../godmode/reporting/reporting_builder.item_editor.php:4757
    +#: ../../godmode/reporting/reporting_builder.item_editor.php:4761
    +msgid "Item Editor Information"
    +msgstr ""
    +
    +#: ../../godmode/reporting/reporting_builder.item_editor.php:4734
    +msgid "Please select a name."
    +msgstr ""
    +
    +#: ../../godmode/reporting/reporting_builder.item_editor.php:4738
    +msgid "Please select an agent."
    +msgstr ""
    +
    +#: ../../godmode/reporting/reporting_builder.item_editor.php:4746
    +msgid "Please insert a SQL query."
    +msgstr ""
    +
    +#: ../../godmode/reporting/reporting_builder.item_editor.php:4750
    +msgid "Please insert a URL."
    +msgstr ""
    +
    +#: ../../godmode/reporting/reporting_builder.item_editor.php:4754
    +msgid "Please checked a custom interval option."
    +msgstr ""
    +
    +#: ../../godmode/reporting/reporting_builder.item_editor.php:4758
    +msgid "Please select a user."
    +msgstr ""
    +
    +#: ../../godmode/reporting/reporting_builder.item_editor.php:4762
    +msgid "Please select a group."
    +msgstr ""
    +
    +#: ../../godmode/reporting/visual_console_builder.elements.php:106
    +msgid "Width x Height
    Max value" +msgstr "" + +#: ../../godmode/reporting/visual_console_builder.elements.php:108 +msgid "Map linked" +msgstr "" + +#: ../../godmode/reporting/visual_console_builder.elements.php:194 +msgid "Percentile Bar" +msgstr "" + +#: ../../godmode/reporting/visual_console_builder.elements.php:204 +msgid "Percentile Bubble" +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 +#: ../../operation/visual_console/view.php:306 +msgid "Module Graph" +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:4224 +#: ../../operation/visual_console/view.php:326 +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:4249 +#: ../../include/rest-api/models/VisualConsole/Item.php:2131 +#: ../../operation/visual_console/view.php:331 +msgid "Simple Value" +msgstr "" + +#: ../../godmode/reporting/visual_console_builder.elements.php:252 +msgid "Simple Value (Process Max)" +msgstr "" + +#: ../../godmode/reporting/visual_console_builder.elements.php:263 +msgid "Simple Value (Process Min)" +msgstr "" + +#: ../../godmode/reporting/visual_console_builder.elements.php:274 +msgid "Simple Value (Process Avg)" +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:4204 +#: ../../operation/visual_console/view.php:356 +msgid "Box" +msgstr "" + +#: ../../godmode/reporting/visual_console_builder.elements.php:323 +#: ../../include/functions_visual_map_editor.php:1405 +#: ../../operation/visual_console/view.php:371 +msgid "Network link" +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:4264 +#: ../../include/rest-api/models/VisualConsole/Item.php:2143 +#: ../../operation/visual_console/view.php:366 +msgid "Color cloud" +msgstr "" + +#: ../../godmode/reporting/visual_console_builder.elements.php:352 +#: ../../include/rest-api/models/VisualConsole/Item.php:2155 +#: ../../operation/visual_console/view.php:311 +msgid "Basic chart" +msgstr "" + +#: ../../godmode/reporting/visual_console_builder.elements.php:360 +#: ../../include/rest-api/models/VisualConsole/Item.php:2151 +#: ../../operation/visual_console/view.php:376 +msgid "Odometer" +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:4214 +#: ../../include/rest-api/models/VisualConsole/Item.php:2103 +#: ../../include/lib/Dashboard/Widgets/clock.php:158 +#: ../../include/lib/Dashboard/Widgets/clock.php:310 +#: ../../operation/visual_console/view.php:346 +msgid "Clock" +msgstr "" + +#: ../../godmode/reporting/visual_console_builder.elements.php:395 +#: ../../godmode/reporting/visual_console_builder.elements.php:855 +msgid "Edit label" +msgstr "" + +#: ../../godmode/reporting/reporting_builder.main.php:146 +msgid "Only the group can view the report" +msgstr "" + +#: ../../godmode/reporting/reporting_builder.main.php:147 +msgid "The next group can edit the report" +msgstr "" + +#: ../../godmode/reporting/reporting_builder.main.php:148 +msgid "Only the user and admin user can edit the report" +msgstr "" + +#: ../../godmode/reporting/reporting_builder.main.php:150 +msgid "Write Access" +msgstr "" + +#: ../../godmode/reporting/reporting_builder.main.php:152 +msgid "" +"For example, you want a report that the people of \"All\" groups can see but " +"you want to edit only for you or your group." +msgstr "" + +#: ../../godmode/reporting/reporting_builder.main.php:193 +msgid "Non interactive report" +msgstr "" + +#: ../../godmode/reporting/reporting_builder.php:210 +#: ../../operation/reporting/reporting_viewer.php:101 +msgid "Your report has been planned, and the system will email you a " +msgstr "" + +#: ../../godmode/reporting/reporting_builder.php:211 +#: ../../operation/reporting/reporting_viewer.php:102 +msgid "An error has ocurred" +msgstr "" + +#: ../../godmode/reporting/reporting_builder.php:535 +#: ../../godmode/reporting/reporting_builder.php:3483 +#: ../../godmode/reporting/reporting_builder.php:3566 +#: ../../godmode/reporting/reporting_builder.php:3614 +msgid "Reports list" +msgstr "" + +#: ../../godmode/reporting/reporting_builder.php:551 +#: ../../godmode/reporting/reporting_builder.php:3494 +#: ../../operation/menu.php:318 +#: ../../operation/reporting/custom_reporting.php:23 +msgid "Custom reporting" +msgstr "" + +#: ../../godmode/reporting/reporting_builder.php:583 +msgid "List of reports" +msgstr "" + +#: ../../godmode/reporting/reporting_builder.php:1044 +msgid "This report exceeds the item limit for realtime operations" +msgstr "" + +#: ../../godmode/reporting/reporting_builder.php:1276 +msgid "Create report" +msgstr "" + +#: ../../godmode/reporting/reporting_builder.php:3598 +#: ../../operation/reporting/reporting_viewer.php:173 +msgid "View report" +msgstr "" + +#: ../../godmode/reporting/reporting_builder.php:3617 +msgid "Create Custom Report" +msgstr "" + +#: ../../godmode/reporting/reporting_builder.php:3705 +msgid "Unsuccessful action

    " +msgstr "" + +#: ../../godmode/reporting/visual_console_builder.wizard.php:127 +#: ../../include/functions_visual_map_editor.php:56 +msgid "Static Graph" +msgstr "" + +#: ../../godmode/reporting/visual_console_builder.wizard.php:128 +#: ../../include/functions_visual_map_editor.php:57 +#: ../../include/functions_visual_map_editor.php:1388 +#: ../../operation/visual_console/view.php:301 +msgid "Percentile Item" +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:4209 +#: ../../include/rest-api/models/VisualConsole/Item.php:2099 +msgid "Module graph" +msgstr "" + +#: ../../godmode/reporting/visual_console_builder.wizard.php:130 +#: ../../include/functions_visual_map_editor.php:60 +msgid "Simple value" +msgstr "" + +#: ../../godmode/reporting/visual_console_builder.wizard.php:165 +msgid "Range between elements (px)" +msgstr "" + +#: ../../godmode/reporting/visual_console_builder.wizard.php:178 +msgid "Size (px)" +msgstr "" + +#: ../../godmode/reporting/visual_console_builder.wizard.php:228 +#: ../../include/functions_config.php:1021 +msgid "Font size" +msgstr "" + +#: ../../godmode/reporting/visual_console_builder.wizard.php:256 +#: ../../include/functions_visual_map_editor.php:612 +#: ../../include/rest-api/models/VisualConsole/Items/SimpleValue.php:371 +msgid "Process" +msgstr "" + +#: ../../godmode/reporting/visual_console_builder.wizard.php:259 +#: ../../include/functions_visual_map_editor.php:615 +msgid "Min value" +msgstr "" + +#: ../../godmode/reporting/visual_console_builder.wizard.php:260 +#: ../../godmode/reporting/visual_console_builder.wizard.php:278 +#: ../../include/functions_visual_map_editor.php:616 +#: ../../include/functions_visual_map_editor.php:682 +msgid "Max value" +msgstr "" + +#: ../../godmode/reporting/visual_console_builder.wizard.php:261 +#: ../../include/functions_visual_map_editor.php:617 +msgid "Avg value" +msgstr "" + +#: ../../godmode/reporting/visual_console_builder.wizard.php:273 +msgid "Width (px)" +msgstr "" + +#: ../../godmode/reporting/visual_console_builder.wizard.php:295 +#: ../../include/functions_visual_map_editor.php:687 +#: ../../include/rest-api/models/VisualConsole/Items/Percentile.php:459 +msgid "Bubble" +msgstr "" + +#: ../../godmode/reporting/visual_console_builder.wizard.php:307 +#: ../../include/functions_visual_map_editor.php:711 +#: ../../include/functions_visual_map_editor.php:729 +#: ../../include/rest-api/models/VisualConsole/Items/Percentile.php:509 +msgid "Value to show" +msgstr "" + +#: ../../godmode/reporting/visual_console_builder.wizard.php:309 +#: ../../include/functions_visual_map_editor.php:692 +#: ../../include/rest-api/models/VisualConsole/Items/Percentile.php:504 +msgid "Percent" +msgstr "" + +#: ../../godmode/reporting/visual_console_builder.wizard.php:378 +msgid "One item per agent" +msgstr "" + +#: ../../godmode/reporting/visual_console_builder.wizard.php:448 +#: ../../godmode/reporting/visual_console_builder.wizard.php:765 +msgid "Agent - Module" +msgstr "" + +#: ../../godmode/reporting/visual_console_builder.wizard.php:465 +msgid "Enable link agent" +msgstr "" + +#: ../../godmode/reporting/visual_console_builder.wizard.php:476 +msgid "Set Parent" +msgstr "" + +#: ../../godmode/reporting/visual_console_builder.wizard.php:479 +msgid "Item created in the visualmap" +msgstr "" + +#: ../../godmode/reporting/visual_console_builder.wizard.php:480 +msgid "Use the agents relationship (from selected agents)" +msgstr "" + +#: ../../godmode/reporting/visual_console_builder.wizard.php:489 +msgid "Item in the map" +msgstr "" + +#: ../../godmode/reporting/visual_console_builder.wizard.php:490 +#, php-format +msgid "The parenting relationships in %s will be drawn on the map." +msgstr "" + +#: ../../godmode/reporting/visual_console_builder.wizard.php:510 +#: ../../godmode/reporting/visual_console_builder.wizard.php:514 +msgid "Are you sure to add many elements\\nin visual map?" +msgstr "" + +#: ../../godmode/reporting/visual_console_builder.wizard.php:686 +msgid "Please select any module or modules." +msgstr "" + +#: ../../godmode/reporting/visual_console_builder.editor.php:163 +msgid "Min allowed size is 1024x768" +msgstr "" + +#: ../../godmode/reporting/visual_console_builder.editor.php:167 +#: ../../godmode/reporting/visual_console_builder.editor.php:169 +#: ../../godmode/reporting/visual_console_builder.editor.php:171 +#: ../../operation/snmpconsole/snmp_browser.php:225 +msgid "Action in progress" +msgstr "" + +#: ../../godmode/reporting/visual_console_builder.editor.php:167 +msgid "Loading in progress" +msgstr "" + +#: ../../godmode/reporting/visual_console_builder.editor.php:169 +msgid "Saving in progress" +msgstr "" + +#: ../../godmode/reporting/visual_console_builder.editor.php:171 +msgid "Deletion in progress" +msgstr "" + +#: ../../godmode/reporting/graph_builder.main.php:218 +#: ../../include/lib/Dashboard/Widgets/custom_graph.php:319 +#: ../../operation/reporting/graph_viewer.php:374 +msgid "Bullet chart" +msgstr "" + +#: ../../godmode/reporting/graph_builder.main.php:219 +#: ../../include/lib/Dashboard/Widgets/custom_graph.php:320 +#: ../../operation/reporting/graph_viewer.php:375 +msgid "Gauge" +msgstr "" + +#: ../../godmode/reporting/graph_builder.main.php:222 +#: ../../include/lib/Dashboard/Widgets/custom_graph.php:323 +#: ../../operation/reporting/graph_viewer.php:378 +msgid "Pie" +msgstr "" + +#: ../../godmode/reporting/graph_builder.main.php:230 +msgid "Equalize maximum thresholds" +msgstr "" + +#: ../../godmode/reporting/graph_builder.main.php:258 +msgid "Add summatory series" +msgstr "" + +#: ../../godmode/reporting/graph_builder.main.php:268 +msgid "Add average series" +msgstr "" + +#: ../../godmode/reporting/graph_builder.main.php:279 +msgid "Modules and series" +msgstr "" + +#: ../../godmode/um_client/index.php:96 +#, php-format +msgid "" +"You cannot use update manager %s. You are exceding monitoring limits by %s " +"elements. Please update your license or disable enterprise section by moving " +"enterprise directory to another location and try again." +msgstr "" + +#: ../../godmode/um_client/index.php:107 +#, php-format +msgid "" +"You cannot use update manager %s. This license has expired %d days ago. " +"Please update your license or disable enterprise section by moving " +"enterprise directory to another location and try again." +msgstr "" + +#: ../../godmode/um_client/index.php:120 +#, php-format +msgid "" +"You cannot use update manager %s. This license is a trial license to test " +"all %s features. Please update your license to unlock all %s features." +msgstr "" + +#: ../../godmode/um_client/index.php:216 +#, php-format +msgid "Master server version %s does not match console version %s." +msgstr "" + +#: ../../godmode/um_client/index.php:229 +#, php-format +msgid "" +"'%s' recommended value is %s or greater. Please, change it on your PHP " +"configuration file (php.ini) or contact with administrator" +msgstr "" + +#: ../../godmode/um_client/index.php:318 +msgid "Update online requires registration." +msgstr "" + +#: ../../godmode/um_client/index.php:323 +msgid "" +"Applying offline patches may make your console unusable, we recommend to " +"completely backup your files before applying any patch." +msgstr "" + +#: ../../godmode/events/event_responses.editor.php:73 +msgid "Edit event responses" +msgstr "" + +#: ../../godmode/events/event_responses.editor.php:123 +msgid "For Command type Modal Window mode is enforced" +msgstr "" + +#: ../../godmode/events/event_responses.editor.php:125 +msgid "Modal window" +msgstr "" + +#: ../../godmode/events/event_responses.editor.php:126 +msgid "New window" +msgstr "" + +#: ../../godmode/events/event_responses.editor.php:175 +#: ../../include/class/AgentWizard.class.php:549 +#: ../../include/functions_snmp_browser.php:766 +msgid "Local console" +msgstr "" + +#: ../../godmode/events/event_responses.editor.php:192 +#: ../../include/class/AgentWizard.class.php:696 +msgid "Server to execute command" +msgstr "" + +#: ../../godmode/events/event_responses.editor.php:198 +msgid "Command timeout (s)" +msgstr "" + +#: ../../godmode/events/event_responses.editor.php:204 +msgid "Display command" +msgstr "" + +#: ../../godmode/events/event_responses.editor.php:204 +msgid "" +"If enabled the command will be displayed to any user that can execute this " +"event response" +msgstr "" + +#: ../../godmode/events/event_edit_filter.php:254 +msgid "Update Filter" +msgstr "" + +#: ../../godmode/events/event_edit_filter.php:256 +msgid "Create Filter" +msgstr "" + +#: ../../godmode/events/event_edit_filter.php:266 +#: ../../include/ajax/custom_fields.php:571 +#: ../../include/ajax/custom_fields.php:618 +#: ../../include/ajax/custom_fields.php:662 ../../include/ajax/events.php:763 +msgid "Filter name" +msgstr "" + +#: ../../godmode/events/event_edit_filter.php:269 +msgid "Save in group" +msgstr "" + +#: ../../godmode/events/event_edit_filter.php:269 +msgid "" +"This group will be use to restrict the visibility of this filter with ACLs" +msgstr "" + +#: ../../godmode/events/event_edit_filter.php:419 +msgid "Choose between the users who have validated an event. " +msgstr "" + +#: ../../godmode/events/event_edit_filter.php:441 +#: ../../operation/events/events.php:1627 +msgid "All events" +msgstr "" + +#: ../../godmode/events/event_edit_filter.php:442 +#: ../../operation/events/events.php:1628 +#: ../../operation/events/events.php:2231 +msgid "Group events" +msgstr "" + +#: ../../godmode/events/event_edit_filter.php:607 +#: ../../operation/events/events.php:1840 +msgid "Filter alert events" +msgstr "" + +#: ../../godmode/events/event_edit_filter.php:608 +#: ../../operation/events/events.php:1841 +msgid "Only alert events" +msgstr "" + +#: ../../godmode/events/event_edit_filter.php:635 +#: ../../operation/events/events.php:1729 +msgid "Extra ID" +msgstr "" + +#: ../../godmode/events/event_edit_filter.php:641 +msgid "Custom data filter type" +msgstr "" + +#: ../../godmode/events/event_edit_filter.php:644 +msgid "Filter custom data by name field" +msgstr "" + +#: ../../godmode/events/event_edit_filter.php:645 +msgid "Filter custom data by value field" +msgstr "" + +#: ../../godmode/events/event_edit_filter.php:655 +#: ../../godmode/events/custom_events.php:119 +#: ../../include/functions_reporting_html.php:1065 +#: ../../include/functions_reporting_html.php:1326 +#: ../../include/functions_reporting_html.php:2431 +#: ../../include/ajax/events.php:1757 ../../include/functions_events.php:221 +#: ../../include/functions_events.php:323 +msgid "Custom data" +msgstr "" + +#: ../../godmode/events/event_edit_filter.php:659 +msgid "Id souce event" +msgstr "" + +#: ../../godmode/events/event_responses.list.php:32 +msgid "No responses found" +msgstr "" + +#: ../../godmode/events/event_responses.list.php:92 +msgid "Create response" +msgstr "" + +#: ../../godmode/events/custom_events.php:76 +msgid "Load the fields from previous events" +msgstr "" + +#: ../../godmode/events/custom_events.php:76 +msgid "Event fields will be loaded. Do you want to continue?" +msgstr "" + +#: ../../godmode/events/custom_events.php:94 +#: ../../include/functions_events.php:238 +msgid "Event Id" +msgstr "" + +#: ../../godmode/events/custom_events.php:95 +#: ../../mobile/operation/events.php:237 ../../include/functions_events.php:241 +msgid "Event Name" +msgstr "" + +#: ../../godmode/events/custom_events.php:97 +msgid "Agent Name" +msgstr "" + +#: ../../godmode/events/custom_events.php:98 +#: ../../include/functions_events.php:320 +msgid "Agent IP" +msgstr "" + +#: ../../godmode/events/custom_events.php:103 +#: ../../include/functions_events.php:265 +msgid "Event Type" +msgstr "" + +#: ../../godmode/events/custom_events.php:104 +#: ../../include/class/ModuleTemplates.class.php:1207 +#: ../../include/class/AgentWizard.class.php:1195 +#: ../../include/class/AgentWizard.class.php:4047 +#: ../../include/functions_events.php:268 +msgid "Module Name" +msgstr "" + +#: ../../godmode/events/custom_events.php:110 +#: ../../include/functions_events.php:286 +msgid "Extra Id" +msgstr "" + +#: ../../godmode/events/custom_events.php:114 +#: ../../include/functions_events.php:298 +msgid "Server Name" +msgstr "" + +#: ../../godmode/events/custom_events.php:117 +#: ../../include/functions_events.php:316 +msgid "Severity mini" +msgstr "" + +#: ../../godmode/events/custom_events.php:118 +#: ../../include/functions_events.php:307 +#: ../../include/functions_events.php:4697 +msgid "Module custom ID" +msgstr "" + +#: ../../godmode/events/custom_events.php:171 +msgid "Move up selected fields" +msgstr "" + +#: ../../godmode/events/custom_events.php:179 +msgid "Move down selected fields" +msgstr "" + +#: ../../godmode/events/event_responses.php:51 +msgid "Response added succesfully" +msgstr "" + +#: ../../godmode/events/event_responses.php:53 +msgid "Response cannot be added" +msgstr "" + +#: ../../godmode/events/event_responses.php:77 +msgid "Response updated succesfully" +msgstr "" + +#: ../../godmode/events/event_responses.php:79 +msgid "Response cannot be updated" +msgstr "" + +#: ../../godmode/events/event_responses.php:89 +msgid "Response deleted succesfully" +msgstr "" + +#: ../../godmode/events/event_responses.php:91 +msgid "Response cannot be deleted" +msgstr "" + +#: ../../godmode/wizards/HostDevices.class.php:152 +msgid "Net Scan" +msgstr "" + +#: ../../godmode/wizards/HostDevices.class.php:172 +msgid "Custom NetScan" +msgstr "" + +#: ../../godmode/wizards/HostDevices.class.php:180 +msgid "Manage NetScan scripts" +msgstr "" + +#: ../../godmode/wizards/HostDevices.class.php:325 +#, php-format +msgid "Invalid mimetype for csv file: %s" +msgstr "" + +#: ../../godmode/wizards/HostDevices.class.php:348 +#, php-format +msgid "Invalid content readed from csv file: %s" +msgstr "" + +#: ../../godmode/wizards/HostDevices.class.php:391 +msgid "" +"This network scan task has been already defined. Please edit it or create a " +"new one." +msgstr "" + +#: ../../godmode/wizards/HostDevices.class.php:433 +msgid "You must provide a valid network." +msgstr "" + +#: ../../godmode/wizards/HostDevices.class.php:483 +#: ../../godmode/wizards/HostDevices.class.php:595 +#: ../../include/class/CustomNetScan.class.php:222 +msgid "Failed to find network scan task." +msgstr "" + +#: ../../godmode/wizards/HostDevices.class.php:700 +#, php-format +msgid "\"%s\" features" +msgstr "" + +#: ../../godmode/wizards/HostDevices.class.php:728 +#: ../../include/class/CustomNetScan.class.php:403 +msgid "Internal error, please re-run this wizard." +msgstr "" + +#: ../../godmode/wizards/HostDevices.class.php:813 +#: ../../include/class/CustomNetScan.class.php:545 +msgid "The minimum recomended interval for Recon Task is 5 minutes" +msgstr "" + +#: ../../godmode/wizards/HostDevices.class.php:868 +msgid "Use CSV file definition" +msgstr "" + +#: ../../godmode/wizards/HostDevices.class.php:869 +msgid "Define targets using csv o network definition." +msgstr "" + +#: ../../godmode/wizards/HostDevices.class.php:887 +msgid "Networks (csv)" +msgstr "" + +#: ../../godmode/wizards/HostDevices.class.php:888 +msgid "" +"You can upload a CSV file. Each line must contain a network in IP/MASK " +"format. For instance: 192.168.1.1/32" +msgstr "" + +#: ../../godmode/wizards/HostDevices.class.php:900 +msgid "Networks (current)" +msgstr "" + +#: ../../godmode/wizards/HostDevices.class.php:901 +msgid "Please upload a new file to overwrite this content." +msgstr "" + +#: ../../godmode/wizards/HostDevices.class.php:917 +msgid "" +"You can specify several networks, separated by commas, for example: " +"192.168.50.0/24,192.168.60.0/24" +msgstr "" + +#: ../../godmode/wizards/HostDevices.class.php:1047 +msgid "Filter by opened ports" +msgstr "" + +#: ../../godmode/wizards/HostDevices.class.php:1049 +msgid "" +"Targets will be scanned if at least one of defined ports (comma separated) " +"is open." +msgstr "" + +#: ../../godmode/wizards/HostDevices.class.php:1062 +msgid "Auto discover known hardware" +msgstr "" + +#: ../../godmode/wizards/HostDevices.class.php:1064 +msgid "" +"Targets will be monitorized based on its Private Enterprise Number. " +"Requires SNMP." +msgstr "" + +#: ../../godmode/wizards/HostDevices.class.php:1079 +msgid "Module Host Alive will be added to discovered agents by default." +msgstr "" + +#: ../../godmode/wizards/HostDevices.class.php:1127 +#, php-format +msgid "" +"Configured networks could generate %d agents, your license only allows %d, " +"'review results' is mandatory." +msgstr "" + +#: ../../godmode/wizards/HostDevices.class.php:1135 +#: ../../godmode/wizards/DiscoveryTaskList.class.php:908 +msgid "Review results" +msgstr "" + +#: ../../godmode/wizards/HostDevices.class.php:1137 +msgid "Targets must be validated by user before create agents." +msgstr "" + +#: ../../godmode/wizards/HostDevices.class.php:1163 +msgid "Apply autoconfiguration rules" +msgstr "" + +#: ../../godmode/wizards/HostDevices.class.php:1165 +msgid "" +"System is able to auto configure detected host & devices by applying your " +"defined configuration rules." +msgstr "" + +#: ../../godmode/wizards/HostDevices.class.php:1181 +msgid "SNMP enabled" +msgstr "" + +#: ../../godmode/wizards/HostDevices.class.php:1223 +msgid "SNMP communities to try with" +msgstr "" + +#: ../../godmode/wizards/HostDevices.class.php:1225 +msgid "" +"You can specify several values, separated by commas, for example: public," +"mysecret,1234" +msgstr "" + +#: ../../godmode/wizards/HostDevices.class.php:1353 +msgid "OS detection" +msgstr "" + +#: ../../godmode/wizards/HostDevices.class.php:1365 +msgid "Name resolution" +msgstr "" + +#: ../../godmode/wizards/HostDevices.class.php:1376 +msgid "Parent detection" +msgstr "" + +#: ../../godmode/wizards/HostDevices.class.php:1387 +msgid "Parent recursion" +msgstr "" + +#: ../../godmode/wizards/HostDevices.class.php:1398 +msgid "VLAN enabled" +msgstr "" + +#: ../../godmode/wizards/HostDevices.class.php:1409 +msgid "WMI enabled" +msgstr "" + +#: ../../godmode/wizards/DiscoveryTaskList.class.php:254 +msgid "Task successfully deleted" +msgstr "" + +#: ../../godmode/wizards/DiscoveryTaskList.class.php:361 +#: ../../godmode/wizards/DiscoveryTaskList.class.php:488 +msgid "Task successfully enabled" +msgstr "" + +#: ../../godmode/wizards/DiscoveryTaskList.class.php:361 +msgid "Task succesfully disabled" +msgstr "" + +#: ../../godmode/wizards/DiscoveryTaskList.class.php:401 +msgid "Console Task successfully deleted" +msgstr "" + +#: ../../godmode/wizards/DiscoveryTaskList.class.php:443 +msgid "Task successfully disabled" +msgstr "" + +#: ../../godmode/wizards/DiscoveryTaskList.class.php:520 +msgid "Discovery Server is disabled" +msgstr "" + +#: ../../godmode/wizards/DiscoveryTaskList.class.php:603 +msgid "Task type" +msgstr "" + +#: ../../godmode/wizards/DiscoveryTaskList.class.php:665 +msgid "This action will rescan the target networks." +msgstr "" + +#: ../../godmode/wizards/DiscoveryTaskList.class.php:682 +msgid "This task has not been completely defined, please edit it" +msgstr "" + +#: ../../godmode/wizards/DiscoveryTaskList.class.php:732 +msgid "Discovery Cloud Azure Compute" +msgstr "" + +#: ../../godmode/wizards/DiscoveryTaskList.class.php:736 +msgid "Cloud.Azure.Compute" +msgstr "" + +#: ../../godmode/wizards/DiscoveryTaskList.class.php:745 +msgid "Discovery Cloud AWS EC2" +msgstr "" + +#: ../../godmode/wizards/DiscoveryTaskList.class.php:749 +msgid "Cloud.AWS.EC2" +msgstr "" + +#: ../../godmode/wizards/DiscoveryTaskList.class.php:758 +msgid "Discovery Cloud RDS" +msgstr "" + +#: ../../godmode/wizards/DiscoveryTaskList.class.php:762 +msgid "Discovery.Cloud.Aws.RDS" +msgstr "" + +#: ../../godmode/wizards/DiscoveryTaskList.class.php:771 +msgid "Discovery Cloud S3" +msgstr "" + +#: ../../godmode/wizards/DiscoveryTaskList.class.php:775 +msgid "Discovery.Cloud.Aws.S3" +msgstr "" + +#: ../../godmode/wizards/DiscoveryTaskList.class.php:784 +msgid "Discovery Applications MySQL" +msgstr "" + +#: ../../godmode/wizards/DiscoveryTaskList.class.php:788 +msgid "Discovery.App.MySQL" +msgstr "" + +#: ../../godmode/wizards/DiscoveryTaskList.class.php:797 +msgid "Discovery Applications Oracle" +msgstr "" + +#: ../../godmode/wizards/DiscoveryTaskList.class.php:801 +msgid "Discovery.App.Oracle" +msgstr "" + +#: ../../godmode/wizards/DiscoveryTaskList.class.php:810 +msgid "Discovery Applications DB2" +msgstr "" + +#: ../../godmode/wizards/DiscoveryTaskList.class.php:814 +msgid "Discovery.App.DB2" +msgstr "" + +#: ../../godmode/wizards/DiscoveryTaskList.class.php:825 +msgid "Discovery.Agent.Deployment" +msgstr "" + +#: ../../godmode/wizards/DiscoveryTaskList.class.php:833 +msgid "Discovery Applications Microsoft SQL Server" +msgstr "" + +#: ../../godmode/wizards/DiscoveryTaskList.class.php:835 +msgid "Discovery.App.Microsoft SQL Server" +msgstr "" + +#: ../../godmode/wizards/DiscoveryTaskList.class.php:846 +msgid "Discovery NetScan" +msgstr "" + +#: ../../godmode/wizards/DiscoveryTaskList.class.php:850 +msgid "Discovery.NetScan" +msgstr "" + +#: ../../godmode/wizards/DiscoveryTaskList.class.php:896 +msgid "Not executed yet" +msgstr "" + +#: ../../godmode/wizards/DiscoveryTaskList.class.php:920 +msgid "View summary" +msgstr "" + +#: ../../godmode/wizards/DiscoveryTaskList.class.php:941 +msgid "View map" +msgstr "" + +#: ../../godmode/wizards/DiscoveryTaskList.class.php:965 +#: ../../godmode/wizards/DiscoveryTaskList.class.php:991 +msgid "Edit task" +msgstr "" + +#: ../../godmode/wizards/DiscoveryTaskList.class.php:975 +#: ../../godmode/wizards/DiscoveryTaskList.class.php:1001 +msgid "Delete task" +msgstr "" + +#: ../../godmode/wizards/DiscoveryTaskList.class.php:1014 +msgid "enable task" +msgstr "" + +#: ../../godmode/wizards/DiscoveryTaskList.class.php:1043 +msgid "has no discovery tasks assigned" +msgstr "" + +#: ../../godmode/wizards/DiscoveryTaskList.class.php:1050 +msgid "Server Tasks" +msgstr "" + +#: ../../godmode/wizards/DiscoveryTaskList.class.php:1197 +msgid "Overall Progress" +msgstr "" + +#: ../../godmode/wizards/DiscoveryTaskList.class.php:1216 +msgid "Scanning network" +msgstr "" + +#: ../../godmode/wizards/DiscoveryTaskList.class.php:1220 +msgid "Checking" +msgstr "" + +#: ../../godmode/wizards/DiscoveryTaskList.class.php:1224 +msgid "Finding AFT connectivity" +msgstr "" + +#: ../../godmode/wizards/DiscoveryTaskList.class.php:1228 +msgid "Finding traceroute connectivity" +msgstr "" + +#: ../../godmode/wizards/DiscoveryTaskList.class.php:1232 +msgid "Finding gateway connectivity" +msgstr "" + +#: ../../godmode/wizards/DiscoveryTaskList.class.php:1236 +msgid "Searching for devices..." +msgstr "" + +#: ../../godmode/wizards/DiscoveryTaskList.class.php:1240 +msgid "Analyzing application..." +msgstr "" + +#: ../../godmode/wizards/DiscoveryTaskList.class.php:1244 +msgid "Executing custom queries..." +msgstr "" + +#: ../../godmode/wizards/DiscoveryTaskList.class.php:1248 +msgid "Testing modules..." +msgstr "" + +#: ../../godmode/wizards/DiscoveryTaskList.class.php:1252 +msgid "Processing results..." +msgstr "" + +#: ../../godmode/wizards/DiscoveryTaskList.class.php:1256 +msgid "Processing..." +msgstr "" + +#: ../../godmode/wizards/DiscoveryTaskList.class.php:1289 +#: ../../godmode/wizards/DiscoveryTaskList.class.php:1853 +#: ../../operation/agentes/log_sources_status.php:57 +msgid "Review" +msgstr "" + +#: ../../godmode/wizards/DiscoveryTaskList.class.php:1369 +msgid "Host&devices total" +msgstr "" + +#: ../../godmode/wizards/DiscoveryTaskList.class.php:1374 +msgid "Agents monitored" +msgstr "" + +#: ../../godmode/wizards/DiscoveryTaskList.class.php:1379 +msgid "Agents pending" +msgstr "" + +#: ../../godmode/wizards/DiscoveryTaskList.class.php:1386 +msgid "Hosts discovered" +msgstr "" + +#: ../../godmode/wizards/DiscoveryTaskList.class.php:1402 +msgid "Responding SNMP" +msgstr "" + +#: ../../godmode/wizards/DiscoveryTaskList.class.php:1407 +msgid "Responding WMI" +msgstr "" + +#: ../../godmode/wizards/DiscoveryTaskList.class.php:1452 +msgid "Task completed." +msgstr "" + +#: ../../godmode/wizards/DiscoveryTaskList.class.php:1454 +msgid "This task has never executed" +msgstr "" + +#: ../../godmode/wizards/DiscoveryTaskList.class.php:1466 +msgid "Task queued, please wait." +msgstr "" + +#: ../../godmode/wizards/DiscoveryTaskList.class.php:1510 +msgid "" +"Please ensure instances or regions are being monitorized and 'scan and " +"general monitoring' is enabled." +msgstr "" + +#: ../../godmode/wizards/DiscoveryTaskList.class.php:1528 +#: ../../godmode/wizards/DiscoveryTaskList.class.php:1670 +msgid "Invalid task" +msgstr "" + +#: ../../godmode/wizards/DiscoveryTaskList.class.php:1627 +msgid "Please select devices to be monitored" +msgstr "" + +#: ../../godmode/wizards/DiscoveryTaskList.class.php:1630 +msgid "select all" +msgstr "" + +#: ../../godmode/wizards/DiscoveryTaskList.class.php:1633 +msgid "deselect all" +msgstr "" + +#: ../../godmode/wizards/DiscoveryTaskList.class.php:1636 +msgid "expand all" +msgstr "" + +#: ../../godmode/wizards/DiscoveryTaskList.class.php:1639 +msgid "collapse all" +msgstr "" + +#: ../../godmode/wizards/DiscoveryTaskList.class.php:1653 +msgid "No devices found in temporary resources, please re-launch." +msgstr "" + +#: ../../godmode/wizards/DiscoveryTaskList.class.php:1720 +#, php-format +msgid "Your selection exceeds the agents available on your license. Limit %d" +msgstr "" + +#: ../../godmode/wizards/DiscoveryTaskList.class.php:1744 +#: ../../godmode/wizards/DiscoveryTaskList.class.php:1763 +msgid "Removed" +msgstr "" + +#: ../../godmode/wizards/DiscoveryTaskList.class.php:1800 +msgid "No changes. Re-Scheduled" +msgstr "" + +#: ../../godmode/wizards/DiscoveryTaskList.class.php:1802 +msgid "Scheduled for creation" +msgstr "" + +#: ../../godmode/wizards/DiscoveryTaskList.class.php:1829 +msgid "Cancelled" +msgstr "" + +#: ../../godmode/wizards/DiscoveryTaskList.class.php:1830 +msgid "Server has been restarted while executing this task, please retry." +msgstr "" + +#: ../../godmode/wizards/DiscoveryTaskList.class.php:1837 +#: ../../godmode/wizards/DiscoveryTaskList.class.php:1843 +#: ../../include/help/clippy/operation_agentes_ver_agente.php:40 +#: ../../include/help/clippy/godmode_agentes_configurar_agente.php:119 +msgid "Done" +msgstr "" + +#: ../../godmode/wizards/DiscoveryTaskList.class.php:1841 +#: ../../godmode/wizards/DiscoveryTaskList.class.php:1858 +msgid "Not started" +msgstr "" + +#: ../../godmode/wizards/DiscoveryTaskList.class.php:1863 +msgid "Searching" +msgstr "" + +#: ../../godmode/servers/servers.build_table.php:118 +msgid "Server has crashed." +msgstr "" + +#: ../../godmode/servers/servers.build_table.php:126 +msgid "Server is stopped." +msgstr "" + +#: ../../godmode/servers/servers.build_table.php:138 +msgid "Exec server enabled" +msgstr "" + +#: ../../godmode/servers/servers.build_table.php:196 +msgid "Manage Discovery tasks" +msgstr "" + +#: ../../godmode/servers/servers.build_table.php:211 +msgid "Reset module status and fired alert counts" +msgstr "" + +#: ../../godmode/servers/servers.build_table.php:222 +msgid "Claim back SNMP modules" +msgstr "" + +#: ../../godmode/servers/modificar_server.php:34 +msgid "Update Server" +msgstr "" + +#: ../../godmode/servers/modificar_server.php:40 +#: ../../godmode/servers/plugin.php:346 ../../godmode/servers/plugin.php:845 +msgid "Standard" +msgstr "" + +#: ../../godmode/servers/modificar_server.php:77 +msgid "Exec Server" +msgstr "" + +#: ../../godmode/servers/modificar_server.php:85 +msgid "Leave blank to use SSH default port (22)" +msgstr "" + +#: ../../godmode/servers/modificar_server.php:90 +msgid "Check Exec Server" +msgstr "" + +#: ../../godmode/servers/modificar_server.php:106 +msgid "Credential boxes" +msgstr "" + +#: ../../godmode/servers/modificar_server.php:130 +msgid "Standard editor" +msgstr "" + +#: ../../godmode/servers/modificar_server.php:134 +msgid "Advanced editor" +msgstr "" + +#: ../../godmode/servers/modificar_server.php:141 +msgid "Remote Configuration" +msgstr "" + +#: ../../godmode/servers/modificar_server.php:150 +#, php-format +msgid "%s servers" +msgstr "" + +#: ../../godmode/servers/modificar_server.php:159 +#: ../../godmode/servers/modificar_server.php:170 +msgid "Successfully action" +msgstr "" + +#: ../../godmode/servers/modificar_server.php:201 +msgid "Server updated successfully" +msgstr "" + +#: ../../godmode/servers/modificar_server.php:203 +msgid "There was a problem updating the server" +msgstr "" + +#: ../../godmode/servers/plugin_registration.php:59 +#: ../../godmode/servers/plugin.php:290 ../../godmode/servers/plugin.php:617 +msgid "To manage plugin you must activate centralized management" +msgstr "" + +#: ../../godmode/servers/plugin_registration.php:65 +msgid "PLUGIN REGISTRATION" +msgstr "" + +#: ../../godmode/servers/plugin_registration.php:76 +#, php-format +msgid "" +"This console is not manager of this environment, please manage this feature " +"from feature from %s." +msgstr "" + +#: ../../godmode/servers/plugin_registration.php:95 +msgid "Plugin Registration" +msgstr "" + +#: ../../godmode/servers/plugin_registration.php:103 +msgid "You can get more plugins in our" +msgstr "" + +#: ../../godmode/servers/plugin_registration.php:105 +msgid "Public Resource Library" +msgstr "" + +#: ../../godmode/servers/plugin_registration.php:133 +msgid "Failed to create temporary directory" +msgstr "" + +#: ../../godmode/servers/plugin_registration.php:152 +msgid "Cannot load INI file" +msgstr "" + +#: ../../godmode/servers/plugin_registration.php:177 +msgid "Plugin exec not found. Aborting!" +msgstr "" + +#: ../../godmode/servers/plugin_registration.php:188 +msgid "Plugin already registered. Aborting!" +msgstr "" + +#: ../../godmode/servers/plugin_registration.php:355 +msgid "Plug-in Remote Registered unsuccessfull" +msgstr "" + +#: ../../godmode/servers/plugin_registration.php:358 +msgid "Please check the syntax of file \"plugin_definition.ini\"" +msgstr "" + +#: ../../godmode/servers/plugin_registration.php:498 +msgid "Module plugin registered" +msgstr "" + +#: ../../godmode/servers/plugin_registration.php:503 +msgid "Registered successfully" +msgstr "" + +#: ../../godmode/servers/plugin_registration.php:516 +msgid "Unable to uncompress uploaded file" +msgstr "" + +#: ../../godmode/servers/plugin_registration.php:534 +#, php-format +msgid "Cannot move uploaded file to %s." +msgstr "" + +#: ../../godmode/servers/plugin.php:73 +msgid "Network Components" +msgstr "" + +#: ../../godmode/servers/plugin.php:303 +msgid "Plugin update" +msgstr "" + +#: ../../godmode/servers/plugin.php:314 ../../godmode/servers/plugin.php:636 +msgid "" +"This console is not manager of this environment,\n" +" \t\tplease manage this feature from centralized manager console " +"(Metaconsole)." +msgstr "" + +#: ../../godmode/servers/plugin.php:345 +msgid "Plugin type" +msgstr "" + +#: ../../godmode/servers/plugin.php:347 ../../godmode/servers/plugin.php:847 +msgid "Nagios" +msgstr "" + +#: ../../godmode/servers/plugin.php:352 +msgid "Max. timeout" +msgstr "" + +#: ../../godmode/servers/plugin.php:352 +msgid "" +"This value only will be applied if is minor than the server general " +"configuration plugin timeout" +msgstr "" + +#: ../../godmode/servers/plugin.php:352 +msgid "If you set a 0 seconds timeout, the server plugin timeout will be used" +msgstr "" + +#: ../../godmode/servers/plugin.php:401 +msgid "Plugin command" +msgstr "" + +#: ../../godmode/servers/plugin.php:401 +msgid "" +"Specify interpreter and plugin path. The server needs permissions to run it." +msgstr "" + +#: ../../godmode/servers/plugin.php:413 +msgid "Plug-in parameters" +msgstr "" + +#: ../../godmode/servers/plugin.php:505 +#: ../../include/class/ManageNetScanScripts.class.php:667 +msgid "Hide value" +msgstr "" + +#: ../../godmode/servers/plugin.php:506 +#: ../../include/class/ManageNetScanScripts.class.php:669 +msgid "This field will show up as dots like a password" +msgstr "" + +#: ../../godmode/servers/plugin.php:581 ../../godmode/servers/plugin.php:586 +msgid "Parameters macros" +msgstr "" + +#: ../../godmode/servers/plugin.php:623 +#, php-format +msgid "Plug-ins registered on %s" +msgstr "" + +#: ../../godmode/servers/plugin.php:645 +msgid "You need to create your own plugins with Windows compatibility" +msgstr "" + +#: ../../godmode/servers/plugin.php:711 +msgid "Problem updating plugin" +msgstr "" + +#: ../../godmode/servers/plugin.php:713 +msgid "Plugin updated successfully" +msgstr "" + +#: ../../godmode/servers/plugin.php:771 +msgid "Problem creating plugin" +msgstr "" + +#: ../../godmode/servers/plugin.php:773 +msgid "Plugin created successfully" +msgstr "" + +#: ../../godmode/servers/plugin.php:785 +msgid "Problem deleting plugin" +msgstr "" + +#: ../../godmode/servers/plugin.php:787 ../../godmode/servers/plugin.php:799 +msgid "Plugin deleted successfully" +msgstr "" + +#: ../../godmode/servers/plugin.php:884 +msgid "All the modules that are using this plugin will be deleted" +msgstr "" + +#: ../../godmode/servers/plugin.php:901 +msgid "There are no plugins in the system" +msgstr "" + +#: ../../godmode/servers/plugin.php:915 +#, php-format +msgid "List of modules and components created by \"%s\" " +msgstr "" + +#: ../../godmode/servers/plugin.php:1021 ../../godmode/servers/plugin.php:1037 +msgid "Some modules or components are using the plugin" +msgstr "" + +#: ../../godmode/servers/plugin.php:1022 +msgid "" +"The modules or components should be updated manually or using the bulk " +"operations for plugins after this change" +msgstr "" + +#: ../../godmode/servers/plugin.php:1024 +msgid "Are you sure you want to perform this action?" +msgstr "" + +#: ../../godmode/servers/plugin.php:1038 +msgid "Are you sure you want to unlock this item?" +msgstr "" + +#: ../../godmode/servers/plugin.php:1058 +msgid "" +"The plugin command cannot be updated because some modules or components are " +"using the plugin." +msgstr "" + +#: ../../godmode/servers/plugin.php:1064 +msgid "" +"The plugin macros cannot be updated because some modules or components are " +"using the plugin" +msgstr "" + +#: ../../godmode/servers/discovery.php:182 +msgid "You must create a task first" +msgstr "" + +#: ../../godmode/tag/tag.php:117 +msgid "Number of modules" +msgstr "" + +#: ../../godmode/tag/tag.php:119 +msgid "Number of policy modules" +msgstr "" + +#: ../../godmode/tag/tag.php:140 ../../godmode/tag/edit_tag.php:57 +#: ../../godmode/tag/edit_tag.php:75 +msgid "List tags" +msgstr "" + +#: ../../godmode/tag/tag.php:152 ../../godmode/tag/edit_tag.php:85 +msgid "Tags configuration" +msgstr "" + +#: ../../godmode/tag/tag.php:178 +msgid "Successfully deleted tag" +msgstr "" + +#: ../../godmode/tag/tag.php:179 +msgid "Error deleting tag" +msgstr "" + +#: ../../godmode/tag/tag.php:195 +#, php-format +msgid "" +"This node is configured with centralized mode. All tags information is read " +"only. Go to %s to manage it." +msgstr "" + +#: ../../godmode/tag/tag.php:277 +msgid "Tag name" +msgstr "" + +#: ../../godmode/tag/tag.php:279 +msgid "Detail information" +msgstr "" + +#: ../../godmode/tag/tag.php:280 +msgid "Number of modules affected" +msgstr "" + +#: ../../godmode/tag/tag.php:282 ../../godmode/tag/edit_tag.php:251 +msgid "Phone" +msgstr "" + +#: ../../godmode/tag/tag.php:311 +msgid "Tag details" +msgstr "" + +#: ../../godmode/tag/tag.php:344 +#, php-format +msgid "Emails for the tag: %s" +msgstr "" + +#: ../../godmode/tag/tag.php:367 +#, php-format +msgid "Phones for the tag: %s" +msgstr "" + +#: ../../godmode/tag/tag.php:413 +msgid "No tags defined" +msgstr "" + +#: ../../godmode/tag/tag.php:428 +msgid "Create tag" +msgstr "" + +#: ../../godmode/tag/edit_tag.php:128 +msgid "Successfully updated tag" +msgstr "" + +#: ../../godmode/tag/edit_tag.php:129 +msgid "Error updating tag" +msgstr "" + +#: ../../godmode/tag/edit_tag.php:169 +msgid "Successfully created tag" +msgstr "" + +#: ../../godmode/tag/edit_tag.php:170 +msgid "Error creating tag" +msgstr "" + +#: ../../godmode/tag/edit_tag.php:201 +msgid "Update Tag" +msgstr "" + +#: ../../godmode/tag/edit_tag.php:205 +msgid "Create Tag" +msgstr "" + +#: ../../godmode/tag/edit_tag.php:229 +msgid "Hyperlink to help information that has to exist previously." +msgstr "" + +#: ../../godmode/tag/edit_tag.php:241 +msgid "Associated Email direction to use later in alerts associated to Tags." +msgstr "" + +#: ../../godmode/tag/edit_tag.php:253 +msgid "Associated phone number to use later in alerts associated to Tags." +msgstr "" + +#: ../../godmode/category/category.php:63 +#: ../../godmode/category/category.php:77 +#: ../../godmode/category/edit_category.php:47 +#: ../../godmode/category/edit_category.php:61 +msgid "List categories" +msgstr "" + +#: ../../godmode/category/category.php:89 +#: ../../godmode/category/category.php:91 +#: ../../godmode/category/edit_category.php:73 +#: ../../godmode/category/edit_category.php:75 +msgid "Categories configuration" +msgstr "" + +#: ../../godmode/category/category.php:108 +#, php-format +msgid "" +"This node is configured with centralized mode. All categories information is " +"read only. Go to %s to manage it." +msgstr "" + +#: ../../godmode/category/category.php:123 +msgid "Error deleting category" +msgstr "" + +#: ../../godmode/category/category.php:129 +msgid "Successfully deleted category" +msgstr "" + +#: ../../godmode/category/category.php:168 +msgid "Category name" +msgstr "" + +#: ../../godmode/category/category.php:226 +msgid "No categories found" +msgstr "" + +#: ../../godmode/category/category.php:239 +#: ../../godmode/category/edit_category.php:171 +msgid "Create category" +msgstr "" + +#: ../../godmode/category/edit_category.php:73 +msgid "Editor" +msgstr "" + +#: ../../godmode/category/edit_category.php:95 +msgid "Error updating category" +msgstr "" + +#: ../../godmode/category/edit_category.php:101 +msgid "Successfully updated category" +msgstr "" + +#: ../../godmode/category/edit_category.php:123 +msgid "Error creating category" +msgstr "" + +#: ../../godmode/category/edit_category.php:131 +msgid "Successfully created category" +msgstr "" + +#: ../../godmode/category/edit_category.php:163 +msgid "Update category" +msgstr "" + +#: ../../godmode/module_library/module_library_view.php:68 +msgid "Main view" +msgstr "" + +#: ../../godmode/module_library/module_library_view.php:147 +msgid "View all categories" +msgstr "" + +#: ../../godmode/module_library/module_library_view.php:158 +msgid "More details" +msgstr "" + +#: ../../godmode/module_library/module_library_view.php:160 +msgid "View in Module Library" +msgstr "" + +#: ../../godmode/module_library/module_library_view.php:161 +msgid "No module found" +msgstr "" + +#: ../../godmode/module_library/module_library_view.php:164 +msgid "Error loading Module Library" +msgstr "" + +#: ../../godmode/module_library/module_library_view.php:165 +msgid "Error loading category" +msgstr "" + +#: ../../godmode/module_library/module_library_view.php:166 +msgid "Error loading categories" +msgstr "" + +#: ../../godmode/module_library/module_library_view.php:167 +msgid "There is no such category" +msgstr "" + +#: ../../godmode/module_library/module_library_view.php:168 +msgid "Error loading results" +msgstr "" + +#: ../../mobile/include/functions_web.php:83 +#, php-format +msgid "Pandora FMS %s - Build %s" +msgstr "" + +#: ../../mobile/include/system.class.php:156 +msgid "" +"Access to this page is restricted to authorized users only, please contact " +"your system administrator if you should need help." +msgstr "" + +#: ../../mobile/include/system.class.php:156 +#, php-format +msgid "" +"Please remember that any attempts to access this page will be recorded on " +"the %s System Database." +msgstr "" + +#: ../../mobile/include/ui.class.php:120 +#, php-format +msgid "%s mobile" +msgstr "" + +#: ../../mobile/include/ui.class.php:217 +#, php-format +msgid "%s : Mobile" +msgstr "" + +#: ../../mobile/include/ui.class.php:239 ../../mobile/operation/home.php:161 +msgid "Home" +msgstr "" + +#: ../../mobile/include/ui.class.php:327 +#, php-format +msgid "%s %s - Build %s" +msgstr "" + +#: ../../mobile/include/ui.class.php:773 +msgid "Not found header." +msgstr "" + +#: ../../mobile/include/ui.class.php:775 +msgid "Not found content." +msgstr "" + +#: ../../mobile/include/ui.class.php:777 +msgid "Not found footer." +msgstr "" + +#: ../../mobile/include/ui.class.php:779 +msgid "Incorrect form." +msgstr "" + +#: ../../mobile/include/ui.class.php:781 +msgid "Incorrect grid." +msgstr "" + +#: ../../mobile/include/ui.class.php:783 +msgid "Incorrect collapsible." +msgstr "" + +#: ../../mobile/include/user.class.php:171 +msgid "User cannot log in into this console, please contact administrator" +msgstr "" + +#: ../../mobile/include/user.class.php:287 +#: ../../mobile/include/user.class.php:302 +#: ../../mobile/include/user.class.php:309 +msgid "Double authentication failed" +msgstr "" + +#: ../../mobile/include/user.class.php:288 +msgid "Secret code not found" +msgstr "" + +#: ../../mobile/include/user.class.php:288 +msgid "Please contact the administrator to reset your double authentication" +msgstr "" + +#: ../../mobile/include/user.class.php:310 +msgid "There was an error checking the code" +msgstr "" + +#: ../../mobile/include/user.class.php:351 +msgid "Login Failed" +msgstr "" + +#: ../../mobile/include/user.class.php:355 +msgid "User not found in database or incorrect password." +msgstr "" + +#: ../../mobile/include/user.class.php:364 +msgid "Login out" +msgstr "" + +#: ../../mobile/include/user.class.php:395 +msgid "user" +msgstr "" + +#: ../../mobile/include/user.class.php:402 +msgid "password" +msgstr "" + +#: ../../mobile/include/user.class.php:491 +#: ../../mobile/include/user.class.php:492 +msgid "Authenticator code" +msgstr "" + +#: ../../mobile/operation/agents.php:218 +#, php-format +msgid "Filter Agents by %s" +msgstr "" + +#: ../../mobile/operation/agents.php:260 ../../mobile/operation/modules.php:325 +#: ../../mobile/operation/alerts.php:266 ../../mobile/operation/events.php:1009 +msgid "Apply Filter" +msgstr "" + +#: ../../mobile/operation/agents.php:454 +msgid "No agents" +msgstr "" + +#: ../../mobile/operation/agents.php:550 ../../mobile/operation/modules.php:885 +#: ../../mobile/operation/alerts.php:379 ../../mobile/operation/events.php:1450 +msgid "(Default)" +msgstr "" + +#: ../../mobile/operation/agents.php:556 ../../mobile/operation/modules.php:891 +#: ../../mobile/operation/alerts.php:392 ../../mobile/operation/events.php:1483 +#, php-format +msgid "Group: %s" +msgstr "" + +#: ../../mobile/operation/agents.php:563 ../../mobile/operation/modules.php:913 +#: ../../mobile/operation/alerts.php:399 ../../mobile/operation/events.php:1503 +#, php-format +msgid "Status: %s" +msgstr "" + +#: ../../mobile/operation/agents.php:570 ../../mobile/operation/modules.php:920 +#: ../../mobile/operation/alerts.php:406 +#, php-format +msgid "Free Search: %s" +msgstr "" + +#: ../../mobile/operation/modules.php:250 +#, php-format +msgid "Filter Modules by %s" +msgstr "" + +#: ../../mobile/operation/modules.php:659 +msgid "Interval." +msgstr "" + +#: ../../mobile/operation/modules.php:661 +msgid "Last update." +msgstr "" + +#: ../../mobile/operation/modules.php:906 +#, php-format +msgid "Module group: %s" +msgstr "" + +#: ../../mobile/operation/modules.php:928 +#, php-format +msgid "Tag: %s" +msgstr "" + +#: ../../mobile/operation/home.php:66 ../../mobile/operation/visualmaps.php:184 +#: ../../operation/search_results.php:145 ../../operation/search_main.php:70 +msgid "Visual consoles" +msgstr "" + +#: ../../mobile/operation/agent.php:162 +msgid "No agent found" +msgstr "" + +#: ../../mobile/operation/agent.php:238 +msgid "Modules by status" +msgstr "" + +#: ../../mobile/operation/agent.php:268 +#: ../../include/functions_treeview.php:831 +msgid "Events (24h)" +msgstr "" + +#: ../../mobile/operation/agent.php:369 +#, php-format +msgid "Last %s Events" +msgstr "" + +#: ../../mobile/operation/alerts.php:208 +#, php-format +msgid "Filter Alerts by %s" +msgstr "" + +#: ../../mobile/operation/alerts.php:346 +msgid "Last Fired" +msgstr "" + +#: ../../mobile/operation/alerts.php:357 ../../include/ajax/events.php:2434 +msgid "No alerts" +msgstr "" + +#: ../../mobile/operation/alerts.php:385 +#, php-format +msgid "Standby: %s" +msgstr "" + +#: ../../mobile/operation/visualmaps.php:242 +msgid "All visual consoles" +msgstr "" + +#: ../../mobile/operation/visualmaps.php:254 +msgid "Favourite visual consoles" +msgstr "" + +#: ../../mobile/operation/visualmaps.php:263 +msgid "No maps defined" +msgstr "" + +#: ../../mobile/operation/module_graph.php:359 +#: ../../mobile/operation/module_graph.php:372 +#, php-format +msgid "%s: %s" +msgstr "" + +#: ../../mobile/operation/module_graph.php:405 +#, php-format +msgid "Options for %s : %s" +msgstr "" + +#: ../../mobile/operation/module_graph.php:412 +msgid "Show Alerts" +msgstr "" + +#: ../../mobile/operation/module_graph.php:420 +msgid "Show Events" +msgstr "" + +#: ../../mobile/operation/module_graph.php:428 +#: ../../operation/agentes/stat_win.php:377 +#: ../../operation/agentes/stat_win.php:439 +msgid "Time compare (Separated)" +msgstr "" + +#: ../../mobile/operation/module_graph.php:444 +#: ../../operation/agentes/stat_win.php:317 +msgid "Show unknown graph" +msgstr "" + +#: ../../mobile/operation/module_graph.php:449 +msgid "Time range (hours)" +msgstr "" + +#: ../../mobile/operation/module_graph.php:461 +#: ../../operation/agentes/stat_win.php:289 +#: ../../operation/agentes/stat_win.php:408 +#: ../../operation/agentes/interface_traffic_graph_win.php:181 +#: ../../operation/agentes/graphs.php:207 +#: ../../operation/agentes/exportdata.php:318 +msgid "Begin date" +msgstr "" + +#: ../../mobile/operation/module_graph.php:468 +msgid "Update graph" +msgstr "" + +#: ../../mobile/operation/module_graph.php:478 +msgid "Error get the graph" +msgstr "" + +#: ../../mobile/operation/events.php:450 +#: ../../include/functions_reporting_html.php:1104 +#: ../../include/functions_reporting_html.php:1355 +#: ../../include/functions_reporting_html.php:2456 +#: ../../include/functions_events.php:2404 +#: ../../include/functions_events.php:4362 +#: ../../operation/events/events.php:689 +msgid "New event" +msgstr "" + +#: ../../mobile/operation/events.php:455 +#: ../../include/functions_reporting_html.php:1093 +#: ../../include/functions_reporting_html.php:1360 +#: ../../include/functions_reporting_html.php:2461 +#: ../../include/functions_events.php:2409 +#: ../../include/functions_events.php:4368 +#: ../../operation/events/events.php:702 +msgid "Event validated" +msgstr "" + +#: ../../mobile/operation/events.php:460 +#: ../../include/functions_reporting_html.php:1098 +#: ../../include/functions_reporting_html.php:1365 +#: ../../include/functions_reporting_html.php:2466 +#: ../../include/functions_events.php:2414 +#: ../../include/functions_events.php:4374 +#: ../../operation/events/events.php:714 +msgid "Event in process" +msgstr "" + +#: ../../mobile/operation/events.php:768 +msgid "ERROR: Event detail" +msgstr "" + +#: ../../mobile/operation/events.php:769 +msgid "Error connecting to DB." +msgstr "" + +#: ../../mobile/operation/events.php:789 +msgid "Event detail" +msgstr "" + +#: ../../mobile/operation/events.php:800 +#: ../../include/functions_events.php:4515 +msgid "Event ID" +msgstr "" + +#: ../../mobile/operation/events.php:828 +#: ../../include/functions_events.php:4617 +msgid "Acknowledged by" +msgstr "" + +#: ../../mobile/operation/events.php:878 +msgid "Sucessful validate" +msgstr "" + +#: ../../mobile/operation/events.php:880 +msgid "Fail validate" +msgstr "" + +#: ../../mobile/operation/events.php:924 +#, php-format +msgid "Filter Events by %s" +msgstr "" + +#: ../../mobile/operation/events.php:934 ../../mobile/operation/events.php:935 +msgid "Preset Filters" +msgstr "" + +#: ../../mobile/operation/events.php:1144 +#: ../../include/functions_reporting_html.php:5976 +#: ../../include/functions_reporting_html.php:6135 +#: ../../include/functions_reporting.php:2131 +#: ../../include/functions_reporting.php:2421 +#: ../../include/functions_events.php:2328 +#: ../../include/functions_events.php:2331 +msgid "No events" +msgstr "" + +#: ../../mobile/operation/events.php:1455 +#, php-format +msgid "Filter: %s" +msgstr "" + +#: ../../mobile/operation/events.php:1467 +#, php-format +msgid "Severity: %s" +msgstr "" + +#: ../../mobile/operation/events.php:1496 +#, php-format +msgid "Type: %s" +msgstr "" + +#: ../../mobile/operation/events.php:1510 +#, php-format +msgid "Free search: %s" +msgstr "" + +#: ../../mobile/operation/events.php:1517 +#, php-format +msgid "Hours: %s" +msgstr "" + +#: ../../mobile/operation/tactical.php:216 +msgid "Last activity" +msgstr "" + +#: ../../include/functions_visual_map_editor.php:62 +msgid "" +"To use 'label'field, you should write\n" +"\t\t\t\t\ta text to replace '(_VALUE_)' and the value of the module will be " +"printed at the end." +msgstr "" + +#: ../../include/functions_visual_map_editor.php:107 +#: ../../include/functions_visual_map_editor.php:133 +#: ../../include/rest-api/models/VisualConsole/Items/Box.php:299 +msgid "Border color" +msgstr "" + +#: ../../include/functions_visual_map_editor.php:151 +msgid "Border width" +msgstr "" + +#: ../../include/functions_visual_map_editor.php:160 +#: ../../include/rest-api/models/VisualConsole/Items/Box.php:323 +#: ../../include/rest-api/models/VisualConsole/Items/Clock.php:364 +msgid "Fill color" +msgstr "" + +#: ../../include/functions_visual_map_editor.php:239 +msgid "" +"Scroll the mouse wheel over the label editor to change the background color" +msgstr "" + +#: ../../include/functions_visual_map_editor.php:255 +#: ../../include/rest-api/models/VisualConsole/Items/Clock.php:333 +msgid "Clock animation" +msgstr "" + +#: ../../include/functions_visual_map_editor.php:258 +#: ../../include/rest-api/models/VisualConsole/Items/Clock.php:328 +msgid "Simple analogic" +msgstr "" + +#: ../../include/functions_visual_map_editor.php:259 +#: ../../include/rest-api/models/VisualConsole/Items/Clock.php:329 +msgid "Simple digital" +msgstr "" + +#: ../../include/functions_visual_map_editor.php:273 +#: ../../include/rest-api/models/VisualConsole/Items/Clock.php:351 +msgid "Time format" +msgstr "" + +#: ../../include/functions_visual_map_editor.php:276 +#: ../../include/rest-api/models/VisualConsole/Items/Clock.php:346 +msgid "Only time" +msgstr "" + +#: ../../include/functions_visual_map_editor.php:277 +#: ../../include/rest-api/models/VisualConsole/Items/Clock.php:347 +msgid "Time and date" +msgstr "" + +#: ../../include/functions_visual_map_editor.php:313 +#: ../../include/rest-api/models/VisualConsole/Items/Clock.php:302 +msgid "Time zone" +msgstr "" + +#: ../../include/functions_visual_map_editor.php:329 +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 +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 +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 +msgid "Transparent" +msgstr "" + +#: ../../include/functions_visual_map_editor.php:378 +#: ../../include/rest-api/models/VisualConsole/Items/BarsGraph.php:499 +msgid "Grid color" +msgstr "" + +#: ../../include/functions_visual_map_editor.php:498 +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 +msgid "24h" +msgstr "" + +#: ../../include/functions_visual_map_editor.php:518 +#: ../../include/rest-api/models/VisualConsole/Items/EventsHistory.php:271 +msgid "8h" +msgstr "" + +#: ../../include/functions_visual_map_editor.php:519 +#: ../../include/rest-api/models/VisualConsole/Items/EventsHistory.php:272 +msgid "2h" +msgstr "" + +#: ../../include/functions_visual_map_editor.php:520 +#: ../../include/rest-api/models/VisualConsole/Items/EventsHistory.php:273 +msgid "1h" +msgstr "" + +#: ../../include/functions_visual_map_editor.php:524 +#: ../../include/rest-api/models/VisualConsole/Items/EventsHistory.php:277 +msgid "Max. Time" +msgstr "" + +#: ../../include/functions_visual_map_editor.php:640 +msgid "Original Size" +msgstr "" + +#: ../../include/functions_visual_map_editor.php:648 +msgid "Aspect ratio" +msgstr "" + +#: ../../include/functions_visual_map_editor.php:649 +msgid "Proportional Width" +msgstr "" + +#: ../../include/functions_visual_map_editor.php:657 +msgid "Height proportional" +msgstr "" + +#: ../../include/functions_visual_map_editor.php:688 +#: ../../include/rest-api/models/VisualConsole/Items/Percentile.php:460 +msgid "Circular porgress bar" +msgstr "" + +#: ../../include/functions_visual_map_editor.php:689 +#: ../../include/functions_visual_map.php:4239 +#: ../../include/rest-api/models/VisualConsole/Items/Percentile.php:462 +#: ../../include/rest-api/models/VisualConsole/Item.php:2127 +msgid "Circular progress bar (interior)" +msgstr "" + +#: ../../include/functions_visual_map_editor.php:739 +#: ../../include/rest-api/models/VisualConsole/Items/Percentile.php:522 +msgid "Element color" +msgstr "" + +#: ../../include/functions_visual_map_editor.php:759 +#: ../../include/rest-api/models/VisualConsole/Items/Percentile.php:534 +msgid "Value color" +msgstr "" + +#: ../../include/functions_visual_map_editor.php:801 +msgid "Diameter" +msgstr "" + +#: ../../include/functions_visual_map_editor.php:808 +#: ../../include/rest-api/models/VisualConsole/Items/ColorCloud.php:426 +msgid "Default color" +msgstr "" + +#: ../../include/functions_visual_map_editor.php:812 +msgid "" +"The color of the element will be the one selected in the first range created " +"in which the value of the module is found (with the initial and final values " +"of the range included)" +msgstr "" + +#: ../../include/functions_visual_map_editor.php:815 +msgid "Ranges" +msgstr "" + +#: ../../include/functions_visual_map_editor.php:815 +msgid "From value" +msgstr "" + +#: ../../include/functions_visual_map_editor.php:815 +msgid "To value" +msgstr "" + +#: ../../include/functions_visual_map_editor.php:815 +#: ../../include/rest-api/index.php:363 +#: ../../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 +#: ../../include/rest-api/models/VisualConsole/Items/NetworkLink.php:938 +msgid "Color" +msgstr "" + +#: ../../include/functions_visual_map_editor.php:820 +msgid "Always show on top" +msgstr "" + +#: ../../include/functions_visual_map_editor.php:821 +msgid "" +"It allows the element to be superimposed to the rest of items of the visual " +"console" +msgstr "" + +#: ../../include/functions_visual_map_editor.php:824 +#: ../../include/rest-api/models/VisualConsole/Items/StaticGraph.php:404 +msgid "Hide last value on boolean modules" +msgstr "" + +#: ../../include/functions_visual_map_editor.php:830 +msgid "Show last value" +msgstr "" + +#: ../../include/functions_visual_map_editor.php:934 +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:2433 +msgid "Linked visual console" +msgstr "" + +#: ../../include/functions_visual_map_editor.php:1081 +#: ../../include/rest-api/models/VisualConsole/Item.php:2484 +msgid "By status weight" +msgstr "" + +#: ../../include/functions_visual_map_editor.php:1082 +#: ../../include/rest-api/models/VisualConsole/Item.php:2485 +msgid "By critical elements" +msgstr "" + +#: ../../include/functions_visual_map_editor.php:1097 +#: ../../include/rest-api/models/VisualConsole/Item.php:2492 +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:2483 +msgid "By default" +msgstr "" + +#: ../../include/functions_visual_map_editor.php:1122 +#: ../../include/rest-api/models/VisualConsole/Item.php:2508 +msgid "Linked visual console weight" +msgstr "" + +#: ../../include/functions_visual_map_editor.php:1189 +msgid "Lines haven't advanced options" +msgstr "" + +#: ../../include/functions_visual_map_editor.php:1206 +#: ../../include/rest-api/models/VisualConsole/Item.php:2188 +msgid "Restrict access to group" +msgstr "" + +#: ../../include/functions_visual_map_editor.php:1217 +msgid "" +"If selected, restrict visualization of this item in the visual console to " +"users who have access to selected group. This is also used on calculating " +"child visual consoles." +msgstr "" + +#: ../../include/functions_visual_map_editor.php:1248 +#: ../../include/rest-api/models/VisualConsole/Item.php:2201 +msgid "Cache expiration" +msgstr "" + +#: ../../include/functions_visual_map_editor.php:1287 +msgid "Click start point
    of the line" +msgstr "" + +#: ../../include/functions_visual_map_editor.php:1290 +msgid "Click end point
    of the line" +msgstr "" + +#: ../../include/functions_visual_map_editor.php:1390 +#: ../../operation/visual_console/view.php:316 +msgid "Serialized pie graph" +msgstr "" + +#: ../../include/functions_visual_map_editor.php:1391 +#: ../../operation/visual_console/view.php:321 +msgid "Bars Graph" +msgstr "" + +#: ../../include/functions_visual_map_editor.php:1420 +msgid "Show grid" +msgstr "" + +#: ../../include/functions_visual_map_editor.php:1422 +msgid "Delete item" +msgstr "" + +#: ../../include/functions_visual_map_editor.php:1423 +msgid "Copy item" +msgstr "" + +#: ../../include/functions_visual_map_editor.php:1463 +#: ../../include/functions_visual_map_editor.php:1467 +#: ../../include/functions_visual_map_editor.php:1471 +#: ../../include/functions_visual_map_editor.php:1475 +#: ../../include/functions_visual_map_editor.php:1479 +#: ../../include/functions_visual_map_editor.php:1483 +#: ../../include/functions_visual_map_editor.php:1487 +#: ../../include/functions_visual_map_editor.php:1491 +#: ../../include/functions_visual_map_editor.php:1495 +#: ../../include/functions_visual_map_editor.php:1499 +#: ../../include/functions_visual_map_editor.php:1503 +#: ../../include/functions_visual_map_editor.php:1507 +#: ../../include/functions_visual_map_editor.php:1511 +#: ../../include/functions_visual_map_editor.php:1515 +#: ../../include/functions_visual_map_editor.php:1519 +#: ../../include/functions_visual_map_editor.php:1523 +#: ../../include/functions_visual_map_editor.php:1527 +#: ../../include/functions_visual_map_editor.php:1531 +#: ../../include/functions_visual_map_editor.php:1535 +msgid "Visual Console Builder Information" +msgstr "" + +#: ../../include/functions_visual_map_editor.php:1464 +msgid "Min allowed size is 1024x768." +msgstr "" + +#: ../../include/functions_visual_map_editor.php:1468 +#: ../../include/functions_visual_map_editor.php:1536 +msgid "No custom graph defined." +msgstr "" + +#: ../../include/functions_visual_map_editor.php:1472 +msgid "No image or name defined." +msgstr "" + +#: ../../include/functions_visual_map_editor.php:1476 +msgid "No label defined." +msgstr "" + +#: ../../include/functions_visual_map_editor.php:1480 +msgid "No service defined." +msgstr "" + +#: ../../include/functions_visual_map_editor.php:1484 +msgid "No image defined." +msgstr "" + +#: ../../include/functions_visual_map_editor.php:1488 +msgid "No process defined." +msgstr "" + +#: ../../include/functions_visual_map_editor.php:1492 +msgid "No Max value defined." +msgstr "" + +#: ../../include/functions_visual_map_editor.php:1496 +msgid "No width defined." +msgstr "" + +#: ../../include/functions_visual_map_editor.php:1500 +msgid "No height defined." +msgstr "" + +#: ../../include/functions_visual_map_editor.php:1504 +msgid "The width must not exceed the size of the visual console container." +msgstr "" + +#: ../../include/functions_visual_map_editor.php:1508 +msgid "The height must not exceed the size of the visual console container." +msgstr "" + +#: ../../include/functions_visual_map_editor.php:1512 +msgid "No period defined." +msgstr "" + +#: ../../include/functions_visual_map_editor.php:1516 +msgid "No agent defined." +msgstr "" + +#: ../../include/functions_visual_map_editor.php:1520 +msgid "No module defined." +msgstr "" + +#: ../../include/functions_visual_map_editor.php:1524 +msgid "No module defined. This module must be string type." +msgstr "" + +#: ../../include/functions_visual_map_editor.php:1528 +msgid "Successfully save the changes." +msgstr "" + +#: ../../include/functions_visual_map_editor.php:1532 +msgid "Could not be save." +msgstr "" + +#: ../../include/graphs/export_data.php:88 +#: ../../include/graphs/export_data.php:154 +msgid "An error occured exporting the data" +msgstr "" + +#: ../../include/graphs/functions_gd.php:183 +#: ../../include/graphs/functions_gd.php:466 +#: ../../include/functions_graph.php:2903 +#: ../../include/functions_graph.php:2951 +msgid "Out of limits" +msgstr "" + +#: ../../include/graphs/functions_flot.php:365 +msgid "Cancel zoom" +msgstr "" + +#: ../../include/graphs/functions_flot.php:367 +msgid "Warning and Critical thresholds" +msgstr "" + +#: ../../include/graphs/functions_flot.php:372 +msgid "Overview graph" +msgstr "" + +#: ../../include/graphs/functions_flot.php:509 +#: ../../include/functions_reporting_html.php:655 +#: ../../include/functions_reporting_html.php:4461 +#: ../../include/functions_treeview.php:315 +msgid "No data" +msgstr "" + +#: ../../include/functions_servers.php:582 +msgid "SNMP Trap server" +msgstr "" + +#: ../../include/functions_servers.php:699 +msgid "Correlation server" +msgstr "" + +#: ../../include/functions_servers.php:712 +#: ../../include/functions_servers.php:1314 +msgid "Enterprise ICMP server" +msgstr "" + +#: ../../include/functions_servers.php:725 +#: ../../include/functions_servers.php:1317 +msgid "Enterprise SNMP server" +msgstr "" + +#: ../../include/functions_servers.php:738 +#: ../../include/class/AgentWizard.class.php:1267 +msgid "Enterprise Satellite server" +msgstr "" + +#: ../../include/functions_servers.php:751 +msgid "Enterprise Transactional server" +msgstr "" + +#: ../../include/functions_servers.php:764 +msgid "Mainframe server" +msgstr "" + +#: ../../include/functions_servers.php:777 +msgid "Sync server" +msgstr "" + +#: ../../include/functions_servers.php:790 +msgid "Wux server" +msgstr "" + +#: ../../include/functions_servers.php:803 +#: ../../include/functions_servers.php:1344 +msgid "Log server" +msgstr "" + +#: ../../include/functions_servers.php:829 +msgid "Autoprovision server" +msgstr "" + +#: ../../include/functions_servers.php:842 +msgid "Migration server" +msgstr "" + +#: ../../include/functions_servers.php:1323 +msgid "Prediction Server" +msgstr "" + +#: ../../include/functions_servers.php:1350 +msgid "Satellite server" +msgstr "" + +#: ../../include/functions_servers.php:1353 +msgid "Transactional server" +msgstr "" + +#: ../../include/functions_reporting_html.php:109 +msgid "Label: " +msgstr "" + +#: ../../include/functions_reporting_html.php:580 +msgid "Time Failed" +msgstr "" + +#: ../../include/functions_reporting_html.php:584 +msgid "Downtime" +msgstr "" + +#: ../../include/functions_reporting_html.php:995 +#: ../../include/functions_reporting_html.php:2298 +#: ../../include/functions_reporting_html.php:4343 +#: ../../include/functions_reporting_html.php:4880 +#: ../../include/rest-api/models/VisualConsole/Items/SimpleValue.php:367 +msgid "Min Value" +msgstr "" + +#: ../../include/functions_reporting_html.php:996 +#: ../../include/functions_reporting_html.php:2299 +#: ../../include/functions_reporting_html.php:4344 +#: ../../include/functions_reporting_html.php:4881 +msgid "Average Value" +msgstr "" + +#: ../../include/functions_reporting_html.php:997 +#: ../../include/functions_reporting_html.php:2300 +#: ../../include/functions_reporting_html.php:4341 +#: ../../include/functions_reporting_html.php:4883 +#: ../../include/rest-api/models/VisualConsole/Items/SimpleValue.php:366 +msgid "Max Value" +msgstr "" + +#: ../../include/functions_reporting_html.php:1052 +#: ../../include/functions_reporting_html.php:1060 +#: ../../include/functions_reporting_html.php:2428 +msgid "Val. by" +msgstr "" + +#: ../../include/functions_reporting_html.php:1140 +#, php-format +msgid "%s System" +msgstr "" + +#: ../../include/functions_reporting_html.php:1209 +#: ../../include/functions_reporting_html.php:1431 +msgid "Events by agent" +msgstr "" + +#: ../../include/functions_reporting_html.php:1226 +#: ../../include/functions_reporting_html.php:1448 +msgid "Events by user validator" +msgstr "" + +#: ../../include/functions_reporting_html.php:1243 +#: ../../include/functions_reporting_html.php:1465 +msgid "Events by Severity" +msgstr "" + +#: ../../include/functions_reporting_html.php:1260 +#: ../../include/functions_reporting_html.php:1482 +msgid "Events validated vs unvalidated" +msgstr "" + +#: ../../include/functions_reporting_html.php:1573 +msgid "Sec. groups" +msgstr "" + +#: ../../include/functions_reporting_html.php:1593 +msgid "Remote conf." +msgstr "" + +#: ../../include/functions_reporting_html.php:2074 +msgid "Cell turns grey when the module is in 'not initialize' status" +msgstr "" + +#: ../../include/functions_reporting_html.php:2364 +#: ../../include/functions_reporting_html.php:5450 +msgid "Monitors" +msgstr "" + +#: ../../include/functions_reporting_html.php:2383 +msgid "Events (not validated)" +msgstr "" + +#: ../../include/functions_reporting_html.php:2549 +msgid "Events validated by user" +msgstr "" + +#: ../../include/functions_reporting_html.php:2566 +#: ../../include/functions_reporting_html.php:5739 +msgid "Events by severity" +msgstr "" + +#: ../../include/functions_reporting_html.php:2583 +msgid "Amount events validated" +msgstr "" + +#: ../../include/functions_reporting_html.php:3007 +msgid "Total summary" +msgstr "" + +#: ../../include/functions_reporting_html.php:3014 +msgid "No alerts fired" +msgstr "" + +#: ../../include/functions_reporting_html.php:3105 +#, php-format +msgid "Interface '%s' throughput graph" +msgstr "" + +#: ../../include/functions_reporting_html.php:3109 +msgid "Mac" +msgstr "" + +#: ../../include/functions_reporting_html.php:3110 +msgid "Actual status" +msgstr "" + +#: ../../include/functions_reporting_html.php:3474 +#: ../../include/functions_reporting_html.php:3476 +msgid "Empty modules" +msgstr "" + +#: ../../include/functions_reporting_html.php:3483 +msgid "Warning
    Critical" +msgstr "" + +#: ../../include/functions_reporting_html.php:3956 +msgid "Time Not Init Module" +msgstr "" + +#: ../../include/functions_reporting_html.php:3967 +msgid "% Ok" +msgstr "" + +#: ../../include/functions_reporting_html.php:4044 +msgid "Checks Uknown" +msgstr "" + +#: ../../include/functions_reporting_html.php:4083 +#: ../../include/functions_reporting_html.php:4230 +#: ../../include/functions_reporting_html.php:4555 +#: ../../include/functions_reporting_html.php:4561 +msgid "Primary" +msgstr "" + +#: ../../include/functions_reporting_html.php:4995 +#: ../../include/functions_reporting.php:11435 +#: ../../include/functions_reporting.php:11456 +msgid "Alert level" +msgstr "" + +#: ../../include/functions_reporting_html.php:5224 +#, php-format +msgid "Agents in group: %s" +msgstr "" + +#: ../../include/functions_reporting_html.php:5326 +msgid "Last failure" +msgstr "" + +#: ../../include/functions_reporting_html.php:5416 +msgid "N/A(*)" +msgstr "" + +#: ../../include/functions_reporting_html.php:5664 +#: ../../include/functions_reporting.php:11667 +msgid "Monitor checks" +msgstr "" + +#: ../../include/functions_reporting_html.php:5671 +#: ../../include/functions_reporting.php:11686 +msgid "Total agents and monitors" +msgstr "" + +#: ../../include/functions_reporting_html.php:5690 +#: ../../include/functions_reporting_html.php:5695 +msgid "Node overview" +msgstr "" + +#: ../../include/functions_reporting_html.php:5715 +#: ../../include/functions_reporting_html.php:5727 +msgid "Critical events" +msgstr "" + +#: ../../include/functions_reporting_html.php:5718 +#: ../../include/functions_reporting_html.php:5729 +msgid "Warning events" +msgstr "" + +#: ../../include/functions_reporting_html.php:5721 +#: ../../include/functions_reporting_html.php:5731 +msgid "OK events" +msgstr "" + +#: ../../include/functions_reporting_html.php:5724 +#: ../../include/functions_reporting_html.php:5733 +msgid "Unknown events" +msgstr "" + +#: ../../include/functions_reporting_html.php:5749 +msgid "Important Events by Criticity" +msgstr "" + +#: ../../include/functions_reporting_html.php:5775 +#, php-format +msgid "Last activity in %s console" +msgstr "" + +#: ../../include/functions_reporting_html.php:5866 +#: ../../include/functions_reporting_html.php:6008 +msgid "Events info (1hr.)" +msgstr "" + +#: ../../include/functions_reporting_html.php:6165 +msgid "This SLA has been affected by the following scheduled downtimes" +msgstr "" + +#: ../../include/functions_reporting_html.php:6166 +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:6173 +#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:380 +msgid "Dates" +msgstr "" + +#: ../../include/functions_reporting_html.php:6204 +msgid "This item is affected by a malformed scheduled downtime" +msgstr "" + +#: ../../include/functions_reporting_html.php:6204 +msgid "Go to the scheduled downtimes section to solve this" +msgstr "" + +#: ../../include/functions.php:231 +msgid "." +msgstr "" + +#: ../../include/functions.php:233 +msgid "," +msgstr "" + +#: ../../include/functions.php:488 ../../include/functions.php:640 +msgid "s" +msgstr "" + +#: ../../include/functions.php:489 ../../include/functions.php:641 +msgid "d" +msgstr "" + +#: ../../include/functions.php:490 ../../include/functions.php:642 +msgid "M" +msgstr "" + +#: ../../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 +msgid "Y" +msgstr "" + +#: ../../include/functions.php:492 ../../include/functions.php:644 +msgid "m" +msgstr "" + +#: ../../include/functions.php:493 ../../include/functions.php:645 +msgid "h" +msgstr "" + +#: ../../include/functions.php:494 ../../include/functions.php:646 +msgid "N" +msgstr "" + +#: ../../include/functions.php:1023 ../../include/functions.php:1269 +#: ../../include/functions.php:1303 ../../include/functions_graph.php:3473 +#: ../../include/functions_graph.php:3474 +#: ../../include/functions_graph.php:5056 +#: ../../include/functions_incidents.php:34 +#: ../../include/functions_incidents.php:75 +#: ../../include/functions_events.php:2925 +msgid "Maintenance" +msgstr "" + +#: ../../include/functions.php:1027 ../../include/functions.php:1270 +#: ../../include/functions.php:1307 ../../include/functions_graph.php:3478 +#: ../../include/functions_graph.php:3479 +#: ../../include/functions_graph.php:5060 +#: ../../include/functions_events.php:2929 +msgid "Informational" +msgstr "" + +#: ../../include/functions.php:1043 ../../include/functions.php:1272 +#: ../../include/functions.php:1323 ../../include/functions_graph.php:3488 +#: ../../include/functions_graph.php:3489 +#: ../../include/functions_graph.php:5076 +msgid "Minor" +msgstr "" + +#: ../../include/functions.php:1047 ../../include/functions.php:1274 +#: ../../include/functions.php:1327 ../../include/functions_graph.php:3498 +#: ../../include/functions_graph.php:3499 +#: ../../include/functions_graph.php:5080 +msgid "Major" +msgstr "" + +#: ../../include/functions.php:1222 ../../include/functions_events.php:2845 +msgid "Monitor Critical" +msgstr "" + +#: ../../include/functions.php:1223 ../../include/functions_events.php:2849 +msgid "Monitor Warning" +msgstr "" + +#: ../../include/functions.php:1224 ../../include/functions_events.php:2853 +msgid "Monitor Normal" +msgstr "" + +#: ../../include/functions.php:1226 +msgid "Monitor Unknown" +msgstr "" + +#: ../../include/functions.php:1229 ../../include/functions_events.php:2629 +#: ../../include/functions_events.php:2861 +msgid "Alert recovered" +msgstr "" + +#: ../../include/functions.php:1230 ../../include/functions_events.php:2677 +#: ../../include/functions_events.php:2865 +msgid "Alert ceased" +msgstr "" + +#: ../../include/functions.php:1231 ../../include/functions_events.php:2869 +msgid "Alert manual validation" +msgstr "" + +#: ../../include/functions.php:1233 +msgid "Agent created" +msgstr "" + +#: ../../include/functions.php:1234 ../../include/functions_events.php:2873 +msgid "Recon host detected" +msgstr "" + +#: ../../include/functions.php:1237 ../../include/functions_events.php:2673 +#: ../../include/functions_events.php:2885 +msgid "Configuration change" +msgstr "" + +#: ../../include/functions.php:1354 ../../include/functions.php:1384 +msgid "ALERT FIRED" +msgstr "" + +#: ../../include/functions.php:1357 ../../include/functions.php:1394 +#: ../../include/functions_modules.php:4126 +#: ../../include/class/Tree.class.php:646 ../../include/lib/Module.php:567 +#: ../../operation/agentes/status_monitor.php:1641 +#: ../../operation/agentes/status_monitor.php:1649 +msgid "NO DATA" +msgstr "" + +#: ../../include/functions.php:2694 +#, php-format +msgid "%s seconds" +msgstr "" + +#: ../../include/functions.php:2697 ../../include/functions.php:2698 +#, php-format +msgid "%s minutes" +msgstr "" + +#: ../../include/functions.php:2706 ../../include/functions.php:2707 +#, php-format +msgid "%s months" +msgstr "" + +#: ../../include/functions.php:2709 ../../include/functions.php:2710 +#, php-format +msgid "%s years" +msgstr "" + +#: ../../include/functions.php:2712 +msgid "Default values will be used" +msgstr "" + +#: ../../include/functions.php:2897 ../../include/functions.php:2902 +msgid "The file exceeds the maximum size" +msgstr "" + +#: ../../include/functions.php:2898 +msgid "" +"Please check this PHP runtime variable values:
      upload_max_filesize "
    +"(currently "
    +msgstr ""
    +
    +#: ../../include/functions.php:2906
    +msgid "The uploaded file was only partially uploaded"
    +msgstr ""
    +
    +#: ../../include/functions.php:2910
    +msgid "No file was uploaded"
    +msgstr ""
    +
    +#: ../../include/functions.php:2914
    +msgid "Missing a temporary folder"
    +msgstr ""
    +
    +#: ../../include/functions.php:2918
    +msgid "Failed to write file to disk"
    +msgstr ""
    +
    +#: ../../include/functions.php:2922
    +msgid "File upload stopped by extension"
    +msgstr ""
    +
    +#: ../../include/functions.php:2926
    +msgid "Unknown upload error"
    +msgstr ""
    +
    +#: ../../include/functions.php:3037
    +msgid "No data found to export"
    +msgstr ""
    +
    +#: ../../include/functions.php:3358
    +#: ../../operation/gis_maps/render_view.php:149
    +msgid "5 seconds"
    +msgstr ""
    +
    +#: ../../include/functions.php:3359
    +#: ../../operation/gis_maps/render_view.php:150
    +msgid "10 seconds"
    +msgstr ""
    +
    +#: ../../include/functions.php:3360
    +msgid "15 seconds"
    +msgstr ""
    +
    +#: ../../include/functions.php:3361 ../../include/ajax/heatmap.ajax.php:50
    +#: ../../include/class/AgentsAlerts.class.php:804
    +#: ../../operation/heatmap.php:171 ../../operation/gis_maps/render_view.php:151
    +msgid "30 seconds"
    +msgstr ""
    +
    +#: ../../include/functions.php:3362 ../../include/ajax/heatmap.ajax.php:51
    +#: ../../include/class/AgentsAlerts.class.php:805
    +#: ../../operation/heatmap.php:172 ../../operation/gis_maps/render_view.php:152
    +msgid "1 minute"
    +msgstr ""
    +
    +#: ../../include/functions.php:3363
    +#: ../../include/class/AgentsAlerts.class.php:806
    +#: ../../operation/gis_maps/render_view.php:153
    +msgid "2 minutes"
    +msgstr ""
    +
    +#: ../../include/functions.php:3364 ../../include/ajax/heatmap.ajax.php:53
    +#: ../../include/ajax/module.php:198
    +#: ../../include/class/AgentsAlerts.class.php:807
    +#: ../../operation/heatmap.php:174 ../../operation/gis_maps/render_view.php:154
    +msgid "5 minutes"
    +msgstr ""
    +
    +#: ../../include/functions.php:3365
    +msgid "15 minutes"
    +msgstr ""
    +
    +#: ../../include/functions.php:3366 ../../include/ajax/module.php:199
    +msgid "30 minutes"
    +msgstr ""
    +
    +#: ../../include/functions.php:3881
    +msgid "Summatory series"
    +msgstr ""
    +
    +#: ../../include/functions.php:3885
    +msgid "Average series"
    +msgstr ""
    +
    +#: ../../include/functions.php:3913 ../../include/functions.php:3932
    +#: ../../include/functions.php:3946 ../../include/functions.php:3968
    +#: ../../include/functions.php:4049 ../../include/functions.php:4121
    +msgid "Unit "
    +msgstr ""
    +
    +#: ../../include/functions.php:3994 ../../include/functions.php:4059
    +msgid "Min:"
    +msgstr ""
    +
    +#: ../../include/functions.php:4001 ../../include/functions.php:4066
    +msgid "Max:"
    +msgstr ""
    +
    +#: ../../include/functions.php:4008 ../../include/functions.php:4073
    +msgid "Avg:"
    +msgstr ""
    +
    +#: ../../include/functions.php:4118 ../../include/functions.php:4126
    +msgid "of module"
    +msgstr ""
    +
    +#: ../../include/functions.php:4143
    +msgid "Projection"
    +msgstr ""
    +
    +#: ../../include/functions.php:5963
    +msgid "Testing Pandora FMS email"
    +msgstr ""
    +
    +#: ../../include/functions.php:5976
    +msgid ""
    +"This is an email test sent from Pandora FMS. If you can read this, your "
    +"configuration works."
    +msgstr ""
    +
    +#: ../../include/functions_cron.php:455
    +msgid "Scheduled jobs"
    +msgstr ""
    +
    +#: ../../include/functions_api.php:118
    +msgid "Not `set`, `get` or `help` operation selected."
    +msgstr ""
    +
    +#: ../../include/functions_api.php:128
    +msgid "This operation does not exist."
    +msgstr ""
    +
    +#: ../../include/functions_api.php:138
    +msgid "The Id does not exist in database."
    +msgstr ""
    +
    +#: ../../include/functions_api.php:148
    +msgid "This operation can not be used in cluster elements."
    +msgstr ""
    +
    +#: ../../include/functions_api.php:158
    +msgid "The user has not enough permissions for perform this action."
    +msgstr ""
    +
    +#: ../../include/functions_api.php:178
    +msgid ""
    +"This console is not the environment administrator. Please, manage this "
    +"feature from centralized manager console (Metaconsole)."
    +msgstr ""
    +
    +#: ../../include/functions_api.php:188
    +msgid "Auth error"
    +msgstr ""
    +
    +#: ../../include/functions_api.php:1456
    +msgid ""
    +"The agent could not be modified. For security reasons, use a group other "
    +"than 0."
    +msgstr ""
    +
    +#: ../../include/functions_api.php:1811
    +#, php-format
    +msgid "Updated %d/%d agents"
    +msgstr ""
    +
    +#: ../../include/functions_api.php:1819
    +msgid "Agent updated."
    +msgstr ""
    +
    +#: ../../include/functions_api.php:2010
    +msgid "Could not create OS"
    +msgstr ""
    +
    +#: ../../include/functions_api.php:2049
    +msgid "Could not update OS"
    +msgstr ""
    +
    +#: ../../include/functions_api.php:2250
    +msgid "The agent was successfully deleted"
    +msgstr ""
    +
    +#: ../../include/functions_api.php:3745
    +msgid "Network module updated."
    +msgstr ""
    +
    +#: ../../include/functions_api.php:4041
    +msgid "Plugin module updated."
    +msgstr ""
    +
    +#: ../../include/functions_api.php:4397
    +#, php-format
    +msgid "Synthetic module created ID: %s"
    +msgstr ""
    +
    +#: ../../include/functions_api.php:4550
    +msgid "Synthetic module created ID: "
    +msgstr ""
    +
    +#: ../../include/functions_api.php:4667
    +msgid "Data module updated."
    +msgstr ""
    +
    +#: ../../include/functions_api.php:5040
    +msgid "SNMP module updated."
    +msgstr ""
    +
    +#: ../../include/functions_api.php:5647
    +msgid "Error creating alert template. Id_group cannot be left blank."
    +msgstr ""
    +
    +#: ../../include/functions_api.php:5661
    +msgid ""
    +"Error creating alert template. Invalid id_group or the user has not enough "
    +"permission to make this action."
    +msgstr ""
    +
    +#: ../../include/functions_api.php:5807
    +msgid ""
    +"Error updating alert template. Invalid id_group or the user has not enough "
    +"permission to make this action."
    +msgstr ""
    +
    +#: ../../include/functions_api.php:5891
    +msgid "Successful update of the alert template"
    +msgstr ""
    +
    +#: ../../include/functions_api.php:5939
    +msgid "Error deleting alert template. Id_template doesn't exist."
    +msgstr ""
    +
    +#: ../../include/functions_api.php:5968
    +msgid "Successful delete of alert template."
    +msgstr ""
    +
    +#: ../../include/functions_api.php:6388 ../../include/functions_api.php:12215
    +#: ../../include/functions_api.php:12281 ../../include/functions_api.php:12562
    +#: ../../include/functions_api.php:12642
    +#, php-format
    +msgid "%d agents affected"
    +msgstr ""
    +
    +#: ../../include/functions_api.php:6534
    +msgid "Correct deleting of module template."
    +msgstr ""
    +
    +#: ../../include/functions_api.php:6642
    +msgid "Successful delete of module template."
    +msgstr ""
    +
    +#: ../../include/functions_api.php:6675
    +msgid "Error validating alert. Id_template cannot be left blank."
    +msgstr ""
    +
    +#: ../../include/functions_api.php:6683
    +msgid "Error validating alert. Id_agent cannot be left blank."
    +msgstr ""
    +
    +#: ../../include/functions_api.php:6691
    +msgid "Error validating alert. Id_module cannot be left blank."
    +msgstr ""
    +
    +#: ../../include/functions_api.php:6762
    +msgid "Error validating alert. Specified alert does not exist."
    +msgstr ""
    +
    +#: ../../include/functions_api.php:6773
    +msgid "Error validating alert"
    +msgstr ""
    +
    +#: ../../include/functions_api.php:6847
    +#, php-format
    +msgid "Correct validation of all alerts (total %d)."
    +msgstr ""
    +
    +#: ../../include/functions_api.php:6941
    +msgid "Correct validation of all policy alerts."
    +msgstr ""
    +
    +#: ../../include/functions_api.php:6983
    +msgid ""
    +"Error stopping downtime. Periodical and running scheduled downtime cannot be "
    +"stopped."
    +msgstr ""
    +
    +#: ../../include/functions_api.php:6996
    +msgid "Downtime stopped."
    +msgstr ""
    +
    +#: ../../include/functions_api.php:7478
    +msgid "and this modules are doesn't exists or not applicable a this agents: "
    +msgstr ""
    +
    +#: ../../include/functions_api.php:7482
    +msgid "and this agents are generate problems: "
    +msgstr ""
    +
    +#: ../../include/functions_api.php:7486
    +msgid "and this agents with ids are doesn't exists: "
    +msgstr ""
    +
    +#: ../../include/functions_api.php:7634
    +msgid "Planned downtime updated"
    +msgstr ""
    +
    +#: ../../include/functions_api.php:7710
    +msgid " Agents deleted"
    +msgstr ""
    +
    +#: ../../include/functions_api.php:7791
    +msgid " Agents added"
    +msgstr ""
    +
    +#: ../../include/functions_api.php:7911
    +msgid "Data policy module updated."
    +msgstr ""
    +
    +#: ../../include/functions_api.php:8144
    +msgid "Network policy module updated."
    +msgstr ""
    +
    +#: ../../include/functions_api.php:8401
    +msgid "Plugin policy module updated."
    +msgstr ""
    +
    +#: ../../include/functions_api.php:8910
    +msgid "SNMP policy module updated."
    +msgstr ""
    +
    +#: ../../include/functions_api.php:9255
    +msgid "Successful deletion"
    +msgstr ""
    +
    +#: ../../include/functions_api.php:9571
    +msgid "User created."
    +msgstr ""
    +
    +#: ../../include/functions_api.php:9666
    +msgid "User updated."
    +msgstr ""
    +
    +#: ../../include/functions_api.php:9745
    +msgid "Enabled user."
    +msgstr ""
    +
    +#: ../../include/functions_api.php:9753
    +msgid "Disabled user."
    +msgstr ""
    +
    +#: ../../include/functions_api.php:10050
    +#, php-format
    +msgid "Template have been inserted in %d agents."
    +msgstr ""
    +
    +#: ../../include/functions_api.php:10222
    +msgid "XML file was generated successfully in path: "
    +msgstr ""
    +
    +#: ../../include/functions_api.php:10362
    +#, php-format
    +msgid "Module has been created in %d agents."
    +msgstr ""
    +
    +#: ../../include/functions_api.php:10492
    +#, php-format
    +msgid "Action has been set for %d agents."
    +msgstr ""
    +
    +#: ../../include/functions_api.php:11805
    +msgid "User deleted."
    +msgstr ""
    +
    +#: ../../include/functions_api.php:11866
    +msgid "User profile added."
    +msgstr ""
    +
    +#: ../../include/functions_api.php:11933
    +msgid "User profile deleted."
    +msgstr ""
    +
    +#: ../../include/functions_api.php:12222
    +msgid "Module disabled successfully."
    +msgstr ""
    +
    +#: ../../include/functions_api.php:12224
    +msgid "The module could not be disabled."
    +msgstr ""
    +
    +#: ../../include/functions_api.php:12288
    +msgid "Module enabled successfully."
    +msgstr ""
    +
    +#: ../../include/functions_api.php:12290
    +msgid "The module could not be enabled."
    +msgstr ""
    +
    +#: ../../include/functions_api.php:12338 ../../include/functions_api.php:12391
    +msgid "The alert could not be disabled."
    +msgstr ""
    +
    +#: ../../include/functions_api.php:12438 ../../include/functions_api.php:12491
    +msgid "The alert could not be enabled."
    +msgstr ""
    +
    +#: ../../include/functions_api.php:13754
    +msgid "Enabled agent."
    +msgstr ""
    +
    +#: ../../include/functions_api.php:13762
    +msgid "Disabled agent."
    +msgstr ""
    +
    +#: ../../include/functions_api.php:14741
    +msgid "Metaconsole and the licenses of all nodes were updated."
    +msgstr ""
    +
    +#: ../../include/functions_api.php:14743
    +#, php-format
    +msgid "Metaconsole license updated but %d of %d node failed to sync."
    +msgstr ""
    +
    +#: ../../include/functions_api.php:14746
    +msgid "This function is for metaconsole only."
    +msgstr ""
    +
    +#: ../../include/functions_api.php:15131 ../../include/functions_api.php:15202
    +msgid "Successfully deleted."
    +msgstr ""
    +
    +#: ../../include/functions_api.php:15161
    +msgid "The user cannot access the cluster."
    +msgstr ""
    +
    +#: ../../include/functions_api.php:16047
    +msgid "Event filter successfully created."
    +msgstr ""
    +
    +#: ../../include/functions_api.php:16280
    +msgid "Event filter successfully updated."
    +msgstr ""
    +
    +#: ../../include/functions_api.php:16321
    +msgid "Event filter successfully deleted."
    +msgstr ""
    +
    +#: ../../include/functions_api.php:16637
    +msgid "Validated traps."
    +msgstr ""
    +
    +#: ../../include/functions_api.php:16664
    +msgid "Deleted traps."
    +msgstr ""
    +
    +#: ../../include/functions_api.php:16857
    +#, php-format
    +msgid "Successfully updated module/alert count in id agent %d."
    +msgstr ""
    +
    +#: ../../include/functions_api.php:16859
    +msgid "Successfully updated module/alert count in all agents"
    +msgstr ""
    +
    +#: ../../include/functions_api.php:17311
    +#, php-format
    +msgid "Successfully added to delete pending id agent %d to id policy %d."
    +msgstr ""
    +
    +#: ../../include/functions_api.php:17500
    +msgid "Error enable/disable discovery task. Id_user cannot be left blank."
    +msgstr ""
    +
    +#: ../../include/functions_api.php:17508
    +msgid ""
    +"Error enable/disable discovery task. Enable/disable value cannot be left "
    +"blank."
    +msgstr ""
    +
    +#: ../../include/functions_api.php:17533
    +msgid "Error in discovery task enabling/disabling."
    +msgstr ""
    +
    +#: ../../include/functions_api.php:17541
    +msgid "Enabled discovery task."
    +msgstr ""
    +
    +#: ../../include/functions_api.php:17549
    +msgid "Disabled discovery task."
    +msgstr ""
    +
    +#: ../../include/functions_networkmap.php:1303
    +msgid "Radial dynamic"
    +msgstr ""
    +
    +#: ../../include/functions_networkmap.php:1307
    +#: ../../include/functions_maps.php:38
    +msgid "Topology"
    +msgstr ""
    +
    +#: ../../include/functions_networkmap.php:1332
    +msgid "Create a new topology map"
    +msgstr ""
    +
    +#: ../../include/functions_networkmap.php:1333
    +msgid "Create a new group map"
    +msgstr ""
    +
    +#: ../../include/functions_networkmap.php:1334
    +msgid "Create a new dynamic map"
    +msgstr ""
    +
    +#: ../../include/functions_networkmap.php:1336
    +msgid "Create a new radial dynamic map"
    +msgstr ""
    +
    +#: ../../include/functions_networkmap.php:2068
    +#: ../../include/functions_maps.php:73
    +#: ../../include/functions_planned_downtimes.php:949
    +msgid "Copy of "
    +msgstr ""
    +
    +#: ../../include/functions_networkmap.php:3404
    +msgid "Map not found."
    +msgstr ""
    +
    +#: ../../include/ajax/double_auth.ajax.php:144
    +msgid ""
    +"This is the private code that you should use with your authenticator app"
    +msgstr ""
    +
    +#: ../../include/ajax/double_auth.ajax.php:145
    +#: ../../include/ajax/double_auth.ajax.php:288
    +msgid ""
    +"You could enter the code manually or use the QR code to add it automatically"
    +msgstr ""
    +
    +#: ../../include/ajax/double_auth.ajax.php:151
    +#: ../../include/ajax/double_auth.ajax.php:294
    +msgid "QR"
    +msgstr ""
    +
    +#: ../../include/ajax/double_auth.ajax.php:190
    +msgid "You are about to activate the double authentication"
    +msgstr ""
    +
    +#: ../../include/ajax/double_auth.ajax.php:192
    +msgid ""
    +"With this option enabled, your account access will be more secure, \n"
    +"\t\tcause a code generated by other application will be required after the "
    +"login"
    +msgstr ""
    +
    +#: ../../include/ajax/double_auth.ajax.php:197
    +msgid ""
    +"You will need to install the app from the following link before continue"
    +msgstr ""
    +
    +#: ../../include/ajax/double_auth.ajax.php:202
    +msgid "Download the app"
    +msgstr ""
    +
    +#: ../../include/ajax/double_auth.ajax.php:206
    +#: ../../include/ajax/double_auth.ajax.php:299
    +#: ../../include/functions_register.php:188
    +msgid "Continue"
    +msgstr ""
    +
    +#: ../../include/ajax/double_auth.ajax.php:222
    +msgid "Are you installed the app yet?"
    +msgstr ""
    +
    +#: ../../include/ajax/double_auth.ajax.php:282
    +msgid "A private code has been generated"
    +msgstr ""
    +
    +#: ../../include/ajax/double_auth.ajax.php:287
    +msgid ""
    +"Before continue, you should create a new entry into the authenticator app"
    +msgstr ""
    +
    +#: ../../include/ajax/double_auth.ajax.php:297
    +msgid "Refresh code"
    +msgstr ""
    +
    +#: ../../include/ajax/double_auth.ajax.php:366
    +msgid "Are you introduced the code in the authenticator app yet?"
    +msgstr ""
    +
    +#: ../../include/ajax/double_auth.ajax.php:429
    +msgid "Introduce a code generated by the app"
    +msgstr ""
    +
    +#: ../../include/ajax/double_auth.ajax.php:430
    +msgid "If the code is valid, the double authentication will be activated"
    +msgstr ""
    +
    +#: ../../include/ajax/double_auth.ajax.php:439
    +msgid "Validate code"
    +msgstr ""
    +
    +#: ../../include/ajax/double_auth.ajax.php:491
    +msgid "The code is valid, you can exit now"
    +msgstr ""
    +
    +#: ../../include/ajax/double_auth.ajax.php:508
    +msgid "The code is valid, but it was an error saving the data"
    +msgstr ""
    +
    +#: ../../include/ajax/heatmap.ajax.php:52 ../../operation/heatmap.php:173
    +msgid "3 minutes"
    +msgstr ""
    +
    +#: ../../include/ajax/heatmap.ajax.php:78
    +#: ../../operation/events/events.php:1629
    +msgid "Group agents"
    +msgstr ""
    +
    +#: ../../include/ajax/heatmap.ajax.php:79
    +msgid "Group modules by tag"
    +msgstr ""
    +
    +#: ../../include/ajax/heatmap.ajax.php:80
    +msgid "Group modules by module group"
    +msgstr ""
    +
    +#: ../../include/ajax/heatmap.ajax.php:97
    +msgid "Show groups"
    +msgstr ""
    +
    +#: ../../include/ajax/alert_list.ajax.php:289
    +#: ../../include/ajax/alert_list.ajax.php:314 ../../include/ajax/module.php:970
    +msgid "Force execution"
    +msgstr ""
    +
    +#: ../../include/ajax/alert_list.ajax.php:289
    +#: ../../include/ajax/alert_list.ajax.php:314 ../../include/ajax/module.php:970
    +msgid "F."
    +msgstr ""
    +
    +#: ../../include/ajax/alert_list.ajax.php:341
    +#: ../../operation/agentes/alerts_status.php:365
    +#: ../../operation/agentes/alerts_status.php:366
    +#: ../../operation/agentes/alerts_status.php:406
    +#: ../../operation/agentes/alerts_status.php:407
    +msgid "No alerts found"
    +msgstr ""
    +
    +#: ../../include/ajax/alert_list.ajax.php:633
    +msgid "Insufficient permissions to validate alerts"
    +msgstr ""
    +
    +#: ../../include/ajax/snmp_browser.ajax.php:113
    +#: ../../include/ajax/snmp_browser.ajax.php:124
    +#: ../../include/ajax/snmp_browser.ajax.php:134
    +msgid "SNMP modules"
    +msgstr ""
    +
    +#: ../../include/ajax/snmp_browser.ajax.php:117
    +msgid "Error creating the following modules:"
    +msgstr ""
    +
    +#: ../../include/ajax/snmp_browser.ajax.php:128
    +msgid "Modules successfully created"
    +msgstr ""
    +
    +#: ../../include/ajax/snmp_browser.ajax.php:138
    +msgid "Module must be applied to an agent or a policy"
    +msgstr ""
    +
    +#: ../../include/ajax/snmp_browser.ajax.php:263
    +msgid "Failed to create policy"
    +msgstr ""
    +
    +#: ../../include/ajax/snmp_browser.ajax.php:264
    +msgid "Policy created succesfully"
    +msgstr ""
    +
    +#: ../../include/ajax/module.php:207
    +msgid "3 months"
    +msgstr ""
    +
    +#: ../../include/ajax/module.php:210
    +msgid "2 years"
    +msgstr ""
    +
    +#: ../../include/ajax/module.php:211
    +msgid "3 years"
    +msgstr ""
    +
    +#: ../../include/ajax/module.php:223
    +#: ../../operation/agentes/datos_agente.php:194
    +msgid "Choose a time from now"
    +msgstr ""
    +
    +#: ../../include/ajax/module.php:249
    +#: ../../operation/agentes/datos_agente.php:197
    +msgid "Specify time range"
    +msgstr ""
    +
    +#: ../../include/ajax/module.php:307
    +msgid "Exact phrase"
    +msgstr ""
    +
    +#: ../../include/ajax/module.php:399 ../../operation/agentes/stat_win.php:491
    +#: ../../operation/agentes/interface_traffic_graph_win.php:308
    +msgid ""
    +"In Pandora FMS, data is stored compressed. The data visualization in "
    +"database, charts or CSV exported data won't match, because is interpreted at "
    +"runtime. Please check 'Pandora FMS Engineering' chapter from documentation."
    +msgstr ""
    +
    +#: ../../include/ajax/module.php:1304
    +msgid "Any monitors aren't with this filter."
    +msgstr ""
    +
    +#: ../../include/ajax/module.php:1306
    +msgid "This agent doesn't have any active monitors."
    +msgstr ""
    +
    +#: ../../include/ajax/custom_fields.php:414
    +msgid "Current interval"
    +msgstr ""
    +
    +#: ../../include/ajax/custom_fields.php:460
    +#: ../../include/ajax/custom_fields.php:513
    +msgid "Modules normal"
    +msgstr ""
    +
    +#: ../../include/ajax/custom_fields.php:471
    +msgid "Modules critical"
    +msgstr ""
    +
    +#: ../../include/ajax/custom_fields.php:482
    +msgid "Modules warning"
    +msgstr ""
    +
    +#: ../../include/ajax/custom_fields.php:492
    +msgid "Modules unknown"
    +msgstr ""
    +
    +#: ../../include/ajax/custom_fields.php:503
    +msgid "Modules no init"
    +msgstr ""
    +
    +#: ../../include/ajax/custom_fields.php:545
    +msgid "New Filter"
    +msgstr ""
    +
    +#: ../../include/ajax/custom_fields.php:552
    +msgid "Existing Filter"
    +msgstr ""
    +
    +#: ../../include/ajax/custom_fields.php:700
    +msgid "Delete filter"
    +msgstr ""
    +
    +#: ../../include/ajax/custom_fields.php:750
    +msgid "Filter name already exists in the bbdd"
    +msgstr ""
    +
    +#: ../../include/ajax/custom_fields.php:762
    +msgid "Please, select a custom field"
    +msgstr ""
    +
    +#: ../../include/ajax/custom_fields.php:790
    +msgid "Success create filter."
    +msgstr ""
    +
    +#: ../../include/ajax/custom_fields.php:797
    +msgid "Error create filter."
    +msgstr ""
    +
    +#: ../../include/ajax/custom_fields.php:822
    +#: ../../include/ajax/custom_fields.php:895
    +msgid "please, select a filter"
    +msgstr ""
    +
    +#: ../../include/ajax/custom_fields.php:838
    +msgid "please, select a custom field"
    +msgstr ""
    +
    +#: ../../include/ajax/custom_fields.php:864
    +msgid "Success update filter."
    +msgstr ""
    +
    +#: ../../include/ajax/custom_fields.php:871
    +msgid "Error update filter."
    +msgstr ""
    +
    +#: ../../include/ajax/custom_fields.php:914
    +msgid "Success delete filter."
    +msgstr ""
    +
    +#: ../../include/ajax/custom_fields.php:921
    +msgid "Error delete filter."
    +msgstr ""
    +
    +#: ../../include/ajax/events.php:95
    +msgid "Failed to retrieve comments"
    +msgstr ""
    +
    +#: ../../include/ajax/events.php:748
    +msgid "New filter"
    +msgstr ""
    +
    +#: ../../include/ajax/events.php:766
    +msgid "Save in Group"
    +msgstr ""
    +
    +#: ../../include/ajax/events.php:802
    +msgid "Overwrite filter"
    +msgstr ""
    +
    +#: ../../include/ajax/events.php:873
    +msgid "Filter name cannot be left blank"
    +msgstr ""
    +
    +#: ../../include/ajax/events.php:1328
    +msgid "Error executing response"
    +msgstr ""
    +
    +#: ../../include/ajax/events.php:1705
    +msgid "Related"
    +msgstr ""
    +
    +#: ../../include/ajax/events.php:1717
    +msgid "Agent fields"
    +msgstr ""
    +
    +#: ../../include/ajax/events.php:1855
    +msgid "Error adding comment"
    +msgstr ""
    +
    +#: ../../include/ajax/events.php:1862
    +msgid "Comment added successfully"
    +msgstr ""
    +
    +#: ../../include/ajax/events.php:1869
    +msgid "Error changing event status"
    +msgstr ""
    +
    +#: ../../include/ajax/events.php:1876
    +msgid "Event status changed successfully"
    +msgstr ""
    +
    +#: ../../include/ajax/events.php:1883
    +msgid "Error changing event owner"
    +msgstr ""
    +
    +#: ../../include/ajax/events.php:1890
    +msgid "Event owner changed successfully"
    +msgstr ""
    +
    +#: ../../include/ajax/events.php:1897
    +msgid "Error deleting event"
    +msgstr ""
    +
    +#: ../../include/ajax/events.php:2023
    +msgid "Show all Events 24h"
    +msgstr ""
    +
    +#: ../../include/ajax/events.php:2113
    +msgid "These commands will apply to all selected events"
    +msgstr ""
    +
    +#: ../../include/ajax/events.php:2175
    +msgid "Total number of events in this node reached"
    +msgstr ""
    +
    +#: ../../include/ajax/events.php:2209
    +msgid "Total Events per node"
    +msgstr ""
    +
    +#: ../../include/ajax/events.php:2263 ../../operation/events/events.php:1468
    +msgid "Events list"
    +msgstr ""
    +
    +#: ../../include/ajax/events.php:2274
    +msgid "Console configuration"
    +msgstr ""
    +
    +#: ../../include/ajax/events.php:2281
    +msgid "Set condition"
    +msgstr ""
    +
    +#: ../../include/ajax/events.php:2288
    +#: ../../operation/events/sound_events.php:192
    +msgid "All new events"
    +msgstr ""
    +
    +#: ../../include/ajax/events.php:2325
    +#: ../../operation/events/sound_events.php:229
    +msgid "Time Sound"
    +msgstr ""
    +
    +#: ../../include/ajax/events.php:2356
    +msgid "Sound melody"
    +msgstr ""
    +
    +#: ../../include/ajax/events.php:2370
    +msgid "Test sound"
    +msgstr ""
    +
    +#: ../../include/ajax/events.php:2394
    +msgid "Discovered alerts"
    +msgstr ""
    +
    +#: ../../include/ajax/events.php:2401
    +msgid "No alerts discovered"
    +msgstr ""
    +
    +#: ../../include/ajax/events.php:2406
    +msgid "Congrats! thereĆ¢Ā€Ā™s nothing to show"
    +msgstr ""
    +
    +#: ../../include/ajax/graph.ajax.php:161
    +msgid "Time container lapse"
    +msgstr ""
    +
    +#: ../../include/functions_agents.php:1009
    +msgid ""
    +"There was an error copying the agent configuration, the copy has been "
    +"cancelled"
    +msgstr ""
    +
    +#: ../../include/functions_agents.php:2966
    +#: ../../include/functions_agents.php:3005
    +#: ../../include/functions_agents.php:3076
    +msgid "No Monitors"
    +msgstr ""
    +
    +#: ../../include/functions_agents.php:2974
    +#: ../../include/functions_agents.php:3029
    +#: ../../include/functions_agents.php:3084
    +#: ../../include/functions_reporting.php:12456
    +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:12463
    +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:12470
    +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:12477
    +msgid "All Monitors OK"
    +msgstr ""
    +
    +#: ../../include/functions_agents.php:3017
    +msgid "Alert fired on agent"
    +msgstr ""
    +
    +#: ../../include/functions_agents.php:4010
    +msgid "Dialog response time"
    +msgstr ""
    +
    +#: ../../include/functions_plugins.php:58
    +#, php-format
    +msgid "Failed to erase module %d: %s"
    +msgstr ""
    +
    +#: ../../include/functions_plugins.php:72
    +#, php-format
    +msgid "Failed to erase policy module: %d"
    +msgstr ""
    +
    +#: ../../include/functions_integriaims.php:42
    +msgid "Configure Integria IMS"
    +msgstr ""
    +
    +#: ../../include/functions_integriaims.php:43
    +msgid "Ticket list"
    +msgstr ""
    +
    +#: ../../include/functions_integriaims.php:44
    +msgid "New ticket"
    +msgstr ""
    +
    +#: ../../include/functions_integriaims.php:73
    +msgid "Edit ticket"
    +msgstr ""
    +
    +#: ../../include/functions_integriaims.php:74
    +msgid "View ticket"
    +msgstr ""
    +
    +#: ../../include/functions_integriaims.php:307
    +msgid ""
    +"API request failed. Please check Integria IMS' access credentials in Pandora "
    +"setup."
    +msgstr ""
    +
    +#: ../../include/functions_integriaims.php:557
    +msgid "File successfully added"
    +msgstr ""
    +
    +#: ../../include/functions_integriaims.php:558
    +msgid "File could not be added"
    +msgstr ""
    +
    +#: ../../include/functions_integriaims.php:561
    +msgid "File has an invalid extension"
    +msgstr ""
    +
    +#: ../../include/functions_modules.php:4053
    +msgid "Realtime SNMP graph"
    +msgstr ""
    +
    +#: ../../include/functions_modules.php:4118
    +msgid "ALL"
    +msgstr ""
    +
    +#: ../../include/functions_modules.php:4134
    +msgid "NOT NORMAL"
    +msgstr ""
    +
    +#: ../../include/auth/mysql.php:319 ../../include/auth/mysql.php:347
    +msgid ""
    +"Problems with configuration permissions. Please contact with Administrator"
    +msgstr ""
    +
    +#: ../../include/auth/mysql.php:334 ../../include/auth/mysql.php:397
    +#: ../../include/auth/mysql.php:412 ../../include/auth/mysql.php:443
    +msgid "User not found in database or incorrect password"
    +msgstr ""
    +
    +#: ../../include/auth/mysql.php:360
    +msgid ""
    +"Ooops User not found in \n"
    +"\t\t\t\tdatabase or incorrect password"
    +msgstr ""
    +
    +#: ../../include/auth/mysql.php:718
    +msgid "Could not changes password on remote pandora"
    +msgstr ""
    +
    +#: ../../include/auth/mysql.php:766
    +msgid "Your installation of PHP does not support LDAP"
    +msgstr ""
    +
    +#: ../../include/api.php:237
    +msgid "User or group not specified"
    +msgstr ""
    +
    +#: ../../include/api.php:238
    +msgid "User, group not specified"
    +msgstr ""
    +
    +#: ../../include/api.php:269
    +msgid "User, group or profile not specified"
    +msgstr ""
    +
    +#: ../../include/api.php:270
    +msgid "User, group or profile status not specified"
    +msgstr ""
    +
    +#: ../../include/functions_graph.php:1089
    +#: ../../include/functions_reporting.php:4510
    +#: ../../include/functions_reporting.php:4553
    +msgid "No data to display within the selected interval"
    +msgstr ""
    +
    +#: ../../include/functions_graph.php:2635
    +msgid "Not fired alerts"
    +msgstr ""
    +
    +#: ../../include/functions_graph.php:2654
    +#: ../../include/functions_graph.php:2790
    +#: ../../include/functions_graph.php:2888
    +#: ../../include/functions_graph.php:3858
    +#: ../../include/functions_reporting.php:1924
    +#: ../../include/functions_reporting.php:2179
    +#: ../../include/functions_reporting.php:2194
    +#: ../../include/functions_reporting.php:2222
    +#: ../../include/functions_reporting.php:2254
    +#: ../../include/functions_reporting.php:3665
    +#: ../../include/functions_reporting.php:4033
    +#: ../../include/functions_reporting.php:4061
    +#: ../../include/functions_reporting.php:4093
    +#: ../../include/functions_reporting.php:5066
    +#: ../../include/functions_reporting.php:10702
    +#: ../../include/functions_reporting.php:10730
    +#: ../../include/functions_reporting.php:10762
    +#: ../../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:3395 ../../include/functions_ui.php:3815
    +#: ../../include/functions_events.php:108
    +#: ../../include/functions_events.php:2661
    +#: ../../operation/events/events.php:608
    +msgid "SYSTEM"
    +msgstr ""
    +
    +#: ../../include/functions_graph.php:5459
    +msgid "Main node"
    +msgstr ""
    +
    +#: ../../include/functions_gis.php:27 ../../include/functions_gis.php:31
    +#: ../../include/functions_gis.php:36
    +msgid "Hierarchy of agents"
    +msgstr ""
    +
    +#: ../../include/functions_treeview.php:52
    +msgid "There was a problem loading module"
    +msgstr ""
    +
    +#: ../../include/functions_treeview.php:342
    +msgid "Go to module edition"
    +msgstr ""
    +
    +#: ../../include/functions_treeview.php:393
    +msgid "There was a problem loading alerts"
    +msgstr ""
    +
    +#: ../../include/functions_treeview.php:478
    +msgid "Go to alerts edition"
    +msgstr ""
    +
    +#: ../../include/functions_treeview.php:564
    +#: ../../operation/agentes/agent_fields.php:24
    +#: ../../operation/agentes/custom_fields.php:24
    +#: ../../operation/agentes/estado_generalagente.php:62
    +msgid "There was a problem loading agent"
    +msgstr ""
    +
    +#: ../../include/functions_treeview.php:634
    +#: ../../operation/agentes/estado_generalagente.php:505
    +msgid "Other IP addresses"
    +msgstr ""
    +
    +#: ../../include/functions_treeview.php:676
    +msgid "Next agent contact"
    +msgstr ""
    +
    +#: ../../include/functions_treeview.php:703
    +msgid "Edit cluster"
    +msgstr ""
    +
    +#: ../../include/functions_treeview.php:707
    +msgid "Go to agent edition"
    +msgstr ""
    +
    +#: ../../include/functions_treeview.php:719
    +msgid "Agent data"
    +msgstr ""
    +
    +#: ../../include/functions_treeview.php:750
    +#: ../../operation/agentes/estado_generalagente.php:471
    +msgid "Position (Long, Lat)"
    +msgstr ""
    +
    +#: ../../include/functions_treeview.php:767
    +#: ../../operation/agentes/estado_generalagente.php:513
    +msgid "Timezone Offset"
    +msgstr ""
    +
    +#: ../../include/functions_treeview.php:799
    +msgid "Advanced information"
    +msgstr ""
    +
    +#: ../../include/functions_treeview.php:812
    +msgid "Agent access rate (24h)"
    +msgstr ""
    +
    +#: ../../include/functions_treeview.php:878
    +#: ../../operation/agentes/pandora_networkmap.view.php:1234
    +#: ../../operation/agentes/estado_generalagente.php:720
    +msgid "Interface traffic"
    +msgstr ""
    +
    +#: ../../include/functions_treeview.php:901
    +msgid "Interface information"
    +msgstr ""
    +
    +#: ../../include/functions_menu.php:486
    +msgid "Configure user"
    +msgstr ""
    +
    +#: ../../include/functions_menu.php:487
    +msgid "Configure profile"
    +msgstr ""
    +
    +#: ../../include/functions_menu.php:489
    +msgid "Module templates management"
    +msgstr ""
    +
    +#: ../../include/functions_menu.php:490
    +msgid "Inventory modules management"
    +msgstr ""
    +
    +#: ../../include/functions_menu.php:497
    +msgid "Builder visual console"
    +msgstr ""
    +
    +#: ../../include/functions_menu.php:499
    +msgid "View reporting"
    +msgstr ""
    +
    +#: ../../include/functions_menu.php:500
    +msgid "Graph viewer"
    +msgstr ""
    +
    +#: ../../include/functions_menu.php:502
    +msgid "Manage custom graphs"
    +msgstr ""
    +
    +#: ../../include/functions_menu.php:503
    +msgid "View graph containers"
    +msgstr ""
    +
    +#: ../../include/functions_menu.php:504
    +msgid "Manage graph containers"
    +msgstr ""
    +
    +#: ../../include/functions_menu.php:505
    +msgid "View graph templates"
    +msgstr ""
    +
    +#: ../../include/functions_menu.php:506
    +msgid "Manage graph templates"
    +msgstr ""
    +
    +#: ../../include/functions_menu.php:507
    +msgid "Graph template items"
    +msgstr ""
    +
    +#: ../../include/functions_menu.php:508
    +msgid "Graph template wizard"
    +msgstr ""
    +
    +#: ../../include/functions_menu.php:512
    +msgid "Manage GIS Maps"
    +msgstr ""
    +
    +#: ../../include/functions_menu.php:515
    +msgid "Manage messages"
    +msgstr ""
    +
    +#: ../../include/functions_menu.php:517
    +msgid "Manage module groups"
    +msgstr ""
    +
    +#: ../../include/functions_menu.php:518
    +msgid "Manage custom field"
    +msgstr ""
    +
    +#: ../../include/functions_menu.php:520
    +msgid "Manage alert actions"
    +msgstr ""
    +
    +#: ../../include/functions_menu.php:521
    +msgid "Manage commands"
    +msgstr ""
    +
    +#: ../../include/functions_menu.php:523
    +msgid "Manage export targets"
    +msgstr ""
    +
    +#: ../../include/functions_menu.php:525 ../../operation/menu.php:136
    +msgid "SNMP trap generator"
    +msgstr ""
    +
    +#: ../../include/functions_menu.php:528
    +msgid "Manage incident"
    +msgstr ""
    +
    +#: ../../include/functions_menu.php:530
    +msgid "Manage groups"
    +msgstr ""
    +
    +#: ../../include/functions_menu.php:590
    +msgid "Administration"
    +msgstr ""
    +
    +#: ../../include/functions_incidents.php:29
    +#: ../../include/functions_incidents.php:55
    +msgid "Informative"
    +msgstr ""
    +
    +#: ../../include/functions_incidents.php:30
    +#: ../../include/functions_incidents.php:59
    +#: ../../include/functions_netflow.php:1845
    +msgid "Low"
    +msgstr ""
    +
    +#: ../../include/functions_incidents.php:31
    +#: ../../include/functions_incidents.php:63
    +#: ../../include/functions_netflow.php:1846
    +msgid "Medium"
    +msgstr ""
    +
    +#: ../../include/functions_incidents.php:32
    +#: ../../include/functions_incidents.php:67
    +msgid "Serious"
    +msgstr ""
    +
    +#: ../../include/functions_incidents.php:33
    +#: ../../include/functions_incidents.php:71
    +msgid "Very serious"
    +msgstr ""
    +
    +#: ../../include/functions_incidents.php:95
    +#: ../../include/functions_incidents.php:116
    +msgid "Active incidents"
    +msgstr ""
    +
    +#: ../../include/functions_incidents.php:96
    +#: ../../include/functions_incidents.php:120
    +msgid "Active incidents, with comments"
    +msgstr ""
    +
    +#: ../../include/functions_incidents.php:97
    +#: ../../include/functions_incidents.php:124
    +msgid "Rejected incidents"
    +msgstr ""
    +
    +#: ../../include/functions_incidents.php:98
    +#: ../../include/functions_incidents.php:128
    +msgid "Expired incidents"
    +msgstr ""
    +
    +#: ../../include/functions_incidents.php:99
    +#: ../../include/functions_incidents.php:132
    +msgid "Closed incidents"
    +msgstr ""
    +
    +#: ../../include/help/clippy/topology_group.php:35
    +msgid "Topology Group"
    +msgstr ""
    +
    +#: ../../include/help/clippy/topology_group.php:35
    +msgid ""
    +"Please note that group topology maps do not show the parent relationship "
    +"between nodes, it only shows the group parentship and the agent distribution "
    +"inside them. "
    +msgstr ""
    +
    +#: ../../include/help/clippy/homepage.php:75
    +msgid "Hi, can I help you?"
    +msgstr ""
    +
    +#: ../../include/help/clippy/homepage.php:75
    +#, php-format
    +msgid ""
    +"Let me introduce my self: I am Pandorin, the annoying assistant of %s. You "
    +"can follow my steps to do basic tasks in %s or you can close me and never "
    +"see me again."
    +msgstr ""
    +
    +#: ../../include/help/clippy/homepage.php:75
    +msgid "Close this wizard and don't open it again."
    +msgstr ""
    +
    +#: ../../include/help/clippy/homepage.php:79
    +msgid "Which task would you like to do first?"
    +msgstr ""
    +
    +#: ../../include/help/clippy/homepage.php:79
    +#, php-format
    +msgid "Ping a Linux or Windows server using a %s agent."
    +msgstr ""
    +
    +#: ../../include/help/clippy/homepage.php:79
    +msgid "Create a alert by email in a critical module."
    +msgstr ""
    +
    +#: ../../include/help/clippy/homepage.php:190
    +#, php-format
    +msgid ""
    +"The first thing you have to do is to setup the e-mail config on the %s "
    +"Server."
    +msgstr ""
    +
    +#: ../../include/help/clippy/homepage.php:190
    +msgid "If you have it already configured you can go to the next step."
    +msgstr ""
    +
    +#: ../../include/help/clippy/homepage.php:195
    +msgid "Now, pull down the Manage alerts menu and click on Actions. "
    +msgstr ""
    +
    +#: ../../include/help/clippy/module_unknow.php:35
    +msgid "You have unknown modules in this agent."
    +msgstr ""
    +
    +#: ../../include/help/clippy/module_unknow.php:35
    +msgid ""
    +"Unknown modules are modules which receive data normally at least in one "
    +"occassion, but at this time are not receving data. Please check our "
    +"troubleshoot help page to help you determine why you have unknown modules."
    +msgstr ""
    +
    +#: ../../include/help/clippy/modules_not_learning_mode.php:46
    +msgid ""
    +"Please note that you have your agent setup to do not add new modules coming "
    +"from the data XML."
    +msgstr ""
    +
    +#: ../../include/help/clippy/modules_not_learning_mode.php:46
    +msgid ""
    +"That means if you have a local plugin or add manually new modules to the "
    +"configuration file, you won't have it in your agent, unless you first create "
    +"manually in the interface (with the exact name and type as coming in the XML "
    +"file)."
    +msgstr ""
    +
    +#: ../../include/help/clippy/modules_not_learning_mode.php:46
    +msgid ""
    +"You should use the \"normal\" mode (non learn) only when you don't intend to "
    +"add more modules to the agent."
    +msgstr ""
    +
    +#: ../../include/help/clippy/operation_agentes_ver_agente.php:35
    +msgid ""
    +"The last step is to check the alert created. Click on the round icon to "
    +"force the action execution and after a few minutes you will receive the "
    +"alert in your email."
    +msgstr ""
    +
    +#: ../../include/help/clippy/operation_agentes_ver_agente.php:35
    +msgid ""
    +"And restart your pandora server to read again general configuration tokens."
    +msgstr ""
    +
    +#: ../../include/help/clippy/godmode_alerts_alert_actions.php:35
    +msgid ""
    +"Let me show you how to create an email action: Click on Create button and "
    +"fill the form showed in the following screen."
    +msgstr ""
    +
    +#: ../../include/help/clippy/godmode_alerts_alert_actions.php:49
    +msgid ""
    +"Now, you have to go to the monitors list and look for a critical module to "
    +"apply the alert."
    +msgstr ""
    +
    +#: ../../include/help/clippy/godmode_alerts_alert_actions.php:54
    +msgid ""
    +"Click on the arrow to drop down the Monitoring submenu and select Monitor "
    +"Detail."
    +msgstr ""
    +
    +#: ../../include/help/clippy/agent_out_of_limits.php:35
    +msgid "Agent contact date passed it's ETA!."
    +msgstr ""
    +
    +#: ../../include/help/clippy/agent_out_of_limits.php:35
    +msgid ""
    +"This happen when your agent stopped reporting or the server have any problem "
    +"(too load or just down). Check also connectivity between the agent and the "
    +"server."
    +msgstr ""
    +
    +#: ../../include/help/clippy/godmode_agentes_modificar_agente.php:34
    +msgid "I'm going to show you how to monitor a server."
    +msgstr ""
    +
    +#: ../../include/help/clippy/godmode_agentes_modificar_agente.php:38
    +msgid "Please, type an agent to save the modules for monitoring a server."
    +msgstr ""
    +
    +#: ../../include/help/clippy/godmode_agentes_modificar_agente.php:43
    +msgid "If you have typed the name correctly you will see the agent."
    +msgstr ""
    +
    +#: ../../include/help/clippy/godmode_agentes_modificar_agente.php:57
    +msgid "Now, please choose the agent you searched."
    +msgstr ""
    +
    +#: ../../include/help/clippy/godmode_agentes_modificar_agente.php:62
    +msgid "Choose the agent and click on the name."
    +msgstr ""
    +
    +#: ../../include/help/clippy/modules_not_init.php:35
    +msgid "You have non initialized modules"
    +msgstr ""
    +
    +#: ../../include/help/clippy/modules_not_init.php:35
    +msgid ""
    +"This happen when you have just created a module and it's not executed at "
    +"first time. Usually in a few seconds should be initialized and you will be "
    +"able to see in main view. If you keep non-init modules for more than 24hr "
    +"(due a problem in it's execution or configuration) they will be "
    +"automatically deleted by the system. Non-init are not visible in the Ć¢Ā€Āœmain "
    +"viewĆ¢Ā€Ā, you can see/edit them in the module administration section, in the "
    +"agent administrator."
    +msgstr ""
    +
    +#: ../../include/help/clippy/godmode_alerts_configure_alert_action.php:34
    +msgid "Fill the name of your action."
    +msgstr ""
    +
    +#: ../../include/help/clippy/godmode_alerts_configure_alert_action.php:38
    +msgid ""
    +"Select the group in the drop-down list and filter for ACL (the user in this "
    +"group can use your action to create an alert)."
    +msgstr ""
    +
    +#: ../../include/help/clippy/godmode_alerts_configure_alert_action.php:42
    +msgid "In the command field select \"email\"."
    +msgstr ""
    +
    +#: ../../include/help/clippy/godmode_alerts_configure_alert_action.php:46
    +msgid ""
    +"In the threshold field enter the seconds. The help icon show more "
    +"information."
    +msgstr ""
    +
    +#: ../../include/help/clippy/godmode_alerts_configure_alert_action.php:51
    +msgid ""
    +"In the first field enter the email address/addresses where you want to "
    +"receive the email alerts separated with comas ( , ) or white spaces."
    +msgstr ""
    +
    +#: ../../include/help/clippy/godmode_alerts_configure_alert_action.php:56
    +msgid ""
    +"In the \"Subject\"  field  you can use the macros _agent_ or _module_ for "
    +"each name."
    +msgstr ""
    +
    +#: ../../include/help/clippy/godmode_alerts_configure_alert_action.php:61
    +msgid ""
    +"In the text field, you can also use macros. Get more information about the "
    +"macros by clicking on the help icon."
    +msgstr ""
    +
    +#: ../../include/help/clippy/godmode_alerts_configure_alert_action.php:66
    +msgid "Click on Create button to create the action."
    +msgstr ""
    +
    +#: ../../include/help/clippy/data_configuration_module.php:35
    +msgid "Data Configuration Module."
    +msgstr ""
    +
    +#: ../../include/help/clippy/data_configuration_module.php:35
    +msgid ""
    +"Please note that information provided here affects how the agent collect "
    +"information and generate the data XML. Any data/configuration reported by "
    +"the agent, different from data or description is discarded, and the "
    +"configuration shown in the console prevails over any configuration coming "
    +"from the agent, this applies for example for crit/warn thresholds, interval, "
    +"module group, min/max value, tags, etc."
    +msgstr ""
    +
    +#: ../../include/help/clippy/data_configuration_module.php:35
    +msgid ""
    +"Information imported FIRST time from the XML will fill the information you "
    +"can see in the console, but after the first import, system will ignore any "
    +"update coming from the XML/Agent."
    +msgstr ""
    +
    +#: ../../include/help/clippy/godmode_agentes_configurar_agente.php:34
    +msgid "Now you must go to Modules. Don't worry I'll lead you."
    +msgstr ""
    +
    +#: ../../include/help/clippy/godmode_agentes_configurar_agente.php:39
    +msgid "Click in this tab.."
    +msgstr ""
    +
    +#: ../../include/help/clippy/godmode_agentes_configurar_agente.php:53
    +msgid "Now you must create the module. Don't worry, i'll teach you."
    +msgstr ""
    +
    +#: ../../include/help/clippy/godmode_agentes_configurar_agente.php:57
    +msgid "Choose the network server module."
    +msgstr ""
    +
    +#: ../../include/help/clippy/godmode_agentes_configurar_agente.php:61
    +msgid "And click the button."
    +msgstr ""
    +
    +#: ../../include/help/clippy/godmode_agentes_configurar_agente.php:75
    +msgid "Now you must create the module. Don't worry, i'll teach you ."
    +msgstr ""
    +
    +#: ../../include/help/clippy/godmode_agentes_configurar_agente.php:79
    +msgid "Now we are going to fill the form."
    +msgstr ""
    +
    +#: ../../include/help/clippy/godmode_agentes_configurar_agente.php:83
    +msgid "Please choose Network Management."
    +msgstr ""
    +
    +#: ../../include/help/clippy/godmode_agentes_configurar_agente.php:87
    +msgid "Choose the component named \"Host alive\"."
    +msgstr ""
    +
    +#: ../../include/help/clippy/godmode_agentes_configurar_agente.php:91
    +msgid "You can change the name if you want."
    +msgstr ""
    +
    +#: ../../include/help/clippy/godmode_agentes_configurar_agente.php:95
    +msgid "Check if the IP showed is the IP of your machine."
    +msgstr ""
    +
    +#: ../../include/help/clippy/godmode_agentes_configurar_agente.php:99
    +msgid "And only to finish it is clicking this button."
    +msgstr ""
    +
    +#: ../../include/help/clippy/godmode_agentes_configurar_agente.php:114
    +msgid ""
    +"Congrats! Your module has been created. 
    and the status color is " +"blue.
    That color means that the module hasn't been executed for " +"the first time. In the next seconds, if there is no problem, the status " +"color will turn into red or green." +msgstr "" + +#: ../../include/help/clippy/godmode_agentes_configurar_agente.php:129 +msgid "Click on alerts tab and then fill the form to add an alert." +msgstr "" + +#: ../../include/help/clippy/godmode_agentes_configurar_agente.php:143 +msgid "Select the critical module." +msgstr "" + +#: ../../include/help/clippy/godmode_agentes_configurar_agente.php:147 +msgid "In template select \"Critical Condition\"." +msgstr "" + +#: ../../include/help/clippy/godmode_agentes_configurar_agente.php:151 +msgid "Now, select the action created before." +msgstr "" + +#: ../../include/help/clippy/godmode_agentes_configurar_agente.php:156 +msgid "Click on Add Alert button to create the alert." +msgstr "" + +#: ../../include/help/clippy/godmode_agentes_configurar_agente.php:171 +msgid "" +"To test the alert you've just created go to the main view by clicking on the " +"eye tab." +msgstr "" + +#: ../../include/help/clippy/server_queued_modules.php:35 +msgid "Excesive Queued." +msgstr "" + +#: ../../include/help/clippy/server_queued_modules.php:35 +msgid "" +"You have too much items in the processing queue. This can happen if your " +"server is too loaded and/or not properly configured. This could be something " +"temporal, or a bottleneck. One possible solution is increase number of " +"server threads, but you should consider getting support about this." +msgstr "" + +#: ../../include/help/clippy/servers_down.php:35 +msgid "All servers down" +msgstr "" + +#: ../../include/help/clippy/servers_down.php:35 +msgid "" +"Can you up all servers. You go to terminal in linux and execute the next " +"command: \"sudo /etc/init.d/pandora_server restart\". It's possible need " +"introduce root pass." +msgstr "" + +#: ../../include/help/clippy/interval_agent_min.php:35 +msgid "Interval Agent." +msgstr "" + +#: ../../include/help/clippy/interval_agent_min.php:35 +msgid "" +"Please note that having agents with a monitoring interval below 300 seconds " +"is not recommended. This will impact seriously in the performance of the " +"server. For example, having 200 agents with one minute interval, is the same " +"than having 1000 agents with a 5 minute interval. The probability of getting " +"unknown modules is higher, and the impact on the server is higher because it " +"requires a shorter response time." +msgstr "" + +#: ../../include/help/clippy/operation_agentes_status_monitor.php:34 +msgid "" +"Now, you have to go to the monitors list and look for a \"critical\" module " +"to apply the alert." +msgstr "" + +#: ../../include/help/clippy/operation_agentes_status_monitor.php:38 +msgid "" +"If you know the name of the agent or the name of the module in critical " +"status, type it in this field to make the module list shorter. You can write " +"the entire name or just a part of it." +msgstr "" + +#: ../../include/help/clippy/operation_agentes_status_monitor.php:43 +msgid "Click on Show button to get the modules list filtered." +msgstr "" + +#: ../../include/help/clippy/operation_agentes_status_monitor.php:58 +msgid "" +"Now, to edit the module, click on the wrench that appears in the type column." +msgstr "" + +#: ../../include/help/clippy/extension_cron_send_email.php:35 +msgid "" +"The configuration of email for the task email is in the enterprise setup:" +msgstr "" + +#: ../../include/help/clippy/extension_cron_send_email.php:35 +msgid "Please check if the email configuration is correct." +msgstr "" + +#: ../../include/functions_profile.php:188 +#: ../../operation/users/user_edit.php:787 +#: ../../operation/users/user_edit.php:796 +msgid "Profiles/Groups assigned to this user" +msgstr "" + +#: ../../include/functions_network.php:34 +msgid "Top listeners" +msgstr "" + +#: ../../include/functions_network.php:35 +msgid "Top talkers" +msgstr "" + +#: ../../include/functions_network.php:45 +msgid "Top TCP protocols" +msgstr "" + +#: ../../include/functions_network.php:46 +msgid "Top UDP protocols" +msgstr "" + +#: ../../include/functions_ui.php:287 +msgid "Information" +msgstr "" + +#: ../../include/functions_ui.php:465 +msgid "Request successfully processed" +msgstr "" + +#: ../../include/functions_ui.php:469 +msgid "Error processing request" +msgstr "" + +#: ../../include/functions_ui.php:625 +msgid "" +"Is possible that this view uses part of information which your user has not " +"access" +msgstr "" + +#: ../../include/functions_ui.php:874 +msgid "Software" +msgstr "" + +#: ../../include/functions_ui.php:1361 +msgid "The alert would fire when the value is over " +msgstr "" + +#: ../../include/functions_ui.php:1366 +msgid "The alert would fire when the value is under " +msgstr "" + +#: ../../include/functions_ui.php:1381 +msgid "Unknown option." +msgstr "" + +#: ../../include/functions_ui.php:1735 ../../include/functions_config.php:2384 +msgid "the Flexible Monitoring System" +msgstr "" + +#: ../../include/functions_ui.php:2113 ../../include/functions_ui.php:2139 +#, php-format +msgid "Total items: %s" +msgstr "" + +#: ../../include/functions_ui.php:2540 +msgid "Unknown type" +msgstr "" + +#: ../../include/functions_ui.php:3443 +msgid "No matching records found" +msgstr "" + +#: ../../include/functions_ui.php:3444 +msgid "No data available in table" +msgstr "" + +#: ../../include/functions_ui.php:3536 ../../include/functions_ui.php:3537 +msgid "Export current page to CSV" +msgstr "" + +#: ../../include/functions_ui.php:3806 ../../include/functions_events.php:75 +#: ../../include/functions_events.php:101 ../../operation/events/events.php:599 +#: ../../operation/events/events.php:663 +msgid "ALERT" +msgstr "" + +#: ../../include/functions_ui.php:3884 ../../include/functions_events.php:167 +#: ../../operation/events/events.php:523 +msgid "MAINTENANCE" +msgstr "" + +#: ../../include/functions_ui.php:3889 ../../include/functions_events.php:170 +#: ../../operation/events/events.php:528 +msgid "INFORMATIONAL" +msgstr "" + +#: ../../include/functions_ui.php:3909 ../../include/functions_events.php:176 +#: ../../operation/events/events.php:538 +msgid "MINOR" +msgstr "" + +#: ../../include/functions_ui.php:3914 ../../include/functions_events.php:173 +#: ../../operation/events/events.php:533 +msgid "MAJOR" +msgstr "" + +#: ../../include/functions_ui.php:4725 ../../include/functions_html.php:930 +#: ../../include/functions_html.php:3313 ../../include/functions_html.php:3805 +#: ../../include/functions_reporting.php:11507 +#: ../../include/functions_reporting.php:11664 +#: ../../include/functions_reporting.php:11678 +#: ../../include/functions_reporting.php:14017 +#: ../../include/functions_reporting.php:14092 +msgid "Enterprise version not installed" +msgstr "" + +#: ../../include/functions_ui.php:5107 +msgid "Type at least two characters to search." +msgstr "" + +#: ../../include/functions_ui.php:6046 +msgid "Unhandled error" +msgstr "" + +#: ../../include/functions_ui.php:6047 +msgid "An unhandled error occurs" +msgstr "" + +#: ../../include/functions_ui.php:6318 +#, 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:6639 +msgid "Execute query" +msgstr "" + +#: ../../include/functions_ui.php:6661 +msgid "Results" +msgstr "" + +#: ../../include/functions_ui.php:6725 +msgid "Show password" +msgstr "" + +#: ../../include/functions_visual_map.php:1746 +#: ../../include/functions_visual_map.php:1748 +#: ../../include/rest-api/models/VisualConsole/Items/StaticGraph.php:283 +#: ../../include/rest-api/models/VisualConsole/Items/StaticGraph.php:287 +msgid "Last value: " +msgstr "" + +#: ../../include/functions_visual_map.php:2632 +msgid "Agent successfully added to layout" +msgstr "" + +#: ../../include/functions_visual_map.php:2824 +msgid "Modules successfully added to layout" +msgstr "" + +#: ../../include/functions_visual_map.php:3157 +msgid "Agents successfully added to layout" +msgstr "" + +#: ../../include/functions_visual_map.php:3553 +msgid "Cannot load the visualmap" +msgstr "" + +#: ../../include/functions_visual_map.php:4219 +#: ../../include/rest-api/models/VisualConsole/Item.php:2107 +msgid "Bars graph" +msgstr "" + +#: ../../include/functions_visual_map.php:4229 +#: ../../include/rest-api/models/VisualConsole/Item.php:2115 +msgid "Percentile bar" +msgstr "" + +#: ../../include/functions_visual_map.php:4234 +#: ../../include/rest-api/models/VisualConsole/Item.php:2123 +msgid "Circular progress bar" +msgstr "" + +#: ../../include/functions_clippy.php:152 +#, php-format +msgid "%s assistant" +msgstr "" + +#: ../../include/functions_clippy.php:189 +#: ../../include/functions_clippy.php:194 +msgid "End wizard" +msgstr "" + +#: ../../include/functions_clippy.php:227 +msgid "Next →" +msgstr "" + +#: ../../include/functions_clippy.php:228 +msgid "← Back" +msgstr "" + +#: ../../include/functions_clippy.php:240 +msgid "Do you want to exit the help tour?" +msgstr "" + +#: ../../include/functions_alerts.php:674 +msgid "Max and min" +msgstr "" + +#: ../../include/functions_alerts.php:677 +msgid "Equal to" +msgstr "" + +#: ../../include/functions_alerts.php:678 +msgid "Not equal to" +msgstr "" + +#: ../../include/functions_alerts.php:682 +msgid "On Change" +msgstr "" + +#: ../../include/functions_alerts.php:684 +msgid "Not normal status" +msgstr "" + +#: ../../include/functions_alerts.php:1685 +msgid "No actions defined" +msgstr "" + +#: ../../include/functions_alerts.php:2658 +msgid "Alert and command group does not match" +msgstr "" + +#: ../../include/functions_snmp.php:65 +msgid "Load Average (Last minute)" +msgstr "" + +#: ../../include/functions_snmp.php:69 +msgid "Load Average (Last 5 minutes)" +msgstr "" + +#: ../../include/functions_snmp.php:73 +msgid "Load Average (Last 15 minutes)" +msgstr "" + +#: ../../include/functions_snmp.php:77 +msgid "Total Swap Size configured for the host" +msgstr "" + +#: ../../include/functions_snmp.php:81 +msgid "Available Swap Space on the host" +msgstr "" + +#: ../../include/functions_snmp.php:85 +msgid "Total Real/Physical Memory Size on the host" +msgstr "" + +#: ../../include/functions_snmp.php:89 +msgid "Available Real/Physical Memory Space on the host" +msgstr "" + +#: ../../include/functions_snmp.php:93 +msgid "Total Available Memory on the host" +msgstr "" + +#: ../../include/functions_snmp.php:97 +msgid "Total Cached Memory" +msgstr "" + +#: ../../include/functions_snmp.php:101 +msgid "Total Buffered Memory" +msgstr "" + +#: ../../include/functions_snmp.php:105 +msgid "Amount of memory swapped in from disk (kB/s)" +msgstr "" + +#: ../../include/functions_snmp.php:109 +msgid "Amount of memory swapped to disk (kB/s)" +msgstr "" + +#: ../../include/functions_snmp.php:113 +msgid "Number of blocks sent to a block device" +msgstr "" + +#: ../../include/functions_snmp.php:117 +msgid "Number of blocks received from a block device" +msgstr "" + +#: ../../include/functions_snmp.php:121 +msgid "Number of interrupts processed" +msgstr "" + +#: ../../include/functions_snmp.php:125 +msgid "Number of context switches" +msgstr "" + +#: ../../include/functions_snmp.php:129 +msgid "user CPU time" +msgstr "" + +#: ../../include/functions_snmp.php:133 +msgid "system CPU time" +msgstr "" + +#: ../../include/functions_snmp.php:137 +msgid "idle CPU time" +msgstr "" + +#: ../../include/functions_snmp.php:141 +msgid "system Up time" +msgstr "" + +#: ../../include/functions_snmp.php:349 +msgid "Pagination" +msgstr "" + +#: ../../include/functions_snmp.php:381 ../../include/functions_snmp.php:389 +msgid "Group by Enterprise String / IP" +msgstr "" + +#: ../../include/functions_db.php:147 +#, php-format +msgid "Error connecting to database %s at %s." +msgstr "" + +#: ../../include/functions_db.php:1900 +msgid "Database debug" +msgstr "" + +#: ../../include/functions_db.php:1917 +msgid "SQL sentence" +msgstr "" + +#: ../../include/functions_db.php:1919 +msgid "Rows" +msgstr "" + +#: ../../include/functions_db.php:1920 +msgid "Saved" +msgstr "" + +#: ../../include/functions_db.php:1921 +msgid "Time (ms)" +msgstr "" + +#: ../../include/rest-api/models/VisualConsole/Items/ColorCloud.php:438 +msgid "Add new range" +msgstr "" + +#: ../../include/rest-api/models/VisualConsole/Items/ColorCloud.php:495 +msgid "Current ranges" +msgstr "" + +#: ../../include/rest-api/models/VisualConsole/Items/Box.php:217 +#: ../../include/rest-api/models/VisualConsole/Item.php:1994 +msgid "width" +msgstr "" + +#: ../../include/rest-api/models/VisualConsole/Items/Box.php:227 +#: ../../include/rest-api/models/VisualConsole/Item.php:2004 +msgid "height" +msgstr "" + +#: ../../include/rest-api/models/VisualConsole/Items/Box.php:249 +#: ../../include/rest-api/models/VisualConsole/Item.php:2026 +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 +msgid "Show on top" +msgstr "" + +#: ../../include/rest-api/models/VisualConsole/Items/Box.php:311 +msgid "Border Width" +msgstr "" + +#: ../../include/rest-api/models/VisualConsole/Items/Box.php:335 +msgid "Fill transparent" +msgstr "" + +#: ../../include/rest-api/models/VisualConsole/Items/BasicChart.php:325 +msgid "Module name color" +msgstr "" + +#: ../../include/rest-api/models/VisualConsole/Items/StaticGraph.php:410 +msgid "Show Last Value" +msgstr "" + +#: ../../include/rest-api/models/VisualConsole/Items/SimpleValue.php:365 +msgid "Avg Value" +msgstr "" + +#: ../../include/rest-api/models/VisualConsole/Items/BarsGraph.php:487 +#: ../../include/rest-api/models/VisualConsole/Items/ModuleGraph.php:658 +msgid "Graph Type" +msgstr "" + +#: ../../include/rest-api/models/VisualConsole/Items/EventsHistory.php:270 +msgid "12h" +msgstr "" + +#: ../../include/rest-api/models/VisualConsole/Items/EventsHistory.php:290 +msgid "Legend color" +msgstr "" + +#: ../../include/rest-api/models/VisualConsole/Items/ModuleGraph.php:672 +#: ../../include/lib/Dashboard/Widgets/custom_graph.php:339 +#: ../../include/lib/Dashboard/Widgets/single_graph.php:294 +msgid "Show legend" +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 +msgid "Failed to connect to node" +msgstr "" + +#: ../../include/rest-api/models/VisualConsole/Items/Odometer.php:416 +msgid "Title color" +msgstr "" + +#: ../../include/rest-api/models/VisualConsole/View.php:66 +msgid "Label settings" +msgstr "" + +#: ../../include/rest-api/models/VisualConsole/View.php:72 +#: ../../include/rest-api/models/VisualConsole/View.php:104 +msgid "General settings" +msgstr "" + +#: ../../include/rest-api/models/VisualConsole/View.php:78 +#: ../../include/rest-api/models/VisualConsole/View.php:94 +#: ../../include/rest-api/models/VisualConsole/View.php:110 +msgid "Specific settings" +msgstr "" + +#: ../../include/rest-api/models/VisualConsole/View.php:213 +msgid "Item type not valid [" +msgstr "" + +#: ../../include/rest-api/models/VisualConsole/View.php:218 +msgid "Item type has no getFormInputs method [" +msgstr "" + +#: ../../include/rest-api/models/VisualConsole/View.php:729 +msgid "NetworkLink from" +msgstr "" + +#: ../../include/rest-api/models/VisualConsole/View.php:733 +#: ../../include/rest-api/models/VisualConsole/View.php:812 +#, php-format +msgid "Interface %s status" +msgstr "" + +#: ../../include/rest-api/models/VisualConsole/View.php:738 +#: ../../include/rest-api/models/VisualConsole/View.php:817 +#: ../../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 +#: ../../operation/agentes/interface_traffic_graph_win.php:79 +msgid "Out" +msgstr "" + +#: ../../include/rest-api/models/VisualConsole/View.php:808 +msgid "NetworkLink to" +msgstr "" + +#: ../../include/rest-api/models/VisualConsole/View.php:860 +#, php-format +msgid "Failed to generate charts: %s" +msgstr "" + +#: ../../include/rest-api/models/VisualConsole/Item.php:1964 +msgid "Label position" +msgstr "" + +#: ../../include/rest-api/models/VisualConsole/Item.php:2051 +msgid "Link enabled" +msgstr "" + +#: ../../include/rest-api/models/VisualConsole/Item.php:2093 +msgid "Static graph" +msgstr "" + +#: ../../include/rest-api/models/VisualConsole/Item.php:2111 +msgid "Event History Graph" +msgstr "" + +#: ../../include/rest-api/models/VisualConsole/Item.php:2119 +msgid "Percentile bubble" +msgstr "" + +#: ../../include/rest-api/models/VisualConsole/Item.php:2584 +#: ../../include/rest-api/models/VisualConsole/Item.php:2585 +msgid "Image Vc" +msgstr "" + +#: ../../include/functions_notifications.php:807 +msgid "Subtype customization" +msgstr "" + +#: ../../include/functions_notifications.php:834 +msgid "Notified users" +msgstr "" + +#: ../../include/functions_notifications.php:834 +msgid "Notified groups" +msgstr "" + +#: ../../include/functions_notifications.php:835 +msgid "Add users" +msgstr "" + +#: ../../include/functions_notifications.php:835 +msgid "Add groups" +msgstr "" + +#: ../../include/functions_notifications.php:836 +msgid "Delete users" +msgstr "" + +#: ../../include/functions_notifications.php:836 +msgid "Delete groups" +msgstr "" + +#: ../../include/functions_notifications.php:941 +msgid "Remove elements" +msgstr "" + +#: ../../include/functions_notifications.php:1058 +msgid "Click here to get more information" +msgstr "" + +#: ../../include/functions_reports.php:638 +#: ../../include/functions_reports.php:642 +#: ../../include/functions_reports.php:647 +#: ../../include/functions_reports.php:653 +#: ../../include/functions_reports.php:660 +#: ../../include/functions_reports.php:664 +#: ../../include/functions_reports.php:668 +#: ../../include/functions_reports.php:675 +#: ../../include/functions_reports.php:681 +#: ../../include/functions_reports.php:686 +#: ../../include/functions_groups.php:123 +#: ../../include/functions_groups.php:187 +#: ../../operation/search_results.php:119 +#: ../../operation/agentes/ver_agente.php:1560 +msgid "Graphs" +msgstr "" + +#: ../../include/functions_reports.php:639 +#: ../../include/functions_reports.php:1083 +#: ../../include/functions_reporting.php:10138 +#: ../../include/functions_reporting.php:10298 +msgid "Simple graph" +msgstr "" + +#: ../../include/functions_reports.php:676 +msgid "Automatic combined Graph" +msgstr "" + +#: ../../include/functions_reports.php:682 +msgid "Availability graph" +msgstr "" + +#: ../../include/functions_reports.php:687 +msgid "Module Histogram graph" +msgstr "" + +#: ../../include/functions_reports.php:693 +msgid "IPAM networks" +msgstr "" + +#: ../../include/functions_reports.php:724 +#: ../../include/functions_reports.php:728 +msgid "Forecasting" +msgstr "" + +#: ../../include/functions_reports.php:729 +msgid "Projection graph" +msgstr "" + +#: ../../include/functions_reports.php:734 +msgid "Avg. value" +msgstr "" + +#: ../../include/functions_reports.php:738 +msgid "Max. value" +msgstr "" + +#: ../../include/functions_reports.php:742 +msgid "Min. value" +msgstr "" + +#: ../../include/functions_reports.php:746 +msgid "Monitor report" +msgstr "" + +#: ../../include/functions_reports.php:750 +msgid "Serialize data" +msgstr "" + +#: ../../include/functions_reports.php:758 +msgid "Historical Data" +msgstr "" + +#: ../../include/functions_reports.php:770 +#: ../../include/functions_reports.php:776 +#: ../../include/functions_reports.php:782 +#: ../../include/functions_reports.php:788 +#: ../../include/functions_reports.php:794 +#: ../../include/functions_reports.php:801 +#: ../../include/functions_reports.php:808 +#: ../../include/functions_reports.php:814 +#: ../../include/functions_reports.php:818 +#: ../../include/functions_reports.php:823 +#: ../../include/functions_reports.php:829 +msgid "Grouped" +msgstr "" + +#: ../../include/functions_reports.php:802 +msgid "Agents/Modules status" +msgstr "" + +#: ../../include/functions_reports.php:819 +msgid "Network interfaces" +msgstr "" + +#: ../../include/functions_reports.php:824 +msgid "Custom Render" +msgstr "" + +#: ../../include/functions_reports.php:834 +#: ../../include/functions_reports.php:838 +msgid "Text/HTML " +msgstr "" + +#: ../../include/functions_reports.php:839 +msgid "Import text from URL" +msgstr "" + +#: ../../include/functions_reports.php:844 +msgid "Module alert report" +msgstr "" + +#: ../../include/functions_reports.php:848 +msgid "Agent alert report " +msgstr "" + +#: ../../include/functions_reports.php:854 +msgid "Group alert report" +msgstr "" + +#: ../../include/functions_reports.php:860 +msgid "Actions alert report " +msgstr "" + +#: ../../include/functions_reports.php:865 +msgid "Module event report" +msgstr "" + +#: ../../include/functions_reports.php:869 +msgid "Agent event report" +msgstr "" + +#: ../../include/functions_reports.php:873 +msgid "Group event report" +msgstr "" + +#: ../../include/functions_reports.php:891 +msgid "Inventory changes" +msgstr "" + +#: ../../include/functions_reports.php:899 +#: ../../include/functions_reporting.php:6434 +msgid "Agent configuration" +msgstr "" + +#: ../../include/functions_reports.php:903 +#: ../../include/functions_reporting.php:4695 +msgid "Group configuration" +msgstr "" + +#: ../../include/functions_reports.php:911 +msgid "Netflow data table" +msgstr "" + +#: ../../include/functions_reports.php:915 +msgid "Netflow summary table" +msgstr "" + +#: ../../include/functions_reports.php:939 +msgid "Network configuration changes" +msgstr "" + +#: ../../include/functions_reports.php:1066 +msgid "Macro" +msgstr "" + +#: ../../include/functions_reports.php:1081 +#: ../../include/functions_reports.php:1210 +#: ../../include/functions_reports.php:1230 +msgid "Sql" +msgstr "" + +#: ../../include/functions_reports.php:1082 +msgid "Graph Sql" +msgstr "" + +#: ../../include/functions_html.php:595 ../../include/functions_html.php:969 +msgid "Please select an item from this list." +msgstr "" + +#: ../../include/functions_html.php:621 ../../include/functions_html.php:5910 +msgid "Please select..." +msgstr "" + +#: ../../include/functions_html.php:1592 +msgid "Type to search agents" +msgstr "" + +#: ../../include/functions_html.php:1606 +msgid "Type to search modules" +msgstr "" + +#: ../../include/functions_html.php:1677 +msgid "Only common modules" +msgstr "" + +#: ../../include/functions_html.php:2123 +msgid "weeks" +msgstr "" + +#: ../../include/functions_html.php:2285 +msgid "Month day" +msgstr "" + +#: ../../include/functions_html.php:2287 +msgid "Week day" +msgstr "" + +#: ../../include/functions_html.php:4578 +msgid "Type at least two characters to search the module." +msgstr "" + +#: ../../include/functions_html.php:4739 ../../index.php:487 +#: ../../index.php:764 ../../index.php:838 +#, php-format +msgid "%s cannot verify the origin of the request. Try again, please." +msgstr "" + +#: ../../include/functions_html.php:5665 +msgid "Type at least two characters to search the user." +msgstr "" + +#: ../../include/functions_html.php:6054 +msgid "Primary group cannot be secondary too." +msgstr "" + +#: ../../include/functions_register.php:105 +#, php-format +msgid "%s configuration wizard" +msgstr "" + +#: ../../include/functions_register.php:108 +#, php-format +msgid "" +"Please fill the following information in order to configure your %s instance " +"successfully" +msgstr "" + +#: ../../include/functions_register.php:165 +msgid "" +"Must have the same time zone as the system or database to avoid mismatches " +"of time." +msgstr "" + +#: ../../include/functions_register.php:171 +msgid "E-mail for receiving alerts" +msgstr "" + +#: ../../include/functions_register.php:196 +msgid "All fields required" +msgstr "" + +#: ../../include/functions_register.php:205 +msgid "Are you sure you don't want to configure a base email?" +msgstr "" + +#: ../../include/functions_register.php:207 +msgid "" +"You could change this options later in \"alert actions\" and setting your " +"account." +msgstr "" + +#: ../../include/functions_config.php:144 +msgid "Failed updated: User did not login." +msgstr "" + +#: ../../include/functions_config.php:152 +msgid "Failed updated: User is not admin." +msgstr "" + +#: ../../include/functions_config.php:186 +msgid "phantomjs config directory" +msgstr "" + +#: ../../include/functions_config.php:202 +msgid "SSL cert path" +msgstr "" + +#: ../../include/functions_config.php:210 +msgid "Use cert." +msgstr "" + +#: ../../include/functions_config.php:242 +msgid "Integria inventory" +msgstr "" + +#: ../../include/functions_config.php:246 +#: ../../include/functions_config.php:1717 +msgid "Integria API password" +msgstr "" + +#: ../../include/functions_config.php:250 +msgid "Integria URL" +msgstr "" + +#: ../../include/functions_config.php:263 +#: ../../include/class/ExternalTools.class.php:213 +msgid "Sound for Alert fired" +msgstr "" + +#: ../../include/functions_config.php:267 +#: ../../include/class/ExternalTools.class.php:243 +msgid "Sound for Monitor critical" +msgstr "" + +#: ../../include/functions_config.php:271 +#: ../../include/class/ExternalTools.class.php:273 +msgid "Sound for Monitor warning" +msgstr "" + +#: ../../include/functions_config.php:284 +msgid "License information" +msgstr "" + +#: ../../include/functions_config.php:314 +msgid "Use custom encoding" +msgstr "" + +#: ../../include/functions_config.php:334 +msgid "Limit parameters bulk" +msgstr "" + +#: ../../include/functions_config.php:338 +msgid "Identification_reminder" +msgstr "" + +#: ../../include/functions_config.php:342 +msgid "Include_agents" +msgstr "" + +#: ../../include/functions_config.php:346 +msgid "alias_as_name" +msgstr "" + +#: ../../include/functions_config.php:350 +msgid "Console log enabled" +msgstr "" + +#: ../../include/functions_config.php:354 +msgid "Audit log enabled" +msgstr "" + +#: ../../include/functions_config.php:358 +msgid "Module Custom ID read only" +msgstr "" + +#: ../../include/functions_config.php:413 +msgid "Replication DB host" +msgstr "" + +#: ../../include/functions_config.php:417 +msgid "Replication DB database" +msgstr "" + +#: ../../include/functions_config.php:421 +msgid "Replication DB user" +msgstr "" + +#: ../../include/functions_config.php:425 +msgid "Replication DB password" +msgstr "" + +#: ../../include/functions_config.php:429 +msgid "Replication DB port" +msgstr "" + +#: ../../include/functions_config.php:433 +msgid "Metaconsole agent cache" +msgstr "" + +#: ../../include/functions_config.php:441 +msgid "Enable Update Manager" +msgstr "" + +#: ../../include/functions_config.php:445 +msgid "Ipam Ocuppied Manager Critical" +msgstr "" + +#: ../../include/functions_config.php:449 +msgid "Ipam Ocuppied Manager Warning" +msgstr "" + +#: ../../include/functions_config.php:622 +msgid "Secontary start TLS" +msgstr "" + +#: ../../include/functions_config.php:738 +msgid "Saml profile parameters" +msgstr "" + +#: ../../include/functions_config.php:754 +msgid "2FA all users" +msgstr "" + +#: ../../include/functions_config.php:761 +msgid "Session timeout forced to 90 minutes" +msgstr "" + +#: ../../include/functions_config.php:820 +msgid "Max. days before autodisable deletion" +msgstr "" + +#: ../../include/functions_config.php:824 +msgid "Item limit for realtime reports)" +msgstr "" + +#: ../../include/functions_config.php:856 +msgid "Big Operatiopn Step to purge old data" +msgstr "" + +#: ../../include/functions_config.php:890 +msgid "Max execution event response" +msgstr "" + +#: ../../include/functions_config.php:898 +msgid "SNMP walk binary path" +msgstr "" + +#: ../../include/functions_config.php:902 +msgid "SNMP walk binary path (fallback for v1)" +msgstr "" + +#: ../../include/functions_config.php:906 +msgid "Default WMI Binary" +msgstr "" + +#: ../../include/functions_config.php:1009 +msgid "Show QR code header" +msgstr "" + +#: ../../include/functions_config.php:1037 +msgid "Custom logo white background" +msgstr "" + +#: ../../include/functions_config.php:1065 +msgid "Custom title header" +msgstr "" + +#: ../../include/functions_config.php:1069 +msgid "Custom subtitle header" +msgstr "" + +#: ../../include/functions_config.php:1093 +#: ../../include/functions_config.php:1133 +msgid "Custom Docs url" +msgstr "" + +#: ../../include/functions_config.php:1097 +#: ../../include/functions_config.php:1137 +msgid "Custom support url" +msgstr "" + +#: ../../include/functions_config.php:1109 +msgid "Custom logo metaconsole (white background)" +msgstr "" + +#: ../../include/functions_config.php:1113 +msgid "Custom logo login metaconsole" +msgstr "" + +#: ../../include/functions_config.php:1117 +msgid "Custom splash login metaconsole" +msgstr "" + +#: ../../include/functions_config.php:1121 +msgid "Custom title1 login metaconsole" +msgstr "" + +#: ../../include/functions_config.php:1125 +msgid "Custom title2 login metaconsole" +msgstr "" + +#: ../../include/functions_config.php:1129 +msgid "Login background metaconsole" +msgstr "" + +#: ../../include/functions_config.php:1153 +msgid "Default line favourite_view for the Visual Console" +msgstr "" + +#: ../../include/functions_config.php:1157 +msgid "Default line menu items for the Visual Console" +msgstr "" + +#: ../../include/functions_config.php:1169 +msgid "Default line menu items for the Services" +msgstr "" + +#: ../../include/functions_config.php:1201 +msgid "Show units in values report" +msgstr "" + +#: ../../include/functions_config.php:1209 +msgid "Autohidden menu" +msgstr "" + +#: ../../include/functions_config.php:1213 +msgid "visual_animation" +msgstr "" + +#: ../../include/functions_config.php:1221 +msgid "Fixed graph" +msgstr "" + +#: ../../include/functions_config.php:1229 +msgid "Paginate module" +msgstr "" + +#: ../../include/functions_config.php:1233 +#: ../../include/class/ExternalTools.class.php:303 +msgid "Custom graphviz directory" +msgstr "" + +#: ../../include/functions_config.php:1241 +msgid "Shortened module graph data" +msgstr "" + +#: ../../include/functions_config.php:1249 +msgid "Show empty groups in group view." +msgstr "" + +#: ../../include/functions_config.php:1257 +msgid "Default type of module charts." +msgstr "" + +#: ../../include/functions_config.php:1261 +msgid "Default Number of elements in Custom Graph." +msgstr "" + +#: ../../include/functions_config.php:1265 +msgid "Default type of interface charts." +msgstr "" + +#: ../../include/functions_config.php:1281 +msgid "Display lateral menus with left click" +msgstr "" + +#: ../../include/functions_config.php:1290 +msgid "Service item padding size" +msgstr "" + +#: ../../include/functions_config.php:1295 +msgid "Default percentil" +msgstr "" + +#: ../../include/functions_config.php:1299 +msgid "Default full scale (TIP)" +msgstr "" + +#: ../../include/functions_config.php:1303 +msgid "Default soft graphs" +msgstr "" + +#: ../../include/functions_config.php:1307 +msgid "Default zoom graphs" +msgstr "" + +#: ../../include/functions_config.php:1316 +msgid "Default height of the chart image" +msgstr "" + +#: ../../include/functions_config.php:1338 +msgid "Add the custom post process" +msgstr "" + +#: ../../include/functions_config.php:1346 +msgid "Delete the custom post process" +msgstr "" + +#: ../../include/functions_config.php:1400 +msgid "Add custom module unit" +msgstr "" + +#: ../../include/functions_config.php:1406 +msgid "Delete custom module unit" +msgstr "" + +#: ../../include/functions_config.php:1499 +msgid "IP ElasticSearch server" +msgstr "" + +#: ../../include/functions_config.php:1503 +msgid "Port ElasticSearch server" +msgstr "" + +#: ../../include/functions_config.php:1524 +msgid "Active and historical database cannot be the same." +msgstr "" + +#: ../../include/functions_config.php:1542 +msgid "Enable history database" +msgstr "" + +#: ../../include/functions_config.php:1546 +msgid "Enable history event" +msgstr "" + +#: ../../include/functions_config.php:1570 +msgid "Event Days" +msgstr "" + +#: ../../include/functions_config.php:1586 +msgid "Delay" +msgstr "" + +#: ../../include/functions_config.php:1618 +msgid "Historical database purge" +msgstr "" + +#: ../../include/functions_config.php:1626 +msgid "Historical database partitions" +msgstr "" + +#: ../../include/functions_config.php:1634 +msgid "Historical database events purge" +msgstr "" + +#: ../../include/functions_config.php:1642 +msgid "Historical database string purge" +msgstr "" + +#: ../../include/functions_config.php:1657 +msgid "eHorus user login" +msgstr "" + +#: ../../include/functions_config.php:1669 +msgid "eHorus API hostname" +msgstr "" + +#: ../../include/functions_config.php:1673 +msgid "eHorus API port" +msgstr "" + +#: ../../include/functions_config.php:1677 +msgid "eHorus request timeout" +msgstr "" + +#: ../../include/functions_config.php:1681 +msgid "eHorus id custom field" +msgstr "" + +#: ../../include/functions_config.php:1687 +msgid "Integria user login" +msgstr "" + +#: ../../include/functions_config.php:1695 +msgid "Integria user" +msgstr "" + +#: ../../include/functions_config.php:1699 +msgid "Integria password" +msgstr "" + +#: ../../include/functions_config.php:1713 +msgid "integria API hostname" +msgstr "" + +#: ../../include/functions_config.php:1721 +msgid "Integria request timeout" +msgstr "" + +#: ../../include/functions_config.php:1725 +msgid "Integria default group" +msgstr "" + +#: ../../include/functions_config.php:1729 +msgid "Integria custom response default group" +msgstr "" + +#: ../../include/functions_config.php:1733 +msgid "Integria default priority" +msgstr "" + +#: ../../include/functions_config.php:1737 +msgid "Integria custom response default priority" +msgstr "" + +#: ../../include/functions_config.php:1741 +msgid "Integria default creator" +msgstr "" + +#: ../../include/functions_config.php:1745 +msgid "Integria default owner" +msgstr "" + +#: ../../include/functions_config.php:1749 +msgid "Integria custom response default owner" +msgstr "" + +#: ../../include/functions_config.php:1753 +msgid "Integria default ticket type" +msgstr "" + +#: ../../include/functions_config.php:1757 +msgid "Integria custom response default ticket type" +msgstr "" + +#: ../../include/functions_config.php:1761 +msgid "Integria default ticket status" +msgstr "" + +#: ../../include/functions_config.php:1765 +msgid "Integria custom response default ticket status" +msgstr "" + +#: ../../include/functions_config.php:1769 +msgid "Integria default ticket title" +msgstr "" + +#: ../../include/functions_config.php:1773 +msgid "Integria custom response default ticket title" +msgstr "" + +#: ../../include/functions_config.php:1777 +msgid "Integria default ticket content" +msgstr "" + +#: ../../include/functions_config.php:1781 +msgid "Integria custom response default ticket content" +msgstr "" + +#: ../../include/functions_config.php:1787 +msgid "Module Library User" +msgstr "" + +#: ../../include/functions_config.php:1791 +msgid "Module Library Password" +msgstr "" + +#: ../../include/functions_config.php:1797 +msgid "WebSocket bind address" +msgstr "" + +#: ../../include/functions_config.php:1801 +msgid "WebSocket port" +msgstr "" + +#: ../../include/functions_config.php:1824 +#, php-format +msgid "Failed updated: the next values cannot update:
    -%s" +msgstr "" + +#: ../../include/functions_config.php:2380 +#: ../../operation/agentes/networkmap.dinamic.php:226 +msgid "Pandora FMS" +msgstr "" + +#: ../../include/functions_config.php:2388 +msgid "PandoraFMS Metaconsole" +msgstr "" + +#: ../../include/functions_config.php:2392 +msgid "Centralized operation console" +msgstr "" + +#: ../../include/functions_config.php:2396 +msgid "PANDORA FMS" +msgstr "" + +#: ../../include/get_file.php:57 +msgid "Security error. Please contact the administrator." +msgstr "" + +#: ../../include/get_file.php:92 +msgid "File is missing in disk storage. Please contact the administrator." +msgstr "" + +#: ../../include/functions_netflow.php:351 +msgid "Avg. Throughput" +msgstr "" + +#: ../../include/functions_netflow.php:431 +msgid "Average bits per second" +msgstr "" + +#: ../../include/functions_netflow.php:436 +msgid "Average packets per second" +msgstr "" + +#: ../../include/functions_netflow.php:441 +msgid "Average bytes per packet" +msgstr "" + +#: ../../include/functions_netflow.php:1182 +msgid "Area graph" +msgstr "" + +#: ../../include/functions_netflow.php:1184 +#: ../../operation/agentes/exportdata.php:378 +msgid "Data table" +msgstr "" + +#: ../../include/functions_netflow.php:1185 +msgid "Top-N connections" +msgstr "" + +#: ../../include/functions_netflow.php:1186 +msgid "Circular mesh" +msgstr "" + +#: ../../include/functions_netflow.php:1187 +#: ../../include/functions_netflow.php:1452 +msgid "Host detailed traffic" +msgstr "" + +#: ../../include/functions_netflow.php:1439 +msgid "Sent" +msgstr "" + +#: ../../include/functions_netflow.php:1447 +msgid "Received" +msgstr "" + +#: ../../include/functions_netflow.php:1628 +msgid "Dst port" +msgstr "" + +#: ../../include/functions_netflow.php:1631 +msgid "Dst IP" +msgstr "" + +#: ../../include/functions_netflow.php:1634 +msgid "Src IP" +msgstr "" + +#: ../../include/functions_netflow.php:1637 +msgid "Src port" +msgstr "" + +#: ../../include/functions_netflow.php:1823 +#, php-format +msgid "nfdump binary (%s) not found!" +msgstr "" + +#: ../../include/functions_netflow.php:1830 +msgid "Make sure nfdump version 1.6.8 or newer is installed!" +msgstr "" + +#: ../../include/functions_netflow.php:1847 +msgid "High" +msgstr "" + +#: ../../include/functions_netflow.php:1848 +msgid "Ultra High" +msgstr "" + +#: ../../include/functions_netflow.php:1881 +#, php-format +msgid "Agregate by %s" +msgstr "" + +#: ../../include/functions_netflow.php:1889 +#, php-format +msgid "Resolution %s" +msgstr "" + +#: ../../include/class/Tree.class.php:775 +#: ../../include/class/Tree.class.php:777 +msgid "Module alerts" +msgstr "" + +#: ../../include/class/ConfigPEN.class.php:428 +#: ../../include/class/ConfigPEN.class.php:597 +#: ../../include/class/ModuleTemplates.class.php:1074 +msgid "PEN" +msgstr "" + +#: ../../include/class/ConfigPEN.class.php:435 +#: ../../include/class/ConfigPEN.class.php:598 +msgid "Manufacturer" +msgstr "" + +#: ../../include/class/ConfigPEN.class.php:483 +msgid "PEN is required" +msgstr "" + +#: ../../include/class/ConfigPEN.class.php:509 +msgid "PEN is required." +msgstr "" + +#: ../../include/class/ConfigPEN.class.php:513 +msgid "Manufacturer is required" +msgstr "" + +#: ../../include/class/ConfigPEN.class.php:530 +msgid "This PEN definition does not exist" +msgstr "" + +#: ../../include/class/ConfigPEN.class.php:544 +msgid "created" +msgstr "" + +#: ../../include/class/ConfigPEN.class.php:550 +msgid "This PEN definition already exists" +msgstr "" + +#: ../../include/class/ConfigPEN.class.php:571 +#, php-format +msgid "Succesfully %s" +msgstr "" + +#: ../../include/class/ConfigPEN.class.php:651 +msgid "Register manufacturer" +msgstr "" + +#: ../../include/class/ConfigPEN.class.php:667 +msgid "Are you sure you want to delete this PEN?" +msgstr "" + +#: ../../include/class/ConfigPEN.class.php:694 +msgid "Register new manufacturer" +msgstr "" + +#: ../../include/class/HelpFeedBack.class.php:104 +msgid "Browser not compatible." +msgstr "" + +#: ../../include/class/HelpFeedBack.class.php:147 +msgid "Suggestion" +msgstr "" + +#: ../../include/class/HelpFeedBack.class.php:158 +msgid "Something is wrong" +msgstr "" + +#: ../../include/class/HelpFeedBack.class.php:171 +#: ../../include/class/Diagnostics.class.php:1894 +msgid "What happened?" +msgstr "" + +#: ../../include/class/HelpFeedBack.class.php:181 +msgid "Your Email" +msgstr "" + +#: ../../include/class/HelpFeedBack.class.php:198 +msgid "Submit" +msgstr "" + +#: ../../include/class/HelpFeedBack.class.php:213 +#: ../../include/class/Diagnostics.class.php:1967 ../../general/header.php:356 +#: ../../general/header.php:358 +msgid "Feedback" +msgstr "" + +#: ../../include/class/HelpFeedBack.class.php:253 +msgid "[pandorafms wiki] New suggestion" +msgstr "" + +#: ../../include/class/HelpFeedBack.class.php:255 +msgid "[pandorafms wiki] New report" +msgstr "" + +#: ../../include/class/HelpFeedBack.class.php:261 +msgid "Please provide your email address, we promise not to bother you" +msgstr "" + +#: ../../include/class/HelpFeedBack.class.php:309 +msgid "Something went wrong while sending the report." +msgstr "" + +#: ../../include/class/HelpFeedBack.class.php:360 +msgid "Your report had been successfully sent to Artica." +msgstr "" + +#: ../../include/class/HelpFeedBack.class.php:360 +msgid "Thank you!" +msgstr "" + +#: ../../include/class/Diagnostics.class.php:157 +#, php-format +msgid "%s Diagnostic tool" +msgstr "" + +#: ../../include/class/Diagnostics.class.php:222 +#, php-format +msgid "Info status %s" +msgstr "" + +#: ../../include/class/Diagnostics.class.php:226 +msgid "PHP setup" +msgstr "" + +#: ../../include/class/Diagnostics.class.php:234 +msgid "Database health status" +msgstr "" + +#: ../../include/class/Diagnostics.class.php:238 +msgid "Database status info" +msgstr "" + +#: ../../include/class/Diagnostics.class.php:242 +msgid "System Info" +msgstr "" + +#: ../../include/class/Diagnostics.class.php:246 +msgid "MySQL Performance metrics" +msgstr "" + +#: ../../include/class/Diagnostics.class.php:251 +#, php-format +msgid "Tables fragmentation in the %s database" +msgstr "" + +#: ../../include/class/Diagnostics.class.php:257 +#, php-format +msgid "%s logs dates" +msgstr "" + +#: ../../include/class/Diagnostics.class.php:261 +#, php-format +msgid "%s Licence Information" +msgstr "" + +#: ../../include/class/Diagnostics.class.php:265 +#: ../../include/class/Diagnostics.class.php:1251 +msgid "Status of the attachment folder" +msgstr "" + +#: ../../include/class/Diagnostics.class.php:269 +msgid "Information from the tagente_datos table" +msgstr "" + +#: ../../include/class/Diagnostics.class.php:273 +#, php-format +msgid "%s server threads" +msgstr "" + +#: ../../include/class/Diagnostics.class.php:277 +msgid "SQL show engine innodb status" +msgstr "" + +#: ../../include/class/Diagnostics.class.php:325 +msgid "Graph of the Agents Unknown module." +msgstr "" + +#: ../../include/class/Diagnostics.class.php:332 +msgid "Graph of the Database Maintenance module." +msgstr "" + +#: ../../include/class/Diagnostics.class.php:339 +msgid "Graph of the Free Disk Spool Dir module." +msgstr "" + +#: ../../include/class/Diagnostics.class.php:345 +msgid "Graph of the Free RAM module." +msgstr "" + +#: ../../include/class/Diagnostics.class.php:351 +msgid "Graph of the Queued Modules module." +msgstr "" + +#: ../../include/class/Diagnostics.class.php:357 +msgid "Graph of the Status module." +msgstr "" + +#: ../../include/class/Diagnostics.class.php:363 +msgid "Graph of the System Load AVG module." +msgstr "" + +#: ../../include/class/Diagnostics.class.php:370 +msgid "Graph of the Execution Time module." +msgstr "" + +#: ../../include/class/Diagnostics.class.php:379 +msgid "Graphs modules that represent the self-monitoring system" +msgstr "" + +#: ../../include/class/Diagnostics.class.php:436 +#, php-format +msgid "%s Build" +msgstr "" + +#: ../../include/class/Diagnostics.class.php:440 +#, php-format +msgid "%s Version" +msgstr "" + +#: ../../include/class/Diagnostics.class.php:444 +msgid "Minor Release" +msgstr "" + +#: ../../include/class/Diagnostics.class.php:448 +msgid "Homedir" +msgstr "" + +#: ../../include/class/Diagnostics.class.php:452 +msgid "HomeUrl" +msgstr "" + +#: ../../include/class/Diagnostics.class.php:456 +msgid "Enterprise installed" +msgstr "" + +#: ../../include/class/Diagnostics.class.php:457 +msgid "true" +msgstr "" + +#: ../../include/class/Diagnostics.class.php:457 +msgid "false" +msgstr "" + +#: ../../include/class/Diagnostics.class.php:460 +msgid "Update Key" +msgstr "" + +#: ../../include/class/Diagnostics.class.php:464 +msgid "Updating code path" +msgstr "" + +#: ../../include/class/Diagnostics.class.php:468 +msgid "Current Update #" +msgstr "" + +#: ../../include/class/Diagnostics.class.php:492 +msgid "PHP Version" +msgstr "" + +#: ../../include/class/Diagnostics.class.php:496 +msgid "PHP Max execution time" +msgstr "" + +#: ../../include/class/Diagnostics.class.php:500 +msgid "PHP Max input time" +msgstr "" + +#: ../../include/class/Diagnostics.class.php:504 +msgid "PHP Memory limit" +msgstr "" + +#: ../../include/class/Diagnostics.class.php:508 +msgid "Session cookie lifetime" +msgstr "" + +#: ../../include/class/Diagnostics.class.php:557 +msgid "Total groups" +msgstr "" + +#: ../../include/class/Diagnostics.class.php:561 +msgid "Total module data records" +msgstr "" + +#: ../../include/class/Diagnostics.class.php:565 +msgid "Total agent access record" +msgstr "" + +#: ../../include/class/Diagnostics.class.php:573 +msgid "Total traps" +msgstr "" + +#: ../../include/class/Diagnostics.class.php:577 +msgid "Total users" +msgstr "" + +#: ../../include/class/Diagnostics.class.php:581 +msgid "Total sessions" +msgstr "" + +#: ../../include/class/Diagnostics.class.php:620 +msgid "Pandora DB has never been executed" +msgstr "" + +#: ../../include/class/Diagnostics.class.php:627 +msgid "Ago" +msgstr "" + +#: ../../include/class/Diagnostics.class.php:634 +msgid "Total unknown agents" +msgstr "" + +#: ../../include/class/Diagnostics.class.php:638 +msgid "Total not-init modules" +msgstr "" + +#: ../../include/class/Diagnostics.class.php:642 +msgid "Pandora DB Last run" +msgstr "" + +#: ../../include/class/Diagnostics.class.php:674 +msgid "DB Schema Version (first installed)" +msgstr "" + +#: ../../include/class/Diagnostics.class.php:678 +msgid "DB Schema Version (actual)" +msgstr "" + +#: ../../include/class/Diagnostics.class.php:682 +msgid "DB Schema Build" +msgstr "" + +#: ../../include/class/Diagnostics.class.php:686 +msgid "DB Size" +msgstr "" + +#: ../../include/class/Diagnostics.class.php:726 +msgid "RAM" +msgstr "" + +#: ../../include/class/Diagnostics.class.php:730 +msgid "Os" +msgstr "" + +#: ../../include/class/Diagnostics.class.php:738 +#: ../../include/class/Diagnostics.class.php:756 +#: ../../include/class/NetworkMap.class.php:2909 +msgid "Ip" +msgstr "" + +#: ../../include/class/Diagnostics.class.php:784 +msgid "InnoDB buffer pool size" +msgstr "" + +#: ../../include/class/Diagnostics.class.php:788 +#, php-format +msgid "" +"It has to be 40% of the server memory not recommended to be greater or less" +msgstr "" + +#: ../../include/class/Diagnostics.class.php:793 +msgid "InnoDB file per table" +msgstr "" + +#: ../../include/class/Diagnostics.class.php:796 +#: ../../include/class/Diagnostics.class.php:868 +msgid "Recommended ON" +msgstr "" + +#: ../../include/class/Diagnostics.class.php:800 +msgid "InnoDB flush log at trx-commit" +msgstr "" + +#: ../../include/class/Diagnostics.class.php:803 +#, php-format +msgid "Recommended Value %d" +msgstr "" + +#: ../../include/class/Diagnostics.class.php:807 +msgid "InnoDB lock wait timeout" +msgstr "" + +#: ../../include/class/Diagnostics.class.php:810 +#: ../../include/class/Diagnostics.class.php:817 +#: ../../include/class/Diagnostics.class.php:824 +#: ../../include/class/Diagnostics.class.php:831 +#: ../../include/class/Diagnostics.class.php:838 +#: ../../include/class/Diagnostics.class.php:847 +#: ../../include/class/Diagnostics.class.php:854 +#: ../../include/class/Diagnostics.class.php:861 +#: ../../include/class/Diagnostics.class.php:875 +#: ../../include/class/Diagnostics.class.php:882 +#: ../../include/class/Diagnostics.class.php:889 +#: ../../include/class/Diagnostics.class.php:903 +#: ../../include/class/Diagnostics.class.php:910 +msgid "Min. Recommended Value" +msgstr "" + +#: ../../include/class/Diagnostics.class.php:814 +msgid "InnoDB log buffer size" +msgstr "" + +#: ../../include/class/Diagnostics.class.php:821 +msgid "InnoDB log file size" +msgstr "" + +#: ../../include/class/Diagnostics.class.php:828 +msgid "Maximun allowed packet" +msgstr "" + +#: ../../include/class/Diagnostics.class.php:835 +msgid "Maximun connections" +msgstr "" + +#: ../../include/class/Diagnostics.class.php:840 +msgid "conections" +msgstr "" + +#: ../../include/class/Diagnostics.class.php:844 +msgid "Query cache limit" +msgstr "" + +#: ../../include/class/Diagnostics.class.php:851 +msgid "Query cache min-res-unit" +msgstr "" + +#: ../../include/class/Diagnostics.class.php:858 +msgid "Query cache size" +msgstr "" + +#: ../../include/class/Diagnostics.class.php:865 +msgid "Query cache type" +msgstr "" + +#: ../../include/class/Diagnostics.class.php:872 +msgid "Read buffer size" +msgstr "" + +#: ../../include/class/Diagnostics.class.php:879 +msgid "Read rnd-buffer size" +msgstr "" + +#: ../../include/class/Diagnostics.class.php:886 +msgid "Sort buffer size" +msgstr "" + +#: ../../include/class/Diagnostics.class.php:893 +msgid "Sql mode" +msgstr "" + +#: ../../include/class/Diagnostics.class.php:896 +msgid "Must be empty" +msgstr "" + +#: ../../include/class/Diagnostics.class.php:900 +msgid "Thread cache size" +msgstr "" + +#: ../../include/class/Diagnostics.class.php:907 +msgid "Thread stack" +msgstr "" + +#: ../../include/class/Diagnostics.class.php:970 +msgid "" +"Table fragmentation is higher than recommended. They should be defragmented." +msgstr "" + +#: ../../include/class/Diagnostics.class.php:974 +msgid "Table fragmentation is correct." +msgstr "" + +#: ../../include/class/Diagnostics.class.php:983 +msgid "Tables fragmentation (maximum recommended value)" +msgstr "" + +#: ../../include/class/Diagnostics.class.php:988 +msgid "Tables fragmentation (current value)" +msgstr "" + +#: ../../include/class/Diagnostics.class.php:992 +msgid "Table fragmentation status" +msgstr "" + +#: ../../include/class/Diagnostics.class.php:1027 +msgid "Size server logs (current value)" +msgstr "" + +#: ../../include/class/Diagnostics.class.php:1031 +msgid "Status server logs" +msgstr "" + +#: ../../include/class/Diagnostics.class.php:1036 +msgid "Size error logs (current value)" +msgstr "" + +#: ../../include/class/Diagnostics.class.php:1040 +msgid "Status error logs" +msgstr "" + +#: ../../include/class/Diagnostics.class.php:1045 +msgid "Size console logs (current value)" +msgstr "" + +#: ../../include/class/Diagnostics.class.php:1049 +msgid "Status console logs" +msgstr "" + +#: ../../include/class/Diagnostics.class.php:1084 +msgid "License capacity is less than 90 percent" +msgstr "" + +#: ../../include/class/Diagnostics.class.php:1087 +msgid "License capacity exceeds 90 percent" +msgstr "" + +#: ../../include/class/Diagnostics.class.php:1095 +msgid "" +"The average of modules per agent is more than 40. You can have performance " +"problems" +msgstr "" + +#: ../../include/class/Diagnostics.class.php:1100 +msgid "The average of modules per agent is less than 40" +msgstr "" + +#: ../../include/class/Diagnostics.class.php:1136 +msgid "The system has no load" +msgstr "" + +#: ../../include/class/Diagnostics.class.php:1180 +msgid "Network Management System" +msgstr "" + +#: ../../include/class/Diagnostics.class.php:1181 +#: ../../include/class/Diagnostics.class.php:1185 +msgid "Off" +msgstr "" + +#: ../../include/class/Diagnostics.class.php:1192 +msgid "Status of agents capacity" +msgstr "" + +#: ../../include/class/Diagnostics.class.php:1197 +msgid "Status of average modules per agent" +msgstr "" + +#: ../../include/class/Diagnostics.class.php:1203 +msgid "Interval average of the network modules" +msgstr "" + +#: ../../include/class/Diagnostics.class.php:1233 +msgid "The attached folder contains more than 700 files." +msgstr "" + +#: ../../include/class/Diagnostics.class.php:1238 +msgid "The attached folder contains less than 700 files." +msgstr "" + +#: ../../include/class/Diagnostics.class.php:1247 +msgid "Total files in the attached folder" +msgstr "" + +#: ../../include/class/Diagnostics.class.php:1277 +msgid "" +"The tagente_datos table contains too much data. A historical database is " +"recommended." +msgstr "" + +#: ../../include/class/Diagnostics.class.php:1282 +msgid "The tagente_datos table contains an acceptable amount of data." +msgstr "" + +#: ../../include/class/Diagnostics.class.php:1291 +msgid "Total data in tagente_datos table" +msgstr "" + +#: ../../include/class/Diagnostics.class.php:1295 +msgid "Tagente_datos table status" +msgstr "" + +#: ../../include/class/Diagnostics.class.php:1331 +msgid "Threads" +msgstr "" + +#: ../../include/class/Diagnostics.class.php:1341 +msgid "Total threads" +msgstr "" + +#: ../../include/class/Diagnostics.class.php:1348 +msgid "Current pandora_server running threads" +msgstr "" + +#: ../../include/class/Diagnostics.class.php:1352 +msgid "" +"There's more pandora_server threads than configured, are you running " +"multiple servers simultaneusly?." +msgstr "" + +#: ../../include/class/Diagnostics.class.php:1486 +msgid "" +"Please check your Pandora Server setup and make sure that the database " +"maintenance daemon is running." +msgstr "" + +#: ../../include/class/Diagnostics.class.php:1490 +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:1752 +msgid "You have more than 10 MB of logs" +msgstr "" + +#: ../../include/class/Diagnostics.class.php:1755 +msgid "You have less than 10 MB of logs" +msgstr "" + +#: ../../include/class/Diagnostics.class.php:1922 +msgid "Include installation data" +msgstr "" + +#: ../../include/class/Diagnostics.class.php:1959 +msgid "Hello Feedback-Men" +msgstr "" + +#: ../../include/class/Diagnostics.class.php:1969 +msgid "Hello" +msgstr "" + +#: ../../include/class/Diagnostics.class.php:1973 +#, php-format +msgid "User %s is reporting an issue in its %s experience" +msgstr "" + +#: ../../include/class/Diagnostics.class.php:1982 +msgid "Find some files attached to this mail" +msgstr "" + +#: ../../include/class/Diagnostics.class.php:1985 +msgid "PDF is the diagnostic information retrieved at report time" +msgstr "" + +#: ../../include/class/Diagnostics.class.php:1988 +msgid "CSV contains the statuses of every product file" +msgstr "" + +#: ../../include/class/Diagnostics.class.php:1993 +#, 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:1997 +msgid "LEGAL WARNING" +msgstr "" + +#: ../../include/class/Diagnostics.class.php:1999 +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:2003 +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:2007 +msgid "If you have received this transmission in error, do not read it" +msgstr "" + +#: ../../include/class/Diagnostics.class.php:2011 +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:2090 +msgid "Invalid cron task" +msgstr "" + +#: ../../include/class/Diagnostics.class.php:2091 +msgid "Sending of information has been processed" +msgstr "" + +#: ../../include/class/Diagnostics.class.php:2126 +#: ../../include/class/Diagnostics.class.php:2136 +msgid "Diagnostics Info" +msgstr "" + +#: ../../include/class/Diagnostics.class.php:2244 +#: ../../include/class/Diagnostics.class.php:2254 +msgid "PHP Info" +msgstr "" + +#: ../../include/class/NetworkMap.class.php:2317 +msgid "Failed to generate dotmap, please select different layout schema" +msgstr "" + +#: ../../include/class/NetworkMap.class.php:2452 +msgid "Failed to retrieve graph data." +msgstr "" + +#: ../../include/class/NetworkMap.class.php:2663 +msgid "Holding Area" +msgstr "" + +#: ../../include/class/NetworkMap.class.php:2790 +#, php-format +msgid "Edit node %s" +msgstr "" + +#: ../../include/class/NetworkMap.class.php:2792 +msgid "Show details and options" +msgstr "" + +#: ../../include/class/NetworkMap.class.php:2793 +msgid "Add a interface link" +msgstr "" + +#: ../../include/class/NetworkMap.class.php:2794 +msgid "Set parent interface" +msgstr "" + +#: ../../include/class/NetworkMap.class.php:2795 +msgid "Set as children" +msgstr "" + +#: ../../include/class/NetworkMap.class.php:2796 +msgid "Set parent" +msgstr "" + +#: ../../include/class/NetworkMap.class.php:2797 +#: ../../include/class/NetworkMap.class.php:2810 +msgid "Abort the action of set relationship" +msgstr "" + +#: ../../include/class/NetworkMap.class.php:2799 +#: ../../include/class/NetworkMap.class.php:3155 +msgid "Add node" +msgstr "" + +#: ../../include/class/NetworkMap.class.php:2800 +msgid "Set center" +msgstr "" + +#: ../../include/class/NetworkMap.class.php:2802 +msgid "Refresh Holding area" +msgstr "" + +#: ../../include/class/NetworkMap.class.php:2803 +#: ../../include/class/NetworkMap.class.php:2806 +msgid "Proceed" +msgstr "" + +#: ../../include/class/NetworkMap.class.php:2804 +msgid "" +"Resetting the map will delete all customizations you have done, including " +"manual relationships between elements, new items, etc." +msgstr "" + +#: ../../include/class/NetworkMap.class.php:2808 +msgid "Restart map" +msgstr "" + +#: ../../include/class/NetworkMap.class.php:2809 +msgid "Abort the interface relationship" +msgstr "" + +#: ../../include/class/NetworkMap.class.php:2827 +#: ../../include/class/NetworkMap.class.php:2876 +msgid "Edit node" +msgstr "" + +#: ../../include/class/NetworkMap.class.php:2837 +#: ../../include/class/NetworkMap.class.php:2886 +msgid "Adresses" +msgstr "" + +#: ../../include/class/NetworkMap.class.php:2839 +#: ../../include/class/NetworkMap.class.php:2888 +msgid "OS type" +msgstr "" + +#: ../../include/class/NetworkMap.class.php:2846 +#: ../../include/class/NetworkMap.class.php:2847 +#: ../../include/class/NetworkMap.class.php:2895 +#: ../../include/class/NetworkMap.class.php:2896 +msgid "Node Details" +msgstr "" + +#: ../../include/class/NetworkMap.class.php:2921 +#: ../../include/class/NetworkMap.class.php:2922 +msgid "Interface Information (SNMP)" +msgstr "" + +#: ../../include/class/NetworkMap.class.php:2933 +msgid "Shape" +msgstr "" + +#: ../../include/class/NetworkMap.class.php:2936 +msgid "Circle" +msgstr "" + +#: ../../include/class/NetworkMap.class.php:2937 +msgid "Square" +msgstr "" + +#: ../../include/class/NetworkMap.class.php:2938 +msgid "Rhombus" +msgstr "" + +#: ../../include/class/NetworkMap.class.php:2951 +msgid "name node" +msgstr "" + +#: ../../include/class/NetworkMap.class.php:2969 +#: ../../include/class/NetworkMap.class.php:3272 +msgid "name fictional node" +msgstr "" + +#: ../../include/class/NetworkMap.class.php:2974 +#: ../../include/class/NetworkMap.class.php:3277 +msgid "Networkmap to link" +msgstr "" + +#: ../../include/class/NetworkMap.class.php:2986 +msgid "Update fictional node" +msgstr "" + +#: ../../include/class/NetworkMap.class.php:2996 +#: ../../include/class/NetworkMap.class.php:2997 +msgid "Node options" +msgstr "" + +#: ../../include/class/NetworkMap.class.php:3008 +#: ../../include/class/NetworkMap.class.php:3101 +msgid "Node source" +msgstr "" + +#: ../../include/class/NetworkMap.class.php:3009 +#: ../../include/class/NetworkMap.class.php:3102 +msgid "Interface source" +msgstr "" + +#: ../../include/class/NetworkMap.class.php:3010 +#: ../../include/class/NetworkMap.class.php:3103 +msgid "Interface Target" +msgstr "" + +#: ../../include/class/NetworkMap.class.php:3012 +#: ../../include/class/NetworkMap.class.php:3104 +msgid "Node target" +msgstr "" + +#: ../../include/class/NetworkMap.class.php:3013 +msgid "E." +msgstr "" + +#: ../../include/class/NetworkMap.class.php:3075 +msgid "There are not relations" +msgstr "" + +#: ../../include/class/NetworkMap.class.php:3143 +msgid "Add interface link" +msgstr "" + +#: ../../include/class/NetworkMap.class.php:3174 +#: ../../include/class/NetworkMap.class.php:3196 +#: ../../include/class/NetworkMap.class.php:3197 +#: ../../include/class/NetworkMap.class.php:3247 +#: ../../include/class/NetworkMap.class.php:3259 +#: ../../include/class/NetworkMap.class.php:3300 +msgid "Add agent node" +msgstr "" + +#: ../../include/class/NetworkMap.class.php:3258 +msgid "Add agent node (filter by group)" +msgstr "" + +#: ../../include/class/NetworkMap.class.php:3289 +msgid "Add fictional node" +msgstr "" + +#: ../../include/class/NetworkMap.class.php:3299 +msgid "Add fictional point" +msgstr "" + +#: ../../include/class/NetworkMap.class.php:3513 +msgid "Open Minimap" +msgstr "" + +#: ../../include/class/NetworkMap.class.php:3519 +msgid "Hide Labels" +msgstr "" + +#: ../../include/class/AgentsAlerts.class.php:502 +msgid "There are no agents with alerts" +msgstr "" + +#: ../../include/class/AgentsAlerts.class.php:580 +msgid "Previous alerts" +msgstr "" + +#: ../../include/class/AgentsAlerts.class.php:644 +msgid "More alerts" +msgstr "" + +#: ../../include/class/AgentsAlerts.class.php:729 +msgid "Agents/Alerts" +msgstr "" + +#: ../../include/class/AgentsAlerts.class.php:778 +msgid "Show modules without alerts" +msgstr "" + +#: ../../include/class/AgentsAlerts.class.php:808 +#: ../../operation/gis_maps/render_view.php:155 +msgid "10 minutes" +msgstr "" + +#: ../../include/class/ManageNetScanScripts.class.php:122 +msgid "Net scan scripts" +msgstr "" + +#: ../../include/class/ManageNetScanScripts.class.php:223 +msgid "Problem creating" +msgstr "" + +#: ../../include/class/ManageNetScanScripts.class.php:234 +#: ../../include/class/ManageNetScanScripts.class.php:321 +msgid "Name or Script fullpath they can not be empty" +msgstr "" + +#: ../../include/class/ManageNetScanScripts.class.php:255 +#: ../../include/class/ManageNetScanScripts.class.php:342 +msgid "Problem deleting Net scan Scripts, Not selected script" +msgstr "" + +#: ../../include/class/ManageNetScanScripts.class.php:310 +msgid "Problem updating" +msgstr "" + +#: ../../include/class/ManageNetScanScripts.class.php:361 +msgid "Problem deleting Net scan Scripts" +msgstr "" + +#: ../../include/class/ManageNetScanScripts.class.php:366 +msgid "Deleted successfully" +msgstr "" + +#: ../../include/class/ManageNetScanScripts.class.php:439 +msgid "Are you sure delete script?" +msgstr "" + +#: ../../include/class/ManageNetScanScripts.class.php:459 +msgid "Delete Script" +msgstr "" + +#: ../../include/class/ManageNetScanScripts.class.php:478 +msgid "There are no net scan scripts in the system" +msgstr "" + +#: ../../include/class/ManageNetScanScripts.class.php:552 +msgid "Script fullpath" +msgstr "" + +#: ../../include/class/CredentialStore.class.php:611 +#, php-format +msgid "Not a valid JSON: %s" +msgstr "" + +#: ../../include/class/CredentialStore.class.php:621 +msgid "Key identifier is required" +msgstr "" + +#: ../../include/class/CredentialStore.class.php:623 +msgid "You must select a group where store this key!" +msgstr "" + +#: ../../include/class/CredentialStore.class.php:625 +msgid "You must specify a product type" +msgstr "" + +#: ../../include/class/CredentialStore.class.php:627 +msgid "You must specify a username and/or password" +msgstr "" + +#: ../../include/class/CredentialStore.class.php:629 +msgid "Identifier with forbidden characters. Check the documentation." +msgstr "" + +#: ../../include/class/CredentialStore.class.php:742 +msgid "identifier cannot be empty" +msgstr "" + +#: ../../include/class/CredentialStore.class.php:785 +#, php-format +msgid "" +"Database encryption is not enabled. Credentials will be stored in plaintext. " +"%s" +msgstr "" + +#: ../../include/class/CredentialStore.class.php:804 +#: ../../include/class/CredentialStore.class.php:937 +msgid "Product" +msgstr "" + +#: ../../include/class/CredentialStore.class.php:869 +msgid "Add key" +msgstr "" + +#: ../../include/class/CredentialStore.class.php:960 +msgid "Extra (2)" +msgstr "" + +#: ../../include/class/CredentialStore.class.php:970 +#: ../../include/class/CredentialStore.class.php:1141 +msgid "Access key ID" +msgstr "" + +#: ../../include/class/CredentialStore.class.php:971 +#: ../../include/class/CredentialStore.class.php:1142 +msgid "Secret access key" +msgstr "" + +#: ../../include/class/CredentialStore.class.php:977 +#: ../../include/class/CredentialStore.class.php:994 +msgid "Account ID" +msgstr "" + +#: ../../include/class/CredentialStore.class.php:978 +#: ../../include/class/CredentialStore.class.php:1149 +msgid "Application secret" +msgstr "" + +#: ../../include/class/CredentialStore.class.php:979 +#: ../../include/class/CredentialStore.class.php:1150 +msgid "Tenant or domain name" +msgstr "" + +#: ../../include/class/CredentialStore.class.php:980 +#: ../../include/class/CredentialStore.class.php:1151 +msgid "Subscription id" +msgstr "" + +#: ../../include/class/CredentialStore.class.php:984 +#: ../../include/class/CredentialStore.class.php:1167 +msgid "Auth JSON" +msgstr "" + +#: ../../include/class/CredentialStore.class.php:1148 +msgid "Client ID" +msgstr "" + +#: ../../include/class/CredentialStore.class.php:1157 +msgid "Account ID." +msgstr "" + +#: ../../include/class/CredentialStore.class.php:1243 +msgid "Register new key into keystore" +msgstr "" + +#: ../../include/class/CredentialStore.class.php:1247 +msgid "Update key" +msgstr "" + +#: ../../include/class/AuditLog.class.php:136 +#, php-format +msgid "%s audit" +msgstr "" + +#: ../../include/class/AuditLog.class.php:136 +msgid "Review Logs" +msgstr "" + +#: ../../include/class/AuditLog.class.php:149 +msgid "System Audit log" +msgstr "" + +#: ../../include/class/OrderInterpreter.class.php:123 +msgid "Agent Management" +msgstr "" + +#: ../../include/class/OrderInterpreter.class.php:157 +msgid "Manage Policies" +msgstr "" + +#: ../../include/class/OrderInterpreter.class.php:171 +msgid "List Alerts" +msgstr "" + +#: ../../include/class/OrderInterpreter.class.php:195 +msgid "View Events" +msgstr "" + +#: ../../include/class/OrderInterpreter.class.php:247 +msgid "Manage Servers" +msgstr "" + +#: ../../include/class/OrderInterpreter.class.php:261 +msgid "Edit User" +msgstr "" + +#: ../../include/class/OrderInterpreter.class.php:271 +msgid "Tree View" +msgstr "" + +#: ../../include/class/OrderInterpreter.class.php:281 +msgid "Network Component" +msgstr "" + +#: ../../include/class/OrderInterpreter.class.php:295 +msgid "Task List" +msgstr "" + +#: ../../include/class/OrderInterpreter.class.php:353 +msgid "Manage Agent Groups" +msgstr "" + +#: ../../include/class/OrderInterpreter.class.php:394 +msgid "GO TO " +msgstr "" + +#: ../../include/class/OrderInterpreter.class.php:423 +msgid "results found" +msgstr "" + +#: ../../include/class/OrderInterpreter.class.php:427 +msgid "Press enter to search" +msgstr "" + +#: ../../include/class/CustomNetScan.class.php:369 +#: ../../include/class/CustomNetScan.class.php:394 +msgid "NetScan Custom" +msgstr "" + +#: ../../include/class/CustomNetScan.class.php:611 +msgid "Recon script" +msgstr "" + +#: ../../include/class/CustomNetScan.class.php:652 +msgid "Explanation" +msgstr "" + +#: ../../include/class/CustomNetScan.class.php:668 +msgid "macro_desc" +msgstr "" + +#: ../../include/class/ModuleTemplates.class.php:353 +#, php-format +msgid "Template %s successfully updated" +msgstr "" + +#: ../../include/class/ModuleTemplates.class.php:400 +#, php-format +msgid "Template %s successfully created" +msgstr "" + +#: ../../include/class/ModuleTemplates.class.php:402 +msgid "Error creating template" +msgstr "" + +#: ../../include/class/ModuleTemplates.class.php:410 +#, php-format +msgid "Template %s successfully deleted" +msgstr "" + +#: ../../include/class/ModuleTemplates.class.php:412 +#, php-format +msgid "Error deleting %s template" +msgstr "" + +#: ../../include/class/ModuleTemplates.class.php:559 +msgid "Module successfully deleted" +msgstr "" + +#: ../../include/class/ModuleTemplates.class.php:561 +msgid "Error deleting module" +msgstr "" + +#: ../../include/class/ModuleTemplates.class.php:572 +msgid "Block successfully deleted" +msgstr "" + +#: ../../include/class/ModuleTemplates.class.php:574 +msgid "Error deleting block" +msgstr "" + +#: ../../include/class/ModuleTemplates.class.php:586 +msgid "All templates deleted" +msgstr "" + +#: ../../include/class/ModuleTemplates.class.php:588 +msgid "Error deleting all templates" +msgstr "" + +#: ../../include/class/ModuleTemplates.class.php:597 +msgid "Selected templates deleted" +msgstr "" + +#: ../../include/class/ModuleTemplates.class.php:599 +msgid "Error deleting selected templates" +msgstr "" + +#: ../../include/class/ModuleTemplates.class.php:611 +msgid "Something gone wrong. Please, try again" +msgstr "" + +#: ../../include/class/ModuleTemplates.class.php:662 +msgid "The modules is already added" +msgstr "" + +#: ../../include/class/ModuleTemplates.class.php:1111 +#: ../../include/class/ModuleTemplates.class.php:1383 +msgid "Add components" +msgstr "" + +#: ../../include/class/ModuleTemplates.class.php:1163 +#: ../../include/class/ModuleTemplates.class.php:1298 +msgid "No module blocks for this profile" +msgstr "" + +#: ../../include/class/ModuleTemplates.class.php:1186 +msgid "Delete this block" +msgstr "" + +#: ../../include/class/ModuleTemplates.class.php:1188 +msgid "Do you want delete this block?" +msgstr "" + +#: ../../include/class/ModuleTemplates.class.php:1283 +msgid "Delete this module" +msgstr "" + +#: ../../include/class/ModuleTemplates.class.php:1285 +msgid "Do you want delete this module?" +msgstr "" + +#: ../../include/class/ModuleTemplates.class.php:1476 +msgid "Do you want delete all templates?" +msgstr "" + +#: ../../include/class/ModuleTemplates.class.php:1479 +msgid "Do you want delete the selected templates?" +msgstr "" + +#: ../../include/class/ConsoleSupervisor.php:839 +msgid "Limited mode." +msgstr "" + +#: ../../include/class/ConsoleSupervisor.php:851 +msgid "License is about to expire" +msgstr "" + +#: ../../include/class/ConsoleSupervisor.php:854 +msgid "Support is about to expire" +msgstr "" + +#: ../../include/class/ConsoleSupervisor.php:872 +msgid "Expired license" +msgstr "" + +#: ../../include/class/ConsoleSupervisor.php:873 +msgid "Your license has expired. Please, contact our sales department." +msgstr "" + +#: ../../include/class/ConsoleSupervisor.php:875 +msgid "Support expired" +msgstr "" + +#: ../../include/class/ConsoleSupervisor.php:876 +msgid "" +"This license is outside of support. Please, contact our sales department." +msgstr "" + +#: ../../include/class/ConsoleSupervisor.php:957 +msgid "Attachment directory is not writable" +msgstr "" + +#: ../../include/class/ConsoleSupervisor.php:959 +#, php-format +msgid "" +"Directory %s is not writable. Please, configure corresponding permissions." +msgstr "" + +#: ../../include/class/ConsoleSupervisor.php:979 +msgid "There are too many files in attachment directory" +msgstr "" + +#: ../../include/class/ConsoleSupervisor.php:981 +#, php-format +msgid "" +"There are more than %d files in attachment, consider cleaning up attachment " +"directory manually." +msgstr "" + +#: ../../include/class/ConsoleSupervisor.php:1013 +msgid "Remote configuration directory is not readable" +msgstr "" + +#: ../../include/class/ConsoleSupervisor.php:1015 +#, php-format +msgid "" +"Remote configuration directory %s is not readable. Please, adjust " +"configuration." +msgstr "" + +#: ../../include/class/ConsoleSupervisor.php:1032 +msgid "Remote configuration directory is not writable" +msgstr "" + +#: ../../include/class/ConsoleSupervisor.php:1034 +#, php-format +msgid "" +"Remote configuration directory %s is not writable. Please, adjust " +"configuration." +msgstr "" + +#: ../../include/class/ConsoleSupervisor.php:1050 +msgid "Remote collections directory is not writable" +msgstr "" + +#: ../../include/class/ConsoleSupervisor.php:1052 +#, php-format +msgid "Collections directory %s is not writable. Please, adjust configuration." +msgstr "" + +#: ../../include/class/ConsoleSupervisor.php:1068 +msgid "Remote md5 directory is not writable" +msgstr "" + +#: ../../include/class/ConsoleSupervisor.php:1070 +#, php-format +msgid "MD5 directory %s is not writable. Please, adjust configuration." +msgstr "" + +#: ../../include/class/ConsoleSupervisor.php:1098 +msgid "There are too much files in spool" +msgstr "" + +#: ../../include/class/ConsoleSupervisor.php:1100 +#, php-format +msgid "" +"There are more than %d files in %s. Consider checking DataServer performance" +msgstr "" + +#: ../../include/class/ConsoleSupervisor.php:1121 +msgid "There are too many BADXML files in spool" +msgstr "" + +#: ../../include/class/ConsoleSupervisor.php:1123 +#, php-format +msgid "There are more than %d files in %s. Consider checking software agents." +msgstr "" + +#: ../../include/class/ConsoleSupervisor.php:1210 +#, php-format +msgid "%s (%s) is lacking performance." +msgstr "" + +#: ../../include/class/ConsoleSupervisor.php:1278 +msgid "No servers available." +msgstr "" + +#: ../../include/class/ConsoleSupervisor.php:1279 +msgid "" +"There are no servers registered in this console. Please, check installation " +"guide." +msgstr "" + +#: ../../include/class/ConsoleSupervisor.php:1324 +#, php-format +msgid "%s (%s) has crashed." +msgstr "" + +#: ../../include/class/ConsoleSupervisor.php:1330 +#, php-format +msgid "%s (%s) has crashed, please check log files." +msgstr "" + +#: ../../include/class/ConsoleSupervisor.php:1337 +#, php-format +msgid "%s (%s) is not running." +msgstr "" + +#: ../../include/class/ConsoleSupervisor.php:1342 +#, php-format +msgid "" +"%s (%s) is not running. Please, check configuration file or remove this " +"server from server list." +msgstr "" + +#: ../../include/class/ConsoleSupervisor.php:1394 +msgid "No master servers found." +msgstr "" + +#: ../../include/class/ConsoleSupervisor.php:1395 +msgid "" +"At least one server must be defined to run as master. Please, check " +"documentation." +msgstr "" + +#: ../../include/class/ConsoleSupervisor.php:1450 +msgid "PHP safe mode is enabled. Some features may not work properly" +msgstr "" + +#: ../../include/class/ConsoleSupervisor.php:1451 +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:1469 +#, php-format +msgid "'%s' value in PHP configuration is not recommended" +msgstr "" + +#: ../../include/class/ConsoleSupervisor.php:1473 +#, php-format +msgid "Recommended value is %s" +msgstr "" + +#: ../../include/class/ConsoleSupervisor.php:1474 +#: ../../include/class/ConsoleSupervisor.php:1498 +msgid "Unlimited" +msgstr "" + +#: ../../include/class/ConsoleSupervisor.php:1475 +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:1493 +#: ../../include/class/ConsoleSupervisor.php:1517 +#: ../../include/class/ConsoleSupervisor.php:1546 +#: ../../include/class/ConsoleSupervisor.php:1624 +#, php-format +msgid "Not recommended '%s' value in PHP configuration" +msgstr "" + +#: ../../include/class/ConsoleSupervisor.php:1497 +#: ../../include/class/ConsoleSupervisor.php:1521 +#: ../../include/class/ConsoleSupervisor.php:1550 +#: ../../include/class/ConsoleSupervisor.php:1628 +#, php-format +msgid "Recommended value is: %s" +msgstr "" + +#: ../../include/class/ConsoleSupervisor.php:1499 +#: ../../include/class/ConsoleSupervisor.php:1523 +#: ../../include/class/ConsoleSupervisor.php:1570 +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:1522 +#: ../../include/class/ConsoleSupervisor.php:1551 +#, php-format +msgid "%s or greater" +msgstr "" + +#: ../../include/class/ConsoleSupervisor.php:1552 +#: ../../include/class/ConsoleSupervisor.php:1630 +msgid "" +"Please, change it on your PHP configuration file (php.ini) or contact with " +"administrator" +msgstr "" + +#: ../../include/class/ConsoleSupervisor.php:1569 +msgid "Problems with disable_functions in php.ini" +msgstr "" + +#: ../../include/class/ConsoleSupervisor.php:1570 +msgid "" +"The variable disable_functions contains functions system() or exec() in PHP " +"configuration file (php.ini)" +msgstr "" + +#: ../../include/class/ConsoleSupervisor.php:1587 +msgid "PhantomJS is not installed" +msgstr "" + +#: ../../include/class/ConsoleSupervisor.php:1588 +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:" +msgstr "" + +#: ../../include/class/ConsoleSupervisor.php:1605 +msgid "PHP UPDATE REQUIRED" +msgstr "" + +#: ../../include/class/ConsoleSupervisor.php:1606 +#: ../../general/php7_message.php:30 +msgid "" +"For a correct operation of PandoraFMS, PHP must be updated to version 7.0 or " +"higher." +msgstr "" + +#: ../../include/class/ConsoleSupervisor.php:1606 +#: ../../general/php7_message.php:31 +msgid "Otherwise, functionalities will be lost." +msgstr "" + +#: ../../include/class/ConsoleSupervisor.php:1606 +#: ../../general/php7_message.php:33 +msgid "Report download in PDF format" +msgstr "" + +#: ../../include/class/ConsoleSupervisor.php:1606 +#: ../../general/php7_message.php:34 +msgid "Emails Sending" +msgstr "" + +#: ../../include/class/ConsoleSupervisor.php:1606 +#: ../../general/php7_message.php:35 +msgid "Metaconsole Collections" +msgstr "" + +#: ../../include/class/ConsoleSupervisor.php:1672 +msgid "Historical database not available" +msgstr "" + +#: ../../include/class/ConsoleSupervisor.php:1673 +msgid "" +"Historical database is enabled, though not accessible with the current " +"configuration." +msgstr "" + +#: ../../include/class/ConsoleSupervisor.php:1716 +msgid "Database maintenance problem" +msgstr "" + +#: ../../include/class/ConsoleSupervisor.php:1718 +#, php-format +msgid "" +"Your database hasn't been through maintenance for 48hrs. Please, check " +"documentation on how to perform this maintenance process on %s and enable it " +"as soon as possible." +msgstr "" + +#: ../../include/class/ConsoleSupervisor.php:1778 +msgid "Historical database maintenance problem." +msgstr "" + +#: ../../include/class/ConsoleSupervisor.php:1780 +#, php-format +msgid "" +"Your historical database hasn't been through maintenance for 48hrs. Please, " +"check documentation on how to perform this maintenance process on %s and " +"enable it as soon as possible." +msgstr "" + +#: ../../include/class/ConsoleSupervisor.php:1818 +msgid "Historical database MR mismatch" +msgstr "" + +#: ../../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:1859 +msgid "Log collector cannot connect to ElasticSearch" +msgstr "" + +#: ../../include/class/ConsoleSupervisor.php:1860 +msgid "ElasticSearch is not available using current configuration." +msgstr "" + +#: ../../include/class/ConsoleSupervisor.php:1929 +msgid "Metaconsole DB is not available." +msgstr "" + +#: ../../include/class/ConsoleSupervisor.php:1930 +msgid "Cannot connect with Metaconsole DB using current configuration." +msgstr "" + +#: ../../include/class/ConsoleSupervisor.php:1958 +msgid "Scheduled downtime running." +msgstr "" + +#: ../../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:2115 +msgid "Downtime scheduled soon." +msgstr "" + +#: ../../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:2147 +msgid "This instance is not registered in the Update manager section" +msgstr "" + +#: ../../include/class/ConsoleSupervisor.php:2148 +msgid "Click here to start the registration process" +msgstr "" + +#: ../../include/class/ConsoleSupervisor.php:2180 +msgid "Default password for \"Admin\" user has not been changed" +msgstr "" + +#: ../../include/class/ConsoleSupervisor.php:2181 +msgid "" +"Please, change the default password since it is a commonly reported " +"vulnerability." +msgstr "" + +#: ../../include/class/ConsoleSupervisor.php:2216 +msgid "Default font doesn't exist" +msgstr "" + +#: ../../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:2240 +msgid "Developer mode is enabled" +msgstr "" + +#: ../../include/class/ConsoleSupervisor.php:2242 +#, php-format +msgid "" +"Your %s has the \"develop_bypass\" mode enabled. This is a developer mode " +"and should be disabled in a production environment. This value is located in " +"the main index.php file" +msgstr "" + +#: ../../include/class/ConsoleSupervisor.php:2266 +msgid "Event storm protection is enabled." +msgstr "" + +#: ../../include/class/ConsoleSupervisor.php:2267 +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:2293 +msgid "Failed to retrieve updates, please configure utility" +msgstr "" + +#: ../../include/class/ConsoleSupervisor.php:2311 +#, php-format +msgid "New %s Console update" +msgstr "" + +#: ../../include/class/ConsoleSupervisor.php:2314 +msgid "There is a new update available. Please.About minor release update." +msgstr "" + +#: ../../include/class/ConsoleSupervisor.php:2378 +msgid "Discovery relies on an appropriate cron setup." +msgstr "" + +#: ../../include/class/ConsoleSupervisor.php:2394 +msgid "Please, make sure process is not locked." +msgstr "" + +#: ../../include/class/ConsoleSupervisor.php:2405 +msgid "DiscoveryConsoleTasks is not configured." +msgstr "" + +#: ../../include/class/ConsoleSupervisor.php:2496 +#, php-format +msgid "%s version misaligned with Console" +msgstr "" + +#: ../../include/class/ConsoleSupervisor.php:2500 +#, 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:2563 +msgid "AllowOverride is disabled" +msgstr "" + +#: ../../include/class/ConsoleSupervisor.php:2609 +msgid "Desynchronized operation on the node " +msgstr "" + +#: ../../include/class/ConsoleSupervisor.php:2632 +msgid "Pandora FMS console log file changed location" +msgstr "" + +#: ../../include/class/ConsoleSupervisor.php:2636 +#, php-format +msgid "" +"Pandora FMS console log file has been moved to new location %s/log. " +"Currently you have an outdated and inoperative version of this file at %s. " +"Please, consider deleting it." +msgstr "" + +#: ../../include/class/ConsoleSupervisor.php:2671 +msgid "Pandora FMS audit log file changed location" +msgstr "" + +#: ../../include/class/ConsoleSupervisor.php:2675 +#, php-format +msgid "" +"Pandora FMS audit log file has been moved to new location %s/log. Currently " +"you have an outdated and inoperative version of this file at %s. Please, " +"consider deleting it." +msgstr "" + +#: ../../include/class/ConsoleSupervisor.php:2761 +#, php-format +msgid "Node %s sync queue length exceeded, " +msgstr "" + +#: ../../include/class/ConsoleSupervisor.php:2763 +#, 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:2816 +#, php-format +msgid "Node %s sync queue failed, " +msgstr "" + +#: ../../include/class/ConsoleSupervisor.php:2818 +#, php-format +msgid "" +"Node %s cannot process synchronization queue due %s, please check the queue " +"status." +msgstr "" + +#: ../../include/class/CalendarManager.class.php:161 +msgid "Alert calendar list" +msgstr "" + +#: ../../include/class/CalendarManager.class.php:183 +msgid "Edit calendar" +msgstr "" + +#: ../../include/class/CalendarManager.class.php:197 +msgid "Alert special days" +msgstr "" + +#: ../../include/class/CalendarManager.class.php:274 +#: ../../include/class/CalendarManager.class.php:491 +#, php-format +msgid "Calendar not found: %s" +msgstr "" + +#: ../../include/class/CalendarManager.class.php:302 +msgid "Calendar successfully deleted" +msgstr "" + +#: ../../include/class/CalendarManager.class.php:325 +#, php-format +msgid "Special day not found: %s" +msgstr "" + +#: ../../include/class/CalendarManager.class.php:337 +msgid "Special day successfully deleted" +msgstr "" + +#: ../../include/class/CalendarManager.class.php:410 +msgid "Skipped dates: " +msgstr "" + +#: ../../include/class/CalendarManager.class.php:448 +msgid "Success to upload iCalendar" +msgstr "" + +#: ../../include/class/CalendarManager.class.php:449 +msgid "Fail to upload iCalendar" +msgstr "" + +#: ../../include/class/CalendarManager.class.php:554 +msgid "Failed saving calendar: name exists" +msgstr "" + +#: ../../include/class/CalendarManager.class.php:563 +msgid "Failed saving calendar: " +msgstr "" + +#: ../../include/class/CalendarManager.class.php:834 +#, php-format +msgid "Special days not found: %s" +msgstr "" + +#: ../../include/class/CalendarManager.class.php:877 +#, php-format +msgid "SpecialDay not found: %s" +msgstr "" + +#: ../../include/class/CalendarManager.class.php:930 +msgid "Failed saving calendar: already exists" +msgstr "" + +#: ../../include/class/CalendarManager.class.php:939 +msgid "Failed saving special day: " +msgstr "" + +#: ../../include/class/CalendarManager.class.php:1007 +#, php-format +msgid "Same as %s" +msgstr "" + +#: ../../include/class/CalendarManager.class.php:1009 +msgid "Templates not being fired" +msgstr "" + +#: ../../include/class/WelcomeWindow.class.php:157 +msgid "Welcome to" +msgstr "" + +#: ../../include/class/WelcomeWindow.class.php:158 +msgid "Do not show anymore" +msgstr "" + +#: ../../include/class/WelcomeWindow.class.php:167 +msgid "Cancel Configuration Window" +msgstr "" + +#: ../../include/class/WelcomeWindow.class.php:172 +msgid "Are you sure you want to cancel this tutorial?" +msgstr "" + +#: ../../include/class/WelcomeWindow.class.php:428 +msgid "Please ensure mail configuration matches your needs" +msgstr "" + +#: ../../include/class/WelcomeWindow.class.php:462 +msgid "Create an agent" +msgstr "" + +#: ../../include/class/WelcomeWindow.class.php:487 +msgid "Create a module to check if an agent is online" +msgstr "" + +#: ../../include/class/WelcomeWindow.class.php:512 +msgid "Be warned if something is wrong, create an alert on the module" +msgstr "" + +#: ../../include/class/WelcomeWindow.class.php:537 +msgid "Discover hosts and devices in your network" +msgstr "" + +#: ../../include/class/WelcomeWindow.class.php:565 +msgid "If something is not working as expected, look for this icon and report!" +msgstr "" + +#: ../../include/class/WebServerModuleDebug.class.php:143 +msgid "Performing query. Please wait." +msgstr "" + +#: ../../include/class/WebServerModuleDebug.class.php:174 +msgid "No results" +msgstr "" + +#: ../../include/class/WebServerModuleDebug.class.php:197 +msgid "Error performing execution" +msgstr "" + +#: ../../include/class/WebServerModuleDebug.class.php:229 +msgid "Please, wait for a first execution of module" +msgstr "" + +#: ../../include/class/AgentWizard.class.php:456 +msgid "There are not defined Remote components for this performance." +msgstr "" + +#: ../../include/class/AgentWizard.class.php:575 +msgid "SNMP Walk" +msgstr "" + +#: ../../include/class/AgentWizard.class.php:580 +msgid "WMI Explorer" +msgstr "" + +#: ../../include/class/AgentWizard.class.php:654 +msgid "namespace" +msgstr "" + +#: ../../include/class/AgentWizard.class.php:824 +msgid "User authentication" +msgstr "" + +#: ../../include/class/AgentWizard.class.php:853 +msgid "Password authentication" +msgstr "" + +#: ../../include/class/AgentWizard.class.php:1006 +#, php-format +msgid "The PEN (%s) is not registered." +msgstr "" + +#: ../../include/class/AgentWizard.class.php:1073 +msgid "The SNMP Walk does not return anything with the received arguments." +msgstr "" + +#: ../../include/class/AgentWizard.class.php:1133 +#, php-format +msgid "The target host response with an error: %s" +msgstr "" + +#: ../../include/class/AgentWizard.class.php:1183 +msgid "No selected modules" +msgstr "" + +#: ../../include/class/AgentWizard.class.php:1220 +msgid "Module exists in policy" +msgstr "" + +#: ../../include/class/AgentWizard.class.php:1230 +msgid "Module exists in agent" +msgstr "" + +#: ../../include/class/AgentWizard.class.php:1237 +msgid "Module with the same name in the module creation list" +msgstr "" + +#: ../../include/class/AgentWizard.class.php:1640 +#, php-format +msgid "Module \"%s\" exits in this policy" +msgstr "" + +#: ../../include/class/AgentWizard.class.php:1742 +#: ../../include/class/AgentWizard.class.php:2170 +#, php-format +msgid "Module %s module_exec not configuration" +msgstr "" + +#: ../../include/class/AgentWizard.class.php:1898 +#: ../../include/class/AgentWizard.class.php:2345 +#, php-format +msgid "Module %s satellite execution not configuration" +msgstr "" + +#: ../../include/class/AgentWizard.class.php:1990 +#, php-format +msgid "Module \"%s\" problems insert in bbdd" +msgstr "" + +#: ../../include/class/AgentWizard.class.php:1998 +#: ../../include/class/AgentWizard.class.php:2428 +msgid "Modules created" +msgstr "" + +#: ../../include/class/AgentWizard.class.php:2028 +#, php-format +msgid "Module \"%s\" exists in this agent" +msgstr "" + +#: ../../include/class/AgentWizard.class.php:2619 +msgid "Select all filtered interfaces" +msgstr "" + +#: ../../include/class/AgentWizard.class.php:2642 +msgid "OperStatus UP" +msgstr "" + +#: ../../include/class/AgentWizard.class.php:2653 +msgid "AdminStatus UP" +msgstr "" + +#: ../../include/class/AgentWizard.class.php:3046 +#: ../../include/class/AgentWizard.class.php:3350 +msgid "No information could be retrieved." +msgstr "" + +#: ../../include/class/AgentWizard.class.php:3640 +msgid "Create modules" +msgstr "" + +#: ../../include/class/AgentWizard.class.php:3949 +msgid "Add general monitoring for all selected interfaces" +msgstr "" + +#: ../../include/class/AgentWizard.class.php:3970 +#: ../../include/class/AgentWizard.class.php:3971 +#: ../../include/class/AgentWizard.class.php:3990 +#: ../../include/class/AgentWizard.class.php:3991 +msgid "Modules selected" +msgstr "" + +#: ../../include/class/AgentWizard.class.php:4059 +msgid "Module info" +msgstr "" + +#: ../../include/class/AgentWizard.class.php:4088 +msgid "Current value" +msgstr "" + +#: ../../include/class/AgentWizard.class.php:5575 +#, php-format +msgid "The operation '%s' is not permitted. Review for remote components." +msgstr "" + +#: ../../include/class/AgentWizard.class.php:5989 +msgid "Modules about to be created" +msgstr "" + +#: ../../include/class/ExternalTools.class.php:185 +msgid "Changes successfully saved." +msgstr "" + +#: ../../include/class/ExternalTools.class.php:186 +msgid "Changes not saved." +msgstr "" + +#: ../../include/class/ExternalTools.class.php:233 +#: ../../include/class/ExternalTools.class.php:263 +#: ../../include/class/ExternalTools.class.php:293 +msgid "Play sound" +msgstr "" + +#: ../../include/class/ExternalTools.class.php:313 +msgid "Traceroute path" +msgstr "" + +#: ../../include/class/ExternalTools.class.php:316 +msgid "Ping path" +msgstr "" + +#: ../../include/class/ExternalTools.class.php:319 +msgid "Nmap path" +msgstr "" + +#: ../../include/class/ExternalTools.class.php:322 +msgid "Dig path" +msgstr "" + +#: ../../include/class/ExternalTools.class.php:325 +msgid "Snmpget path" +msgstr "" + +#: ../../include/class/ExternalTools.class.php:331 +msgid "Custom commands" +msgstr "" + +#: ../../include/class/ExternalTools.class.php:342 +msgid "Add new custom command" +msgstr "" + +#: ../../include/class/ExternalTools.class.php:354 +msgid "Adding `_address_` macro will use agent's IP when perform the execution" +msgstr "" + +#: ../../include/class/ExternalTools.class.php:438 +msgid "Delete this custom command" +msgstr "" + +#: ../../include/class/ExternalTools.class.php:486 +msgid "The agent doesn`t have an IP yet" +msgstr "" + +#: ../../include/class/ExternalTools.class.php:508 +msgid "Traceroute" +msgstr "" + +#: ../../include/class/ExternalTools.class.php:509 +msgid "Ping host & Latency" +msgstr "" + +#: ../../include/class/ExternalTools.class.php:510 +msgid "SNMP Interface status" +msgstr "" + +#: ../../include/class/ExternalTools.class.php:511 +msgid "Basic TCP Port Scan" +msgstr "" + +#: ../../include/class/ExternalTools.class.php:512 +msgid "DiG/Whois Lookup" +msgstr "" + +#: ../../include/class/ExternalTools.class.php:542 +msgid "IP Adress" +msgstr "" + +#: ../../include/class/ExternalTools.class.php:554 +msgid "SNMP Version" +msgstr "" + +#: ../../include/class/ExternalTools.class.php:707 +msgid "Command not response" +msgstr "" + +#: ../../include/class/ExternalTools.class.php:716 +msgid "The command failed and obtained the return code:" +msgstr "" + +#: ../../include/class/ExternalTools.class.php:726 +msgid "" +"Something went wrong while perform the execution. Please check the " +"configuration." +msgstr "" + +#: ../../include/class/ExternalTools.class.php:763 +msgid "SNMP information for " +msgstr "" + +#: ../../include/class/ExternalTools.class.php:768 +#: ../../include/class/ExternalTools.class.php:780 +msgid "Target unreachable." +msgstr "" + +#: ../../include/class/ExternalTools.class.php:771 +msgid "Uptime" +msgstr "" + +#: ../../include/class/ExternalTools.class.php:783 +msgid "Device info" +msgstr "" + +#: ../../include/class/ExternalTools.class.php:794 +msgid "Interface" +msgstr "" + +#: ../../include/class/ExternalTools.class.php:825 +msgid "Domain and IP information for " +msgstr "" + +#: ../../include/class/ExternalTools.class.php:830 +msgid "Dig executable does not exist." +msgstr "" + +#: ../../include/class/ExternalTools.class.php:838 +msgid "Whois executable does not exist." +msgstr "" + +#: ../../include/class/ExternalTools.class.php:849 +msgid "Traceroute executable does not exist." +msgstr "" + +#: ../../include/class/ExternalTools.class.php:852 +#, php-format +msgid "Traceroute to %s" +msgstr "" + +#: ../../include/class/ExternalTools.class.php:860 +msgid "Ping executable does not exist." +msgstr "" + +#: ../../include/class/ExternalTools.class.php:863 +#, php-format +msgid "Ping to %s" +msgstr "" + +#: ../../include/class/ExternalTools.class.php:871 +msgid "Nmap executable does not exist." +msgstr "" + +#: ../../include/class/ExternalTools.class.php:874 +#, php-format +msgid "Basic TCP Scan on %s" +msgstr "" + +#: ../../include/class/ExternalTools.class.php:892 +#, php-format +msgid "Performing %s execution on %s" +msgstr "" + +#: ../../include/class/ExternalTools.class.php:894 +#, php-format +msgid "Performing %s execution" +msgstr "" + +#: ../../include/functions_reporting.php:366 +msgid " agents" +msgstr "" + +#: ../../include/functions_reporting.php:376 +msgid " modules" +msgstr "" + +#: ../../include/functions_reporting.php:1512 +msgid "Top N" +msgstr "" + +#: ../../include/functions_reporting.php:1698 +msgid "Insuficient data" +msgstr "" + +#: ../../include/functions_reporting.php:2011 +msgid "Event Report Group" +msgstr "" + +#: ../../include/functions_reporting.php:2059 +msgid "Exclude " +msgstr "" + +#: ../../include/functions_reporting.php:2237 +#: ../../include/functions_reporting.php:4076 +#: ../../include/functions_reporting.php:10745 +#: ../../include/functions_events.php:2381 +#: ../../include/functions_events.php:2984 +#: ../../include/functions_events.php:3265 +#: ../../include/functions_events.php:3274 +#: ../../include/functions_events.php:3281 +#: ../../include/functions_events.php:3288 +#: ../../operation/snmpconsole/snmp_view.php:588 +#: ../../operation/snmpconsole/snmp_view.php:941 +#: ../../operation/snmpconsole/snmp_view.php:1234 +msgid "Validated" +msgstr "" + +#: ../../include/functions_reporting.php:2238 +#: ../../include/functions_reporting.php:4077 +#: ../../include/functions_reporting.php:10746 +#: ../../operation/snmpconsole/snmp_view.php:587 +#: ../../operation/snmpconsole/snmp_view.php:931 +#: ../../operation/snmpconsole/snmp_view.php:1243 +msgid "Not validated" +msgstr "" + +#: ../../include/functions_reporting.php:2305 +msgid "Event Report Module" +msgstr "" + +#: ../../include/functions_reporting.php:2945 +msgid "Agent/Modules" +msgstr "" + +#: ../../include/functions_reporting.php:3042 +msgid "Agent/Modules Status" +msgstr "" + +#: ../../include/functions_reporting.php:3191 +msgid "Exception - Everything" +msgstr "" + +#: ../../include/functions_reporting.php:3197 +#, php-format +msgid "Exception - Modules over or equal to %s" +msgstr "" + +#: ../../include/functions_reporting.php:3200 +#, php-format +msgid "Modules over or equal to %s" +msgstr "" + +#: ../../include/functions_reporting.php:3205 +#, php-format +msgid "Exception - Modules under or equal to %s" +msgstr "" + +#: ../../include/functions_reporting.php:3208 +#, php-format +msgid "Modules under or equal to %s" +msgstr "" + +#: ../../include/functions_reporting.php:3213 +#, php-format +msgid "Exception - Modules under %s" +msgstr "" + +#: ../../include/functions_reporting.php:3216 +#, php-format +msgid "Modules under %s" +msgstr "" + +#: ../../include/functions_reporting.php:3221 +#, php-format +msgid "Exception - Modules over %s" +msgstr "" + +#: ../../include/functions_reporting.php:3224 +#, php-format +msgid "Modules over %s" +msgstr "" + +#: ../../include/functions_reporting.php:3229 +#, php-format +msgid "Exception - Equal to %s" +msgstr "" + +#: ../../include/functions_reporting.php:3232 +#, php-format +msgid "Equal to %s" +msgstr "" + +#: ../../include/functions_reporting.php:3237 +#, php-format +msgid "Exception - Not equal to %s" +msgstr "" + +#: ../../include/functions_reporting.php:3240 +#, php-format +msgid "Not equal to %s" +msgstr "" + +#: ../../include/functions_reporting.php:3244 +msgid "Exception - Modules at normal status" +msgstr "" + +#: ../../include/functions_reporting.php:3245 +msgid "Modules at normal status" +msgstr "" + +#: ../../include/functions_reporting.php:3249 +msgid "Exception - Modules at critical or warning status" +msgstr "" + +#: ../../include/functions_reporting.php:3250 +msgid "Modules at critical or warning status" +msgstr "" + +#: ../../include/functions_reporting.php:3530 +msgid "There are no Modules under those conditions." +msgstr "" + +#: ../../include/functions_reporting.php:3534 +#, php-format +msgid "There are no Modules over or equal to %s." +msgstr "" + +#: ../../include/functions_reporting.php:3538 +#, php-format +msgid "There are no Modules less or equal to %s." +msgstr "" + +#: ../../include/functions_reporting.php:3542 +#, php-format +msgid "There are no Modules less %s." +msgstr "" + +#: ../../include/functions_reporting.php:3546 +#, php-format +msgid "There are no Modules over %s." +msgstr "" + +#: ../../include/functions_reporting.php:3550 +#, php-format +msgid "There are no Modules equal to %s" +msgstr "" + +#: ../../include/functions_reporting.php:3554 +#, php-format +msgid "There are no Modules not equal to %s" +msgstr "" + +#: ../../include/functions_reporting.php:3558 +msgid "There are no Modules normal status" +msgstr "" + +#: ../../include/functions_reporting.php:3562 +msgid "There are no Modules at critial or warning status" +msgstr "" + +#: ../../include/functions_reporting.php:3913 +msgid "Event Report Agent" +msgstr "" + +#: ../../include/functions_reporting.php:4264 +msgid "Database Serialized" +msgstr "" + +#: ../../include/functions_reporting.php:4460 +msgid "Last Value" +msgstr "" + +#: ../../include/functions_reporting.php:4784 +msgid "Network interfaces report" +msgstr "" + +#: ../../include/functions_reporting.php:4878 +msgid "Custom render report" +msgstr "" + +#: ../../include/functions_reporting.php:4918 +#: ../../include/functions_reporting.php:4944 +msgid "" +"This query is insecure, it could apply unwanted modiffications on the schema" +msgstr "" + +#: ../../include/functions_reporting.php:5175 +msgid "The group has no agents or none of the agents has any network interface" +msgstr "" + +#: ../../include/functions_reporting.php:5196 +msgid "bytes/s" +msgstr "" + +#: ../../include/functions_reporting.php:5403 +#: ../../include/functions_reporting.php:5420 +#: ../../include/functions_reporting.php:5437 +msgid "Not triggered" +msgstr "" + +#: ../../include/functions_reporting.php:5863 +msgid "SQL Graph Vertical Bars" +msgstr "" + +#: ../../include/functions_reporting.php:5867 +msgid "SQL Graph Horizontal Bars" +msgstr "" + +#: ../../include/functions_reporting.php:5871 +msgid "SQL Graph Pie" +msgstr "" + +#: ../../include/functions_reporting.php:6098 +msgid "Netflow Area" +msgstr "" + +#: ../../include/functions_reporting.php:6102 +msgid "Netflow Summary" +msgstr "" + +#: ../../include/functions_reporting.php:6106 +msgid "Netflow Data" +msgstr "" + +#: ../../include/functions_reporting.php:6114 +msgid "Unknown report" +msgstr "" + +#: ../../include/functions_reporting.php:6208 +msgid "Prediction Date" +msgstr "" + +#: ../../include/functions_reporting.php:7113 +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:8527 +#: ../../include/functions_reporting.php:9245 +msgid "No Address" +msgstr "" + +#: ../../include/functions_reporting.php:9544 +msgid "" +"The monitor have no data in this range of dates or monitor type is not " +"numeric" +msgstr "" + +#: ../../include/functions_reporting.php:9562 +msgid "The monitor type is not numeric" +msgstr "" + +#: ../../include/functions_reporting.php:9988 +msgid "Maximum" +msgstr "" + +#: ../../include/functions_reporting.php:10066 +msgid "Automatic combined graph" +msgstr "" + +#: ../../include/functions_reporting.php:11420 +#: ../../include/functions_reporting.php:11444 +msgid "Server health" +msgstr "" + +#: ../../include/functions_reporting.php:11420 +#, php-format +msgid "%d Downed servers" +msgstr "" + +#: ../../include/functions_reporting.php:11425 +#: ../../include/functions_reporting.php:11448 +msgid "Monitor health" +msgstr "" + +#: ../../include/functions_reporting.php:11425 +#, php-format +msgid "%d Not Normal monitors" +msgstr "" + +#: ../../include/functions_reporting.php:11425 +#: ../../include/functions_reporting.php:11449 +msgid "of monitors up" +msgstr "" + +#: ../../include/functions_reporting.php:11430 +#: ../../include/functions_reporting.php:11452 +msgid "Module sanity" +msgstr "" + +#: ../../include/functions_reporting.php:11430 +#, php-format +msgid "%d Not inited monitors" +msgstr "" + +#: ../../include/functions_reporting.php:11430 +#: ../../include/functions_reporting.php:11453 +msgid "of total modules inited" +msgstr "" + +#: ../../include/functions_reporting.php:11435 +#: ../../include/functions_reporting.php:12547 +#: ../../include/functions_reporting.php:12557 +#, php-format +msgid "%d Fired alerts" +msgstr "" + +#: ../../include/functions_reporting.php:11435 +#: ../../include/functions_reporting.php:11457 +msgid "of defined alerts not fired" +msgstr "" + +#: ../../include/functions_reporting.php:11529 +msgid "Defined and fired alerts" +msgstr "" + +#: ../../include/functions_reporting.php:11708 +msgid "Defined users" +msgstr "" + +#: ../../include/functions_reporting.php:12404 +msgid "Agent without data" +msgstr "" + +#: ../../include/functions_reporting.php:12543 +#, php-format +msgid "%d Normal modules" +msgstr "" + +#: ../../include/functions_reporting.php:12544 +#, php-format +msgid "%d Critical modules" +msgstr "" + +#: ../../include/functions_reporting.php:12545 +#, php-format +msgid "%d Warning modules" +msgstr "" + +#: ../../include/functions_reporting.php:12546 +#, php-format +msgid "%d Unknown modules" +msgstr "" + +#: ../../include/functions_reporting.php:12551 +#, php-format +msgid "%d Total agents" +msgstr "" + +#: ../../include/functions_reporting.php:12552 +#, php-format +msgid "%d Normal agents" +msgstr "" + +#: ../../include/functions_reporting.php:12553 +#, php-format +msgid "%d Critical agents" +msgstr "" + +#: ../../include/functions_reporting.php:12554 +#, php-format +msgid "%d Warning agents" +msgstr "" + +#: ../../include/functions_reporting.php:12555 +#, php-format +msgid "%d Unknown agents" +msgstr "" + +#: ../../include/functions_reporting.php:12556 +#, php-format +msgid "%d not init agents" +msgstr "" + +#: ../../include/functions_reporting.php:13984 +msgid "Total running modules" +msgstr "" + +#: ../../include/functions_reporting.php:13987 +#: ../../include/functions_reporting.php:14002 +#: ../../include/functions_reporting.php:14014 +#: ../../include/functions_reporting.php:14032 +#: ../../include/functions_reporting.php:14044 +#: ../../include/functions_reporting.php:14056 +#: ../../include/functions_reporting.php:14068 +msgid "Ratio" +msgstr "" + +#: ../../include/functions_reporting.php:13987 +#: ../../include/functions_reporting.php:14002 +#: ../../include/functions_reporting.php:14014 +#: ../../include/functions_reporting.php:14032 +#: ../../include/functions_reporting.php:14044 +#: ../../include/functions_reporting.php:14056 +#: ../../include/functions_reporting.php:14068 +msgid "Modules by second" +msgstr "" + +#: ../../include/functions_reporting.php:13999 +msgid "Local modules" +msgstr "" + +#: ../../include/functions_reporting.php:14009 +msgid "Network modules" +msgstr "" + +#: ../../include/functions_reporting.php:14028 +msgid "Plugin modules" +msgstr "" + +#: ../../include/functions_reporting.php:14040 +msgid "Prediction modules" +msgstr "" + +#: ../../include/functions_reporting.php:14052 +msgid "WMI modules" +msgstr "" + +#: ../../include/functions_reporting.php:14064 +msgid "Web modules" +msgstr "" + +#: ../../include/functions_reporting.php:14102 +#: ../../include/lib/Dashboard/Widgets/tactical.php:287 +msgid "Server performance" +msgstr "" + +#: ../../include/functions_reporting.php:14221 +msgid "Weekly:" +msgstr "" + +#: ../../include/functions_reporting.php:14263 +msgid "Monthly:" +msgstr "" + +#: ../../include/functions_reporting.php:14264 +msgid "From day" +msgstr "" + +#: ../../include/functions_reporting.php:14265 +msgid "To day" +msgstr "" + +#: ../../include/functions_reporting.php:14799 +msgid "Module Histogram Graph" +msgstr "" + +#: ../../include/functions_reporting.php:15191 +msgid "Attached to this email there's a PDF file of the" +msgstr "" + +#: ../../include/functions_reporting.php:15192 +msgid "report" +msgstr "" + +#: ../../include/functions_filemanager.php:135 +#: ../../include/functions_filemanager.php:192 +#: ../../include/functions_filemanager.php:247 +#: ../../include/functions_filemanager.php:340 +msgid "Security error" +msgstr "" + +#: ../../include/functions_filemanager.php:154 +msgid "Upload error" +msgstr "" + +#: ../../include/functions_filemanager.php:163 +#, php-format +msgid "Issue setting umask: %s" +msgstr "" + +#: ../../include/functions_filemanager.php:168 +#: ../../include/functions_filemanager.php:198 +msgid "Upload correct" +msgstr "" + +#: ../../include/functions_filemanager.php:195 +msgid "It was impossible to uncompress your file" +msgstr "" + +#: ../../include/functions_filemanager.php:211 +msgid "" +"File size seems to be too large. Please check your php.ini configuration or " +"contact with the administrator" +msgstr "" + +#: ../../include/functions_filemanager.php:260 +msgid "File created correctly" +msgstr "" + +#: ../../include/functions_filemanager.php:263 +msgid "Error creating file" +msgstr "" + +#: ../../include/functions_filemanager.php:270 +#: ../../include/functions_filemanager.php:320 +msgid "Error creating file with empty name" +msgstr "" + +#: ../../include/functions_filemanager.php:311 +msgid "Directory created" +msgstr "" + +#: ../../include/functions_filemanager.php:314 +msgid "Something gone wrong creating directory" +msgstr "" + +#: ../../include/functions_filemanager.php:539 +#: ../../include/functions_filemanager.php:775 +msgid "Create a Directory" +msgstr "" + +#: ../../include/functions_filemanager.php:543 +#: ../../include/functions_filemanager.php:786 +#: ../../include/functions_filemanager.php:789 +msgid "Create a Text" +msgstr "" + +#: ../../include/functions_filemanager.php:547 +#: ../../include/functions_filemanager.php:800 +#: ../../include/functions_filemanager.php:803 +msgid "Upload Files" +msgstr "" + +#: ../../include/functions_filemanager.php:578 +#, php-format +msgid "Directory %s doesn't exist!" +msgstr "" + +#: ../../include/functions_filemanager.php:623 +msgid "Parent directory" +msgstr "" + +#: ../../include/functions_filemanager.php:637 +msgid "Directory" +msgstr "" + +#: ../../include/functions_filemanager.php:645 +msgid "Compressed file" +msgstr "" + +#: ../../include/functions_filemanager.php:649 +#: ../../include/functions_filemanager.php:656 +msgid "Text file" +msgstr "" + +#: ../../include/functions_filemanager.php:689 +msgid "This file could be executed by any user" +msgstr "" + +#: ../../include/functions_filemanager.php:690 +msgid "Make sure it can't perform dangerous tasks" +msgstr "" + +#: ../../include/functions_filemanager.php:758 +msgid "No files or directories to show." +msgstr "" + +#: ../../include/functions_filemanager.php:772 +#: ../../include/functions_filemanager.php:898 +msgid "Create directory" +msgstr "" + +#: ../../include/functions_filemanager.php:834 +msgid "The zip upload in this dir, easy to upload multiple files." +msgstr "" + +#: ../../include/functions_filemanager.php:836 +msgid "Decompress" +msgstr "" + +#: ../../include/functions_filemanager.php:910 +msgid "Create text" +msgstr "" + +#: ../../include/functions_filemanager.php:922 +msgid "Upload file/s" +msgstr "" + +#: ../../include/functions_filemanager.php:931 +msgid "The directory is read-only" +msgstr "" + +#: ../../include/functions_tags.php:712 +msgid "Click here to open a popup window with URL tag" +msgstr "" + +#: ../../include/lib/Dashboard/Manager.php:600 +#, php-format +msgid "Copy of %s" +msgstr "" + +#: ../../include/lib/Dashboard/Manager.php:989 +msgid "Error create or update dashboard" +msgstr "" + +#: ../../include/lib/Dashboard/Manager.php:1470 +msgid "Icon image dashboard" +msgstr "" + +#: ../../include/lib/Dashboard/Widget.php:459 +#: ../../include/lib/Dashboard/Widgets/maps_made_by_user.php:238 +#: ../../include/lib/Dashboard/Widgets/maps_made_by_user.php:322 +#: ../../include/lib/Dashboard/Widgets/reports.php:285 +#, php-format +msgid "Failed to connect to node %d" +msgstr "" + +#: ../../include/lib/Dashboard/Widget.php:474 +#: ../../include/lib/Dashboard/Widgets/agent_module.php:640 +msgid "Please configure this widget before usage" +msgstr "" + +#: ../../include/lib/Dashboard/Widget.php:482 +msgid "Widget cannot be loaded" +msgstr "" + +#: ../../include/lib/Dashboard/Widget.php:482 +msgid "Please, configure the widget again to recover it" +msgstr "" + +#: ../../include/lib/Dashboard/Widgets/groups_status.php:158 +#: ../../include/lib/Dashboard/Widgets/groups_status.php:499 +msgid "General group status" +msgstr "" + +#: ../../include/lib/Dashboard/Widgets/groups_status.php:453 +msgid "Not agents in this group" +msgstr "" + +#: ../../include/lib/Dashboard/Widgets/system_group_status.php:158 +#: ../../include/lib/Dashboard/Widgets/system_group_status.php:622 +msgid "Groups status" +msgstr "" + +#: ../../include/lib/Dashboard/Widgets/system_group_status.php:314 +msgid "Alert Fired" +msgstr "" + +#: ../../include/lib/Dashboard/Widgets/system_group_status.php:522 +msgid "Modules in normal status" +msgstr "" + +#: ../../include/lib/Dashboard/Widgets/system_group_status.php:538 +msgid "Modules in warning status" +msgstr "" + +#: ../../include/lib/Dashboard/Widgets/system_group_status.php:555 +msgid "Modules in critical status" +msgstr "" + +#: ../../include/lib/Dashboard/Widgets/system_group_status.php:601 +msgid "No modules in selected groups" +msgstr "" + +#: ../../include/lib/Dashboard/Widgets/sla_percent.php:174 +#: ../../include/lib/Dashboard/Widgets/sla_percent.php:482 +msgid "SLA percentage" +msgstr "" + +#: ../../include/lib/Dashboard/Widgets/sla_percent.php:344 +#: ../../include/lib/Dashboard/Widgets/module_icon.php:411 +#: ../../include/lib/Dashboard/Widgets/module_value.php:325 +msgid "Text size of value in px" +msgstr "" + +#: ../../include/lib/Dashboard/Widgets/sla_percent.php:356 +#: ../../include/lib/Dashboard/Widgets/module_icon.php:423 +#: ../../include/lib/Dashboard/Widgets/module_value.php:337 +#: ../../include/lib/Dashboard/Widgets/module_table_value.php:301 +#: ../../include/lib/Dashboard/Widgets/graph_module_histogram.php:335 +#: ../../include/lib/Dashboard/Widgets/module_status.php:401 +msgid "Text size of label in px" +msgstr "" + +#: ../../include/lib/Dashboard/Widgets/sla_percent.php:413 +#: ../../include/lib/Dashboard/Widgets/sla_percent.php:424 +#: ../../include/lib/Dashboard/Widgets/events_list.php:528 +#: ../../include/lib/Dashboard/Widgets/agent_module.php:665 +msgid "You don't have access" +msgstr "" + +#: ../../include/lib/Dashboard/Widgets/post.php:158 +#: ../../include/lib/Dashboard/Widgets/post.php:276 +msgid "Panel with a message" +msgstr "" + +#: ../../include/lib/Dashboard/Widgets/BlockHistogram.php:172 +#: ../../include/lib/Dashboard/Widgets/BlockHistogram.php:632 +msgid "Block histogram" +msgstr "" + +#: ../../include/lib/Dashboard/Widgets/BlockHistogram.php:266 +msgid "Font color" +msgstr "" + +#: ../../include/lib/Dashboard/Widgets/BlockHistogram.php:280 +#: ../../include/lib/Dashboard/Widgets/ColorModuleTabs.php:256 +msgid "Agent / module" +msgstr "" + +#: ../../include/lib/Dashboard/Widgets/BlockHistogram.php:457 +#: ../../include/lib/Dashboard/Widgets/ColorModuleTabs.php:408 +msgid "Not found modules" +msgstr "" + +#: ../../include/lib/Dashboard/Widgets/service_view.php:190 +msgid "Service View" +msgstr "" + +#: ../../include/lib/Dashboard/Widgets/service_view.php:246 +msgid "Tree" +msgstr "" + +#: ../../include/lib/Dashboard/Widgets/service_view.php:298 +#: ../../include/lib/Dashboard/Widgets/service_map.php:368 +msgid "The user doesn't have permission to read agents" +msgstr "" + +#: ../../include/lib/Dashboard/Widgets/service_view.php:456 +msgid "Services view" +msgstr "" + +#: ../../include/lib/Dashboard/Widgets/maps_status.php:158 +#: ../../include/lib/Dashboard/Widgets/maps_status.php:388 +msgid "General visual maps report" +msgstr "" + +#: ../../include/lib/Dashboard/Widgets/maps_status.php:263 +msgid "Maps" +msgstr "" + +#: ../../include/lib/Dashboard/Widgets/example.php:158 +#: ../../include/lib/Dashboard/Widgets/example.php:277 +#, php-format +msgid "Welcome message to %s" +msgstr "" + +#: ../../include/lib/Dashboard/Widgets/example.php:245 +#: ../../general/login_help_dialog.php:39 +#, php-format +msgid "Welcome to %s" +msgstr "" + +#: ../../include/lib/Dashboard/Widgets/example.php:249 +msgid "This is an example of a dashboard widget. A widget may contain elements" +msgstr "" + +#: ../../include/lib/Dashboard/Widgets/example.php:250 +msgid "" +"To add more elements, click on \"Add widgets\" on the top of this " +"page." +msgstr "" + +#: ../../include/lib/Dashboard/Widgets/example.php:251 +#: ../../include/lib/Dashboard/Widgets/example.php:253 +msgid "" +"To delete this message, click on the delete button on top right corner of " +"this element." +msgstr "" + +#: ../../include/lib/Dashboard/Widgets/example.php:252 +msgid "" +"To do so, just click on the title and drag and drop it to the desired place." +msgstr "" + +#: ../../include/lib/Dashboard/Widgets/example.php:254 +#, php-format +msgid "Thanks for using %s." +msgstr "" + +#: ../../include/lib/Dashboard/Widgets/monitor_health.php:158 +#: ../../include/lib/Dashboard/Widgets/monitor_health.php:337 +msgid "Global health info" +msgstr "" + +#: ../../include/lib/Dashboard/Widgets/network_map.php:172 +#: ../../include/lib/Dashboard/Widgets/network_map.php:478 +#: ../../operation/menu.php:165 +msgid "Network map" +msgstr "" + +#: ../../include/lib/Dashboard/Widgets/network_map.php:258 +msgid "It is recommended to have only one such widget in the control panel." +msgstr "" + +#: ../../include/lib/Dashboard/Widgets/network_map.php:335 +msgid "Introduce x-axis data. Right=positive Left=negative" +msgstr "" + +#: ../../include/lib/Dashboard/Widgets/network_map.php:339 +msgid "X offset" +msgstr "" + +#: ../../include/lib/Dashboard/Widgets/network_map.php:350 +msgid "Introduce Y-axis data. Top=positive Bottom=negative" +msgstr "" + +#: ../../include/lib/Dashboard/Widgets/network_map.php:354 +msgid "Y offset" +msgstr "" + +#: ../../include/lib/Dashboard/Widgets/network_map.php:378 +msgid "Zoom level" +msgstr "" + +#: ../../include/lib/Dashboard/Widgets/alerts_fired.php:162 +#: ../../include/lib/Dashboard/Widgets/alerts_fired.php:360 +msgid "Triggered alerts report" +msgstr "" + +#: ../../include/lib/Dashboard/Widgets/alerts_fired.php:333 +msgid "Not alert fired" +msgstr "" + +#: ../../include/lib/Dashboard/Widgets/alerts_fired.php:342 +#: ../../include/lib/Dashboard/Widgets/events_list.php:521 +msgid "You must select some group" +msgstr "" + +#: ../../include/lib/Dashboard/Widgets/events_list.php:175 +#: ../../include/lib/Dashboard/Widgets/events_list.php:702 +msgid "List of latest events" +msgstr "" + +#: ../../include/lib/Dashboard/Widgets/events_list.php:305 +msgid "Custom filters" +msgstr "" + +#: ../../include/lib/Dashboard/Widgets/events_list.php:370 +msgid "Limit" +msgstr "" + +#: ../../include/lib/Dashboard/Widgets/events_list.php:383 +#: ../../include/functions_events.php:2976 +#: ../../include/functions_events.php:2982 +#: ../../include/functions_events.php:3004 +msgid "All event" +msgstr "" + +#: ../../include/lib/Dashboard/Widgets/events_list.php:384 +#: ../../include/functions_events.php:2978 +#: ../../include/functions_events.php:3012 +msgid "Only validated" +msgstr "" + +#: ../../include/lib/Dashboard/Widgets/events_list.php:385 +msgid "Only pending" +msgstr "" + +#: ../../include/lib/Dashboard/Widgets/wux_transaction_stats.php:172 +#: ../../include/lib/Dashboard/Widgets/wux_transaction_stats.php:378 +msgid "WUX transaction stats" +msgstr "" + +#: ../../include/lib/Dashboard/Widgets/wux_transaction_stats.php:270 +#: ../../include/lib/Dashboard/Widgets/wux_transaction.php:259 +msgid "Wux transaction" +msgstr "" + +#: ../../include/lib/Dashboard/Widgets/wux_transaction_stats.php:288 +msgid "View all statistics" +msgstr "" + +#: ../../include/lib/Dashboard/Widgets/module_icon.php:178 +#: ../../include/lib/Dashboard/Widgets/module_icon.php:540 +msgid "Icon and module value" +msgstr "" + +#: ../../include/lib/Dashboard/Widgets/module_icon.php:435 +#: ../../include/lib/Dashboard/Widgets/module_status.php:413 +msgid "Size of icon" +msgstr "" + +#: ../../include/lib/Dashboard/Widgets/url.php:158 +#: ../../include/lib/Dashboard/Widgets/url.php:286 +msgid "URL content" +msgstr "" + +#: ../../include/lib/Dashboard/Widgets/url.php:263 +msgid "Please, configure this widget before use" +msgstr "" + +#: ../../include/lib/Dashboard/Widgets/module_value.php:173 +#: ../../include/lib/Dashboard/Widgets/module_value.php:433 +msgid "Module value" +msgstr "" + +#: ../../include/lib/Dashboard/Widgets/wux_transaction.php:169 +#: ../../include/lib/Dashboard/Widgets/wux_transaction.php:418 +msgid "Agent WUX transaction" +msgstr "" + +#: ../../include/lib/Dashboard/Widgets/wux_transaction.php:370 +#: ../../include/lib/Dashboard/Widgets/wux_transaction.php:375 +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 +msgid "Top N events by module" +msgstr "" + +#: ../../include/lib/Dashboard/Widgets/top_n_events_by_module.php:258 +#: ../../include/lib/Dashboard/Widgets/top_n_events_by_group.php:258 +msgid "Amount to show" +msgstr "" + +#: ../../include/lib/Dashboard/Widgets/top_n_events_by_module.php:318 +#: ../../include/lib/Dashboard/Widgets/top_n_events_by_group.php:318 +msgid "No legend" +msgstr "" + +#: ../../include/lib/Dashboard/Widgets/top_n_events_by_module.php:322 +#: ../../include/lib/Dashboard/Widgets/top_n_events_by_group.php:322 +msgid "Legend Position" +msgstr "" + +#: ../../include/lib/Dashboard/Widgets/top_n_events_by_module.php:371 +#: ../../include/lib/Dashboard/Widgets/top_n_events_by_group.php:373 +msgid "Please select one or more groups." +msgstr "" + +#: ../../include/lib/Dashboard/Widgets/top_n_events_by_module.php:423 +#: ../../include/lib/Dashboard/Widgets/top_n_events_by_group.php:419 +msgid "There is not data to show." +msgstr "" + +#: ../../include/lib/Dashboard/Widgets/ColorModuleTabs.php:172 +#: ../../include/lib/Dashboard/Widgets/ColorModuleTabs.php:536 +msgid "Color tabs modules" +msgstr "" + +#: ../../include/lib/Dashboard/Widgets/ColorModuleTabs.php:285 +msgid "Format Data" +msgstr "" + +#: ../../include/lib/Dashboard/Widgets/module_table_value.php:175 +msgid "Show module value in a table" +msgstr "" + +#: ../../include/lib/Dashboard/Widgets/module_table_value.php:312 +msgid "Carriage Return" +msgstr "" + +#: ../../include/lib/Dashboard/Widgets/module_table_value.php:313 +msgid "Vertical Bar" +msgstr "" + +#: ../../include/lib/Dashboard/Widgets/module_table_value.php:314 +msgid "Semicolon" +msgstr "" + +#: ../../include/lib/Dashboard/Widgets/module_table_value.php:315 +msgid "Colon" +msgstr "" + +#: ../../include/lib/Dashboard/Widgets/module_table_value.php:316 +msgid "Commas" +msgstr "" + +#: ../../include/lib/Dashboard/Widgets/module_table_value.php:317 +msgid "Blank" +msgstr "" + +#: ../../include/lib/Dashboard/Widgets/module_table_value.php:321 +msgid "Data separator" +msgstr "" + +#: ../../include/lib/Dashboard/Widgets/module_table_value.php:397 +msgid "Module in a table" +msgstr "" + +#: ../../include/lib/Dashboard/Widgets/graph_module_histogram.php:175 +#: ../../include/lib/Dashboard/Widgets/graph_module_histogram.php:431 +msgid "Module histogram" +msgstr "" + +#: ../../include/lib/Dashboard/Widgets/service_map.php:300 +msgid "" +"ZOOM functionality is only available when there is only one such widget in " +"the dashboard" +msgstr "" + +#: ../../include/lib/Dashboard/Widgets/service_map.php:320 +msgid "Enable sunburst" +msgstr "" + +#: ../../include/lib/Dashboard/Widgets/service_map.php:379 +msgid "Missing Service id" +msgstr "" + +#: ../../include/lib/Dashboard/Widgets/agent_module.php:173 +#: ../../include/lib/Dashboard/Widgets/agent_module.php:840 +msgid "Agent/Module View" +msgstr "" + +#: ../../include/lib/Dashboard/Widgets/agent_module.php:250 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:439 +msgid "Filter modules" +msgstr "" + +#: ../../include/lib/Dashboard/Widgets/custom_graph.php:168 +#: ../../include/lib/Dashboard/Widgets/custom_graph.php:521 +msgid "Defined custom graph" +msgstr "" + +#: ../../include/lib/Dashboard/Widgets/custom_graph.php:294 +msgid "This graph has been deleted." +msgstr "" + +#: ../../include/lib/Dashboard/Widgets/custom_graph.php:321 +#: ../../operation/reporting/graph_viewer.php:376 +msgid "Horizontal Bars" +msgstr "" + +#: ../../include/lib/Dashboard/Widgets/custom_graph.php:322 +#: ../../operation/reporting/graph_viewer.php:377 +msgid "Vertical Bars" +msgstr "" + +#: ../../include/lib/Dashboard/Widgets/single_graph.php:170 +#: ../../include/lib/Dashboard/Widgets/single_graph.php:393 +msgid "Agent module graph" +msgstr "" + +#: ../../include/lib/Dashboard/Widgets/reports.php:164 +#: ../../include/lib/Dashboard/Widgets/reports.php:452 +msgid "Custom report" +msgstr "" + +#: ../../include/lib/Dashboard/Widgets/os_quick_report.php:173 +#: ../../include/lib/Dashboard/Widgets/os_quick_report.php:335 +msgid "OS quick report" +msgstr "" + +#: ../../include/lib/Dashboard/Widgets/os_quick_report.php:285 +msgid "total agents" +msgstr "" + +#: ../../include/lib/Dashboard/Widgets/os_quick_report.php:286 +msgid "normal agents" +msgstr "" + +#: ../../include/lib/Dashboard/Widgets/os_quick_report.php:287 +msgid "critical agents" +msgstr "" + +#: ../../include/lib/Dashboard/Widgets/os_quick_report.php:288 +msgid "unknown agents" +msgstr "" + +#: ../../include/lib/Dashboard/Widgets/tree_view.php:341 +msgid "Type tree" +msgstr "" + +#: ../../include/lib/Dashboard/Widgets/tree_view.php:373 +msgid "Open all groups" +msgstr "" + +#: ../../include/lib/Dashboard/Widgets/tree_view.php:393 +msgid "Agents status" +msgstr "" + +#: ../../include/lib/Dashboard/Widgets/tree_view.php:427 +msgid "Modules status" +msgstr "" + +#: ../../include/lib/Dashboard/Widgets/tree_view.php:493 +#, php-format +msgid "" +"The user doesn't have permission to read agents. Please contact with your %s " +"administrator." +msgstr "" + +#: ../../include/lib/Dashboard/Widgets/tree_view.php:605 +#: ../../operation/tree.php:423 +msgid "Operating systems found" +msgstr "" + +#: ../../include/lib/Dashboard/Widgets/tree_view.php:609 +#: ../../operation/tree.php:426 +msgid "Tags found" +msgstr "" + +#: ../../include/lib/Dashboard/Widgets/tree_view.php:613 +#: ../../operation/tree.php:429 +msgid "Module Groups found" +msgstr "" + +#: ../../include/lib/Dashboard/Widgets/tree_view.php:617 +#: ../../operation/tree.php:432 ../../operation/search_main.php:56 +msgid "Modules found" +msgstr "" + +#: ../../include/lib/Dashboard/Widgets/tree_view.php:622 +#: ../../operation/tree.php:436 +msgid "Groups found" +msgstr "" + +#: ../../include/lib/Dashboard/Widgets/top_n.php:163 +#: ../../include/lib/Dashboard/Widgets/top_n.php:528 +msgid "Top N of agent modules" +msgstr "" + +#: ../../include/lib/Dashboard/Widgets/top_n.php:222 +msgid "" +"Case insensitive regular expression or string for module name. For example: ." +"*usage.* will match: cpu_usage, vram usage." +msgstr "" + +#: ../../include/lib/Dashboard/Widgets/top_n.php:280 +msgid "Avg." +msgstr "" + +#: ../../include/lib/Dashboard/Widgets/top_n.php:448 +msgid "There are no agents/modules found matching filter set" +msgstr "" + +#: ../../include/lib/Dashboard/Widgets/tactical.php:275 +msgid "Status and Monitor checks" +msgstr "" + +#: ../../include/lib/Dashboard/Widgets/clock.php:216 +msgid "Analogic" +msgstr "" + +#: ../../include/lib/Dashboard/Widgets/clock.php:217 +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 +msgid "Top N events by agent" +msgstr "" + +#: ../../include/lib/Core/DBMaintainer.php:173 +msgid "Connection problems" +msgstr "" + +#: ../../include/lib/View.php:69 +#, php-format +msgid "View %s not found" +msgstr "" + +#: ../../include/lib/Module.php:258 +msgid " error: Module has no agent assigned." +msgstr "" + +#: ../../include/lib/Module.php:1039 +msgid "Module name empty." +msgstr "" + +#: ../../include/lib/Module.php:1045 +msgid "Invalid characters in module name" +msgstr "" + +#: ../../include/lib/Module.php:1051 +msgid "Module already exists please select another name or agent." +msgstr "" + +#: ../../include/lib/Module.php:1057 +msgid "Insufficent permissions to perform this action" +msgstr "" + +#: ../../include/lib/Module.php:1064 +#, php-format +msgid "Error while processing: %s" +msgstr "" + +#: ../../include/lib/Group.php:299 +#, php-format +msgid "Failed to save group %s" +msgstr "" + +#: ../../include/functions_snmp_browser.php:355 +msgid "The server did not return any response." +msgstr "" + +#: ../../include/functions_snmp_browser.php:558 +msgid "Numeric OID" +msgstr "" + +#: ../../include/functions_snmp_browser.php:576 +msgid "Syntax" +msgstr "" + +#: ../../include/functions_snmp_browser.php:582 +msgid "Display hint" +msgstr "" + +#: ../../include/functions_snmp_browser.php:588 +msgid "Max access" +msgstr "" + +#: ../../include/functions_snmp_browser.php:612 +msgid "OID Information" +msgstr "" + +#: ../../include/functions_snmp_browser.php:647 +msgid "Create agent module" +msgstr "" + +#: ../../include/functions_snmp_browser.php:736 +msgid "Starting OID" +msgstr "" + +#: ../../include/functions_snmp_browser.php:786 +msgid "Server to execute" +msgstr "" + +#: ../../include/functions_snmp_browser.php:801 +msgid "Browse" +msgstr "" + +#: ../../include/functions_snmp_browser.php:939 +msgid "First match" +msgstr "" + +#: ../../include/functions_snmp_browser.php:952 +msgid "Previous match" +msgstr "" + +#: ../../include/functions_snmp_browser.php:965 +msgid "Next match" +msgstr "" + +#: ../../include/functions_snmp_browser.php:978 +msgid "Last match" +msgstr "" + +#: ../../include/functions_snmp_browser.php:992 +msgid "Expand the tree (can be slow)" +msgstr "" + +#: ../../include/functions_snmp_browser.php:1005 +msgid "Collapse the tree" +msgstr "" + +#: ../../include/functions_snmp_browser.php:1034 +msgid "SNMP v3 options" +msgstr "" + +#: ../../include/functions_snmp_browser.php:1044 +msgid "Search options" +msgstr "" + +#: ../../include/functions_snmp_browser.php:1065 +msgid "Search matches" +msgstr "" + +#: ../../include/functions_snmp_browser.php:1081 +msgid "Create agent modules" +msgstr "" + +#: ../../include/functions_snmp_browser.php:1090 +msgid "Create policy modules" +msgstr "" + +#: ../../include/functions_snmp_browser.php:1099 +msgid "Create network components" +msgstr "" + +#: ../../include/functions_snmp_browser.php:1519 +msgid " available" +msgstr "" + +#: ../../include/functions_snmp_browser.php:1521 +msgid " to apply" +msgstr "" + +#: ../../include/functions_snmp_browser.php:1542 +#: ../../operation/snmpconsole/snmp_browser.php:541 +msgid "Create new policy" +msgstr "" + +#: ../../include/functions_snmp_browser.php:1574 +msgid "Undo" +msgstr "" + +#: ../../include/functions_groups.php:75 +msgid "Alert Actions" +msgstr "" + +#: ../../include/functions_groups.php:91 +msgid "Alert Templates" +msgstr "" + +#: ../../include/functions_groups.php:107 +#: ../../operation/agentes/pandora_networkmap.editor.php:337 +#: ../../operation/agentes/pandora_networkmap.view.php:137 +msgid "Discovery task" +msgstr "" + +#: ../../include/functions_groups.php:155 +msgid "Layout visual console" +msgstr "" + +#: ../../include/functions_groups.php:171 +msgid "Plannet down time" +msgstr "" + +#: ../../include/functions_groups.php:203 +msgid "GIS maps" +msgstr "" + +#: ../../include/functions_groups.php:219 +msgid "GIS connections" +msgstr "" + +#: ../../include/functions_groups.php:235 +msgid "GIS map layers" +msgstr "" + +#: ../../include/functions_groups.php:251 +msgid "Network maps" +msgstr "" + +#: ../../include/functions_events.php:142 +msgid "NEW" +msgstr "" + +#: ../../include/functions_events.php:145 +msgid "IN PROCESS" +msgstr "" + +#: ../../include/functions_events.php:148 +msgid "VALIDATED" +msgstr "" + +#: ../../include/functions_events.php:207 +msgid "Agent module" +msgstr "" + +#: ../../include/functions_events.php:220 +msgid "Module custom id" +msgstr "" + +#: ../../include/functions_events.php:1623 +#, php-format +msgid "Could not connect: %s" +msgstr "" + +#: ../../include/functions_events.php:2341 +#: ../../operation/agentes/tactical.php:228 +msgid "Latest events" +msgstr "" + +#: ../../include/functions_events.php:2478 +msgid "Events -by module-" +msgstr "" + +#: ../../include/functions_events.php:2484 +#: ../../operation/agentes/tactical.php:245 +msgid "Event graph" +msgstr "" + +#: ../../include/functions_events.php:2486 +#: ../../operation/agentes/tactical.php:248 +msgid "Event graph by agent" +msgstr "" + +#: ../../include/functions_events.php:2625 +msgid "Going to unknown" +msgstr "" + +#: ../../include/functions_events.php:2633 +msgid "Alert manually validated" +msgstr "" + +#: ../../include/functions_events.php:2637 +msgid "Going from critical to warning" +msgstr "" + +#: ../../include/functions_events.php:2643 +msgid "Going up to critical state" +msgstr "" + +#: ../../include/functions_events.php:2649 +msgid "Going up to normal state" +msgstr "" + +#: ../../include/functions_events.php:2653 +msgid "Going down from normal to warning" +msgstr "" + +#: ../../include/functions_events.php:2665 +msgid "Discovery server detected a new host" +msgstr "" + +#: ../../include/functions_events.php:2669 +msgid "New agent created" +msgstr "" + +#: ../../include/functions_events.php:2686 +msgid "Unknown type:" +msgstr "" + +#: ../../include/functions_events.php:2977 +#: ../../include/functions_events.php:3008 +msgid "Only new" +msgstr "" + +#: ../../include/functions_events.php:2979 +#: ../../include/functions_events.php:3016 +msgid "Only in process" +msgstr "" + +#: ../../include/functions_events.php:2980 +#: ../../include/functions_events.php:3020 +msgid "Only not validated" +msgstr "" + +#: ../../include/functions_events.php:2985 +#: ../../include/functions_events.php:3264 +#: ../../include/functions_events.php:3273 +msgid "In process" +msgstr "" + +#: ../../include/functions_events.php:2986 +msgid "Not Validated" +msgstr "" + +#: ../../include/functions_events.php:3178 +msgid "Change owner" +msgstr "" + +#: ../../include/functions_events.php:3249 +msgid "Change status" +msgstr "" + +#: ../../include/functions_events.php:3343 +#: ../../include/functions_events.php:4912 +#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:314 +msgid "Add comment" +msgstr "" + +#: ../../include/functions_events.php:3363 +#: ../../include/functions_events.php:3367 +#: ../../operation/events/events.php:886 +msgid "Delete event" +msgstr "" + +#: ../../include/functions_events.php:3387 +msgid "Custom responses" +msgstr "" + +#: ../../include/functions_events.php:3943 +msgid "Extended information" +msgstr "" + +#: ../../include/functions_events.php:3974 +msgid "There was an error connecting to the node" +msgstr "" + +#: ../../include/functions_events.php:3995 +msgid "Agent details" +msgstr "" + +#: ../../include/functions_events.php:4009 +msgid "This agent belongs to metaconsole, is not possible display it" +msgstr "" + +#: ../../include/functions_events.php:4060 +msgid "View custom fields" +msgstr "" + +#: ../../include/functions_events.php:4083 +msgid "Module details" +msgstr "" + +#: ../../include/functions_events.php:4099 +msgid "No assigned" +msgstr "" + +#: ../../include/functions_events.php:4183 +#: ../../include/functions_events.php:4192 +msgid "Go to data overview" +msgstr "" + +#: ../../include/functions_events.php:4308 +#, php-format +msgid "Invalid custom data: %s" +msgstr "" + +#: ../../include/functions_events.php:4537 +msgid "First event" +msgstr "" + +#: ../../include/functions_events.php:4537 +msgid "Last event" +msgstr "" + +#: ../../include/functions_events.php:4621 +msgid "Autovalidated" +msgstr "" + +#: ../../include/functions_events.php:4687 +msgid "ID extra" +msgstr "" + +#: ../../include/functions_events.php:4761 +msgid "There are no comments" +msgstr "" + +#: ../../include/functions_events.php:4825 ../../general/logon_ok.php:199 +msgid "by" +msgstr "" + +#: ../../include/functions_events.php:4922 +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 operate with them. The operation, when event replication is enabled, " +"must be done only in the Metaconsole." +msgstr "" + +#: ../../include/functions_planned_downtimes.php:575 +msgid "Succesful stopped the Downtime" +msgstr "" + +#: ../../include/functions_planned_downtimes.php:576 +msgid "Unsuccesful stopped the Downtime" +msgstr "" + +#: ../../include/functions_planned_downtimes.php:716 +#, php-format +msgid "Enabled %s elements from the downtime" +msgstr "" + +#: ../../include/functions_planned_downtimes.php:775 +msgid "The downtime must be quiet, disable_agents or disable_agents_alerts" +msgstr "" + +#: ../../include/functions_planned_downtimes.php:780 +msgid "The execution must be once or periodically" +msgstr "" + +#: ../../include/functions_planned_downtimes.php:785 +msgid "The periodicity must be weekly or monthly" +msgstr "" + +#: ../../include/functions_planned_downtimes.php:790 +msgid "There is no user with such id" +msgstr "" + +#: ../../include/functions_planned_downtimes.php:795 +msgid "There is no group with such id" +msgstr "" + +#: ../../include/functions_planned_downtimes.php:800 +msgid "Date is wrong formatted" +msgstr "" + +#: ../../include/functions_planned_downtimes.php:907 +msgid "This scheduled downtime are executed now. Can't delete in this moment." +msgstr "" + +#: ../../include/functions_planned_downtimes.php:914 +msgid "Deleted this scheduled downtime successfully." +msgstr "" + +#: ../../include/functions_planned_downtimes.php:916 +msgid "Problems for deleted this scheduled downtime." +msgstr "" + +#: ../../include/functions_planned_downtimes.php:976 +msgid "Error adding agents to copied downtime" +msgstr "" + +#: ../../include/functions_planned_downtimes.php:999 +msgid "Error adding module to copied downtime" +msgstr "" + +#: ../../index.php:950 +msgid "User doesn\\'t exist." +msgstr "" + +#: ../../index.php:972 +msgid "User only can use the API." +msgstr "" + +#: ../../index.php:1167 +#, php-format +msgid "Metaconsole MR (%d) is different than this one (%d)" +msgstr "" + +#: ../../operation/search_users.php:23 ../../operation/search_agents.php:30 +#: ../../operation/search_alerts.php:24 ../../operation/search_reports.php:25 +#: ../../operation/search_graphs.php:21 ../../operation/search_modules.php:23 +#: ../../operation/search_policies.php:22 ../../operation/search_maps.php:19 +msgid "Zero results found" +msgstr "" + +#: ../../operation/search_users.php:47 +msgid "Profile" +msgstr "" + +#: ../../operation/search_users.php:72 +msgid "Standard User" +msgstr "" + +#: ../../operation/heatmap.php:92 ../../operation/menu.php:69 +msgid "Heatmap view" +msgstr "" + +#: ../../operation/tree.php:139 +#, php-format +msgid "Sort the agents by %s" +msgstr "" + +#: ../../operation/tree.php:142 +msgid "tags" +msgstr "" + +#: ../../operation/tree.php:150 +msgid "groups" +msgstr "" + +#: ../../operation/tree.php:154 +msgid "module groups" +msgstr "" + +#: ../../operation/tree.php:163 +msgid "policies" +msgstr "" + +#: ../../operation/tree.php:219 +msgid "Search group" +msgstr "" + +#: ../../operation/tree.php:223 ../../operation/tree.php:279 +msgid "Show not init modules" +msgstr "" + +#: ../../operation/tree.php:232 +msgid "Search agent" +msgstr "" + +#: ../../operation/tree.php:235 +msgid "Show not init agents" +msgstr "" + +#: ../../operation/tree.php:243 +msgid "Show full hirearchy" +msgstr "" + +#: ../../operation/tree.php:254 +msgid "Show only disabled" +msgstr "" + +#: ../../operation/tree.php:276 +msgid "Search module" +msgstr "" + +#: ../../operation/tree.php:308 +msgid "Tree search" +msgstr "" + +#: ../../operation/users/user_edit.php:153 +msgid "Current password of user is required to perform password change" +msgstr "" + +#: ../../operation/users/user_edit.php:155 +msgid "Current password of user is not correct" +msgstr "" + +#: ../../operation/users/user_edit.php:159 +msgid "" +"Passwords didn't match or other problem encountered while updating passwords" +msgstr "" + +#: ../../operation/users/user_edit.php:172 +#: ../../operation/users/user_edit.php:187 +msgid "Password successfully updated" +msgstr "" + +#: ../../operation/users/user_edit.php:182 +#: ../../operation/users/user_edit.php:230 +msgid "Error updating user info" +msgstr "" + +#: ../../operation/users/user_edit.php:189 +msgid "Skin successfully updated" +msgstr "" + +#: ../../operation/users/user_edit.php:203 +msgid "Please enter a valid email" +msgstr "" + +#: ../../operation/users/user_edit.php:205 +msgid "Please enter a valid phone number" +msgstr "" + +#: ../../operation/users/user_edit.php:211 +msgid "Error updating passwords: " +msgstr "" + +#: ../../operation/users/user_edit.php:235 +msgid "Edit my User" +msgstr "" + +#: ../../operation/users/user_edit.php:300 +msgid "Current password" +msgstr "" + +#: ../../operation/users/user_edit.php:302 +msgid "You cannot change your password under the current authentication scheme" +msgstr "" + +#: ../../operation/users/user_edit.php:317 +msgid "If checkbox is clicked then block size global configuration is used" +msgstr "" + +#: ../../operation/users/user_edit.php:411 +msgid "This change will only apply to nodes" +msgstr "" + +#: ../../operation/users/user_edit.php:448 +msgid "Event filter" +msgstr "" + +#: ../../operation/users/user_edit.php:519 +msgid "Autorefresh" +msgstr "" + +#: ../../operation/users/user_edit.php:520 +msgid "This will activate autorefresh in selected pages" +msgstr "" + +#: ../../operation/users/user_edit.php:555 +msgid "Full list of pages" +msgstr "" + +#: ../../operation/users/user_edit.php:564 +#: ../../operation/users/user_edit.php:565 +msgid "Push selected pages into autorefresh list" +msgstr "" + +#: ../../operation/users/user_edit.php:573 +#: ../../operation/users/user_edit.php:574 +msgid "Pop selected pages out of autorefresh list" +msgstr "" + +#: ../../operation/users/user_edit.php:579 +msgid "List of pages with autorefresh" +msgstr "" + +#: ../../operation/users/user_edit.php:588 +msgid "Time autorefresh" +msgstr "" + +#: ../../operation/users/user_edit.php:590 +msgid "" +"Interval of autorefresh of the elements, by default they are 30 seconds, " +"needing to enable the autorefresh first" +msgstr "" + +#: ../../operation/users/user_edit.php:685 +msgid "eHorus user configuration" +msgstr "" + +#: ../../operation/users/user_edit.php:690 +msgid "eHorus user acces enabled" +msgstr "" + +#: ../../operation/users/user_edit.php:737 +msgid "Integria user configuration" +msgstr "" + +#: ../../operation/users/user_edit.php:774 +msgid "" +"You can not change your user info under the current authentication scheme" +msgstr "" + +#: ../../operation/users/user_edit.php:851 +msgid "This user doesn't have any assigned profile/group." +msgstr "" + +#: ../../operation/users/user_edit_header.php:102 +#: ../../operation/users/user_edit_notifications.php:36 +msgid "User notifications" +msgstr "" + +#: ../../operation/users/user_edit_header.php:127 +#: ../../operation/messages/message_list.php:86 +#: ../../operation/messages/message_edit.php:99 ../../operation/menu.php:474 +msgid "Workspace" +msgstr "" + +#: ../../operation/users/user_edit_header.php:131 +msgid "Edit user" +msgstr "" + +#: ../../operation/users/user_edit_notifications.php:65 +msgid "Also receive an email" +msgstr "" + +#: ../../operation/users/user_edit_notifications.php:94 +msgid "Controls have been disabled by the system administrator" +msgstr "" + +#: ../../operation/search_helps.php:17 +msgid "Zero results found." +msgstr "" + +#: ../../operation/search_helps.php:18 +#, php-format +msgid "" +"You can find more help in the wiki" +msgstr "" + +#: ../../operation/search_helps.php:32 +msgid "Matches" +msgstr "" + +#: ../../operation/visual_console/view.php:387 +msgid "Delete Item" +msgstr "" + +#: ../../operation/visual_console/view.php:393 +msgid "Copy Item" +msgstr "" + +#: ../../operation/visual_console/view.php:406 +#: ../../operation/agentes/estado_generalagente.php:345 +msgid "Force remote checks" +msgstr "" + +#: ../../operation/visual_console/view.php:734 +msgid "Are you sure" +msgstr "" + +#: ../../operation/visual_console/legacy_public_view.php:168 +#: ../../operation/visual_console/public_view.php:150 +msgid "QR code of the page" +msgstr "" + +#: ../../operation/visual_console/legacy_public_view.php:198 +#: ../../operation/visual_console/legacy_view.php:339 +msgid "Until refresh" +msgstr "" + +#: ../../operation/search_results.php:67 +msgid "Global search" +msgstr "" + +#: ../../operation/agentes/stat_win.php:116 +#, php-format +msgid "%s Graph" +msgstr "" + +#: ../../operation/agentes/stat_win.php:149 +msgid "There was a problem locating the source of the graph" +msgstr "" + +#: ../../operation/agentes/stat_win.php:267 +#: ../../operation/agentes/interface_traffic_graph_win.php:167 +msgid "Refresh time" +msgstr "" + +#: ../../operation/agentes/stat_win.php:278 +#: ../../operation/agentes/graphs.php:222 +msgid "Show events" +msgstr "" + +#: ../../operation/agentes/stat_win.php:299 +#: ../../operation/agentes/graphs.php:224 +msgid "Show alerts" +msgstr "" + +#: ../../operation/agentes/stat_win.php:307 +#: ../../operation/agentes/stat_win.php:418 +#: ../../operation/agentes/interface_traffic_graph_win.php:207 +msgid "Begin time" +msgstr "" + +#: ../../operation/agentes/stat_win.php:325 +#: ../../operation/agentes/stat_win.php:428 +#: ../../operation/agentes/interface_traffic_graph_win.php:213 +#: ../../operation/agentes/graphs.php:218 +#: ../../operation/reporting/graph_viewer.php:360 +msgid "Time range" +msgstr "" + +#: ../../operation/agentes/stat_win.php:340 +msgid "Zoom" +msgstr "" + +#: ../../operation/agentes/stat_win.php:360 +#: ../../operation/agentes/interface_traffic_graph_win.php:227 +msgid "Show percentil" +msgstr "" + +#: ../../operation/agentes/stat_win.php:386 +msgid "Show AVG/MAX/MIN data series in graph" +msgstr "" + +#: ../../operation/agentes/stat_win.php:489 +#: ../../operation/agentes/interface_traffic_graph_win.php:306 +msgid "Graph configuration menu" +msgstr "" + +#: ../../operation/agentes/alerts_status.php:338 +msgid "No actions" +msgstr "" + +#: ../../operation/agentes/alerts_status.php:371 +#: ../../operation/agentes/estado_monitores.php:539 +#: ../../operation/agentes/alerts_status.functions.php:160 +msgid "Free text for search (*):" +msgstr "" + +#: ../../operation/agentes/alerts_status.php:372 +#: ../../operation/agentes/alerts_status.functions.php:161 +msgid "Filter by module name, template name or action name" +msgstr "" + +#: ../../operation/agentes/alerts_status.php:441 +msgid "Full list of alerts" +msgstr "" + +#: ../../operation/agentes/alerts_status.php:532 +msgid "You must select at least one alert." +msgstr "" + +#: ../../operation/agentes/gis_view.php:96 +msgid "Period to show data as path" +msgstr "" + +#: ../../operation/agentes/gis_view.php:100 +msgid "Refresh path" +msgstr "" + +#: ../../operation/agentes/gis_view.php:158 +msgid "This agent doesn't have any GIS data." +msgstr "" + +#: ../../operation/agentes/gis_view.php:170 +msgid "Positional data from the last" +msgstr "" + +#: ../../operation/agentes/gis_view.php:209 +#, php-format +msgid "%s Km" +msgstr "" + +#: ../../operation/agentes/gis_view.php:223 +msgid "Distance" +msgstr "" + +#: ../../operation/agentes/gis_view.php:224 +msgid "# of Packages" +msgstr "" + +#: ../../operation/agentes/gis_view.php:225 +#: ../../operation/gis_maps/ajax.php:242 +msgid "Manual placement" +msgstr "" + +#: ../../operation/agentes/exportdata.csv.php:66 +#: ../../operation/agentes/exportdata.php:71 +#: ../../operation/agentes/exportdata.excel.php:66 +msgid "Invalid time specified" +msgstr "" + +#: ../../operation/agentes/exportdata.csv.php:178 +#: ../../operation/agentes/exportdata.php:209 +#: ../../operation/agentes/exportdata.excel.php:161 +msgid "No modules specified" +msgstr "" + +#: ../../operation/agentes/log_sources_status.php:75 +msgid "Review in log viewer" +msgstr "" + +#: ../../operation/agentes/log_sources_status.php:98 +msgid "No log sources found" +msgstr "" + +#: ../../operation/agentes/log_sources_status.php:117 +msgid "Log sources status" +msgstr "" + +#: ../../operation/agentes/estado_agente.php:242 +msgid "Sucessfully deleted agent" +msgstr "" + +#: ../../operation/agentes/estado_agente.php:244 +msgid "There was an error message deleting the agent" +msgstr "" + +#: ../../operation/agentes/estado_agente.php:285 +msgid "Search in custom fields" +msgstr "" + +#: ../../operation/agentes/ehorus.php:30 +msgid "Missing agent id" +msgstr "" + +#: ../../operation/agentes/ehorus.php:51 +msgid "Missing ehorus agent id" +msgstr "" + +#: ../../operation/agentes/ehorus.php:100 +#: ../../operation/agentes/ehorus.php:137 +msgid "There was an error retrieving an authorization token" +msgstr "" + +#: ../../operation/agentes/ehorus.php:112 +#: ../../operation/agentes/ehorus.php:149 +#: ../../operation/agentes/ehorus.php:185 +msgid "There was an error processing the response" +msgstr "" + +#: ../../operation/agentes/ehorus.php:173 +msgid "There was an error retrieving the agent data" +msgstr "" + +#: ../../operation/agentes/ehorus.php:190 +msgid "Remote management of this agent with eHorus" +msgstr "" + +#: ../../operation/agentes/ehorus.php:192 +msgid "Launch" +msgstr "" + +#: ../../operation/agentes/ehorus.php:198 +msgid "The connection was lost and the authorization token was expired" +msgstr "" + +#: ../../operation/agentes/ehorus.php:198 +msgid "Reload the page to request a new authorization token" +msgstr "" + +#: ../../operation/agentes/status_events.php:26 +#: ../../operation/agentes/status_events.php:27 +msgid "Latest events for this agent" +msgstr "" + +#: ../../operation/agentes/networkmap.dinamic.php:102 +#: ../../operation/agentes/pandora_networkmap.view.php:2266 +#: ../../operation/snmpconsole/snmp_statistics.php:45 +#: ../../operation/snmpconsole/snmp_browser.php:56 +#: ../../operation/snmpconsole/snmp_view.php:118 +msgid "Normal screen" +msgstr "" + +#: ../../operation/agentes/networkmap.dinamic.php:126 +#: ../../operation/agentes/pandora_networkmap.view.php:2290 +msgid "List of networkmap" +msgstr "" + +#: ../../operation/agentes/agent_fields.php:47 +#: ../../operation/agentes/custom_fields.php:90 +msgid "empty" +msgstr "" + +#: ../../operation/agentes/realtime_win.php:85 +#, php-format +msgid "%s Realtime Module Graph" +msgstr "" + +#: ../../operation/agentes/realtime_win.php:112 +msgid "Realtime extension is not enabled." +msgstr "" + +#: ../../operation/agentes/pandora_networkmap.editor.php:205 +msgid "Network maps editor" +msgstr "" + +#: ../../operation/agentes/pandora_networkmap.editor.php:324 +#: ../../operation/agentes/pandora_networkmap.view.php:127 +msgid "Position X" +msgstr "" + +#: ../../operation/agentes/pandora_networkmap.editor.php:326 +#: ../../operation/agentes/pandora_networkmap.view.php:129 +msgid "Position Y" +msgstr "" + +#: ../../operation/agentes/pandora_networkmap.editor.php:329 +#: ../../operation/agentes/pandora_networkmap.view.php:132 +msgid "Zoom scale" +msgstr "" + +#: ../../operation/agentes/pandora_networkmap.editor.php:334 +#: ../../operation/agentes/pandora_networkmap.view.php:134 +msgid "" +"Introduce zoom level. 1 = Highest resolution. Figures may include decimals" +msgstr "" + +#: ../../operation/agentes/pandora_networkmap.editor.php:337 +#: ../../operation/agentes/pandora_networkmap.view.php:137 +msgid "CIDR IP mask" +msgstr "" + +#: ../../operation/agentes/pandora_networkmap.editor.php:339 +#: ../../operation/agentes/pandora_networkmap.view.php:164 +msgid "Source from recon task" +msgstr "" + +#: ../../operation/agentes/pandora_networkmap.editor.php:341 +#: ../../operation/agentes/pandora_networkmap.view.php:166 +msgid "" +"It is setted any recon task, the nodes get from the recontask IP mask " +"instead from the group." +msgstr "" + +#: ../../operation/agentes/pandora_networkmap.editor.php:358 +#: ../../operation/agentes/pandora_networkmap.view.php:182 +msgid "Show only the task with the recon script \"SNMP L2 Recon\"." +msgstr "" + +#: ../../operation/agentes/pandora_networkmap.editor.php:362 +#: ../../operation/agentes/pandora_networkmap.view.php:186 +msgid "Source from CIDR IP mask" +msgstr "" + +#: ../../operation/agentes/pandora_networkmap.editor.php:365 +msgid "Source group" +msgstr "" + +#: ../../operation/agentes/pandora_networkmap.editor.php:382 +msgid "Source id group changed. All elements in networkmap will be lost." +msgstr "" + +#: ../../operation/agentes/pandora_networkmap.editor.php:387 +#: ../../operation/agentes/pandora_networkmap.view.php:198 +msgid "Don't show subgroups:" +msgstr "" + +#: ../../operation/agentes/pandora_networkmap.editor.php:405 +#: ../../operation/agentes/pandora_networkmap.view.php:232 +msgid "Method generation networkmap" +msgstr "" + +#: ../../operation/agentes/pandora_networkmap.editor.php:426 +#: ../../operation/agentes/pandora_networkmap.view.php:248 +msgid "Separation between nodes. By default 0.25" +msgstr "" + +#: ../../operation/agentes/pandora_networkmap.editor.php:428 +#: ../../operation/agentes/pandora_networkmap.view.php:250 +msgid "Rank separation" +msgstr "" + +#: ../../operation/agentes/pandora_networkmap.editor.php:429 +#: ../../operation/agentes/pandora_networkmap.view.php:251 +msgid "" +"Only flat and radial. Separation between arrows. By default 0.5 in flat and " +"1.0 in radial" +msgstr "" + +#: ../../operation/agentes/pandora_networkmap.editor.php:431 +#: ../../operation/agentes/pandora_networkmap.view.php:253 +msgid "Min nodes dist" +msgstr "" + +#: ../../operation/agentes/pandora_networkmap.editor.php:432 +#: ../../operation/agentes/pandora_networkmap.view.php:254 +msgid "Only circular. Minimum separation between all nodes. By default 1.0" +msgstr "" + +#: ../../operation/agentes/pandora_networkmap.editor.php:434 +#: ../../operation/agentes/pandora_networkmap.view.php:256 +msgid "Default ideal node separation" +msgstr "" + +#: ../../operation/agentes/pandora_networkmap.editor.php:435 +#: ../../operation/agentes/pandora_networkmap.view.php:257 +msgid "Only fdp. Default ideal node separation in the layout. By default 0.3" +msgstr "" + +#: ../../operation/agentes/pandora_networkmap.editor.php:601 +msgid "Source id group changed. All elements in Networkmap will be lost" +msgstr "" + +#: ../../operation/agentes/pandora_networkmap.php:139 +#: ../../operation/agentes/pandora_networkmap.php:374 +msgid "Succesfully created" +msgstr "" + +#: ../../operation/agentes/pandora_networkmap.php:215 +#: ../../operation/agentes/pandora_networkmap.php:507 +msgid "Succesfully updated" +msgstr "" + +#: ../../operation/agentes/pandora_networkmap.php:532 +msgid "Succesfully duplicate" +msgstr "" + +#: ../../operation/agentes/pandora_networkmap.php:546 +msgid "Succesfully deleted" +msgstr "" + +#: ../../operation/agentes/pandora_networkmap.php:656 +msgid "List of network maps" +msgstr "" + +#: ../../operation/agentes/pandora_networkmap.php:776 +msgid "Empty map" +msgstr "" + +#: ../../operation/agentes/pandora_networkmap.php:780 +msgid "Pending to generate" +msgstr "" + +#: ../../operation/agentes/pandora_networkmap.php:811 +msgid "There are no maps defined." +msgstr "" + +#: ../../operation/agentes/pandora_networkmap.php:818 +msgid "Create network map" +msgstr "" + +#: ../../operation/agentes/pandora_networkmap.php:825 +msgid "Create empty network map" +msgstr "" + +#: ../../operation/agentes/interface_traffic_graph_win.php:95 +#, php-format +msgid "%s Interface Graph" +msgstr "" + +#: ../../operation/agentes/interface_traffic_graph_win.php:250 +msgid "Zoom factor" +msgstr "" + +#: ../../operation/agentes/interface_traffic_graph_win.php:257 +msgid "Full" +msgstr "" + +#: ../../operation/agentes/graphs.php:143 +msgid "Other modules" +msgstr "" + +#: ../../operation/agentes/graphs.php:150 +msgid "Modules network no proc" +msgstr "" + +#: ../../operation/agentes/graphs.php:157 +msgid "Modules boolean" +msgstr "" + +#: ../../operation/agentes/graphs.php:224 +msgid "the combined graph does not show the alerts into this graph" +msgstr "" + +#: ../../operation/agentes/graphs.php:226 +msgid "Show as one combined graph" +msgstr "" + +#: ../../operation/agentes/graphs.php:228 +msgid "several graphs for each module" +msgstr "" + +#: ../../operation/agentes/graphs.php:229 +msgid "One combined graph" +msgstr "" + +#: ../../operation/agentes/graphs.php:237 +#: ../../operation/agentes/graphs.php:412 +msgid "Area stack" +msgstr "" + +#: ../../operation/agentes/graphs.php:239 +#: ../../operation/agentes/graphs.php:420 +msgid "Line stack" +msgstr "" + +#: ../../operation/agentes/graphs.php:256 +msgid "Save as custom graph" +msgstr "" + +#: ../../operation/agentes/graphs.php:269 +msgid "Filter graphs" +msgstr "" + +#: ../../operation/agentes/graphs.php:296 +msgid "There was an error loading the graph" +msgstr "" + +#: ../../operation/agentes/graphs.php:304 +#: ../../operation/agentes/graphs.php:308 +msgid "Name custom graph" +msgstr "" + +#: ../../operation/agentes/graphs.php:354 +msgid "Save custom graph" +msgstr "" + +#: ../../operation/agentes/graphs.php:375 +msgid "Custom graph create from the tab graphs in the agent." +msgstr "" + +#: ../../operation/agentes/datos_agente.php:173 +msgid "Received data from" +msgstr "" + +#: ../../operation/agentes/datos_agente.php:180 +msgid "Main database" +msgstr "" + +#: ../../operation/agentes/datos_agente.php:181 +msgid "" +"Switch between the main database and the history database to retrieve module " +"data" +msgstr "" + +#: ../../operation/agentes/datos_agente.php:211 +#: ../../operation/agentes/alerts_status.functions.php:118 +msgid "Free text for search" +msgstr "" + +#: ../../operation/agentes/interface_view.functions.php:170 +#: ../../operation/agentes/interface_view.functions.php:171 +msgid "Interface filter" +msgstr "" + +#: ../../operation/agentes/interface_view.functions.php:489 +msgid "IfName" +msgstr "" + +#: ../../operation/agentes/interface_view.functions.php:499 +msgid "IfSpeed" +msgstr "" + +#: ../../operation/agentes/interface_view.functions.php:507 +msgid "IfInOctets" +msgstr "" + +#: ../../operation/agentes/interface_view.functions.php:515 +msgid "IfOutOctets" +msgstr "" + +#: ../../operation/agentes/interface_view.functions.php:523 +msgid "% Bandwidth usage (in)" +msgstr "" + +#: ../../operation/agentes/interface_view.functions.php:531 +msgid "% Bandwidth usage (out)" +msgstr "" + +#: ../../operation/agentes/interface_view.functions.php:736 +msgid "No search parameters" +msgstr "" + +#: ../../operation/agentes/snapshot_view.php:42 +msgid "Cannot connect with node to display the module data." +msgstr "" + +#: ../../operation/agentes/snapshot_view.php:90 +#, php-format +msgid "%s Snapshot data view for module (%s)" +msgstr "" + +#: ../../operation/agentes/snapshot_view.php:96 +#, php-format +msgid "Current data at %s" +msgstr "" + +#: ../../operation/agentes/exportdata.php:34 ../../operation/menu.php:536 +msgid "Export data" +msgstr "" + +#: ../../operation/agentes/exportdata.php:248 +msgid "Source agent" +msgstr "" + +#: ../../operation/agentes/exportdata.php:283 +msgid "No modules of type string. You can not calculate their average" +msgstr "" + +#: ../../operation/agentes/exportdata.php:375 +msgid "Export type" +msgstr "" + +#: ../../operation/agentes/exportdata.php:380 +msgid "MS Excel" +msgstr "" + +#: ../../operation/agentes/exportdata.php:381 +msgid "Average per hour/day" +msgstr "" + +#: ../../operation/agentes/custom_fields.php:59 +msgid "No fields defined" +msgstr "" + +#: ../../operation/agentes/interface_view.php:63 ../../operation/menu.php:61 +msgid "Interface view" +msgstr "" + +#: ../../operation/agentes/status_monitor.php:95 ../../operation/menu.php:58 +msgid "Monitor detail" +msgstr "" + +#: ../../operation/agentes/status_monitor.php:119 +msgid "Monitor view" +msgstr "" + +#: ../../operation/agentes/status_monitor.php:641 +msgid "Wux server module" +msgstr "" + +#: ../../operation/agentes/status_monitor.php:662 +msgid "Min. hours in current status" +msgstr "" + +#: ../../operation/agentes/status_monitor.php:765 +msgid "Not condition" +msgstr "" + +#: ../../operation/agentes/status_monitor.php:765 +msgid "" +"If you check this option, those elements that do NOT meet any of the " +"requirements will be shown" +msgstr "" + +#: ../../operation/agentes/status_monitor.php:872 +msgid "Show filters" +msgstr "" + +#: ../../operation/agentes/status_monitor.php:1312 +msgid "Data Type" +msgstr "" + +#: ../../operation/agentes/status_monitor.php:1431 +#: ../../operation/agentes/pandora_networkmap.view.php:1743 +msgid "(Adopt) " +msgstr "" + +#: ../../operation/agentes/status_monitor.php:1439 +#: ../../operation/agentes/pandora_networkmap.view.php:1751 +msgid "(Unlinked) (Adopt) " +msgstr "" + +#: ../../operation/agentes/status_monitor.php:1442 +#: ../../operation/agentes/pandora_networkmap.view.php:1754 +msgid "(Unlinked) " +msgstr "" + +#: ../../operation/agentes/status_monitor.php:1980 +msgid "This group doesn't have any monitor" +msgstr "" + +#: ../../operation/agentes/status_monitor.php:1982 +msgid "Sorry no search parameters" +msgstr "" + +#: ../../operation/agentes/group_view.php:180 +msgid "Summary of the status groups" +msgstr "" + +#: ../../operation/agentes/estado_monitores.php:51 +msgid "Tag's information" +msgstr "" + +#: ../../operation/agentes/estado_monitores.php:109 +msgid "Relationship information" +msgstr "" + +#: ../../operation/agentes/estado_monitores.php:160 +msgid "Non-initialized modules found." +msgstr "" + +#: ../../operation/agentes/estado_monitores.php:181 +msgid "List of modules" +msgstr "" + +#: ../../operation/agentes/estado_monitores.php:182 +msgid "" +"To see the list of modules paginated, enable this option in the Styles " +"Configuration." +msgstr "" + +#: ../../operation/agentes/estado_monitores.php:518 +msgid "Status:" +msgstr "" + +#: ../../operation/agentes/estado_monitores.php:524 +msgid "Not Normal" +msgstr "" + +#: ../../operation/agentes/estado_monitores.php:540 +msgid "Search by module name, list matches." +msgstr "" + +#: ../../operation/agentes/pandora_networkmap.view.php:1611 +msgid "Success be updated." +msgstr "" + +#: ../../operation/agentes/pandora_networkmap.view.php:1708 +msgid "Name: " +msgstr "" + +#: ../../operation/agentes/pandora_networkmap.view.php:1758 +msgid "Policy: " +msgstr "" + +#: ../../operation/agentes/pandora_networkmap.view.php:1855 +msgid "Data: " +msgstr "" + +#: ../../operation/agentes/pandora_networkmap.view.php:1857 +#: ../../operation/agentes/estado_generalagente.php:817 +msgid "Last contact: " +msgstr "" + +#: ../../operation/agentes/ver_agente.php:1232 +msgid "Sons" +msgstr "" + +#: ../../operation/agentes/ver_agente.php:1582 +msgid "Log Viewer" +msgstr "" + +#: ../../operation/agentes/ver_agente.php:1621 +msgid "Terminal" +msgstr "" + +#: ../../operation/agentes/ver_agente.php:1643 +msgid "Processes" +msgstr "" + +#: ../../operation/agentes/estado_generalagente.php:57 +msgid "The agent has not assigned server. Maybe agent does not run fine." +msgstr "" + +#: ../../operation/agentes/estado_generalagente.php:265 +msgid "Remote configuration enabled" +msgstr "" + +#: ../../operation/agentes/estado_generalagente.php:328 +msgid "Agent contact" +msgstr "" + +#: ../../operation/agentes/estado_generalagente.php:335 +msgid "Refresh data" +msgstr "" + +#: ../../operation/agentes/estado_generalagente.php:376 +msgid "Next contact" +msgstr "" + +#: ../../operation/agentes/estado_generalagente.php:464 +msgid "Agent info" +msgstr "" + +#: ../../operation/agentes/estado_generalagente.php:477 +msgid "There is no GIS data." +msgstr "" + +#: ../../operation/agentes/estado_generalagente.php:598 +msgid "Agent access rate (Last 24h)" +msgstr "" + +#: ../../operation/agentes/estado_generalagente.php:638 +msgid "Active incident on this agent" +msgstr "" + +#: ../../operation/agentes/estado_generalagente.php:797 +msgid "Events info (24hr.)" +msgstr "" + +#: ../../operation/agentes/estado_generalagente.php:942 +msgid "Interface information (SNMP)" +msgstr "" + +#: ../../operation/agentes/alerts_status.functions.php:48 +msgid "Alert(s) validated" +msgstr "" + +#: ../../operation/agentes/alerts_status.functions.php:49 +msgid "Error processing alert(s)" +msgstr "" + +#: ../../operation/agentes/alerts_status.functions.php:119 +msgid "Filter by agent name, module name, template name or action name" +msgstr "" + +#: ../../operation/agentes/tactical.php:201 +msgid "Report of State" +msgstr "" + +#: ../../operation/messages/message_list.php:46 +#: ../../operation/messages/message_list.php:55 +#: ../../operation/messages/message_edit.php:66 +msgid "Sent messages" +msgstr "" + +#: ../../operation/messages/message_list.php:46 +#: ../../operation/messages/message_list.php:50 +#: ../../operation/messages/message_edit.php:54 +msgid "Received messages" +msgstr "" + +#: ../../operation/messages/message_list.php:64 +#: ../../operation/messages/message_list.php:304 +#: ../../operation/messages/message_edit.php:78 +msgid "Create message" +msgstr "" + +#: ../../operation/messages/message_list.php:136 +msgid "Not deleted. Error deleting messages" +msgstr "" + +#: ../../operation/messages/message_list.php:144 +#: ../../operation/messages/message_list.php:153 +msgid "You have" +msgstr "" + +#: ../../operation/messages/message_list.php:144 +msgid "sent message(s)" +msgstr "" + +#: ../../operation/messages/message_list.php:153 +msgid "unread message(s)" +msgstr "" + +#: ../../operation/messages/message_list.php:164 +msgid "There are no messages." +msgstr "" + +#: ../../operation/messages/message_list.php:194 +#: ../../operation/messages/message_edit.php:269 +msgid "Destination" +msgstr "" + +#: ../../operation/messages/message_list.php:196 +#: ../../operation/messages/message_edit.php:265 +msgid "Sender" +msgstr "" + +#: ../../operation/messages/message_list.php:214 +msgid "Click to read" +msgstr "" + +#: ../../operation/messages/message_list.php:218 +msgid "Mark as unread" +msgstr "" + +#: ../../operation/messages/message_list.php:224 +#: ../../operation/messages/message_list.php:228 +msgid "Message unread - click to read" +msgstr "" + +#: ../../operation/messages/message_list.php:256 +msgid "No Subject" +msgstr "" + +#: ../../operation/messages/message_edit.php:90 +msgid "Compose message" +msgstr "" + +#: ../../operation/messages/message_edit.php:119 +msgid "This message does not exist in the system" +msgstr "" + +#: ../../operation/messages/message_edit.php:188 +msgid "wrote" +msgstr "" + +#: ../../operation/messages/message_edit.php:203 +msgid "Delete conversation" +msgstr "" + +#: ../../operation/messages/message_edit.php:211 +msgid "Reply" +msgstr "" + +#: ../../operation/messages/message_edit.php:226 +msgid "User or group must be selected." +msgstr "" + +#: ../../operation/messages/message_edit.php:244 +#, php-format +msgid "Message successfully sent to user %s" +msgstr "" + +#: ../../operation/messages/message_edit.php:245 +#, php-format +msgid "Error sending message to user %s" +msgstr "" + +#: ../../operation/messages/message_edit.php:324 +msgid "Select user" +msgstr "" + +#: ../../operation/messages/message_edit.php:330 +msgid "OR" +msgstr "" + +#: ../../operation/messages/message_edit.php:341 +msgid "Select group" +msgstr "" + +#: ../../operation/messages/message_edit.php:396 +msgid "Send message" +msgstr "" + +#: ../../operation/network/network_report.php:67 +#: ../../operation/network/network_usage_map.php:124 +msgid "Data to show" +msgstr "" + +#: ../../operation/network/network_report.php:78 +#: ../../operation/network/network_usage_map.php:104 +msgid "Number of result to show" +msgstr "" + +#: ../../operation/network/network_report.php:109 +#: ../../operation/network/network_usage_map.php:82 +msgid "Time Period" +msgstr "" + +#: ../../operation/network/network_report.php:121 +#: ../../operation/network/network_usage_map.php:94 +#: ../../operation/netflow/nf_live_view.php:292 +msgid "Select this checkbox to write interval instead a date." +msgstr "" + +#: ../../operation/network/network_report.php:186 +#: ../../operation/network/network_report.php:233 +msgid "Flows" +msgstr "" + +#: ../../operation/network/network_report.php:197 +#: ../../operation/network/network_report.php:235 +msgid "Packets" +msgstr "" + +#: ../../operation/network/network_report.php:256 +#, php-format +msgid "Filtered by port %s. Click here to remove the filter." +msgstr "" + +#: ../../operation/network/network_report.php:256 +#, php-format +msgid "Filtered by IP %s. Click here to remove the filter." +msgstr "" + +#: ../../operation/network/network_usage_map.php:29 +#: ../../operation/menu.php:106 +msgid "Network usage map" +msgstr "" + +#: ../../operation/network/network_usage_map.php:139 +msgid "Show netflow map" +msgstr "" + +#: ../../operation/network/network_usage_map.php:175 +msgid "No data retrieved" +msgstr "" + +#: ../../operation/netflow/nf_live_view.php:131 +#: ../../operation/netflow/nf_live_view.php:153 +#: ../../operation/netflow/nf_live_view.php:159 +msgid "Netflow live view" +msgstr "" + +#: ../../operation/netflow/nf_live_view.php:170 +msgid "Error creating filter" +msgstr "" + +#: ../../operation/netflow/nf_live_view.php:172 +msgid "Filter created successfully" +msgstr "" + +#: ../../operation/netflow/nf_live_view.php:191 +msgid "Filter updated successfully" +msgstr "" + +#: ../../operation/netflow/nf_live_view.php:192 +msgid "Error updating filter" +msgstr "" + +#: ../../operation/netflow/nf_live_view.php:216 +msgid "Draw live filter" +msgstr "" + +#: ../../operation/netflow/nf_live_view.php:250 +msgid "Connection" +msgstr "" + +#: ../../operation/netflow/nf_live_view.php:303 +#: ../../operation/incidents/integriaims_export_csv.php:84 +#: ../../operation/incidents/configure_integriaims_incident.php:325 +#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:323 +#: ../../operation/incidents/list_integriaims_incidents.php:359 +msgid "Resolution" +msgstr "" + +#: ../../operation/netflow/nf_live_view.php:303 +msgid "The interval will be divided in chunks the length of the resolution." +msgstr "" + +#: ../../operation/netflow/nf_live_view.php:404 +msgid "Select a filter" +msgstr "" + +#: ../../operation/netflow/nf_live_view.php:477 +msgid "IP address resolution" +msgstr "" + +#: ../../operation/netflow/nf_live_view.php:477 +msgid "Resolve the IP addresses to get their hostnames." +msgstr "" + +#: ../../operation/netflow/nf_live_view.php:480 +msgid "Source ip" +msgstr "" + +#: ../../operation/netflow/nf_live_view.php:503 +msgid "Draw" +msgstr "" + +#: ../../operation/netflow/nf_live_view.php:507 +msgid "Save as new filter" +msgstr "" + +#: ../../operation/netflow/nf_live_view.php:508 +msgid "Update current filter" +msgstr "" + +#: ../../operation/netflow/nf_live_view.php:522 +msgid "No filter selected" +msgstr "" + +#: ../../operation/netflow/netflow_explorer.php:37 ../../operation/menu.php:92 +msgid "Netflow explorer" +msgstr "" + +#: ../../operation/snmpconsole/snmp_statistics.php:85 +msgid "SNMP Statistics" +msgstr "" + +#: ../../operation/snmpconsole/snmp_statistics.php:102 +#: ../../operation/snmpconsole/snmp_view.php:697 +#: ../../operation/snmpconsole/snmp_view.php:806 ../../operation/menu.php:141 +msgid "SNMP" +msgstr "" + +#: ../../operation/snmpconsole/snmp_statistics.php:156 +#: ../../operation/snmpconsole/snmp_view.php:720 +msgid "There are no SNMP traps in database" +msgstr "" + +#: ../../operation/snmpconsole/snmp_statistics.php:169 +msgid "Traps received by source" +msgstr "" + +#: ../../operation/snmpconsole/snmp_statistics.php:183 +#: ../../operation/snmpconsole/snmp_statistics.php:251 +msgid "Number" +msgstr "" + +#: ../../operation/snmpconsole/snmp_statistics.php:197 +#: ../../operation/snmpconsole/snmp_view.php:962 +msgid "View agent details" +msgstr "" + +#: ../../operation/snmpconsole/snmp_statistics.php:237 +msgid "Traps received by Enterprise String" +msgstr "" + +#: ../../operation/snmpconsole/snmp_statistics.php:250 +msgid "Trap Enterprise String" +msgstr "" + +#: ../../operation/snmpconsole/snmp_browser.php:77 +msgid "SNMP Browser" +msgstr "" + +#: ../../operation/snmpconsole/snmp_browser.php:218 +msgid "Adding modules in progress" +msgstr "" + +#: ../../operation/snmpconsole/snmp_browser.php:552 +msgid "Create policy" +msgstr "" + +#: ../../operation/snmpconsole/snmp_browser.php:644 +msgid "Are you sure you want add module?" +msgstr "" + +#: ../../operation/snmpconsole/snmp_view.php:602 +msgid "" +"Search by any alphanumeric field in the trap.\n" +"\t\tREMEMBER trap sources need to be searched by IP Address" +msgstr "" + +#: ../../operation/snmpconsole/snmp_view.php:628 +msgid "Search by trap type" +msgstr "" + +#: ../../operation/snmpconsole/snmp_view.php:652 +msgid "Group by Enterprise String/IP" +msgstr "" + +#: ../../operation/snmpconsole/snmp_view.php:718 +msgid "There are no SNMP traps in database that contains this filter" +msgstr "" + +#: ../../operation/snmpconsole/snmp_view.php:758 +msgid "Refresh every" +msgstr "" + +#: ../../operation/snmpconsole/snmp_view.php:770 +msgid "SNMP Traps" +msgstr "" + +#: ../../operation/snmpconsole/snmp_view.php:871 +msgid "Trap subtype" +msgstr "" + +#: ../../operation/snmpconsole/snmp_view.php:1076 +msgid "Variable bindings:" +msgstr "" + +#: ../../operation/snmpconsole/snmp_view.php:1089 +msgid "See more details" +msgstr "" + +#: ../../operation/snmpconsole/snmp_view.php:1101 +msgid "Enterprise String:" +msgstr "" + +#: ../../operation/snmpconsole/snmp_view.php:1153 +msgid "Trap type:" +msgstr "" + +#: ../../operation/snmpconsole/snmp_view.php:1179 +msgid "Count:" +msgstr "" + +#: ../../operation/snmpconsole/snmp_view.php:1183 +msgid "First trap:" +msgstr "" + +#: ../../operation/snmpconsole/snmp_view.php:1187 +msgid "Last trap:" +msgstr "" + +#: ../../operation/snmpconsole/snmp_view.php:1208 +msgid "No matching traps found" +msgstr "" + +#: ../../operation/snmpconsole/snmp_mib_uploader.php:47 +#: ../../operation/menu.php:131 +msgid "MIB uploader" +msgstr "" + +#: ../../operation/snmpconsole/snmp_mib_uploader.php:86 +msgid "" +"MIB files will be installed on the system. Please note that a MIB may depend " +"on other MIB. To customize trap definitions use the SNMP trap editor." +msgstr "" + +#: ../../operation/menu.php:96 +msgid "Netflow Live View" +msgstr "" + +#: ../../operation/menu.php:126 +msgid "SNMP browser" +msgstr "" + +#: ../../operation/menu.php:135 +msgid "SNMP filters" +msgstr "" + +#: ../../operation/menu.php:260 ../../operation/gis_maps/gis_map.php:35 +msgid "GIS Maps" +msgstr "" + +#: ../../operation/menu.php:265 +msgid "List of Gis maps" +msgstr "" + +#: ../../operation/menu.php:416 +msgid "RSS" +msgstr "" + +#: ../../operation/menu.php:429 +msgid "Sound Console" +msgstr "" + +#: ../../operation/menu.php:432 +msgid "No alert" +msgstr "" + +#: ../../operation/menu.php:433 +msgid "Silence alarm" +msgstr "" + +#: ../../operation/menu.php:442 ../../operation/events/sound_events.php:63 +msgid "Sound Events" +msgstr "" + +#: ../../operation/menu.php:464 ../../operation/events/events.php:1502 +msgid "Sound Alerts" +msgstr "" + +#: ../../operation/menu.php:486 +msgid "Configure user notifications" +msgstr "" + +#: ../../operation/menu.php:506 +msgid "Integria IMS statistics" +msgstr "" + +#: ../../operation/menu.php:507 +msgid "Integria IMS ticket list" +msgstr "" + +#: ../../operation/menu.php:520 +msgid "Messages List" +msgstr "" + +#: ../../operation/menu.php:521 +msgid "New message" +msgstr "" + +#: ../../operation/menu.php:542 +msgid "Scheduled downtime" +msgstr "" + +#: ../../operation/menu.php:616 +msgid "Tools" +msgstr "" + +#: ../../operation/gis_maps/gis_map.php:200 +msgid "No maps found" +msgstr "" + +#: ../../operation/gis_maps/gis_map.php:219 +msgid "Caution: Do you want delete the map?" +msgstr "" + +#: ../../operation/gis_maps/gis_map.php:226 +msgid "Do you want to set default the map?" +msgstr "" + +#: ../../operation/gis_maps/gis_map.php:234 +msgid "There was error on setup the default map." +msgstr "" + +#: ../../operation/gis_maps/render_view.php:145 +msgid "Show link to public GIS map" +msgstr "" + +#: ../../operation/gis_maps/render_view.php:170 +msgid "Filter by status" +msgstr "" + +#: ../../operation/gis_maps/ajax.php:237 ../../operation/gis_maps/ajax.php:275 +#: ../../operation/gis_maps/ajax.php:444 +msgid "Position (Lat, Long, Alt)" +msgstr "" + +#: ../../operation/gis_maps/ajax.php:238 +msgid "Start contact" +msgstr "" + +#: ../../operation/gis_maps/ajax.php:240 +msgid "Num reports" +msgstr "" + +#: ../../operation/gis_maps/ajax.php:279 ../../operation/gis_maps/ajax.php:448 +msgid "Default position of map." +msgstr "" + +#: ../../operation/gis_maps/ajax.php:339 +msgid "Satellite Version" +msgstr "" + +#: ../../operation/gis_maps/ajax.php:385 ../../operation/gis_maps/ajax.php:502 +msgid "Number of non-validated critical events" +msgstr "" + +#: ../../operation/gis_maps/ajax.php:395 ../../operation/gis_maps/ajax.php:512 +msgid "Alert(s) fired" +msgstr "" + +#: ../../operation/incidents/integriaims_export_csv.php:80 +msgid "ID Ticket" +msgstr "" + +#: ../../operation/incidents/integriaims_export_csv.php:82 +#: ../../operation/incidents/list_integriaims_incidents.php:517 +msgid "Group/Company" +msgstr "" + +#: ../../operation/incidents/integriaims_export_csv.php:87 +msgid "Started" +msgstr "" + +#: ../../operation/incidents/integriaims_export_csv.php:88 +#: ../../operation/incidents/configure_integriaims_incident.php:282 +#: ../../operation/incidents/list_integriaims_incidents.php:345 +#: ../../operation/incidents/list_integriaims_incidents.php:521 +msgid "Creator" +msgstr "" + +#: ../../operation/incidents/incident_statistics.php:29 +msgid "Incidents by status" +msgstr "" + +#: ../../operation/incidents/incident_statistics.php:32 +msgid "Incidents by priority" +msgstr "" + +#: ../../operation/incidents/incident_statistics.php:35 +msgid "Incidents by group" +msgstr "" + +#: ../../operation/incidents/incident_statistics.php:38 +msgid "Incidents by user" +msgstr "" + +#: ../../operation/incidents/configure_integriaims_incident.php:26 +msgid "Update Integria IMS Ticket" +msgstr "" + +#: ../../operation/incidents/configure_integriaims_incident.php:28 +msgid "Create Integria IMS Ticket" +msgstr "" + +#: ../../operation/incidents/configure_integriaims_incident.php:123 +msgid "Successfully created in Integria IMS" +msgstr "" + +#: ../../operation/incidents/configure_integriaims_incident.php:124 +msgid "Could not be created in Integria IMS" +msgstr "" + +#: ../../operation/incidents/configure_integriaims_incident.php:144 +msgid "Successfully updated in Integria IMS" +msgstr "" + +#: ../../operation/incidents/configure_integriaims_incident.php:145 +msgid "Could not be updated in Integria IMS" +msgstr "" + +#: ../../operation/incidents/configure_integriaims_incident.php:294 +msgid "" +"This field corresponds to the Integria IMS user specified in Integria IMS " +"setup" +msgstr "" + +#: ../../operation/incidents/configure_integriaims_incident.php:352 +#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:206 +msgid "File name" +msgstr "" + +#: ../../operation/incidents/configure_integriaims_incident.php:354 +#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:208 +msgid "Attachment description" +msgstr "" + +#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:77 +msgid "Not yet" +msgstr "" + +#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:81 +msgid "Not closed yet" +msgstr "" + +#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:115 +#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:246 +msgid "Filename" +msgstr "" + +#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:142 +msgid "File successfully deleted" +msgstr "" + +#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:143 +msgid "File could not be deleted" +msgstr "" + +#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:222 +msgid "Add attachment" +msgstr "" + +#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:224 +#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:397 +msgid "Attached files" +msgstr "" + +#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:282 +msgid "Comment successfully added" +msgstr "" + +#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:283 +msgid "Comment could not be added" +msgstr "" + +#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:309 +msgid "No comments found" +msgstr "" + +#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:349 +msgid "Created by" +msgstr "" + +#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:350 +msgid "Owned by" +msgstr "" + +#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:351 +msgid "Closed by" +msgstr "" + +#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:368 +msgid "Closed at" +msgstr "" + +#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:379 +msgid "People" +msgstr "" + +#: ../../operation/incidents/list_integriaims_incidents.php:24 +msgid "Integria IMS Tickets" +msgstr "" + +#: ../../operation/incidents/list_integriaims_incidents.php:317 +msgid "Text filter" +msgstr "" + +#: ../../operation/incidents/list_integriaims_incidents.php:381 +msgid "Created from" +msgstr "" + +#: ../../operation/incidents/list_integriaims_incidents.php:393 +msgid "Created to" +msgstr "" + +#: ../../operation/incidents/list_integriaims_incidents.php:518 +msgid "Status/Resolution" +msgstr "" + +#: ../../operation/incidents/list_integriaims_incidents.php:520 +msgid "Updated/Started" +msgstr "" + +#: ../../operation/incidents/list_integriaims_incidents.php:564 +msgid "No tickets to show" +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 +#: ../../operation/search_main.php:74 +#, php-format +msgid "%s Found" +msgstr "" + +#: ../../operation/search_main.php:64 +msgid "Users found" +msgstr "" + +#: ../../operation/search_main.php:66 +msgid "Graphs found" +msgstr "" + +#: ../../operation/search_main.php:68 +msgid "Reports found" +msgstr "" + +#: ../../operation/search_main.php:83 +#, php-format +msgid "Show %s of %s. View all matches" +msgstr "" + +#: ../../operation/reporting/reporting_viewer.php:249 +msgid "View Report" +msgstr "" + +#: ../../operation/reporting/reporting_viewer.php:291 +msgid "Set initial date" +msgstr "" + +#: ../../operation/reporting/reporting_viewer.php:321 +msgid "Invalid date selected. Initial date must be before end date." +msgstr "" + +#: ../../operation/reporting/reporting_viewer.php:426 +#: ../../operation/reporting/graph_viewer.php:505 +msgid "Invalid date selected" +msgstr "" + +#: ../../operation/reporting/custom_reporting.php:28 +#: ../../operation/reporting/graph_viewer.php:539 +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 +msgid "Graph defined" +msgstr "" + +#: ../../operation/reporting/graph_viewer.php:383 +msgid "Equalize maxiddmum thresholds" +msgstr "" + +#: ../../operation/reporting/graph_viewer.php:383 +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 +msgid "Zoom x1" +msgstr "" + +#: ../../operation/reporting/graph_viewer.php:393 +msgid "Zoom x2" +msgstr "" + +#: ../../operation/reporting/graph_viewer.php:394 +msgid "Zoom x3" +msgstr "" + +#: ../../operation/reporting/graph_viewer.php:513 +msgid "Custom graph viewer" +msgstr "" + +#: ../../operation/events/sound_events.php:164 +msgid "Sound console" +msgstr "" + +#: ../../operation/events/sound_events.php:256 +msgid "Sounds" +msgstr "" + +#: ../../operation/events/sound_events.php:283 +msgid "Events not found" +msgstr "" + +#: ../../operation/events/events_rss.php:195 +msgid "Your IP is not into the IP list with API access." +msgstr "" + +#: ../../operation/events/events_rss.php:214 +msgid "The URL of your feed has bad hash." +msgstr "" + +#: ../../operation/events/events.php:792 +msgid "Validate events" +msgstr "" + +#: ../../operation/events/events.php:809 +msgid "Validate event" +msgstr "" + +#: ../../operation/events/events.php:844 +msgid "Change to in progress status" +msgstr "" + +#: ../../operation/events/events.php:869 +msgid "Delete events" +msgstr "" + +#: ../../operation/events/events.php:1323 +msgid "Event viewer" +msgstr "" + +#: ../../operation/events/events.php:1370 +msgid "History event list" +msgstr "" + +#: ../../operation/events/events.php:1381 +msgid "RSS Events" +msgstr "" + +#: ../../operation/events/events.php:1392 +msgid "Export to CSV file" +msgstr "" + +#: ../../operation/events/events.php:1403 +#: ../../operation/events/events.php:1451 +msgid "Sound events" +msgstr "" + +#: ../../operation/events/events.php:1456 +msgid "History" +msgstr "" + +#: ../../operation/events/events.php:1531 +msgid "Errors" +msgstr "" + +#: ../../operation/events/events.php:1688 +msgid "Search in secondary groups" +msgstr "" + +#: ../../operation/events/events.php:1878 +msgid "Id source event" +msgstr "" + +#: ../../operation/events/events.php:1936 +msgid "From (date:time)" +msgstr "" + +#: ../../operation/events/events.php:1994 +msgid "To (date:time)" +msgstr "" + +#: ../../operation/events/events.php:2005 +msgid "Filter custom data by field name" +msgstr "" + +#: ../../operation/events/events.php:2006 +msgid "Filter custom data by field value" +msgstr "" + +#: ../../operation/events/events.php:2021 +msgid "Custom data filter" +msgstr "" + +#: ../../operation/events/events.php:2043 +msgid "Custom data search" +msgstr "" + +#: ../../operation/events/events.php:2168 +msgid "Current filter" +msgstr "" + +#: ../../operation/events/events.php:2173 +msgid "Not set." +msgstr "" + +#: ../../operation/events/events.php:2186 +msgid "Any status." +msgstr "" + +#: ../../operation/events/events.php:2190 +msgid "New events." +msgstr "" + +#: ../../operation/events/events.php:2194 +msgid "Validated." +msgstr "" + +#: ../../operation/events/events.php:2198 +msgid "In proccess." +msgstr "" + +#: ../../operation/events/events.php:2202 +msgid "Not validated." +msgstr "" + +#: ../../operation/events/events.php:2214 +msgid "Any time." +msgstr "" + +#: ../../operation/events/events.php:2216 +#: ../../operation/events/events.php:2793 +msgid "Last hour." +msgstr "" + +#: ../../operation/events/events.php:2218 +#, php-format +msgid "Last %d hours." +msgstr "" + +#: ../../operation/events/events.php:2226 +msgid "Duplicated" +msgstr "" + +#: ../../operation/events/events.php:2229 +msgid "All events." +msgstr "" + +#: ../../operation/events/events.php:2233 +msgid "Group agents." +msgstr "" + +#: ../../operation/events/events.php:2349 +msgid "Execute event response" +msgstr "" + +#: ../../operation/events/events.php:2362 +#, php-format +msgid "A maximum of %s event custom responses can be selected" +msgstr "" + +#: ../../operation/events/events.php:2367 +msgid "Please, select an event" +msgstr "" + +#: ../../operation/events/events.php:2456 +msgid "has at least" +msgstr "" + +#: ../../operation/events/events.php:2458 +msgid "events" +msgstr "" + +#: ../../operation/events/events.php:2795 +msgid "hours." +msgstr "" + +#: ../../operation/search_policies.php:37 +msgid "Id_group" +msgstr "" + +#: ../../general/footer.php:56 +#, php-format +msgid "Page generated on %s" +msgstr "" + +#: ../../general/php7_message.php:38 +msgid "Access Help" +msgstr "" + +#: ../../general/php7_message.php:41 +msgid "Warning php version" +msgstr "" + +#: ../../general/first_task/incidents.php:21 +msgid "There are no incidents defined yet." +msgstr "" + +#: ../../general/first_task/incidents.php:31 +#: ../../general/first_task/incidents.php:46 +msgid "Create Incidents" +msgstr "" + +#: ../../general/first_task/incidents.php:34 +#, php-format +msgid "" +"Besides receiving and processing data to monitor systems or applications,\n" +"\t\t\tyou're also required to monitor possible incidents which might take " +"place on these subsystems within the system's monitoring process.\n" +"\t\t\tFor it, the %s team has designed an incident manager from which any " +"user is able to open incidents,\n" +"\t\t\tthat explain what's happened on the network, and update them with " +"comments and files, at any time, in case there is a need to do so.\n" +"\t\t\tThis system allows users to work as a team, along with different roles " +"and work-flow systems which allow an incident to be\n" +"\t\t\tmoved from one group to another, and members from different groups and " +"different people could work on the same incident, sharing information and " +"files.\n" +"\t\t" +msgstr "" + +#: ../../general/first_task/recon_view.php:18 +msgid "There are no discovery tasks defined yet." +msgstr "" + +#: ../../general/first_task/recon_view.php:25 +msgid "Create Discovery Task" +msgstr "" + +#: ../../general/first_task/recon_view.php:28 +msgid "" +"Discovery Task are used to find new elements in the network. \n" +"\t\tIf it detects any item, it will add that item to the monitoring, and if " +"that item it is already being monitored, then it will \n" +"\t\tignore it or will update its information.There are three types of " +"detection: Based on ICMP (pings), \n" +"\t\tSNMP (detecting the topology of networks " +"and their interfaces), and other customized \n" +"\t\ttype. You can define your own customized recon script." +msgstr "" + +#: ../../general/first_task/recon_view.php:37 +msgid "Discover" +msgstr "" + +#: ../../general/first_task/HA_cluster_builder.php:37 +msgid "There are no HA clusters defined yet." +msgstr "" + +#: ../../general/first_task/HA_cluster_builder.php:45 +msgid "PANDORA FMS DB CLUSTER" +msgstr "" + +#: ../../general/first_task/HA_cluster_builder.php:48 +msgid "" +"With Pandora FMS Enterprise you can add high availability to your Pandora " +"FMS installation by adding redundant MySQL servers" +msgstr "" + +#: ../../general/first_task/HA_cluster_builder.php:50 +msgid "" +"Click on \"add new node\" to start transforming your Pandora FMS DB Cluster " +"into a Pandora FMS DB Cluster." +msgstr "" + +#: ../../general/first_task/HA_cluster_builder.php:59 +msgid "Add new node" +msgstr "" + +#: ../../general/first_task/map_builder.php:34 +#: ../../general/first_task/map_builder.php:45 +msgid "Create Visual Console" +msgstr "" + +#: ../../general/first_task/map_builder.php:37 +#, php-format +msgid "" +"%s allows users to create visual maps on which each user is able to create " +"his or her own monitoring map. The new visual console editor is much more " +"practical, although the prior visual console editor had its advantages. On " +"the new visual console, we've been successful in imitating the sensation and " +"touch of a drawing application like GIMP. We've also simplified the editor " +"by dividing it into several subject-divided tabs named 'Data', 'Preview', " +"'Wizard', 'List of Elements' and 'Editor'. The items the %s Visual Map was " +"designed to handle are 'static images', 'percentage bars', 'module graphs' " +"and 'simple values'." +msgstr "" + +#: ../../general/first_task/cluster_builder.php:46 +msgid "There are no clusters defined yet." +msgstr "" + +#: ../../general/first_task/cluster_builder.php:54 +#: ../../general/first_task/cluster_builder.php:72 +msgid "Create Cluster" +msgstr "" + +#: ../../general/first_task/cluster_builder.php:57 +msgid "" +"A cluster is a group of devices that provide the same service in high " +"availability." +msgstr "" + +#: ../../general/first_task/cluster_builder.php:59 +msgid "Depending on how they provide that service, we can find two types:" +msgstr "" + +#: ../../general/first_task/cluster_builder.php:61 +msgid "" +"Clusters to balance the service load: these are active - active (A/" +"A) mode clusters. It means that all the nodes (or machines that compose it) " +"are working. They must be working because if one stops working, it will " +"overload the others." +msgstr "" + +#: ../../general/first_task/cluster_builder.php:63 +msgid "" +"Clusters to guarantee service: these are active - passive (A/P) mode " +"clusters. It means that one of the nodes (or machines that make up the " +"cluster) will be running (primary) and another won't (secondary). When the " +"primary goes down, the secondary must take over and give the service " +"instead. Although many of the elements of this cluster are active-passive, " +"it will also have active elements in both of them that indicate that the " +"passive node is \"online\", so that in the case of a service failure in the " +"master, the active node collects this information." +msgstr "" + +#: ../../general/first_task/network_map.php:19 +msgid "There are no network map defined yet." +msgstr "" + +#: ../../general/first_task/network_map.php:26 +msgid "Network Map" +msgstr "" + +#: ../../general/first_task/network_map.php:29 +#: ../../general/first_task/network_map.php:50 +msgid "Create Network Map" +msgstr "" + +#: ../../general/first_task/network_map.php:32 +msgid "" +"There is also an open-source version of the network map. \n" +"\t\t\t\t\t\t\t\tThis functionality allows to graphically display the nodes " +"and relationships, agents, modules and groups available to the user. \n" +"\t\t\t\t\t\t\t\tThere are three types of network maps:\n" +"\t\t\t" +msgstr "" + +#: ../../general/first_task/network_map.php:37 +msgid "Topology Map" +msgstr "" + +#: ../../general/first_task/network_map.php:38 +msgid "Group Map" +msgstr "" + +#: ../../general/first_task/network_map.php:39 +msgid "Radial Map (User without strict user)" +msgstr "" + +#: ../../general/first_task/network_map.php:40 +msgid "Dinamic Map" +msgstr "" + +#: ../../general/first_task/network_map.php:41 +msgid "Policy Map (Only Enterprise version)" +msgstr "" + +#: ../../general/first_task/tags.php:18 +msgid "There are no tags defined yet." +msgstr "" + +#: ../../general/first_task/tags.php:25 ../../general/first_task/tags.php:35 +msgid "Create Tags" +msgstr "" + +#: ../../general/first_task/tags.php:28 +msgid "" +"Access to modules can be configured by a tagging system.\n" +"\t\t\t\t\t\t\t\tTags are configured on the system and are assigned to the " +"chosen modules.\n" +"\t\t\t\t\t\t\t\tA user's access can therefore be restricted to modules with " +"certain tags." +msgstr "" + +#: ../../general/first_task/omnishell.php:27 +msgid "There is no command defined yet." +msgstr "" + +#: ../../general/first_task/omnishell.php:37 +#, php-format +msgid "" +"Omnishell is an enterprise feature which allows you to execute a structured " +"command along any agent in your %s. The only requirement is to have remote " +"configuration enabled in your agent." +msgstr "" + +#: ../../general/first_task/omnishell.php:42 +msgid "" +"You can execute any command on as many agents you need, and check the " +"execution on all of them using the Omnishell Command View" +msgstr "" + +#: ../../general/first_task/omnishell.php:50 +msgid "Define a command" +msgstr "" + +#: ../../general/first_task/custom_fields.php:19 +#: ../../general/first_task/fields_manager.php:18 +msgid "There are no custom fields defined yet." +msgstr "" + +#: ../../general/first_task/custom_fields.php:27 +#: ../../general/first_task/custom_fields.php:36 +msgid "Create Custom Fields" +msgstr "" + +#: ../../general/first_task/custom_fields.php:30 +msgid "" +"Custom fields are an easy way to personalized agent's information.\n" +"\t\t You're able to create custom fields by klicking on 'Administration' -> " +"'Manage monitoring' -> 'Manage custom fields'. " +msgstr "" + +#: ../../general/first_task/fields_manager.php:22 +msgid "Fields Manager" +msgstr "" + +#: ../../general/first_task/fields_manager.php:25 +msgid "Create Fields Manager" +msgstr "" + +#: ../../general/first_task/fields_manager.php:28 +msgid "" +"Custom fields are an easy way to personalized agent's information.\n" +"\t\t\t\tYou're able to create custom fields by klicking on 'Administration' -" +"> 'Manage monitoring' -> 'Manage custom fields'. " +msgstr "" + +#: ../../general/first_task/fields_manager.php:34 +msgid "Create Fields " +msgstr "" + +#: ../../general/first_task/planned_downtime.php:18 +msgid "There are no scheduled downtime defined yet." +msgstr "" + +#: ../../general/first_task/planned_downtime.php:22 +msgid "Scehduled Downtime" +msgstr "" + +#: ../../general/first_task/planned_downtime.php:25 +#: ../../general/first_task/planned_downtime.php:37 +msgid "Create Scheduled Downtime" +msgstr "" + +#: ../../general/first_task/planned_downtime.php:28 +#, php-format +msgid "" +"%s contains a scheduled downtime management system.\n" +"\t\t\t\t\t\tThis system was designed to deactivate alerts during specific " +"intervals whenever there is down time by deactivating the agent.\n" +"\t\t\t\t\t\tIf an agent is deactivated, it doesn't gather information. " +"During down time, down-time intervals aren't taken into\n" +"\t\t\t\t\t\taccount for most metrics or report types, because agents don't " +"contain any data within those intervals." +msgstr "" + +#: ../../general/first_task/snmp_filters.php:18 +msgid "There are no SNMP filter defined yet." +msgstr "" + +#: ../../general/first_task/snmp_filters.php:22 +msgid "SNMP Filter" +msgstr "" + +#: ../../general/first_task/snmp_filters.php:25 +#: ../../general/first_task/snmp_filters.php:37 +msgid "Create SNMP Filter" +msgstr "" + +#: ../../general/first_task/snmp_filters.php:28 +msgid "" +"Some systems receive a high number of traps. \n" +"\t\t\t\tWe're only interested in monitoring a tiny percentage of them. From " +"Pandora FMS versions 3.2 and above, \n" +"\t\t\t\tit's possible to filter the traps that the server obtains in order " +"to avoid straining the application unnecessarily.\n" +"\t\t\t\tIn order to define different filters, please go to 'Administration' -" +"> 'Manage SNMP Console' and 'SNMP Filters'. \n" +"\t\t\t\tOne trap which is going to run in conjunction with any of them - " +"just the ones for the server are going to get ruled out automatically. " +msgstr "" + +#: ../../general/first_task/service_list.php:19 +msgid "There are no services defined yet." +msgstr "" + +#: ../../general/first_task/service_list.php:26 +#: ../../general/first_task/service_list.php:40 +msgid "Create Services" +msgstr "" + +#: ../../general/first_task/service_list.php:30 +msgid "" +"A service is a way to group your IT resources based on their " +"functionalities. \n" +"\t\t\t\t\t\tA service could be e.g. your official website, your CRM system, " +"your support application, or even your printers.\n" +"\t\t\t\t\t\t Services are logical groups which can include hosts, routers, " +"switches, firewalls, CRMs, ERPs, websites and numerous other services. \n" +"\t\t\t\t\t\t By the following example, you're able to see more clearly what " +"a service is:\n" +"\t\t\t\t\t\t\tA chip manufacturer sells computers by its website all around " +"the world. \n" +"\t\t\t\t\t\t\tHis company consists of three big departments: A management, " +"an on-line shop and support." +msgstr "" + +#: ../../general/first_task/custom_graphs.php:19 +msgid "There are no custom graphs defined yet." +msgstr "" + +#: ../../general/first_task/custom_graphs.php:24 +msgid "Custom Graphs" +msgstr "" + +#: ../../general/first_task/custom_graphs.php:27 +#: ../../general/first_task/custom_graphs.php:39 +msgid "Create Custom Graph" +msgstr "" + +#: ../../general/first_task/custom_graphs.php:30 +#, php-format +msgid "" +"Graphs are designed to show the data collected by %s in a temporary scale " +"defined by the user.\n" +"\t\t\t\t%s Graphs display data in real time. They are generated every time " +"the operator requires any of them and display the up-to-date state.\n" +"\t\t\t\tThere are two types of graphs: The agent's automated graphs and the " +"graphs the user customizes by using one or more modules to do so." +msgstr "" + +#: ../../general/first_task/transactional_list.php:21 +msgid "There are no transactions defined yet." +msgstr "" + +#: ../../general/first_task/transactional_list.php:28 +msgid "Transactions" +msgstr "" + +#: ../../general/first_task/transactional_list.php:31 +#: ../../general/first_task/transactional_list.php:41 +msgid "Create Transactions" +msgstr "" + +#: ../../general/first_task/transactional_list.php:34 +msgid "" +"The new transactional server allows you to execute tasks dependent on the " +"others following a user-defined design. This means that it is possible to " +"coordinate several executions to check a target at a given time.\n" +"\n" +"Transaction graphs represent the different processes within our " +"infrastructure that we use to deliver our service." +msgstr "" + +#: ../../general/first_task/collections.php:25 +#: ../../general/first_task/collections.php:39 +msgid "Create Collections" +msgstr "" + +#: ../../general/first_task/collections.php:28 +msgid "" +"A file collection is a group of files (e.g. scripts or executables) which " +"are \n" +"\t\tautomatically copied to a specific directory of the agent (under Windows " +"or UNIX). The file collections allow to be propagated\n" +"\t\t along with the policies in order to be used by a group of agents, using " +"a 'package' of scripts and modules which use them.\n" +"\t\tFirst we learn how to use the file collections in the agent's view, how " +"to conduct it manually, agent by agent, without using collections,\n" +"\t\t and how to do the same thing by using policies.Our first task is to " +"arrange a compilation of files. In order to do this, please go to the " +"agent's \n" +"\t\t administrator. Subsequently, we're going to see a 'sub option' called " +"'Collections'. Please click on it in order to create a new collection as we " +"can see on \n" +"\t\t the picture below. " +msgstr "" + +#: ../../general/header.php:77 +msgid "Sobre actualizaciƃĀ³n de revisiƃĀ³n menor" +msgstr "" + +#: ../../general/header.php:79 +msgid "About minor release update" +msgstr "" + +#: ../../general/header.php:112 ../../general/header.php:114 +msgid "Enter keywords to search" +msgstr "" + +#: ../../general/header.php:379 +msgid "Go to support" +msgstr "" + +#: ../../general/header.php:393 +msgid "Go to documentation" +msgstr "" + +#: ../../general/header.php:815 +msgid "Report an issue" +msgstr "" + +#: ../../general/alert_enterprise.php:107 +#, php-format +msgid "" +"This is the online help for %s console. This help is -in best cases- just a " +"brief contextual help, not intented to teach you how to use %s. Official " +"documentation of %s is about 900 pages, and you probably don't need to read " +"it entirely, but sure, you should download it and take a look.

    \n" +" Download the official documentation" +msgstr "" + +#: ../../general/alert_enterprise.php:120 +#, php-format +msgid "" +"Access to this page is restricted to authorized users only, please contact " +"system administrator if you need assistance.

    \n" +" Please know that all attempts to access this page are recorded in " +"security logs of %s System Database." +msgstr "" + +#: ../../general/alert_enterprise.php:130 +#, php-format +msgid "" +"The Update Manager client is included on %s. It helps system administrators " +"update their %s automatically, since the Update Manager retrieves new " +"modules, new plugins and new features (even full migrations tools for future " +"versions) automatically." +msgstr "" + +#: ../../general/alert_enterprise.php:130 +msgid "" +"OpenSource version updates are automated packages generated each week. " +"These updates come WITHOUT ANY warranty or support. If your system is " +"corrupted or a feature stops working properly, you will need to recover a " +"backup by yourself." +msgstr "" + +#: ../../general/alert_enterprise.php:130 +#, php-format +msgid "" +"The Enterprise version comes with a different update system, with fully " +"tested, professionally-supported packages, and our support team is there to " +"help you in case of problems or queries. Update Manager is another feature " +"present in the Enterprise version and not included in the OpenSource " +"version. There are lots of advanced business-oriented features contained in " +"%s Enterprise Edition. For more information visit pandorafms.com" +msgstr "" + +#: ../../general/alert_enterprise.php:132 +#, php-format +msgid "" +"The new Update Manager " +"client is included on %s. It helps system administrators update their %s " +"automatically, since the Update Manager retrieves new modules, new plugins " +"and new features (even full migrations tools for future versions) " +"automatically." +msgstr "" + +#: ../../general/alert_enterprise.php:132 +#, php-format +msgid "" +"The Update Manager is one of the most advanced features on the %s Enterprise " +"Edition. For more information visit http://" +"pandorafms.com." +msgstr "" + +#: ../../general/alert_enterprise.php:132 +#, php-format +msgid "" +"Update Manager sends anonymous information about %s usage (number of agents " +"and modules running). To disable it, please remove the remote server address " +"from the Update Manager plugin setup." +msgstr "" + +#: ../../general/alert_enterprise.php:138 +msgid "" +"The community version doesn't have the ability to define your own library of " +"local modules, or distribute it to remote agents. You need to make those " +"changes individually on each agent which is possible by using external tools " +"and time and effort. Nor can it distribute local plugins, or have access to " +"the library of enterprise plugins to monitor applications such as VMWare, " +"RHEV or Informix between others. The Enterprise version will have all this, " +"plus the ability to distribute and manage your own local modules on your " +"systems, individually or through policies.\n" +"

    pandorafms." +"com" +msgstr "" + +#: ../../general/alert_enterprise.php:148 +#, php-format +msgid "" +"%s Enterprise also features event correlation. Through correlation you can " +"generate realtime alerts and / or new events based on logical rules. This " +"allows you to automate troubleshooting. If you know the value of working " +"with events, event correlation will take you to a new level." +msgstr "" + +#: ../../general/alert_enterprise.php:152 +#, php-format +msgid "" +"Report generating on the Enterprise version is also more powerful: it has " +"wizards, you can schedule emails in PDF to be sent according to the schedule " +"you decide, and it has a template system to create personalized reports " +"quickly for each of your customers. It will even allow your customers to " +"generate their own reports from templates created by you. If reports are key " +"to your business, %s Enterprise version is for you." +msgstr "" + +#: ../../general/alert_enterprise.php:156 +msgid "These options are only effective on the Enterprise version." +msgstr "" + +#: ../../general/alert_enterprise.php:160 +msgid "" +"WARNING: You are just one click away from an automated update. This may " +"result in a damaged system, including loss of data and operativity. Check " +"you have a recent backup. OpenSource updates are automatically created " +"packages, and there is no WARRANTY or SUPPORT. If you need professional " +"support and warranty, please upgrade to Enterprise Version." +msgstr "" + +#: ../../general/alert_enterprise.php:164 +msgid "" +"This system is heavily loaded. OpenSource version could get a lot more " +"agents but fine tuning requires knowledge and time. Checkout the Enterprise " +"Version for a professional supported system." +msgstr "" + +#: ../../general/alert_enterprise.php:173 +#, php-format +msgid "" +"This system has too many modules per agent. OpenSource version could manage " +"thousands of modules, but is not recommended to have more than 100 modules " +"per agent. This configuration has %d modules per agent. Checkout the " +"Enterprise Version for a professional supported system." +msgstr "" + +#: ../../general/alert_enterprise.php:177 +msgid "" +"Too much remote modules has been detected on this system. OpenSource version " +"could manage thousands of modules, but performance is limited on high amount " +"of SNMP or ICMP request. Checkout the Enterprise Version for a professional " +"supported system with improved capacity on network monitoring, including " +"distributed servers." +msgstr "" + +#: ../../general/alert_enterprise.php:181 +msgid "" +"This system has too much events in the database. Checkout database purge " +"options. Checkout the Enterprise Version for a professional supported system." +msgstr "" + +#: ../../general/alert_enterprise.php:185 +msgid "" +"You have defined a high number of alerts, this may cause you performance " +"problems in the future. In the Enterprise version, you can use event " +"correlation alerts to simplify the alerting system and have easier " +"administration and increased performance." +msgstr "" + +#: ../../general/login_help_dialog.php:43 +#, php-format +msgid "" +"If this is your first time using %s, we suggest a few links that'll help you " +"learn more about the software. Monitoring can be overwhelming, but take your " +"time to learn how to harness the power of %s!" +msgstr "" + +#: ../../general/login_help_dialog.php:57 +#: ../../general/login_help_dialog.php:62 +msgid "Online help" +msgstr "" + +#: ../../general/login_help_dialog.php:70 +#: ../../general/login_help_dialog.php:75 +msgid "Enterprise version" +msgstr "" + +#: ../../general/login_help_dialog.php:88 +msgid "Forums" +msgstr "" + +#: ../../general/login_help_dialog.php:96 +#: ../../general/login_help_dialog.php:101 ../../general/mysqlerr.php:142 +msgid "Documentation" +msgstr "" + +#: ../../general/login_help_dialog.php:110 +msgid "Click here to don't show again this message" +msgstr "" + +#: ../../general/maintenance.php:36 +msgid "Maintenance tasks in progress" +msgstr "" + +#: ../../general/maintenance.php:53 ../../general/node_deactivated.php:64 +msgid "You will be automatically redirected when all tasks finish" +msgstr "" + +#: ../../general/logon_ok.php:160 +#, php-format +msgid "%s Overview" +msgstr "" + +#: ../../general/logon_ok.php:213 +msgid "News board" +msgstr "" + +#: ../../general/logon_ok.php:289 +msgid "Latest activity" +msgstr "" + +#: ../../general/noaccess.php:147 +msgid "You do not have access to this page" +msgstr "" + +#: ../../general/ui/agents_list.php:152 +msgid "No agents found" +msgstr "" + +#: ../../general/logon_failed.php:30 +msgid "" +"Either, your password or your login are incorrect. Please check your CAPS " +"LOCK key, username and password are case SeNSiTiVe.

    All actions, " +"included failed login attempts are logged in Pandora FMS System logs, and " +"these can be reviewed by each user, please report to admin any incident or " +"malfunction." +msgstr "" + +#: ../../general/node_deactivated.php:36 +msgid "You cannot use this node until system is unified" +msgstr "" + +#: ../../general/node_deactivated.php:56 +#, php-format +msgid "Please navigate to %s to unify system" +msgstr "" + +#: ../../general/noaccess2.php:23 +msgid "Access to this page is restricted" +msgstr "" + +#: ../../general/noaccess2.php:35 +msgid "" +"Access to this page is restricted to authorized users only, please contact " +"system administrator if you need assistance.

    \n" +"\t\t\tPlease know that all attempts to access this page are recorded in " +"security logs of Pandora System Database" +msgstr "" + +#: ../../general/mysqlerr.php:105 +msgid "Database error" +msgstr "" + +#: ../../general/mysqlerr.php:115 +msgid "" +"Failure to connect to historical database, please check the configuration or " +"contact system administrator if you need assistance." +msgstr "" + +#: ../../general/mysqlerr.php:117 +msgid "" +"Failure to connect to Database server, please check the configuration file " +"config.php or contact system administrator if you need assistance." +msgstr "" + +#: ../../general/login_page.php:54 +#, php-format +msgid "Go to %s Website" +msgstr "" + +#: ../../general/login_page.php:68 +msgid "Go to Login" +msgstr "" + +#: ../../general/login_page.php:251 +msgid "Login as admin" +msgstr "" + +#: ../../general/login_page.php:319 +msgid "View details" +msgstr "" + +#: ../../general/login_page.php:347 +msgid "" +"This node is configured with centralized mode. Go to metaconsole to reset " +"the password" +msgstr "" + +#: ../../general/login_page.php:372 ../../general/login_page.php:375 +#, php-format +msgid "WELCOME TO %s" +msgstr "" + +#: ../../general/login_page.php:384 ../../general/login_page.php:387 +msgid "NEXT GENERATION" +msgstr "" + +#: ../../general/login_page.php:536 +msgid "User node access not enabled" +msgstr "" + +#: ../../general/login_page.php:539 ../../general/login_page.php:543 +msgid "Centralized user in metaconsole" +msgstr "" + +#: ../../general/login_page.php:544 +msgid "" +"This user does not have access on node, please enable node access on this " +"user from metaconsole." +msgstr "" + +#: ../../general/login_page.php:559 ../../general/login_page.php:561 +#, php-format +msgid "Problem with %s database" +msgstr "" + +#: ../../general/login_page.php:565 +msgid "" +"Cannot connect to the database, please check your database setup in the " +"include/config.php file.

    \n" +"\t\tProbably your database, hostname, user or password values are incorrect " +"or\n" +"\t\tthe database server is not running." +msgstr "" + +#: ../../general/login_page.php:570 +msgid "DB ERROR" +msgstr "" + +#: ../../general/login_page.php:576 +#, php-format +msgid "" +"If you have modified the auth system, the origin of this problem could be " +"that %s cannot override the authorization variables from the config " +"database. Please remove them from your database by executing:
    DELETE "
    +"FROM tconfig WHERE token = \"auth\";
    " +msgstr "" + +#: ../../general/login_page.php:581 +msgid "Empty configuration table" +msgstr "" + +#: ../../general/login_page.php:583 +#, php-format +msgid "" +"Cannot load configuration variables from database. Please check your " +"database setup in the\n" +"\t\t\tinclude/config.php file.

    \n" +"\t\t\tMost likely your database schema has been created but there are is no " +"data in it, you have a problem with the database access credentials or your " +"schema is out of date.\n" +"\t\t\t

    %s Console cannot find include/config.php or this file " +"has invalid\n" +"\t\t\tpermissions and HTTP server cannot read it. Please read documentation " +"to fix this problem.
    " +msgstr "" + +#: ../../general/login_page.php:593 +msgid "No configuration file found" +msgstr "" + +#: ../../general/login_page.php:595 +#, php-format +msgid "" +"%s Console cannot find include/config.php or this file has invalid\n" +"\t\tpermissions and HTTP server cannot read it. Please read documentation to " +"fix this problem." +msgstr "" + +#: ../../general/login_page.php:607 +#, php-format +msgid "You may try to run the %sinstallation wizard%s to create one." +msgstr "" + +#: ../../general/login_page.php:611 +msgid "Installer active" +msgstr "" + +#: ../../general/login_page.php:613 +#, php-format +msgid "" +"For security reasons, normal operation is not possible until you delete " +"installer file.\n" +"\t\tPlease delete the ./install.php file before running %s Console." +msgstr "" + +#: ../../general/login_page.php:620 +msgid "Bad permission for include/config.php" +msgstr "" + +#: ../../general/login_page.php:622 +msgid "" +"For security reasons, config.php must have restrictive permissions, " +"and \"other\" users\n" +"\t\tshould not read it or write to it. It should be written only for owner\n" +"\t\t(usually www-data or http daemon user), normal operation is not possible " +"until you change\n" +"\t\tpermissions for include/config.php file. Please do it, it is for " +"your security." +msgstr "" + +#: ../../general/login_page.php:630 +msgid "Bad defined homedir" +msgstr "" + +#: ../../general/login_page.php:631 +msgid "" +"In the config.php file in the variable $config[\"homedir\"] = add the " +"correct path" +msgstr "" + +#: ../../general/login_page.php:635 +msgid "Bad defined homeurl or homeurl_static" +msgstr "" + +#: ../../general/login_page.php:636 +msgid "" +"In the config.php file in the variable $config[\"homeurl\"] or " +"$config[\"homeurl_static\"] = add the correct path" +msgstr "" + +#: ../../general/pandora_help.php:23 +#, php-format +msgid "%s help system" +msgstr "" + +#: ../../general/pandora_help.php:72 +msgid "Help system error" +msgstr "" + +#: ../../general/pandora_help.php:77 +#, php-format +msgid "" +"%s help system has been called with a help reference that currently don't " +"exist. There is no help content to show." +msgstr "" From f198e378768a095d9d550166d2be1e4cd1e2e32e Mon Sep 17 00:00:00 2001 From: Ramon Novoa Date: Mon, 8 Aug 2022 13:50:25 +0200 Subject: [PATCH 15/48] Add support for IPAM XML files. The Data Server can now process IPAM data coming from Satellite Servers through XML files. --- pandora_server/lib/PandoraFMS/DataServer.pm | 2 ++ 1 file changed, 2 insertions(+) diff --git a/pandora_server/lib/PandoraFMS/DataServer.pm b/pandora_server/lib/PandoraFMS/DataServer.pm index 8d7a28a356..c42f368282 100644 --- a/pandora_server/lib/PandoraFMS/DataServer.pm +++ b/pandora_server/lib/PandoraFMS/DataServer.pm @@ -257,6 +257,8 @@ sub data_consumer ($$) { process_xml_server ($self->getConfig (), $file_name, $xml_data, $self->getDBH ()); } elsif (defined($xml_data->{'connection_source'})) { enterprise_hook('process_xml_connections', [$self->getConfig (), $file_name, $xml_data, $self->getDBH ()]); + } elsif (defined($xml_data->{'ipam_source'})) { + enterprise_hook('process_xml_ipam', [$self->getConfig (), $file_name, $xml_data, $self->getDBH ()]); } elsif (defined($xml_data->{'network_matrix'})){ process_xml_matrix_network( $self->getConfig(), $xml_data, $self->getDBH() From 6aa99d8d0ab07e6c42e26273cb118212dadd6abc Mon Sep 17 00:00:00 2001 From: Daniel Rodriguez Date: Wed, 10 Aug 2022 14:18:34 +0200 Subject: [PATCH 16/48] Revert "Merge branch 'ent-9191-Titulo-Notificaciones-de-usuario-mal' into 'develop'" This reverts merge request !4975 --- pandora_console/include/languages/es.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pandora_console/include/languages/es.po b/pandora_console/include/languages/es.po index 10c217c4a1..70b0644222 100644 --- a/pandora_console/include/languages/es.po +++ b/pandora_console/include/languages/es.po @@ -13027,7 +13027,7 @@ msgstr "ContraseƱa incorrecta" #: ../../operation/users/user_edit_notifications.php:36 #: ../../operation/users/user_edit_header.php:102 msgid "User notifications" -msgstr "Notificaciones de usuario" +msgstr "Notifivaciones de usuario" #: ../../operation/users/user_edit_notifications.php:64 #: ../../enterprise/include/lib/Metaconsole/Node.php:1165 From 815e466ee25f6d938213b9386a4dc57a71f26472 Mon Sep 17 00:00:00 2001 From: artica Date: Thu, 11 Aug 2022 01:00:21 +0200 Subject: [PATCH 17/48] 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 bd5e054dec..c8a165cc17 100644 --- a/pandora_agents/unix/DEBIAN/control +++ b/pandora_agents/unix/DEBIAN/control @@ -1,5 +1,5 @@ package: pandorafms-agent-unix -Version: 7.0NG.763-220810 +Version: 7.0NG.763-220811 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 2debaf095e..f1067ed7ba 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.763-220810" +pandora_version="7.0NG.763-220811" 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 ab868d1863..fcb29a87f4 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.763'; -use constant AGENT_BUILD => '220810'; +use constant AGENT_BUILD => '220811'; # 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 72c414b24e..aa8113c7d7 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.763 -%define release 220810 +%define release 220811 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 aaace944bb..503cfa78fb 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.763 -%define release 220810 +%define release 220811 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 38534c985b..a29d6382cb 100755 --- a/pandora_agents/unix/pandora_agent_installer +++ b/pandora_agents/unix/pandora_agent_installer @@ -10,7 +10,7 @@ # ********************************************************************** PI_VERSION="7.0NG.763" -PI_BUILD="220810" +PI_BUILD="220811" OS_NAME=`uname -s` FORCE=0 diff --git a/pandora_agents/win32/installer/pandora.mpi b/pandora_agents/win32/installer/pandora.mpi index 698c4466f2..71457a99cf 100644 --- a/pandora_agents/win32/installer/pandora.mpi +++ b/pandora_agents/win32/installer/pandora.mpi @@ -186,7 +186,7 @@ UpgradeApplicationID {} Version -{220810} +{220811} ViewReadme {Yes} diff --git a/pandora_agents/win32/pandora.cc b/pandora_agents/win32/pandora.cc index 0cb7ef8656..09ab9ffc85 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.763 Build 220810") +#define PANDORA_VERSION ("7.0NG.763 Build 220811") string pandora_path; string pandora_dir; diff --git a/pandora_agents/win32/versioninfo.rc b/pandora_agents/win32/versioninfo.rc index d76928306b..e2cb8c2b68 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.763(Build 220810))" + VALUE "ProductVersion", "(7.0NG.763(Build 220811))" VALUE "FileVersion", "1.0.0.0" END END diff --git a/pandora_console/DEBIAN/control b/pandora_console/DEBIAN/control index 79b82ba9f9..daa3929451 100644 --- a/pandora_console/DEBIAN/control +++ b/pandora_console/DEBIAN/control @@ -1,5 +1,5 @@ package: pandorafms-console -Version: 7.0NG.763-220810 +Version: 7.0NG.763-220811 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 ba58200828..d95396a1d1 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.763-220810" +pandora_version="7.0NG.763-220811" package_pear=0 package_pandora=1 diff --git a/pandora_console/include/config_process.php b/pandora_console/include/config_process.php index aea7200686..9fe5ce449b 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 = 'PC220810'; +$build_version = 'PC220811'; $pandora_version = 'v7.0NG.763'; // Do not overwrite default timezone set if defined. diff --git a/pandora_console/install.php b/pandora_console/install.php index 0b045af5f4..4990c9a19b 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 32b38e1393..ccadb6a5d2 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.763 -%define release 220810 +%define release 220811 Summary: Pandora FMS Server Name: %{name} diff --git a/pandora_server/pandora_server.spec b/pandora_server/pandora_server.spec index e6e1c1fc00..46d44587b9 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.763 -%define release 220810 +%define release 220811 Summary: Pandora FMS Server Name: %{name} diff --git a/pandora_server/pandora_server_installer b/pandora_server/pandora_server_installer index 19f4724df3..384b1d6c6d 100755 --- a/pandora_server/pandora_server_installer +++ b/pandora_server/pandora_server_installer @@ -9,7 +9,7 @@ # ********************************************************************** PI_VERSION="7.0NG.763" -PI_BUILD="220810" +PI_BUILD="220811" MODE=$1 if [ $# -gt 1 ]; then diff --git a/pandora_server/util/pandora_db.pl b/pandora_server/util/pandora_db.pl index 742a54e6f3..b5db78b229 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.763 Build 220810"; +my $version = "7.0NG.763 Build 220811"; # Pandora server configuration my %conf; diff --git a/pandora_server/util/pandora_manage.pl b/pandora_server/util/pandora_manage.pl index 330c1dcc21..40474a19b5 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.763 Build 220810"; +my $version = "7.0NG.763 Build 220811"; # save program name for logging my $progname = basename($0); From 1585f846f5b20ef6bf6a26132336fe86356eacf7 Mon Sep 17 00:00:00 2001 From: Calvo Date: Thu, 11 Aug 2022 13:41:09 +0200 Subject: [PATCH 18/48] Fix Goliat LWP --- pandora_server/lib/PandoraFMS/Goliat/GoliatLWP.pm | 2 ++ 1 file changed, 2 insertions(+) diff --git a/pandora_server/lib/PandoraFMS/Goliat/GoliatLWP.pm b/pandora_server/lib/PandoraFMS/Goliat/GoliatLWP.pm index 3117ab1515..65e22c5f1e 100755 --- a/pandora_server/lib/PandoraFMS/Goliat/GoliatLWP.pm +++ b/pandora_server/lib/PandoraFMS/Goliat/GoliatLWP.pm @@ -235,6 +235,8 @@ sub g_http_task { if ($content =~ m/($temp)/) { $task_get_content[$thread_id] = $1; } + } else { + $task_get_content[$thread_id] = $resp; } # Resource bashing From de922dd0b22142910d8b8db825adcc3b86693f15 Mon Sep 17 00:00:00 2001 From: Daniel Barbero Date: Thu, 11 Aug 2022 13:52:34 +0200 Subject: [PATCH 19/48] fixed 500 php7.2 pandora_enterprise#9387 --- .../operation/agentes/alerts_status.php | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/pandora_console/operation/agentes/alerts_status.php b/pandora_console/operation/agentes/alerts_status.php index fea8db97ca..731a834fee 100755 --- a/pandora_console/operation/agentes/alerts_status.php +++ b/pandora_console/operation/agentes/alerts_status.php @@ -244,7 +244,7 @@ if ($free_search != '') { [ 'title' => 'Policy', 'text' => 'P.', - ], + ] ); $columns = array_merge( @@ -261,12 +261,12 @@ if ($free_search != '') { 'title' => 'Validate', 'text' => html_print_checkbox('all_validate', 0, false, true, false), 'class' => 'dt-left', - ], + ] ); $columns = array_merge( ['validate'], - $columns, + $columns ); } @@ -276,7 +276,7 @@ if ($free_search != '') { [ 'title' => 'Force execution', 'text' => 'F.', - ], + ] ); $columns = array_merge( @@ -289,12 +289,12 @@ if ($free_search != '') { if ($print_agent === true) { array_push( $column_names, - ['text' => 'Agent'], + ['text' => 'Agent'] ); $columns = array_merge( $columns, - ['agent'], + ['agent'] ); } @@ -304,7 +304,7 @@ if ($free_search != '') { ['text' => 'Template'], ['text' => 'Action'], ['text' => 'Last fired'], - ['text' => 'Status'], + ['text' => 'Status'] ); $columns = array_merge( @@ -313,7 +313,7 @@ if ($free_search != '') { ['template'], ['action'], ['lastFired'], - ['status'], + ['status'] ); From 9b3d7ba7635959e27f3c85cc37ac998ebcca96cb Mon Sep 17 00:00:00 2001 From: Daniel Barbero Date: Thu, 11 Aug 2022 14:05:01 +0200 Subject: [PATCH 20/48] fixed 500 php7.2 pandora_enterprise#9387 --- pandora_console/operation/agentes/alerts_status.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pandora_console/operation/agentes/alerts_status.php b/pandora_console/operation/agentes/alerts_status.php index 731a834fee..65f8537b17 100755 --- a/pandora_console/operation/agentes/alerts_status.php +++ b/pandora_console/operation/agentes/alerts_status.php @@ -381,7 +381,7 @@ if ($free_search != '') { ], 'no_toggle' => true, ], - ], + ] ); } else { ui_print_datatable( @@ -419,7 +419,7 @@ if ($free_search != '') { $strict_user ), ], - ], + ] ); } From ec33fdcd3ef3cff8fa3a02eb6a3a4f8a41adca51 Mon Sep 17 00:00:00 2001 From: artica Date: Fri, 12 Aug 2022 01:00:22 +0200 Subject: [PATCH 21/48] 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 c8a165cc17..4dbf4e38dd 100644 --- a/pandora_agents/unix/DEBIAN/control +++ b/pandora_agents/unix/DEBIAN/control @@ -1,5 +1,5 @@ package: pandorafms-agent-unix -Version: 7.0NG.763-220811 +Version: 7.0NG.763-220812 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 f1067ed7ba..c138c43c65 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.763-220811" +pandora_version="7.0NG.763-220812" 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 fcb29a87f4..5357e26e8e 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.763'; -use constant AGENT_BUILD => '220811'; +use constant AGENT_BUILD => '220812'; # 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 aa8113c7d7..e6d9ffeaf6 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.763 -%define release 220811 +%define release 220812 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 503cfa78fb..f5864e3ec6 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.763 -%define release 220811 +%define release 220812 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 a29d6382cb..e13188d80b 100755 --- a/pandora_agents/unix/pandora_agent_installer +++ b/pandora_agents/unix/pandora_agent_installer @@ -10,7 +10,7 @@ # ********************************************************************** PI_VERSION="7.0NG.763" -PI_BUILD="220811" +PI_BUILD="220812" OS_NAME=`uname -s` FORCE=0 diff --git a/pandora_agents/win32/installer/pandora.mpi b/pandora_agents/win32/installer/pandora.mpi index 71457a99cf..26668364b4 100644 --- a/pandora_agents/win32/installer/pandora.mpi +++ b/pandora_agents/win32/installer/pandora.mpi @@ -186,7 +186,7 @@ UpgradeApplicationID {} Version -{220811} +{220812} ViewReadme {Yes} diff --git a/pandora_agents/win32/pandora.cc b/pandora_agents/win32/pandora.cc index 09ab9ffc85..076311939e 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.763 Build 220811") +#define PANDORA_VERSION ("7.0NG.763 Build 220812") string pandora_path; string pandora_dir; diff --git a/pandora_agents/win32/versioninfo.rc b/pandora_agents/win32/versioninfo.rc index e2cb8c2b68..5175a667dc 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.763(Build 220811))" + VALUE "ProductVersion", "(7.0NG.763(Build 220812))" VALUE "FileVersion", "1.0.0.0" END END diff --git a/pandora_console/DEBIAN/control b/pandora_console/DEBIAN/control index daa3929451..2939364c1d 100644 --- a/pandora_console/DEBIAN/control +++ b/pandora_console/DEBIAN/control @@ -1,5 +1,5 @@ package: pandorafms-console -Version: 7.0NG.763-220811 +Version: 7.0NG.763-220812 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 d95396a1d1..029125ad9d 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.763-220811" +pandora_version="7.0NG.763-220812" package_pear=0 package_pandora=1 diff --git a/pandora_console/include/config_process.php b/pandora_console/include/config_process.php index 9fe5ce449b..c6c3c00d74 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 = 'PC220811'; +$build_version = 'PC220812'; $pandora_version = 'v7.0NG.763'; // Do not overwrite default timezone set if defined. diff --git a/pandora_console/install.php b/pandora_console/install.php index 4990c9a19b..285e0d996e 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 ccadb6a5d2..7a94f8f686 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.763 -%define release 220811 +%define release 220812 Summary: Pandora FMS Server Name: %{name} diff --git a/pandora_server/pandora_server.spec b/pandora_server/pandora_server.spec index 46d44587b9..f8ce33a9e8 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.763 -%define release 220811 +%define release 220812 Summary: Pandora FMS Server Name: %{name} diff --git a/pandora_server/pandora_server_installer b/pandora_server/pandora_server_installer index 384b1d6c6d..ba9cf8db0a 100755 --- a/pandora_server/pandora_server_installer +++ b/pandora_server/pandora_server_installer @@ -9,7 +9,7 @@ # ********************************************************************** PI_VERSION="7.0NG.763" -PI_BUILD="220811" +PI_BUILD="220812" MODE=$1 if [ $# -gt 1 ]; then diff --git a/pandora_server/util/pandora_db.pl b/pandora_server/util/pandora_db.pl index b5db78b229..2a7754f655 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.763 Build 220811"; +my $version = "7.0NG.763 Build 220812"; # Pandora server configuration my %conf; diff --git a/pandora_server/util/pandora_manage.pl b/pandora_server/util/pandora_manage.pl index 40474a19b5..9f957ca119 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.763 Build 220811"; +my $version = "7.0NG.763 Build 220812"; # save program name for logging my $progname = basename($0); From cd1dfa63612661ad23290194fd3c0e6c34afcbd6 Mon Sep 17 00:00:00 2001 From: Daniel Barbero Date: Fri, 12 Aug 2022 11:32:07 +0200 Subject: [PATCH 22/48] fixed error metaconsole_node_id pandora_enterprise#9350 --- pandora_console/extras/mr/57.sql | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 pandora_console/extras/mr/57.sql diff --git a/pandora_console/extras/mr/57.sql b/pandora_console/extras/mr/57.sql new file mode 100644 index 0000000000..c5ced5a76b --- /dev/null +++ b/pandora_console/extras/mr/57.sql @@ -0,0 +1,6 @@ +START TRANSACTION; + +SET @id_config := (SELECT id_config FROM tconfig WHERE token = 'metaconsole_node_id' AND value is not null ORDER BY id_config DESC LIMIT 1); +DELETE FROM tconfig WHERE token = 'metaconsole_node_id' AND (id_config < @id_config OR value IS NULL); + +COMMIT; \ No newline at end of file From 50bb50418deeb8e5ed78098a61b48ac2046a5a86 Mon Sep 17 00:00:00 2001 From: Daniel Barbero Date: Fri, 12 Aug 2022 11:34:35 +0200 Subject: [PATCH 23/48] fixed error metaconsole_node_id pandora_enterprise#9350 --- pandora_console/extras/mr/57.sql | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pandora_console/extras/mr/57.sql b/pandora_console/extras/mr/57.sql index c5ced5a76b..4d183cd8e4 100644 --- a/pandora_console/extras/mr/57.sql +++ b/pandora_console/extras/mr/57.sql @@ -1,6 +1,6 @@ START TRANSACTION; -SET @id_config := (SELECT id_config FROM tconfig WHERE token = 'metaconsole_node_id' AND value is not null ORDER BY id_config DESC LIMIT 1); -DELETE FROM tconfig WHERE token = 'metaconsole_node_id' AND (id_config < @id_config OR value IS NULL); +SET @id_config := (SELECT id_config FROM tconfig WHERE `token` = 'metaconsole_node_id' AND `value` IS NOT NULL ORDER BY id_config DESC LIMIT 1); +DELETE FROM tconfig WHERE `token` = 'metaconsole_node_id' AND (id_config < @id_config OR `value` IS NULL); COMMIT; \ No newline at end of file From 3cd0e915e5d6eb26f8caa8475b79bba7bed8cb5a Mon Sep 17 00:00:00 2001 From: Calvo Date: Fri, 12 Aug 2022 12:06:16 +0200 Subject: [PATCH 24/48] Fix golitat check string curl --- pandora_server/lib/PandoraFMS/Goliat/GoliatCURL.pm | 2 -- 1 file changed, 2 deletions(-) diff --git a/pandora_server/lib/PandoraFMS/Goliat/GoliatCURL.pm b/pandora_server/lib/PandoraFMS/Goliat/GoliatCURL.pm index bd63fb5449..63fe5ca5de 100755 --- a/pandora_server/lib/PandoraFMS/Goliat/GoliatCURL.pm +++ b/pandora_server/lib/PandoraFMS/Goliat/GoliatCURL.pm @@ -254,8 +254,6 @@ sub g_http_task { utf8::decode($match_string); } - $match_string = quotemeta($match_string); - if ( $as_string =~ m/$match_string/i ){ $total_valid_requests++; } else { From 42df2147718fd8870af096d0b71b885923dbf339 Mon Sep 17 00:00:00 2001 From: artica Date: Fri, 12 Aug 2022 12:44:29 +0200 Subject: [PATCH 25/48] 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 ef8ca498c6..bace91d6ca 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.763, AIX version +# Version 7.0NG.764, 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 d2c0f24d97..5f2ef51b98 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.763, FreeBSD Version +# Version 7.0NG.764, 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 8c95d1c74f..c93161f99e 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.763, HP-UX Version +# Version 7.0NG.764, 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 b93c5160c5..643a24089e 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.763, GNU/Linux +# Version 7.0NG.764, 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 2ee611a89f..23759866fa 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.763, GNU/Linux +# Version 7.0NG.764, 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 b709ffa298..c4efd11a0d 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.763, Solaris Version +# Version 7.0NG.764, 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 1f034d834d..50c64e6c12 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.763 +# Version 7.0NG.764 # 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 1b8d89e078..341b5d3b3f 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.763, AIX version +# Version 7.0NG.764, 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 442a93f6e8..1253fa53e1 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.763 +# Version 7.0NG.764 # 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 3843656944..68195f8778 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.763, HPUX Version +# Version 7.0NG.764, HPUX Version # General Parameters # ================== diff --git a/pandora_agents/shellscript/linux/pandora_agent.conf b/pandora_agents/shellscript/linux/pandora_agent.conf index 2ac7522aa8..7052f344e5 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.763 +# Version 7.0NG.764 # 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 f2f6e7c873..a8c124927c 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.763 +# Version 7.0NG.764 # 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 9c2f026dbf..8fba4818dc 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.763 +# Version 7.0NG.764 # 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 578dc0c8e3..cd656519e4 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.763, Solaris version +# Version 7.0NG.764, Solaris version # General Parameters # ================== diff --git a/pandora_agents/unix/AIX/pandora_agent.conf b/pandora_agents/unix/AIX/pandora_agent.conf index 62cd823d30..1227b36daf 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.763, AIX version +# Version 7.0NG.764, 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 4dbf4e38dd..54ae1b2884 100644 --- a/pandora_agents/unix/DEBIAN/control +++ b/pandora_agents/unix/DEBIAN/control @@ -1,5 +1,5 @@ package: pandorafms-agent-unix -Version: 7.0NG.763-220812 +Version: 7.0NG.764 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 c138c43c65..f506c213a8 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.763-220812" +pandora_version="7.0NG.764" 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 c144a8662c..7ae20d616f 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.763" + VERSION="7.0NG.764" 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 aac2c6f6f6..854c5bcefc 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